diff --git a/.eslintrc.json b/.eslintrc.json index 1e4dc1b0..514e78a4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -34,8 +34,9 @@ "@angular-eslint/arrow-body-style": "off", "@angular-eslint/component-selector": ["error", { "prefix": "rtl", "style": "kebab-case", "type": "element" }], "@angular-eslint/directive-selector": ["error", { "style": "camelCase", "type": "attribute" }], - "@typescript-eslint/type-annotation-spacing": "error", "@typescript-eslint/member-delimiter-style": ["error", { "multiline": { "delimiter": "semi", "requireLast": true}, "singleline": { "delimiter": "comma", "requireLast": false }}], + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/type-annotation-spacing": "error", "quotes": ["error", "single"], "comma-dangle": ["error", "never"], "comma-spacing": ["error", { "before": false, "after": true }], @@ -47,7 +48,7 @@ "curly": "error", "no-unused-expressions": "error", "strict": "error", - "max-len": ["error", { "code": 450 }], + "max-len": ["error", { "code": 320 }], "no-multiple-empty-lines": "error", "no-trailing-spaces": "error", "quote-props": ["error", "as-needed"], diff --git a/.github/README.md b/.github/README.md index 0a1da236..b9dd5210 100644 --- a/.github/README.md +++ b/.github/README.md @@ -104,6 +104,7 @@ Example RTL-Config.json: "bitcoindConfigPath": "", "logLevel": "INFO", "fiatConversion": false, + "unannouncedChannels": false, "lnServerUrl": "", "swapServerUrl": "", "boltzServerUrl": "" diff --git a/.github/docs/Application_configurations.md b/.github/docs/Application_configurations.md index eb7e1f1c..2f005824 100644 --- a/.github/docs/Application_configurations.md +++ b/.github/docs/Application_configurations.md @@ -35,6 +35,7 @@ parameters have `default` values for initial setup and can be updated after RTL "logLevel": , "fiatConversion": , "currencyUnit": "", + "unannouncedChannels": "lnServerUrl": "", "boltzServerUrl": "" @@ -66,4 +67,5 @@ RTL_CONFIG_PATH (Path for the folder containing 'RTL-Config.json' file, Required BITCOIND_CONFIG_PATH (Full path of the bitcoind.conf file including the file name, Optional)
CHANNEL_BACKUP_PATH (Folder location for saving the channel backup files, valid for LND implementation only, Required if ln implementation=LND else Optional)
ENABLE_OFFERS (Boolean flag to enable the offers feature on core lighning, default false, optional)
+ENABLE_PEERSWAP (Boolean flag to enable the peerswap feature on core lighning, default false, optional)
LN_API_PASSWORD (Password for Eclair implementation if the eclair.conf path is not available, Required if ln implementation=ECL && config path is undefined)
diff --git a/.github/docs/Core_lightning_setup.md b/.github/docs/Core_lightning_setup.md index 98120d34..bafb1cdb 100644 --- a/.github/docs/Core_lightning_setup.md +++ b/.github/docs/Core_lightning_setup.md @@ -82,6 +82,7 @@ Ensure that the follow values are correct per your config: "bitcoindConfigPath": "", "logLevel": "INFO", "fiatConversion": false, + "unannouncedChannels": false, "lnServerUrl": "https://:3001" } } diff --git a/.github/docs/Eclair_setup.md b/.github/docs/Eclair_setup.md index 7109359d..28e97494 100644 --- a/.github/docs/Eclair_setup.md +++ b/.github/docs/Eclair_setup.md @@ -77,6 +77,7 @@ Ensure that the follow values are correct per your config: "bitcoindConfigPath": "", "logLevel": "INFO", "fiatConversion": false, + "unannouncedChannels": false, "lnServerUrl": "http://:port" } } diff --git a/.github/docs/RTL_setups.md b/.github/docs/RTL_setups.md index 03a22971..fa953de5 100644 --- a/.github/docs/RTL_setups.md +++ b/.github/docs/RTL_setups.md @@ -39,6 +39,7 @@ If your running RTL and LND on different devices on your local LAN, certain conf "bitcoindConfigPath": "", "logLevel": "INFO", "fiatConversion": false, + "unannouncedChannels": false, "lnServerUrl": ":8080; e.g. https://192.168.0.1:8080>", "swapServerUrl": ":8081>", "boltzServerUrl": ":9003>" diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml new file mode 100644 index 00000000..5805f076 --- /dev/null +++ b/.github/workflows/stats.yml @@ -0,0 +1,23 @@ +name: Pull Request Stats + +on: + push: + branches: [ master, 'Release-*' ] + tags: [ 'v*' ] + release: + types: [released] + # Triggers the workflow only when merging pull request to the branches. + pull_request: + types: [opened, closed] + branches: [ master, 'Release-*', '*' ] + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + stats: + runs-on: ubuntu-latest + steps: + - name: Run pull request stats + uses: flowwer-dev/pull-request-stats@master + with: + period: 365 diff --git a/Sample-RTL-Config.json b/Sample-RTL-Config.json index a633d7b7..9ba7711e 100644 --- a/Sample-RTL-Config.json +++ b/Sample-RTL-Config.json @@ -27,7 +27,8 @@ "lnServerUrl": "https://localhost:8080", "swapServerUrl": "https://localhost:8081", "boltzServerUrl": "https://localhost:9003", - "fiatConversion": false + "fiatConversion": false, + "unannouncedChannels": false } } ] diff --git a/backend/controllers/cln/getInfo.js b/backend/controllers/cln/getInfo.js index 75891f4d..6263c542 100644 --- a/backend/controllers/cln/getInfo.js +++ b/backend/controllers/cln/getInfo.js @@ -62,7 +62,7 @@ export const getInfo = (req, res, next) => { req.session.selectedNode.ln_version = body.version || ''; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Connecting to the Core Lightning\'s Websocket Server.' }); clWsClient.updateSelectedNode(req.session.selectedNode); - databaseService.loadDatabase(req.session.selectedNode); + databaseService.loadDatabase(req.session); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Node Information Received', data: body }); return res.status(200).json(body); } diff --git a/backend/controllers/cln/invoices.js b/backend/controllers/cln/invoices.js index 0864a290..770cec12 100644 --- a/backend/controllers/cln/invoices.js +++ b/backend/controllers/cln/invoices.js @@ -31,10 +31,6 @@ export const listInvoices = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List URL', data: options.url }); request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body }); - if (body.invoices && body.invoices.length > 0) { - body.invoices = common.sortDescByKey(body.invoices, 'expires_at'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); res.status(200).json(body); }).catch((errRes) => { const err = common.handleError(errRes, 'Invoice', 'List Invoices Error', req.session.selectedNode); diff --git a/backend/controllers/cln/network.js b/backend/controllers/cln/network.js index db7987f0..76596da5 100644 --- a/backend/controllers/cln/network.js +++ b/backend/controllers/cln/network.js @@ -78,8 +78,10 @@ export const listNodes = (req, res, next) => { body.forEach((node) => { var _a, _b; if (node.option_will_fund) { - node.option_will_fund.lease_fee_base_msat = (node.option_will_fund.lease_fee_base_msat && typeof node.option_will_fund.lease_fee_base_msat === 'string' && node.option_will_fund.lease_fee_base_msat.includes('msat')) ? (_a = node.option_will_fund.lease_fee_base_msat) === null || _a === void 0 ? void 0 : _a.replace('msat', '') : node.option_will_fund.lease_fee_base_msat; - node.option_will_fund.channel_fee_max_base_msat = (node.option_will_fund.channel_fee_max_base_msat && typeof node.option_will_fund.channel_fee_max_base_msat === 'string' && node.option_will_fund.channel_fee_max_base_msat.includes('msat')) ? (_b = node.option_will_fund.channel_fee_max_base_msat) === null || _b === void 0 ? void 0 : _b.replace('msat', '') : node.option_will_fund.channel_fee_max_base_msat; + node.option_will_fund.lease_fee_base_msat = (node.option_will_fund.lease_fee_base_msat && typeof node.option_will_fund.lease_fee_base_msat === 'string' && + node.option_will_fund.lease_fee_base_msat.includes('msat')) ? (_a = node.option_will_fund.lease_fee_base_msat) === null || _a === void 0 ? void 0 : _a.replace('msat', '') : node.option_will_fund.lease_fee_base_msat; + node.option_will_fund.channel_fee_max_base_msat = (node.option_will_fund.channel_fee_max_base_msat && typeof node.option_will_fund.channel_fee_max_base_msat === 'string' && + node.option_will_fund.channel_fee_max_base_msat.includes('msat')) ? (_b = node.option_will_fund.channel_fee_max_base_msat) === null || _b === void 0 ? void 0 : _b.replace('msat', '') : node.option_will_fund.channel_fee_max_base_msat; } return node; }); diff --git a/backend/controllers/cln/offers.js b/backend/controllers/cln/offers.js index 9a735b56..ad158bcb 100644 --- a/backend/controllers/cln/offers.js +++ b/backend/controllers/cln/offers.js @@ -11,9 +11,6 @@ export const listOfferBookmarks = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Getting Offer Bookmarks..' }); databaseService.find(req.session.selectedNode, CollectionsEnum.OFFERS).then((offers) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Bookmarks Received', data: offers }); - if (offers && offers.length > 0) { - offers = common.sortDescByKey(offers, 'lastUpdatedAt'); - } res.status(200).json(offers); }).catch((errRes) => { const err = common.handleError(errRes, 'Offers', 'Offer Bookmarks Error', req.session.selectedNode); @@ -22,7 +19,7 @@ export const listOfferBookmarks = (req, res, next) => { }; export const deleteOfferBookmark = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Deleting Offer Bookmark..' }); - databaseService.destroy(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, req.params.offerStr).then((deleteRes) => { + databaseService.remove(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, req.params.offerStr).then((deleteRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Bookmark Deleted', data: deleteRes }); res.status(204).json(req.params.offerStr); }).catch((errRes) => { diff --git a/backend/controllers/cln/onchain.js b/backend/controllers/cln/onchain.js index cd97479d..fac8756a 100644 --- a/backend/controllers/cln/onchain.js +++ b/backend/controllers/cln/onchain.js @@ -44,9 +44,6 @@ export const getUTXOs = (req, res, next) => { } options.url = req.session.selectedNode.ln_server_url + '/v1/listFunds'; request(options).then((body) => { - if (body.outputs) { - body.outputs = common.sortDescByStrKey(body.outputs, 'status'); - } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Funds List Received', data: body }); res.status(200).json(body); }).catch((errRes) => { diff --git a/backend/controllers/cln/payments.js b/backend/controllers/cln/payments.js index 19507405..09f01dcc 100644 --- a/backend/controllers/cln/payments.js +++ b/backend/controllers/cln/payments.js @@ -73,10 +73,6 @@ export const listPayments = (req, res, next) => { options.url = req.session.selectedNode.ln_server_url + '/v1/pay/listPayments'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment List Received', data: body.payments }); - if (body && body.payments && body.payments.length > 0) { - body.payments = common.sortDescByKey(body.payments, 'created_at'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sorted Payments List Received', data: body.payments }); res.status(200).json(groupBy(body.payments)); }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'List Payments Error', req.session.selectedNode); @@ -108,19 +104,25 @@ export const postPayment = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent', data: body }); if (req.body.paymentType === 'OFFER') { if (req.body.saveToDB && req.body.bolt12) { - const offerToUpdate = { bolt12: req.body.bolt12, amountmSat: (req.body.zeroAmtOffer ? 0 : req.body.amount), title: req.body.title, lastUpdatedAt: new Date(Date.now()).getTime() }; + const offerToUpdate = { bolt12: req.body.bolt12, amountMSat: (req.body.zeroAmtOffer ? 0 : req.body.amount), title: req.body.title, lastUpdatedAt: new Date(Date.now()).getTime() }; if (req.body.vendor) { offerToUpdate['vendor'] = req.body.vendor; } if (req.body.description) { offerToUpdate['description'] = req.body.description; } - return databaseService.update(req.session.selectedNode, CollectionsEnum.OFFERS, offerToUpdate, CollectionFieldsEnum.BOLT12, req.body.bolt12).then((updatedOffer) => { - logger.log({ level: 'DEBUG', fileName: 'Offer', msg: 'Offer Updated', data: updatedOffer }); - return res.status(201).json({ paymentResponse: body, saveToDBResponse: updatedOffer }); - }).catch((errDB) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Payments', msg: 'Offer DB update error', error: errDB }); - return res.status(201).json({ paymentResponse: body, saveToDBError: errDB }); + // eslint-disable-next-line arrow-body-style + return databaseService.validateDocument(CollectionsEnum.OFFERS, offerToUpdate).then((validated) => { + return databaseService.update(req.session.selectedNode, CollectionsEnum.OFFERS, offerToUpdate, CollectionFieldsEnum.BOLT12, req.body.bolt12).then((updatedOffer) => { + logger.log({ level: 'DEBUG', fileName: 'Payments', msg: 'Offer Updated', data: updatedOffer }); + return res.status(201).json({ paymentResponse: body, saveToDBResponse: updatedOffer }); + }).catch((errDB) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Payments', msg: 'Offer DB update error', error: errDB }); + return res.status(201).json({ paymentResponse: body, saveToDBError: errDB }); + }); + }).catch((errValidation) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Payments', msg: 'Offer DB validation error', error: errValidation }); + return res.status(201).json({ paymentResponse: body, saveToDBError: errValidation }); }); } else { diff --git a/backend/controllers/cln/peers.js b/backend/controllers/cln/peers.js index fc9bee07..21bac143 100644 --- a/backend/controllers/cln/peers.js +++ b/backend/controllers/cln/peers.js @@ -17,9 +17,8 @@ export const getPeers = (req, res, next) => { peer.alias = peer.id.substring(0, 20); } }); - const peers = (body) ? common.sortDescByStrKey(body, 'alias') : []; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers with Alias Received', data: peers }); - res.status(200).json(peers); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers with Alias Received', data: body }); + res.status(200).json(body || []); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); @@ -33,12 +32,11 @@ export const postPeer = (req, res, next) => { } options.url = req.session.selectedNode.ln_server_url + '/v1/peer/connect'; options.body = req.body; - request.post(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: body }); + request.post(options).then((connectRes) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: connectRes }); options.url = req.session.selectedNode.ln_server_url + '/v1/peer/listPeers'; - request(options).then((body) => { - let peers = (body) ? common.sortDescByStrKey(body, 'alias') : []; - peers = common.newestOnTop(peers, 'id', req.body.id); + request(options).then((listPeersRes) => { + const peers = listPeersRes ? common.newestOnTop(listPeersRes, 'id', req.body.id) : []; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); res.status(201).json(peers); }).catch((errRes) => { diff --git a/backend/controllers/eclair/channels.js b/backend/controllers/eclair/channels.js index f3e2ad60..a8bb4cf1 100644 --- a/backend/controllers/eclair/channels.js +++ b/backend/controllers/eclair/channels.js @@ -13,10 +13,10 @@ export const simplifyAllChannels = (selNode, channels) => { nodeId: channel.nodeId ? channel.nodeId : '', channelId: channel.channelId ? channel.channelId : '', state: channel.state ? channel.state : '', - channelFlags: channel.data && channel.data.commitments && channel.data.commitments.channelFlags ? channel.data.commitments.channelFlags : 0, + announceChannel: channel.data && channel.data.commitments && channel.data.commitments.channelFlags && channel.data.commitments.channelFlags.announceChannel ? channel.data.commitments.channelFlags.announceChannel : false, toLocal: (channel.data.commitments.localCommit.spec.toLocal) ? Math.round(+channel.data.commitments.localCommit.spec.toLocal / 1000) : 0, toRemote: (channel.data.commitments.localCommit.spec.toRemote) ? Math.round(+channel.data.commitments.localCommit.spec.toRemote / 1000) : 0, - shortChannelId: channel.data && channel.data.shortChannelId ? channel.data.shortChannelId : '', + shortChannelId: channel.data && channel.data.channelUpdate && channel.data.channelUpdate.shortChannelId ? channel.data.channelUpdate.shortChannelId : '', isFunder: channel.data && channel.data.commitments && channel.data.commitments.localParams && channel.data.commitments.localParams.isFunder ? channel.data.commitments.localParams.isFunder : false, buried: channel.data && channel.data.buried ? channel.data.buried : false, feeBaseMsat: channel.data && channel.data.channelUpdate && channel.data.channelUpdate.feeBaseMsat ? channel.data.channelUpdate.feeBaseMsat : 0, diff --git a/backend/controllers/eclair/fees.js b/backend/controllers/eclair/fees.js index 05176e70..4d02048e 100644 --- a/backend/controllers/eclair/fees.js +++ b/backend/controllers/eclair/fees.js @@ -88,9 +88,6 @@ export const arrangePayments = (selNode, body) => { relayedEle.amountOut = Math.round(relayedEle.amountOut / 1000); } }); - payments.sent = common.sortDescByKey(payments.sent, 'firstPartTimestamp'); - payments.received = common.sortDescByKey(payments.received, 'firstPartTimestamp'); - payments.relayed = common.sortDescByKey(payments.relayed, 'timestamp'); logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Fees', msg: 'Arranged Payments Received', data: payments }); return payments; }; diff --git a/backend/controllers/eclair/getInfo.js b/backend/controllers/eclair/getInfo.js index 0f90db68..dbf11cf9 100644 --- a/backend/controllers/eclair/getInfo.js +++ b/backend/controllers/eclair/getInfo.js @@ -38,11 +38,11 @@ export const getInfo = (req, res, next) => { body.lnImplementation = 'Eclair'; req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; eclWsClient.updateSelectedNode(req.session.selectedNode); - databaseService.loadDatabase(req.session.selectedNode); + databaseService.loadDatabase(req.session); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Node Information Received', data: body }); return res.status(200).json(body); }).catch((errRes) => { - const err = common.handleError(errRes, 'GetInfo', 'Get Info Error', req); + const err = common.handleError(errRes, 'GetInfo', 'Get Info Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); } diff --git a/backend/controllers/eclair/invoices.js b/backend/controllers/eclair/invoices.js index 339e670f..e7228f00 100644 --- a/backend/controllers/eclair/invoices.js +++ b/backend/controllers/eclair/invoices.js @@ -71,10 +71,7 @@ export const listInvoices = (req, res, next) => { const invoices = (!body[0] || body[0].length <= 0) ? [] : body[0]; pendingInvoices = (!body[1] || body[1].length <= 0) ? [] : body[1]; return Promise.all(invoices === null || invoices === void 0 ? void 0 : invoices.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.ln_server_url, invoice))). - then((values) => { - body = common.sortDescByKey(invoices, 'expiresAt'); - return res.status(200).json(invoices); - }); + then((values) => res.status(200).json(invoices)); }); } else { @@ -86,7 +83,6 @@ export const listInvoices = (req, res, next) => { if (invoices && invoices.length > 0) { return Promise.all(invoices === null || invoices === void 0 ? void 0 : invoices.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.ln_server_url, invoice))). then((values) => { - body = common.sortDescByKey(invoices, 'expiresAt'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Sorted Invoices List Received', data: invoices }); return res.status(200).json(invoices); }). diff --git a/backend/controllers/eclair/onchain.js b/backend/controllers/eclair/onchain.js index 05e255fa..d69b1de2 100644 --- a/backend/controllers/eclair/onchain.js +++ b/backend/controllers/eclair/onchain.js @@ -66,9 +66,6 @@ export const getTransactions = (req, res, next) => { }; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Getting On Chain Transactions Options', data: options.form }); request.post(options).then((body) => { - if (body && body.length > 0) { - body = common.sortDescByKey(body, 'timestamp'); - } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'On Chain Transactions Received', data: body }); res.status(200).json(body); }).catch((errRes) => { diff --git a/backend/controllers/eclair/peers.js b/backend/controllers/eclair/peers.js index 2fb4de93..b2eb13b3 100644 --- a/backend/controllers/eclair/peers.js +++ b/backend/controllers/eclair/peers.js @@ -37,7 +37,6 @@ export const getPeers = (req, res, next) => { peer.alias = foundPeer ? foundPeer.alias : peer.nodeId.substring(0, 20); return peer; }); - body = common.sortDescByStrKey(body, 'alias'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body }); res.status(200).json(body); }); @@ -90,8 +89,7 @@ export const connectPeer = (req, res, next) => { peer.alias = foundPeer ? foundPeer.alias : peer.nodeId.substring(0, 20); return peer; }); - let peers = (body) ? common.sortDescByStrKey(body, 'alias') : []; - peers = common.newestOnTop(peers, 'nodeId', req.query.nodeId ? req.query.nodeId : req.query.uri ? req.query.uri.substring(0, req.query.uri.indexOf('@')) : ''); + const peers = common.newestOnTop(body || [], 'nodeId', req.query.nodeId ? req.query.nodeId : req.query.uri ? req.query.uri.substring(0, req.query.uri.indexOf('@')) : ''); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); res.status(201).json(peers); }); diff --git a/backend/controllers/lnd/channels.js b/backend/controllers/lnd/channels.js index 21936d3f..e9b0ae76 100644 --- a/backend/controllers/lnd/channels.js +++ b/backend/controllers/lnd/channels.js @@ -9,11 +9,11 @@ export const getAliasForChannel = (selNode, channel) => { options.url = selNode.ln_server_url + '/v1/graph/node/' + pubkey; return request(options).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Alias Received', data: aliasBody.node.alias }); - channel.remote_alias = aliasBody.node.alias; - return aliasBody.node.alias; + channel.remote_alias = aliasBody.node.alias && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); + return channel; }).catch((err) => { - channel.remote_alias = pubkey.slice(0, 10) + '...' + pubkey.slice(-10); - return pubkey; + channel.remote_alias = pubkey.slice(0, 20); + return channel; }); }; export const getAllChannels = (req, res, next) => { @@ -38,7 +38,6 @@ export const getAllChannels = (req, res, next) => { channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); return getAliasForChannel(req.session.selectedNode, channel); })).then((values) => { - body.channels = common.sortDescByKey(body.channels, 'balancedness'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); return res.status(200).json(body); }).catch((errRes) => { @@ -73,11 +72,11 @@ export const getPendingChannels = (req, res, next) => { if (body.pending_open_channels && body.pending_open_channels.length > 0) { (_a = body.pending_open_channels) === null || _a === void 0 ? void 0 : _a.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } - if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - (_b = body.pending_closing_channels) === null || _b === void 0 ? void 0 : _b.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); - } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { - (_c = body.pending_force_closing_channels) === null || _c === void 0 ? void 0 : _c.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + (_b = body.pending_force_closing_channels) === null || _b === void 0 ? void 0 : _b.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + } + if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { + (_c = body.pending_closing_channels) === null || _c === void 0 ? void 0 : _c.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { (_d = body.waiting_close_channels) === null || _d === void 0 ? void 0 : _d.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); @@ -110,7 +109,6 @@ export const getClosedChannels = (req, res, next) => { channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; return getAliasForChannel(req.session.selectedNode, channel); })).then((values) => { - body.channels = common.sortDescByKey(body.channels, 'close_height'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); return res.status(200).json(body); }).catch((errRes) => { @@ -161,7 +159,7 @@ export const postTransactions = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/transactions'; + options.url = req.session.selectedNode.ln_server_url + '/v1/channels/transaction-stream'; options.form = { payment_request: req.body.paymentReq }; if (req.body.paymentAmount) { options.form.amt = req.body.paymentAmount; diff --git a/backend/controllers/lnd/getInfo.js b/backend/controllers/lnd/getInfo.js index ef899516..efa745c8 100644 --- a/backend/controllers/lnd/getInfo.js +++ b/backend/controllers/lnd/getInfo.js @@ -45,7 +45,7 @@ export const getInfo = (req, res, next) => { else { req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; lndWsClient.updateSelectedNode(req.session.selectedNode); - databaseService.loadDatabase(req.session.selectedNode); + databaseService.loadDatabase(req.session); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Node Information Received', data: body }); return res.status(200).json(body); } diff --git a/backend/controllers/lnd/graph.js b/backend/controllers/lnd/graph.js index a0ea466d..e65ee7d9 100644 --- a/backend/controllers/lnd/graph.js +++ b/backend/controllers/lnd/graph.js @@ -10,7 +10,7 @@ export const getAliasFromPubkey = (selNode, pubkey) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; }). - catch((err) => pubkey.substring(0, 17) + '...'); + catch((err) => pubkey.substring(0, 20)); }; export const getDescribeGraph = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Network Graph..' }); diff --git a/backend/controllers/lnd/invoices.js b/backend/controllers/lnd/invoices.js index 2823d053..433f398e 100644 --- a/backend/controllers/lnd/invoices.js +++ b/backend/controllers/lnd/invoices.js @@ -46,7 +46,6 @@ export const listInvoices = (req, res, next) => { invoice.r_hash = invoice.r_hash ? Buffer.from(invoice.r_hash, 'base64').toString('hex') : ''; invoice.description_hash = invoice.description_hash ? Buffer.from(invoice.description_hash, 'base64').toString('hex') : null; }); - body.invoices = common.sortDescByKey(body.invoices, 'creation_date'); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); res.status(200).json(body); @@ -62,18 +61,7 @@ export const addInvoice = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.ln_server_url + '/v1/invoices'; - options.form = { - memo: req.body.memo, - private: req.body.private, - expiry: req.body.expiry - }; - if (req.body.amount > 0 && req.body.amount < 1) { - options.form.value_msat = req.body.amount * 1000; - } - else { - options.form.value = req.body.amount; - } - options.form = JSON.stringify(options.form); + options.form = JSON.stringify(req.body); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Added', data: body }); try { diff --git a/backend/controllers/lnd/payments.js b/backend/controllers/lnd/payments.js index 6bfca966..70e850b4 100644 --- a/backend/controllers/lnd/payments.js +++ b/backend/controllers/lnd/payments.js @@ -58,10 +58,6 @@ export const getPayments = (req, res, next) => { options.url = req.session.selectedNode.ln_server_url + '/v1/payments?max_payments=' + req.query.max_payments + '&index_offset=' + req.query.index_offset + '&reversed=' + req.query.reversed; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment List Received', data: body }); - if (body.payments && body.payments.length > 0) { - body.payments = common.sortDescByKey(body.payments, 'creation_date'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sorted Payments List Received', data: body }); res.status(200).json(body); }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'List Payments Error', req.session.selectedNode); diff --git a/backend/controllers/lnd/peers.js b/backend/controllers/lnd/peers.js index fb905eab..7c54339d 100644 --- a/backend/controllers/lnd/peers.js +++ b/backend/controllers/lnd/peers.js @@ -11,7 +11,7 @@ export const getAliasForPeers = (selNode, peer) => { peer.alias = aliasBody.node.alias; return aliasBody.node.alias; }).catch((err) => { - peer.alias = peer.pub_key.slice(0, 10) + '...' + peer.pub_key.slice(-10); + peer.alias = peer.pub_key.slice(0, 20); return peer.pub_key; }); }; @@ -26,10 +26,6 @@ export const getPeers = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; return Promise.all(peers === null || peers === void 0 ? void 0 : peers.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers with Alias before Sort', data: body }); - if (body.peers) { - body.peers = common.sortDescByStrKey(body.peers, 'alias'); - } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); res.status(200).json(body.peers); }); @@ -56,7 +52,6 @@ export const postPeer = (req, res, next) => { const peers = (!body.peers) ? [] : body.peers; return Promise.all(peers === null || peers === void 0 ? void 0 : peers.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { if (body.peers) { - body.peers = common.sortDescByStrKey(body.peers, 'alias'); body.peers = common.newestOnTop(body.peers, 'pub_key', req.body.pubkey); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); } diff --git a/backend/controllers/lnd/switch.js b/backend/controllers/lnd/switch.js index 51827f41..fb16f1d4 100644 --- a/backend/controllers/lnd/switch.js +++ b/backend/controllers/lnd/switch.js @@ -46,9 +46,6 @@ export const getAllForwardingEvents = (req, start, end, offset, caller, callback } if (!body.last_offset_index || body.last_offset_index < offset + num_max_events) { responseData[caller].last_offset_index = body.last_offset_index ? body.last_offset_index : 0; - if (responseData[caller].forwarding_events) { - responseData[caller].forwarding_events = common.sortDescByKey(responseData[caller].forwarding_events, 'timestamp'); - } return callback(responseData[caller]); } else { diff --git a/backend/controllers/lnd/transactions.js b/backend/controllers/lnd/transactions.js index 8c42775b..0b4684d8 100644 --- a/backend/controllers/lnd/transactions.js +++ b/backend/controllers/lnd/transactions.js @@ -13,10 +13,6 @@ export const getTransactions = (req, res, next) => { options.url = req.session.selectedNode.ln_server_url + '/v1/transactions'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Transactions', msg: 'Transactions List Received', data: body }); - if (body.transactions && body.transactions.length > 0) { - body.transactions = common.sortDescByKey(body.transactions, 'time_stamp'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Transactions', msg: 'Sorted Transactions List Received', data: body.transactions }); res.status(200).json(body.transactions); }).catch((errRes) => { const err = common.handleError(errRes, 'Transactions', 'List Transactions Error', req.session.selectedNode); diff --git a/backend/controllers/shared/RTLConf.js b/backend/controllers/shared/RTLConf.js index 1b693853..8e36acbc 100644 --- a/backend/controllers/shared/RTLConf.js +++ b/backend/controllers/shared/RTLConf.js @@ -19,7 +19,7 @@ export const updateSelectedNode = (req, res, next) => { if (req.headers && req.headers.authorization && req.headers.authorization !== '') { wsServer.updateLNWSClientDetails(req.session.id, +req.session.selectedNode.index, +req.params.prevNodeIndex); if (req.params.prevNodeIndex !== -1) { - databaseService.unloadDatabase(req.params.prevNodeIndex); + databaseService.unloadDatabase(req.params.prevNodeIndex, req.session.id); } } const responseVal = !req.session.selectedNode.ln_node ? '' : req.session.selectedNode.ln_node; @@ -49,10 +49,11 @@ export const getRTLConfigInitial = (req, res, next) => { const nodesArr = []; if (common.nodes && common.nodes.length > 0) { common.nodes.forEach((node, i) => { - const settings = {}; + const settings = { unannouncedChannels: false }; settings.userPersona = node.user_persona ? node.user_persona : 'MERCHANT'; settings.themeMode = (node.theme_mode) ? node.theme_mode : 'DAY'; settings.themeColor = (node.theme_color) ? node.theme_color : 'PURPLE'; + settings.unannouncedChannels = !!node.unannounced_channels || false; settings.fiatConversion = (node.fiat_conversion) ? !!node.fiat_conversion : false; settings.currencyUnit = node.currency_unit; nodesArr.push({ @@ -97,10 +98,11 @@ export const getRTLConfig = (req, res, next) => { authentication.configPath = (node.config_path) ? node.config_path : ''; authentication.swapMacaroonPath = (node.swap_macaroon_path) ? node.swap_macaroon_path : ''; authentication.boltzMacaroonPath = (node.boltz_macaroon_path) ? node.boltz_macaroon_path : ''; - const settings = {}; + const settings = { unannouncedChannels: false }; settings.userPersona = node.user_persona ? node.user_persona : 'MERCHANT'; settings.themeMode = (node.theme_mode) ? node.theme_mode : 'DAY'; settings.themeColor = (node.theme_color) ? node.theme_color : 'PURPLE'; + settings.unannouncedChannels = !!node.unannounced_channels || false; settings.fiatConversion = (node.fiat_conversion) ? !!node.fiat_conversion : false; settings.bitcoindConfigPath = node.bitcoind_config_path; settings.logLevel = node.log_level ? node.log_level : 'ERROR'; @@ -108,6 +110,7 @@ export const getRTLConfig = (req, res, next) => { settings.swapServerUrl = node.swap_server_url; settings.boltzServerUrl = node.boltz_server_url; settings.enableOffers = node.enable_offers; + settings.enablePeerswap = node.enable_peerswap; settings.channelBackupPath = node.channel_backup_path; settings.currencyUnit = node.currency_unit; nodesArr.push({ @@ -134,6 +137,7 @@ export const updateUISettings = (req, res, next) => { node.Settings.userPersona = req.body.updatedSettings.userPersona; node.Settings.themeMode = req.body.updatedSettings.themeMode; node.Settings.themeColor = req.body.updatedSettings.themeColor; + node.Settings.unannouncedChannels = req.body.updatedSettings.unannouncedChannels; node.Settings.fiatConversion = req.body.updatedSettings.fiatConversion; if (req.body.updatedSettings.fiatConversion) { node.Settings.currencyUnit = req.body.updatedSettings.currencyUnit ? req.body.updatedSettings.currencyUnit : 'USD'; @@ -145,6 +149,7 @@ export const updateUISettings = (req, res, next) => { selectedNode.user_persona = req.body.updatedSettings.userPersona; selectedNode.theme_mode = req.body.updatedSettings.themeMode; selectedNode.theme_color = req.body.updatedSettings.themeColor; + selectedNode.unannounced_channels = req.body.updatedSettings.unannouncedChannels; selectedNode.fiat_conversion = req.body.updatedSettings.fiatConversion; if (req.body.updatedSettings.fiatConversion) { selectedNode.currency_unit = req.body.updatedSettings.currencyUnit ? req.body.updatedSettings.currencyUnit : 'USD'; @@ -244,7 +249,7 @@ export const getConfig = (req, res, next) => { if (jsonConfig['Application Options'] && jsonConfig['Application Options'].color) { jsonConfig['Application Options'].color = '#' + jsonConfig['Application Options'].color; } - if (req.session.selectedNode.ln_implementation === 'ECL' && !jsonConfig['eclair.api.password']) { + if (req.params.nodeType === 'ln' && req.session.selectedNode.ln_implementation === 'ECL' && !jsonConfig['eclair.api.password']) { fileFormat = 'HOCON'; jsonConfig = parseHocon(data); } @@ -311,7 +316,7 @@ export const updateServiceSettings = (req, res, next) => { const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); const selectedNode = common.findNode(req.session.selectedNode.index); - config.nodes.find((node) => { + config.nodes.forEach((node) => { if (node.index === req.session.selectedNode.index) { switch (req.body.service) { case 'LOOP': @@ -346,6 +351,10 @@ export const updateServiceSettings = (req, res, next) => { node.Settings.enableOffers = req.body.settings.enableOffers; selectedNode.enable_offers = req.body.settings.enableOffers; break; + case 'PEERSWAP': + node.Settings.enablePeerswap = req.body.settings.enablePeerswap; + selectedNode.enable_peerswap = req.body.settings.enablePeerswap; + break; default: break; } @@ -374,7 +383,8 @@ export const maskPasswords = (obj) => { } if (typeof keys[i] === 'string' && (keys[i].toLowerCase().includes('password') || keys[i].toLowerCase().includes('multipass') || - keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword'))) { + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser'))) { obj[keys[i]] = '********************'; } } diff --git a/backend/controllers/shared/authenticate.js b/backend/controllers/shared/authenticate.js index 6be207a9..ff5e71ad 100644 --- a/backend/controllers/shared/authenticate.js +++ b/backend/controllers/shared/authenticate.js @@ -124,7 +124,7 @@ export const resetPassword = (req, res, next) => { export const logoutUser = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Logged out' }); if (req.session.selectedNode && req.session.selectedNode.index) { - databaseService.unloadDatabase(+req.session.selectedNode.index); + databaseService.unloadDatabase(+req.session.selectedNode.index, req.session.id); } req.session.destroy((err) => { res.clearCookie('connect.sid'); diff --git a/backend/controllers/shared/loop.js b/backend/controllers/shared/loop.js index 2fd33b3d..290817fb 100644 --- a/backend/controllers/shared/loop.js +++ b/backend/controllers/shared/loop.js @@ -216,10 +216,6 @@ export const swaps = (req, res, next) => { options.url = options.url + '/v1/loop/swaps'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Loop', msg: 'Loop Swaps Received', data: body }); - if (body.swaps && body.swaps.length > 0) { - body.swaps = common.sortDescByKey(body.swaps, 'initiation_time'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Sorted Loop Swaps List Received', data: body }); - } res.status(200).json(body.swaps); }).catch((errRes) => { const err = common.handleError(errRes, 'Loop', 'List Swaps Error', req.session.selectedNode); diff --git a/backend/controllers/shared/pageSettings.js b/backend/controllers/shared/pageSettings.js new file mode 100644 index 00000000..9ded7b70 --- /dev/null +++ b/backend/controllers/shared/pageSettings.js @@ -0,0 +1,33 @@ +import { Database } from '../../utils/database.js'; +import { Logger } from '../../utils/logger.js'; +import { Common } from '../../utils/common.js'; +import { CollectionsEnum } from '../../models/database.model.js'; +const logger = Logger; +const common = Common; +const databaseService = Database; +export const getPageSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Getting Page Settings..' }); + databaseService.find(req.session.selectedNode, CollectionsEnum.PAGE_SETTINGS).then((settings) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Page Settings Received', data: settings }); + res.status(200).json(settings); + }).catch((errRes) => { + const err = common.handleError(errRes, 'Page Settings', 'Page Settings Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; +export const savePageSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Saving Page Settings..' }); + // eslint-disable-next-line arrow-body-style + return Promise.all(req.body.map((page) => databaseService.validateDocument(CollectionsEnum.PAGE_SETTINGS, page))).then((values) => { + return databaseService.insert(req.session.selectedNode, CollectionsEnum.PAGE_SETTINGS, req.body).then((insertRes) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Page Settings Updated', data: insertRes }); + res.status(201).json(insertRes); + }).catch((insertErrRes) => { + const err = common.handleError(insertErrRes, 'Page Settings', 'Page Settings Update Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); + }).catch((errRes) => { + const err = common.handleError(errRes, 'Page Settings', 'Page Settings Validation Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; diff --git a/backend/models/config.model.js b/backend/models/config.model.js index 3191329f..78cb9cfb 100644 --- a/backend/models/config.model.js +++ b/backend/models/config.model.js @@ -1,5 +1,5 @@ export class CommonSelectedNode { - constructor(options, ln_server_url, macaroon_path, ln_api_password, swap_server_url, boltz_server_url, config_path, rtl_conf_file_path, swap_macaroon_path, boltz_macaroon_path, bitcoind_config_path, channel_backup_path, log_level, log_file, index, ln_node, ln_implementation, user_persona, theme_mode, theme_color, fiat_conversion, currency_unit, ln_version, api_version, enable_offers) { + constructor(options, ln_server_url, macaroon_path, ln_api_password, swap_server_url, boltz_server_url, config_path, rtl_conf_file_path, swap_macaroon_path, boltz_macaroon_path, bitcoind_config_path, channel_backup_path, log_level, log_file, index, ln_node, ln_implementation, user_persona, theme_mode, theme_color, unannounced_channels, fiat_conversion, currency_unit, ln_version, api_version, enable_offers, enable_peerswap) { this.options = options; this.ln_server_url = ln_server_url; this.macaroon_path = macaroon_path; @@ -20,11 +20,13 @@ export class CommonSelectedNode { this.user_persona = user_persona; this.theme_mode = theme_mode; this.theme_color = theme_color; + this.unannounced_channels = unannounced_channels; this.fiat_conversion = fiat_conversion; this.currency_unit = currency_unit; this.ln_version = ln_version; this.api_version = api_version; this.enable_offers = enable_offers; + this.enable_peerswap = enable_peerswap; } } export class AuthenticationConfiguration { @@ -35,10 +37,11 @@ export class AuthenticationConfiguration { } } export class NodeSettingsConfiguration { - constructor(userPersona, themeMode, themeColor, fiatConversion, currencyUnit, bitcoindConfigPath, logLevel, lnServerUrl, swapServerUrl, boltzServerUrl, channelBackupPath, enableOffers) { + constructor(userPersona, themeMode, themeColor, unannouncedChannels, fiatConversion, currencyUnit, bitcoindConfigPath, logLevel, lnServerUrl, swapServerUrl, boltzServerUrl, channelBackupPath, enableOffers, enablePeerswap) { this.userPersona = userPersona; this.themeMode = themeMode; this.themeColor = themeColor; + this.unannouncedChannels = unannouncedChannels; this.fiatConversion = fiatConversion; this.currencyUnit = currencyUnit; this.bitcoindConfigPath = bitcoindConfigPath; @@ -48,6 +51,7 @@ export class NodeSettingsConfiguration { this.boltzServerUrl = boltzServerUrl; this.channelBackupPath = channelBackupPath; this.enableOffers = enableOffers; + this.enablePeerswap = enablePeerswap; } } export class LogJSONObj { diff --git a/backend/models/database.model.js b/backend/models/database.model.js index 0ae353ca..ac5f7b1a 100644 --- a/backend/models/database.model.js +++ b/backend/models/database.model.js @@ -1,38 +1,139 @@ -export var CollectionsEnum; -(function (CollectionsEnum) { - CollectionsEnum["OFFERS"] = "Offers"; -})(CollectionsEnum || (CollectionsEnum = {})); export var OfferFieldsEnum; (function (OfferFieldsEnum) { OfferFieldsEnum["BOLT12"] = "bolt12"; - OfferFieldsEnum["AMOUNTMSAT"] = "amountmSat"; + OfferFieldsEnum["AMOUNTMSAT"] = "amountMSat"; OfferFieldsEnum["TITLE"] = "title"; OfferFieldsEnum["VENDOR"] = "vendor"; OfferFieldsEnum["DESCRIPTION"] = "description"; })(OfferFieldsEnum || (OfferFieldsEnum = {})); -export const CollectionFieldsEnum = Object.assign({}, OfferFieldsEnum); export class Offer { - constructor(bolt12, amountmSat, title, vendor, description, lastUpdatedAt) { + constructor(bolt12, amountMSat, title, vendor, description, lastUpdatedAt) { this.bolt12 = bolt12; - this.amountmSat = amountmSat; + this.amountMSat = amountMSat; this.title = title; this.vendor = vendor; this.description = description; this.lastUpdatedAt = lastUpdatedAt; } } +export const validateDocument = (collectionName, documentToValidate) => { + switch (collectionName) { + case CollectionsEnum.OFFERS: + return validateOffer(documentToValidate); + case CollectionsEnum.PAGE_SETTINGS: + return validatePageSettings(documentToValidate); + default: + return ({ isValid: false, error: 'Collection does not exist' }); + } +}; export const validateOffer = (documentToValidate) => { if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.BOLT12)) { - return ({ isValid: false, error: CollectionFieldsEnum.BOLT12 + 'is mandatory.' }); + return ({ isValid: false, error: 'Bolt12 is mandatory.' }); } if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.AMOUNTMSAT)) { - return ({ isValid: false, error: CollectionFieldsEnum.AMOUNTMSAT + 'is mandatory.' }); + return ({ isValid: false, error: 'Amount mSat is mandatory.' }); } if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.TITLE)) { - return ({ isValid: false, error: CollectionFieldsEnum.TITLE + 'is mandatory.' }); + return ({ isValid: false, error: 'Title is mandatory.' }); } if ((typeof documentToValidate[CollectionFieldsEnum.AMOUNTMSAT] !== 'number')) { - return ({ isValid: false, error: CollectionFieldsEnum.AMOUNTMSAT + 'should be a number.' }); + return ({ isValid: false, error: 'Amount mSat should be a number.' }); } return ({ isValid: true }); }; +export var SortOrderEnum; +(function (SortOrderEnum) { + SortOrderEnum["ASCENDING"] = "asc"; + SortOrderEnum["DESCENDING"] = "desc"; +})(SortOrderEnum || (SortOrderEnum = {})); +export var PageSettingsFieldsEnum; +(function (PageSettingsFieldsEnum) { + PageSettingsFieldsEnum["PAGE_ID"] = "pageId"; + PageSettingsFieldsEnum["TABLES"] = "tables"; +})(PageSettingsFieldsEnum || (PageSettingsFieldsEnum = {})); +export var TableSettingsFieldsEnum; +(function (TableSettingsFieldsEnum) { + TableSettingsFieldsEnum["TABLE_ID"] = "tableId"; + TableSettingsFieldsEnum["RECORDS_PER_PAGE"] = "recordsPerPage"; + TableSettingsFieldsEnum["SORT_BY"] = "sortBy"; + TableSettingsFieldsEnum["SORT_ORDER"] = "sortOrder"; + TableSettingsFieldsEnum["COLUMN_SELECTION"] = "columnSelection"; + TableSettingsFieldsEnum["COLUMN_SELECTION_SM"] = "columnSelectionSM"; +})(TableSettingsFieldsEnum || (TableSettingsFieldsEnum = {})); +export class TableSetting { + constructor(tableId, recordsPerPage, sortBy, sortOrder, columnSelection) { + this.tableId = tableId; + this.recordsPerPage = recordsPerPage; + this.sortBy = sortBy; + this.sortOrder = sortOrder; + this.columnSelection = columnSelection; + } +} +export class PageSettings { + constructor(pageId, tables) { + this.pageId = pageId; + this.tables = tables; + } +} +export const validatePageSettings = (documentToValidate) => { + let errorMessages = ''; + if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.PAGE_ID)) { + errorMessages = errorMessages + 'Page ID is mandatory.'; + } + if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.TABLES)) { + errorMessages = errorMessages + 'Tables is mandatory.'; + } + const tablesMessages = documentToValidate.tables.reduce((tableAcc, table, tableIdx) => { + let errMsg = ''; + if (!table.hasOwnProperty(CollectionFieldsEnum.TABLE_ID)) { + errMsg = errMsg + 'Table ID is mandatory.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.SORT_BY)) { + errMsg = errMsg + 'Sort By is mandatory.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.SORT_ORDER)) { + errMsg = errMsg + 'Sort Order is mandatory.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.COLUMN_SELECTION_SM)) { + errMsg = errMsg + 'Column Selection (Mobile Resolution) is mandatory.'; + } + if (table[CollectionFieldsEnum.COLUMN_SELECTION_SM].length < 1) { + errMsg = errMsg + 'Column Selection (Mobile Resolution) should have at least 1 field.'; + } + if (table[CollectionFieldsEnum.COLUMN_SELECTION_SM].length > 3) { + errMsg = errMsg + 'Column Selection (Mobile Resolution) should have maximum 3 fields.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.COLUMN_SELECTION)) { + errMsg = errMsg + 'Column Selection (Desktop Resolution) is mandatory.'; + } + if (table[CollectionFieldsEnum.COLUMN_SELECTION].length < 2) { + errMsg = errMsg + 'Column Selection (Desktop Resolution) should have at least 2 fields.'; + } + if (errMsg.trim() !== '') { + tableAcc.push({ table: (table.hasOwnProperty(CollectionFieldsEnum.TABLE_ID) ? table[CollectionFieldsEnum.TABLE_ID] : (tableIdx + 1)), message: errMsg }); + } + return tableAcc; + }, []); + if (errorMessages.trim() === '' && tablesMessages.length === 0) { + return ({ isValid: true }); + } + else { + const errObj = { page: (documentToValidate.hasOwnProperty(CollectionFieldsEnum.PAGE_ID) ? documentToValidate[CollectionFieldsEnum.PAGE_ID] : 'Unknown') }; + if (errorMessages.trim() !== '') { + errObj['message'] = errorMessages; + } + if (tablesMessages.length && tablesMessages.length > 0) { + errObj['tables'] = tablesMessages; + } + return ({ isValid: false, error: JSON.stringify(errObj) }); + } +}; +export var CollectionsEnum; +(function (CollectionsEnum) { + CollectionsEnum["OFFERS"] = "Offers"; + CollectionsEnum["PAGE_SETTINGS"] = "PageSettings"; +})(CollectionsEnum || (CollectionsEnum = {})); +export const CollectionFieldsEnum = Object.assign(Object.assign(Object.assign({}, OfferFieldsEnum), PageSettingsFieldsEnum), TableSettingsFieldsEnum); +export const LNDCollection = [CollectionsEnum.PAGE_SETTINGS]; +export const ECLCollection = [CollectionsEnum.PAGE_SETTINGS]; +export const CLNCollection = [CollectionsEnum.PAGE_SETTINGS, CollectionsEnum.OFFERS]; diff --git a/backend/routes/shared/index.js b/backend/routes/shared/index.js index 9a4f58f6..2fd7e10e 100644 --- a/backend/routes/shared/index.js +++ b/backend/routes/shared/index.js @@ -4,12 +4,14 @@ import authenticateRoutes from './authenticate.js'; import boltzRoutes from './boltz.js'; import loopRoutes from './loop.js'; import RTLConfRoutes from './RTLConf.js'; +import pageSettingsRoutes from './pageSettings.js'; const router = Router(); const sharedRoutes = [ { path: '/authenticate', route: authenticateRoutes }, { path: '/boltz', route: boltzRoutes }, { path: '/loop', route: loopRoutes }, - { path: '/conf', route: RTLConfRoutes } + { path: '/conf', route: RTLConfRoutes }, + { path: '/pagesettings', route: pageSettingsRoutes } ]; sharedRoutes.forEach((route) => { router.use(route.path, route.route); diff --git a/backend/routes/shared/pageSettings.js b/backend/routes/shared/pageSettings.js new file mode 100644 index 00000000..6f3920c6 --- /dev/null +++ b/backend/routes/shared/pageSettings.js @@ -0,0 +1,8 @@ +import exprs from 'express'; +const { Router } = exprs; +import { isAuthenticated } from '../../utils/authCheck.js'; +import { getPageSettings, savePageSettings } from '../../controllers/shared/pageSettings.js'; +const router = Router(); +router.get('/', isAuthenticated, getPageSettings); +router.post('/', isAuthenticated, savePageSettings); +export default router; diff --git a/backend/utils/app.js b/backend/utils/app.js index f6f32aea..06800e1f 100644 --- a/backend/utils/app.js +++ b/backend/utils/app.js @@ -41,13 +41,14 @@ export class ExpressApplication { this.app.use(this.common.baseHref + '/api/ecl', eclRoutes); this.app.use(this.common.baseHref, express.static(join(this.directoryName, '../..', 'frontend'))); this.app.use((req, res, next) => { - // For Angular App - res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); - // For JQuery Browser Plugin - res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); + res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); // RTL Angular Frontend + res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); // RTL Quickpay JQuery res.sendFile(join(this.directoryName, '../..', 'frontend', 'index.html')); }); - this.app.use((err, req, res, next) => this.handleApplicationErrors(err, res)); + this.app.use((err, req, res, next) => { + this.handleApplicationErrors(err, res); + next(); + }); this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; this.handleApplicationErrors = (err, res) => { diff --git a/backend/utils/common.js b/backend/utils/common.js index 3927ea2b..4adf5fdf 100644 --- a/backend/utils/common.js +++ b/backend/utils/common.js @@ -24,7 +24,10 @@ export class CommonService { this.read_dummy_data = false; this.baseHref = '/rtl'; this.dummy_data_array_from_file = []; - this.MONTHS = [{ name: 'JAN', days: 31 }, { name: 'FEB', days: 28 }, { name: 'MAR', days: 31 }, { name: 'APR', days: 30 }, { name: 'MAY', days: 31 }, { name: 'JUN', days: 30 }, { name: 'JUL', days: 31 }, { name: 'AUG', days: 31 }, { name: 'SEP', days: 30 }, { name: 'OCT', days: 31 }, { name: 'NOV', days: 30 }, { name: 'DEC', days: 31 }]; + this.MONTHS = [ + { name: 'JAN', days: 31 }, { name: 'FEB', days: 28 }, { name: 'MAR', days: 31 }, { name: 'APR', days: 30 }, { name: 'MAY', days: 31 }, { name: 'JUN', days: 30 }, + { name: 'JUL', days: 31 }, { name: 'AUG', days: 31 }, { name: 'SEP', days: 30 }, { name: 'OCT', days: 31 }, { name: 'NOV', days: 30 }, { name: 'DEC', days: 31 } + ]; this.getSwapServerOptions = (req) => { const swapOptions = { url: req.session.selectedNode.swap_server_url, @@ -253,16 +256,29 @@ export class CommonService { break; } this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: fileName, msg: errMsg, error: (typeof err === 'object' ? JSON.stringify(err) : (typeof err === 'string') ? err : 'Unknown Error') }); - const newErrorObj = { - statusCode: err.statusCode ? err.statusCode : err.status ? err.status : (err.error && err.error.code && err.error.code === 'ECONNREFUSED') ? 503 : 500, - message: (err.error && err.error.message) ? err.error.message : err.message ? err.message : errMsg, - error: ((err.error && err.error.error && err.error.error.error && typeof err.error.error.error === 'string') ? err.error.error.error : - (err.error && err.error.error && typeof err.error.error === 'string') ? err.error.error : - (err.error && err.error.error && err.error.error.message && typeof err.error.error.message === 'string') ? err.error.error.message : - (err.error && err.error.message && typeof err.error.message === 'string') ? err.error.message : - (err.error && typeof err.error === 'string') ? err.error : - (err.message && typeof err.message === 'string') ? err.message : (typeof err === 'string') ? err : 'Unknown Error') - }; + let newErrorObj = { statusCode: 500, message: '', error: '' }; + if (err.code && err.code === 'ENOENT') { + newErrorObj = { + statusCode: 500, + message: 'No such file or directory ' + (err.path ? err.path : ''), + error: 'No such file or directory ' + (err.path ? err.path : '') + }; + } + else { + newErrorObj = { + statusCode: err.statusCode ? err.statusCode : err.status ? err.status : (err.error && err.error.code && err.error.code === 'ECONNREFUSED') ? 503 : 500, + message: (err.error && err.error.message) ? err.error.message : err.message ? err.message : errMsg, + error: ((err.error && err.error.error && err.error.error.error && typeof err.error.error.error === 'string') ? err.error.error.error : + (err.error && err.error.error && typeof err.error.error === 'string') ? err.error.error : + (err.error && err.error.error && err.error.error.message && typeof err.error.error.message === 'string') ? err.error.error.message : + (err.error && err.error.message && typeof err.error.message === 'string') ? err.error.message : + (err.error && typeof err.error === 'string') ? err.error : + (err.message && typeof err.message === 'string') ? err.message : (typeof err === 'string') ? err : 'Unknown Error') + }; + } + if (selectedNode.ln_implementation === 'ECL' && err.message.indexOf('Authentication Error') < 0 && err.name === 'StatusCodeError') { + newErrorObj.statusCode = 500; + } return newErrorObj; }; this.getRequestIP = (req) => ((typeof req.headers['x-forwarded-for'] === 'string' && req.headers['x-forwarded-for'].split(',').shift()) || diff --git a/backend/utils/config.js b/backend/utils/config.js index d06d40f9..fc16da62 100644 --- a/backend/utils/config.js +++ b/backend/utils/config.js @@ -66,12 +66,13 @@ export class ConfigService { channelBackupPath: channelBackupPath, logLevel: 'ERROR', lnServerUrl: 'https://localhost:8080', - fiatConversion: false + fiatConversion: false, + unannouncedChannels: false } } ] }; - if (+process.env.RTL_SSO === 0) { + if (+process.env.RTL_SSO === 0 || configData.SSO.rtlSSO === 0) { configData['multiPass'] = 'password'; } return configData; @@ -211,6 +212,7 @@ export class ConfigService { this.common.nodes[idx].user_persona = node.Settings.userPersona ? node.Settings.userPersona : 'MERCHANT'; this.common.nodes[idx].theme_mode = node.Settings.themeMode ? node.Settings.themeMode : 'DAY'; this.common.nodes[idx].theme_color = node.Settings.themeColor ? node.Settings.themeColor : 'PURPLE'; + this.common.nodes[idx].unannounced_channels = node.Settings.unannouncedChannels ? !!node.Settings.unannouncedChannels : false; this.common.nodes[idx].log_level = node.Settings.logLevel ? node.Settings.logLevel : 'ERROR'; this.common.nodes[idx].fiat_conversion = node.Settings.fiatConversion ? !!node.Settings.fiatConversion : false; if (this.common.nodes[idx].fiat_conversion) { @@ -241,6 +243,7 @@ export class ConfigService { this.common.nodes[idx].boltz_macaroon_path = ''; } this.common.nodes[idx].enable_offers = process.env.ENABLE_OFFERS ? process.env.ENABLE_OFFERS : (node.Settings.enableOffers) ? node.Settings.enableOffers : false; + this.common.nodes[idx].enable_peerswap = process.env.ENABLE_PEERSWAP ? process.env.ENABLE_PEERSWAP : (node.Settings.enablePeerswap) ? node.Settings.enablePeerswap : false; this.common.nodes[idx].bitcoind_config_path = process.env.BITCOIND_CONFIG_PATH ? process.env.BITCOIND_CONFIG_PATH : (node.Settings.bitcoindConfigPath) ? node.Settings.bitcoindConfigPath : ''; this.common.nodes[idx].channel_backup_path = process.env.CHANNEL_BACKUP_PATH ? process.env.CHANNEL_BACKUP_PATH : (node.Settings.channelBackupPath) ? node.Settings.channelBackupPath : this.common.rtl_conf_file_path + sep + 'channels-backup' + sep + 'node-' + node.index; try { diff --git a/backend/utils/database.js b/backend/utils/database.js index f0ac3777..950944c2 100644 --- a/backend/utils/database.js +++ b/backend/utils/database.js @@ -3,7 +3,7 @@ import { join, dirname, sep } from 'path'; import { fileURLToPath } from 'url'; import { Common } from '../utils/common.js'; import { Logger } from '../utils/logger.js'; -import { CollectionsEnum, validateOffer } from '../models/database.model.js'; +import { validateDocument, LNDCollection, ECLCollection, CLNCollection } from '../models/database.model.js'; export class DatabaseService { constructor() { this.common = Common; @@ -11,33 +11,68 @@ export class DatabaseService { this.dbDirectory = join(dirname(fileURLToPath(import.meta.url)), '..', '..', 'database'); this.nodeDatabase = {}; } - loadDatabase(selectedNode) { + loadDatabase(session) { + const { id, selectedNode } = session; try { if (!this.nodeDatabase[selectedNode.index]) { - this.nodeDatabase[selectedNode.index] = { adapter: null, data: null }; + this.nodeDatabase[selectedNode.index] = { adapter: null, data: {} }; + this.nodeDatabase[selectedNode.index].adapter = new DatabaseAdapter(this.dbDirectory, selectedNode, id); + this.fetchNodeData(selectedNode); + this.logger.log({ selectedNode: selectedNode, level: 'DEBUG', fileName: 'Database', msg: 'Database Loaded', data: this.nodeDatabase[selectedNode.index].data }); + } + else { + this.nodeDatabase[selectedNode.index].adapter.insertSession(id); } - this.nodeDatabase[selectedNode.index].adapter = new DatabaseAdapter(this.dbDirectory, 'rtldb', selectedNode); - this.nodeDatabase[selectedNode.index].data = this.nodeDatabase[selectedNode.index].adapter.fetchData(); } catch (err) { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: 'Database', msg: 'Database Load Error', error: err }); } } - create(selectedNode, collectionName, newDocument) { + fetchNodeData(selectedNode) { + switch (selectedNode.ln_implementation) { + case 'CLN': + for (const collectionName in CLNCollection) { + if (CLNCollection.hasOwnProperty(collectionName)) { + this.nodeDatabase[selectedNode.index].data[CLNCollection[collectionName]] = this.nodeDatabase[selectedNode.index].adapter.fetchData(CLNCollection[collectionName]); + } + } + break; + case 'ECL': + for (const collectionName in ECLCollection) { + if (ECLCollection.hasOwnProperty(collectionName)) { + this.nodeDatabase[selectedNode.index].data[ECLCollection[collectionName]] = this.nodeDatabase[selectedNode.index].adapter.fetchData(ECLCollection[collectionName]); + } + } + break; + default: + for (const collectionName in LNDCollection) { + if (LNDCollection.hasOwnProperty(collectionName)) { + this.nodeDatabase[selectedNode.index].data[LNDCollection[collectionName]] = this.nodeDatabase[selectedNode.index].adapter.fetchData(LNDCollection[collectionName]); + } + } + break; + } + } + validateDocument(collectionName, newDocument) { + return new Promise((resolve, reject) => { + const validationRes = validateDocument(collectionName, newDocument); + if (!validationRes.isValid) { + reject(validationRes.error); + } + else { + resolve(true); + } + }); + } + insert(selectedNode, collectionName, newCollection) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { reject(new Error('Selected Node Config Not Found.')); } - const validationRes = this.validateDocument(CollectionsEnum.OFFERS, newDocument); - if (!validationRes.isValid) { - reject(validationRes.error); - } - else { - this.nodeDatabase[selectedNode.index].data[collectionName].push(newDocument); - this.saveDatabase(+selectedNode.index); - resolve(newDocument); - } + this.nodeDatabase[selectedNode.index].data[collectionName] = newCollection; + this.saveDatabase(selectedNode, collectionName); + resolve(this.nodeDatabase[selectedNode.index].data[collectionName]); } catch (errRes) { reject(errRes); @@ -64,23 +99,17 @@ export class DatabaseService { } updatedDocument = foundDoc; } - const validationRes = this.validateDocument(CollectionsEnum.OFFERS, updatedDocument); - if (!validationRes.isValid) { - reject(validationRes.error); + if (foundDocIdx > -1) { + this.nodeDatabase[selectedNode.index].data[collectionName].splice(foundDocIdx, 1, updatedDocument); } else { - if (foundDocIdx > -1) { - this.nodeDatabase[selectedNode.index].data[collectionName].splice(foundDocIdx, 1, updatedDocument); - } - else { - if (!this.nodeDatabase[selectedNode.index].data[collectionName]) { - this.nodeDatabase[selectedNode.index].data[collectionName] = []; - } - this.nodeDatabase[selectedNode.index].data[collectionName].push(updatedDocument); + if (!this.nodeDatabase[selectedNode.index].data[collectionName]) { + this.nodeDatabase[selectedNode.index].data[collectionName] = []; } - this.saveDatabase(+selectedNode.index); - resolve(updatedDocument); + this.nodeDatabase[selectedNode.index].data[collectionName].push(updatedDocument); } + this.saveDatabase(selectedNode, collectionName); + resolve(updatedDocument); } catch (errRes) { reject(errRes); @@ -105,7 +134,7 @@ export class DatabaseService { } }); } - destroy(selectedNode, collectionName, documentFieldName, documentFieldValue) { + remove(selectedNode, collectionName, documentFieldName, documentFieldValue) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { @@ -118,7 +147,7 @@ export class DatabaseService { else { reject(new Error('Unable to delete, document not found.')); } - this.saveDatabase(+selectedNode.index); + this.saveDatabase(selectedNode, collectionName); resolve(documentFieldValue); } catch (errRes) { @@ -126,17 +155,10 @@ export class DatabaseService { } }); } - validateDocument(collectionName, documentToValidate) { - switch (collectionName) { - case CollectionsEnum.OFFERS: - return validateOffer(documentToValidate); - default: - return ({ isValid: false, error: 'Collection does not exist' }); - } - } - saveDatabase(nodeIndex) { + saveDatabase(selectedNode, collectionName) { + const nodeIndex = +selectedNode.index; try { - if (+nodeIndex < 1) { + if (nodeIndex < 1) { return true; } const selNode = this.nodeDatabase[nodeIndex] && this.nodeDatabase[nodeIndex].adapter && this.nodeDatabase[nodeIndex].adapter.selNode ? this.nodeDatabase[nodeIndex].adapter.selNode : null; @@ -144,69 +166,131 @@ export class DatabaseService { this.logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Database', msg: 'Database Save Error: Selected Node Setup Not Found.' }); throw new Error('Database Save Error: Selected Node Setup Not Found.'); } - this.nodeDatabase[nodeIndex].adapter.saveData(this.nodeDatabase[nodeIndex].data); - this.logger.log({ selectedNode: this.nodeDatabase[nodeIndex].adapter.selNode, level: 'INFO', fileName: 'Database', msg: 'Database Saved' }); + this.nodeDatabase[nodeIndex].adapter.saveData(collectionName, this.nodeDatabase[selectedNode.index].data[collectionName]); + this.logger.log({ selectedNode: this.nodeDatabase[nodeIndex].adapter.selNode, level: 'INFO', fileName: 'Database', msg: 'Database Collection ' + collectionName + ' Saved' }); return true; } catch (err) { const selNode = this.nodeDatabase[nodeIndex] && this.nodeDatabase[nodeIndex].adapter && this.nodeDatabase[nodeIndex].adapter.selNode ? this.nodeDatabase[nodeIndex].adapter.selNode : null; this.logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Database', msg: 'Database Save Error', error: err }); - return new Error(err); + throw err; } } - unloadDatabase(nodeIndex) { - this.saveDatabase(nodeIndex); - this.nodeDatabase[nodeIndex] = null; + unloadDatabase(nodeIndex, sessionID) { + if (nodeIndex > 0) { + if (this.nodeDatabase[nodeIndex] && this.nodeDatabase[nodeIndex].adapter) { + this.nodeDatabase[nodeIndex].adapter.removeSession(sessionID); + if (this.nodeDatabase[nodeIndex].adapter.userSessions && this.nodeDatabase[nodeIndex].adapter.userSessions.length <= 0) { + delete this.nodeDatabase[nodeIndex]; + } + } + } } } export class DatabaseAdapter { - constructor(dbDirectoryPath, fileName, selNode = null) { + constructor(dbDirectoryPath, selNode = null, id = '') { this.dbDirectoryPath = dbDirectoryPath; - this.fileName = fileName; this.selNode = selNode; - this.dbFile = ''; - this.dbFile = dbDirectoryPath + sep + fileName + '-node-' + selNode.index + '.json'; + this.id = id; + this.logger = Logger; + this.common = Common; + this.dbFilePath = ''; + this.userSessions = []; + this.dbFilePath = dbDirectoryPath + sep + 'node-' + selNode.index; + // For backward compatibility Start + const oldFilePath = dbDirectoryPath + sep + 'rtldb-node-' + selNode.index + '.json'; + if (selNode.ln_implementation === 'CLN' && fs.existsSync(oldFilePath)) { + this.renameOldDB(oldFilePath, selNode); + } + // For backward compatibility End + this.insertSession(id); } - fetchData() { + renameOldDB(oldFilePath, selNode = null) { + const newFilePath = this.dbFilePath + sep + 'rtldb-' + selNode.ln_implementation + '-Offers.json'; try { - if (!fs.existsSync(this.dbDirectoryPath)) { - fs.mkdirSync(this.dbDirectoryPath); + this.common.createDirectory(this.dbFilePath); + const oldOffers = JSON.parse(fs.readFileSync(oldFilePath, 'utf-8')); + fs.writeFileSync(oldFilePath, JSON.stringify(oldOffers.Offers, null, 2)); + fs.renameSync(oldFilePath, newFilePath); + } + catch (err) { + this.logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Database', msg: 'Rename Old Database Error', error: err }); + } + } + fetchData(collectionName) { + try { + if (!fs.existsSync(this.dbFilePath)) { + this.common.createDirectory(this.dbFilePath); } } catch (err) { - return new Error('Unable to Create Directory Error ' + JSON.stringify(err)); + throw new Error(JSON.stringify(err)); } + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; try { - if (!fs.existsSync(this.dbFile)) { - fs.writeFileSync(this.dbFile, '{}'); + if (!fs.existsSync(collectionFilePath)) { + fs.writeFileSync(collectionFilePath, '[]'); } } catch (err) { - return new Error('Unable to Create Database File Error ' + JSON.stringify(err)); + throw new Error(JSON.stringify(err)); + } + try { + const otherFiles = fs.readdirSync(this.dbFilePath); + otherFiles.forEach((oFileName) => { + let collectionValid = false; + switch (this.selNode.ln_implementation) { + case 'CLN': + collectionValid = CLNCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + break; + case 'ECL': + collectionValid = ECLCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + break; + default: + collectionValid = LNDCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + break; + } + if (oFileName.endsWith('.json') && !collectionValid) { + fs.renameSync(this.dbFilePath + sep + oFileName, this.dbFilePath + sep + oFileName + '.tmp'); + } + }); + } + catch (err) { + this.logger.log({ selectedNode: this.selNode, level: 'ERROR', fileName: 'Database', msg: 'Rename Other Implementation DB Error', error: err }); } try { - const dataFromFile = fs.readFileSync(this.dbFile, 'utf-8'); - return !dataFromFile ? null : JSON.parse(dataFromFile); + const dataFromFile = fs.readFileSync(collectionFilePath, 'utf-8'); + const dataObj = !dataFromFile ? null : JSON.parse(dataFromFile); + return dataObj; } catch (err) { - return new Error('Database Read Error ' + JSON.stringify(err)); + throw new Error(JSON.stringify(err)); } } getSelNode() { return this.selNode; } - saveData(data) { + saveData(collectionName, collectionData) { try { - if (data) { - const tempFile = this.dbFile + '.tmp'; - fs.writeFileSync(tempFile, JSON.stringify(data, null, 2)); - fs.renameSync(tempFile, this.dbFile); + if (collectionData) { + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; + const tempFile = collectionFilePath + '.tmp'; + fs.writeFileSync(tempFile, JSON.stringify(collectionData, null, 2)); + fs.renameSync(tempFile, collectionFilePath); } return true; } catch (err) { - return new Error('Database Write Error ' + JSON.stringify(err)); + throw err; } } + insertSession(id = '') { + if (!this.userSessions.includes(id)) { + this.userSessions.push(id); + } + } + removeSession(sessionID = '') { + this.userSessions.splice(this.userSessions.findIndex((sId) => sId === sessionID), 1); + } } export const Database = new DatabaseService(); diff --git a/backend/utils/logger.js b/backend/utils/logger.js index ab2cb4a2..e2fc12c6 100644 --- a/backend/utils/logger.js +++ b/backend/utils/logger.js @@ -7,8 +7,10 @@ export class LoggerService { switch (msgJSON.level) { case 'ERROR': if (msgJSON.error) { - msgStr = msgStr + ': ' + ((msgJSON.error.error && msgJSON.error.error.message && typeof msgJSON.error.error.message === 'string') ? msgJSON.error.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.message && typeof msgJSON.error.message === 'string') ? msgJSON.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.stack && typeof msgJSON.error.stack === 'string') ? - msgJSON.error.stack : (typeof msgJSON.error === 'object') ? JSON.stringify(msgJSON.error) : (typeof msgJSON.error === 'string') ? msgJSON.error : '') + '\r\n'; + msgStr = msgStr + ': ' + ((msgJSON.error.error && msgJSON.error.error.message && typeof msgJSON.error.error.message === 'string') ? + msgJSON.error.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.message && typeof msgJSON.error.message === 'string') ? msgJSON.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.stack && typeof msgJSON.error.stack === 'string') ? + msgJSON.error.stack : (typeof msgJSON.error === 'object') ? JSON.stringify(msgJSON.error) : (typeof msgJSON.error === 'string') ? + msgJSON.error : '') + '\r\n'; } else { msgStr = msgStr + '.\r\n'; @@ -67,7 +69,9 @@ export class LoggerService { ; const prepMsgData = (msgJSON, msgStr) => { if (msgJSON.data) { - msgStr = msgStr + ': ' + (typeof msgJSON.data === 'object' ? (msgJSON.data.message && typeof msgJSON.data.message === 'string') ? msgJSON.data.message : (msgJSON.data.stack && typeof msgJSON.data.stack === 'string') ? msgJSON.data.stack : JSON.stringify(msgJSON.data) : (typeof msgJSON.data === 'string') ? msgJSON.data : '') + '\r\n'; + msgStr = msgStr + ': ' + (typeof msgJSON.data === 'object' ? (msgJSON.data.message && typeof msgJSON.data.message === 'string') ? + msgJSON.data.message : (msgJSON.data.stack && typeof msgJSON.data.stack === 'string') ? + msgJSON.data.stack : JSON.stringify(msgJSON.data) : (typeof msgJSON.data === 'string') ? msgJSON.data : '') + '\r\n'; } else { msgStr = msgStr + '.\r\n'; diff --git a/backend/utils/webSocketServer.js b/backend/utils/webSocketServer.js index d544167a..8a466693 100644 --- a/backend/utils/webSocketServer.js +++ b/backend/utils/webSocketServer.js @@ -55,10 +55,10 @@ export class RTLWebSocketServer { this.mountEventsOnConnection = (websocket, request) => { var _a; const protocols = !request.headers['sec-websocket-protocol'] ? [] : (_a = request.headers['sec-websocket-protocol'].split(',')) === null || _a === void 0 ? void 0 : _a.map((s) => s.trim()); - const cookies = parse(request.headers.cookie); + const cookies = request.headers.cookie ? parse(request.headers.cookie) : null; websocket.clientId = Date.now(); websocket.isAlive = true; - websocket.sessionId = cookieParser.signedCookie(cookies['connect.sid'], this.common.secret_key); + websocket.sessionId = cookies && cookies['connect.sid'] ? cookieParser.signedCookie(cookies['connect.sid'], this.common.secret_key) : null; websocket.clientNodeIndex = +protocols[1]; this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connected: ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); websocket.on('error', this.sendErrorToAllLNClients); diff --git a/frontend/258.fb8729850462aa0e.js b/frontend/258.fb8729850462aa0e.js new file mode 100644 index 00000000..7d5a450f --- /dev/null +++ b/frontend/258.fb8729850462aa0e.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[258],{7258:(kp,ft,f)=>{f.r(ft),f.d(ft,{ECLModule:()=>Rp});var u=f(9808),x=f(1402),Bt=f(8878),t=f(5e3),m=f(7093),M=f(5899);function Ht(n,a){1&n&&t._UZ(0,"mat-progress-bar",3)}let Ct=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof x.OD:this.loading=!0;break;case i instanceof x.m2:case i instanceof x.gk:case i instanceof x.Q3:this.loading=!1}})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-root"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["outlet","outlet"],["color","primary","mode","indeterminate"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Ht,1,0,"mat-progress-bar",1),t._UZ(2,"router-outlet",null,2),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf",i.loading))},directives:[m.xw,m.yH,m.Wh,u.O5,M.pW,x.lC],styles:[""],data:{animation:[Bt.g]}}),n})();var p=f(7579),_=f(2722),ot=f(1365),xt=f(3396),L=f(2687),l=f(7731),C=f(2501),O=f(5043),w=f(5620),P=f(62),q=f(9546),yt=f(3954),b=f(9224),N=f(7423),st=f(2181),vt=f(5245),Z=f(3322);const Tt=function(n){return{backgroundColor:n}};function zt(n,a){if(1&n&&t._UZ(0,"span",6),2&n){const e=t.oxw();t.Q6J("ngStyle",t.VKq(1,Tt,null==e.information?null:e.information.color))}}function Vt(n,a){if(1&n&&(t.TgZ(0,"div")(1,"h4",1),t._uU(2,"Color"),t.qZA(),t.TgZ(3,"div",2),t._UZ(4,"span",7),t._uU(5),t.ALo(6,"uppercase"),t.qZA()()),2&n){const e=t.oxw();t.xp6(4),t.Q6J("ngStyle",t.VKq(4,Tt,null==e.information?null:e.information.color)),t.xp6(1),t.hij(" ",t.lcZ(6,2,null==e.information?null:e.information.color)," ")}}function Gt(n,a){if(1&n&&(t.TgZ(0,"span",2),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}let Wt=(()=>{class n{constructor(e){this.commonService=e,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(P.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[t.TTD],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div")(2,"h4",1),t._uU(3,"Alias"),t.qZA(),t.TgZ(4,"div",2),t._uU(5),t.YNc(6,zt,1,3,"span",3),t.qZA()(),t.YNc(7,Vt,7,6,"div",4),t.TgZ(8,"div")(9,"h4",1),t._uU(10,"Implementation"),t.qZA(),t.TgZ(11,"div",2),t._uU(12),t.qZA()(),t.TgZ(13,"div")(14,"h4",1),t._uU(15,"Chain"),t.qZA(),t.YNc(16,Gt,2,1,"span",5),t.qZA()()),2&e&&(t.xp6(5),t.hij(" ",null==i.information?null:i.information.alias," "),t.xp6(1),t.Q6J("ngIf",!i.showColorFieldSeparately),t.xp6(1),t.Q6J("ngIf",i.showColorFieldSeparately),t.xp6(5),t.Oqu(null!=i.information&&i.information.lnImplementation||null!=i.information&&i.information.version?(null==i.information?null:i.information.lnImplementation)+" "+(null==i.information?null:i.information.version):""),t.xp6(4),t.Q6J("ngForOf",i.chains))},directives:[m.xw,m.yH,m.Wh,u.O5,u.PC,Z.Zl,u.sg],pipes:[u.gd],styles:[""]}),n})();function $t(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div")(2,"h4",3),t._uU(3,"Lightning"),t.qZA(),t.TgZ(4,"div",4),t._uU(5),t.ALo(6,"number"),t.qZA(),t._UZ(7,"mat-progress-bar",5),t.qZA(),t.TgZ(8,"div")(9,"h4",3),t._uU(10,"On-chain"),t.qZA(),t.TgZ(11,"div",4),t._uU(12),t.ALo(13,"number"),t.qZA(),t._UZ(14,"mat-progress-bar",5),t.qZA(),t.TgZ(15,"div")(16,"h4",3),t._uU(17,"Total"),t.qZA(),t.TgZ(18,"div",4),t._uU(19),t.ALo(20,"number"),t.qZA()()()),2&n){const e=t.oxw();t.xp6(5),t.hij("",t.lcZ(6,5,e.balances.lightning)," Sats"),t.xp6(2),t.s9C("value",e.balances.lightning/e.balances.total*100),t.xp6(5),t.hij("",t.lcZ(13,7,e.balances.onchain)," Sats"),t.xp6(2),t.s9C("value",e.balances.onchain/e.balances.total*100),t.xp6(5),t.hij("",t.lcZ(20,9,e.balances.total)," Sats")}}function Xt(n,a){if(1&n&&(t.TgZ(0,"div",6)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let Kt=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,$t,21,11,"div",0),t.YNc(1,Xt,3,1,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,m.xw,m.yH,m.Wh,M.pW],pipes:[u.JJ],styles:[""]}),n})();var y=f(7322),$=f(7238),K=f(4834),H=f(8129);const jt=function(){return["../connections/channels/open"]},te=function(n){return{filter:n}};function ee(n,a){if(1&n&&(t.TgZ(0,"div",19)(1,"a",20),t._uU(2),t.ALo(3,"slice"),t.qZA(),t.TgZ(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t._uU(7,"Local:"),t.qZA(),t._uU(8),t.ALo(9,"number"),t.qZA(),t.TgZ(10,"mat-hint",22),t._UZ(11,"fa-icon",23),t._uU(12),t.ALo(13,"number"),t.qZA(),t.TgZ(14,"mat-hint",24)(15,"strong",8),t._uU(16,"Remote:"),t.qZA(),t._uU(17),t.ALo(18,"number"),t.qZA()(),t._UZ(19,"mat-progress-bar",25),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(3);t.xp6(1),t.s9C("matTooltip",e.alias||e.shortChannelId),t.s9C("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Q6J("routerLink",t.DdM(23,jt))("state",t.VKq(24,te,e.channelId)),t.xp6(1),t.AsE(" ",t.Dn7(3,11,(null==e?null:e.alias)||(null==e?null:e.shortChannelId),0,24),"",((null==e?null:e.alias)||(null==e?null:e.shortChannelId)).length>25?"...":""," "),t.xp6(6),t.hij("",t.xi3(9,15,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.xp6(3),t.Q6J("icon",i.faBalanceScale),t.xp6(1),t.hij(" (",t.lcZ(13,18,(null==e?null:e.balancedness)||0),") "),t.xp6(5),t.hij("",t.xi3(18,20,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.xp6(2),t.s9C("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function ne(n,a){if(1&n&&(t.TgZ(0,"div",17),t.YNc(1,ee,20,26,"div",18),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.allChannels)}}function ie(n,a){if(1&n&&(t.TgZ(0,"div",3)(1,"div",4)(2,"span",5),t._uU(3,"Total Capacity"),t.qZA(),t.TgZ(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t._uU(7,"Local:"),t.qZA(),t._uU(8),t.ALo(9,"number"),t.qZA(),t.TgZ(10,"mat-hint",9),t._UZ(11,"fa-icon",10),t._uU(12),t.ALo(13,"number"),t.qZA(),t.TgZ(14,"mat-hint",11)(15,"strong",8),t._uU(16,"Remote:"),t.qZA(),t._uU(17),t.ALo(18,"number"),t.qZA()(),t._UZ(19,"mat-progress-bar",12),t.qZA(),t.TgZ(20,"div",13),t._UZ(21,"mat-divider",14),t.qZA(),t.TgZ(22,"div",15),t.YNc(23,ne,2,1,"div",16),t.qZA()()),2&n){const e=t.oxw(),i=t.MAs(2);t.xp6(8),t.hij("",t.xi3(9,7,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.xp6(3),t.Q6J("icon",e.faBalanceScale),t.xp6(1),t.hij(" (",t.lcZ(13,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.xp6(5),t.hij("",t.xi3(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.xp6(2),t.s9C("value",null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0),t.xp6(4),t.Q6J("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",i)}}function ae(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",26),t._uU(1," No channels available. "),t.TgZ(2,"button",27),t.NdJ("click",function(){return t.CHM(e),t.oxw().goToChannels()}),t._uU(3,"Open Channel"),t.qZA()()}}function oe(n,a){if(1&n&&(t.TgZ(0,"div",28)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let se=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=L.DL8,this.faDumbbell=L.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,ie,24,15,"div",0),t.YNc(1,ae,4,0,"ng-template",null,1,t.W1O),t.YNc(3,oe,3,1,"ng-template",null,2,t.W1O)),2&e){const o=t.MAs(4);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,m.xw,m.Wh,m.yH,y.bx,q.BN,$.gM,M.pW,K.d,H.$V,u.sg,x.yS,N.lW],pipes:[u.JJ,u.OU],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}),n})();function le(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t._uU(4,"Daily"),t.qZA(),t.TgZ(5,"div",5),t._uU(6),t.ALo(7,"number"),t.qZA()(),t.TgZ(8,"div")(9,"h4",4),t._uU(10,"Weekly"),t.qZA(),t.TgZ(11,"div",5),t._uU(12),t.ALo(13,"number"),t.qZA()(),t.TgZ(14,"div")(15,"h4",4),t._uU(16,"Monthly"),t.qZA(),t.TgZ(17,"div",5),t._uU(18),t.ALo(19,"number"),t.qZA()()(),t.TgZ(20,"div",3)(21,"div")(22,"h4",4),t._uU(23,"Transactions"),t.qZA(),t.TgZ(24,"div",5),t._uU(25),t.ALo(26,"number"),t.qZA()(),t.TgZ(27,"div")(28,"h4",4),t._uU(29,"Transactions"),t.qZA(),t.TgZ(30,"div",5),t._uU(31),t.ALo(32,"number"),t.qZA()(),t.TgZ(33,"div")(34,"h4",4),t._uU(35,"Transactions"),t.qZA(),t.TgZ(36,"div",5),t._uU(37),t.ALo(38,"number"),t.qZA()()()()),2&n){const e=t.oxw();t.xp6(6),t.hij("",t.lcZ(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.xp6(6),t.hij("",t.lcZ(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.xp6(6),t.hij("",t.lcZ(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.xp6(7),t.Oqu(t.lcZ(26,12,null==e.fees?null:e.fees.daily_txs)),t.xp6(6),t.Oqu(t.lcZ(32,14,null==e.fees?null:e.fees.weekly_txs)),t.xp6(6),t.Oqu(t.lcZ(38,16,null==e.fees?null:e.fees.monthly_txs))}}function re(n,a){if(1&n&&(t.TgZ(0,"div",6)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let ce=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){var e;if(null===(e=this.fees)||void 0===e?void 0:e.monthly_fee){this.totalFees=[{name:"Monthly",value:this.fees.monthly_fee},{name:"Weekly",value:this.fees.weekly_fee||0},{name:"Daily ",value:this.fees.daily_fee||0}];const i=Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10),o=Math.pow(10,i-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/o)*o/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[t.TTD],decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,le,39,18,"div",0),t.YNc(1,re,3,1,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,m.xw,m.yH,m.Wh],pipes:[u.JJ],styles:[""]}),n})();function ue(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t._uU(4,"Active"),t.qZA(),t.TgZ(5,"div",5),t._UZ(6,"span",6),t._uU(7),t.ALo(8,"number"),t.qZA()(),t.TgZ(9,"div")(10,"h4",4),t._uU(11,"Pending"),t.qZA(),t.TgZ(12,"div",5),t._UZ(13,"span",7),t._uU(14),t.ALo(15,"number"),t.qZA()(),t.TgZ(16,"div")(17,"h4",4),t._uU(18,"Inactive"),t.qZA(),t.TgZ(19,"div",5),t._UZ(20,"span",8),t._uU(21),t.ALo(22,"number"),t.qZA()()(),t.TgZ(23,"div",3)(24,"div")(25,"h4",4),t._uU(26,"Capacity"),t.qZA(),t.TgZ(27,"div",5),t._uU(28),t.ALo(29,"number"),t.qZA()(),t.TgZ(30,"div")(31,"h4",4),t._uU(32,"Capacity"),t.qZA(),t.TgZ(33,"div",5),t._uU(34),t.ALo(35,"number"),t.qZA()(),t.TgZ(36,"div")(37,"h4",4),t._uU(38,"Capacity"),t.qZA(),t.TgZ(39,"div",5),t._uU(40),t.ALo(41,"number"),t.qZA()()()()),2&n){const e=t.oxw();t.xp6(7),t.Oqu(t.lcZ(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.xp6(7),t.Oqu(t.lcZ(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.xp6(7),t.Oqu(t.lcZ(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.xp6(7),t.hij("",t.lcZ(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.xp6(6),t.hij("",t.lcZ(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.xp6(6),t.hij("",t.lcZ(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function pe(n,a){if(1&n&&(t.TgZ(0,"div",9)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let me=(()=>{class n{constructor(){this.channelsStatus={}}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,ue,42,18,"div",0),t.YNc(1,pe,3,1,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,m.xw,m.yH,m.Wh],pipes:[u.JJ],styles:[""]}),n})();function de(n,a){if(1&n&&(t.TgZ(0,"mat-hint",19)(1,"strong",20),t._uU(2,"Capacity: "),t.qZA(),t._uU(3),t.ALo(4,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(3),t.hij("",t.xi3(4,1,e.toRemote||0,"1.0-0")," Sats")}}function he(n,a){if(1&n&&(t.TgZ(0,"mat-hint",19)(1,"strong",20),t._uU(2,"Capacity: "),t.qZA(),t._uU(3),t.ALo(4,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(3),t.hij("",t.xi3(4,1,e.toLocal||0,"1.0-0")," Sats")}}function _e(n,a){if(1&n&&t._UZ(0,"mat-progress-bar",21),2&n){const e=t.oxw().$implicit,i=t.oxw(3);t.s9C("value",i.totalLiquidity>0?(+e.toRemote||0)/i.totalLiquidity*100:0)}}function ge(n,a){if(1&n&&t._UZ(0,"mat-progress-bar",21),2&n){const e=t.oxw().$implicit,i=t.oxw(3);t.s9C("value",i.totalLiquidity>0?(+e.toLocal||0)/i.totalLiquidity*100:0)}}const fe=function(){return["../connections/channels/open"]},Ce=function(n){return{filter:n}};function xe(n,a){if(1&n&&(t.TgZ(0,"div",14)(1,"a",15),t._uU(2),t.ALo(3,"slice"),t.qZA(),t.TgZ(4,"div",16),t.YNc(5,de,5,4,"mat-hint",17),t.YNc(6,he,5,4,"mat-hint",17),t.qZA(),t.YNc(7,_e,1,1,"mat-progress-bar",18),t.YNc(8,ge,1,1,"mat-progress-bar",18),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(3);t.xp6(1),t.s9C("matTooltip",e.alias||e.shortChannelId),t.s9C("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Q6J("routerLink",t.DdM(14,fe))("state",t.VKq(15,Ce,e.channelId)),t.xp6(1),t.AsE(" ",t.Dn7(3,10,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.xp6(3),t.Q6J("ngIf","In"===i.direction),t.xp6(1),t.Q6J("ngIf","Out"===i.direction),t.xp6(1),t.Q6J("ngIf","In"===i.direction),t.xp6(1),t.Q6J("ngIf","Out"===i.direction)}}function ye(n,a){if(1&n&&(t.TgZ(0,"div",12),t.YNc(1,xe,9,17,"div",13),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.allChannels)}}const ve=function(n,a,e){return{"mb-4":n,"mb-2":a,"mb-1":e}};function Te(n,a){if(1&n&&(t.TgZ(0,"div",3)(1,"div",4)(2,"span",5),t._uU(3,"Total Capacity"),t.qZA(),t.TgZ(4,"mat-hint",6),t._uU(5),t.ALo(6,"number"),t.qZA(),t._UZ(7,"mat-progress-bar",7),t.qZA(),t.TgZ(8,"div",8),t._UZ(9,"mat-divider",9),t.qZA(),t.TgZ(10,"div",10),t.YNc(11,ye,2,1,"div",11),t.qZA()()),2&n){const e=t.oxw(),i=t.MAs(2);t.Q6J("ngClass",t.kEZ(7,ve,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),t.xp6(5),t.hij("",t.xi3(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.xp6(6),t.Q6J("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",i)}}function Le(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",24),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).goToChannels()}),t._uU(1,"Open Channel"),t.qZA()}}function be(n,a){if(1&n&&(t.TgZ(0,"div",22),t._uU(1," No channels available. "),t.YNc(2,Le,2,0,"button",23),t.qZA()),2&n){const e=t.oxw();t.xp6(2),t.Q6J("ngIf","Out"===e.direction)}}function Se(n,a){if(1&n&&(t.TgZ(0,"div",25)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let Ze=(()=>{class n{constructor(e,i){this.router=e,this.commonService=i,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0),t.Y36(P.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,Te,12,11,"div",0),t.YNc(1,be,3,1,"ng-template",null,1,t.W1O),t.YNc(3,Se,3,1,"ng-template",null,2,t.W1O)),2&e){const o=t.MAs(4);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,m.xw,m.Wh,m.yH,u.mk,Z.oO,y.bx,M.pW,K.d,H.$V,u.sg,x.yS,$.gM,N.lW],pipes:[u.JJ,u.OU],styles:[""]}),n})();var R=f(3251),Q=f(9300),A=f(6087),S=f(4847),r=f(2075),J=f(8966),U=f(2994),X=f(6642),d=f(3075),Y=f(7531),j=f(3390),tt=f(6534),k=f(4107),z=f(508);function Ae(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Description is required."),t.qZA())}function Ee(n,a){if(1&n&&(t.TgZ(0,"mat-option",25),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=a.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(t.lcZ(2,2,e))}}function we(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.invoiceError)}}function Ie(n,a){if(1&n&&(t.TgZ(0,"div",26),t._UZ(1,"fa-icon",27),t.YNc(2,we,2,1,"span",11),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.invoiceError)}}let Fe=(()=>{class n{constructor(e,i,o,s,c,h){this.dialogRef=e,this.data=i,this.store=o,this.decimalPipe=s,this.commonService=c,this.actions=h,this.faExclamationTriangle=L.eHv,this.selNode={},this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.IV,this.timeUnitEnum=l.Qk,this.timeUnits=l.LO,this.selTimeUnit=l.Qk.SECS,this.invoiceError="",this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,_.R)(this.unSubs[2]),(0,Q.h)(e=>e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===e.payload.action&&(e.payload.status===l.Bn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===l.Bn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){if(this.invoiceError="",!this.description)return!0;let i=this.expiry?this.expiry:3600;this.expiry&&this.selTimeUnit!==l.Qk.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.Qk.SECS));let o=null;o=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,U.Z$)({payload:o}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.Qk.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:e=>{this.invoiceValueHint="= "+e.symbol+this.decimalPipe.transform(e.OTHER,l.Xz.OTHER)+" "+e.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onTimeUnitChange(e){this.expiry&&this.selTimeUnit!==e.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,e.value)),this.selTimeUnit=e.value}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(J.WI),t.Y36(w.yh),t.Y36(u.JJ),t.Y36(P.v),t.Y36(X.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-create-invoices"]],decls:35,vars:16,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","placeholder","Description","tabindex","2","name","description","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxFlex","40"],["matInput","","placeholder","Amount","type","number","tabindex","3","name","invValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","30"],["matInput","","placeholder","Expiry","type","number","name","exp","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fxFlex","26"],["tabindex","5","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){if(1&e){const o=t.EpF();t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Create Invoice"),t.qZA()(),t.TgZ(6,"button",5),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),t.NdJ("ngModelChange",function(c){return i.description=c}),t.qZA(),t.YNc(13,Ae,2,0,"mat-error",11),t.qZA(),t.TgZ(14,"div",12)(15,"mat-form-field",13)(16,"input",14),t.NdJ("ngModelChange",function(c){return i.invoiceValue=c})("keyup",function(){return i.onInvoiceValueChange()}),t.qZA(),t.TgZ(17,"span",15),t._uU(18," Sats "),t.qZA(),t.TgZ(19,"mat-hint"),t._uU(20),t.qZA()(),t.TgZ(21,"mat-form-field",16)(22,"input",17),t.NdJ("ngModelChange",function(c){return i.expiry=c}),t.qZA(),t.TgZ(23,"span",15),t._uU(24),t.ALo(25,"titlecase"),t.qZA()(),t.TgZ(26,"mat-form-field",18)(27,"mat-select",19),t.NdJ("selectionChange",function(c){return i.onTimeUnitChange(c)}),t.YNc(28,Ee,3,4,"mat-option",20),t.qZA()()(),t.YNc(29,Ie,3,2,"div",21),t.TgZ(30,"div",22)(31,"button",23),t.NdJ("click",function(){return i.resetData()}),t._uU(32,"Clear Field"),t.qZA(),t.TgZ(33,"button",24),t.NdJ("click",function(){t.CHM(o);const c=t.MAs(10);return i.onAddInvoice(c)}),t._uU(34,"Create Invoice"),t.qZA()()()()()()}2&e&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(6),t.Q6J("ngModel",i.description),t.xp6(1),t.Q6J("ngIf",!i.description),t.xp6(3),t.Q6J("ngModel",i.invoiceValue)("step",100)("min",1),t.xp6(4),t.Oqu(i.invoiceValueHint),t.xp6(2),t.Q6J("ngModel",i.expiry)("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),t.xp6(2),t.hij("",t.lcZ(25,14,i.selTimeUnit)," "),t.xp6(3),t.Q6J("value",i.selTimeUnit),t.xp6(1),t.Q6J("ngForOf",i.timeUnits),t.xp6(1),t.Q6J("ngIf",""!==i.invoiceError))},directives:[m.xw,m.yH,b.dk,m.Wh,N.lW,J.ZT,b.dn,d._Y,d.JL,d.F,y.KE,Y.Nt,d.Fj,j.h,d.Q7,d.JJ,d.On,u.O5,y.TO,d.wV,d.qQ,tt.q,y.R9,y.bx,k.gD,u.sg,z.ey,q.BN],pipes:[u.rS],styles:[""]}),n})();var qe=f(7766),E=f(7861),G=f(9445);function Ne(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Description is required."),t.qZA())}function Oe(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"input",7),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().description=o}),t.qZA(),t.YNc(4,Ne,2,0,"mat-error",8),t.qZA(),t.TgZ(5,"mat-form-field",9)(6,"input",10,11),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().invoiceValue=o})("keyup",function(){return t.CHM(e),t.oxw().onInvoiceValueChange()}),t.qZA(),t.TgZ(8,"span",12),t._uU(9," Sats "),t.qZA(),t.TgZ(10,"mat-hint"),t._uU(11),t.qZA()(),t.TgZ(12,"div",13)(13,"button",14),t.NdJ("click",function(){return t.CHM(e),t.oxw().resetData()}),t._uU(14,"Clear Field"),t.qZA(),t.TgZ(15,"button",15),t.NdJ("click",function(){t.CHM(e);const o=t.MAs(1);return t.oxw().onAddInvoice(o)}),t._uU(16,"Create Invoice"),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("ngModel",e.description),t.xp6(1),t.Q6J("ngIf",!e.description),t.xp6(2),t.Q6J("ngModel",e.invoiceValue)("step",100)("min",1),t.xp6(5),t.Oqu(e.invoiceValueHint)}}function Pe(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",16)(1,"button",17),t.NdJ("click",function(){return t.CHM(e),t.oxw().openCreateInvoiceModal()}),t._uU(2,"Create Invoice"),t.qZA()()}}function Ue(n,a){if(1&n&&(t.TgZ(0,"mat-option",55),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Re(n,a){1&n&&t._UZ(0,"mat-progress-bar",56)}function ke(n,a){1&n&&t._UZ(0,"th",57)}const lt=function(n){return{"mr-0":n}};function De(n,a){if(1&n&&t._UZ(0,"span",62),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,lt,e.screenSize===e.screenSizeEnum.XS))}}function Je(n,a){if(1&n&&t._UZ(0,"span",63),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,lt,e.screenSize===e.screenSizeEnum.XS))}}function Me(n,a){if(1&n&&t._UZ(0,"span",64),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,lt,e.screenSize===e.screenSizeEnum.XS))}}function Qe(n,a){if(1&n&&(t.TgZ(0,"td",58),t.YNc(1,De,1,3,"span",59),t.YNc(2,Je,1,3,"span",60),t.YNc(3,Me,1,3,"span",61),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf","received"===(null==e?null:e.status)),t.xp6(1),t.Q6J("ngIf","unpaid"===(null==e?null:e.status)),t.xp6(1),t.Q6J("ngIf",!(null!=e&&e.status)||"expired"===(null==e?null:e.status)||"unknown"===(null==e?null:e.status))}}function Ye(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Date Created"),t.qZA())}function Be(n,a){if(1&n&&(t.TgZ(0,"td",58),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function He(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Date Expiry"),t.qZA())}function ze(n,a){if(1&n&&(t.TgZ(0,"td",58),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Ve(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Date Settled"),t.qZA())}function Ge(n,a){if(1&n&&(t.TgZ(0,"td",58),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function We(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Node ID"),t.qZA())}const rt=function(n){return{width:n}};function $e(n,a){if(1&n&&(t.TgZ(0,"td",58)(1,"div",66)(2,"span",67),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,rt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function Xe(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Description"),t.qZA())}function Ke(n,a){if(1&n&&(t.TgZ(0,"td",58)(1,"div",66)(2,"span",67),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,rt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.description)}}function je(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Payment Hash"),t.qZA())}function tn(n,a){if(1&n&&(t.TgZ(0,"td",58)(1,"div",66)(2,"span",67),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,rt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash)}}function en(n,a){1&n&&(t.TgZ(0,"th",68),t._uU(1,"Amount (Sats)"),t.qZA())}function nn(n,a){if(1&n&&(t.TgZ(0,"td",58)(1,"span",69),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(null!=e&&e.amount?t.xi3(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function an(n,a){1&n&&(t.TgZ(0,"th",70),t._uU(1," Amount Settled (Sats)"),t.qZA())}function on(n,a){if(1&n&&(t.TgZ(0,"td",58)(1,"span",69),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(null!=e&&e.amountSettled?t.xi3(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function sn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",71)(1,"div",72)(2,"mat-select",73),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",74),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function ln(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",75)(1,"div",72)(2,"mat-select",76),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",74),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onInvoiceClick(s)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",74),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onRefreshInvoice(s)}),t._uU(7,"Refresh"),t.qZA()()()()}}function rn(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No invoice available."),t.qZA())}function cn(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting invoices..."),t.qZA())}function un(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function pn(n,a){if(1&n&&(t.TgZ(0,"td",77),t.YNc(1,rn,2,0,"p",8),t.YNc(2,cn,2,0,"p",8),t.YNc(3,un,2,1,"p",8),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const mn=function(n){return{"display-none":n}};function dn(n,a){if(1&n&&t._UZ(0,"tr",78),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,mn,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function hn(n,a){1&n&&t._UZ(0,"tr",79)}function _n(n,a){1&n&&t._UZ(0,"tr",80)}const gn=function(){return["all"]},fn=function(n){return{"error-border":n}},Cn=function(){return["no_invoice"]};function xn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",18)(1,"div",19)(2,"div",20),t._UZ(3,"fa-icon",21),t.TgZ(4,"span",22),t._uU(5,"Invoices History"),t.qZA()(),t.TgZ(6,"div",23)(7,"mat-form-field",24)(8,"mat-select",25),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilterBy=o})("selectionChange",function(){t.CHM(e);const o=t.oxw();return o.selFilter="",o.applyFilter()}),t.YNc(9,Ue,2,2,"mat-option",26),t.qZA()(),t.TgZ(10,"mat-form-field",24)(11,"input",27),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilter=o})("input",function(){return t.CHM(e),t.oxw().applyFilter()})("keyup",function(){return t.CHM(e),t.oxw().applyFilter()}),t.qZA()()()(),t.TgZ(12,"div",28),t.YNc(13,Re,1,0,"mat-progress-bar",29),t.TgZ(14,"table",30,31),t.ynx(16,32),t.YNc(17,ke,1,0,"th",33),t.YNc(18,Qe,4,3,"td",34),t.BQk(),t.ynx(19,35),t.YNc(20,Ye,2,0,"th",36),t.YNc(21,Be,3,4,"td",34),t.BQk(),t.ynx(22,37),t.YNc(23,He,2,0,"th",36),t.YNc(24,ze,3,4,"td",34),t.BQk(),t.ynx(25,38),t.YNc(26,Ve,2,0,"th",36),t.YNc(27,Ge,3,4,"td",34),t.BQk(),t.ynx(28,39),t.YNc(29,We,2,0,"th",36),t.YNc(30,$e,4,4,"td",34),t.BQk(),t.ynx(31,40),t.YNc(32,Xe,2,0,"th",36),t.YNc(33,Ke,4,4,"td",34),t.BQk(),t.ynx(34,41),t.YNc(35,je,2,0,"th",36),t.YNc(36,tn,4,4,"td",34),t.BQk(),t.ynx(37,42),t.YNc(38,en,2,0,"th",43),t.YNc(39,nn,4,4,"td",34),t.BQk(),t.ynx(40,44),t.YNc(41,an,2,0,"th",45),t.YNc(42,on,4,4,"td",34),t.BQk(),t.ynx(43,46),t.YNc(44,sn,6,0,"th",47),t.YNc(45,ln,8,0,"td",48),t.BQk(),t.ynx(46,49),t.YNc(47,pn,4,3,"td",50),t.BQk(),t.YNc(48,dn,1,3,"tr",51),t.YNc(49,hn,1,0,"tr",52),t.YNc(50,_n,1,0,"tr",53),t.qZA()(),t._UZ(51,"mat-paginator",54),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("icon",e.faHistory),t.xp6(5),t.Q6J("ngModel",e.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(13,gn).concat(e.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",e.selFilter),t.xp6(2),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.invoices)("ngClass",t.VKq(14,fn,""!==e.errorMessage)),t.xp6(34),t.Q6J("matFooterRowDef",t.DdM(16,Cn)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Lt=(()=>{class n{constructor(e,i,o,s,c,h,g){this.logger=e,this.store=i,this.decimalPipe=o,this.commonService=s,this.datePipe=c,this.actions=h,this.camelCaseWithSpaces=g,this.calledFrom="transactions",this.faHistory=L.qO$,this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.IV,sortBy:"expiresAt",sortOrder:l.Pi.DESCENDING},this.selNode={},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new r.by([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.nF).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ef).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=e.invoices&&e.invoices.length>0?e.invoices:[],this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,_.R)(this.unSubs[4]),(0,Q.h)(e=>e.type===l.lr.SET_LOOKUP_ECL||e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.lr.SET_LOOKUP_ECL&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,E.qR)({payload:{data:{pageSize:this.pageSize,component:Fe}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:3600;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let o=null;o=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,U.Z$)({payload:o})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,E.qR)({payload:{data:{invoice:e,newlyAdded:!1,component:qe.R}}}))}onRefreshInvoice(e){this.store.dispatch((0,U.n7)({payload:e.paymentHash}))}updateInvoicesData(e){var i;this.invoiceJSONArr=null===(i=this.invoiceJSONArr)||void 0===i?void 0:i.map(o=>o.paymentHash===e.paymentHash?e:o)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,i)=>{var o,s,c,h;let g="";switch(this.selFilterBy){case"all":g=(e.timestamp?null===(o=this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"status":g=(null==e?void 0:e.status)&&"expired"!==(null==e?void 0:e.status)&&"unknown"!==(null==e?void 0:e.status)?null===(s=e.status)||void 0===s?void 0:s.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":g=(null===(c=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===c?void 0:c.toLowerCase())||"";break;case"amount":case"amountSettled":g=(null===(h=e[this.selFilterBy])||void 0===h?void 0:h.toString())||"-";break;default:g=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===g.indexOf(i):g.includes(i)}}loadInvoicesTable(e){var i;this.invoices=new r.by(e?[...e]:[]),this.invoices.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,this.invoices.sort=this.sort,null===(i=this.invoices.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.invoices.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}resetData(){this.description="",this.invoiceValue=null,this.expiry=null,this.invoiceValueHint=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[5])).subscribe({next:e=>{this.invoiceValueHint="= "+e.symbol+this.decimalPipe.transform(e.OTHER,l.Xz.OTHER)+" "+e.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(u.JJ),t.Y36(P.v),t.Y36(u.uU),t.Y36(X.eX),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Invoices")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","placeholder","Description","tabindex","2","name","description","required","true",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","3","name","invValue",3,"ngModel","step","min","ngModelChange","keyup"],["invcVal","ngModel"],["matSuffix",""],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","expiresAt"],["matColumnDef","receivedAt"],["matColumnDef","nodeId"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountSettled"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","p1-3",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Received","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired/Unknown","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Received","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired/Unknown","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"p1-3"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Oe,17,6,"form",1),t.YNc(2,Pe,3,0,"div",2),t.YNc(3,xn,52,17,"div",3),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf","home"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom))},directives:[m.xw,m.yH,m.Wh,u.O5,d._Y,d.JL,d.F,y.KE,Y.Nt,d.Fj,d.Q7,d.JJ,d.On,y.TO,d.wV,d.qQ,tt.q,y.R9,y.bx,N.lW,q.BN,k.gD,u.sg,z.ey,H.$V,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,$.gM,r.Dz,r.ev,u.PC,Z.Zl,k.$L,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[u.uU,u.JJ],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),n})();var W=f(5698),ct=f(3289),bt=f(8104);const yn=["paymentReq"];function vn(n,a){if(1&n&&(t.TgZ(0,"mat-hint"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.paymentDecodedHint)}}function Tn(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment request is required."),t.qZA())}function Ln(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.paymentDecodedHint)}}function bn(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment amount is required."),t.qZA())}function Sn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-form-field",1)(1,"input",17,18),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().paymentAmount=o})("change",function(o){return t.CHM(e),t.oxw().onAmountChange(o)}),t.qZA(),t.TgZ(3,"mat-hint"),t._uU(4,"It is a zero amount invoice, enter amount to be paid."),t.qZA(),t.YNc(5,bn,2,0,"mat-error",11),t.qZA()}if(2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngModel",e.paymentAmount),t.xp6(4),t.Q6J("ngIf",!e.paymentAmount)}}function Zn(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.paymentError)}}function An(n,a){if(1&n&&(t.TgZ(0,"div",19),t._UZ(1,"fa-icon",20),t.YNc(2,Zn,2,1,"span",11),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.paymentError)}}let En=(()=>{class n{constructor(e,i,o,s,c,h,g,v){this.dialogRef=e,this.store=i,this.eclEffects=o,this.logger=s,this.commonService=c,this.decimalPipe=h,this.actions=g,this.dataService=v,this.faExclamationTriangle=L.eHv,this.selNode={},this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.feeLimitTypes=l.Vc,this.paymentError="",this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(e=>e.type===l.lr.UPDATE_API_CALL_STATUS_ECL||e.type===l.lr.SEND_PAYMENT_STATUS_ECL)).subscribe(e=>{e.type===l.lr.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&"SendPayment"===e.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=e.payload.message)})}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():(this.paymentAmount=null,this.paymentError="",this.paymentDecodedHint="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,W.q)(1)).subscribe({next:e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[2])).subscribe({next:i=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+i.symbol+this.decimalPipe.transform(i.OTHER?i.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description)},error:e=>{this.logger.error(e),this.paymentDecodedHint="ERROR: "+(e.message?e.message:"string"==typeof e?e:JSON.stringify(e)),this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,U.oV)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(e){this.paymentRequest=e&&"string"==typeof e?e.trim():e,this.paymentError="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,W.q)(1)).subscribe({next:i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+o.symbol+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description)},error:i=>{this.logger.error(i),this.paymentDecodedHint="ERROR: "+(i.message?i.message:"string"==typeof i?i:JSON.stringify(i)),this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(e){delete this.paymentDecoded.amount,this.paymentDecoded.amount=e}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(w.yh),t.Y36(ct.o),t.Y36(O.mQ),t.Y36(P.v),t.Y36(u.JJ),t.Y36(X.eX),t.Y36(bt.D))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(e,i){if(1&e&&t.Gf(yn,5),2&e){let o;t.iGM(o=t.CRH())&&(i.paymentReq=o.first)}},decls:24,vars:7,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["sendPaymentForm","ngForm"],["autoFocus","","matInput","","placeholder","Payment Request","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","3",3,"click"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){if(1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Send Payment"),t.qZA()(),t.TgZ(6,"button",5),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",1)(12,"textarea",9,10),t.NdJ("ngModelChange",function(s){return i.onPaymentRequestEntry(s)})("matTextareaAutosize",function(){return!0}),t.qZA(),t.YNc(14,vn,2,1,"mat-hint",11),t.YNc(15,Tn,2,0,"mat-error",11),t.YNc(16,Ln,2,1,"mat-error",11),t.qZA(),t.YNc(17,Sn,6,2,"mat-form-field",12),t.YNc(18,An,3,2,"div",13),t.TgZ(19,"div",14)(20,"button",15),t.NdJ("click",function(){return i.resetData()}),t._uU(21,"Clear Fields"),t.qZA(),t.TgZ(22,"button",16),t.NdJ("click",function(){return i.onSendPayment()}),t._uU(23,"Send Payment"),t.qZA()()()()()()),2&e){const o=t.MAs(13);t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(6),t.Q6J("ngModel",i.paymentRequest),t.xp6(2),t.Q6J("ngIf",i.paymentRequest&&""!==i.paymentDecodedHint),t.xp6(1),t.Q6J("ngIf",!i.paymentRequest),t.xp6(1),t.Q6J("ngIf",null==o.errors?null:o.errors.decodeError),t.xp6(1),t.Q6J("ngIf",i.zeroAmtInvoice),t.xp6(1),t.Q6J("ngIf",""!==i.paymentError)}},directives:[m.xw,m.yH,b.dk,m.Wh,N.lW,J.ZT,b.dn,d._Y,d.JL,d.F,y.KE,Y.Nt,d.Fj,j.h,d.Q7,d.JJ,d.On,u.O5,y.bx,y.TO,q.BN],styles:[""]}),n})();var V=f(1125);const wn=["scrollContainer"];function In(n,a){if(1&n&&(t.TgZ(0,"div",9)(1,"div",1)(2,"h4",11),t._uU(3,"Description"),t.qZA(),t.TgZ(4,"span",12),t._uU(5),t.qZA()()()),2&n){const e=t.oxw();t.xp6(5),t.Oqu(e.description)}}function Fn(n,a){1&n&&t._UZ(0,"mat-divider",14)}function qn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-expansion-panel",23),t.NdJ("opened",function(){return t.CHM(e),t.oxw().onExpansionOpen(!0)})("closed",function(){return t.CHM(e),t.oxw().onExpansionOpen(!1)}),t.TgZ(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t._uU(4),t.qZA(),t.TgZ(5,"h4",25),t._uU(6),t.ALo(7,"number"),t.qZA()()(),t.TgZ(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t._uU(12,"Fees (mSats)"),t.qZA(),t.TgZ(13,"span",12),t._uU(14),t.ALo(15,"number"),t.qZA()(),t.TgZ(16,"div",26)(17,"h4",11),t._uU(18,"Date/Time"),t.qZA(),t.TgZ(19,"span",12),t._uU(20),t.ALo(21,"date"),t.qZA()()(),t._UZ(22,"mat-divider",14),t.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),t._uU(26,"ID"),t.qZA(),t.TgZ(27,"span",27),t._uU(28),t.qZA()()(),t._UZ(29,"mat-divider",14),t.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),t._uU(33,"To Channel"),t.qZA(),t.TgZ(34,"span",27),t._uU(35),t.qZA()()()()()}if(2&n){const e=a.$implicit,i=a.index,o=t.oxw();t.Q6J("expanded",o.expansionOpen),t.xp6(4),t.hij("Part ",i+1,""),t.xp6(2),t.hij("",t.lcZ(7,7,e.amount)," (Sats)"),t.xp6(8),t.Oqu(t.lcZ(15,9,e.feesPaid)),t.xp6(6),t.Oqu(t.xi3(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.xp6(8),t.Oqu(e.id),t.xp6(7),t.Oqu(e.toChannelAlias)}}let Nn=(()=>{class n{constructor(e,i){this.dialogRef=e,this.data=i,this.description=null,this.shouldScroll=!0,this.expansionOpen=!0}ngOnInit(){this.payment=this.data.payment,this.data.sentPaymentInfo.length>0&&this.data.sentPaymentInfo[0].paymentRequest&&this.data.sentPaymentInfo[0].paymentRequest.description&&""!==this.data.sentPaymentInfo[0].paymentRequest.description&&(this.description=this.data.sentPaymentInfo[0].paymentRequest.description)}ngAfterViewChecked(){this.shouldScroll=this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+62.6}onExpansionOpen(e){this.expansionOpen=e}onClose(){this.dialogRef.close(!1)}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(J.WI))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(e,i){if(1&e&&t.Gf(wn,5),2&e){let o;t.iGM(o=t.CRH())&&(i.scrollContainer=o.first)}},decls:66,vars:15,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["scrollContainer",""],["fxLayout","column"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],["fxFlex","70"],[1,"w-100","my-1"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["class","flat-expansion-panel my-1",3,"expanded","opened","closed",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],[1,"flat-expansion-panel","my-1",3,"expanded","opened","closed"],["fxFlex","30","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","70","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Payment Information"),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return i.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6,7)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t._uU(14,"Amount (Sats)"),t.qZA(),t.TgZ(15,"span",12),t._uU(16),t.ALo(17,"number"),t.qZA()(),t.TgZ(18,"div",13)(19,"h4",11),t._uU(20,"Date/Time"),t.qZA(),t.TgZ(21,"span",12),t._uU(22),t.ALo(23,"date"),t.qZA()()(),t._UZ(24,"mat-divider",14),t.TgZ(25,"div",9)(26,"div",1)(27,"h4",11),t._uU(28,"ID"),t.qZA(),t.TgZ(29,"span",12),t._uU(30),t.qZA()()(),t._UZ(31,"mat-divider",14),t.TgZ(32,"div",9)(33,"div",1)(34,"h4",11),t._uU(35,"Payment Hash"),t.qZA(),t.TgZ(36,"span",12),t._uU(37),t.qZA()()(),t._UZ(38,"mat-divider",14),t.TgZ(39,"div",9)(40,"div",1)(41,"h4",11),t._uU(42,"Payment Preimage"),t.qZA(),t.TgZ(43,"span",12),t._uU(44),t.qZA()()(),t._UZ(45,"mat-divider",14),t.TgZ(46,"div",9)(47,"div",1)(48,"h4",11),t._uU(49,"Recipient Node"),t.qZA(),t.TgZ(50,"span",12),t._uU(51),t.qZA()()(),t._UZ(52,"mat-divider",14),t.YNc(53,In,6,1,"div",15),t.YNc(54,Fn,1,0,"mat-divider",16),t.TgZ(55,"div",9)(56,"div",1)(57,"mat-accordion"),t.YNc(58,qn,36,14,"mat-expansion-panel",17),t.qZA()()()()(),t.TgZ(59,"div",18)(60,"button",19),t.NdJ("click",function(){return i.onScrollDown()}),t.TgZ(61,"mat-icon",20),t._uU(62,"arrow_downward"),t.qZA()()(),t.TgZ(63,"div",21)(64,"button",22),t._uU(65,"OK"),t.qZA()()()()),2&e&&(t.xp6(16),t.Oqu(t.lcZ(17,10,i.payment.recipientAmount)),t.xp6(6),t.Oqu(t.xi3(23,12,i.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.xp6(8),t.Oqu(i.payment.id),t.xp6(7),t.Oqu(i.payment.paymentHash),t.xp6(7),t.Oqu(i.payment.paymentPreimage),t.xp6(7),t.Oqu(i.payment.recipientNodeAlias),t.xp6(2),t.Q6J("ngIf",i.description),t.xp6(1),t.Q6J("ngIf",i.description),t.xp6(4),t.Q6J("ngForOf",i.payment.parts),t.xp6(6),t.Q6J("mat-dialog-close",!1))},directives:[m.xw,m.Wh,m.yH,b.dk,N.lW,b.dn,H.$V,K.d,u.O5,V.pp,u.sg,V.ib,V.yz,V.yK,vt.Hw,J.ZT],pipes:[u.JJ,u.uU],styles:[""]}),n})();var nt=f(3093);const On=["sendPaymentForm"];function Pn(n,a){if(1&n&&(t.TgZ(0,"mat-hint"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.paymentDecodedHint)}}function Un(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment request is required."),t.qZA())}function Rn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"textarea",7,8),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().onPaymentRequestEntry(o)})("matTextareaAutosize",function(){return!0}),t.qZA(),t.YNc(5,Pn,2,1,"mat-hint",9),t.YNc(6,Un,2,0,"mat-error",9),t.qZA(),t.TgZ(7,"div",10)(8,"button",11),t.NdJ("click",function(){return t.CHM(e),t.oxw().resetData()}),t._uU(9,"Clear Field"),t.qZA(),t.TgZ(10,"button",12),t.NdJ("click",function(){return t.CHM(e),t.oxw().onSendPayment()}),t._uU(11,"Send Payment"),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("ngModel",e.paymentRequest),t.xp6(2),t.Q6J("ngIf",e.paymentRequest&&""!==e.paymentDecodedHint),t.xp6(1),t.Q6J("ngIf",!e.paymentRequest)}}function kn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",13)(1,"button",12),t.NdJ("click",function(){return t.CHM(e),t.oxw().openSendPaymentModal()}),t._uU(2,"Send Payment"),t.qZA()()}}function Dn(n,a){if(1&n&&(t.TgZ(0,"mat-option",59),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Jn(n,a){1&n&&t._UZ(0,"mat-progress-bar",60)}function Mn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Date/Time"),t.qZA())}function Qn(n,a){if(1&n&&(t.TgZ(0,"td",62),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function Yn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"ID"),t.qZA())}const D=function(n){return{width:n}};function Bn(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.id)}}function Hn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Destination Node ID"),t.qZA())}function zn(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeId)}}function Vn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Destination"),t.qZA())}function Gn(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeAlias)}}function Wn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Description"),t.qZA())}function $n(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.description)}}function Xn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Payment Hash"),t.qZA())}function Kn(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash)}}function jn(n,a){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Preimage"),t.qZA())}function ti(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentPreimage)}}function ei(n,a){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Amount (Sats)"),t.qZA())}function ni(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"span",66),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.recipientAmount))}}function ii(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",67)(1,"div",68)(2,"mat-select",69),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",70),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function ai(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",71)(1,"button",72),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onPaymentClick(s)}),t._uU(2,"View Info"),t.qZA()()}}function oi(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No payment available."),t.qZA())}function si(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting payments..."),t.qZA())}function li(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function ri(n,a){if(1&n&&(t.TgZ(0,"td",73),t.YNc(1,oi,2,0,"p",9),t.YNc(2,si,2,0,"p",9),t.YNc(3,li,2,1,"p",9),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function ci(n,a){if(1&n&&(t.TgZ(0,"span",74),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function ui(n,a){if(1&n&&(t.ynx(0),t.YNc(1,ci,3,4,"span",75),t.BQk()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function pi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"span",74),t._uU(2),t.qZA(),t.YNc(3,ui,2,1,"ng-container",9),t.qZA()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" Total Attempts: ",(null==e||null==e.parts?null:e.parts.length)||0," "),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function mi(n,a){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(e.id)}}function di(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,mi,4,4,"span",75),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function hi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,di,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.id),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function _i(n,a){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(e.toChannelId)}}function gi(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,_i,4,4,"span",75),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function fi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,gi,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeId),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function Ci(n,a){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(e.toChannelAlias)}}function xi(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Ci,4,4,"span",75),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function yi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,xi,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeAlias),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function vi(n,a){if(1&n&&(t.TgZ(0,"span",77),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,e.amount,"1.0-0")," ")}}function Ti(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,vi,3,4,"span",78),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Li(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"span",77),t._uU(2),t.ALo(3,"number"),t.qZA(),t.YNc(4,Ti,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.xi3(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.xp6(2),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function bi(n,a){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.ALo(4,"number"),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(5,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.hij("Fee Paid: ",t.xi3(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Si(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,bi,5,7,"span",75),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Zi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Si,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.description),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function Ai(n,a){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.ALo(4,"number"),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(5,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.hij("Fee Paid: ",t.xi3(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Ei(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Ai,5,7,"span",75),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function wi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Ei,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function Ii(n,a){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.ALo(4,"number"),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(5,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.hij("Fee Paid: ",t.xi3(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Fi(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Ii,5,7,"span",75),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function qi(n,a){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Fi,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentPreimage),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function Ni(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",79)(1,"button",82),t.NdJ("click",function(){const s=t.CHM(e).$implicit,c=t.oxw(2).$implicit;return t.oxw(2).onPartClick(s,c)}),t._uU(2),t.qZA()()}if(2&n){const e=a.index;t.xp6(2),t.hij("View ",e+1,"")}}function Oi(n,a){if(1&n&&(t.TgZ(0,"div"),t.YNc(1,Ni,3,1,"div",81),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Pi(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",62)(1,"span",79)(2,"button",80),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return s.is_expanded=!s.is_expanded}),t._uU(3),t.qZA()(),t.YNc(4,Oi,2,1,"div",9),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(3),t.Oqu(null!=e&&e.is_expanded?"Hide":"Show"),t.xp6(1),t.Q6J("ngIf",null==e?null:e.is_expanded)}}function Ui(n,a){1&n&&t._UZ(0,"tr",83)}const Ri=function(n){return{"display-none":n}};function ki(n,a){if(1&n&&t._UZ(0,"tr",84),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Ri,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function Di(n,a){1&n&&t._UZ(0,"tr",85)}function Ji(n,a){1&n&&t._UZ(0,"tr",83)}const Mi=function(){return["all"]},Qi=function(n){return{"error-border":n}},Yi=function(){return["no_payment"]};function Bi(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",14)(1,"div",15)(2,"div",16),t._UZ(3,"fa-icon",17),t.TgZ(4,"span",18),t._uU(5,"Payments History"),t.qZA()(),t.TgZ(6,"div",19)(7,"mat-form-field",20)(8,"mat-select",21),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilterBy=o})("selectionChange",function(){t.CHM(e);const o=t.oxw();return o.selFilter="",o.applyFilter()}),t.YNc(9,Dn,2,2,"mat-option",22),t.qZA()(),t.TgZ(10,"mat-form-field",20)(11,"input",23),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilter=o})("input",function(){return t.CHM(e),t.oxw().applyFilter()})("keyup",function(){return t.CHM(e),t.oxw().applyFilter()}),t.qZA()()()(),t.TgZ(12,"div",24)(13,"div",25),t.YNc(14,Jn,1,0,"mat-progress-bar",26),t.TgZ(15,"table",27,28),t.ynx(17,29),t.YNc(18,Mn,2,0,"th",30),t.YNc(19,Qn,3,4,"td",31),t.BQk(),t.ynx(20,32),t.YNc(21,Yn,2,0,"th",30),t.YNc(22,Bn,4,4,"td",31),t.BQk(),t.ynx(23,33),t.YNc(24,Hn,2,0,"th",30),t.YNc(25,zn,4,4,"td",31),t.BQk(),t.ynx(26,34),t.YNc(27,Vn,2,0,"th",30),t.YNc(28,Gn,4,4,"td",31),t.BQk(),t.ynx(29,35),t.YNc(30,Wn,2,0,"th",30),t.YNc(31,$n,4,4,"td",31),t.BQk(),t.ynx(32,36),t.YNc(33,Xn,2,0,"th",30),t.YNc(34,Kn,4,4,"td",31),t.BQk(),t.ynx(35,37),t.YNc(36,jn,2,0,"th",30),t.YNc(37,ti,4,4,"td",31),t.BQk(),t.ynx(38,38),t.YNc(39,ei,2,0,"th",39),t.YNc(40,ni,4,3,"td",31),t.BQk(),t.ynx(41,40),t.YNc(42,ii,6,0,"th",41),t.YNc(43,ai,3,0,"td",42),t.BQk(),t.ynx(44,43),t.YNc(45,ri,4,3,"td",44),t.BQk(),t.ynx(46,45),t.YNc(47,pi,4,2,"td",31),t.BQk(),t.ynx(48,46),t.YNc(49,hi,5,5,"td",31),t.BQk(),t.ynx(50,47),t.YNc(51,fi,5,5,"td",31),t.BQk(),t.ynx(52,48),t.YNc(53,yi,5,5,"td",31),t.BQk(),t.ynx(54,49),t.YNc(55,Li,5,5,"td",31),t.BQk(),t.ynx(56,50),t.YNc(57,Zi,5,5,"td",31),t.BQk(),t.ynx(58,51),t.YNc(59,wi,5,5,"td",31),t.BQk(),t.ynx(60,52),t.YNc(61,qi,5,5,"td",31),t.BQk(),t.ynx(62,53),t.YNc(63,Pi,5,2,"td",31),t.BQk(),t.YNc(64,Ui,1,0,"tr",54),t.YNc(65,ki,1,3,"tr",55),t.YNc(66,Di,1,0,"tr",56),t.YNc(67,Ji,1,0,"tr",57),t.qZA()()(),t._UZ(68,"mat-paginator",58),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("icon",e.faHistory),t.xp6(5),t.Q6J("ngModel",e.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(15,Mi).concat(e.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",e.selFilter),t.xp6(3),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.payments)("ngClass",t.VKq(16,Qi,""!==e.errorMessage)),t.xp6(49),t.Q6J("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.xp6(1),t.Q6J("matFooterRowDef",t.DdM(18,Yi)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let St=(()=>{class n{constructor(e,i,o,s,c,h,g,v){this.logger=e,this.commonService=i,this.store=o,this.rtlEffects=s,this.decimalPipe=c,this.dataService=h,this.datePipe=g,this.camelCaseWithSpaces=v,this.calledFrom="transactions",this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.IV,sortBy:"firstPartTimestamp",sortOrder:l.Pi.DESCENDING},this.faHistory=L.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.payments=new r.by([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHint="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.nF).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.partColumns=[],this.displayedColumns.map(s=>this.partColumns.push("group_"+s)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=e.payments&&e.payments.sent&&e.payments.sent.length>0?e.payments.sent:[],this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,i)=>{var o,s;let c="";switch(this.selFilterBy){case"all":c=(e.firstPartTimestamp?null===(o=this.datePipe.transform(new Date(e.firstPartTimestamp),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"firstPartTimestamp":c=(null===(s=this.datePipe.transform(new Date(e.firstPartTimestamp||0),"dd/MMM/y HH:mm"))||void 0===s?void 0:s.toLowerCase())||"";break;default:c=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return c.includes(i)}}loadPaymentsTable(e){var i;this.payments=new r.by(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,s)=>{var c,h,g,v;switch(s){case"firstPartTimestamp":return this.commonService.sortByKey(o.parts,"timestamp","number",null===(c=this.sort)||void 0===c?void 0:c.direction),o.firstPartTimestamp;case"id":return this.commonService.sortByKey(o.parts,"id","string",null===(h=this.sort)||void 0===h?void 0:h.direction),o.id;case"recipientNodeAlias":return this.commonService.sortByKey(o.parts,"toChannelAlias","string",null===(g=this.sort)||void 0===g?void 0:g.direction),o.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(o.parts,"amount","number",null===(v=this.sort)||void 0===v?void 0:v.direction),o.recipientAmount;default:return o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null}},null===(i=this.payments.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,W.q)(1)).subscribe(e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp?(this.paymentDecoded.amount||(this.paymentDecoded.amount=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.paymentHash||"",this.paymentDecoded.amount&&0!==this.paymentDecoded.amount?(this.store.dispatch((0,E.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:l.Gi.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.Gi.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,W.q)(1)).subscribe(i=>{i&&(this.store.dispatch((0,U.oV)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,E.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:l.Gi.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.Gi.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:l.Gi.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,W.q)(1)).subscribe(o=>{o&&(this.paymentDecoded.amount=o[0].inputValue,this.store.dispatch((0,U.oV)({payload:{invoice:this.paymentRequest,amountMsat:1e3*o[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHint="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,W.q)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.amount?this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[4])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+o.symbol+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}openSendPaymentModal(){this.store.dispatch((0,E.qR)({payload:{data:{component:En}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(e,i){return i.parts&&i.parts.length>1}onPaymentClick(e){e.paymentHash&&""!==e.paymentHash.trim()?this.dataService.decodePayments(e.paymentHash).pipe((0,W.q)(1)).subscribe({next:i=>{setTimeout(()=>{this.showPaymentView(e,i.length&&i.length>0?i[0]:[])},0)},error:i=>{this.showPaymentView(e,[])}}):this.showPaymentView(e,[])}showPaymentView(e,i){this.store.dispatch((0,E.qR)({payload:{data:{sentPaymentInfo:i,payment:e,component:Nn}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,W.q)(1)).subscribe({next:o=>{setTimeout(()=>{this.showPartView(e,i,o.length&&o.length>0?o[0]:[])},0)},error:o=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,o){const s=[[{key:"paymentHash",value:i.paymentHash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"paymentPreimage",value:i.paymentPreimage,title:"Payment Preimage",width:100,type:l.Gi.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"Channel",width:100,type:l.Gi.STRING}],[{key:"id",value:e.id,title:"Part ID",width:50,type:l.Gi.STRING},{key:"timestamp",value:e.timestamp,title:"Time",width:50,type:l.Gi.DATE_TIME}],[{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER},{key:"feesPaid",value:e.feesPaid,title:"Fee (Sats)",width:50,type:l.Gi.NUMBER}]];o&&o.length>0&&o[0].paymentRequest&&o[0].paymentRequest.description&&""!==o[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:o[0].paymentRequest.description,title:"Description",width:100,type:l.Gi.STRING}]),this.store.dispatch((0,E.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Payment Part Information",message:s}}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=null==e?void 0:e.reduce((o,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(o=""===o?s.paymentHash:o+","+s.paymentHash),o),"");this.dataService.decodePayments(i).pipe((0,_.R)(this.unSubs[5])).subscribe(o=>{o.forEach((c,h)=>{c.length>0&&c[0].paymentRequest&&c[0].paymentRequest.description&&""!==c[0].paymentRequest.description&&(e[h].description=c[0].paymentRequest.description)});const s=null==e?void 0:e.reduce((c,h)=>c.concat(h),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh),t.Y36(nt.V),t.Y36(u.JJ),t.Y36(bt.D),t.Y36(u.uU),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(e,i){if(1&e&&(t.Gf(On,5),t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first),t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Payments")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","colWidth","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["sendPaymentForm","ngForm"],["fxFlex","colWidth"],["matInput","","placeholder","Payment Request","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","colWidth",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","colWidth","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","firstPartTimestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","recipientNodeId"],["matColumnDef","recipientNodeAlias"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","paymentPreimage"],["matColumnDef","recipientAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_firstPartTimestamp"],["matColumnDef","group_id"],["matColumnDef","group_recipientNodeId"],["matColumnDef","group_recipientNodeAlias"],["matColumnDef","group_recipientAmount"],["matColumnDef","group_description"],["matColumnDef","group_paymentHash"],["matColumnDef","group_paymentPreimage"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"part-row-span"],["fxLayoutAlign","start center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","part-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"part-row-span"],["fxLayoutAlign","end center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end start"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["fxLayoutAlign","end start",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-part-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Rn,12,3,"form",1),t.YNc(2,kn,3,0,"div",2),t.YNc(3,Bi,69,19,"div",3),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf","home"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom))},directives:[m.xw,m.yH,m.Wh,u.O5,d._Y,d.JL,d.F,y.KE,Y.Nt,d.Fj,d.Q7,H.$V,d.JJ,d.On,y.bx,y.TO,N.lW,q.BN,k.gD,u.sg,z.ey,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,r.Dz,r.ev,u.PC,Z.Zl,k.$L,r.mD,r.yh,r.nj,r.Gk,r.Ke,r.Q2,r.as,r.XQ,A.NW],pipes:[u.uU,u.JJ],styles:[".mat-column-group_actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:10rem;width:10rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{margin-top:.5rem;min-width:9rem;width:9rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:3rem}.part-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:17rem}"]}),n})();function Hi(n,a){if(1&n&&(t.TgZ(0,"button",26)(1,"mat-icon"),t._uU(2,"more_vert"),t.qZA()()),2&n){t.oxw();const e=t.MAs(11);t.Q6J("matMenuTriggerFor",e)}}function zi(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,c=t.oxw().$implicit;return t.oxw(2).onNavigateTo(c.links[s])}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function Vi(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){return t.CHM(e),t.oxw(3).onsortChannelsBy()}),t._uU(1),t.qZA()}if(2&n){const e=t.oxw(3);t.xp6(1),t.hij("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function Gi(n,a){1&n&&t._UZ(0,"mat-progress-bar",28)}function Wi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-node-info",29),2&n){const e=t.oxw(3);t.Q6J("information",e.information)("showColorFieldSeparately",!1)}}function $i(n,a){if(1&n&&t._UZ(0,"rtl-ecl-balances-info",30),2&n){const e=t.oxw(3);t.Q6J("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Xi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-capacity-info",31),2&n){const e=t.oxw(3);t.Q6J("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function Ki(n,a){if(1&n&&t._UZ(0,"rtl-ecl-fee-info",32),2&n){const e=t.oxw(3);t.Q6J("fees",e.fees)("errorMessage",e.errorMessages[1])}}function ji(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-status-info",33),2&n){const e=t.oxw(3);t.Q6J("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function ta(n,a){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find information!"),t.qZA())}const Zt=function(n){return{"dashboard-card-content":!0,"error-border":n}};function ea(n,a){if(1&n&&(t.TgZ(0,"mat-grid-tile",8)(1,"mat-card",9)(2,"mat-card-header")(3,"mat-card-title",10)(4,"div"),t._UZ(5,"fa-icon",11),t.TgZ(6,"span"),t._uU(7),t.qZA()(),t.TgZ(8,"div"),t.YNc(9,Hi,3,1,"button",12),t.TgZ(10,"mat-menu",13,14),t.YNc(12,zi,2,1,"button",15),t.YNc(13,Vi,2,1,"button",16),t.qZA()()()(),t.TgZ(14,"mat-card-content",17),t.YNc(15,Gi,1,0,"mat-progress-bar",18),t.TgZ(16,"div",19),t.YNc(17,Wi,1,2,"rtl-ecl-node-info",20),t.YNc(18,$i,1,2,"rtl-ecl-balances-info",21),t.YNc(19,Xi,1,4,"rtl-ecl-channel-capacity-info",22),t.YNc(20,Ki,1,2,"rtl-ecl-fee-info",23),t.YNc(21,ji,1,2,"rtl-ecl-channel-status-info",24),t.YNc(22,ta,2,0,"h3",25),t.qZA()()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("colspan",e.cols)("rowspan",e.rows),t.xp6(5),t.Q6J("icon",e.icon),t.xp6(2),t.Oqu(e.title),t.xp6(2),t.Q6J("ngIf",e.links[0]),t.xp6(3),t.Q6J("ngForOf",e.goToOptions),t.xp6(1),t.Q6J("ngIf","capacity"===e.id),t.xp6(1),t.s9C("fxFlex","capacity"===e.id?90:70),t.Q6J("ngClass",t.VKq(16,Zt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),t.xp6(1),t.Q6J("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngSwitch",e.id),t.xp6(1),t.Q6J("ngSwitchCase","node"),t.xp6(1),t.Q6J("ngSwitchCase","balance"),t.xp6(1),t.Q6J("ngSwitchCase","capacity"),t.xp6(1),t.Q6J("ngSwitchCase","fee"),t.xp6(1),t.Q6J("ngSwitchCase","status")}}function na(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div",3),t._UZ(2,"fa-icon",4),t.TgZ(3,"span",5),t._uU(4),t.qZA()(),t.TgZ(5,"mat-grid-list",6),t.YNc(6,ea,23,18,"mat-grid-tile",7),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Q6J("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.xp6(2),t.Oqu(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),t.xp6(1),t.Q6J("rowHeight",e.operatorCardHeight),t.xp6(1),t.Q6J("ngForOf",e.operatorCards)}}function ia(n,a){if(1&n&&(t.TgZ(0,"button",26)(1,"mat-icon"),t._uU(2,"more_vert"),t.qZA()()),2&n){t.oxw();const e=t.MAs(9);t.Q6J("matMenuTriggerFor",e)}}function aa(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,c=t.oxw(2).$implicit;return t.oxw(2).onNavigateTo(c.links[s])}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function oa(n,a){if(1&n&&(t.TgZ(0,"mat-card-header")(1,"mat-card-title",10)(2,"div"),t._UZ(3,"fa-icon",11),t.TgZ(4,"span"),t._uU(5),t.qZA()(),t.TgZ(6,"div"),t.YNc(7,ia,3,1,"button",12),t.TgZ(8,"mat-menu",13,42),t.YNc(10,aa,2,1,"button",15),t.qZA()()()()),2&n){const e=t.oxw().$implicit;t.xp6(3),t.Q6J("icon",e.icon),t.xp6(2),t.Oqu(e.title),t.xp6(2),t.Q6J("ngIf",e.links[0]),t.xp6(3),t.Q6J("ngForOf",e.goToOptions)}}function sa(n,a){1&n&&t._UZ(0,"mat-progress-bar",28)}function la(n,a){if(1&n&&t._UZ(0,"rtl-ecl-node-info",43),2&n){const e=t.oxw(3);t.Q6J("information",e.information)}}function ra(n,a){if(1&n&&t._UZ(0,"rtl-ecl-balances-info",30),2&n){const e=t.oxw(3);t.Q6J("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ca(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-liquidity-info",44),2&n){const e=t.oxw(3);t.Q6J("direction","In")("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function ua(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-liquidity-info",44),2&n){const e=t.oxw(3);t.Q6J("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function pa(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,c=t.oxw(3).$implicit;return t.oxw(2).onNavigateTo(c.links[s])}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function ma(n,a){if(1&n&&(t.TgZ(0,"button",26)(1,"mat-icon"),t._uU(2,"more_vert"),t.qZA()(),t.TgZ(3,"mat-menu",13,53),t.YNc(5,pa,2,1,"button",15),t.qZA()),2&n){const e=t.MAs(4),i=t.oxw(2).$implicit;t.Q6J("matMenuTriggerFor",e),t.xp6(5),t.Q6J("ngForOf",i.goToOptions)}}function da(n,a){1&n&&(t.TgZ(0,"span",45)(1,"mat-tab-group",46)(2,"mat-tab",47),t._UZ(3,"rtl-ecl-lightning-invoices",48),t.qZA(),t.TgZ(4,"mat-tab",49),t._UZ(5,"rtl-ecl-lightning-payments",50),t.qZA(),t.TgZ(6,"mat-tab",51),t.YNc(7,ma,6,2,"ng-template",52),t.qZA()()()),2&n&&(t.xp6(3),t.Q6J("calledFrom","home"),t.xp6(2),t.Q6J("calledFrom","home"),t.xp6(1),t.Q6J("disabled",!0))}function ha(n,a){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find information!"),t.qZA())}const _a=function(n){return{"p-0":n}};function ga(n,a){if(1&n&&(t.TgZ(0,"mat-grid-tile",8)(1,"mat-card",36),t.YNc(2,oa,11,4,"mat-card-header",37),t.TgZ(3,"mat-card-content",38),t.YNc(4,sa,1,0,"mat-progress-bar",18),t.TgZ(5,"div",19),t.YNc(6,la,1,1,"rtl-ecl-node-info",39),t.YNc(7,ra,1,2,"rtl-ecl-balances-info",21),t.YNc(8,ca,1,4,"rtl-ecl-channel-liquidity-info",40),t.YNc(9,ua,1,4,"rtl-ecl-channel-liquidity-info",40),t.YNc(10,da,8,3,"span",41),t.YNc(11,ha,2,0,"h3",25),t.qZA()()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("colspan",e.cols)("rowspan",e.rows),t.xp6(1),t.Q6J("ngClass",t.VKq(13,_a,"transactions"===e.id)),t.xp6(1),t.Q6J("ngIf","transactions"!==e.id),t.xp6(1),t.s9C("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),t.Q6J("ngClass",t.VKq(15,Zt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR)),t.xp6(1),t.Q6J("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngSwitch",e.id),t.xp6(1),t.Q6J("ngSwitchCase","node"),t.xp6(1),t.Q6J("ngSwitchCase","balance"),t.xp6(1),t.Q6J("ngSwitchCase","inboundLiq"),t.xp6(1),t.Q6J("ngSwitchCase","outboundLiq"),t.xp6(1),t.Q6J("ngSwitchCase","transactions")}}function fa(n,a){if(1&n&&(t.TgZ(0,"div",34),t._UZ(1,"fa-icon",4),t.TgZ(2,"span",5),t._uU(3),t.qZA()(),t.TgZ(4,"mat-grid-list",35),t.YNc(5,ga,12,17,"mat-grid-tile",7),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faSmile),t.xp6(2),t.hij("Welcome ",e.information.alias,"! Your node is up and running."),t.xp6(1),t.Q6J("rowHeight",e.merchantCardHeight),t.xp6(1),t.Q6J("ngForOf",e.merchantCards)}}let Ca=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.store=i,this.commonService=o,this.router=s,this.faSmile=xt.ctA,this.faFrown=xt.KfU,this.faAngleDoubleDown=L.Sbq,this.faAngleDoubleUp=L.Vfw,this.faChartPie=L.OS1,this.faBolt=L.BDt,this.faServer=L.xf3,this.faNetworkWired=L.kXW,this.userPersonaEnum=l.ol,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.selNode={},this.information={},this.channels=[],this.onchainBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="405px",this.merchantCardHeight="65px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:l.Bn.COMPLETED},this.apiCallStatusFees={status:l.Bn.COMPLETED},this.apiCallStatusOCBal={status:l.Bn.COMPLETED},this.apiCallStatusAllChannels={status:l.Bn.COMPLETED},this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.T$).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apiCallStatus,this.apiCallStatusNodeInfo.status===l.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=e.information}),this.store.select(C.JG).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusFees=e.apiCallStatus,this.apiCallStatusFees.status===l.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=e.fees}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[3]),(0,ot.M)(this.store.select(C.kY))).subscribe(([e,i])=>{var o,s;this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=e.apiCallStatus,this.apiCallStatusOCBal=i.apiCallStatus,this.apiCallStatusAllChannels.status===l.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===l.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=e.activeChannels,this.onchainBalance=i.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=e.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const c=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,h=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:c,remoteBalance:h,balancedness:+(1-Math.abs((c-h)/(c+h))).toFixed(3)},this.channelsStatus=e.channelsStatus,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(o=this.channels)||void 0===o?void 0:o.filter(v=>(v.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(s=this.channels)||void 0===s?void 0:s.filter(v=>(v.toLocal||0)>0),"toLocal"))),this.channels.forEach(v=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(v.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(v.toLocal||0)}),this.logger.info(e)})}onNavigateTo(e){this.router.navigateByUrl("/ecl/"+e)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((e,i)=>{const o=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return o>s?-1:o{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(P.v),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-home"]],decls:3,vars:2,consts:[["fxLayout","column",4,"ngIf","ngIfElse"],["merchantDashboard",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["menuOperator","matMenu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column",1,"w-100","dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[3,"disabled"],["mat-tab-label",""],["menuTransactions","matMenu"]],template:function(e,i){if(1&e&&(t.YNc(0,na,7,4,"div",0),t.YNc(1,fa,6,4,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",(null==i.selNode?null:i.selNode.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},directives:[u.O5,m.xw,m.Wh,q.BN,yt.Il,u.sg,yt.DX,m.yH,b.a8,b.dk,b.n5,N.lW,st.p6,vt.Hw,st.VK,st.OP,b.dn,u.mk,Z.oO,M.pW,u.RF,u.n9,Wt,Kt,se,ce,me,u.ED,Ze,R.SP,R.uX,Lt,St,R.uD],styles:[""]}),n})();var xa=f(8377);const ya=["form"];function va(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Bitcoin address is required."),t.qZA())}function Ta(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.amountError)}}function La(n,a){if(1&n&&(t.TgZ(0,"mat-option",29),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(e)}}function ba(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Target Confirmation Blocks is required."),t.qZA())}function Sa(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.sendFundError)}}function Za(n,a){if(1&n&&(t.TgZ(0,"div",30),t._UZ(1,"fa-icon",31),t.YNc(2,Sa,2,1,"span",12),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.sendFundError)}}let At=(()=>{class n{constructor(e,i,o,s,c,h){this.dialogRef=e,this.logger=i,this.store=o,this.commonService=s,this.decimalPipe=c,this.actions=h,this.faExclamationTriangle=L.eHv,this.selNode={},this.addressTypes=[],this.selectedAddress=l._t[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=l.uA,this.selAmountUnit=l.uA[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.Xz,this.amountError="Amount is Required.",this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.store.select(xa.dT).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(e=>e.type===l.lr.UPDATE_API_CALL_STATUS_ECL||e.type===l.lr.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(e=>{e.type===l.lr.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,E.jW)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&"SendOnchainFunds"===e.payload.action&&(this.sendFundError=e.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==l.NT.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?l.NT.OTHER:this.selAmountUnit,l.NT.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,_.R)(this.unSubs[2])).subscribe({next:e=>{this.transaction.amount=parseInt(e[l.NT.SATS]),this.selAmountUnit=l.NT.SATS,this.store.dispatch((0,U.Iy)({payload:this.transaction}))},error:e=>{this.selAmountUnit=l.NT.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,U.Iy)({payload:this.transaction}))}get invalidValues(){return!this.transaction.address||""===this.transaction.address||!this.transaction.amount||this.transaction.amount<=0||!this.transaction.blocks||this.transaction.blocks<=0}resetData(){this.sendFundError="",this.transaction={}}onAmountUnitChange(e){const i=this,o=this.selAmountUnit===this.amountUnits[2]?l.NT.OTHER:this.selAmountUnit;let s=e.value===this.amountUnits[2]?l.NT.OTHER:e.value;this.transaction.amount&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(this.transaction.amount,o,s,this.amountUnits[2],this.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:c=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(c[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:c=>{this.amountError="Conversion Error: "+c,this.selAmountUnit=o,s=o}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(O.mQ),t.Y36(w.yh),t.Y36(P.v),t.Y36(u.JJ),t.Y36(X.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(e,i){if(1&e&&t.Gf(ya,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:36,vars:15,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex","55"],["matInput","","autoFocus","","placeholder","Bitcoin Address","tabindex","1","name","addr","required","",3,"ngModel","ngModelChange"],["addrs","ngModel"],[4,"ngIf"],["fxFlex","30"],["matInput","","placeholder","Amount","name","amt","type","number","tabindex","2","required","",3,"ngModel","step","min","ngModelChange"],["amnt","ngModel"],["matSuffix",""],["fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["matInput","","placeholder","Target Confirmation Blocks","type","number","name","blocks","tabindex","8","required","true",3,"ngModel","step","min","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Send Payment"),t.qZA()(),t.TgZ(6,"button",5),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8),t.NdJ("submit",function(){return i.onSendFunds()})("reset",function(){return i.resetData()}),t.TgZ(11,"mat-form-field",9)(12,"input",10,11),t.NdJ("ngModelChange",function(s){return i.transaction.address=s}),t.qZA(),t.YNc(14,va,2,0,"mat-error",12),t.qZA(),t.TgZ(15,"mat-form-field",13)(16,"input",14,15),t.NdJ("ngModelChange",function(s){return i.transaction.amount=s}),t.qZA(),t.TgZ(18,"span",16),t._uU(19),t.qZA(),t.YNc(20,Ta,2,1,"mat-error",12),t.qZA(),t.TgZ(21,"mat-form-field",17)(22,"mat-select",18),t.NdJ("selectionChange",function(s){return i.onAmountUnitChange(s)}),t.YNc(23,La,2,2,"mat-option",19),t.qZA()(),t.TgZ(24,"div",20)(25,"mat-form-field",21)(26,"input",22,23),t.NdJ("ngModelChange",function(s){return i.transaction.blocks=s}),t.qZA(),t.YNc(28,ba,2,0,"mat-error",12),t.qZA()(),t._UZ(29,"div",24),t.YNc(30,Za,3,2,"div",25),t.TgZ(31,"div",26)(32,"button",27),t._uU(33,"Clear Fields"),t.qZA(),t.TgZ(34,"button",28),t._uU(35,"Send Funds"),t.qZA()()()()()()),2&e&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(6),t.Q6J("ngModel",i.transaction.address),t.xp6(2),t.Q6J("ngIf",!i.transaction.address),t.xp6(2),t.Q6J("ngModel",i.transaction.amount)("step",100)("min",0),t.xp6(3),t.hij("",i.selAmountUnit," "),t.xp6(1),t.Q6J("ngIf",!i.transaction.amount),t.xp6(2),t.Q6J("value",i.selAmountUnit),t.xp6(1),t.Q6J("ngForOf",i.amountUnits),t.xp6(3),t.Q6J("ngModel",i.transaction.blocks)("step",1)("min",0),t.xp6(2),t.Q6J("ngIf",!i.transaction.blocks),t.xp6(2),t.Q6J("ngIf",""!==i.sendFundError))},directives:[m.xw,m.yH,b.dk,m.Wh,N.lW,J.ZT,b.dn,d._Y,d.JL,d.F,y.KE,Y.Nt,d.Fj,j.h,d.Q7,d.JJ,d.On,u.O5,y.TO,d.wV,d.qQ,tt.q,y.R9,k.gD,u.sg,z.ey,q.BN],styles:[""]}),n})();var ut=f(1203);function Aa(n,a){if(1&n&&(t.TgZ(0,"mat-option",34),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Ea(n,a){1&n&&t._UZ(0,"mat-progress-bar",35)}function wa(n,a){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Date/Time"),t.qZA())}function Ia(n,a){if(1&n&&(t.TgZ(0,"td",37),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Fa(n,a){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Address"),t.qZA())}const pt=function(n){return{width:n}};function qa(n,a){if(1&n&&(t.TgZ(0,"td",37)(1,"div",38)(2,"span",39),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,pt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.address)}}function Na(n,a){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Blockhash"),t.qZA())}function Oa(n,a){if(1&n&&(t.TgZ(0,"td",37)(1,"div",38)(2,"span",39),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,pt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.blockHash)}}function Pa(n,a){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Transaction ID"),t.qZA())}function Ua(n,a){if(1&n&&(t.TgZ(0,"td",37)(1,"div",38)(2,"span",39),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,pt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.txid)}}function Ra(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1,"Amount (Sats)"),t.qZA())}function ka(n,a){if(1&n&&(t.TgZ(0,"span",43),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Oqu(t.lcZ(2,1,null==e?null:e.amount))}}function Da(n,a){if(1&n&&(t.TgZ(0,"span",44),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.hij("(",t.lcZ(2,1,-1*(null==e?null:e.amount)),")")}}function Ja(n,a){if(1&n&&(t.TgZ(0,"td",37),t.YNc(1,ka,3,3,"span",41),t.YNc(2,Da,3,3,"span",42),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf",(null==e?null:e.amount)>0||0===(null==e?null:e.amount)),t.xp6(1),t.Q6J("ngIf",(null==e?null:e.amount)<0)}}function Ma(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1,"Fees (Sats)"),t.qZA())}function Qa(n,a){if(1&n&&(t.TgZ(0,"td",37)(1,"span",43),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.fees))}}function Ya(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1,"Confirmations"),t.qZA())}function Ba(n,a){if(1&n&&(t.TgZ(0,"td",37)(1,"span",43),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.lcZ(3,1,null==e?null:e.confirmations)," ")}}function Ha(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",45)(1,"div",46)(2,"mat-select",47),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",48),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function za(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",49)(1,"button",50),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onTransactionClick(c,o)}),t._uU(2,"View Info"),t.qZA()()}}function Va(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No transaction available."),t.qZA())}function Ga(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting transactions..."),t.qZA())}function Wa(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function $a(n,a){if(1&n&&(t.TgZ(0,"td",51),t.YNc(1,Va,2,0,"p",52),t.YNc(2,Ga,2,0,"p",52),t.YNc(3,Wa,2,1,"p",52),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Xa=function(n){return{"display-none":n}};function Ka(n,a){if(1&n&&t._UZ(0,"tr",53),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Xa,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function ja(n,a){1&n&&t._UZ(0,"tr",54)}function to(n,a){1&n&&t._UZ(0,"tr",55)}const eo=function(){return["all"]},no=function(n){return{"error-border":n}},io=function(){return["no_transaction"]};let ao=(()=>{class n{constructor(e,i,o,s,c){this.logger=e,this.commonService=i,this.store=o,this.datePipe=s,this.camelCaseWithSpaces=c,this.faHistory=L.qO$,this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:l.IV,sortBy:"timestamp",sortOrder:l.Pi.DESCENDING},this.displayedColumns=[],this.listTransactions=new r.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,U.mC)()),this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.dx).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.transactions&&this.loadTransactionsTable(e.transactions),this.logger.info(e)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.listTransactions.filterPredicate=(e,i)=>{var o,s;let c="";switch(this.selFilterBy){case"all":c=(e.timestamp?null===(o=this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":c=(null===(s=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===s?void 0:s.toLowerCase())||"";break;default:c=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return c.includes(i)}}onTransactionClick(e,i){this.store.dispatch((0,E.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:e.blockHash,title:"Block Hash",width:100}],[{key:"txid",value:e.txid,title:"Transaction ID",width:100}],[{key:"timestamp",value:e.timestamp,title:"Date/Time",width:50,type:l.Gi.DATE_TIME},{key:"confirmations",value:e.confirmations,title:"Number of Confirmations",width:50,type:l.Gi.NUMBER}],[{key:"fees",value:e.fees,title:"Fees (Sats)",width:50,type:l.Gi.NUMBER},{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100,type:l.Gi.STRING}]]}}}))}loadTransactionsTable(e){var i;this.listTransactions=new r.by([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.listTransactions.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh),t.Y36(u.uU),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Transactions")}])],decls:47,vars:17,consts:[["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","blockHash"],["matColumnDef","txid"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fees"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2),t._UZ(3,"fa-icon",3),t.TgZ(4,"span",4),t._uU(5,"Transaction History"),t.qZA()(),t.TgZ(6,"div",5)(7,"mat-form-field",6)(8,"mat-select",7),t.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),t.YNc(9,Aa,2,2,"mat-option",8),t.qZA()(),t.TgZ(10,"mat-form-field",6)(11,"input",9),t.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),t.qZA()()()(),t.TgZ(12,"div",10)(13,"div",11),t.YNc(14,Ea,1,0,"mat-progress-bar",12),t.TgZ(15,"table",13,14),t.ynx(17,15),t.YNc(18,wa,2,0,"th",16),t.YNc(19,Ia,3,4,"td",17),t.BQk(),t.ynx(20,18),t.YNc(21,Fa,2,0,"th",16),t.YNc(22,qa,4,4,"td",17),t.BQk(),t.ynx(23,19),t.YNc(24,Na,2,0,"th",16),t.YNc(25,Oa,4,4,"td",17),t.BQk(),t.ynx(26,20),t.YNc(27,Pa,2,0,"th",16),t.YNc(28,Ua,4,4,"td",17),t.BQk(),t.ynx(29,21),t.YNc(30,Ra,2,0,"th",22),t.YNc(31,Ja,3,2,"td",17),t.BQk(),t.ynx(32,23),t.YNc(33,Ma,2,0,"th",22),t.YNc(34,Qa,4,3,"td",17),t.BQk(),t.ynx(35,24),t.YNc(36,Ya,2,0,"th",22),t.YNc(37,Ba,4,3,"td",17),t.BQk(),t.ynx(38,25),t.YNc(39,Ha,6,0,"th",26),t.YNc(40,za,3,0,"td",27),t.BQk(),t.ynx(41,28),t.YNc(42,$a,4,3,"td",29),t.BQk(),t.YNc(43,Ka,1,3,"tr",30),t.YNc(44,ja,1,0,"tr",31),t.YNc(45,to,1,0,"tr",32),t.qZA(),t._UZ(46,"mat-paginator",33),t.qZA()()()),2&e&&(t.xp6(3),t.Q6J("icon",i.faHistory),t.xp6(5),t.Q6J("ngModel",i.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(13,eo).concat(i.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",i.selFilter),t.xp6(3),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.listTransactions)("ngClass",t.VKq(14,no,""!==i.errorMessage)),t.xp6(28),t.Q6J("matFooterRowDef",t.DdM(16,io)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[m.xw,m.Wh,m.yH,q.BN,y.KE,k.gD,d.JJ,d.On,u.sg,z.ey,Y.Nt,d.Fj,H.$V,u.O5,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,r.Dz,r.ev,u.PC,Z.Zl,k.$L,N.lW,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[u.uU,u.JJ],styles:[""]}),n})();function oo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let so=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.selNode={},this.faExchangeAlt=L.Ssp,this.faChartPie=L.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(C.LR).pipe((0,_.R)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[2])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.onchainBalance.total||0},{title:"Confirmed",dataValue:i.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:i.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,E.qR)({payload:{data:{component:At}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain"]],decls:21,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large","mt-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"On-chain Balance"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t._UZ(7,"rtl-currency-unit-converter",5),t.qZA()()(),t.TgZ(8,"div",0),t._UZ(9,"fa-icon",1),t.TgZ(10,"span",2),t._uU(11,"On-chain Transactions"),t.qZA()(),t.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",7),t.YNc(16,oo,2,3,"div",8),t.qZA(),t.TgZ(17,"div",9),t._UZ(18,"router-outlet"),t.qZA(),t.TgZ(19,"div",10),t._UZ(20,"rtl-ecl-on-chain-transaction-history",11),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartPie),t.xp6(6),t.Q6J("values",i.balances),t.xp6(2),t.Q6J("icon",i.faExchangeAlt),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[m.xw,m.Wh,q.BN,b.a8,b.dn,ut.D,R.BU,u.sg,R.Nj,x.rH,m.yH,x.lC,ao],styles:[""]}),n})();var Et=f(7544);function lo(n,a){if(1&n&&(t.TgZ(0,"span",10),t._uU(1,"Channels"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.activeChannels)}}function ro(n,a){if(1&n&&(t.TgZ(0,"span",10),t._uU(1,"Peers"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.activePeers)}}let co=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=L.FVb,this.faChartPie=L.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(e=>e instanceof x.Av)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.activeChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.balances=[{title:"Total Balance",dataValue:e.onchainBalance.total||0},{title:"Confirmed",dataValue:e.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:e.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"On-chain Balance"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t._UZ(7,"rtl-currency-unit-converter",5),t.qZA()()(),t.TgZ(8,"div",0),t._UZ(9,"fa-icon",1),t.TgZ(10,"span",2),t._uU(11,"Connections"),t.qZA()(),t.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.NdJ("selectedIndexChange",function(s){return i.activeLink=s})("selectedTabChange",function(s){return i.onSelectedTabChange(s)}),t.TgZ(16,"mat-tab"),t.YNc(17,lo,2,1,"ng-template",8),t.qZA(),t.TgZ(18,"mat-tab"),t.YNc(19,ro,2,1,"ng-template",8),t.qZA()(),t.TgZ(20,"div",9),t._UZ(21,"router-outlet"),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartPie),t.xp6(6),t.Q6J("values",i.balances),t.xp6(2),t.Q6J("icon",i.faUsers),t.xp6(6),t.Q6J("selectedIndex",i.activeLink))},directives:[m.xw,m.Wh,q.BN,b.a8,b.dn,ut.D,R.SP,R.uX,R.uD,Et.k,m.yH,x.lC],styles:[""]}),n})();function uo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let po=(()=>{class n{constructor(e,i,o){this.logger=e,this.store=i,this.router=o,this.faExchangeAlt=L.Ssp,this.faChartPie=L.OS1,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1]),(0,ot.M)(this.store.select(C.LR))).subscribe(([i,o])=>{this.currencyUnits=(null==o?void 0:o.currencyUnits)||[],this.balances=o&&o.userPersona===l.ol.OPERATOR?[{title:"Local Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-transactions"]],decls:19,vars:4,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Lightning Balance"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t._UZ(7,"rtl-currency-unit-converter",5),t.qZA()()(),t.TgZ(8,"div",6),t._UZ(9,"fa-icon",1),t.TgZ(10,"span",2),t._uU(11,"Lightning Transactions"),t.qZA()(),t.TgZ(12,"div",7)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",8),t.YNc(16,uo,2,3,"div",9),t.qZA(),t.TgZ(17,"div",10),t._UZ(18,"router-outlet"),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartPie),t.xp6(6),t.Q6J("values",i.balances),t.xp6(2),t.Q6J("icon",i.faExchangeAlt),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[m.xw,m.Wh,q.BN,b.a8,b.dn,ut.D,R.BU,u.sg,R.Nj,x.rH,m.yH,x.lC],styles:[""]}),n})();function mo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let ho=(()=>{class n{constructor(e){this.router=e,this.faMapSigns=L.SuH,this.events=[],this.flgLoading=[!0],this.errorMessage="",this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing"]],decls:13,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","fxFlex","100"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span",3),t._uU(4,"Routing"),t.qZA()(),t.TgZ(5,"div",4)(6,"mat-card",5)(7,"mat-card-content",6)(8,"div",7)(9,"nav",8),t.YNc(10,mo,2,3,"div",9),t.qZA()(),t.TgZ(11,"div",10),t._UZ(12,"router-outlet"),t.qZA()()()()()),2&e&&(t.xp6(2),t.Q6J("icon",i.faMapSigns),t.xp6(8),t.Q6J("ngForOf",i.links))},directives:[m.xw,m.Wh,q.BN,m.yH,b.a8,b.dn,R.BU,u.sg,R.Nj,x.rH,x.lC],styles:[""]}),n})();var it=f(9814),wt=f(7261),It=f(6895);function _o(n,a){if(1&n&&(t.TgZ(0,"span",9)(1,"div"),t._uU(2),t.ALo(3,"titlecase"),t.qZA()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(2),t.AsE("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.lcZ(3,2,e.value),"")}}function go(n,a){1&n&&(t.TgZ(0,"th",23),t._uU(1,"Address"),t.qZA())}function fo(n,a){if(1&n&&(t.TgZ(0,"td",24),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function Co(n,a){1&n&&(t.TgZ(0,"th",25)(1,"div",26),t._uU(2,"Actions"),t.qZA()())}function xo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",24)(1,"span",27)(2,"button",28),t.NdJ("copied",function(o){return t.CHM(e),t.oxw(2).onCopyNodeURI(o)}),t._uU(3,"Copy Node URI"),t.qZA()()()}if(2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(2),t.Q6J("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function yo(n,a){1&n&&t._UZ(0,"tr",29)}function vo(n,a){1&n&&t._UZ(0,"tr",30)}const To=function(n){return{"background-color":n}};function Lo(n,a){if(1&n&&(t.TgZ(0,"div",1),t._UZ(1,"mat-divider",2),t.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),t._uU(5,"Alias"),t.qZA(),t.TgZ(6,"span",6),t._uU(7),t.TgZ(8,"span",7),t._uU(9),t.qZA()()(),t.TgZ(10,"div",8)(11,"h4",5),t._uU(12,"Pub Key"),t.qZA(),t.TgZ(13,"span",9),t._uU(14),t.qZA()()(),t._UZ(15,"mat-divider",2),t.TgZ(16,"div",3)(17,"div",4)(18,"h4",5),t._uU(19,"Date/Time"),t.qZA(),t.TgZ(20,"span",6),t._uU(21),t.ALo(22,"date"),t.qZA()(),t.TgZ(23,"div",8)(24,"h4",5),t._uU(25,"Features"),t.qZA(),t.YNc(26,_o,4,4,"span",10),t.ALo(27,"keyvalue"),t.qZA()(),t._UZ(28,"mat-divider",2),t.TgZ(29,"div",3)(30,"div",11)(31,"h4",5),t._uU(32,"Signature"),t.qZA(),t.TgZ(33,"span",6),t._uU(34),t.qZA()()(),t._UZ(35,"mat-divider",2),t.TgZ(36,"div",1)(37,"h4",12),t._uU(38,"Addresses"),t.qZA(),t.TgZ(39,"div",13)(40,"table",14,15),t.ynx(42,16),t.YNc(43,go,2,0,"th",17),t.YNc(44,fo,2,1,"td",18),t.BQk(),t.ynx(45,19),t.YNc(46,Co,3,0,"th",20),t.YNc(47,xo,4,1,"td",18),t.BQk(),t.YNc(48,yo,1,0,"tr",21),t.YNc(49,vo,1,0,"tr",22),t.qZA()()()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(null==e.lookupResult?null:e.lookupResult.alias),t.xp6(1),t.Q6J("ngStyle",t.VKq(19,To,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.xp6(1),t.Oqu(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.xp6(5),t.Oqu(null==e.lookupResult?null:e.lookupResult.nodeId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.xi3(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.xp6(5),t.Q6J("ngForOf",t.lcZ(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.xp6(2),t.Q6J("inset",!0),t.xp6(6),t.Oqu(null==e.lookupResult?null:e.lookupResult.signature),t.xp6(1),t.Q6J("inset",!0),t.xp6(5),t.Q6J("dataSource",e.addresses),t.xp6(8),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns)}}let bo=(()=>{class n{constructor(e,i){this.logger=e,this.snackBar=i,this.lookupResult={},this.addresses=new r.by([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.H_}ngOnInit(){this.addresses=new r.by(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(wt.ux))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(e,i){if(1&e&&t.Gf(S.YE,5),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column",4,"ngIf"],["fxLayout","column"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxFlex","100"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","address"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1","rtlClipboard","",1,"btn-action-copy",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&t.YNc(0,Lo,50,21,"div",0),2&e&&t.Q6J("ngIf",i.lookupResult)},directives:[u.O5,m.xw,K.d,m.yH,m.Wh,u.PC,Z.Zl,u.sg,H.$V,r.BZ,S.YE,r.w1,r.fO,r.ge,S.nU,r.Dz,r.ev,N.lW,It.y,r.as,r.XQ,r.nj,r.Gk],pipes:[u.uU,u.Nd,u.rS],styles:["div.bordered-box.table-actions-select.btn-action[_ngcontent-%COMP%]{min-width:13rem;width:13rem;min-height:3.6rem}button.mat-stroked-button.btn-action-copy[_ngcontent-%COMP%]{min-width:13rem;width:13rem}"]}),n})();const So=["form"];function Zo(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function Ao(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function Eo(n,a){if(1&n&&(t.TgZ(0,"div"),t._UZ(1,"rtl-ecl-node-lookup",25),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Q6J("lookupResult",e.nodeLookupValue)}}function wo(n,a){if(1&n&&(t.TgZ(0,"span",23),t.YNc(1,Eo,2,1,"div",24),t.qZA()),2&n){const e=t.oxw(2),i=t.MAs(21);t.xp6(1),t.Q6J("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function Io(n,a){1&n&&(t.TgZ(0,"span",23)(1,"h3"),t._uU(2,"Error! Unable to find details!"),t.qZA()())}function Fo(n,a){if(1&n&&(t.TgZ(0,"div",17)(1,"div",18)(2,"span",19),t._uU(3),t.qZA()(),t.TgZ(4,"div",20),t.YNc(5,wo,2,2,"span",21),t.YNc(6,Io,3,0,"span",22),t.qZA()()),2&n){const e=t.oxw();t.xp6(3),t.hij("",e.lookupFields[e.selectedFieldId].name," Details"),t.xp6(1),t.Q6J("ngSwitch",e.selectedFieldId),t.xp6(1),t.Q6J("ngSwitchCase",0)}}function qo(n,a){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find details!"),t.qZA())}const No=function(n){return{"mt-1":!0,"mt-2":n}};let Oo=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.commonService=i,this.store=o,this.actions=s,this.lookupKeyCtrl=new d.NI,this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Node ID"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=L.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(e=>e.type===l.lr.SET_LOOKUP_ECL||e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{if(e.type===l.lr.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=e.payload[0]?JSON.parse(JSON.stringify(e.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(e.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&"Lookup"===e.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1})}onLookup(){return this.lookupKeyCtrl.value?this.lookupKeyCtrl.value&&(this.lookupKeyCtrl.value.includes("@")||this.lookupKeyCtrl.value.includes(","))?(this.lookupKeyCtrl.setErrors({invalid:!0}),!0):void(0===(this.selectedFieldId||(this.selectedFieldId=0),this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.selectedFieldId)&&this.store.dispatch((0,U.Sf)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(e){this.resetData(),this.selectedFieldId=e.value}resetData(){this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.lookupKeyCtrl.setValue(""),this.lookupKeyCtrl.setErrors(null),this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh),t.Y36(X.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(e,i){if(1&e&&t.Gf(So,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:22,vars:9,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl","placeholder"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["errorBlock",""],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6)(7,"mat-radio-button",7),t._uU(8,"Node"),t.qZA()()(),t.TgZ(9,"mat-form-field",8),t._UZ(10,"input",9,10),t.YNc(12,Zo,2,1,"mat-error",11),t.YNc(13,Ao,2,1,"mat-error",11),t.qZA(),t.TgZ(14,"div",12)(15,"button",13),t.NdJ("click",function(){return i.resetData()}),t._uU(16,"Clear"),t.qZA(),t.TgZ(17,"button",14),t.NdJ("click",function(){return i.onLookup()}),t._uU(18,"Lookup"),t.qZA()()(),t.YNc(19,Fo,7,3,"div",15),t.qZA()()(),t.YNc(20,qo,2,0,"ng-template",null,16,t.W1O)),2&e&&(t.xp6(7),t.Q6J("value",0),t.xp6(2),t.Q6J("ngClass",t.VKq(7,No,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),t.xp6(1),t.Q6J("formControl",i.lookupKeyCtrl)("placeholder",(null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),t.xp6(2),t.Q6J("ngIf",null==i.lookupKeyCtrl.errors?null:i.lookupKeyCtrl.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.lookupKeyCtrl.errors?null:i.lookupKeyCtrl.errors.invalid),t.xp6(6),t.Q6J("ngIf",i.flgSetLookupValue))},directives:[m.xw,m.yH,m.Wh,b.dn,d._Y,d.JL,d.F,it.VQ,it.U0,y.KE,u.mk,Z.oO,Y.Nt,d.Fj,d.Q7,d.JJ,d.oH,u.O5,y.TO,N.lW,u.RF,u.n9,bo,u.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}),n})();var Po=f(9122);let Uo=(()=>{class n{constructor(e,i){this.store=e,this.eclEffects=i,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,U._E)()),this.eclEffects.setNewAddress.pipe((0,W.q)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,E.qR)({payload:{data:{address:this.newAddress,addressType:"",component:Po.n}}}))},0)})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(ct.o))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-receive"]],decls:4,vars:0,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return i.onGenerateAddress()}),t._uU(3,"Generate Address"),t.qZA()()())},directives:[m.xw,m.yH,m.Wh,N.lW],styles:[""]}),n})(),Ro=(()=>{class n{constructor(e,i){this.store=e,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new p.x,new p.x]}ngOnInit(){this.activatedRoute.data.pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,E.qR)({payload:{data:{sweepAll:this.sweepAll,component:At}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(x.gz))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return i.openSendFundsModal()}),t._uU(3),t.qZA()()()),2&e&&(t.xp6(3),t.Oqu(i.sweepAll?"Sweep All":"Send Funds"))},directives:[m.xw,m.yH,m.Wh,N.lW],styles:[""]}),n})();var ko=f(8675),Ft=f(4004),qt=f(1079),Do=f(9843),Nt=f(2368);const Jo=["form"];function Mo(n,a){if(1&n&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function Qo(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Peer alias is required."),t.qZA())}function Yo(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Peer not found in the list."),t.qZA())}function Bo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-form-field",1)(1,"input",31),t.NdJ("change",function(){return t.CHM(e),t.oxw().onSelectedPeerChanged()}),t.qZA(),t.TgZ(2,"mat-autocomplete",32,33),t.NdJ("optionSelected",function(){return t.CHM(e),t.oxw().onSelectedPeerChanged()}),t.YNc(4,Mo,2,2,"mat-option",34),t.ALo(5,"async"),t.qZA(),t.YNc(6,Qo,2,0,"mat-error",17),t.YNc(7,Yo,2,0,"mat-error",17),t.qZA()}if(2&n){const e=t.MAs(3),i=t.oxw();t.xp6(1),t.Q6J("formControl",i.selectedPeer)("matAutocomplete",e),t.xp6(1),t.Q6J("displayWith",i.displayFn),t.xp6(2),t.Q6J("ngForOf",t.lcZ(5,6,i.filteredPeers)),t.xp6(2),t.Q6J("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function Ho(n,a){1&n&&t.GkF(0)}function zo(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function Vo(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("Amount must be less than or equal to ",e.totalBalance,".")}}function Go(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.channelConnectionError)}}function Wo(n,a){if(1&n&&(t.TgZ(0,"div",36),t._UZ(1,"fa-icon",37),t.YNc(2,Go,2,1,"span",17),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.channelConnectionError)}}function $o(n,a){if(1&n&&(t.TgZ(0,"mat-expansion-panel",39)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t._uU(4,"Peer: \xa0"),t.qZA(),t.TgZ(5,"strong",40),t._uU(6),t.qZA()()(),t.TgZ(7,"div",9)(8,"div",0)(9,"div",1)(10,"h4",41),t._uU(11,"Pubkey"),t.qZA(),t.TgZ(12,"span",42),t._uU(13),t.qZA()()(),t._UZ(14,"mat-divider",43),t.TgZ(15,"div",0)(16,"div",44)(17,"h4",41),t._uU(18,"Address"),t.qZA(),t.TgZ(19,"span",45),t._uU(20),t.qZA()(),t.TgZ(21,"div",44)(22,"h4",41),t._uU(23,"State"),t.qZA(),t.TgZ(24,"span",45),t._uU(25),t.ALo(26,"titlecase"),t.qZA()()()()()),2&n){const e=t.oxw(2);t.xp6(6),t.Oqu((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.xp6(7),t.Oqu(e.peer.nodeId),t.xp6(7),t.Oqu(null==e.peer?null:e.peer.address),t.xp6(5),t.Oqu(t.lcZ(26,4,null==e.peer?null:e.peer.state))}}function Xo(n,a){if(1&n&&t.YNc(0,$o,27,6,"mat-expansion-panel",38),2&n){const e=t.oxw();t.Q6J("ngIf",e.peer)}}let Ot=(()=>{class n{constructor(e,i,o,s){this.dialogRef=e,this.data=i,this.store=o,this.actions=s,this.selNode={},this.selectedPeer=new d.NI,this.faExclamationTriangle=L.eHv,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(o=>{this.selNode=o,this.isPrivate=!!(null==o?void 0:o.unannouncedChannels)}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(o=>o.type===l.lr.UPDATE_API_CALL_STATUS_ECL||o.type===l.lr.FETCH_CHANNELS_ECL)).subscribe(o=>{o.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&o.payload.status===l.Bn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===l.lr.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((o,s)=>(e=o.alias?o.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,_.R)(this.unSubs[2]),(0,ko.O)(""),(0,Ft.U)(o=>"string"==typeof o?o:o.alias?o.alias:o.nodeId),(0,Ft.U)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(e){var i;return null===(i=this.sortedPeers)||void 0===i?void 0:i.filter(o=>{var s;return 0===(null===(s=o.alias)||void 0===s?void 0:s.toLowerCase().indexOf(e?e.toLowerCase():""))})}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.nodeId:""}onSelectedPeerChanged(){var e;if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const i=null===(e=this.peers)||void 0===e?void 0:e.filter(o=>{var s,c;return(null===(s=o.alias)||void 0===s?void 0:s.length)===this.selectedPeer.value.length&&0===(null===(c=o.alias)||void 0===c?void 0:c.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""))});1===i.length&&i[0].nodeId&&(this.selectedPubkey=i[0].nodeId)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){var e;this.feeRate=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!(null===(e=this.selNode)||void 0===e?void 0:e.unannouncedChannels),this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(e){this.advancedTitle="Advanced Options",e&&this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate)}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0)return!0;const e={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(e.feeRate=this.feeRate),this.store.dispatch((0,U.YX)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(J.WI),t.Y36(w.yh),t.Y36(X.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(e,i){if(1&e&&t.Gf(Jo,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:48,vars:18,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["form","ngForm"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","70","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","1","required","","name","amount",3,"ngModel","step","min","max","ngModelChange"],["amount","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModel","ngModelChange"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","fxLayout","row","fxLayoutAlign","space-between center"],["fxFlex","49"],["matInput","","placeholder","Fee (Sats/vByte)","type","number","name","fee","tabindex","7",3,"ngModel","step","min","ngModelChange"],["fee","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","10"],["peerDetailsExpansionBlock",""],["type","text","placeholder","Peer Alias","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(e,i){if(1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return i.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8),t.NdJ("submit",function(){return i.onOpenChannel()})("reset",function(){return i.resetData()}),t.TgZ(11,"div",9),t.YNc(12,Bo,8,8,"mat-form-field",10),t.qZA(),t.YNc(13,Ho,1,0,"ng-container",11),t.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"input",14,15),t.NdJ("ngModelChange",function(s){return i.fundingAmount=s}),t.qZA(),t.TgZ(19,"mat-hint"),t._uU(20),t.ALo(21,"number"),t.qZA(),t.TgZ(22,"span",16),t._uU(23," Sats "),t.qZA(),t.YNc(24,zo,2,0,"mat-error",17),t.YNc(25,Vo,2,1,"mat-error",17),t.qZA(),t.TgZ(26,"div",18)(27,"mat-slide-toggle",19),t.NdJ("ngModelChange",function(s){return i.isPrivate=s}),t._uU(28,"Private Channel"),t.qZA()()(),t.TgZ(29,"mat-expansion-panel",20),t.NdJ("closed",function(){return i.onAdvancedPanelToggle(!0)})("opened",function(){return i.onAdvancedPanelToggle(!1)}),t.TgZ(30,"mat-expansion-panel-header")(31,"mat-panel-title")(32,"span"),t._uU(33),t.qZA()()(),t.TgZ(34,"div",21)(35,"div",12)(36,"div",22)(37,"mat-form-field",23)(38,"input",24,25),t.NdJ("ngModelChange",function(s){return i.feeRate=s}),t.qZA()()()()()()(),t.YNc(40,Wo,3,2,"div",26),t.TgZ(41,"div",27)(42,"button",28),t._uU(43,"Clear Fields"),t.qZA(),t.TgZ(44,"button",29),t._uU(45,"Open Channel"),t.qZA()()()()()(),t.YNc(46,Xo,1,1,"ng-template",null,30,t.W1O)),2&e){const o=t.MAs(18),s=t.MAs(47);t.xp6(5),t.Oqu(i.alertTitle),t.xp6(7),t.Q6J("ngIf",!i.peer&&i.peers&&i.peers.length>0),t.xp6(1),t.Q6J("ngTemplateOutlet",s),t.xp6(4),t.Q6J("ngModel",i.fundingAmount)("step",1e3)("min",1)("max",i.totalBalance),t.xp6(3),t.hij("Remaining Bal: ",t.lcZ(21,16,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),""),t.xp6(4),t.Q6J("ngIf",null==o.errors?null:o.errors.required),t.xp6(1),t.Q6J("ngIf",null==o.errors?null:o.errors.max),t.xp6(2),t.Q6J("ngModel",i.isPrivate),t.xp6(6),t.Oqu(i.advancedTitle),t.xp6(5),t.Q6J("ngModel",i.feeRate)("step",1)("min",0),t.xp6(2),t.Q6J("ngIf",""!==i.channelConnectionError)}},directives:[m.xw,m.yH,b.dk,m.Wh,N.lW,b.dn,d._Y,d.JL,d.F,u.O5,y.KE,Y.Nt,d.Fj,qt.ZL,d.Q7,d.JJ,d.oH,qt.XC,u.sg,z.ey,y.TO,u.tP,d.wV,d.qQ,d.Fd,tt.q,Do.F,d.On,y.bx,y.R9,Nt.Rr,V.ib,V.yz,V.yK,q.BN,j.h,K.d],pipes:[u.Ov,u.JJ,u.rS],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),n})();function Ko(n,a){if(1&n&&(t.TgZ(0,"span",7),t._uU(1,"Open"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.numOfOpenChannels)}}function jo(n,a){if(1&n&&(t.TgZ(0,"span",7),t._uU(1,"Pending"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.numOfPendingChannels)}}function ts(n,a){if(1&n&&(t.TgZ(0,"span",7),t._uU(1,"Inactive"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.numOfInactiveChannels)}}let es=(()=>{class n{constructor(e,i,o){this.logger=e,this.store=i,this.router=o,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,this.selNode={},this.information={},this.peers=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"inactive",name:"Inactive"}],this.activeLink=0,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(e=>e instanceof x.Av)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.numOfOpenChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0,this.numOfPendingChannels=e.channelsStatus&&e.channelsStatus.pending&&e.channelsStatus.pending.channels?e.channelsStatus.pending.channels:0,this.numOfInactiveChannels=e.channelsStatus&&e.channelsStatus.inactive&&e.channelsStatus.inactive.channels?e.channelsStatus.inactive.channels:0,this.logger.info(e)}),this.store.select(C.LR).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,E.qR)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Ot}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channels-tables"]],decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"my-2","bordered-box"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return i.onOpenChannel()}),t._uU(3,"Open Channel"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-tab-group",4),t.NdJ("selectedIndexChange",function(s){return i.activeLink=s})("selectedTabChange",function(s){return i.onSelectedTabChange(s)}),t.TgZ(6,"mat-tab"),t.YNc(7,Ko,2,1,"ng-template",5),t.qZA(),t.TgZ(8,"mat-tab"),t.YNc(9,jo,2,1,"ng-template",5),t.qZA(),t.TgZ(10,"mat-tab"),t.YNc(11,ts,2,1,"ng-template",5),t.qZA()(),t.TgZ(12,"div",6),t._UZ(13,"router-outlet"),t.qZA()()()),2&e&&(t.xp6(5),t.Q6J("selectedIndex",i.activeLink))},directives:[m.xw,m.yH,m.Wh,N.lW,R.SP,R.uX,R.uD,Et.k,x.lC],styles:[""]}),n})();function ns(n,a){if(1&n&&(t.TgZ(0,"div",11)(1,"h4",12),t._uU(2,"Short Channel ID"),t.qZA(),t.TgZ(3,"span",13),t._uU(4),t.qZA()()),2&n){const e=t.oxw();t.xp6(4),t.Oqu(e.channel.shortChannelId)}}function is(n,a){if(1&n&&(t.TgZ(0,"div",11)(1,"h4",12),t._uU(2,"State"),t.qZA(),t.TgZ(3,"span",15),t._uU(4),t.ALo(5,"titlecase"),t.qZA()()),2&n){const e=t.oxw();t.xp6(4),t.Oqu(t.lcZ(5,1,e.channel.state))}}function as(n,a){if(1&n&&(t.TgZ(0,"div")(1,"div",9)(2,"div",11)(3,"h4",12),t._uU(4,"Local Balance (Sats)"),t.qZA(),t.TgZ(5,"span",15),t._uU(6),t.ALo(7,"number"),t.qZA()(),t.TgZ(8,"div",11)(9,"h4",12),t._uU(10,"Remote Balance (Sats)"),t.qZA(),t.TgZ(11,"span",15),t._uU(12),t.ALo(13,"number"),t.qZA()()(),t._UZ(14,"mat-divider",14),t.TgZ(15,"div",9)(16,"div",11)(17,"h4",12),t._uU(18,"Base Fee (mSats)"),t.qZA(),t.TgZ(19,"span",15),t._uU(20),t.ALo(21,"number"),t.qZA()(),t.TgZ(22,"div",11)(23,"h4",12),t._uU(24,"Fee Rate (mili mSats)"),t.qZA(),t.TgZ(25,"span",15),t._uU(26),t.ALo(27,"number"),t.qZA()()(),t._UZ(28,"mat-divider",14),t.qZA()),2&n){const e=t.oxw();t.xp6(6),t.Oqu(t.lcZ(7,6,e.channel.toLocal)),t.xp6(6),t.Oqu(t.lcZ(13,8,e.channel.toRemote)),t.xp6(2),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.lcZ(21,10,e.channel.feeBaseMsat)),t.xp6(6),t.Oqu(t.lcZ(27,12,e.channel.feeProportionalMillionths)),t.xp6(2),t.Q6J("inset",!0)}}function os(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Show Advanced"),t.qZA())}function ss(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Hide Advanced"),t.qZA())}function ls(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",21),t.NdJ("click",function(){return t.CHM(e),t.oxw().onShowAdvanced()}),t.YNc(1,os,2,0,"p",22),t.YNc(2,ss,2,0,"ng-template",null,23,t.W1O),t.qZA()}if(2&n){const e=t.MAs(3),i=t.oxw();t.xp6(1),t.Q6J("ngIf",!i.showAdvanced)("ngIfElse",e)}}function rs(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",24),t.NdJ("copied",function(o){return t.CHM(e),t.oxw().onCopyChanID(o)}),t._uU(1,"Copy Short Channel ID"),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("payload",e.channel.shortChannelId)}}function cs(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",25),t.NdJ("copied",function(o){return t.CHM(e),t.oxw().onCopyChanID(o)}),t._uU(1,"Copy Channel ID"),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("payload",e.channel.channelId)}}const us=function(n){return{"xs-scroll-y":n}},ps=function(n,a){return{"mt-2":n,"mt-1":a}};let mt=(()=>{class n{constructor(e,i,o,s,c){this.dialogRef=e,this.data=i,this.logger=o,this.commonService=s,this.snackBar=c,this.faReceipt=L.dLy,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.channel=this.data.channel,this.channelsType=this.data.channelsType||"",this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(e){this.snackBar.open("open"===this.channelsType?"Short channel ID "+e+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+e)}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(J.WI),t.Y36(O.mQ),t.Y36(P.v),t.Y36(wt.ux))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-information"]],decls:64,vars:28,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50",4,"ngIf"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3),t._UZ(4,"fa-icon",4),t.TgZ(5,"span",5),t._uU(6,"Channel Information"),t.qZA()(),t.TgZ(7,"button",6),t.NdJ("click",function(){return i.onClose()}),t._uU(8,"X"),t.qZA()(),t.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9),t.YNc(12,ns,5,1,"div",10),t.TgZ(13,"div",11)(14,"h4",12),t._uU(15,"Peer Alias"),t.qZA(),t.TgZ(16,"span",13),t._uU(17),t.qZA()(),t.YNc(18,is,6,3,"div",10),t.qZA(),t._UZ(19,"mat-divider",14),t.TgZ(20,"div",9)(21,"div",1)(22,"h4",12),t._uU(23,"Channel ID"),t.qZA(),t.TgZ(24,"span",13),t._uU(25),t.qZA()()(),t._UZ(26,"mat-divider",14),t.TgZ(27,"div",9)(28,"div",1)(29,"h4",12),t._uU(30,"Peer Public Key"),t.qZA(),t.TgZ(31,"span",13),t._uU(32),t.qZA()()(),t._UZ(33,"mat-divider",14),t.TgZ(34,"div",9)(35,"div",11)(36,"h4",12),t._uU(37,"Private"),t.qZA(),t.TgZ(38,"span",15),t._uU(39),t.qZA()(),t.TgZ(40,"div",11)(41,"h4",12),t._uU(42,"Funder"),t.qZA(),t.TgZ(43,"span",15),t._uU(44),t.qZA()()(),t._UZ(45,"mat-divider",14),t.TgZ(46,"div",9)(47,"div",11)(48,"h4",12),t._uU(49,"State"),t.qZA(),t.TgZ(50,"span",15),t._uU(51),t.ALo(52,"titlecase"),t.qZA()(),t.TgZ(53,"div",11)(54,"h4",12),t._uU(55,"Buried"),t.qZA(),t.TgZ(56,"span",15),t._uU(57),t.qZA()()(),t._UZ(58,"mat-divider",14),t.YNc(59,as,29,14,"div",16),t.TgZ(60,"div",17),t.YNc(61,ls,4,2,"button",18),t.YNc(62,rs,2,1,"button",19),t.YNc(63,cs,2,1,"button",20),t.qZA()()()()()),2&e&&(t.xp6(4),t.Q6J("icon",i.faReceipt),t.xp6(5),t.Q6J("ngClass",t.VKq(23,us,i.screenSize===i.screenSizeEnum.XS)),t.xp6(3),t.Q6J("ngIf","open"===i.channelsType),t.xp6(5),t.Oqu(i.channel.alias),t.xp6(1),t.Q6J("ngIf","open"!==i.channelsType),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(i.channel.channelId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(i.channel.nodeId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(i.channel.announceChannel?"No":"Yes"),t.xp6(5),t.Oqu(i.channel.isFunder?"Yes":"No"),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.lcZ(52,21,i.channel.state)),t.xp6(6),t.Oqu(i.channel.buried?"Yes":"No"),t.xp6(1),t.Q6J("inset",!0),t.xp6(1),t.Q6J("ngIf",i.showAdvanced&&"open"===i.channelsType),t.xp6(1),t.Q6J("ngClass",t.WLB(25,ps,!i.showAdvanced,i.showAdvanced)),t.xp6(1),t.Q6J("ngIf","open"===i.channelsType),t.xp6(1),t.Q6J("ngIf","open"===i.channelsType),t.xp6(1),t.Q6J("ngIf","open"!==i.channelsType))},directives:[m.xw,m.Wh,m.yH,b.dk,q.BN,N.lW,b.dn,u.mk,Z.oO,u.O5,K.d,j.h,It.y],pipes:[u.rS,u.JJ],styles:[""]}),n})();function ms(n,a){if(1&n&&(t.TgZ(0,"mat-option",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function ds(n,a){1&n&&t._UZ(0,"mat-progress-bar",39)}function hs(n,a){1&n&&t._UZ(0,"th",40)}function _s(n,a){if(1&n&&(t.TgZ(0,"span",44),t._UZ(1,"fa-icon",45),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function gs(n,a){if(1&n&&(t.TgZ(0,"span",46),t._UZ(1,"fa-icon",45),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}function fs(n,a){if(1&n&&(t.TgZ(0,"td",41),t.YNc(1,_s,2,1,"span",42),t.YNc(2,gs,2,1,"span",43),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf",!(null!=e&&e.announceChannel)),t.xp6(1),t.Q6J("ngIf",null==e?null:e.announceChannel)}}function Cs(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Short Channel ID"),t.qZA())}function xs(n,a){if(1&n&&(t.TgZ(0,"td",41),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.shortChannelId)}}function ys(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Channel ID"),t.qZA())}const dt=function(n){return{width:n}};function vs(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,dt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function Ts(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Alias"),t.qZA())}function Ls(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,dt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function bs(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Node ID"),t.qZA())}function Ss(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,dt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function Zs(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Funder"),t.qZA())}function As(n,a){if(1&n&&(t.TgZ(0,"td",41),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null!=e&&e.isFunder?"Yes":"No")}}function Es(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Buried"),t.qZA())}function ws(n,a){if(1&n&&(t.TgZ(0,"td",41),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null!=e&&e.buried?"Yes":"No")}}function Is(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Base Fee (mSats)"),t.qZA())}function Fs(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function qs(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Fee Rate (mili mSats)"),t.qZA())}function Ns(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function Os(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Local Balance (Sats)"),t.qZA())}function Ps(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Us(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Remote Balance (Sats)"),t.qZA())}function Rs(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function ks(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Fee/KW"),t.qZA())}function Ds(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeRatePerKw,"1.0-0")," ")}}function Js(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Balance Score"),t.qZA())}function Ms(n,a){if(1&n&&(t.TgZ(0,"td",41)(1,"div",52)(2,"mat-hint",53),t._uU(3),t.ALo(4,"number"),t.qZA()(),t._UZ(5,"mat-progress-bar",54),t.qZA()),2&n){const e=a.$implicit;t.xp6(3),t.Oqu(t.lcZ(4,2,(null==e?null:e.balancedness)||0)),t.xp6(2),t.s9C("value",null!=e&&e.toLocal&&(null==e?null:e.toLocal)>0?+(null==e?null:e.toLocal)/(+(null==e?null:e.toLocal)+ +(null==e?null:e.toRemote))*100:0)}}function Qs(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",55)(1,"div",56)(2,"mat-select",57),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",58),t.NdJ("click",function(){return t.CHM(e),t.oxw().onChannelUpdate("all")}),t._uU(5,"Update Fee Policy"),t.qZA(),t.TgZ(6,"mat-option",58),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(7,"Download CSV"),t.qZA()()()()}}function Ys(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",59)(1,"div",56)(2,"mat-select",60),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",58),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onChannelClick(c,o)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",58),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelUpdate(s)}),t._uU(7,"Update Fee Policy"),t.qZA(),t.TgZ(8,"mat-option",58),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelClose(s,!1)}),t._uU(9,"Close Channel"),t.qZA(),t.TgZ(10,"mat-option",58),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelClose(s,!0)}),t._uU(11,"Force Close"),t.qZA()()()()}}function Bs(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No peers connected. Add a peer in order to open a channel?."),t.qZA())}function Hs(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No channel available."),t.qZA())}function zs(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting channels..."),t.qZA())}function Vs(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function Gs(n,a){if(1&n&&(t.TgZ(0,"td",61),t.YNc(1,Bs,2,0,"p",62),t.YNc(2,Hs,2,0,"p",62),t.YNc(3,zs,2,0,"p",62),t.YNc(4,Vs,2,1,"p",62),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Ws=function(n){return{"display-none":n}};function $s(n,a){if(1&n&&t._UZ(0,"tr",63),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Ws,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Xs(n,a){1&n&&t._UZ(0,"tr",64)}function Ks(n,a){1&n&&t._UZ(0,"tr",65)}const js=function(){return["all"]},tl=function(n){return{"error-border":n}},el=function(){return["no_peer"]};let nl=(()=>{class n{constructor(e,i,o,s,c,h){var g,v,B,T,F,gt;this.logger=e,this.store=i,this.rtlEffects=o,this.commonService=s,this.router=c,this.camelCaseWithSpaces=h,this.faEye=L.Mdf,this.faEyeSlash=L.Aq,this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:l.IV,sortBy:"alias",sortOrder:l.Pi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new r.by([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.vn,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize(),this.selFilter=(null===(B=null===(v=null===(g=this.router.getCurrentNavigation())||void 0===g?void 0:g.extras)||void 0===v?void 0:v.state)||void 0===B?void 0:B.filter)?null===(gt=null===(F=null===(T=this.router.getCurrentNavigation())||void 0===T?void 0:T.extras)||void 0===F?void 0:F.state)||void 0===gt?void 0:gt.filter:""}ngOnInit(){this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=e.activeChannels,this.activeChannels.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onChannelUpdate(e){"all"!==e&&"NORMAL"!==e.state||(this.store.dispatch((0,E.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"all"===e?"Update fee policy for all channels":"Update fee policy for Channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:"number",inputValue:e&&void 0!==e.feeBaseMsat?e.feeBaseMsat:1e3,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:"number",inputValue:e&&void 0!==e.feeProportionalMillionths?e.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[5])).subscribe(s=>{if(s){const c=s[0].inputValue,h=s[1].inputValue;let g=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let v="";"all"===e?(this.activeChannels.forEach(B=>{v=v+","+B.nodeId}),v=v.substring(1),g={baseFeeMsat:c,feeRate:h,nodeIds:v}):g={baseFeeMsat:c,feeRate:h,nodeId:e.nodeId}}else{let v="";"all"===e?(this.activeChannels.forEach(B=>{v=v+","+B.channelId}),v=v.substring(1),g={baseFeeMsat:c,feeRate:h,channelIds:v}):g={baseFeeMsat:c,feeRate:h,channelId:e.channelId}}this.store.dispatch((0,U.pW)({payload:g}))}}),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e,i){this.store.dispatch((0,E.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[6])).subscribe(h=>{h&&this.store.dispatch((0,U.BL)({payload:{channelId:e.channelId,force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,E.qR)({payload:{data:{channel:e,channelsType:"open",component:mt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(e).toLowerCase();break;case"announceChannel":o=(null==e?void 0:e.announceChannel)?"public":"private";break;default:o=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return o.includes(i)}}loadChannelsTable(){var e;this.channels=new r.by([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,null===(e=this.channels.sort)||void 0===e||e.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"ActiveChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(nt.V),t.Y36(P.v),t.Y36(x.F0),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Channels")}])],decls:61,vars:16,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","shortChannelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isFunder"],["matColumnDef","buried"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","feeRatePerKw"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"div",2),t.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),t.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),t.YNc(6,ms,2,2,"mat-option",6),t.qZA()(),t.TgZ(7,"mat-form-field",4)(8,"input",7),t.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),t.qZA()()()(),t.TgZ(9,"div",8),t.YNc(10,ds,1,0,"mat-progress-bar",9),t.TgZ(11,"table",10,11),t.ynx(13,12),t.YNc(14,hs,1,0,"th",13),t.YNc(15,fs,3,2,"td",14),t.BQk(),t.ynx(16,15),t.YNc(17,Cs,2,0,"th",16),t.YNc(18,xs,2,1,"td",14),t.BQk(),t.ynx(19,17),t.YNc(20,ys,2,0,"th",16),t.YNc(21,vs,4,4,"td",14),t.BQk(),t.ynx(22,18),t.YNc(23,Ts,2,0,"th",16),t.YNc(24,Ls,4,4,"td",14),t.BQk(),t.ynx(25,19),t.YNc(26,bs,2,0,"th",16),t.YNc(27,Ss,4,4,"td",14),t.BQk(),t.ynx(28,20),t.YNc(29,Zs,2,0,"th",16),t.YNc(30,As,2,1,"td",14),t.BQk(),t.ynx(31,21),t.YNc(32,Es,2,0,"th",16),t.YNc(33,ws,2,1,"td",14),t.BQk(),t.ynx(34,22),t.YNc(35,Is,2,0,"th",23),t.YNc(36,Fs,4,4,"td",14),t.BQk(),t.ynx(37,24),t.YNc(38,qs,2,0,"th",23),t.YNc(39,Ns,4,4,"td",14),t.BQk(),t.ynx(40,25),t.YNc(41,Os,2,0,"th",23),t.YNc(42,Ps,4,4,"td",14),t.BQk(),t.ynx(43,26),t.YNc(44,Us,2,0,"th",23),t.YNc(45,Rs,4,4,"td",14),t.BQk(),t.ynx(46,27),t.YNc(47,ks,2,0,"th",23),t.YNc(48,Ds,4,4,"td",14),t.BQk(),t.ynx(49,28),t.YNc(50,Js,2,0,"th",16),t.YNc(51,Ms,6,4,"td",14),t.BQk(),t.ynx(52,29),t.YNc(53,Qs,8,0,"th",30),t.YNc(54,Ys,12,0,"td",31),t.BQk(),t.ynx(55,32),t.YNc(56,Gs,5,4,"td",33),t.BQk(),t.YNc(57,$s,1,3,"tr",34),t.YNc(58,Xs,1,0,"tr",35),t.YNc(59,Ks,1,0,"tr",36),t.qZA()(),t._UZ(60,"mat-paginator",37),t.qZA()),2&e&&(t.xp6(5),t.Q6J("ngModel",i.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(12,js).concat(i.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.channels)("ngClass",t.VKq(13,tl,""!==i.errorMessage)),t.xp6(46),t.Q6J("matFooterRowDef",t.DdM(15,el)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[m.xw,m.Wh,m.yH,y.KE,k.gD,d.JJ,d.On,u.sg,z.ey,Y.Nt,d.Fj,H.$V,u.O5,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,$.gM,r.Dz,r.ev,q.BN,u.PC,Z.Zl,y.bx,k.$L,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[u.JJ],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}),n})();function il(n,a){if(1&n&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function al(n,a){1&n&&t._UZ(0,"mat-progress-bar",36)}function ol(n,a){1&n&&t._UZ(0,"th",37)}function sl(n,a){if(1&n&&(t.TgZ(0,"span",41),t._UZ(1,"fa-icon",42),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function ll(n,a){if(1&n&&(t.TgZ(0,"span",43),t._UZ(1,"fa-icon",42),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}function rl(n,a){if(1&n&&(t.TgZ(0,"td",38),t.YNc(1,sl,2,1,"span",39),t.YNc(2,ll,2,1,"span",40),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf",!(null!=e&&e.announceChannel)),t.xp6(1),t.Q6J("ngIf",null==e?null:e.announceChannel)}}function cl(n,a){1&n&&(t.TgZ(0,"th",44),t._uU(1,"State"),t.qZA())}function ul(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.lcZ(2,1,null==e?null:e.state))}}function pl(n,a){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Channel ID"),t.qZA())}const Pt=function(n){return{width:n}};function ml(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"div",45)(2,"span",46),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Pt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function dl(n,a){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Alias"),t.qZA())}function hl(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.alias)}}function _l(n,a){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Node ID"),t.qZA())}function gl(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"div",45)(2,"span",46),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Pt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function fl(n,a){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Funder"),t.qZA())}function Cl(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null!=e&&e.isFunder?"Yes":"No")}}function xl(n,a){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Buried"),t.qZA())}function yl(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null!=e&&e.buried?"Yes":"No")}}function vl(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Local Balance (Sats)"),t.qZA())}function Tl(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"span",48),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Ll(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Remote Balance (Sats)"),t.qZA())}function bl(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"span",48),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Sl(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Fee/KW"),t.qZA())}function Zl(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"span",48),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeRatePerKw,"1.0-0")," ")}}function Al(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",49)(1,"div",50)(2,"mat-select",51),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",52),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function El(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",53)(1,"button",54),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onChannelClick(c,o)}),t._uU(2,"View Info"),t.qZA()()}}function wl(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No pending channel available."),t.qZA())}function Il(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting pending channels..."),t.qZA())}function Fl(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function ql(n,a){if(1&n&&(t.TgZ(0,"td",55),t.YNc(1,wl,2,0,"p",56),t.YNc(2,Il,2,0,"p",56),t.YNc(3,Fl,2,1,"p",56),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Nl=function(n){return{"display-none":n}};function Ol(n,a){if(1&n&&t._UZ(0,"tr",57),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Nl,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Pl(n,a){1&n&&t._UZ(0,"tr",58)}function Ul(n,a){1&n&&t._UZ(0,"tr",59)}const Rl=function(){return["all"]},kl=function(n){return{"error-border":n}},Dl=function(){return["no_channel"]};let Jl=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.store=i,this.commonService=o,this.camelCaseWithSpaces=s,this.faEye=L.Mdf,this.faEyeSlash=L.Aq,this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:l.IV,sortBy:"alias",sortOrder:l.Pi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new r.by([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.vn,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=e.pendingChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(e,i){this.store.dispatch((0,E.qR)({payload:{data:{channel:e,channelsType:"pending",component:mt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(e).toLowerCase();break;case"announceChannel":o=(null==e?void 0:e.announceChannel)?"public":"private";break;default:o=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return o.includes(i)}}loadChannelsTable(){var e;this.channels=new r.by([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,null===(e=this.channels.sort)||void 0===e||e.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"PendingChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(P.v),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Channels")}])],decls:52,vars:16,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isFunder"],["matColumnDef","buried"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","feeRatePerKw"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"div",2),t.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),t.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),t.YNc(6,il,2,2,"mat-option",6),t.qZA()(),t.TgZ(7,"mat-form-field",4)(8,"input",7),t.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),t.qZA()()()(),t.TgZ(9,"div",8),t.YNc(10,al,1,0,"mat-progress-bar",9),t.TgZ(11,"table",10,11),t.ynx(13,12),t.YNc(14,ol,1,0,"th",13),t.YNc(15,rl,3,2,"td",14),t.BQk(),t.ynx(16,15),t.YNc(17,cl,2,0,"th",16),t.YNc(18,ul,3,3,"td",14),t.BQk(),t.ynx(19,17),t.YNc(20,pl,2,0,"th",16),t.YNc(21,ml,4,4,"td",14),t.BQk(),t.ynx(22,18),t.YNc(23,dl,2,0,"th",16),t.YNc(24,hl,2,1,"td",14),t.BQk(),t.ynx(25,19),t.YNc(26,_l,2,0,"th",16),t.YNc(27,gl,4,4,"td",14),t.BQk(),t.ynx(28,20),t.YNc(29,fl,2,0,"th",16),t.YNc(30,Cl,2,1,"td",14),t.BQk(),t.ynx(31,21),t.YNc(32,xl,2,0,"th",16),t.YNc(33,yl,2,1,"td",14),t.BQk(),t.ynx(34,22),t.YNc(35,vl,2,0,"th",23),t.YNc(36,Tl,4,4,"td",14),t.BQk(),t.ynx(37,24),t.YNc(38,Ll,2,0,"th",23),t.YNc(39,bl,4,4,"td",14),t.BQk(),t.ynx(40,25),t.YNc(41,Sl,2,0,"th",23),t.YNc(42,Zl,4,4,"td",14),t.BQk(),t.ynx(43,26),t.YNc(44,Al,6,0,"th",27),t.YNc(45,El,3,0,"td",28),t.BQk(),t.ynx(46,29),t.YNc(47,ql,4,3,"td",30),t.BQk(),t.YNc(48,Ol,1,3,"tr",31),t.YNc(49,Pl,1,0,"tr",32),t.YNc(50,Ul,1,0,"tr",33),t.qZA()(),t._UZ(51,"mat-paginator",34),t.qZA()),2&e&&(t.xp6(5),t.Q6J("ngModel",i.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(12,Rl).concat(i.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.channels)("ngClass",t.VKq(13,kl,""!==i.errorMessage)),t.xp6(37),t.Q6J("matFooterRowDef",t.DdM(15,Dl)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[m.xw,m.Wh,m.yH,y.KE,k.gD,d.JJ,d.On,u.sg,z.ey,Y.Nt,d.Fj,H.$V,u.O5,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,$.gM,r.Dz,r.ev,q.BN,u.PC,Z.Zl,k.$L,N.lW,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[u.rS,u.JJ],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),n})();var ht=f(5615);const Ml=["peersForm"],Ql=["stepper"];function Yl(n,a){if(1&n&&t._uU(0),2&n){const e=t.oxw();t.Oqu(e.peerFormLabel)}}function Bl(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Address is required."),t.qZA())}function Hl(n,a){if(1&n&&(t.TgZ(0,"div",32),t._UZ(1,"fa-icon",33),t.TgZ(2,"span"),t._uU(3),t.qZA()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(2),t.Oqu(e.peerConnectionError)}}function zl(n,a){if(1&n&&t._uU(0),2&n){const e=t.oxw();t.Oqu(e.channelFormLabel)}}function Vl(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function Gl(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount must be a positive number."),t.qZA())}function Wl(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("Amount must be less than or equal to ",e.totalBalance,".")}}function $l(n,a){if(1&n&&(t.TgZ(0,"div",32),t._UZ(1,"fa-icon",33),t.TgZ(2,"span"),t._uU(3),t.qZA()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(2),t.Oqu(e.channelConnectionError)}}let Xl=(()=>{class n{constructor(e,i,o,s,c,h){this.dialogRef=e,this.data=i,this.store=o,this.formBuilder=s,this.actions=c,this.logger=h,this.faExclamationTriangle=L.eHv,this.selNode={},this.peerAddress="",this.totalBalance=0,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.unSubs=[new p.x,new p.x]}ngOnInit(){var e;this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.nodeId&&this.data.message.peer.address?this.data.message.peer.nodeId+"@"+this.data.message.peer.address:this.data.message.peer&&this.data.message.peer.nodeId&&!this.data.message.peer.address?this.data.message.peer.nodeId:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[d.kI.required]],peerAddress:[this.peerAddress,[d.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[d.kI.required,d.kI.min(1),d.kI.max(this.totalBalance)]],isPrivate:[!!(null===(e=this.selNode)||void 0===e?void 0:e.unannouncedChannels)],feeRate:[null],hiddenAmount:["",[d.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(C.LR).pipe((0,_.R)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!(null==i?void 0:i.unannouncedChannels))}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(i=>i.type===l.lr.NEWLY_ADDED_PEER_ECL||i.type===l.lr.FETCH_CHANNELS_ECL||i.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(i=>{i.type===l.lr.NEWLY_ADDED_PEER_ECL&&(this.logger.info(i.payload),this.flgEditable=!1,this.newlyAddedPeer=i.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),i.type===l.lr.FETCH_CHANNELS_ECL&&this.dialogRef.close(),i.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&i.payload.status===l.Bn.ERROR&&("SaveNewPeer"===i.payload.action?this.peerConnectionError=i.payload.message:"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,U.El)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){var e;if(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0)return!0;this.channelConnectionError="",this.store.dispatch((0,U.YX)({payload:{nodeId:null===(e=this.newlyAddedPeer)||void 0===e?void 0:e.nodeId,amount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,feeRate:this.channelFormGroup.controls.feeRate.value}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(e){var i,o,s,c;switch(e.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(i=this.newlyAddedPeer)||void 0===i?void 0:i.alias)?this.newlyAddedPeer.alias:null===(o=this.newlyAddedPeer)||void 0===o?void 0:o.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(s=this.newlyAddedPeer)||void 0===s?void 0:s.alias)?this.newlyAddedPeer.alias:null===(c=this.newlyAddedPeer)||void 0===c?void 0:c.nodeId):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}e.selectedIndex{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(J.so),t.Y36(J.WI),t.Y36(w.yh),t.Y36(d.qu),t.Y36(X.eX),t.Y36(O.mQ))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(e,i){if(1&e&&(t.Gf(Ml,5),t.Gf(Ql,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first),t.iGM(o=t.CRH())&&(i.stepper=o.first)}},decls:48,vars:20,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Lightning Address (pubkey OR pubkey@ip:port)","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","placeholder","Amount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","30"],["matInput","","formControlName","feeRate","placeholder","Fee (Sats/vByte)","type","number","name","feeRate","tabindex","7",3,"step","min"],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Connect to a new peer"),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return i.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),t.NdJ("selectionChange",function(s){return i.stepSelectionChanged(s)}),t.TgZ(12,"mat-step",10)(13,"form",11),t.YNc(14,Yl,1,1,"ng-template",12),t.TgZ(15,"mat-form-field",1),t._UZ(16,"input",13),t.YNc(17,Bl,2,0,"mat-error",14),t.qZA(),t.YNc(18,Hl,4,2,"div",15),t.TgZ(19,"div",16)(20,"button",17),t.NdJ("click",function(){return i.onConnectPeer()}),t._uU(21),t.qZA()()()(),t.TgZ(22,"mat-step",10)(23,"form",18),t.YNc(24,zl,1,1,"ng-template",19),t.TgZ(25,"div",20)(26,"div",21)(27,"mat-form-field",22),t._UZ(28,"input",23),t.TgZ(29,"mat-hint"),t._uU(30),t.qZA(),t.TgZ(31,"span",24),t._uU(32," Sats "),t.qZA(),t.YNc(33,Vl,2,0,"mat-error",14),t.YNc(34,Gl,2,0,"mat-error",14),t.YNc(35,Wl,2,1,"mat-error",14),t.qZA(),t.TgZ(36,"mat-form-field",25),t._UZ(37,"input",26),t.qZA(),t.TgZ(38,"div",27)(39,"mat-slide-toggle",28),t._uU(40,"Private Channel"),t.qZA()()()(),t.YNc(41,$l,4,2,"div",15),t.TgZ(42,"div",16)(43,"button",29),t.NdJ("click",function(){return i.onOpenChannel()}),t._uU(44),t.qZA()()()()(),t.TgZ(45,"div",30)(46,"button",31),t.NdJ("click",function(){return i.onClose()}),t._uU(47),t.qZA()()()()()()),2&e&&(t.xp6(10),t.Q6J("linear",!0),t.xp6(2),t.Q6J("stepControl",i.peerFormGroup)("editable",i.flgEditable),t.xp6(1),t.Q6J("formGroup",i.peerFormGroup),t.xp6(4),t.Q6J("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),t.xp6(1),t.Q6J("ngIf",""!==i.peerConnectionError),t.xp6(3),t.Oqu(""!==i.peerConnectionError?"Retry":"Add Peer"),t.xp6(1),t.Q6J("stepControl",i.channelFormGroup)("editable",i.flgEditable),t.xp6(1),t.Q6J("formGroup",i.channelFormGroup),t.xp6(5),t.Q6J("step",1e3),t.xp6(2),t.hij("Remaining Bal: ",i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0),""),t.xp6(3),t.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),t.xp6(1),t.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),t.xp6(2),t.Q6J("step",1)("min",0),t.xp6(4),t.Q6J("ngIf",""!==i.channelConnectionError),t.xp6(3),t.Oqu(""!==i.channelConnectionError?"Retry":"Open Channel"),t.xp6(3),t.Oqu(null!=i.newlyAddedPeer&&i.newlyAddedPeer.nodeId?"Do It Later":"Close"))},directives:[m.xw,m.yH,b.dk,m.Wh,N.lW,b.dn,ht.Vq,ht.C0,d._Y,d.JL,d.sg,ht.VY,y.KE,Y.Nt,d.Fj,j.h,d.JJ,d.u,d.Q7,u.O5,y.TO,q.BN,d.wV,y.bx,y.R9,d.qQ,tt.q,Nt.Rr],styles:[""]}),n})();function Kl(n,a){if(1&n&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function jl(n,a){1&n&&t._UZ(0,"mat-progress-bar",36)}function tr(n,a){1&n&&t._UZ(0,"th",37)}const Ut=function(n){return{"mr-0":n}};function er(n,a){if(1&n&&t._UZ(0,"span",41),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Ut,e.screenSize===e.screenSizeEnum.XS))}}function nr(n,a){if(1&n&&t._UZ(0,"span",42),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Ut,e.screenSize===e.screenSizeEnum.XS))}}function ir(n,a){if(1&n&&(t.TgZ(0,"td",38),t.YNc(1,er,1,3,"span",39),t.YNc(2,nr,1,3,"span",40),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf","CONNECTED"===e.state),t.xp6(1),t.Q6J("ngIf","DISCONNECTED"===e.state)}}function ar(n,a){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Alias"),t.qZA())}const Rt=function(n){return{width:n}};function or(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"div",44)(2,"span",45),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Rt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function sr(n,a){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Node ID"),t.qZA())}function lr(n,a){if(1&n&&(t.TgZ(0,"td",38)(1,"div",44)(2,"span",45),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Rt,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function rr(n,a){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Network Address"),t.qZA())}function cr(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",null==e?null:e.address," ")}}function ur(n,a){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Channels"),t.qZA())}function pr(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.channels)}}function mr(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",46)(1,"div",47)(2,"mat-select",48),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",49),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function dr(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-option",49),t.NdJ("click",function(){t.CHM(e);const o=t.oxw().$implicit;return t.oxw().onPeerDetach(o)}),t._uU(1,"Disconnect"),t.qZA()}}function hr(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-option",49),t.NdJ("click",function(){t.CHM(e);const o=t.oxw().$implicit;return t.oxw().onConnectPeer(o)}),t._uU(1,"Reconnect"),t.qZA()}}function _r(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",50)(1,"div",47)(2,"mat-select",48),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",49),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onPeerClick(c,o)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",49),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onOpenChannel(s)}),t._uU(7,"Open Channel"),t.qZA(),t.YNc(8,dr,2,0,"mat-option",51),t.YNc(9,hr,2,0,"mat-option",51),t.qZA()()()}if(2&n){const e=a.$implicit;t.xp6(8),t.Q6J("ngIf","CONNECTED"===e.state),t.xp6(1),t.Q6J("ngIf","DISCONNECTED"===e.state)}}function gr(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No connected peer."),t.qZA())}function fr(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting peers..."),t.qZA())}function Cr(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function xr(n,a){if(1&n&&(t.TgZ(0,"td",52),t.YNc(1,gr,2,0,"p",53),t.YNc(2,fr,2,0,"p",53),t.YNc(3,Cr,2,1,"p",53),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const yr=function(n){return{"display-none":n}};function vr(n,a){if(1&n&&t._UZ(0,"tr",54),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,yr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function Tr(n,a){1&n&&t._UZ(0,"tr",55)}function Lr(n,a){1&n&&t._UZ(0,"tr",56)}const br=function(){return["all"]},Sr=function(n){return{"error-border":n}},Zr=function(){return["no_peer"]};let Ar=(()=>{class n{constructor(e,i,o,s,c,h){this.logger=e,this.store=i,this.rtlEffects=o,this.actions=s,this.commonService=c,this.camelCaseWithSpaces=h,this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.IV,sortBy:"alias",sortOrder:l.Pi.DESCENDING},this.faUsers=L.FVb,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new r.by([]),this.information={},this.availableBalance=0,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.yD).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.nF).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=e.peers,this.loadPeersTable(this.peersData),this.logger.info(e)}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,_.R)(this.unSubs[4]),(0,Q.h)(e=>e.type===l.lr.SET_PEERS_ECL)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,i){const o=[[{key:"nodeId",value:e.nodeId,title:"Public Key",width:100}],[{key:"address",value:e.address,title:"Address",width:50},{key:"alias",value:e.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(e.state||""),title:"State",width:50},{key:"channels",value:e.channels,title:"Channels",width:50}]];this.store.dispatch((0,E.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Peer Information",showQRName:"Public Key",showQRField:e.nodeId,message:o}}}))}onConnectPeer(e){this.store.dispatch((0,E.qR)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:Xl}}}))}onOpenChannel(e){this.store.dispatch((0,E.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Ot}}}))}onPeerDetach(e){this.store.dispatch(e&&e.channels&&e.channels>0?(0,E.qR)({payload:{data:{type:l.n_.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,E.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,U.GD)({payload:{nodeId:e.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,i)=>{var o;let s="";switch(this.selFilterBy){case"all":s=JSON.stringify(e).toLowerCase();break;case"state":s=(null===(o=null==e?void 0:e.state)||void 0===o?void 0:o.toLowerCase())||"";break;default:s=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===s.indexOf(i):s.includes(i)}}loadPeersTable(e){var i;this.peers=new r.by(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.peers.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(nt.V),t.Y36(X.eX),t.Y36(P.v),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Peers")}])],decls:45,vars:17,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["peersForm","ngForm"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","nodeId"],["matColumnDef","address"],["matColumnDef","channels"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"form",1,2)(3,"button",3),t.NdJ("click",function(){return i.onConnectPeer({})}),t._uU(4,"Add Peer"),t.qZA()(),t.TgZ(5,"div",4)(6,"div",5)(7,"div",6),t._UZ(8,"fa-icon",7),t.TgZ(9,"span",8),t._uU(10,"Peers"),t.qZA()(),t.TgZ(11,"div",9)(12,"mat-form-field",10)(13,"mat-select",11),t.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),t.YNc(14,Kl,2,2,"mat-option",12),t.qZA()(),t.TgZ(15,"mat-form-field",10)(16,"input",13),t.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),t.qZA()()()(),t.TgZ(17,"div",14),t.YNc(18,jl,1,0,"mat-progress-bar",15),t.TgZ(19,"table",16,17),t.ynx(21,18),t.YNc(22,tr,1,0,"th",19),t.YNc(23,ir,3,2,"td",20),t.BQk(),t.ynx(24,21),t.YNc(25,ar,2,0,"th",22),t.YNc(26,or,4,4,"td",20),t.BQk(),t.ynx(27,23),t.YNc(28,sr,2,0,"th",22),t.YNc(29,lr,4,4,"td",20),t.BQk(),t.ynx(30,24),t.YNc(31,rr,2,0,"th",22),t.YNc(32,cr,2,1,"td",20),t.BQk(),t.ynx(33,25),t.YNc(34,ur,2,0,"th",22),t.YNc(35,pr,2,1,"td",20),t.BQk(),t.ynx(36,26),t.YNc(37,mr,6,0,"th",27),t.YNc(38,_r,10,2,"td",28),t.BQk(),t.ynx(39,29),t.YNc(40,xr,4,3,"td",30),t.BQk(),t.YNc(41,vr,1,3,"tr",31),t.YNc(42,Tr,1,0,"tr",32),t.YNc(43,Lr,1,0,"tr",33),t.qZA()(),t._UZ(44,"mat-paginator",34),t.qZA()()),2&e&&(t.xp6(8),t.Q6J("icon",i.faUsers),t.xp6(5),t.Q6J("ngModel",i.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(13,br).concat(i.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.peers)("ngClass",t.VKq(14,Sr,""!==i.errorMessage)),t.xp6(22),t.Q6J("matFooterRowDef",t.DdM(16,Zr)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[m.xw,m.yH,m.Wh,d._Y,d.JL,d.F,N.lW,q.BN,y.KE,k.gD,d.JJ,d.On,u.sg,z.ey,Y.Nt,d.Fj,H.$V,u.O5,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,$.gM,r.Dz,r.ev,u.PC,Z.Zl,k.$L,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),n})();const Er=["queryRoutesForm"];function wr(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Destination Node ID is required."),t.qZA())}function Ir(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function Fr(n,a){1&n&&t._UZ(0,"mat-progress-bar",21)}function qr(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1," Alias"),t.qZA())}const kt=function(n){return{"max-width":n}};function Nr(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41)(2,"span",42),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,kt,i.screenSize===i.screenSizeEnum.XS?"10rem":"30rem")),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function Or(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1," ID"),t.qZA())}function Pr(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41)(2,"span",42),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,kt,i.screenSize===i.screenSizeEnum.XS?"10rem":"30rem")),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function Ur(n,a){1&n&&(t.TgZ(0,"th",39)(1,"div",43),t._uU(2,"Actions"),t.qZA()())}function Rr(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",44)(1,"button",45),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onHopClick(s)}),t._uU(2,"View Info"),t.qZA()()}}function kr(n,a){1&n&&t._UZ(0,"tr",46)}function Dr(n,a){1&n&&t._UZ(0,"tr",47)}const Jr=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}};function Mr(n,a){if(1&n&&(t.TgZ(0,"div",22)(1,"mat-expansion-panel",23)(2,"mat-expansion-panel-header")(3,"mat-panel-title",24)(4,"span",25),t._uU(5),t.qZA(),t.TgZ(6,"span",26),t._uU(7),t.ALo(8,"number"),t.qZA()()(),t.TgZ(9,"mat-panel-description",27)(10,"div",28)(11,"table",29,30),t.ynx(13,31),t.YNc(14,qr,2,0,"th",32),t.YNc(15,Nr,4,4,"td",33),t.BQk(),t.ynx(16,34),t.YNc(17,Or,2,0,"th",32),t.YNc(18,Pr,4,4,"td",33),t.BQk(),t.ynx(19,35),t.YNc(20,Ur,3,0,"th",32),t.YNc(21,Rr,3,0,"td",36),t.BQk(),t.YNc(22,kr,1,0,"tr",37),t.YNc(23,Dr,1,0,"tr",38),t.qZA()()()()()),2&n){const e=a.$implicit,i=a.index,o=t.oxw();t.xp6(5),t.hij("Route ",i+1,""),t.xp6(2),t.Oqu(t.lcZ(8,6,e.amount/1e3)),t.xp6(4),t.Q6J("dataSource",o.qrHops[i])("ngClass",t.VKq(8,Jr,"error"===o.flgLoading[0])),t.xp6(11),t.Q6J("matHeaderRowDef",o.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",o.displayedColumns)}}let Qr=(()=>{class n{constructor(e,i,o){this.store=e,this.eclEffects=i,this.commonService=o,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=L.FpQ,this.faExclamationTriangle=L.eHv,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new r.by([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,o)=>{this.qrHops[o]=new r.by([...i.nodeIds])})):(this.flgLoading[0]="error",this.allQRoutes=[],this.qrHops=[])})}onQueryRoutes(){if(!this.nodeId||!this.amount)return!0;this.qrHops=[],this.flgLoading[0]=!0,this.store.dispatch((0,U.WO)({payload:{nodeId:this.nodeId,amount:1e3*this.amount}}))}resetData(){this.allQRoutes=[],this.nodeId="",this.amount=0,this.flgLoading[0]=!1,this.qrHops=[],this.form.resetForm()}onHopClick(e){this.store.dispatch((0,E.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:e.alias,title:"Alias",width:100,type:l.Gi.STRING}],[{key:"nodeId",value:e.nodeId,title:"Node ID",width:100,type:l.Gi.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(ct.o),t.Y36(P.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(e,i){if(1&e&&t.Gf(Er,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:28,vars:10,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["queryRoutesForm","ngForm"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","69","fxLayoutAlign","start end"],["matInput","","placeholder","Destination Node ID","name","nodeId","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxFlex","29","fxLayoutAlign","start end"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","type","number","required","",3,"ngModel","step","min","ngModelChange"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["mode","indeterminate"],["fxFlex","100"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","row","fxLayoutAlign","space-between start"],["fxFlex","50","fxLayoutAlign","start start"],["fxFlex","50","fxLayoutAlign","end end"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"table-container","mb-2",3,"perfectScrollbar"],["mat-table","",3,"dataSource","ngClass"],["table[i]",""],["matColumnDef","alias"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeId"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(e,i){if(1&e){const o=t.EpF();t.TgZ(0,"div",0)(1,"form",1,2),t.NdJ("ngSubmit",function(){return t.CHM(o),t.MAs(2).form.valid&&i.onQueryRoutes()}),t.TgZ(3,"div",3),t._UZ(4,"fa-icon",4),t.TgZ(5,"span"),t._uU(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.qZA()(),t.TgZ(7,"mat-form-field",5)(8,"input",6,7),t.NdJ("ngModelChange",function(c){return i.nodeId=c}),t.qZA(),t.YNc(10,wr,2,0,"mat-error",8),t.qZA(),t.TgZ(11,"mat-form-field",9)(12,"input",10),t.NdJ("ngModelChange",function(c){return i.amount=c}),t.qZA(),t.YNc(13,Ir,2,0,"mat-error",8),t.qZA(),t.TgZ(14,"div",11)(15,"button",12),t.NdJ("click",function(){return i.resetData()}),t._uU(16,"Clear"),t.qZA(),t.TgZ(17,"button",13),t._uU(18,"Query Route"),t.qZA()()(),t.TgZ(19,"div",14)(20,"div",15),t._UZ(21,"fa-icon",16),t.TgZ(22,"span",17),t._uU(23,"Transaction Route"),t.qZA()()(),t.YNc(24,Fr,1,0,"mat-progress-bar",18),t.TgZ(25,"div",19)(26,"div",0),t.YNc(27,Mr,24,10,"div",20),t.qZA()()()}2&e&&(t.xp6(4),t.Q6J("icon",i.faExclamationTriangle),t.xp6(4),t.Q6J("ngModel",i.nodeId),t.xp6(2),t.Q6J("ngIf",!i.nodeId),t.xp6(2),t.Q6J("ngModel",i.amount)("step",1e3)("min",0),t.xp6(1),t.Q6J("ngIf",!i.amount),t.xp6(8),t.Q6J("icon",i.faRoute),t.xp6(3),t.Q6J("ngIf",!0===i.flgLoading[0]),t.xp6(3),t.Q6J("ngForOf",i.allQRoutes))},directives:[m.xw,m.yH,d._Y,d.JL,d.F,m.Wh,q.BN,y.KE,Y.Nt,d.Fj,d.Q7,d.JJ,d.On,u.O5,y.TO,d.wV,d.qQ,tt.q,N.lW,M.pW,u.sg,V.ib,V.yz,V.yK,V.u4,H.$V,r.BZ,u.mk,Z.oO,r.w1,r.fO,r.ge,r.Dz,r.ev,u.PC,Z.Zl,r.as,r.XQ,r.nj,r.Gk],pipes:[u.JJ],styles:[""]}),n})();function Yr(n,a){if(1&n&&(t.TgZ(0,"mat-option",37),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Br(n,a){1&n&&t._UZ(0,"mat-progress-bar",38)}function Hr(n,a){1&n&&t._UZ(0,"th",39)}function zr(n,a){if(1&n&&(t.TgZ(0,"span",43),t._UZ(1,"fa-icon",44),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function Vr(n,a){if(1&n&&(t.TgZ(0,"span",45),t._UZ(1,"fa-icon",44),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}function Gr(n,a){if(1&n&&(t.TgZ(0,"td",40),t.YNc(1,zr,2,1,"span",41),t.YNc(2,Vr,2,1,"span",42),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf",!e.announceChannel),t.xp6(1),t.Q6J("ngIf",e.announceChannel)}}function Wr(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"State"),t.qZA())}function $r(n,a){if(1&n&&(t.TgZ(0,"td",40),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.lcZ(2,1,null==e?null:e.state))}}function Xr(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Short Channel ID"),t.qZA())}function Kr(n,a){if(1&n&&(t.TgZ(0,"td",40),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.shortChannelId)}}function jr(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Channel ID"),t.qZA())}const _t=function(n){return{width:n}};function tc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"div",47)(2,"span",48),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,_t,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function ec(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Alias"),t.qZA())}function nc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"div",47)(2,"span",48),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,_t,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(e.alias)}}function ic(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Node ID"),t.qZA())}function ac(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"div",47)(2,"span",48),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,_t,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function oc(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Funder"),t.qZA())}function sc(n,a){if(1&n&&(t.TgZ(0,"td",40),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null!=e&&e.isFunder?"Yes":"No")}}function lc(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Buried"),t.qZA())}function rc(n,a){if(1&n&&(t.TgZ(0,"td",40),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null!=e&&e.buried?"Yes":"No")}}function cc(n,a){1&n&&(t.TgZ(0,"th",49),t._uU(1,"Local Balance (Sats)"),t.qZA())}function uc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",50),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function pc(n,a){1&n&&(t.TgZ(0,"th",49),t._uU(1,"Remote Balance (Sats)"),t.qZA())}function mc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",50),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function dc(n,a){1&n&&(t.TgZ(0,"th",49),t._uU(1,"Local Fee/KW"),t.qZA())}function hc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",50),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeRatePerKw,"1.0-0")," ")}}function _c(n,a){1&n&&(t.TgZ(0,"th",46),t._uU(1,"Balance Score"),t.qZA())}function gc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"div",51)(2,"mat-hint",52),t._uU(3),t.ALo(4,"number"),t.qZA()(),t._UZ(5,"mat-progress-bar",53),t.qZA()),2&n){const e=a.$implicit;t.xp6(3),t.Oqu(t.lcZ(4,2,(null==e?null:e.balancedness)||0)),t.xp6(2),t.s9C("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function fc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",54)(1,"div",55)(2,"mat-select",56),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",57),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Cc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",58)(1,"div",55)(2,"mat-select",59),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",57),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onChannelClick(c,o)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",57),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelClose(s,!0)}),t._uU(7,"Force Close"),t.qZA()()()()}}function xc(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No inactive channel available."),t.qZA())}function yc(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting inactive channels..."),t.qZA())}function vc(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function Tc(n,a){if(1&n&&(t.TgZ(0,"td",60),t.YNc(1,xc,2,0,"p",61),t.YNc(2,yc,2,0,"p",61),t.YNc(3,vc,2,1,"p",61),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Lc=function(n){return{"display-none":n}};function bc(n,a){if(1&n&&t._UZ(0,"tr",62),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Lc,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Sc(n,a){1&n&&t._UZ(0,"tr",63)}function Zc(n,a){1&n&&t._UZ(0,"tr",64)}const Ac=function(){return["all"]},Ec=function(n){return{"error-border":n}},wc=function(){return["no_channel"]};let Ic=(()=>{class n{constructor(e,i,o,s,c){this.logger=e,this.store=i,this.rtlEffects=o,this.commonService=s,this.camelCaseWithSpaces=c,this.faEye=L.Mdf,this.faEyeSlash=L.Aq,this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:l.IV,sortBy:"alias",sortOrder:l.Pi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new r.by([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.vn,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=e.inactiveChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(e,i){this.store.dispatch((0,E.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[5])).subscribe(h=>{h&&this.store.dispatch((0,U.BL)({payload:{channelId:e.channelId||"",force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,E.qR)({payload:{data:{channel:e,channelsType:"inactive",component:mt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(e).toLowerCase();break;case"announceChannel":o=(null==e?void 0:e.announceChannel)?"public":"private";break;default:o=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return o.includes(i)}}loadChannelsTable(){var e;this.channels=new r.by([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,null===(e=this.channels.sort)||void 0===e||e.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"InactiveChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(w.yh),t.Y36(nt.V),t.Y36(P.v),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Channels")}])],decls:58,vars:16,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","shortChannelId"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isFunder"],["matColumnDef","buried"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","feeRatePerKw"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"div",2),t.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),t.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),t.YNc(6,Yr,2,2,"mat-option",6),t.qZA()(),t.TgZ(7,"mat-form-field",4)(8,"input",7),t.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),t.qZA()()()(),t.TgZ(9,"div",8),t.YNc(10,Br,1,0,"mat-progress-bar",9),t.TgZ(11,"table",10,11),t.ynx(13,12),t.YNc(14,Hr,1,0,"th",13),t.YNc(15,Gr,3,2,"td",14),t.BQk(),t.ynx(16,15),t.YNc(17,Wr,2,0,"th",16),t.YNc(18,$r,3,3,"td",14),t.BQk(),t.ynx(19,17),t.YNc(20,Xr,2,0,"th",16),t.YNc(21,Kr,2,1,"td",14),t.BQk(),t.ynx(22,18),t.YNc(23,jr,2,0,"th",16),t.YNc(24,tc,4,4,"td",14),t.BQk(),t.ynx(25,19),t.YNc(26,ec,2,0,"th",16),t.YNc(27,nc,4,4,"td",14),t.BQk(),t.ynx(28,20),t.YNc(29,ic,2,0,"th",16),t.YNc(30,ac,4,4,"td",14),t.BQk(),t.ynx(31,21),t.YNc(32,oc,2,0,"th",16),t.YNc(33,sc,2,1,"td",14),t.BQk(),t.ynx(34,22),t.YNc(35,lc,2,0,"th",16),t.YNc(36,rc,2,1,"td",14),t.BQk(),t.ynx(37,23),t.YNc(38,cc,2,0,"th",24),t.YNc(39,uc,4,4,"td",14),t.BQk(),t.ynx(40,25),t.YNc(41,pc,2,0,"th",24),t.YNc(42,mc,4,4,"td",14),t.BQk(),t.ynx(43,26),t.YNc(44,dc,2,0,"th",24),t.YNc(45,hc,4,4,"td",14),t.BQk(),t.ynx(46,27),t.YNc(47,_c,2,0,"th",16),t.YNc(48,gc,6,4,"td",14),t.BQk(),t.ynx(49,28),t.YNc(50,fc,6,0,"th",29),t.YNc(51,Cc,8,0,"td",30),t.BQk(),t.ynx(52,31),t.YNc(53,Tc,4,3,"td",32),t.BQk(),t.YNc(54,bc,1,3,"tr",33),t.YNc(55,Sc,1,0,"tr",34),t.YNc(56,Zc,1,0,"tr",35),t.qZA()(),t._UZ(57,"mat-paginator",36),t.qZA()),2&e&&(t.xp6(5),t.Q6J("ngModel",i.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(12,Ac).concat(i.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.channels)("ngClass",t.VKq(13,Ec,""!==i.errorMessage)),t.xp6(43),t.Q6J("matFooterRowDef",t.DdM(15,wc)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[m.xw,m.Wh,m.yH,y.KE,k.gD,d.JJ,d.On,u.sg,z.ey,Y.Nt,d.Fj,H.$V,u.O5,M.pW,r.BZ,S.YE,u.mk,Z.oO,r.w1,r.fO,r.ge,S.nU,$.gM,r.Dz,r.ev,q.BN,u.PC,Z.Zl,y.bx,k.$L,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[u.rS,u.JJ],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]}),n})();function Fc(n,a){if(1&n&&(t.TgZ(0,"div",5),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.errorMessage)}}function qc(n,a){if(1&n&&(t.TgZ(0,"mat-option",13),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}const Nc=function(){return["all"]};function Oc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",6),t._UZ(1,"div",7),t.TgZ(2,"div",8)(3,"mat-form-field",9)(4,"mat-select",10),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilterBy=o})("selectionChange",function(){t.CHM(e);const o=t.oxw();return o.selFilter="",o.applyFilter()}),t.YNc(5,qc,2,2,"mat-option",11),t.qZA()(),t.TgZ(6,"mat-form-field",9)(7,"input",12),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilter=o})("input",function(){return t.CHM(e),t.oxw().applyFilter()})("keyup",function(){return t.CHM(e),t.oxw().applyFilter()}),t.qZA()()()()}if(2&n){const e=t.oxw();t.xp6(4),t.Q6J("ngModel",e.selFilterBy),t.xp6(1),t.Q6J("ngForOf",t.DdM(3,Nc).concat(e.displayedColumns.slice(0,-1))),t.xp6(2),t.Q6J("ngModel",e.selFilter)}}function Pc(n,a){1&n&&t._UZ(0,"mat-progress-bar",42)}function Uc(n,a){1&n&&t._UZ(0,"th",43)}const Rc=function(n){return{"ml-0":n}};function kc(n,a){if(1&n&&(t._UZ(0,"span",46),t.ALo(1,"camelcase")),2&n){const e=t.oxw().$implicit,i=t.oxw(2);t.s9C("matTooltip",t.lcZ(1,2,null==e?null:e.type)),t.Q6J("ngClass",t.VKq(4,Rc,i.screenSize===i.screenSizeEnum.XS))}}function Dc(n,a){if(1&n&&(t.TgZ(0,"td",44),t.YNc(1,kc,2,6,"span",45),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Jc(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Date/Time"),t.qZA())}function Mc(n,a){if(1&n&&(t.TgZ(0,"td",44),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function Qc(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"In Channel ID"),t.qZA())}const et=function(n){return{width:n}};function Yc(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.fromChannelId)}}function Bc(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"In Channel Short ID"),t.qZA())}function Hc(n,a){if(1&n&&(t.TgZ(0,"td",44),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.fromShortChannelId)}}function zc(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"In Channel"),t.qZA())}function Vc(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.fromChannelAlias)}}function Gc(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Out Channel ID"),t.qZA())}function Wc(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.toChannelId)}}function $c(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Out Channel Short ID"),t.qZA())}function Xc(n,a){if(1&n&&(t.TgZ(0,"td",44),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.toShortChannelId)}}function Kc(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Out Channel"),t.qZA())}function jc(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.toChannelAlias)}}function tu(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Payment Hash"),t.qZA())}function eu(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash)}}function nu(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Amount In (Sats)"),t.qZA())}function iu(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.amountIn))}}function au(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Amount Out (Sats)"),t.qZA())}function ou(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.amountOut))}}function su(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Fee Earned (Sats)"),t.qZA())}function lu(n,a){if(1&n&&(t.TgZ(0,"td",44)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function ru(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",52)(1,"div",53)(2,"mat-select",54),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",55),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function cu(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",56)(1,"button",57),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw(2).onForwardingEventClick(c,o)}),t._uU(2,"View Info"),t.qZA()()}}function uu(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No forwarding history available."),t.qZA())}function pu(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting forwarding history..."),t.qZA())}function mu(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function du(n,a){if(1&n&&(t.TgZ(0,"td",58),t.YNc(1,uu,2,0,"p",59),t.YNc(2,pu,2,0,"p",59),t.YNc(3,mu,2,1,"p",59),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const hu=function(n){return{"display-none":n}};function _u(n,a){if(1&n&&t._UZ(0,"tr",60),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,hu,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function gu(n,a){1&n&&t._UZ(0,"tr",61)}function fu(n,a){1&n&&t._UZ(0,"tr",62)}const Cu=function(){return["no_event"]};function xu(n,a){if(1&n&&(t.TgZ(0,"div",14),t.YNc(1,Pc,1,0,"mat-progress-bar",15),t.TgZ(2,"table",16,17),t.ynx(4,18),t.YNc(5,Uc,1,0,"th",19),t.YNc(6,Dc,2,1,"td",20),t.BQk(),t.ynx(7,21),t.YNc(8,Jc,2,0,"th",22),t.YNc(9,Mc,3,4,"td",20),t.BQk(),t.ynx(10,23),t.YNc(11,Qc,2,0,"th",22),t.YNc(12,Yc,4,4,"td",20),t.BQk(),t.ynx(13,24),t.YNc(14,Bc,2,0,"th",22),t.YNc(15,Hc,2,1,"td",20),t.BQk(),t.ynx(16,25),t.YNc(17,zc,2,0,"th",22),t.YNc(18,Vc,4,4,"td",20),t.BQk(),t.ynx(19,26),t.YNc(20,Gc,2,0,"th",22),t.YNc(21,Wc,4,4,"td",20),t.BQk(),t.ynx(22,27),t.YNc(23,$c,2,0,"th",22),t.YNc(24,Xc,2,1,"td",20),t.BQk(),t.ynx(25,28),t.YNc(26,Kc,2,0,"th",22),t.YNc(27,jc,4,4,"td",20),t.BQk(),t.ynx(28,29),t.YNc(29,tu,2,0,"th",22),t.YNc(30,eu,4,4,"td",20),t.BQk(),t.ynx(31,30),t.YNc(32,nu,2,0,"th",31),t.YNc(33,iu,4,3,"td",20),t.BQk(),t.ynx(34,32),t.YNc(35,au,2,0,"th",31),t.YNc(36,ou,4,3,"td",20),t.BQk(),t.ynx(37,33),t.YNc(38,su,2,0,"th",31),t.YNc(39,lu,4,3,"td",20),t.BQk(),t.ynx(40,34),t.YNc(41,ru,6,0,"th",35),t.YNc(42,cu,3,0,"td",36),t.BQk(),t.ynx(43,37),t.YNc(44,du,4,3,"td",38),t.BQk(),t.YNc(45,_u,1,3,"tr",39),t.YNc(46,gu,1,0,"tr",40),t.YNc(47,fu,1,0,"tr",41),t.qZA()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.forwardingHistoryEvents),t.xp6(43),t.Q6J("matFooterRowDef",t.DdM(5,Cu)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns)}}function yu(n,a){if(1&n&&t._UZ(0,"mat-paginator",63),2&n){const e=t.oxw();t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Dt=(()=>{class n{constructor(e,i,o,s,c){this.logger=e,this.commonService=i,this.store=o,this.datePipe=s,this.camelCaseWithSpaces=c,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l.Xk,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.IV,sortBy:"timestamp",sortOrder:l.Pi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new r.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.pageId))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.pageId))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("type"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{0===this.eventsData.length&&(this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.eventsData.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData))})}ngAfterViewInit(){this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:l.Bn.COMPLETED,action:"FetchPayments"},this.eventsData=e.eventsData.currentValue,e.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),e.selFilter&&!e.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}onForwardingEventClick(e,i){const o=[[{key:"paymentHash",value:e.paymentHash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"timestamp",value:Math.round((e.timestamp||0)/1e3),title:"Date/Time",width:50,type:l.Gi.DATE_TIME},{key:"fee",value:(e.amountIn||0)-(e.amountOut||0),title:"Fee Earned (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"amountIn",value:e.amountIn,title:"Amount In (Sats)",width:50,type:l.Gi.NUMBER},{key:"amountOut",value:e.amountOut,title:"Amount Out (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"fromChannelAlias",value:e.fromChannelAlias,title:"From Channel Alias",width:50,type:l.Gi.STRING},{key:"fromShortChannelId",value:e.fromShortChannelId,title:"From Short Channel ID",width:50,type:l.Gi.STRING}],[{key:"fromChannelId",value:e.fromChannelId,title:"From Channel ID",width:100,type:l.Gi.STRING}],[{key:"toChannelAlias",value:e.toChannelAlias,title:"To Channel Alias",width:50,type:l.Gi.STRING},{key:"toShortChannelId",value:e.toShortChannelId,title:"To Short Channel ID",width:50,type:l.Gi.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"To Channel ID",width:100,type:l.Gi.STRING}]];"payment-relayed"!==e.type&&(null==o||o.unshift([{key:"type",value:this.commonService.camelCase(e.type),title:"Relay Type",width:100,type:l.Gi.STRING}])),this.store.dispatch((0,E.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Event Information",message:o}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,i)=>{var o,s;let c="";switch(this.selFilterBy){case"all":c=(e.timestamp?null===(o=this.datePipe.transform(new Date(e.timestamp),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":c=(null===(s=this.datePipe.transform(new Date(e.timestamp||0),"dd/MMM/y HH:mm"))||void 0===s?void 0:s.toLowerCase())||"";break;case"fee":c=(e.amountIn-e.amountOut).toString()||"0";break;default:c=void 0===e[this.selFilterBy]?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return c.includes(i)}}loadForwardingEventsTable(e){var i;this.forwardingHistoryEvents=new r.by([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,s)=>"fee"===s?o.amountIn-o.amountOut:o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.forwardingHistoryEvents.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh),t.Y36(u.uU),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(e,i){if(1&e&&(t.Gf(S.YE,5),t.Gf(A.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Events")}]),t.TTD],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","fromChannelId"],["matColumnDef","fromShortChannelId"],["matColumnDef","fromChannelAlias"],["matColumnDef","toChannelId"],["matColumnDef","toShortChannelId"],["matColumnDef","toChannelAlias"],["matColumnDef","paymentHash"],["matColumnDef","amountIn"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountOut"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)"],["mat-cell",""],["class","dot yellow","matTooltipPosition","right",3,"matTooltip","ngClass",4,"ngIf"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip","ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Fc,2,1,"div",1),t.YNc(2,Oc,8,4,"div",2),t.YNc(3,xu,48,6,"div",3),t.YNc(4,yu,1,3,"mat-paginator",4),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf",""!==i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage))},directives:[m.xw,m.Wh,u.O5,m.yH,y.KE,k.gD,d.JJ,d.On,u.sg,z.ey,Y.Nt,d.Fj,H.$V,M.pW,r.BZ,S.YE,r.w1,r.fO,r.ge,S.nU,$.gM,r.Dz,r.ev,u.mk,Z.oO,u.PC,Z.Zl,k.$L,N.lW,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[G.h9,u.uU,u.JJ],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:1.6rem;width:1.6rem}"]}),n})();const vu=["tableIn"],Tu=["tableOut"],Lu=["paginatorIn"],bu=["paginatorOut"];function Su(n,a){if(1&n&&(t.TgZ(0,"div",3),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.errorMessage)}}function Zu(n,a){1&n&&t._UZ(0,"mat-progress-bar",34)}function Au(n,a){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Channel ID"),t.qZA())}const at=function(n){return{width:n}};function Eu(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,at,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function wu(n,a){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Peer Alias"),t.qZA())}function Iu(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,at,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function Fu(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Events"),t.qZA())}function qu(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.events))}}function Nu(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Amount (Sats)"),t.qZA())}function Ou(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalAmount))}}function Pu(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Fee (Sats)"),t.qZA())}function Uu(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalFee))}}function Ru(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No incoming routing peer available."),t.qZA())}function ku(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting incoming routing peers..."),t.qZA())}function Du(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function Ju(n,a){if(1&n&&(t.TgZ(0,"td",41),t.YNc(1,Ru,2,0,"p",42),t.YNc(2,ku,2,0,"p",42),t.YNc(3,Du,2,1,"p",42),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Jt=function(n){return{"display-none":n}};function Mu(n,a){if(1&n&&t._UZ(0,"tr",43),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Jt,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Qu(n,a){1&n&&t._UZ(0,"tr",44)}function Yu(n,a){1&n&&t._UZ(0,"tr",45)}function Bu(n,a){1&n&&t._UZ(0,"mat-progress-bar",34)}function Hu(n,a){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Channel ID"),t.qZA())}function zu(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,at,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function Vu(n,a){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Peer Alias"),t.qZA())}function Gu(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,at,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function Wu(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Events"),t.qZA())}function $u(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.events))}}function Xu(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Amount (Sats)"),t.qZA())}function Ku(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalAmount))}}function ju(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Fee (Sats)"),t.qZA())}function tp(n,a){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalFee))}}function ep(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No outgoing routing peer available."),t.qZA())}function np(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting outgoing routing peers..."),t.qZA())}function ip(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function ap(n,a){if(1&n&&(t.TgZ(0,"td",41),t.YNc(1,ep,2,0,"p",42),t.YNc(2,np,2,0,"p",42),t.YNc(3,ip,2,1,"p",42),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function op(n,a){if(1&n&&t._UZ(0,"tr",43),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Jt,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function sp(n,a){1&n&&t._UZ(0,"tr",44)}function lp(n,a){1&n&&t._UZ(0,"tr",45)}const rp=function(n,a){return{"mt-2":n,"mt-1":a}},cp=function(){return["no_incoming_event"]},up=function(n){return{"mt-2":n}},pp=function(){return["no_outgoing_event"]};function mp(n,a){if(1&n&&(t.TgZ(0,"div",4)(1,"div",5)(2,"div",6)(3,"div",7),t._uU(4,"Incoming"),t.qZA(),t._UZ(5,"div",8),t.qZA(),t.TgZ(6,"div",9),t.YNc(7,Zu,1,0,"mat-progress-bar",10),t.TgZ(8,"table",11,12),t.ynx(10,13),t.YNc(11,Au,2,0,"th",14),t.YNc(12,Eu,4,4,"td",15),t.BQk(),t.ynx(13,16),t.YNc(14,wu,2,0,"th",14),t.YNc(15,Iu,4,4,"td",15),t.BQk(),t.ynx(16,17),t.YNc(17,Fu,2,0,"th",18),t.YNc(18,qu,4,3,"td",15),t.BQk(),t.ynx(19,19),t.YNc(20,Nu,2,0,"th",18),t.YNc(21,Ou,4,3,"td",15),t.BQk(),t.ynx(22,20),t.YNc(23,Pu,2,0,"th",18),t.YNc(24,Uu,4,3,"td",15),t.BQk(),t.ynx(25,21),t.YNc(26,Ju,4,3,"td",22),t.BQk(),t.YNc(27,Mu,1,3,"tr",23),t.YNc(28,Qu,1,0,"tr",24),t.YNc(29,Yu,1,0,"tr",25),t.qZA()(),t._UZ(30,"mat-paginator",26,27),t.qZA(),t.TgZ(32,"div",28)(33,"div",6)(34,"div",7),t._uU(35,"Outgoing"),t.qZA(),t._UZ(36,"div",8),t.qZA(),t.TgZ(37,"div",29),t.YNc(38,Bu,1,0,"mat-progress-bar",10),t.TgZ(39,"table",30,31),t.ynx(41,13),t.YNc(42,Hu,2,0,"th",14),t.YNc(43,zu,4,4,"td",15),t.BQk(),t.ynx(44,16),t.YNc(45,Vu,2,0,"th",14),t.YNc(46,Gu,4,4,"td",15),t.BQk(),t.ynx(47,17),t.YNc(48,Wu,2,0,"th",18),t.YNc(49,$u,4,3,"td",15),t.BQk(),t.ynx(50,19),t.YNc(51,Xu,2,0,"th",18),t.YNc(52,Ku,4,3,"td",15),t.BQk(),t.ynx(53,20),t.YNc(54,ju,2,0,"th",18),t.YNc(55,tp,4,3,"td",15),t.BQk(),t.ynx(56,32),t.YNc(57,ap,4,3,"td",22),t.BQk(),t.YNc(58,op,1,3,"tr",23),t.YNc(59,sp,1,0,"tr",24),t.YNc(60,lp,1,0,"tr",25),t.qZA(),t._UZ(61,"mat-paginator",26,33),t.qZA()()()),2&n){const e=t.oxw();t.xp6(2),t.Q6J("ngClass",t.WLB(18,rp,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.xp6(5),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.routingPeersIncoming),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(21,cp)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),t.xp6(3),t.Q6J("ngClass",t.VKq(22,up,e.screenSize!==e.screenSizeEnum.LG)),t.xp6(5),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.routingPeersOutgoing),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(24,pp)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let dp=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.commonService=i,this.store=o,this.camelCaseWithSpaces=s,this.nodePageDefs=l.Xk,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.IV,sortBy:"totalFee",sortOrder:l.Pi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new r.by([]),this.routingPeersOutgoing=new r.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(e)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData)}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,i)=>{let o="";return o="all"===this.selFilterByIn?JSON.stringify(e).toLowerCase():"string"==typeof e[this.selFilterByIn]?e[this.selFilterByIn].toLowerCase():"boolean"==typeof e[this.selFilterByIn]?e[this.selFilterByIn]?"yes":"no":e[this.selFilterByIn].toString(),o.includes(i)},this.routingPeersOutgoing.filterPredicate=(e,i)=>{var o;let s="";switch(this.selFilterByOut){case"all":s=JSON.stringify(e).toLowerCase();break;case"total_amount":case"total_fee":s=(null===(o=+(e[this.selFilterByOut]||0)/1e3)||void 0===o?void 0:o.toString())||"";break;default:s="string"==typeof e[this.selFilterByOut]?e[this.selFilterByOut].toLowerCase():"boolean"==typeof e[this.selFilterByOut]?e[this.selFilterByOut]?"yes":"no":e[this.selFilterByOut].toString()}return s.includes(i)}}loadRoutingPeersTable(e){var i,o;if(e.length>0){const s=this.groupRoutingPeers(e);this.routingPeersIncoming=new r.by(s[0]),this.routingPeersIncoming.sort=this.sortIn,null===(i=this.routingPeersIncoming.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new r.by(s[1]),this.routingPeersOutgoing.sort=this.sortOut,null===(o=this.routingPeersOutgoing.sort)||void 0===o||o.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new r.by([]),this.routingPeersOutgoing=new r.by([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(e){const i=[],o=[];return e.forEach(s=>{const c=i.find(g=>g.channelId===s.fromChannelId),h=o.find(g=>g.channelId===s.toChannelId);c?(c.events++,c.totalAmount=+c.totalAmount+ +s.amountIn,c.totalFee=s.amountIn-s.amountOut+ +c.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),h?(h.events++,h.totalAmount=+h.totalAmount+ +s.amountOut,h.totalFee=s.amountIn-s.amountOut+ +h.totalFee):o.push({channelId:s.toChannelId,alias:s.toChannelAlias,events:1,totalAmount:+s.amountOut,totalFee:s.amountIn-s.amountOut})}),[this.commonService.sortDescByKey(i,"totalFee"),this.commonService.sortDescByKey(o,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh),t.Y36(G.i1))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(e,i){if(1&e&&(t.Gf(vu,5,S.YE),t.Gf(Tu,5,S.YE),t.Gf(Lu,5),t.Gf(bu,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sortIn=o.first),t.iGM(o=t.CRH())&&(i.sortOut=o.first),t.iGM(o=t.CRH())&&(i.paginatorIn=o.first),t.iGM(o=t.CRH())&&(i.paginatorOut=o.first)}},features:[t._Bn([{provide:A.ye,useValue:(0,l.pt)("Peers")}])],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["tableIn",""],["matColumnDef","channelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","totalAmount"],["matColumnDef","totalFee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginatorIn",""],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch",1,"mb-4"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["tableOut",""],["matColumnDef","no_outgoing_event"],["paginatorOut",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Su,2,1,"div",1),t.YNc(2,mp,63,25,"div",2),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf",""!==i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage))},directives:[m.xw,m.Wh,u.O5,m.yH,u.mk,Z.oO,H.$V,M.pW,r.BZ,S.YE,r.w1,r.fO,r.ge,S.nU,r.Dz,r.ev,u.PC,Z.Zl,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,A.NW],pipes:[u.JJ],styles:[""]}),n})();function hp(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",7),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let _p=(()=>{class n{constructor(e){this.router=e,this.faChartBar=L.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-reports"]],decls:10,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Reports"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),t.YNc(8,hp,2,3,"div",6),t.qZA(),t._UZ(9,"router-outlet"),t.qZA()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartBar),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[m.xw,m.Wh,q.BN,b.a8,b.dn,R.BU,u.sg,R.Nj,x.rH,x.lC],styles:[""]}),n})();var Mt=f(7772),Qt=f(7671),Yt=f(1210);function gp(n,a){if(1&n&&(t.TgZ(0,"div",13),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=t.oxw();t.Q6J("@fadeIn",e.totalFeeSat),t.xp6(1),t.AsE("",t.xi3(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.lcZ(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function fp(n,a){1&n&&(t.TgZ(0,"div",14),t._uU(1,"No routing report for the selected period"),t.qZA())}function Cp(n,a){if(1&n&&(t.TgZ(0,"span")(1,"span",17),t._uU(2),t.ALo(3,"number"),t.qZA(),t.TgZ(4,"span",17),t._uU(5),t.ALo(6,"number"),t.qZA()()),2&n){const e=a.model,i=t.oxw(2);t.xp6(2),t.hij("Events: ",t.lcZ(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),t.xp6(3),t.hij("Fee: ",t.xi3(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function xp(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"ngx-charts-bar-vertical",15),t.NdJ("select",function(o){return t.CHM(e),t.oxw().onChartBarSelected(o)})("mouseup",function(o){return t.CHM(e),t.oxw().onChartMouseUp(o)}),t.YNc(1,Cp,7,7,"ng-template",null,16,t.W1O),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function yp(n,a){if(1&n&&t._UZ(0,"rtl-ecl-forwarding-history",18),2&n){const e=t.oxw();t.Q6J("pageId","reports")("tableId","routing")("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let vp=(()=>{class n{constructor(e,i,o){this.logger=e,this.commonService=i,this.store=o,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=l.Xr,this.selReportBy=l.Xr.FEES,this.totalFeeSat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.events=e.payments&&e.payments.relayed?e.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(e)}),this.commonService.containerSizeUpdated.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=e.width/10;break;case l.cu.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(e,i){const o=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()+" To "+i.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(c=>{Math.floor((c.timestamp||0)/1e3)>=o&&Math.floor((c.timestamp||0)/1e3)0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===l.op[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){var i,o;const s=Math.round(e.getTime()/1e3),c=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.op[1]){for(let h=0;h<12;h++)c.push({name:l.gg[h].name,value:0,extra:{totalEvents:0}});null===(i=this.filteredEventsBySelectedPeriod)||void 0===i||i.map(h=>{const g=new Date(h.timestamp||0).getMonth();return c[g].value=c[g].value+((h.amountIn||0)-(h.amountOut||0)),c[g].extra.totalEvents=c[g].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let h=0;h{const g=Math.floor((Math.floor((h.timestamp||0)/1e3)-s)/this.secondsInADay);return c[g].value=c[g].value+((h.amountIn||0)-(h.amountOut||0)),c[g].extra.totalEvents=c[g].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),c}prepareEventsReport(e){var i,o;const s=Math.round(e.getTime()/1e3),c=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.op[1]){for(let h=0;h<12;h++)c.push({name:l.gg[h].name,value:0,extra:{totalFees:0}});null===(i=this.filteredEventsBySelectedPeriod)||void 0===i||i.map(h=>{const g=new Date(h.timestamp||0).getMonth();return c[g].value=c[g].value+1,c[g].extra.totalFees=c[g].extra.totalFees+((h.amountIn||0)-(h.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let h=0;h{const g=Math.floor((Math.floor((h.timestamp||0)/1e3)-s)/this.secondsInADay);return c[g].value=c[g].value+1,c[g].extra.totalFees=c[g].extra.totalFees+((h.amountIn||0)-(h.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),c}onSelectionChange(e){const i=e.selDate.getMonth(),o=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,i,1,0,0,0),this.endDate=new Date(o,i,this.getMonthDays(i,o),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.gg[e].days+1:l.gg[e].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(e,i){1&e&&t.NdJ("mouseup",function(s){return i.onChartMouseUp(s)})},decls:17,vars:7,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],[3,"pageId","tableId","eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),t.NdJ("stepChanged",function(s){return i.onSelectionChange(s)}),t.qZA(),t.TgZ(2,"div",2)(3,"mat-radio-group",3),t.NdJ("ngModelChange",function(s){return i.selReportBy=s})("change",function(){return i.onSelReportByChange()}),t.TgZ(4,"span",4),t._uU(5,"Report By: "),t.qZA(),t.TgZ(6,"mat-radio-button",5),t._uU(7,"Fees"),t.qZA(),t.TgZ(8,"mat-radio-button",6),t._uU(9,"Events"),t.qZA()()(),t.TgZ(10,"div",7),t.YNc(11,gp,4,8,"div",8),t.YNc(12,fp,2,0,"div",9),t.TgZ(13,"div",10),t.YNc(14,xp,3,11,"ngx-charts-bar-vertical",11),t.qZA(),t.TgZ(15,"div",10),t.YNc(16,yp,1,4,"rtl-ecl-forwarding-history",12),t.qZA()()()),2&e&&(t.xp6(3),t.Q6J("ngModel",i.selReportBy),t.xp6(3),t.s9C("value",i.reportBy.FEES),t.xp6(2),t.s9C("value",i.reportBy.EVENTS),t.xp6(3),t.Q6J("ngIf",i.routingReportData.length>0&&i.filteredEventsBySelectedPeriod.length>0),t.xp6(1),t.Q6J("ngIf",i.routingReportData.length<=0||i.filteredEventsBySelectedPeriod.length<=0),t.xp6(2),t.Q6J("ngIf",i.routingReportData.length>0&&i.filteredEventsBySelectedPeriod.length>0),t.xp6(2),t.Q6J("ngIf",i.filteredEventsBySelectedPeriod.length>0))},directives:[m.xw,m.Wh,m.yH,Qt.D,it.VQ,d.JJ,d.On,it.U0,u.O5,Yt.K$,Dt],pipes:[u.JJ],styles:[""],data:{animation:[Mt.J]}}),n})();var Tp=f(165);function Lp(n,a){if(1&n&&(t.TgZ(0,"div",10),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.AsE(" Paid ",t.xi3(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.lcZ(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function bp(n,a){if(1&n&&(t.TgZ(0,"div",10),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.AsE(" Received ",t.xi3(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.lcZ(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Sp(n,a){if(1&n&&(t.TgZ(0,"div",8),t.YNc(1,Lp,4,7,"div",9),t.YNc(2,bp,4,7,"div",9),t.qZA()),2&n){const e=t.oxw();t.Q6J("@fadeIn",e.transactionsReportSummary),t.xp6(1),t.Q6J("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.xp6(1),t.Q6J("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function Zp(n,a){1&n&&(t.TgZ(0,"div",11),t._uU(1,"No transactions report for the selected period"),t.qZA())}function Ap(n,a){if(1&n&&(t.TgZ(0,"span",14),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=a.model;t.xp6(1),t.HOy("",e.name,": ",t.xi3(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.lcZ(3,7,(null==e.extra?null:e.extra.total)||0),"")}}function Ep(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"ngx-charts-bar-vertical-2d",12),t.NdJ("select",function(o){return t.CHM(e),t.oxw().onChartBarSelected(o)})("mouseup",function(o){return t.CHM(e),t.oxw().onChartMouseUp(o)}),t.YNc(1,Ap,4,9,"ng-template",null,13,t.W1O),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:8)}}function wp(n,a){if(1&n&&t._UZ(0,"rtl-transactions-report-table",15),2&n){const e=t.oxw();t.Q6J("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Ip=(()=>{class n{constructor(e,i,o){this.logger=e,this.commonService=i,this.store=o,this.scrollRanges=l.op,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.IV,sortBy:"date",sortOrder:l.Pi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(C.nF).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{var i,o;this.tableSetting=(null===(i=e.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.c3.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[1]),(0,ot.M)(this.store.select(C.Ef))).subscribe(([e,i])=>{this.payments=e.payments.sent?e.payments.sent:[],this.invoices=i.invoices?i.invoices:[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData())}),this.commonService.containerSizeUpdated.pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=e.width/10;break;case l.cu.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(e){"svg"===e.srcElement.tagName&&e.srcElement.classList.length>0&&"ngx-charts"===e.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(e){this.transactionFilterValue=this.reportPeriod===l.op[1]?e.series.toString()+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,i){var o,s;const c=Math.round(e.getTime()/1e3),h=Math.round(i.getTime()/1e3),g=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const v=null===(o=this.payments)||void 0===o?void 0:o.filter(T=>T.firstPartTimestamp&&Math.floor(T.firstPartTimestamp/1e3)>=c&&Math.floor(T.firstPartTimestamp/1e3)"received"===T.status&&T.timestamp&&T.timestamp>=c&&T.timestamp{const F=new Date(T.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(T.recipientAmount||0),g[F].series[0].value=g[F].series[0].value+T.recipientAmount,g[F].series[0].extra.total=g[F].series[0].extra.total+1,this.transactionsReportSummary}),null==B||B.map(T=>{const F=new Date(1e3*(T.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(T.amountSettled||0),g[F].series[1].value=g[F].series[1].value+T.amountSettled,g[F].series[1].extra.total=g[F].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let T=0;T{const F=Math.floor((Math.floor((T.firstPartTimestamp||0)/1e3)-c)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(T.recipientAmount||0),g[F].series[0].value=g[F].series[0].value+T.recipientAmount,g[F].series[0].extra.total=g[F].series[0].extra.total+1,this.transactionsReportSummary}),null==B||B.map(T=>{const F=Math.floor(((T.timestamp||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(T.amountSettled||0),g[F].series[1].value=g[F].series[1].value+T.amountSettled,g[F].series[1].extra.total=g[F].series[1].extra.total+1,this.transactionsReportSummary})}return g}prepareTableData(){var e;return null===(e=this.transactionsReportData)||void 0===e?void 0:e.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(e){const i=e.selDate.getMonth(),o=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,i,1,0,0,0),this.endDate=new Date(o,i,this.getMonthDays(i,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.gg[e].days+1:l.gg[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(O.mQ),t.Y36(P.v),t.Y36(w.yh))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(e,i){1&e&&t.NdJ("mouseup",function(s){return i.onChartMouseUp(s)})},decls:9,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),t.NdJ("stepChanged",function(s){return i.onSelectionChange(s)}),t.qZA(),t.TgZ(2,"div",2),t.YNc(3,Sp,3,3,"div",3),t.YNc(4,Zp,2,0,"div",4),t.TgZ(5,"div",5),t.YNc(6,Ep,3,13,"ngx-charts-bar-vertical-2d",6),t.qZA(),t.TgZ(7,"div",5),t.YNc(8,wp,1,5,"rtl-transactions-report-table",7),t.qZA()()()),2&e&&(t.xp6(3),t.Q6J("ngIf",i.transactionsNonZeroReportData.length>0),t.xp6(1),t.Q6J("ngIf",i.transactionsNonZeroReportData.length<=0),t.xp6(2),t.Q6J("ngIf",i.transactionsNonZeroReportData.length>0),t.xp6(2),t.Q6J("ngIf",i.transactionsNonZeroReportData.length>0))},directives:[m.xw,m.Wh,m.yH,Qt.D,u.O5,Yt.H5,Tp.g],pipes:[u.JJ],styles:[""],data:{animation:[Mt.J]}}),n})();var I=f(1643),Fp=f(9442);function qp(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",8),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}const Pp=x.Bz.forChild([{path:"",component:Ct,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Ca,canActivate:[I.fY]},{path:"onchain",component:so,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:Uo,canActivate:[I.fY]},{path:"send",component:Ro,canActivate:[I.fY]}]},{path:"connections",component:co,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:es,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:nl,canActivate:[I.fY]},{path:"pending",component:Jl,canActivate:[I.fY]},{path:"inactive",component:Ic,canActivate:[I.fY]}]},{path:"peers",component:Ar,data:{sweepAll:!1},canActivate:[I.fY]}]},{path:"transactions",component:po,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:St,canActivate:[I.fY]},{path:"invoices",component:Lt,canActivate:[I.fY]}]},{path:"routing",component:ho,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Dt,canActivate:[I.fY]},{path:"peers",component:dp,canActivate:[I.fY]}]},{path:"reports",component:_p,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:vp,canActivate:[I.fY]},{path:"transactions",component:Ip,canActivate:[I.fY]}]},{path:"graph",component:(()=>{class n{constructor(e){this.router=e,this.faSearch=L.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-graph"]],decls:11,vars:2,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Graph Lookups"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),t.YNc(8,qp,2,3,"div",6),t.qZA(),t.TgZ(9,"div",7),t._UZ(10,"router-outlet"),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faSearch),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[m.xw,m.Wh,q.BN,b.a8,b.dn,R.BU,u.sg,R.Nj,x.rH,m.yH,x.lC],styles:[""]}),n})(),canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Oo,canActivate:[I.fY]},{path:"queryroutes",component:Qr,canActivate:[I.fY]}]},{path:"**",component:Fp.w}]}]);var Up=f(8750);let Rp=(()=>{class n{}return n.\u0275fac=function(e){return new(e||n)},n.\u0275mod=t.oAB({type:n,bootstrap:[Ct]}),n.\u0275inj=t.cJS({providers:[I.fY],imports:[[u.ez,Up.m,Pp]]}),n})()}}]); \ No newline at end of file diff --git a/frontend/267.4a643eeda98f6031.js b/frontend/267.4a643eeda98f6031.js new file mode 100644 index 00000000..9f264b60 --- /dev/null +++ b/frontend/267.4a643eeda98f6031.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[267],{1203:(J,P,n)=>{n.d(P,{D:()=>k});var a=n(7579),y=n(2722),m=n(7731),C=n(8377),t=n(5e3),A=n(62),w=n(5620),x=n(3251),e=n(9808),F=n(7093),T=n(5245),H=n(7238);function R(d,g){if(1&d&&(t.TgZ(0,"mat-icon",9),t._uU(1,"info_outline"),t.qZA()),2&d){const M=t.oxw().$implicit;t.Q6J("matTooltip",M.tooltip)}}function N(d,g){if(1&d&&(t.TgZ(0,"span",10),t._uU(1),t.ALo(2,"number"),t.qZA()),2&d){const M=t.oxw().$implicit;t.xp6(1),t.hij(" ",t.lcZ(2,1,M.dataValue)," ")}}function U(d,g){if(1&d&&(t.TgZ(0,"span",10),t._uU(1),t.ALo(2,"number"),t.qZA()),2&d){const M=t.oxw().$implicit,i=t.oxw(2);t.xp6(1),t.hij(" ",t.xi3(2,1,M[i.currencyUnitEnum.BTC],i.currencyUnitFormats.BTC)," ")}}function E(d,g){if(1&d&&(t.TgZ(0,"span",10),t._uU(1),t.ALo(2,"number"),t.qZA()),2&d){const M=t.oxw().$implicit,i=t.oxw(2);t.xp6(1),t.hij(" ",t.xi3(2,1,M[i.currencyUnitEnum.OTHER],i.currencyUnitFormats.OTHER)," ")}}function b(d,g){if(1&d&&(t.TgZ(0,"div",5)(1,"div",6),t._uU(2),t.YNc(3,R,2,1,"mat-icon",7),t.qZA(),t.YNc(4,N,3,3,"span",8),t.YNc(5,U,3,4,"span",8),t.YNc(6,E,3,4,"span",8),t.qZA()),2&d){const M=g.$implicit,i=t.oxw().$implicit,z=t.oxw();t.xp6(2),t.hij(" ",M.title," "),t.xp6(1),t.Q6J("ngIf",M.tooltip),t.xp6(1),t.Q6J("ngIf",i===z.currencyUnitEnum.SATS),t.xp6(1),t.Q6J("ngIf",i===z.currencyUnitEnum.BTC),t.xp6(1),t.Q6J("ngIf",z.fiatConversion&&i!==z.currencyUnitEnum.SATS&&i!==z.currencyUnitEnum.BTC&&""===z.conversionErrorMsg)}}function O(d,g){if(1&d&&(t.TgZ(0,"div",11)(1,"div",12),t._uU(2),t.qZA()()),2&d){const M=t.oxw(2);t.xp6(2),t.Oqu(M.conversionErrorMsg)}}function D(d,g){if(1&d&&(t.TgZ(0,"mat-tab",1)(1,"div",2),t.YNc(2,b,7,5,"div",3),t.qZA(),t.YNc(3,O,3,1,"div",4),t.qZA()),2&d){const M=g.$implicit,i=t.oxw();t.s9C("label",M),t.xp6(2),t.Q6J("ngForOf",i.values),t.xp6(1),t.Q6J("ngIf",i.fiatConversion&&M!==i.currencyUnitEnum.SATS&&M!==i.currencyUnitEnum.BTC&&""!==i.conversionErrorMsg)}}let k=(()=>{class d{constructor(M,i){this.commonService=M,this.store=i,this.values=[],this.currencyUnitEnum=m.NT,this.currencyUnitFormats=m.Xz,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new a.x,new a.x,new a.x]}ngOnInit(){this.store.select(C.dT).pipe((0,y.R)(this.unSubs[0])).subscribe(M=>{this.fiatConversion=M.settings.fiatConversion,this.currencyUnits=M.settings.currencyUnits,this.fiatConversion||this.currencyUnits.splice(2,1),this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues(this.values)})}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues(this.values)}getCurrencyValues(M){M.forEach(i=>{i.dataValue>0?(this.commonService.convertCurrency(i.dataValue,m.NT.SATS,m.NT.BTC,"",!0).pipe((0,y.R)(this.unSubs[1])).subscribe(z=>{i[m.NT.BTC]=z.BTC}),this.commonService.convertCurrency(i.dataValue,m.NT.SATS,m.NT.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,y.R)(this.unSubs[2])).subscribe({next:z=>{i[m.NT.OTHER]=z.OTHER},error:z=>{this.conversionErrorMsg="Conversion Error: "+z}})):(i[m.NT.BTC]=i.dataValue,""===this.conversionErrorMsg&&(i[m.NT.OTHER]=i.dataValue))})}ngOnDestroy(){this.unSubs.forEach(M=>{M.next(null),M.complete()})}}return d.\u0275fac=function(M){return new(M||d)(t.Y36(A.v),t.Y36(w.yh))},d.\u0275cmp=t.Xpm({type:d,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},features:[t.TTD],decls:2,vars:1,consts:[[3,"label",4,"ngFor","ngForOf"],[3,"label"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","center start","class","cc-data-block",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","class","p-1 error-border mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center start",1,"cc-data-block"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"cc-data-title"],["matTooltipPosition","below","class","info-icon",3,"matTooltip",4,"ngIf"],["class","cc-data-value",4,"ngIf"],["matTooltipPosition","below",1,"info-icon",3,"matTooltip"],[1,"cc-data-value"],["fxLayout","row","fxFlex","100",1,"p-1","error-border","mt-1"],[1,"cc-data-block"]],template:function(M,i){1&M&&(t.TgZ(0,"mat-tab-group"),t.YNc(1,D,4,3,"mat-tab",0),t.qZA()),2&M&&(t.xp6(1),t.Q6J("ngForOf",i.currencyUnits))},directives:[x.SP,e.sg,x.uX,F.xw,F.yH,F.Wh,e.O5,T.Hw,H.gM],pipes:[e.JJ],styles:[""]}),d})()},9122:(J,P,n)=>{n.d(P,{n:()=>M});var a=n(8966),y=n(2687),m=n(7731),C=n(5e3),t=n(5043),A=n(62),w=n(7261),x=n(7093),e=n(9808),F=n(3322),T=n(159),H=n(9224),R=n(9546),N=n(7423),U=n(4834),E=n(3390),b=n(6895);const O=function(i){return{"display-none":i}};function D(i,z){if(1&i&&(C.TgZ(0,"div",20),C._UZ(1,"qr-code",21),C.qZA()),2&i){const p=C.oxw();C.Q6J("ngClass",C.VKq(4,O,p.screenSize===p.screenSizeEnum.XS||p.screenSize===p.screenSizeEnum.SM)),C.xp6(1),C.Q6J("value",p.address)("size",p.qrWidth)("errorCorrectionLevel","L")}}function k(i,z){if(1&i&&(C.TgZ(0,"div",22),C._UZ(1,"qr-code",21),C.qZA()),2&i){const p=C.oxw();C.Q6J("ngClass",C.VKq(4,O,p.screenSize!==p.screenSizeEnum.XS&&p.screenSize!==p.screenSizeEnum.SM)),C.xp6(1),C.Q6J("value",p.address)("size",p.qrWidth)("errorCorrectionLevel","L")}}function d(i,z){if(1&i&&(C.TgZ(0,"div",13)(1,"div",14)(2,"h4",15),C._uU(3,"Address Type"),C.qZA(),C.TgZ(4,"span",23),C._uU(5),C.qZA()()()),2&i){const p=C.oxw();C.xp6(5),C.Oqu(p.addressType)}}function g(i,z){1&i&&C._UZ(0,"mat-divider",17)}let M=(()=>{class i{constructor(p,v,B,Z,Y){this.dialogRef=p,this.data=v,this.logger=B,this.commonService=Z,this.snackBar=Y,this.faReceipt=y.dLy,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=m.cu}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(p){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+p)}}return i.\u0275fac=function(p){return new(p||i)(C.Y36(a.so),C.Y36(a.WI),C.Y36(t.mQ),C.Y36(A.v),C.Y36(w.ux))},i.\u0275cmp=C.Xpm({type:i,selectors:[["rtl-on-chain-generated-address"]],decls:25,vars:8,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","2","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-1"],["autoFocus","","mat-button","","color","primary","tabindex","1","type","submit","rtlClipboard","",3,"payload","copied"],["fxFlex","35","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[3,"value","size","errorCorrectionLevel"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(p,v){1&p&&(C.TgZ(0,"div",0),C.YNc(1,D,2,6,"div",1),C.TgZ(2,"div",2)(3,"mat-card-header",3)(4,"div",4),C._UZ(5,"fa-icon",5),C.TgZ(6,"span",6),C._uU(7),C.qZA()(),C.TgZ(8,"button",7),C.NdJ("click",function(){return v.onClose()}),C._uU(9,"X"),C.qZA()(),C.TgZ(10,"mat-card-content",8)(11,"div",9),C.YNc(12,k,2,6,"div",10),C.YNc(13,d,6,1,"div",11),C.YNc(14,g,1,0,"mat-divider",12),C.TgZ(15,"div",13)(16,"div",14)(17,"h4",15),C._uU(18,"Address"),C.qZA(),C.TgZ(19,"span",16),C._uU(20),C.qZA()()(),C._UZ(21,"mat-divider",17),C.TgZ(22,"div",18)(23,"button",19),C.NdJ("copied",function(Z){return v.onCopyAddress(Z)}),C._uU(24,"Copy Address"),C.qZA()()()()()()),2&p&&(C.xp6(1),C.Q6J("ngIf",v.address),C.xp6(4),C.Q6J("icon",v.faReceipt),C.xp6(2),C.Oqu(v.screenSize===v.screenSizeEnum.XS?"Address":"Generated Address"),C.xp6(5),C.Q6J("ngIf",v.address),C.xp6(1),C.Q6J("ngIf",""!==v.addressType),C.xp6(1),C.Q6J("ngIf",""!==v.addressType),C.xp6(6),C.Oqu(v.address),C.xp6(3),C.Q6J("payload",v.address))},directives:[x.xw,x.Wh,e.O5,x.yH,e.mk,F.oO,T.uU,H.dk,R.BN,N.lW,H.dn,U.d,E.h,b.y],styles:[""]}),i})()},7671:(J,P,n)=>{n.d(P,{D:()=>q});var a=n(5e3),y=n(113),m=n(7731),C=n(5043),t=n(7093),A=n(7423),w=n(5245),x=n(9808),e=n(4107),F=n(3075),T=n(508),H=n(7322);let R=(()=>{class l extends T.LF{format(r,f){return"MMM YYYY"===f?m.gg[r.getMonth()].name+", "+r.getFullYear():"YYYY"===f?r.getFullYear().toString():r.getDate()+"/"+m.gg[r.getMonth()].name+"/"+r.getFullYear()}}return l.\u0275fac=function(){let _;return function(f){return(_||(_=a.n5z(l)))(f||l)}}(),l.\u0275prov=a.Yz7({token:l,factory:l.\u0275fac}),l})();const N={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},U={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let E=(()=>{class l{}return l.\u0275fac=function(r){return new(r||l)},l.\u0275dir=a.lG2({type:l,selectors:[["","monthlyDate",""]],features:[a._Bn([{provide:T._A,useClass:R},{provide:T.sG,useValue:N}])]}),l})(),b=(()=>{class l{}return l.\u0275fac=function(r){return new(r||l)},l.\u0275dir=a.lG2({type:l,selectors:[["","yearlyDate",""]],features:[a._Bn([{provide:T._A,useClass:R},{provide:T.sG,useValue:U}])]}),l})();var O=n(7531),D=n(6856),k=n(6534),d=n(9843);const g=["monthlyDatepicker"],M=["yearlyDatepicker"],i=function(){return{animationDirection:"forward"}};function z(l,_){if(1&l&&a.GkF(0,9),2&l){a.oxw();const r=a.MAs(19);a.Q6J("ngTemplateOutlet",r)("ngTemplateOutletContext",a.DdM(2,i))}}const p=function(){return{animationDirection:"backward"}};function v(l,_){if(1&l&&a.GkF(0,9),2&l){a.oxw();const r=a.MAs(19);a.Q6J("ngTemplateOutlet",r)("ngTemplateOutletContext",a.DdM(2,p))}}const B=function(){return{animationDirection:""}};function Z(l,_){if(1&l&&a.GkF(0,9),2&l){a.oxw();const r=a.MAs(19);a.Q6J("ngTemplateOutlet",r)("ngTemplateOutletContext",a.DdM(2,B))}}function Y(l,_){if(1&l&&(a.TgZ(0,"mat-option",17),a._uU(1),a.ALo(2,"titlecase"),a.qZA()),2&l){const r=_.$implicit;a.Q6J("value",r),a.xp6(1),a.hij(" ",a.lcZ(2,2,r)," ")}}function W(l,_){if(1&l){const r=a.EpF();a.TgZ(0,"mat-form-field",18)(1,"input",19,20),a.NdJ("ngModelChange",function(h){return a.CHM(r),a.oxw(2).selectedValue=h}),a.qZA(),a._UZ(3,"mat-datepicker-toggle",21),a.TgZ(4,"mat-datepicker",22,23),a.NdJ("monthSelected",function(h){return a.CHM(r),a.oxw(2).onMonthSelected(h)})("dateSelected",function(h){return a.CHM(r),a.oxw(2).onMonthSelected(h)}),a.qZA()()}if(2&l){const r=a.MAs(5),f=a.oxw(2);a.xp6(1),a.Q6J("matDatepicker",r)("min",f.first)("max",f.last)("ngModel",f.selectedValue),a.xp6(2),a.Q6J("for",r),a.xp6(1),a.Q6J("startAt",f.selectedValue)}}function I(l,_){if(1&l){const r=a.EpF();a.TgZ(0,"mat-form-field",24)(1,"input",25,26),a.NdJ("ngModelChange",function(h){return a.CHM(r),a.oxw(2).selectedValue=h}),a.qZA(),a._UZ(3,"mat-datepicker-toggle",21),a.TgZ(4,"mat-datepicker",27,28),a.NdJ("yearSelected",function(h){return a.CHM(r),a.oxw(2).onYearSelected(h)})("monthSelected",function(h){return a.CHM(r),a.oxw(2).onYearSelected(h)})("dateSelected",function(h){return a.CHM(r),a.oxw(2).onYearSelected(h)}),a.qZA()()}if(2&l){const r=a.MAs(5),f=a.oxw(2);a.xp6(1),a.Q6J("matDatepicker",r)("min",f.first)("max",f.last)("ngModel",f.selectedValue),a.xp6(2),a.Q6J("for",r),a.xp6(1),a.Q6J("startAt",f.selectedValue)}}function G(l,_){if(1&l){const r=a.EpF();a.TgZ(0,"div",10)(1,"div",11)(2,"mat-select",12),a.NdJ("ngModelChange",function(h){return a.CHM(r),a.oxw().selScrollRange=h})("selectionChange",function(h){return a.CHM(r),a.oxw().onRangeChanged(h)}),a.YNc(3,Y,3,4,"mat-option",13),a.qZA()(),a.TgZ(4,"div",14),a.YNc(5,W,6,6,"mat-form-field",15),a.YNc(6,I,6,6,"mat-form-field",16),a.qZA()()}if(2&l){const r=a.oxw();a.Q6J("@sliderAnimation",r.animationDirection),a.xp6(2),a.Q6J("ngModel",r.selScrollRange),a.xp6(1),a.Q6J("ngForOf",r.scrollRanges),a.xp6(2),a.Q6J("ngIf",r.selScrollRange===r.scrollRanges[0]),a.xp6(1),a.Q6J("ngIf",r.selScrollRange===r.scrollRanges[1])}}let q=(()=>{class l{constructor(r){this.logger=r,this.scrollRanges=m.op,this.selScrollRange=this.scrollRanges[0],this.today=new Date(Date.now()),this.first=new Date(2018,0,1,0,0,0),this.last=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate(),0,0,0),this.disablePrev=!1,this.disableNext=!0,this.animationDirection="",this.selectedValue=this.last,this.stepChanged=new a.vpe}onRangeChanged(r){this.selScrollRange=r.value,this.onStepChange("LAST")}onMonthSelected(r){this.selectedValue=r,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(r){this.selectedValue=r,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(r){switch(this.logger.info(r),r){case"FIRST":this.animationDirection="backward",this.selectedValue!==this.first&&(this.selectedValue=this.first,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange}));break;case"PREVIOUS":this.selectedValue=this.selScrollRange===m.op[1]?new Date(this.selectedValue.getFullYear()-1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()-1,1,0,0,0),this.animationDirection="backward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"NEXT":this.selectedValue=this.selScrollRange===m.op[1]?new Date(this.selectedValue.getFullYear()+1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()+1,1,0,0,0),this.animationDirection="forward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"LAST":this.animationDirection="forward",this.selectedValue=this.last,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;default:this.animationDirection="",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange})}this.disablePrev=this.selScrollRange===m.op[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===m.op[1]?this.selectedValue.getFullYear()>=this.last.getFullYear():this.selectedValue.getFullYear()>=this.last.getFullYear()&&this.selectedValue.getMonth()>=this.last.getMonth(),this.logger.info(this.disablePrev),this.logger.info(this.disableNext),setTimeout(()=>{this.animationDirection=""},800)}onChartMouseUp(r){"monthlyDate"===r.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===r.srcElement.name&&this.yearlyDatepicker.open()}}return l.\u0275fac=function(r){return new(r||l)(a.Y36(C.mQ))},l.\u0275cmp=a.Xpm({type:l,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(r,f){if(1&r&&(a.Gf(g,5),a.Gf(M,5)),2&r){let h;a.iGM(h=a.CRH())&&(f.monthlyDatepicker=h.first),a.iGM(h=a.CRH())&&(f.yearlyDatepicker=h.first)}},hostBindings:function(r,f){1&r&&a.NdJ("click",function(V){return f.onChartMouseUp(V)})},outputs:{stepChanged:"stepChanged"},decls:20,vars:5,consts:[["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","22"],["mat-icon-button","","color","primary","type","button","tabindex","1",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button","tabindex","2",3,"disabled","click"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","22"],["mat-icon-button","","color","primary","type","button","tabindex","5",1,"pr-4",3,"disabled","click"],["mat-icon-button","","color","primary","type","button","tabindex","6",3,"click"],["controlsPanel",""],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","56"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["fxFlex","80","fxFlex.gt-md","30","name","selScrlRange","placeholder","Range","tabindex","3",1,"font-bold-700",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","tabindex","4","readonly","",3,"matDatepicker","min","max","ngModel","ngModelChange"],["monthlyDt","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"startAt","monthSelected","dateSelected"],["monthlyDatepicker",""],["yearlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","tabindex","4","readonly","",3,"matDatepicker","min","max","ngModel","ngModelChange"],["yearlyDt","ngModel"],["startView","multi-year",3,"startAt","yearSelected","monthSelected","dateSelected"],["yearlyDatepicker",""]],template:function(r,f){1&r&&(a.TgZ(0,"div",0)(1,"div",1)(2,"button",2),a.NdJ("click",function(){return f.onStepChange("FIRST")}),a.TgZ(3,"mat-icon"),a._uU(4,"skip_previous"),a.qZA()(),a.TgZ(5,"button",3),a.NdJ("click",function(){return f.onStepChange("PREVIOUS")}),a.TgZ(6,"mat-icon"),a._uU(7,"navigate_before"),a.qZA()()(),a.YNc(8,z,1,3,"ng-container",4),a.YNc(9,v,1,3,"ng-container",4),a.YNc(10,Z,1,3,"ng-container",4),a.TgZ(11,"div",5)(12,"button",6),a.NdJ("click",function(){return f.onStepChange("NEXT")}),a.TgZ(13,"mat-icon"),a._uU(14,"navigate_next"),a.qZA()(),a.TgZ(15,"button",7),a.NdJ("click",function(){return f.onStepChange("LAST")}),a.TgZ(16,"mat-icon"),a._uU(17,"skip_next"),a.qZA()()()(),a.YNc(18,G,7,5,"ng-template",null,8,a.W1O)),2&r&&(a.xp6(5),a.Q6J("disabled",f.disablePrev),a.xp6(3),a.Q6J("ngIf","forward"===f.animationDirection),a.xp6(1),a.Q6J("ngIf","backward"===f.animationDirection),a.xp6(1),a.Q6J("ngIf",""===f.animationDirection),a.xp6(2),a.Q6J("disabled",f.disableNext))},directives:[t.xw,t.Wh,t.yH,A.lW,w.Hw,x.O5,x.tP,e.gD,F.JJ,F.On,x.sg,T.ey,H.KE,E,O.Nt,D.hl,k.q,d.F,F.Fj,D.nW,H.R9,D.Mq,b],pipes:[x.rS],styles:[""],data:{animation:[y.l]}}),l})()},165:(J,P,n)=>{n.d(P,{g:()=>$});var a=n(6087),y=n(4847),m=n(2075),C=n(7731),t=n(7861),A=n(7579),w=n(2722),x=n(8377),e=n(5e3),F=n(62),T=n(5620),H=n(9808),R=n(9445),N=n(7093),U=n(7322),E=n(4107),b=n(3075),O=n(508),D=n(7531),k=n(8129),d=n(7423),g=n(3322);function M(o,u){if(1&o&&(e.TgZ(0,"mat-option",30),e._uU(1),e.qZA()),2&o){const c=u.$implicit,s=e.oxw();e.Q6J("value",c),e.xp6(1),e.Oqu(s.getLabel(c))}}function i(o,u){1&o&&(e.TgZ(0,"th",31),e._uU(1,"Date"),e.qZA())}function z(o,u){if(1&o&&(e.TgZ(0,"td",32),e._uU(1),e.ALo(2,"date"),e.qZA()),2&o){const c=u.$implicit,s=e.oxw();e.xp6(1),e.Oqu(e.xi3(2,1,null==c?null:c.date,s.dataRange===s.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function p(o,u){1&o&&(e.TgZ(0,"th",33),e._uU(1,"Amount Paid (Sats)"),e.qZA())}function v(o,u){if(1&o&&(e.TgZ(0,"td",32)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&o){const c=u.$implicit;e.xp6(2),e.Oqu(e.xi3(3,1,null==c?null:c.amount_paid,"1.0-2"))}}function B(o,u){1&o&&(e.TgZ(0,"th",33),e._uU(1,"# Payments"),e.qZA())}function Z(o,u){if(1&o&&(e.TgZ(0,"td",32)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&o){const c=u.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==c?null:c.num_payments))}}function Y(o,u){1&o&&(e.TgZ(0,"th",33),e._uU(1,"Amount Received (Sats)"),e.qZA())}function W(o,u){if(1&o&&(e.TgZ(0,"td",32)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&o){const c=u.$implicit;e.xp6(2),e.Oqu(e.xi3(3,1,null==c?null:c.amount_received,"1.0-2"))}}function I(o,u){1&o&&(e.TgZ(0,"th",33),e._uU(1,"# Invoices"),e.qZA())}function G(o,u){if(1&o&&(e.TgZ(0,"td",32)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&o){const c=u.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==c?null:c.num_invoices))}}function q(o,u){if(1&o){const c=e.EpF();e.TgZ(0,"th",35)(1,"div",36)(2,"mat-select",37),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",38),e.NdJ("click",function(){return e.CHM(c),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function l(o,u){if(1&o){const c=e.EpF();e.TgZ(0,"td",39)(1,"button",40),e.NdJ("click",function(){const S=e.CHM(c).$implicit;return e.oxw().onTransactionClick(S)}),e._uU(2,"View Info"),e.qZA()()}}function _(o,u){1&o&&(e.TgZ(0,"p"),e._uU(1,"No transaction available."),e.qZA())}function r(o,u){if(1&o&&(e.TgZ(0,"td",41),e.YNc(1,_,2,0,"p",42),e.qZA()),2&o){const c=e.oxw();e.xp6(1),e.Q6J("ngIf",!(null!=c.transactions&&c.transactions.data)||(null==c.transactions||null==c.transactions.data?null:c.transactions.data.length)<1)}}const f=function(o){return{"display-none":o}};function h(o,u){if(1&o&&e._UZ(0,"tr",43),2&o){const c=e.oxw();e.Q6J("ngClass",e.VKq(1,f,(null==c.transactions?null:c.transactions.data)&&(null==c.transactions||null==c.transactions.data?null:c.transactions.data.length)>0))}}function V(o,u){1&o&&e._UZ(0,"tr",44)}function X(o,u){1&o&&e._UZ(0,"tr",45)}const K=function(){return["all"]},j=function(){return["no_transaction"]};let $=(()=>{class o{constructor(c,s,L,S){this.commonService=c,this.store=s,this.datePipe=L,this.camelCaseWithReplace=S,this.dataRange=C.op[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:C.IV,sortBy:"date",sortOrder:C.Pi.DESCENDING},this.nodePageDefs=C.hG,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=C.op,this.transactions=new m.by([]),this.pageSize=C.IV,this.pageSizeOptions=C.TJ,this.screenSize="",this.screenSizeEnum=C.cu,this.unSubs=[new A.x,new A.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(x.dT).pipe((0,w.R)(this.unSubs[0])).subscribe(c=>{this.nodePageDefs="CLN"===c.lnImplementation?C.At:"ECL"===c.lnImplementation?C.Xk:C.hG}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:C.IV,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){this.setTableWidgets()}ngOnChanges(c){c.dataList&&!c.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:C.IV,this.loadTransactionsTable(this.dataList)),c.selFilter&&!c.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}onTransactionClick(c){const s=[[{key:"date",value:this.datePipe.transform(c.date,this.dataRange===C.op[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:C.Gi.DATE}],[{key:"amount_paid",value:Math.round(c.amount_paid),title:"Amount Paid (Sats)",width:50,type:C.Gi.NUMBER},{key:"num_payments",value:c.num_payments,title:"# Payments",width:50,type:C.Gi.NUMBER}],[{key:"amount_received",value:Math.round(c.amount_received),title:"Amount Received (Sats)",width:50,type:C.Gi.NUMBER},{key:"num_invoices",value:c.num_invoices,title:"# Invoices",width:50,type:C.Gi.NUMBER}]];this.store.dispatch((0,t.qR)({payload:{data:{type:C.n_.INFORMATION,alertTitle:"Transaction Summary",message:s}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(c){const s=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(L=>L.column===c);return s?s.label?s.label:this.camelCaseWithReplace.transform(s.column,"_"):this.commonService.titleCase(c)}setFilterPredicate(){this.transactions.filterPredicate=(c,s)=>{var L;let S="";switch(this.selFilterBy){case"all":S=(c.date?(this.datePipe.transform(c.date,"dd/MMM")+"/"+c.date.getFullYear()).toLowerCase():"")+JSON.stringify(c).toLowerCase();break;case"date":S=(null===(L=this.datePipe.transform(new Date(c[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))||void 0===L?void 0:L.toLowerCase())||"";break;default:S=void 0===c[this.selFilterBy]?"":"string"==typeof c[this.selFilterBy]?c[this.selFilterBy].toLowerCase():"boolean"==typeof c[this.selFilterBy]?c[this.selFilterBy]?"yes":"no":c[this.selFilterBy].toString()}return S.includes(s)}}loadTransactionsTable(c){this.transactions=new m.by(c?[...c]:[]),this.setTableWidgets()}setTableWidgets(){var c;this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sortingDataAccessor=(s,L)=>s[L]&&isNaN(s[L])?s[L].toLocaleLowerCase():s[L]?+s[L]:null,this.transactions.sort=this.sort,null===(c=this.transactions.sort)||void 0===c||c.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.transactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter())}onDownloadCSV(){this.transactions.data&&this.transactions.data.length>0&&this.commonService.downloadFile(this.dataList,"Transactions-report-"+this.dataRange.toLowerCase())}ngOnDestroy(){this.unSubs.forEach(c=>{c.next(),c.complete()})}}return o.\u0275fac=function(c){return new(c||o)(e.Y36(F.v),e.Y36(T.yh),e.Y36(H.uU),e.Y36(R.D3))},o.\u0275cmp=e.Xpm({type:o,selectors:[["rtl-transactions-report-table"]],viewQuery:function(c,s){if(1&c&&(e.Gf(y.YE,5),e.Gf(a.NW,5)),2&c){let L;e.iGM(L=e.CRH())&&(s.sort=L.first),e.iGM(L=e.CRH())&&(s.paginator=L.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},features:[e._Bn([{provide:a.ye,useValue:(0,C.pt)("Transactions")}]),e.TTD],decls:38,vars:12,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount_paid"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","num_payments"],["matColumnDef","amount_received"],["matColumnDef","num_invoices"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(c,s){1&c&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"div",3),e.TgZ(4,"div",4)(5,"mat-form-field",5)(6,"mat-select",6),e.NdJ("ngModelChange",function(S){return s.selFilterBy=S})("selectionChange",function(){return s.selFilter="",s.applyFilter()}),e.YNc(7,M,2,2,"mat-option",7),e.qZA()(),e.TgZ(8,"mat-form-field",5)(9,"input",8),e.NdJ("ngModelChange",function(S){return s.selFilter=S})("input",function(){return s.applyFilter()})("keyup",function(){return s.applyFilter()}),e.qZA()()()(),e.TgZ(10,"div",9)(11,"div",10)(12,"table",11,12),e.ynx(14,13),e.YNc(15,i,2,0,"th",14),e.YNc(16,z,3,4,"td",15),e.BQk(),e.ynx(17,16),e.YNc(18,p,2,0,"th",17),e.YNc(19,v,4,4,"td",15),e.BQk(),e.ynx(20,18),e.YNc(21,B,2,0,"th",17),e.YNc(22,Z,4,3,"td",15),e.BQk(),e.ynx(23,19),e.YNc(24,Y,2,0,"th",17),e.YNc(25,W,4,4,"td",15),e.BQk(),e.ynx(26,20),e.YNc(27,I,2,0,"th",17),e.YNc(28,G,4,3,"td",15),e.BQk(),e.ynx(29,21),e.YNc(30,q,6,0,"th",22),e.YNc(31,l,3,0,"td",23),e.BQk(),e.ynx(32,24),e.YNc(33,r,2,1,"td",25),e.BQk(),e.YNc(34,h,1,3,"tr",26),e.YNc(35,V,1,0,"tr",27),e.YNc(36,X,1,0,"tr",28),e.qZA(),e._UZ(37,"mat-paginator",29),e.qZA()()()()),2&c&&(e.xp6(6),e.Q6J("ngModel",s.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(10,K).concat(s.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",s.selFilter),e.xp6(3),e.Q6J("dataSource",s.transactions),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(11,j)),e.xp6(1),e.Q6J("matHeaderRowDef",s.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",s.displayedColumns),e.xp6(1),e.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[N.xw,N.yH,N.Wh,U.KE,E.gD,b.JJ,b.On,H.sg,O.ey,D.Nt,b.Fj,k.$V,m.BZ,y.YE,m.w1,m.fO,m.ge,y.nU,m.Dz,m.ev,E.$L,d.lW,m.mD,m.yh,H.O5,m.Ke,m.Q2,H.mk,g.oO,m.as,m.XQ,m.nj,m.Gk,a.NW],pipes:[H.uU,H.JJ],styles:[""]}),o})()},3396:(J,P,n)=>{n.d(P,{KfU:()=>P2,ctA:()=>n1});var P2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M143.9 398.6C131.4 394.1 124.9 380.3 129.4 367.9C146.9 319.4 198.9 288 256 288C313.1 288 365.1 319.4 382.6 367.9C387.1 380.3 380.6 394.1 368.1 398.6C355.7 403.1 341.9 396.6 337.4 384.1C328.2 358.5 297.2 336 256 336C214.8 336 183.8 358.5 174.6 384.1C170.1 396.6 156.3 403.1 143.9 398.6V398.6zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"]},n1={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M256 352C293.2 352 319.2 334.5 334.4 318.1C343.3 308.4 358.5 307.7 368.3 316.7C378 325.7 378.6 340.9 369.6 350.6C347.7 374.5 309.7 400 256 400C202.3 400 164.3 374.5 142.4 350.6C133.4 340.9 133.1 325.7 143.7 316.7C153.5 307.7 168.7 308.4 177.6 318.1C192.8 334.5 218.8 352 256 352zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"]}}}]); \ No newline at end of file diff --git a/frontend/3rdpartylicenses.txt b/frontend/3rdpartylicenses.txt index 80617c98..0a862def 100644 --- a/frontend/3rdpartylicenses.txt +++ b/frontend/3rdpartylicenses.txt @@ -69,32 +69,6 @@ MIT @angular/router MIT -@babel/runtime -MIT -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - @fortawesome/angular-fontawesome MIT MIT License @@ -2021,7 +1995,7 @@ MIT The MIT License (MIT) Copyright (c) 2014-2015 bpampuch - 2016-2021 liborm85 + 2016-2022 liborm85 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -2204,31 +2178,6 @@ IN THE SOFTWARE. """ -regenerator-runtime -MIT -MIT License - -Copyright (c) 2014-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - resize-observer-polyfill MIT The MIT License (MIT) diff --git a/frontend/564.3d38ee9330b2ba94.js b/frontend/564.3d38ee9330b2ba94.js deleted file mode 100644 index 219c9ba1..00000000 --- a/frontend/564.3d38ee9330b2ba94.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[564],{9564:(Bi,Sr,Ut)=>{"use strict";Ut.r(Sr),Ut.d(Sr,{CLNModule:()=>gf});var ft=Ut(9808),$t=Ut(1402),zn=Ut(8878),A=Ut(5e3),Ct=Ut(7093),T=Ut(5899);function I(r,D){1&r&&A._UZ(0,"mat-progress-bar",3)}let n=(()=>{class r{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(s=>{switch(!0){case s instanceof $t.OD:this.loading=!0;break;case s instanceof $t.m2:case s instanceof $t.gk:case s instanceof $t.Q3:this.loading=!1}})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-root"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["outlet","outlet"],["color","primary","mode","indeterminate"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,I,1,0,"mat-progress-bar",1),A._UZ(2,"router-outlet",null,2),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",s.loading))},directives:[Ct.xw,Ct.yH,Ct.Wh,ft.O5,T.pW,$t.lC],styles:[""],data:{animation:[zn.g]}}),r})();var c=Ut(7579),i=Ut(2722),o=Ut(1365),l=Ut(534),h=Ut(801),a=Ut(7731),B=Ut(9828),E=Ut(5043),u=Ut(5620),C=Ut(62),e=Ut(9444),f=Ut(3954),g=Ut(9224),w=Ut(7423),Q=Ut(2181),p=Ut(5245),Y=Ut(3322);const y=function(r){return{backgroundColor:r}};function d(r,D){if(1&r&&A._UZ(0,"span",6),2&r){const t=A.oxw();A.Q6J("ngStyle",A.VKq(1,y,"#"+(null==t.information?null:t.information.color)))}}function v(r,D){if(1&r&&(A.TgZ(0,"div")(1,"h4",1),A._uU(2,"Color"),A.qZA(),A.TgZ(3,"div",2),A._UZ(4,"span",7),A._uU(5),A.ALo(6,"uppercase"),A.qZA()()),2&r){const t=A.oxw();A.xp6(4),A.Q6J("ngStyle",A.VKq(4,y,"#"+(null==t.information?null:t.information.color))),A.xp6(1),A.hij(" ",A.lcZ(6,2,null==t.information?null:t.information.color)," ")}}function m(r,D){if(1&r&&(A.TgZ(0,"span",2),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(t)}}let P=(()=>{class r{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain||"")+" "+this.commonService.titleCase(t.network||""))}))}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[A.TTD],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div")(2,"h4",1),A._uU(3,"Alias"),A.qZA(),A.TgZ(4,"div",2),A._uU(5),A.YNc(6,d,1,3,"span",3),A.qZA()(),A.YNc(7,v,7,6,"div",4),A.TgZ(8,"div")(9,"h4",1),A._uU(10,"Implementation"),A.qZA(),A.TgZ(11,"div",2),A._uU(12),A.qZA()(),A.TgZ(13,"div")(14,"h4",1),A._uU(15,"Chain"),A.qZA(),A.YNc(16,m,2,1,"span",5),A.qZA()()),2&t&&(A.xp6(5),A.hij(" ",null==s.information?null:s.information.alias," "),A.xp6(1),A.Q6J("ngIf",!s.showColorFieldSeparately),A.xp6(1),A.Q6J("ngIf",s.showColorFieldSeparately),A.xp6(5),A.Oqu(null!=s.information&&s.information.lnImplementation||null!=s.information&&s.information.version?(null==s.information?null:s.information.lnImplementation)+" "+(null==s.information?null:s.information.version):""),A.xp6(4),A.Q6J("ngForOf",s.chains))},directives:[Ct.xw,Ct.yH,Ct.Wh,ft.O5,ft.PC,Y.Zl,ft.sg],pipes:[ft.gd],styles:[""]}),r})();function N(r,D){if(1&r&&(A.TgZ(0,"div",2)(1,"div")(2,"h4",3),A._uU(3,"Lightning"),A.qZA(),A.TgZ(4,"div",4),A._uU(5),A.ALo(6,"number"),A.qZA(),A._UZ(7,"mat-progress-bar",5),A.qZA(),A.TgZ(8,"div")(9,"h4",3),A._uU(10,"On-chain"),A.qZA(),A.TgZ(11,"div",4),A._uU(12),A.ALo(13,"number"),A.qZA(),A._UZ(14,"mat-progress-bar",5),A.qZA(),A.TgZ(15,"div")(16,"h4",3),A._uU(17,"Total"),A.qZA(),A.TgZ(18,"div",4),A._uU(19),A.ALo(20,"number"),A.qZA()()()),2&r){const t=A.oxw();A.xp6(5),A.hij("",A.lcZ(6,5,t.balances.lightning)," Sats"),A.xp6(2),A.s9C("value",t.balances.lightning/t.balances.total*100),A.xp6(5),A.hij("",A.lcZ(13,7,t.balances.onchain)," Sats"),A.xp6(2),A.s9C("value",t.balances.onchain/t.balances.total*100),A.xp6(5),A.hij("",A.lcZ(20,9,t.balances.total)," Sats")}}function F(r,D){if(1&r&&(A.TgZ(0,"div",6)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let L=(()=>{class r{constructor(){this.balances={onchain:0,lightning:0,total:0}}}return r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,N,21,11,"div",0),A.YNc(1,F,3,1,"ng-template",null,1,A.W1O)),2&t){const R=A.MAs(2);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.yH,Ct.Wh,T.pW],pipes:[ft.JJ],styles:[""]}),r})();var U=Ut(7322),eA=Ut(7238),sA=Ut(4834),q=Ut(8129);const BA=function(){return["../connections/channels/open"]},pA=function(r){return{filter:r}};function lA(r,D){if(1&r&&(A.TgZ(0,"div",19)(1,"a",20),A._uU(2),A.ALo(3,"slice"),A.qZA(),A.TgZ(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A._uU(7,"Local:"),A.qZA(),A._uU(8),A.ALo(9,"number"),A.qZA(),A.TgZ(10,"mat-hint",22),A._UZ(11,"fa-icon",23),A._uU(12),A.ALo(13,"number"),A.qZA(),A.TgZ(14,"mat-hint",24)(15,"strong",8),A._uU(16,"Remote:"),A.qZA(),A._uU(17),A.ALo(18,"number"),A.qZA()(),A._UZ(19,"mat-progress-bar",25),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(3);A.xp6(1),A.s9C("matTooltip",t.alias||t.id),A.s9C("matTooltipDisabled",(t.alias||t.id).length<26),A.Q6J("routerLink",A.DdM(23,BA))("state",A.VKq(24,pA,t.id)),A.xp6(1),A.AsE(" ",A.Dn7(3,11,t.alias||t.id,0,24),"",(t.alias||t.id).length>25?"...":""," "),A.xp6(6),A.hij("",A.xi3(9,15,t.msatoshi_to_us/1e3||0,"1.0-0")," Sats"),A.xp6(3),A.Q6J("icon",s.faBalanceScale),A.xp6(1),A.hij(" (",A.lcZ(13,18,t.balancedness||0),") "),A.xp6(5),A.hij("",A.xi3(18,20,t.msatoshi_to_them/1e3||0,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",t.msatoshi_to_us&&t.msatoshi_to_us>0?+t.msatoshi_to_us/(+t.msatoshi_to_us+ +t.msatoshi_to_them)*100:0)}}function cA(r,D){if(1&r&&(A.TgZ(0,"div",17),A.YNc(1,lA,20,26,"div",18),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngForOf",t.activeChannels)}}function gA(r,D){if(1&r&&(A.TgZ(0,"div",3)(1,"div",4)(2,"span",5),A._uU(3,"Total Capacity"),A.qZA(),A.TgZ(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A._uU(7,"Local:"),A.qZA(),A._uU(8),A.ALo(9,"number"),A.qZA(),A.TgZ(10,"mat-hint",9),A._UZ(11,"fa-icon",10),A._uU(12),A.ALo(13,"number"),A.qZA(),A.TgZ(14,"mat-hint",11)(15,"strong",8),A._uU(16,"Remote:"),A.qZA(),A._uU(17),A.ALo(18,"number"),A.qZA()(),A._UZ(19,"mat-progress-bar",12),A.qZA(),A.TgZ(20,"div",13),A._UZ(21,"mat-divider",14),A.qZA(),A.TgZ(22,"div",15),A.YNc(23,cA,2,1,"div",16),A.qZA()()),2&r){const t=A.oxw(),s=A.MAs(2);A.xp6(8),A.hij("",A.xi3(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.xp6(3),A.Q6J("icon",t.faBalanceScale),A.xp6(1),A.hij(" (",A.lcZ(13,10,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),A.xp6(5),A.hij("",A.xi3(18,12,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),A.xp6(4),A.Q6J("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",s)}}function yA(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",26),A._uU(1," No channels available. "),A.TgZ(2,"button",27),A.NdJ("click",function(){return A.CHM(t),A.oxw().goToChannels()}),A._uU(3,"Open Channel"),A.qZA()()}}function FA(r,D){if(1&r&&(A.TgZ(0,"div",28)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let _=(()=>{class r{constructor(t){this.router=t,this.faBalanceScale=h.DL8,this.faDumbbell=h.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,gA,24,15,"div",0),A.YNc(1,yA,4,0,"ng-template",null,1,A.W1O),A.YNc(3,FA,3,1,"ng-template",null,2,A.W1O)),2&t){const R=A.MAs(4);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.Wh,Ct.yH,U.bx,e.BN,eA.gM,T.pW,sA.d,q.$V,ft.sg,$t.yS,w.lW],pipes:[ft.JJ,ft.OU],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}),r})();function MA(r,D){if(1&r&&(A.TgZ(0,"div")(1,"h4",4),A._uU(2,"Transactions"),A.qZA(),A.TgZ(3,"div",5),A._uU(4),A.ALo(5,"number"),A.qZA()()),2&r){const t=A.oxw(2);A.xp6(4),A.Oqu(A.lcZ(5,1,null==t.fees?null:t.fees.totalTxCount))}}function uA(r,D){if(1&r&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4,"Total"),A.qZA(),A.TgZ(5,"div",5),A._uU(6),A.ALo(7,"number"),A.qZA()()(),A.TgZ(8,"div",6),A.YNc(9,MA,6,3,"div",7),A.qZA()()),2&r){const t=A.oxw();A.xp6(6),A.hij("",A.lcZ(7,2,(null==t.fees?null:t.fees.feeCollected)/1e3)," Sats"),A.xp6(3),A.Q6J("ngIf",null==t.fees?null:t.fees.totalTxCount)}}function QA(r,D){if(1&r&&(A.TgZ(0,"div",8)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let NA=(()=>{class r{constructor(){this.totalFees=[{name:"Total",value:0}]}}return r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,uA,10,4,"div",0),A.YNc(1,QA,3,1,"ng-template",null,1,A.W1O)),2&t){const R=A.MAs(2);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.yH,Ct.Wh],pipes:[ft.JJ],styles:[""]}),r})();function bA(r,D){if(1&r&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4,"Active"),A.qZA(),A.TgZ(5,"div",5),A._UZ(6,"span",6),A._uU(7),A.ALo(8,"number"),A.qZA()(),A.TgZ(9,"div")(10,"h4",4),A._uU(11,"Pending"),A.qZA(),A.TgZ(12,"div",5),A._UZ(13,"span",7),A._uU(14),A.ALo(15,"number"),A.qZA()(),A.TgZ(16,"div")(17,"h4",4),A._uU(18,"Inactive"),A.qZA(),A.TgZ(19,"div",5),A._UZ(20,"span",8),A._uU(21),A.ALo(22,"number"),A.qZA()()(),A.TgZ(23,"div",3)(24,"div")(25,"h4",4),A._uU(26,"Capacity"),A.qZA(),A.TgZ(27,"div",5),A._uU(28),A.ALo(29,"number"),A.qZA()(),A.TgZ(30,"div")(31,"h4",4),A._uU(32,"Capacity"),A.qZA(),A.TgZ(33,"div",5),A._uU(34),A.ALo(35,"number"),A.qZA()(),A.TgZ(36,"div")(37,"h4",4),A._uU(38,"Capacity"),A.qZA(),A.TgZ(39,"div",5),A._uU(40),A.ALo(41,"number"),A.qZA()()()()),2&r){const t=A.oxw();A.xp6(7),A.Oqu(A.lcZ(8,6,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.channels)||0)),A.xp6(7),A.Oqu(A.lcZ(15,8,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.channels)||0)),A.xp6(7),A.Oqu(A.lcZ(22,10,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.channels)||0)),A.xp6(7),A.hij("",A.lcZ(29,12,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),A.xp6(6),A.hij("",A.lcZ(35,14,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),A.xp6(6),A.hij("",A.lcZ(41,16,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats")}}function XA(r,D){if(1&r&&(A.TgZ(0,"div",9)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let X=(()=>{class r{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}}return r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,bA,42,18,"div",0),A.YNc(1,XA,3,1,"ng-template",null,1,A.W1O)),2&t){const R=A.MAs(2);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.yH,Ct.Wh],pipes:[ft.JJ],styles:[""]}),r})();function O(r,D){if(1&r&&(A.TgZ(0,"mat-hint",19)(1,"strong",20),A._uU(2,"Capacity: "),A.qZA(),A._uU(3),A.ALo(4,"number"),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(3),A.hij("",A.xi3(4,1,t.msatoshi_to_them/1e3||0,"1.0-0")," Sats")}}function $(r,D){if(1&r&&(A.TgZ(0,"mat-hint",19)(1,"strong",20),A._uU(2,"Capacity: "),A.qZA(),A._uU(3),A.ALo(4,"number"),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(3),A.hij("",A.xi3(4,1,t.msatoshi_to_us/1e3||0,"1.0-0")," Sats")}}function W(r,D){if(1&r&&A._UZ(0,"mat-progress-bar",21),2&r){const t=A.oxw().$implicit,s=A.oxw(3);A.s9C("value",s.totalLiquidity>0?(+t.msatoshi_to_them/1e3||0)/s.totalLiquidity*100:0)}}function hA(r,D){if(1&r&&A._UZ(0,"mat-progress-bar",21),2&r){const t=A.oxw().$implicit,s=A.oxw(3);A.s9C("value",s.totalLiquidity>0?(+t.msatoshi_to_us/1e3||0)/s.totalLiquidity*100:0)}}const mA=function(){return["../connections/channels/open"]},nA=function(r){return{filter:r}};function EA(r,D){if(1&r&&(A.TgZ(0,"div",14)(1,"a",15),A._uU(2),A.ALo(3,"slice"),A.qZA(),A.TgZ(4,"div",16),A.YNc(5,O,5,4,"mat-hint",17),A.YNc(6,$,5,4,"mat-hint",17),A.qZA(),A.YNc(7,W,1,1,"mat-progress-bar",18),A.YNc(8,hA,1,1,"mat-progress-bar",18),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(3);A.xp6(1),A.s9C("matTooltip",t.alias||t.id),A.s9C("matTooltipDisabled",(t.alias||t.id).length<26),A.Q6J("routerLink",A.DdM(14,mA))("state",A.VKq(15,nA,t.id)),A.xp6(1),A.AsE(" ",A.Dn7(3,10,t.alias||t.id,0,24),"",(t.alias||t.id).length>25?"...":""," "),A.xp6(3),A.Q6J("ngIf","In"===s.direction),A.xp6(1),A.Q6J("ngIf","Out"===s.direction),A.xp6(1),A.Q6J("ngIf","In"===s.direction),A.xp6(1),A.Q6J("ngIf","Out"===s.direction)}}function GA(r,D){if(1&r&&(A.TgZ(0,"div",12),A.YNc(1,EA,9,17,"div",13),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngForOf",t.activeChannels)}}const et=function(r,D,t){return{"mb-4":r,"mb-2":D,"mb-1":t}};function st(r,D){if(1&r&&(A.TgZ(0,"div",3)(1,"div",4)(2,"span",5),A._uU(3,"Total Capacity"),A.qZA(),A.TgZ(4,"mat-hint",6),A._uU(5),A.ALo(6,"number"),A.qZA(),A._UZ(7,"mat-progress-bar",7),A.qZA(),A.TgZ(8,"div",8),A._UZ(9,"mat-divider",9),A.qZA(),A.TgZ(10,"div",10),A.YNc(11,GA,2,1,"div",11),A.qZA()()),2&r){const t=A.oxw(),s=A.MAs(2);A.Q6J("ngClass",A.kEZ(7,et,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.xp6(5),A.hij("",A.xi3(6,4,t.totalLiquidity,"1.0-0")," Sats"),A.xp6(6),A.Q6J("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",s)}}function TA(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",24),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).goToChannels()}),A._uU(1,"Open Channel"),A.qZA()}}function it(r,D){if(1&r&&(A.TgZ(0,"div",22),A._uU(1," No channels available. "),A.YNc(2,TA,2,0,"button",23),A.qZA()),2&r){const t=A.oxw();A.xp6(2),A.Q6J("ngIf","Out"===t.direction)}}function vt(r,D){if(1&r&&(A.TgZ(0,"div",25)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let It=(()=>{class r{constructor(t,s){this.router=t,this.commonService=s,this.screenSize="",this.screenSizeEnum=a.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0),A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,st,12,11,"div",0),A.YNc(1,it,3,1,"ng-template",null,1,A.W1O),A.YNc(3,vt,3,1,"ng-template",null,2,A.W1O)),2&t){const R=A.MAs(4);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.Wh,Ct.yH,ft.mk,Y.oO,U.bx,T.pW,sA.d,q.$V,ft.sg,$t.yS,eA.gM,w.lW],pipes:[ft.JJ,ft.OU],styles:[""]}),r})();var ht=Ut(3251),JA=Ut(9300),WA=Ut(6087),rt=Ut(4847),xA=Ut(2075),Mt=Ut(8966),Et=Ut(429),Tt=Ut(6642),OA=Ut(3075),H=Ut(7531),k=Ut(3390),b=Ut(6534),CA=Ut(4107),wA=Ut(508),RA=Ut(2368);function rA(r,D){if(1&r&&(A.TgZ(0,"mat-option",27),A._uU(1),A.ALo(2,"titlecase"),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(A.lcZ(2,2,t))}}function gt(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.invoiceError)}}function Yt(r,D){if(1&r&&(A.TgZ(0,"div",28),A._UZ(1,"fa-icon",29),A.YNc(2,gt,2,1,"span",30),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.invoiceError)}}let j=(()=>{class r{constructor(t,s,R,dA,ot,Ft){this.dialogRef=t,this.data=s,this.store=R,this.decimalPipe=dA,this.commonService=ot,this.actions=Ft,this.faExclamationTriangle=h.eHv,this.selNode={},this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=a.IV,this.timeUnitEnum=a.Qk,this.timeUnits=a.LO,this.selTimeUnit=a.Qk.SECS,this.invoiceError="",this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(B.lw).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,i.R)(this.unSubs[2]),(0,JA.h)(t=>t.type===a.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===t.payload.action&&(t.payload.status===a.Bn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===a.Bn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let s=this.expiry?this.expiry:3600;this.selTimeUnit!==a.Qk.SECS&&this.expiry&&(s=this.commonService.convertTime(this.expiry,this.selTimeUnit,a.Qk.SECS)),this.store.dispatch((0,Et.Rd)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount:1e3*this.invoiceValue,description:this.description,expiry:s,private:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=a.Qk.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,a.NT.SATS,a.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,i.R)(this.unSubs[3])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,a.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(u.yh),A.Y36(ft.JJ),A.Y36(C.v),A.Y36(Tt.eX))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-create-invoices"]],decls:39,vars:16,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","placeholder","Description","tabindex","2","name","description",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxFlex","40"],["matInput","","placeholder","Amount","type","number","tabindex","3","name","invoiceValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","30"],["matInput","","name","expiry","placeholder","Expiry","type","number","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fxFlex","26"],["tabindex","5","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"mt-2"],["tabindex","6","color","primary","name","private",3,"ngModel","ngModelChange"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(t,s){if(1&t){const R=A.EpF();A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Create Invoice"),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),A.NdJ("ngModelChange",function(ot){return s.description=ot}),A.qZA()(),A.TgZ(13,"div",11)(14,"mat-form-field",12)(15,"input",13),A.NdJ("ngModelChange",function(ot){return s.invoiceValue=ot})("keyup",function(){return s.onInvoiceValueChange()}),A.qZA(),A.TgZ(16,"span",14),A._uU(17," Sats "),A.qZA(),A.TgZ(18,"mat-hint"),A._uU(19),A.qZA()(),A.TgZ(20,"mat-form-field",15)(21,"input",16),A.NdJ("ngModelChange",function(ot){return s.expiry=ot}),A.qZA(),A.TgZ(22,"span",14),A._uU(23),A.ALo(24,"titlecase"),A.qZA()(),A.TgZ(25,"mat-form-field",17)(26,"mat-select",18),A.NdJ("selectionChange",function(ot){return s.onTimeUnitChange(ot)}),A.YNc(27,rA,3,4,"mat-option",19),A.qZA()()(),A.TgZ(28,"div",20)(29,"mat-slide-toggle",21),A.NdJ("ngModelChange",function(ot){return s.private=ot}),A._uU(30,"Private Routing Hints"),A.qZA(),A.TgZ(31,"mat-icon",22),A._uU(32,"info_outline"),A.qZA()(),A.YNc(33,Yt,3,2,"div",23),A.TgZ(34,"div",24)(35,"button",25),A.NdJ("click",function(){return s.resetData()}),A._uU(36,"Clear Field"),A.qZA(),A.TgZ(37,"button",26),A.NdJ("click",function(){A.CHM(R);const ot=A.MAs(10);return s.onAddInvoice(ot)}),A._uU(38,"Create Invoice"),A.qZA()()()()()()}2&t&&(A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(6),A.Q6J("ngModel",s.description),A.xp6(3),A.Q6J("ngModel",s.invoiceValue)("step",100)("min",1),A.xp6(4),A.Oqu(s.invoiceValueHint),A.xp6(2),A.Q6J("ngModel",s.expiry)("step",s.selTimeUnit===s.timeUnitEnum.SECS?300:s.selTimeUnit===s.timeUnitEnum.MINS?10:s.selTimeUnit===s.timeUnitEnum.HOURS?2:1)("min",1),A.xp6(2),A.hij(" ",A.lcZ(24,14,s.selTimeUnit)," "),A.xp6(3),A.Q6J("value",s.selTimeUnit),A.xp6(1),A.Q6J("ngForOf",s.timeUnits),A.xp6(2),A.Q6J("ngModel",s.private),A.xp6(4),A.Q6J("ngIf",""!==s.invoiceError))},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,Mt.ZT,g.dn,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,k.h,OA.JJ,OA.On,OA.wV,OA.qQ,b.q,U.R9,U.bx,CA.gD,ft.sg,wA.ey,RA.Rr,p.Hw,eA.gM,ft.O5,e.BN],pipes:[ft.rS],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();var qA=Ut(5566),KA=Ut(7861),DA=Ut(3093);function jA(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"input",7),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().description=R}),A.qZA()(),A.TgZ(4,"mat-form-field",8)(5,"input",9),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().invoiceValue=R})("keyup",function(){return A.CHM(t),A.oxw().onInvoiceValueChange()}),A.qZA(),A.TgZ(6,"span",10),A._uU(7," Sats "),A.qZA(),A.TgZ(8,"mat-hint"),A._uU(9),A.qZA()(),A.TgZ(10,"div",11)(11,"button",12),A.NdJ("click",function(){return A.CHM(t),A.oxw().resetData()}),A._uU(12,"Clear Field"),A.qZA(),A.TgZ(13,"button",13),A.NdJ("click",function(){A.CHM(t);const R=A.MAs(1);return A.oxw().onAddInvoice(R)}),A._uU(14,"Create Invoice"),A.qZA()()()}if(2&r){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.description),A.xp6(2),A.Q6J("ngModel",t.invoiceValue)("step",100)("min",1),A.xp6(4),A.Oqu(t.invoiceValueHint)}}function lt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",14)(1,"button",15),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDeleteExpiredInvoices()}),A._uU(2,"Delete Expired"),A.qZA(),A.TgZ(3,"button",16),A.NdJ("click",function(){return A.CHM(t),A.oxw().openCreateInvoiceModal()}),A._uU(4,"Create Invoice"),A.qZA()()}}function bt(r,D){1&r&&A._UZ(0,"mat-progress-bar",46)}function yt(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1," Expiry Date "),A.qZA())}const zt=function(r){return{"mr-0":r}};function Zt(r,D){if(1&r&&A._UZ(0,"span",52),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,zt,t.screenSize===t.screenSizeEnum.XS))}}function be(r,D){if(1&r&&A._UZ(0,"span",53),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,zt,t.screenSize===t.screenSizeEnum.XS))}}function ae(r,D){if(1&r&&A._UZ(0,"span",54),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,zt,t.screenSize===t.screenSizeEnum.XS))}}function ee(r,D){if(1&r&&(A.TgZ(0,"td",48),A.YNc(1,Zt,1,3,"span",49),A.YNc(2,be,1,3,"span",50),A.YNc(3,ae,1,3,"span",51),A._uU(4),A.ALo(5,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Q6J("ngIf","paid"===(null==t?null:t.status)),A.xp6(1),A.Q6J("ngIf","unpaid"===(null==t?null:t.status)),A.xp6(1),A.Q6J("ngIf","expired"===(null==t?null:t.status)),A.xp6(1),A.hij(" ",A.xi3(5,4,1e3*(null==t?null:t.expires_at),"dd/MMM/y HH:mm")," ")}}function xe(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1," Date Settled "),A.qZA())}function Ge(r,D){if(1&r&&(A.TgZ(0,"td",48),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.paid_at),"dd/MMM/y HH:mm")||"-")}}function ze(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1," Type "),A.qZA())}function yn(r,D){if(1&r&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11&&!t.label.includes("keysend-")?"Bolt11":"Keysend")}}function xn(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1," Description "),A.qZA())}const ie=function(r){return{"max-width":r}};function rn(r,D){if(1&r&&(A.TgZ(0,"td",48)(1,"div",55)(2,"span",56),A._uU(3),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ie,s.screenSize===s.screenSizeEnum.XS?"10rem":"32rem")),A.xp6(2),A.Oqu(null==t?null:t.description)}}function Ne(r,D){1&r&&(A.TgZ(0,"th",57),A._uU(1," Amount (Sats) "),A.qZA())}function an(r,D){if(1&r&&(A.TgZ(0,"td",48)(1,"span",58),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi)/1e3,(null==t?null:t.msatoshi)<1e3?"1.0-4":"1.0-0"),"")}}function $e(r,D){1&r&&(A.TgZ(0,"th",57),A._uU(1," Amount Settled (Sats) "),A.qZA())}function Hn(r,D){if(1&r&&(A.TgZ(0,"td",48)(1,"span",58),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_received)/1e3,(null==t?null:t.msatoshi_received)<1e3?"1.0-4":"1.0-0"),"")}}function Jn(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",59)(1,"div",60)(2,"mat-select",61),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",62),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}const kt=function(r){return{"px-3":r}};function Gt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",63)(1,"div",64)(2,"mat-select",65),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",62),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw(2).onInvoiceClick(dA)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",62),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw(2).onRefreshInvoice(dA)}),A._uU(7,"Refresh"),A.qZA()()()()}if(2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,kt,t.screenSize!==t.screenSizeEnum.XS))}}function _t(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No invoice available."),A.qZA())}function le(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting invoices..."),A.qZA())}function mn(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function pn(r,D){if(1&r&&(A.TgZ(0,"td",66),A.YNc(1,_t,2,0,"p",67),A.YNc(2,le,2,0,"p",67),A.YNc(3,mn,2,1,"p",67),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const Tn=function(r){return{"display-none":r}};function Zn(r,D){if(1&r&&A._UZ(0,"tr",68),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Tn,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function fr(r,D){1&r&&A._UZ(0,"tr",69)}function Nn(r,D){1&r&&A._UZ(0,"tr",70)}const ZA=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},YA=function(){return["no_invoice"]};function tt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",17)(1,"div",18)(2,"div",19),A._UZ(3,"fa-icon",20),A.TgZ(4,"span",21),A._uU(5,"Invoices History"),A.qZA()(),A.TgZ(6,"mat-form-field",22)(7,"input",23),A.NdJ("keyup",function(){return A.CHM(t),A.oxw().applyFilter()})("ngModelChange",function(R){return A.CHM(t),A.oxw().selFilter=R}),A.qZA()()(),A.TgZ(8,"div",24),A.YNc(9,bt,1,0,"mat-progress-bar",25),A.TgZ(10,"table",26,27),A.ynx(12,28),A.YNc(13,yt,2,0,"th",29),A.YNc(14,ee,6,7,"td",30),A.BQk(),A.ynx(15,31),A.YNc(16,xe,2,0,"th",29),A.YNc(17,Ge,3,4,"td",30),A.BQk(),A.ynx(18,32),A.YNc(19,ze,2,0,"th",29),A.YNc(20,yn,2,1,"td",30),A.BQk(),A.ynx(21,33),A.YNc(22,xn,2,0,"th",29),A.YNc(23,rn,4,4,"td",30),A.BQk(),A.ynx(24,34),A.YNc(25,Ne,2,0,"th",35),A.YNc(26,an,4,4,"td",30),A.BQk(),A.ynx(27,36),A.YNc(28,$e,2,0,"th",35),A.YNc(29,Hn,4,4,"td",30),A.BQk(),A.ynx(30,37),A.YNc(31,Jn,6,0,"th",38),A.YNc(32,Gt,8,3,"td",39),A.BQk(),A.ynx(33,40),A.YNc(34,pn,4,3,"td",41),A.BQk(),A.YNc(35,Zn,1,3,"tr",42),A.YNc(36,fr,1,0,"tr",43),A.YNc(37,Nn,1,0,"tr",44),A.qZA()(),A._UZ(38,"mat-paginator",45),A.qZA()}if(2&r){const t=A.oxw();A.xp6(3),A.Q6J("icon",t.faHistory),A.xp6(4),A.Q6J("ngModel",t.selFilter),A.xp6(2),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.invoices)("ngClass",A.VKq(12,ZA,""!==t.errorMessage)),A.xp6(25),A.Q6J("matFooterRowDef",A.DdM(14,YA)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let UA=(()=>{class r{constructor(t,s,R,dA,ot,Ft,Ot){this.logger=t,this.store=s,this.decimalPipe=R,this.commonService=dA,this.rtlEffects=ot,this.datePipe=Ft,this.actions=Ot,this.calledFrom="transactions",this.faHistory=h.qO$,this.selNode={},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoiceJSONArr=[],this.information={},this.flgSticky=!1,this.private=!1,this.expiryStep=100,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["expires_at","msatoshi","actions"]):this.screenSize===a.cu.SM?(this.flgSticky=!1,this.displayedColumns=["expires_at","description","msatoshi","actions"]):this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["expires_at","type","description","msatoshi","msatoshi_received","actions"]):(this.flgSticky=!0,this.displayedColumns=["expires_at","paid_at","type","description","msatoshi","msatoshi_received","actions"])}ngOnInit(){this.store.select(B.lw).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(B.gc).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=t.listInvoices.invoices||[],this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(t)}),this.actions.pipe((0,i.R)(this.unSubs[3]),(0,JA.h)(t=>t.type===a.AB.SET_LOOKUP_CLN||t.type===a.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===a.AB.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,KA.qR)({payload:{data:{pageSize:this.pageSize,component:j}}}))}onAddInvoice(t){this.invoiceValue||(this.invoiceValue=0);const s=this.expiry?this.expiry:3600;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,Et.Rd)({payload:{label:this.newlyAddedInvoiceMemo,amount:1e3*this.invoiceValue,description:this.description,expiry:s,private:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,KA.c1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[4])).subscribe(t=>{t&&this.store.dispatch((0,Et.g6)({payload:null}))})}onInvoiceClick(t){this.store.dispatch((0,KA.qR)({payload:{data:{invoice:{msatoshi:t.msatoshi,label:t.label,expires_at:t.expires_at,paid_at:t.paid_at,bolt11:t.bolt11,payment_hash:t.payment_hash,description:t.description,status:t.status,msatoshi_received:t.msatoshi_received},newlyAdded:!1,component:qA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}onInvoiceValueChange(){this.selNode.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,a.NT.SATS,a.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,i.R)(this.unSubs[5])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,a.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onRefreshInvoice(t){this.store.dispatch((0,Et.n7)({payload:t.label}))}updateInvoicesData(t){var s;this.invoiceJSONArr=null===(s=this.invoiceJSONArr)||void 0===s?void 0:s.map(R=>R.label===t.label?t:R)}loadInvoicesTable(t){this.invoices=new xA.by(t?[...t]:[]),this.invoices.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.invoices.sort=this.sort,this.invoices.filterPredicate=(s,R)=>{var dA,ot;return((null===(dA=this.datePipe.transform(new Date(1e3*(s.paid_at||0)),"dd/MMM/YYYY HH:mm"))||void 0===dA?void 0:dA.toLowerCase())+(null===(ot=this.datePipe.transform(new Date(1e3*(s.expires_at||0)),"dd/MMM/YYYY HH:mm"))||void 0===ot?void 0:ot.toLowerCase())+(s.bolt12?"bolt12":s.bolt11?"bolt11":"keysend")+JSON.stringify(s).toLowerCase()).includes(R)},this.invoices.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(ft.JJ),A.Y36(C.v),A.Y36(DA.V),A.Y36(ft.uU),A.Y36(Tt.eX))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},inputs:{calledFrom:"calledFrom"},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Invoices")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","placeholder","Description","tabindex","2","name","description",3,"ngModel","ngModelChange"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","name","invoiceValue","type","number","tabindex","3",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],["fxLayout","row"],["mat-stroked-button","","color","warn","tabindex","7","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","expires_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","paid_at"],["matColumnDef","type"],["matColumnDef","description"],["matColumnDef","msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_received"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["class","dot green","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red",3,"ngClass"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,jA,15,5,"form",1),A.YNc(2,lt,5,0,"div",2),A.YNc(3,tt,39,15,"div",3),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf","home"===s.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===s.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===s.calledFrom))},directives:[Ct.xw,Ct.yH,Ct.Wh,ft.O5,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,OA.wV,OA.qQ,b.q,U.R9,U.bx,w.lW,e.BN,q.$V,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,eA.gM,ft.PC,Y.Zl,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.uU,ft.JJ],styles:[".mat-column-description[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-description[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();var PA=Ut(5698),zA=Ut(8104),HA=Ut(9814),$A=Ut(7446);const LA=["sendPaymentForm"],at=["paymentAmt"],VA=["offerAmt"],dt=["paymentReq"],St=["offerReq"];function Pt(r,D){if(1&r&&(A.TgZ(0,"mat-radio-button",22),A._uU(1,"Offer"),A.qZA()),2&r){const t=A.oxw(2);A.s9C("value",t.paymentTypes.OFFER)}}function Kt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-radio-group",18),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().paymentType=R})("change",function(){return A.CHM(t),A.oxw().onPaymentTypeChange()}),A.TgZ(1,"mat-radio-button",19),A._uU(2,"Invoice"),A.qZA(),A.TgZ(3,"mat-radio-button",20),A._uU(4,"Keysend"),A.qZA(),A.YNc(5,Pt,2,1,"mat-radio-button",21),A.qZA()}if(2&r){const t=A.oxw();A.Q6J("ngModel",t.paymentType),A.xp6(1),A.s9C("value",t.paymentTypes.INVOICE),A.xp6(2),A.s9C("value",t.paymentTypes.KEYSEND),A.xp6(2),A.Q6J("ngIf",t.selNode.enableOffers)}}function Xt(r,D){1&r&&A.GkF(0)}function re(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentError)}}function wt(r,D){if(1&r&&(A.TgZ(0,"div",23),A._UZ(1,"fa-icon",24),A.YNc(2,re,2,1,"span",25),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.paymentError)}}function Rt(r,D){if(1&r&&(A.TgZ(0,"mat-hint"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentDecodedHint)}}function Vt(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment request is required."),A.qZA())}function Jt(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentDecodedHint)}}function Be(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment amount is required."),A.qZA())}function qt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",29,30),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw(2).paymentAmount=R})("change",function(R){return A.CHM(t),A.oxw(2).onAmountChange(R)}),A.qZA(),A.TgZ(3,"mat-hint"),A._uU(4,"It is a zero amount invoice, enter amount to be paid."),A.qZA(),A.YNc(5,Be,2,0,"mat-error",25),A.qZA()}if(2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.paymentAmount),A.xp6(4),A.Q6J("ngIf",!t.paymentAmount)}}function he(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"textarea",26,27),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().onPaymentRequestEntry(R)})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(3,Rt,2,1,"mat-hint",25),A.YNc(4,Vt,2,0,"mat-error",25),A.YNc(5,Jt,2,1,"mat-error",25),A.qZA(),A.YNc(6,qt,6,2,"mat-form-field",28)}if(2&r){const t=A.MAs(2),s=A.oxw();A.xp6(1),A.Q6J("ngModel",s.paymentRequest),A.xp6(2),A.Q6J("ngIf",s.paymentRequest&&""!==s.paymentDecodedHint),A.xp6(1),A.Q6J("ngIf",!s.paymentRequest),A.xp6(1),A.Q6J("ngIf",null==t.errors?null:t.errors.decodeError),A.xp6(1),A.Q6J("ngIf",s.zeroAmtInvoice)}}function ue(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Pubkey is required."),A.qZA())}function De(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Keysend amount is required."),A.qZA())}function He(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",31),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().pubkey=R}),A.qZA(),A.YNc(2,ue,2,0,"mat-error",25),A.qZA(),A.TgZ(3,"mat-form-field",1)(4,"input",32,33),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().keysendAmount=R}),A.qZA(),A.YNc(6,De,2,0,"mat-error",25),A.qZA()}if(2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngModel",t.pubkey),A.xp6(1),A.Q6J("ngIf",!t.pubkey),A.xp6(2),A.Q6J("ngModel",t.keysendAmount),A.xp6(2),A.Q6J("ngIf",!t.keysendAmount)}}function Se(r,D){if(1&r&&(A.TgZ(0,"mat-hint"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.offerDecodedHint)}}function Fe(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Offer request is required."),A.qZA())}function Ue(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.offerDecodedHint)}}function en(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Offer amount is required."),A.qZA())}function Fn(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",40,41),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw(2).offerAmount=R})("change",function(R){return A.CHM(t),A.oxw(2).onAmountChange(R)}),A.qZA(),A.TgZ(3,"mat-hint"),A._uU(4,"It is a zero amount offer, enter amount to be paid."),A.qZA(),A.YNc(5,en,2,0,"mat-error",25),A.qZA()}if(2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.offerAmount),A.xp6(4),A.Q6J("ngIf",!t.offerAmount)}}function sn(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",42)(1,"input",43),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw(2).offerTitle=R}),A.qZA()()}if(2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.offerTitle)}}function In(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"textarea",34,35),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().onPaymentRequestEntry(R)})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(3,Se,2,1,"mat-hint",25),A.YNc(4,Fe,2,0,"mat-error",25),A.YNc(5,Ue,2,1,"mat-error",25),A.qZA(),A.YNc(6,Fn,6,2,"mat-form-field",28),A.TgZ(7,"div",36)(8,"mat-checkbox",37),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().flgSaveToDB=R}),A._uU(9,"Bookmark Offer"),A.qZA(),A.TgZ(10,"mat-icon",38),A._uU(11,"info_outline"),A.qZA()(),A.YNc(12,sn,2,1,"mat-form-field",39)}if(2&r){const t=A.MAs(2),s=A.oxw();A.xp6(1),A.Q6J("ngModel",s.offerRequest),A.xp6(2),A.Q6J("ngIf",s.offerRequest&&""!==s.offerDecodedHint),A.xp6(1),A.Q6J("ngIf",!s.offerRequest),A.xp6(1),A.Q6J("ngIf",null==t.errors?null:t.errors.decodeError),A.xp6(1),A.Q6J("ngIf",s.zeroAmtOffer),A.xp6(2),A.Q6J("ngModel",s.flgSaveToDB),A.xp6(4),A.Q6J("ngIf",s.flgSaveToDB||""!==s.offerTitle)}}let Yn=(()=>{class r{constructor(t,s,R,dA,ot,Ft,Ot,qe){this.dialogRef=t,this.data=s,this.store=R,this.logger=dA,this.commonService=ot,this.decimalPipe=Ft,this.actions=Ot,this.dataService=qe,this.faExclamationTriangle=h.eHv,this.paymentTypes=a.IX,this.paymentType=a.IX.INVOICE,this.selNode={},this.offerDecoded={},this.offerRequest="",this.offerDecodedHint="",this.offerDescription="",this.offerVendor="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=a.Vc[0],this.feeLimitTypes=a.Vc,this.paymentError="",this.isCompatibleVersion=!1,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x]}set payReq(t){t&&(this.paymentReq=t)}set offrReq(t){t&&(this.offerReq=t)}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case a.IX.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case a.IX.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case a.IX.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(B.lw).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.isCompatibleVersion=this.commonService.isVersionCompatible(t.version,"0.9.0")&&this.commonService.isVersionCompatible(t.api_version,"0.4.0")}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.activeChannels=t.activeChannels,this.logger.info(t)}),this.actions.pipe((0,i.R)(this.unSubs[3]),(0,JA.h)(t=>t.type===a.AB.UPDATE_API_CALL_STATUS_CLN||t.type===a.AB.SEND_PAYMENT_STATUS_CLN||t.type===a.AB.SET_OFFER_INVOICE_CLN)).subscribe(t=>{t.type===a.AB.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),t.type===a.AB.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=t.payload,this.sendPayment()),t.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===a.Bn.ERROR&&("SendPayment"===t.payload.action&&(delete this.paymentDecoded.msatoshi,this.paymentError=t.payload.message),"DecodePayment"===t.payload.action&&(this.paymentType===a.IX.INVOICE&&(this.paymentDecodedHint="ERROR: "+t.payload.message,this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===a.IX.OFFER&&(this.offerDecodedHint="ERROR: "+t.payload.message,this.offerReq.control.setErrors({decodeError:!0}))),"FetchOfferInvoice"===t.payload.action&&this.paymentType===a.IX.OFFER&&(this.paymentError=t.payload.message))})}onSendPayment(){switch(this.paymentType){case a.IX.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case a.IX.INVOICE:if(!this.paymentRequest||this.zeroAmtInvoice&&(0===this.paymentAmount||!this.paymentAmount))return this.paymentReq.control.markAsTouched(),this.paymentAmt.control.markAsTouched(),!0;this.paymentDecoded.created_at?this.sendPayment():(this.resetInvoiceDetails(),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,i.R)(this.unSubs[4])).subscribe(t=>{"bolt12 offer"===t.type&&t.offer_id?(this.paymentDecodedHint="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=t,this.setPaymentDecodedDetails())}));break;case a.IX.OFFER:if(!this.offerRequest||this.zeroAmtOffer&&(0===this.offerAmount||!this.offerAmount))return this.offerReq.control.markAsTouched(),this.offerAmt.control.markAsTouched(),!0;this.offerDecoded.offer_id?this.sendPayment():(this.resetOfferDetails(),this.dataService.decodePayment(this.offerRequest,!0).pipe((0,i.R)(this.unSubs[5])).subscribe(t=>{"bolt11 invoice"===t.type&&t.payment_hash?(this.offerDecodedHint="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=t,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,Et.oV)({payload:{uiMessage:a.m6.SEND_KEYSEND,paymentType:a.IX.KEYSEND,pubkey:this.pubkey,amount:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===a.IX.INVOICE?this.store.dispatch((0,Et.oV)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:a.m6.SEND_PAYMENT,paymentType:a.IX.INVOICE,invoice:this.paymentRequest,amount:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:a.m6.SEND_PAYMENT,paymentType:a.IX.INVOICE,invoice:this.paymentRequest,fromDialog:!0}})):this.paymentType===a.IX.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,Et.oV)({payload:{uiMessage:a.m6.SEND_PAYMENT,paymentType:a.IX.OFFER,invoice:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,vendor:this.offerVendor,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,Et.eM)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,msatoshi:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(t){this.paymentType===a.IX.INVOICE?(this.paymentRequest=t,this.resetInvoiceDetails()):this.paymentType===a.IX.OFFER&&(this.offerRequest=t,this.resetOfferDetails()),t.length>100&&this.dataService.decodePayment(t,!0).pipe((0,i.R)(this.unSubs[6])).subscribe(s=>{this.paymentType===a.IX.INVOICE?"bolt12 offer"===s.type&&s.offer_id?(this.paymentDecodedHint="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=s,this.setPaymentDecodedDetails()):this.paymentType===a.IX.OFFER&&("bolt11 invoice"===s.type&&s.payment_hash?(this.offerDecodedHint="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=s,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHint="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(t){this.paymentType===a.IX.INVOICE&&(delete this.paymentDecoded.msatoshi,this.paymentDecoded.msatoshi=+t.target.value),this.paymentType===a.IX.OFFER&&(delete this.offerDecoded.amount,delete this.offerDecoded.amount_msat,this.offerDecoded.amount=1e3*+t.target.value,this.offerDecoded.amount_msat=t.target.value+"msat")}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHint="",this.offerDecodedHint="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.amount_msat?(this.offerDecoded.amount_msat="0msat",this.offerDecoded.amount=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.description||"",this.offerVendor=this.offerDecoded.vendor?this.offerDecoded.vendor:this.offerDecoded.issuer?this.offerDecoded.issuer:"",this.offerDecodedHint="Zero Amount Offer | Description: "+this.offerDecoded.description):(this.zeroAmtOffer=!1,this.offerDecoded.amount=this.offerDecoded.amount?+this.offerDecoded.amount:this.offerDecoded.amount_msat?+this.offerDecoded.amount_msat.slice(0,-4):null,this.offerAmount=this.offerDecoded.amount?this.offerDecoded.amount/1e3:0,this.offerDescription=this.offerDecoded.description||"",this.offerVendor=this.offerDecoded.vendor?this.offerDecoded.vendor:this.offerDecoded.issuer?this.offerDecoded.issuer:"",this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(this.offerAmount,a.NT.SATS,a.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,i.R)(this.unSubs[7])).subscribe({next:t=>{this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats ("+t.symbol+this.decimalPipe.transform(t.OTHER?t.OTHER:0,a.Xz.OTHER)+") | Description: "+this.offerDecoded.description},error:t=>{this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.description+". Unable to convert currency."}}):this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.description)}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.msatoshi?(this.paymentDecoded.msatoshi=0,this.zeroAmtInvoice=!0,this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0,a.NT.SATS,a.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,i.R)(this.unSubs[8])).subscribe({next:t=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats ("+t.symbol+this.decimalPipe.transform(t.OTHER?t.OTHER:0,a.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:t=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description)}resetData(){switch(this.paymentType){case a.IX.KEYSEND:this.pubkey="",this.keysendAmount=null;break;case a.IX.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=a.Vc[0],this.resetInvoiceDetails();break;case a.IX.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(u.yh),A.Y36(E.mQ),A.Y36(C.v),A.Y36(ft.JJ),A.Y36(Tt.eX),A.Y36(zA.D))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(t,s){if(1&t&&(A.Gf(LA,5),A.Gf(at,5),A.Gf(VA,5),A.Gf(dt,5),A.Gf(St,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first),A.iGM(R=A.CRH())&&(s.paymentAmt=R.first),A.iGM(R=A.CRH())&&(s.offerAmt=R.first),A.iGM(R=A.CRH())&&(s.payReq=R.first),A.iGM(R=A.CRH())&&(s.offrReq=R.first)}},decls:25,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","12","fxFlex","10","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","my-1","color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",3,"ngModel","ngModelChange","change",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],["sendPaymentForm","ngForm"],[4,"ngTemplateOutlet"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["autoFocus","","matInput","","placeholder","Payment Request","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],["fxFlex","100",4,"ngIf"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","5","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],["autoFocus","","matInput","","placeholder","Pubkey","name","pubkey","tabindex","4","required","",3,"ngModel","ngModelChange"],["matInput","","placeholder","Amount (Sats)","name","keysendAmount","tabindex","5","required","",3,"ngModel","ngModelChange"],["keysendAmt","ngModel"],["autoFocus","","matInput","","placeholder","Offer Request","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["offerReq","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModel","ngModelChange"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","placeholder","Amount (Sats)","name","amountoffer","tabindex","5","required","",3,"ngModel","ngModelChange","change"],["offerAmt","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","placeholder","Title to Save","tabindex","7",3,"ngModel","ngModelChange"]],template:function(t,s){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Send Payment"),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6),A.YNc(9,Kt,6,4,"mat-radio-group",7),A.TgZ(10,"form",8,9),A.NdJ("submit",function(){return s.onSendPayment()})("reset",function(){return s.resetData()}),A.YNc(12,Xt,1,0,"ng-container",10),A.YNc(13,wt,3,2,"div",11),A.TgZ(14,"div",12)(15,"button",13),A._uU(16,"Clear Fields"),A.qZA(),A.TgZ(17,"button",14),A._uU(18,"Send Payment"),A.qZA()()()()()(),A.YNc(19,he,7,5,"ng-template",null,15,A.W1O),A.YNc(21,He,7,4,"ng-template",null,16,A.W1O),A.YNc(23,In,13,7,"ng-template",null,17,A.W1O)),2&t){const R=A.MAs(20),dA=A.MAs(22),ot=A.MAs(24);A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(3),A.Q6J("ngIf",s.isCompatibleVersion),A.xp6(3),A.Q6J("ngTemplateOutlet",s.paymentType===s.paymentTypes.KEYSEND?dA:s.paymentType===s.paymentTypes.OFFER?ot:R),A.xp6(1),A.Q6J("ngIf",""!==s.paymentError)}},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,Mt.ZT,g.dn,ft.O5,HA.VQ,OA.JJ,OA.On,HA.U0,OA._Y,OA.JL,OA.F,ft.tP,e.BN,U.KE,H.Nt,OA.Fj,k.h,OA.Q7,U.bx,U.TO,$A.oG,p.Hw,eA.gM],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-payment_hash[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),r})();var An=Ut(4947);const En=["sendPaymentForm"];function un(r,D){if(1&r&&(A.TgZ(0,"mat-hint"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentDecodedHint)}}function $n(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment request is required."),A.qZA())}function Ur(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"textarea",7,8),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().onPaymentRequestEntry(R)})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(5,un,2,1,"mat-hint",9),A.YNc(6,$n,2,0,"mat-error",9),A.qZA(),A.TgZ(7,"div",10)(8,"button",11),A.NdJ("click",function(){return A.CHM(t),A.oxw().resetData()}),A._uU(9,"Clear Field"),A.qZA(),A.TgZ(10,"button",12),A.NdJ("click",function(){return A.CHM(t),A.oxw().onSendPayment()}),A._uU(11,"Send Payment"),A.qZA()()()}if(2&r){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.paymentRequest),A.xp6(2),A.Q6J("ngIf",t.paymentRequest&&""!==t.paymentDecodedHint),A.xp6(1),A.Q6J("ngIf",!t.paymentRequest)}}function Pr(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",13)(1,"button",12),A.NdJ("click",function(){return A.CHM(t),A.oxw().openSendPaymentModal()}),A._uU(2,"Send Payment"),A.qZA()()}}function or(r,D){1&r&&A._UZ(0,"mat-progress-bar",50)}function Sn(r,D){1&r&&(A.TgZ(0,"th",51),A._uU(1,"Created At"),A.qZA())}const Un=function(r){return{"mr-0":r}};function vA(r,D){if(1&r&&A._UZ(0,"span",55),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,Un,t.screenSize===t.screenSizeEnum.XS))}}function J(r,D){if(1&r&&A._UZ(0,"span",56),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,Un,t.screenSize===t.screenSizeEnum.XS))}}function S(r,D){if(1&r&&(A.TgZ(0,"td",52),A.YNc(1,vA,1,3,"span",53),A.YNc(2,J,1,3,"span",54),A._uU(3),A.ALo(4,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status),A.xp6(1),A.hij(" ",A.xi3(4,3,1e3*(null==t?null:t.created_at),"dd/MMM/y HH:mm")," ")}}function Z(r,D){1&r&&(A.TgZ(0,"th",51),A._uU(1," Type "),A.qZA())}function K(r,D){if(1&r&&(A.TgZ(0,"td",52),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function fA(r,D){1&r&&(A.TgZ(0,"th",51),A._uU(1,"Payment Hash"),A.qZA())}const IA=function(r){return{"max-width":r}};function At(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",57)(2,"span",58),A._uU(3),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,IA,s.screenSize===s.screenSizeEnum.XS?"10rem":"30rem")),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function nt(r,D){1&r&&(A.TgZ(0,"th",59),A._uU(1,"Sats Sent"),A.qZA())}function ut(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",60),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.msatoshi_sent)/1e3,(null==t?null:t.msatoshi_sent)<1e3?"1.0-4":"1.0-0"))}}function Qt(r,D){1&r&&(A.TgZ(0,"th",59),A._uU(1,"Sats Received"),A.qZA())}function mt(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",60),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.msatoshi)/1e3,(null==t?null:t.msatoshi)<1e3?"1.0-4":"1.0-0"))}}function xt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",61)(1,"div",62)(2,"mat-select",63),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",64),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Nt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",65)(1,"button",66),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw(2).onPaymentClick(dA)}),A._uU(2,"View Info"),A.qZA()()}}function jt(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No payment available."),A.qZA())}function Wt(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting payments..."),A.qZA())}function Ee(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function Ce(r,D){if(1&r&&(A.TgZ(0,"td",67),A.YNc(1,jt,2,0,"p",9),A.YNc(2,Wt,2,0,"p",9),A.YNc(3,Ee,2,1,"p",9),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Ie(r,D){if(1&r&&A._UZ(0,"span",71),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,Un,t.screenSize===t.screenSizeEnum.XS))}}function on(r,D){if(1&r&&A._UZ(0,"span",72),2&r){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,Un,t.screenSize===t.screenSizeEnum.XS))}}function pe(r,D){if(1&r&&A._UZ(0,"span",71),2&r){const t=A.oxw(5);A.Q6J("ngClass",A.VKq(1,Un,t.screenSize===t.screenSizeEnum.XS))}}function Ke(r,D){if(1&r&&A._UZ(0,"span",72),2&r){const t=A.oxw(5);A.Q6J("ngClass",A.VKq(1,Un,t.screenSize===t.screenSizeEnum.XS))}}function Qn(r,D){if(1&r&&(A.TgZ(0,"span",74),A.YNc(1,pe,1,3,"span",69),A.YNc(2,Ke,1,3,"span",70),A._uU(3),A.ALo(4,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status),A.xp6(1),A.hij(" ",A.xi3(4,3,1e3*t.created_at,"dd/MMM/y HH:mm")," ")}}function Ve(r,D){if(1&r&&(A.ynx(0),A.YNc(1,Qn,5,6,"span",73),A.BQk()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function dn(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",68),A.YNc(2,Ie,1,3,"span",69),A.YNc(3,on,1,3,"span",70),A._uU(4),A.qZA(),A.YNc(5,Ve,2,1,"ng-container",9),A.qZA()),2&r){const t=D.$implicit;A.xp6(2),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status),A.xp6(1),A.hij(" Total Attempts: ",null==t?null:t.total_parts," "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Xn(r,D){if(1&r&&(A.TgZ(0,"span",68),A._uU(1),A.qZA()),2&r){const t=A.oxw(2).$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function Ar(r,D){if(1&r&&(A.TgZ(0,"span"),A.YNc(1,Xn,2,1,"span",75),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Pn(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",68),A._uU(2),A.qZA(),A.YNc(3,Ar,2,1,"span",9),A.qZA()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend"),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Hr(r,D){if(1&r&&(A.TgZ(0,"span",68),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" Part ID ",t.partid?t.partid:0," ")}}function jn(r,D){if(1&r&&(A.TgZ(0,"span"),A.YNc(1,Hr,2,1,"span",75),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function sr(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",76)(2,"span",58),A._uU(3),A.qZA()(),A.YNc(4,jn,2,1,"span",9),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,IA,s.screenSize===s.screenSizeEnum.XS?"10rem":"30rem")),A.xp6(2),A.Oqu(null==t?null:t.payment_hash),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function vr(r,D){if(1&r&&(A.TgZ(0,"span",77),A._uU(1),A.ALo(2,"number"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,t.msatoshi_sent/1e3,t.msatoshi_sent<1e3?"1.0-4":"1.0-0")," ")}}function tr(r,D){if(1&r&&(A.TgZ(0,"span"),A.YNc(1,vr,3,4,"span",78),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function hr(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",77),A._uU(2),A.ALo(3,"number"),A.qZA(),A.YNc(4,tr,2,1,"span",9),A.qZA()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,2,(null==t?null:t.msatoshi_sent)/1e3,(null==t?null:t.msatoshi_sent)<1e3?"1.0-4":"1.0-0")),A.xp6(2),A.Q6J("ngIf",t.is_expanded)}}function Jr(r,D){if(1&r&&(A.TgZ(0,"span",77),A._uU(1),A.ALo(2,"number"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,t.msatoshi/1e3,t.msatoshi<1e3?"1.0-4":"1.0-0")," ")}}function qn(r,D){if(1&r&&(A.TgZ(0,"span"),A.YNc(1,Jr,3,4,"span",78),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Or(r,D){if(1&r&&(A.TgZ(0,"td",52)(1,"span",77),A._uU(2),A.ALo(3,"number"),A.qZA(),A.YNc(4,qn,2,1,"span",9),A.qZA()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,2,(null==t?null:t.msatoshi)/1e3,(null==t?null:t.msatoshi)<1e3?"1.0-4":"1.0-0")),A.xp6(2),A.Q6J("ngIf",t.is_expanded)}}function mr(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",60)(1,"button",82),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw(4).onPaymentClick(dA)}),A._uU(2),A.qZA()()}if(2&r){const t=D.$implicit;A.xp6(2),A.hij("View ",t.partid?t.partid:0,"")}}function kr(r,D){if(1&r&&(A.TgZ(0,"div"),A.YNc(1,mr,3,1,"div",81),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function jr(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",79)(1,"span",60)(2,"button",80),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return dA.is_expanded=!dA.is_expanded}),A._uU(3),A.qZA()(),A.YNc(4,kr,2,1,"div",9),A.qZA()}if(2&r){const t=D.$implicit;A.xp6(3),A.Oqu(t.is_expanded?"Hide":"Show"),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function ui(r,D){1&r&&A._UZ(0,"tr",83)}const Kr=function(r){return{"display-none":r}};function lr(r,D){if(1&r&&A._UZ(0,"tr",84),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Kr,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function Vr(r,D){1&r&&A._UZ(0,"tr",85)}function _n(r,D){1&r&&A._UZ(0,"tr",83)}const Ji=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},Oi=function(){return["no_payment"]};function go(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",14)(1,"div",15)(2,"div",16),A._UZ(3,"fa-icon",17),A.TgZ(4,"span",18),A._uU(5,"Payments History"),A.qZA()(),A.TgZ(6,"mat-form-field",19)(7,"input",20),A.NdJ("keyup",function(){return A.CHM(t),A.oxw().applyFilter()})("ngModelChange",function(R){return A.CHM(t),A.oxw().selFilter=R}),A.qZA()()(),A.TgZ(8,"div",21)(9,"div",22),A.YNc(10,or,1,0,"mat-progress-bar",23),A.TgZ(11,"table",24,25),A.ynx(13,26),A.YNc(14,Sn,2,0,"th",27),A.YNc(15,S,5,6,"td",28),A.BQk(),A.ynx(16,29),A.YNc(17,Z,2,0,"th",27),A.YNc(18,K,2,1,"td",28),A.BQk(),A.ynx(19,30),A.YNc(20,fA,2,0,"th",27),A.YNc(21,At,4,4,"td",28),A.BQk(),A.ynx(22,31),A.YNc(23,nt,2,0,"th",32),A.YNc(24,ut,4,4,"td",28),A.BQk(),A.ynx(25,33),A.YNc(26,Qt,2,0,"th",32),A.YNc(27,mt,4,4,"td",28),A.BQk(),A.ynx(28,34),A.YNc(29,xt,6,0,"th",35),A.YNc(30,Nt,3,0,"td",36),A.BQk(),A.ynx(31,37),A.YNc(32,Ce,4,3,"td",38),A.BQk(),A.ynx(33,39),A.YNc(34,dn,6,4,"td",28),A.BQk(),A.ynx(35,40),A.YNc(36,Pn,4,2,"td",28),A.BQk(),A.ynx(37,41),A.YNc(38,sr,5,5,"td",28),A.BQk(),A.ynx(39,42),A.YNc(40,hr,5,5,"td",28),A.BQk(),A.ynx(41,43),A.YNc(42,Or,5,5,"td",28),A.BQk(),A.ynx(43,44),A.YNc(44,jr,5,2,"td",45),A.BQk(),A.YNc(45,ui,1,0,"tr",46),A.YNc(46,lr,1,3,"tr",47),A.YNc(47,Vr,1,0,"tr",48),A.YNc(48,_n,1,0,"tr",46),A.qZA()()(),A._UZ(49,"mat-paginator",49),A.qZA()}if(2&r){const t=A.oxw();A.xp6(3),A.Q6J("icon",t.faHistory),A.xp6(4),A.Q6J("ngModel",t.selFilter),A.xp6(3),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.payments)("ngClass",A.VKq(15,Ji,""!==t.errorMessage)),A.xp6(34),A.Q6J("matRowDefColumns",t.mppColumns)("matRowDefWhen",t.is_group),A.xp6(1),A.Q6J("matFooterRowDef",A.DdM(17,Oi)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)("matRowDefWhen",!t.is_group),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let ca=(()=>{class r{constructor(t,s,R,dA,ot,Ft,Ot,qe,Bn){this.logger=t,this.commonService=s,this.store=R,this.rtlEffects=dA,this.clnEffects=ot,this.decimalPipe=Ft,this.titleCasePipe=Ot,this.datePipe=qe,this.dataService=Bn,this.calledFrom="transactions",this.faHistory=h.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHint="",this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["created_at","actions"],this.mppColumns=["groupTotal","groupAction"]):this.screenSize===a.cu.SM?(this.flgSticky=!1,this.displayedColumns=["created_at","msatoshi","actions"],this.mppColumns=["groupTotal","groupAmtRecv","groupAction"]):this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["created_at","type","msatoshi_sent","msatoshi","actions"],this.mppColumns=["groupTotal","groupType","groupAmtSent","groupAmtRecv","groupAction"]):(this.flgSticky=!0,this.displayedColumns=["created_at","type","payment_hash","msatoshi_sent","msatoshi","actions"],this.mppColumns=["groupTotal","groupType","groupHash","groupAmtSent","groupAmtRecv","groupAction"])}ngOnInit(){this.store.select(B.lw).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(B.PP).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.payments||[],this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(t,s){return s.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.created_at?(this.paymentDecoded.msatoshi||(this.paymentDecoded.msatoshi=0),this.sendPayment()):this.resetData()})}sendPayment(){var t;this.newlyAddedPayment=(null===(t=this.paymentDecoded)||void 0===t?void 0:t.payment_hash)||"",this.paymentDecoded.msatoshi&&0!==this.paymentDecoded.msatoshi?(this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:50,type:a.Gi.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.msatoshi/1e3,title:"Amount (Sats)",width:50,type:a.Gi.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:a.Gi.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,PA.q)(1)).subscribe(R=>{R&&(this.store.dispatch((0,Et.oV)({payload:{uiMessage:a.m6.SEND_PAYMENT,paymentType:a.IX.INVOICE,invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:40,type:a.Gi.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:a.Gi.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:a.Gi.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,PA.q)(1)).subscribe(dA=>{dA&&(this.paymentDecoded.msatoshi=dA[0].inputValue,this.store.dispatch((0,Et.oV)({payload:{uiMessage:a.m6.SEND_PAYMENT,paymentType:a.IX.INVOICE,invoice:this.paymentRequest,amount:1e3*dA[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHint="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,i.R)(this.unSubs[1])).subscribe(s=>{var R;this.paymentDecoded=s,this.paymentDecoded.msatoshi?(null===(R=this.selNode)||void 0===R?void 0:R.fiatConversion)?this.commonService.convertCurrency(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0,a.NT.SATS,a.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,i.R)(this.unSubs[3])).subscribe({next:dA=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats ("+dA.symbol+this.decimalPipe.transform(dA.OTHER?dA.OTHER:0,a.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:dA=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}openSendPaymentModal(){this.store.dispatch((0,KA.qR)({payload:{data:{component:Yn}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(t){const s=[[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:a.Gi.STRING}],[{key:"id",value:t.id,title:"ID",width:20,type:a.Gi.STRING},{key:"destination",value:t.destination,title:"Destination",width:80,type:a.Gi.STRING}],[{key:"created_at",value:t.created_at,title:"Creation Date",width:50,type:a.Gi.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(t.status),title:"Status",width:50,type:a.Gi.STRING}],[{key:"msatoshi",value:t.msatoshi,title:"Amount (mSats)",width:50,type:a.Gi.NUMBER},{key:"msatoshi_sent",value:t.msatoshi_sent,title:"Amount Sent (mSats)",width:50,type:a.Gi.NUMBER}]];t.bolt11&&""!==t.bolt11&&(null==s||s.unshift([{key:"bolt11",value:t.bolt11,title:"Bolt 11",width:100,type:a.Gi.STRING}])),t.bolt12&&""!==t.bolt12&&(null==s||s.unshift([{key:"bolt12",value:t.bolt12,title:"Bolt 12",width:100,type:a.Gi.STRING}])),t.memo&&""!==t.memo&&(null==s||s.splice(2,0,[{key:"memo",value:t.memo,title:"Memo",width:100,type:a.Gi.STRING}])),t.hasOwnProperty("partid")?null==s||s.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:80,type:a.Gi.STRING},{key:"partid",value:t.partid,title:"Part ID",width:20,type:a.Gi.STRING}]):null==s||s.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:a.Gi.STRING}]),this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Payment Information",message:s}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}loadPaymentsTable(t){this.payments=new xA.by(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.payments.filterPredicate=(s,R)=>{var dA;return((s.created_at?null===(dA=this.datePipe.transform(new Date(1e3*s.created_at),"dd/MMM/YYYY HH:mm"))||void 0===dA?void 0:dA.toLowerCase():"")+(s.bolt12?"bolt12":s.bolt11?"bolt11":"keysend")+JSON.stringify(s).toLowerCase()).includes(R)},this.payments.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),s=null==t?void 0:t.reduce((R,dA)=>dA.mpps?R.concat(dA.mpps):(delete dA.is_group,delete dA.is_expanded,delete dA.total_parts,R.concat(dA)),[]);this.commonService.downloadFile(s,"Payments")}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh),A.Y36(DA.V),A.Y36(An.J),A.Y36(ft.JJ),A.Y36(ft.rS),A.Y36(ft.uU),A.Y36(zA.D))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(t,s){if(1&t&&(A.Gf(En,5),A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first),A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},inputs:{calledFrom:"calledFrom"},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Payments")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["sendPaymentForm","ngForm"],["fxFlex","100"],["matInput","","placeholder","Payment Request","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","created_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","type"],["matColumnDef","payment_hash"],["matColumnDef","msatoshi_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","groupTotal"],["matColumnDef","groupType"],["matColumnDef","groupHash"],["matColumnDef","groupAmtSent"],["matColumnDef","groupAmtRecv"],["matColumnDef","groupAction"],["mat-cell","","class","px-3",4,"matCellDef"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["class","dot green","matTooltip","Completed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"mpp-row-span"],["class","dot green mt-0","matTooltip","Completed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow mt-0","matTooltip","Incomplete/Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green","mt-0",3,"ngClass"],["matTooltip","Incomplete/Failed","matTooltipPosition","right",1,"dot","yellow","mt-0",3,"ngClass"],["fxLayoutAlign","start center","class","mpp-row-span pl-3",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"mpp-row-span","pl-3"],["fxLayoutAlign","start center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"mpp-row-span"],["fxLayoutAlign","end center","class","mpp-row-span",4,"ngFor","ngForOf"],["mat-cell","",1,"px-3"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["fxLayoutAlign","end center",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-mpp-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,Ur,12,3,"form",1),A.YNc(2,Pr,3,0,"div",2),A.YNc(3,go,50,18,"div",3),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf","home"===s.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===s.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===s.calledFrom))},directives:[Ct.xw,Ct.yH,Ct.Wh,ft.O5,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,OA.Q7,q.$V,OA.JJ,OA.On,U.bx,U.TO,w.lW,e.BN,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,eA.gM,ft.PC,Y.Zl,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,ft.sg,xA.nj,xA.Gk,xA.Ke,xA.Q2,xA.as,xA.XQ,WA.NW],pipes:[ft.uU,ft.JJ],styles:[".mat-column-payment_hash[_ngcontent-%COMP%]{flex:0 0 25%;width:25%}.mat-column-payment_hash[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%], .mat-column-groupAction[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-groupAction[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{width:9rem}.mat-column-groupAction[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{margin-top:.5rem;width:9rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mat-column-groupTotal[_ngcontent-%COMP%]{min-width:17rem}"]}),r})();function Bo(r,D){if(1&r&&(A.TgZ(0,"button",26)(1,"mat-icon"),A._uU(2,"more_vert"),A.qZA()()),2&r){A.oxw();const t=A.MAs(11);A.Q6J("matMenuTriggerFor",t)}}function uo(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const dA=A.CHM(t).index,ot=A.oxw().$implicit;return A.oxw(2).onNavigateTo(ot.links[dA])}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit;A.xp6(1),A.Oqu(t)}}function fo(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){return A.CHM(t),A.oxw(3).onsortChannelsBy()}),A._uU(1),A.qZA()}if(2&r){const t=A.oxw(3);A.xp6(1),A.hij("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function ho(r,D){1&r&&A._UZ(0,"mat-progress-bar",28)}function Eo(r,D){if(1&r&&A._UZ(0,"rtl-cln-node-info",29),2&r){const t=A.oxw(3);A.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function ga(r,D){if(1&r&&A._UZ(0,"rtl-cln-balances-info",30),2&r){const t=A.oxw(3);A.Q6J("balances",t.balances)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[3])}}function wo(r,D){if(1&r&&A._UZ(0,"rtl-cln-channel-capacity-info",31),2&r){const t=A.oxw(3);A.Q6J("sortBy",t.sortField)("channelBalances",t.channelBalances)("activeChannels",t.activeChannelsCapacity)("errorMessage",t.errorMessages[4]+" "+t.errorMessages[3])}}function Ba(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-info",32),2&r){const t=A.oxw(3);A.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1]+" "+t.errorMessages[4]+" "+t.errorMessages[5])}}function ua(r,D){if(1&r&&A._UZ(0,"rtl-cln-channel-status-info",33),2&r){const t=A.oxw(3);A.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[3]+" "+t.errorMessages[4])}}function Co(r,D){1&r&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find information!"),A.qZA())}const fa=function(r){return{"dashboard-card-content":!0,"error-border":r}};function Qo(r,D){if(1&r&&(A.TgZ(0,"mat-grid-tile",8)(1,"mat-card",9)(2,"mat-card-header")(3,"mat-card-title",10)(4,"div"),A._UZ(5,"fa-icon",11),A.TgZ(6,"span"),A._uU(7),A.qZA()(),A.TgZ(8,"div"),A.YNc(9,Bo,3,1,"button",12),A.TgZ(10,"mat-menu",13,14),A.YNc(12,uo,2,1,"button",15),A.YNc(13,fo,2,1,"button",16),A.qZA()()()(),A.TgZ(14,"mat-card-content",17),A.YNc(15,ho,1,0,"mat-progress-bar",18),A.TgZ(16,"div",19),A.YNc(17,Eo,1,2,"rtl-cln-node-info",20),A.YNc(18,ga,1,2,"rtl-cln-balances-info",21),A.YNc(19,wo,1,4,"rtl-cln-channel-capacity-info",22),A.YNc(20,Ba,1,2,"rtl-cln-fee-info",23),A.YNc(21,ua,1,2,"rtl-cln-channel-status-info",24),A.YNc(22,Co,2,0,"h3",25),A.qZA()()()()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(5),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(2),A.Q6J("ngIf",t.links[0]),A.xp6(3),A.Q6J("ngForOf",t.goToOptions),A.xp6(1),A.Q6J("ngIf","capacity"===t.id),A.xp6(1),A.s9C("fxFlex","capacity"===t.id?90:70),A.Q6J("ngClass",A.VKq(16,fa,"node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||"balance"===t.id&&(s.apiCallStatusBalance.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.ERROR)||"capacity"===t.id&&(s.apiCallStatusChannels.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.ERROR)||"fee"===t.id&&(s.apiCallStatusFees.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusChannels.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusFHistory.status===s.apiCallStatusEnum.ERROR)||"status"===t.id&&(s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusChannels.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.ERROR))),A.xp6(1),A.Q6J("ngIf","node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||"balance"===t.id&&(s.apiCallStatusBalance.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&(s.apiCallStatusChannels.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(s.apiCallStatusFees.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusChannels.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusFHistory.status===s.apiCallStatusEnum.INITIATED)||"status"===t.id&&(s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusChannels.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.INITIATED)),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","balance"),A.xp6(1),A.Q6J("ngSwitchCase","capacity"),A.xp6(1),A.Q6J("ngSwitchCase","fee"),A.xp6(1),A.Q6J("ngSwitchCase","status")}}function Mo(r,D){if(1&r&&(A.TgZ(0,"div",2)(1,"div",3),A._UZ(2,"fa-icon",4),A.TgZ(3,"span",5),A._uU(4),A.qZA()(),A.TgZ(5,"mat-grid-list",6),A.YNc(6,Qo,23,18,"mat-grid-tile",7),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),A.xp6(2),A.Oqu(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.xp6(1),A.Q6J("rowHeight",t.operatorCardHeight),A.xp6(1),A.Q6J("ngForOf",t.operatorCards)}}function po(r,D){if(1&r&&(A.TgZ(0,"button",26)(1,"mat-icon"),A._uU(2,"more_vert"),A.qZA()()),2&r){A.oxw();const t=A.MAs(9);A.Q6J("matMenuTriggerFor",t)}}function Io(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const dA=A.CHM(t).index,ot=A.oxw(2).$implicit;return A.oxw(2).onNavigateTo(ot.links[dA])}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit;A.xp6(1),A.Oqu(t)}}function vo(r,D){if(1&r&&(A.TgZ(0,"mat-card-header")(1,"mat-card-title",10)(2,"div"),A._UZ(3,"fa-icon",11),A.TgZ(4,"span"),A._uU(5),A.qZA()(),A.TgZ(6,"div"),A.YNc(7,po,3,1,"button",12),A.TgZ(8,"mat-menu",13,42),A.YNc(10,Io,2,1,"button",15),A.qZA()()()()),2&r){const t=A.oxw().$implicit;A.xp6(3),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(2),A.Q6J("ngIf",t.links[0]),A.xp6(3),A.Q6J("ngForOf",t.goToOptions)}}function mo(r,D){1&r&&A._UZ(0,"mat-progress-bar",28)}function Do(r,D){if(1&r&&A._UZ(0,"rtl-cln-node-info",43),2&r){const t=A.oxw(3);A.Q6J("information",t.information)}}function yo(r,D){if(1&r&&A._UZ(0,"rtl-cln-balances-info",30),2&r){const t=A.oxw(3);A.Q6J("balances",t.balances)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[3])}}function ha(r,D){if(1&r&&A._UZ(0,"rtl-cln-channel-liquidity-info",44),2&r){const t=A.oxw(3);A.Q6J("direction","In")("totalLiquidity",t.totalInboundLiquidity)("activeChannels",t.allInboundChannels)("errorMessage",t.errorMessages[4])}}function xo(r,D){if(1&r&&A._UZ(0,"rtl-cln-channel-liquidity-info",44),2&r){const t=A.oxw(3);A.Q6J("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("activeChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[4])}}function Fo(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const dA=A.CHM(t).index,ot=A.oxw(3).$implicit;return A.oxw(2).onNavigateTo(ot.links[dA])}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit;A.xp6(1),A.Oqu(t)}}function Yo(r,D){if(1&r&&(A.TgZ(0,"button",26)(1,"mat-icon"),A._uU(2,"more_vert"),A.qZA()(),A.TgZ(3,"mat-menu",13,53),A.YNc(5,Fo,2,1,"button",15),A.qZA()),2&r){const t=A.MAs(4),s=A.oxw(2).$implicit;A.Q6J("matMenuTriggerFor",t),A.xp6(5),A.Q6J("ngForOf",s.goToOptions)}}function To(r,D){1&r&&(A.TgZ(0,"span",45)(1,"mat-tab-group",46)(2,"mat-tab",47),A._UZ(3,"rtl-cln-lightning-invoices-table",48),A.qZA(),A.TgZ(4,"mat-tab",49),A._UZ(5,"rtl-cln-lightning-payments",50),A.qZA(),A.TgZ(6,"mat-tab",51),A.YNc(7,Yo,6,2,"ng-template",52),A.qZA()()()),2&r&&(A.xp6(3),A.Q6J("calledFrom","home"),A.xp6(2),A.Q6J("calledFrom","home"),A.xp6(1),A.Q6J("disabled",!0))}function er(r,D){1&r&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find information!"),A.qZA())}const Er=function(r){return{"p-0":r}};function fi(r,D){if(1&r&&(A.TgZ(0,"mat-grid-tile",8)(1,"mat-card",36),A.YNc(2,vo,11,4,"mat-card-header",37),A.TgZ(3,"mat-card-content",38),A.YNc(4,mo,1,0,"mat-progress-bar",18),A.TgZ(5,"div",19),A.YNc(6,Do,1,1,"rtl-cln-node-info",39),A.YNc(7,yo,1,2,"rtl-cln-balances-info",21),A.YNc(8,ha,1,4,"rtl-cln-channel-liquidity-info",40),A.YNc(9,xo,1,4,"rtl-cln-channel-liquidity-info",40),A.YNc(10,To,8,3,"span",41),A.YNc(11,er,2,0,"h3",25),A.qZA()()()()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(1),A.Q6J("ngClass",A.VKq(13,Er,"transactions"===t.id)),A.xp6(1),A.Q6J("ngIf","transactions"!==t.id),A.xp6(1),A.s9C("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),A.Q6J("ngClass",A.VKq(15,fa,"node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||"balance"===t.id&&(s.apiCallStatusBalance.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&s.apiCallStatusChannels.status===s.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||"balance"===t.id&&(s.apiCallStatusBalance.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&s.apiCallStatusChannels.status===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","balance"),A.xp6(1),A.Q6J("ngSwitchCase","inboundLiq"),A.xp6(1),A.Q6J("ngSwitchCase","outboundLiq"),A.xp6(1),A.Q6J("ngSwitchCase","transactions")}}function No(r,D){if(1&r&&(A.TgZ(0,"div",34),A._UZ(1,"fa-icon",4),A.TgZ(2,"span",5),A._uU(3),A.qZA()(),A.TgZ(4,"mat-grid-list",35),A.YNc(5,fi,12,17,"mat-grid-tile",7),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faSmile),A.xp6(2),A.hij("Welcome ",t.information.alias,"! Your node is up and running."),A.xp6(1),A.Q6J("rowHeight",t.merchantCardHeight),A.xp6(1),A.Q6J("ngForOf",t.merchantCards)}}let So=(()=>{class r{constructor(t,s,R,dA){this.logger=t,this.store=s,this.commonService=R,this.router=dA,this.faSmile=l.ctA,this.faFrown=l.KfU,this.faAngleDoubleDown=h.Sbq,this.faAngleDoubleUp=h.Vfw,this.faChartPie=h.OS1,this.faBolt=h.BDt,this.faServer=h.xf3,this.faNetworkWired=h.kXW,this.userPersonaEnum=a.ol,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.selNode={},this.information={},this.totalBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.activeChannels=[],this.channelsStatus={active:{},pending:{},inactive:{}},this.activeChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="405px",this.merchantCardHeight="65px",this.sortField="Balance Score",this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBalance=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(B.Hz).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.errorMessages[5]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusFHistory=t.apisCallStatus[1],this.apiCallStatusNodeInfo.status===a.Bn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===a.Bn.ERROR&&(this.errorMessages[5]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=t.nodeSettings,this.information=t.information}),this.store.select(B.JG).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===a.Bn.ERROR&&(this.errorMessages[1]=this.apiCallStatusFees.message?"object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message:""),this.fees=t.fees,this.logger.info(t)}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{var s,R;this.errorMessages[4]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===a.Bn.ERROR&&(this.errorMessages[4]=this.apiCallStatusChannels.message?"object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message:""),this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.activeChannels=t.activeChannels,this.activeChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels,"balancedness")))||[],this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(s=this.activeChannels)||void 0===s?void 0:s.filter(dA=>!!dA.msatoshi_to_them&&dA.msatoshi_to_them>0),"msatoshi_to_them")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(R=this.activeChannels)||void 0===R?void 0:R.filter(dA=>!!dA.msatoshi_to_us&&dA.msatoshi_to_us>0),"msatoshi_to_us")))||[],this.activeChannels.forEach(dA=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((dA.msatoshi_to_them||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((dA.msatoshi_to_us||0)/1e3)}),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.logger.info(t)}),this.store.select(B.Rn).pipe((0,i.R)(this.unSubs[3]),(0,o.M)(this.store.select(B.Wj))).subscribe(([t,s])=>{this.errorMessages[2]="",this.apiCallStatusBalance=t.apiCallStatus,this.apiCallStatusBalance.status===a.Bn.ERROR&&(this.errorMessages[2]=this.apiCallStatusBalance.message?"object"==typeof this.apiCallStatusBalance.message?JSON.stringify(this.apiCallStatusBalance.message):this.apiCallStatusBalance.message:""),this.errorMessages[3]="",this.apiCallStatusLRBal=s.apiCallStatus,this.apiCallStatusLRBal.status===a.Bn.ERROR&&(this.errorMessages[3]=this.apiCallStatusLRBal.message?"object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message:""),this.totalBalance=t.balance,this.balances.onchain=t.balance.totalBalance||0,this.balances.lightning=s.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const R=s.localRemoteBalance.localBalance?+s.localRemoteBalance.localBalance:0,dA=s.localRemoteBalance.remoteBalance?+s.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:R,remoteBalance:dA,balancedness:+(1-Math.abs((R-dA)/(R+dA))).toFixed(3)},this.channelsStatus.active.capacity=s.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=s.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=s.localRemoteBalance.inactiveBalance||0,this.logger.info(t),this.logger.info(s)})}onNavigateTo(t){this.router.navigateByUrl("/cln/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((t,s)=>{const R=(t.msatoshi_to_us?+t.msatoshi_to_us:0)+(t.msatoshi_to_them?+t.msatoshi_to_them:0),dA=(s.msatoshi_to_them?+s.msatoshi_to_them:0)+(s.msatoshi_to_them?+s.msatoshi_to_them:0);return R>dA?-1:R{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(C.v),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-home"]],decls:3,vars:2,consts:[["fxLayout","column",4,"ngIf","ngIfElse"],["merchantDashboard",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["menuOperator","matMenu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column",1,"w-100","dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[3,"disabled"],["mat-tab-label",""],["menuTransactions","matMenu"]],template:function(t,s){if(1&t&&(A.YNc(0,Mo,7,4,"div",0),A.YNc(1,No,6,4,"ng-template",null,1,A.W1O)),2&t){const R=A.MAs(2);A.Q6J("ngIf",(null==s.selNode?null:s.selNode.userPersona)===s.userPersonaEnum.OPERATOR)("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.Wh,e.BN,f.Il,ft.sg,f.DX,Ct.yH,g.a8,g.dk,g.n5,w.lW,Q.p6,p.Hw,Q.VK,Q.OP,g.dn,ft.mk,Y.oO,T.pW,ft.RF,ft.n9,P,L,_,NA,X,ft.ED,It,ht.SP,ht.uX,UA,ca,ht.uD],styles:[""]}),r})();var Ea=Ut(9841),Uo=Ut(8012),wa=Ut(8377),Rr=Ut(7261),cr=Ut(1125),Dr=Ut(5615);const Po=["form"],Ro=["formSweepAll"],zo=["stepper"];function Lo(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Bitcoin address is required."),A.qZA())}function bo(r,D){1&r&&(A.TgZ(0,"mat-hint"),A._uU(1,"Amount replaced by UTXO balance"),A.qZA())}function Go(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.amountError)}}function Ho(r,D){if(1&r&&(A.TgZ(0,"mat-option",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(t)}}function Jo(r,D){if(1&r&&(A.TgZ(0,"mat-option",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function Oo(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function ko(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",39)(1,"input",40,41),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw(2).customFeeRate=R}),A.qZA(),A.YNc(3,Oo,2,0,"mat-error",14),A.qZA()}if(2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.customFeeRate)("step",.1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function jo(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function Ca(r,D){if(1&r&&(A.TgZ(0,"mat-option",38),A._uU(1),A.ALo(2,"number"),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t),A.xp6(1),A.hij("",A.lcZ(2,2,t.value)," Sats")}}function Ko(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",23)(1,"mat-expansion-panel",42),A.NdJ("closed",function(){return A.CHM(t),A.oxw(2).onAdvancedPanelToggle(!0)})("opened",function(){return A.CHM(t),A.oxw(2).onAdvancedPanelToggle(!1)}),A.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"span"),A._uU(5),A.qZA()()(),A.TgZ(6,"div",22)(7,"div",43)(8,"mat-form-field",44)(9,"mat-select",45),A.NdJ("selectionChange",function(R){return A.CHM(t),A.oxw(2).onUTXOSelectionChange(R)})("valueChange",function(R){return A.CHM(t),A.oxw(2).selUTXOs=R}),A.TgZ(10,"mat-select-trigger"),A._uU(11),A.ALo(12,"number"),A.qZA(),A.YNc(13,Ca,3,4,"mat-option",21),A.qZA()(),A.TgZ(14,"div",46)(15,"mat-slide-toggle",47),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw(2).flgUseAllBalance=R})("change",function(){return A.CHM(t),A.oxw(2).onUTXOAllBalanceChange()}),A._uU(16," Use selected UTXOs balance "),A.qZA(),A.TgZ(17,"mat-icon",48),A._uU(18,"info_outline"),A.qZA()()()()()()}if(2&r){const t=A.oxw(2);A.xp6(5),A.Oqu(t.advancedTitle),A.xp6(4),A.Q6J("value",t.selUTXOs),A.xp6(2),A.AsE("",A.lcZ(12,7,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.xp6(2),A.Q6J("ngForOf",t.utxos),A.xp6(2),A.Q6J("ngModel",t.flgUseAllBalance)("disabled",t.selUTXOs.length<1)}}function Vo(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.sendFundError)}}function Wo(r,D){if(1&r&&(A.TgZ(0,"div",49),A._UZ(1,"fa-icon",50),A.YNc(2,Vo,2,1,"span",14),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.sendFundError)}}const Qa=function(r,D){return{"mr-6":r,"mr-2":D}};function Zo(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"form",9,10),A.NdJ("submit",function(){return A.CHM(t),A.oxw().onSendFunds()})("reset",function(){return A.CHM(t),A.oxw().resetData()}),A.TgZ(2,"mat-form-field",11)(3,"input",12,13),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().transaction.address=R}),A.qZA(),A.YNc(5,Lo,2,0,"mat-error",14),A.qZA(),A.TgZ(6,"mat-form-field",15)(7,"input",16,17),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().transaction.satoshis=R}),A.qZA(),A.YNc(9,bo,2,0,"mat-hint",14),A.TgZ(10,"span",18),A._uU(11),A.qZA(),A.YNc(12,Go,2,1,"mat-error",14),A.qZA(),A.TgZ(13,"mat-form-field",19)(14,"mat-select",20),A.NdJ("selectionChange",function(R){return A.CHM(t),A.oxw().onAmountUnitChange(R)}),A.YNc(15,Ho,2,2,"mat-option",21),A.qZA()(),A.TgZ(16,"div",22)(17,"div",23)(18,"div",24)(19,"mat-form-field",25)(20,"mat-select",26),A.NdJ("valueChange",function(R){return A.CHM(t),A.oxw().selFeeRate=R})("selectionChange",function(){return A.CHM(t),A.oxw().customFeeRate=null}),A.YNc(21,Jo,2,2,"mat-option",21),A.qZA()(),A.YNc(22,ko,4,5,"mat-form-field",27),A.qZA(),A.TgZ(23,"div",28)(24,"mat-checkbox",29),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().flgMinConf=R})("change",function(){A.CHM(t);const R=A.oxw();return R.flgMinConf?R.selFeeRate=null:R.minConfValue=null}),A.qZA(),A.TgZ(25,"mat-form-field",30)(26,"input",31,32),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().minConfValue=R}),A.qZA(),A.YNc(28,jo,2,0,"mat-error",14),A.qZA()()(),A.YNc(29,Ko,19,9,"div",33),A._UZ(30,"div",22),A.YNc(31,Wo,3,2,"div",34),A.TgZ(32,"div",35)(33,"button",36),A._uU(34,"Clear Fields"),A.qZA(),A.TgZ(35,"button",37),A._uU(36,"Send Funds"),A.qZA()()()()}if(2&r){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.transaction.address),A.xp6(2),A.Q6J("ngIf",!t.transaction.address),A.xp6(2),A.Q6J("ngModel",t.transaction.satoshis)("type",t.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",t.flgUseAllBalance),A.xp6(2),A.Q6J("ngIf",t.flgUseAllBalance),A.xp6(2),A.hij(" ",t.selAmountUnit," "),A.xp6(1),A.Q6J("ngIf",!t.transaction.satoshis),A.xp6(2),A.Q6J("value",t.selAmountUnit)("disabled",t.flgUseAllBalance),A.xp6(1),A.Q6J("ngForOf",t.amountUnits),A.xp6(4),A.Q6J("fxFlex","customperkb"!==t.selFeeRate||t.flgMinConf?"100":"48"),A.xp6(1),A.Q6J("value",t.selFeeRate)("disabled",t.flgMinConf),A.xp6(1),A.Q6J("ngForOf",t.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngModel",t.flgMinConf)("ngClass",A.WLB(28,Qa,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.xp6(2),A.Q6J("ngModel",t.minConfValue)("step",1)("min",0)("required",t.flgMinConf)("disabled",!t.flgMinConf),A.xp6(2),A.Q6J("ngIf",t.flgMinConf&&!t.minConfValue),A.xp6(1),A.Q6J("ngIf",t.isCompatibleVersion),A.xp6(2),A.Q6J("ngIf",""!==t.sendFundError)}}function Xo(r,D){if(1&r&&A._uU(0),2&r){const t=A.oxw(3);A.Oqu(t.passwordFormLabel)}}function qo(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Password is required."),A.qZA())}function _o(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-step",55)(1,"form",73),A.YNc(2,Xo,1,1,"ng-template",67),A.TgZ(3,"div",0)(4,"mat-form-field",1),A._UZ(5,"input",74),A.YNc(6,qo,2,0,"mat-error",14),A.qZA()(),A.TgZ(7,"div",75)(8,"button",76),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onAuthenticate()}),A._uU(9,"Confirm"),A.qZA()()()()}if(2&r){const t=A.oxw(2);A.Q6J("stepControl",t.passwordFormGroup)("editable",t.flgEditable),A.xp6(1),A.Q6J("formGroup",t.passwordFormGroup),A.xp6(5),A.Q6J("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function $o(r,D){if(1&r&&A._uU(0),2&r){const t=A.oxw(2);A.Oqu(t.sendFundFormLabel)}}function As(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Bitcoin address is required."),A.qZA())}function ts(r,D){if(1&r&&(A.TgZ(0,"mat-option",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function es(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function ce(r,D){if(1&r&&(A.TgZ(0,"mat-form-field",39),A._UZ(1,"input",77),A.YNc(2,es,2,0,"mat-error",14),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("step",.1)("min",0),A.xp6(1),A.Q6J("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.customFeeRate.value)}}function ns(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function hi(r,D){if(1&r&&A._uU(0),2&r){const t=A.oxw(2);A.Oqu(t.confirmFormLabel)}}function Ei(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.sendFundError)}}function zr(r,D){if(1&r&&(A.TgZ(0,"div",49),A._UZ(1,"fa-icon",50),A.YNc(2,Ei,2,1,"span",14),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.sendFundError)}}function wr(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",51)(1,"mat-vertical-stepper",52,53),A.NdJ("selectionChange",function(R){return A.CHM(t),A.oxw().stepSelectionChanged(R)}),A.YNc(3,_o,10,4,"mat-step",54),A.TgZ(4,"mat-step",55)(5,"form",56),A.YNc(6,$o,1,1,"ng-template",57),A.TgZ(7,"div",22)(8,"mat-form-field",1),A._UZ(9,"input",58),A.YNc(10,As,2,0,"mat-error",14),A.qZA(),A.TgZ(11,"div",59)(12,"div",24)(13,"mat-form-field",25)(14,"mat-select",60),A.YNc(15,ts,2,2,"mat-option",21),A.qZA()(),A.YNc(16,ce,3,3,"mat-form-field",27),A.qZA(),A.TgZ(17,"div",28),A._UZ(18,"mat-checkbox",61),A.TgZ(19,"mat-form-field",30),A._UZ(20,"input",62),A.YNc(21,ns,2,0,"mat-error",14),A.qZA()()()(),A.TgZ(22,"div",63)(23,"button",64),A._uU(24,"Next"),A.qZA()()()(),A.TgZ(25,"mat-step",65)(26,"form",66),A.YNc(27,hi,1,1,"ng-template",67),A.TgZ(28,"div",51)(29,"div",68),A._UZ(30,"fa-icon",69),A.TgZ(31,"span"),A._uU(32,"You are about to sweep all funds from RTL. Are you sure?"),A.qZA()(),A.YNc(33,zr,3,2,"div",34),A.TgZ(34,"div",63)(35,"button",70),A.NdJ("click",function(){return A.CHM(t),A.oxw().onSendFunds()}),A._uU(36,"Sweep All Funds"),A.qZA()()()()()(),A.TgZ(37,"div",71)(38,"button",72),A._uU(39),A.qZA()()()}if(2&r){const t=A.oxw();A.xp6(1),A.Q6J("linear",!0),A.xp6(2),A.Q6J("ngIf",!t.appConfig.sso.rtlSSO),A.xp6(1),A.Q6J("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),A.xp6(1),A.Q6J("formGroup",t.sendFundFormGroup),A.xp6(5),A.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),A.xp6(3),A.Q6J("fxFlex","customperkb"!==t.sendFundFormGroup.controls.selFeeRate.value||t.sendFundFormGroup.controls.flgMinConf.value?"100":"48"),A.xp6(2),A.Q6J("ngForOf",t.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value),A.xp6(2),A.Q6J("ngClass",A.WLB(20,Qa,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.xp6(2),A.Q6J("step",1)("min",0)("required",t.sendFundFormGroup.controls.flgMinConf.value),A.xp6(1),A.Q6J("ngIf",t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.minConfValue.value),A.xp6(4),A.Q6J("stepControl",t.confirmFormGroup),A.xp6(1),A.Q6J("formGroup",t.confirmFormGroup),A.xp6(4),A.Q6J("icon",t.faExclamationTriangle),A.xp6(3),A.Q6J("ngIf",""!==t.sendFundError),A.xp6(5),A.Q6J("mat-dialog-close",!1),A.xp6(1),A.Oqu(t.flgValidated?"Close":"Cancel")}}let wi=(()=>{class r{constructor(t,s,R,dA,ot,Ft,Ot,qe,Bn,se){this.dialogRef=t,this.data=s,this.logger=R,this.store=dA,this.commonService=ot,this.decimalPipe=Ft,this.actions=Ot,this.formBuilder=qe,this.rtlEffects=Bn,this.snackBar=se,this.faExclamationTriangle=h.eHv,this.sweepAll=!1,this.selNode={},this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=a._t[1],this.blockchainBalance={},this.information={},this.isCompatibleVersion=!1,this.newAddress="",this.transaction={},this.feeRateTypes=a.vn,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=a.uA,this.selAmountUnit=a.uA[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=a.Xz,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.screenSize="",this.screenSizeEnum=a.cu,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[OA.kI.required]],password:["",[OA.kI.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",OA.kI.required],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{t?(this.sendFundFormGroup.controls.selFeeRate.disable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.reset(),this.sendFundFormGroup.controls.minConfValue.enable(),this.sendFundFormGroup.controls.minConfValue.setValidators([OA.kI.required]),this.sendFundFormGroup.controls.minConfValue.setValue(null)):(this.sendFundFormGroup.controls.selFeeRate.enable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.setValue(null),this.sendFundFormGroup.controls.minConfValue.disable(),this.sendFundFormGroup.controls.minConfValue.setValidators(null),this.sendFundFormGroup.controls.minConfValue.setErrors(null))}),this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.sendFundFormGroup.controls.flgMinConf.value?null:[OA.kI.required])}),(0,Ea.a)([this.store.select(wa.dT),this.store.select(wa.Yj)]).pipe((0,i.R)(this.unSubs[1])).subscribe(([t,s])=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.appConfig=s}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.information=t,this.isCompatibleVersion=this.commonService.isVersionCompatible(this.information.version,"0.9.0")&&this.commonService.isVersionCompatible(this.information.api_version,"0.4.0")}),this.store.select(B.T4).pipe((0,i.R)(this.unSubs[3])).subscribe(t=>{var s;this.utxos=this.commonService.sortAscByKey(null===(s=t.utxos)||void 0===s?void 0:s.filter(R=>"confirmed"===R.status),"value"),this.logger.info(t)}),this.actions.pipe((0,i.R)(this.unSubs[4]),(0,JA.h)(t=>t.type===a.AB.UPDATE_API_CALL_STATUS_CLN||t.type===a.AB.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(t=>{t.type===a.AB.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,KA.jW)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===a.Bn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,KA.QO)({payload:Uo(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,PA.q)(1)).subscribe(t=>{"ERROR"!==t?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshis="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(t=>{var s;return null===(s=this.transaction.utxos)||void 0===s?void 0:s.push(t.txid+":"+t.output)})),this.sweepAll){if(!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||this.sendFundFormGroup.controls.flgMinConf.value&&(!this.sendFundFormGroup.controls.minConfValue.value||this.sendFundFormGroup.controls.minConfValue.value<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshis="all",this.transaction.address=this.sendFundFormGroup.controls.transactionAddress.value,this.sendFundFormGroup.controls.flgMinConf.value?(delete this.transaction.feeRate,this.transaction.minconf=this.sendFundFormGroup.controls.flgMinConf.value?this.sendFundFormGroup.controls.minConfValue.value:null):(delete this.transaction.minconf,this.transaction.feeRate="customperkb"===this.sendFundFormGroup.controls.selFeeRate.value&&!this.sendFundFormGroup.controls.flgMinConf.value&&this.sendFundFormGroup.controls.customFeeRate.value?1e3*this.sendFundFormGroup.controls.customFeeRate.value+"perkb":this.sendFundFormGroup.controls.selFeeRate.value),delete this.transaction.utxos,this.store.dispatch((0,Et.Wi)({payload:this.transaction}))}else{if(this.transaction.minconf=this.flgMinConf?this.minConfValue:null,this.transaction.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,!this.transaction.address||""===this.transaction.address||!this.transaction.satoshis||+this.transaction.satoshis<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshis&&"all"!==this.transaction.satoshis&&this.selAmountUnit!==a.NT.SATS?this.commonService.convertCurrency(+this.transaction.satoshis,this.selAmountUnit===this.amountUnits[2]?a.NT.OTHER:this.selAmountUnit,a.NT.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,i.R)(this.unSubs[5])).subscribe({next:t=>{this.transaction.satoshis=t[a.NT.SATS],this.selAmountUnit=a.NT.SATS,this.store.dispatch((0,Et.Wi)({payload:this.transaction}))},error:t=>{this.transaction.satoshis=null,this.selAmountUnit=a.NT.SATS,this.amountError="Conversion Error: "+t}}):this.store.dispatch((0,Et.Wi)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=a.uA[0]}stepSelectionChanged(t){var s;switch(this.sendFundError="",t.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+(this.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+(null===(s=this.feeRateTypes.find(R=>R.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value))||void 0===s?void 0:s.feeRateType):"")}t.selectedIndex0?(this.totalSelectedUTXOAmount=null===(s=this.selUTXOs)||void 0===s?void 0:s.reduce((R,dA)=>R+(dA.value||0),0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshis=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshis=this.totalSelectedUTXOAmount,this.selAmountUnit=a.uA[0]):this.transaction.satoshis=null}onAmountUnitChange(t){const s=this,R=this.selAmountUnit===this.amountUnits[2]?a.NT.OTHER:this.selAmountUnit;let dA=t.value===this.amountUnits[2]?a.NT.OTHER:t.value;this.transaction.satoshis&&this.selAmountUnit!==t.value&&this.commonService.convertCurrency(+this.transaction.satoshis,R,dA,this.amountUnits[2],this.fiatConversion).pipe((0,i.R)(this.unSubs[6])).subscribe({next:ot=>{var Ft;this.selAmountUnit=t.value,s.transaction.satoshis=null===(Ft=s.decimalPipe.transform(ot[dA],s.currencyUnitFormats[dA]))||void 0===Ft?void 0:Ft.replace(/,/g,"")},error:ot=>{s.transaction.satoshis=null,this.amountError="Conversion Error: "+ot,this.selAmountUnit=R,dA=R}})}onAdvancedPanelToggle(t){this.advancedTitle=t&&this.selUTXOs.length&&this.selUTXOs.length>0?"Advanced Options | Selected UTXOs: "+this.selUTXOs.length+" | Selected UTXO Amount: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats":"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(E.mQ),A.Y36(u.yh),A.Y36(C.v),A.Y36(ft.JJ),A.Y36(Tt.eX),A.Y36(OA.qu),A.Y36(DA.V),A.Y36(Rr.ux))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(t,s){if(1&t&&(A.Gf(Po,7),A.Gf(Ro,5),A.Gf(zo,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first),A.iGM(R=A.CRH())&&(s.formSweepAll=R.first),A.iGM(R=A.CRH())&&(s.stepper=R.first)}},decls:12,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["sweepAllBlock",""],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex","55"],["matInput","","autoFocus","","placeholder","Bitcoin Address","tabindex","1","name","address","required","",3,"ngModel","ngModelChange"],["address","ngModel"],[4,"ngIf"],["fxFlex","30"],["matInput","","placeholder","Amount","name","amount","tabindex","2","required","",3,"ngModel","type","step","min","disabled","ngModelChange"],["amount","ngModel"],["matSuffix",""],["fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"value","disabled","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","48","fxLayoutAlign","space-between end"],["fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","placeholder","Fee Rate",3,"value","disabled","valueChange","selectionChange"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","2","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModel","ngClass","ngModelChange","change"],["fxFlex","98"],["matInput","","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"ngModel","step","min","required","disabled","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"ngModel","step","min","required","ngModelChange"],["custFeeRate","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","35","fxLayoutAlign","start end"],["tabindex","8","placeholder","Coin Selection","multiple","",3,"value","selectionChange","valueChange"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["tabindex","9","color","primary","name","flgUseAllBalance",3,"ngModel","disabled","ngModelChange","change"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","above",1,"info-icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["matInput","","formControlName","transactionAddress","placeholder","Bitcoin Address","tabindex","4","name","address","required",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["tabindex","4","placeholder","Fee Rate","formControlName","selFeeRate"],["fxFlex","2","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"step","min","required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","default","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","placeholder","Password","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","default",3,"click"],["matInput","","formControlName","customFeeRate","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(t,s){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6),A.YNc(9,Zo,37,31,"form",7),A.qZA()()(),A.YNc(10,wr,40,23,"ng-template",null,8,A.W1O)),2&t){const R=A.MAs(11);A.xp6(5),A.Oqu(s.sweepAll?"Sweep All Funds":"Send Funds"),A.xp6(1),A.Q6J("mat-dialog-close",!1),A.xp6(3),A.Q6J("ngIf",!s.sweepAll)("ngIfElse",R)}},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,Mt.ZT,g.dn,ft.O5,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,k.h,OA.Q7,OA.JJ,OA.On,U.TO,b.q,U.bx,U.R9,CA.gD,ft.sg,wA.ey,OA.wV,OA.qQ,$A.oG,ft.mk,Y.oO,cr.ib,cr.yz,cr.yK,CA.$L,RA.Rr,p.Hw,eA.gM,e.BN,Dr.Vq,Dr.C0,OA.sg,Dr.VY,OA.u,Dr.Ic],pipes:[ft.JJ],styles:[""]}),r})();var ki=Ut(1203),ji=Ut(7544);function rs(r,D){1&r&&A._UZ(0,"mat-progress-bar",27)}function Lr(r,D){1&r&&(A.TgZ(0,"th",28),A._uU(1," Transaction ID "),A.qZA())}function br(r,D){1&r&&(A.TgZ(0,"span",36)(1,"mat-icon",37),A._uU(2,"warning"),A.qZA()())}function Ki(r,D){if(1&r&&(A.TgZ(0,"span"),A.YNc(1,br,3,0,"span",35),A.qZA()),2&r){const t=A.oxw().$implicit;A.oxw();const s=A.MAs(32);A.xp6(1),A.Q6J("ngIf",t.value<1e3)("ngIfElse",s)}}function Vi(r,D){1&r&&A._UZ(0,"span",38)}function Wi(r,D){if(1&r&&(A._UZ(0,"span",39),A.ALo(1,"titlecase")),2&r){const t=A.oxw().$implicit;A.s9C("matTooltip",A.lcZ(1,1,t.status))}}const is=function(r){return{"max-width":r}};function da(r,D){if(1&r&&(A.TgZ(0,"td",29)(1,"span",30),A.YNc(2,Ki,2,2,"span",31),A.YNc(3,Vi,1,0,"span",32),A.YNc(4,Wi,2,3,"span",33),A.TgZ(5,"span",34),A._uU(6),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(5,is,s.screenSize===s.screenSizeEnum.XS?"10rem":"50rem")),A.xp6(1),A.Q6J("ngIf",s.numDustUTXOs>0&&!s.isDustUTXO),A.xp6(1),A.Q6J("ngIf","confirmed"===t.status),A.xp6(1),A.Q6J("ngIf","confirmed"!==t.status),A.xp6(2),A.Oqu(t.txid)}}function as(r,D){1&r&&(A.TgZ(0,"th",40),A._uU(1," Output "),A.qZA())}function os(r,D){if(1&r&&(A.TgZ(0,"td",29)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.output)," ")}}function ss(r,D){1&r&&(A.TgZ(0,"th",40),A._uU(1," Value (Sats) "),A.qZA())}function ls(r,D){if(1&r&&(A.TgZ(0,"span",41),A._uU(1),A.ALo(2,"number"),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.Oqu(A.lcZ(2,1,t.value))}}function cs(r,D){if(1&r&&(A.TgZ(0,"span",44),A._uU(1),A.ALo(2,"number"),A.qZA()),2&r){const t=A.oxw().$implicit;A.xp6(1),A.hij("(",A.lcZ(2,1,-1*t.value),")")}}function Ma(r,D){if(1&r&&(A.TgZ(0,"td",29),A.YNc(1,ls,3,3,"span",42),A.YNc(2,cs,3,3,"span",43),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Q6J("ngIf",t.value>0||0===t.value),A.xp6(1),A.Q6J("ngIf",t.value<0)}}function gs(r,D){1&r&&(A.TgZ(0,"th",40),A._uU(1," Blockheight "),A.qZA())}function Bs(r,D){if(1&r&&(A.TgZ(0,"td",29)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.blockheight)," ")}}function yr(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",45)(1,"div",46)(2,"mat-select",47),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",48),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Lt(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",49)(1,"button",50),A.NdJ("click",function(R){const ot=A.CHM(t).$implicit;return A.oxw().onUTXOClick(ot,R)}),A._uU(2,"View Info"),A.qZA()()}}function Ci(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No utxos available."),A.qZA())}function Qi(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting utxos..."),A.qZA())}function xr(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function pa(r,D){if(1&r&&(A.TgZ(0,"td",51),A.YNc(1,Ci,2,0,"p",31),A.YNc(2,Qi,2,0,"p",31),A.YNc(3,xr,2,1,"p",31),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const di=function(r){return{"display-none":r}};function us(r,D){if(1&r&&A._UZ(0,"tr",52),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,di,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Ia(r,D){1&r&&A._UZ(0,"tr",53)}function fs(r,D){1&r&&A._UZ(0,"tr",54)}function Wr(r,D){1&r&&A._UZ(0,"mat-icon",37)}const Mi=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},hs=function(){return["no_utxo"]};let va=(()=>{class r{constructor(t,s,R){this.logger=t,this.commonService=s,this.store=R,this.numDustUTXOs=0,this.isDustUTXO=!1,this.displayedColumns=[],this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["txid","value","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["txid","output","value","blockheight","actions"]):(this.flgSticky=!0,this.displayedColumns=["txid","output","value","blockheight","actions"])}ngOnInit(){this.store.select(B.T4).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.logger.info(t)})}ngAfterViewInit(){this.utxos&&this.utxos.length>0&&this.sort&&this.paginator&&this.loadUTXOsTable(this.utxos)}ngOnChanges(){this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos)}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}onUTXOClick(t,s){const R=[[{key:"txid",value:t.txid,title:"Transaction ID",width:100}],[{key:"output",value:t.output,title:"Output",width:50,type:a.Gi.NUMBER},{key:"value",value:t.value,title:"Value (Sats)",width:50,type:a.Gi.NUMBER}],[{key:"status",value:this.commonService.titleCase(t.status||""),title:"Status",width:50,type:a.Gi.STRING},{key:"blockheight",value:t.blockheight,title:"Blockheight",width:50,type:a.Gi.NUMBER}],[{key:"address",value:t.address,title:"Address",width:100}]];this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"UTXO Information",message:R}}}))}loadUTXOsTable(t){this.listUTXOs=new xA.by([...t]),this.listUTXOs.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.listUTXOs.sort=this.sort,this.listUTXOs.filterPredicate=(s,R)=>JSON.stringify(s).toLowerCase().includes(R),this.listUTXOs.paginator=this.paginator,this.applyFilter(),this.logger.info(this.listUTXOs)}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",utxos:"utxos"},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("UTXOs")}]),A.TTD],decls:33,vars:14,consts:[["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","txid"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","blockheight"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["emptySpace",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[4,"ngIf"],["class","dot green","matTooltip","Confirmed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],[1,"ellipsis-child"],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"mr-1"],["matTooltip","Confirmed","matTooltipPosition","right",1,"dot","green"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"div",2),A.TgZ(3,"mat-form-field",3)(4,"input",4),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()(),A.TgZ(5,"div",5)(6,"div",6),A.YNc(7,rs,1,0,"mat-progress-bar",7),A.TgZ(8,"table",8,9),A.ynx(10,10),A.YNc(11,Lr,2,0,"th",11),A.YNc(12,da,7,7,"td",12),A.BQk(),A.ynx(13,13),A.YNc(14,as,2,0,"th",14),A.YNc(15,os,4,3,"td",12),A.BQk(),A.ynx(16,15),A.YNc(17,ss,2,0,"th",14),A.YNc(18,Ma,3,2,"td",12),A.BQk(),A.ynx(19,16),A.YNc(20,gs,2,0,"th",14),A.YNc(21,Bs,4,3,"td",12),A.BQk(),A.ynx(22,17),A.YNc(23,yr,6,0,"th",18),A.YNc(24,Lt,3,0,"td",19),A.BQk(),A.ynx(25,20),A.YNc(26,pa,4,3,"td",21),A.BQk(),A.YNc(27,us,1,3,"tr",22),A.YNc(28,Ia,1,0,"tr",23),A.YNc(29,fs,1,0,"tr",24),A.qZA(),A._UZ(30,"mat-paginator",25),A.qZA()()(),A.YNc(31,Wr,1,0,"ng-template",null,26,A.W1O)),2&t&&(A.xp6(4),A.Q6J("ngModel",s.selFilter),A.xp6(3),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",s.listUTXOs)("ngClass",A.VKq(11,Mi,""!==s.errorMessage)),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(13,hs)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.Wh,Ct.yH,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,ft.O5,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,eA.gM,p.Hw,CA.gD,CA.$L,wA.ey,w.lW,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.rS,ft.JJ],styles:[".mat-column-txid[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-txid[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();function ma(r,D){if(1&r&&(A.TgZ(0,"span",5),A._uU(1,"UTXOs"),A.qZA()),2&r){const t=A.oxw();A.s9C("matBadge",t.numUtxos)}}function Da(r,D){if(1&r&&(A.TgZ(0,"span",5),A._uU(1,"Dust UTXOs"),A.qZA()),2&r){const t=A.oxw();A.s9C("matBadge",t.numDustUtxos)}}let Es=(()=>{class r{constructor(t,s){this.logger=t,this.store=s,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.vpe,this.utxos=[],this.numUtxos=0,this.dustUtxos=[],this.numDustUtxos=0,this.unSubs=[new c.x,new c.x]}ngOnInit(){this.store.select(B.T4).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{var s;t.utxos&&t.utxos.length>0&&(this.utxos=t.utxos,this.numUtxos=this.utxos.length,this.dustUtxos=null===(s=t.utxos)||void 0===s?void 0:s.filter(R=>+(R.value||0)<1e3),this.numDustUtxos=this.dustUtxos.length),t.utxos&&t.utxos.length>0&&(this.utxos=t.utxos,this.numUtxos=this.utxos.length),this.logger.info(t)})}onSelectedIndexChanged(t){this.selectedTableIndexChange.emit(t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},decls:8,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box","my-2"],[3,"selectedIndex","selectedIndexChange"],["mat-tab-label",""],["xLayout","row","fxFlex","100",3,"utxos","numDustUTXOs","isDustUTXO"],["fxLayout","row","fxFlex","100",3,"utxos","numDustUTXOs","isDustUTXO"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"mat-tab-group",1),A.NdJ("selectedIndexChange",function(dA){return s.onSelectedIndexChanged(dA)}),A.TgZ(2,"mat-tab"),A.YNc(3,ma,2,1,"ng-template",2),A._UZ(4,"rtl-cln-on-chain-utxos",3),A.qZA(),A.TgZ(5,"mat-tab"),A.YNc(6,Da,2,1,"ng-template",2),A._UZ(7,"rtl-cln-on-chain-utxos",4),A.qZA()()()),2&t&&(A.xp6(1),A.Q6J("selectedIndex",s.selectedTableIndex),A.xp6(3),A.Q6J("utxos",s.utxos)("numDustUTXOs",s.numDustUtxos)("isDustUTXO",!1),A.xp6(3),A.Q6J("utxos",s.dustUtxos)("numDustUTXOs",s.numDustUtxos)("isDustUTXO",!0))},directives:[Ct.xw,Ct.yH,Ct.Wh,ht.SP,ht.uX,ht.uD,ji.k,va],styles:[""]}),r})();const ws=function(r,D){return[r,D]};function Zr(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",12),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().activeLink=null==dA?null:dA.link}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit,s=A.oxw();A.Q6J("active",s.activeLink===(null==t?null:t.link))("routerLink",A.WLB(3,ws,null==t?null:t.link,null==s.selectedTable?null:s.selectedTable.name)),A.xp6(1),A.Oqu(null==t?null:t.name)}}let Cs=(()=>{class r{constructor(t,s,R){this.store=t,this.router=s,this.activatedRoute=R,this.selNode={},this.faExchangeAlt=h.Ssp,this.faChartPie=h.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new c.x,new c.x,new c.x,new c.x]}ngOnInit(){const t=this.links.find(s=>this.router.url.includes(s.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(s=>s.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(s=>s instanceof $t.Av)).subscribe({next:s=>{const R=this.links.find(dA=>s.urlAfterRedirects.includes(dA.link));this.activeLink=R?R.link:this.links[0].link,this.selectedTable=this.tables.find(dA=>dA.name===s.urlAfterRedirects.substring(s.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(B.lw).pipe((0,i.R)(this.unSubs[1])).subscribe(s=>{this.selNode=s}),this.store.select(B.Rn).pipe((0,i.R)(this.unSubs[2])).subscribe(s=>{this.balances=[{title:"Total Balance",dataValue:s.balance.totalBalance||0},{title:"Confirmed",dataValue:s.balance.confBalance||0},{title:"Unconfirmed",dataValue:s.balance.unconfBalance||0}]})}openSendFundsModal(t){this.store.dispatch((0,KA.qR)({payload:{data:{sweepAll:t,component:wi}}}))}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(s=>s.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(u.yh),A.Y36($t.F0),A.Y36($t.gz))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-on-chain"]],decls:21,vars:5,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndex","selectedTableIndexChange"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"On-chain Balance"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A._UZ(7,"rtl-currency-unit-converter",5),A.qZA()()(),A.TgZ(8,"div",0),A._UZ(9,"fa-icon",1),A.TgZ(10,"span",2),A._uU(11,"On-chain Transactions"),A.qZA()(),A.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",7),A.YNc(16,Zr,2,6,"div",8),A.qZA(),A.TgZ(17,"div",9),A._UZ(18,"router-outlet"),A.qZA(),A.TgZ(19,"div",10)(20,"rtl-cln-utxo-tables",11),A.NdJ("selectedTableIndexChange",function(dA){return s.onSelectedTableIndexChanged(dA)}),A.qZA()()()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faChartPie),A.xp6(6),A.Q6J("values",s.balances),A.xp6(2),A.Q6J("icon",s.faExchangeAlt),A.xp6(7),A.Q6J("ngForOf",s.links),A.xp6(4),A.Q6J("selectedTableIndex",null==s.selectedTable?null:s.selectedTable.id))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,ki.D,ht.BU,ft.sg,ht.Nj,$t.rH,Ct.yH,$t.lC,Es],styles:[""]}),r})();function Qs(r,D){if(1&r&&(A.TgZ(0,"span",10),A._uU(1,"Channels"),A.qZA()),2&r){const t=A.oxw();A.s9C("matBadge",t.activeChannels)}}function ds(r,D){if(1&r&&(A.TgZ(0,"span",10),A._uU(1,"Peers"),A.qZA()),2&r){const t=A.oxw();A.s9C("matBadge",t.activePeers)}}let ya=(()=>{class r{constructor(t,s,R){this.store=t,this.logger=s,this.router=R,this.activePeers=0,this.activeChannels=0,this.faUsers=h.FVb,this.faChartPie=h.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new c.x,new c.x,new c.x,new c.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(t=>t instanceof $t.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(s=>s.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.activeChannels=t.activeChannels.length||0}),this.store.select(B.Wi).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(B.Rn).pipe((0,i.R)(this.unSubs[3])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.balance.totalBalance||0},{title:"Confirmed",dataValue:t.balance.confBalance||0},{title:"Unconfirmed",dataValue:t.balance.unconfBalance||0}]})}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(u.yh),A.Y36(E.mQ),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"On-chain Balance"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A._UZ(7,"rtl-currency-unit-converter",5),A.qZA()()(),A.TgZ(8,"div",0),A._UZ(9,"fa-icon",1),A.TgZ(10,"span",2),A._uU(11,"Connections"),A.qZA()(),A.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.NdJ("selectedIndexChange",function(dA){return s.activeLink=dA})("selectedTabChange",function(dA){return s.onSelectedTabChange(dA)}),A.TgZ(16,"mat-tab"),A.YNc(17,Qs,2,1,"ng-template",8),A.qZA(),A.TgZ(18,"mat-tab"),A.YNc(19,ds,2,1,"ng-template",8),A.qZA()(),A.TgZ(20,"div",9),A._UZ(21,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faChartPie),A.xp6(6),A.Q6J("values",s.balances),A.xp6(2),A.Q6J("icon",s.faUsers),A.xp6(6),A.Q6J("selectedIndex",s.activeLink))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,ki.D,ht.SP,ht.uX,ht.uD,ji.k,Ct.yH,$t.lC],styles:[""]}),r})();function Ms(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",11),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().activeLink=dA.link}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit,s=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",s.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let ps=(()=>{class r{constructor(t,s,R){this.logger=t,this.store=s,this.router=R,this.faExchangeAlt=h.Ssp,this.faChartPie=h.OS1,this.currencyUnits=[],this.routerUrl="",this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.selNode={},this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new c.x,new c.x,new c.x,new c.x]}ngOnInit(){const t=this.links.find(s=>this.router.url.includes(s.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(s=>s instanceof $t.Av)).subscribe({next:s=>{const R=this.links.find(dA=>s.urlAfterRedirects.includes(dA.link));this.activeLink=R?R.link:this.links[0].link,this.routerUrl=s.urlAfterRedirects}}),this.store.select(B.lw).pipe((0,i.R)(this.unSubs[1])).subscribe(s=>{if(this.selNode=s,this.selNode&&this.selNode.enableOffers){this.store.dispatch((0,Et.yl)()),this.store.dispatch((0,Et.uT)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const R=this.links.find(dA=>this.router.url.includes(dA.link));this.activeLink=R?R.link:this.links[0].link}}),this.store.select(B.Wj).pipe((0,i.R)(this.unSubs[2]),(0,o.M)(this.store.select(B.lw))).subscribe(([s,R])=>{this.currencyUnits=(null==R?void 0:R.currencyUnits)||[],this.balances=R&&R.userPersona===a.ol.OPERATOR?[{title:"Local Capacity",dataValue:s.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:s.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:s.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:s.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(s)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-transactions"]],decls:19,vars:4,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Lightning Balance"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A._UZ(7,"rtl-currency-unit-converter",5),A.qZA()()(),A.TgZ(8,"div",6),A._UZ(9,"fa-icon",1),A.TgZ(10,"span",2),A._uU(11,"Lightning Transactions"),A.qZA()(),A.TgZ(12,"div",7)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",8),A.YNc(16,Ms,2,3,"div",9),A.qZA(),A.TgZ(17,"div",10),A._UZ(18,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faChartPie),A.xp6(6),A.Q6J("values",s.balances),A.xp6(2),A.Q6J("icon",s.faExchangeAlt),A.xp6(7),A.Q6J("ngForOf",s.links))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,ki.D,ht.BU,ft.sg,ht.Nj,$t.rH,Ct.yH,$t.lC],styles:[""]}),r})();function Is(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",11),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().activeLink=dA.link}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit,s=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",s.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let vs=(()=>{class r{constructor(t){this.router=t,this.faMapSigns=h.SuH,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"routingpeers",name:"Routing Peers"},{link:"failedtransactions",name:"Failed Transactions"},{link:"localfail",name:"Local Failed Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new c.x,new c.x,new c.x]}ngOnInit(){const t=this.links.find(s=>this.router.url.includes(s.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(s=>s instanceof $t.Av)).subscribe({next:s=>{const R=this.links.find(dA=>s.urlAfterRedirects.includes(dA.link));this.activeLink=R?R.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-routing"]],decls:13,vars:2,consts:[["fxLayout","column",1,"mb-2"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","fxFlex","100"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"fa-icon",2),A.TgZ(3,"span",3),A._uU(4,"Routing"),A.qZA()(),A.TgZ(5,"div",4)(6,"mat-card",5)(7,"mat-card-content",6)(8,"div",7)(9,"nav",8),A.YNc(10,Is,2,3,"div",9),A.qZA()(),A.TgZ(11,"div",10),A._UZ(12,"router-outlet"),A.qZA()()()()()),2&t&&(A.xp6(2),A.Q6J("icon",s.faMapSigns),A.xp6(8),A.Q6J("ngForOf",s.links))},directives:[Ct.xw,Ct.Wh,e.BN,Ct.yH,g.a8,g.dn,ht.BU,ft.sg,ht.Nj,$t.rH,$t.lC],styles:[""]}),r})();var Xr=Ut(6895);function xa(r,D){if(1&r&&(A.TgZ(0,"span",6),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(t)}}function ms(r,D){1&r&&(A.TgZ(0,"th",27),A._uU(1,"Type"),A.qZA())}function Ds(r,D){if(1&r&&(A.TgZ(0,"td",28),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.type," ")}}function ys(r,D){1&r&&(A.TgZ(0,"th",27),A._uU(1,"Address"),A.qZA())}function xs(r,D){if(1&r&&(A.TgZ(0,"td",28),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.address," ")}}function Fs(r,D){1&r&&(A.TgZ(0,"th",27),A._uU(1,"Port"),A.qZA())}function Rn(r,D){if(1&r&&(A.TgZ(0,"td",28),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.port," ")}}function Ys(r,D){1&r&&(A.TgZ(0,"th",29)(1,"span",30),A._uU(2,"Actions"),A.qZA()())}function Ts(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",31)(1,"span",30)(2,"button",32),A.NdJ("copied",function(R){return A.CHM(t),A.oxw(2).onCopyNodeURI(R)}),A._uU(3,"Copy Node URI"),A.qZA()()()}if(2&r){const t=D.$implicit,s=A.oxw(2);A.xp6(2),A.Q6J("payload",(null==s.lookupResult?null:s.lookupResult.nodeid)+"@"+t.address+":"+t.port)}}function Ns(r,D){1&r&&A._UZ(0,"tr",33)}function Ss(r,D){1&r&&A._UZ(0,"tr",34)}const Us=function(r){return{"background-color":r}};function Ps(r,D){if(1&r&&(A.TgZ(0,"div",1),A._UZ(1,"mat-divider",2),A.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),A._uU(5,"Alias"),A.qZA(),A.TgZ(6,"span",6),A._uU(7),A.TgZ(8,"span",7),A._uU(9),A.qZA()()(),A.TgZ(10,"div",8)(11,"h4",5),A._uU(12,"Pub Key"),A.qZA(),A.TgZ(13,"span",9),A._uU(14),A.qZA()()(),A._UZ(15,"mat-divider",10),A.TgZ(16,"div",3)(17,"div",4)(18,"h4",5),A._uU(19,"Last Update"),A.qZA(),A.TgZ(20,"span",6),A._uU(21),A.ALo(22,"date"),A.qZA()(),A.TgZ(23,"div",8)(24,"h4",5),A._uU(25,"Features"),A.qZA(),A.YNc(26,xa,2,1,"span",11),A.qZA()(),A._UZ(27,"mat-divider",10),A.TgZ(28,"div",12)(29,"h4",13),A._uU(30,"Addresses"),A.qZA(),A.TgZ(31,"div",14)(32,"table",15,16),A.ynx(34,17),A.YNc(35,ms,2,0,"th",18),A.YNc(36,Ds,2,1,"td",19),A.BQk(),A.ynx(37,20),A.YNc(38,ys,2,0,"th",18),A.YNc(39,xs,2,1,"td",19),A.BQk(),A.ynx(40,21),A.YNc(41,Fs,2,0,"th",18),A.YNc(42,Rn,2,1,"td",19),A.BQk(),A.ynx(43,22),A.YNc(44,Ys,3,0,"th",23),A.YNc(45,Ts,4,1,"td",24),A.BQk(),A.YNc(46,Ns,1,0,"tr",25),A.YNc(47,Ss,1,0,"tr",26),A.qZA()()()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(null==t.lookupResult?null:t.lookupResult.alias),A.xp6(1),A.Q6J("ngStyle",A.VKq(15,Us,"#"+(null==t.lookupResult?null:t.lookupResult.color))),A.xp6(1),A.Oqu(null!=t.lookupResult&&t.lookupResult.color?"#"+(null==t.lookupResult?null:t.lookupResult.color):""),A.xp6(5),A.Oqu(null==t.lookupResult?null:t.lookupResult.nodeid),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(A.xi3(22,12,1e3*(null==t.lookupResult?null:t.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.xp6(5),A.Q6J("ngForOf",t.featureDescriptions),A.xp6(1),A.Q6J("inset",!0),A.xp6(5),A.Q6J("dataSource",t.addresses),A.xp6(14),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}let Rs=(()=>{class r{constructor(t,s){this.logger=t,this.snackBar=s,this.featureDescriptions=[],this.displayedColumns=["type","address","port","actions"]}ngOnInit(){if(this.addresses=new xA.by(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(t,s)=>t[s]&&isNaN(t[s])?t[s].toLocaleLowerCase():t[s]?+t[s]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){const t=parseInt(this.lookupResult.features,16);a.Df.forEach(s=>{t&(1<{class r{constructor(t){this.store=t,this.lookupResult=[],this.node1_match=!1,this.node2_match=!1,this.unSubs=[new c.x,new c.x,new c.x,new c.x]}ngOnInit(){this.store.select(B.ey).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.lookupResult.length>0&&this.lookupResult[0].source===t.id&&(this.node1_match=!0),this.lookupResult.length>1&&this.lookupResult[1].source===t.id&&(this.node2_match=!0)})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start start",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[3,"inset"],["fxLayout","column","fxFlex","20",1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","10",1,"my-1"],[1,"page-title","font-bold-500"]],template:function(t,s){1&t&&A.YNc(0,Zi,204,91,"div",0),2&t&&A.Q6J("ngIf",s.lookupResult)},directives:[ft.O5,Ct.xw,sA.d,Ct.Wh,Ct.yH],pipes:[ft.JJ,ft.uU],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}),r})();const Qr=["form"];function Xi(r,D){if(1&r&&(A.TgZ(0,"mat-radio-button",17),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw();A.Q6J("value",t.id)("checked",s.selectedFieldId===t.id),A.xp6(1),A.hij(" ",t.name," ")}}function bs(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.hij("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function pi(r,D){if(1&r&&(A.TgZ(0,"div"),A._UZ(1,"rtl-cln-node-lookup",26),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Q6J("lookupResult",t.nodeLookupValue)}}function Ii(r,D){if(1&r&&(A.TgZ(0,"span",24),A.YNc(1,pi,2,1,"div",25),A.qZA()),2&r){const t=A.oxw(2),s=A.MAs(19);A.xp6(1),A.Q6J("ngIf",""!==t.nodeLookupValue.nodeid)("ngIfElse",s)}}function vi(r,D){if(1&r&&(A.TgZ(0,"div"),A._UZ(1,"rtl-cln-channel-lookup",26),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Q6J("lookupResult",t.channelLookupValue)}}function ye(r,D){if(1&r&&(A.TgZ(0,"span",24),A.YNc(1,vi,2,1,"div",25),A.qZA()),2&r){const t=A.oxw(2),s=A.MAs(19);A.xp6(1),A.Q6J("ngIf",t.channelLookupValue.length>0)("ngIfElse",s)}}function Gs(r,D){1&r&&(A.TgZ(0,"span",24)(1,"h3"),A._uU(2,"Error! Unable to find details!"),A.qZA()())}function dr(r,D){if(1&r&&(A.TgZ(0,"div",18)(1,"div",19)(2,"span",20),A._uU(3),A.qZA()(),A.TgZ(4,"div",21),A.YNc(5,Ii,2,2,"span",22),A.YNc(6,ye,2,2,"span",22),A.YNc(7,Gs,3,0,"span",23),A.qZA()()),2&r){const t=A.oxw();A.xp6(3),A.hij("",t.lookupFields[t.selectedFieldId].name," Details"),A.xp6(1),A.Q6J("ngSwitch",t.selectedFieldId),A.xp6(1),A.Q6J("ngSwitchCase",0),A.xp6(1),A.Q6J("ngSwitchCase",1)}}function Hs(r,D){1&r&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find details!"),A.qZA())}const Js=function(r){return{"mt-1":!0,"mt-2":r}};let Os=(()=>{class r{constructor(t,s,R,dA){this.logger=t,this.commonService=s,this.store=R,this.actions=dA,this.lookupKey="",this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=h.wn1,this.screenSize="",this.screenSizeEnum=a.cu,this.unSubs=[new c.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(t=>t.type===a.AB.SET_LOOKUP_CLN||t.type===a.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{if(t.type===a.AB.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof t.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(t.payload[0]));break;case 1:this.channelLookupValue="object"!=typeof t.payload[0]?[]:JSON.parse(JSON.stringify(t.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}t.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===a.Bn.ERROR&&"Lookup"===t.payload.action&&(this.flgLoading[0]="error")})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.selectedFieldId){case 0:this.store.dispatch((0,Et.Sf)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,Et.$A)({payload:{uiMessage:a.m6.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh),A.Y36(Tt.eX))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-lookups"]],viewQuery:function(t,s){if(1&t&&A.Gf(Qr,7),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first)}},decls:20,vars:9,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"placeholder","ngModel","change","ngModelChange"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["errorBlock",""],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6),A.NdJ("ngModelChange",function(dA){return s.selectedFieldId=dA})("change",function(dA){return s.onSelectChange(dA)}),A.YNc(7,Xi,2,3,"mat-radio-button",7),A.qZA()(),A.TgZ(8,"mat-form-field",8)(9,"input",9,10),A.NdJ("change",function(){return s.clearLookupValue()})("ngModelChange",function(dA){return s.lookupKey=dA}),A.qZA(),A.YNc(11,bs,2,1,"mat-error",11),A.qZA(),A.TgZ(12,"div",12)(13,"button",13),A.NdJ("click",function(){return s.resetData()}),A._uU(14,"Clear"),A.qZA(),A.TgZ(15,"button",14),A.NdJ("click",function(){return s.onLookup()}),A._uU(16,"Lookup"),A.qZA()()(),A.YNc(17,dr,8,4,"div",15),A.qZA()()(),A.YNc(18,Hs,2,0,"ng-template",null,16,A.W1O)),2&t&&(A.xp6(6),A.Q6J("ngModel",s.selectedFieldId),A.xp6(1),A.Q6J("ngForOf",s.lookupFields),A.xp6(1),A.Q6J("ngClass",A.VKq(7,Js,s.screenSize===s.screenSizeEnum.XS||s.screenSize===s.screenSizeEnum.SM)),A.xp6(1),A.Q6J("placeholder",(null==s.lookupFields[s.selectedFieldId]?null:s.lookupFields[s.selectedFieldId].placeholder)||"Lookup Key")("ngModel",s.lookupKey),A.xp6(2),A.Q6J("ngIf",!s.lookupKey),A.xp6(6),A.Q6J("ngIf",s.flgSetLookupValue))},directives:[Ct.xw,Ct.yH,Ct.Wh,g.dn,OA._Y,OA.JL,OA.F,HA.VQ,OA.JJ,OA.On,ft.sg,HA.U0,U.KE,ft.mk,Y.oO,H.Nt,OA.Fj,OA.Q7,ft.O5,U.TO,w.lW,ft.RF,ft.n9,Rs,We,ft.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}.pl-3[_ngcontent-%COMP%]{padding-left:3rem}"]}),r})();var Mr=(()=>{return(r=Mr||(Mr={})).KB="KB",r.KW="KW",Mr;var r})();function gr(r,D){if(1&r&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4," Opening "),A.TgZ(5,"mat-icon",5),A._uU(6,"info_outline"),A.qZA()(),A.TgZ(7,"div",6),A._uU(8),A.ALo(9,"number"),A.qZA()(),A.TgZ(10,"div")(11,"h4",4),A._uU(12," Mutual Close "),A.TgZ(13,"mat-icon",7),A._uU(14,"info_outline"),A.qZA()(),A.TgZ(15,"div",6),A._uU(16),A.ALo(17,"number"),A.qZA()(),A.TgZ(18,"div")(19,"h4",4),A._uU(20," Unilateral Close "),A.TgZ(21,"mat-icon",8),A._uU(22,"info_outline"),A.qZA()(),A.TgZ(23,"div",6),A._uU(24),A.ALo(25,"number"),A.qZA()(),A.TgZ(26,"div")(27,"h4",4),A._uU(28," Delayed To Us "),A.TgZ(29,"mat-icon",9),A._uU(30,"info_outline"),A.qZA()(),A.TgZ(31,"div",6),A._uU(32),A.ALo(33,"number"),A.qZA()()(),A.TgZ(34,"div",3)(35,"div")(36,"h4",4),A._uU(37," Minimum Acceptable "),A.TgZ(38,"mat-icon",10),A._uU(39,"info_outline"),A.qZA()(),A.TgZ(40,"div",6),A._uU(41),A.ALo(42,"number"),A.qZA()(),A.TgZ(43,"div")(44,"h4",4),A._uU(45," Maximum Acceptable "),A.TgZ(46,"mat-icon",11),A._uU(47,"info_outline"),A.qZA()(),A.TgZ(48,"div",6),A._uU(49),A.ALo(50,"number"),A.qZA()(),A.TgZ(51,"div")(52,"h4",4),A._uU(53," HTLC Resolution "),A.TgZ(54,"mat-icon",12),A._uU(55,"info_outline"),A.qZA()(),A.TgZ(56,"div",6),A._uU(57),A.ALo(58,"number"),A.qZA()(),A.TgZ(59,"div")(60,"h4",4),A._uU(61," Penalty "),A.TgZ(62,"mat-icon",13),A._uU(63,"info_outline"),A.qZA()(),A.TgZ(64,"div",6),A._uU(65),A.ALo(66,"number"),A.qZA()()()()),2&r){const t=A.oxw();A.xp6(8),A.Oqu(A.lcZ(9,8,null==t.perkbw?null:t.perkbw.opening)),A.xp6(8),A.Oqu(A.lcZ(17,10,null==t.perkbw?null:t.perkbw.mutual_close)),A.xp6(8),A.Oqu(A.lcZ(25,12,null==t.perkbw?null:t.perkbw.unilateral_close)),A.xp6(8),A.Oqu(A.lcZ(33,14,null==t.perkbw?null:t.perkbw.delayed_to_us)),A.xp6(9),A.Oqu(A.lcZ(42,16,null==t.perkbw?null:t.perkbw.min_acceptable)),A.xp6(8),A.Oqu(A.lcZ(50,18,null==t.perkbw?null:t.perkbw.max_acceptable)),A.xp6(8),A.Oqu(A.lcZ(58,20,null==t.perkbw?null:t.perkbw.htlc_resolution)),A.xp6(8),A.Oqu(A.lcZ(66,22,null==t.perkbw?null:t.perkbw.penalty))}}function Ya(r,D){if(1&r&&(A.TgZ(0,"div",14)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let Gr=(()=>{class r{constructor(){this.perkbw={}}ngAfterContentChecked(){this.feeRateStyle===Mr.KB?this.perkbw=this.feeRates.perkb:this.feeRateStyle===Mr.KW&&(this.perkbw=this.feeRates.perkw)}}return r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch","class","h-100",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch",1,"h-100"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start center",1,"dashboard-info-title"],["matTooltip","Default feerate for fundchannel and withdraw","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Feerate to aim for in cooperative shutdown. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for commitment_transaction in a live channel which we originally funded","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close funds to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The smallest feerate that you can use, usually the minimum relayed feerate of the backend","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The largest feerate we will accept from remote negotiations. If a peer attempts to set the feerate higher than this we will unilaterally close the channel (or simply forget it if it's not open yet)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close HTLC outputs to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate to start at when penalizing a cheat attempt","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,gr,67,24,"div",0),A.YNc(1,Ya,3,1,"ng-template",null,1,A.W1O)),2&t){const R=A.MAs(2);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.yH,Ct.Wh,p.Hw,eA.gM],pipes:[ft.JJ],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}),r})();function Ta(r,D){if(1&r&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4," Opening Channel "),A.TgZ(5,"mat-icon",5),A._uU(6,"info_outline"),A.qZA()(),A.TgZ(7,"div",6),A._uU(8),A.ALo(9,"number"),A.qZA()(),A.TgZ(10,"div")(11,"h4",4),A._uU(12," Mutual Close "),A.TgZ(13,"mat-icon",7),A._uU(14,"info_outline"),A.qZA()(),A.TgZ(15,"div",6),A._uU(16),A.ALo(17,"number"),A.qZA()(),A.TgZ(18,"div")(19,"h4",4),A._uU(20," Unilateral Close "),A.TgZ(21,"mat-icon",8),A._uU(22,"info_outline"),A.qZA()(),A.TgZ(23,"div",6),A._uU(24),A.ALo(25,"number"),A.qZA()(),A.TgZ(26,"div",9),A._UZ(27,"h4",4)(28,"div",6),A.qZA()(),A.TgZ(29,"div",3)(30,"div")(31,"h4",4),A._uU(32," HTLC Timeout "),A.TgZ(33,"mat-icon",10),A._uU(34,"info_outline"),A.qZA()(),A.TgZ(35,"div",6),A._uU(36),A.ALo(37,"number"),A.qZA()(),A.TgZ(38,"div")(39,"h4",4),A._uU(40," HTLC Success "),A.TgZ(41,"mat-icon",11),A._uU(42,"info_outline"),A.qZA()(),A.TgZ(43,"div",6),A._uU(44),A.ALo(45,"number"),A.qZA()(),A.TgZ(46,"div",9),A._UZ(47,"h4",4)(48,"div",6),A.qZA(),A.TgZ(49,"div",9),A._UZ(50,"h4",4)(51,"div",6),A.qZA()()()),2&r){const t=A.oxw();A.xp6(8),A.Oqu(A.lcZ(9,5,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.xp6(8),A.Oqu(A.lcZ(17,7,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.xp6(8),A.Oqu(A.lcZ(25,9,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.xp6(12),A.Oqu(A.lcZ(37,11,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.xp6(8),A.Oqu(A.lcZ(45,13,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function ks(r,D){if(1&r&&(A.TgZ(0,"div",12)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let mi=(()=>{class r{constructor(){}}return r.\u0275fac=function(t){return new(t||r)},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch","class","h-100",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch",1,"h-100"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start center",1,"dashboard-info-title"],["matTooltip","Estimated cost of typical channel open","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Estimated cost of typical channel close","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical unilateral close (without HTLCs)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxFlex","12"],["matTooltip","Estimated cost of typical HTLC timeout transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical HTLC fulfillment transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,s){if(1&t&&(A.YNc(0,Ta,52,15,"div",0),A.YNc(1,ks,3,1,"ng-template",null,1,A.W1O)),2&t){const R=A.MAs(2);A.Q6J("ngIf",""===(null==s.errorMessage?null:s.errorMessage.trim()))("ngIfElse",R)}},directives:[ft.O5,Ct.xw,Ct.yH,Ct.Wh,p.Hw,eA.gM],pipes:[ft.JJ],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}),r})();function Di(r,D){1&r&&A._UZ(0,"mat-progress-bar",19)}function Fr(r,D){if(1&r&&A._UZ(0,"rtl-cln-node-info",20),2&r){const t=A.oxw(3);A.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function js(r,D){if(1&r&&A._UZ(0,"rtl-cln-channel-status-info",21),2&r){const t=A.oxw(3);A.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2])}}function yi(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-info",22),2&r){const t=A.oxw(3);A.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1]+" "+t.errorMessages[3]+" "+t.errorMessages[4])}}function qr(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-rates",23),2&r){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[5])}}function Ks(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-rates",23),2&r){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[6])}}function Vs(r,D){if(1&r&&A._UZ(0,"rtl-cln-onchain-fee-estimates",24),2&r){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[5])}}const Na=function(r){return{"dashboard-card-content":!0,"error-border":r}};function Sa(r,D){if(1&r&&(A.TgZ(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A._UZ(4,"fa-icon",8),A.TgZ(5,"span"),A._uU(6),A.qZA()()(),A.TgZ(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.YNc(10,Di,1,0,"mat-progress-bar",12),A.TgZ(11,"div",13),A.YNc(12,Fr,1,2,"rtl-cln-node-info",14),A.YNc(13,js,1,2,"rtl-cln-channel-status-info",15),A.YNc(14,yi,1,2,"rtl-cln-fee-info",16),A.YNc(15,qr,1,3,"rtl-cln-fee-rates",17),A.YNc(16,Ks,1,3,"rtl-cln-fee-rates",17),A.YNc(17,Vs,1,2,"rtl-cln-onchain-fee-estimates",18),A.qZA()()()()()()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(4),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(3),A.Q6J("ngClass",A.VKq(13,Na,"node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||"status"===t.id&&(s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.ERROR)||"fee"===t.id&&(s.apiCallStatusFees.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusChannels.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusFHistory.status===s.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&s.apiCallStatusPerKB.status===s.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||"status"===t.id&&(s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(s.apiCallStatusFees.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusChannels.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusFHistory.status===s.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&s.apiCallStatusPerKB.status===s.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","status"),A.xp6(1),A.Q6J("ngSwitchCase","fee"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKB"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKW"),A.xp6(1),A.Q6J("ngSwitchCase","onChainFeeEstimates")}}function Ws(r,D){if(1&r&&(A.TgZ(0,"mat-grid-list",2),A.YNc(1,Sa,18,15,"mat-grid-tile",3),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngForOf",t.nodeCardsOperator)}}function Zs(r,D){1&r&&A._UZ(0,"mat-progress-bar",19)}function Xs(r,D){if(1&r&&A._UZ(0,"rtl-cln-node-info",20),2&r){const t=A.oxw(3);A.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function qs(r,D){if(1&r&&A._UZ(0,"rtl-cln-channel-status-info",21),2&r){const t=A.oxw(3);A.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2])}}function _s(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-info",22),2&r){const t=A.oxw(3);A.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1]+" "+t.errorMessages[3]+" "+t.errorMessages[4])}}function $s(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-rates",23),2&r){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[5])}}function A0(r,D){if(1&r&&A._UZ(0,"rtl-cln-fee-rates",23),2&r){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[5])}}function t0(r,D){if(1&r&&A._UZ(0,"rtl-cln-onchain-fee-estimates",24),2&r){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[5])}}function e0(r,D){if(1&r&&(A.TgZ(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",25),A._UZ(4,"fa-icon",8),A.TgZ(5,"span"),A._uU(6),A.qZA()()(),A.TgZ(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.YNc(10,Zs,1,0,"mat-progress-bar",12),A.TgZ(11,"div",13),A.YNc(12,Xs,1,2,"rtl-cln-node-info",14),A.YNc(13,qs,1,2,"rtl-cln-channel-status-info",15),A.YNc(14,_s,1,2,"rtl-cln-fee-info",16),A.YNc(15,$s,1,3,"rtl-cln-fee-rates",17),A.YNc(16,A0,1,3,"rtl-cln-fee-rates",17),A.YNc(17,t0,1,2,"rtl-cln-onchain-fee-estimates",18),A.qZA()()()()()()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(4),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(3),A.Q6J("ngClass",A.VKq(13,Na,"node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||"status"===t.id&&(s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.ERROR)||"fee"===t.id&&(s.apiCallStatusFees.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusChannels.status===s.apiCallStatusEnum.ERROR||s.apiCallStatusFHistory.status===s.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&s.apiCallStatusPerKB.status===s.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||"status"===t.id&&(s.apiCallStatusNodeInfo.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusLRBal.status===s.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(s.apiCallStatusFees.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusChannels.status===s.apiCallStatusEnum.INITIATED||s.apiCallStatusFHistory.status===s.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&s.apiCallStatusPerKB.status===s.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&s.apiCallStatusPerKW.status===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","status"),A.xp6(1),A.Q6J("ngSwitchCase","fee"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKB"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKW"),A.xp6(1),A.Q6J("ngSwitchCase","onChainFeeEstimates")}}function n0(r,D){if(1&r&&(A.TgZ(0,"mat-grid-list",2),A.YNc(1,e0,18,15,"mat-grid-tile",3),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngForOf",t.nodeCardsMerchant)}}let r0=(()=>{class r{constructor(t,s,R){this.logger=t,this.commonService=s,this.store=R,this.faBolt=h.BDt,this.faServer=h.xf3,this.faNetworkWired=h.kXW,this.faLink=h.nNP,this.selNode={},this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=a.cu,this.userPersonaEnum=a.ol,this.errorMessages=["","","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFees=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:6,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:6,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:6,rows:1},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:4}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:4}]):(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:2,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:2,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:2,rows:3},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:4}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:4}])}ngOnInit(){this.store.select(B.Hz).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusNodeInfo.status===a.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=t.nodeSettings,this.information=t.information,this.logger.info(t)}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[1]),(0,o.M)(this.store.select(B.Wj))).subscribe(([t,s])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusLRBal=t.apiCallStatus,this.apiCallStatusChannels=s.apiCallStatus,this.apiCallStatusLRBal.status===a.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===a.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.channelsStatus.active.capacity=s.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=s.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=s.localRemoteBalance.inactiveBalance||0}),this.store.select(B.JG).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===a.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(B.Bo).pipe((0,i.R)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusFHistory=t.apiCallStatus,this.apiCallStatusFHistory.status===a.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),t.forwardingHistory&&t.forwardingHistory.listForwards&&t.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=t.forwardingHistory.listForwards.length)}),this.store.select(B.zm).pipe((0,i.R)(this.unSubs[4])).subscribe(t=>{this.errorMessages[5]="",this.apiCallStatusPerKB=t.apiCallStatus,this.apiCallStatusPerKB.status===a.Bn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=t.feeRatesPerKB}),this.store.select(B.hx).pipe((0,i.R)(this.unSubs[5])).subscribe(t=>{this.errorMessages[6]="",this.apiCallStatusPerKW=t.apiCallStatus,this.apiCallStatusPerKW.status===a.Bn.ERROR&&(this.errorMessages[6]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=t.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-network-info"]],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","6","rowHeight","100px",4,"ngIf"],["cols","6","rowHeight","100px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-2"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","feeRateStyle","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],[1,"h-100",3,"feeRates","feeRateStyle","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,Ws,2,1,"mat-grid-list",1),A.YNc(2,n0,2,1,"mat-grid-list",1),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",s.selNode.userPersona===s.userPersonaEnum.OPERATOR),A.xp6(1),A.Q6J("ngIf",s.selNode.userPersona===s.userPersonaEnum.MERCHANT))},directives:[Ct.xw,Ct.Wh,ft.O5,f.Il,ft.sg,f.DX,Ct.yH,e.BN,g.a8,g.dn,ft.mk,Y.oO,T.pW,ft.RF,ft.n9,P,X,NA,Gr,mi],styles:[""]}),r})();function xi(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",8),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().activeLink=dA.link}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit,s=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",s.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let qi=(()=>{class r{constructor(t){this.router=t,this.faUserCheck=h.hkK,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new c.x,new c.x]}ngOnInit(){const t=this.links.find(s=>this.router.url.includes(s.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(s=>s instanceof $t.Av)).subscribe({next:s=>{const R=this.links.find(dA=>s.urlAfterRedirects.includes(dA.link));this.activeLink=R?R.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-sign-verify-message"]],decls:11,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Sign/Verify Message"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),A.YNc(8,xi,2,3,"div",6),A.qZA(),A.TgZ(9,"div",7),A._UZ(10,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faUserCheck),A.xp6(7),A.Q6J("ngForOf",s.links))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,ht.BU,ft.sg,ht.Nj,$t.rH,Ct.yH,$t.lC],styles:[""]}),r})();var Fi=Ut(9122);function Ua(r,D){if(1&r&&(A.TgZ(0,"mat-option",7),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t),A.xp6(1),A.hij(" ",t.addressTp," ")}}let i0=(()=>{class r{constructor(t,s){this.store=t,this.clnEffects=s,this.addressTypes=a._t,this.selectedAddressType=a._t[0],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,Et._E)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,PA.q)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,KA.qR)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:Fi.n}}}))},0)})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(u.yh),A.Y36(An.J))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-on-chain-receive"]],decls:8,vars:2,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","space-between end","fxLayoutAlign.gt-sm","start end"],["fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["placeholder","Address Type","name","address_type","tabindex","1",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],[1,"mt-2"],["mat-flat-button","","color","primary","tabindex","2",1,"top-minus-15px",3,"click"],[3,"value"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-select",3),A.NdJ("ngModelChange",function(dA){return s.selectedAddressType=dA}),A.YNc(4,Ua,2,2,"mat-option",4),A.qZA()(),A.TgZ(5,"div",5)(6,"button",6),A.NdJ("click",function(){return s.onGenerateAddress()}),A._uU(7,"Generate Address"),A.qZA()()()()),2&t&&(A.xp6(3),A.Q6J("ngModel",s.selectedAddressType),A.xp6(1),A.Q6J("ngForOf",s.addressTypes))},directives:[Ct.xw,Ct.Wh,U.KE,Ct.yH,CA.gD,OA.JJ,OA.On,ft.sg,wA.ey,w.lW],styles:[""]}),r})(),_r=(()=>{class r{constructor(t,s){this.store=t,this.activatedRoute=s,this.sweepAll=!1,this.unSubs=[new c.x,new c.x]}ngOnInit(){this.activatedRoute.data.pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,KA.qR)({payload:{data:{sweepAll:this.sweepAll,component:wi}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(u.yh),A.Y36($t.gz))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return s.openSendFundsModal()}),A._uU(3),A.qZA()()()),2&t&&(A.xp6(3),A.Oqu(s.sweepAll?"Sweep All":"Send Funds"))},directives:[Ct.xw,Ct.yH,Ct.Wh,w.lW],styles:[""]}),r})();var Ln=Ut(8675),nr=Ut(4004),Yi=Ut(1079),Ti=Ut(9843);const _i=["form"];function a0(r,D){if(1&r&&(A.TgZ(0,"mat-option",42),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(t.alias?t.alias:t.id?t.id:"")}}function $r(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Peer alias is required."),A.qZA())}function Pa(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Peer not found in the list."),A.qZA())}function o0(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",39),A.NdJ("change",function(){return A.CHM(t),A.oxw().onSelectedPeerChanged()}),A.qZA(),A.TgZ(2,"mat-autocomplete",40,41),A.NdJ("optionSelected",function(){return A.CHM(t),A.oxw().onSelectedPeerChanged()}),A.YNc(4,a0,2,2,"mat-option",26),A.ALo(5,"async"),A.qZA(),A.YNc(6,$r,2,0,"mat-error",17),A.YNc(7,Pa,2,0,"mat-error",17),A.qZA()}if(2&r){const t=A.MAs(3),s=A.oxw();A.xp6(1),A.Q6J("formControl",s.selectedPeer)("matAutocomplete",t),A.xp6(1),A.Q6J("displayWith",s.displayFn),A.xp6(2),A.Q6J("ngForOf",A.lcZ(5,6,s.filteredPeers)),A.xp6(2),A.Q6J("ngIf",null==s.selectedPeer.errors?null:s.selectedPeer.errors.required),A.xp6(1),A.Q6J("ngIf",null==s.selectedPeer.errors?null:s.selectedPeer.errors.notfound)}}function s0(r,D){1&r&&A.GkF(0)}function l0(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function c0(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function g0(r,D){if(1&r&&(A.TgZ(0,"mat-option",42),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function B0(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function u0(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-form-field",43)(1,"input",44,45),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().customFeeRate=R}),A.qZA(),A.YNc(3,B0,2,0,"mat-error",17),A.qZA()}if(2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngModel",t.customFeeRate)("step",.1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function f0(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function h0(r,D){if(1&r&&(A.TgZ(0,"mat-option",42),A._uU(1),A.ALo(2,"number"),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t),A.xp6(1),A.hij("",A.lcZ(2,2,t.value)," Sats")}}function E0(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",22)(1,"mat-form-field",46)(2,"mat-select",47),A.NdJ("selectionChange",function(R){return A.CHM(t),A.oxw().onUTXOSelectionChange(R)})("valueChange",function(R){return A.CHM(t),A.oxw().selUTXOs=R}),A.TgZ(3,"mat-select-trigger"),A._uU(4),A.ALo(5,"number"),A.qZA(),A.YNc(6,h0,3,4,"mat-option",26),A.qZA()(),A.TgZ(7,"div",28)(8,"mat-slide-toggle",48),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().flgUseAllBalance=R})("change",function(){return A.CHM(t),A.oxw().onUTXOAllBalanceChange()}),A._uU(9," Use selected UTXOs balance "),A.qZA(),A.TgZ(10,"mat-icon",49),A._uU(11,"info_outline"),A.qZA()()()}if(2&r){const t=A.oxw();A.xp6(2),A.Q6J("value",t.selUTXOs),A.xp6(2),A.AsE("",A.lcZ(5,6,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.xp6(2),A.Q6J("ngForOf",t.utxos),A.xp6(2),A.Q6J("ngModel",t.flgUseAllBalance)("disabled",t.selUTXOs.length<1)}}function w0(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.channelConnectionError)}}function C0(r,D){if(1&r&&(A.TgZ(0,"div",50),A._UZ(1,"fa-icon",51),A.YNc(2,w0,2,1,"span",17),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.channelConnectionError)}}function Q0(r,D){if(1&r&&(A.TgZ(0,"mat-expansion-panel",53)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A._uU(4,"Peer: \xa0"),A.qZA(),A.TgZ(5,"strong",54),A._uU(6),A.qZA()()(),A.TgZ(7,"div",9)(8,"div",0)(9,"div",1)(10,"h4",55),A._uU(11,"Pubkey"),A.qZA(),A.TgZ(12,"span",56),A._uU(13),A.qZA()()(),A._UZ(14,"mat-divider",57),A.TgZ(15,"div",0)(16,"div",58)(17,"h4",55),A._uU(18,"Address"),A.qZA(),A.TgZ(19,"span",59),A._uU(20),A.qZA()(),A.TgZ(21,"div",58)(22,"h4",55),A._uU(23,"Connected"),A.qZA(),A.TgZ(24,"span",59),A._uU(25),A.qZA()()()()()),2&r){const t=A.oxw(2);A.xp6(6),A.Oqu((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.id)),A.xp6(7),A.Oqu(t.peer.id),A.xp6(7),A.Oqu(null==t.peer?null:t.peer.netaddr),A.xp6(5),A.Oqu(t.peer.connected?"True":"False")}}function Ni(r,D){if(1&r&&A.YNc(0,Q0,26,4,"mat-expansion-panel",52),2&r){const t=A.oxw();A.Q6J("ngIf",t.peer)}}const ve=function(r,D){return{"mr-6":r,"mr-2":D}};let ne=(()=>{class r{constructor(t,s,R,dA,ot,Ft){this.dialogRef=t,this.data=s,this.store=R,this.actions=dA,this.decimalPipe=ot,this.commonService=Ft,this.selectedPeer=new OA.NI,this.faExclamationTriangle=h.eHv,this.isCompatibleVersion=!1,this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=0,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.fundingAmount=null,this.selectedPubkey="",this.isPrivate=!1,this.feeRateTypes=a.vn,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=a.cu,this.unSubs=[new c.x,new c.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.isCompatibleVersion=this.data.message.isCompatibleVersion,this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.utxos=this.data.message.utxos,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.isCompatibleVersion=!1,this.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.actions.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(R=>R.type===a.AB.UPDATE_API_CALL_STATUS_CLN||R.type===a.AB.FETCH_CHANNELS_CLN)).subscribe(R=>{R.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&R.payload.status===a.Bn.ERROR&&"SaveNewChannel"===R.payload.action&&(this.channelConnectionError=R.payload.message),R.type===a.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let t="",s="";this.sortedPeers=this.peers.sort((R,dA)=>(t=R.alias?R.alias.toLowerCase():R.id?R.id.toLowerCase():"",s=dA.alias?dA.alias.toLowerCase():R.id?R.id.toLowerCase():"",ts?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,i.R)(this.unSubs[1]),(0,Ln.O)(""),(0,nr.U)(R=>"string"==typeof R?R:R.alias?R.alias:R.id),(0,nr.U)(R=>R?this.filterPeers(R):this.sortedPeers.slice()))}filterPeers(t){var s;return null===(s=this.sortedPeers)||void 0===s?void 0:s.filter(R=>{var dA;return 0===(null===(dA=R.alias)||void 0===dA?void 0:dA.toLowerCase().indexOf(t?t.toLowerCase():""))})}displayFn(t){return t&&t.alias?t.alias:t&&t.id?t.id:""}onSelectedPeerChanged(){var t;if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const s=null===(t=this.peers)||void 0===t?void 0:t.filter(R=>{var dA,ot;return(null===(dA=R.alias)||void 0===dA?void 0:dA.length)===this.selectedPeer.value.length&&0===(null===(ot=R.alias)||void 0===ot?void 0:ot.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""))});1===s.length&&s[0].id&&(this.selectedPubkey=s[0].id)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.flgMinConf=!1,this.selFeeRate="",this.minConfValue=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!1,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(t){var s;t&&(this.flgMinConf||this.selFeeRate||this.selUTXOs.length&&0!==this.selUTXOs.length)?(this.advancedTitle="Advanced Options",this.flgMinConf&&(this.advancedTitle=this.advancedTitle+" | Min Confirmation Blocks: "+this.minConfValue),this.selFeeRate&&(this.advancedTitle=this.advancedTitle+" | Fee Rate: "+(this.customFeeRate?this.customFeeRate+" (Sats/vByte)":null===(s=this.feeRateTypes.find(R=>R.feeRateId===this.selFeeRate))||void 0===s?void 0:s.feeRateType)),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.advancedTitle=this.advancedTitle+" | Total Selected: "+this.selUTXOs.length+" | Selected UTXOs: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats")):this.advancedTitle="Advanced Options"}onUTXOSelectionChange(t){var s;this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=null===(s=this.selUTXOs)||void 0===s?void 0:s.reduce((R,dA)=>R+(dA.value||0),0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=0,this.fundingAmount=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.fundingAmount=this.flgUseAllBalance?this.totalSelectedUTXOAmount:null}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.flgMinConf&&!this.minConfValue||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;const t={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,satoshis:this.flgUseAllBalance?"all":this.fundingAmount.toString(),announce:!this.isPrivate,minconf:this.flgMinConf?this.minConfValue:null};t.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(t.utxos=[],this.selUTXOs.forEach(s=>t.utxos.push(s.txid+":"+s.output))),this.store.dispatch((0,Et.YX)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(u.yh),A.Y36(Tt.eX),A.Y36(ft.JJ),A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-open-channel"]],viewQuery:function(t,s){if(1&t&&A.Gf(_i,7),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first)}},decls:56,vars:34,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["form","ngForm"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","70","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","1","required","","name","amount",3,"ngModel","step","min","max","disabled","ngModelChange"],["amount","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModel","ngModelChange"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","54","fxLayoutAlign","space-between end"],["fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","placeholder","Fee Rate",3,"value","disabled","valueChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","42","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","2","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModel","ngClass","ngModelChange","change"],["fxFlex","98"],["matInput","","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"ngModel","step","min","required","disabled","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["peerDetailsExpansionBlock",""],["type","text","placeholder","Peer Alias","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"ngModel","step","min","required","ngModelChange"],["custFeeRate","ngModel"],["fxFlex","54","fxLayoutAlign","start end"],["tabindex","6","placeholder","Coin Selection","multiple","",3,"value","selectionChange","valueChange"],["tabindex","7","color","primary","name","flgUseAllBalance",3,"ngModel","disabled","ngModelChange","change"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","before",1,"info-icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(t,s){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return s.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8),A.NdJ("submit",function(){return s.onOpenChannel()})("reset",function(){return s.resetData()}),A.TgZ(11,"div",9),A.YNc(12,o0,8,8,"mat-form-field",10),A.qZA(),A.YNc(13,s0,1,0,"ng-container",11),A.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"input",14,15),A.NdJ("ngModelChange",function(dA){return s.fundingAmount=dA}),A.qZA(),A.TgZ(19,"mat-hint"),A._uU(20),A.ALo(21,"number"),A.qZA(),A.TgZ(22,"span",16),A._uU(23," Sats "),A.qZA(),A.YNc(24,l0,2,0,"mat-error",17),A.YNc(25,c0,2,1,"mat-error",17),A.qZA(),A.TgZ(26,"div",18)(27,"mat-slide-toggle",19),A.NdJ("ngModelChange",function(dA){return s.isPrivate=dA}),A._uU(28,"Private Channel"),A.qZA()()(),A.TgZ(29,"mat-expansion-panel",20),A.NdJ("closed",function(){return s.onAdvancedPanelToggle(!0)})("opened",function(){return s.onAdvancedPanelToggle(!1)}),A.TgZ(30,"mat-expansion-panel-header")(31,"mat-panel-title")(32,"span"),A._uU(33),A.qZA()()(),A.TgZ(34,"div",21)(35,"div",22)(36,"div",23)(37,"mat-form-field",24)(38,"mat-select",25),A.NdJ("valueChange",function(dA){return s.selFeeRate=dA})("selectionChange",function(){return s.customFeeRate=null}),A.YNc(39,g0,2,2,"mat-option",26),A.qZA()(),A.YNc(40,u0,4,5,"mat-form-field",27),A.qZA(),A.TgZ(41,"div",28)(42,"mat-checkbox",29),A.NdJ("ngModelChange",function(dA){return s.flgMinConf=dA})("change",function(){return s.flgMinConf?s.selFeeRate=null:s.minConfValue=null}),A.qZA(),A.TgZ(43,"mat-form-field",30)(44,"input",31,32),A.NdJ("ngModelChange",function(dA){return s.minConfValue=dA}),A.qZA(),A.YNc(46,f0,2,0,"mat-error",17),A.qZA()()(),A.YNc(47,E0,12,8,"div",33),A.qZA()()(),A.YNc(48,C0,3,2,"div",34),A.TgZ(49,"div",35)(50,"button",36),A._uU(51,"Clear Fields"),A.qZA(),A.TgZ(52,"button",37),A._uU(53,"Open Channel"),A.qZA()()()()()(),A.YNc(54,Ni,1,1,"ng-template",null,38,A.W1O)),2&t){const R=A.MAs(18),dA=A.MAs(55);A.xp6(5),A.Oqu(s.alertTitle),A.xp6(7),A.Q6J("ngIf",!s.peer&&s.peers&&s.peers.length>0),A.xp6(1),A.Q6J("ngTemplateOutlet",dA),A.xp6(4),A.Q6J("ngModel",s.fundingAmount)("step",1e3)("min",1)("max",s.totalBalance)("disabled",s.flgUseAllBalance),A.xp6(3),A.AsE("Remaining Bal: ",A.lcZ(21,29,s.totalBalance-(s.fundingAmount?s.fundingAmount:0)),"",s.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.xp6(4),A.Q6J("ngIf",(null==R.errors?null:R.errors.required)||!s.fundingAmount),A.xp6(1),A.Q6J("ngIf",null==R.errors?null:R.errors.max),A.xp6(2),A.Q6J("ngModel",s.isPrivate),A.xp6(6),A.Oqu(s.advancedTitle),A.xp6(4),A.Q6J("fxFlex","customperkb"!==s.selFeeRate||s.flgMinConf?"100":"48"),A.xp6(1),A.Q6J("value",s.selFeeRate)("disabled",s.flgMinConf),A.xp6(1),A.Q6J("ngForOf",s.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===s.selFeeRate&&!s.flgMinConf),A.xp6(2),A.Q6J("ngModel",s.flgMinConf)("ngClass",A.WLB(31,ve,s.screenSize===s.screenSizeEnum.XS||s.screenSize===s.screenSizeEnum.SM,s.screenSize===s.screenSizeEnum.MD||s.screenSize===s.screenSizeEnum.LG||s.screenSize===s.screenSizeEnum.XL)),A.xp6(2),A.Q6J("ngModel",s.minConfValue)("step",1)("min",0)("required",s.flgMinConf)("disabled",!s.flgMinConf),A.xp6(2),A.Q6J("ngIf",s.flgMinConf&&!s.minConfValue),A.xp6(1),A.Q6J("ngIf",s.isCompatibleVersion),A.xp6(1),A.Q6J("ngIf",""!==s.channelConnectionError)}},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,g.dn,OA._Y,OA.JL,OA.F,ft.O5,U.KE,H.Nt,OA.Fj,Yi.ZL,OA.Q7,OA.JJ,OA.oH,Yi.XC,ft.sg,wA.ey,U.TO,ft.tP,OA.wV,OA.qQ,OA.Fd,b.q,Ti.F,OA.On,U.bx,U.R9,RA.Rr,cr.ib,cr.yz,cr.yK,CA.gD,$A.oG,ft.mk,Y.oO,CA.$L,p.Hw,eA.gM,e.BN,k.h,sA.d],pipes:[ft.Ov,ft.JJ],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),r})();function d0(r,D){if(1&r&&(A.TgZ(0,"span",7),A._uU(1,"Open"),A.qZA()),2&r){const t=A.oxw();A.s9C("matBadge",t.openChannels)}}function Ra(r,D){if(1&r&&(A.TgZ(0,"span",7),A._uU(1,"Pending/Inactive"),A.qZA()),2&r){const t=A.oxw();A.s9C("matBadge",t.pendingChannels)}}let Ai=(()=>{class r{constructor(t,s,R,dA){this.logger=t,this.store=s,this.commonService=R,this.router=dA,this.openChannels=0,this.pendingChannels=0,this.selNode={},this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"}],this.activeLink=0,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(t=>t instanceof $t.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(s=>s.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(B.OL).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.selNode=t.nodeSettings,this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(B.Wi).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(B.T4).pipe((0,i.R)(this.unSubs[3])).subscribe(t=>{var s;this.utxos=this.commonService.sortAscByKey(null===(s=t.utxos)||void 0===s?void 0:s.filter(R=>"confirmed"===R.status),"value")}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[4])).subscribe(t=>{this.openChannels=t.activeChannels.length||0,this.pendingChannels=t.pendingChannels.length+t.inactiveChannels.length||0,this.logger.info(t)})}onOpenChannel(){const t={peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos,isCompatibleVersion:this.commonService.isVersionCompatible(this.information.version,"0.9.0")&&this.commonService.isVersionCompatible(this.information.api_version,"0.4.0")};this.store.dispatch((0,KA.qR)({payload:{data:{alertTitle:"Open Channel",message:t,component:ne}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(C.v),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channels-tables"]],decls:12,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"my-2","bordered-box"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return s.onOpenChannel()}),A._uU(3,"Open Channel"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-tab-group",4),A.NdJ("selectedIndexChange",function(dA){return s.activeLink=dA})("selectedTabChange",function(dA){return s.onSelectedTabChange(dA)}),A.TgZ(6,"mat-tab"),A.YNc(7,d0,2,1,"ng-template",5),A.qZA(),A.TgZ(8,"mat-tab"),A.YNc(9,Ra,2,1,"ng-template",5),A.qZA()(),A.TgZ(10,"div",6),A._UZ(11,"router-outlet"),A.qZA()()()),2&t&&(A.xp6(5),A.Q6J("selectedIndex",s.activeLink))},directives:[Ct.xw,Ct.yH,Ct.Wh,w.lW,ht.SP,ht.uX,ht.uD,ji.k,$t.lC],styles:[""]}),r})();function za(r,D){if(1&r&&(A.TgZ(0,"div")(1,"div",9)(2,"div",1)(3,"h4",11),A._uU(4,"Funding Transaction Id"),A.qZA(),A.TgZ(5,"span",12),A._uU(6),A.qZA()()(),A._UZ(7,"mat-divider",13),A.qZA()),2&r){const t=A.oxw();A.xp6(6),A.Oqu(t.channel.funding_txid),A.xp6(1),A.Q6J("inset",!0)}}function M0(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Show Advanced"),A.qZA())}function p0(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Hide Advanced"),A.qZA())}function La(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",23),A.NdJ("copied",function(R){return A.CHM(t),A.oxw().onCopyChanID(R)}),A._uU(1,"Copy Short Channel ID"),A.qZA()}if(2&r){const t=A.oxw();A.Q6J("payload",t.channel.short_channel_id)}}function I0(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"button",24),A.NdJ("click",function(){return A.CHM(t),A.oxw().onClose()}),A._uU(1,"OK"),A.qZA()}}const wn=function(r){return{"xs-scroll-y":r}},$i=function(r,D){return{"mt-2":r,"mt-1":D}};let Aa=(()=>{class r{constructor(t,s,R,dA,ot){this.dialogRef=t,this.data=s,this.logger=R,this.commonService=dA,this.snackBar=ot,this.faReceipt=h.dLy,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=a.cu}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(t){this.snackBar.open("Short channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(E.mQ),A.Y36(C.v),A.Y36(Rr.ux))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-information"]],decls:94,vars:40,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(t,s){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3),A._UZ(4,"fa-icon",4),A.TgZ(5,"span",5),A._uU(6,"Channel Information"),A.qZA()(),A.TgZ(7,"button",6),A.NdJ("click",function(){return s.onClose()}),A._uU(8,"X"),A.qZA()(),A.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),A._uU(14,"Short Channel ID"),A.qZA(),A.TgZ(15,"span",12),A._uU(16),A.qZA()(),A.TgZ(17,"div",10)(18,"h4",11),A._uU(19,"Peer Alias"),A.qZA(),A.TgZ(20,"span",12),A._uU(21),A.qZA()()(),A._UZ(22,"mat-divider",13),A.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),A._uU(26,"Channel ID"),A.qZA(),A.TgZ(27,"span",12),A._uU(28),A.qZA()()(),A._UZ(29,"mat-divider",13),A.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),A._uU(33,"Peer Public Key"),A.qZA(),A.TgZ(34,"span",12),A._uU(35),A.qZA()()(),A._UZ(36,"mat-divider",13),A.TgZ(37,"div",9)(38,"div",14)(39,"h4",11),A._uU(40,"mSatoshi to Us"),A.qZA(),A.TgZ(41,"span",15),A._uU(42),A.ALo(43,"number"),A.qZA()(),A.TgZ(44,"div",14)(45,"h4",11),A._uU(46,"Spendable (mSats)"),A.qZA(),A.TgZ(47,"span",15),A._uU(48),A.ALo(49,"number"),A.qZA()(),A.TgZ(50,"div",14)(51,"h4",11),A._uU(52,"Total (mSats)"),A.qZA(),A.TgZ(53,"span",15),A._uU(54),A.ALo(55,"number"),A.qZA()(),A.TgZ(56,"div",14)(57,"h4",11),A._uU(58,"State"),A.qZA(),A.TgZ(59,"span",15),A._uU(60),A.qZA()()(),A._UZ(61,"mat-divider",13),A.TgZ(62,"div",9)(63,"div",14)(64,"h4",11),A._uU(65,"Our Reserve (Sats)"),A.qZA(),A.TgZ(66,"span",15),A._uU(67),A.ALo(68,"number"),A.qZA()(),A.TgZ(69,"div",14)(70,"h4",11),A._uU(71,"Their Reserve (Sats)"),A.qZA(),A.TgZ(72,"span",15),A._uU(73),A.ALo(74,"number"),A.qZA()(),A.TgZ(75,"div",14)(76,"h4",11),A._uU(77,"Connected"),A.qZA(),A.TgZ(78,"span",15),A._uU(79),A.qZA()(),A.TgZ(80,"div",14)(81,"h4",11),A._uU(82,"Private"),A.qZA(),A.TgZ(83,"span",15),A._uU(84),A.qZA()()(),A._UZ(85,"mat-divider",13),A.YNc(86,za,8,2,"div",16),A.TgZ(87,"div",17)(88,"button",18),A.NdJ("click",function(){return s.onShowAdvanced()}),A.YNc(89,M0,2,0,"p",19),A.YNc(90,p0,2,0,"ng-template",null,20,A.W1O),A.qZA(),A.YNc(92,La,2,1,"button",21),A.YNc(93,I0,2,0,"button",22),A.qZA()()()()()),2&t){const R=A.MAs(91);A.xp6(4),A.Q6J("icon",s.faReceipt),A.xp6(5),A.Q6J("ngClass",A.VKq(35,wn,s.screenSize===s.screenSizeEnum.XS)),A.xp6(7),A.Oqu(s.channel.short_channel_id),A.xp6(5),A.Oqu(s.channel.alias),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(s.channel.channel_id),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(s.channel.id),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(A.lcZ(43,25,s.channel.msatoshi_to_us)),A.xp6(6),A.Oqu(A.lcZ(49,27,s.channel.spendable_msatoshi)),A.xp6(6),A.Oqu(A.lcZ(55,29,s.channel.msatoshi_total)),A.xp6(6),A.Oqu(s.channel.state),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(A.lcZ(68,31,s.channel.our_channel_reserve_satoshis)),A.xp6(6),A.Oqu(A.lcZ(74,33,s.channel.their_channel_reserve_satoshis)),A.xp6(6),A.Oqu(s.channel.connected?"Yes":"No"),A.xp6(5),A.Oqu(s.channel.private?"Yes":"No"),A.xp6(1),A.Q6J("inset",!0),A.xp6(1),A.Q6J("ngIf",s.showAdvanced),A.xp6(1),A.Q6J("ngClass",A.WLB(37,$i,!s.showAdvanced,s.showAdvanced)),A.xp6(2),A.Q6J("ngIf",!s.showAdvanced)("ngIfElse",R),A.xp6(3),A.Q6J("ngIf",s.showCopy),A.xp6(1),A.Q6J("ngIf",!s.showCopy)}},directives:[Ct.xw,Ct.Wh,Ct.yH,g.dk,e.BN,w.lW,g.dn,ft.mk,Y.oO,sA.d,ft.O5,k.h,Xr.y],pipes:[ft.JJ],styles:[""]}),r})();function Si(r,D){1&r&&A._UZ(0,"mat-progress-bar",33)}function v0(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," Short Channel ID "),A.qZA())}function Yr(r,D){if(1&r&&(A.TgZ(0,"span",40),A._UZ(1,"fa-icon",41),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faEyeSlash)}}function rr(r,D){if(1&r&&(A.TgZ(0,"span",42),A._UZ(1,"fa-icon",41),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faEye)}}const ir=function(r){return{"max-width":r}};function Br(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"div",36),A.YNc(2,Yr,2,1,"span",37),A.YNc(3,rr,2,1,"span",38),A.TgZ(4,"span",39),A._uU(5),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(4,ir,s.screenSize===s.screenSizeEnum.XS?"12rem":"22rem")),A.xp6(1),A.Q6J("ngIf",t.private),A.xp6(1),A.Q6J("ngIf",!t.private),A.xp6(2),A.Oqu(null==t?null:t.short_channel_id)}}function m0(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," Alias "),A.qZA())}function D0(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"div",36)(2,"span",39),A._uU(3),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ir,s.screenSize===s.screenSizeEnum.XS?"12rem":"22rem")),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function y0(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," Connected "),A.qZA())}function Ui(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null!=t&&t.connected?"Connected":"Disconnected"," ")}}function x0(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," Private "),A.qZA())}function ba(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null!=t&&t.private?"Private":"Public"," ")}}function F0(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," State "),A.qZA())}function Y0(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.state,"")}}function Me(r,D){1&r&&(A.TgZ(0,"th",43),A._uU(1," Local Balance (Sats) "),A.qZA())}function Ga(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",44),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_to_us)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function T0(r,D){1&r&&(A.TgZ(0,"th",43),A._uU(1," Remote Balance (Sats) "),A.qZA())}function N0(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",44),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_to_them)/1e3,(null==t?null:t.msatoshi_to_them)<1e3?"1.0-4":"1.0-0")," ")}}function Ha(r,D){1&r&&(A.TgZ(0,"th",43),A._uU(1," Total mSatoshis "),A.qZA())}function S0(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",44),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.msatoshi_total)," ")}}function U0(r,D){1&r&&(A.TgZ(0,"th",43),A._uU(1," Spendable Satoshi "),A.qZA())}function P0(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",44),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.spendable_msatoshi)," ")}}function Ja(r,D){1&r&&(A.TgZ(0,"th",45),A._uU(1,"Balance Score "),A.qZA())}function Pi(r,D){if(1&r&&(A.TgZ(0,"td",46)(1,"div",47)(2,"mat-hint",48),A._uU(3),A.ALo(4,"number"),A.qZA()(),A._UZ(5,"mat-progress-bar",49),A.qZA()),2&r){const t=D.$implicit;A.xp6(3),A.Oqu(A.lcZ(4,2,t.balancedness||0)),A.xp6(2),A.s9C("value",t.msatoshi_to_us&&t.msatoshi_to_us>0?+t.msatoshi_to_us/(+t.msatoshi_to_us+ +t.msatoshi_to_them)*100:0)}}function Oa(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",50)(1,"div",51)(2,"mat-select",52),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",53),A.NdJ("click",function(){return A.CHM(t),A.oxw().onChannelUpdate("all")}),A._uU(5,"Update Fee Policy"),A.qZA(),A.TgZ(6,"mat-option",53),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(7,"Download CSV"),A.qZA()()()()}}function R0(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",54)(1,"div",55)(2,"mat-select",56),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",53),A.NdJ("click",function(R){const ot=A.CHM(t).$implicit;return A.oxw().onChannelClick(ot,R)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",53),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onViewRemotePolicy(dA)}),A._uU(7,"View Remote Fee"),A.qZA(),A.TgZ(8,"mat-option",53),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onChannelUpdate(dA)}),A._uU(9,"Update Fee Policy"),A.qZA(),A.TgZ(10,"mat-option",53),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onChannelClose(dA)}),A._uU(11,"Close Channel"),A.qZA()()()()}}function z0(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No peers connected. Add a peer in order to open a channel."),A.qZA())}function L0(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No channel available."),A.qZA())}function b0(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting channels..."),A.qZA())}function G0(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function H0(r,D){if(1&r&&(A.TgZ(0,"td",57),A.YNc(1,z0,2,0,"p",58),A.YNc(2,L0,2,0,"p",58),A.YNc(3,b0,2,0,"p",58),A.YNc(4,G0,2,1,"p",58),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const J0=function(r){return{"display-none":r}};function Ri(r,D){if(1&r&&A._UZ(0,"tr",59),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,J0,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function O0(r,D){1&r&&A._UZ(0,"tr",60)}function ta(r,D){1&r&&A._UZ(0,"tr",61)}const ka=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},k0=function(){return["no_peer"]};let ti=(()=>{class r{constructor(t,s,R,dA,ot,Ft){var Ot,qe,Bn,se,_e,Ir,kn,gi;this.logger=t,this.store=s,this.rtlEffects=R,this.clnEffects=dA,this.commonService=ot,this.router=Ft,this.faEye=h.Mdf,this.faEyeSlash=h.Aq,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=a.vn,this.selFilter="",this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","msatoshi_to_us","msatoshi_to_them","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","actions"]):(this.flgSticky=!0,this.displayedColumns=["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","balancedness","actions"]),this.selFilter=(null===(se=null===(Bn=null===(qe=null===(Ot=this.router)||void 0===Ot?void 0:Ot.getCurrentNavigation())||void 0===qe?void 0:qe.extras)||void 0===Bn?void 0:Bn.state)||void 0===se?void 0:se.filter)?null===(gi=null===(kn=null===(Ir=null===(_e=this.router)||void 0===_e?void 0:_e.getCurrentNavigation())||void 0===Ir?void 0:Ir.extras)||void 0===kn?void 0:kn.state)||void 0===gi?void 0:gi.filter:""}ngOnInit(){this.store.select(B.jK).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.activeChannels,this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,Et.$A)({payload:{uiMessage:a.m6.GET_REMOTE_POLICY,shortChannelID:t.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,PA.q)(1)).subscribe(s=>{if(0===s.length)return!1;let R={};R=s[0].source!==this.information.id?s[0]:s[1];const dA=[[{key:"base_fee_millisatoshi",value:R.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:a.Gi.NUMBER},{key:"fee_per_millionth",value:R.fee_per_millionth,title:"Fee/Millionth",width:33,type:a.Gi.NUMBER},{key:"delay",value:R.delay,title:"Delay",width:33,type:a.Gi.NUMBER}]],ot="Remote policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id);setTimeout(()=>{this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:ot,message:dA}}}))},0)})}onChannelUpdate(t){"all"!==t&&"ONCHAIN"===t.state||("all"===t?(this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:"number",inputValue:1e3,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:"number",inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[1])).subscribe(R=>{R&&this.store.dispatch((0,Et.pW)({payload:{baseFeeMsat:R[0].inputValue,feeRate:R[1].inputValue,channelId:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0},this.store.dispatch((0,Et.$A)({payload:{uiMessage:a.m6.GET_CHAN_POLICY,shortChannelID:t.short_channel_id,showError:!1}})),this.clnEffects.setLookupCL.pipe((0,PA.q)(1)).subscribe(s=>{this.myChanPolicy=s.length>0&&s[0].source===this.information.id?{fee_base_msat:s[0].base_fee_millisatoshi,fee_rate_milli_msat:s[0].fee_per_millionth}:s.length>1&&s[1].source===this.information.id?{fee_base_msat:s[1].base_fee_millisatoshi,fee_rate_milli_msat:s[1].fee_per_millionth}:{fee_base_msat:0,fee_rate_milli_msat:0},this.logger.info(this.myChanPolicy);const R="Update fee policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),dA=[];setTimeout(()=>{this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:dA,titleMessage:R,flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:"number",inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:"number",inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:48,hintFunction:this.percentHintFunction}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[2])).subscribe(s=>{s&&this.store.dispatch((0,Et.pW)({payload:{baseFeeMsat:s[0].inputValue,feeRate:s[1].inputValue,channelId:t.channel_id}}))})),this.applyFilter())}percentHintFunction(t){return(t/1e4).toString()+"%"}onChannelClose(t){this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[3])).subscribe(s=>{s&&this.store.dispatch((0,Et.BL)({payload:{id:t.id||"",channelId:t.channel_id||"",force:!1}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}onChannelClick(t,s){this.store.dispatch((0,KA.qR)({payload:{data:{channel:t,showCopy:!0,component:Aa}}}))}loadChannelsTable(t){t.sort((s,R)=>s.active===R.active?0:R.active?1:-1),this.channels=new xA.by([...t]),this.channels.filterPredicate=(s,R)=>((s.connected?"connected":"disconnected")+(s.channel_id?s.channel_id.toLowerCase():"")+(s.short_channel_id?s.short_channel_id.toLowerCase():"")+(s.id?s.id.toLowerCase():"")+(s.alias?s.alias.toLowerCase():"")+(s.private?"private":"public")+(s.state?s.state.toLowerCase():"")+(s.funding_txid?s.funding_txid.toLowerCase():"")+(s.msatoshi_to_us?s.msatoshi_to_us:"")+(s.msatoshi_total?s.msatoshi_total:"")+(s.their_channel_reserve_satoshis?s.their_channel_reserve_satoshis:"")+(s.our_channel_reserve_satoshis?s.our_channel_reserve_satoshis:"")+(s.spendable_msatoshi?s.spendable_msatoshi:"")).includes(R),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.channels.paginator=this.paginator,this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(DA.V),A.Y36(An.J),A.Y36(C.v),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Channels")}])],decls:48,vars:14,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","connected"],["matColumnDef","private"],["matColumnDef","state"],["matColumnDef","msatoshi_to_us"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_to_them"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","balancedness"],["mat-header-cell","","mat-sort-header","","class","pl-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","pl-1",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],[1,"ellipsis-child"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","",1,"pl-3"],["mat-cell","",1,"pl-3"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell","",1,"pl-1"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-1"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"div",2),A.TgZ(3,"mat-form-field",3)(4,"input",4),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()(),A.YNc(5,Si,1,0,"mat-progress-bar",5),A.TgZ(6,"div",6)(7,"table",7,8),A.ynx(9,9),A.YNc(10,v0,2,0,"th",10),A.YNc(11,Br,6,6,"td",11),A.BQk(),A.ynx(12,12),A.YNc(13,m0,2,0,"th",10),A.YNc(14,D0,4,4,"td",11),A.BQk(),A.ynx(15,13),A.YNc(16,y0,2,0,"th",10),A.YNc(17,Ui,2,1,"td",11),A.BQk(),A.ynx(18,14),A.YNc(19,x0,2,0,"th",10),A.YNc(20,ba,2,1,"td",11),A.BQk(),A.ynx(21,15),A.YNc(22,F0,2,0,"th",10),A.YNc(23,Y0,2,1,"td",11),A.BQk(),A.ynx(24,16),A.YNc(25,Me,2,0,"th",17),A.YNc(26,Ga,4,4,"td",11),A.BQk(),A.ynx(27,18),A.YNc(28,T0,2,0,"th",17),A.YNc(29,N0,4,4,"td",11),A.BQk(),A.ynx(30,19),A.YNc(31,Ha,2,0,"th",17),A.YNc(32,S0,4,3,"td",11),A.BQk(),A.ynx(33,20),A.YNc(34,U0,2,0,"th",17),A.YNc(35,P0,4,3,"td",11),A.BQk(),A.ynx(36,21),A.YNc(37,Ja,2,0,"th",22),A.YNc(38,Pi,6,4,"td",23),A.BQk(),A.ynx(39,24),A.YNc(40,Oa,8,0,"th",25),A.YNc(41,R0,12,0,"td",26),A.BQk(),A.ynx(42,27),A.YNc(43,H0,5,4,"td",28),A.BQk(),A.YNc(44,Ri,1,3,"tr",29),A.YNc(45,O0,1,0,"tr",30),A.YNc(46,ta,1,0,"tr",31),A.qZA()(),A._UZ(47,"mat-paginator",32),A.qZA()),2&t&&(A.xp6(4),A.Q6J("ngModel",s.selFilter),A.xp6(1),A.Q6J("ngIf",s.apiCallStatus.status===s.apiCallStatusEnum.INITIATED),A.xp6(2),A.Q6J("dataSource",s.channels)("ngClass",A.VKq(11,ka,""!==s.errorMessage)),A.xp6(37),A.Q6J("matFooterRowDef",A.DdM(13,k0)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.Wh,Ct.yH,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,ft.O5,T.pW,q.$V,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,eA.gM,e.BN,U.bx,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.JJ],styles:[".mat-column-short_channel_id[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-short_channel_id[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-alias[_ngcontent-%COMP%]{flex:0 0 20%;width:20%}.mat-column-alias[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;flex:0 0 22%;width:22%}.mat-column-state[_ngcontent-%COMP%], .mat-column-msatoshi_to_us[_ngcontent-%COMP%], .mat-column-msatoshi_to_them[_ngcontent-%COMP%]{flex:1 1 15%;width:15%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (max-width: 37.5em){.mat-column-state[_ngcontent-%COMP%], .mat-column-msatoshi_to_us[_ngcontent-%COMP%], .mat-column-msatoshi_to_them[_ngcontent-%COMP%]{white-space:unset}}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 100%}@media only screen and (max-width: 37.5em){.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 80%}}"]}),r})();const Cn=["outputIdx"];function zi(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Output Index required."),A.qZA())}function ja(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Invalid index value."),A.qZA())}function j0(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Fees is required."),A.qZA())}function K0(r,D){if(1&r&&(A.TgZ(0,"div",27),A._UZ(1,"fa-icon",13),A.TgZ(2,"span"),A._uU(3),A.qZA()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(2),A.Oqu(t.bumpFeeError)}}let V0=(()=>{class r{constructor(t,s,R,dA,ot,Ft){this.actions=t,this.dialogRef=s,this.data=R,this.store=dA,this.logger=ot,this.snackBar=Ft,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=h.kZ_,this.faInfoCircle=h.sqG,this.faExclamationTriangle=h.eHv,this.bumpFeeError="",this.unSubs=[new c.x,new c.x]}set payReq(t){t&&(this.outputIdx=t)}ngOnInit(){this.bumpFeeChannel=this.data.channel}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,Et._E)({payload:a._t[0]})),this.actions.pipe((0,JA.h)(t=>t.type===a.AB.SET_NEW_ADDRESS_CLN),(0,PA.q)(1)).subscribe(t=>{this.store.dispatch((0,Et.Wi)({payload:{address:t.payload,satoshis:"all",feeRate:(1e3*+(this.fees||0)).toString(),utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,JA.h)(t=>t.type===a.AB.SET_CHANNEL_TRANSACTION_RES_CLN),(0,PA.q)(1)).subscribe(t=>{this.store.dispatch((0,KA.jW)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,JA.h)(t=>t.type===a.AB.UPDATE_API_CALL_STATUS_CLN),(0,i.R)(this.unSubs[0])).subscribe(t=>{t.payload.status===a.Bn.ERROR&&("SetChannelTransaction"===t.payload.action||"GenerateNewAddress"===t.payload.action)&&(this.logger.error(t.payload.message),this.bumpFeeError=t.payload.message)})}onCopyID(t){this.snackBar.open("Transaction ID copied.")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Tt.eX),A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(u.yh),A.Y36(E.mQ),A.Y36(Rr.ux))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(t,s){if(1&t&&A.Gf(Cn,5),2&t){let R;A.iGM(R=A.CRH())&&(s.payReq=R.first)}},decls:47,vars:15,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["matSuffix","","rtlClipboard","","matTooltip","Copy transaction ID",1,"ml-1",3,"icon","payload","copied"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],[1,"pl-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","49"],["autoFocus","","matInput","","placeholder","Output Index","type","number","tabindex","1","required","","name","outputIdx",3,"ngModel","step","min","ngModelChange"],["outputIdx","ngModel"],[4,"ngIf"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","fees","required","","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fee","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(t,s){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Bump Fee"),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return s.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"div",8)(11,"p",9),A._uU(12),A.TgZ(13,"fa-icon",10),A.NdJ("copied",function(dA){return s.onCopyID(dA)}),A.qZA()(),A.TgZ(14,"div",11)(15,"div",12),A._UZ(16,"fa-icon",13),A.TgZ(17,"span",14),A._uU(18,"Bumping fee on pending open channels is an advanced feature, attempt it only if you are familiar with the functionality of Bitcoin transactions. "),A.TgZ(19,"div"),A._uU(20,"Before attempting fee bump ensure the following:"),A.qZA(),A.TgZ(21,"div",15),A._uU(22,"1: Use a Bitcoin block explorer to ensure that channel opening transaction is not confirmed."),A.qZA(),A.TgZ(23,"div",15),A._uU(24,"2: The channel opening transaction must have a sizable change output, which can be spent further. The fee cannot be bumped without the change output."),A.qZA(),A.TgZ(25,"div",15),A._uU(26,"3: Find the index value of the change output via a block explorer."),A.qZA(),A.TgZ(27,"div",15),A._uU(28,"4: Enter the index value of the change output in the form below and the desired fee rate."),A.qZA(),A.TgZ(29,"div",15),A._uU(30,"5: Upon successful fee bump, use your block explorer to track the child transaction in the mempool, which should be linked with the change output transaction."),A.qZA()()(),A.TgZ(31,"div",16)(32,"mat-form-field",17)(33,"input",18,19),A.NdJ("ngModelChange",function(dA){return s.outputIndex=dA}),A.qZA(),A.YNc(35,zi,2,0,"mat-error",20),A.YNc(36,ja,2,0,"mat-error",20),A.qZA(),A.TgZ(37,"mat-form-field",17)(38,"input",21,22),A.NdJ("ngModelChange",function(dA){return s.fees=dA}),A.qZA(),A.YNc(40,j0,2,0,"mat-error",20),A.qZA()(),A.YNc(41,K0,4,2,"div",23),A.qZA()(),A.TgZ(42,"div",24)(43,"button",25),A.NdJ("click",function(){return s.resetData()}),A._uU(44,"Clear"),A.qZA(),A.TgZ(45,"button",26),A.NdJ("click",function(){return s.onBumpFee()}),A._uU(46),A.qZA()()()()()()),2&t){const R=A.MAs(34);A.xp6(12),A.hij("Bump fee for transaction id: ",null==s.bumpFeeChannel?null:s.bumpFeeChannel.funding_txid," "),A.xp6(1),A.Q6J("icon",s.faCopy)("payload",null==s.bumpFeeChannel?null:s.bumpFeeChannel.funding_txid),A.xp6(3),A.Q6J("icon",s.faInfoCircle),A.xp6(17),A.Q6J("ngModel",s.outputIndex)("step",1)("min",0),A.xp6(2),A.Q6J("ngIf",null==R.errors?null:R.errors.required),A.xp6(1),A.Q6J("ngIf",null==R.errors?null:R.errors.pendingChannelOutputIndex),A.xp6(2),A.Q6J("ngModel",s.fees)("step",1)("min",0),A.xp6(2),A.Q6J("ngIf",!s.fees),A.xp6(1),A.Q6J("ngIf",""!==s.bumpFeeError),A.xp6(5),A.Oqu(""!==s.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,g.dn,OA._Y,OA.JL,OA.F,e.BN,U.R9,Xr.y,eA.gM,U.KE,H.Nt,OA.wV,OA.qQ,OA.Fj,b.q,k.h,OA.Q7,OA.JJ,OA.On,ft.O5,U.TO],styles:[""]}),r})();function W0(r,D){1&r&&A._UZ(0,"mat-progress-bar",30)}function Z0(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Short Channel ID "),A.qZA())}function X0(r,D){if(1&r&&(A.TgZ(0,"td",32),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.short_channel_id,"")}}function q0(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Alias "),A.qZA())}function _0(r,D){if(1&r&&(A.TgZ(0,"td",32),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.alias)}}function Ka(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Connected "),A.qZA())}function $0(r,D){if(1&r&&(A.TgZ(0,"td",32),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null!=t&&t.connected?"Connected":"Disconnected"," ")}}function Al(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Private "),A.qZA())}function tl(r,D){if(1&r&&(A.TgZ(0,"td",32),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null!=t&&t.private?"Private":"Public"," ")}}function ur(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," State "),A.qZA())}const el=function(r){return{"max-width":r}};function Li(r,D){if(1&r&&(A.TgZ(0,"td",33),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw();A.Q6J("ngStyle",A.VKq(2,el,s.screenSize===s.screenSizeEnum.XS?"10rem":"")),A.xp6(1),A.hij(" ",s.CLNChannelPendingState[null==t?null:t.state]," ")}}function nl(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," mSatoshi To Us "),A.qZA())}function rl(r,D){if(1&r&&(A.TgZ(0,"td",32)(1,"span",35),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.msatoshi_to_us)," ")}}function il(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," Total (Sats) "),A.qZA())}function Va(r,D){if(1&r&&(A.TgZ(0,"td",32)(1,"span",35),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,(null==t?null:t.msatoshi_total)/1e3)," ")}}function al(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1," Spendable Satoshi "),A.qZA())}function ol(r,D){if(1&r&&(A.TgZ(0,"td",32)(1,"span",35),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.spendable_msatoshi)," ")}}function sl(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",36)(1,"div",37)(2,"mat-select",38),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",39),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function ll(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-option",39),A.NdJ("click",function(){A.CHM(t);const R=A.oxw().$implicit;return A.oxw().onChannelClose(R)}),A._uU(1,"Close Channel"),A.qZA()}}function Wa(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-option",39),A.NdJ("click",function(){A.CHM(t);const R=A.oxw().$implicit;return A.oxw().onBumpFee(R)}),A._uU(1,"Bump Fee"),A.qZA()}}function cl(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",40)(1,"div",37)(2,"mat-select",41),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",39),A.NdJ("click",function(R){const ot=A.CHM(t).$implicit;return A.oxw().onChannelClick(ot,R)}),A._uU(5,"View Info"),A.qZA(),A.YNc(6,ll,2,0,"mat-option",42),A.YNc(7,Wa,2,0,"mat-option",42),A.qZA()()()}if(2&r){const t=D.$implicit,s=A.oxw();A.xp6(6),A.Q6J("ngIf",s.isCompatibleVersion&&("CHANNELD_SHUTTING_DOWN"===t.state||"CLOSINGD_SIGEXCHANGE"===t.state||!t.connected&&"CHANNELD_NORMAL"===t.state)),A.xp6(1),A.Q6J("ngIf","CHANNELD_AWAITING_LOCKIN"===t.state)}}function Za(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No peers connected. Add a peer in order to open a channel."),A.qZA())}function Xa(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No pending/inactive channel available."),A.qZA())}function qa(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting pending/inactive channels..."),A.qZA())}function gl(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function Bl(r,D){if(1&r&&(A.TgZ(0,"td",43),A.YNc(1,Za,2,0,"p",44),A.YNc(2,Xa,2,0,"p",44),A.YNc(3,qa,2,0,"p",44),A.YNc(4,gl,2,1,"p",44),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const ul=function(r){return{"display-none":r}};function fl(r,D){if(1&r&&A._UZ(0,"tr",45),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,ul,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function hl(r,D){1&r&&A._UZ(0,"tr",46)}function _a(r,D){1&r&&A._UZ(0,"tr",47)}const El=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},wl=function(){return["no_peer"]};let Cl=(()=>{class r{constructor(t,s,R,dA){this.logger=t,this.store=s,this.rtlEffects=R,this.commonService=dA,this.isCompatibleVersion=!1,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=a.vn,this.selFilter="",this.flgSticky=!1,this.CLNChannelPendingState=a.Zs,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","state","actions"]):this.screenSize===a.cu.SM?(this.flgSticky=!1,this.displayedColumns=["alias","connected","state","actions"]):this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","connected","state","msatoshi_total","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","connected","state","msatoshi_total","actions"])}ngOnInit(){this.store.select(B.jK).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.information.api_version&&(this.isCompatibleVersion=this.commonService.isVersionCompatible(this.information.api_version,"0.4.2")),this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(B.ZW).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...t.pendingChannels,...t.inactiveChannels],this.channelsData=this.channelsData.sort((s,R)=>this.CLNChannelPendingState[s.state||""]>=this.CLNChannelPendingState[R.state||""]?1:-1),this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}onBumpFee(t){this.store.dispatch((0,KA.qR)({payload:{data:{channel:t,component:V0}}}))}onChannelClick(t,s){this.store.dispatch((0,KA.qR)({payload:{data:{channel:t,showCopy:!0,component:Aa}}}))}onChannelClose(t){this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[2])).subscribe(s=>{s&&this.store.dispatch((0,Et.BL)({payload:{id:t.id,channelId:t.channel_id,force:!0}}))})}loadChannelsTable(t){t.sort((s,R)=>s.active===R.active?0:R.active?1:-1),this.channels=new xA.by([...t]),this.channels.filterPredicate=(s,R)=>((s.connected?"connected":"disconnected")+(s.channel_id?s.channel_id.toLowerCase():"")+(s.short_channel_id?s.short_channel_id.toLowerCase():"")+(s.id?s.id.toLowerCase():"")+(s.alias?s.alias.toLowerCase():"")+(s.private?"private":"public")+(s.state&&this.CLNChannelPendingState[s.state]?this.CLNChannelPendingState[s.state].toLowerCase():"")+(s.funding_txid?s.funding_txid.toLowerCase():"")+(s.msatoshi_to_us?s.msatoshi_to_us:"")+(s.msatoshi_total?s.msatoshi_total:"")+(s.their_channel_reserve_satoshis?s.their_channel_reserve_satoshis:"")+(s.our_channel_reserve_satoshis?s.our_channel_reserve_satoshis:"")+(s.spendable_msatoshi?s.spendable_msatoshi:"")).includes(R),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(s,R)=>"state"===R?this.CLNChannelPendingState[s.state]:s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.channels.paginator=this.paginator,this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Pending-inactive-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(DA.V),A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Channels")}])],decls:42,vars:14,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","connected"],["matColumnDef","private"],["matColumnDef","state"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","msatoshi_to_us"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","actions"],["mat-header-cell","","class","pr-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","pr-3",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"pr-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pr-3"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"div",2),A.TgZ(3,"mat-form-field",3)(4,"input",4),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()(),A.YNc(5,W0,1,0,"mat-progress-bar",5),A.TgZ(6,"div",6)(7,"table",7,8),A.ynx(9,9),A.YNc(10,Z0,2,0,"th",10),A.YNc(11,X0,2,1,"td",11),A.BQk(),A.ynx(12,12),A.YNc(13,q0,2,0,"th",10),A.YNc(14,_0,2,1,"td",11),A.BQk(),A.ynx(15,13),A.YNc(16,Ka,2,0,"th",10),A.YNc(17,$0,2,1,"td",11),A.BQk(),A.ynx(18,14),A.YNc(19,Al,2,0,"th",10),A.YNc(20,tl,2,1,"td",11),A.BQk(),A.ynx(21,15),A.YNc(22,ur,2,0,"th",10),A.YNc(23,Li,2,4,"td",16),A.BQk(),A.ynx(24,17),A.YNc(25,nl,2,0,"th",18),A.YNc(26,rl,4,3,"td",11),A.BQk(),A.ynx(27,19),A.YNc(28,il,2,0,"th",18),A.YNc(29,Va,4,3,"td",11),A.BQk(),A.ynx(30,20),A.YNc(31,al,2,0,"th",18),A.YNc(32,ol,4,3,"td",11),A.BQk(),A.ynx(33,21),A.YNc(34,sl,6,0,"th",22),A.YNc(35,cl,8,2,"td",23),A.BQk(),A.ynx(36,24),A.YNc(37,Bl,5,4,"td",25),A.BQk(),A.YNc(38,fl,1,3,"tr",26),A.YNc(39,hl,1,0,"tr",27),A.YNc(40,_a,1,0,"tr",28),A.qZA()(),A._UZ(41,"mat-paginator",29),A.qZA()),2&t&&(A.xp6(4),A.Q6J("ngModel",s.selFilter),A.xp6(1),A.Q6J("ngIf",s.apiCallStatus.status===s.apiCallStatusEnum.INITIATED),A.xp6(2),A.Q6J("dataSource",s.channels)("ngClass",A.VKq(11,El,""!==s.errorMessage)),A.xp6(31),A.Q6J("matFooterRowDef",A.DdM(13,wl)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.Wh,Ct.yH,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,ft.O5,T.pW,q.$V,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-state[_ngcontent-%COMP%]{flex:1 1 15%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),r})();const Ql=["peersForm"],dl=["stepper"];function Ml(r,D){if(1&r&&A._uU(0),2&r){const t=A.oxw();A.Oqu(t.peerFormLabel)}}function $a(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Address is required."),A.qZA())}function Ao(r,D){if(1&r&&(A.TgZ(0,"div",40),A._UZ(1,"fa-icon",41),A.TgZ(2,"span"),A._uU(3),A.qZA()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(2),A.Oqu(t.peerConnectionError)}}function pl(r,D){if(1&r&&A._uU(0),2&r){const t=A.oxw();A.Oqu(t.channelFormLabel)}}function Il(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function vl(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount must be a positive number."),A.qZA())}function ln(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function Tr(r,D){if(1&r&&(A.TgZ(0,"mat-option",42),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function ml(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function to(r,D){if(1&r&&(A.TgZ(0,"mat-form-field",43),A._UZ(1,"input",44),A.YNc(2,ml,2,0,"mat-error",14),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("step",.1)("min",0),A.xp6(1),A.Q6J("ngIf","customperkb"===t.channelFormGroup.controls.selFeeRate.value&&!t.channelFormGroup.controls.flgMinConf.value&&!t.channelFormGroup.controls.customFeeRate.value)}}function Dl(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function yl(r,D){if(1&r&&(A.TgZ(0,"div",40),A._UZ(1,"fa-icon",41),A.TgZ(2,"span"),A._uU(3),A.qZA()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(2),A.Oqu(t.channelConnectionError)}}const eo=function(r,D){return{"mr-6":r,"mr-2":D}};let xl=(()=>{class r{constructor(t,s,R,dA,ot,Ft,Ot){this.dialogRef=t,this.data=s,this.store=R,this.formBuilder=dA,this.actions=ot,this.logger=Ft,this.commonService=Ot,this.faExclamationTriangle=h.eHv,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=a.vn,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.screenSize="",this.screenSizeEnum=a.cu,this.unSubs=[new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.id&&this.data.message.peer.netaddr?this.data.message.peer.id+"@"+this.data.message.peer.netaddr:this.data.message.peer&&this.data.message.peer.id&&!this.data.message.peer.netaddr?this.data.message.peer.id:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[OA.kI.required]],peerAddress:[this.peerAddress,[OA.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[OA.kI.required,OA.kI.min(1),OA.kI.max(this.totalBalance)]],isPrivate:[!1],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[OA.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{t?(this.channelFormGroup.controls.selFeeRate.setValue(null),this.channelFormGroup.controls.selFeeRate.disable(),this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.minConfValue.reset(),this.channelFormGroup.controls.minConfValue.enable(),this.channelFormGroup.controls.minConfValue.setValidators([OA.kI.required])):(this.channelFormGroup.controls.selFeeRate.enable(),this.channelFormGroup.controls.minConfValue.setValue(null),this.channelFormGroup.controls.minConfValue.disable(),this.channelFormGroup.controls.minConfValue.setValidators(null))}),this.channelFormGroup.controls.selFeeRate.valueChanges.pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.channelFormGroup.controls.flgMinConf.value?null:[OA.kI.required])}),this.actions.pipe((0,i.R)(this.unSubs[2]),(0,JA.h)(t=>t.type===a.AB.NEWLY_ADDED_PEER_CLN||t.type===a.AB.FETCH_CHANNELS_CLN||t.type===a.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===a.AB.NEWLY_ADDED_PEER_CLN&&(this.logger.info(t.payload),this.flgEditable=!1,this.newlyAddedPeer=t.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),t.type===a.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close(),t.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===a.Bn.ERROR&&("SaveNewPeer"===t.payload.action?this.peerConnectionError=t.payload.message:"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,Et.El)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){var t;if(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)return!0;this.channelConnectionError="",this.store.dispatch((0,Et.YX)({payload:{peerId:null===(t=this.newlyAddedPeer)||void 0===t?void 0:t.id,satoshis:this.channelFormGroup.controls.fundingAmount.value,announce:!this.channelFormGroup.controls.isPrivate.value,feeRate:"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&!this.channelFormGroup.controls.flgMinConf.value&&this.channelFormGroup.controls.customFeeRate.value?1e3*this.channelFormGroup.controls.customFeeRate.value+"perkb":this.channelFormGroup.controls.selFeeRate.value,minconf:this.channelFormGroup.controls.flgMinConf.value?this.channelFormGroup.controls.minConfValue.value:null}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){var s,R,dA,ot,Ft;switch(t.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(s=this.newlyAddedPeer)||void 0===s?void 0:s.alias)?this.newlyAddedPeer.alias:null===(R=this.newlyAddedPeer)||void 0===R?void 0:R.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(dA=this.newlyAddedPeer)||void 0===dA?void 0:dA.alias)?null===(ot=this.newlyAddedPeer)||void 0===ot?void 0:ot.alias:null===(Ft=this.newlyAddedPeer)||void 0===Ft?void 0:Ft.id):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}t.selectedIndex{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(u.yh),A.Y36(OA.qu),A.Y36(Tt.eX),A.Y36(E.mQ),A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(t,s){if(1&t&&(A.Gf(Ql,5),A.Gf(dl,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first),A.iGM(R=A.CRH())&&(s.stepper=R.first)}},decls:57,vars:30,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Lightning Address (pubkey OR pubkey@ip:port)","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup","ngSubmit"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","placeholder","Amount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","60","fxLayoutAlign","space-between end"],["fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","placeholder","Fee Rate","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","35","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","2","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxFlex","98"],["matInput","","formControlName","minConfValue","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"step","min","required"],["mat-button","","color","primary","tabindex","8","type","submit"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Connect to a new peer"),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return s.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),A.NdJ("selectionChange",function(dA){return s.stepSelectionChanged(dA)}),A.TgZ(12,"mat-step",10)(13,"form",11),A.YNc(14,Ml,1,1,"ng-template",12),A.TgZ(15,"mat-form-field",1),A._UZ(16,"input",13),A.YNc(17,$a,2,0,"mat-error",14),A.qZA(),A.YNc(18,Ao,4,2,"div",15),A.TgZ(19,"div",16)(20,"button",17),A.NdJ("click",function(){return s.onConnectPeer()}),A._uU(21),A.qZA()()()(),A.TgZ(22,"mat-step",10)(23,"form",18),A.NdJ("ngSubmit",function(){return s.onOpenChannel()}),A.YNc(24,pl,1,1,"ng-template",19),A.TgZ(25,"div",20)(26,"div",21)(27,"mat-form-field",22),A._UZ(28,"input",23),A.TgZ(29,"mat-hint"),A._uU(30),A.qZA(),A.TgZ(31,"span",24),A._uU(32," Sats "),A.qZA(),A.YNc(33,Il,2,0,"mat-error",14),A.YNc(34,vl,2,0,"mat-error",14),A.YNc(35,ln,2,1,"mat-error",14),A.qZA(),A.TgZ(36,"div",25)(37,"mat-slide-toggle",26),A._uU(38,"Private Channel"),A.qZA()()(),A.TgZ(39,"div",27)(40,"div",28)(41,"mat-form-field",29)(42,"mat-select",30),A.YNc(43,Tr,2,2,"mat-option",31),A.qZA()(),A.YNc(44,to,3,3,"mat-form-field",32),A.qZA(),A.TgZ(45,"div",33),A._UZ(46,"mat-checkbox",34),A.TgZ(47,"mat-form-field",35),A._UZ(48,"input",36),A.YNc(49,Dl,2,0,"mat-error",14),A.qZA()()()(),A.YNc(50,yl,4,2,"div",15),A.TgZ(51,"div",16)(52,"button",37),A._uU(53),A.qZA()()()()(),A.TgZ(54,"div",38)(55,"button",39),A._uU(56),A.qZA()()()()()()),2&t&&(A.xp6(10),A.Q6J("linear",!0),A.xp6(2),A.Q6J("stepControl",s.peerFormGroup)("editable",s.flgEditable),A.xp6(1),A.Q6J("formGroup",s.peerFormGroup),A.xp6(4),A.Q6J("ngIf",null==s.peerFormGroup.controls.peerAddress.errors?null:s.peerFormGroup.controls.peerAddress.errors.required),A.xp6(1),A.Q6J("ngIf",""!==s.peerConnectionError),A.xp6(3),A.Oqu(""!==s.peerConnectionError?"Retry":"Add Peer"),A.xp6(1),A.Q6J("stepControl",s.channelFormGroup)("editable",s.flgEditable),A.xp6(1),A.Q6J("formGroup",s.channelFormGroup),A.xp6(5),A.Q6J("step",1e3),A.xp6(2),A.hij("Remaining Bal: ",s.totalBalance-(s.channelFormGroup.controls.fundingAmount.value?s.channelFormGroup.controls.fundingAmount.value:0),""),A.xp6(3),A.Q6J("ngIf",null==s.channelFormGroup.controls.fundingAmount.errors?null:s.channelFormGroup.controls.fundingAmount.errors.required),A.xp6(1),A.Q6J("ngIf",null==s.channelFormGroup.controls.fundingAmount.errors?null:s.channelFormGroup.controls.fundingAmount.errors.min),A.xp6(1),A.Q6J("ngIf",null==s.channelFormGroup.controls.fundingAmount.errors?null:s.channelFormGroup.controls.fundingAmount.errors.max),A.xp6(6),A.Q6J("fxFlex","customperkb"!==s.channelFormGroup.controls.selFeeRate.value||s.channelFormGroup.controls.flgMinConf.value?"100":"48"),A.xp6(2),A.Q6J("ngForOf",s.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===s.channelFormGroup.controls.selFeeRate.value&&!s.channelFormGroup.controls.flgMinConf.value),A.xp6(2),A.Q6J("ngClass",A.WLB(27,eo,s.screenSize===s.screenSizeEnum.XS||s.screenSize===s.screenSizeEnum.SM,s.screenSize===s.screenSizeEnum.MD||s.screenSize===s.screenSizeEnum.LG||s.screenSize===s.screenSizeEnum.XL)),A.xp6(2),A.Q6J("step",1)("min",0)("required",s.channelFormGroup.controls.flgMinConf.value),A.xp6(1),A.Q6J("ngIf",s.channelFormGroup.controls.flgMinConf.value&&!s.channelFormGroup.controls.minConfValue.value),A.xp6(1),A.Q6J("ngIf",""!==s.channelConnectionError),A.xp6(3),A.Oqu(""!==s.channelConnectionError?"Retry":"Open Channel"),A.xp6(2),A.Q6J("mat-dialog-close",!1),A.xp6(1),A.Oqu(null!=s.newlyAddedPeer&&s.newlyAddedPeer.id?"Do It Later":"Close"))},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,g.dn,Dr.Vq,Dr.C0,OA._Y,OA.JL,OA.sg,Dr.VY,U.KE,H.Nt,OA.Fj,k.h,OA.JJ,OA.u,OA.Q7,ft.O5,U.TO,e.BN,OA.wV,U.bx,U.R9,RA.Rr,CA.gD,ft.sg,wA.ey,OA.qQ,b.q,$A.oG,ft.mk,Y.oO,Mt.ZT],styles:[""]}),r})();function Fl(r,D){1&r&&A._UZ(0,"mat-progress-bar",32)}function no(r,D){1&r&&(A.TgZ(0,"th",33),A._uU(1," Alias "),A.qZA())}const ro=function(r){return{"mr-0":r}};function Nr(r,D){if(1&r&&A._UZ(0,"span",37),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,ro,t.screenSize===t.screenSizeEnum.XS))}}function Yl(r,D){if(1&r&&A._UZ(0,"span",38),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,ro,t.screenSize===t.screenSizeEnum.XS))}}const ea=function(r){return{"max-width":r}};function Tl(r,D){if(1&r&&(A.TgZ(0,"td",34),A.YNc(1,Nr,1,3,"span",35),A.YNc(2,Yl,1,3,"span",36),A._uU(3),A.qZA()),2&r){const t=D.$implicit,s=A.oxw();A.Q6J("ngStyle",A.VKq(4,ea,s.screenSize===s.screenSizeEnum.XS?"10rem":"40rem")),A.xp6(1),A.Q6J("ngIf",null==t?null:t.connected),A.xp6(1),A.Q6J("ngIf",!(null!=t&&t.connected)),A.xp6(1),A.hij(" ",null==t?null:t.alias," ")}}function Nl(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1," ID "),A.qZA())}function io(r,D){if(1&r&&(A.TgZ(0,"td",40),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw();A.Q6J("ngStyle",A.VKq(2,ea,s.screenSize===s.screenSizeEnum.XS?"10rem":"40rem")),A.xp6(1),A.hij(" ",null==t?null:t.id," ")}}function na(r,D){1&r&&(A.TgZ(0,"th",33),A._uU(1," Network Address "),A.qZA())}function ar(r,D){1&r&&(A.TgZ(0,"span"),A._uU(1,","),A._UZ(2,"br"),A.qZA())}function Sl(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.YNc(2,ar,3,0,"span",42),A.qZA()),2&r){const t=D.$implicit,s=D.last;A.xp6(1),A.Oqu(t),A.xp6(1),A.Q6J("ngIf",!s)}}function Ul(r,D){if(1&r&&(A.TgZ(0,"td",34),A.YNc(1,Sl,3,2,"span",41),A.qZA()),2&r){const t=D.$implicit,s=A.oxw();A.Q6J("ngStyle",A.VKq(2,ea,s.screenSize===s.screenSizeEnum.XS?"10rem":"20rem")),A.xp6(1),A.Q6J("ngForOf",null==t?null:t.netaddr)}}function Pl(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",43)(1,"div",44)(2,"mat-select",45),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",46),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Rl(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-option",46),A.NdJ("click",function(){A.CHM(t);const R=A.oxw().$implicit;return A.oxw().onPeerDetach(R)}),A._uU(1,"Disconnect"),A.qZA()}}function kl(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-option",46),A.NdJ("click",function(){A.CHM(t);const R=A.oxw().$implicit;return A.oxw().onConnectPeer(R)}),A._uU(1,"Reconnect"),A.qZA()}}function zl(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",47)(1,"div",48)(2,"mat-select",45),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",46),A.NdJ("click",function(R){const ot=A.CHM(t).$implicit;return A.oxw().onPeerClick(ot,R)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",46),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onOpenChannel(dA)}),A._uU(7,"Open Channel"),A.qZA(),A.YNc(8,Rl,2,0,"mat-option",49),A.YNc(9,kl,2,0,"mat-option",49),A.qZA()()()}if(2&r){const t=D.$implicit;A.xp6(8),A.Q6J("ngIf",t.connected),A.xp6(1),A.Q6J("ngIf",!t.connected)}}function Ll(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No connected peer."),A.qZA())}function bl(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting peers..."),A.qZA())}function Gl(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function ao(r,D){if(1&r&&(A.TgZ(0,"td",50),A.YNc(1,Ll,2,0,"p",42),A.YNc(2,bl,2,0,"p",42),A.YNc(3,Gl,2,1,"p",42),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Hl=function(r){return{"display-none":r}};function tA(r,D){if(1&r&&A._UZ(0,"tr",51),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,Hl,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function G(r,D){1&r&&A._UZ(0,"tr",52)}function V(r,D){1&r&&A._UZ(0,"tr",53)}const M=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},x=function(){return["no_peer"]};let z=(()=>{class r{constructor(t,s,R,dA,ot){this.logger=t,this.store=s,this.rtlEffects=R,this.actions=dA,this.commonService=ot,this.faUsers=h.FVb,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.information={},this.availableBalance=0,this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","id","netaddr","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","id","netaddr","actions"])}ngOnInit(){this.store.select(B.Ao).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.availableBalance=t.balance.totalBalance||0}),this.store.select(B.Wi).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers||[],this.peersData.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)}),this.actions.pipe((0,i.R)(this.unSubs[2]),(0,JA.h)(t=>t.type===a.AB.SET_PEERS_CLN)).subscribe(t=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,s){this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Peer Information",showQRName:"Public Key",showQRField:t.id,message:[[{key:"id",value:t.id,title:"Public Key",width:100}],[{key:"netaddr",value:t.netaddr,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:50},{key:"connected",value:t.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(t){this.store.dispatch((0,KA.qR)({payload:{data:{message:{peer:t.id?t:null,information:this.information,balance:this.availableBalance},component:xl}}}))}onOpenChannel(t){this.store.dispatch((0,KA.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:ne}}}))}onPeerDetach(t){this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[3])).subscribe(R=>{R&&this.store.dispatch((0,Et.z)({payload:{id:t.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}loadPeersTable(t){this.peers=new xA.by([...t]),this.peers.sortingDataAccessor=(s,R)=>{if("netaddr"===R){if(s.netaddr&&s.netaddr[0]){const dA=s.netaddr[0].toString().split(".");return dA[0]?+dA[0]:s.netaddr[0]}return""}return s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null},this.peers.sort=this.sort,this.peers.filterPredicate=(s,R)=>JSON.stringify(s).toLowerCase().includes(R),this.peers.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(DA.V),A.Y36(Tt.eX),A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-peers"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Peers")}])],decls:36,vars:15,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["peersForm","ngForm"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","30","fxFlex.gt-xs","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30"],["fxLayout","row","fxLayoutAlign","start start"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","id"],["mat-header-cell","","class","px-3","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","","class","px-3",3,"ngStyle",4,"matCellDef"],["matColumnDef","netaddr"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","px-3",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","",1,"px-3"],["mat-cell","",1,"px-3",3,"ngStyle"],[4,"ngFor","ngForOf"],[4,"ngIf"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["fxFlex","100","fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"button",3),A.NdJ("click",function(){return s.onConnectPeer({})}),A._uU(4,"Add Peer"),A.qZA()(),A.TgZ(5,"div",4)(6,"div",5)(7,"div",6),A._UZ(8,"fa-icon",7),A.TgZ(9,"span",8),A._uU(10,"Connected Peers"),A.qZA()(),A.TgZ(11,"mat-form-field",9)(12,"div",10)(13,"input",11),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()()(),A.TgZ(14,"div",12),A.YNc(15,Fl,1,0,"mat-progress-bar",13),A.TgZ(16,"table",14,15),A.ynx(18,16),A.YNc(19,no,2,0,"th",17),A.YNc(20,Tl,4,6,"td",18),A.BQk(),A.ynx(21,19),A.YNc(22,Nl,2,0,"th",20),A.YNc(23,io,2,4,"td",21),A.BQk(),A.ynx(24,22),A.YNc(25,na,2,0,"th",17),A.YNc(26,Ul,2,4,"td",18),A.BQk(),A.ynx(27,23),A.YNc(28,Pl,6,0,"th",24),A.YNc(29,zl,10,2,"td",25),A.BQk(),A.ynx(30,26),A.YNc(31,ao,4,3,"td",27),A.BQk(),A.YNc(32,tA,1,3,"tr",28),A.YNc(33,G,1,0,"tr",29),A.YNc(34,V,1,0,"tr",30),A.qZA()(),A._UZ(35,"mat-paginator",31),A.qZA()()),2&t&&(A.xp6(8),A.Q6J("icon",s.faUsers),A.xp6(5),A.Q6J("ngModel",s.selFilter),A.xp6(2),A.Q6J("ngIf",s.apiCallStatus.status===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",s.peers)("ngClass",A.VKq(12,M,""!==s.errorMessage)),A.xp6(16),A.Q6J("matFooterRowDef",A.DdM(14,x)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.yH,Ct.Wh,OA._Y,OA.JL,OA.F,w.lW,e.BN,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,ft.O5,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,eA.gM,ft.sg,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],styles:[".mat-column-alias[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-id[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-left:2rem}.mat-column-netaddr[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();const AA=["queryRoutesForm"];function aA(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Destination pubkey is required."),A.qZA())}function oA(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function iA(r,D){1&r&&A._UZ(0,"mat-progress-bar",38)}function SA(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1," ID "),A.qZA())}function kA(r,D){if(1&r&&(A.TgZ(0,"td",40),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.id," ")}}function ct(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1," Alias "),A.qZA())}function _A(r,D){if(1&r&&(A.TgZ(0,"td",40),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.alias," ")}}function Bt(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1," Channel "),A.qZA())}function pt(r,D){if(1&r&&(A.TgZ(0,"td",40),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.channel," ")}}function Dt(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1," Direction "),A.qZA())}function Ht(r,D){if(1&r&&(A.TgZ(0,"td",40),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.direction," ")}}function te(r,D){1&r&&(A.TgZ(0,"th",41),A._uU(1," Delay "),A.qZA())}function Ae(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",42),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.delay)," ")}}function oe(r,D){1&r&&(A.TgZ(0,"th",41),A._uU(1," Amount (Sats) "),A.qZA())}function fe(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",42),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,(null==t?null:t.msatoshi)/1e3)," ")}}function Qe(r,D){1&r&&(A.TgZ(0,"th",43),A._uU(1," Amount mSat "),A.qZA())}function de(r,D){if(1&r&&(A.TgZ(0,"td",44),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.amount_msat," ")}}function Je(r,D){1&r&&(A.TgZ(0,"th",45)(1,"span",42),A._uU(2,"Actions"),A.qZA()())}function cn(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",44)(1,"button",46),A.NdJ("click",function(R){const ot=A.CHM(t).$implicit;return A.oxw().onHopClick(ot,R)}),A._uU(2,"View Info"),A.qZA()()}}function Oe(r,D){1&r&&A._UZ(0,"tr",47)}function ge(r,D){1&r&&A._UZ(0,"tr",48)}const gn=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}};let Ze=(()=>{class r{constructor(t,s,R){this.store=t,this.clnEffects=s,this.commonService=R,this.destinationPubkey="",this.amount=null,this.flgSticky=!1,this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=h.FpQ,this.faExclamationTriangle=h.eHv,this.screenSize="",this.screenSizeEnum=a.cu,this.unSubs=[new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","msatoshi","actions"]):this.screenSize===a.cu.SM?(this.flgSticky=!1,this.displayedColumns=["alias","direction","msatoshi","actions"]):this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","direction","delay","msatoshi","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","channel","direction","delay","msatoshi","actions"])}ngOnInit(){this.clnEffects.setQueryRoutesCL.pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.qrHops=new xA.by([]),this.qrHops.data=[],t.routes&&t.routes.length&&t.routes.length>0?(this.flgLoading[0]=!1,this.qrHops=new xA.by([...t.routes]),this.qrHops.data=t.routes):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,Et.WO)({payload:{destPubkey:this.destinationPubkey,amount:1e3*this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1,this.qrHops.data=[],this.form.resetForm()}onHopClick(t,s){this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:t.id,title:"ID",width:100,type:a.Gi.STRING}],[{key:"channel",value:t.channel,title:"Channel",width:50,type:a.Gi.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:a.Gi.STRING}],[{key:"msatoshi",value:t.msatoshi,title:"mSatoshi",width:50,type:a.Gi.NUMBER},{key:"amount_msat",value:t.amount_msat,title:"Amount mSat",width:50,type:a.Gi.STRING}],[{key:"direction",value:t.direction,title:"Direction",width:50,type:a.Gi.STRING},{key:"delay",value:t.delay,title:"Delay",width:50,type:a.Gi.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(u.yh),A.Y36(An.J),A.Y36(C.v))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-query-routes"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(AA,7)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.form=R.first)}},decls:54,vars:16,consts:[["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["queryRoutesForm","ngForm"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","69","fxLayoutAlign","start end"],["matInput","","placeholder","Destination Pubkey","name","destinationPubkey","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxFlex","29","fxLayoutAlign","start end"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","type","number","required","",3,"ngModel","step","min","ngModelChange"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","channel"],["matColumnDef","direction"],["matColumnDef","delay"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","amount_msat"],["mat-header-cell","","class","pl-4","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","","class","pl-4",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pl-4 pr-3",4,"matHeaderCellDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","",1,"pl-4"],["mat-cell","",1,"pl-4"],["mat-header-cell","",1,"pl-4","pr-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(t,s){if(1&t){const R=A.EpF();A.TgZ(0,"div",0)(1,"form",1,2),A.NdJ("ngSubmit",function(){return A.CHM(R),A.MAs(2).form.valid&&s.onQueryRoutes()}),A.TgZ(3,"div",3),A._UZ(4,"fa-icon",4),A.TgZ(5,"span"),A._uU(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.qZA()(),A.TgZ(7,"mat-form-field",5)(8,"input",6,7),A.NdJ("ngModelChange",function(ot){return s.destinationPubkey=ot}),A.qZA(),A.YNc(10,aA,2,0,"mat-error",8),A.qZA(),A.TgZ(11,"mat-form-field",9)(12,"input",10),A.NdJ("ngModelChange",function(ot){return s.amount=ot}),A.qZA(),A.YNc(13,oA,2,0,"mat-error",8),A.qZA(),A.TgZ(14,"div",11)(15,"button",12),A.NdJ("click",function(){return s.resetData()}),A._uU(16,"Clear"),A.qZA(),A.TgZ(17,"button",13),A._uU(18,"Query Route"),A.qZA()()(),A.TgZ(19,"div",14)(20,"div",15),A._UZ(21,"fa-icon",16),A.TgZ(22,"span",17),A._uU(23,"Transaction Route"),A.qZA()()(),A.TgZ(24,"div",18),A.YNc(25,iA,1,0,"mat-progress-bar",19),A.TgZ(26,"table",20,21),A.ynx(28,22),A.YNc(29,SA,2,0,"th",23),A.YNc(30,kA,2,1,"td",24),A.BQk(),A.ynx(31,25),A.YNc(32,ct,2,0,"th",23),A.YNc(33,_A,2,1,"td",24),A.BQk(),A.ynx(34,26),A.YNc(35,Bt,2,0,"th",23),A.YNc(36,pt,2,1,"td",24),A.BQk(),A.ynx(37,27),A.YNc(38,Dt,2,0,"th",23),A.YNc(39,Ht,2,1,"td",24),A.BQk(),A.ynx(40,28),A.YNc(41,te,2,0,"th",29),A.YNc(42,Ae,4,3,"td",24),A.BQk(),A.ynx(43,30),A.YNc(44,oe,2,0,"th",29),A.YNc(45,fe,4,3,"td",24),A.BQk(),A.ynx(46,31),A.YNc(47,Qe,2,0,"th",32),A.YNc(48,de,2,1,"td",33),A.BQk(),A.ynx(49,34),A.YNc(50,Je,3,0,"th",35),A.YNc(51,cn,3,0,"td",33),A.BQk(),A.YNc(52,Oe,1,0,"tr",36),A.YNc(53,ge,1,0,"tr",37),A.qZA()()()}2&t&&(A.xp6(4),A.Q6J("icon",s.faExclamationTriangle),A.xp6(4),A.Q6J("ngModel",s.destinationPubkey),A.xp6(2),A.Q6J("ngIf",!s.destinationPubkey),A.xp6(2),A.Q6J("ngModel",s.amount)("step",1e3)("min",0),A.xp6(1),A.Q6J("ngIf",!s.amount),A.xp6(8),A.Q6J("icon",s.faRoute),A.xp6(4),A.Q6J("ngIf",!0===s.flgLoading[0]),A.xp6(1),A.Q6J("dataSource",s.qrHops)("ngClass",A.VKq(14,gn,"error"===s.flgLoading[0])),A.xp6(26),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns))},directives:[Ct.xw,Ct.yH,OA._Y,OA.JL,OA.F,Ct.Wh,e.BN,U.KE,H.Nt,OA.Fj,OA.Q7,OA.JJ,OA.On,ft.O5,U.TO,OA.wV,OA.qQ,b.q,w.lW,q.$V,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,xA.as,xA.XQ,xA.nj,xA.Gk],pipes:[ft.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{flex:0 0 5%;width:5%}.mat-column-pubkey_alias[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),r})();function ke(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Message is required."),A.qZA())}let we=(()=>{class r{constructor(t,s,R){this.dataService=t,this.snackBar=s,this.logger=R,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new c.x,new c.x]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(zA.D),A.Y36(Rr.ux),A.Y36(E.mQ))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-sign"]],decls:20,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to sign","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),A.NdJ("ngModelChange",function(dA){return s.message=dA})("keyup",function(){return s.onMessageChange()}),A.qZA(),A.YNc(5,ke,2,0,"mat-error",5),A.qZA(),A.TgZ(6,"div",6)(7,"button",7),A.NdJ("click",function(){return s.resetData()}),A._uU(8,"Clear Field"),A.qZA(),A.TgZ(9,"button",8),A.NdJ("click",function(){return s.onSign()}),A._uU(10,"Sign"),A.qZA()(),A._UZ(11,"mat-divider",9),A.TgZ(12,"div",10)(13,"p"),A._uU(14,"Generated Signature"),A.qZA()(),A.TgZ(15,"div",11),A._uU(16),A.qZA(),A.TgZ(17,"div",12)(18,"button",13),A.NdJ("copied",function(dA){return s.onCopyField(dA)}),A._uU(19,"Copy Signature"),A.qZA()()()()),2&t&&(A.xp6(4),A.Q6J("ngModel",s.message),A.xp6(1),A.Q6J("ngIf",!s.message),A.xp6(6),A.Q6J("inset",!0),A.xp6(5),A.Oqu(s.signature),A.xp6(2),A.Q6J("payload",s.signature))},directives:[Ct.xw,Ct.yH,Ct.Wh,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,k.h,OA.Q7,OA.JJ,OA.On,ft.O5,U.TO,w.lW,sA.d,Xr.y],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),r})();function tn(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Message is required."),A.qZA())}function Pe(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Signature is required."),A.qZA())}function Ye(r,D){1&r&&(A.TgZ(0,"p",13)(1,"mat-icon",14),A._uU(2,"close"),A.qZA(),A._uU(3,"Verification failed, please double check message and signature"),A.qZA())}function nn(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Pubkey Used"),A.qZA())}function bn(r,D){if(1&r&&(A.TgZ(0,"div",20)(1,"p"),A._uU(2),A.qZA()()),2&r){const t=A.oxw(2);A.xp6(2),A.Oqu(null==t.verifyRes?null:t.verifyRes.pubkey)}}function fn(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",21)(1,"button",22),A.NdJ("copied",function(R){return A.CHM(t),A.oxw(2).onCopyField(R)}),A._uU(2,"Copy Pubkey"),A.qZA()()}if(2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function vn(r,D){if(1&r&&(A.TgZ(0,"div",15),A._UZ(1,"mat-divider",16),A.TgZ(2,"div",17),A.YNc(3,nn,2,0,"p",5),A.qZA(),A.YNc(4,bn,3,1,"div",18),A.YNc(5,fn,3,1,"div",19),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("inset",!0),A.xp6(2),A.Q6J("ngIf",t.verifyRes.verified),A.xp6(1),A.Q6J("ngIf",t.verifyRes.verified),A.xp6(1),A.Q6J("ngIf",t.verifyRes.verified)}}let On=(()=>{class r{constructor(t,s,R){this.dataService=t,this.snackBar=s,this.logger=R,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new c.x,new c.x]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(zA.D),A.Y36(Rr.ux),A.Y36(E.mQ))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-verify"]],decls:17,vars:6,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to verify","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","placeholder","Signature provided","name","signature","tabindex","2","required","",3,"ngModel","ngModelChange","keyup"],["sign","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only h-4 padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),A.NdJ("ngModelChange",function(dA){return s.message=dA})("keyup",function(){return s.onChange()}),A.qZA(),A.YNc(5,tn,2,0,"mat-error",5),A.qZA(),A.TgZ(6,"mat-form-field",3)(7,"input",6,7),A.NdJ("ngModelChange",function(dA){return s.signature=dA})("keyup",function(){return s.onChange()}),A.qZA(),A.YNc(9,Pe,2,0,"mat-error",5),A.qZA(),A.YNc(10,Ye,4,0,"p",8),A.TgZ(11,"div",9)(12,"button",10),A.NdJ("click",function(){return s.resetData()}),A._uU(13,"Clear Fields"),A.qZA(),A.TgZ(14,"button",11),A.NdJ("click",function(){return s.onVerify()}),A._uU(15,"Verify"),A.qZA()(),A.YNc(16,vn,6,4,"div",12),A.qZA()()),2&t&&(A.xp6(4),A.Q6J("ngModel",s.message),A.xp6(1),A.Q6J("ngIf",!s.message),A.xp6(2),A.Q6J("ngModel",s.signature),A.xp6(2),A.Q6J("ngIf",!s.signature),A.xp6(1),A.Q6J("ngIf",s.showVerifyStatus&&!s.verifyRes.verified),A.xp6(6),A.Q6J("ngIf",s.showVerifyStatus&&s.verifyRes.verified))},directives:[Ct.xw,Ct.yH,Ct.Wh,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,k.h,OA.Q7,OA.JJ,OA.On,ft.O5,U.TO,p.Hw,w.lW,sA.d,Xr.y],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),r})();function Kn(r,D){if(1&r&&(A.TgZ(0,"div",5),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function Dn(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",6),A._UZ(1,"div",7),A.TgZ(2,"mat-form-field",8)(3,"input",9),A.NdJ("ngModelChange",function(R){return A.CHM(t),A.oxw().filterValue=R})("input",function(){return A.CHM(t),A.oxw().applyFilter()})("keyup",function(){return A.CHM(t),A.oxw().applyFilter()}),A.qZA()()()}if(2&r){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.filterValue)}}function Mn(r,D){1&r&&A._UZ(0,"mat-progress-bar",33)}function Vn(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1,"Status"),A.qZA())}function Wn(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.status)}}function me(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1,"Received Time"),A.qZA())}function Re(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Te(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1,"Resolved Time"),A.qZA())}function Xe(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function je(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1,"In Channel"),A.qZA())}function hn(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel_alias)}}function ra(r,D){1&r&&(A.TgZ(0,"th",34),A._uU(1,"Out Channel"),A.qZA())}function Gn(r,D){if(1&r&&(A.TgZ(0,"td",35),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel_alias)}}function ia(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"Amount In (Sats)"),A.qZA())}function aa(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",37),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.in_msatoshi)/1e3,(null==t?null:t.in_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function Jl(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"Amount Out (Sats)"),A.qZA())}function Ol(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",37),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.out_msatoshi)/1e3,(null==t?null:t.out_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function bi(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"Fee (mSat)"),A.qZA())}function ei(r,D){if(1&r&&(A.TgZ(0,"td",35)(1,"span",37),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,null==t?null:t.fee))}}function oa(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",38)(1,"div",39)(2,"mat-select",40),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",41),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Gi(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",42)(1,"button",43),A.NdJ("click",function(R){const ot=A.CHM(t).$implicit;return A.oxw(2).onForwardingEventClick(ot,R)}),A._uU(2,"View Info"),A.qZA()()}}function Hi(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No forwarding history available."),A.qZA())}function ni(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting forwarding history..."),A.qZA())}function ri(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function ii(r,D){if(1&r&&(A.TgZ(0,"td",44),A.YNc(1,Hi,2,0,"p",45),A.YNc(2,ni,2,0,"p",45),A.YNc(3,ri,2,1,"p",45),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const ai=function(r){return{"display-none":r}};function oi(r,D){if(1&r&&A._UZ(0,"tr",46),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,ai,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function si(r,D){1&r&&A._UZ(0,"tr",47)}function li(r,D){1&r&&A._UZ(0,"tr",48)}const ci=function(){return["no_event"]};function pr(r,D){if(1&r&&(A.TgZ(0,"div",10),A.YNc(1,Mn,1,0,"mat-progress-bar",11),A.TgZ(2,"table",12,13),A.ynx(4,14),A.YNc(5,Vn,2,0,"th",15),A.YNc(6,Wn,2,1,"td",16),A.BQk(),A.ynx(7,17),A.YNc(8,me,2,0,"th",15),A.YNc(9,Re,3,4,"td",16),A.BQk(),A.ynx(10,18),A.YNc(11,Te,2,0,"th",15),A.YNc(12,Xe,3,4,"td",16),A.BQk(),A.ynx(13,19),A.YNc(14,je,2,0,"th",15),A.YNc(15,hn,2,1,"td",16),A.BQk(),A.ynx(16,20),A.YNc(17,ra,2,0,"th",15),A.YNc(18,Gn,2,1,"td",16),A.BQk(),A.ynx(19,21),A.YNc(20,ia,2,0,"th",22),A.YNc(21,aa,4,4,"td",16),A.BQk(),A.ynx(22,23),A.YNc(23,Jl,2,0,"th",22),A.YNc(24,Ol,4,4,"td",16),A.BQk(),A.ynx(25,24),A.YNc(26,bi,2,0,"th",22),A.YNc(27,ei,4,3,"td",16),A.BQk(),A.ynx(28,25),A.YNc(29,oa,6,0,"th",26),A.YNc(30,Gi,3,0,"td",27),A.BQk(),A.ynx(31,28),A.YNc(32,ii,4,3,"td",29),A.BQk(),A.YNc(33,oi,1,3,"tr",30),A.YNc(34,si,1,0,"tr",31),A.YNc(35,li,1,0,"tr",32),A.qZA()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.forwardingHistoryEvents),A.xp6(31),A.Q6J("matFooterRowDef",A.DdM(6,ci)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function oo(r,D){if(1&r&&A._UZ(0,"mat-paginator",49),2&r){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let sa=(()=>{class r{constructor(t,s,R,dA,ot){this.logger=t,this.commonService=s,this.store=R,this.datePipe=dA,this.router=ot,this.eventsData=[],this.filterValue="",this.successfulEvents=[],this.displayedColumns=[],this.flgSticky=!1,this.totalForwardedTransactions=0,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["in_msatoshi","out_msatoshi","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["received_time","in_msatoshi","out_msatoshi","fee","actions"]):(this.flgSticky=!0,this.displayedColumns=["received_time","resolved_time","in_channel","out_channel","in_msatoshi","out_msatoshi","fee","actions"])}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.store.pipe((0,PA.q)(1)).subscribe(t=>{var s;t.cln.apisCallStatus.FetchForwardingHistoryS.status===a.Bn.UN_INITIATED&&!(null===(s=t.cln.forwardingHistory.listForwards)||void 0===s?void 0:s.length)&&this.store.dispatch((0,Et.u0)({payload:{status:a.OO.SETTLED}}))}),this.store.select(B.Bo).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&t.forwardingHistory.listForwards&&(this.totalForwardedTransactions=t.forwardingHistory.totalForwards||0,this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sort&&this.paginator&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:a.Bn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),t.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),t.filterValue&&!t.filterValue.firstChange&&this.applyFilter()}onForwardingEventClick(t,s){this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Event Information",message:[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:a.Gi.STRING}],[{key:"status",value:"Settled",title:"Status",width:50,type:a.Gi.STRING},{key:"fee",value:t.fee,title:"Fee (mSats)",width:50,type:a.Gi.NUMBER}],[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:a.Gi.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:a.Gi.DATE_TIME}],[{key:"in_channel",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:a.Gi.STRING},{key:"out_channel",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:a.Gi.STRING}],[{key:"in_msatoshi",value:t.in_msatoshi,title:"In (mSats)",width:50,type:a.Gi.NUMBER},{key:"out_msatoshi",value:t.out_msatoshi,title:"Out (mSats)",width:50,type:a.Gi.NUMBER}]]}}}))}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new xA.by([...t]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.forwardingHistoryEvents.filterPredicate=(s,R)=>{var dA,ot;return((s.received_time?(null===(dA=this.datePipe.transform(new Date(1e3*s.received_time),"dd/MMM/YYYY HH:mm"))||void 0===dA?void 0:dA.toLowerCase())+" ":"")+(s.resolved_time?(null===(ot=this.datePipe.transform(new Date(1e3*s.resolved_time),"dd/MMM/YYYY HH:mm"))||void 0===ot?void 0:ot.toLowerCase())+" ":"")+(s.in_channel?s.in_channel.toLowerCase()+" ":"")+(s.out_channel?s.out_channel.toLowerCase()+" ":"")+(s.in_channel_alias?s.in_channel_alias.toLowerCase()+" ":"")+(s.out_channel_alias?s.out_channel_alias.toLowerCase()+" ":"")+(s.in_msatoshi?s.in_msatoshi/1e3+" ":"")+(s.out_msatoshi?s.out_msatoshi/1e3+" ":"")+(s.fee?s.fee+" ":"")).includes(R)},this.forwardingHistoryEvents.paginator=this.paginator,this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.filterValue.trim().toLowerCase())}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh),A.Y36(ft.uU),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},inputs:{eventsData:"eventsData",filterValue:"filterValue"},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Events")}]),A.TTD],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","received_time"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","out_channel"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,Kn,2,1,"div",1),A.YNc(2,Dn,4,1,"div",2),A.YNc(3,pr,36,7,"div",3),A.YNc(4,oo,1,3,"mat-paginator",4),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage))},directives:[Ct.xw,Ct.Wh,ft.O5,Ct.yH,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,T.pW,xA.BZ,rt.YE,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,CA.gD,CA.$L,wA.ey,w.lW,xA.mD,xA.yh,xA.Ke,xA.Q2,ft.mk,Y.oO,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.uU,ft.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();function so(r,D){if(1&r&&(A.TgZ(0,"div",5),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function lo(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",6)(1,"div",7),A._UZ(2,"fa-icon",8),A.TgZ(3,"span"),A._uU(4,"Maximum 1,000 failed transactions only."),A.qZA()(),A.TgZ(5,"div",9),A._UZ(6,"div",10),A.TgZ(7,"mat-form-field",11)(8,"input",12),A.NdJ("keyup",function(){return A.CHM(t),A.oxw().applyFilter()})("ngModelChange",function(R){return A.CHM(t),A.oxw().selFilter=R}),A.qZA()()()()}if(2&r){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.faExclamationTriangle),A.xp6(6),A.Q6J("ngModel",t.selFilter)}}function la(r,D){1&r&&A._UZ(0,"mat-progress-bar",35)}function $l(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"Received Time"),A.qZA())}function Ac(r,D){if(1&r&&(A.TgZ(0,"td",37),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function tc(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"Resolved Time"),A.qZA())}function ec(r,D){if(1&r&&(A.TgZ(0,"td",37),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function nc(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"In Channel"),A.qZA())}function rc(r,D){if(1&r&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel_alias)}}function ic(r,D){1&r&&(A.TgZ(0,"th",36),A._uU(1,"Out Channel"),A.qZA())}function ac(r,D){if(1&r&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel_alias)}}function oc(r,D){1&r&&(A.TgZ(0,"th",38),A._uU(1,"Amount In (Sats)"),A.qZA())}function sc(r,D){if(1&r&&(A.TgZ(0,"td",37)(1,"span",39),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.in_msatoshi)/1e3,(null==t?null:t.in_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function lc(r,D){1&r&&(A.TgZ(0,"th",38),A._uU(1,"Amount Out (Sats)"),A.qZA())}function cc(r,D){if(1&r&&(A.TgZ(0,"td",37)(1,"span",39),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.out_msatoshi)/1e3,(null==t?null:t.out_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function gc(r,D){1&r&&(A.TgZ(0,"th",38),A._uU(1,"Fee (mSats)"),A.qZA())}function Bc(r,D){if(1&r&&(A.TgZ(0,"td",37)(1,"span",39),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,null==t?null:t.fee,"1.0-0"))}}function uc(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",40)(1,"div",41)(2,"mat-select",42),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",43),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function fc(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",44)(1,"button",45),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw(2).onFailedEventClick(dA)}),A._uU(2,"View Info"),A.qZA()()}}function hc(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No failed transaction available."),A.qZA())}function Ec(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting failed transactions..."),A.qZA())}function wc(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function Cc(r,D){if(1&r&&(A.TgZ(0,"td",46),A.YNc(1,hc,2,0,"p",47),A.YNc(2,Ec,2,0,"p",47),A.YNc(3,wc,2,1,"p",47),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const Qc=function(r){return{"display-none":r}};function dc(r,D){if(1&r&&A._UZ(0,"tr",48),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Qc,(null==t.failedForwardingEvents?null:t.failedForwardingEvents.data)&&(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)>0))}}function Mc(r,D){1&r&&A._UZ(0,"tr",49)}function pc(r,D){1&r&&A._UZ(0,"tr",50)}const Ic=function(){return["no_event"]};function vc(r,D){if(1&r&&(A.TgZ(0,"div",13),A.YNc(1,la,1,0,"mat-progress-bar",14),A.TgZ(2,"table",15,16),A.ynx(4,17),A.YNc(5,$l,2,0,"th",18),A.YNc(6,Ac,3,4,"td",19),A.BQk(),A.ynx(7,20),A.YNc(8,tc,2,0,"th",18),A.YNc(9,ec,3,4,"td",19),A.BQk(),A.ynx(10,21),A.YNc(11,nc,2,0,"th",18),A.YNc(12,rc,2,1,"td",19),A.BQk(),A.ynx(13,22),A.YNc(14,ic,2,0,"th",18),A.YNc(15,ac,2,1,"td",19),A.BQk(),A.ynx(16,23),A.YNc(17,oc,2,0,"th",24),A.YNc(18,sc,4,4,"td",19),A.BQk(),A.ynx(19,25),A.YNc(20,lc,2,0,"th",24),A.YNc(21,cc,4,4,"td",19),A.BQk(),A.ynx(22,26),A.YNc(23,gc,2,0,"th",24),A.YNc(24,Bc,4,4,"td",19),A.BQk(),A.ynx(25,27),A.YNc(26,uc,6,0,"th",28),A.YNc(27,fc,3,0,"td",29),A.BQk(),A.ynx(28,30),A.YNc(29,Cc,4,3,"td",31),A.BQk(),A.YNc(30,dc,1,3,"tr",32),A.YNc(31,Mc,1,0,"tr",33),A.YNc(32,pc,1,0,"tr",34),A.qZA()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.failedForwardingEvents),A.xp6(28),A.Q6J("matFooterRowDef",A.DdM(6,Ic)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function mc(r,D){if(1&r&&A._UZ(0,"mat-paginator",51),2&r){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Dc=(()=>{class r{constructor(t,s,R,dA,ot){this.logger=t,this.commonService=s,this.store=R,this.datePipe=dA,this.router=ot,this.faExclamationTriangle=h.eHv,this.errorMessage="",this.displayedColumns=[],this.flgSticky=!1,this.selFilter="",this.totalFailedTransactions=0,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["received_time","in_channel","in_msatoshi","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["received_time","in_channel","out_channel","in_msatoshi","out_msatoshi","actions"]):(this.flgSticky=!0,this.displayedColumns=["received_time","resolved_time","in_channel","out_channel","in_msatoshi","out_msatoshi","fee","actions"])}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.store.dispatch((0,Et.u0)({payload:{status:a.OO.FAILED}})),this.store.select(B.xQ).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=t.failedForwardingHistory.totalForwards||0,this.failedEvents=t.failedForwardingHistory.listForwards||[],this.failedEvents.length>0&&this.sort&&this.paginator&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(t){const s=[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:a.Gi.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:a.Gi.DATE_TIME}],[{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:a.Gi.STRING},{key:"out_channel_alias",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:a.Gi.STRING}],[{key:"in_msatoshi",value:t.in_msatoshi,title:"Amount In (mSats)",width:33,type:a.Gi.NUMBER},{key:"out_msatoshi",value:t.out_msatoshi,title:"Amount Out (mSats)",width:33,type:a.Gi.NUMBER},{key:"fee",value:t.fee,title:"Fee (mSats)",width:34,type:a.Gi.NUMBER}]];t.payment_hash&&(null==s||s.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:a.Gi.STRING}])),this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Failed Event Information",message:s}}}))}loadFailedEventsTable(t){this.failedForwardingEvents=new xA.by([...t]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.failedForwardingEvents.filterPredicate=(s,R)=>{var dA;const ot=(s.received_time?this.datePipe.transform(new Date(1e3*s.received_time),"dd/MMM/YYYY HH:mm").toLowerCase():"")+(s.resolved_time?null===(dA=this.datePipe.transform(new Date(1e3*s.resolved_time),"dd/MMM/YYYY HH:mm"))||void 0===dA?void 0:dA.toLowerCase():"")+(s.payment_hash?s.payment_hash.toLowerCase():"")+(s.in_channel?s.in_channel.toLowerCase():"")+(s.out_channel?s.out_channel.toLowerCase():"")+(s.in_channel_alias?s.in_channel_alias.toLowerCase():"")+(s.out_channel_alias?s.out_channel_alias.toLowerCase():"")+(s.in_msatoshi?s.in_msatoshi/1e3:"")+(s.out_msatoshi?s.out_msatoshi/1e3:"")+(s.fee?s.fee:"");return(null==ot?void 0:ot.includes(R))||!1},this.failedForwardingEvents.paginator=this.paginator,this.applyFilter(),this.logger.info(this.failedForwardingEvents)}onDownloadCSV(){this.failedForwardingEvents&&this.failedForwardingEvents.data&&this.failedForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedForwardingEvents.data,"Failed-transactions")}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh),A.Y36(ft.uU),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-failed-history"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Failed events")}])],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","out_channel"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,so,2,1,"div",1),A.YNc(2,lo,9,2,"div",2),A.YNc(3,vc,33,7,"div",3),A.YNc(4,mc,1,3,"mat-paginator",4),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage))},directives:[Ct.xw,Ct.Wh,ft.O5,Ct.yH,e.BN,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,T.pW,xA.BZ,rt.YE,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,CA.gD,CA.$L,wA.ey,w.lW,xA.mD,xA.yh,xA.Ke,xA.Q2,ft.mk,Y.oO,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.uU,ft.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();const yc=["tableIn"],xc=["tableOut"],Fc=["paginatorIn"],Yc=["paginatorOut"];function Tc(r,D){if(1&r&&(A.TgZ(0,"div",3),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function Nc(r,D){1&r&&A._UZ(0,"mat-progress-bar",36)}function Sc(r,D){1&r&&(A.TgZ(0,"th",37),A._uU(1,"Channel ID"),A.qZA())}const co=function(r){return{"max-width":r}};function Uc(r,D){if(1&r&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("ngStyle",A.VKq(2,co,s.screenSize===s.screenSizeEnum.XS?"5rem":"10rem")),A.xp6(1),A.Oqu(t.channel_id)}}function Pc(r,D){1&r&&(A.TgZ(0,"th",37),A._uU(1,"Peer Alias"),A.qZA())}function Rc(r,D){if(1&r&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("ngStyle",A.VKq(2,co,s.screenSize===s.screenSizeEnum.XS?"5rem":"10rem")),A.xp6(1),A.Oqu(t.alias)}}function zc(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Events"),A.qZA())}function Lc(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,t.events))}}function bc(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Amount (Sats)"),A.qZA())}function Gc(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function Hc(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Fee (Sats)"),A.qZA())}function Jc(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function Oc(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No incoming routing peer available."),A.qZA())}function kc(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting incoming routing peers..."),A.qZA())}function jc(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function Kc(r,D){if(1&r&&(A.TgZ(0,"td",42),A.YNc(1,Oc,2,0,"p",43),A.YNc(2,kc,2,0,"p",43),A.YNc(3,jc,2,1,"p",43),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.RoutingPeersIncoming&&t.RoutingPeersIncoming.data)||(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.RoutingPeersIncoming&&t.RoutingPeersIncoming.data)||(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.RoutingPeersIncoming&&t.RoutingPeersIncoming.data)||(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const jl=function(r){return{"display-none":r}};function Vc(r,D){if(1&r&&A._UZ(0,"tr",44),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,jl,(null==t.RoutingPeersIncoming?null:t.RoutingPeersIncoming.data)&&(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)>0))}}function Wc(r,D){1&r&&A._UZ(0,"tr",45)}function Zc(r,D){1&r&&A._UZ(0,"tr",46)}function Xc(r,D){1&r&&A._UZ(0,"mat-progress-bar",36)}function qc(r,D){1&r&&(A.TgZ(0,"th",37),A._uU(1,"Channel ID"),A.qZA())}function _c(r,D){if(1&r&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("ngStyle",A.VKq(2,co,s.screenSize===s.screenSizeEnum.XS?"5rem":"10rem")),A.xp6(1),A.Oqu(t.channel_id)}}function $c(r,D){1&r&&(A.TgZ(0,"th",37),A._uU(1,"Peer Alias"),A.qZA())}function Ag(r,D){if(1&r&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(2);A.Q6J("ngStyle",A.VKq(2,co,s.screenSize===s.screenSizeEnum.XS?"5rem":"10rem")),A.xp6(1),A.Oqu(t.alias)}}function tg(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Events"),A.qZA())}function eg(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,t.events))}}function ng(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Amount (Sats)"),A.qZA())}function rg(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function ig(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Fee (Sats)"),A.qZA())}function ag(r,D){if(1&r&&(A.TgZ(0,"td",40)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function og(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No outgoing routing peer available."),A.qZA())}function sg(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting outgoing routing peers..."),A.qZA())}function lg(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function cg(r,D){if(1&r&&(A.TgZ(0,"td",42),A.YNc(1,og,2,0,"p",43),A.YNc(2,sg,2,0,"p",43),A.YNc(3,lg,2,1,"p",43),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.RoutingPeersOutgoing&&t.RoutingPeersOutgoing.data)||(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.RoutingPeersOutgoing&&t.RoutingPeersOutgoing.data)||(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.RoutingPeersOutgoing&&t.RoutingPeersOutgoing.data)||(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function gg(r,D){if(1&r&&A._UZ(0,"tr",44),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,jl,(null==t.RoutingPeersOutgoing?null:t.RoutingPeersOutgoing.data)&&(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)>0))}}function Bg(r,D){1&r&&A._UZ(0,"tr",45)}function ug(r,D){1&r&&A._UZ(0,"tr",46)}const fg=function(r,D){return{"mt-2":r,"mt-1":D}},hg=function(){return["no_incoming_event"]},Eg=function(r){return{"mt-2":r}},wg=function(){return["no_outgoing_event"]};function Cg(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",4)(1,"div",5)(2,"div",6)(3,"div",7),A._uU(4,"Incoming"),A.qZA(),A.TgZ(5,"mat-form-field",8)(6,"input",9),A.NdJ("keyup",function(){return A.CHM(t),A.oxw().applyIncomingFilter()})("ngModelChange",function(R){return A.CHM(t),A.oxw().filterIn=R}),A.qZA()()(),A.TgZ(7,"div",10),A.YNc(8,Nc,1,0,"mat-progress-bar",11),A.TgZ(9,"table",12,13),A.ynx(11,14),A.YNc(12,Sc,2,0,"th",15),A.YNc(13,Uc,2,4,"td",16),A.BQk(),A.ynx(14,17),A.YNc(15,Pc,2,0,"th",15),A.YNc(16,Rc,2,4,"td",16),A.BQk(),A.ynx(17,18),A.YNc(18,zc,2,0,"th",19),A.YNc(19,Lc,4,3,"td",20),A.BQk(),A.ynx(20,21),A.YNc(21,bc,2,0,"th",19),A.YNc(22,Gc,4,4,"td",20),A.BQk(),A.ynx(23,22),A.YNc(24,Hc,2,0,"th",19),A.YNc(25,Jc,4,4,"td",20),A.BQk(),A.ynx(26,23),A.YNc(27,Kc,4,3,"td",24),A.BQk(),A.YNc(28,Vc,1,3,"tr",25),A.YNc(29,Wc,1,0,"tr",26),A.YNc(30,Zc,1,0,"tr",27),A.qZA()(),A._UZ(31,"mat-paginator",28,29),A.qZA(),A.TgZ(33,"div",30)(34,"div",6)(35,"div",7),A._uU(36,"Outgoing"),A.qZA(),A.TgZ(37,"mat-form-field",8)(38,"input",9),A.NdJ("keyup",function(){return A.CHM(t),A.oxw().applyOutgoingFilter()})("ngModelChange",function(R){return A.CHM(t),A.oxw().filterOut=R}),A.qZA()()(),A.TgZ(39,"div",31),A.YNc(40,Xc,1,0,"mat-progress-bar",11),A.TgZ(41,"table",32,33),A.ynx(43,14),A.YNc(44,qc,2,0,"th",15),A.YNc(45,_c,2,4,"td",16),A.BQk(),A.ynx(46,17),A.YNc(47,$c,2,0,"th",15),A.YNc(48,Ag,2,4,"td",16),A.BQk(),A.ynx(49,18),A.YNc(50,tg,2,0,"th",19),A.YNc(51,eg,4,3,"td",20),A.BQk(),A.ynx(52,21),A.YNc(53,ng,2,0,"th",19),A.YNc(54,rg,4,4,"td",20),A.BQk(),A.ynx(55,22),A.YNc(56,ig,2,0,"th",19),A.YNc(57,ag,4,4,"td",20),A.BQk(),A.ynx(58,34),A.YNc(59,cg,4,3,"td",24),A.BQk(),A.YNc(60,gg,1,3,"tr",25),A.YNc(61,Bg,1,0,"tr",26),A.YNc(62,ug,1,0,"tr",27),A.qZA(),A._UZ(63,"mat-paginator",28,35),A.qZA()()()}if(2&r){const t=A.oxw();A.xp6(2),A.Q6J("ngClass",A.WLB(22,fg,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),A.xp6(4),A.Q6J("ngModel",t.filterIn),A.xp6(2),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.RoutingPeersIncoming),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(25,hg)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),A.xp6(3),A.Q6J("ngClass",A.VKq(26,Eg,t.screenSize!==t.screenSizeEnum.LG)),A.xp6(4),A.Q6J("ngModel",t.filterOut),A.xp6(2),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.RoutingPeersOutgoing),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(28,wg)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Qg=(()=>{class r{constructor(t,s,R){this.logger=t,this.commonService=s,this.store=R,this.eventsData=[],this.filterValue="",this.successfulEvents=[],this.displayedColumns=[],this.RoutingPeersIncoming=[],this.RoutingPeersOutgoing=[],this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","total_fee"]):this.screenSize===a.cu.SM?(this.flgSticky=!1,this.displayedColumns=["alias","events","total_fee"]):this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","events","total_amount","total_fee"]):(this.flgSticky=!0,this.displayedColumns=["channel_id","alias","events","total_amount","total_fee"])}ngOnInit(){this.store.select(B.Bo).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:a.Bn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,t.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}loadRoutingPeersTable(t){if(t.length>0){const s=this.groupRoutingPeers(t);this.RoutingPeersIncoming=new xA.by(s[0]),this.RoutingPeersIncoming.sort=this.sortIn,this.RoutingPeersIncoming.filterPredicate=(R,dA)=>JSON.stringify(R).toLowerCase().includes(dA),this.RoutingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.RoutingPeersIncoming),this.RoutingPeersOutgoing=new xA.by(s[1]),this.RoutingPeersOutgoing.sort=this.sortOut,this.RoutingPeersOutgoing.filterPredicate=(R,dA)=>JSON.stringify(R).toLowerCase().includes(dA),this.RoutingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.RoutingPeersOutgoing)}else this.RoutingPeersIncoming=new xA.by([]),this.RoutingPeersOutgoing=new xA.by([]);this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.RoutingPeersIncoming),this.logger.info(this.RoutingPeersOutgoing)}groupRoutingPeers(t){const s=[],R=[];return t.forEach(dA=>{const ot=null==s?void 0:s.find(Ot=>Ot.channel_id===dA.in_channel),Ft=null==R?void 0:R.find(Ot=>Ot.channel_id===dA.out_channel);ot?(ot.events++,ot.total_amount=+ot.total_amount+ +(dA.in_msatoshi||0),ot.total_fee=(dA.in_msatoshi||0)-(dA.out_msatoshi||0)+ +ot.total_fee):s.push({channel_id:dA.in_channel,alias:dA.in_channel_alias,events:1,total_amount:dA.in_msatoshi,total_fee:(dA.in_msatoshi||0)-(dA.out_msatoshi||0)}),Ft?(Ft.events++,Ft.total_amount=+Ft.total_amount+ +(dA.out_msatoshi||0),Ft.total_fee=(dA.in_msatoshi||0)-(dA.out_msatoshi||0)+ +Ft.total_fee):R.push({channel_id:dA.out_channel,alias:dA.out_channel_alias,events:1,total_amount:dA.out_msatoshi,total_fee:(dA.in_msatoshi||0)-(dA.out_msatoshi||0)})}),[this.commonService.sortDescByKey(s,"total_fee"),this.commonService.sortDescByKey(R,"total_fee")]}applyIncomingFilter(){this.RoutingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.RoutingPeersOutgoing.filter=this.filterOut.toLowerCase()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(t,s){if(1&t&&(A.Gf(yc,5,rt.YE),A.Gf(xc,5,rt.YE),A.Gf(Fc,5),A.Gf(Yc,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sortIn=R.first),A.iGM(R=A.CRH())&&(s.sortOut=R.first),A.iGM(R=A.CRH())&&(s.paginatorIn=R.first),A.iGM(R=A.CRH())&&(s.paginatorOut=R.first)}},inputs:{eventsData:"eventsData",filterValue:"filterValue"},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Peers")}]),A.TTD],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["tableIn",""],["matColumnDef","channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","total_amount"],["matColumnDef","total_fee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginatorIn",""],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["tableOut",""],["matColumnDef","no_outgoing_event"],["paginatorOut",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-cell",""],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,Tc,2,1,"div",1),A.YNc(2,Cg,65,29,"div",2),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage))},directives:[Ct.xw,Ct.Wh,ft.O5,Ct.yH,ft.mk,Y.oO,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,T.pW,xA.BZ,rt.YE,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.JJ],styles:[".mat-column-channelId[_ngcontent-%COMP%], .mat-column-alias[_ngcontent-%COMP%]{flex:1 1 10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),r})();function dg(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",7),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().activeLink=dA.link}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit,s=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",s.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Mg=(()=>{class r{constructor(t){this.router=t,this.faChartBar=h.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new c.x,new c.x,new c.x,new c.x]}ngOnInit(){const t=this.links.find(s=>this.router.url.includes(s.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(s=>s instanceof $t.Av)).subscribe({next:s=>{const R=this.links.find(dA=>s.urlAfterRedirects.includes(dA.link));this.activeLink=R?R.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-reports"]],decls:10,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Reports"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),A.YNc(8,dg,2,3,"div",6),A.qZA(),A._UZ(9,"router-outlet"),A.qZA()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faChartBar),A.xp6(7),A.Q6J("ngForOf",s.links))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,ht.BU,ft.sg,ht.Nj,$t.rH,$t.lC],styles:[""]}),r})();var Kl=Ut(7772),Vl=Ut(7671),Wl=Ut(1210);function pg(r,D){1&r&&(A.TgZ(0,"div",14),A._UZ(1,"mat-progress-bar",15),A.TgZ(2,"p"),A._uU(3,"Getting Forwarding History..."),A.qZA()())}function Ig(r,D){if(1&r&&(A.TgZ(0,"div",16),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function vg(r,D){if(1&r&&(A.TgZ(0,"div",17),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=A.oxw();A.Q6J("@fadeIn",t.totalFeeMsat),A.xp6(1),A.AsE("",A.xi3(2,3,t.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.lcZ(3,6,t.filteredEventsBySelectedPeriod.length||0)," Events")}}function mg(r,D){1&r&&(A.TgZ(0,"div",14),A._uU(1,"No routing report for the selected period"),A.qZA())}function Dg(r,D){if(1&r&&(A.TgZ(0,"span")(1,"span",20),A._uU(2),A.ALo(3,"number"),A.qZA(),A.TgZ(4,"span",20),A._uU(5),A.ALo(6,"number"),A.qZA()()),2&r){const t=D.model,s=A.oxw(2);A.xp6(2),A.hij("Events: ",A.lcZ(3,2,(s.selReportBy===s.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),A.xp6(3),A.hij("Fee: ",A.xi3(6,4,(s.selReportBy===s.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function yg(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"ngx-charts-bar-vertical",18),A.NdJ("select",function(R){return A.CHM(t),A.oxw().onChartBarSelected(R)})("mouseup",function(R){return A.CHM(t),A.oxw().onChartMouseUp(R)}),A.YNc(1,Dg,7,7,"ng-template",null,19,A.W1O),A.qZA()}if(2&r){const t=A.oxw();A.Q6J("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function xg(r,D){if(1&r&&A._UZ(0,"rtl-cln-forwarding-history",21),2&r){const t=A.oxw();A.Q6J("eventsData",t.filteredEventsBySelectedPeriod)("filterValue",t.eventFilterValue)}}let Fg=(()=>{class r{constructor(t,s,R,dA){this.logger=t,this.commonService=s,this.store=R,this.dataService=dA,this.reportPeriod=a.op[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=a.Xr,this.selReportBy=a.Xr.FEES,this.totalFeeMsat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===a.cu.XS||this.screenSize===a.cu.SM),this.store.pipe((0,PA.q)(1)).subscribe(t=>{var s;t.cln.apisCallStatus.FetchForwardingHistoryS.status===a.Bn.UN_INITIATED&&!(null===(s=t.cln.forwardingHistory.listForwards)||void 0===s?void 0:s.length)&&this.store.dispatch((0,Et.u0)({payload:{status:a.OO.SETTLED}}))}),this.store.select(B.Bo).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{t.forwardingHistory.status===a.OO.SETTLED&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===a.Bn.COMPLETED&&(this.events=t.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(t))}),this.commonService.containerSizeUpdated.pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case a.cu.MD:this.screenPaddingX=t.width/10;break;case a.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(t,s){const R=Math.round(t.getTime()/1e3),dA=Math.round(s.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(ot=>{ot.received_time&&ot.received_time>=R&&ot.received_time0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===a.op[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+a.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){var s,R;const dA=Math.round(t.getTime()/1e3),ot=[];if(this.totalFeeMsat=0,this.reportPeriod===a.op[1]){for(let Ft=0;Ft<12;Ft++)ot.push({name:a.gg[Ft].name,value:0,extra:{totalEvents:0}});null===(s=this.filteredEventsBySelectedPeriod)||void 0===s||s.map(Ft=>{const Ot=Ft.received_time?new Date(1e3*+Ft.received_time).getMonth():12;return ot[Ot].value=Ft.fee?ot[Ot].value+ +Ft.fee/1e3:ot[Ot].value,ot[Ot].extra.totalEvents=ot[Ot].extra.totalEvents+1,this.totalFeeMsat=Ft.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +Ft.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}else{for(let Ft=0;Ft{const Ot=Ft.received_time?Math.floor((+Ft.received_time-dA)/this.secondsInADay):0;return ot[Ot].value=Ft.fee?ot[Ot].value+ +Ft.fee/1e3:ot[Ot].value,ot[Ot].extra.totalEvents=ot[Ot].extra.totalEvents+1,this.totalFeeMsat=Ft.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +Ft.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}return ot}prepareEventsReport(t){var s,R;const dA=Math.round(t.getTime()/1e3),ot=[];if(this.totalFeeMsat=0,this.reportPeriod===a.op[1]){for(let Ft=0;Ft<12;Ft++)ot.push({name:a.gg[Ft].name,value:0,extra:{totalFees:0}});null===(s=this.filteredEventsBySelectedPeriod)||void 0===s||s.map(Ft=>{const Ot=Ft.received_time?new Date(1e3*+Ft.received_time).getMonth():12;return ot[Ot].value=ot[Ot].value+1,ot[Ot].extra.totalFees=Ft.fee?ot[Ot].extra.totalFees+ +Ft.fee/1e3:ot[Ot].extra.totalFees,this.totalFeeMsat=Ft.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +Ft.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}else{for(let Ft=0;Ft{const Ot=Ft.received_time?Math.floor((+Ft.received_time-dA)/this.secondsInADay):0;return ot[Ot].value=ot[Ot].value+1,ot[Ot].extra.totalFees=Ft.fee?ot[Ot].extra.totalFees+ +Ft.fee/1e3:ot[Ot].extra.totalFees,this.totalFeeMsat=Ft.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +Ft.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}return ot}onSelectionChange(t){const s=t.selDate.getMonth(),R=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===a.op[1]?(this.startDate=new Date(R,0,1,0,0,0),this.endDate=new Date(R,11,31,23,59,59)):(this.startDate=new Date(R,s,1,0,0,0),this.endDate=new Date(R,s,this.getMonthDays(s,R),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,s){return 1===t&&s%4==0?a.gg[t].days+1:a.gg[t].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh),A.Y36(zA.D))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-routing-report"]],hostBindings:function(t,s){1&t&&A.NdJ("mouseup",function(dA){return s.onChartMouseUp(dA)})},decls:19,vars:9,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1 error-border",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],[3,"eventsData","filterValue",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["mode","indeterminate"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1","error-border"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],[1,"one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"eventsData","filterValue"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),A.NdJ("stepChanged",function(dA){return s.onSelectionChange(dA)}),A.qZA(),A.TgZ(2,"div",2)(3,"mat-radio-group",3),A.NdJ("ngModelChange",function(dA){return s.selReportBy=dA})("change",function(){return s.onSelReportByChange()}),A.TgZ(4,"span",4),A._uU(5,"Report By: "),A.qZA(),A.TgZ(6,"mat-radio-button",5),A._uU(7,"Fees"),A.qZA(),A.TgZ(8,"mat-radio-button",6),A._uU(9,"Events"),A.qZA()()(),A.TgZ(10,"div",7),A.YNc(11,pg,4,0,"div",8),A.YNc(12,Ig,2,1,"div",9),A.YNc(13,vg,4,8,"div",10),A.YNc(14,mg,2,0,"div",8),A.TgZ(15,"div",11),A.YNc(16,yg,3,11,"ngx-charts-bar-vertical",12),A.qZA(),A.TgZ(17,"div",11),A.YNc(18,xg,1,2,"rtl-cln-forwarding-history",13),A.qZA()()()),2&t&&(A.xp6(3),A.Q6J("ngModel",s.selReportBy),A.xp6(3),A.s9C("value",s.reportBy.FEES),A.xp6(2),A.s9C("value",s.reportBy.EVENTS),A.xp6(3),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.ERROR),A.xp6(1),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.COMPLETED&&s.routingReportData.length>0&&s.filteredEventsBySelectedPeriod.length>0),A.xp6(1),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.COMPLETED&&(s.routingReportData.length<=0||s.filteredEventsBySelectedPeriod.length<=0)),A.xp6(2),A.Q6J("ngIf",s.routingReportData.length>0&&s.filteredEventsBySelectedPeriod.length>0),A.xp6(2),A.Q6J("ngIf",s.filteredEventsBySelectedPeriod&&s.filteredEventsBySelectedPeriod.length>0))},directives:[Ct.xw,Ct.Wh,Ct.yH,Vl.D,HA.VQ,OA.JJ,OA.On,HA.U0,ft.O5,T.pW,Wl.K$,sa],pipes:[ft.JJ],styles:[""],data:{animation:[Kl.J]}}),r})();var Yg=Ut(165);function Tg(r,D){if(1&r&&(A.TgZ(0,"div",10),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.AsE(" Paid ",A.xi3(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.lcZ(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Ng(r,D){if(1&r&&(A.TgZ(0,"div",10),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.AsE(" Received ",A.xi3(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.lcZ(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Sg(r,D){if(1&r&&(A.TgZ(0,"div",8),A.YNc(1,Tg,4,7,"div",9),A.YNc(2,Ng,4,7,"div",9),A.qZA()),2&r){const t=A.oxw();A.Q6J("@fadeIn",t.transactionsReportSummary),A.xp6(1),A.Q6J("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod),A.xp6(1),A.Q6J("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function Ug(r,D){1&r&&(A.TgZ(0,"div",11),A._uU(1,"No transactions report for the selected period"),A.qZA())}function Pg(r,D){if(1&r&&(A.TgZ(0,"span",14),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=D.model;A.xp6(1),A.HOy("",t.name,": ",A.xi3(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",A.lcZ(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function Rg(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"ngx-charts-bar-vertical-2d",12),A.NdJ("select",function(R){return A.CHM(t),A.oxw().onChartBarSelected(R)})("mouseup",function(R){return A.CHM(t),A.oxw().onChartMouseUp(R)}),A.YNc(1,Pg,4,9,"ng-template",null,13,A.W1O),A.qZA()}if(2&r){const t=A.oxw();A.Q6J("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:4)}}function zg(r,D){if(1&r&&A._UZ(0,"rtl-transactions-report-table",15),2&r){const t=A.oxw();A.Q6J("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("filterValue",t.transactionFilterValue)}}let Lg=(()=>{class r{constructor(t,s,R){this.logger=t,this.commonService=s,this.store=R,this.scrollRanges=a.op,this.reportPeriod=a.op[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=a.cu,this.unSubs=[new c.x,new c.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===a.cu.XS||this.screenSize===a.cu.SM),this.store.select(B.PP).pipe((0,i.R)(this.unSubs[0]),(0,o.M)(this.store.select(B.gc))).subscribe(([t,s])=>{this.payments=t.payments,this.invoices=s.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case a.cu.MD:this.screenPaddingX=t.width/10;break;case a.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===a.op[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+a.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,s){var R,dA;const ot=Math.round(t.getTime()/1e3),Ft=Math.round(s.getTime()/1e3),Ot=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const qe=null===(R=this.payments)||void 0===R?void 0:R.filter(se=>"complete"===se.status&&se.created_at&&se.created_at>=ot&&se.created_at"paid"===se.status&&se.paid_at&&se.paid_at>=ot&&se.paid_at{const _e=new Date(1e3*(se.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(se.msatoshi_sent||0),Ot[_e].series[0].value=Ot[_e].series[0].value+(se.msatoshi_sent||0)/1e3,Ot[_e].series[0].extra.total=Ot[_e].series[0].extra.total+1,this.transactionsReportSummary}),null==Bn||Bn.map(se=>{const _e=new Date(1e3*+(se.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(se.msatoshi_received||0),Ot[_e].series[1].value=Ot[_e].series[1].value+(se.msatoshi_received||0)/1e3,Ot[_e].series[1].extra.total=Ot[_e].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let se=0;se{const _e=Math.floor((+(se.created_at||0)-ot)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(se.msatoshi_sent||0),Ot[_e].series[0].value=Ot[_e].series[0].value+(se.msatoshi_sent||0)/1e3,Ot[_e].series[0].extra.total=Ot[_e].series[0].extra.total+1,this.transactionsReportSummary}),null==Bn||Bn.map(se=>{const _e=Math.floor((+(se.paid_at||0)-ot)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(se.msatoshi_received||0),Ot[_e].series[1].value=Ot[_e].series[1].value+(se.msatoshi_received||0)/1e3,Ot[_e].series[1].extra.total=Ot[_e].series[1].extra.total+1,this.transactionsReportSummary})}return Ot}prepareTableData(){var t;return null===(t=this.transactionsReportData)||void 0===t?void 0:t.reduce((s,R)=>R.series[0].extra.total>0||R.series[1].extra.total>0?s.concat({date:R.date,amount_paid:R.series[0].value,num_payments:R.series[0].extra.total,amount_received:R.series[1].value,num_invoices:R.series[1].extra.total}):s,[])}onSelectionChange(t){const s=t.selDate.getMonth(),R=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===a.op[1]?(this.startDate=new Date(R,0,1,0,0,0),this.endDate=new Date(R,11,31,23,59,59)):(this.startDate=new Date(R,s,1,0,0,0),this.endDate=new Date(R,s,this.getMonthDays(s,R),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,s){return 1===t&&s%4==0?a.gg[t].days+1:a.gg[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(t,s){1&t&&A.NdJ("mouseup",function(dA){return s.onChartMouseUp(dA)})},decls:9,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"dataList","dataRange","filterValue",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"dataList","dataRange","filterValue"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),A.NdJ("stepChanged",function(dA){return s.onSelectionChange(dA)}),A.qZA(),A.TgZ(2,"div",2),A.YNc(3,Sg,3,3,"div",3),A.YNc(4,Ug,2,0,"div",4),A.TgZ(5,"div",5),A.YNc(6,Rg,3,13,"ngx-charts-bar-vertical-2d",6),A.qZA(),A.TgZ(7,"div",5),A.YNc(8,zg,1,3,"rtl-transactions-report-table",7),A.qZA()()()),2&t&&(A.xp6(3),A.Q6J("ngIf",s.transactionsNonZeroReportData.length>0),A.xp6(1),A.Q6J("ngIf",s.transactionsNonZeroReportData.length<=0),A.xp6(2),A.Q6J("ngIf",s.transactionsNonZeroReportData.length>0),A.xp6(2),A.Q6J("ngIf",s.transactionsNonZeroReportData.length>0))},directives:[Ct.xw,Ct.Wh,Ct.yH,Vl.D,ft.O5,Wl.H5,Yg.g],pipes:[ft.JJ],styles:[""],data:{animation:[Kl.J]}}),r})();var Le=Ut(1643),bg=Ut(9442);function Gg(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",8),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().activeLink=dA.link}),A._uU(1),A.qZA()}if(2&r){const t=D.$implicit,s=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",s.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Hg=(()=>{class r{constructor(t){this.router=t,this.faSearch=h.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new c.x,new c.x,new c.x,new c.x]}ngOnInit(){const t=this.links.find(s=>this.router.url.includes(s.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(s=>s instanceof $t.Av)).subscribe({next:s=>{const R=this.links.find(dA=>s.urlAfterRedirects.includes(dA.link));this.activeLink=R?R.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-graph"]],decls:11,vars:2,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Graph Lookups"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),A.YNc(8,Gg,2,3,"div",6),A.qZA(),A.TgZ(9,"div",7),A._UZ(10,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faSearch),A.xp6(7),A.Q6J("ngForOf",s.links))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,ht.BU,ft.sg,ht.Nj,$t.rH,Ct.yH,$t.lC],styles:[""]}),r})();var Jg=Ut(4641),Og=Ut(8493);function kg(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.offerError)}}function jg(r,D){if(1&r&&(A.TgZ(0,"div",21),A._UZ(1,"fa-icon",22),A.YNc(2,kg,2,1,"span",23),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.offerError)}}let Kg=(()=>{class r{constructor(t,s,R,dA,ot,Ft){this.dialogRef=t,this.data=s,this.store=R,this.decimalPipe=dA,this.commonService=ot,this.actions=Ft,this.faExclamationTriangle=h.eHv,this.selNode={},this.description="",this.vendor="",this.offerValueHint="",this.information={},this.pageSize=a.IV,this.offerError="",this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(B.lw).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.information=t,this.vendor=this.information.alias}),this.actions.pipe((0,i.R)(this.unSubs[2]),(0,JA.h)(t=>t.type===a.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===t.payload.action&&(t.payload.status===a.Bn.ERROR&&(this.offerError=t.payload.message),t.payload.status===a.Bn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="",this.store.dispatch((0,Et.dh)({payload:{amount:this.offerValue?this.offerValue+"sats":"any",description:this.description,vendor:this.vendor}}))}resetData(){this.description="",this.vendor=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,a.NT.SATS,a.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,i.R)(this.unSubs[3])).subscribe({next:t=>{this.offerValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,a.Xz.OTHER)+" "+t.unit},error:t=>{this.offerValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(u.yh),A.Y36(ft.JJ),A.Y36(C.v),A.Y36(Tt.eX))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-create-offer"]],decls:28,vars:8,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["addOfferForm","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","placeholder","Description","tabindex","1","name","description",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxFlex","40"],["matInput","","placeholder","Amount","type","number","tabindex","2","name","offerValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","58","fxLayoutAlign","start end"],["matInput","","placeholder","Vendor","tabindex","3","name","vendor",3,"ngModel","ngModelChange"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Create Offer"),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),A.NdJ("ngModelChange",function(dA){return s.description=dA}),A.qZA()(),A.TgZ(13,"div",11)(14,"mat-form-field",12)(15,"input",13),A.NdJ("ngModelChange",function(dA){return s.offerValue=dA})("keyup",function(){return s.onOfferValueChange()}),A.qZA(),A.TgZ(16,"span",14),A._uU(17," Sats "),A.qZA(),A.TgZ(18,"mat-hint"),A._uU(19),A.qZA()(),A.TgZ(20,"mat-form-field",15)(21,"input",16),A.NdJ("ngModelChange",function(dA){return s.vendor=dA}),A.qZA()()(),A.YNc(22,jg,3,2,"div",17),A.TgZ(23,"div",18)(24,"button",19),A.NdJ("click",function(){return s.resetData()}),A._uU(25,"Clear Field"),A.qZA(),A.TgZ(26,"button",20),A.NdJ("click",function(){return s.onAddOffer()}),A._uU(27,"Create Offer"),A.qZA()()()()()()),2&t&&(A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(6),A.Q6J("ngModel",s.description),A.xp6(3),A.Q6J("ngModel",s.offerValue)("step",100)("min",1),A.xp6(4),A.Oqu(s.offerValueHint),A.xp6(2),A.Q6J("ngModel",s.vendor),A.xp6(1),A.Q6J("ngIf",""!==s.offerError))},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,Mt.ZT,g.dn,OA._Y,OA.JL,OA.F,U.KE,H.Nt,OA.Fj,k.h,OA.JJ,OA.On,OA.wV,OA.qQ,b.q,U.R9,U.bx,ft.O5,e.BN],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();var Zl=Ut(1462);function Vg(r,D){1&r&&A._UZ(0,"mat-progress-bar",28)}function Wg(r,D){1&r&&(A.TgZ(0,"th",29),A._uU(1," Offer ID "),A.qZA())}const Xl=function(r){return{"mr-0":r}};function Zg(r,D){if(1&r&&A._UZ(0,"span",35),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Xl,t.screenSize===t.screenSizeEnum.XS))}}function Xg(r,D){if(1&r&&A._UZ(0,"span",36),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Xl,t.screenSize===t.screenSizeEnum.XS))}}const qg=function(r){return{"max-width":r}};function _g(r,D){if(1&r&&(A.TgZ(0,"td",30)(1,"div",31)(2,"span",32),A.YNc(3,Zg,1,3,"span",33),A.YNc(4,Xg,1,3,"span",34),A._uU(5),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(4,qg,s.screenSize===s.screenSizeEnum.XS?"25rem":"45rem")),A.xp6(2),A.Q6J("ngIf",t.active),A.xp6(1),A.Q6J("ngIf",!t.active),A.xp6(1),A.hij(" ",t.offer_id," ")}}function $g(r,D){1&r&&(A.TgZ(0,"th",29),A._uU(1," Single Use "),A.qZA())}function AB(r,D){if(1&r&&(A.TgZ(0,"td",30),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(t.single_use?"Yes":"No")}}function tB(r,D){1&r&&(A.TgZ(0,"th",29),A._uU(1," Used "),A.qZA())}function eB(r,D){if(1&r&&(A.TgZ(0,"td",30),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",t.used?"Yes":"No"," ")}}function nB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",37)(1,"div",38)(2,"mat-select",39),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",40),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function rB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-option",40),A.NdJ("click",function(){A.CHM(t);const R=A.oxw().$implicit;return A.oxw().onDisableOffer(R)}),A._uU(1,"Disable Offer"),A.qZA()}}function iB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"mat-option",40),A.NdJ("click",function(){A.CHM(t);const R=A.oxw().$implicit;return A.oxw().onPrintOffer(R)}),A._uU(1,"Export QR code"),A.qZA()}}const aB=function(r){return{"px-3":r}};function oB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",41)(1,"div",42)(2,"mat-select",43),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",40),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onOfferClick(dA)}),A._uU(5,"View Info"),A.qZA(),A.YNc(6,rB,2,0,"mat-option",44),A.YNc(7,iB,2,0,"mat-option",44),A.qZA()()()}if(2&r){const t=D.$implicit,s=A.oxw();A.Q6J("ngClass",A.VKq(3,aB,s.screenSize!==s.screenSizeEnum.XS)),A.xp6(6),A.Q6J("ngIf",t.active),A.xp6(1),A.Q6J("ngIf",t.active)}}function sB(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No offer available."),A.qZA())}function lB(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting offers..."),A.qZA())}function cB(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function gB(r,D){if(1&r&&(A.TgZ(0,"td",45),A.YNc(1,sB,2,0,"p",46),A.YNc(2,lB,2,0,"p",46),A.YNc(3,cB,2,1,"p",46),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const BB=function(r){return{"display-none":r}};function uB(r,D){if(1&r&&A._UZ(0,"tr",47),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,BB,(null==t.offers?null:t.offers.data)&&(null==t.offers||null==t.offers.data?null:t.offers.data.length)>0))}}function fB(r,D){1&r&&A._UZ(0,"tr",48)}function hB(r,D){1&r&&A._UZ(0,"tr",49)}const EB=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},wB=function(){return["no_offer"]};let CB=(()=>{class r{constructor(t,s,R,dA,ot,Ft,Ot){this.logger=t,this.store=s,this.commonService=R,this.rtlEffects=dA,this.dataService=ot,this.decimalPipe=Ft,this.datePipe=Ot,this.faHistory=h.qO$,this.selNode={},this.newlyAddedOfferMemo="",this.newlyAddedOfferValue=0,this.description="",this.offerValue=null,this.offerValueHint="",this.displayedColumns=[],this.offerPaymentReq="",this.offerJSONArr=[],this.information={},this.flgSticky=!1,this.private=!1,this.expiryStep=100,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["offer_id","single_use","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["offer_id","single_use","used","actions"]):(this.flgSticky=!0,this.displayedColumns=["offer_id","single_use","used","actions"])}ngOnInit(){this.store.select(B.lw).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(B.ey).pipe((0,i.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(B.Y_).pipe((0,i.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=t.offers||[],this.offerJSONArr&&this.offerJSONArr.length>0&&this.sort&&this.paginator&&this.loadOffersTable(this.offerJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offerJSONArr&&this.offerJSONArr.length>0&&this.sort&&this.paginator&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,KA.qR)({payload:{data:{pageSize:this.pageSize,component:Kg}}}))}onOfferClick(t){this.store.dispatch((0,KA.qR)({payload:{data:{offer:{used:t.used,single_use:t.single_use,active:t.active,offer_id:t.offer_id,bolt12:t.bolt12,bolt12_unsigned:t.bolt12_unsigned},newlyAdded:!1,component:Zl.k}}}))}onDisableOffer(t){this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(t.offer_id||t.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[3])).subscribe(s=>{s&&this.store.dispatch((0,Et.i9)({payload:{offer_id:t.offer_id}}))})}onPrintOffer(t){this.dataService.decodePayment(t.bolt12,!1).pipe((0,PA.q)(1)).subscribe(s=>{s.offer_id&&!s.amount_msat?(s.amount_msat="0msat",s.amount=0):s.amount=s.amount?+s.amount:s.amount_msat?+s.amount_msat.slice(0,-4):null;const R={pageSize:"A5",pageOrientation:"portrait",pageMargins:[10,50,10,50],background:{svg:'\n \n \n \n \n \n ',width:249,height:333,absolutePosition:{x:84,y:160}},header:{text:s.vendor||s.issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:s.description?s.description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:t.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:(null==s?void 0:s.amount_msat)&&0!==(null==s?void 0:s.amount)?this.decimalPipe.transform((s.amount||0)/1e3)+" SATS":"Open amount",fontSize:20,bold:!1,color:"white",alignment:"center",absolutePosition:{x:0,y:430}},{text:"SCAN TO PAY",fontSize:22,bold:!0,color:"white",alignment:"center",absolutePosition:{x:0,y:455}}],footer:{svg:'\n \n \n \n \n ',alignment:"center"}};Jg.createPdf(R,null,null,Og.I.vfs).download("Offer-"+(s&&s.description?s.description:t.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}loadOffersTable(t){this.offers=new xA.by(t?[...t]:[]),this.offers.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.offers.sort=this.sort,this.offers.filterPredicate=(s,R)=>(("active"===R||"inactive"===R||"used"===R||"unused"===R||"single"===R||"multiple"===R)&&(R=" "+R),((s.active?" active":" inactive")+(s.used?" used":" unused")+(s.single_use?" single":" multiple")+JSON.stringify(s).toLowerCase()).includes(R)),this.offers.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){this.offers.data&&this.offers.data.length>0&&this.commonService.downloadFile(this.offers.data,"Offers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(C.v),A.Y36(DA.V),A.Y36(zA.D),A.Y36(ft.JJ),A.Y36(ft.uU))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-offers-table"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Offers")}])],decls:34,vars:15,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","offer_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","single_use"],["matColumnDef","used"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["class","dot green","matTooltip","Active","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Inactive","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return s.openCreateOfferModal()}),A._uU(3,"Create Offer"),A.qZA()(),A.TgZ(4,"div",3)(5,"div",4)(6,"div",5),A._UZ(7,"fa-icon",6),A.TgZ(8,"span",7),A._uU(9,"Offers History"),A.qZA()(),A.TgZ(10,"mat-form-field",8)(11,"input",9),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()(),A.TgZ(12,"div",10),A.YNc(13,Vg,1,0,"mat-progress-bar",11),A.TgZ(14,"table",12,13),A.ynx(16,14),A.YNc(17,Wg,2,0,"th",15),A.YNc(18,_g,6,6,"td",16),A.BQk(),A.ynx(19,17),A.YNc(20,$g,2,0,"th",15),A.YNc(21,AB,2,1,"td",16),A.BQk(),A.ynx(22,18),A.YNc(23,tB,2,0,"th",15),A.YNc(24,eB,2,1,"td",16),A.BQk(),A.ynx(25,19),A.YNc(26,nB,6,0,"th",20),A.YNc(27,oB,8,5,"td",21),A.BQk(),A.ynx(28,22),A.YNc(29,gB,4,3,"td",23),A.BQk(),A.YNc(30,uB,1,3,"tr",24),A.YNc(31,fB,1,0,"tr",25),A.YNc(32,hB,1,0,"tr",26),A.qZA()(),A._UZ(33,"mat-paginator",27),A.qZA()()),2&t&&(A.xp6(7),A.Q6J("icon",s.faHistory),A.xp6(4),A.Q6J("ngModel",s.selFilter),A.xp6(2),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",s.offers)("ngClass",A.VKq(12,EB,""!==s.errorMessage)),A.xp6(16),A.Q6J("matFooterRowDef",A.DdM(14,wB)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.yH,Ct.Wh,w.lW,e.BN,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,ft.O5,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,eA.gM,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],styles:[".mat-column-offer_id[_ngcontent-%COMP%]{flex:0 0 65%;width:65%}.mat-column-offer_id[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();function QB(r,D){1&r&&A._UZ(0,"mat-progress-bar",30)}function dB(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Updated At "),A.qZA())}function MB(r,D){if(1&r&&(A.TgZ(0,"td",32),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,t.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function pB(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Title "),A.qZA())}const ql=function(r){return{"max-width":r}};function IB(r,D){if(1&r&&(A.TgZ(0,"td",32)(1,"div",33)(2,"span",34),A._uU(3),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ql,s.screenSize===s.screenSizeEnum.XS?"20rem":"35rem")),A.xp6(2),A.Oqu(t.title)}}function vB(r,D){1&r&&(A.TgZ(0,"th",35),A._uU(1," Amount (Sats) "),A.qZA())}function mB(r,D){if(1&r&&(A.TgZ(0,"td",36)(1,"span",37),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(0===t.amountmSat?"Open":A.lcZ(3,1,t.amountmSat/1e3))}}function DB(r,D){1&r&&(A.TgZ(0,"th",31),A._uU(1," Description "),A.qZA())}function yB(r,D){if(1&r&&(A.TgZ(0,"td",32)(1,"div",33)(2,"span",34),A._uU(3),A.qZA()()()),2&r){const t=D.$implicit,s=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ql,s.screenSize===s.screenSizeEnum.XS?"20rem":"35rem")),A.xp6(2),A.Oqu(t.description)}}function xB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",38)(1,"div",39)(2,"mat-select",40),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",41),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}const FB=function(r){return{"px-3":r}};function YB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",42)(1,"div",43)(2,"mat-select",44),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",41),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onOfferBookmarkClick(dA)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",41),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onRePayOffer(dA)}),A._uU(7,"Pay Again"),A.qZA(),A.TgZ(8,"mat-option",41),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onDeleteBookmark(dA)}),A._uU(9,"Delete Bookmark"),A.qZA()()()()}if(2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,FB,t.screenSize!==t.screenSizeEnum.XS))}}function TB(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No offer bookmarked."),A.qZA())}function NB(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting offer bookmarks..."),A.qZA())}function SB(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function UB(r,D){if(1&r&&(A.TgZ(0,"td",45),A.YNc(1,TB,2,0,"p",46),A.YNc(2,NB,2,0,"p",46),A.YNc(3,SB,2,1,"p",46),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const PB=function(r){return{"display-none":r}};function RB(r,D){if(1&r&&A._UZ(0,"tr",47),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,PB,(null==t.offersBookmarks?null:t.offersBookmarks.data)&&(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)>0))}}function zB(r,D){1&r&&A._UZ(0,"tr",48)}function LB(r,D){1&r&&A._UZ(0,"tr",49)}const bB=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},GB=function(){return["no_offer"]};let HB=(()=>{class r{constructor(t,s,R,dA){this.logger=t,this.store=s,this.commonService=R,this.rtlEffects=dA,this.faHistory=h.qO$,this.displayedColumns=[],this.offersBookmarksJSONArr=[],this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS||this.screenSize===a.cu.SM?(this.flgSticky=!1,this.displayedColumns=["lastUpdatedAt","title","amountmSat","actions"]):this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["lastUpdatedAt","title","amountmSat","description","actions"]):(this.flgSticky=!0,this.displayedColumns=["lastUpdatedAt","title","amountmSat","description","actions"])}ngOnInit(){this.store.select(B.EQ).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=t.offersBookmarks||[],this.offersBookmarksJSONArr&&this.offersBookmarksJSONArr.length>0&&this.sort&&this.paginator&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.offersBookmarksJSONArr.length>0&&this.sort&&this.paginator&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(t){this.store.dispatch((0,KA.qR)({payload:{data:{offer:{bolt12:t.bolt12},newlyAdded:!1,component:Zl.k}}}))}onDeleteBookmark(t){this.store.dispatch((0,KA.c1)({payload:{data:{type:a.n_.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(t.title||t.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,i.R)(this.unSubs[1])).subscribe(s=>{s&&this.store.dispatch((0,Et._9)({payload:{bolt12:t.bolt12}}))})}onRePayOffer(t){this.store.dispatch((0,KA.qR)({payload:{data:{paymentType:a.IX.OFFER,bolt12:t.bolt12,offerTitle:t.title,component:Yn}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}loadOffersTable(t){this.offersBookmarks=new xA.by(t?[...t]:[]),this.offersBookmarks.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.offersBookmarks.sort=this.sort,this.offersBookmarks.filterPredicate=(s,R)=>JSON.stringify(s).toLowerCase().includes(R),this.offersBookmarks.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){this.offersBookmarks.data&&this.offersBookmarks.data.length>0&&this.commonService.downloadFile(this.offersBookmarks.data,"OfferBookmarks")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(C.v),A.Y36(DA.V))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Offer Bookmarks")}])],decls:35,vars:15,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","amountmSat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pr-2",4,"matHeaderCellDef"],["mat-cell","","class","pr-2",4,"matCellDef"],["matColumnDef","description"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pr-2"],["mat-cell","",1,"pr-2"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"div",1),A.TgZ(2,"div",2)(3,"div",3)(4,"div",4),A._UZ(5,"fa-icon",5),A.TgZ(6,"span",6),A._uU(7,"Offer Bookmarks"),A.qZA()(),A.TgZ(8,"mat-form-field",7)(9,"input",8),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()(),A.TgZ(10,"div",9),A.YNc(11,QB,1,0,"mat-progress-bar",10),A.TgZ(12,"table",11,12),A.ynx(14,13),A.YNc(15,dB,2,0,"th",14),A.YNc(16,MB,3,4,"td",15),A.BQk(),A.ynx(17,16),A.YNc(18,pB,2,0,"th",14),A.YNc(19,IB,4,4,"td",15),A.BQk(),A.ynx(20,17),A.YNc(21,vB,2,0,"th",18),A.YNc(22,mB,4,3,"td",19),A.BQk(),A.ynx(23,20),A.YNc(24,DB,2,0,"th",14),A.YNc(25,yB,4,4,"td",15),A.BQk(),A.ynx(26,21),A.YNc(27,xB,6,0,"th",22),A.YNc(28,YB,10,3,"td",23),A.BQk(),A.ynx(29,24),A.YNc(30,UB,4,3,"td",25),A.BQk(),A.YNc(31,RB,1,3,"tr",26),A.YNc(32,zB,1,0,"tr",27),A.YNc(33,LB,1,0,"tr",28),A.qZA()(),A._UZ(34,"mat-paginator",29),A.qZA()()),2&t&&(A.xp6(5),A.Q6J("icon",s.faHistory),A.xp6(4),A.Q6J("ngModel",s.selFilter),A.xp6(2),A.Q6J("ngIf",(null==s.apiCallStatus?null:s.apiCallStatus.status)===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",s.offersBookmarks)("ngClass",A.VKq(12,bB,""!==s.errorMessage)),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(14,GB)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.yH,Ct.Wh,e.BN,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,ft.O5,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.uU,ft.JJ],styles:[".mat-column-title[_ngcontent-%COMP%], .mat-column-description[_ngcontent-%COMP%]{flex:0 0 30%;width:30%}.mat-column-title[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%], .mat-column-description[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();function JB(r,D){if(1&r&&(A.TgZ(0,"div",5),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function OB(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"div",6)(1,"div",7),A._UZ(2,"fa-icon",8),A.TgZ(3,"span"),A._uU(4,"Maximum 1,000 local failed transactions only."),A.qZA()(),A.TgZ(5,"div",9),A._UZ(6,"div",10),A.TgZ(7,"mat-form-field",11)(8,"input",12),A.NdJ("keyup",function(){return A.CHM(t),A.oxw().applyFilter()})("ngModelChange",function(R){return A.CHM(t),A.oxw().selFilter=R}),A.qZA()()()()}if(2&r){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.faExclamationTriangle),A.xp6(6),A.Q6J("ngModel",t.selFilter)}}function kB(r,D){1&r&&A._UZ(0,"mat-progress-bar",34)}function jB(r,D){1&r&&(A.TgZ(0,"th",35),A._uU(1,"Received Time"),A.qZA())}function KB(r,D){if(1&r&&(A.TgZ(0,"td",36),A._uU(1),A.ALo(2,"date"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function VB(r,D){1&r&&(A.TgZ(0,"th",35),A._uU(1,"In Channel"),A.qZA())}function WB(r,D){if(1&r&&(A.TgZ(0,"td",36),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel_alias)}}function ZB(r,D){1&r&&(A.TgZ(0,"th",37),A._uU(1,"Amount In (Sats)"),A.qZA())}function XB(r,D){if(1&r&&(A.TgZ(0,"td",36)(1,"span",38),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.in_msatoshi)/1e3,(null==t?null:t.in_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function qB(r,D){1&r&&(A.TgZ(0,"th",39),A._uU(1,"Fail Reason"),A.qZA())}function _B(r,D){if(1&r&&(A.TgZ(0,"td",40),A._uU(1),A.qZA()),2&r){const t=D.$implicit,s=A.oxw(2);A.xp6(1),A.Oqu(s.CLNFailReason[null==t?null:t.failreason])}}function $B(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",41)(1,"div",42)(2,"mat-select",43),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",44),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Au(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",45)(1,"button",46),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw(2).onFailedLocalEventClick(dA)}),A._uU(2,"View Info"),A.qZA()()}}function tu(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No failed transaction available."),A.qZA())}function eu(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting failed transactions..."),A.qZA())}function nu(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function ru(r,D){if(1&r&&(A.TgZ(0,"td",47),A.YNc(1,tu,2,0,"p",48),A.YNc(2,eu,2,0,"p",48),A.YNc(3,nu,2,1,"p",48),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const iu=function(r){return{"display-none":r}};function au(r,D){if(1&r&&A._UZ(0,"tr",49),2&r){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,iu,(null==t.failedLocalForwardingEvents?null:t.failedLocalForwardingEvents.data)&&(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)>0))}}function ou(r,D){1&r&&A._UZ(0,"tr",50)}function su(r,D){1&r&&A._UZ(0,"tr",51)}const lu=function(){return["no_event"]};function cu(r,D){if(1&r&&(A.TgZ(0,"div",13),A.YNc(1,kB,1,0,"mat-progress-bar",14),A.TgZ(2,"table",15,16),A.ynx(4,17),A.YNc(5,jB,2,0,"th",18),A.YNc(6,KB,3,4,"td",19),A.BQk(),A.ynx(7,20),A.YNc(8,VB,2,0,"th",18),A.YNc(9,WB,2,1,"td",19),A.BQk(),A.ynx(10,21),A.YNc(11,ZB,2,0,"th",22),A.YNc(12,XB,4,4,"td",19),A.BQk(),A.ynx(13,23),A.YNc(14,qB,2,0,"th",24),A.YNc(15,_B,2,1,"td",25),A.BQk(),A.ynx(16,26),A.YNc(17,$B,6,0,"th",27),A.YNc(18,Au,3,0,"td",28),A.BQk(),A.ynx(19,29),A.YNc(20,ru,4,3,"td",30),A.BQk(),A.YNc(21,au,1,3,"tr",31),A.YNc(22,ou,1,0,"tr",32),A.YNc(23,su,1,0,"tr",33),A.qZA()()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.failedLocalForwardingEvents),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(6,lu)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function gu(r,D){if(1&r&&A._UZ(0,"mat-paginator",52),2&r){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Bu=(()=>{class r{constructor(t,s,R,dA,ot){this.logger=t,this.commonService=s,this.store=R,this.datePipe=dA,this.router=ot,this.faExclamationTriangle=h.eHv,this.CLNFailReason=a.p7,this.errorMessage="",this.displayedColumns=[],this.flgSticky=!1,this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.apiCallStatus=null,this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS||this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["received_time","in_channel","in_msatoshi","actions"]):(this.flgSticky=!0,this.displayedColumns=["received_time","in_channel","in_msatoshi","failreason","actions"])}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.store.dispatch((0,Et.u0)({payload:{status:a.OO.LOCAL_FAILED}})),this.store.select(B.lK).pipe((0,i.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===a.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=t.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=t.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents.length>0&&this.sort&&this.paginator&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(t){this.store.dispatch((0,KA.qR)({payload:{data:{type:a.n_.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:a.Gi.DATE_TIME},{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:a.Gi.STRING}],[{key:"in_msatoshi",value:t.in_msatoshi,title:"Amount In (mSats)",width:100,type:a.Gi.NUMBER}],[{key:"failreason",value:t.failreason?this.CLNFailReason[t.failreason]:"",title:"Reason for Failure",width:100,type:a.Gi.STRING}]]}}}))}loadLocalfailedLocalEventsTable(t){this.failedLocalForwardingEvents=new xA.by([...t]),this.failedLocalForwardingEvents.filterPredicate=(s,R)=>{var dA;const ot=(s.received_time?null===(dA=this.datePipe.transform(new Date(1e3*s.received_time),"dd/MMM/YYYY HH:mm"))||void 0===dA?void 0:dA.toLowerCase():"")+(s.in_channel_alias?s.in_channel_alias.toLowerCase():"")+(s.failreason&&this.CLNFailReason[s.failreason]?this.CLNFailReason[s.failreason].toLowerCase():"")+(s.in_msatoshi?s.in_msatoshi/1e3:"");return(null==ot?void 0:ot.includes(R))||!1},this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(s,R)=>"failreason"===R?s.failreason?this.CLNFailReason[s.failreason]:"":s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.failedLocalForwardingEvents.paginator=this.paginator,this.applyFilter(),this.logger.info(this.failedLocalForwardingEvents)}onDownloadCSV(){this.failedLocalForwardingEvents&&this.failedLocalForwardingEvents.data&&this.failedLocalForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedLocalForwardingEvents.data,"Local-failed-transactions")}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(C.v),A.Y36(u.yh),A.Y36(ft.uU),A.Y36($t.F0))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Local failed events")}])],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","in_channel"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","failreason"],["mat-header-cell","","mat-sort-header","","class","pl-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","",1,"pl-3"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A.YNc(1,JB,2,1,"div",1),A.YNc(2,OB,9,2,"div",2),A.YNc(3,cu,24,7,"div",3),A.YNc(4,gu,1,3,"mat-paginator",4),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage),A.xp6(1),A.Q6J("ngIf",""===s.errorMessage))},directives:[Ct.xw,Ct.Wh,ft.O5,Ct.yH,e.BN,U.KE,H.Nt,OA.Fj,OA.JJ,OA.On,q.$V,T.pW,xA.BZ,rt.YE,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,CA.gD,CA.$L,wA.ey,w.lW,xA.mD,xA.yh,xA.Ke,xA.Q2,ft.mk,Y.oO,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.uU,ft.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})();const uu=["form"];function fu(r,D){1&r&&A.GkF(0)}function hu(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Requested amount is required."),A.qZA())}function Eu(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee rate is required."),A.qZA())}function wu(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Local amount is required."),A.qZA())}function Cu(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Local amount must be greater than or equal to 20,000 Sats. It's required to cover the channel force close fee, if needed."),A.qZA())}function Qu(r,D){if(1&r&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.hij("Local amount must be less than or equal to ",t.totalBalance,".")}}function du(r,D){if(1&r&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.channelConnectionError)}}function Mu(r,D){if(1&r&&(A.TgZ(0,"div",26),A._UZ(1,"fa-icon",27),A.YNc(2,du,2,1,"span",15),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.channelConnectionError)}}function pu(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1,"Type"),A.qZA())}function Iu(r,D){if(1&r&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.type," ")}}function vu(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1,"Address"),A.qZA())}function mu(r,D){if(1&r&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.address," ")}}function Du(r,D){1&r&&(A.TgZ(0,"th",47),A._uU(1,"Port"),A.qZA())}function yu(r,D){if(1&r&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ",null==t?null:t.port," ")}}function xu(r,D){1&r&&A._UZ(0,"tr",49)}function Fu(r,D){1&r&&A._UZ(0,"tr",50)}function Yu(r,D){if(1&r&&(A.TgZ(0,"mat-expansion-panel",29)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A._uU(4,"Node: \xa0"),A.qZA(),A.TgZ(5,"strong",30),A._uU(6),A.qZA()()(),A.TgZ(7,"div",7)(8,"div",0)(9,"div",1)(10,"h4",31),A._uU(11,"Pubkey"),A.qZA(),A.TgZ(12,"span",32),A._uU(13),A.qZA()()(),A._UZ(14,"mat-divider",33),A.TgZ(15,"div",0)(16,"div",1)(17,"h4",31),A._uU(18,"Last Timestamp"),A.qZA(),A.TgZ(19,"span",34),A._uU(20),A.ALo(21,"date"),A.qZA()()(),A._UZ(22,"mat-divider",33),A.TgZ(23,"div",35)(24,"h4",36),A._uU(25,"Addresses"),A.qZA(),A.TgZ(26,"div",37)(27,"table",38,39),A.ynx(29,40),A.YNc(30,pu,2,0,"th",41),A.YNc(31,Iu,2,1,"td",42),A.BQk(),A.ynx(32,43),A.YNc(33,vu,2,0,"th",41),A.YNc(34,mu,2,1,"td",42),A.BQk(),A.ynx(35,44),A.YNc(36,Du,2,0,"th",41),A.YNc(37,yu,2,1,"td",42),A.BQk(),A.YNc(38,xu,1,0,"tr",45),A.YNc(39,Fu,1,0,"tr",46),A.qZA()()()()()),2&r){const t=A.oxw(2);A.xp6(6),A.Oqu((null==t.node?null:t.node.alias)||(null==t.node?null:t.node.nodeid)),A.xp6(7),A.Oqu(t.node.nodeid),A.xp6(7),A.Oqu(A.xi3(21,6,1e3*t.node.last_timestamp,"dd/MMM/y HH:mm")),A.xp6(7),A.Q6J("dataSource",t.node.addresses),A.xp6(11),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function Tu(r,D){if(1&r&&A.YNc(0,Yu,40,9,"mat-expansion-panel",28),2&r){const t=A.oxw();A.Q6J("ngIf",t.node)}}let Nu=(()=>{class r{constructor(t,s,R,dA){this.dialogRef=t,this.data=s,this.actions=R,this.store=dA,this.faExclamationTriangle=h.eHv,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new c.x,new c.x]}ngOnInit(){var t,s,R,dA,ot;this.alertTitle=this.data.alertTitle||"",this.totalBalance=(null===(t=this.data.message)||void 0===t?void 0:t.balance)||0,this.node=(null===(s=this.data.message)||void 0===s?void 0:s.node)||{},this.requestedAmount=(null===(R=this.data.message)||void 0===R?void 0:R.requestedAmount)||0,this.feeRate=(null===(dA=this.data.message)||void 0===dA?void 0:dA.feeRate)||0,this.localAmount=(null===(ot=this.data.message)||void 0===ot?void 0:ot.localAmount)||0,this.actions.pipe((0,i.R)(this.unSubs[0]),(0,JA.h)(Ft=>Ft.type===a.AB.UPDATE_API_CALL_STATUS_CLN||Ft.type===a.AB.FETCH_CHANNELS_CLN)).subscribe(Ft=>{Ft.type===a.AB.UPDATE_API_CALL_STATUS_CLN&&Ft.payload.status===a.Bn.ERROR&&"SaveNewChannel"===Ft.payload.action&&(this.channelConnectionError=Ft.payload.message),Ft.type===a.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){var t,s,R;this.form.resetForm(),this.form.controls.ramount.setValue(null===(t=this.data.message)||void 0===t?void 0:t.requestedAmount),this.form.controls.feerate.setValue(null===(s=this.data.message)||void 0===s?void 0:s.feeRate),this.form.controls.lamount.setValue(null===(R=this.data.message)||void 0===R?void 0:R.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){var t,s,R;this.node.channelOpeningFee=+((null===(t=this.node.option_will_fund)||void 0===t?void 0:t.lease_fee_base_msat)||0)/1e3+this.requestedAmount*+((null===(s=this.node.option_will_fund)||void 0===s?void 0:s.lease_fee_basis)||0)/1e4+ +((null===(R=this.node.option_will_fund)||void 0===R?void 0:R.funding_weight)||0)/4*this.feeRate}onOpenChannel(){if(!this.node||!this.node.option_will_fund||!this.requestedAmount||!this.feeRate||!this.localAmount||this.localAmount<2e4)return!0;const t={peerId:this.node.nodeid||"",satoshis:this.localAmount.toString(),feeRate:this.feeRate+"perkb",requestAmount:this.requestedAmount.toString(),compactLease:this.node.option_will_fund.compact_lease,announce:!0};this.store.dispatch((0,Et.YX)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(Mt.so),A.Y36(Mt.WI),A.Y36(Tt.eX),A.Y36(u.yh))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(t,s){if(1&t&&A.Gf(uu,7),2&t){let R;A.iGM(R=A.CRH())&&(s.form=R.first)}},decls:48,vars:24,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["form","ngForm"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","placeholder","Requested Amount","type","number","tabindex","1","required","","name","ramount",3,"ngModel","step","min","ngModelChange","keyup"],["ramount","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","placeholder","Fee Rate","type","number","tabindex","2","required","","name","feerate",3,"ngModel","step","min","ngModelChange","keyup"],["feeRt","ngModel"],["matInput","","placeholder","Local Amount","type","number","tabindex","3","required","","name","lamount",3,"ngModel","step","min","max","ngModelChange"],["lamount","ngModel"],["fxFlex","100",1,"alert","alert-info","mt-4"],["fxFlex","100","class","alert alert-danger mt-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","4",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","tabindex","5",3,"click"],["nodeDetailsExpansionBlock",""],["fxFlex","100",1,"alert","alert-danger","mt-2"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel mt-1 mb-2","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","mt-1","mb-2"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"font-bold-500","mb-1"],[1,"table-container"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(t,s){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return s.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8),A.YNc(11,fu,1,0,"ng-container",9),A.TgZ(12,"div",10)(13,"mat-form-field",11)(14,"input",12,13),A.NdJ("ngModelChange",function(dA){return s.requestedAmount=dA})("keyup",function(){return s.calculateFee()}),A.qZA(),A.TgZ(16,"span",14),A._uU(17," Sats "),A.qZA(),A.YNc(18,hu,2,0,"mat-error",15),A.qZA(),A.TgZ(19,"mat-form-field",11)(20,"input",16,17),A.NdJ("ngModelChange",function(dA){return s.feeRate=dA})("keyup",function(){return s.calculateFee()}),A.qZA(),A.TgZ(22,"span",14),A._uU(23," Sats/vByte "),A.qZA(),A.YNc(24,Eu,2,0,"mat-error",15),A.qZA(),A.TgZ(25,"mat-form-field",11)(26,"input",18,19),A.NdJ("ngModelChange",function(dA){return s.localAmount=dA}),A.qZA(),A.TgZ(28,"mat-hint"),A._uU(29),A.ALo(30,"number"),A.qZA(),A.TgZ(31,"span",14),A._uU(32," Sats "),A.qZA(),A.YNc(33,wu,2,0,"mat-error",15),A.YNc(34,Cu,2,0,"mat-error",15),A.YNc(35,Qu,2,1,"mat-error",15),A.qZA()(),A.TgZ(36,"div",20)(37,"span"),A._uU(38),A.ALo(39,"number"),A.qZA()(),A.YNc(40,Mu,3,2,"div",21),A.TgZ(41,"div",22)(42,"button",23),A.NdJ("click",function(){return s.resetData()}),A._uU(43,"Clear"),A.qZA(),A.TgZ(44,"button",24),A.NdJ("click",function(){return s.onOpenChannel()}),A._uU(45,"Execute"),A.qZA()()()()()(),A.YNc(46,Tu,1,1,"ng-template",null,25,A.W1O)),2&t){const R=A.MAs(15),dA=A.MAs(21),ot=A.MAs(27),Ft=A.MAs(47);A.xp6(5),A.Oqu(s.alertTitle),A.xp6(6),A.Q6J("ngTemplateOutlet",Ft),A.xp6(3),A.Q6J("ngModel",s.requestedAmount)("step",1e4)("min",0),A.xp6(4),A.Q6J("ngIf",null==R.errors?null:R.errors.required),A.xp6(2),A.Q6J("ngModel",s.feeRate)("step",10)("min",0),A.xp6(4),A.Q6J("ngIf",null==dA.errors?null:dA.errors.required),A.xp6(2),A.Q6J("ngModel",s.localAmount)("step",1e4)("min",2e4)("max",s.totalBalance),A.xp6(3),A.hij("Remaining Bal: ",A.lcZ(30,20,s.totalBalance-(s.localAmount?s.localAmount:0)),""),A.xp6(4),A.Q6J("ngIf",null==ot.errors?null:ot.errors.required),A.xp6(1),A.Q6J("ngIf",null==ot.errors?null:ot.errors.min),A.xp6(1),A.Q6J("ngIf",null==ot.errors?null:ot.errors.max),A.xp6(3),A.hij("Total cost to lease ",A.lcZ(39,22,s.node.channelOpeningFee)," (Sats)"),A.xp6(2),A.Q6J("ngIf",""!==s.channelConnectionError)}},directives:[Ct.xw,Ct.yH,g.dk,Ct.Wh,w.lW,g.dn,OA._Y,OA.JL,OA.F,ft.tP,U.KE,H.Nt,OA.wV,OA.qQ,OA.Fj,b.q,k.h,OA.Q7,OA.JJ,OA.On,U.R9,ft.O5,U.TO,OA.Fd,Ti.F,U.bx,e.BN,cr.ib,cr.yz,cr.yK,sA.d,xA.BZ,rt.YE,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,xA.as,xA.XQ,xA.nj,xA.Gk],pipes:[ft.JJ,ft.uU],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),r})();var _l=Ut(6688);function Su(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Channel amount is required."),A.qZA())}function Uu(r,D){1&r&&(A.TgZ(0,"mat-error"),A._uU(1,"Channel opening fee rate is required."),A.qZA())}function Pu(r,D){1&r&&A._UZ(0,"mat-progress-bar",44)}function Ru(r,D){1&r&&(A.TgZ(0,"th",45),A._uU(1," Alias "),A.qZA())}function zu(r,D){if(1&r&&(A.TgZ(0,"mat-chip",49),A._uU(1),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.hij(" ","tor"===t?"Tor":"ipv"===t?"Clearnet":t," ")}}const Lu=function(r){return{"max-width":r}};function bu(r,D){if(1&r&&(A.TgZ(0,"td",46),A._uU(1),A.TgZ(2,"mat-chip-list",47),A.YNc(3,zu,2,1,"mat-chip",48),A.qZA()()),2&r){const t=D.$implicit,s=A.oxw();A.Q6J("ngStyle",A.VKq(3,Lu,s.screenSize===s.screenSizeEnum.XS?"10rem":"50rem")),A.xp6(1),A.hij(" ",null==t?null:t.alias," "),A.xp6(2),A.Q6J("ngForOf",t.address_types)}}function Gu(r,D){1&r&&(A.TgZ(0,"th",50),A._uU(1," Capacity/Channels "),A.qZA())}function Hu(r,D){if(1&r&&(A.TgZ(0,"td",51),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.AsE(" ",A.xi3(2,2,(null==t?null:t.nodeCapacity)/1e8,"1.0-2")," BTC / ",A.xi3(3,5,null==t?null:t.channelCount,"1.0-0")," ")}}function Ju(r,D){1&r&&(A.TgZ(0,"th",50),A._uU(1," Lease Fee "),A.qZA())}function Ou(r,D){if(1&r&&(A.TgZ(0,"td",51),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.AsE(" ",A.xi3(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.xi3(3,5,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function ku(r,D){1&r&&(A.TgZ(0,"th",50),A._uU(1," Routing Fee "),A.qZA())}function ju(r,D){if(1&r&&(A.TgZ(0,"td",51),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&r){const t=D.$implicit;A.xp6(1),A.AsE(" ",A.xi3(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.xi3(3,5,1e3*(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function Ku(r,D){1&r&&(A.TgZ(0,"th",52),A._uU(1," Channel Opening Fee "),A.qZA())}function Vu(r,D){if(1&r&&(A.TgZ(0,"td",51)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&r){const t=D.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,t.channelOpeningFee,"1.0-0")," Sats ")}}function Wu(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"th",54)(1,"div",55)(2,"mat-select",56),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",57),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Zu(r,D){if(1&r){const t=A.EpF();A.TgZ(0,"td",58)(1,"div",59)(2,"mat-select",56),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",57),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onViewLeaseInfo(dA)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",57),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().onOpenChannel(dA)}),A._uU(7,"Open Channel"),A.qZA(),A.TgZ(8,"mat-option",57),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().viewLeaseOn(dA,"LN")}),A._uU(9,"View on Lnrouter"),A.qZA(),A.TgZ(10,"mat-option",57),A.NdJ("click",function(){const dA=A.CHM(t).$implicit;return A.oxw().viewLeaseOn(dA,"AM")}),A._uU(11,"View on Amboss"),A.qZA()()()()}}function Xu(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"No node with liquidity."),A.qZA())}function qu(r,D){1&r&&(A.TgZ(0,"p"),A._uU(1,"Getting nodes with liquidity..."),A.qZA())}function _u(r,D){if(1&r&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&r){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function $u(r,D){if(1&r&&(A.TgZ(0,"td",60),A.YNc(1,Xu,2,0,"p",15),A.YNc(2,qu,2,0,"p",15),A.YNc(3,_u,2,1,"p",15),A.qZA()),2&r){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Af=function(r){return{"display-none":r}};function tf(r,D){if(1&r&&A._UZ(0,"tr",61),2&r){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,Af,(null==t.liquidityNodes?null:t.liquidityNodes.data)&&(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)>0))}}function ef(r,D){1&r&&A._UZ(0,"tr",62)}function nf(r,D){1&r&&A._UZ(0,"tr",63)}const rf=function(r){return{"overflow-auto error-border":r,"overflow-auto":!0}},af=function(){return["no_lqNode"]},lf=$t.Bz.forChild([{path:"",component:n,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:So,canActivate:[Le.eQ]},{path:"onchain",component:Cs,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:i0,canActivate:[Le.eQ]},{path:"send/:selTab",component:_r,data:{sweepAll:!1},canActivate:[Le.eQ]},{path:"sweep/:selTab",component:_r,data:{sweepAll:!0},canActivate:[Le.eQ]}]},{path:"connections",component:ya,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Ai,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:ti,canActivate:[Le.eQ]},{path:"pending",component:Cl,canActivate:[Le.eQ]}]},{path:"peers",component:z,data:{sweepAll:!1},canActivate:[Le.eQ]}]},{path:"liquidityads",component:(()=>{class r{constructor(t,s,R,dA,ot,Ft){this.logger=t,this.store=s,this.dataService=R,this.commonService=dA,this.rtlEffects=ot,this.decimalPipe=Ft,this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=h.Acd,this.faExclamationTriangle=h.eHv,this.faUsers=h.FVb,this.totalBalance=0,this.channelAmount=1e5,this.channelOpeningFeeRate=10,this.nodeCapacity=5e5,this.channelCount=5,this.liquidityNodesData=[],this.flgSticky=!1,this.pageSize=a.IV,this.pageSizeOptions=a.TJ,this.screenSize="",this.screenSizeEnum=a.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus={status:a.Bn.INITIATED},this.apiCallStatusEnum=a.Bn,this.unSubs=[new c.x,new c.x,new c.x,new c.x],this.askTooltipMsg="Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you",this.nodesTooltipMsg="These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n",this.nodesTooltipMsg=this.nodesTooltipMsg+"- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers",this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","channelOpeningFee","actions"]):this.screenSize===a.cu.SM||this.screenSize===a.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","leaseFee","routingFee","channelOpeningFee","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","leaseFee","routingFee","channelOpeningFee","actions"])}ngOnInit(){(0,Ea.a)([this.store.select(B.OL),this.dataService.listNetworkNodes("?liquidity_ads=yes")]).pipe((0,i.R)(this.unSubs[0])).subscribe({next:([t,s])=>{this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t),s&&!s.length&&(s=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(s)),this.apiCallStatus.status=a.Bn.COMPLETED,s.forEach(R=>{var dA;R.address_types=Array.from(new Set(null===(dA=R.addresses)||void 0===dA?void 0:dA.reduce((Ft,Ot)=>{var qe,Bn,se;return((null===(qe=Ot.type)||void 0===qe?void 0:qe.includes("ipv"))||(null===(Bn=Ot.type)||void 0===Bn?void 0:Bn.includes("tor")))&&Ft.push(null===(se=Ot.type)||void 0===se?void 0:se.substring(0,3)),Ft},[])))}),this.liquidityNodesData=s.filter(R=>R.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:t=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(t)),this.apiCallStatus.status=a.Bn.ERROR,this.errorMessage=JSON.stringify(t)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(t=>{t.option_will_fund&&(t.channelOpeningFee=+(t.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(t.option_will_fund.lease_fee_basis||0)/1e4+ +(t.option_will_fund.funding_weight||0)/4*this.channelOpeningFeeRate)}),this.paginator&&this.paginator.firstPage()}onFilter(){}applyFilter(){this.liquidityNodes.filter=this.selFilter.trim().toLowerCase()}loadLiqNodesTable(t){this.liquidityNodes=new xA.by([...t]),this.liquidityNodes.sortingDataAccessor=(s,R)=>s[R]&&isNaN(s[R])?s[R].toLocaleLowerCase():s[R]?+s[R]:null,this.liquidityNodes.sort=this.sort,this.liquidityNodes.paginator=this.paginator,this.sort&&this.sort.sort({id:"channelOpeningFee",start:"asc",disableClear:!0}),this.liquidityNodes.filterPredicate=(s,R)=>{var dA,ot,Ft,Ot,qe,Bn,se,_e;return((s.alias?s.alias.toLocaleLowerCase():"")+(s.channelOpeningFee?s.channelOpeningFee+" Sats":"")+((null===(dA=s.option_will_fund)||void 0===dA?void 0:dA.lease_fee_base_msat)?(null===(ot=s.option_will_fund)||void 0===ot?void 0:ot.lease_fee_base_msat)/1e3+" Sats":"")+((null===(Ft=s.option_will_fund)||void 0===Ft?void 0:Ft.lease_fee_basis)?this.decimalPipe.transform((null===(Ot=s.option_will_fund)||void 0===Ot?void 0:Ot.lease_fee_basis)/100,"1.2-2")+"%":"")+((null===(qe=s.option_will_fund)||void 0===qe?void 0:qe.channel_fee_max_base_msat)?(null===(Bn=s.option_will_fund)||void 0===Bn?void 0:Bn.channel_fee_max_base_msat)/1e3+" Sats":"")+((null===(se=s.option_will_fund)||void 0===se?void 0:se.channel_fee_max_proportional_thousandths)?1e3*(null===(_e=s.option_will_fund)||void 0===_e?void 0:_e.channel_fee_max_proportional_thousandths)+" ppm":"")+(s.address_types?s.address_types.reduce((kn,gi)=>kn+("tor"===gi?" tor":"ipv"===gi?" clearnet":" "+gi.toLowerCase()),""):"")).includes(R)},this.applyFilter()}viewLeaseOn(t,s){"LN"===s?window.open("https://lnrouter.app/node/"+t.nodeid,"_blank"):"AM"===s&&window.open("https://amboss.space/node/"+t.nodeid,"_blank")}onOpenChannel(t){this.store.dispatch((0,KA.qR)({payload:{data:{alertTitle:"Open Channel",message:{node:t,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channelOpeningFeeRate,localAmount:2e4},component:Nu}}}))}onViewLeaseInfo(t){var s,R,dA,ot,Ft,Ot,qe;const Bn=null===(s=t.addresses)||void 0===s?void 0:s.reduce((Ir,kn)=>(kn.address&&kn.address.length>40&&(kn.address=kn.address.substring(0,39)+"..."),Ir.concat(JSON.stringify(kn).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),se=[];if(t.features&&""!==t.features.trim()){const Ir=parseInt(t.features,16);a.Df.forEach(kn=>{Ir&(1<{Ir&&this.onOpenChannel(t)})}onDownloadCSV(){this.liquidityNodes.data&&this.liquidityNodes.data.length>0&&this.commonService.downloadFile(this.liquidityNodes.data,"LiquidityNodes")}onFilterReset(){this.nodeCapacity=0,this.channelCount=0}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return r.\u0275fac=function(t){return new(t||r)(A.Y36(E.mQ),A.Y36(u.yh),A.Y36(zA.D),A.Y36(C.v),A.Y36(DA.V),A.Y36(ft.JJ))},r.\u0275cmp=A.Xpm({type:r,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(t,s){if(1&t&&(A.Gf(rt.YE,5),A.Gf(WA.NW,5)),2&t){let R;A.iGM(R=A.CRH())&&(s.sort=R.first),A.iGM(R=A.CRH())&&(s.paginator=R.first)}},features:[A._Bn([{provide:WA.ye,useValue:(0,a.pt)("Liquidity Ads")}])],decls:62,vars:22,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],[1,"padding-gap-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["formAsk","ngForm"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start start",1,"page-sub-title-container","mt-1"],["fxFlex","30"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxFlex","34"],["autoFocus","","matInput","","placeholder","Channel Amount (Sats)","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","placeholder","Channel Opening Fee Rate (Sats/vByte)","name","channelOpeningFeeRate","type","number","step","10","tabindex","2","required","",3,"ngModel","ngModelChange","keyup"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","padding-gap-x","mt-2"],["fxFlex","30","fxFlex.gt-xs","70"],["fxLayout","row","fxLayoutAlign","start start"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","","fxLayout","row","fxLayoutAlign","start center",3,"ngStyle",4,"matCellDef"],["matColumnDef","capacityChannels"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","leaseFee"],["matColumnDef","routingFee"],["matColumnDef","channelOpeningFee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","px-3",4,"matCellDef"],["matColumnDef","no_lqNode"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","","fxLayout","row","fxLayoutAlign","start center",3,"ngStyle"],["aria-label","Address Types",1,"ml-half"],["color","primary","selected","",4,"ngFor","ngForOf"],["color","primary","selected",""],["mat-header-cell",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,s){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Liquidity Ads"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"form",6,7)(10,"div",8),A._UZ(11,"fa-icon",9),A.TgZ(12,"span"),A._uU(13,"Ads should be supplemented with additional research of the nodes, before buying liquidity."),A.qZA()(),A.TgZ(14,"div",10)(15,"div",11)(16,"span",2),A._uU(17," Liquidity Ask "),A.TgZ(18,"mat-icon",12),A._uU(19,"info_outline"),A.qZA()()(),A.TgZ(20,"mat-form-field",13)(21,"input",14),A.NdJ("ngModelChange",function(dA){return s.channelAmount=dA})("keyup",function(){return s.onCalculateOpeningFee()}),A.qZA(),A.YNc(22,Su,2,0,"mat-error",15),A.qZA(),A.TgZ(23,"mat-form-field",13)(24,"input",16),A.NdJ("ngModelChange",function(dA){return s.channelOpeningFeeRate=dA})("keyup",function(){return s.onCalculateOpeningFee()}),A.qZA(),A.YNc(25,Uu,2,0,"mat-error",15),A.qZA()()(),A.TgZ(26,"div",17)(27,"div",18),A._UZ(28,"fa-icon",1),A.TgZ(29,"span",2),A._uU(30,"Liquidity Providing Peers"),A.qZA()(),A.TgZ(31,"mat-form-field",11)(32,"div",19)(33,"input",20),A.NdJ("keyup",function(){return s.applyFilter()})("ngModelChange",function(dA){return s.selFilter=dA}),A.qZA()()()(),A.TgZ(34,"div",21),A.YNc(35,Pu,1,0,"mat-progress-bar",22),A.TgZ(36,"table",23,24),A.ynx(38,25),A.YNc(39,Ru,2,0,"th",26),A.YNc(40,bu,4,5,"td",27),A.BQk(),A.ynx(41,28),A.YNc(42,Gu,2,0,"th",29),A.YNc(43,Hu,4,8,"td",30),A.BQk(),A.ynx(44,31),A.YNc(45,Ju,2,0,"th",29),A.YNc(46,Ou,4,8,"td",30),A.BQk(),A.ynx(47,32),A.YNc(48,ku,2,0,"th",29),A.YNc(49,ju,4,8,"td",30),A.BQk(),A.ynx(50,33),A.YNc(51,Ku,2,0,"th",34),A.YNc(52,Vu,4,4,"td",30),A.BQk(),A.ynx(53,35),A.YNc(54,Wu,6,0,"th",36),A.YNc(55,Zu,12,0,"td",37),A.BQk(),A.ynx(56,38),A.YNc(57,$u,4,3,"td",39),A.BQk(),A.YNc(58,tf,1,3,"tr",40),A.YNc(59,ef,1,0,"tr",41),A.YNc(60,nf,1,0,"tr",42),A.qZA()(),A._UZ(61,"mat-paginator",43),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",s.faBullhorn),A.xp6(10),A.Q6J("icon",s.faExclamationTriangle),A.xp6(7),A.Q6J("matTooltip",s.askTooltipMsg),A.xp6(3),A.Q6J("ngModel",s.channelAmount),A.xp6(1),A.Q6J("ngIf",!s.channelAmount),A.xp6(2),A.Q6J("ngModel",s.channelOpeningFeeRate),A.xp6(1),A.Q6J("ngIf",!s.channelOpeningFeeRate),A.xp6(3),A.Q6J("icon",s.faUsers),A.xp6(5),A.Q6J("ngModel",s.selFilter),A.xp6(2),A.Q6J("ngIf",s.apiCallStatus.status===s.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",s.liquidityNodes)("ngClass",A.VKq(19,rf,""!==s.errorMessage)),A.xp6(22),A.Q6J("matFooterRowDef",A.DdM(21,af)),A.xp6(1),A.Q6J("matHeaderRowDef",s.displayedColumns)("matHeaderRowDefSticky",s.flgSticky),A.xp6(1),A.Q6J("matRowDefColumns",s.displayedColumns),A.xp6(1),A.Q6J("pageSize",s.pageSize)("pageSizeOptions",s.pageSizeOptions)("showFirstLastButtons",s.screenSize!==s.screenSizeEnum.XS))},directives:[Ct.xw,Ct.Wh,e.BN,g.a8,g.dn,Ct.yH,OA._Y,OA.JL,OA.F,p.Hw,eA.gM,U.KE,H.Nt,OA.wV,OA.Fj,k.h,OA.Q7,OA.JJ,OA.On,ft.O5,U.TO,q.$V,T.pW,xA.BZ,rt.YE,ft.mk,Y.oO,xA.w1,xA.fO,xA.ge,rt.nU,xA.Dz,xA.ev,ft.PC,Y.Zl,_l.qn,ft.sg,_l.HS,CA.gD,CA.$L,wA.ey,xA.mD,xA.yh,xA.Ke,xA.Q2,xA.as,xA.XQ,xA.nj,xA.Gk,WA.NW],pipes:[ft.JJ],styles:[".mat-column-alias[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-height:4.8rem}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),r})(),canActivate:[Le.eQ]},{path:"transactions",component:ps,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:ca,canActivate:[Le.eQ]},{path:"invoices",component:UA,canActivate:[Le.eQ]},{path:"offers",component:CB,canActivate:[Le.eQ]},{path:"offrBookmarks",component:HB,canActivate:[Le.eQ]}]},{path:"messages",component:qi,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:we,canActivate:[Le.eQ]},{path:"verify",component:On,canActivate:[Le.eQ]}]},{path:"routing",component:vs,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:sa,canActivate:[Le.eQ]},{path:"failedtransactions",component:Dc,canActivate:[Le.eQ]},{path:"localfail",component:Bu,canActivate:[Le.eQ]},{path:"routingpeers",component:Qg,canActivate:[Le.eQ]}]},{path:"reports",component:Mg,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Fg,canActivate:[Le.eQ]},{path:"transactions",component:Lg,canActivate:[Le.eQ]}]},{path:"graph",component:Hg,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Os,canActivate:[Le.eQ]},{path:"queryroutes",component:Ze,canActivate:[Le.eQ]}]},{path:"rates",component:r0,canActivate:[Le.eQ]},{path:"**",component:bg.w},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}]);var cf=Ut(8750);let gf=(()=>{class r{}return r.\u0275fac=function(t){return new(t||r)},r.\u0275mod=A.oAB({type:r,bootstrap:[n]}),r.\u0275inj=A.cJS({providers:[Le.eQ],imports:[[ft.ez,cf.m,lf]]}),r})()},4641:function(Bi,Sr,Ut){var ft=Ut(7757);"undefined"!=typeof self&&self,Bi.exports=function(){var $t={9282:function(T,I,n){"use strict";var c=n(4155);function i($){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(hA){return typeof hA}:function(hA){return hA&&"function"==typeof Symbol&&hA.constructor===Symbol&&hA!==Symbol.prototype?"symbol":typeof hA})($)}var v,m,h=n(2136).codes,a=h.ERR_AMBIGUOUS_ARGUMENT,B=h.ERR_INVALID_ARG_TYPE,E=h.ERR_INVALID_ARG_VALUE,u=h.ERR_INVALID_RETURN_VALUE,C=h.ERR_MISSING_ARGS,e=n(5961),g=n(9539).inspect,w=n(9539).types,Q=w.isPromise,p=w.isRegExp,Y=Object.assign?Object.assign:n(8091).assign,y=Object.is?Object.is:n(609);function L(){var $=n(9158);v=$.isDeepEqual,m=$.isDeepStrictEqual}var q=!1,BA=T.exports=yA,pA={};function lA($){throw $.message instanceof Error?$.message:new e($)}function gA($,W,hA,mA){if(!hA){var nA=!1;if(0===W)nA=!0,mA="No value argument passed to `assert.ok()`";else if(mA instanceof Error)throw mA;var EA=new e({actual:hA,expected:!0,message:mA,operator:"==",stackStartFn:$});throw EA.generatedMessage=nA,EA}}function yA(){for(var $=arguments.length,W=new Array($),hA=0;hA<$;hA++)W[hA]=arguments[hA];gA.apply(void 0,[yA,W.length].concat(W))}BA.fail=function cA($,W,hA,mA,nA){var GA,EA=arguments.length;if(0===EA?GA="Failed":1===EA?(hA=$,$=void 0):(!1===q&&(q=!0,(c.emitWarning?c.emitWarning:console.warn.bind(console))("assert.fail() with more than one argument is deprecated. Please use assert.strictEqual() instead or only pass a message.","DeprecationWarning","DEP0094")),2===EA&&(mA="!=")),hA instanceof Error)throw hA;var st={actual:$,expected:W,operator:void 0===mA?"fail":mA,stackStartFn:nA||cA};void 0!==hA&&(st.message=hA);var TA=new e(st);throw GA&&(TA.message=GA,TA.generatedMessage=!0),TA},BA.AssertionError=e,BA.ok=yA,BA.equal=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");W!=hA&&lA({actual:W,expected:hA,message:mA,operator:"==",stackStartFn:$})},BA.notEqual=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");W==hA&&lA({actual:W,expected:hA,message:mA,operator:"!=",stackStartFn:$})},BA.deepEqual=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");void 0===v&&L(),v(W,hA)||lA({actual:W,expected:hA,message:mA,operator:"deepEqual",stackStartFn:$})},BA.notDeepEqual=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");void 0===v&&L(),v(W,hA)&&lA({actual:W,expected:hA,message:mA,operator:"notDeepEqual",stackStartFn:$})},BA.deepStrictEqual=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");void 0===v&&L(),m(W,hA)||lA({actual:W,expected:hA,message:mA,operator:"deepStrictEqual",stackStartFn:$})},BA.notDeepStrictEqual=function FA($,W,hA){if(arguments.length<2)throw new C("actual","expected");void 0===v&&L(),m($,W)&&lA({actual:$,expected:W,message:hA,operator:"notDeepStrictEqual",stackStartFn:FA})},BA.strictEqual=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");y(W,hA)||lA({actual:W,expected:hA,message:mA,operator:"strictEqual",stackStartFn:$})},BA.notStrictEqual=function $(W,hA,mA){if(arguments.length<2)throw new C("actual","expected");y(W,hA)&&lA({actual:W,expected:hA,message:mA,operator:"notStrictEqual",stackStartFn:$})};var _=function $(W,hA,mA){var nA=this;(function o($,W){if(!($ instanceof W))throw new TypeError("Cannot call a class as a function")})(this,$),hA.forEach(function(EA){EA in W&&(nA[EA]=void 0!==mA&&"string"==typeof mA[EA]&&p(W[EA])&&W[EA].test(mA[EA])?mA[EA]:W[EA])})};function MA($,W,hA,mA,nA,EA){if(!(hA in $)||!m($[hA],W[hA])){if(!mA){var GA=new _($,nA),et=new _(W,nA,$),st=new e({actual:GA,expected:et,operator:"deepStrictEqual",stackStartFn:EA});throw st.actual=$,st.expected=W,st.operator=EA.name,st}lA({actual:$,expected:W,message:mA,operator:EA.name,stackStartFn:EA})}}function uA($,W,hA,mA){if("function"!=typeof W){if(p(W))return W.test($);if(2===arguments.length)throw new B("expected",["Function","RegExp"],W);if("object"!==i($)||null===$){var nA=new e({actual:$,expected:W,message:hA,operator:"deepStrictEqual",stackStartFn:mA});throw nA.operator=mA.name,nA}var EA=Object.keys(W);if(W instanceof Error)EA.push("name","message");else if(0===EA.length)throw new E("error",W,"may not be an empty object");return void 0===v&&L(),EA.forEach(function(GA){"string"==typeof $[GA]&&p(W[GA])&&W[GA].test($[GA])||MA($,W,GA,hA,EA,mA)}),!0}return void 0!==W.prototype&&$ instanceof W||!Error.isPrototypeOf(W)&&!0===W.call({},$)}function QA($){if("function"!=typeof $)throw new B("fn","Function",$);try{$()}catch(W){return W}return pA}function NA($){return Q($)||null!==$&&"object"===i($)&&"function"==typeof $.then&&"function"==typeof $.catch}function bA($){return Promise.resolve().then(function(){var W;if("function"==typeof $){if(!NA(W=$()))throw new u("instance of Promise","promiseFn",W)}else{if(!NA($))throw new B("promiseFn",["Function","Promise"],$);W=$}return Promise.resolve().then(function(){return W}).then(function(){return pA}).catch(function(hA){return hA})})}function XA($,W,hA,mA){if("string"==typeof hA){if(4===arguments.length)throw new B("error",["Object","Error","Function","RegExp"],hA);if("object"===i(W)&&null!==W){if(W.message===hA)throw new a("error/message",'The error message "'.concat(W.message,'" is identical to the message.'))}else if(W===hA)throw new a("error/message",'The error "'.concat(W,'" is identical to the message.'));mA=hA,hA=void 0}else if(null!=hA&&"object"!==i(hA)&&"function"!=typeof hA)throw new B("error",["Object","Error","Function","RegExp"],hA);if(W===pA){var nA="";hA&&hA.name&&(nA+=" (".concat(hA.name,")")),nA+=mA?": ".concat(mA):".",lA({actual:void 0,expected:hA,operator:$.name,message:"Missing expected ".concat("rejects"===$.name?"rejection":"exception").concat(nA),stackStartFn:$})}if(hA&&!uA(W,hA,mA,$))throw W}function X($,W,hA,mA){if(W!==pA){if("string"==typeof hA&&(mA=hA,hA=void 0),!hA||uA(W,hA)){var nA=mA?": ".concat(mA):".";lA({actual:W,expected:hA,operator:$.name,message:"Got unwanted ".concat("doesNotReject"===$.name?"rejection":"exception").concat(nA,"\n")+'Actual message: "'.concat(W&&W.message,'"'),stackStartFn:$})}throw W}}function O(){for(var $=arguments.length,W=new Array($),hA=0;hA<$;hA++)W[hA]=arguments[hA];gA.apply(void 0,[O,W.length].concat(W))}BA.throws=function $(W){for(var hA=arguments.length,mA=new Array(hA>1?hA-1:0),nA=1;nA1?hA-1:0),nA=1;nA1?hA-1:0),nA=1;nA1?hA-1:0),nA=1;nAcA.length)&&(yA=cA.length),cA.substring(yA-gA.length,yA)===gA}var N="",F="",L="",U="",eA={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function q(cA){var gA=Object.keys(cA),yA=Object.create(Object.getPrototypeOf(cA));return gA.forEach(function(FA){yA[FA]=cA[FA]}),Object.defineProperty(yA,"message",{value:cA.message}),yA}function BA(cA){return y(cA,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function pA(cA,gA,yA){var FA="",_="",MA=0,uA="",QA=!1,NA=BA(cA),bA=NA.split("\n"),XA=BA(gA).split("\n"),X=0,O="";if("strictEqual"===yA&&"object"===p(cA)&&"object"===p(gA)&&null!==cA&&null!==gA&&(yA="strictEqualObject"),1===bA.length&&1===XA.length&&bA[0]!==XA[0]){var $=bA[0].length+XA[0].length;if($<=10){if(!("object"===p(cA)&&null!==cA||"object"===p(gA)&&null!==gA||0===cA&&0===gA))return"".concat(eA[yA],"\n\n")+"".concat(bA[0]," !== ").concat(XA[0],"\n")}else if("strictEqualObject"!==yA&&$<(c.stderr&&c.stderr.isTTY?c.stderr.columns:80)){for(;bA[0][X]===XA[0][X];)X++;X>2&&(O="\n ".concat(function P(cA,gA){if(gA=Math.floor(gA),0==cA.length||0==gA)return"";var yA=cA.length*gA;for(gA=Math.floor(Math.log(gA)/Math.log(2));gA;)cA+=cA,gA--;return cA+cA.substring(0,yA-cA.length)}(" ",X),"^"),X=0)}}for(var hA=bA[bA.length-1],mA=XA[XA.length-1];hA===mA&&(X++<2?uA="\n ".concat(hA).concat(uA):FA=hA,bA.pop(),XA.pop(),0!==bA.length&&0!==XA.length);)hA=bA[bA.length-1],mA=XA[XA.length-1];var nA=Math.max(bA.length,XA.length);if(0===nA){var EA=NA.split("\n");if(EA.length>30)for(EA[26]="".concat(N,"...").concat(U);EA.length>27;)EA.pop();return"".concat(eA.notIdentical,"\n\n").concat(EA.join("\n"),"\n")}X>3&&(uA="\n".concat(N,"...").concat(U).concat(uA),QA=!0),""!==FA&&(uA="\n ".concat(FA).concat(uA),FA="");var GA=0,et=eA[yA]+"\n".concat(F,"+ actual").concat(U," ").concat(L,"- expected").concat(U),st=" ".concat(N,"...").concat(U," Lines skipped");for(X=0;X1&&X>2&&(TA>4?(_+="\n".concat(N,"...").concat(U),QA=!0):TA>3&&(_+="\n ".concat(XA[X-2]),GA++),_+="\n ".concat(XA[X-1]),GA++),MA=X,FA+="\n".concat(L,"-").concat(U," ").concat(XA[X]),GA++;else if(XA.length1&&X>2&&(TA>4?(_+="\n".concat(N,"...").concat(U),QA=!0):TA>3&&(_+="\n ".concat(bA[X-2]),GA++),_+="\n ".concat(bA[X-1]),GA++),MA=X,_+="\n".concat(F,"+").concat(U," ").concat(bA[X]),GA++;else{var it=XA[X],vt=bA[X],It=vt!==it&&(!m(vt,",")||vt.slice(0,-1)!==it);It&&m(it,",")&&it.slice(0,-1)===vt&&(It=!1,vt+=","),It?(TA>1&&X>2&&(TA>4?(_+="\n".concat(N,"...").concat(U),QA=!0):TA>3&&(_+="\n ".concat(bA[X-2]),GA++),_+="\n ".concat(bA[X-1]),GA++),MA=X,_+="\n".concat(F,"+").concat(U," ").concat(vt),FA+="\n".concat(L,"-").concat(U," ").concat(it),GA+=2):(_+=FA,FA="",(1===TA||0===X)&&(_+="\n ".concat(vt),GA++))}if(GA>20&&X30)for(X[26]="".concat(N,"...").concat(U);X.length>27;)X.pop();FA=B(this,1===X.length?Q(gA).call(this,"".concat(XA," ").concat(X[0])):Q(gA).call(this,"".concat(XA,"\n\n").concat(X.join("\n"),"\n")))}else{var O=BA(QA),$="",W=eA[MA];"notDeepEqual"===MA||"notEqual"===MA?(O="".concat(eA[MA],"\n\n").concat(O)).length>1024&&(O="".concat(O.slice(0,1021),"...")):($="".concat(BA(NA)),O.length>512&&(O="".concat(O.slice(0,509),"...")),$.length>512&&($="".concat($.slice(0,509),"...")),"deepEqual"===MA||"equal"===MA?O="".concat(W,"\n\n").concat(O,"\n\nshould equal\n\n"):$=" ".concat(MA," ").concat($)),FA=B(this,Q(gA).call(this,"".concat(O).concat($)))}return Error.stackTraceLimit=bA,FA.generatedMessage=!_,Object.defineProperty(E(FA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),FA.code="ERR_ASSERTION",FA.actual=QA,FA.expected=NA,FA.operator=MA,Error.captureStackTrace&&Error.captureStackTrace(E(FA),uA),FA.name="AssertionError",B(FA)}return function u(cA,gA){if("function"!=typeof gA&&null!==gA)throw new TypeError("Super expression must either be null or a function");cA.prototype=Object.create(gA&&gA.prototype,{constructor:{value:cA,writable:!0,configurable:!0}}),gA&&w(cA,gA)}(gA,cA),function a(cA,gA,yA){return gA&&h(cA.prototype,gA),yA&&h(cA,yA),cA}(gA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:y.custom,value:function(FA,_){return y(this,function i(cA){for(var gA=1;gA2?"one of ".concat(Y," ").concat(p.slice(0,y-1).join(", "),", or ")+p[y-1]:2===y?"one of ".concat(Y," ").concat(p[0]," or ").concat(p[1]):"of ".concat(Y," ").concat(p[0])}return"of ".concat(Y," ").concat(String(p))}e("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),e("ERR_INVALID_ARG_TYPE",function(p,Y,y){var d,v;if(void 0===u&&(u=n(9282)),u("string"==typeof p,"'name' must be a string"),"string"==typeof Y&&function g(p,Y,y){return p.substr(!y||y<0?0:+y,Y.length)===Y}(Y,"not ")?(d="must not be",Y=Y.replace(/^not /,"")):d="must be",function w(p,Y,y){return(void 0===y||y>p.length)&&(y=p.length),p.substring(y-Y.length,y)===Y}(p," argument"))v="The ".concat(p," ").concat(d," ").concat(f(Y,"type"));else{var m=function Q(p,Y,y){return"number"!=typeof y&&(y=0),!(y+Y.length>p.length)&&-1!==p.indexOf(Y,y)}(p,".")?"property":"argument";v='The "'.concat(p,'" ').concat(m," ").concat(d," ").concat(f(Y,"type"))}return v+". Received type ".concat(c(y))},TypeError),e("ERR_INVALID_ARG_VALUE",function(p,Y){var y=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===C&&(C=n(9539));var d=C.inspect(Y);return d.length>128&&(d="".concat(d.slice(0,128),"...")),"The argument '".concat(p,"' ").concat(y,". Received ").concat(d)},TypeError,RangeError),e("ERR_INVALID_RETURN_VALUE",function(p,Y,y){var d;return d=y&&y.constructor&&y.constructor.name?"instance of ".concat(y.constructor.name):"type ".concat(c(y)),"Expected ".concat(p,' to be returned from the "').concat(Y,'"')+" function but got ".concat(d,".")},TypeError),e("ERR_MISSING_ARGS",function(){for(var p=arguments.length,Y=new Array(p),y=0;y0,"At least one arg needs to be specified");var d="The ",v=Y.length;switch(Y=Y.map(function(m){return'"'.concat(m,'"')}),v){case 1:d+="".concat(Y[0]," argument");break;case 2:d+="".concat(Y[0]," and ").concat(Y[1]," arguments");break;default:d+=Y.slice(0,v-1).join(", "),d+=", and ".concat(Y[v-1]," arguments")}return"".concat(d," must be specified")},TypeError),T.exports.codes=E},9158:function(T,I,n){"use strict";function c(JA,WA){return function l(JA){if(Array.isArray(JA))return JA}(JA)||function o(JA,WA){var rt=[],xA=!0,Mt=!1,Et=void 0;try{for(var OA,Tt=JA[Symbol.iterator]();!(xA=(OA=Tt.next()).done)&&(rt.push(OA.value),!WA||rt.length!==WA);xA=!0);}catch(H){Mt=!0,Et=H}finally{try{!xA&&null!=Tt.return&&Tt.return()}finally{if(Mt)throw Et}}return rt}(JA,WA)||function i(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function h(JA){return(h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(rt){return typeof rt}:function(rt){return rt&&"function"==typeof Symbol&&rt.constructor===Symbol&&rt!==Symbol.prototype?"symbol":typeof rt})(JA)}var a=void 0!==/a/g.flags,B=function(WA){var rt=[];return WA.forEach(function(xA){return rt.push(xA)}),rt},E=function(WA){var rt=[];return WA.forEach(function(xA,Mt){return rt.push([Mt,xA])}),rt},u=Object.is?Object.is:n(609),C=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},e=Number.isNaN?Number.isNaN:n(360);function f(JA){return JA.call.bind(JA)}var g=f(Object.prototype.hasOwnProperty),w=f(Object.prototype.propertyIsEnumerable),Q=f(Object.prototype.toString),p=n(9539).types,Y=p.isAnyArrayBuffer,y=p.isArrayBufferView,d=p.isDate,v=p.isMap,m=p.isRegExp,P=p.isSet,N=p.isNativeError,F=p.isBoxedPrimitive,L=p.isNumberObject,U=p.isStringObject,eA=p.isBooleanObject,sA=p.isBigIntObject,q=p.isSymbolObject,BA=p.isFloat32Array,pA=p.isFloat64Array;function lA(JA){if(0===JA.length||JA.length>10)return!0;for(var WA=0;WA57)return!0}return 10===JA.length&&JA>=Math.pow(2,32)}function cA(JA){return Object.keys(JA).filter(lA).concat(C(JA).filter(Object.prototype.propertyIsEnumerable.bind(JA)))}function gA(JA,WA){if(JA===WA)return 0;for(var rt=JA.length,xA=WA.length,Mt=0,Et=Math.min(rt,xA);Mt=E.length?{done:!0}:{done:!1,value:E[e++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(E,u){(null==u||u>E.length)&&(u=E.length);for(var C=0,e=new Array(u);Cthis.buffer.length)return this.flush()},f.flush=function(){if(this.bufferOffset>0)return this.push(c.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},f.writeBuffer=function(w){return this.flush(),this.push(w),this.pos+=w.length},f.writeString=function(w,Q){switch(void 0===Q&&(Q="ascii"),Q){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(c.from(w,Q));case"utf16be":for(var p=c.from(w,"utf16le"),Y=0,y=p.length-1;Y>>16&255,this.buffer[this.bufferOffset++]=w>>>8&255,this.buffer[this.bufferOffset++]=255&w,this.pos+=3},f.writeUInt24LE=function(w){return this.ensure(3),this.buffer[this.bufferOffset++]=255&w,this.buffer[this.bufferOffset++]=w>>>8&255,this.buffer[this.bufferOffset++]=w>>>16&255,this.pos+=3},f.writeInt24BE=function(w){return this.writeUInt24BE(w>=0?w:w+16777215+1)},f.writeInt24LE=function(w){return this.writeUInt24LE(w>=0?w:w+16777215+1)},f.fill=function(w,Q){if(Q=this.length)){if(null==this.items[w]){var Q=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*w,this.items[w]=this.type.decode(this.stream,this.ctx),this.stream.pos=Q}return this.items[w]}},f.toArray=function(){for(var w=[],Q=0,p=this.length;Q>1),(f=a.call(this,"Int"+u,C)||this)._point=1<u)throw new RangeError('The value "'+H+'" is invalid for option "size"');var k=new Uint8Array(H);return Object.setPrototypeOf(k,f.prototype),k}function f(H,k,b){if("number"==typeof H){if("string"==typeof k)throw new TypeError('The "string" argument must be of type string. Received type number');return p(H)}return g(H,k,b)}function g(H,k,b){if("string"==typeof H)return function Y(H,k){if(("string"!=typeof k||""===k)&&(k="utf8"),!f.isEncoding(k))throw new TypeError("Unknown encoding: "+k);var b=0|F(H,k),CA=e(b),wA=CA.write(H,k);return wA!==b&&(CA=CA.slice(0,wA)),CA}(H,k);if(ArrayBuffer.isView(H))return function d(H){if(xA(H,Uint8Array)){var k=new Uint8Array(H);return v(k.buffer,k.byteOffset,k.byteLength)}return y(H)}(H);if(null==H)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof H);if(xA(H,ArrayBuffer)||H&&xA(H.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(xA(H,SharedArrayBuffer)||H&&xA(H.buffer,SharedArrayBuffer)))return v(H,k,b);if("number"==typeof H)throw new TypeError('The "value" argument must not be of type number. Received type number');var CA=H.valueOf&&H.valueOf();if(null!=CA&&CA!==H)return f.from(CA,k,b);var wA=function m(H){if(f.isBuffer(H)){var k=0|P(H.length),b=e(k);return 0===b.length||H.copy(b,0,0,k),b}return void 0!==H.length?"number"!=typeof H.length||Mt(H.length)?e(0):y(H):"Buffer"===H.type&&Array.isArray(H.data)?y(H.data):void 0}(H);if(wA)return wA;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof H[Symbol.toPrimitive])return f.from(H[Symbol.toPrimitive]("string"),k,b);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof H)}function w(H){if("number"!=typeof H)throw new TypeError('"size" argument must be of type number');if(H<0)throw new RangeError('The value "'+H+'" is invalid for option "size"')}function p(H){return w(H),e(H<0?0:0|P(H))}function y(H){for(var k=H.length<0?0:0|P(H.length),b=e(k),CA=0;CA=u)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+u.toString(16)+" bytes");return 0|H}function F(H,k){if(f.isBuffer(H))return H.length;if(ArrayBuffer.isView(H)||xA(H,ArrayBuffer))return H.byteLength;if("string"!=typeof H)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof H);var b=H.length,CA=arguments.length>2&&!0===arguments[2];if(!CA&&0===b)return 0;for(var wA=!1;;)switch(k){case"ascii":case"latin1":case"binary":return b;case"utf8":case"utf-8":return It(H).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*b;case"hex":return b>>>1;case"base64":return WA(H).length;default:if(wA)return CA?-1:It(H).length;k=(""+k).toLowerCase(),wA=!0}}function L(H,k,b){var CA=!1;if((void 0===k||k<0)&&(k=0),k>this.length||((void 0===b||b>this.length)&&(b=this.length),b<=0)||(b>>>=0)<=(k>>>=0))return"";for(H||(H="utf8");;)switch(H){case"hex":return QA(this,k,b);case"utf8":case"utf-8":return yA(this,k,b);case"ascii":return MA(this,k,b);case"latin1":case"binary":return uA(this,k,b);case"base64":return gA(this,k,b);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return NA(this,k,b);default:if(CA)throw new TypeError("Unknown encoding: "+H);H=(H+"").toLowerCase(),CA=!0}}function U(H,k,b){var CA=H[k];H[k]=H[b],H[b]=CA}function eA(H,k,b,CA,wA){if(0===H.length)return-1;if("string"==typeof b?(CA=b,b=0):b>2147483647?b=2147483647:b<-2147483648&&(b=-2147483648),Mt(b=+b)&&(b=wA?0:H.length-1),b<0&&(b=H.length+b),b>=H.length){if(wA)return-1;b=H.length-1}else if(b<0){if(!wA)return-1;b=0}if("string"==typeof k&&(k=f.from(k,CA)),f.isBuffer(k))return 0===k.length?-1:sA(H,k,b,CA,wA);if("number"==typeof k)return k&=255,"function"==typeof Uint8Array.prototype.indexOf?wA?Uint8Array.prototype.indexOf.call(H,k,b):Uint8Array.prototype.lastIndexOf.call(H,k,b):sA(H,[k],b,CA,wA);throw new TypeError("val must be string, number or Buffer")}function sA(H,k,b,CA,wA){var j,RA=1,rA=H.length,gt=k.length;if(void 0!==CA&&("ucs2"===(CA=String(CA).toLowerCase())||"ucs-2"===CA||"utf16le"===CA||"utf-16le"===CA)){if(H.length<2||k.length<2)return-1;RA=2,rA/=2,gt/=2,b/=2}function Yt(jA,lt){return 1===RA?jA[lt]:jA.readUInt16BE(lt*RA)}if(wA){var qA=-1;for(j=b;jrA&&(b=rA-gt),j=b;j>=0;j--){for(var KA=!0,DA=0;DAwA&&(CA=wA):CA=wA;var rA,RA=k.length;for(CA>RA/2&&(CA=RA/2),rA=0;rA>8,RA.push(b%256),RA.push(CA);return RA}(k,H.length-b),H,b,CA)}function gA(H,k,b){return a.fromByteArray(0===k&&b===H.length?H:H.slice(k,b))}function yA(H,k,b){b=Math.min(H.length,b);for(var CA=[],wA=k;wA239?4:RA>223?3:RA>191?2:1;if(wA+gt<=b){var Yt=void 0,j=void 0,qA=void 0,KA=void 0;switch(gt){case 1:RA<128&&(rA=RA);break;case 2:128==(192&(Yt=H[wA+1]))&&(KA=(31&RA)<<6|63&Yt)>127&&(rA=KA);break;case 3:j=H[wA+2],128==(192&(Yt=H[wA+1]))&&128==(192&j)&&(KA=(15&RA)<<12|(63&Yt)<<6|63&j)>2047&&(KA<55296||KA>57343)&&(rA=KA);break;case 4:j=H[wA+2],qA=H[wA+3],128==(192&(Yt=H[wA+1]))&&128==(192&j)&&128==(192&qA)&&(KA=(15&RA)<<18|(63&Yt)<<12|(63&j)<<6|63&qA)>65535&&KA<1114112&&(rA=KA)}}null===rA?(rA=65533,gt=1):rA>65535&&(CA.push((rA-=65536)>>>10&1023|55296),rA=56320|1023&rA),CA.push(rA),wA+=gt}return function _(H){var k=H.length;if(k<=4096)return String.fromCharCode.apply(String,H);for(var b="",CA=0;CAwA.length?(f.isBuffer(rA)||(rA=f.from(rA)),rA.copy(wA,RA)):Uint8Array.prototype.set.call(wA,rA,RA);else{if(!f.isBuffer(rA))throw new TypeError('"list" argument must be an Array of Buffers');rA.copy(wA,RA)}RA+=rA.length}return wA},f.byteLength=F,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var k=this.length;if(k%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var b=0;bb&&(k+=" ... "),""},E&&(f.prototype[E]=f.prototype.inspect),f.prototype.compare=function(k,b,CA,wA,RA){if(xA(k,Uint8Array)&&(k=f.from(k,k.offset,k.byteLength)),!f.isBuffer(k))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof k);if(void 0===b&&(b=0),void 0===CA&&(CA=k?k.length:0),void 0===wA&&(wA=0),void 0===RA&&(RA=this.length),b<0||CA>k.length||wA<0||RA>this.length)throw new RangeError("out of range index");if(wA>=RA&&b>=CA)return 0;if(wA>=RA)return-1;if(b>=CA)return 1;if(this===k)return 0;for(var rA=(RA>>>=0)-(wA>>>=0),gt=(CA>>>=0)-(b>>>=0),Yt=Math.min(rA,gt),j=this.slice(wA,RA),qA=k.slice(b,CA),KA=0;KA>>=0,isFinite(CA)?(CA>>>=0,void 0===wA&&(wA="utf8")):(wA=CA,CA=void 0)}var RA=this.length-b;if((void 0===CA||CA>RA)&&(CA=RA),k.length>0&&(CA<0||b<0)||b>this.length)throw new RangeError("Attempt to write outside buffer bounds");wA||(wA="utf8");for(var rA=!1;;)switch(wA){case"hex":return q(this,k,b,CA);case"utf8":case"utf-8":return BA(this,k,b,CA);case"ascii":case"latin1":case"binary":return pA(this,k,b,CA);case"base64":return lA(this,k,b,CA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return cA(this,k,b,CA);default:if(rA)throw new TypeError("Unknown encoding: "+wA);wA=(""+wA).toLowerCase(),rA=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function MA(H,k,b){var CA="";b=Math.min(H.length,b);for(var wA=k;wACA)&&(b=CA);for(var wA="",RA=k;RAb)throw new RangeError("Trying to access beyond buffer length")}function XA(H,k,b,CA,wA,RA){if(!f.isBuffer(H))throw new TypeError('"buffer" argument must be a Buffer instance');if(k>wA||kH.length)throw new RangeError("Index out of range")}function X(H,k,b,CA,wA){et(k,CA,wA,H,b,7);var RA=Number(k&BigInt(4294967295));H[b++]=RA,H[b++]=RA>>=8,H[b++]=RA>>=8,H[b++]=RA>>=8;var rA=Number(k>>BigInt(32)&BigInt(4294967295));return H[b++]=rA,H[b++]=rA>>=8,H[b++]=rA>>=8,H[b++]=rA>>=8,b}function O(H,k,b,CA,wA){et(k,CA,wA,H,b,7);var RA=Number(k&BigInt(4294967295));H[b+7]=RA,H[b+6]=RA>>=8,H[b+5]=RA>>=8,H[b+4]=RA>>=8;var rA=Number(k>>BigInt(32)&BigInt(4294967295));return H[b+3]=rA,H[b+2]=rA>>=8,H[b+1]=rA>>=8,H[b]=rA>>=8,b+8}function $(H,k,b,CA,wA,RA){if(b+CA>H.length)throw new RangeError("Index out of range");if(b<0)throw new RangeError("Index out of range")}function W(H,k,b,CA,wA){return k=+k,b>>>=0,wA||$(H,0,b,4),B.write(H,k,b,CA,23,4),b+4}function hA(H,k,b,CA,wA){return k=+k,b>>>=0,wA||$(H,0,b,8),B.write(H,k,b,CA,52,8),b+8}f.prototype.slice=function(k,b){var CA=this.length;(k=~~k)<0?(k+=CA)<0&&(k=0):k>CA&&(k=CA),(b=void 0===b?CA:~~b)<0?(b+=CA)<0&&(b=0):b>CA&&(b=CA),b>>=0,b>>>=0,CA||bA(k,b,this.length);for(var wA=this[k],RA=1,rA=0;++rA>>=0,b>>>=0,CA||bA(k,b,this.length);for(var wA=this[k+--b],RA=1;b>0&&(RA*=256);)wA+=this[k+--b]*RA;return wA},f.prototype.readUint8=f.prototype.readUInt8=function(k,b){return k>>>=0,b||bA(k,1,this.length),this[k]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(k,b){return k>>>=0,b||bA(k,2,this.length),this[k]|this[k+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(k,b){return k>>>=0,b||bA(k,2,this.length),this[k]<<8|this[k+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(k,b){return k>>>=0,b||bA(k,4,this.length),(this[k]|this[k+1]<<8|this[k+2]<<16)+16777216*this[k+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(k,b){return k>>>=0,b||bA(k,4,this.length),16777216*this[k]+(this[k+1]<<16|this[k+2]<<8|this[k+3])},f.prototype.readBigUInt64LE=Tt(function(k){st(k>>>=0,"offset");var b=this[k],CA=this[k+7];(void 0===b||void 0===CA)&&TA(k,this.length-8);var wA=b+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,24),RA=this[++k]+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+CA*Math.pow(2,24);return BigInt(wA)+(BigInt(RA)<>>=0,"offset");var b=this[k],CA=this[k+7];(void 0===b||void 0===CA)&&TA(k,this.length-8);var wA=b*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k],RA=this[++k]*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+CA;return(BigInt(wA)<>>=0,b>>>=0,CA||bA(k,b,this.length);for(var wA=this[k],RA=1,rA=0;++rA=(RA*=128)&&(wA-=Math.pow(2,8*b)),wA},f.prototype.readIntBE=function(k,b,CA){k>>>=0,b>>>=0,CA||bA(k,b,this.length);for(var wA=b,RA=1,rA=this[k+--wA];wA>0&&(RA*=256);)rA+=this[k+--wA]*RA;return rA>=(RA*=128)&&(rA-=Math.pow(2,8*b)),rA},f.prototype.readInt8=function(k,b){return k>>>=0,b||bA(k,1,this.length),128&this[k]?-1*(255-this[k]+1):this[k]},f.prototype.readInt16LE=function(k,b){k>>>=0,b||bA(k,2,this.length);var CA=this[k]|this[k+1]<<8;return 32768&CA?4294901760|CA:CA},f.prototype.readInt16BE=function(k,b){k>>>=0,b||bA(k,2,this.length);var CA=this[k+1]|this[k]<<8;return 32768&CA?4294901760|CA:CA},f.prototype.readInt32LE=function(k,b){return k>>>=0,b||bA(k,4,this.length),this[k]|this[k+1]<<8|this[k+2]<<16|this[k+3]<<24},f.prototype.readInt32BE=function(k,b){return k>>>=0,b||bA(k,4,this.length),this[k]<<24|this[k+1]<<16|this[k+2]<<8|this[k+3]},f.prototype.readBigInt64LE=Tt(function(k){st(k>>>=0,"offset");var b=this[k],CA=this[k+7];(void 0===b||void 0===CA)&&TA(k,this.length-8);var wA=this[k+4]+this[k+5]*Math.pow(2,8)+this[k+6]*Math.pow(2,16)+(CA<<24);return(BigInt(wA)<>>=0,"offset");var b=this[k],CA=this[k+7];(void 0===b||void 0===CA)&&TA(k,this.length-8);var wA=(b<<24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k];return(BigInt(wA)<>>=0,b||bA(k,4,this.length),B.read(this,k,!0,23,4)},f.prototype.readFloatBE=function(k,b){return k>>>=0,b||bA(k,4,this.length),B.read(this,k,!1,23,4)},f.prototype.readDoubleLE=function(k,b){return k>>>=0,b||bA(k,8,this.length),B.read(this,k,!0,52,8)},f.prototype.readDoubleBE=function(k,b){return k>>>=0,b||bA(k,8,this.length),B.read(this,k,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(k,b,CA,wA){k=+k,b>>>=0,CA>>>=0,wA||XA(this,k,b,CA,Math.pow(2,8*CA)-1,0);var rA=1,gt=0;for(this[b]=255&k;++gt>>=0,CA>>>=0,wA||XA(this,k,b,CA,Math.pow(2,8*CA)-1,0);var rA=CA-1,gt=1;for(this[b+rA]=255&k;--rA>=0&&(gt*=256);)this[b+rA]=k/gt&255;return b+CA},f.prototype.writeUint8=f.prototype.writeUInt8=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,1,255,0),this[b]=255&k,b+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,2,65535,0),this[b]=255&k,this[b+1]=k>>>8,b+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,2,65535,0),this[b]=k>>>8,this[b+1]=255&k,b+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,4,4294967295,0),this[b+3]=k>>>24,this[b+2]=k>>>16,this[b+1]=k>>>8,this[b]=255&k,b+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,4,4294967295,0),this[b]=k>>>24,this[b+1]=k>>>16,this[b+2]=k>>>8,this[b+3]=255&k,b+4},f.prototype.writeBigUInt64LE=Tt(function(k,b){return void 0===b&&(b=0),X(this,k,b,BigInt(0),BigInt("0xffffffffffffffff"))}),f.prototype.writeBigUInt64BE=Tt(function(k,b){return void 0===b&&(b=0),O(this,k,b,BigInt(0),BigInt("0xffffffffffffffff"))}),f.prototype.writeIntLE=function(k,b,CA,wA){if(k=+k,b>>>=0,!wA){var RA=Math.pow(2,8*CA-1);XA(this,k,b,CA,RA-1,-RA)}var rA=0,gt=1,Yt=0;for(this[b]=255&k;++rA>0)-Yt&255;return b+CA},f.prototype.writeIntBE=function(k,b,CA,wA){if(k=+k,b>>>=0,!wA){var RA=Math.pow(2,8*CA-1);XA(this,k,b,CA,RA-1,-RA)}var rA=CA-1,gt=1,Yt=0;for(this[b+rA]=255&k;--rA>=0&&(gt*=256);)k<0&&0===Yt&&0!==this[b+rA+1]&&(Yt=1),this[b+rA]=(k/gt>>0)-Yt&255;return b+CA},f.prototype.writeInt8=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,1,127,-128),k<0&&(k=255+k+1),this[b]=255&k,b+1},f.prototype.writeInt16LE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,2,32767,-32768),this[b]=255&k,this[b+1]=k>>>8,b+2},f.prototype.writeInt16BE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,2,32767,-32768),this[b]=k>>>8,this[b+1]=255&k,b+2},f.prototype.writeInt32LE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,4,2147483647,-2147483648),this[b]=255&k,this[b+1]=k>>>8,this[b+2]=k>>>16,this[b+3]=k>>>24,b+4},f.prototype.writeInt32BE=function(k,b,CA){return k=+k,b>>>=0,CA||XA(this,k,b,4,2147483647,-2147483648),k<0&&(k=4294967295+k+1),this[b]=k>>>24,this[b+1]=k>>>16,this[b+2]=k>>>8,this[b+3]=255&k,b+4},f.prototype.writeBigInt64LE=Tt(function(k,b){return void 0===b&&(b=0),X(this,k,b,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),f.prototype.writeBigInt64BE=Tt(function(k,b){return void 0===b&&(b=0),O(this,k,b,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),f.prototype.writeFloatLE=function(k,b,CA){return W(this,k,b,!0,CA)},f.prototype.writeFloatBE=function(k,b,CA){return W(this,k,b,!1,CA)},f.prototype.writeDoubleLE=function(k,b,CA){return hA(this,k,b,!0,CA)},f.prototype.writeDoubleBE=function(k,b,CA){return hA(this,k,b,!1,CA)},f.prototype.copy=function(k,b,CA,wA){if(!f.isBuffer(k))throw new TypeError("argument should be a Buffer");if(CA||(CA=0),!wA&&0!==wA&&(wA=this.length),b>=k.length&&(b=k.length),b||(b=0),wA>0&&wA=this.length)throw new RangeError("Index out of range");if(wA<0)throw new RangeError("sourceEnd out of bounds");wA>this.length&&(wA=this.length),k.length-b>>=0,CA=void 0===CA?this.length:CA>>>0,k||(k=0),"number"==typeof k)for(rA=b;rA=CA+4;b-=3)k="_"+H.slice(b-3,b)+k;return""+H.slice(0,b)+k}function et(H,k,b,CA,wA,RA){if(H>b||H3?0===k||k===BigInt(0)?">= 0"+rA+" and < 2"+rA+" ** "+8*(RA+1)+rA:">= -(2"+rA+" ** "+(8*(RA+1)-1)+rA+") and < 2 ** "+(8*(RA+1)-1)+rA:">= "+k+rA+" and <= "+b+rA,new mA.ERR_OUT_OF_RANGE("value",gt,H)}!function GA(H,k,b){st(k,"offset"),(void 0===H[k]||void 0===H[k+b])&&TA(k,H.length-(b+1))}(CA,wA,RA)}function st(H,k){if("number"!=typeof H)throw new mA.ERR_INVALID_ARG_TYPE(k,"number",H)}function TA(H,k,b){throw Math.floor(H)!==H?(st(H,b),new mA.ERR_OUT_OF_RANGE(b||"offset","an integer",H)):k<0?new mA.ERR_BUFFER_OUT_OF_BOUNDS:new mA.ERR_OUT_OF_RANGE(b||"offset",">= "+(b?1:0)+" and <= "+k,H)}nA("ERR_BUFFER_OUT_OF_BOUNDS",function(H){return H?H+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),nA("ERR_INVALID_ARG_TYPE",function(H,k){return'The "'+H+'" argument must be of type number. Received type '+typeof k},TypeError),nA("ERR_OUT_OF_RANGE",function(H,k,b){var CA='The value of "'+H+'" is out of range.',wA=b;return Number.isInteger(b)&&Math.abs(b)>Math.pow(2,32)?wA=EA(String(b)):"bigint"==typeof b&&(wA=String(b),(b>Math.pow(BigInt(2),BigInt(32))||b<-Math.pow(BigInt(2),BigInt(32)))&&(wA=EA(wA)),wA+="n"),CA+" It must be "+k+". Received "+wA},RangeError);var it=/[^+/0-9A-Za-z-_]/g;function It(H,k){k=k||1/0;for(var b,CA=H.length,wA=null,RA=[],rA=0;rA55295&&b<57344){if(!wA){if(b>56319){(k-=3)>-1&&RA.push(239,191,189);continue}if(rA+1===CA){(k-=3)>-1&&RA.push(239,191,189);continue}wA=b;continue}if(b<56320){(k-=3)>-1&&RA.push(239,191,189),wA=b;continue}b=65536+(wA-55296<<10|b-56320)}else wA&&(k-=3)>-1&&RA.push(239,191,189);if(wA=null,b<128){if((k-=1)<0)break;RA.push(b)}else if(b<2048){if((k-=2)<0)break;RA.push(b>>6|192,63&b|128)}else if(b<65536){if((k-=3)<0)break;RA.push(b>>12|224,b>>6&63|128,63&b|128)}else{if(!(b<1114112))throw new Error("Invalid code point");if((k-=4)<0)break;RA.push(b>>18|240,b>>12&63|128,b>>6&63|128,63&b|128)}}return RA}function WA(H){return a.toByteArray(function vt(H){if((H=(H=H.split("=")[0]).trim().replace(it,"")).length<2)return"";for(;H.length%4!=0;)H+="=";return H}(H))}function rt(H,k,b,CA){var wA;for(wA=0;wA=k.length||wA>=H.length);++wA)k[wA+b]=H[wA];return wA}function xA(H,k){return H instanceof k||null!=H&&null!=H.constructor&&null!=H.constructor.name&&H.constructor.name===k.name}function Mt(H){return H!=H}var Et=function(){for(var H="0123456789abcdef",k=new Array(256),b=0;b<16;++b)for(var CA=16*b,wA=0;wA<16;++wA)k[CA+wA]=H[b]+H[wA];return k}();function Tt(H){return"undefined"==typeof BigInt?OA:H}function OA(){throw new Error("BigInt not supported")}},477:function(T,I,n){"use strict";n(7803),n(1539),T.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},2094:function(T,I,n){"use strict";var BA,pA,lA,c=n(477),i=n(9781),o=n(7854),l=n(614),h=n(111),a=n(2597),B=n(648),E=n(6330),u=n(8880),C=n(1320),e=n(3070).f,f=n(7976),g=n(9518),w=n(7674),Q=n(5112),p=n(9711),Y=o.Int8Array,y=Y&&Y.prototype,d=o.Uint8ClampedArray,v=d&&d.prototype,m=Y&&g(Y),P=y&&g(y),N=Object.prototype,F=o.TypeError,L=Q("toStringTag"),U=p("TYPED_ARRAY_TAG"),eA=p("TYPED_ARRAY_CONSTRUCTOR"),sA=c&&!!w&&"Opera"!==B(o.opera),q=!1,cA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},gA={BigInt64Array:8,BigUint64Array:8},FA=function(bA){if(!h(bA))return!1;var XA=B(bA);return a(cA,XA)||a(gA,XA)};for(BA in cA)(lA=(pA=o[BA])&&pA.prototype)?u(lA,eA,pA):sA=!1;for(BA in gA)(lA=(pA=o[BA])&&pA.prototype)&&u(lA,eA,pA);if((!sA||!l(m)||m===Function.prototype)&&(m=function(){throw F("Incorrect invocation")},sA))for(BA in cA)o[BA]&&w(o[BA],m);if((!sA||!P||P===N)&&(P=m.prototype,sA))for(BA in cA)o[BA]&&w(o[BA].prototype,P);if(sA&&g(v)!==P&&w(v,P),i&&!a(P,L))for(BA in q=!0,e(P,L,{get:function(){return h(this)?this[U]:void 0}}),cA)o[BA]&&u(o[BA],U,BA);T.exports={NATIVE_ARRAY_BUFFER_VIEWS:sA,TYPED_ARRAY_CONSTRUCTOR:eA,TYPED_ARRAY_TAG:q&&U,aTypedArray:function(bA){if(FA(bA))return bA;throw F("Target is not a typed array")},aTypedArrayConstructor:function(bA){if(l(bA)&&(!w||f(m,bA)))return bA;throw F(E(bA)+" is not a typed array constructor")},exportTypedArrayMethod:function(bA,XA,X){if(i){if(X)for(var O in cA){var $=o[O];if($&&a($.prototype,bA))try{delete $.prototype[bA]}catch(W){}}(!P[bA]||X)&&C(P,bA,X?XA:sA&&y[bA]||XA)}},exportTypedArrayStaticMethod:function(bA,XA,X){var O,$;if(i){if(w){if(X)for(O in cA)if(($=o[O])&&a($,bA))try{delete $[bA]}catch(W){}if(m[bA]&&!X)return;try{return C(m,bA,X?XA:sA&&m[bA]||XA)}catch(W){}}for(O in cA)($=o[O])&&(!$[bA]||X)&&C($,bA,XA)}},isView:function(bA){if(!h(bA))return!1;var XA=B(bA);return"DataView"===XA||a(cA,XA)||a(gA,XA)},isTypedArray:FA,TypedArray:m,TypedArrayPrototype:P}},2091:function(T,I,n){"use strict";n(8309);var c=n(7854),i=n(1702),o=n(9781),l=n(477),h=n(6530),a=n(8880),B=n(2248),E=n(7293),u=n(5787),C=n(9303),e=n(7466),f=n(7067),g=n(1179),w=n(9518),Q=n(7674),p=n(8006).f,Y=n(3070).f,y=n(1285),d=n(206),v=n(8003),m=n(9909),P=h.PROPER,N=h.CONFIGURABLE,F=m.get,L=m.set,U="ArrayBuffer",eA="DataView",sA="prototype",BA="Wrong index",pA=c[U],lA=pA,cA=lA&&lA[sA],gA=c[eA],yA=gA&&gA[sA],FA=Object.prototype,_=c.Array,MA=c.RangeError,uA=i(y),QA=i([].reverse),NA=g.pack,bA=g.unpack,XA=function(ht){return[255&ht]},X=function(ht){return[255&ht,ht>>8&255]},O=function(ht){return[255&ht,ht>>8&255,ht>>16&255,ht>>24&255]},$=function(ht){return ht[3]<<24|ht[2]<<16|ht[1]<<8|ht[0]},W=function(ht){return NA(ht,23,4)},hA=function(ht){return NA(ht,52,8)},mA=function(ht,JA){Y(ht[sA],JA,{get:function(){return F(this)[JA]}})},nA=function(ht,JA,WA,rt){var xA=f(WA),Mt=F(ht);if(xA+JA>Mt.byteLength)throw MA(BA);var Et=F(Mt.buffer).bytes,Tt=xA+Mt.byteOffset,OA=d(Et,Tt,Tt+JA);return rt?OA:QA(OA)},EA=function(ht,JA,WA,rt,xA,Mt){var Et=f(WA),Tt=F(ht);if(Et+JA>Tt.byteLength)throw MA(BA);for(var OA=F(Tt.buffer).bytes,H=Et+Tt.byteOffset,k=rt(+xA),b=0;bst;)(TA=et[st++])in lA||a(lA,TA,pA[TA]);cA.constructor=lA}Q&&w(yA)!==FA&&Q(yA,FA);var it=new gA(new lA(2)),vt=i(yA.setInt8);it.setInt8(0,2147483648),it.setInt8(1,2147483649),(it.getInt8(0)||!it.getInt8(1))&&B(yA,{setInt8:function(ht,JA){vt(this,ht,JA<<24>>24)},setUint8:function(ht,JA){vt(this,ht,JA<<24>>24)}},{unsafe:!0})}else cA=(lA=function(ht){u(this,cA);var JA=f(ht);L(this,{bytes:uA(_(JA),0),byteLength:JA}),o||(this.byteLength=JA)})[sA],yA=(gA=function(ht,JA,WA){u(this,yA),u(ht,cA);var rt=F(ht).byteLength,xA=C(JA);if(xA<0||xA>rt)throw MA("Wrong offset");if(xA+(WA=void 0===WA?rt-xA:e(WA))>rt)throw MA("Wrong length");L(this,{buffer:ht,byteLength:WA,byteOffset:xA}),o||(this.buffer=ht,this.byteLength=WA,this.byteOffset=xA)})[sA],o&&(mA(lA,"byteLength"),mA(gA,"buffer"),mA(gA,"byteLength"),mA(gA,"byteOffset")),B(yA,{getInt8:function(ht){return nA(this,1,ht)[0]<<24>>24},getUint8:function(ht){return nA(this,1,ht)[0]},getInt16:function(ht){var JA=nA(this,2,ht,arguments.length>1?arguments[1]:void 0);return(JA[1]<<8|JA[0])<<16>>16},getUint16:function(ht){var JA=nA(this,2,ht,arguments.length>1?arguments[1]:void 0);return JA[1]<<8|JA[0]},getInt32:function(ht){return $(nA(this,4,ht,arguments.length>1?arguments[1]:void 0))},getUint32:function(ht){return $(nA(this,4,ht,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(ht){return bA(nA(this,4,ht,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(ht){return bA(nA(this,8,ht,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(ht,JA){EA(this,1,ht,XA,JA)},setUint8:function(ht,JA){EA(this,1,ht,XA,JA)},setInt16:function(ht,JA){EA(this,2,ht,X,JA,arguments.length>2?arguments[2]:void 0)},setUint16:function(ht,JA){EA(this,2,ht,X,JA,arguments.length>2?arguments[2]:void 0)},setInt32:function(ht,JA){EA(this,4,ht,O,JA,arguments.length>2?arguments[2]:void 0)},setUint32:function(ht,JA){EA(this,4,ht,O,JA,arguments.length>2?arguments[2]:void 0)},setFloat32:function(ht,JA){EA(this,4,ht,W,JA,arguments.length>2?arguments[2]:void 0)},setFloat64:function(ht,JA){EA(this,8,ht,hA,JA,arguments.length>2?arguments[2]:void 0)}});v(lA,U),v(gA,eA),T.exports={ArrayBuffer:lA,DataView:gA}},7803:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(2091),l=n(6340),h="ArrayBuffer",a=o[h];c({global:!0,forced:i[h]!==a},{ArrayBuffer:a}),l(h)},194:function(T,I,n){"use strict";T.exports=function(c){return function(){var i=c,l=i.lib.BlockCipher,h=i.algo,a=[],B=[],E=[],u=[],C=[],e=[],f=[],g=[],w=[],Q=[];!function(){for(var y=[],d=0;d<256;d++)y[d]=d<128?d<<1:d<<1^283;var v=0,m=0;for(d=0;d<256;d++){var P=m^m<<1^m<<2^m<<3^m<<4;a[v]=P=P>>>8^255&P^99,B[P]=v;var U,N=y[v],F=y[N],L=y[F];E[v]=(U=257*y[P]^16843008*P)<<24|U>>>8,u[v]=U<<16|U>>>16,C[v]=U<<8|U>>>24,e[v]=U,f[P]=(U=16843009*L^65537*F^257*N^16843008*v)<<24|U>>>8,g[P]=U<<16|U>>>16,w[P]=U<<8|U>>>24,Q[P]=U,v?(v=N^y[y[y[L^N]]],m^=y[y[m]]):v=m=1}}();var p=[0,1,2,4,8,16,32,64,128,27,54],Y=h.AES=l.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var v=this._keyPriorReset=this._key,m=v.words,P=v.sigBytes/4,F=4*((this._nRounds=P+6)+1),L=this._keySchedule=[],U=0;U6&&U%P==4&&(d=a[d>>>24]<<24|a[d>>>16&255]<<16|a[d>>>8&255]<<8|a[255&d]):(d=a[(d=d<<8|d>>>24)>>>24]<<24|a[d>>>16&255]<<16|a[d>>>8&255]<<8|a[255&d],d^=p[U/P|0]<<24),L[U]=L[U-P]^d);for(var eA=this._invKeySchedule=[],sA=0;sA>>24]]^g[a[d>>>16&255]]^w[a[d>>>8&255]]^Q[a[255&d]]}}},encryptBlock:function(d,v){this._doCryptBlock(d,v,this._keySchedule,E,u,C,e,a)},decryptBlock:function(d,v){var m=d[v+1];d[v+1]=d[v+3],d[v+3]=m,this._doCryptBlock(d,v,this._invKeySchedule,f,g,w,Q,B),m=d[v+1],d[v+1]=d[v+3],d[v+3]=m},_doCryptBlock:function(d,v,m,P,N,F,L,U){for(var eA=this._nRounds,sA=d[v]^m[0],q=d[v+1]^m[1],BA=d[v+2]^m[2],pA=d[v+3]^m[3],lA=4,cA=1;cA>>24]^N[q>>>16&255]^F[BA>>>8&255]^L[255&pA]^m[lA++],yA=P[q>>>24]^N[BA>>>16&255]^F[pA>>>8&255]^L[255&sA]^m[lA++],FA=P[BA>>>24]^N[pA>>>16&255]^F[sA>>>8&255]^L[255&q]^m[lA++],_=P[pA>>>24]^N[sA>>>16&255]^F[q>>>8&255]^L[255&BA]^m[lA++];sA=gA,q=yA,BA=FA,pA=_}gA=(U[sA>>>24]<<24|U[q>>>16&255]<<16|U[BA>>>8&255]<<8|U[255&pA])^m[lA++],yA=(U[q>>>24]<<24|U[BA>>>16&255]<<16|U[pA>>>8&255]<<8|U[255&sA])^m[lA++],FA=(U[BA>>>24]<<24|U[pA>>>16&255]<<16|U[sA>>>8&255]<<8|U[255&q])^m[lA++],_=(U[pA>>>24]<<24|U[sA>>>16&255]<<16|U[q>>>8&255]<<8|U[255&BA])^m[lA++],d[v]=gA,d[v+1]=yA,d[v+2]=FA,d[v+3]=_},keySize:8});i.AES=l._createHelper(Y)}(),c.AES}(n(757),n(7508),n(3440),n(3839),n(1582))},1582:function(T,I,n){"use strict";n(7042),n(2222),n(1539),n(9714),n(561),T.exports=function(c){var o,l,h,a,B,C,f,g,Q,p,Y,d,m,N,F,U,eA;c.lib.Cipher||(a=(l=(o=c).lib).WordArray,C=o.enc.Base64,f=o.algo.EvpKDF,g=l.Cipher=(B=l.BufferedBlockAlgorithm).extend({cfg:(h=l.Base).extend(),createEncryptor:function(q,BA){return this.create(this._ENC_XFORM_MODE,q,BA)},createDecryptor:function(q,BA){return this.create(this._DEC_XFORM_MODE,q,BA)},init:function(q,BA,pA){this.cfg=this.cfg.extend(pA),this._xformMode=q,this._key=BA,this.reset()},reset:function(){B.reset.call(this),this._doReset()},process:function(q){return this._append(q),this._process()},finalize:function(q){return q&&this._append(q),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function sA(q){return"string"==typeof q?eA:F}return function(q){return{encrypt:function(pA,lA,cA){return sA(lA).encrypt(q,pA,lA,cA)},decrypt:function(pA,lA,cA){return sA(lA).decrypt(q,pA,lA,cA)}}}}()}),l.StreamCipher=g.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),Q=o.mode={},p=l.BlockCipherMode=h.extend({createEncryptor:function(q,BA){return this.Encryptor.create(q,BA)},createDecryptor:function(q,BA){return this.Decryptor.create(q,BA)},init:function(q,BA){this._cipher=q,this._iv=BA}}),Y=Q.CBC=function(){var sA=p.extend();function q(BA,pA,lA){var cA,gA=this._iv;gA?(cA=gA,this._iv=undefined):cA=this._prevBlock;for(var yA=0;yA>>2]}},l.BlockCipher=g.extend({cfg:g.cfg.extend({mode:Y,padding:d}),reset:function(){var q;g.reset.call(this);var BA=this.cfg,pA=BA.iv,lA=BA.mode;this._xformMode==this._ENC_XFORM_MODE?q=lA.createEncryptor:(q=lA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==q?this._mode.init(this,pA&&pA.words):(this._mode=q.call(lA,this,pA&&pA.words),this._mode.__creator=q)},_doProcessBlock:function(q,BA){this._mode.processBlock(q,BA)},_doFinalize:function(){var q,BA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(BA.pad(this._data,this.blockSize),q=this._process(!0)):(q=this._process(!0),BA.unpad(q)),q},blockSize:4}),m=l.CipherParams=h.extend({init:function(q){this.mixIn(q)},toString:function(q){return(q||this.formatter).stringify(this)}}),N=(o.format={}).OpenSSL={stringify:function(q){var pA=q.ciphertext,lA=q.salt;return(lA?a.create([1398893684,1701076831]).concat(lA).concat(pA):pA).toString(C)},parse:function(q){var BA,pA=C.parse(q),lA=pA.words;return 1398893684==lA[0]&&1701076831==lA[1]&&(BA=a.create(lA.slice(2,4)),lA.splice(0,4),pA.sigBytes-=16),m.create({ciphertext:pA,salt:BA})}},F=l.SerializableCipher=h.extend({cfg:h.extend({format:N}),encrypt:function(q,BA,pA,lA){lA=this.cfg.extend(lA);var cA=q.createEncryptor(pA,lA),gA=cA.finalize(BA),yA=cA.cfg;return m.create({ciphertext:gA,key:pA,iv:yA.iv,algorithm:q,mode:yA.mode,padding:yA.padding,blockSize:q.blockSize,formatter:lA.format})},decrypt:function(q,BA,pA,lA){return lA=this.cfg.extend(lA),BA=this._parse(BA,lA.format),q.createDecryptor(pA,lA).finalize(BA.ciphertext)},_parse:function(q,BA){return"string"==typeof q?BA.parse(q,this):q}}),U=(o.kdf={}).OpenSSL={execute:function(q,BA,pA,lA){lA||(lA=a.random(8));var cA=f.create({keySize:BA+pA}).compute(q,lA),gA=a.create(cA.words.slice(BA),4*pA);return cA.sigBytes=4*BA,m.create({key:cA,iv:gA,salt:lA})}},eA=l.PasswordBasedCipher=F.extend({cfg:F.cfg.extend({kdf:U}),encrypt:function(q,BA,pA,lA){var cA=(lA=this.cfg.extend(lA)).kdf.execute(pA,q.keySize,q.ivSize);lA.iv=cA.iv;var gA=F.encrypt.call(this,q,BA,cA.key,lA);return gA.mixIn(cA),gA},decrypt:function(q,BA,pA,lA){lA=this.cfg.extend(lA),BA=this._parse(BA,lA.format);var cA=lA.kdf.execute(pA,q.keySize,q.ivSize,BA.salt);return lA.iv=cA.iv,F.decrypt.call(this,q,BA,cA.key,lA)}}))}(n(757),n(3839))},757:function(T,I,n){"use strict";var i;n(5743),n(6992),n(1539),n(9135),n(2990),n(8927),n(3105),n(5035),n(4345),n(7174),n(2846),n(4731),n(7209),n(6319),n(8867),n(7789),n(3739),n(9368),n(4483),n(2056),n(3462),n(678),n(7462),n(3824),n(5021),n(2974),n(5016),n(9714),n(7042),n(9600),n(2222),n(561),i=function(){var c=c||function(i,o){var l;if("undefined"!=typeof window&&window.crypto&&(l=window.crypto),"undefined"!=typeof self&&self.crypto&&(l=self.crypto),"undefined"!=typeof globalThis&&globalThis.crypto&&(l=globalThis.crypto),!l&&"undefined"!=typeof window&&window.msCrypto&&(l=window.msCrypto),!l&&void 0!==n.g&&n.g.crypto&&(l=n.g.crypto),!l)try{l=n(2480)}catch(y){}var h=function(){if(l){if("function"==typeof l.getRandomValues)try{return l.getRandomValues(new Uint32Array(1))[0]}catch(d){}if("function"==typeof l.randomBytes)try{return l.randomBytes(4).readInt32LE()}catch(d){}}throw new Error("Native crypto module could not be used to get secure random number.")},a=Object.create||function(){function y(){}return function(d){var v;return y.prototype=d,v=new y,y.prototype=null,v}}(),B={},E=B.lib={},u=E.Base={extend:function(d){var v=a(this);return d&&v.mixIn(d),(!v.hasOwnProperty("init")||this.init===v.init)&&(v.init=function(){v.$super.init.apply(this,arguments)}),v.init.prototype=v,v.$super=this,v},create:function(){var d=this.extend();return d.init.apply(d,arguments),d},init:function(){},mixIn:function(d){for(var v in d)d.hasOwnProperty(v)&&(this[v]=d[v]);d.hasOwnProperty("toString")&&(this.toString=d.toString)},clone:function(){return this.init.prototype.extend(this)}},C=E.WordArray=u.extend({init:function(d,v){d=this.words=d||[],this.sigBytes=null!=v?v:4*d.length},toString:function(d){return(d||f).stringify(this)},concat:function(d){var v=this.words,m=d.words,P=this.sigBytes,N=d.sigBytes;if(this.clamp(),P%4)for(var F=0;F>>2]|=(m[F>>>2]>>>24-F%4*8&255)<<24-(P+F)%4*8;else for(var U=0;U>>2]=m[U>>>2];return this.sigBytes+=N,this},clamp:function(){var d=this.words,v=this.sigBytes;d[v>>>2]&=4294967295<<32-v%4*8,d.length=i.ceil(v/4)},clone:function(){var d=u.clone.call(this);return d.words=this.words.slice(0),d},random:function(d){for(var v=[],m=0;m>>2]>>>24-N%4*8&255;P.push((F>>>4).toString(16)),P.push((15&F).toString(16))}return P.join("")},parse:function(d){for(var v=d.length,m=[],P=0;P>>3]|=parseInt(d.substr(P,2),16)<<24-P%8*4;return new C.init(m,v/2)}},g=e.Latin1={stringify:function(d){for(var v=d.words,m=d.sigBytes,P=[],N=0;N>>2]>>>24-N%4*8&255));return P.join("")},parse:function(d){for(var v=d.length,m=[],P=0;P>>2]|=(255&d.charCodeAt(P))<<24-P%4*8;return new C.init(m,v)}},w=e.Utf8={stringify:function(d){try{return decodeURIComponent(escape(g.stringify(d)))}catch(v){throw new Error("Malformed UTF-8 data")}},parse:function(d){return g.parse(unescape(encodeURIComponent(d)))}},Q=E.BufferedBlockAlgorithm=u.extend({reset:function(){this._data=new C.init,this._nDataBytes=0},_append:function(d){"string"==typeof d&&(d=w.parse(d)),this._data.concat(d),this._nDataBytes+=d.sigBytes},_process:function(d){var v,m=this._data,P=m.words,N=m.sigBytes,F=this.blockSize,U=N/(4*F),eA=(U=d?i.ceil(U):i.max((0|U)-this._minBufferSize,0))*F,sA=i.min(4*eA,N);if(eA){for(var q=0;q>>2]>>>24-w%4*8&255)<<16|(C[w+1>>>2]>>>24-(w+1)%4*8&255)<<8|C[w+2>>>2]>>>24-(w+2)%4*8&255,d=0;d<4&&w+.75*d>>6*(3-d)&63));var v=f.charAt(64);if(v)for(;g.length%4;)g.push(v);return g.join("")},parse:function(u){var C=u.length,e=this._map,f=this._reverseMap;if(!f){f=this._reverseMap=[];for(var g=0;g>>6-g%4*2;e[f>>>2]|=(w|Q)<<24-f%4*8,f++}return l.create(e,f)}(u,C,f)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},c.enc.Base64;var l}(n(757))},7590:function(T,I,n){"use strict";n(9600),T.exports=function(c){return l=c.lib.WordArray,c.enc.Base64url={stringify:function(u,C){void 0===C&&(C=!0);var e=u.words,f=u.sigBytes,g=C?this._safe_map:this._map;u.clamp();for(var w=[],Q=0;Q>>2]>>>24-Q%4*8&255)<<16|(e[Q+1>>>2]>>>24-(Q+1)%4*8&255)<<8|e[Q+2>>>2]>>>24-(Q+2)%4*8&255,v=0;v<4&&Q+.75*v>>6*(3-v)&63));var m=g.charAt(64);if(m)for(;w.length%4;)w.push(m);return w.join("")},parse:function(u,C){void 0===C&&(C=!0);var e=u.length,f=C?this._safe_map:this._map,g=this._reverseMap;if(!g){g=this._reverseMap=[];for(var w=0;w>>6-g%4*2;e[f>>>2]|=(w|Q)<<24-f%4*8,f++}return l.create(e,f)}(u,e,g)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},c.enc.Base64url;var l}(n(757))},4978:function(T,I,n){"use strict";n(9600),T.exports=function(c){return function(){var l=c.lib.WordArray,h=c.enc;function B(E){return E<<8&4278255360|E>>>8&16711935}h.Utf16=h.Utf16BE={stringify:function(u){for(var C=u.words,e=u.sigBytes,f=[],g=0;g>>2]>>>16-g%4*8&65535));return f.join("")},parse:function(u){for(var C=u.length,e=[],f=0;f>>1]|=u.charCodeAt(f)<<16-f%2*16;return l.create(e,2*C)}},h.Utf16LE={stringify:function(u){for(var C=u.words,e=u.sigBytes,f=[],g=0;g>>2]>>>16-g%4*8&65535);f.push(String.fromCharCode(w))}return f.join("")},parse:function(u){for(var C=u.length,e=[],f=0;f>>1]|=B(u.charCodeAt(f)<<16-f%2*16);return l.create(e,2*C)}}}(),c.enc.Utf16}(n(757))},3839:function(T,I,n){"use strict";n(2222),T.exports=function(c){return h=(o=(i=c).lib).WordArray,E=(a=i.algo).EvpKDF=(l=o.Base).extend({cfg:l.extend({keySize:4,hasher:a.MD5,iterations:1}),init:function(C){this.cfg=this.cfg.extend(C)},compute:function(C,e){for(var f,g=this.cfg,w=g.hasher.create(),Q=h.create(),p=Q.words,Y=g.keySize,y=g.iterations;p.lengthg&&(e=C.finalize(e)),e.clamp();for(var w=this._oKey=e.clone(),Q=this._iKey=e.clone(),p=w.words,Y=Q.words,y=0;y>>2]|=B[C]<<24-C%4*8;h.call(this,u,E)}else h.apply(this,arguments)};a.prototype=l}}(),c.lib.WordArray},T.exports=i(n(757))},3440:function(T,I,n){"use strict";T.exports=function(c){return function(i){var o=c,l=o.lib,h=l.WordArray,a=l.Hasher,B=o.algo,E=[];!function(){for(var w=0;w<64;w++)E[w]=4294967296*i.abs(i.sin(w+1))|0}();var u=B.MD5=a.extend({_doReset:function(){this._hash=new h.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(Q,p){for(var Y=0;Y<16;Y++){var y=p+Y,d=Q[y];Q[y]=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8)}var v=this._hash.words,m=Q[p+0],P=Q[p+1],N=Q[p+2],F=Q[p+3],L=Q[p+4],U=Q[p+5],eA=Q[p+6],sA=Q[p+7],q=Q[p+8],BA=Q[p+9],pA=Q[p+10],lA=Q[p+11],cA=Q[p+12],gA=Q[p+13],yA=Q[p+14],FA=Q[p+15],_=v[0],MA=v[1],uA=v[2],QA=v[3];_=C(_,MA,uA,QA,m,7,E[0]),QA=C(QA,_,MA,uA,P,12,E[1]),uA=C(uA,QA,_,MA,N,17,E[2]),MA=C(MA,uA,QA,_,F,22,E[3]),_=C(_,MA,uA,QA,L,7,E[4]),QA=C(QA,_,MA,uA,U,12,E[5]),uA=C(uA,QA,_,MA,eA,17,E[6]),MA=C(MA,uA,QA,_,sA,22,E[7]),_=C(_,MA,uA,QA,q,7,E[8]),QA=C(QA,_,MA,uA,BA,12,E[9]),uA=C(uA,QA,_,MA,pA,17,E[10]),MA=C(MA,uA,QA,_,lA,22,E[11]),_=C(_,MA,uA,QA,cA,7,E[12]),QA=C(QA,_,MA,uA,gA,12,E[13]),uA=C(uA,QA,_,MA,yA,17,E[14]),_=e(_,MA=C(MA,uA,QA,_,FA,22,E[15]),uA,QA,P,5,E[16]),QA=e(QA,_,MA,uA,eA,9,E[17]),uA=e(uA,QA,_,MA,lA,14,E[18]),MA=e(MA,uA,QA,_,m,20,E[19]),_=e(_,MA,uA,QA,U,5,E[20]),QA=e(QA,_,MA,uA,pA,9,E[21]),uA=e(uA,QA,_,MA,FA,14,E[22]),MA=e(MA,uA,QA,_,L,20,E[23]),_=e(_,MA,uA,QA,BA,5,E[24]),QA=e(QA,_,MA,uA,yA,9,E[25]),uA=e(uA,QA,_,MA,F,14,E[26]),MA=e(MA,uA,QA,_,q,20,E[27]),_=e(_,MA,uA,QA,gA,5,E[28]),QA=e(QA,_,MA,uA,N,9,E[29]),uA=e(uA,QA,_,MA,sA,14,E[30]),_=f(_,MA=e(MA,uA,QA,_,cA,20,E[31]),uA,QA,U,4,E[32]),QA=f(QA,_,MA,uA,q,11,E[33]),uA=f(uA,QA,_,MA,lA,16,E[34]),MA=f(MA,uA,QA,_,yA,23,E[35]),_=f(_,MA,uA,QA,P,4,E[36]),QA=f(QA,_,MA,uA,L,11,E[37]),uA=f(uA,QA,_,MA,sA,16,E[38]),MA=f(MA,uA,QA,_,pA,23,E[39]),_=f(_,MA,uA,QA,gA,4,E[40]),QA=f(QA,_,MA,uA,m,11,E[41]),uA=f(uA,QA,_,MA,F,16,E[42]),MA=f(MA,uA,QA,_,eA,23,E[43]),_=f(_,MA,uA,QA,BA,4,E[44]),QA=f(QA,_,MA,uA,cA,11,E[45]),uA=f(uA,QA,_,MA,FA,16,E[46]),_=g(_,MA=f(MA,uA,QA,_,N,23,E[47]),uA,QA,m,6,E[48]),QA=g(QA,_,MA,uA,sA,10,E[49]),uA=g(uA,QA,_,MA,yA,15,E[50]),MA=g(MA,uA,QA,_,U,21,E[51]),_=g(_,MA,uA,QA,cA,6,E[52]),QA=g(QA,_,MA,uA,F,10,E[53]),uA=g(uA,QA,_,MA,pA,15,E[54]),MA=g(MA,uA,QA,_,P,21,E[55]),_=g(_,MA,uA,QA,q,6,E[56]),QA=g(QA,_,MA,uA,FA,10,E[57]),uA=g(uA,QA,_,MA,eA,15,E[58]),MA=g(MA,uA,QA,_,gA,21,E[59]),_=g(_,MA,uA,QA,L,6,E[60]),QA=g(QA,_,MA,uA,lA,10,E[61]),uA=g(uA,QA,_,MA,N,15,E[62]),MA=g(MA,uA,QA,_,BA,21,E[63]),v[0]=v[0]+_|0,v[1]=v[1]+MA|0,v[2]=v[2]+uA|0,v[3]=v[3]+QA|0},_doFinalize:function(){var Q=this._data,p=Q.words,Y=8*this._nDataBytes,y=8*Q.sigBytes;p[y>>>5]|=128<<24-y%32;var d=i.floor(Y/4294967296),v=Y;p[15+(y+64>>>9<<4)]=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),p[14+(y+64>>>9<<4)]=16711935&(v<<8|v>>>24)|4278255360&(v<<24|v>>>8),Q.sigBytes=4*(p.length+1),this._process();for(var m=this._hash,P=m.words,N=0;N<4;N++){var F=P[N];P[N]=16711935&(F<<8|F>>>24)|4278255360&(F<<24|F>>>8)}return m},clone:function(){var Q=a.clone.call(this);return Q._hash=this._hash.clone(),Q}});function C(w,Q,p,Y,y,d,v){var m=w+(Q&p|~Q&Y)+y+v;return(m<>>32-d)+Q}function e(w,Q,p,Y,y,d,v){var m=w+(Q&Y|p&~Y)+y+v;return(m<>>32-d)+Q}function f(w,Q,p,Y,y,d,v){var m=w+(Q^p^Y)+y+v;return(m<>>32-d)+Q}function g(w,Q,p,Y,y,d,v){var m=w+(p^(Q|~Y))+y+v;return(m<>>32-d)+Q}o.MD5=a._createHelper(u),o.HmacMD5=a._createHmacHelper(u)}(Math),c.MD5}(n(757))},702:function(T,I,n){"use strict";n(7042),T.exports=function(c){return c.mode.CFB=function(){var i=c.lib.BlockCipherMode.extend();function o(l,h,a,B){var E,u=this._iv;u?(E=u.slice(0),this._iv=void 0):E=this._prevBlock,B.encryptBlock(E,0);for(var C=0;C>24&255)){var B=a>>16&255,E=a>>8&255,u=255&a;255===B?(B=0,255===E?(E=0,255===u?u=0:++u):++E):++B,a=0,a+=B<<16,a+=E<<8,a+=u}else a+=16777216;return a}var h=i.Encryptor=i.extend({processBlock:function(B,E){var u=this._cipher,C=u.blockSize,e=this._iv,f=this._counter;e&&(f=this._counter=e.slice(0),this._iv=void 0),function l(a){return 0===(a[0]=o(a[0]))&&(a[1]=o(a[1])),a}(f);var g=f.slice(0);u.encryptBlock(g,0);for(var w=0;w>>2]|=B<<24-E%4*8,o.sigBytes+=B},unpad:function(o){o.sigBytes-=255&o.words[o.sigBytes-1>>>2]}},c.pad.Ansix923}(n(757),n(1582))},4431:function(T,I,n){"use strict";n(2222),T.exports=function(c){return c.pad.Iso10126={pad:function(o,l){var h=4*l,a=h-o.sigBytes%h;o.concat(c.lib.WordArray.random(a-1)).concat(c.lib.WordArray.create([a<<24],1))},unpad:function(o){o.sigBytes-=255&o.words[o.sigBytes-1>>>2]}},c.pad.Iso10126}(n(757),n(1582))},8800:function(T,I,n){"use strict";n(2222),T.exports=function(c){return c.pad.Iso97971={pad:function(o,l){o.concat(c.lib.WordArray.create([2147483648],1)),c.pad.ZeroPadding.pad(o,l)},unpad:function(o){c.pad.ZeroPadding.unpad(o),o.sigBytes--}},c.pad.Iso97971}(n(757),n(1582))},649:function(T,I,n){"use strict";T.exports=function(c){return c.pad.NoPadding={pad:function(){},unpad:function(){}},c.pad.NoPadding}(n(757),n(1582))},3992:function(T,I,n){"use strict";T.exports=function(c){return c.pad.ZeroPadding={pad:function(o,l){var h=4*l;o.clamp(),o.sigBytes+=h-(o.sigBytes%h||h)},unpad:function(o){var l=o.words,h=o.sigBytes-1;for(h=o.sigBytes-1;h>=0;h--)if(l[h>>>2]>>>24-h%4*8&255){o.sigBytes=h+1;break}}},c.pad.ZeroPadding}(n(757),n(1582))},3486:function(T,I,n){"use strict";n(2222),T.exports=function(c){return h=(o=(i=c).lib).WordArray,E=(a=i.algo).HMAC,u=a.PBKDF2=(l=o.Base).extend({cfg:l.extend({keySize:4,hasher:a.SHA1,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,f){for(var g=this.cfg,w=E.create(g.hasher,e),Q=h.create(),p=h.create([1]),Y=Q.words,y=p.words,d=g.keySize,v=g.iterations;Y.length>>16,f[1],f[0]<<16|f[3]>>>16,f[2],f[1]<<16|f[0]>>>16,f[3],f[2]<<16|f[1]>>>16],Q=this._C=[f[2]<<16|f[2]>>>16,4294901760&f[0]|65535&f[1],f[3]<<16|f[3]>>>16,4294901760&f[1]|65535&f[2],f[0]<<16|f[0]>>>16,4294901760&f[2]|65535&f[3],f[1]<<16|f[1]>>>16,4294901760&f[3]|65535&f[0]];this._b=0;for(var p=0;p<4;p++)C.call(this);for(p=0;p<8;p++)Q[p]^=w[p+4&7];if(g){var Y=g.words,y=Y[0],d=Y[1],v=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),m=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),P=v>>>16|4294901760&m,N=m<<16|65535&v;for(Q[0]^=v,Q[1]^=P,Q[2]^=m,Q[3]^=N,Q[4]^=v,Q[5]^=P,Q[6]^=m,Q[7]^=N,p=0;p<4;p++)C.call(this)}},_doProcessBlock:function(f,g){var w=this._X;C.call(this),a[0]=w[0]^w[5]>>>16^w[3]<<16,a[1]=w[2]^w[7]>>>16^w[5]<<16,a[2]=w[4]^w[1]>>>16^w[7]<<16,a[3]=w[6]^w[3]>>>16^w[1]<<16;for(var Q=0;Q<4;Q++)a[Q]=16711935&(a[Q]<<8|a[Q]>>>24)|4278255360&(a[Q]<<24|a[Q]>>>8),f[g+Q]^=a[Q]},blockSize:4,ivSize:2});function C(){for(var e=this._X,f=this._C,g=0;g<8;g++)B[g]=f[g];for(f[0]=f[0]+1295307597+this._b|0,f[1]=f[1]+3545052371+(f[0]>>>0>>0?1:0)|0,f[2]=f[2]+886263092+(f[1]>>>0>>0?1:0)|0,f[3]=f[3]+1295307597+(f[2]>>>0>>0?1:0)|0,f[4]=f[4]+3545052371+(f[3]>>>0>>0?1:0)|0,f[5]=f[5]+886263092+(f[4]>>>0>>0?1:0)|0,f[6]=f[6]+1295307597+(f[5]>>>0>>0?1:0)|0,f[7]=f[7]+3545052371+(f[6]>>>0>>0?1:0)|0,this._b=f[7]>>>0>>0?1:0,g=0;g<8;g++){var w=e[g]+f[g],Q=65535&w,p=w>>>16;E[g]=((Q*Q>>>17)+Q*p>>>15)+p*p^((4294901760&w)*w|0)+((65535&w)*w|0)}e[0]=E[0]+(E[7]<<16|E[7]>>>16)+(E[6]<<16|E[6]>>>16)|0,e[1]=E[1]+(E[0]<<8|E[0]>>>24)+E[7]|0,e[2]=E[2]+(E[1]<<16|E[1]>>>16)+(E[0]<<16|E[0]>>>16)|0,e[3]=E[3]+(E[2]<<8|E[2]>>>24)+E[1]|0,e[4]=E[4]+(E[3]<<16|E[3]>>>16)+(E[2]<<16|E[2]>>>16)|0,e[5]=E[5]+(E[4]<<8|E[4]>>>24)+E[3]|0,e[6]=E[6]+(E[5]<<16|E[5]>>>16)+(E[4]<<16|E[4]>>>16)|0,e[7]=E[7]+(E[6]<<8|E[6]>>>24)+E[5]|0}i.RabbitLegacy=l._createHelper(u)}(),c.RabbitLegacy}(n(757),n(7508),n(3440),n(3839),n(1582))},5323:function(T,I,n){"use strict";T.exports=function(c){return function(){var i=c,l=i.lib.StreamCipher,a=[],B=[],E=[],u=i.algo.Rabbit=l.extend({_doReset:function(){for(var f=this._key.words,g=this.cfg.iv,w=0;w<4;w++)f[w]=16711935&(f[w]<<8|f[w]>>>24)|4278255360&(f[w]<<24|f[w]>>>8);var Q=this._X=[f[0],f[3]<<16|f[2]>>>16,f[1],f[0]<<16|f[3]>>>16,f[2],f[1]<<16|f[0]>>>16,f[3],f[2]<<16|f[1]>>>16],p=this._C=[f[2]<<16|f[2]>>>16,4294901760&f[0]|65535&f[1],f[3]<<16|f[3]>>>16,4294901760&f[1]|65535&f[2],f[0]<<16|f[0]>>>16,4294901760&f[2]|65535&f[3],f[1]<<16|f[1]>>>16,4294901760&f[3]|65535&f[0]];for(this._b=0,w=0;w<4;w++)C.call(this);for(w=0;w<8;w++)p[w]^=Q[w+4&7];if(g){var Y=g.words,y=Y[0],d=Y[1],v=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),m=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),P=v>>>16|4294901760&m,N=m<<16|65535&v;for(p[0]^=v,p[1]^=P,p[2]^=m,p[3]^=N,p[4]^=v,p[5]^=P,p[6]^=m,p[7]^=N,w=0;w<4;w++)C.call(this)}},_doProcessBlock:function(f,g){var w=this._X;C.call(this),a[0]=w[0]^w[5]>>>16^w[3]<<16,a[1]=w[2]^w[7]>>>16^w[5]<<16,a[2]=w[4]^w[1]>>>16^w[7]<<16,a[3]=w[6]^w[3]>>>16^w[1]<<16;for(var Q=0;Q<4;Q++)a[Q]=16711935&(a[Q]<<8|a[Q]>>>24)|4278255360&(a[Q]<<24|a[Q]>>>8),f[g+Q]^=a[Q]},blockSize:4,ivSize:2});function C(){for(var e=this._X,f=this._C,g=0;g<8;g++)B[g]=f[g];for(f[0]=f[0]+1295307597+this._b|0,f[1]=f[1]+3545052371+(f[0]>>>0>>0?1:0)|0,f[2]=f[2]+886263092+(f[1]>>>0>>0?1:0)|0,f[3]=f[3]+1295307597+(f[2]>>>0>>0?1:0)|0,f[4]=f[4]+3545052371+(f[3]>>>0>>0?1:0)|0,f[5]=f[5]+886263092+(f[4]>>>0>>0?1:0)|0,f[6]=f[6]+1295307597+(f[5]>>>0>>0?1:0)|0,f[7]=f[7]+3545052371+(f[6]>>>0>>0?1:0)|0,this._b=f[7]>>>0>>0?1:0,g=0;g<8;g++){var w=e[g]+f[g],Q=65535&w,p=w>>>16;E[g]=((Q*Q>>>17)+Q*p>>>15)+p*p^((4294901760&w)*w|0)+((65535&w)*w|0)}e[0]=E[0]+(E[7]<<16|E[7]>>>16)+(E[6]<<16|E[6]>>>16)|0,e[1]=E[1]+(E[0]<<8|E[0]>>>24)+E[7]|0,e[2]=E[2]+(E[1]<<16|E[1]>>>16)+(E[0]<<16|E[0]>>>16)|0,e[3]=E[3]+(E[2]<<8|E[2]>>>24)+E[1]|0,e[4]=E[4]+(E[3]<<16|E[3]>>>16)+(E[2]<<16|E[2]>>>16)|0,e[5]=E[5]+(E[4]<<8|E[4]>>>24)+E[3]|0,e[6]=E[6]+(E[5]<<16|E[5]>>>16)+(E[4]<<16|E[4]>>>16)|0,e[7]=E[7]+(E[6]<<8|E[6]>>>24)+E[5]|0}i.Rabbit=l._createHelper(u)}(),c.Rabbit}(n(757),n(7508),n(3440),n(3839),n(1582))},4640:function(T,I,n){"use strict";n(1539),n(8674),T.exports=function(c){return function(){var i=c,l=i.lib.StreamCipher,h=i.algo,a=h.RC4=l.extend({_doReset:function(){for(var C=this._key,e=C.words,f=C.sigBytes,g=this._S=[],w=0;w<256;w++)g[w]=w;w=0;for(var Q=0;w<256;w++){var p=w%f,y=g[w];g[w]=g[Q=(Q+g[w]+(e[p>>>2]>>>24-p%4*8&255))%256],g[Q]=y}this._i=this._j=0},_doProcessBlock:function(C,e){C[e]^=B.call(this)},keySize:8,ivSize:0});function B(){for(var u=this._S,C=this._i,e=this._j,f=0,g=0;g<4;g++){var w=u[C=(C+1)%256];u[C]=u[e=(e+u[C])%256],u[e]=w,f|=u[(u[C]+u[e])%256]<<24-8*g}return this._i=C,this._j=e,f}i.RC4=l._createHelper(a);var E=h.RC4Drop=a.extend({cfg:a.cfg.extend({drop:192}),_doReset:function(){a._doReset.call(this);for(var C=this.cfg.drop;C>0;C--)B.call(this)}});i.RC4Drop=l._createHelper(E)}(),c.RC4}(n(757),n(7508),n(3440),n(3839),n(1582))},8714:function(T,I,n){"use strict";T.exports=function(c){return function(i){var o=c,l=o.lib,h=l.WordArray,a=l.Hasher,B=o.algo,E=h.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),u=h.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),C=h.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),e=h.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),f=h.create([0,1518500249,1859775393,2400959708,2840853838]),g=h.create([1352829926,1548603684,1836072691,2053994217,0]),w=B.RIPEMD160=a.extend({_doReset:function(){this._hash=h.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(P,N){for(var F=0;F<16;F++){var L=N+F,U=P[L];P[L]=16711935&(U<<8|U>>>24)|4278255360&(U<<24|U>>>8)}var gA,yA,FA,_,MA,uA,QA,NA,bA,XA,X,eA=this._hash.words,sA=f.words,q=g.words,BA=E.words,pA=u.words,lA=C.words,cA=e.words;for(uA=gA=eA[0],QA=yA=eA[1],NA=FA=eA[2],bA=_=eA[3],XA=MA=eA[4],F=0;F<80;F+=1)X=gA+P[N+BA[F]]|0,X+=F<16?Q(yA,FA,_)+sA[0]:F<32?p(yA,FA,_)+sA[1]:F<48?Y(yA,FA,_)+sA[2]:F<64?y(yA,FA,_)+sA[3]:d(yA,FA,_)+sA[4],X=(X=v(X|=0,lA[F]))+MA|0,gA=MA,MA=_,_=v(FA,10),FA=yA,yA=X,X=uA+P[N+pA[F]]|0,X+=F<16?d(QA,NA,bA)+q[0]:F<32?y(QA,NA,bA)+q[1]:F<48?Y(QA,NA,bA)+q[2]:F<64?p(QA,NA,bA)+q[3]:Q(QA,NA,bA)+q[4],X=(X=v(X|=0,cA[F]))+XA|0,uA=XA,XA=bA,bA=v(NA,10),NA=QA,QA=X;X=eA[1]+FA+bA|0,eA[1]=eA[2]+_+XA|0,eA[2]=eA[3]+MA+uA|0,eA[3]=eA[4]+gA+QA|0,eA[4]=eA[0]+yA+NA|0,eA[0]=X},_doFinalize:function(){var P=this._data,N=P.words,F=8*this._nDataBytes,L=8*P.sigBytes;N[L>>>5]|=128<<24-L%32,N[14+(L+64>>>9<<4)]=16711935&(F<<8|F>>>24)|4278255360&(F<<24|F>>>8),P.sigBytes=4*(N.length+1),this._process();for(var U=this._hash,eA=U.words,sA=0;sA<5;sA++){var q=eA[sA];eA[sA]=16711935&(q<<8|q>>>24)|4278255360&(q<<24|q>>>8)}return U},clone:function(){var P=a.clone.call(this);return P._hash=this._hash.clone(),P}});function Q(m,P,N){return m^P^N}function p(m,P,N){return m&P|~m&N}function Y(m,P,N){return(m|~P)^N}function y(m,P,N){return m&N|P&~N}function d(m,P,N){return m^(P|~N)}function v(m,P){return m<>>32-P}o.RIPEMD160=a._createHelper(w),o.HmacRIPEMD160=a._createHmacHelper(w)}(Math),c.RIPEMD160}(n(757))},9865:function(T,I,n){"use strict";T.exports=function(c){return l=(o=(i=c).lib).WordArray,B=[],E=i.algo.SHA1=(h=o.Hasher).extend({_doReset:function(){this._hash=new l.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(C,e){for(var f=this._hash.words,g=f[0],w=f[1],Q=f[2],p=f[3],Y=f[4],y=0;y<80;y++){if(y<16)B[y]=0|C[e+y];else{var d=B[y-3]^B[y-8]^B[y-14]^B[y-16];B[y]=d<<1|d>>>31}var v=(g<<5|g>>>27)+Y+B[y];v+=y<20?1518500249+(w&Q|~w&p):y<40?1859775393+(w^Q^p):y<60?(w&Q|w&p|Q&p)-1894007588:(w^Q^p)-899497514,Y=p,p=Q,Q=w<<30|w>>>2,w=g,g=v}f[0]=f[0]+g|0,f[1]=f[1]+w|0,f[2]=f[2]+Q|0,f[3]=f[3]+p|0,f[4]=f[4]+Y|0},_doFinalize:function(){var C=this._data,e=C.words,f=8*this._nDataBytes,g=8*C.sigBytes;return e[g>>>5]|=128<<24-g%32,e[14+(g+64>>>9<<4)]=Math.floor(f/4294967296),e[15+(g+64>>>9<<4)]=f,C.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var C=h.clone.call(this);return C._hash=this._hash.clone(),C}}),i.SHA1=h._createHelper(E),i.HmacSHA1=h._createHmacHelper(E),c.SHA1;var i,o,l,h,B,E}(n(757))},6876:function(T,I,n){"use strict";T.exports=function(c){return l=(i=c).lib.WordArray,B=(h=i.algo).SHA224=(a=h.SHA256).extend({_doReset:function(){this._hash=new l.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var u=a._doFinalize.call(this);return u.sigBytes-=4,u}}),i.SHA224=a._createHelper(B),i.HmacSHA224=a._createHmacHelper(B),c.SHA224;var i,l,h,a,B}(n(757),n(8921))},8921:function(T,I,n){"use strict";n(7042),T.exports=function(c){return function(i){var o=c,l=o.lib,h=l.WordArray,a=l.Hasher,B=o.algo,E=[],u=[];!function(){function f(p){for(var Y=i.sqrt(p),y=2;y<=Y;y++)if(!(p%y))return!1;return!0}function g(p){return 4294967296*(p-(0|p))|0}for(var w=2,Q=0;Q<64;)f(w)&&(Q<8&&(E[Q]=g(i.pow(w,.5))),u[Q]=g(i.pow(w,.3333333333333333)),Q++),w++}();var C=[],e=B.SHA256=a.extend({_doReset:function(){this._hash=new h.init(E.slice(0))},_doProcessBlock:function(g,w){for(var Q=this._hash.words,p=Q[0],Y=Q[1],y=Q[2],d=Q[3],v=Q[4],m=Q[5],P=Q[6],N=Q[7],F=0;F<64;F++){if(F<16)C[F]=0|g[w+F];else{var L=C[F-15],eA=C[F-2];C[F]=((L<<25|L>>>7)^(L<<14|L>>>18)^L>>>3)+C[F-7]+((eA<<15|eA>>>17)^(eA<<13|eA>>>19)^eA>>>10)+C[F-16]}var BA=p&Y^p&y^Y&y,cA=N+((v<<26|v>>>6)^(v<<21|v>>>11)^(v<<7|v>>>25))+(v&m^~v&P)+u[F]+C[F];N=P,P=m,m=v,v=d+cA|0,d=y,y=Y,Y=p,p=cA+(((p<<30|p>>>2)^(p<<19|p>>>13)^(p<<10|p>>>22))+BA)|0}Q[0]=Q[0]+p|0,Q[1]=Q[1]+Y|0,Q[2]=Q[2]+y|0,Q[3]=Q[3]+d|0,Q[4]=Q[4]+v|0,Q[5]=Q[5]+m|0,Q[6]=Q[6]+P|0,Q[7]=Q[7]+N|0},_doFinalize:function(){var g=this._data,w=g.words,Q=8*this._nDataBytes,p=8*g.sigBytes;return w[p>>>5]|=128<<24-p%32,w[14+(p+64>>>9<<4)]=i.floor(Q/4294967296),w[15+(p+64>>>9<<4)]=Q,g.sigBytes=4*w.length,this._process(),this._hash},clone:function(){var g=a.clone.call(this);return g._hash=this._hash.clone(),g}});o.SHA256=a._createHelper(e),o.HmacSHA256=a._createHmacHelper(e)}(Math),c.SHA256}(n(757))},8342:function(T,I,n){"use strict";n(7042),T.exports=function(c){return function(i){var o=c,l=o.lib,h=l.WordArray,a=l.Hasher,E=o.x64.Word,u=o.algo,C=[],e=[],f=[];!function(){for(var Q=1,p=0,Y=0;Y<24;Y++){C[Q+5*p]=(Y+1)*(Y+2)/2%64;var d=(2*Q+3*p)%5;Q=p%5,p=d}for(Q=0;Q<5;Q++)for(p=0;p<5;p++)e[Q+5*p]=p+(2*Q+3*p)%5*5;for(var v=1,m=0;m<24;m++){for(var P=0,N=0,F=0;F<7;F++){if(1&v){var L=(1<>>24)|4278255360&(m<<24|m>>>8),(N=y[v]).high^=P=16711935&(P<<8|P>>>24)|4278255360&(P<<24|P>>>8),N.low^=m}for(var F=0;F<24;F++){for(var L=0;L<5;L++){for(var U=0,eA=0,sA=0;sA<5;sA++)U^=(N=y[L+5*sA]).high,eA^=N.low;var q=g[L];q.high=U,q.low=eA}for(L=0;L<5;L++){var BA=g[(L+4)%5],pA=g[(L+1)%5],lA=pA.high,cA=pA.low;for(U=BA.high^(lA<<1|cA>>>31),eA=BA.low^(cA<<1|lA>>>31),sA=0;sA<5;sA++)(N=y[L+5*sA]).high^=U,N.low^=eA}for(var gA=1;gA<25;gA++){var yA=(N=y[gA]).high,FA=N.low,_=C[gA];_<32?(U=yA<<_|FA>>>32-_,eA=FA<<_|yA>>>32-_):(U=FA<<_-32|yA>>>64-_,eA=yA<<_-32|FA>>>64-_);var MA=g[e[gA]];MA.high=U,MA.low=eA}var uA=g[0],QA=y[0];for(uA.high=QA.high,uA.low=QA.low,L=0;L<5;L++)for(sA=0;sA<5;sA++){var NA=g[gA=L+5*sA],bA=g[(L+1)%5+5*sA],XA=g[(L+2)%5+5*sA];(N=y[gA]).high=NA.high^~bA.high&XA.high,N.low=NA.low^~bA.low&XA.low}var N,X=f[F];(N=y[0]).high^=X.high,N.low^=X.low}},_doFinalize:function(){var p=this._data,Y=p.words,d=8*p.sigBytes,v=32*this.blockSize;Y[d>>>5]|=1<<24-d%32,Y[(i.ceil((d+1)/v)*v>>>5)-1]|=128,p.sigBytes=4*Y.length,this._process();for(var m=this._state,P=this.cfg.outputLength/8,N=P/8,F=[],L=0;L>>24)|4278255360&(eA<<24|eA>>>8),F.push(sA=16711935&(sA<<8|sA>>>24)|4278255360&(sA<<24|sA>>>8)),F.push(eA)}return new h.init(F,P)},clone:function(){for(var p=a.clone.call(this),Y=p._state=this._state.slice(0),y=0;y<25;y++)Y[y]=Y[y].clone();return p}});o.SHA3=a._createHelper(w),o.HmacSHA3=a._createHmacHelper(w)}(Math),c.SHA3}(n(757),n(2601))},8122:function(T,I,n){"use strict";T.exports=function(c){return l=(o=(i=c).x64).Word,h=o.WordArray,E=(a=i.algo).SHA384=(B=a.SHA512).extend({_doReset:function(){this._hash=new h.init([new l.init(3418070365,3238371032),new l.init(1654270250,914150663),new l.init(2438529370,812702999),new l.init(355462360,4144912697),new l.init(1731405415,4290775857),new l.init(2394180231,1750603025),new l.init(3675008525,1694076839),new l.init(1203062813,3204075428)])},_doFinalize:function(){var C=B._doFinalize.call(this);return C.sigBytes-=16,C}}),i.SHA384=B._createHelper(E),i.HmacSHA384=B._createHmacHelper(E),c.SHA384;var i,o,l,h,a,B,E}(n(757),n(2601),n(7991))},7991:function(T,I,n){"use strict";var i;i=function(c){return function(){var i=c,l=i.lib.Hasher,h=i.x64,a=h.Word,B=h.WordArray,E=i.algo;function u(){return a.create.apply(a,arguments)}var C=[u(1116352408,3609767458),u(1899447441,602891725),u(3049323471,3964484399),u(3921009573,2173295548),u(961987163,4081628472),u(1508970993,3053834265),u(2453635748,2937671579),u(2870763221,3664609560),u(3624381080,2734883394),u(310598401,1164996542),u(607225278,1323610764),u(1426881987,3590304994),u(1925078388,4068182383),u(2162078206,991336113),u(2614888103,633803317),u(3248222580,3479774868),u(3835390401,2666613458),u(4022224774,944711139),u(264347078,2341262773),u(604807628,2007800933),u(770255983,1495990901),u(1249150122,1856431235),u(1555081692,3175218132),u(1996064986,2198950837),u(2554220882,3999719339),u(2821834349,766784016),u(2952996808,2566594879),u(3210313671,3203337956),u(3336571891,1034457026),u(3584528711,2466948901),u(113926993,3758326383),u(338241895,168717936),u(666307205,1188179964),u(773529912,1546045734),u(1294757372,1522805485),u(1396182291,2643833823),u(1695183700,2343527390),u(1986661051,1014477480),u(2177026350,1206759142),u(2456956037,344077627),u(2730485921,1290863460),u(2820302411,3158454273),u(3259730800,3505952657),u(3345764771,106217008),u(3516065817,3606008344),u(3600352804,1432725776),u(4094571909,1467031594),u(275423344,851169720),u(430227734,3100823752),u(506948616,1363258195),u(659060556,3750685593),u(883997877,3785050280),u(958139571,3318307427),u(1322822218,3812723403),u(1537002063,2003034995),u(1747873779,3602036899),u(1955562222,1575990012),u(2024104815,1125592928),u(2227730452,2716904306),u(2361852424,442776044),u(2428436474,593698344),u(2756734187,3733110249),u(3204031479,2999351573),u(3329325298,3815920427),u(3391569614,3928383900),u(3515267271,566280711),u(3940187606,3454069534),u(4118630271,4000239992),u(116418474,1914138554),u(174292421,2731055270),u(289380356,3203993006),u(460393269,320620315),u(685471733,587496836),u(852142971,1086792851),u(1017036298,365543100),u(1126000580,2618297676),u(1288033470,3409855158),u(1501505948,4234509866),u(1607167915,987167468),u(1816402316,1246189591)],e=[];!function(){for(var g=0;g<80;g++)e[g]=u()}();var f=E.SHA512=l.extend({_doReset:function(){this._hash=new B.init([new a.init(1779033703,4089235720),new a.init(3144134277,2227873595),new a.init(1013904242,4271175723),new a.init(2773480762,1595750129),new a.init(1359893119,2917565137),new a.init(2600822924,725511199),new a.init(528734635,4215389547),new a.init(1541459225,327033209)])},_doProcessBlock:function(w,Q){for(var p=this._hash.words,Y=p[0],y=p[1],d=p[2],v=p[3],m=p[4],P=p[5],N=p[6],F=p[7],L=Y.high,U=Y.low,eA=y.high,sA=y.low,q=d.high,BA=d.low,pA=v.high,lA=v.low,cA=m.high,gA=m.low,yA=P.high,FA=P.low,_=N.high,MA=N.low,uA=F.high,QA=F.low,NA=L,bA=U,XA=eA,X=sA,O=q,$=BA,W=pA,hA=lA,mA=cA,nA=gA,EA=yA,GA=FA,et=_,st=MA,TA=uA,it=QA,vt=0;vt<80;vt++){var It,ht,JA=e[vt];if(vt<16)ht=JA.high=0|w[Q+2*vt],It=JA.low=0|w[Q+2*vt+1];else{var WA=e[vt-15],rt=WA.high,xA=WA.low,Et=(xA>>>1|rt<<31)^(xA>>>8|rt<<24)^(xA>>>7|rt<<25),Tt=e[vt-2],OA=Tt.high,H=Tt.low,b=(H>>>19|OA<<13)^(H<<3|OA>>>29)^(H>>>6|OA<<26),CA=e[vt-7],rA=e[vt-16],Yt=rA.low;JA.high=ht=(ht=(ht=((rt>>>1|xA<<31)^(rt>>>8|xA<<24)^rt>>>7)+CA.high+((It=Et+CA.low)>>>0>>0?1:0))+((OA>>>19|H<<13)^(OA<<3|H>>>29)^OA>>>6)+((It+=b)>>>0>>0?1:0))+rA.high+((It+=Yt)>>>0>>0?1:0),JA.low=It}var ae,j=mA&EA^~mA&et,qA=nA&GA^~nA&st,KA=NA&XA^NA&O^XA&O,lt=(bA>>>28|NA<<4)^(bA<<30|NA>>>2)^(bA<<25|NA>>>7),zt=C[vt],be=zt.low,ee=TA+((mA>>>14|nA<<18)^(mA>>>18|nA<<14)^(mA<<23|nA>>>9))+((ae=it+((nA>>>14|mA<<18)^(nA>>>18|mA<<14)^(nA<<23|mA>>>9)))>>>0>>0?1:0),xe=lt+(bA&X^bA&$^X&$);TA=et,it=st,et=EA,st=GA,EA=mA,GA=nA,mA=W+(ee=(ee=(ee=ee+j+((ae+=qA)>>>0>>0?1:0))+zt.high+((ae+=be)>>>0>>0?1:0))+ht+((ae+=It)>>>0>>0?1:0))+((nA=hA+ae|0)>>>0>>0?1:0)|0,W=O,hA=$,O=XA,$=X,XA=NA,X=bA,NA=ee+(((NA>>>28|bA<<4)^(NA<<30|bA>>>2)^(NA<<25|bA>>>7))+KA+(xe>>>0>>0?1:0))+((bA=ae+xe|0)>>>0>>0?1:0)|0}U=Y.low=U+bA,Y.high=L+NA+(U>>>0>>0?1:0),sA=y.low=sA+X,y.high=eA+XA+(sA>>>0>>0?1:0),BA=d.low=BA+$,d.high=q+O+(BA>>>0<$>>>0?1:0),lA=v.low=lA+hA,v.high=pA+W+(lA>>>0>>0?1:0),gA=m.low=gA+nA,m.high=cA+mA+(gA>>>0>>0?1:0),FA=P.low=FA+GA,P.high=yA+EA+(FA>>>0>>0?1:0),MA=N.low=MA+st,N.high=_+et+(MA>>>0>>0?1:0),QA=F.low=QA+it,F.high=uA+TA+(QA>>>0>>0?1:0)},_doFinalize:function(){var w=this._data,Q=w.words,p=8*this._nDataBytes,Y=8*w.sigBytes;return Q[Y>>>5]|=128<<24-Y%32,Q[30+(Y+128>>>10<<5)]=Math.floor(p/4294967296),Q[31+(Y+128>>>10<<5)]=p,w.sigBytes=4*Q.length,this._process(),this._hash.toX32()},clone:function(){var w=l.clone.call(this);return w._hash=this._hash.clone(),w},blockSize:32});i.SHA512=l._createHelper(f),i.HmacSHA512=l._createHmacHelper(f)}(),c.SHA512},T.exports=i(n(757),n(2601))},8437:function(T,I,n){"use strict";n(7042),T.exports=function(c){return function(){var i=c,o=i.lib,l=o.WordArray,h=o.BlockCipher,a=i.algo,B=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],E=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],u=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],C=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],e=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],f=a.DES=h.extend({_doReset:function(){for(var y=this._key.words,d=[],v=0;v<56;v++){var m=B[v]-1;d[v]=y[m>>>5]>>>31-m%32&1}for(var P=this._subKeys=[],N=0;N<16;N++){var F=P[N]=[],L=u[N];for(v=0;v<24;v++)F[v/6|0]|=d[(E[v]-1+L)%28]<<31-v%6,F[4+(v/6|0)]|=d[28+(E[v+24]-1+L)%28]<<31-v%6;for(F[0]=F[0]<<1|F[0]>>>31,v=1;v<7;v++)F[v]=F[v]>>>4*(v-1)+3;F[7]=F[7]<<5|F[7]>>>27}var U=this._invSubKeys=[];for(v=0;v<16;v++)U[v]=P[15-v]},encryptBlock:function(Y,y){this._doCryptBlock(Y,y,this._subKeys)},decryptBlock:function(Y,y){this._doCryptBlock(Y,y,this._invSubKeys)},_doCryptBlock:function(Y,y,d){this._lBlock=Y[y],this._rBlock=Y[y+1],g.call(this,4,252645135),g.call(this,16,65535),w.call(this,2,858993459),w.call(this,8,16711935),g.call(this,1,1431655765);for(var v=0;v<16;v++){for(var m=d[v],P=this._lBlock,N=this._rBlock,F=0,L=0;L<8;L++)F|=C[L][((N^m[L])&e[L])>>>0];this._lBlock=N,this._rBlock=P^F}var U=this._lBlock;this._lBlock=this._rBlock,this._rBlock=U,g.call(this,1,1431655765),w.call(this,8,16711935),w.call(this,2,858993459),g.call(this,16,65535),g.call(this,4,252645135),Y[y]=this._lBlock,Y[y+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function g(p,Y){var y=(this._lBlock>>>p^this._rBlock)&Y;this._rBlock^=y,this._lBlock^=y<>>p^this._lBlock)&Y;this._lBlock^=y,this._rBlock^=y<192.");var d=y.slice(0,2),v=y.length<4?y.slice(0,2):y.slice(2,4),m=y.length<6?y.slice(0,2):y.slice(4,6);this._des1=f.createEncryptor(l.create(d)),this._des2=f.createEncryptor(l.create(v)),this._des3=f.createEncryptor(l.create(m))},encryptBlock:function(Y,y){this._des1.encryptBlock(Y,y),this._des2.decryptBlock(Y,y),this._des3.encryptBlock(Y,y)},decryptBlock:function(Y,y){this._des3.decryptBlock(Y,y),this._des2.encryptBlock(Y,y),this._des1.decryptBlock(Y,y)},keySize:6,ivSize:2,blockSize:2});i.TripleDES=h._createHelper(Q)}(),c.TripleDES}(n(757),n(7508),n(3440),n(3839),n(1582))},2601:function(T,I,n){"use strict";n(7042),T.exports=function(c){return h=(l=c.lib).Base,a=l.WordArray,(B=c.x64={}).Word=h.extend({init:function(e,f){this.high=e,this.low=f}}),B.WordArray=h.extend({init:function(e,f){e=this.words=e||[],this.sigBytes=null!=f?f:8*e.length},toX32:function(){for(var e=this.words,f=e.length,g=[],w=0;w=B.length?{done:!0}:{done:!1,value:B[C++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(B,E){(null==E||E>B.length)&&(E=B.length);for(var u=0,C=new Array(E);u=Q)){m.next=13;break}return m.next=13,[Q,p,f.tags[Y]];case 13:w=f.stateTable[1][d],Q=null;case 15:0!==w&&null==Q&&(Q=y),f.accepting[w]&&(p=y),0===w&&(w=1);case 18:y++,m.next=5;break;case 21:if(!(null!=Q&&null!=p&&p>=Q)){m.next=24;break}return m.next=24,[Q,p,f.tags[w]];case 24:case"end":return m.stop()}},g)}),e},E.apply=function(C,e){for(var g,f=c(this.match(C));!(g=f()).done;)for(var d,w=g.value,Q=w[0],p=w[1],y=c(w[2]);!(d=y()).done;){var v=d.value;"function"==typeof e[v]&&e[v](Q,p,C.slice(Q,p+1))}},B}()},8478:function(T,I,n){"use strict";var c=n(8823).Buffer;n(7042),n(6699);var i=n(3857),o=n(2635);T.exports=function(){function l(a){var B;for(this.data=a,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var E=this.readUInt32(),u="";for(B=0;B<4;B++)u+=String.fromCharCode(this.data[this.pos++]);switch(u){case"IHDR":this.width=this.readUInt32(),this.height=this.readUInt32(),this.bits=this.data[this.pos++],this.colorType=this.data[this.pos++],this.compressionMethod=this.data[this.pos++],this.filterMethod=this.data[this.pos++],this.interlaceMethod=this.data[this.pos++];break;case"PLTE":this.palette=this.read(E);break;case"IDAT":for(B=0;B0)for(B=0;Bthis.data.length)throw new Error("Incomplete or corrupt PNG file")}}l.decode=function(B,E){return i.readFile(B,function(u,C){return new l(C).decode(function(f){return E(f)})})},l.load=function(B){return new l(i.readFileSync(B))};var h=l.prototype;return h.read=function(B){for(var E=new Array(B),u=0;u=2147483648)throw new RangeError('The value "'+B+'" is invalid for option "size"');var C=o(B);return E&&0!==E.length?"string"==typeof u?C.fill(E,u):C.fill(E):C.fill(0),C}),!l.kStringMaxLength)try{l.kStringMaxLength=c.binding("buffer").kStringMaxLength}catch(B){}l.constants||(l.constants={MAX_LENGTH:l.kMaxLength},l.kStringMaxLength&&(l.constants.MAX_STRING_LENGTH=l.kStringMaxLength)),T.exports=l},3361:function(T,I,n){"use strict";function c(g,w){var Q=Object.keys(g);if(Object.getOwnPropertySymbols){var p=Object.getOwnPropertySymbols(g);w&&(p=p.filter(function(Y){return Object.getOwnPropertyDescriptor(g,Y).enumerable})),Q.push.apply(Q,p)}return Q}function o(g,w,Q){return w in g?Object.defineProperty(g,w,{value:Q,enumerable:!0,configurable:!0,writable:!0}):g[w]=Q,g}function h(g,w){for(var Q=0;Q0?this.tail.next=p:this.head=p,this.tail=p,++this.length}},{key:"unshift",value:function(Q){var p={data:Q,next:this.head};0===this.length&&(this.tail=p),this.head=p,++this.length}},{key:"shift",value:function(){if(0!==this.length){var Q=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,Q}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(Q){if(0===this.length)return"";for(var p=this.head,Y=""+p.data;p=p.next;)Y+=Q+p.data;return Y}},{key:"concat",value:function(Q){if(0===this.length)return E.alloc(0);for(var p=E.allocUnsafe(Q>>>0),Y=this.head,y=0;Y;)f(Y.data,p,y),y+=Y.data.length,Y=Y.next;return p}},{key:"consume",value:function(Q,p){var Y;return Qd.length?d.length:Q;if(y+=v===d.length?d:d.slice(0,Q),0==(Q-=v)){v===d.length?(++Y,this.head=p.next?p.next:this.tail=null):(this.head=p,p.data=d.slice(v));break}++Y}return this.length-=Y,y}},{key:"_getBuffer",value:function(Q){var p=E.allocUnsafe(Q),Y=this.head,y=1;for(Y.data.copy(p),Q-=Y.data.length;Y=Y.next;){var d=Y.data,v=Q>d.length?d.length:Q;if(d.copy(p,p.length-Q,0,v),0==(Q-=v)){v===d.length?(++y,this.head=Y.next?Y.next:this.tail=null):(this.head=Y,Y.data=d.slice(v));break}++y}return this.length-=y,p}},{key:e,value:function(Q,p){return C(this,function i(g){for(var w=1;wvA.length)&&(J=vA.length);for(var S=0,Z=new Array(J);S=vA.length?{done:!0}:{done:!1,value:vA[Z++]}},e:function(ut){throw ut},f:K}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var At,fA=!0,IA=!1;return{s:function(){S=vA[Symbol.iterator]()},n:function(){var ut=S.next();return fA=ut.done,ut},e:function(ut){IA=!0,At=ut},f:function(){try{!fA&&null!=S.return&&S.return()}finally{if(IA)throw At}}}}var FA=function(){function vA(){f(this,vA)}return w(vA,[{key:"toString",value:function(){throw new Error("Must be implemented by subclasses")}}]),vA}(),_=function(){function vA(){var J=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};f(this,vA),this._items={},this.limits="boolean"!=typeof J.limits||J.limits}return w(vA,[{key:"add",value:function(S,Z){return this._items[S]=Z}},{key:"get",value:function(S){return this._items[S]}},{key:"toString",value:function(){var S=this,Z=Object.keys(this._items).sort(function(Qt,mt){return S._compareKeys(Qt,mt)}),K=["<<"];if(this.limits&&Z.length>1){var IA=Z[Z.length-1];K.push(" /Limits ".concat(bA.convert([this._dataForKey(Z[0]),this._dataForKey(IA)])))}K.push(" /".concat(this._keysName()," ["));var nt,At=yA(Z);try{for(At.s();!(nt=At.n()).done;){var ut=nt.value;K.push(" ".concat(bA.convert(this._dataForKey(ut))," ").concat(bA.convert(this._items[ut])))}}catch(Qt){At.e(Qt)}finally{At.f()}return K.push("]"),K.push(">>"),K.join("\n")}},{key:"_compareKeys",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_keysName",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_dataForKey",value:function(){throw new Error("Must be implemented by subclasses")}}]),vA}(),MA=function(J,S){return(Array(S+1).join("0")+J).slice(-S)},uA=/[\n\r\t\b\f()\\]/g,QA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},NA=function(J){var S=J.length;if(1&S)throw new Error("Buffer length must be even");for(var Z=0,K=S-1;Z1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof S)return"/".concat(S);if(S instanceof String){for(var K=S,fA=!1,IA=0,At=K.length;IA127){fA=!0;break}var nt;return nt=fA?NA(i.from("\ufeff".concat(K),"utf16le")):i.from(K.valueOf(),"ascii"),K=(K=Z?Z(nt).toString("binary"):nt.toString("binary")).replace(uA,function(jt){return QA[jt]}),"(".concat(K,")")}if(i.isBuffer(S))return"<".concat(S.toString("hex"),">");if(S instanceof FA||S instanceof _)return S.toString();if(S instanceof Date){var ut="D:".concat(MA(S.getUTCFullYear(),4))+MA(S.getUTCMonth()+1,2)+MA(S.getUTCDate(),2)+MA(S.getUTCHours(),2)+MA(S.getUTCMinutes(),2)+MA(S.getUTCSeconds(),2)+"Z";return Z&&(ut=(ut=Z(i.from(ut,"ascii")).toString("binary")).replace(uA,function(jt){return QA[jt]})),"(".concat(ut,")")}if(Array.isArray(S)){var Qt=S.map(function(jt){return vA.convert(jt,Z)}).join(" ");return"[".concat(Qt,"]")}if("[object Object]"==={}.toString.call(S)){var mt=["<<"];for(var xt in S){var Nt=S[xt];mt.push("/".concat(xt," ").concat(vA.convert(Nt,Z)))}return mt.push(">>"),mt.join("\n")}return"number"==typeof S?vA.number(S):"".concat(S)}},{key:"number",value:function(S){if(S>-1e21&&S<1e21)return Math.round(1e6*S)/1e6;throw new Error("unsupported number: ".concat(S))}}]),vA}(),XA=function(vA){y(S,vA);var J=F(S);function S(Z,K){var fA,IA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return f(this,S),(fA=J.call(this)).document=Z,fA.id=K,fA.data=IA,fA.gen=0,fA.compress=fA.document.compress&&!fA.data.Filter,fA.uncompressedLength=0,fA.buffer=[],fA}return w(S,[{key:"write",value:function(K){if(i.isBuffer(K)||(K=i.from(K+"\n","binary")),this.uncompressedLength+=K.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(K),this.data.Length+=K.length,this.compress)return this.data.Filter="FlateDecode"}},{key:"end",value:function(K){return K&&this.write(K),this.finalize()}},{key:"finalize",value:function(){this.offset=this.document._offset;var K=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=i.concat(this.buffer),this.compress&&(this.buffer=l.default.deflateSync(this.buffer)),K&&(this.buffer=K(this.buffer)),this.data.Length=this.buffer.length),this.document._write("".concat(this.id," ").concat(this.gen," obj")),this.document._write(bA.convert(this.data,K)),this.buffer.length&&(this.document._write("stream"),this.document._write(this.buffer),this.buffer=[],this.document._write("\nendstream")),this.document._write("endobj"),this.document._refEnd(this)}},{key:"toString",value:function(){return"".concat(this.id," ").concat(this.gen," R")}}]),S}(FA),X={top:72,left:72,bottom:72,right:72},O={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]},$=function(){function vA(J){var S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};f(this,vA),this.document=J,this.size=S.size||"letter",this.layout=S.layout||"portrait",this.margins="number"==typeof S.margin?{top:S.margin,left:S.margin,bottom:S.margin,right:S.margin}:S.margins||X;var Z=Array.isArray(this.size)?this.size:O[this.size.toUpperCase()];this.width=Z["portrait"===this.layout?0:1],this.height=Z["portrait"===this.layout?1:0],this.content=this.document.ref(),this.resources=this.document.ref({ProcSet:["PDF","Text","ImageB","ImageC","ImageI"]}),this.dictionary=this.document.ref({Type:"Page",Parent:this.document._root.data.Pages,MediaBox:[0,0,this.width,this.height],Contents:this.content,Resources:this.resources}),this.markings=[]}return w(vA,[{key:"maxY",value:function(){return this.height-this.margins.bottom}},{key:"write",value:function(S){return this.content.write(S)}},{key:"end",value:function(){return this.dictionary.end(),this.resources.end(),this.content.end()}},{key:"fonts",get:function(){var S=this.resources.data;return null!=S.Font?S.Font:S.Font={}}},{key:"xobjects",get:function(){var S=this.resources.data;return null!=S.XObject?S.XObject:S.XObject={}}},{key:"ext_gstates",get:function(){var S=this.resources.data;return null!=S.ExtGState?S.ExtGState:S.ExtGState={}}},{key:"patterns",get:function(){var S=this.resources.data;return null!=S.Pattern?S.Pattern:S.Pattern={}}},{key:"colorSpaces",get:function(){var S=this.resources.data;return S.ColorSpace||(S.ColorSpace={})}},{key:"annotations",get:function(){var S=this.dictionary.data;return null!=S.Annots?S.Annots:S.Annots=[]}},{key:"structParentTreeKey",get:function(){var S=this.dictionary.data;return null!=S.StructParents?S.StructParents:S.StructParents=this.document.createStructParentTreeNextKey()}}]),vA}(),W=function(vA){y(S,vA);var J=F(S);function S(){return f(this,S),J.apply(this,arguments)}return w(S,[{key:"_compareKeys",value:function(K,fA){return K.localeCompare(fA)}},{key:"_keysName",value:function(){return"Names"}},{key:"_dataForKey",value:function(K){return new String(K)}}]),S}(_);function hA(vA,J){if(vA=J[fA]&&vA<=J[fA+1])return!0;vA>J[fA+1]?S=K+1:Z=K-1}return!1}var mA=[545,545,564,591,686,687,751,767,848,863,880,883,886,889,891,893,895,899,907,907,909,909,930,930,975,975,1015,1023,1159,1159,1231,1231,1270,1271,1274,1279,1296,1328,1367,1368,1376,1376,1416,1416,1419,1424,1442,1442,1466,1466,1477,1487,1515,1519,1525,1547,1549,1562,1564,1566,1568,1568,1595,1599,1622,1631,1774,1775,1791,1791,1806,1806,1837,1839,1867,1919,1970,2304,2308,2308,2362,2363,2382,2383,2389,2391,2417,2432,2436,2436,2445,2446,2449,2450,2473,2473,2481,2481,2483,2485,2490,2491,2493,2493,2501,2502,2505,2506,2510,2518,2520,2523,2526,2526,2532,2533,2555,2561,2563,2564,2571,2574,2577,2578,2601,2601,2609,2609,2612,2612,2615,2615,2618,2619,2621,2621,2627,2630,2633,2634,2638,2648,2653,2653,2655,2661,2677,2688,2692,2692,2700,2700,2702,2702,2706,2706,2729,2729,2737,2737,2740,2740,2746,2747,2758,2758,2762,2762,2766,2767,2769,2783,2785,2789,2800,2816,2820,2820,2829,2830,2833,2834,2857,2857,2865,2865,2868,2869,2874,2875,2884,2886,2889,2890,2894,2901,2904,2907,2910,2910,2914,2917,2929,2945,2948,2948,2955,2957,2961,2961,2966,2968,2971,2971,2973,2973,2976,2978,2981,2983,2987,2989,2998,2998,3002,3005,3011,3013,3017,3017,3022,3030,3032,3046,3059,3072,3076,3076,3085,3085,3089,3089,3113,3113,3124,3124,3130,3133,3141,3141,3145,3145,3150,3156,3159,3167,3170,3173,3184,3201,3204,3204,3213,3213,3217,3217,3241,3241,3252,3252,3258,3261,3269,3269,3273,3273,3278,3284,3287,3293,3295,3295,3298,3301,3312,3329,3332,3332,3341,3341,3345,3345,3369,3369,3386,3389,3396,3397,3401,3401,3406,3414,3416,3423,3426,3429,3440,3457,3460,3460,3479,3481,3506,3506,3516,3516,3518,3519,3527,3529,3531,3534,3541,3541,3543,3543,3552,3569,3573,3584,3643,3646,3676,3712,3715,3715,3717,3718,3721,3721,3723,3724,3726,3731,3736,3736,3744,3744,3748,3748,3750,3750,3752,3753,3756,3756,3770,3770,3774,3775,3781,3781,3783,3783,3790,3791,3802,3803,3806,3839,3912,3912,3947,3952,3980,3983,3992,3992,4029,4029,4045,4046,4048,4095,4130,4130,4136,4136,4139,4139,4147,4149,4154,4159,4186,4255,4294,4303,4345,4346,4348,4351,4442,4446,4515,4519,4602,4607,4615,4615,4679,4679,4681,4681,4686,4687,4695,4695,4697,4697,4702,4703,4743,4743,4745,4745,4750,4751,4783,4783,4785,4785,4790,4791,4799,4799,4801,4801,4806,4807,4815,4815,4823,4823,4847,4847,4879,4879,4881,4881,4886,4887,4895,4895,4935,4935,4955,4960,4989,5023,5109,5120,5751,5759,5789,5791,5873,5887,5901,5901,5909,5919,5943,5951,5972,5983,5997,5997,6001,6001,6004,6015,6109,6111,6122,6143,6159,6159,6170,6175,6264,6271,6314,7679,7836,7839,7930,7935,7958,7959,7966,7967,8006,8007,8014,8015,8024,8024,8026,8026,8028,8028,8030,8030,8062,8063,8117,8117,8133,8133,8148,8149,8156,8156,8176,8177,8181,8181,8191,8191,8275,8278,8280,8286,8292,8297,8306,8307,8335,8351,8370,8399,8427,8447,8507,8508,8524,8530,8580,8591,9167,9215,9255,9279,9291,9311,9471,9471,9748,9749,9752,9752,9854,9855,9866,9984,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10079,10080,10133,10135,10160,10160,10175,10191,10220,10223,11008,11903,11930,11930,12020,12031,12246,12271,12284,12287,12352,12352,12439,12440,12544,12548,12589,12592,12687,12687,12728,12783,12829,12831,12868,12880,12924,12926,13004,13007,13055,13055,13175,13178,13278,13279,13311,13311,19894,19967,40870,40959,42125,42127,42183,44031,55204,55295,64046,64047,64107,64255,64263,64274,64280,64284,64311,64311,64317,64317,64319,64319,64322,64322,64325,64325,64434,64466,64832,64847,64912,64913,64968,64975,65021,65023,65040,65055,65060,65071,65095,65096,65107,65107,65127,65127,65132,65135,65141,65141,65277,65278,65280,65280,65471,65473,65480,65481,65488,65489,65496,65497,65501,65503,65511,65511,65519,65528,65536,66303,66335,66335,66340,66351,66379,66559,66598,66599,66638,118783,119030,119039,119079,119081,119262,119807,119893,119893,119965,119965,119968,119969,119971,119972,119975,119976,119981,119981,119994,119994,119996,119996,120001,120001,120004,120004,120070,120070,120075,120076,120085,120085,120093,120093,120122,120122,120127,120127,120133,120133,120135,120137,120145,120145,120484,120487,120778,120781,120832,131069,173783,194559,195102,196605,196608,262141,262144,327677,327680,393213,393216,458749,458752,524285,524288,589821,589824,655357,655360,720893,720896,786429,786432,851965,851968,917501,917504,917504,917506,917535,917632,983037],nA=function(J){return hA(J,mA)},EA=[173,173,847,847,6150,6150,6155,6155,6156,6156,6157,6157,8203,8203,8204,8204,8205,8205,8288,8288,65024,65024,65025,65025,65026,65026,65027,65027,65028,65028,65029,65029,65030,65030,65031,65031,65032,65032,65033,65033,65034,65034,65035,65035,65036,65036,65037,65037,65038,65038,65039,65039,65279,65279],et=[160,160,5760,5760,8192,8192,8193,8193,8194,8194,8195,8195,8196,8196,8197,8197,8198,8198,8199,8199,8200,8200,8201,8201,8202,8202,8203,8203,8239,8239,8287,8287,12288,12288],TA=[128,159,1757,1757,1807,1807,6158,6158,8204,8204,8205,8205,8232,8232,8233,8233,8288,8288,8289,8289,8290,8290,8291,8291,8298,8303,65279,65279,65529,65532,119155,119162],it=[64976,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1114110,1114111],vt=[0,31,127,127,832,832,833,833,8206,8206,8207,8207,8234,8234,8235,8235,8236,8236,8237,8237,8238,8238,8298,8298,8299,8299,8300,8300,8301,8301,8302,8302,8303,8303,12272,12283,55296,57343,57344,63743,65529,65529,65530,65530,65531,65531,65532,65532,65533,65533,917505,917505,917536,917631,983040,1048573,1048576,1114109],It=function(J){return hA(J,et)||hA(J,vt)||hA(J,TA)||hA(J,it)},ht=[1470,1470,1472,1472,1475,1475,1488,1514,1520,1524,1563,1563,1567,1567,1569,1594,1600,1610,1645,1647,1649,1749,1757,1757,1765,1766,1786,1790,1792,1805,1808,1808,1810,1836,1920,1957,1969,1969,8207,8207,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65020,65136,65140,65142,65276],JA=function(J){return hA(J,ht)},WA=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,544,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,1013,1024,1154,1162,1230,1232,1269,1272,1273,1280,1295,1329,1366,1369,1375,1377,1415,1417,1417,2307,2307,2309,2361,2365,2368,2377,2380,2384,2384,2392,2401,2404,2416,2434,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2494,2496,2503,2504,2507,2508,2519,2519,2524,2525,2527,2529,2534,2545,2548,2554,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2622,2624,2649,2652,2654,2654,2662,2671,2674,2676,2691,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2752,2761,2761,2763,2764,2768,2768,2784,2784,2790,2799,2818,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2878,2880,2880,2887,2888,2891,2892,2903,2903,2908,2909,2911,2913,2918,2928,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3007,3009,3010,3014,3016,3018,3020,3031,3031,3047,3058,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3137,3140,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3262,3264,3268,3271,3272,3274,3275,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3392,3398,3400,3402,3404,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3535,3537,3544,3551,3570,3572,3585,3632,3634,3635,3648,3654,3663,3675,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3792,3801,3804,3805,3840,3863,3866,3892,3894,3894,3896,3896,3902,3911,3913,3946,3967,3967,3973,3973,3976,3979,4030,4037,4039,4044,4047,4047,4096,4129,4131,4135,4137,4138,4140,4140,4145,4145,4152,4152,4160,4183,4256,4293,4304,4344,4347,4347,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4961,4988,5024,5108,5121,5750,5761,5786,5792,5872,5888,5900,5902,5905,5920,5937,5941,5942,5952,5969,5984,5996,5998,6e3,6016,6070,6078,6085,6087,6088,6100,6106,6108,6108,6112,6121,6160,6169,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8206,8206,8305,8305,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8509,8511,8517,8521,8544,8579,9014,9082,9109,9109,9372,9449,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12588,12593,12686,12688,12727,12784,12828,12832,12867,12896,12923,12927,12976,12992,13003,13008,13054,13056,13174,13179,13277,13280,13310,13312,19893,19968,40869,40960,42124,44032,55203,55296,64045,64048,64106,64256,64262,64275,64279,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,66304,66334,66336,66339,66352,66378,66560,66597,66600,66637,118784,119029,119040,119078,119082,119142,119146,119154,119171,119172,119180,119209,119214,119261,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,12e4,120002,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120483,120488,120777,131072,173782,194560,195101,983040,1048573,1048576,1114109],rt=function(J){return hA(J,WA)},xA=function(J){return hA(J,et)},Mt=function(J){return hA(J,EA)},Et=function(J){return J.codePointAt(0)},Tt=function(J){return J[0]},OA=function(J){return J[J.length-1]};function H(vA){for(var J=[],S=vA.length,Z=0;Z=55296&&K<=56319&&S>Z+1){var fA=vA.charCodeAt(Z+1);if(fA>=56320&&fA<=57343){J.push(1024*(K-55296)+fA-56320+65536),Z+=1;continue}}J.push(K)}return J}function k(vA){var J=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof vA)throw new TypeError("Expected string.");if(0===vA.length)return"";var S=H(vA).map(function(mt){return xA(mt)?32:mt}).filter(function(mt){return!Mt(mt)}),Z=String.fromCodePoint.apply(null,S).normalize("NFKC"),K=H(Z);if(K.some(It))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==J.allowUnassigned&&K.some(nA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var At=K.some(JA),nt=K.some(rt);if(At&&nt)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");var ut=JA(Et(Tt(Z))),Qt=JA(Et(OA(Z)));if(At&&(!ut||!Qt))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return Z}var b=function(){function vA(J){var S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(f(this,vA),!S.ownerPassword&&!S.userPassword)throw new Error("None of owner password and user password is defined.");this.document=J,this._setupEncryption(S)}return w(vA,null,[{key:"generateFileID",value:function(){var S=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},Z="".concat(S.CreationDate.getTime(),"\n");for(var K in S)!S.hasOwnProperty(K)||(Z+="".concat(K,": ").concat(S[K].valueOf(),"\n"));return Zt(h.default.MD5(Z))}},{key:"generateRandomWordArray",value:function(S){return h.default.lib.WordArray.random(S)}},{key:"create",value:function(S){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Z.ownerPassword||Z.userPassword?new vA(S,Z):null}}]),w(vA,[{key:"_setupEncryption",value:function(S){switch(S.pdfVersion){case"1.4":case"1.5":this.version=2;break;case"1.6":case"1.7":this.version=4;break;case"1.7ext3":this.version=5;break;default:this.version=1}var Z={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,Z,S);break;case 5:this._setupEncryptionV5(Z,S)}this.dictionary=this.document.ref(Z)}},{key:"_setupEncryptionV1V2V4",value:function(S,Z,K){var fA,IA;switch(S){case 1:fA=2,this.keyBits=40,IA=function CA(){var vA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},J=-64;return vA.printing&&(J|=4),vA.modifying&&(J|=8),vA.copying&&(J|=16),vA.annotating&&(J|=32),J}(K.permissions);break;case 2:fA=3,this.keyBits=128,IA=wA(K.permissions);break;case 4:fA=4,this.keyBits=128,IA=wA(K.permissions)}var Qt,At=bt(K.userPassword),nt=K.ownerPassword?bt(K.ownerPassword):At,ut=function gt(vA,J,S,Z){for(var K=Z,fA=vA>=3?51:1,IA=0;IA=3?20:1;for(var ut=0;ut=3?51:1,nt=0;nt=2&&(Z.Length=this.keyBits),4===S&&(Z.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},Z.StmF="StdCF",Z.StrF="StdCF"),Z.R=fA,Z.O=Zt(ut),Z.U=Zt(Qt),Z.P=IA}},{key:"_setupEncryptionV5",value:function(S,Z){this.keyBits=256;var K=wA(Z.permissions),fA=yt(Z.userPassword),IA=Z.ownerPassword?yt(Z.ownerPassword):fA;this.encryptionKey=function jA(vA){return vA(32)}(vA.generateRandomWordArray);var At=function j(vA,J){var S=J(8),Z=J(8);return h.default.SHA256(vA.clone().concat(S)).concat(S).concat(Z)}(fA,vA.generateRandomWordArray),ut=function qA(vA,J,S){var Z=h.default.SHA256(vA.clone().concat(J)),K={mode:h.default.mode.CBC,padding:h.default.pad.NoPadding,iv:h.default.lib.WordArray.create(null,16)};return h.default.AES.encrypt(S,Z,K).ciphertext}(fA,h.default.lib.WordArray.create(At.words.slice(10,12),8),this.encryptionKey),Qt=function KA(vA,J,S){var Z=S(8),K=S(8);return h.default.SHA256(vA.clone().concat(Z).concat(J)).concat(Z).concat(K)}(IA,At,vA.generateRandomWordArray),xt=function DA(vA,J,S,Z){var K=h.default.SHA256(vA.clone().concat(J).concat(S)),fA={mode:h.default.mode.CBC,padding:h.default.pad.NoPadding,iv:h.default.lib.WordArray.create(null,16)};return h.default.AES.encrypt(Z,K,fA).ciphertext}(IA,h.default.lib.WordArray.create(Qt.words.slice(10,12),8),At,this.encryptionKey),Nt=function lt(vA,J,S){var Z=h.default.lib.WordArray.create([zt(vA),4294967295,1415668834],12).concat(S(4));return h.default.AES.encrypt(Z,J,{mode:h.default.mode.ECB,padding:h.default.pad.NoPadding}).ciphertext}(K,this.encryptionKey,vA.generateRandomWordArray);S.V=5,S.Length=this.keyBits,S.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},S.StmF="StdCF",S.StrF="StdCF",S.R=5,S.O=Zt(Qt),S.OE=Zt(xt),S.U=Zt(At),S.UE=Zt(ut),S.P=K,S.Perms=Zt(Nt)}},{key:"getEncryptFn",value:function(S,Z){var K,IA;if(this.version<5&&(K=this.encryptionKey.clone().concat(h.default.lib.WordArray.create([(255&S)<<24|(65280&S)<<8|S>>8&65280|255&Z,(65280&Z)<<16],5))),1===this.version||2===this.version){var fA=h.default.MD5(K);return fA.sigBytes=Math.min(16,this.keyBits/8+5),function(ut){return Zt(h.default.RC4.encrypt(h.default.lib.WordArray.create(ut),fA).ciphertext)}}IA=4===this.version?h.default.MD5(K.concat(h.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var At=vA.generateRandomWordArray(16),nt={mode:h.default.mode.CBC,padding:h.default.pad.Pkcs7,iv:At};return function(ut){return Zt(At.clone().concat(h.default.AES.encrypt(h.default.lib.WordArray.create(ut),IA,nt).ciphertext))}}},{key:"end",value:function(){this.dictionary.end()}}]),vA}();function wA(){var vA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},J=-3904;return"lowResolution"===vA.printing&&(J|=4),"highResolution"===vA.printing&&(J|=2052),vA.modifying&&(J|=8),vA.copying&&(J|=16),vA.annotating&&(J|=32),vA.fillingForms&&(J|=256),vA.contentAccessibility&&(J|=512),vA.documentAssembly&&(J|=1024),J}function bt(){for(var vA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",J=i.alloc(32),S=vA.length,Z=0;Z255)throw new Error("Password contains one or more invalid characters.");J[Z]=K,Z++}for(;Z<32;)J[Z]=be[Z-S],Z++;return h.default.lib.WordArray.create(J)}function yt(){var vA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";vA=unescape(encodeURIComponent(k(vA)));for(var J=Math.min(127,vA.length),S=i.alloc(J),Z=0;Z>8&65280|vA>>24&255}function Zt(vA){for(var J=[],S=0;S>8*(3-S%4)&255);return i.from(J)}var kt,Gt,_t,le,mn,pn,be=[40,191,78,94,78,117,138,65,100,0,78,86,255,250,1,8,46,46,0,182,208,104,62,128,47,12,169,254,100,83,105,122],ae=bA.number,ee=function(){function vA(J){f(this,vA),this.doc=J,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}return w(vA,[{key:"stop",value:function(S,Z,K){if(null==K&&(K=1),Z=this.doc._normalizeColor(Z),0===this.stops.length)if(3===Z.length)this._colorSpace="DeviceRGB";else if(4===Z.length)this._colorSpace="DeviceCMYK";else{if(1!==Z.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==Z.length||"DeviceCMYK"===this._colorSpace&&4!==Z.length||"DeviceGray"===this._colorSpace&&1!==Z.length)throw new Error("All gradient stops must use the same color space");return K=Math.max(0,Math.min(1,K)),this.stops.push([S,Z,K]),this}},{key:"setTransform",value:function(S,Z,K,fA,IA,At){return this.transform=[S,Z,K,fA,IA,At],this}},{key:"embed",value:function(S){var Z,K=this.stops.length;if(0!==K){this.embedded=!0,this.matrix=S;var fA=this.stops[K-1];fA[0]<1&&this.stops.push([1,fA[1],fA[2]]);for(var IA=[],At=[],nt=[],ut=0;ut>16,S>>8&255,255&S]}else Jn[J]&&(J=Jn[J]);return Array.isArray(J)?(3===J.length?J=J.map(function(Z){return Z/255}):4===J.length&&(J=J.map(function(Z){return Z/100})),J):null},_setColor:function(J,S){return J instanceof rn?(J.apply(S),!0):Array.isArray(J)&&J[0]instanceof $e?(J[0].apply(S,J[1]),!0):this._setColorCore(J,S)},_setColorCore:function(J,S){if(!(J=this._normalizeColor(J)))return!1;var Z=S?"SCN":"scn",K=this._getColorSpace(J);return this._setColorSpace(K,S),J=J.join(" "),this.addContent("".concat(J," ").concat(Z)),!0},_setColorSpace:function(J,S){var Z=S?"CS":"cs";return this.addContent("/".concat(J," ").concat(Z))},_getColorSpace:function(J){return 4===J.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(J,S){return this._setColor(J,!1)&&this.fillOpacity(S),this._fillColor=[J,S],this},strokeColor:function(J,S){return this._setColor(J,!0)&&this.strokeOpacity(S),this},opacity:function(J){return this._doOpacity(J,J),this},fillOpacity:function(J){return this._doOpacity(J,null),this},strokeOpacity:function(J){return this._doOpacity(null,J),this},_doOpacity:function(J,S){var Z,K;if(null!=J||null!=S){null!=J&&(J=Math.max(0,Math.min(1,J))),null!=S&&(S=Math.max(0,Math.min(1,S)));var fA="".concat(J,"_").concat(S);if(this._opacityRegistry[fA]){var IA=L(this._opacityRegistry[fA],2);Z=IA[0],K=IA[1]}else{Z={Type:"ExtGState"},null!=J&&(Z.ca=J),null!=S&&(Z.CA=S),(Z=this.ref(Z)).end();var At=++this._opacityCount;K="Gs".concat(At),this._opacityRegistry[fA]=[Z,K]}return this.page.ext_gstates[K]=Z,this.addContent("/".concat(K," gs"))}},linearGradient:function(J,S,Z,K){return new Ne(this,J,S,Z,K)},radialGradient:function(J,S,Z,K,fA,IA){return new an(this,J,S,Z,K,fA,IA)},pattern:function(J,S,Z,K){return new $e(this,J,S,Z,K)}},Jn={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};kt=Gt=_t=le=mn=pn=0;var Tn={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},Nn={M:function(J,S){return _t=le=null,mn=kt=S[0],pn=Gt=S[1],J.moveTo(kt,Gt)},m:function(J,S){return _t=le=null,mn=kt+=S[0],pn=Gt+=S[1],J.moveTo(kt,Gt)},C:function(J,S){return kt=S[4],Gt=S[5],_t=S[2],le=S[3],J.bezierCurveTo.apply(J,U(S))},c:function(J,S){return J.bezierCurveTo(S[0]+kt,S[1]+Gt,S[2]+kt,S[3]+Gt,S[4]+kt,S[5]+Gt),_t=kt+S[2],le=Gt+S[3],kt+=S[4],Gt+=S[5]},S:function(J,S){return null===_t&&(_t=kt,le=Gt),J.bezierCurveTo(kt-(_t-kt),Gt-(le-Gt),S[0],S[1],S[2],S[3]),_t=S[0],le=S[1],kt=S[2],Gt=S[3]},s:function(J,S){return null===_t&&(_t=kt,le=Gt),J.bezierCurveTo(kt-(_t-kt),Gt-(le-Gt),kt+S[0],Gt+S[1],kt+S[2],Gt+S[3]),_t=kt+S[0],le=Gt+S[1],kt+=S[2],Gt+=S[3]},Q:function(J,S){return _t=S[0],le=S[1],J.quadraticCurveTo(S[0],S[1],kt=S[2],Gt=S[3])},q:function(J,S){return J.quadraticCurveTo(S[0]+kt,S[1]+Gt,S[2]+kt,S[3]+Gt),_t=kt+S[0],le=Gt+S[1],kt+=S[2],Gt+=S[3]},T:function(J,S){return null===_t?(_t=kt,le=Gt):(_t=kt-(_t-kt),le=Gt-(le-Gt)),J.quadraticCurveTo(_t,le,S[0],S[1]),_t=kt-(_t-kt),le=Gt-(le-Gt),kt=S[0],Gt=S[1]},t:function(J,S){return null===_t?(_t=kt,le=Gt):(_t=kt-(_t-kt),le=Gt-(le-Gt)),J.quadraticCurveTo(_t,le,kt+S[0],Gt+S[1]),kt+=S[0],Gt+=S[1]},A:function(J,S){return ZA(J,kt,Gt,S),kt=S[5],Gt=S[6]},a:function(J,S){return S[5]+=kt,S[6]+=Gt,ZA(J,kt,Gt,S),kt=S[5],Gt=S[6]},L:function(J,S){return _t=le=null,J.lineTo(kt=S[0],Gt=S[1])},l:function(J,S){return _t=le=null,J.lineTo(kt+=S[0],Gt+=S[1])},H:function(J,S){return _t=le=null,J.lineTo(kt=S[0],Gt)},h:function(J,S){return _t=le=null,J.lineTo(kt+=S[0],Gt)},V:function(J,S){return _t=le=null,J.lineTo(kt,Gt=S[0])},v:function(J,S){return _t=le=null,J.lineTo(kt,Gt+=S[0])},Z:function(J){return J.closePath(),kt=mn,Gt=pn},z:function(J){return J.closePath(),kt=mn,Gt=pn}},ZA=function(J,S,Z,K){var Wt,fA=L(K,7),jt=yA(YA(fA[5],fA[6],fA[0],fA[1],fA[3],fA[4],fA[2],S,Z));try{for(jt.s();!(Wt=jt.n()).done;){var Ce=tt.apply(void 0,U(Wt.value));J.bezierCurveTo.apply(J,U(Ce))}}catch(Ie){jt.e(Ie)}finally{jt.f()}},YA=function(J,S,Z,K,fA,IA,At,nt,ut){var Qt=At*(Math.PI/180),mt=Math.sin(Qt),xt=Math.cos(Qt);Z=Math.abs(Z),K=Math.abs(K);var Nt=(_t=xt*(nt-J)*.5+mt*(ut-S)*.5)*_t/(Z*Z)+(le=xt*(ut-S)*.5-mt*(nt-J)*.5)*le/(K*K);Nt>1&&(Z*=Nt=Math.sqrt(Nt),K*=Nt);var jt=xt/Z,Wt=mt/Z,Ee=-mt/K,Ce=xt/K,Ie=jt*nt+Wt*ut,on=Ee*nt+Ce*ut,pe=jt*J+Wt*S,Ke=Ee*J+Ce*S,Ve=1/((pe-Ie)*(pe-Ie)+(Ke-on)*(Ke-on))-.25;Ve<0&&(Ve=0);var dn=Math.sqrt(Ve);IA===fA&&(dn=-dn);var Xn=.5*(Ie+pe)-dn*(Ke-on),Ar=.5*(on+Ke)+dn*(pe-Ie),Pn=Math.atan2(on-Ar,Ie-Xn),jn=Math.atan2(Ke-Ar,pe-Xn)-Pn;jn<0&&1===IA?jn+=2*Math.PI:jn>0&&0===IA&&(jn-=2*Math.PI);for(var sr=Math.ceil(Math.abs(jn/(.5*Math.PI+.001))),vr=[],tr=0;tr0&&(K[K.length]=+fA),Z[Z.length]={cmd:S,args:K},K=[],fA="",IA=!1),S=Qt;else if([" ",","].includes(Qt)||"-"===Qt&&fA.length>0&&"e"!==fA[fA.length-1]||"."===Qt&&IA){if(0===fA.length)continue;K.length===At?(Z[Z.length]={cmd:S,args:K},K=[+fA],"M"===S&&(S="L"),"m"===S&&(S="l")):K[K.length]=+fA,IA="."===Qt,fA=["-","."].includes(Qt)?Qt:""}else fA+=Qt,"."===Qt&&(IA=!0)}}catch(mt){nt.e(mt)}finally{nt.f()}return fA.length>0&&(K.length===At?(Z[Z.length]={cmd:S,args:K},K=[+fA],"M"===S&&(S="L"),"m"===S&&(S="l")):K[K.length]=+fA),Z[Z.length]={cmd:S,args:K},Z}(Z);!function(J,S){kt=Gt=_t=le=mn=pn=0;for(var Z=0;Z1&&void 0!==arguments[1]?arguments[1]:{},Z=J;if(Array.isArray(J)||(J=[J,S.space||J]),!J.every(function(fA){return Number.isFinite(fA)&&fA>0}))throw new Error("dash(".concat(JSON.stringify(Z),", ").concat(JSON.stringify(S),") invalid, lengths must be numeric and greater than zero"));return J=J.map(PA).join(" "),this.addContent("[".concat(J,"] ").concat(PA(S.phase||0)," d"))},undash:function(){return this.addContent("[] 0 d")},moveTo:function(J,S){return this.addContent("".concat(PA(J)," ").concat(PA(S)," m"))},lineTo:function(J,S){return this.addContent("".concat(PA(J)," ").concat(PA(S)," l"))},bezierCurveTo:function(J,S,Z,K,fA,IA){return this.addContent("".concat(PA(J)," ").concat(PA(S)," ").concat(PA(Z)," ").concat(PA(K)," ").concat(PA(fA)," ").concat(PA(IA)," c"))},quadraticCurveTo:function(J,S,Z,K){return this.addContent("".concat(PA(J)," ").concat(PA(S)," ").concat(PA(Z)," ").concat(PA(K)," v"))},rect:function(J,S,Z,K){return this.addContent("".concat(PA(J)," ").concat(PA(S)," ").concat(PA(Z)," ").concat(PA(K)," re"))},roundedRect:function(J,S,Z,K,fA){null==fA&&(fA=0);var IA=(fA=Math.min(fA,.5*Z,.5*K))*(1-zA);return this.moveTo(J+fA,S),this.lineTo(J+Z-fA,S),this.bezierCurveTo(J+Z-IA,S,J+Z,S+IA,J+Z,S+fA),this.lineTo(J+Z,S+K-fA),this.bezierCurveTo(J+Z,S+K-IA,J+Z-IA,S+K,J+Z-fA,S+K),this.lineTo(J+fA,S+K),this.bezierCurveTo(J+IA,S+K,J,S+K-IA,J,S+K-fA),this.lineTo(J,S+fA),this.bezierCurveTo(J,S+IA,J+IA,S,J+fA,S),this.closePath()},ellipse:function(J,S,Z,K){null==K&&(K=Z);var fA=Z*zA,IA=K*zA,At=(J-=Z)+2*Z,nt=(S-=K)+2*K,ut=J+Z,Qt=S+K;return this.moveTo(J,Qt),this.bezierCurveTo(J,Qt-IA,ut-fA,S,ut,S),this.bezierCurveTo(ut+fA,S,At,Qt-IA,At,Qt),this.bezierCurveTo(At,Qt+IA,ut+fA,nt,ut,nt),this.bezierCurveTo(ut-fA,nt,J,Qt+IA,J,Qt),this.closePath()},circle:function(J,S,Z){return this.ellipse(J,S,Z)},arc:function(J,S,Z,K,fA,IA){null==IA&&(IA=!1);var At=2*Math.PI,nt=.5*Math.PI,ut=fA-K;Math.abs(ut)>At?ut=At:0!==ut&&IA!==ut<0&&(ut=(IA?-1:1)*At+ut);var mt=Math.ceil(Math.abs(ut)/nt),xt=ut/mt,Nt=xt/nt*zA*Z,jt=K,Wt=-Math.sin(jt)*Nt,Ee=Math.cos(jt)*Nt,Ce=J+Math.cos(jt)*Z,Ie=S+Math.sin(jt)*Z;this.moveTo(Ce,Ie);for(var on=0;on1&&void 0!==arguments[1]?arguments[1]:{},K=J*Math.PI/180,fA=Math.cos(K),IA=Math.sin(K),At=Z=0;if(null!=S.origin){var nt=L(S.origin,2),Qt=(At=nt[0])*IA+(Z=nt[1])*fA;At-=At*fA-Z*IA,Z-=Qt}return this.transform(fA,IA,-IA,fA,At,Z)},scale:function(J,S){var K,Z=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==S&&(S=J),"object"==typeof S&&(Z=S,S=J);var fA=K=0;if(null!=Z.origin){var IA=L(Z.origin,2);fA=IA[0],K=IA[1],fA-=J*fA,K-=S*K}return this.transform(J,0,0,S,fA,K)}},$A={402:131,8211:150,8212:151,8216:145,8217:146,8218:130,8220:147,8221:148,8222:132,8224:134,8225:135,8226:149,8230:133,8364:128,8240:137,8249:139,8250:155,710:136,8482:153,338:140,339:156,732:152,352:138,353:154,376:159,381:142,382:158},LA=".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/),at=function(){function vA(J){f(this,vA),this.contents=J,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var S=0;S<=255;S++)this.charWidths[S]=this.glyphWidths[LA[S]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(Z){return+Z}),this.ascender=+(this.attributes.Ascender||0),this.descender=+(this.attributes.Descender||0),this.xHeight=+(this.attributes.XHeight||0),this.capHeight=+(this.attributes.CapHeight||0),this.lineGap=this.bbox[3]-this.bbox[1]-(this.ascender-this.descender)}return w(vA,null,[{key:"open",value:function(S){return new vA(e.readFileSync(S,"utf8"))}}]),w(vA,[{key:"parse",value:function(){var K,S="",Z=yA(this.contents.split("\n"));try{for(Z.s();!(K=Z.n()).done;){var IA,At,fA=K.value;if(IA=fA.match(/^Start(\w+)/))S=IA[1];else if(IA=fA.match(/^End(\w+)/))S="";else switch(S){case"FontMetrics":var nt=(IA=fA.match(/(^\w+)\s+(.*)/))[1],ut=IA[2];(At=this.attributes[nt])?(Array.isArray(At)||(At=this.attributes[nt]=[At]),At.push(ut)):this.attributes[nt]=ut;break;case"CharMetrics":if(!/^CH?\s/.test(fA))continue;var Qt=fA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Qt]=+fA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(IA=fA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[IA[1]+"\0"+IA[2]]=parseInt(IA[3]))}}}catch(mt){Z.e(mt)}finally{Z.f()}}},{key:"encodeText",value:function(S){for(var Z=[],K=0,fA=S.length;K>8,nt=0;this.font.post.isFixedPitch&&(nt|=1),1<=At&&At<=7&&(nt|=2),nt|=4,10===At&&(nt|=8),this.font.head.macStyle.italic&&(nt|=64);var Qt=[1,2,3,4,5,6].map(function(Wt){return String.fromCharCode((K.id.charCodeAt(Wt)||73)+17)}).join("")+"+"+this.font.postscriptName,mt=this.font.bbox,xt=this.document.ref({Type:"FontDescriptor",FontName:Qt,Flags:nt,FontBBox:[mt.minX*this.scale,mt.minY*this.scale,mt.maxX*this.scale,mt.maxY*this.scale],ItalicAngle:this.font.italicAngle,Ascent:this.ascender,Descent:this.descender,CapHeight:(this.font.capHeight||this.font.ascent)*this.scale,XHeight:(this.font.xHeight||0)*this.scale,StemV:0});fA?xt.data.FontFile3=IA:xt.data.FontFile2=IA,xt.end();var Nt={Type:"Font",Subtype:"CIDFontType0",BaseFont:Qt,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:xt,W:[0,this.widths]};fA||(Nt.Subtype="CIDFontType2",Nt.CIDToGIDMap="Identity");var jt=this.document.ref(Nt);return jt.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Qt,Encoding:"Identity-H",DescendantFonts:[jt],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}},{key:"toUnicodeCmap",value:function(){var At,K=this.document.ref(),fA=[],IA=yA(this.unicode);try{for(IA.s();!(At=IA.n()).done;){var mt,ut=[],Qt=yA(At.value);try{for(Qt.s();!(mt=Qt.n()).done;){var xt=mt.value;xt>65535&&(ut.push(Pt((xt-=65536)>>>10&1023|55296)),xt=56320|1023&xt),ut.push(Pt(xt))}}catch(Nt){Qt.e(Nt)}finally{Qt.f()}fA.push("<".concat(ut.join(" "),">"))}}catch(Nt){IA.e(Nt)}finally{IA.f()}return K.end("/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n1 beginbfrange\n<0000> <".concat(Pt(fA.length-1),"> [").concat(fA.join(" "),"]\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend")),K}}]),S}(VA),Xt=function(){function vA(){f(this,vA)}return w(vA,null,[{key:"open",value:function(S,Z,K,fA){var IA;if("string"==typeof Z){if(St.isStandardFont(Z))return new St(S,Z,fA);Z=e.readFileSync(Z)}if(i.isBuffer(Z)?IA=a.default.create(Z,K):Z instanceof Uint8Array?IA=a.default.create(i.from(Z),K):Z instanceof ArrayBuffer&&(IA=a.default.create(i.from(new Uint8Array(Z)),K)),null==IA)throw new Error("Not a supported font format or standard PDF font.");return new Kt(S,IA,fA)}}]),vA}(),re={initFonts:function(){var J=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica";this._fontFamilies={},this._fontCount=0,this._fontSize=12,this._font=null,this._registeredFonts={},J&&this.font(J)},font:function(J,S,Z){var K,fA;if("number"==typeof S&&(Z=S,S=null),"string"==typeof J&&this._registeredFonts[J]){K=J;var IA=this._registeredFonts[J];J=IA.src,S=IA.family}else"string"!=typeof(K=S||J)&&(K=null);if(null!=Z&&this.fontSize(Z),fA=this._fontFamilies[K])return this._font=fA,this;var At="F".concat(++this._fontCount);return this._font=Xt.open(this,J,S,At),(fA=this._fontFamilies[this._font.name])?(this._font=fA,this):(K&&(this._fontFamilies[K]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize:function(J){return this._fontSize=J,this},currentLineHeight:function(J){return null==J&&(J=!1),this._font.lineHeight(this._fontSize,J)},registerFont:function(J,S,Z){return this._registeredFonts[J]={src:S,family:Z},this}},wt=function(vA){y(S,vA);var J=F(S);function S(Z,K){var fA;return f(this,S),(fA=J.call(this)).document=Z,fA.indent=K.indent||0,fA.characterSpacing=K.characterSpacing||0,fA.wordSpacing=0===K.wordSpacing,fA.columns=K.columns||1,fA.columnGap=null!=K.columnGap?K.columnGap:18,fA.lineWidth=(K.width-fA.columnGap*(fA.columns-1))/fA.columns,fA.spaceLeft=fA.lineWidth,fA.startX=fA.document.x,fA.startY=fA.document.y,fA.column=1,fA.ellipsis=K.ellipsis,fA.continuedX=0,fA.features=K.features,null!=K.height?(fA.height=K.height,fA.maxY=fA.startY+K.height):fA.maxY=fA.document.page.maxY(),fA.on("firstLine",function(IA){var At=fA.continuedX||fA.indent;return fA.document.x+=At,fA.lineWidth-=At,fA.once("line",function(){if(fA.document.x-=At,fA.lineWidth+=At,IA.continued&&!fA.continuedX&&(fA.continuedX=fA.indent),!IA.continued)return fA.continuedX=0})}),fA.on("lastLine",function(IA){var At=IA.align;return"justify"===At&&(IA.align="left"),fA.lastLine=!0,fA.once("line",function(){return fA.document.y+=IA.paragraphGap||0,IA.align=At,fA.lastLine=!1})}),fA}return w(S,[{key:"wordWidth",value:function(K){return this.document.widthOfString(K,this)+this.characterSpacing+this.wordSpacing}},{key:"eachWord",value:function(K,fA){for(var IA,At=new E.default(K),nt=null,ut=Object.create(null);IA=At.nextBreak();){var Qt,mt=K.slice((null!=nt?nt.position:void 0)||0,IA.position),xt=null!=ut[mt]?ut[mt]:ut[mt]=this.wordWidth(mt);if(xt>this.lineWidth+this.continuedX)for(var Nt=nt,jt={};mt.length;){var Wt,Ee;xt>this.spaceLeft?(Wt=Math.ceil(this.spaceLeft/(xt/mt.length)),Ee=(xt=this.wordWidth(mt.slice(0,Wt)))<=this.spaceLeft&&Wtthis.spaceLeft&&Wt>0;Ce||Ee;)Ce?Ce=(xt=this.wordWidth(mt.slice(0,--Wt)))>this.spaceLeft&&Wt>0:(Ce=(xt=this.wordWidth(mt.slice(0,++Wt)))>this.spaceLeft&&Wt>0,Ee=xt<=this.spaceLeft&&Wtthis.maxY||At>this.maxY)&&this.nextSection();var nt="",ut=0,Qt=0,mt=0,xt=this.document.y,Nt=function(){return fA.textWidth=ut+IA.wordSpacing*(Qt-1),fA.wordCount=Qt,fA.lineWidth=IA.lineWidth,xt=IA.document.y,IA.emit("line",nt,fA,IA),mt++};return this.emit("sectionStart",fA,this),this.eachWord(K,function(jt,Wt,Ee,Ce){if((null==Ce||Ce.required)&&(IA.emit("firstLine",fA,IA),IA.spaceLeft=IA.lineWidth),Wt<=IA.spaceLeft&&(nt+=jt,ut+=Wt,Qt++),Ee.required||Wt>IA.spaceLeft){var Ie=IA.document.currentLineHeight(!0);if(null!=IA.height&&IA.ellipsis&&IA.document.y+2*Ie>IA.maxY&&IA.column>=IA.columns){for(!0===IA.ellipsis&&(IA.ellipsis="\u2026"),nt=nt.replace(/\s+$/,""),ut=IA.wordWidth(nt+IA.ellipsis);nt&&ut>IA.lineWidth;)nt=nt.slice(0,-1).replace(/\s+$/,""),ut=IA.wordWidth(nt+IA.ellipsis);ut<=IA.lineWidth&&(nt+=IA.ellipsis),ut=IA.wordWidth(nt)}return Ee.required&&(Wt>IA.spaceLeft&&(Nt(),nt=jt,ut=Wt,Qt=1),IA.emit("lastLine",fA,IA)),Nt(),IA.document.y+Ie>IA.maxY&&!IA.nextSection()?(Qt=0,nt="",!1):Ee.required?(IA.spaceLeft=IA.lineWidth,nt="",ut=0,Qt=0):(IA.spaceLeft=IA.lineWidth-Wt,nt=jt,ut=Wt,Qt=1)}return IA.spaceLeft-=Wt}),Qt>0&&(this.emit("lastLine",fA,this),Nt()),this.emit("sectionEnd",fA,this),!0===fA.continued?(mt>1&&(this.continuedX=0),this.continuedX+=fA.textWidth||0,this.document.y=xt):this.document.x=this.startX}},{key:"nextSection",value:function(K){if(this.emit("sectionEnd",K,this),++this.column>this.columns){if(null!=this.height)return!1;var fA;this.document.continueOnNewPage(),this.column=1,this.startY=this.document.page.margins.top,this.maxY=this.document.page.maxY(),this.document.x=this.startX,this.document._fillColor&&(fA=this.document).fillColor.apply(fA,U(this.document._fillColor)),this.emit("pageBreak",K,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",K,this);return this.emit("sectionStart",K,this),!0}}]),S}(B.EventEmitter),Rt=bA.number,Vt={initText:function(){return this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap:function(J){return this._lineGap=J,this},moveDown:function(J){return null==J&&(J=1),this.y+=this.currentLineHeight(!0)*J+this._lineGap,this},moveUp:function(J){return null==J&&(J=1),this.y-=this.currentLineHeight(!0)*J+this._lineGap,this},_text:function(J,S,Z,K,fA){var IA=this;K=this._initOptions(S,Z,K),J=null==J?"":"".concat(J),K.wordSpacing&&(J=J.replace(/\s{2,}/g," "));var At=function(){K.structParent&&K.structParent.add(IA.struct(K.structType||"P",[IA.markStructureContent(K.structType||"P")]))};if(K.width){var nt=this._wrapper;nt||((nt=new wt(this,K)).on("line",fA),nt.on("firstLine",At)),this._wrapper=K.continued?nt:null,this._textOptions=K.continued?K:null,nt.wrap(J,K)}else{var Qt,ut=yA(J.split("\n"));try{for(ut.s();!(Qt=ut.n()).done;){var mt=Qt.value;At(),fA(mt,K)}}catch(xt){ut.e(xt)}finally{ut.f()}}return this},text:function(J,S,Z,K){return this._text(J,S,Z,K,this._line)},widthOfString:function(J){var S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(J,this._fontSize,S.features)+(S.characterSpacing||0)*(J.length-1)},heightOfString:function(J,S){var Z=this,K=this.x,fA=this.y;(S=this._initOptions(S)).height=1/0;var IA=S.lineGap||this._lineGap||0;this._text(J,this.x,this.y,S,function(){return Z.y+=Z.currentLineHeight(!0)+IA});var At=this.y-fA;return this.x=K,this.y=fA,At},list:function(J,S,Z,K,fA){var IA=this,At=(K=this._initOptions(S,Z,K)).listType||"bullet",nt=Math.round(this._font.ascender/1e3*this._fontSize),ut=nt/2,Qt=K.bulletRadius||nt/3,mt=K.textIndent||("bullet"===At?5*Qt:2*nt),xt=K.bulletIndent||("bullet"===At?8*Qt:2*nt),Nt=1,jt=[],Wt=[],Ee=[];!function pe(Ke){for(var Qn=1,Ve=0;Ve0&&void 0!==arguments[0]?arguments[0]:{},S=arguments.length>1?arguments[1]:void 0,Z=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof J&&(Z=J,J=null);var K=Object.assign({},Z);if(this._textOptions)for(var fA in this._textOptions)"continued"!==fA&&void 0===K[fA]&&(K[fA]=this._textOptions[fA]);return null!=J&&(this.x=J),null!=S&&(this.y=S),!1!==K.lineBreak&&(null==K.width&&(K.width=this.page.width-this.x-this.page.margins.right),K.width=Math.max(K.width,0)),K.columns||(K.columns=0),null==K.columnGap&&(K.columnGap=18),K},_line:function(J){var S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=arguments.length>2?arguments[2]:void 0;this._fragment(J,this.x,this.y,S);var K=S.lineGap||this._lineGap||0;return Z?this.y+=this.currentLineHeight(!0)+K:this.x+=this.widthOfString(J)},_fragment:function(J,S,Z,K){var IA,At,nt,ut,Qt,mt,fA=this;if(0!==(J="".concat(J).replace(/\n/g,"")).length){var Nt=K.wordSpacing||0,jt=K.characterSpacing||0;if(K.width)switch(K.align||"left"){case"right":Qt=this.widthOfString(J.replace(/\s+$/,""),K),S+=K.lineWidth-Qt;break;case"center":S+=K.lineWidth/2-K.textWidth/2;break;case"justify":mt=J.trim().split(/\s+/),Qt=this.widthOfString(J.replace(/\s+/g,""),K);var Wt=this.widthOfString(" ")+jt;Nt=Math.max(0,(K.lineWidth-Qt)/Math.max(1,mt.length-1)-Wt)}if("number"==typeof K.baseline)IA=-K.baseline;else{switch(K.baseline){case"svg-middle":IA=.5*this._font.xHeight;break;case"middle":case"svg-central":IA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":IA=this._font.descender;break;case"alphabetic":IA=0;break;case"mathematical":IA=.5*this._font.ascender;break;case"hanging":IA=.8*this._font.ascender;break;default:IA=this._font.ascender}IA=IA/1e3*this._fontSize}var Ke,Ee=K.textWidth+Nt*(K.wordCount-1)+jt*(J.length-1);if(null!=K.link&&this.link(S,Z,Ee,this.currentLineHeight(),K.link),null!=K.goTo&&this.goTo(S,Z,Ee,this.currentLineHeight(),K.goTo),null!=K.destination&&this.addNamedDestination(K.destination,"XYZ",S,Z,null),K.underline){this.save(),K.stroke||this.strokeColor.apply(this,U(this._fillColor||[]));var Ce=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Ce);var Ie=Z+this.currentLineHeight()-Ce;this.moveTo(S,Ie),this.lineTo(S+Ee,Ie),this.stroke(),this.restore()}if(K.strike){this.save(),K.stroke||this.strokeColor.apply(this,U(this._fillColor||[]));var on=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(on);var pe=Z+this.currentLineHeight()/2;this.moveTo(S,pe),this.lineTo(S+Ee,pe),this.stroke(),this.restore()}this.save(),K.oblique&&(Ke="number"==typeof K.oblique?-Math.tan(K.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,S,Z),this.transform(1,0,Ke,1,-Ke*IA,0),this.transform(1,0,0,1,-S,-Z)),this.transform(1,0,0,-1,0,this.page.height),Z=this.page.height-Z-IA,null==this.page.fonts[this._font.id]&&(this.page.fonts[this._font.id]=this._font.ref()),this.addContent("BT"),this.addContent("1 0 0 1 ".concat(Rt(S)," ").concat(Rt(Z)," Tm")),this.addContent("/".concat(this._font.id," ").concat(Rt(this._fontSize)," Tf"));var Qn=K.fill&&K.stroke?2:K.stroke?1:0;if(Qn&&this.addContent("".concat(Qn," Tr")),jt&&this.addContent("".concat(Rt(jt)," Tc")),Nt){mt=J.trim().split(/\s+/),Nt+=this.widthOfString(" ")+jt,Nt*=1e3/this._fontSize,At=[],ut=[];var dn,Ve=yA(mt);try{for(Ve.s();!(dn=Ve.n()).done;){var Pn=L(this._font.encode(dn.value,K.features),2),jn=Pn[1];At=At.concat(Pn[0]),ut=ut.concat(jn);var sr={},vr=ut[ut.length-1];for(var tr in vr)sr[tr]=vr[tr];sr.xAdvance+=Nt,ut[ut.length-1]=sr}}catch(Vr){Ve.e(Vr)}finally{Ve.f()}}else{var qn=L(this._font.encode(J,K.features),2);At=qn[0],ut=qn[1]}var Or=this._fontSize/1e3,mr=[],kr=0,jr=!1,ui=function(_n){if(kr<_n){var Ji=At.slice(kr,_n).join(""),Oi=ut[_n-1].xAdvance-ut[_n-1].advanceWidth;mr.push("<".concat(Ji,"> ").concat(Rt(-Oi)))}return kr=_n},Kr=function(_n){if(ui(_n),mr.length>0)return fA.addContent("[".concat(mr.join(" "),"] TJ")),mr.length=0};for(nt=0;nt3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof S&&(K=S,S=null),S=null!=(Qt=null!=S?S:K.x)?Qt:this.x,Z=null!=(mt=null!=Z?Z:K.y)?mt:this.y,"string"==typeof J&&(nt=this._imageRegistry[J]),nt||(nt=J.width&&J.height?J:this.openImage(J)),nt.obj||nt.embed(this),null==this.page.xobjects[nt.label]&&(this.page.xobjects[nt.label]=nt.obj);var xt=K.width||nt.width,Nt=K.height||nt.height;if(K.width&&!K.height){var jt=xt/nt.width;xt=nt.width*jt,Nt=nt.height*jt}else if(K.height&&!K.width){var Wt=Nt/nt.height;xt=nt.width*Wt,Nt=nt.height*Wt}else if(K.scale)xt=nt.width*K.scale,Nt=nt.height*K.scale;else if(K.fit){var Ee=L(K.fit,2);(ut=nt.width/nt.height)>(At=Ee[0])/(fA=Ee[1])?(xt=At,Nt=At/ut):(Nt=fA,xt=fA*ut)}else if(K.cover){var Ce=L(K.cover,2);(ut=nt.width/nt.height)>(At=Ce[0])/(fA=Ce[1])?(Nt=fA,xt=fA*ut):(xt=At,Nt=At/ut)}return(K.fit||K.cover)&&("center"===K.align?S=S+At/2-xt/2:"right"===K.align&&(S=S+At-xt),"center"===K.valign?Z=Z+fA/2-Nt/2:"bottom"===K.valign&&(Z=Z+fA-Nt)),null!=K.link&&this.link(S,Z,xt,Nt,K.link),null!=K.goTo&&this.goTo(S,Z,xt,Nt,K.goTo),null!=K.destination&&this.addNamedDestination(K.destination,"XYZ",S,Z,null),this.y===Z&&(this.y+=Nt),this.save(),this.transform(xt,0,0,-Nt,S,Z+Nt),this.addContent("/".concat(nt.label," Do")),this.restore(),this},openImage:function(J){var S;return"string"==typeof J&&(S=this._imageRegistry[J]),S||(S=ue.open(J,"I".concat(++this._imageCount)),"string"==typeof J&&(this._imageRegistry[J]=S)),S}},He={annotate:function(J,S,Z,K,fA){for(var IA in fA.Type="Annot",fA.Rect=this._convertRect(J,S,Z,K),fA.Border=[0,0,0],"Link"===fA.Subtype&&void 0===fA.F&&(fA.F=4),"Link"!==fA.Subtype&&null==fA.C&&(fA.C=this._normalizeColor(fA.color||[0,0,0])),delete fA.color,"string"==typeof fA.Dest&&(fA.Dest=new String(fA.Dest)),fA){var At=fA[IA];fA[IA[0].toUpperCase()+IA.slice(1)]=At}var nt=this.ref(fA);return this.page.annotations.push(nt),nt.end(),this},note:function(J,S,Z,K,fA){var IA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return IA.Subtype="Text",IA.Contents=new String(fA),IA.Name="Comment",null==IA.color&&(IA.color=[243,223,92]),this.annotate(J,S,Z,K,IA)},goTo:function(J,S,Z,K,fA){var IA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return IA.Subtype="Link",IA.A=this.ref({S:"GoTo",D:new String(fA)}),IA.A.end(),this.annotate(J,S,Z,K,IA)},link:function(J,S,Z,K,fA){var IA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(IA.Subtype="Link","number"==typeof fA){var At=this._root.data.Pages.data;if(!(fA>=0&&fA4&&void 0!==arguments[4]?arguments[4]:{},At=L(this._convertRect(J,S,Z,K),4),nt=At[0],ut=At[1],Qt=At[2],mt=At[3];return fA.QuadPoints=[nt,mt,Qt,mt,nt,ut,Qt,ut],fA.Contents=new String,this.annotate(J,S,Z,K,fA)},highlight:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return fA.Subtype="Highlight",null==fA.color&&(fA.color=[241,238,148]),this._markup(J,S,Z,K,fA)},underline:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return fA.Subtype="Underline",this._markup(J,S,Z,K,fA)},strike:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return fA.Subtype="StrikeOut",this._markup(J,S,Z,K,fA)},lineAnnotation:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return fA.Subtype="Line",fA.Contents=new String,fA.L=[J,this.page.height-S,Z,this.page.height-K],this.annotate(J,S,Z,K,fA)},rectAnnotation:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return fA.Subtype="Square",fA.Contents=new String,this.annotate(J,S,Z,K,fA)},ellipseAnnotation:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return fA.Subtype="Circle",fA.Contents=new String,this.annotate(J,S,Z,K,fA)},textAnnotation:function(J,S,Z,K,fA){var IA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return IA.Subtype="FreeText",IA.Contents=new String(fA),IA.DA=new String,this.annotate(J,S,Z,K,IA)},fileAnnotation:function(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},IA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},At=this.file(fA.src,Object.assign({hidden:!0},fA));return IA.Subtype="FileAttachment",IA.FS=At,IA.Contents?IA.Contents=new String(IA.Contents):At.data.Desc&&(IA.Contents=At.data.Desc),this.annotate(J,S,Z,K,IA)},_convertRect:function(J,S,Z,K){var fA=S;S+=K;var IA=J+Z,At=L(this._ctm,6),nt=At[0],ut=At[1],Qt=At[2],mt=At[3],xt=At[4],Nt=At[5];return[J=nt*J+Qt*S+xt,S=ut*J+mt*S+Nt,IA=nt*IA+Qt*fA+xt,fA=ut*IA+mt*fA+Nt]}},Se=function(){function vA(J,S,Z,K){var fA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};f(this,vA),this.document=J,this.options=fA,this.outlineData={},null!==K&&(this.outlineData.Dest=[K.dictionary,"Fit"]),null!==S&&(this.outlineData.Parent=S),null!==Z&&(this.outlineData.Title=new String(Z)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}return w(vA,[{key:"addItem",value:function(S){var K=new vA(this.document,this.dictionary,S,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(K),K}},{key:"endOutline",value:function(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);var Z=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=Z.dictionary;for(var K=0,fA=this.children.length;K0&&(IA.outlineData.Prev=this.children[K-1].dictionary),K0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},Ue=function(){function vA(J,S){f(this,vA),this.refs=[{pageRef:J,mcid:S}]}return w(vA,[{key:"push",value:function(S){var Z=this;S.refs.forEach(function(K){return Z.refs.push(K)})}}]),vA}(),en=function(){function vA(J,S){var Z=this,K=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},fA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;f(this,vA),this.document=J,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=J.ref({S});var IA=this.dictionary.data;(Array.isArray(K)||this._isValidChild(K))&&(fA=K,K={}),void 0!==K.title&&(IA.T=new String(K.title)),void 0!==K.lang&&(IA.Lang=new String(K.lang)),void 0!==K.alt&&(IA.Alt=new String(K.alt)),void 0!==K.expanded&&(IA.E=new String(K.expanded)),void 0!==K.actual&&(IA.ActualText=new String(K.actual)),this._children=[],fA&&(Array.isArray(fA)||(fA=[fA]),fA.forEach(function(At){return Z.add(At)}),this.end())}return w(vA,[{key:"add",value:function(S){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(S))throw new Error("Invalid structure element child");return S instanceof vA&&(S.setParent(this.dictionary),this._attached&&S.setAttached()),S instanceof Ue&&this._addContentToParentTree(S),"function"==typeof S&&this._attached&&(S=this._contentForClosure(S)),this._children.push(S),this}},{key:"_addContentToParentTree",value:function(S){var Z=this;S.refs.forEach(function(K){var fA=K.pageRef,IA=K.mcid;Z.document.getStructParentTree().get(fA.data.StructParents)[IA]=Z.dictionary})}},{key:"setParent",value:function(S){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=S,this._flush()}},{key:"setAttached",value:function(){var S=this;this._attached||(this._children.forEach(function(Z,K){Z instanceof vA&&Z.setAttached(),"function"==typeof Z&&(S._children[K]=S._contentForClosure(Z))}),this._attached=!0,this._flush())}},{key:"end",value:function(){this._ended||(this._children.filter(function(S){return S instanceof vA}).forEach(function(S){return S.end()}),this._ended=!0,this._flush())}},{key:"_isValidChild",value:function(S){return S instanceof vA||S instanceof Ue||"function"==typeof S}},{key:"_contentForClosure",value:function(S){var Z=this.document.markStructureContent(this.dictionary.data.S);return S(),this.document.endMarkedContent(),this._addContentToParentTree(Z),Z}},{key:"_isFlushable",value:function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(S){return"function"!=typeof S&&(!(S instanceof vA)||S._isFlushable())})}},{key:"_flush",value:function(){var S=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(Z){return S._flushChild(Z)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}},{key:"_flushChild",value:function(S){var Z=this;S instanceof vA&&this.dictionary.data.K.push(S.dictionary),S instanceof Ue&&S.refs.forEach(function(K){var fA=K.pageRef,IA=K.mcid;Z.dictionary.data.Pg||(Z.dictionary.data.Pg=fA),Z.dictionary.data.K.push(Z.dictionary.data.Pg===fA?IA:{Type:"MCR",Pg:fA,MCID:IA})})}}]),vA}(),Fn=function(vA){y(S,vA);var J=F(S);function S(){return f(this,S),J.apply(this,arguments)}return w(S,[{key:"_compareKeys",value:function(K,fA){return parseInt(K)-parseInt(fA)}},{key:"_keysName",value:function(){return"Nums"}},{key:"_dataForKey",value:function(K){return parseInt(K)}}]),S}(_),sn={initMarkings:function(J){this.structChildren=[],J.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(J){var S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===J||S&&S.mcid){var Z=0;for(this.page.markings.forEach(function(fA){(Z||fA.structContent||"Artifact"===fA.tag)&&Z++});Z--;)this.endMarkedContent()}if(!S)return this.page.markings.push({tag:J}),this.addContent("/".concat(J," BMC")),this;this.page.markings.push({tag:J,options:S});var K={};return void 0!==S.mcid&&(K.MCID=S.mcid),"Artifact"===J&&("string"==typeof S.type&&(K.Type=S.type),Array.isArray(S.bbox)&&(K.BBox=[S.bbox[0],this.page.height-S.bbox[3],S.bbox[2],this.page.height-S.bbox[1]]),Array.isArray(S.attached)&&S.attached.every(function(fA){return"string"==typeof fA})&&(K.Attached=S.attached)),"Span"===J&&(S.lang&&(K.Lang=new String(S.lang)),S.alt&&(K.Alt=new String(S.alt)),S.expanded&&(K.E=new String(S.expanded)),S.actual&&(K.ActualText=new String(S.actual))),this.addContent("/".concat(J," ").concat(bA.convert(K)," BDC")),this},markStructureContent:function(J){var S=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=this.getStructParentTree().get(this.page.structParentTreeKey),K=Z.length;Z.push(null),this.markContent(J,Y(Y({},S),{},{mcid:K}));var fA=new Ue(this.page.dictionary,K);return this.page.markings.slice(-1)[0].structContent=fA,fA},endMarkedContent:function(){return this.page.markings.pop(),this.addContent("EMC"),this},struct:function(J){return new en(this,J,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure:function(J){var S=this.getStructTreeRoot();return J.setParent(S),J.setAttached(),this.structChildren.push(J),S.data.K||(S.data.K=[]),S.data.K.push(J.dictionary),this},initPageMarkings:function(J){var S=this;J.forEach(function(Z){if(Z.structContent){var K=Z.structContent,fA=S.markStructureContent(Z.tag,Z.options);K.push(fA),S.page.markings.slice(-1)[0].structContent=K}else S.markContent(Z.tag,Z.options)})},endPageMarkings:function(J){var S=J.markings;return S.forEach(function(){return J.write("EMC")}),J.markings=[],S},getMarkInfoDictionary:function(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},getStructTreeRoot:function(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new Fn,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var J=this.getStructTreeRoot(),S=J.data.ParentTreeNextKey++;return J.data.ParentTree.add(S,[]),S},endMarkings:function(){var J=this._root.data.StructTreeRoot;J&&(J.end(),this.structChildren.forEach(function(S){return S.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},In={readOnly:1,required:2,noExport:4,multiline:4096,password:8192,toggleToOffButton:16384,radioButton:32768,pushButton:65536,combo:131072,edit:262144,sort:524288,multiSelect:2097152,noSpell:4194304},Yn={left:0,center:1,right:2},An={value:"V",defaultValue:"DV"},En={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},un_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},un_percent={nDec:0,sepComma:!1},$n={initForm:function(){if(!this._font)throw new Error("Must set a font before calling initForm method");this._acroform={fonts:{},defaultFont:this._font.name},this._acroform.fonts[this._font.id]=this._font.ref();var J={Fields:[],NeedAppearances:!0,DA:new String("/".concat(this._font.id," 0 Tf 0 g")),DR:{Font:{}}};J.DR.Font[this._font.id]=this._font.ref();var S=this.ref(J);return this._root.data.AcroForm=S,this},endAcroForm:function(){var J=this;if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");var S=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(Z){S[Z]=J._acroform.fonts[Z]}),this._root.data.AcroForm.data.Fields.forEach(function(Z){J._endChild(Z)}),this._root.data.AcroForm.end()}return this},_endChild:function(J){var S=this;return Array.isArray(J.data.Kids)&&(J.data.Kids.forEach(function(Z){S._endChild(Z)}),J.end()),this},formField:function(J){var Z=this._fieldDict(J,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),K=this.ref(Z);return this._addToParent(K),K},formAnnotation:function(J,S,Z,K,fA,IA){var nt=this._fieldDict(J,S,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return nt.Subtype="Widget",void 0===nt.F&&(nt.F=4),this.annotate(Z,K,fA,IA,nt),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(J,S,Z,K,fA){return this.formAnnotation(J,"text",S,Z,K,fA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(J,S,Z,K,fA){return this.formAnnotation(J,"pushButton",S,Z,K,fA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(J,S,Z,K,fA){return this.formAnnotation(J,"combo",S,Z,K,fA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(J,S,Z,K,fA){return this.formAnnotation(J,"list",S,Z,K,fA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(J,S,Z,K,fA){return this.formAnnotation(J,"radioButton",S,Z,K,fA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(J,S,Z,K,fA){return this.formAnnotation(J,"checkbox",S,Z,K,fA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(J){var S=J.data.Parent;return S?(S.data.Kids||(S.data.Kids=[]),S.data.Kids.push(J)):this._root.data.AcroForm.data.Fields.push(J),this},_fieldDict:function(J,S){var Z=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(!this._acroform)throw new Error("Call document.initForms() method before adding form elements to document");var K=Object.assign({},Z);return null!==S&&(K=this._resolveType(S,Z)),K=this._resolveFlags(K),K=this._resolveJustify(K),K=this._resolveFont(K),K=this._resolveStrings(K),K=this._resolveColors(K),(K=this._resolveFormat(K)).T=new String(J),K.parent&&(K.Parent=K.parent,delete K.parent),K},_resolveType:function(J,S){if("text"===J)S.FT="Tx";else if("pushButton"===J)S.FT="Btn",S.pushButton=!0;else if("radioButton"===J)S.FT="Btn",S.radioButton=!0;else if("checkbox"===J)S.FT="Btn";else if("combo"===J)S.FT="Ch",S.combo=!0;else{if("list"!==J)throw new Error("Invalid form annotation type '".concat(J,"'"));S.FT="Ch"}return S},_resolveFormat:function(J){var S=J.format;if(S&&S.type){var Z,K,fA="";if(void 0!==En[S.type])Z="AFSpecial_Keystroke",K="AFSpecial_Format",fA=En[S.type];else{var IA=S.type.charAt(0).toUpperCase()+S.type.slice(1);if(Z="AF".concat(IA,"_Keystroke"),K="AF".concat(IA,"_Format"),"date"===S.type)Z+="Ex",fA=String(S.param);else if("time"===S.type)fA=String(S.param);else if("number"===S.type){var At=Object.assign({},un_number,S);fA=String([String(At.nDec),At.sepComma?"0":"1",'"'+At.negStyle+'"',"null",'"'+At.currency+'"',String(At.currencyPrepend)].join(","))}else if("percent"===S.type){var nt=Object.assign({},un_percent,S);fA=String([String(nt.nDec),nt.sepComma?"0":"1"].join(","))}}J.AA=J.AA?J.AA:{},J.AA.K={S:"JavaScript",JS:new String("".concat(Z,"(").concat(fA,");"))},J.AA.F={S:"JavaScript",JS:new String("".concat(K,"(").concat(fA,");"))}}return delete J.format,J},_resolveColors:function(J){var S=this._normalizeColor(J.backgroundColor);return S&&(J.MK||(J.MK={}),J.MK.BG=S),(S=this._normalizeColor(J.borderColor))&&(J.MK||(J.MK={}),J.MK.BC=S),delete J.backgroundColor,delete J.borderColor,J},_resolveFlags:function(J){var S=0;return Object.keys(J).forEach(function(Z){In[Z]&&(S|=In[Z],delete J[Z])}),0!==S&&(J.Ff=J.Ff?J.Ff:0,J.Ff|=S),J},_resolveJustify:function(J){var S=0;return void 0!==J.align&&("number"==typeof Yn[J.align]&&(S=Yn[J.align]),delete J.align),0!==S&&(J.Q=S),J},_resolveFont:function(J){if(null===this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){J.DR={Font:{}};var S=J.fontSize||0;J.DR.Font[this._font.id]=this._font.ref(),J.DA=new String("/".concat(this._font.id," ").concat(S," Tf 0 g"))}return J},_resolveStrings:function(J){var S=[];function Z(K){if(Array.isArray(K))for(var fA=0;fA1&&void 0!==arguments[1]?arguments[1]:{};S.name=S.name||J;var K,Z={Type:"EmbeddedFile",Params:{}};if(!J)throw new Error("No src specified");if(i.isBuffer(J))K=J;else if(J instanceof ArrayBuffer)K=i.from(new Uint8Array(J));else{var fA;if(fA=/^data:(.*);base64,(.*)$/.exec(J))fA[1]&&(Z.Subtype=fA[1].replace("/","#2F")),K=i.from(fA[2],"base64");else{if(!(K=e.readFileSync(J)))throw new Error("Could not read contents of file at filepath ".concat(J));var IA=e.statSync(J),nt=IA.ctime;Z.Params.CreationDate=IA.birthtime,Z.Params.ModDate=nt}}S.creationDate instanceof Date&&(Z.Params.CreationDate=S.creationDate),S.modifiedDate instanceof Date&&(Z.Params.ModDate=S.modifiedDate),S.type&&(Z.Subtype=S.type.replace("/","#2F"));var Qt,ut=h.default.MD5(h.default.lib.WordArray.create(new Uint8Array(K)));Z.Params.CheckSum=new String(ut),Z.Params.Size=K.byteLength,this._fileRegistry||(this._fileRegistry={});var mt=this._fileRegistry[S.name];mt&&Pr(Z,mt)?Qt=mt.ref:((Qt=this.ref(Z)).end(K),this._fileRegistry[S.name]=Y(Y({},Z),{},{ref:Qt}));var xt={Type:"Filespec",F:new String(S.name),EF:{F:Qt},UF:new String(S.name)};S.description&&(xt.Desc=new String(S.description));var Nt=this.ref(xt);return Nt.end(),S.hidden||this.addNamedEmbeddedFile(S.name,Nt),Nt}};function Pr(vA,J){return vA.Subtype===J.Subtype&&vA.Params.CheckSum.toString()===J.Params.CheckSum.toString()&&vA.Params.Size===J.Params.Size&&vA.Params.CreationDate===J.Params.CreationDate&&vA.Params.ModDate===J.Params.ModDate}var or=function(vA){y(S,vA);var J=F(S);function S(){var Z,K=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(f(this,S),(Z=J.call(this,K)).options=K,K.pdfVersion){case"1.4":Z.version=1.4;break;case"1.5":Z.version=1.5;break;case"1.6":Z.version=1.6;break;case"1.7":case"1.7ext3":Z.version=1.7;break;default:Z.version=1.3}Z.compress=null==Z.options.compress||Z.options.compress,Z._pageBuffer=[],Z._pageBufferStart=0,Z._offsets=[],Z._waiting=0,Z._ended=!1,Z._offset=0;var fA=Z.ref({Type:"Pages",Count:0,Kids:[]}),IA=Z.ref({Dests:new W});if(Z._root=Z.ref({Type:"Catalog",Pages:fA,Names:IA}),Z.options.lang&&(Z._root.data.Lang=new String(Z.options.lang)),Z.page=null,Z.initColor(),Z.initVector(),Z.initFonts(K.font),Z.initText(),Z.initImages(),Z.initOutline(),Z.initMarkings(K),Z.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},Z.options.info)for(var At in Z.options.info)Z.info[At]=Z.options.info[At];return Z.options.displayTitle&&(Z._root.data.ViewerPreferences=Z.ref({DisplayDocTitle:!0})),Z._id=b.generateFileID(Z.info),Z._security=b.create(P(Z),K),Z._write("%PDF-".concat(Z.version)),Z._write("%\xff\xff\xff\xff"),!1!==Z.options.autoFirstPage&&Z.addPage(),Z}return w(S,[{key:"addPage",value:function(K){null==K&&(K=this.options),this.options.bufferPages||this.flushPages(),this.page=new $(this,K),this._pageBuffer.push(this.page);var fA=this._root.data.Pages.data;return fA.Kids.push(this.page.dictionary),fA.Count++,this.x=this.page.margins.left,this.y=this.page.margins.top,this._ctm=[1,0,0,1,0,0],this.transform(1,0,0,-1,0,this.page.height),this.emit("pageAdded"),this}},{key:"continueOnNewPage",value:function(K){var fA=this.endPageMarkings(this.page);return this.addPage(K),this.initPageMarkings(fA),this}},{key:"bufferedPageRange",value:function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}},{key:"switchToPage",value:function(K){var fA;if(!(fA=this._pageBuffer[K-this._pageBufferStart]))throw new Error("switchToPage(".concat(K,") out of bounds, current buffer covers pages ").concat(this._pageBufferStart," to ").concat(this._pageBufferStart+this._pageBuffer.length-1));return this.page=fA}},{key:"flushPages",value:function(){var K=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=K.length;var IA,fA=yA(K);try{for(fA.s();!(IA=fA.n()).done;){var At=IA.value;this.endPageMarkings(At),At.end()}}catch(nt){fA.e(nt)}finally{fA.f()}}},{key:"addNamedDestination",value:function(K){for(var fA=arguments.length,IA=new Array(fA>1?fA-1:0),At=1;At>L&q]},getCombiningClass:function(mA){var nA=d.get(mA);return y.combiningClasses[nA>>U&BA]},getScript:function(mA){var nA=d.get(mA);return y.scripts[nA>>eA&pA]},getEastAsianWidth:function(mA){var nA=d.get(mA);return y.eaw[nA>>10&lA]},getNumericValue:function(mA){var nA=d.get(mA),EA=1023&nA;if(0===EA)return null;if(EA<=50)return EA-1;if(EA<480)return((EA>>4)-12)/(1+(15&EA));if(EA<768){nA=(EA>>5)-14;for(var st=2+(31&EA);st>0;)nA*=10,st--;return nA}nA=(EA>>2)-191;for(var TA=1+(3&EA);TA>0;)nA*=60,TA--;return nA},isAlphabetic:uA,isDigit:QA,isPunctuation:NA,isLowerCase:bA,isUpperCase:XA,isTitleCase:X,isWhiteSpace:O,isBaseForm:$,isMark:W});I.default=Q},4781:function(T,I,n){"use strict";n(7042),n(6992),n(1539),n(2472),n(2990),n(8927),n(3105),n(5035),n(4345),n(7174),n(2846),n(4731),n(7209),n(6319),n(8867),n(7789),n(3739),n(9368),n(4483),n(2056),n(3462),n(678),n(7462),n(3824),n(5021),n(2974),n(5016),n(9135);var c=n(311),o=n(1753).swap32LE;T.exports=function(){function m(N){var F="function"==typeof N.readUInt32BE&&"function"==typeof N.slice;if(F||N instanceof Uint8Array){var L;if(F)this.highStart=N.readUInt32LE(0),this.errorValue=N.readUInt32LE(4),L=N.readUInt32LE(8),N=N.slice(12);else{var U=new DataView(N.buffer);this.highStart=U.getUint32(0,!0),this.errorValue=U.getUint32(4,!0),L=U.getUint32(8,!0),N=N.subarray(12)}N=c(N,new Uint8Array(L)),N=c(N,new Uint8Array(L)),o(N),this.data=new Uint32Array(N.buffer)}else{var eA=N;this.data=eA.data,this.highStart=eA.highStart,this.errorValue=eA.errorValue}}return m.prototype.get=function(F){return F<0||F>1114111?this.errorValue:F<55296||F>56319&&F<=65535?this.data[(this.data[F>>5]<<2)+(31&F)]:F<=65535?this.data[(this.data[2048+(F-55296>>5)]<<2)+(31&F)]:F>11)]+(F>>5&63)]<<2)+(31&F)]:this.data[this.data.length-4]},m}()},1753:function(T,I,n){"use strict";n(6992),n(1539),n(2472),n(2990),n(8927),n(3105),n(5035),n(4345),n(7174),n(2846),n(4731),n(7209),n(6319),n(8867),n(7789),n(3739),n(9368),n(4483),n(2056),n(3462),n(678),n(7462),n(3824),n(5021),n(2974),n(5016),n(9135);var c=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],i=function(a,B,E){var u=a[B];a[B]=a[E],a[E]=u};T.exports={swap32LE:function(a){c&&function(a){for(var B=a.length,E=0;E/)){for(;at=$A();)VA.childNodes.push(at),at.parentNode=VA,VA.textContent+=3===at.nodeType||4===at.nodeType?at.nodeValue:at.textContent;return(LA=tt.match(/^<\/([\w:.-]+)\s*>/,!0))?(LA[1]===VA.nodeName||(ie('parseXml: tag not matching, opening "'+VA.nodeName+'" & closing "'+LA[1]+'"'),zA=!0),VA):(ie('parseXml: tag not matching, opening "'+VA.nodeName+'" & not closing'),zA=!0,VA)}if(tt.match(/^\/>/))return VA;ie('parseXml: tag could not be parsed "'+VA.nodeName+'"'),zA=!0}else{if(LA=tt.match(/^/))return new YA(null,8,LA,zA);if(LA=tt.match(/^<\?[\s\S]*?\?>/))return new YA(null,7,LA,zA);if(LA=tt.match(/^/))return new YA(null,10,LA,zA);if(LA=tt.match(/^/,!0))return new YA("#cdata-section",4,LA[1],zA);if(LA=tt.match(/^([^<]+)/,!0))return new YA("#text",3,q(LA[1]),zA)}};PA=HA();)1!==PA.nodeType||UA?(1===PA.nodeType||3===PA.nodeType&&""!==PA.nodeValue.trim())&&ie("parseXml: data after document end has been discarded"):UA=PA;return tt.matchAll()&&ie("parseXml: parsing error"),UA}function q(ZA){return ZA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(YA,tt,UA,PA){return tt?String.fromCharCode(parseInt(tt,10)):UA?String.fromCharCode(parseInt(UA,16)):PA&&C[PA]?String.fromCharCode(C[PA]):YA})}function BA(ZA){var YA,tt;return ZA=(ZA||"").trim(),(YA=E[ZA])?tt=[YA.slice(),1]:(YA=ZA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(YA[1]=parseInt(YA[1]),YA[2]=parseInt(YA[2]),YA[3]=parseInt(YA[3]),YA[4]=parseFloat(YA[4]),YA[1]<256&&YA[2]<256&&YA[3]<256&&YA[4]<=1&&(tt=[YA.slice(1,4),YA[4]])):(YA=ZA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(YA[1]=parseInt(YA[1]),YA[2]=parseInt(YA[2]),YA[3]=parseInt(YA[3]),YA[1]<256&&YA[2]<256&&YA[3]<256&&(tt=[YA.slice(1,4),1])):(YA=ZA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(YA[1]=2.55*parseFloat(YA[1]),YA[2]=2.55*parseFloat(YA[2]),YA[3]=2.55*parseFloat(YA[3]),YA[1]<256&&YA[2]<256&&YA[3]<256&&(tt=[YA.slice(1,4),1])):(YA=ZA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?tt=[[parseInt(YA[1],16),parseInt(YA[2],16),parseInt(YA[3],16)],1]:(YA=ZA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(tt=[[17*parseInt(YA[1],16),17*parseInt(YA[2],16),17*parseInt(YA[3],16)],1]),an?an(tt,ZA):tt}function pA(ZA,YA,tt){var UA=ZA[0].slice(),PA=ZA[1]*YA;if(tt){for(var zA=0;zA=0;YA--)ZA=lA(Jn[YA].savedMatrix,ZA);return ZA}function yA(){return(new WA).M(0,0).L(o.page.width,0).L(o.page.width,o.page.height).L(0,o.page.height).transform(FA(gA())).getBoundingBox()}function FA(ZA){var YA=ZA[0]*ZA[3]-ZA[1]*ZA[2];return[ZA[3]/YA,-ZA[1]/YA,-ZA[2]/YA,ZA[0]/YA,(ZA[2]*ZA[5]-ZA[3]*ZA[4])/YA,(ZA[1]*ZA[4]-ZA[0]*ZA[5])/YA]}function _(ZA){var YA=bA(ZA[0]),tt=bA(ZA[1]),UA=bA(ZA[2]),PA=bA(ZA[3]),zA=bA(ZA[4]),HA=bA(ZA[5]);if(NA(YA*PA-tt*UA,0))return[YA,tt,UA,PA,zA,HA]}function MA(ZA){var YA=ZA[2]||0,tt=ZA[1]||0,UA=ZA[0]||0;if(QA(YA,0)&&QA(tt,0))return[];if(QA(YA,0))return[-UA/tt];var PA=tt*tt-4*YA*UA;return NA(PA,0)&&PA>0?[(-tt+Math.sqrt(PA))/(2*YA),(-tt-Math.sqrt(PA))/(2*YA)]:QA(PA,0)?[-tt/(2*YA)]:[]}function uA(ZA,YA){return(YA[0]||0)+(YA[1]||0)*ZA+(YA[2]||0)*ZA*ZA+(YA[3]||0)*ZA*ZA*ZA}function QA(ZA,YA){return Math.abs(ZA-YA)<1e-10}function NA(ZA,YA){return Math.abs(ZA-YA)>=1e-10}function bA(ZA){return ZA>-1e21&&ZA<1e21?Math.round(1e6*ZA)/1e6:0}function X(ZA){for(var UA,YA=new It((ZA||"").trim()),tt=[1,0,0,1,0,0];UA=YA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var PA=UA[1],zA=[],HA=new It(UA[2].trim()),$A=void 0;$A=HA.matchNumber();)zA.push(Number($A)),HA.matchSeparator();if("matrix"===PA&&6===zA.length)tt=lA(tt,[zA[0],zA[1],zA[2],zA[3],zA[4],zA[5]]);else if("translate"===PA&&2===zA.length)tt=lA(tt,[1,0,0,1,zA[0],zA[1]]);else if("translate"===PA&&1===zA.length)tt=lA(tt,[1,0,0,1,zA[0],0]);else if("scale"===PA&&2===zA.length)tt=lA(tt,[zA[0],0,0,zA[1],0,0]);else if("scale"===PA&&1===zA.length)tt=lA(tt,[zA[0],0,0,zA[0],0,0]);else if("rotate"===PA&&3===zA.length){var LA=zA[0]*Math.PI/180;tt=lA(tt,[1,0,0,1,zA[1],zA[2]],[Math.cos(LA),Math.sin(LA),-Math.sin(LA),Math.cos(LA),0,0],[1,0,0,1,-zA[1],-zA[2]])}else if("rotate"===PA&&1===zA.length){var at=zA[0]*Math.PI/180;tt=lA(tt,[Math.cos(at),Math.sin(at),-Math.sin(at),Math.cos(at),0,0])}else if("skewX"===PA&&1===zA.length){var VA=zA[0]*Math.PI/180;tt=lA(tt,[1,0,Math.tan(VA),1,0,0])}else{if("skewY"!==PA||1!==zA.length)return;var dt=zA[0]*Math.PI/180;tt=lA(tt,[1,Math.tan(dt),0,1,0,0])}YA.matchSeparator()}if(!YA.matchAll())return tt}function O(ZA,YA,tt,UA,PA,zA){var HA=(ZA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],$A=HA[1]||HA[4]||"meet",VA=YA/UA,dt=tt/PA,St={Min:0,Mid:.5,Max:1}[HA[2]||"Mid"]-(zA||0),Pt={Min:0,Mid:.5,Max:1}[HA[3]||"Mid"]-(zA||0);return"slice"===$A?dt=VA=Math.max(VA,dt):"meet"===$A&&(dt=VA=Math.min(VA,dt)),[VA,0,0,dt,St*(YA-UA*VA),Pt*(tt-PA*dt)]}function $(ZA){var YA=Object.create(null);ZA=(ZA||"").trim().split(/;/);for(var tt=0;tthe&&(Jt=he,he=Be,Be=Jt),qt>ue&&(Jt=ue,ue=qt,qt=Jt);for(var De=MA(St),He=0;He=0&&De[He]<=1){var Se=uA(De[He],VA);Sehe&&(he=Se)}for(var Fe=MA(Pt),Ue=0;Ue=0&&Fe[Ue]<=1){var en=uA(Fe[Ue],dt);enue&&(ue=en)}return[Be,qt,he,ue]},this.getPointAtLength=function(Jt){if(QA(Jt,0))return this.startPoint;if(QA(Jt,this.totalLength))return this.endPoint;if(!(Jt<0||Jt>this.totalLength))for(var Be=1;Be<=at;Be++){var qt=Kt[Be-1],he=Kt[Be];if(qt<=Jt&&Jt<=he){var ue=(Be-(he-Jt)/(he-qt))/at,De=uA(ue,VA),He=uA(ue,dt),Se=uA(ue,St),Fe=uA(ue,Pt);return[De,He,Math.atan2(Fe,Se)]}}}},JA=function(YA,tt,UA,PA){this.totalLength=Math.sqrt((UA-YA)*(UA-YA)+(PA-tt)*(PA-tt)),this.startPoint=[YA,tt,Math.atan2(PA-tt,UA-YA)],this.endPoint=[UA,PA,Math.atan2(PA-tt,UA-YA)],this.getBoundingBox=function(){return[Math.min(this.startPoint[0],this.endPoint[0]),Math.min(this.startPoint[1],this.endPoint[1]),Math.max(this.startPoint[0],this.endPoint[0]),Math.max(this.startPoint[1],this.endPoint[1])]},this.getPointAtLength=function(zA){if(zA>=0&&zA<=this.totalLength){var HA=zA/this.totalLength||0;return[this.startPoint[0]+HA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+HA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},WA=function ZA(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var zA,HA,$A,YA=0,tt=0,UA=0,PA=0;this.move=function(LA,at){return YA=UA=LA,tt=PA=at,null},this.line=function(LA,at){var VA=new JA(UA,PA,LA,at);return UA=LA,PA=at,VA},this.curve=function(LA,at,VA,dt,St,Pt){var Kt=new ht(UA,PA,LA,at,VA,dt,St,Pt);return UA=St,PA=Pt,Kt},this.close=function(){var LA=new JA(UA,PA,YA,tt);return UA=YA,PA=tt,LA},this.addCommand=function(LA){this.pathCommands.push(LA);var at=this[LA[0]].apply(this,LA.slice(3));at&&(at.hasStart=LA[1],at.hasEnd=LA[2],this.startPoint=this.startPoint||at.startPoint,this.endPoint=at.endPoint,this.pathSegments.push(at),this.totalLength+=at.totalLength)},this.M=function(LA,at){return this.addCommand(["move",!0,!0,LA,at]),zA="M",this},this.m=function(LA,at){return this.M(UA+LA,PA+at)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),zA="Z",this},this.L=function(LA,at){return this.addCommand(["line",!0,!0,LA,at]),zA="L",this},this.l=function(LA,at){return this.L(UA+LA,PA+at)},this.H=function(LA){return this.L(LA,PA)},this.h=function(LA){return this.L(UA+LA,PA)},this.V=function(LA){return this.L(UA,LA)},this.v=function(LA){return this.L(UA,PA+LA)},this.C=function(LA,at,VA,dt,St,Pt){return this.addCommand(["curve",!0,!0,LA,at,VA,dt,St,Pt]),zA="C",HA=VA,$A=dt,this},this.c=function(LA,at,VA,dt,St,Pt){return this.C(UA+LA,PA+at,UA+VA,PA+dt,UA+St,PA+Pt)},this.S=function(LA,at,VA,dt){return this.C(UA+("C"===zA?UA-HA:0),PA+("C"===zA?PA-$A:0),LA,at,VA,dt)},this.s=function(LA,at,VA,dt){return this.C(UA+("C"===zA?UA-HA:0),PA+("C"===zA?PA-$A:0),UA+LA,PA+at,UA+VA,PA+dt)},this.Q=function(LA,at,VA,dt){return this.addCommand(["curve",!0,!0,UA+.6666666666666666*(LA-UA),PA+2/3*(at-PA),VA+2/3*(LA-VA),dt+2/3*(at-dt),VA,dt]),zA="Q",HA=LA,$A=at,this},this.q=function(LA,at,VA,dt){return this.Q(UA+LA,PA+at,UA+VA,PA+dt)},this.T=function(LA,at){return this.Q(UA+("Q"===zA?UA-HA:0),PA+("Q"===zA?PA-$A:0),LA,at)},this.t=function(LA,at){return this.Q(UA+("Q"===zA?UA-HA:0),PA+("Q"===zA?PA-$A:0),UA+LA,PA+at)},this.A=function(LA,at,VA,dt,St,Pt,Kt){if(QA(LA,0)||QA(at,0))this.addCommand(["line",!0,!0,Pt,Kt]);else{VA*=Math.PI/180,LA=Math.abs(LA),at=Math.abs(at),dt=1*!!dt,St=1*!!St;var Xt=Math.cos(VA)*(UA-Pt)/2+Math.sin(VA)*(PA-Kt)/2,re=Math.cos(VA)*(PA-Kt)/2-Math.sin(VA)*(UA-Pt)/2,wt=Xt*Xt/(LA*LA)+re*re/(at*at);wt>1&&(LA*=Math.sqrt(wt),at*=Math.sqrt(wt));var Rt=Math.sqrt(Math.max(0,LA*LA*at*at-LA*LA*re*re-at*at*Xt*Xt)/(LA*LA*re*re+at*at*Xt*Xt)),Vt=(dt===St?-1:1)*Rt*LA*re/at,Jt=(dt===St?1:-1)*Rt*at*Xt/LA,Be=Math.cos(VA)*Vt-Math.sin(VA)*Jt+(UA+Pt)/2,qt=Math.sin(VA)*Vt+Math.cos(VA)*Jt+(PA+Kt)/2,he=Math.atan2((re-Jt)/at,(Xt-Vt)/LA),ue=Math.atan2((-re-Jt)/at,(-Xt-Vt)/LA);0===St&&ue-he>0?ue-=2*Math.PI:1===St&&ue-he<0&&(ue+=2*Math.PI);for(var De=Math.ceil(Math.abs(ue-he)/(Math.PI/Hn)),He=0;HeLA[2]&&(LA[2]=dt[2]),dt[1]LA[3]&&(LA[3]=dt[3]);return LA[0]===1/0&&(LA[0]=0),LA[1]===1/0&&(LA[1]=0),LA[2]===-1/0&&(LA[2]=0),LA[3]===-1/0&&(LA[3]=0),LA},this.getPointAtLength=function(LA){if(LA>=0&&LA<=this.totalLength){for(var at,VA=0;VAPA.selector.specificity||(YA[zA]=PA.css[zA],tt[zA]=PA.selector.specificity)}return YA}(YA),this.allowedChildren=[],this.attr=function(zA){if("function"==typeof YA.getAttribute)return YA.getAttribute(zA)},this.resolveUrl=function(zA){var HA=(zA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],$A=HA[1]||HA[3]||HA[5]||HA[7],LA=HA[2]||HA[4]||HA[6]||HA[8];if(LA){if(!$A){var at=l.getElementById(LA);if(at)return-1===this.stack.indexOf(at)?at:void ie('SVGtoPDF: loop of circular references for id "'+LA+'"')}if($e){var VA=kt[$A];if(!VA){(function XA(ZA){return"object"==typeof ZA&&null!==ZA&&"number"==typeof ZA.length})(VA=$e($A))||(VA=[VA]);for(var dt=0;dt=0&&$A[3]>=0?$A:HA},this.getPercent=function(zA,HA){var $A=this.attr(zA),LA=new It(($A||"").trim()),dt=LA.matchNumber();return!dt||(LA.match("%")&&(dt*=.01),LA.matchAll())?HA:Math.max(0,Math.min(1,dt))},this.chooseValue=function(zA){for(var HA=0;HA=0&&(LA=VA);break;case"stroke-miterlimit":null!=(VA=parseFloat($A))&&VA>=1&&(LA=VA);break;case"word-spacing":case"letter-spacing":LA=this.computeLength($A,this.getViewport());break;case"stroke-dashoffset":if(null!=(LA=this.computeLength($A,this.getViewport()))&&LA<0)for(var re=this.get("stroke-dasharray"),wt=0;wt0?HA:this.ref?this.ref.getChildren():[]},this.getPaint=function(HA,$A,LA,at){var VA="userSpaceOnUse"!==this.attr("patternUnits"),dt="objectBoundingBox"===this.attr("patternContentUnits"),St=this.getLength("x",VA?1:this.getParentVWidth(),0),Pt=this.getLength("y",VA?1:this.getParentVHeight(),0),Kt=this.getLength("width",VA?1:this.getParentVWidth(),0),Xt=this.getLength("height",VA?1:this.getParentVHeight(),0);dt&&!VA?(St=(St-HA[0])/(HA[2]-HA[0])||0,Pt=(Pt-HA[1])/(HA[3]-HA[1])||0,Kt=Kt/(HA[2]-HA[0])||0,Xt=Xt/(HA[3]-HA[1])||0):!dt&&VA&&(St=HA[0]+St*(HA[2]-HA[0]),Pt=HA[1]+Pt*(HA[3]-HA[1]),Kt*=HA[2]-HA[0],Xt*=HA[3]-HA[1]);var re=this.getViewbox("viewBox",[0,0,Kt,Xt]),Rt=lA(O((this.attr("preserveAspectRatio")||"").trim(),Kt,Xt,re[2],re[3],0),[1,0,0,1,-re[0],-re[1]]),Vt=X(this.attr("patternTransform"));if(dt&&(Vt=lA([HA[2]-HA[0],0,0,HA[3]-HA[1],HA[0],HA[1]],Vt)),(Vt=_(Vt=lA(Vt,[1,0,0,1,St,Pt])))&&(Rt=_(Rt))&&(Kt=bA(Kt))&&(Xt=bA(Xt))){var Jt=w([0,0,Kt,Xt]);return o.transform.apply(o,Rt),this.drawChildren(LA,at),Q(Jt),[y(Jt,Kt,Xt,Vt),$A]}return UA?[UA[0],UA[1]*$A]:void 0},this.getVWidth=function(){var HA="userSpaceOnUse"!==this.attr("patternUnits"),$A=this.getLength("width",HA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,$A,0])[2]},this.getVHeight=function(){var HA="userSpaceOnUse"!==this.attr("patternUnits"),$A=this.getLength("height",HA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,$A])[3]}},RA=function ZA(YA,tt,UA){rt.call(this,YA,tt),this.allowedChildren=["stop"],this.ref=function(){var HA=this.getUrl("href")||this.getUrl("xlink:href");if(HA&&HA.nodeName===YA.nodeName)return new ZA(HA,tt,UA)}.call(this);var PA=this.attr;this.attr=function(HA){var $A=PA.call(this,HA);return null!=$A||"href"===HA||"xlink:href"===HA?$A:this.ref?this.ref.attr(HA):null};var zA=this.getChildren;this.getChildren=function(){var HA=zA.call(this);return HA.length>0?HA:this.ref?this.ref.getChildren():[]},this.getPaint=function(HA,$A,LA,at){var VA=this.getChildren();if(0!==VA.length){if(1===VA.length){var dt=VA[0],St=dt.get("stop-color");return"none"===St?void 0:pA(St,dt.get("stop-opacity")*$A,at)}var re,wt,Rt,Vt,Jt,Be,Pt="userSpaceOnUse"!==this.attr("gradientUnits"),Kt=X(this.attr("gradientTransform")),Xt=this.attr("spreadMethod"),qt=0,he=0,ue=1;if(Pt&&(Kt=lA([HA[2]-HA[0],0,0,HA[3]-HA[1],HA[0],HA[1]],Kt)),Kt=_(Kt)){if("linearGradient"===this.name)wt=this.getLength("x1",Pt?1:this.getVWidth(),0),Rt=this.getLength("x2",Pt?1:this.getVWidth(),Pt?1:this.getVWidth()),Vt=this.getLength("y1",Pt?1:this.getVHeight(),0),Jt=this.getLength("y2",Pt?1:this.getVHeight(),0);else{Rt=this.getLength("cx",Pt?1:this.getVWidth(),Pt?.5:.5*this.getVWidth()),Jt=this.getLength("cy",Pt?1:this.getVHeight(),Pt?.5:.5*this.getVHeight()),Be=this.getLength("r",Pt?1:this.getViewport(),Pt?.5:.5*this.getViewport()),wt=this.getLength("fx",Pt?1:this.getVWidth(),Rt),Vt=this.getLength("fy",Pt?1:this.getVHeight(),Jt),Be<0&&ie("SvgElemGradient: negative r value");var De=Math.sqrt(Math.pow(Rt-wt,2)+Math.pow(Jt-Vt,2)),He=1;De>Be&&(wt=Rt+(wt-Rt)*(He=Be/De),Vt=Jt+(Vt-Jt)*He),Be=Math.max(Be,De*He*1.000001)}if("reflect"===Xt||"repeat"===Xt){var Se=FA(Kt),Fe=cA([HA[0],HA[1]],Se),Ue=cA([HA[2],HA[1]],Se),en=cA([HA[2],HA[3]],Se),Fn=cA([HA[0],HA[3]],Se);"linearGradient"===this.name?(qt=Math.max((Fe[0]-Rt)*(Rt-wt)+(Fe[1]-Jt)*(Jt-Vt),(Ue[0]-Rt)*(Rt-wt)+(Ue[1]-Jt)*(Jt-Vt),(en[0]-Rt)*(Rt-wt)+(en[1]-Jt)*(Jt-Vt),(Fn[0]-Rt)*(Rt-wt)+(Fn[1]-Jt)*(Jt-Vt))/(Math.pow(Rt-wt,2)+Math.pow(Jt-Vt,2)),he=Math.max((Fe[0]-wt)*(wt-Rt)+(Fe[1]-Vt)*(Vt-Jt),(Ue[0]-wt)*(wt-Rt)+(Ue[1]-Vt)*(Vt-Jt),(en[0]-wt)*(wt-Rt)+(en[1]-Vt)*(Vt-Jt),(Fn[0]-wt)*(wt-Rt)+(Fn[1]-Vt)*(Vt-Jt))/(Math.pow(Rt-wt,2)+Math.pow(Jt-Vt,2))):qt=Math.sqrt(Math.max(Math.pow(Fe[0]-Rt,2)+Math.pow(Fe[1]-Jt,2),Math.pow(Ue[0]-Rt,2)+Math.pow(Ue[1]-Jt,2),Math.pow(en[0]-Rt,2)+Math.pow(en[1]-Jt,2),Math.pow(Fn[0]-Rt,2)+Math.pow(Fn[1]-Jt,2)))/Be-1,qt=Math.ceil(qt+.5),ue=(he=Math.ceil(he+.5))+1+qt}re="linearGradient"===this.name?o.linearGradient(wt-he*(Rt-wt),Vt-he*(Jt-Vt),Rt+qt*(Rt-wt),Jt+qt*(Jt-Vt)):o.radialGradient(wt,Vt,0,Rt,Jt,Be+qt*Be);for(var sn=0;sn0&&re.stop((sn+0)/ue,un[0],un[1]),re.stop((sn+In)/(qt+he+1),un[0],un[1]),An===VA.length-1&&In<1&&re.stop((sn+1)/ue,un[0],un[1])}return re.setTransform.apply(re,Kt),[re,1]}return UA?[UA[0],UA[1]*$A]:void 0}}},rA=function(YA,tt){xA.call(this,YA,tt),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(UA,PA){if("hidden"!==this.get("visibility")&&this.shape){if(o.save(),this.transform(),this.clip(),UA)this.shape.insertInDocument(),L(u.white),o.fill(this.get("clip-rule"));else{var HA;this.mask()&&(HA=w(yA()));var $A=this.shape.getSubPaths(),LA=this.getFill(UA,PA),at=this.getStroke(UA,PA),VA=this.get("stroke-width"),dt=this.get("stroke-linecap");if(LA||at){if(LA&&L(LA),at){for(var St=0;St<$A.length;St++)if(QA($A[St].totalLength,0)&&("square"===dt||"round"===dt)&&VA>0&&$A[St].startPoint&&$A[St].startPoint.length>1){var Pt=$A[St].startPoint[0],Kt=$A[St].startPoint[1];L(at),"square"===dt?o.rect(Pt-.5*VA,Kt-.5*VA,VA,VA):"round"===dt&&o.circle(Pt,Kt,.5*VA),o.fill()}var Xt=this.get("stroke-dasharray"),re=this.get("stroke-dashoffset");if(NA(this.dashScale,1)){for(var wt=0;wt0&&$A[Rt].insertInDocument();LA&&at?o.fillAndStroke(this.get("fill-rule")):LA?o.fill(this.get("fill-rule")):at&&o.stroke()}var Vt=this.get("marker-start"),Jt=this.get("marker-mid"),Be=this.get("marker-end");if("none"!==Vt||"none"!==Jt||"none"!==Be){var qt=this.shape.getMarkers();if("none"!==Vt&&new lt(Vt,null).drawMarker(!1,PA,qt[0],VA),"none"!==Jt)for(var ue=1;ue0&&HA>0?$A&&LA?($A=Math.min($A,.5*zA),LA=Math.min(LA,.5*HA),this.shape=(new WA).M(UA+$A,PA).L(UA+zA-$A,PA).A($A,LA,0,0,1,UA+zA,PA+LA).L(UA+zA,PA+HA-LA).A($A,LA,0,0,1,UA+zA-$A,PA+HA).L(UA+$A,PA+HA).A($A,LA,0,0,1,UA,PA+HA-LA).L(UA,PA+LA).A($A,LA,0,0,1,UA+$A,PA).Z()):this.shape=(new WA).M(UA,PA).L(UA+zA,PA).L(UA+zA,PA+HA).L(UA,PA+HA).Z():this.shape=new WA},Yt=function(YA,tt){rA.call(this,YA,tt);var UA=this.getLength("cx",this.getVWidth(),0),PA=this.getLength("cy",this.getVHeight(),0),zA=this.getLength("r",this.getViewport(),0);this.shape=zA>0?(new WA).M(UA+zA,PA).A(zA,zA,0,0,1,UA-zA,PA).A(zA,zA,0,0,1,UA+zA,PA).Z():new WA},j=function(YA,tt){rA.call(this,YA,tt);var UA=this.getLength("cx",this.getVWidth(),0),PA=this.getLength("cy",this.getVHeight(),0),zA=this.getLength("rx",this.getVWidth(),0),HA=this.getLength("ry",this.getVHeight(),0);this.shape=zA>0&&HA>0?(new WA).M(UA+zA,PA).A(zA,HA,0,0,1,UA-zA,PA).A(zA,HA,0,0,1,UA+zA,PA).Z():new WA},qA=function(YA,tt){rA.call(this,YA,tt);var UA=this.getLength("x1",this.getVWidth(),0),PA=this.getLength("y1",this.getVHeight(),0),zA=this.getLength("x2",this.getVWidth(),0),HA=this.getLength("y2",this.getVHeight(),0);this.shape=(new WA).M(UA,PA).L(zA,HA)},KA=function(YA,tt){rA.call(this,YA,tt);var UA=this.getNumberList("points");this.shape=new WA;for(var PA=0;PA0?UA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},lt=function(YA,tt){Mt.call(this,YA,tt);var UA=this.getLength("markerWidth",this.getParentVWidth(),3),PA=this.getLength("markerHeight",this.getParentVHeight(),3),zA=this.getViewbox("viewBox",[0,0,UA,PA]);this.getVWidth=function(){return zA[2]},this.getVHeight=function(){return zA[3]},this.drawMarker=function(HA,$A,LA,at){o.save();var VA=this.attr("orient"),dt=this.attr("markerUnits"),St="auto"===VA?LA[2]:(parseFloat(VA)||0)*Math.PI/180,Pt="userSpaceOnUse"===dt?1:at;o.transform(Math.cos(St)*Pt,Math.sin(St)*Pt,-Math.sin(St)*Pt,Math.cos(St)*Pt,LA[0],LA[1]);var wt,Kt=this.getLength("refX",this.getVWidth(),0),Xt=this.getLength("refY",this.getVHeight(),0),re=O(this.attr("preserveAspectRatio"),UA,PA,zA[2],zA[3],.5);"hidden"===this.get("overflow")&&o.rect(re[0]*(zA[0]+zA[2]/2-Kt)-UA/2,re[3]*(zA[1]+zA[3]/2-Xt)-PA/2,UA,PA).clip(),o.transform.apply(o,re),o.translate(-Kt,-Xt),this.get("opacity")<1&&!HA&&(wt=w(yA())),this.drawChildren(HA,$A),wt&&(Q(wt),o.fillOpacity(this.get("opacity")),p(wt)),o.restore()}},bt=function(YA,tt){Mt.call(this,YA,tt),this.useMask=function(UA){var PA=w(yA());o.save(),"objectBoundingBox"===this.attr("clipPathUnits")&&o.transform(UA[2]-UA[0],0,0,UA[3]-UA[1],UA[0],UA[1]),this.clip(),this.drawChildren(!0,!1),o.restore(),Q(PA),Y(PA,!0)}},yt=function(YA,tt){Mt.call(this,YA,tt),this.useMask=function(UA){var zA,HA,$A,LA,PA=w(yA());o.save(),"userSpaceOnUse"===this.attr("maskUnits")?(zA=this.getLength("x",this.getVWidth(),-.1*(UA[2]-UA[0])+UA[0]),HA=this.getLength("y",this.getVHeight(),-.1*(UA[3]-UA[1])+UA[1]),$A=this.getLength("width",this.getVWidth(),1.2*(UA[2]-UA[0])),LA=this.getLength("height",this.getVHeight(),1.2*(UA[3]-UA[1]))):(zA=this.getLength("x",this.getVWidth(),-.1)*(UA[2]-UA[0])+UA[0],HA=this.getLength("y",this.getVHeight(),-.1)*(UA[3]-UA[1])+UA[1],$A=this.getLength("width",this.getVWidth(),1.2)*(UA[2]-UA[0]),LA=this.getLength("height",this.getVHeight(),1.2)*(UA[3]-UA[1])),o.rect(zA,HA,$A,LA).clip(),"objectBoundingBox"===this.attr("maskContentUnits")&&o.transform(UA[2]-UA[0],0,0,UA[3]-UA[1],UA[0],UA[1]),this.clip(),this.drawChildren(!1,!0),o.restore(),Q(PA),Y(PA,!0)}},zt=function(YA,tt){xA.call(this,YA,tt),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var UA=new WA,PA=0;PA Tj")}o.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(GA(this._font.font,this._font.size)+et(this._font.font,this._font.size)),UA,PA)},this.decorate=function(UA,PA,zA,HA){var $A=this.getFill(zA,HA),LA=this.getStroke(zA,HA);$A&&L($A),LA&&(U(LA),o.lineWidth(this.get("stroke-width")).miterLimit(this.get("stroke-miterlimit")).lineJoin(this.get("stroke-linejoin")).lineCap(this.get("stroke-linecap")).dash(this.get("stroke-dasharray"),{phase:this.get("stroke-dashoffset")}));for(var at=0,VA=this._pos;at0?HA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((zA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===zA.nodeName){var $A=new jA(zA,this);this.pathObject=$A.shape.clone().transform($A.get("transform")),this.pathLength=this.chooseValue($A.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},ee=function(YA,tt){zt.call(this,YA,tt),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(UA){var LA,at,PA="",zA=YA.textContent,HA=[],$A=[],VA=0,dt=0;function St(){if($A.length)for(var wt=$A[$A.length-1],Jt={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[LA+at]*(wt.x+wt.width-$A[0].x)||0,Be=0;Be<$A.length;Be++)$A[Be].x-=Jt;$A=[]}function Xt(wt){var Rt=wt.pathObject,Vt=wt.pathLength,Jt=wt.pathScale;if(Rt)for(var Be=wt.getLength("startOffset",Vt,0),qt=0;qtVt||he<0)wt._pos[qt].hidden=!0;else{var ue=Rt.getPointAtLength(he*Jt);NA(Jt,1)&&(wt._pos[qt].scale*=Jt,wt._pos[qt].width*=Jt),wt._pos[qt].x=ue[0]-.5*wt._pos[qt].width*Math.cos(ue[2])-wt._pos[qt].y*Math.sin(ue[2]),wt._pos[qt].y=ue[1]-.5*wt._pos[qt].width*Math.sin(ue[2])+wt._pos[qt].y*Math.cos(ue[2]),wt._pos[qt].rotate=ue[2]+wt._pos[qt].rotate,wt._pos[qt].continuous=!1}}else for(var De=0;De0&&ue<1/0)for(var De=0;De=2)for(var He=(Rt-(he-qt))/(wt.length-1),Se=0;Se0?p-4:p;for(m=0;m>16&255,y[d++]=w>>8&255,y[d++]=255&w;return 2===Y&&(w=c[g.charCodeAt(m)]<<2|c[g.charCodeAt(m+1)]>>4,y[d++]=255&w),1===Y&&(w=c[g.charCodeAt(m)]<<10|c[g.charCodeAt(m+1)]<<4|c[g.charCodeAt(m+2)]>>2,y[d++]=w>>8&255,y[d++]=255&w),y},I.fromByteArray=function f(g){for(var w,Q=g.length,p=Q%3,Y=[],y=16383,d=0,v=Q-p;dv?v:d+y));return 1===p?Y.push(n[(w=g[Q-1])>>2]+n[w<<4&63]+"=="):2===p&&Y.push(n[(w=(g[Q-2]<<8)+g[Q-1])>>10]+n[w>>4&63]+n[w<<2&63]+"="),Y.join("")};for(var n=[],c=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",l=0,h=o.length;l0)throw new Error("Invalid string. Length must be a multiple of 4");var Q=g.indexOf("=");return-1===Q&&(Q=w),[Q,Q===w?0:4-Q%4]}function C(g){return n[g>>18&63]+n[g>>12&63]+n[g>>6&63]+n[63&g]}function e(g,w,Q){for(var Y=[],y=w;y0},o.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var l=this.buf_ptr_,h=this.input_.read(this.buf_,l,I);if(h<0)throw new Error("Unexpected end of input");if(h=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},o.prototype.readBits=function(l){32-this.bit_pos_>>this.bit_pos_&i[l];return this.bit_pos_+=l,h},T.exports=o},7080:function(T,I){I.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),I.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},6450:function(T,I,n){var i=n(6154).g,o=n(6154).j,l=n(4181),h=n(5139),a=n(966).h,B=n(966).g,E=n(7080),u=n(8435),C=n(2973),v=1080,P=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),F=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),L=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),U=new Uint16Array([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]);function eA($){var W;return 0===$.readBits(1)?16:(W=$.readBits(3))>0?17+W:(W=$.readBits(3))>0?8+W:17}function sA($){if($.readBits(1)){var W=$.readBits(3);return 0===W?1:$.readBits(W)+(1<1&&0===EA)throw new Error("Invalid size byte");W.meta_block_length|=EA<<8*nA}}else for(nA=0;nA4&&0===GA)throw new Error("Invalid size nibble");W.meta_block_length|=GA<<4*nA}return++W.meta_block_length,!W.input_end&&!W.is_metadata&&(W.is_uncompressed=$.readBits(1)),W}function pA($,W,hA){var nA;return hA.fillBitWindow(),(nA=$[W+=hA.val_>>>hA.bit_pos_&255].bits-8)>0&&(hA.bit_pos_+=8,W+=$[W].value,W+=hA.val_>>>hA.bit_pos_&(1<>=1,++TA;for(et=0;et0;++et){var Mt,rt=P[et],xA=0;mA.fillBitWindow(),mA.bit_pos_+=WA[xA+=mA.val_>>>mA.bit_pos_&15].bits,It[rt]=Mt=WA[xA].value,0!==Mt&&(ht-=32>>Mt,++JA)}if(1!==JA&&0!==ht)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function lA($,W,hA,mA){for(var nA=0,EA=8,GA=0,et=0,st=32768,TA=[],it=0;it<32;it++)TA.push(new a(0,0));for(B(TA,0,5,$,18);nA0;){var It,vt=0;if(mA.readMoreInput(),mA.fillBitWindow(),mA.bit_pos_+=TA[vt+=mA.val_>>>mA.bit_pos_&31].bits,(It=255&TA[vt].value)<16)GA=0,hA[nA++]=It,0!==It&&(EA=It,st-=32768>>It);else{var JA,WA,ht=It-14,rt=0;if(16===It&&(rt=EA),et!==rt&&(GA=0,et=rt),JA=GA,GA>0&&(GA-=2,GA<<=ht),nA+(WA=(GA+=mA.readBits(ht)+3)-JA)>W)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var xA=0;xA>>5]),this.htrees=new Uint32Array(W)}function uA($,W){var EA,GA,hA={num_htrees:null,context_map:null},nA=0;W.readMoreInput();var et=hA.num_htrees=sA(W)+1,st=hA.context_map=new Uint8Array($);if(et<=1)return hA;for(W.readBits(1)&&(nA=W.readBits(4)+1),EA=[],GA=0;GA=$)throw new Error("[DecodeContextMap] i >= context_map_size");st[GA]=0,++GA}else st[GA]=TA-nA,++GA}return W.readBits(1)&&function _($,W){var mA,hA=new Uint8Array(256);for(mA=0;mA<256;++mA)hA[mA]=mA;for(mA=0;mA=$&&(it-=$),mA[hA]=it,nA[et+(1&EA[st])]=it,++EA[st]}function NA($,W,hA,mA,nA,EA){var TA,GA=nA+1,et=hA&nA,st=EA.pos_&l.IBUF_MASK;if(W<8||EA.bit_pos_+(W<<3)0;)EA.readMoreInput(),mA[et++]=EA.readBits(8),et===GA&&($.write(mA,GA),et=0);else{if(EA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;EA.bit_pos_<32;)mA[et]=EA.val_>>>EA.bit_pos_,EA.bit_pos_+=8,++et,--W;if(st+(TA=EA.bit_end_pos_-EA.bit_pos_>>3)>l.IBUF_MASK){for(var it=l.IBUF_MASK+1-st,vt=0;vt=GA)for($.write(mA,GA),et-=GA,vt=0;vt=GA;){if(EA.input_.read(mA,et,TA=GA-et)W.buffer.length){var ie=new Uint8Array(mA+H);ie.set(W.buffer),W.buffer=ie}if(nA=xn.input_end,k=xn.is_uncompressed,xn.is_metadata)for(bA(Et);H>0;--H)Et.readMoreInput(),Et.readBits(8);else if(0!==H){if(k){Et.bit_pos_=Et.bit_pos_+7&-8,NA(W,H,mA,it,TA,Et),mA+=H;continue}for(hA=0;hA<3;++hA)wA[hA]=sA(Et)+1,wA[hA]>=2&&(cA(wA[hA]+2,xA,hA*v,Et),cA(26,Mt,hA*v,Et),b[hA]=gA(Mt,hA*v,Et),rA[hA]=1);for(Et.readMoreInput(),j=(1<<(gt=Et.readBits(2)))-1,qA=(Yt=16+(Et.readBits(4)<0;){var an,$e,Hn,Jn,kt,Gt,_t,le,pn,Tn,Zn,fr;for(Et.readMoreInput(),0===b[1]&&(QA(wA[1],xA,1,CA,RA,rA,Et),b[1]=gA(Mt,v,Et),yn=rt[1].htrees[CA[1]]),--b[1],($e=(an=pA(rt[1].codes,yn,Et))>>6)>=2?($e-=2,_t=-1):_t=0,Jn=u.kCopyRangeLut[$e]+(7&an),kt=u.kInsertLengthPrefixCode[Hn=u.kInsertRangeLut[$e]+(an>>3&7)].offset+Et.readBits(u.kInsertLengthPrefixCode[Hn].nbits),Gt=u.kCopyLengthPrefixCode[Jn].offset+Et.readBits(u.kCopyLengthPrefixCode[Jn].nbits),JA=it[mA-1&TA],WA=it[mA-2&TA],pn=0;pn4?3:Gt-2))]],Et))>=Yt&&(fr=(_t-=Yt)&j,_t=Yt+((Nn=(2+(1&(_t>>=gt))<<(Zn=1+(_t>>1)))-4)+Et.readBits(Zn)<(et=mA=h.minDictionaryWordLength&&Gt<=h.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+mA+" distance: "+le+" len: "+Gt+" bytes left: "+H);var Nn=h.offsetsByLength[Gt],ZA=le-et-1,YA=h.sizeBitsByLength[Gt],PA=ZA>>YA;if(Nn+=(ZA&(1<=vt){W.write(it,st);for(var HA=0;HA0&&(It[3&ht]=le,++ht),Gt>H)throw new Error("Invalid backward reference. pos: "+mA+" distance: "+le+" len: "+Gt+" bytes left: "+H);for(pn=0;pn>=1;return(h&B-1)+B}function o(h,a,B,E,u){do{h[a+(E-=B)]=new n(u.bits,u.value)}while(E>0)}function l(h,a,B){for(var E=1<0;--P[f])o(h,a+w,Q,d,new n(255&f,65535&m[g++])),w=i(w,f);for(Y=v-1,p=-1,f=B+1,Q=2;f<=c;++f,Q<<=1)for(;P[f]>0;--P[f])(w&Y)!==p&&(a+=d,v+=d=1<<(y=l(P,f,B)),h[C+(p=w&Y)]=new n(y+B&255,a-C-p&65535)),o(h,a+(w>>B),Q,d,new n(f-B&255,65535&m[g++])),w=i(w,f);return v}},8435:function(T,I){function n(c,i){this.offset=c,this.nbits=i}I.kBlockLengthPrefixCode=[new n(1,2),new n(5,2),new n(9,2),new n(13,2),new n(17,3),new n(25,3),new n(33,3),new n(41,3),new n(49,4),new n(65,4),new n(81,4),new n(97,4),new n(113,5),new n(145,5),new n(177,5),new n(209,5),new n(241,6),new n(305,6),new n(369,7),new n(497,8),new n(753,9),new n(1265,10),new n(2289,11),new n(4337,12),new n(8433,13),new n(16625,24)],I.kInsertLengthPrefixCode=[new n(0,0),new n(1,0),new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,1),new n(8,1),new n(10,2),new n(14,2),new n(18,3),new n(26,3),new n(34,4),new n(50,4),new n(66,5),new n(98,5),new n(130,6),new n(194,7),new n(322,8),new n(578,9),new n(1090,10),new n(2114,12),new n(6210,14),new n(22594,24)],I.kCopyLengthPrefixCode=[new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,0),new n(7,0),new n(8,0),new n(9,0),new n(10,1),new n(12,1),new n(14,2),new n(18,2),new n(22,3),new n(30,3),new n(38,4),new n(54,4),new n(70,5),new n(102,5),new n(134,6),new n(198,7),new n(326,8),new n(582,9),new n(1094,10),new n(2118,24)],I.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],I.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},6154:function(T,I){function n(i){this.buffer=i,this.pos=0}function c(i){this.buffer=i,this.pos=0}n.prototype.read=function(i,o,l){this.pos+l>this.buffer.length&&(l=this.buffer.length-this.pos);for(var h=0;hthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(i.subarray(0,o),this.pos),this.pos+=o,o},I.j=c},2973:function(T,I,n){var c=n(5139),f=10,g=11;function N(U,eA,sA){this.prefix=new Uint8Array(U.length),this.transform=eA,this.suffix=new Uint8Array(sA.length);for(var q=0;q'),new N("",0,"\n"),new N("",3,""),new N("",0,"]"),new N("",0," for "),new N("",14,""),new N("",2,""),new N("",0," a "),new N("",0," that "),new N(" ",f,""),new N("",0,". "),new N(".",0,""),new N(" ",0,", "),new N("",15,""),new N("",0," with "),new N("",0,"'"),new N("",0," from "),new N("",0," by "),new N("",16,""),new N("",17,""),new N(" the ",0,""),new N("",4,""),new N("",0,". The "),new N("",g,""),new N("",0," on "),new N("",0," as "),new N("",0," is "),new N("",7,""),new N("",1,"ing "),new N("",0,"\n\t"),new N("",0,":"),new N(" ",0,". "),new N("",0,"ed "),new N("",20,""),new N("",18,""),new N("",6,""),new N("",0,"("),new N("",f,", "),new N("",8,""),new N("",0," at "),new N("",0,"ly "),new N(" the ",0," of "),new N("",5,""),new N("",9,""),new N(" ",f,", "),new N("",f,'"'),new N(".",0,"("),new N("",g," "),new N("",f,'">'),new N("",0,'="'),new N(" ",0,"."),new N(".com/",0,""),new N(" the ",0," of the "),new N("",f,"'"),new N("",0,". This "),new N("",0,","),new N(".",0," "),new N("",f,"("),new N("",f,"."),new N("",0," not "),new N(" ",0,'="'),new N("",0,"er "),new N(" ",g," "),new N("",0,"al "),new N(" ",g,""),new N("",0,"='"),new N("",g,'"'),new N("",f,". "),new N(" ",0,"("),new N("",0,"ful "),new N(" ",f,". "),new N("",0,"ive "),new N("",0,"less "),new N("",g,"'"),new N("",0,"est "),new N(" ",f,"."),new N("",g,'">'),new N(" ",0,"='"),new N("",f,","),new N("",0,"ize "),new N("",g,"."),new N("\xc2\xa0",0,""),new N(" ",0,","),new N("",f,'="'),new N("",g,'="'),new N("",0,"ous "),new N("",g,", "),new N("",f,"='"),new N(" ",f,","),new N(" ",g,'="'),new N(" ",g,", "),new N("",g,","),new N("",g,"("),new N("",g,". "),new N(" ",g,"."),new N("",g,"='"),new N(" ",g,". "),new N(" ",f,'="'),new N(" ",g,"='"),new N(" ",f,"='")];function L(U,eA){return U[eA]<192?(U[eA]>=97&&U[eA]<=122&&(U[eA]^=32),1):U[eA]<224?(U[eA+1]^=32,2):(U[eA+2]^=5,3)}I.kTransforms=F,I.kNumTransforms=F.length,I.transformDictionaryWord=function(U,eA,sA,q,BA){var _,pA=F[BA].prefix,lA=F[BA].suffix,cA=F[BA].transform,gA=cA<12?0:cA-11,yA=0,FA=eA;gA>q&&(gA=q);for(var MA=0;MA0;){var uA=L(U,_);_+=uA,q-=uA}for(var QA=0;QAI.UNZIP)throw new TypeError("Bad argument");this.dictionary=null,this.err=0,this.flush=0,this.init_done=!1,this.level=0,this.memLevel=0,this.mode=f,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}e.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,o(this.init_done,"close before init"),o(this.mode<=I.UNZIP),this.mode===I.DEFLATE||this.mode===I.GZIP||this.mode===I.DEFLATERAW?h.deflateEnd(this.strm):(this.mode===I.INFLATE||this.mode===I.GUNZIP||this.mode===I.INFLATERAW||this.mode===I.UNZIP)&&a.inflateEnd(this.strm),this.mode=I.NONE,this.dictionary=null)},e.prototype.write=function(f,g,w,Q,p,Y,y){return this._write(!0,f,g,w,Q,p,Y,y)},e.prototype.writeSync=function(f,g,w,Q,p,Y,y){return this._write(!1,f,g,w,Q,p,Y,y)},e.prototype._write=function(f,g,w,Q,p,Y,y,d){if(o.equal(arguments.length,8),o(this.init_done,"write before init"),o(this.mode!==I.NONE,"already finalized"),o.equal(!1,this.write_in_progress,"write already in progress"),o.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,o.equal(!1,void 0===g,"must provide flush value"),this.write_in_progress=!0,g!==I.Z_NO_FLUSH&&g!==I.Z_PARTIAL_FLUSH&&g!==I.Z_SYNC_FLUSH&&g!==I.Z_FULL_FLUSH&&g!==I.Z_FINISH&&g!==I.Z_BLOCK)throw new Error("Invalid flush value");if(null==w&&(w=c.alloc(0),p=0,Q=0),this.strm.avail_in=p,this.strm.input=w,this.strm.next_in=Q,this.strm.avail_out=d,this.strm.output=Y,this.strm.next_out=y,this.flush=g,!f)return this._process(),this._checkError()?this._afterSync():void 0;var v=this;return i.nextTick(function(){v._process(),v._after()}),this},e.prototype._afterSync=function(){var f=this.strm.avail_out,g=this.strm.avail_in;return this.write_in_progress=!1,[g,f]},e.prototype._process=function(){var f=null;switch(this.mode){case I.DEFLATE:case I.GZIP:case I.DEFLATERAW:this.err=h.deflate(this.strm,this.flush);break;case I.UNZIP:switch(this.strm.avail_in>0&&(f=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===f)break;if(31!==this.strm.input[f]){this.mode=I.INFLATE;break}if(this.gzip_id_bytes_read=1,f++,1===this.strm.avail_in)break;case 1:if(null===f)break;139===this.strm.input[f]?(this.gzip_id_bytes_read=2,this.mode=I.GUNZIP):this.mode=I.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case I.INFLATE:case I.GUNZIP:case I.INFLATERAW:for(this.err=a.inflate(this.strm,this.flush),this.err===I.Z_NEED_DICT&&this.dictionary&&(this.err=a.inflateSetDictionary(this.strm,this.dictionary),this.err===I.Z_OK?this.err=a.inflate(this.strm,this.flush):this.err===I.Z_DATA_ERROR&&(this.err=I.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===I.GUNZIP&&this.err===I.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=a.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},e.prototype._checkError=function(){switch(this.err){case I.Z_OK:case I.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===I.Z_FINISH)return this._error("unexpected end of file"),!1;break;case I.Z_STREAM_END:break;case I.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},e.prototype._after=function(){if(this._checkError()){var f=this.strm.avail_out,g=this.strm.avail_in;this.write_in_progress=!1,this.callback(g,f),this.pending_close&&this.close()}},e.prototype._error=function(f){this.strm.msg&&(f=this.strm.msg),this.onerror(f,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},e.prototype.init=function(f,g,w,Q,p){o(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),o(f>=8&&f<=15,"invalid windowBits"),o(g>=-1&&g<=9,"invalid compression level"),o(w>=1&&w<=9,"invalid memlevel"),o(Q===I.Z_FILTERED||Q===I.Z_HUFFMAN_ONLY||Q===I.Z_RLE||Q===I.Z_FIXED||Q===I.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(g,f,w,Q,p),this._setDictionary()},e.prototype.params=function(){throw new Error("deflateParams Not supported")},e.prototype.reset=function(){this._reset(),this._setDictionary()},e.prototype._init=function(f,g,w,Q,p){switch(this.level=f,this.windowBits=g,this.memLevel=w,this.strategy=Q,this.flush=I.Z_NO_FLUSH,this.err=I.Z_OK,(this.mode===I.GZIP||this.mode===I.GUNZIP)&&(this.windowBits+=16),this.mode===I.UNZIP&&(this.windowBits+=32),(this.mode===I.DEFLATERAW||this.mode===I.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new l,this.mode){case I.DEFLATE:case I.GZIP:case I.DEFLATERAW:this.err=h.deflateInit2(this.strm,this.level,I.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case I.INFLATE:case I.GUNZIP:case I.INFLATERAW:case I.UNZIP:this.err=a.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==I.Z_OK&&this._error("Init error"),this.dictionary=p,this.write_in_progress=!1,this.init_done=!0},e.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=I.Z_OK,this.mode){case I.DEFLATE:case I.DEFLATERAW:this.err=h.deflateSetDictionary(this.strm,this.dictionary)}this.err!==I.Z_OK&&this._error("Failed to set dictionary")}},e.prototype._reset=function(){switch(this.err=I.Z_OK,this.mode){case I.DEFLATE:case I.DEFLATERAW:case I.GZIP:this.err=h.deflateReset(this.strm);break;case I.INFLATE:case I.INFLATERAW:case I.GUNZIP:this.err=a.inflateReset(this.strm)}this.err!==I.Z_OK&&this._error("Failed to reset stream")},I.Zlib=e},2635:function(T,I,n){"use strict";var c=n(4155),i=n(8823).Buffer,o=n(2830).Transform,l=n(4505),h=n(9539),a=n(9282).ok,B=n(8823).kMaxLength,E="Cannot create final Buffer. It would be larger than 0x"+B.toString(16)+" bytes";l.Z_MIN_WINDOWBITS=8,l.Z_MAX_WINDOWBITS=15,l.Z_DEFAULT_WINDOWBITS=15,l.Z_MIN_CHUNK=64,l.Z_MAX_CHUNK=1/0,l.Z_DEFAULT_CHUNK=16384,l.Z_MIN_MEMLEVEL=1,l.Z_MAX_MEMLEVEL=9,l.Z_DEFAULT_MEMLEVEL=8,l.Z_MIN_LEVEL=-1,l.Z_MAX_LEVEL=9,l.Z_DEFAULT_LEVEL=l.Z_DEFAULT_COMPRESSION;for(var u=Object.keys(l),C=0;C=B?MA=new RangeError(E):_=i.concat(lA,cA),lA=[],q.close(),pA(MA,_)}q.on("error",function yA(_){q.removeListener("end",FA),q.removeListener("readable",gA),pA(_)}),q.on("end",FA),q.end(BA),gA()}function Y(q,BA){if("string"==typeof BA&&(BA=i.from(BA)),!i.isBuffer(BA))throw new TypeError("Not a string or buffer");return q._processChunk(BA,q._finishFlushFlag)}function y(q){if(!(this instanceof y))return new y(q);U.call(this,q,l.DEFLATE)}function d(q){if(!(this instanceof d))return new d(q);U.call(this,q,l.INFLATE)}function v(q){if(!(this instanceof v))return new v(q);U.call(this,q,l.GZIP)}function m(q){if(!(this instanceof m))return new m(q);U.call(this,q,l.GUNZIP)}function P(q){if(!(this instanceof P))return new P(q);U.call(this,q,l.DEFLATERAW)}function N(q){if(!(this instanceof N))return new N(q);U.call(this,q,l.INFLATERAW)}function F(q){if(!(this instanceof F))return new F(q);U.call(this,q,l.UNZIP)}function L(q){return q===l.Z_NO_FLUSH||q===l.Z_PARTIAL_FLUSH||q===l.Z_SYNC_FLUSH||q===l.Z_FULL_FLUSH||q===l.Z_FINISH||q===l.Z_BLOCK}function U(q,BA){var pA=this;if(this._opts=q=q||{},this._chunkSize=q.chunkSize||I.Z_DEFAULT_CHUNK,o.call(this,q),q.flush&&!L(q.flush))throw new Error("Invalid flush flag: "+q.flush);if(q.finishFlush&&!L(q.finishFlush))throw new Error("Invalid flush flag: "+q.finishFlush);if(this._flushFlag=q.flush||l.Z_NO_FLUSH,this._finishFlushFlag=void 0!==q.finishFlush?q.finishFlush:l.Z_FINISH,q.chunkSize&&(q.chunkSizeI.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+q.chunkSize);if(q.windowBits&&(q.windowBitsI.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+q.windowBits);if(q.level&&(q.levelI.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+q.level);if(q.memLevel&&(q.memLevelI.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+q.memLevel);if(q.strategy&&q.strategy!=I.Z_FILTERED&&q.strategy!=I.Z_HUFFMAN_ONLY&&q.strategy!=I.Z_RLE&&q.strategy!=I.Z_FIXED&&q.strategy!=I.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+q.strategy);if(q.dictionary&&!i.isBuffer(q.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new l.Zlib(BA);var lA=this;this._hadError=!1,this._handle.onerror=function(yA,FA){eA(lA),lA._hadError=!0;var _=new Error(yA);_.errno=FA,_.code=I.codes[FA],lA.emit("error",_)};var cA=I.Z_DEFAULT_COMPRESSION;"number"==typeof q.level&&(cA=q.level);var gA=I.Z_DEFAULT_STRATEGY;"number"==typeof q.strategy&&(gA=q.strategy),this._handle.init(q.windowBits||I.Z_DEFAULT_WINDOWBITS,cA,q.memLevel||I.Z_DEFAULT_MEMLEVEL,gA,q.dictionary),this._buffer=i.allocUnsafe(this._chunkSize),this._offset=0,this._level=cA,this._strategy=gA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!pA._handle},configurable:!0,enumerable:!0})}function eA(q,BA){BA&&c.nextTick(BA),q._handle&&(q._handle.close(),q._handle=null)}function sA(q){q.emit("close")}Object.defineProperty(I,"codes",{enumerable:!0,value:Object.freeze(f),writable:!1}),I.Deflate=y,I.Inflate=d,I.Gzip=v,I.Gunzip=m,I.DeflateRaw=P,I.InflateRaw=N,I.Unzip=F,I.createDeflate=function(q){return new y(q)},I.createInflate=function(q){return new d(q)},I.createDeflateRaw=function(q){return new P(q)},I.createInflateRaw=function(q){return new N(q)},I.createGzip=function(q){return new v(q)},I.createGunzip=function(q){return new m(q)},I.createUnzip=function(q){return new F(q)},I.deflate=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new y(BA),q,pA)},I.deflateSync=function(q,BA){return Y(new y(BA),q)},I.gzip=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new v(BA),q,pA)},I.gzipSync=function(q,BA){return Y(new v(BA),q)},I.deflateRaw=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new P(BA),q,pA)},I.deflateRawSync=function(q,BA){return Y(new P(BA),q)},I.unzip=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new F(BA),q,pA)},I.unzipSync=function(q,BA){return Y(new F(BA),q)},I.inflate=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new d(BA),q,pA)},I.inflateSync=function(q,BA){return Y(new d(BA),q)},I.gunzip=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new m(BA),q,pA)},I.gunzipSync=function(q,BA){return Y(new m(BA),q)},I.inflateRaw=function(q,BA,pA){return"function"==typeof BA&&(pA=BA,BA={}),p(new N(BA),q,pA)},I.inflateRawSync=function(q,BA){return Y(new N(BA),q)},h.inherits(U,o),U.prototype.params=function(q,BA,pA){if(qI.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+q);if(BA!=I.Z_FILTERED&&BA!=I.Z_HUFFMAN_ONLY&&BA!=I.Z_RLE&&BA!=I.Z_FIXED&&BA!=I.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+BA);if(this._level!==q||this._strategy!==BA){var lA=this;this.flush(l.Z_SYNC_FLUSH,function(){a(lA._handle,"zlib binding closed"),lA._handle.params(q,BA),lA._hadError||(lA._level=q,lA._strategy=BA,pA&&pA())})}else c.nextTick(pA)},U.prototype.reset=function(){return a(this._handle,"zlib binding closed"),this._handle.reset()},U.prototype._flush=function(q){this._transform(i.alloc(0),"",q)},U.prototype.flush=function(q,BA){var pA=this,lA=this._writableState;("function"==typeof q||void 0===q&&!BA)&&(BA=q,q=l.Z_FULL_FLUSH),lA.ended?BA&&c.nextTick(BA):lA.ending?BA&&this.once("end",BA):lA.needDrain?BA&&this.once("drain",function(){return pA.flush(q,BA)}):(this._flushFlag=q,this.write(i.alloc(0),"",BA))},U.prototype.close=function(q){eA(this,q),c.nextTick(sA,this)},U.prototype._transform=function(q,BA,pA){var lA,cA=this._writableState,yA=(cA.ending||cA.ended)&&(!q||cA.length===q.length);return null===q||i.isBuffer(q)?this._handle?(yA?lA=this._finishFlushFlag:(lA=this._flushFlag,q.length>=cA.length&&(this._flushFlag=this._opts.flush||l.Z_NO_FLUSH)),void this._processChunk(q,lA,pA)):pA(new Error("zlib binding closed")):pA(new Error("invalid input"))},U.prototype._processChunk=function(q,BA,pA){var lA=q&&q.length,cA=this._chunkSize-this._offset,gA=0,yA=this,FA="function"==typeof pA;if(!FA){var uA,_=[],MA=0;this.on("error",function(X){uA=X}),a(this._handle,"zlib binding closed");do{var QA=this._handle.writeSync(BA,q,gA,lA,this._buffer,this._offset,cA)}while(!this._hadError&&XA(QA[0],QA[1]));if(this._hadError)throw uA;if(MA>=B)throw eA(this),new RangeError(E);var NA=i.concat(_,MA);return eA(this),NA}a(this._handle,"zlib binding closed");var bA=this._handle.write(BA,q,gA,lA,this._buffer,this._offset,cA);function XA(X,O){if(this&&(this.buffer=null,this.callback=null),!yA._hadError){var $=cA-O;if(a($>=0,"have should not go down"),$>0){var W=yA._buffer.slice(yA._offset,yA._offset+$);yA._offset+=$,FA?yA.push(W):(_.push(W),MA+=W.length)}if((0===O||yA._offset>=yA._chunkSize)&&(cA=yA._chunkSize,yA._offset=0,yA._buffer=i.allocUnsafe(yA._chunkSize)),0===O){if(gA+=lA-X,lA=X,!FA)return!0;var hA=yA._handle.write(BA,q,gA,lA,yA._buffer,yA._offset,yA._chunkSize);return hA.callback=XA,void(hA.buffer=q)}if(!FA)return!1;pA()}}bA.buffer=q,bA.callback=XA},h.inherits(y,U),h.inherits(d,U),h.inherits(v,U),h.inherits(m,U),h.inherits(P,U),h.inherits(N,U),h.inherits(F,U)},1924:function(T,I,n){"use strict";var c=n(210),i=n(5559),o=i(c("String.prototype.indexOf"));T.exports=function(h,a){var B=c(h,!!a);return"function"==typeof B&&o(h,".prototype.")>-1?i(B):B}},5559:function(T,I,n){"use strict";var c=n(8612),i=n(210),o=i("%Function.prototype.apply%"),l=i("%Function.prototype.call%"),h=i("%Reflect.apply%",!0)||c.call(l,o),a=i("%Object.getOwnPropertyDescriptor%",!0),B=i("%Object.defineProperty%",!0),E=i("%Math.max%");if(B)try{B({},"a",{value:1})}catch(C){B=null}T.exports=function(e){var f=h(c,l,arguments);return a&&B&&a(f,"length").configurable&&B(f,"length",{value:1+E(0,e.length-(arguments.length-1))}),f};var u=function(){return h(c,o,arguments)};B?B(T.exports,"apply",{value:u}):T.exports.apply=u},6313:function(T,I,n){var c=n(8823).Buffer,i=function(){"use strict";function o(u,C,e,f){"object"==typeof C&&(e=C.depth,f=C.prototype,C=C.circular);var w=[],Q=[],p=void 0!==c;return void 0===C&&(C=!0),void 0===e&&(e=1/0),function Y(y,d){if(null===y)return null;if(0==d)return y;var v,m;if("object"!=typeof y)return y;if(o.__isArray(y))v=[];else if(o.__isRegExp(y))v=new RegExp(y.source,E(y)),y.lastIndex&&(v.lastIndex=y.lastIndex);else if(o.__isDate(y))v=new Date(y.getTime());else{if(p&&c.isBuffer(y))return v=c.allocUnsafe?c.allocUnsafe(y.length):new c(y.length),y.copy(v),v;void 0===f?(m=Object.getPrototypeOf(y),v=Object.create(m)):(v=Object.create(f),m=f)}if(C){var P=w.indexOf(y);if(-1!=P)return Q[P];w.push(y),Q.push(v)}for(var N in y){var F;m&&(F=Object.getOwnPropertyDescriptor(m,N)),(!F||null!=F.set)&&(v[N]=Y(y[N],d-1))}return v}(u,e)}function l(u){return Object.prototype.toString.call(u)}function E(u){var C="";return u.global&&(C+="g"),u.ignoreCase&&(C+="i"),u.multiline&&(C+="m"),C}return o.clonePrototype=function(C){if(null===C)return null;var e=function(){};return e.prototype=C,new e},o.__objToStr=l,o.__isDate=function h(u){return"object"==typeof u&&"[object Date]"===l(u)},o.__isArray=function a(u){return"object"==typeof u&&"[object Array]"===l(u)},o.__isRegExp=function B(u){return"object"==typeof u&&"[object RegExp]"===l(u)},o.__getRegExpFlags=E,o}();T.exports&&(T.exports=i)},4667:function(T,I,n){n(2479);var c=n(857);T.exports=c.Object.values},7633:function(T,I,n){n(9170),n(6992),n(1539),n(8674),n(7922),n(4668),n(7727),n(8783);var c=n(857);T.exports=c.Promise},3867:function(T,I,n){var c=n(1150);n(8628),n(7314),n(7479),n(6290),T.exports=c},9662:function(T,I,n){var c=n(7854),i=n(614),o=n(6330),l=c.TypeError;T.exports=function(h){if(i(h))return h;throw l(o(h)+" is not a function")}},9483:function(T,I,n){var c=n(7854),i=n(4411),o=n(6330),l=c.TypeError;T.exports=function(h){if(i(h))return h;throw l(o(h)+" is not a constructor")}},6077:function(T,I,n){var c=n(7854),i=n(614),o=c.String,l=c.TypeError;T.exports=function(h){if("object"==typeof h||i(h))return h;throw l("Can't set "+o(h)+" as a prototype")}},1223:function(T,I,n){var c=n(5112),i=n(30),o=n(3070),l=c("unscopables"),h=Array.prototype;null==h[l]&&o.f(h,l,{configurable:!0,value:i(null)}),T.exports=function(a){h[l][a]=!0}},1530:function(T,I,n){"use strict";var c=n(8710).charAt;T.exports=function(i,o,l){return o+(l?c(i,o).length:1)}},5787:function(T,I,n){var c=n(7854),i=n(7976),o=c.TypeError;T.exports=function(l,h){if(i(h,l))return l;throw o("Incorrect invocation")}},9670:function(T,I,n){var c=n(7854),i=n(111),o=c.String,l=c.TypeError;T.exports=function(h){if(i(h))return h;throw l(o(h)+" is not an object")}},1048:function(T,I,n){"use strict";var c=n(7908),i=n(1400),o=n(6244),l=Math.min;T.exports=[].copyWithin||function(a,B){var E=c(this),u=o(E),C=i(a,u),e=i(B,u),f=arguments.length>2?arguments[2]:void 0,g=l((void 0===f?u:i(f,u))-e,u-C),w=1;for(e0;)e in E?E[C]=E[e]:delete E[C],C+=w,e+=w;return E}},1285:function(T,I,n){"use strict";var c=n(7908),i=n(1400),o=n(6244);T.exports=function(h){for(var a=c(this),B=o(a),E=arguments.length,u=i(E>1?arguments[1]:void 0,B),C=E>2?arguments[2]:void 0,e=void 0===C?B:i(C,B);e>u;)a[u++]=h;return a}},8533:function(T,I,n){"use strict";var c=n(2092).forEach,o=n(9341)("forEach");T.exports=o?[].forEach:function(h){return c(this,h,arguments.length>1?arguments[1]:void 0)}},7745:function(T){T.exports=function(I,n){for(var c=0,i=n.length,o=new I(i);i>c;)o[c]=n[c++];return o}},8457:function(T,I,n){"use strict";var c=n(7854),i=n(9974),o=n(6916),l=n(7908),h=n(3411),a=n(7659),B=n(4411),E=n(6244),u=n(6135),C=n(8554),e=n(1246),f=c.Array;T.exports=function(w){var Q=l(w),p=B(this),Y=arguments.length,y=Y>1?arguments[1]:void 0,d=void 0!==y;d&&(y=i(y,Y>2?arguments[2]:void 0));var P,N,F,L,U,eA,v=e(Q),m=0;if(!v||this==f&&a(v))for(P=E(Q),N=p?new this(P):f(P);P>m;m++)eA=d?y(Q[m],m):Q[m],u(N,m,eA);else for(U=(L=C(Q,v)).next,N=p?new this:[];!(F=o(U,L)).done;m++)eA=d?h(L,y,[F.value,m],!0):F.value,u(N,m,eA);return N.length=m,N}},1318:function(T,I,n){var c=n(5656),i=n(1400),o=n(6244),l=function(h){return function(a,B,E){var f,u=c(a),C=o(u),e=i(E,C);if(h&&B!=B){for(;C>e;)if((f=u[e++])!=f)return!0}else for(;C>e;e++)if((h||e in u)&&u[e]===B)return h||e||0;return!h&&-1}};T.exports={includes:l(!0),indexOf:l(!1)}},2092:function(T,I,n){var c=n(9974),i=n(1702),o=n(8361),l=n(7908),h=n(6244),a=n(5417),B=i([].push),E=function(u){var C=1==u,e=2==u,f=3==u,g=4==u,w=6==u,Q=7==u,p=5==u||w;return function(Y,y,d,v){for(var sA,q,m=l(Y),P=o(m),N=c(y,d),F=h(P),L=0,U=v||a,eA=C?U(Y,F):e||Q?U(Y,0):void 0;F>L;L++)if((p||L in P)&&(q=N(sA=P[L],L,m),u))if(C)eA[L]=q;else if(q)switch(u){case 3:return!0;case 5:return sA;case 6:return L;case 2:B(eA,sA)}else switch(u){case 4:return!1;case 7:B(eA,sA)}return w?-1:f||g?g:eA}};T.exports={forEach:E(0),map:E(1),filter:E(2),some:E(3),every:E(4),find:E(5),findIndex:E(6),filterReject:E(7)}},6583:function(T,I,n){"use strict";var c=n(2104),i=n(5656),o=n(9303),l=n(6244),h=n(9341),a=Math.min,B=[].lastIndexOf,E=!!B&&1/[1].lastIndexOf(1,-0)<0,u=h("lastIndexOf");T.exports=E||!u?function(f){if(E)return c(B,this,arguments)||0;var g=i(this),w=l(g),Q=w-1;for(arguments.length>1&&(Q=a(Q,o(arguments[1]))),Q<0&&(Q=w+Q);Q>=0;Q--)if(Q in g&&g[Q]===f)return Q||0;return-1}:B},1194:function(T,I,n){var c=n(7293),i=n(5112),o=n(7392),l=i("species");T.exports=function(h){return o>=51||!c(function(){var a=[];return(a.constructor={})[l]=function(){return{foo:1}},1!==a[h](Boolean).foo})}},9341:function(T,I,n){"use strict";var c=n(7293);T.exports=function(i,o){var l=[][i];return!!l&&c(function(){l.call(null,o||function(){throw 1},1)})}},3671:function(T,I,n){var c=n(7854),i=n(9662),o=n(7908),l=n(8361),h=n(6244),a=c.TypeError,B=function(E){return function(u,C,e,f){i(C);var g=o(u),w=l(g),Q=h(g),p=E?Q-1:0,Y=E?-1:1;if(e<2)for(;;){if(p in w){f=w[p],p+=Y;break}if(p+=Y,E?p<0:Q<=p)throw a("Reduce of empty array with no initial value")}for(;E?p>=0:Q>p;p+=Y)p in w&&(f=C(f,w[p],p,g));return f}};T.exports={left:B(!1),right:B(!0)}},206:function(T,I,n){var c=n(1702);T.exports=c([].slice)},4362:function(T,I,n){var c=n(206),i=Math.floor,o=function(a,B){var E=a.length,u=i(E/2);return E<8?l(a,B):h(a,o(c(a,0,u),B),o(c(a,u),B),B)},l=function(a,B){for(var C,e,E=a.length,u=1;u0;)a[e]=a[--e];e!==u++&&(a[e]=C)}return a},h=function(a,B,E,u){for(var C=B.length,e=E.length,f=0,g=0;f1?arguments[1]:void 0);eA=eA?eA.next:L.first;)for(U(eA.value,eA.key,this);eA&&eA.removed;)eA=eA.previous},has:function(F){return!!P(this,F)}}),o(d,p?{get:function(F){var L=P(this,F);return L&&L.value},set:function(F,L){return m(this,0===F?0:F,L)}}:{add:function(F){return m(this,F=0===F?0:F,F)}}),u&&c(d,"size",{get:function(){return v(this).size}}),y},setStrong:function(w,Q,p){var Y=Q+" Iterator",y=g(Q),d=g(Y);B(w,Q,function(v,m){f(this,{type:Y,target:v,state:y(v),kind:m,last:void 0})},function(){for(var v=d(this),m=v.kind,P=v.last;P&&P.removed;)P=P.previous;return v.target&&(v.last=P=P?P.next:v.state.first)?"keys"==m?{value:P.key,done:!1}:"values"==m?{value:P.value,done:!1}:{value:[P.key,P.value],done:!1}:(v.target=void 0,{value:void 0,done:!0})},p?"entries":"values",!p,!0),E(Q)}}},7710:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(1702),l=n(4705),h=n(1320),a=n(2423),B=n(408),E=n(5787),u=n(614),C=n(111),e=n(7293),f=n(7072),g=n(8003),w=n(9587);T.exports=function(Q,p,Y){var y=-1!==Q.indexOf("Map"),d=-1!==Q.indexOf("Weak"),v=y?"set":"add",m=i[Q],P=m&&m.prototype,N=m,F={},L=function(lA){var cA=o(P[lA]);h(P,lA,"add"==lA?function(yA){return cA(this,0===yA?0:yA),this}:"delete"==lA?function(gA){return!(d&&!C(gA))&&cA(this,0===gA?0:gA)}:"get"==lA?function(yA){return d&&!C(yA)?void 0:cA(this,0===yA?0:yA)}:"has"==lA?function(yA){return!(d&&!C(yA))&&cA(this,0===yA?0:yA)}:function(yA,FA){return cA(this,0===yA?0:yA,FA),this})};if(l(Q,!u(m)||!(d||P.forEach&&!e(function(){(new m).entries().next()}))))N=Y.getConstructor(p,Q,y,v),a.enable();else if(l(Q,!0)){var eA=new N,sA=eA[v](d?{}:-0,1)!=eA,q=e(function(){eA.has(1)}),BA=f(function(lA){new m(lA)}),pA=!d&&e(function(){for(var lA=new m,cA=5;cA--;)lA[v](cA,cA);return!lA.has(-0)});BA||((N=p(function(lA,cA){E(lA,P);var gA=w(new m,lA,N);return null!=cA&&B(cA,gA[v],{that:gA,AS_ENTRIES:y}),gA})).prototype=P,P.constructor=N),(q||pA)&&(L("delete"),L("has"),y&&L("get")),(pA||sA)&&L(v),d&&P.clear&&delete P.clear}return F[Q]=N,c({global:!0,forced:N!=m},F),g(N,Q),d||Y.setStrong(N,Q,y),N}},9920:function(T,I,n){var c=n(2597),i=n(3887),o=n(1236),l=n(3070);T.exports=function(h,a){for(var B=i(a),E=l.f,u=o.f,C=0;C"+C+""}},4994:function(T,I,n){"use strict";var c=n(3383).IteratorPrototype,i=n(30),o=n(9114),l=n(8003),h=n(7497),a=function(){return this};T.exports=function(B,E,u){var C=E+" Iterator";return B.prototype=i(c,{next:o(1,u)}),l(B,C,!1,!0),h[C]=a,B}},8880:function(T,I,n){var c=n(9781),i=n(3070),o=n(9114);T.exports=c?function(l,h,a){return i.f(l,h,o(1,a))}:function(l,h,a){return l[h]=a,l}},9114:function(T){T.exports=function(I,n){return{enumerable:!(1&I),configurable:!(2&I),writable:!(4&I),value:n}}},6135:function(T,I,n){"use strict";var c=n(4948),i=n(3070),o=n(9114);T.exports=function(l,h,a){var B=c(h);B in l?i.f(l,B,o(0,a)):l[B]=a}},8709:function(T,I,n){"use strict";var c=n(7854),i=n(9670),o=n(2140),l=c.TypeError;T.exports=function(h){if(i(this),"string"===h||"default"===h)h="string";else if("number"!==h)throw l("Incorrect hint");return o(this,h)}},654:function(T,I,n){"use strict";var c=n(2109),i=n(6916),o=n(1913),l=n(6530),h=n(614),a=n(4994),B=n(9518),E=n(7674),u=n(8003),C=n(8880),e=n(1320),f=n(5112),g=n(7497),w=n(3383),Q=l.PROPER,p=l.CONFIGURABLE,Y=w.IteratorPrototype,y=w.BUGGY_SAFARI_ITERATORS,d=f("iterator"),v="keys",m="values",P="entries",N=function(){return this};T.exports=function(F,L,U,eA,sA,q,BA){a(U,L,eA);var MA,uA,QA,pA=function(NA){if(NA===sA&&FA)return FA;if(!y&&NA in gA)return gA[NA];switch(NA){case v:case m:case P:return function(){return new U(this,NA)}}return function(){return new U(this)}},lA=L+" Iterator",cA=!1,gA=F.prototype,yA=gA[d]||gA["@@iterator"]||sA&&gA[sA],FA=!y&&yA||pA(sA),_="Array"==L&&gA.entries||yA;if(_&&(MA=B(_.call(new F)))!==Object.prototype&&MA.next&&(!o&&B(MA)!==Y&&(E?E(MA,Y):h(MA[d])||e(MA,d,N)),u(MA,lA,!0,!0),o&&(g[lA]=N)),Q&&sA==m&&yA&&yA.name!==m&&(!o&&p?C(gA,"name",m):(cA=!0,FA=function(){return i(yA,this)})),sA)if(uA={values:pA(m),keys:q?FA:pA(v),entries:pA(P)},BA)for(QA in uA)(y||cA||!(QA in gA))&&e(gA,QA,uA[QA]);else c({target:L,proto:!0,forced:y||cA},uA);return(!o||BA)&&gA[d]!==FA&&e(gA,d,FA,{name:sA}),g[L]=FA,uA}},7235:function(T,I,n){var c=n(857),i=n(2597),o=n(6061),l=n(3070).f;T.exports=function(h){var a=c.Symbol||(c.Symbol={});i(a,h)||l(a,h,{value:o.f(h)})}},9781:function(T,I,n){var c=n(7293);T.exports=!c(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},317:function(T,I,n){var c=n(7854),i=n(111),o=c.document,l=i(o)&&i(o.createElement);T.exports=function(h){return l?o.createElement(h):{}}},8324:function(T){T.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:function(T,I,n){var i=n(317)("span").classList,o=i&&i.constructor&&i.constructor.prototype;T.exports=o===Object.prototype?void 0:o},8886:function(T,I,n){var i=n(8113).match(/firefox\/(\d+)/i);T.exports=!!i&&+i[1]},7871:function(T){T.exports="object"==typeof window},256:function(T,I,n){var c=n(8113);T.exports=/MSIE|Trident/.test(c)},1528:function(T,I,n){var c=n(8113),i=n(7854);T.exports=/ipad|iphone|ipod/i.test(c)&&void 0!==i.Pebble},6833:function(T,I,n){var c=n(8113);T.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(c)},5268:function(T,I,n){var c=n(4326),i=n(7854);T.exports="process"==c(i.process)},1036:function(T,I,n){var c=n(8113);T.exports=/web0s(?!.*chrome)/i.test(c)},8113:function(T,I,n){var c=n(5005);T.exports=c("navigator","userAgent")||""},7392:function(T,I,n){var B,E,c=n(7854),i=n(8113),o=c.process,l=c.Deno,h=o&&o.versions||l&&l.version,a=h&&h.v8;a&&(E=(B=a.split("."))[0]>0&&B[0]<4?1:+(B[0]+B[1])),!E&&i&&(!(B=i.match(/Edge\/(\d+)/))||B[1]>=74)&&(B=i.match(/Chrome\/(\d+)/))&&(E=+B[1]),T.exports=E},8008:function(T,I,n){var i=n(8113).match(/AppleWebKit\/(\d+)\./);T.exports=!!i&&+i[1]},748:function(T){T.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2914:function(T,I,n){var c=n(7293),i=n(9114);T.exports=!c(function(){var o=Error("a");return!("stack"in o)||(Object.defineProperty(o,"stack",i(1,7)),7!==o.stack)})},2109:function(T,I,n){var c=n(7854),i=n(1236).f,o=n(8880),l=n(1320),h=n(3505),a=n(9920),B=n(4705);T.exports=function(E,u){var w,Q,p,Y,y,C=E.target,e=E.global,f=E.stat;if(w=e?c:f?c[C]||h(C,{}):(c[C]||{}).prototype)for(Q in u){if(Y=u[Q],p=E.noTargetGet?(y=i(w,Q))&&y.value:w[Q],!B(e?Q:C+(f?".":"#")+Q,E.forced)&&void 0!==p){if(typeof Y==typeof p)continue;a(Y,p)}(E.sham||p&&p.sham)&&o(Y,"sham",!0),l(w,Q,Y,E)}}},7293:function(T){T.exports=function(I){try{return!!I()}catch(n){return!0}}},7007:function(T,I,n){"use strict";n(4916);var c=n(1702),i=n(1320),o=n(2261),l=n(7293),h=n(5112),a=n(8880),B=h("species"),E=RegExp.prototype;T.exports=function(u,C,e,f){var g=h(u),w=!l(function(){var y={};return y[g]=function(){return 7},7!=""[u](y)}),Q=w&&!l(function(){var y=!1,d=/a/;return"split"===u&&((d={}).constructor={},d.constructor[B]=function(){return d},d.flags="",d[g]=/./[g]),d.exec=function(){return y=!0,null},d[g](""),!y});if(!w||!Q||e){var p=c(/./[g]),Y=C(g,""[u],function(y,d,v,m,P){var N=c(y),F=d.exec;return F===o||F===E.exec?w&&!P?{done:!0,value:p(d,v,m)}:{done:!0,value:N(v,d,m)}:{done:!1}});i(String.prototype,u,Y[0]),i(E,g,Y[1])}f&&a(E[g],"sham",!0)}},6677:function(T,I,n){var c=n(7293);T.exports=!c(function(){return Object.isExtensible(Object.preventExtensions({}))})},2104:function(T){var I=Function.prototype,n=I.apply,i=I.call;T.exports="object"==typeof Reflect&&Reflect.apply||(I.bind?i.bind(n):function(){return i.apply(n,arguments)})},9974:function(T,I,n){var c=n(1702),i=n(9662),o=c(c.bind);T.exports=function(l,h){return i(l),void 0===h?l:o?o(l,h):function(){return l.apply(h,arguments)}}},7065:function(T,I,n){"use strict";var c=n(7854),i=n(1702),o=n(9662),l=n(111),h=n(2597),a=n(206),B=c.Function,E=i([].concat),u=i([].join),C={},e=function(f,g,w){if(!h(C,g)){for(var Q=[],p=0;p]*>)/g,E=/\$([$&'`]|\d{1,2})/g;T.exports=function(u,C,e,f,g,w){var Q=e+u.length,p=f.length,Y=E;return void 0!==g&&(g=i(g),Y=B),h(w,Y,function(y,d){var v;switch(l(d,0)){case"$":return"$";case"&":return u;case"`":return a(C,0,e);case"'":return a(C,Q);case"<":v=g[a(d,1,-1)];break;default:var m=+d;if(0===m)return y;if(m>p){var P=o(m/10);return 0===P?y:P<=p?void 0===f[P-1]?l(d,1):f[P-1]+l(d,1):y}v=f[m-1]}return void 0===v?"":v})}},7854:function(T,I,n){var c=function(i){return i&&i.Math==Math&&i};T.exports=c("object"==typeof globalThis&&globalThis)||c("object"==typeof window&&window)||c("object"==typeof self&&self)||c("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},2597:function(T,I,n){var c=n(1702),i=n(7908),o=c({}.hasOwnProperty);T.exports=Object.hasOwn||function(h,a){return o(i(h),a)}},3501:function(T){T.exports={}},842:function(T,I,n){var c=n(7854);T.exports=function(i,o){var l=c.console;l&&l.error&&(1==arguments.length?l.error(i):l.error(i,o))}},490:function(T,I,n){var c=n(5005);T.exports=c("document","documentElement")},4664:function(T,I,n){var c=n(9781),i=n(7293),o=n(317);T.exports=!c&&!i(function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a})},1179:function(T,I,n){var i=n(7854).Array,o=Math.abs,l=Math.pow,h=Math.floor,a=Math.log,B=Math.LN2;T.exports={pack:function(C,e,f){var v,m,P,g=i(f),w=8*f-e-1,Q=(1<>1,Y=23===e?l(2,-24)-l(2,-77):0,y=C<0||0===C&&1/C<0?1:0,d=0;for((C=o(C))!=C||C===1/0?(m=C!=C?1:0,v=Q):(v=h(a(C)/B),C*(P=l(2,-v))<1&&(v--,P*=2),(C+=v+p>=1?Y/P:Y*l(2,1-p))*P>=2&&(v++,P/=2),v+p>=Q?(m=0,v=Q):v+p>=1?(m=(C*P-1)*l(2,e),v+=p):(m=C*l(2,p-1)*l(2,e),v=0));e>=8;g[d++]=255&m,m/=256,e-=8);for(v=v<0;g[d++]=255&v,v/=256,w-=8);return g[--d]|=128*y,g},unpack:function(C,e){var v,f=C.length,g=8*f-e-1,w=(1<>1,p=g-7,Y=f-1,y=C[Y--],d=127&y;for(y>>=7;p>0;d=256*d+C[Y],Y--,p-=8);for(v=d&(1<<-p)-1,d>>=-p,p+=e;p>0;v=256*v+C[Y],Y--,p-=8);if(0===d)d=1-Q;else{if(d===w)return v?NaN:y?-1/0:1/0;v+=l(2,e),d-=Q}return(y?-1:1)*v*l(2,d-e)}}},8361:function(T,I,n){var c=n(7854),i=n(1702),o=n(7293),l=n(4326),h=c.Object,a=i("".split);T.exports=o(function(){return!h("z").propertyIsEnumerable(0)})?function(B){return"String"==l(B)?a(B,""):h(B)}:h},9587:function(T,I,n){var c=n(614),i=n(111),o=n(7674);T.exports=function(l,h,a){var B,E;return o&&c(B=h.constructor)&&B!==a&&i(E=B.prototype)&&E!==a.prototype&&o(l,E),l}},2788:function(T,I,n){var c=n(1702),i=n(614),o=n(5465),l=c(Function.toString);i(o.inspectSource)||(o.inspectSource=function(h){return l(h)}),T.exports=o.inspectSource},8340:function(T,I,n){var c=n(111),i=n(8880);T.exports=function(o,l){c(l)&&"cause"in l&&i(o,"cause",l.cause)}},2423:function(T,I,n){var c=n(2109),i=n(1702),o=n(3501),l=n(111),h=n(2597),a=n(3070).f,B=n(8006),E=n(1156),u=n(9711),C=n(6677),e=!1,f=u("meta"),g=0,w=Object.isExtensible||function(){return!0},Q=function(m){a(m,f,{value:{objectID:"O"+g++,weakData:{}}})},v=T.exports={enable:function(){v.enable=function(){},e=!0;var m=B.f,P=i([].splice),N={};N[f]=1,m(N).length&&(B.f=function(F){for(var L=m(F),U=0,eA=L.length;UL;L++)if((eA=pA(Q[L]))&&E(w,eA))return eA;return new g(!1)}N=u(Q,F)}for(sA=N.next;!(q=o(sA,N)).done;){try{eA=pA(q.value)}catch(lA){e(N,"throw",lA)}if("object"==typeof eA&&eA&&E(w,eA))return eA}return new g(!1)}},9212:function(T,I,n){var c=n(6916),i=n(9670),o=n(8173);T.exports=function(l,h,a){var B,E;i(l);try{if(!(B=o(l,"return"))){if("throw"===h)throw a;return a}B=c(B,l)}catch(u){E=!0,B=u}if("throw"===h)throw a;if(E)throw B;return i(B),a}},3383:function(T,I,n){"use strict";var C,e,f,c=n(7293),i=n(614),o=n(30),l=n(9518),h=n(1320),a=n(5112),B=n(1913),E=a("iterator"),u=!1;[].keys&&("next"in(f=[].keys())?(e=l(l(f)))!==Object.prototype&&(C=e):u=!0),null==C||c(function(){var w={};return C[E].call(w)!==w})?C={}:B&&(C=o(C)),i(C[E])||h(C,E,function(){return this}),T.exports={IteratorPrototype:C,BUGGY_SAFARI_ITERATORS:u}},7497:function(T){T.exports={}},6244:function(T,I,n){var c=n(7466);T.exports=function(i){return c(i.length)}},5948:function(T,I,n){var Q,p,Y,y,d,v,m,P,c=n(7854),i=n(9974),o=n(1236).f,l=n(261).set,h=n(6833),a=n(1528),B=n(1036),E=n(5268),u=c.MutationObserver||c.WebKitMutationObserver,C=c.document,e=c.process,f=c.Promise,g=o(c,"queueMicrotask"),w=g&&g.value;w||(Q=function(){var N,F;for(E&&(N=e.domain)&&N.exit();p;){F=p.fn,p=p.next;try{F()}catch(L){throw p?y():Y=void 0,L}}Y=void 0,N&&N.enter()},h||E||B||!u||!C?!a&&f&&f.resolve?((m=f.resolve(void 0)).constructor=f,P=i(m.then,m),y=function(){P(Q)}):E?y=function(){e.nextTick(Q)}:(l=i(l,c),y=function(){l(Q)}):(d=!0,v=C.createTextNode(""),new u(Q).observe(v,{characterData:!0}),y=function(){v.data=d=!d})),T.exports=w||function(N){var F={fn:N,next:void 0};Y&&(Y.next=F),p||(p=F,y()),Y=F}},3366:function(T,I,n){var c=n(7854);T.exports=c.Promise},133:function(T,I,n){var c=n(7392),i=n(7293);T.exports=!!Object.getOwnPropertySymbols&&!i(function(){var o=Symbol();return!String(o)||!(Object(o)instanceof Symbol)||!Symbol.sham&&c&&c<41})},8536:function(T,I,n){var c=n(7854),i=n(614),o=n(2788),l=c.WeakMap;T.exports=i(l)&&/native code/.test(o(l))},8523:function(T,I,n){"use strict";var c=n(9662),i=function(o){var l,h;this.promise=new o(function(a,B){if(void 0!==l||void 0!==h)throw TypeError("Bad Promise constructor");l=a,h=B}),this.resolve=c(l),this.reject=c(h)};T.exports.f=function(o){return new i(o)}},6277:function(T,I,n){var c=n(1340);T.exports=function(i,o){return void 0===i?arguments.length<2?"":o:c(i)}},3929:function(T,I,n){var c=n(7854),i=n(7850),o=c.TypeError;T.exports=function(l){if(i(l))throw o("The method doesn't accept regular expressions");return l}},7023:function(T,I,n){var i=n(7854).isFinite;T.exports=Number.isFinite||function(l){return"number"==typeof l&&i(l)}},1574:function(T,I,n){"use strict";var c=n(9781),i=n(1702),o=n(6916),l=n(7293),h=n(1956),a=n(5181),B=n(5296),E=n(7908),u=n(8361),C=Object.assign,e=Object.defineProperty,f=i([].concat);T.exports=!C||l(function(){if(c&&1!==C({b:1},C(e({},"a",{enumerable:!0,get:function(){e(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var g={},w={},Q=Symbol(),p="abcdefghijklmnopqrst";return g[Q]=7,p.split("").forEach(function(Y){w[Y]=Y}),7!=C({},g)[Q]||h(C({},w)).join("")!=p})?function(w,Q){for(var p=E(w),Y=arguments.length,y=1,d=a.f,v=B.f;Y>y;)for(var L,m=u(arguments[y++]),P=d?f(h(m),d(m)):h(m),N=P.length,F=0;N>F;)L=P[F++],(!c||o(v,m,L))&&(p[L]=m[L]);return p}:C},30:function(T,I,n){var Y,c=n(9670),i=n(6048),o=n(748),l=n(3501),h=n(490),a=n(317),B=n(6200),C="prototype",e="script",f=B("IE_PROTO"),g=function(){},w=function(d){return"<"+e+">"+d+""},Q=function(d){d.write(w("")),d.close();var v=d.parentWindow.Object;return d=null,v},y=function(){try{Y=new ActiveXObject("htmlfile")}catch(v){}y="undefined"!=typeof document?document.domain&&Y?Q(Y):function(){var m,d=a("iframe");return d.style.display="none",h.appendChild(d),d.src=String("javascript:"),(m=d.contentWindow.document).open(),m.write(w("document.F=Object")),m.close(),m.F}():Q(Y);for(var d=o.length;d--;)delete y[C][o[d]];return y()};l[f]=!0,T.exports=Object.create||function(v,m){var P;return null!==v?(g[C]=c(v),P=new g,g[C]=null,P[f]=v):P=y(),void 0===m?P:i(P,m)}},6048:function(T,I,n){var c=n(9781),i=n(3070),o=n(9670),l=n(5656),h=n(1956);T.exports=c?Object.defineProperties:function(B,E){o(B);for(var g,u=l(E),C=h(E),e=C.length,f=0;e>f;)i.f(B,g=C[f++],u[g]);return B}},3070:function(T,I,n){var c=n(7854),i=n(9781),o=n(4664),l=n(9670),h=n(4948),a=c.TypeError,B=Object.defineProperty;I.f=i?B:function(u,C,e){if(l(u),C=h(C),l(e),o)try{return B(u,C,e)}catch(f){}if("get"in e||"set"in e)throw a("Accessors not supported");return"value"in e&&(u[C]=e.value),u}},1236:function(T,I,n){var c=n(9781),i=n(6916),o=n(5296),l=n(9114),h=n(5656),a=n(4948),B=n(2597),E=n(4664),u=Object.getOwnPropertyDescriptor;I.f=c?u:function(e,f){if(e=h(e),f=a(f),E)try{return u(e,f)}catch(g){}if(B(e,f))return l(!i(o.f,e,f),e[f])}},1156:function(T,I,n){var c=n(4326),i=n(5656),o=n(8006).f,l=n(206),h="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];T.exports.f=function(E){return h&&"Window"==c(E)?function(B){try{return o(B)}catch(E){return l(h)}}(E):o(i(E))}},8006:function(T,I,n){var c=n(6324),o=n(748).concat("length","prototype");I.f=Object.getOwnPropertyNames||function(h){return c(h,o)}},5181:function(T,I){I.f=Object.getOwnPropertySymbols},9518:function(T,I,n){var c=n(7854),i=n(2597),o=n(614),l=n(7908),h=n(6200),a=n(8544),B=h("IE_PROTO"),E=c.Object,u=E.prototype;T.exports=a?E.getPrototypeOf:function(C){var e=l(C);if(i(e,B))return e[B];var f=e.constructor;return o(f)&&e instanceof f?f.prototype:e instanceof E?u:null}},7976:function(T,I,n){var c=n(1702);T.exports=c({}.isPrototypeOf)},6324:function(T,I,n){var c=n(1702),i=n(2597),o=n(5656),l=n(1318).indexOf,h=n(3501),a=c([].push);T.exports=function(B,E){var f,u=o(B),C=0,e=[];for(f in u)!i(h,f)&&i(u,f)&&a(e,f);for(;E.length>C;)i(u,f=E[C++])&&(~l(e,f)||a(e,f));return e}},1956:function(T,I,n){var c=n(6324),i=n(748);T.exports=Object.keys||function(l){return c(l,i)}},5296:function(T,I){"use strict";var n={}.propertyIsEnumerable,c=Object.getOwnPropertyDescriptor,i=c&&!n.call({1:2},1);I.f=i?function(l){var h=c(this,l);return!!h&&h.enumerable}:n},7674:function(T,I,n){var c=n(1702),i=n(9670),o=n(6077);T.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var a,l=!1,h={};try{(a=c(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(h,[]),l=h instanceof Array}catch(B){}return function(E,u){return i(E),o(u),l?a(E,u):E.__proto__=u,E}}():void 0)},4699:function(T,I,n){var c=n(9781),i=n(1702),o=n(1956),l=n(5656),a=i(n(5296).f),B=i([].push),E=function(u){return function(C){for(var p,e=l(C),f=o(e),g=f.length,w=0,Q=[];g>w;)p=f[w++],(!c||a(e,p))&&B(Q,u?[p,e[p]]:e[p]);return Q}};T.exports={entries:E(!0),values:E(!1)}},288:function(T,I,n){"use strict";var c=n(1694),i=n(648);T.exports=c?{}.toString:function(){return"[object "+i(this)+"]"}},2140:function(T,I,n){var c=n(7854),i=n(6916),o=n(614),l=n(111),h=c.TypeError;T.exports=function(a,B){var E,u;if("string"===B&&o(E=a.toString)&&!l(u=i(E,a))||o(E=a.valueOf)&&!l(u=i(E,a))||"string"!==B&&o(E=a.toString)&&!l(u=i(E,a)))return u;throw h("Can't convert object to primitive value")}},3887:function(T,I,n){var c=n(5005),i=n(1702),o=n(8006),l=n(5181),h=n(9670),a=i([].concat);T.exports=c("Reflect","ownKeys")||function(E){var u=o.f(h(E)),C=l.f;return C?a(u,C(E)):u}},857:function(T,I,n){var c=n(7854);T.exports=c},2534:function(T){T.exports=function(I){try{return{error:!1,value:I()}}catch(n){return{error:!0,value:n}}}},9478:function(T,I,n){var c=n(9670),i=n(111),o=n(8523);T.exports=function(l,h){if(c(l),i(h)&&h.constructor===l)return h;var a=o.f(l);return(0,a.resolve)(h),a.promise}},2248:function(T,I,n){var c=n(1320);T.exports=function(i,o,l){for(var h in o)c(i,h,o[h],l);return i}},1320:function(T,I,n){var c=n(7854),i=n(614),o=n(2597),l=n(8880),h=n(3505),a=n(2788),B=n(9909),E=n(6530).CONFIGURABLE,u=B.get,C=B.enforce,e=String(String).split("String");(T.exports=function(f,g,w,Q){var v,p=!!Q&&!!Q.unsafe,Y=!!Q&&!!Q.enumerable,y=!!Q&&!!Q.noTargetGet,d=Q&&void 0!==Q.name?Q.name:g;i(w)&&("Symbol("===String(d).slice(0,7)&&(d="["+String(d).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!o(w,"name")||E&&w.name!==d)&&l(w,"name",d),(v=C(w)).source||(v.source=e.join("string"==typeof d?d:""))),f!==c?(p?!y&&f[g]&&(Y=!0):delete f[g],Y?f[g]=w:l(f,g,w)):Y?f[g]=w:h(g,w)})(Function.prototype,"toString",function(){return i(this)&&u(this).source||a(this)})},7651:function(T,I,n){var c=n(7854),i=n(6916),o=n(9670),l=n(614),h=n(4326),a=n(2261),B=c.TypeError;T.exports=function(E,u){var C=E.exec;if(l(C)){var e=i(C,E,u);return null!==e&&o(e),e}if("RegExp"===h(E))return i(a,E,u);throw B("RegExp#exec called on incompatible receiver")}},2261:function(T,I,n){"use strict";var P,N,c=n(6916),i=n(1702),o=n(1340),l=n(7066),h=n(2999),a=n(2309),B=n(30),E=n(9909).get,u=n(9441),C=n(7168),e=a("native-string-replace",String.prototype.replace),f=RegExp.prototype.exec,g=f,w=i("".charAt),Q=i("".indexOf),p=i("".replace),Y=i("".slice),y=(N=/b*/g,c(f,P=/a/,"a"),c(f,N,"a"),0!==P.lastIndex||0!==N.lastIndex),d=h.UNSUPPORTED_Y||h.BROKEN_CARET,v=void 0!==/()??/.exec("")[1];(y||v||d||u||C)&&(g=function(N){var sA,q,BA,pA,lA,cA,gA,F=this,L=E(F),U=o(N),eA=L.raw;if(eA)return eA.lastIndex=F.lastIndex,sA=c(g,eA,U),F.lastIndex=eA.lastIndex,sA;var yA=L.groups,FA=d&&F.sticky,_=c(l,F),MA=F.source,uA=0,QA=U;if(FA&&(_=p(_,"y",""),-1===Q(_,"g")&&(_+="g"),QA=Y(U,F.lastIndex),F.lastIndex>0&&(!F.multiline||F.multiline&&"\n"!==w(U,F.lastIndex-1))&&(MA="(?: "+MA+")",QA=" "+QA,uA++),q=new RegExp("^(?:"+MA+")",_)),v&&(q=new RegExp("^"+MA+"$(?!\\s)",_)),y&&(BA=F.lastIndex),pA=c(f,FA?q:F,QA),FA?pA?(pA.input=Y(pA.input,uA),pA[0]=Y(pA[0],uA),pA.index=F.lastIndex,F.lastIndex+=pA[0].length):F.lastIndex=0:y&&pA&&(F.lastIndex=F.global?pA.index+pA[0].length:BA),v&&pA&&pA.length>1&&c(e,pA[0],q,function(){for(lA=1;lAb)","g");return"b"!==l.exec("b").groups.a||"bc"!=="b".replace(l,"$c")})},4488:function(T,I,n){var i=n(7854).TypeError;T.exports=function(o){if(null==o)throw i("Can't call method on "+o);return o}},3505:function(T,I,n){var c=n(7854),i=Object.defineProperty;T.exports=function(o,l){try{i(c,o,{value:l,configurable:!0,writable:!0})}catch(h){c[o]=l}return l}},6340:function(T,I,n){"use strict";var c=n(5005),i=n(3070),o=n(5112),l=n(9781),h=o("species");T.exports=function(a){var B=c(a);l&&B&&!B[h]&&(0,i.f)(B,h,{configurable:!0,get:function(){return this}})}},8003:function(T,I,n){var c=n(3070).f,i=n(2597),l=n(5112)("toStringTag");T.exports=function(h,a,B){h&&!i(h=B?h:h.prototype,l)&&c(h,l,{configurable:!0,value:a})}},6200:function(T,I,n){var c=n(2309),i=n(9711),o=c("keys");T.exports=function(l){return o[l]||(o[l]=i(l))}},5465:function(T,I,n){var c=n(7854),i=n(3505),o="__core-js_shared__",l=c[o]||i(o,{});T.exports=l},2309:function(T,I,n){var c=n(1913),i=n(5465);(T.exports=function(o,l){return i[o]||(i[o]=void 0!==l?l:{})})("versions",[]).push({version:"3.19.0",mode:c?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(T,I,n){var c=n(9670),i=n(9483),l=n(5112)("species");T.exports=function(h,a){var E,B=c(h).constructor;return void 0===B||null==(E=c(B)[l])?a:i(E)}},3429:function(T,I,n){var c=n(7293);T.exports=function(i){return c(function(){var o=""[i]('"');return o!==o.toLowerCase()||o.split('"').length>3})}},8710:function(T,I,n){var c=n(1702),i=n(9303),o=n(1340),l=n(4488),h=c("".charAt),a=c("".charCodeAt),B=c("".slice),E=function(u){return function(C,e){var Q,p,f=o(l(C)),g=i(e),w=f.length;return g<0||g>=w?u?"":void 0:(Q=a(f,g))<55296||Q>56319||g+1===w||(p=a(f,g+1))<56320||p>57343?u?h(f,g):Q:u?B(f,g,g+2):p-56320+(Q-55296<<10)+65536}};T.exports={codeAt:E(!1),charAt:E(!0)}},8415:function(T,I,n){"use strict";var c=n(7854),i=n(9303),o=n(1340),l=n(4488),h=c.RangeError;T.exports=function(B){var E=o(l(this)),u="",C=i(B);if(C<0||C==1/0)throw h("Wrong number of repetitions");for(;C>0;(C>>>=1)&&(E+=E))1&C&&(u+=E);return u}},6091:function(T,I,n){var c=n(6530).PROPER,i=n(7293),o=n(1361);T.exports=function(h){return i(function(){return!!o[h]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[h]()||c&&o[h].name!==h})}},3111:function(T,I,n){var c=n(1702),i=n(4488),o=n(1340),l=n(1361),h=c("".replace),a="["+l+"]",B=RegExp("^"+a+a+"*"),E=RegExp(a+a+"*$"),u=function(C){return function(e){var f=o(i(e));return 1&C&&(f=h(f,B,"")),2&C&&(f=h(f,E,"")),f}};T.exports={start:u(1),end:u(2),trim:u(3)}},261:function(T,I,n){var P,N,F,L,c=n(7854),i=n(2104),o=n(9974),l=n(614),h=n(2597),a=n(7293),B=n(490),E=n(206),u=n(317),C=n(6833),e=n(5268),f=c.setImmediate,g=c.clearImmediate,w=c.process,Q=c.Dispatch,p=c.Function,Y=c.MessageChannel,y=c.String,d=0,v={},m="onreadystatechange";try{P=c.location}catch(BA){}var U=function(BA){if(h(v,BA)){var pA=v[BA];delete v[BA],pA()}},eA=function(BA){return function(){U(BA)}},sA=function(BA){U(BA.data)},q=function(BA){c.postMessage(y(BA),P.protocol+"//"+P.host)};(!f||!g)&&(f=function(pA){var lA=E(arguments,1);return v[++d]=function(){i(l(pA)?pA:p(pA),void 0,lA)},N(d),d},g=function(pA){delete v[pA]},e?N=function(BA){w.nextTick(eA(BA))}:Q&&Q.now?N=function(BA){Q.now(eA(BA))}:Y&&!C?(L=(F=new Y).port2,F.port1.onmessage=sA,N=o(L.postMessage,L)):c.addEventListener&&l(c.postMessage)&&!c.importScripts&&P&&"file:"!==P.protocol&&!a(q)?(N=q,c.addEventListener("message",sA,!1)):N=m in u("script")?function(BA){B.appendChild(u("script"))[m]=function(){B.removeChild(this),U(BA)}}:function(BA){setTimeout(eA(BA),0)}),T.exports={set:f,clear:g}},863:function(T,I,n){var c=n(1702);T.exports=c(1..valueOf)},1400:function(T,I,n){var c=n(9303),i=Math.max,o=Math.min;T.exports=function(l,h){var a=c(l);return a<0?i(a+h,0):o(a,h)}},7067:function(T,I,n){var c=n(7854),i=n(9303),o=n(7466),l=c.RangeError;T.exports=function(h){if(void 0===h)return 0;var a=i(h),B=o(a);if(a!==B)throw l("Wrong length or index");return B}},5656:function(T,I,n){var c=n(8361),i=n(4488);T.exports=function(o){return c(i(o))}},9303:function(T){var I=Math.ceil,n=Math.floor;T.exports=function(c){var i=+c;return i!=i||0===i?0:(i>0?n:I)(i)}},7466:function(T,I,n){var c=n(9303),i=Math.min;T.exports=function(o){return o>0?i(c(o),9007199254740991):0}},7908:function(T,I,n){var c=n(7854),i=n(4488),o=c.Object;T.exports=function(l){return o(i(l))}},4590:function(T,I,n){var c=n(7854),i=n(3002),o=c.RangeError;T.exports=function(l,h){var a=i(l);if(a%h)throw o("Wrong offset");return a}},3002:function(T,I,n){var c=n(7854),i=n(9303),o=c.RangeError;T.exports=function(l){var h=i(l);if(h<0)throw o("The argument can't be less than 0");return h}},7593:function(T,I,n){var c=n(7854),i=n(6916),o=n(111),l=n(2190),h=n(8173),a=n(2140),B=n(5112),E=c.TypeError,u=B("toPrimitive");T.exports=function(C,e){if(!o(C)||l(C))return C;var g,f=h(C,u);if(f){if(void 0===e&&(e="default"),g=i(f,C,e),!o(g)||l(g))return g;throw E("Can't convert object to primitive value")}return void 0===e&&(e="number"),a(C,e)}},4948:function(T,I,n){var c=n(7593),i=n(2190);T.exports=function(o){var l=c(o,"string");return i(l)?l:l+""}},1694:function(T,I,n){var o={};o[n(5112)("toStringTag")]="z",T.exports="[object z]"===String(o)},1340:function(T,I,n){var c=n(7854),i=n(648),o=c.String;T.exports=function(l){if("Symbol"===i(l))throw TypeError("Cannot convert a Symbol value to a string");return o(l)}},6330:function(T,I,n){var i=n(7854).String;T.exports=function(o){try{return i(o)}catch(l){return"Object"}}},9843:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(6916),l=n(9781),h=n(3832),a=n(2094),B=n(2091),E=n(5787),u=n(9114),C=n(8880),e=n(5988),f=n(7466),g=n(7067),w=n(4590),Q=n(4948),p=n(2597),Y=n(648),y=n(111),d=n(2190),v=n(30),m=n(7976),P=n(7674),N=n(8006).f,F=n(7321),L=n(2092).forEach,U=n(6340),eA=n(3070),sA=n(1236),q=n(9909),BA=n(9587),pA=q.get,lA=q.set,cA=eA.f,gA=sA.f,yA=Math.round,FA=i.RangeError,_=B.ArrayBuffer,MA=_.prototype,uA=B.DataView,QA=a.NATIVE_ARRAY_BUFFER_VIEWS,NA=a.TYPED_ARRAY_CONSTRUCTOR,bA=a.TYPED_ARRAY_TAG,XA=a.TypedArray,X=a.TypedArrayPrototype,O=a.aTypedArrayConstructor,$=a.isTypedArray,W="BYTES_PER_ELEMENT",hA="Wrong length",mA=function(TA,it){O(TA);for(var vt=0,It=it.length,ht=new TA(It);It>vt;)ht[vt]=it[vt++];return ht},nA=function(TA,it){cA(TA,it,{get:function(){return pA(this)[it]}})},EA=function(TA){var it;return m(MA,TA)||"ArrayBuffer"==(it=Y(TA))||"SharedArrayBuffer"==it},GA=function(TA,it){return $(TA)&&!d(it)&&it in TA&&e(+it)&&it>=0},et=function(it,vt){return vt=Q(vt),GA(it,vt)?u(2,it[vt]):gA(it,vt)},st=function(it,vt,It){return vt=Q(vt),!(GA(it,vt)&&y(It)&&p(It,"value"))||p(It,"get")||p(It,"set")||It.configurable||p(It,"writable")&&!It.writable||p(It,"enumerable")&&!It.enumerable?cA(it,vt,It):(it[vt]=It.value,it)};l?(QA||(sA.f=et,eA.f=st,nA(X,"buffer"),nA(X,"byteOffset"),nA(X,"byteLength"),nA(X,"length")),c({target:"Object",stat:!0,forced:!QA},{getOwnPropertyDescriptor:et,defineProperty:st}),T.exports=function(TA,it,vt){var It=TA.match(/\d+$/)[0]/8,ht=TA+(vt?"Clamped":"")+"Array",JA="get"+TA,WA="set"+TA,rt=i[ht],xA=rt,Mt=xA&&xA.prototype,Et={},H=function(k,b){cA(k,b,{get:function(){return function(k,b){var CA=pA(k);return CA.view[JA](b*It+CA.byteOffset,!0)}(this,b)},set:function(CA){return function(k,b,CA){var wA=pA(k);vt&&(CA=(CA=yA(CA))<0?0:CA>255?255:255&CA),wA.view[WA](b*It+wA.byteOffset,CA,!0)}(this,b,CA)},enumerable:!0})};QA?h&&(xA=it(function(k,b,CA,wA){return E(k,Mt),BA(y(b)?EA(b)?void 0!==wA?new rt(b,w(CA,It),wA):void 0!==CA?new rt(b,w(CA,It)):new rt(b):$(b)?mA(xA,b):o(F,xA,b):new rt(g(b)),k,xA)}),P&&P(xA,XA),L(N(rt),function(k){k in xA||C(xA,k,rt[k])}),xA.prototype=Mt):(xA=it(function(k,b,CA,wA){E(k,Mt);var gt,Yt,j,RA=0,rA=0;if(y(b)){if(!EA(b))return $(b)?mA(xA,b):o(F,xA,b);gt=b,rA=w(CA,It);var qA=b.byteLength;if(void 0===wA){if(qA%It||(Yt=qA-rA)<0)throw FA(hA)}else if((Yt=f(wA)*It)+rA>qA)throw FA(hA);j=Yt/It}else j=g(b),gt=new _(Yt=j*It);for(lA(k,{buffer:gt,byteOffset:rA,byteLength:Yt,length:j,view:new uA(gt)});RA1?arguments[1]:void 0,p=void 0!==Q,Y=B(g);if(Y&&!E(Y))for(N=(P=a(g,Y)).next,g=[];!(m=i(N,P)).done;)g.push(m.value);for(p&&w>2&&(Q=c(Q,arguments[2])),d=h(g),v=new(u(f))(d),y=0;d>y;y++)v[y]=p?Q(g[y],y):g[y];return v}},6304:function(T,I,n){var c=n(2094),i=n(6707),o=c.TYPED_ARRAY_CONSTRUCTOR,l=c.aTypedArrayConstructor;T.exports=function(h){return l(i(h,h[o]))}},9711:function(T,I,n){var c=n(1702),i=0,o=Math.random(),l=c(1..toString);T.exports=function(h){return"Symbol("+(void 0===h?"":h)+")_"+l(++i+o,36)}},3307:function(T,I,n){var c=n(133);T.exports=c&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},6061:function(T,I,n){var c=n(5112);I.f=c},5112:function(T,I,n){var c=n(7854),i=n(2309),o=n(2597),l=n(9711),h=n(133),a=n(3307),B=i("wks"),E=c.Symbol,u=E&&E.for,C=a?E:E&&E.withoutSetter||l;T.exports=function(e){if(!o(B,e)||!h&&"string"!=typeof B[e]){var f="Symbol."+e;B[e]=h&&o(E,e)?E[e]:a&&u?u(f):C(f)}return B[e]}},1361:function(T){T.exports="\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},9170:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(7976),l=n(9518),h=n(7674),a=n(9920),B=n(30),E=n(8880),u=n(9114),C=n(7741),e=n(8340),f=n(408),g=n(6277),w=n(2914),Q=i.Error,p=[].push,Y=function(v,m){var P=o(y,this)?this:B(y),N=arguments.length>2?arguments[2]:void 0;h&&(P=h(new Q(void 0),l(P))),E(P,"message",g(m,"")),w&&E(P,"stack",C(P.stack,1)),e(P,N);var F=[];return f(v,p,{that:F}),E(P,"errors",F),P};h?h(Y,Q):a(Y,Q);var y=Y.prototype=B(Q.prototype,{constructor:u(1,Y),message:u(1,""),name:u(1,"AggregateError")});c({global:!0},{AggregateError:Y})},2222:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(7293),l=n(3157),h=n(111),a=n(7908),B=n(6244),E=n(6135),u=n(5417),C=n(1194),e=n(5112),f=n(7392),g=e("isConcatSpreadable"),w=9007199254740991,Q="Maximum allowed index exceeded",p=i.TypeError,Y=f>=51||!o(function(){var m=[];return m[g]=!1,m.concat()[0]!==m}),y=C("concat"),d=function(m){if(!h(m))return!1;var P=m[g];return void 0!==P?!!P:l(m)};c({target:"Array",proto:!0,forced:!Y||!y},{concat:function(P){var U,eA,sA,q,BA,N=a(this),F=u(N,0),L=0;for(U=-1,sA=arguments.length;Uw)throw p(Q);for(eA=0;eA=w)throw p(Q);E(F,L++,BA)}return F.length=L,F}})},545:function(T,I,n){var c=n(2109),i=n(1048),o=n(1223);c({target:"Array",proto:!0},{copyWithin:i}),o("copyWithin")},3290:function(T,I,n){var c=n(2109),i=n(1285),o=n(1223);c({target:"Array",proto:!0},{fill:i}),o("fill")},7327:function(T,I,n){"use strict";var c=n(2109),i=n(2092).filter;c({target:"Array",proto:!0,forced:!n(1194)("filter")},{filter:function(a){return i(this,a,arguments.length>1?arguments[1]:void 0)}})},1038:function(T,I,n){var c=n(2109),i=n(8457);c({target:"Array",stat:!0,forced:!n(7072)(function(h){Array.from(h)})},{from:i})},6699:function(T,I,n){"use strict";var c=n(2109),i=n(1318).includes,o=n(1223);c({target:"Array",proto:!0},{includes:function(h){return i(this,h,arguments.length>1?arguments[1]:void 0)}}),o("includes")},6992:function(T,I,n){"use strict";var c=n(5656),i=n(1223),o=n(7497),l=n(9909),h=n(654),a="Array Iterator",B=l.set,E=l.getterFor(a);T.exports=h(Array,"Array",function(u,C){B(this,{type:a,target:c(u),index:0,kind:C})},function(){var u=E(this),C=u.target,e=u.kind,f=u.index++;return!C||f>=C.length?(u.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:f,done:!1}:"values"==e?{value:C[f],done:!1}:{value:[f,C[f]],done:!1}},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},9600:function(T,I,n){"use strict";var c=n(2109),i=n(1702),o=n(8361),l=n(5656),h=n(9341),a=i([].join),B=o!=Object,E=h("join",",");c({target:"Array",proto:!0,forced:B||!E},{join:function(C){return a(l(this),void 0===C?",":C)}})},1249:function(T,I,n){"use strict";var c=n(2109),i=n(2092).map;c({target:"Array",proto:!0,forced:!n(1194)("map")},{map:function(a){return i(this,a,arguments.length>1?arguments[1]:void 0)}})},7042:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(3157),l=n(4411),h=n(111),a=n(1400),B=n(6244),E=n(5656),u=n(6135),C=n(5112),e=n(1194),f=n(206),g=e("slice"),w=C("species"),Q=i.Array,p=Math.max;c({target:"Array",proto:!0,forced:!g},{slice:function(y,d){var F,L,U,v=E(this),m=B(v),P=a(y,m),N=a(void 0===d?m:d,m);if(o(v)&&((l(F=v.constructor)&&(F===Q||o(F.prototype))||h(F)&&null===(F=F[w]))&&(F=void 0),F===Q||void 0===F))return f(v,P,N);for(L=new(void 0===F?Q:F)(p(N-P,0)),U=0;P3)){if(e)return!0;if(g)return g<603;var F,L,U,eA,N="";for(F=65;F<76;F++){switch(L=String.fromCharCode(F),F){case 66:case 69:case 70:case 72:U=3;break;case 68:case 71:U=4;break;default:U=2}for(eA=0;eA<47;eA++)w.push({k:L+eA,v:U})}for(w.sort(function(sA,q){return q.v-sA.v}),eA=0;eAa(L)?1:-1}}(F)),sA=U.length,q=0;qw)throw e(Q);for(L=B(d,F),U=0;Uv-F+N;U--)delete d[U-1]}else if(N>F)for(U=v-F;U>m;U--)sA=U+N-1,(eA=U+F-1)in d?d[sA]=d[eA]:delete d[sA];for(U=0;U2)if(BA=p(BA),43===(pA=P(BA,0))||45===pA){if(88===(lA=P(BA,2))||120===lA)return NaN}else if(48===pA){switch(P(BA,1)){case 66:case 98:cA=2,gA=49;break;case 79:case 111:cA=8,gA=55;break;default:return+BA}for(FA=(yA=m(BA,2)).length,_=0;_gA)return NaN;return parseInt(yA,cA)}return+BA};if(l(Y,!y(" 0o1")||!y("0b1")||y("+0x1"))){for(var sA,L=function(BA){var pA=arguments.length<1?0:y(N(BA)),lA=this;return E(d,lA)&&e(function(){Q(lA)})?B(Object(pA),lA,L):pA},U=c?f(y):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),eA=0;U.length>eA;eA++)a(y,sA=U[eA])&&!a(L,sA)&&w(L,sA,g(y,sA));L.prototype=d,d.constructor=L,h(i,Y,L)}},3299:function(T,I,n){n(2109)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},5192:function(T,I,n){n(2109)({target:"Number",stat:!0},{isFinite:n(7023)})},3161:function(T,I,n){n(2109)({target:"Number",stat:!0},{isInteger:n(5988)})},6977:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(1702),l=n(9303),h=n(863),a=n(8415),B=n(7293),E=i.RangeError,u=i.String,C=Math.floor,e=o(a),f=o("".slice),g=o(1..toFixed),w=function(v,m,P){return 0===m?P:m%2==1?w(v,m-1,P*v):w(v*v,m/2,P)},p=function(v,m,P){for(var N=-1,F=P;++N<6;)v[N]=(F+=m*v[N])%1e7,F=C(F/1e7)},Y=function(v,m){for(var P=6,N=0;--P>=0;)v[P]=C((N+=v[P])/m),N=N%m*1e7},y=function(v){for(var m=6,P="";--m>=0;)if(""!==P||0===m||0!==v[m]){var N=u(v[m]);P=""===P?N:P+e("0",7-N.length)+N}return P};c({target:"Number",proto:!0,forced:B(function(){return"0.000"!==g(8e-5,3)||"1"!==g(.9,0)||"1.25"!==g(1.255,2)||"1000000000000000128"!==g(0xde0b6b3a7640080,0)})||!B(function(){g({})})},{toFixed:function(m){var eA,sA,q,BA,P=h(this),N=l(m),F=[0,0,0,0,0,0],L="",U="0";if(N<0||N>20)throw E("Incorrect fraction digits");if(P!=P)return"NaN";if(P<=-1e21||P>=1e21)return u(P);if(P<0&&(L="-",P=-P),P>1e-21)if(sA=(eA=function(v){for(var m=0,P=v;P>=4096;)m+=12,P/=4096;for(;P>=2;)m+=1,P/=2;return m}(P*w(2,69,1))-69)<0?P*w(2,-eA,1):P/w(2,eA,1),sA*=4503599627370496,(eA=52-eA)>0){for(p(F,0,sA),q=N;q>=7;)p(F,1e7,0),q-=7;for(p(F,w(10,q,1),0),q=eA-1;q>=23;)Y(F,8388608),q-=23;Y(F,1<0?L+((BA=U.length)<=N?"0."+e("0",N-BA)+U:f(U,0,BA-N)+"."+f(U,BA-N)):L+U}})},9601:function(T,I,n){var c=n(2109),i=n(1574);c({target:"Object",stat:!0,forced:Object.assign!==i},{assign:i})},3371:function(T,I,n){var c=n(2109),i=n(6677),o=n(7293),l=n(111),h=n(2423).onFreeze,a=Object.freeze;c({target:"Object",stat:!0,forced:o(function(){a(1)}),sham:!i},{freeze:function(u){return a&&l(u)?a(h(u)):u}})},5003:function(T,I,n){var c=n(2109),i=n(7293),o=n(5656),l=n(1236).f,h=n(9781),a=i(function(){l(1)});c({target:"Object",stat:!0,forced:!h||a,sham:!h},{getOwnPropertyDescriptor:function(u,C){return l(o(u),C)}})},9337:function(T,I,n){var c=n(2109),i=n(9781),o=n(3887),l=n(5656),h=n(1236),a=n(6135);c({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(E){for(var w,Q,u=l(E),C=h.f,e=o(u),f={},g=0;e.length>g;)void 0!==(Q=C(u,w=e[g++]))&&a(f,w,Q);return f}})},489:function(T,I,n){var c=n(2109),i=n(7293),o=n(7908),l=n(9518),h=n(8544);c({target:"Object",stat:!0,forced:i(function(){l(1)}),sham:!h},{getPrototypeOf:function(E){return l(o(E))}})},7941:function(T,I,n){var c=n(2109),i=n(7908),o=n(1956);c({target:"Object",stat:!0,forced:n(7293)(function(){o(1)})},{keys:function(B){return o(i(B))}})},1539:function(T,I,n){var c=n(1694),i=n(1320),o=n(288);c||i(Object.prototype,"toString",o,{unsafe:!0})},2479:function(T,I,n){var c=n(2109),i=n(4699).values;c({target:"Object",stat:!0},{values:function(l){return i(l)}})},7922:function(T,I,n){"use strict";var c=n(2109),i=n(6916),o=n(9662),l=n(8523),h=n(2534),a=n(408);c({target:"Promise",stat:!0},{allSettled:function(E){var u=this,C=l.f(u),e=C.resolve,f=C.reject,g=h(function(){var w=o(u.resolve),Q=[],p=0,Y=1;a(E,function(y){var d=p++,v=!1;Y++,i(w,u,y).then(function(m){v||(v=!0,Q[d]={status:"fulfilled",value:m},--Y||e(Q))},function(m){v||(v=!0,Q[d]={status:"rejected",reason:m},--Y||e(Q))})}),--Y||e(Q)});return g.error&&f(g.value),C.promise}})},4668:function(T,I,n){"use strict";var c=n(2109),i=n(9662),o=n(5005),l=n(6916),h=n(8523),a=n(2534),B=n(408),E="No one promise resolved";c({target:"Promise",stat:!0},{any:function(C){var e=this,f=o("AggregateError"),g=h.f(e),w=g.resolve,Q=g.reject,p=a(function(){var Y=i(e.resolve),y=[],d=0,v=1,m=!1;B(C,function(P){var N=d++,F=!1;v++,l(Y,e,P).then(function(L){F||m||(m=!0,w(L))},function(L){F||m||(F=!0,y[N]=L,--v||Q(new f(y,E)))})}),--v||Q(new f(y,E))});return p.error&&Q(p.value),g.promise}})},7727:function(T,I,n){"use strict";var c=n(2109),i=n(1913),o=n(3366),l=n(7293),h=n(5005),a=n(614),B=n(6707),E=n(9478),u=n(1320);if(c({target:"Promise",proto:!0,real:!0,forced:!!o&&l(function(){o.prototype.finally.call({then:function(){}},function(){})})},{finally:function(f){var g=B(this,h("Promise")),w=a(f);return this.then(w?function(Q){return E(g,f()).then(function(){return Q})}:f,w?function(Q){return E(g,f()).then(function(){throw Q})}:f)}}),!i&&a(o)){var e=h("Promise").prototype.finally;o.prototype.finally!==e&&u(o.prototype,"finally",e,{unsafe:!0})}},8674:function(T,I,n){"use strict";var TA,it,vt,It,c=n(2109),i=n(1913),o=n(7854),l=n(5005),h=n(6916),a=n(3366),B=n(1320),E=n(2248),u=n(7674),C=n(8003),e=n(6340),f=n(9662),g=n(614),w=n(111),Q=n(5787),p=n(2788),Y=n(408),y=n(7072),d=n(6707),v=n(261).set,m=n(5948),P=n(9478),N=n(842),F=n(8523),L=n(2534),U=n(9909),eA=n(4705),sA=n(5112),q=n(7871),BA=n(5268),pA=n(7392),lA=sA("species"),cA="Promise",gA=U.get,yA=U.set,FA=U.getterFor(cA),_=a&&a.prototype,MA=a,uA=_,QA=o.TypeError,NA=o.document,bA=o.process,XA=F.f,X=XA,O=!!(NA&&NA.createEvent&&o.dispatchEvent),$=g(o.PromiseRejectionEvent),W="unhandledrejection",st=!1,ht=eA(cA,function(){var b=p(MA),CA=b!==String(MA);if(!CA&&66===pA||i&&!uA.finally)return!0;if(pA>=51&&/native code/.test(b))return!1;var wA=new MA(function(gt){gt(1)}),RA=function(gt){gt(function(){},function(){})};return(wA.constructor={})[lA]=RA,!(st=wA.then(function(){})instanceof RA)||!CA&&q&&!$}),JA=ht||!y(function(b){MA.all(b).catch(function(){})}),WA=function(b){var CA;return!(!w(b)||!g(CA=b.then))&&CA},rt=function(b,CA){if(!b.notified){b.notified=!0;var wA=b.reactions;m(function(){for(var RA=b.value,rA=1==b.state,gt=0;wA.length>gt;){var jA,lt,bt,Yt=wA[gt++],j=rA?Yt.ok:Yt.fail,qA=Yt.resolve,KA=Yt.reject,DA=Yt.domain;try{j?(rA||(2===b.rejection&&Tt(b),b.rejection=1),!0===j?jA=RA:(DA&&DA.enter(),jA=j(RA),DA&&(DA.exit(),bt=!0)),jA===Yt.promise?KA(QA("Promise-chain cycle")):(lt=WA(jA))?h(lt,jA,qA,KA):qA(jA)):KA(RA)}catch(yt){DA&&!bt&&DA.exit(),KA(yt)}}b.reactions=[],b.notified=!1,CA&&!b.rejection&&Mt(b)})}},xA=function(b,CA,wA){var RA,rA;O?((RA=NA.createEvent("Event")).promise=CA,RA.reason=wA,RA.initEvent(b,!1,!0),o.dispatchEvent(RA)):RA={promise:CA,reason:wA},!$&&(rA=o["on"+b])?rA(RA):b===W&&N("Unhandled promise rejection",wA)},Mt=function(b){h(v,o,function(){var rA,CA=b.facade,wA=b.value;if(Et(b)&&(rA=L(function(){BA?bA.emit("unhandledRejection",wA,CA):xA(W,CA,wA)}),b.rejection=BA||Et(b)?2:1,rA.error))throw rA.value})},Et=function(b){return 1!==b.rejection&&!b.parent},Tt=function(b){h(v,o,function(){var CA=b.facade;BA?bA.emit("rejectionHandled",CA):xA("rejectionhandled",CA,b.value)})},OA=function(b,CA,wA){return function(RA){b(CA,RA,wA)}},H=function(b,CA,wA){b.done||(b.done=!0,wA&&(b=wA),b.value=CA,b.state=2,rt(b,!0))},k=function(b,CA,wA){if(!b.done){b.done=!0,wA&&(b=wA);try{if(b.facade===CA)throw QA("Promise can't be resolved itself");var RA=WA(CA);RA?m(function(){var rA={done:!1};try{h(RA,CA,OA(k,rA,b),OA(H,rA,b))}catch(gt){H(rA,gt,b)}}):(b.value=CA,b.state=1,rt(b,!1))}catch(rA){H({done:!1},rA,b)}}};if(ht&&(MA=function(CA){Q(this,uA),f(CA),h(TA,this);var wA=gA(this);try{CA(OA(k,wA),OA(H,wA))}catch(RA){H(wA,RA)}},(TA=function(CA){yA(this,{type:cA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=E(uA=MA.prototype,{then:function(CA,wA){var RA=FA(this),rA=RA.reactions,gt=XA(d(this,MA));return gt.ok=!g(CA)||CA,gt.fail=g(wA)&&wA,gt.domain=BA?bA.domain:void 0,RA.parent=!0,rA[rA.length]=gt,0!=RA.state&&rt(RA,!1),gt.promise},catch:function(b){return this.then(void 0,b)}}),it=function(){var b=new TA,CA=gA(b);this.promise=b,this.resolve=OA(k,CA),this.reject=OA(H,CA)},F.f=XA=function(b){return b===MA||b===vt?new it(b):X(b)},!i&&g(a)&&_!==Object.prototype)){It=_.then,st||(B(_,"then",function(CA,wA){var RA=this;return new MA(function(rA,gt){h(It,RA,rA,gt)}).then(CA,wA)},{unsafe:!0}),B(_,"catch",uA.catch,{unsafe:!0}));try{delete _.constructor}catch(b){}u&&u(_,uA)}c({global:!0,wrap:!0,forced:ht},{Promise:MA}),C(MA,cA,!1,!0),e(cA),vt=l(cA),c({target:cA,stat:!0,forced:ht},{reject:function(CA){var wA=XA(this);return h(wA.reject,void 0,CA),wA.promise}}),c({target:cA,stat:!0,forced:i||ht},{resolve:function(CA){return P(i&&this===vt?MA:this,CA)}}),c({target:cA,stat:!0,forced:JA},{all:function(CA){var wA=this,RA=XA(wA),rA=RA.resolve,gt=RA.reject,Yt=L(function(){var j=f(wA.resolve),qA=[],KA=0,DA=1;Y(CA,function(jA){var lt=KA++,bt=!1;DA++,h(j,wA,jA).then(function(yt){bt||(bt=!0,qA[lt]=yt,--DA||rA(qA))},gt)}),--DA||rA(qA)});return Yt.error&>(Yt.value),RA.promise},race:function(CA){var wA=this,RA=XA(wA),rA=RA.reject,gt=L(function(){var Yt=f(wA.resolve);Y(CA,function(j){h(Yt,wA,j).then(RA.resolve,rA)})});return gt.error&&rA(gt.value),RA.promise}})},2419:function(T,I,n){var c=n(2109),i=n(5005),o=n(2104),l=n(7065),h=n(9483),a=n(9670),B=n(111),E=n(30),u=n(7293),C=i("Reflect","construct"),e=Object.prototype,f=[].push,g=u(function(){function p(){}return!(C(function(){},[],p)instanceof p)}),w=!u(function(){C(function(){})}),Q=g||w;c({target:"Reflect",stat:!0,forced:Q,sham:Q},{construct:function(Y,y){h(Y),a(y);var d=arguments.length<3?Y:h(arguments[2]);if(w&&!g)return C(Y,y,d);if(Y==d){switch(y.length){case 0:return new Y;case 1:return new Y(y[0]);case 2:return new Y(y[0],y[1]);case 3:return new Y(y[0],y[1],y[2]);case 4:return new Y(y[0],y[1],y[2],y[3])}var v=[null];return o(f,v,y),new(o(l,Y,v))}var m=d.prototype,P=E(B(m)?m:e),N=o(Y,P,y);return B(N)?N:P}})},4916:function(T,I,n){"use strict";var c=n(2109),i=n(2261);c({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},2087:function(T,I,n){var c=n(9781),i=n(3070),o=n(7066),l=n(7293),h=RegExp.prototype;c&&l(function(){return"sy"!==Object.getOwnPropertyDescriptor(h,"flags").get.call({dotAll:!0,sticky:!0})})&&i.f(h,"flags",{configurable:!0,get:o})},9714:function(T,I,n){"use strict";var c=n(1702),i=n(6530).PROPER,o=n(1320),l=n(9670),h=n(7976),a=n(1340),B=n(7293),E=n(7066),u="toString",C=RegExp.prototype,e=C[u],f=c(E);(B(function(){return"/a/b"!=e.call({source:"a",flags:"b"})})||i&&e.name!=u)&&o(RegExp.prototype,u,function(){var p=l(this),Y=a(p.source),y=p.flags;return"/"+Y+"/"+a(void 0===y&&h(C,p)&&!("flags"in C)?f(p):y)},{unsafe:!0})},189:function(T,I,n){"use strict";n(7710)("Set",function(o){return function(){return o(this,arguments.length?arguments[0]:void 0)}},n(5631))},9841:function(T,I,n){"use strict";var c=n(2109),i=n(8710).codeAt;c({target:"String",proto:!0},{codePointAt:function(l){return i(this,l)}})},4953:function(T,I,n){var c=n(2109),i=n(7854),o=n(1702),l=n(1400),h=i.RangeError,a=String.fromCharCode,B=String.fromCodePoint,E=o([].join);c({target:"String",stat:!0,forced:!!B&&1!=B.length},{fromCodePoint:function(e){for(var Q,f=[],g=arguments.length,w=0;g>w;){if(Q=+arguments[w++],l(Q,1114111)!==Q)throw h(Q+" is not a valid code point");f[w]=Q<65536?a(Q):a(55296+((Q-=65536)>>10),Q%1024+56320)}return E(f,"")}})},2023:function(T,I,n){"use strict";var c=n(2109),i=n(1702),o=n(3929),l=n(4488),h=n(1340),a=n(4964),B=i("".indexOf);c({target:"String",proto:!0,forced:!a("includes")},{includes:function(u){return!!~B(h(l(this)),h(o(u)),arguments.length>1?arguments[1]:void 0)}})},8734:function(T,I,n){"use strict";var c=n(2109),i=n(4230);c({target:"String",proto:!0,forced:n(3429)("italics")},{italics:function(){return i(this,"i","","")}})},8783:function(T,I,n){"use strict";var c=n(8710).charAt,i=n(1340),o=n(9909),l=n(654),h="String Iterator",a=o.set,B=o.getterFor(h);l(String,"String",function(E){a(this,{type:h,string:i(E),index:0})},function(){var f,u=B(this),C=u.string,e=u.index;return e>=C.length?{value:void 0,done:!0}:(f=c(C,e),u.index+=f.length,{value:f,done:!1})})},9254:function(T,I,n){"use strict";var c=n(2109),i=n(4230);c({target:"String",proto:!0,forced:n(3429)("link")},{link:function(h){return i(this,"a","href",h)}})},6373:function(T,I,n){"use strict";var c=n(2109),i=n(7854),o=n(6916),l=n(1702),h=n(4994),a=n(4488),B=n(7466),E=n(1340),u=n(9670),C=n(4326),e=n(7976),f=n(7850),g=n(7066),w=n(8173),Q=n(1320),p=n(7293),Y=n(5112),y=n(6707),d=n(1530),v=n(7651),m=n(9909),P=n(1913),N=Y("matchAll"),F="RegExp String",L=F+" Iterator",U=m.set,eA=m.getterFor(L),sA=RegExp.prototype,q=i.TypeError,BA=l(g),pA=l("".indexOf),lA=l("".matchAll),cA=!!lA&&!p(function(){lA("a",/./)}),gA=h(function(_,MA,uA,QA){U(this,{type:L,regexp:_,string:MA,global:uA,unicode:QA,done:!1})},F,function(){var _=eA(this);if(_.done)return{value:void 0,done:!0};var MA=_.regexp,uA=_.string,QA=v(MA,uA);return null===QA?{value:void 0,done:_.done=!0}:_.global?(""===E(QA[0])&&(MA.lastIndex=d(uA,B(MA.lastIndex),_.unicode)),{value:QA,done:!1}):(_.done=!0,{value:QA,done:!1})}),yA=function(FA){var uA,QA,NA,bA,XA,X,_=u(this),MA=E(FA);return uA=y(_,RegExp),void 0===(QA=_.flags)&&e(sA,_)&&!("flags"in sA)&&(QA=BA(_)),NA=void 0===QA?"":E(QA),bA=new uA(uA===RegExp?_.source:_,NA),XA=!!~pA(NA,"g"),X=!!~pA(NA,"u"),bA.lastIndex=B(_.lastIndex),new gA(bA,MA,XA,X)};c({target:"String",proto:!0,forced:cA},{matchAll:function(_){var uA,QA,NA,bA,MA=a(this);if(null!=_){if(f(_)&&(uA=E(a("flags"in sA?_.flags:BA(_))),!~pA(uA,"g")))throw q("`.matchAll` does not allow non-global regexes");if(cA)return lA(MA,_);if(void 0===(NA=w(_,N))&&P&&"RegExp"==C(_)&&(NA=yA),NA)return o(NA,_,MA)}else if(cA)return lA(MA,_);return QA=E(MA),bA=new RegExp(_,"g"),P?o(yA,bA,QA):bA[N](QA)}}),P||N in sA||Q(sA,N,yA)},4723:function(T,I,n){"use strict";var c=n(6916),i=n(7007),o=n(9670),l=n(7466),h=n(1340),a=n(4488),B=n(8173),E=n(1530),u=n(7651);i("match",function(C,e,f){return[function(w){var Q=a(this),p=null==w?void 0:B(w,C);return p?c(p,w,Q):new RegExp(w)[C](h(Q))},function(g){var w=o(this),Q=h(g),p=f(e,w,Q);if(p.done)return p.value;if(!w.global)return u(w,Q);var Y=w.unicode;w.lastIndex=0;for(var v,y=[],d=0;null!==(v=u(w,Q));){var m=h(v[0]);y[d]=m,""===m&&(w.lastIndex=E(Q,l(w.lastIndex),Y)),d++}return 0===d?null:y}]})},2481:function(T,I,n){n(2109)({target:"String",proto:!0},{repeat:n(8415)})},5306:function(T,I,n){"use strict";var c=n(2104),i=n(6916),o=n(1702),l=n(7007),h=n(7293),a=n(9670),B=n(614),E=n(9303),u=n(7466),C=n(1340),e=n(4488),f=n(1530),g=n(8173),w=n(647),Q=n(7651),Y=n(5112)("replace"),y=Math.max,d=Math.min,v=o([].concat),m=o([].push),P=o("".indexOf),N=o("".slice),F=function(sA){return void 0===sA?sA:String(sA)},L="$0"==="a".replace(/./,"$0"),U=!!/./[Y]&&""===/./[Y]("a","$0");l("replace",function(sA,q,BA){var pA=U?"$":"$0";return[function(cA,gA){var yA=e(this),FA=null==cA?void 0:g(cA,Y);return FA?i(FA,cA,yA,gA):i(q,C(yA),cA,gA)},function(lA,cA){var gA=a(this),yA=C(lA);if("string"==typeof cA&&-1===P(cA,pA)&&-1===P(cA,"$<")){var FA=BA(q,gA,yA,cA);if(FA.done)return FA.value}var _=B(cA);_||(cA=C(cA));var MA=gA.global;if(MA){var uA=gA.unicode;gA.lastIndex=0}for(var QA=[];;){var NA=Q(gA,yA);if(null===NA||(m(QA,NA),!MA))break;""===C(NA[0])&&(gA.lastIndex=f(yA,u(gA.lastIndex),uA))}for(var XA="",X=0,O=0;O=X&&(XA+=N(yA,X,W)+GA,X=W+$.length)}return XA+N(yA,X)}]},!!h(function(){var sA=/./;return sA.exec=function(){var q=[];return q.groups={a:"7"},q},"7"!=="".replace(sA,"$")})||!L||U)},3123:function(T,I,n){"use strict";var c=n(2104),i=n(6916),o=n(1702),l=n(7007),h=n(7850),a=n(9670),B=n(4488),E=n(6707),u=n(1530),C=n(7466),e=n(1340),f=n(8173),g=n(206),w=n(7651),Q=n(2261),p=n(2999),Y=n(7293),y=p.UNSUPPORTED_Y,d=4294967295,v=Math.min,m=[].push,P=o(/./.exec),N=o(m),F=o("".slice),L=!Y(function(){var U=/(?:)/,eA=U.exec;U.exec=function(){return eA.apply(this,arguments)};var sA="ab".split(U);return 2!==sA.length||"a"!==sA[0]||"b"!==sA[1]});l("split",function(U,eA,sA){var q;return q="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(BA,pA){var lA=e(B(this)),cA=void 0===pA?d:pA>>>0;if(0===cA)return[];if(void 0===BA)return[lA];if(!h(BA))return i(eA,lA,BA,cA);for(var MA,uA,QA,gA=[],FA=0,_=new RegExp(BA.source,(BA.ignoreCase?"i":"")+(BA.multiline?"m":"")+(BA.unicode?"u":"")+(BA.sticky?"y":"")+"g");(MA=i(Q,_,lA))&&!((uA=_.lastIndex)>FA&&(N(gA,F(lA,FA,MA.index)),MA.length>1&&MA.index=cA));)_.lastIndex===MA.index&&_.lastIndex++;return FA===lA.length?(QA||!P(_,""))&&N(gA,""):N(gA,F(lA,FA)),gA.length>cA?g(gA,0,cA):gA}:"0".split(void 0,0).length?function(BA,pA){return void 0===BA&&0===pA?[]:i(eA,this,BA,pA)}:eA,[function(pA,lA){var cA=B(this),gA=null==pA?void 0:f(pA,U);return gA?i(gA,pA,cA,lA):i(q,e(cA),pA,lA)},function(BA,pA){var lA=a(this),cA=e(BA),gA=sA(q,lA,cA,pA,q!==eA);if(gA.done)return gA.value;var yA=E(lA,RegExp),FA=lA.unicode,MA=new yA(y?"^(?:"+lA.source+")":lA,(lA.ignoreCase?"i":"")+(lA.multiline?"m":"")+(lA.unicode?"u":"")+(y?"g":"y")),uA=void 0===pA?d:pA>>>0;if(0===uA)return[];if(0===cA.length)return null===w(MA,cA)?[cA]:[];for(var QA=0,NA=0,bA=[];NA2?arguments[2]:void 0)})},8927:function(T,I,n){"use strict";var c=n(2094),i=n(2092).every,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("every",function(a){return i(o(this),a,arguments.length>1?arguments[1]:void 0)})},3105:function(T,I,n){"use strict";var c=n(2094),i=n(6916),o=n(1285),l=c.aTypedArray;(0,c.exportTypedArrayMethod)("fill",function(B){var E=arguments.length;return i(o,l(this),B,E>1?arguments[1]:void 0,E>2?arguments[2]:void 0)})},5035:function(T,I,n){"use strict";var c=n(2094),i=n(2092).filter,o=n(3074),l=c.aTypedArray;(0,c.exportTypedArrayMethod)("filter",function(B){var E=i(l(this),B,arguments.length>1?arguments[1]:void 0);return o(this,E)})},7174:function(T,I,n){"use strict";var c=n(2094),i=n(2092).findIndex,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("findIndex",function(a){return i(o(this),a,arguments.length>1?arguments[1]:void 0)})},4345:function(T,I,n){"use strict";var c=n(2094),i=n(2092).find,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("find",function(a){return i(o(this),a,arguments.length>1?arguments[1]:void 0)})},4197:function(T,I,n){n(9843)("Float32",function(i){return function(l,h,a){return i(this,l,h,a)}})},6495:function(T,I,n){n(9843)("Float64",function(i){return function(l,h,a){return i(this,l,h,a)}})},2846:function(T,I,n){"use strict";var c=n(2094),i=n(2092).forEach,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("forEach",function(a){i(o(this),a,arguments.length>1?arguments[1]:void 0)})},8145:function(T,I,n){"use strict";var c=n(3832);(0,n(2094).exportTypedArrayStaticMethod)("from",n(7321),c)},4731:function(T,I,n){"use strict";var c=n(2094),i=n(1318).includes,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("includes",function(a){return i(o(this),a,arguments.length>1?arguments[1]:void 0)})},7209:function(T,I,n){"use strict";var c=n(2094),i=n(1318).indexOf,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("indexOf",function(a){return i(o(this),a,arguments.length>1?arguments[1]:void 0)})},5109:function(T,I,n){n(9843)("Int16",function(i){return function(l,h,a){return i(this,l,h,a)}})},5125:function(T,I,n){n(9843)("Int32",function(i){return function(l,h,a){return i(this,l,h,a)}})},7145:function(T,I,n){n(9843)("Int8",function(i){return function(l,h,a){return i(this,l,h,a)}})},6319:function(T,I,n){"use strict";var c=n(7854),i=n(1702),o=n(6530).PROPER,l=n(2094),h=n(6992),B=n(5112)("iterator"),E=c.Uint8Array,u=i(h.values),C=i(h.keys),e=i(h.entries),f=l.aTypedArray,g=l.exportTypedArrayMethod,w=E&&E.prototype[B],Q=!!w&&"values"===w.name,p=function(){return u(f(this))};g("entries",function(){return e(f(this))}),g("keys",function(){return C(f(this))}),g("values",p,o&&!Q),g(B,p,o&&!Q)},8867:function(T,I,n){"use strict";var c=n(2094),i=n(1702),o=c.aTypedArray,l=c.exportTypedArrayMethod,h=i([].join);l("join",function(B){return h(o(this),B)})},7789:function(T,I,n){"use strict";var c=n(2094),i=n(2104),o=n(6583),l=c.aTypedArray;(0,c.exportTypedArrayMethod)("lastIndexOf",function(B){var E=arguments.length;return i(o,l(this),E>1?[B,arguments[1]]:[B])})},3739:function(T,I,n){"use strict";var c=n(2094),i=n(2092).map,o=n(6304),l=c.aTypedArray;(0,c.exportTypedArrayMethod)("map",function(B){return i(l(this),B,arguments.length>1?arguments[1]:void 0,function(E,u){return new(o(E))(u)})})},4483:function(T,I,n){"use strict";var c=n(2094),i=n(3671).right,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("reduceRight",function(a){var B=arguments.length;return i(o(this),a,B,B>1?arguments[1]:void 0)})},9368:function(T,I,n){"use strict";var c=n(2094),i=n(3671).left,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("reduce",function(a){var B=arguments.length;return i(o(this),a,B,B>1?arguments[1]:void 0)})},2056:function(T,I,n){"use strict";var c=n(2094),i=c.aTypedArray,l=Math.floor;(0,c.exportTypedArrayMethod)("reverse",function(){for(var C,a=this,B=i(a).length,E=l(B/2),u=0;u1?arguments[1]:void 0,1),w=this.length,Q=h(f),p=o(Q),Y=0;if(p+g>w)throw B("Wrong length");for(;Yg;)Q[g]=e[g++];return Q},o(function(){new Int8Array(1).slice()}))},7462:function(T,I,n){"use strict";var c=n(2094),i=n(2092).some,o=c.aTypedArray;(0,c.exportTypedArrayMethod)("some",function(a){return i(o(this),a,arguments.length>1?arguments[1]:void 0)})},3824:function(T,I,n){"use strict";var c=n(7854),i=n(1702),o=n(7293),l=n(9662),h=n(4362),a=n(2094),B=n(8886),E=n(256),u=n(7392),C=n(8008),e=c.Array,f=a.aTypedArray,g=a.exportTypedArrayMethod,w=c.Uint16Array,Q=w&&i(w.prototype.sort),p=!(!Q||o(function(){Q(new w(2),null)})&&o(function(){Q(new w(2),{})})),Y=!!Q&&!o(function(){if(u)return u<74;if(B)return B<67;if(E)return!0;if(C)return C<602;var m,P,d=new w(516),v=e(516);for(m=0;m<516;m++)P=m%4,d[m]=515-m,v[m]=m-2*P+3;for(Q(d,function(N,F){return(N/4|0)-(F/4|0)}),m=0;m<516;m++)if(d[m]!==v[m])return!0});g("sort",function(v){return void 0!==v&&l(v),Y?Q(this,v):h(f(this),(d=v,function(v,m){return void 0!==d?+d(v,m)||0:m!=m?-1:v!=v?1:0===v&&0===m?1/v>0&&1/m<0?1:-1:v>m}));var d},!Y||p)},5021:function(T,I,n){"use strict";var c=n(2094),i=n(7466),o=n(1400),l=n(6304),h=c.aTypedArray;(0,c.exportTypedArrayMethod)("subarray",function(E,u){var C=h(this),e=C.length,f=o(E,e);return new(l(C))(C.buffer,C.byteOffset+f*C.BYTES_PER_ELEMENT,i((void 0===u?e:o(u,e))-f))})},2974:function(T,I,n){"use strict";var c=n(7854),i=n(2104),o=n(2094),l=n(7293),h=n(206),a=c.Int8Array,B=o.aTypedArray,E=o.exportTypedArrayMethod,u=[].toLocaleString,C=!!a&&l(function(){u.call(new a(1))});E("toLocaleString",function(){return i(u,C?h(B(this)):B(this),h(arguments))},l(function(){return[1,2].toLocaleString()!=new a([1,2]).toLocaleString()})||!l(function(){a.prototype.toLocaleString.call([1,2])}))},5016:function(T,I,n){"use strict";var c=n(2094).exportTypedArrayMethod,i=n(7293),o=n(7854),l=n(1702),h=o.Uint8Array,a=h&&h.prototype||{},B=[].toString,E=l([].join);i(function(){B.call({})})&&(B=function(){return E(this)}),c("toString",B,a.toString!=B)},8255:function(T,I,n){n(9843)("Uint16",function(i){return function(l,h,a){return i(this,l,h,a)}})},9135:function(T,I,n){n(9843)("Uint32",function(i){return function(l,h,a){return i(this,l,h,a)}})},2472:function(T,I,n){n(9843)("Uint8",function(i){return function(l,h,a){return i(this,l,h,a)}})},9743:function(T,I,n){n(9843)("Uint8",function(i){return function(l,h,a){return i(this,l,h,a)}},!0)},8628:function(T,I,n){n(9170)},5743:function(T,I,n){n(5837)},7314:function(T,I,n){n(7922)},6290:function(T,I,n){n(4668)},7479:function(T,I,n){"use strict";var c=n(2109),i=n(8523),o=n(2534);c({target:"Promise",stat:!0},{try:function(l){var h=i.f(this),a=o(l);return(a.error?h.reject:h.resolve)(a.value),h.promise}})},3728:function(T,I,n){n(6373)},4747:function(T,I,n){var c=n(7854),i=n(8324),o=n(8509),l=n(8533),h=n(8880),a=function(E){if(E&&E.forEach!==l)try{h(E,"forEach",l)}catch(u){E.forEach=l}};for(var B in i)i[B]&&a(c[B]&&c[B].prototype);a(o)},3948:function(T,I,n){var c=n(7854),i=n(8324),o=n(8509),l=n(6992),h=n(8880),a=n(5112),B=a("iterator"),E=a("toStringTag"),u=l.values,C=function(f,g){if(f){if(f[B]!==u)try{h(f,B,u)}catch(Q){f[B]=u}if(f[E]||h(f,E,g),i[g])for(var w in l)if(f[w]!==l[w])try{h(f,w,l[w])}catch(Q){f[w]=l[w]}}};for(var e in i)C(c[e]&&c[e].prototype,e);C(o,"DOMTokenList")},3753:function(T,I,n){"use strict";var c=n(2109),i=n(6916);c({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return i(URL.prototype.toString,this)}})},1150:function(T,I,n){var c=n(7633);n(3948),T.exports=c},251:function(T,I,n){var c=n(2215),i=n(2584),o=n(609),l=n(8420),h=n(2847),a=n(8923),B=Date.prototype.getTime;function E(f,g,w){var Q=w||{};return!!(Q.strict?o(f,g):f===g)||(!f||!g||"object"!=typeof f&&"object"!=typeof g?Q.strict?o(f,g):f==g:function e(f,g,w){var Q,p;if(typeof f!=typeof g||u(f)||u(g)||f.prototype!==g.prototype||i(f)!==i(g))return!1;var Y=l(f),y=l(g);if(Y!==y)return!1;if(Y||y)return f.source===g.source&&h(f)===h(g);if(a(f)&&a(g))return B.call(f)===B.call(g);var d=C(f),v=C(g);if(d!==v)return!1;if(d||v){if(f.length!==g.length)return!1;for(Q=0;Q=0;Q--)if(m[Q]!=P[Q])return!1;for(Q=m.length-1;Q>=0;Q--)if(!E(f[p=m[Q]],g[p],w))return!1;return!0}(f,g,Q))}function u(f){return null==f}function C(f){return!(!f||"object"!=typeof f||"number"!=typeof f.length||"function"!=typeof f.copy||"function"!=typeof f.slice||f.length>0&&"number"!=typeof f[0])}T.exports=E},4289:function(T,I,n){"use strict";var c=n(2215),i="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),o=Object.prototype.toString,l=Array.prototype.concat,h=Object.defineProperty,E=h&&function(){var e={};try{for(var f in h(e,"x",{enumerable:!1,value:e}),e)return!1;return e.x===e}catch(g){return!1}}(),u=function(e,f,g,w){f in e&&(!function(e){return"function"==typeof e&&"[object Function]"===o.call(e)}(w)||!w())||(E?h(e,f,{configurable:!0,enumerable:!1,value:g,writable:!0}):e[f]=g)},C=function(e,f){var g=arguments.length>2?arguments[2]:{},w=c(f);i&&(w=l.call(w,Object.getOwnPropertySymbols(f)));for(var Q=0;Q0&&L.length>N&&!L.warned){L.warned=!0;var U=new Error("Possible EventEmitter memory leak detected. "+L.length+" "+String(v)+" listeners added. Use emitter.setMaxListeners() to increase limit");U.name="MaxListenersExceededWarning",U.emitter=d,U.type=v,U.count=L.length,function i(d){console&&console.warn&&console.warn(d)}(U)}return d}function u(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function C(d,v,m){var P={fired:!1,wrapFn:void 0,target:d,type:v,listener:m},N=u.bind(P);return N.listener=m,P.wrapFn=N,N}function e(d,v,m){var P=d._events;if(void 0===P)return[];var N=P[v];return void 0===N?[]:"function"==typeof N?m?[N.listener||N]:[N]:m?function Q(d){for(var v=new Array(d.length),m=0;m0&&(L=m[0]),L instanceof Error)throw L;var U=new Error("Unhandled error."+(L?" ("+L.message+")":""));throw U.context=L,U}var eA=F[v];if(void 0===eA)return!1;if("function"==typeof eA)n(eA,this,m);else{var sA=eA.length,q=g(eA,sA);for(P=0;P=0;L--)if(P[L]===m||P[L].listener===m){U=P[L].listener,F=L;break}if(F<0)return this;0===F?P.shift():function w(d,v){for(;v+1=0;N--)this.removeListener(v,m[N]);return this},l.prototype.listeners=function(v){return e(this,v,!0)},l.prototype.rawListeners=function(v){return e(this,v,!1)},l.listenerCount=function(d,v){return"function"==typeof d.listenerCount?d.listenerCount(v):f.call(d,v)},l.prototype.listenerCount=f,l.prototype.eventNames=function(){return this._eventsCount>0?c(this._events):[]}},2536:function(T,I,n){var c=n(4275),i=n(7672);void 0===i.pdfMake&&(i.pdfMake=c),T.exports=c},7672:function(T,I,n){"use strict";T.exports=function(){if("object"==typeof globalThis)return globalThis;var c;try{c=this||new Function("return this")()}catch(i){if("object"==typeof window)return window;if("object"==typeof self)return self;if(void 0!==n.g)return n.g}return c}()},9804:function(T){var I=Object.prototype.hasOwnProperty,n=Object.prototype.toString;T.exports=function(i,o,l){if("[object Function]"!==n.call(o))throw new TypeError("iterator must be a function");var h=i.length;if(h===+h)for(var a=0;a1&&"boolean"!=typeof sA)throw new l('"allowMissing" argument must be a boolean');var q=F(eA),BA=q.length>0?q[0]:"",pA=L("%"+BA+"%",sA),lA=pA.name,cA=pA.value,gA=!1,yA=pA.alias;yA&&(BA=yA[0],d(q,y([0,1],yA)));for(var FA=1,_=!0;FA=q.length){var NA=a(cA,MA);cA=(_=!!NA)&&"get"in NA&&!("originalValue"in NA.get)?NA.get:cA[MA]}else _=Y(cA,MA),cA=cA[MA];_&&!gA&&(g[lA]=cA)}}return cA}},1405:function(T,I,n){"use strict";var c="undefined"!=typeof Symbol&&Symbol,i=n(5419);T.exports=function(){return"function"==typeof c&&"function"==typeof Symbol&&"symbol"==typeof c("foo")&&"symbol"==typeof Symbol("bar")&&i()}},5419:function(T){"use strict";T.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var n={},c=Symbol("test"),i=Object(c);if("string"==typeof c||"[object Symbol]"!==Object.prototype.toString.call(c)||"[object Symbol]"!==Object.prototype.toString.call(i))return!1;for(c in n[c]=42,n)return!1;if("function"==typeof Object.keys&&0!==Object.keys(n).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(n).length)return!1;var l=Object.getOwnPropertySymbols(n);if(1!==l.length||l[0]!==c||!Object.prototype.propertyIsEnumerable.call(n,c))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var h=Object.getOwnPropertyDescriptor(n,c);if(42!==h.value||!0!==h.enumerable)return!1}return!0}},6410:function(T,I,n){"use strict";var c=n(5419);T.exports=function(){return c()&&!!Symbol.toStringTag}},7642:function(T,I,n){"use strict";var c=n(8612);T.exports=c.call(Function.call,Object.prototype.hasOwnProperty)},688:function(T,I,n){"use strict";var c=n(7103).Buffer;I._dbcs=u;for(var i=-1,l=-10,h=-1e3,a=new Array(256),E=0;E<256;E++)a[E]=i;function u(g,w){if(this.encodingName=g.encodingName,!g)throw new Error("DBCS codec is called without the data.");if(!g.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var Q=g.table();this.decodeTables=[],this.decodeTables[0]=a.slice(0),this.decodeTableSeq=[];for(var p=0;ph)throw new Error("gb18030 decode tables conflict at byte 2");for(var P=this.decodeTables[h-v[m]],N=129;N<=254;N++){if(P[N]===i)P[N]=h-y;else{if(P[N]===h-y)continue;if(P[N]>h)throw new Error("gb18030 decode tables conflict at byte 3")}for(var F=this.decodeTables[h-P[N]],L=48;L<=57;L++)F[L]===i&&(F[L]=-2)}}}this.defaultCharUnicode=w.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var U={};if(g.encodeSkipVals)for(p=0;pw)return-1;for(var Q=0,p=g.length;Q>1);g[Y]<=w?Q=Y:p=Y}return Q}u.prototype.encoder=C,u.prototype.decoder=e,u.prototype._getDecodeTrieNode=function(g){for(var w=[];g>0;g>>>=8)w.push(255&g);0==w.length&&w.push(0);for(var Q=this.decodeTables[0],p=w.length-1;p>0;p--){var Y=Q[w[p]];if(Y==i)Q[w[p]]=h-this.decodeTables.length,this.decodeTables.push(Q=a.slice(0));else{if(!(Y<=h))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+g.toString(16));Q=this.decodeTables[h-Y]}}return Q},u.prototype._addDecodeChunk=function(g){var w=parseInt(g[0],16),Q=this._getDecodeTrieNode(w);w&=255;for(var p=1;p255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+g[0]+": too long"+w)},u.prototype._getEncodeBucket=function(g){var w=g>>8;return void 0===this.encodeTable[w]&&(this.encodeTable[w]=a.slice(0)),this.encodeTable[w]},u.prototype._setEncodeChar=function(g,w){var Q=this._getEncodeBucket(g),p=255&g;Q[p]<=l?this.encodeTableSeq[l-Q[p]][-1]=w:Q[p]==i&&(Q[p]=w)},u.prototype._setEncodeSequence=function(g,w){var y,Q=g[0],p=this._getEncodeBucket(Q),Y=255&Q;p[Y]<=l?y=this.encodeTableSeq[l-p[Y]]:(y={},p[Y]!==i&&(y[-1]=p[Y]),p[Y]=l-this.encodeTableSeq.length,this.encodeTableSeq.push(y));for(var d=1;d=0)this._setEncodeChar(v,m),Y=!0;else if(v<=h){var P=h-v;y[P]||(this._fillEncodeTable(P,m<<8>>>0,Q)?Y=!0:y[P]=!0)}else v<=l&&(this._setEncodeSequence(this.decodeTableSeq[l-v],m),Y=!0)}return Y},C.prototype.write=function(g){for(var w=c.alloc(g.length*(this.gb18030?4:3)),Q=this.leadSurrogate,p=this.seqObj,Y=-1,y=0,d=0;;){if(-1===Y){if(y==g.length)break;var v=g.charCodeAt(y++)}else v=Y,Y=-1;if(55296<=v&&v<57344)if(v<56320){if(-1===Q){Q=v;continue}Q=v,v=i}else-1!==Q?(v=65536+1024*(Q-55296)+(v-56320),Q=-1):v=i;else-1!==Q&&(Y=v,v=i,Q=-1);var m=i;if(void 0!==p&&v!=i){var P=p[v];if("object"==typeof P){p=P;continue}"number"==typeof P?m=P:null==P&&void 0!==(P=p[-1])&&(m=P,Y=v),p=void 0}else if(v>=0){var N=this.encodeTable[v>>8];if(void 0!==N&&(m=N[255&v]),m<=l){p=this.encodeTableSeq[l-m];continue}if(m==i&&this.gb18030){var F=f(this.gb18030.uChars,v);if(-1!=F){m=this.gb18030.gbChars[F]+(v-this.gb18030.uChars[F]),w[d++]=129+Math.floor(m/12600),m%=12600,w[d++]=48+Math.floor(m/1260),m%=1260,w[d++]=129+Math.floor(m/10),w[d++]=48+(m%=10);continue}}}m===i&&(m=this.defaultCharSingleByte),m<256?w[d++]=m:m<65536?(w[d++]=m>>8,w[d++]=255&m):m<16777216?(w[d++]=m>>16,w[d++]=m>>8&255,w[d++]=255&m):(w[d++]=m>>>24,w[d++]=m>>>16&255,w[d++]=m>>>8&255,w[d++]=255&m)}return this.seqObj=p,this.leadSurrogate=Q,w.slice(0,d)},C.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var g=c.alloc(10),w=0;if(this.seqObj){var Q=this.seqObj[-1];void 0!==Q&&(Q<256?g[w++]=Q:(g[w++]=Q>>8,g[w++]=255&Q)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(g[w++]=this.defaultCharSingleByte,this.leadSurrogate=-1),g.slice(0,w)}},C.prototype.findIdx=f,e.prototype.write=function(g){for(var w=c.alloc(2*g.length),Q=this.nodeIdx,p=this.prevBytes,Y=this.prevBytes.length,y=-this.prevBytes.length,v=0,m=0;v=0?g[v]:p[v+Y];if(!((d=this.decodeTables[Q][P])>=0))if(d===i)d=this.defaultCharUnicode.charCodeAt(0),v=y;else if(-2===d){if(v>=3)var N=12600*(g[v-3]-129)+1260*(g[v-2]-48)+10*(g[v-1]-129)+(P-48);else N=12600*(p[v-3+Y]-129)+1260*((v-2>=0?g[v-2]:p[v-2+Y])-48)+10*((v-1>=0?g[v-1]:p[v-1+Y])-129)+(P-48);var F=f(this.gb18030.gbChars,N);d=this.gb18030.uChars[F]+N-this.gb18030.gbChars[F]}else{if(d<=h){Q=h-d;continue}if(!(d<=l))throw new Error("iconv-lite internal error: invalid decoding table value "+d+" at "+Q+"/"+P);for(var L=this.decodeTableSeq[l-d],U=0;U>8;d=L[L.length-1]}if(d>=65536){var eA=55296|(d-=65536)>>10;w[m++]=255&eA,w[m++]=eA>>8,d=56320|1023&d}w[m++]=255&d,w[m++]=d>>8,Q=0,y=v+1}return this.nodeIdx=Q,this.prevBytes=y>=0?Array.prototype.slice.call(g,y):p.slice(y+Y).concat(Array.prototype.slice.call(g)),w.slice(0,m).toString("ucs2")},e.prototype.end=function(){for(var g="";this.prevBytes.length>0;){g+=this.defaultCharUnicode;var w=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,w.length>0&&(g+=this.write(w))}return this.prevBytes=[],this.nodeIdx=0,g}},5990:function(T,I,n){"use strict";T.exports={shiftjis:{type:"_dbcs",table:function(){return n(7014)},encodeAdd:{"\xa5":92,"\u203e":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(5633)},encodeAdd:{"\xa5":92,"\u203e":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(3336)}},gbk:{type:"_dbcs",table:function(){return n(3336).concat(n(4346))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(3336).concat(n(4346))},gb18030:function(){return n(6258)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(7348)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(4284)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(4284).concat(n(3480))},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},6934:function(T,I,n){"use strict";for(var c=[n(1025),n(7688),n(1279),n(758),n(9068),n(3769),n(7018),n(688),n(5990)],i=0;i>>6),C[e++]=128+(63&g)):(C[e++]=224+(g>>>12),C[e++]=128+(g>>>6&63),C[e++]=128+(63&g))}return C.slice(0,e)},B.prototype.end=function(){},E.prototype.write=function(u){for(var C=this.acc,e=this.contBytes,f=this.accBytes,g="",w=0;w0&&(g+=this.defaultCharUnicode,e=0),Q<128?g+=String.fromCharCode(Q):Q<224?(C=31&Q,e=1,f=1):Q<240?(C=15&Q,e=2,f=1):g+=this.defaultCharUnicode):e>0?(C=C<<6|63&Q,f++,0==--e&&(g+=2===f&&C<128&&C>0||3===f&&C<2048?this.defaultCharUnicode:String.fromCharCode(C))):g+=this.defaultCharUnicode}return this.acc=C,this.contBytes=e,this.accBytes=f,g},E.prototype.end=function(){var u=0;return this.contBytes>0&&(u+=this.defaultCharUnicode),u}},9068:function(T,I,n){"use strict";var c=n(7103).Buffer;function i(h,a){if(!h)throw new Error("SBCS codec is called without the data.");if(!h.chars||128!==h.chars.length&&256!==h.chars.length)throw new Error("Encoding '"+h.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(128===h.chars.length){for(var B="",E=0;E<128;E++)B+=String.fromCharCode(E);h.chars=B+h.chars}this.decodeBuf=c.from(h.chars,"ucs2");var u=c.alloc(65536,a.defaultCharSingleByte.charCodeAt(0));for(E=0;E?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xb0\xb7\u2219\u221a\u2592\u2500\u2502\u253c\u2524\u252c\u251c\u2534\u2510\u250c\u2514\u2518\u03b2\u221e\u03c6\xb1\xbd\xbc\u2248\xab\xbb\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufffd\xa0\xad\ufe82\xa3\xa4\ufe84\ufffd\ufffd\ufe8e\ufe8f\ufe95\ufe99\u060c\ufe9d\ufea1\ufea5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufed1\u061b\ufeb1\ufeb5\ufeb9\u061f\xa2\ufe80\ufe81\ufe83\ufe85\ufeca\ufe8b\ufe8d\ufe91\ufe93\ufe97\ufe9b\ufe9f\ufea3\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb3\ufeb7\ufebb\ufebf\ufec1\ufec5\ufecb\ufecf\xa6\xac\xf7\xd7\ufec9\u0640\ufed3\ufed7\ufedb\ufedf\ufee3\ufee7\ufeeb\ufeed\ufeef\ufef3\ufebd\ufecc\ufece\ufecd\ufee1\ufe7d\u0651\ufee5\ufee9\ufeec\ufef0\ufef2\ufed0\ufed5\ufef5\ufef6\ufedd\ufed9\ufef1\u25a0\ufffd"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xc7\xfc\xe9\xe2\xe4\xe0\xe5\xe7\xea\xeb\xe8\xef\xee\xec\xc4\xc5\xc9\xe6\xc6\xf4\xf6\xf2\xfb\xf9\xff\xd6\xdc\xf8\xa3\xd8\u20a7\u0192\xe1\xed\xf3\xfa\xf1\xd1\xaa\xba\xbf\u2310\xac\xbd\xbc\xa1\xab\xa4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0386\ufffd\xb7\xac\xa6\u2018\u2019\u0388\u2015\u0389\u038a\u03aa\u038c\ufffd\ufffd\u038e\u03ab\xa9\u038f\xb2\xb3\u03ac\xa3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xbd\u0398\u0399\xab\xbb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u0384\xad\xb1\u03c5\u03c6\u03c7\xa7\u03c8\u0385\xb0\xa8\u03c9\u03cb\u03b0\u03ce\u25a0\xa0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\u203e\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\u0160\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\u017d\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\u0161\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\u017e\xff"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\ufe88\xd7\xf7\uf8f6\uf8f5\uf8f4\uf8f7\ufe71\x88\u25a0\u2502\u2500\u2510\u250c\u2514\u2518\ufe79\ufe7b\ufe7d\ufe7f\ufe77\ufe8a\ufef0\ufef3\ufef2\ufece\ufecf\ufed0\ufef6\ufef8\ufefa\ufefc\xa0\uf8fa\uf8f9\uf8f8\xa4\uf8fb\ufe8b\ufe91\ufe97\ufe9b\ufe9f\ufea3\u060c\xad\ufea7\ufeb3\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufeb7\u061b\ufebb\ufebf\ufeca\u061f\ufecb\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\ufec7\u0639\u063a\ufecc\ufe82\ufe84\ufe8e\ufed3\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u064b\u064c\u064d\u064e\u064f\u0650\u0651\u0652\ufed7\ufedb\ufedf\uf8fc\ufef5\ufef7\ufef9\ufefb\ufee3\ufee7\ufeec\ufee9\ufffd"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\xad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\xa7\u045e\u045f"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4\u0ec8\u0ec9\u0eca\u0ecb\u0ecc\u0ecd\u0ec6\ufffd\u0edc\u0edd\u20ad\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\ufffd\xa2\xac\xa6\ufffd"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e48\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\u0e49\u0e4a\u0e4b\u20ac\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\xa2\xac\xa6\xa0"},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"\u20ac\x81\x82\x83\x84\u2026\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\u20ac\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\u0160\u2122\xb4\xa8\u2260\u017d\xd8\u221e\xb1\u2264\u2265\u2206\xb5\u2202\u2211\u220f\u0161\u222b\xaa\xba\u2126\u017e\xf8\xbf\xa1\xac\u221a\u0192\u2248\u0106\xab\u010c\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u0110\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\ufffd\xa9\u2044\xa4\u2039\u203a\xc6\xbb\u2013\xb7\u201a\u201e\u2030\xc2\u0107\xc1\u010d\xc8\xcd\xce\xcf\xcc\xd3\xd4\u0111\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u03c0\xcb\u02da\xb8\xca\xe6\u02c7"},maccyrillic:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\xa2\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u2202\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},macgreek:{type:"_sbcs",chars:"\xc4\xb9\xb2\xc9\xb3\xd6\xdc\u0385\xe0\xe2\xe4\u0384\xa8\xe7\xe9\xe8\xea\xeb\xa3\u2122\xee\xef\u2022\xbd\u2030\xf4\xf6\xa6\xad\xf9\xfb\xfc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\xdf\xae\xa9\u03a3\u03aa\xa7\u2260\xb0\u0387\u0391\xb1\u2264\u2265\xa5\u0392\u0395\u0396\u0397\u0399\u039a\u039c\u03a6\u03ab\u03a8\u03a9\u03ac\u039d\xac\u039f\u03a1\u2248\u03a4\xab\xbb\u2026\xa0\u03a5\u03a7\u0386\u0388\u0153\u2013\u2015\u201c\u201d\u2018\u2019\xf7\u0389\u038a\u038c\u038e\u03ad\u03ae\u03af\u03cc\u038f\u03cd\u03b1\u03b2\u03c8\u03b4\u03b5\u03c6\u03b3\u03b7\u03b9\u03be\u03ba\u03bb\u03bc\u03bd\u03bf\u03c0\u03ce\u03c1\u03c3\u03c4\u03b8\u03c9\u03c2\u03c7\u03c5\u03b6\u03ca\u03cb\u0390\u03b0\ufffd"},maciceland:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\xdd\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\xd0\xf0\xde\xfe\xfd\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macroman:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macromania:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\u0102\u015e\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\u0103\u015f\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\u0162\u0163\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macthai:{type:"_sbcs",chars:"\xab\xbb\u2026\uf88c\uf88f\uf892\uf895\uf898\uf88b\uf88e\uf891\uf894\uf897\u201c\u201d\uf899\ufffd\u2022\uf884\uf889\uf885\uf886\uf887\uf888\uf88a\uf88d\uf890\uf893\uf896\u2018\u2019\ufffd\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufeff\u200b\u2013\u2014\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u2122\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\xae\xa9\ufffd\ufffd\ufffd\ufffd"},macturkish:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u011e\u011f\u0130\u0131\u015e\u015f\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\ufffd\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macukraine:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\u0490\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},koi8r:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255a\u255b\u255c\u255d\u255e\u255f\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256a\u256b\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8u:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u255d\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8ru:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u045e\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u040e\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8t:{type:"_sbcs",chars:"\u049b\u0493\u201a\u0492\u201e\u2026\u2020\u2021\ufffd\u2030\u04b3\u2039\u04b2\u04b7\u04b6\ufffd\u049a\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\ufffd\u04ef\u04ee\u0451\xa4\u04e3\xa6\xa7\ufffd\ufffd\ufffd\xab\xac\xad\xae\ufffd\xb0\xb1\xb2\u0401\ufffd\u04e2\xb6\xb7\ufffd\u2116\ufffd\xbb\ufffd\ufffd\ufffd\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},armscii8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\ufffd\u0587\u0589)(\xbb\xab\u2014.\u055d,-\u058a\u2026\u055c\u055b\u055e\u0531\u0561\u0532\u0562\u0533\u0563\u0534\u0564\u0535\u0565\u0536\u0566\u0537\u0567\u0538\u0568\u0539\u0569\u053a\u056a\u053b\u056b\u053c\u056c\u053d\u056d\u053e\u056e\u053f\u056f\u0540\u0570\u0541\u0571\u0542\u0572\u0543\u0573\u0544\u0574\u0545\u0575\u0546\u0576\u0547\u0577\u0548\u0578\u0549\u0579\u054a\u057a\u054b\u057b\u054c\u057c\u054d\u057d\u054e\u057e\u054f\u057f\u0550\u0580\u0551\u0581\u0552\u0582\u0553\u0583\u0554\u0584\u0555\u0585\u0556\u0586\u055a\ufffd"},rk1048:{type:"_sbcs",chars:"\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u049a\u04ba\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0459\u203a\u045a\u049b\u04bb\u045f\xa0\u04b0\u04b1\u04d8\xa4\u04e8\xa6\xa7\u0401\xa9\u0492\xab\xac\xad\xae\u04ae\xb0\xb1\u0406\u0456\u04e9\xb5\xb6\xb7\u0451\u2116\u0493\xbb\u04d9\u04a2\u04a3\u04af\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},tcvn:{type:"_sbcs",chars:"\0\xda\u1ee4\x03\u1eea\u1eec\u1eee\x07\b\t\n\v\f\r\x0e\x0f\x10\u1ee8\u1ef0\u1ef2\u1ef6\u1ef8\xdd\u1ef4\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xc0\u1ea2\xc3\xc1\u1ea0\u1eb6\u1eac\xc8\u1eba\u1ebc\xc9\u1eb8\u1ec6\xcc\u1ec8\u0128\xcd\u1eca\xd2\u1ece\xd5\xd3\u1ecc\u1ed8\u1edc\u1ede\u1ee0\u1eda\u1ee2\xd9\u1ee6\u0168\xa0\u0102\xc2\xca\xd4\u01a0\u01af\u0110\u0103\xe2\xea\xf4\u01a1\u01b0\u0111\u1eb0\u0300\u0309\u0303\u0301\u0323\xe0\u1ea3\xe3\xe1\u1ea1\u1eb2\u1eb1\u1eb3\u1eb5\u1eaf\u1eb4\u1eae\u1ea6\u1ea8\u1eaa\u1ea4\u1ec0\u1eb7\u1ea7\u1ea9\u1eab\u1ea5\u1ead\xe8\u1ec2\u1ebb\u1ebd\xe9\u1eb9\u1ec1\u1ec3\u1ec5\u1ebf\u1ec7\xec\u1ec9\u1ec4\u1ebe\u1ed2\u0129\xed\u1ecb\xf2\u1ed4\u1ecf\xf5\xf3\u1ecd\u1ed3\u1ed5\u1ed7\u1ed1\u1ed9\u1edd\u1edf\u1ee1\u1edb\u1ee3\xf9\u1ed6\u1ee7\u0169\xfa\u1ee5\u1eeb\u1eed\u1eef\u1ee9\u1ef1\u1ef3\u1ef7\u1ef9\xfd\u1ef5\u1ed0"},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10f1\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10f2\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10f3\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10f4\u10ef\u10f0\u10f5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04ee\u0493\u201e\u2026\u04b6\u04ae\u04b2\u04af\u04a0\u04e2\u04a2\u049a\u04ba\u04b8\u0497\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u04b3\u04b7\u04a1\u04e3\u04a3\u049b\u04bb\u04b9\xa0\u040e\u045e\u0408\u04e8\u0498\u04b0\xa7\u0401\xa9\u04d8\xab\xac\u04ef\xae\u049c\xb0\u04b1\u0406\u0456\u0499\u04e9\xb6\xb7\u0451\u2116\u04d9\xbb\u0458\u04aa\u04ab\u049d\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},viscii:{type:"_sbcs",chars:"\0\x01\u1eb2\x03\x04\u1eb4\u1eaa\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\u1ef6\x15\x16\x17\x18\u1ef8\x1a\x1b\x1c\x1d\u1ef4\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u1ea0\u1eae\u1eb0\u1eb6\u1ea4\u1ea6\u1ea8\u1eac\u1ebc\u1eb8\u1ebe\u1ec0\u1ec2\u1ec4\u1ec6\u1ed0\u1ed2\u1ed4\u1ed6\u1ed8\u1ee2\u1eda\u1edc\u1ede\u1eca\u1ece\u1ecc\u1ec8\u1ee6\u0168\u1ee4\u1ef2\xd5\u1eaf\u1eb1\u1eb7\u1ea5\u1ea7\u1ea9\u1ead\u1ebd\u1eb9\u1ebf\u1ec1\u1ec3\u1ec5\u1ec7\u1ed1\u1ed3\u1ed5\u1ed7\u1ee0\u01a0\u1ed9\u1edd\u1edf\u1ecb\u1ef0\u1ee8\u1eea\u1eec\u01a1\u1edb\u01af\xc0\xc1\xc2\xc3\u1ea2\u0102\u1eb3\u1eb5\xc8\xc9\xca\u1eba\xcc\xcd\u0128\u1ef3\u0110\u1ee9\xd2\xd3\xd4\u1ea1\u1ef7\u1eeb\u1eed\xd9\xda\u1ef9\u1ef5\xdd\u1ee1\u01b0\xe0\xe1\xe2\xe3\u1ea3\u0103\u1eef\u1eab\xe8\xe9\xea\u1ebb\xec\xed\u0129\u1ec9\u0111\u1ef1\xf2\xf3\xf4\xf5\u1ecf\u1ecd\u1ee5\xf9\xfa\u0169\u1ee7\xfd\u1ee3\u1eee"},iso646cn:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#\xa5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},iso646jp:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xa5]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xc0\xc2\xc8\xca\xcb\xce\xcf\xb4\u02cb\u02c6\xa8\u02dc\xd9\xdb\u20a4\xaf\xdd\xfd\xb0\xc7\xe7\xd1\xf1\xa1\xbf\xa4\xa3\xa5\xa7\u0192\xa2\xe2\xea\xf4\xfb\xe1\xe9\xf3\xfa\xe0\xe8\xf2\xf9\xe4\xeb\xf6\xfc\xc5\xee\xd8\xc6\xe5\xed\xf8\xe6\xc4\xec\xd6\xdc\xc9\xef\xdf\xd4\xc1\xc3\xe3\xd0\xf0\xcd\xcc\xd3\xd2\xd5\xf5\u0160\u0161\xda\u0178\xff\xde\xfe\xb7\xb5\xb6\xbe\u2014\xbc\xbd\xaa\xba\xab\u25a0\xbb\xb1\ufffd"},macintosh:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},ascii:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},tis620:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"}}},3769:function(T){"use strict";T.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"\xc4\u0100\u0101\xc9\u0104\xd6\xdc\xe1\u0105\u010c\xe4\u010d\u0106\u0107\xe9\u0179\u017a\u010e\xed\u010f\u0112\u0113\u0116\xf3\u0117\xf4\xf6\xf5\xfa\u011a\u011b\xfc\u2020\xb0\u0118\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\u0119\xa8\u2260\u0123\u012e\u012f\u012a\u2264\u2265\u012b\u0136\u2202\u2211\u0142\u013b\u013c\u013d\u013e\u0139\u013a\u0145\u0146\u0143\xac\u221a\u0144\u0147\u2206\xab\xbb\u2026\xa0\u0148\u0150\xd5\u0151\u014c\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\u014d\u0154\u0155\u0158\u2039\u203a\u0159\u0156\u0157\u0160\u201a\u201e\u0161\u015a\u015b\xc1\u0164\u0165\xcd\u017d\u017e\u016a\xd3\xd4\u016b\u016e\xda\u016f\u0170\u0171\u0172\u0173\xdd\xfd\u0137\u017b\u0141\u017c\u0122\u02c7"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\u20ac\u25a0\xa0"},mik:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2514\u2534\u252c\u251c\u2500\u253c\u2563\u2551\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2510\u2591\u2592\u2593\u2502\u2524\u2116\xa7\u2557\u255d\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},cp720:{type:"_sbcs",chars:"\x80\x81\xe9\xe2\x84\xe0\x86\xe7\xea\xeb\xe8\xef\xee\x8d\x8e\x8f\x90\u0651\u0652\xf4\xa4\u0640\xfb\xf9\u0621\u0622\u0623\u0624\xa3\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\xab\xbb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0636\u0637\u0638\u0639\u063a\u0641\xb5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u2261\u064b\u064c\u064d\u064e\u064f\u0650\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},1279:function(T,I,n){"use strict";var c=n(7103).Buffer;function i(){}function o(){}function l(){this.overflowByte=-1}function h(u,C){this.iconv=C}function a(u,C){void 0===(u=u||{}).addBOM&&(u.addBOM=!0),this.encoder=C.iconv.getEncoder("utf-16le",u)}function B(u,C){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=u||{},this.iconv=C.iconv}function E(u,C){var e=[],f=0,g=0,w=0;A:for(var Q=0;Q=100)break A}return w>g?"utf-16be":w1114111)&&(f=g),f>=65536){var w=55296|(f-=65536)>>10;C[e++]=255&w,C[e++]=w>>8,f=56320|1023&f}return C[e++]=255&f,C[e++]=f>>8,e}function a(C,e){this.iconv=e}function B(C,e){void 0===(C=C||{}).addBOM&&(C.addBOM=!0),this.encoder=e.iconv.getEncoder(C.defaultEncoding||"utf-32le",C)}function E(C,e){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=C||{},this.iconv=e.iconv}function u(C,e){var f=[],g=0,w=0,Q=0,p=0,Y=0;A:for(var y=0;y16)&&Q++,(0!==f[3]||f[2]>16)&&w++,0===f[0]&&0===f[1]&&(0!==f[2]||0!==f[3])&&Y++,(0!==f[0]||0!==f[1])&&0===f[2]&&0===f[3]&&p++,f.length=0,++g>=100)break A}return Y-Q>p-w?"utf-32be":Y-Q0){for(;e0&&(p=this.iconv.decode(c.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",p},I.utf7imap=f,f.prototype.encoder=g,f.prototype.decoder=w,f.prototype.bomAware=!0,g.prototype.write=function(p){for(var Y=this.inBase64,y=this.base64Accum,d=this.base64AccumIdx,v=c.alloc(5*p.length+10),m=0,P=0;P0&&(m+=v.write(y.slice(0,d).toString("base64").replace(/\//g,",").replace(/=+$/,""),m),d=0),v[m++]=C,Y=!1),Y||(v[m++]=N,N===e&&(v[m++]=C))):(Y||(v[m++]=e,Y=!0),Y&&(y[d++]=N>>8,y[d++]=255&N,d==y.length&&(m+=v.write(y.toString("base64").replace(/\//g,","),m),d=0)))}return this.inBase64=Y,this.base64AccumIdx=d,v.slice(0,m)},g.prototype.end=function(){var p=c.alloc(10),Y=0;return this.inBase64&&(this.base64AccumIdx>0&&(Y+=p.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),Y),this.base64AccumIdx=0),p[Y++]=C,this.inBase64=!1),p.slice(0,Y)};var Q=B.slice();Q[",".charCodeAt(0)]=!0,w.prototype.write=function(p){for(var Y="",y=0,d=this.inBase64,v=this.base64Accum,m=0;m0&&(p=this.iconv.decode(c.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",p}},5395:function(T,I){"use strict";function c(o,l){this.encoder=o,this.addBOM=!0}function i(o,l){this.decoder=o,this.pass=!1,this.options=l||{}}I.PrependBOM=c,c.prototype.write=function(o){return this.addBOM&&(o="\ufeff"+o,this.addBOM=!1),this.encoder.write(o)},c.prototype.end=function(){return this.encoder.end()},I.StripBOM=i,i.prototype.write=function(o){var l=this.decoder.write(o);return this.pass||!l||("\ufeff"===l[0]&&(l=l.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),l},i.prototype.end=function(){return this.decoder.end()}},4914:function(T,I,n){"use strict";var l,c=n(7103).Buffer,i=n(5395),o=T.exports;o.encodings=null,o.defaultCharUnicode="\ufffd",o.defaultCharSingleByte="?",o.encode=function(a,B,E){a=""+(a||"");var u=o.getEncoder(B,E),C=u.write(a),e=u.end();return e&&e.length>0?c.concat([C,e]):C},o.decode=function(a,B,E){"string"==typeof a&&(o.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),o.skipDecodeWarning=!0),a=c.from(""+(a||""),"binary"));var u=o.getDecoder(B,E),C=u.write(a),e=u.end();return e?C+e:C},o.encodingExists=function(a){try{return o.getCodec(a),!0}catch(B){return!1}},o.toEncoding=o.encode,o.fromEncoding=o.decode,o._codecDataCache={},o.getCodec=function(a){o.encodings||(o.encodings=n(6934));for(var B=o._canonicalizeEncoding(a),E={};;){var u=o._codecDataCache[B];if(u)return u;var C=o.encodings[B];switch(typeof C){case"string":B=C;break;case"object":for(var e in C)E[e]=C[e];E.encodingName||(E.encodingName=B),B=C.type;break;case"function":return E.encodingName||(E.encodingName=B),u=new C(E,o),o._codecDataCache[E.encodingName]=u,u;default:throw new Error("Encoding not recognized: '"+a+"' (searched as: '"+B+"')")}}},o._canonicalizeEncoding=function(h){return(""+h).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},o.getEncoder=function(a,B){var E=o.getCodec(a),u=new E.encoder(B,E);return E.bomAware&&B&&B.addBOM&&(u=new i.PrependBOM(u,B)),u},o.getDecoder=function(a,B){var E=o.getCodec(a),u=new E.decoder(B,E);return E.bomAware&&!(B&&!1===B.stripBOM)&&(u=new i.StripBOM(u,B)),u},o.enableStreamingAPI=function(a){if(!o.supportsStreams){var B=n(8044)(a);o.IconvLiteEncoderStream=B.IconvLiteEncoderStream,o.IconvLiteDecoderStream=B.IconvLiteDecoderStream,o.encodeStream=function(u,C){return new o.IconvLiteEncoderStream(o.getEncoder(u,C),C)},o.decodeStream=function(u,C){return new o.IconvLiteDecoderStream(o.getDecoder(u,C),C)},o.supportsStreams=!0}};try{l=n(5832)}catch(h){}l&&l.Transform?o.enableStreamingAPI(l):o.encodeStream=o.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},8044:function(T,I,n){"use strict";var c=n(7103).Buffer;T.exports=function(i){var o=i.Transform;function l(a,B){this.conv=a,(B=B||{}).decodeStrings=!1,o.call(this,B)}function h(a,B){this.conv=a,(B=B||{}).encoding=this.encoding="utf8",o.call(this,B)}return(l.prototype=Object.create(o.prototype,{constructor:{value:l}}))._transform=function(a,B,E){if("string"!=typeof a)return E(new Error("Iconv encoding stream needs strings as its input."));try{var u=this.conv.write(a);u&&u.length&&this.push(u),E()}catch(C){E(C)}},l.prototype._flush=function(a){try{var B=this.conv.end();B&&B.length&&this.push(B),a()}catch(E){a(E)}},l.prototype.collect=function(a){var B=[];return this.on("error",a),this.on("data",function(E){B.push(E)}),this.on("end",function(){a(null,c.concat(B))}),this},(h.prototype=Object.create(o.prototype,{constructor:{value:h}}))._transform=function(a,B,E){if(!(c.isBuffer(a)||a instanceof Uint8Array))return E(new Error("Iconv decoding stream needs buffers as its input."));try{var u=this.conv.write(a);u&&u.length&&this.push(u,this.encoding),E()}catch(C){E(C)}},h.prototype._flush=function(a){try{var B=this.conv.end();B&&B.length&&this.push(B,this.encoding),a()}catch(E){a(E)}},h.prototype.collect=function(a){var B="";return this.on("error",a),this.on("data",function(E){B+=E}),this.on("end",function(){a(null,B)}),this},{IconvLiteEncoderStream:l,IconvLiteDecoderStream:h}}},645:function(T,I){I.read=function(n,c,i,o,l){var h,a,B=8*l-o-1,E=(1<>1,C=-7,e=i?l-1:0,f=i?-1:1,g=n[c+e];for(e+=f,h=g&(1<<-C)-1,g>>=-C,C+=B;C>0;h=256*h+n[c+e],e+=f,C-=8);for(a=h&(1<<-C)-1,h>>=-C,C+=o;C>0;a=256*a+n[c+e],e+=f,C-=8);if(0===h)h=1-u;else{if(h===E)return a?NaN:1/0*(g?-1:1);a+=Math.pow(2,o),h-=u}return(g?-1:1)*a*Math.pow(2,h-o)},I.write=function(n,c,i,o,l,h){var a,B,E,u=8*h-l-1,C=(1<>1,f=23===l?Math.pow(2,-24)-Math.pow(2,-77):0,g=o?0:h-1,w=o?1:-1,Q=c<0||0===c&&1/c<0?1:0;for(c=Math.abs(c),isNaN(c)||c===1/0?(B=isNaN(c)?1:0,a=C):(a=Math.floor(Math.log(c)/Math.LN2),c*(E=Math.pow(2,-a))<1&&(a--,E*=2),(c+=a+e>=1?f/E:f*Math.pow(2,1-e))*E>=2&&(a++,E/=2),a+e>=C?(B=0,a=C):a+e>=1?(B=(c*E-1)*Math.pow(2,l),a+=e):(B=c*Math.pow(2,e-1)*Math.pow(2,l),a=0));l>=8;n[i+g]=255&B,g+=w,B/=256,l-=8);for(a=a<0;n[i+g]=255&a,g+=w,a/=256,u-=8);n[i+g-w]|=128*Q}},5717:function(T){T.exports="function"==typeof Object.create?function(n,c){c&&(n.super_=c,n.prototype=Object.create(c.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}))}:function(n,c){if(c){n.super_=c;var i=function(){};i.prototype=c.prototype,n.prototype=new i,n.prototype.constructor=n}}},2584:function(T,I,n){"use strict";var c=n(6410)(),o=n(1924)("Object.prototype.toString"),l=function(E){return!(c&&E&&"object"==typeof E&&Symbol.toStringTag in E)&&"[object Arguments]"===o(E)},h=function(E){return!!l(E)||null!==E&&"object"==typeof E&&"number"==typeof E.length&&E.length>=0&&"[object Array]"!==o(E)&&"[object Function]"===o(E.callee)},a=function(){return l(arguments)}();l.isLegacyArguments=h,T.exports=a?l:h},8923:function(T,I,n){"use strict";var c=Date.prototype.getDay,o=Object.prototype.toString,h=n(6410)();T.exports=function(B){return"object"==typeof B&&null!==B&&(h?function(B){try{return c.call(B),!0}catch(E){return!1}}(B):"[object Date]"===o.call(B))}},8662:function(T,I,n){"use strict";var B,c=Object.prototype.toString,i=Function.prototype.toString,o=/^\s*(?:function)?\*/,l=n(6410)(),h=Object.getPrototypeOf;T.exports=function(u){if("function"!=typeof u)return!1;if(o.test(i.call(u)))return!0;if(!l)return"[object GeneratorFunction]"===c.call(u);if(!h)return!1;if(void 0===B){var e=function(){if(!l)return!1;try{return Function("return function*() {}")()}catch(E){}}();B=!!e&&h(e)}return h(u)===B}},8611:function(T){"use strict";T.exports=function(n){return n!=n}},360:function(T,I,n){"use strict";var c=n(5559),i=n(4289),o=n(8611),l=n(9415),h=n(6743),a=c(l(),Number);i(a,{getPolyfill:l,implementation:o,shim:h}),T.exports=a},9415:function(T,I,n){"use strict";var c=n(8611);T.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:c}},6743:function(T,I,n){"use strict";var c=n(4289),i=n(9415);T.exports=function(){var l=i();return c(Number,{isNaN:l},{isNaN:function(){return Number.isNaN!==l}}),l}},8420:function(T,I,n){"use strict";var o,l,h,a,c=n(1924),i=n(6410)();if(i){o=c("Object.prototype.hasOwnProperty"),l=c("RegExp.prototype.exec"),h={};var B=function(){throw h};a={toString:B,valueOf:B},"symbol"==typeof Symbol.toPrimitive&&(a[Symbol.toPrimitive]=B)}var E=c("Object.prototype.toString"),u=Object.getOwnPropertyDescriptor;T.exports=i?function(f){if(!f||"object"!=typeof f)return!1;var g=u(f,"lastIndex");if(!g||!o(g,"value"))return!1;try{l(f,a)}catch(Q){return Q===h}}:function(f){return!(!f||"object"!=typeof f&&"function"!=typeof f)&&"[object RegExp]"===E(f)}},5692:function(T,I,n){"use strict";var c=n(9804),i=n(3083),o=n(1924),l=o("Object.prototype.toString"),h=n(6410)(),a="undefined"==typeof globalThis?n.g:globalThis,B=i(),E=o("Array.prototype.indexOf",!0)||function(Q,p){for(var Y=0;Y-1}return!!e&&function(Q){var p=!1;return c(C,function(Y,y){if(!p)try{p=Y.call(Q)===y}catch(d){}}),p}(Q)}},4244:function(T){"use strict";var I=function(n){return n!=n};T.exports=function(c,i){return 0===c&&0===i?1/c==1/i:!!(c===i||I(c)&&I(i))}},609:function(T,I,n){"use strict";var c=n(4289),i=n(5559),o=n(4244),l=n(5624),h=n(2281),a=i(l(),Object);c(a,{getPolyfill:l,implementation:o,shim:h}),T.exports=a},5624:function(T,I,n){"use strict";var c=n(4244);T.exports=function(){return"function"==typeof Object.is?Object.is:c}},2281:function(T,I,n){"use strict";var c=n(5624),i=n(4289);T.exports=function(){var l=c();return i(Object,{is:l},{is:function(){return Object.is!==l}}),l}},8987:function(T,I,n){"use strict";var c;if(!Object.keys){var i=Object.prototype.hasOwnProperty,o=Object.prototype.toString,l=n(1414),h=Object.prototype.propertyIsEnumerable,a=!h.call({toString:null},"toString"),B=h.call(function(){},"prototype"),E=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],u=function(g){var w=g.constructor;return w&&w.prototype===g},C={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},e=function(){if("undefined"==typeof window)return!1;for(var g in window)try{if(!C["$"+g]&&i.call(window,g)&&null!==window[g]&&"object"==typeof window[g])try{u(window[g])}catch(w){return!0}}catch(w){return!0}return!1}();c=function(w){var Q=null!==w&&"object"==typeof w,p="[object Function]"===o.call(w),Y=l(w),y=Q&&"[object String]"===o.call(w),d=[];if(!Q&&!p&&!Y)throw new TypeError("Object.keys called on a non-object");var v=B&&p;if(y&&w.length>0&&!i.call(w,0))for(var m=0;m0)for(var P=0;P=0&&"[object Function]"===I.call(c.callee)),o}},4236:function(T,I){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;function c(l,h){return Object.prototype.hasOwnProperty.call(l,h)}I.assign=function(l){for(var h=Array.prototype.slice.call(arguments,1);h.length;){var a=h.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(var B in a)c(a,B)&&(l[B]=a[B])}}return l},I.shrinkBuf=function(l,h){return l.length===h?l:l.subarray?l.subarray(0,h):(l.length=h,l)};var i={arraySet:function(l,h,a,B,E){if(h.subarray&&l.subarray)l.set(h.subarray(a,a+B),E);else for(var u=0;u>>16&65535|0,a=0;0!==i;){i-=a=i>2e3?2e3:i;do{h=h+(l=l+c[o++]|0)|0}while(--a);l%=65521,h%=65521}return l|h<<16|0}},1619:function(T){"use strict";T.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},2869:function(T){"use strict";var n=function I(){for(var i,o=[],l=0;l<256;l++){i=l;for(var h=0;h<8;h++)i=1&i?3988292384^i>>>1:i>>>1;o[l]=i}return o}();T.exports=function c(i,o,l,h){var a=n,B=h+l;i^=-1;for(var E=h;E>>8^a[255&(i^o[E])];return-1^i}},405:function(T,I,n){"use strict";var Tt,c=n(4236),i=n(342),o=n(6069),l=n(2869),h=n(8898),g=-2,yA=258,FA=262,X=666;function nA(j,qA){return j.msg=h[qA],qA}function EA(j){return(j<<1)-(j>4?9:0)}function GA(j){for(var qA=j.length;--qA>=0;)j[qA]=0}function et(j){var qA=j.state,KA=qA.pending;KA>j.avail_out&&(KA=j.avail_out),0!==KA&&(c.arraySet(j.output,qA.pending_buf,qA.pending_out,KA,j.next_out),j.next_out+=KA,qA.pending_out+=KA,j.total_out+=KA,j.avail_out-=KA,qA.pending-=KA,0===qA.pending&&(qA.pending_out=0))}function st(j,qA){i._tr_flush_block(j,j.block_start>=0?j.block_start:-1,j.strstart-j.block_start,qA),j.block_start=j.strstart,et(j.strm)}function TA(j,qA){j.pending_buf[j.pending++]=qA}function it(j,qA){j.pending_buf[j.pending++]=qA>>>8&255,j.pending_buf[j.pending++]=255&qA}function vt(j,qA,KA,DA){var jA=j.avail_in;return jA>DA&&(jA=DA),0===jA?0:(j.avail_in-=jA,c.arraySet(qA,j.input,j.next_in,jA,KA),1===j.state.wrap?j.adler=o(j.adler,qA,jA,KA):2===j.state.wrap&&(j.adler=l(j.adler,qA,jA,KA)),j.next_in+=jA,j.total_in+=jA,jA)}function It(j,qA){var jA,lt,KA=j.max_chain_length,DA=j.strstart,bt=j.prev_length,yt=j.nice_match,zt=j.strstart>j.w_size-FA?j.strstart-(j.w_size-FA):0,Zt=j.window,be=j.w_mask,ae=j.prev,ee=j.strstart+yA,xe=Zt[DA+bt-1],Ge=Zt[DA+bt];j.prev_length>=j.good_match&&(KA>>=2),yt>j.lookahead&&(yt=j.lookahead);do{if(Zt[(jA=qA)+bt]===Ge&&Zt[jA+bt-1]===xe&&Zt[jA]===Zt[DA]&&Zt[++jA]===Zt[DA+1]){DA+=2,jA++;do{}while(Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&Zt[++DA]===Zt[++jA]&&DAbt){if(j.match_start=qA,bt=lt,lt>=yt)break;xe=Zt[DA+bt-1],Ge=Zt[DA+bt]}}}while((qA=ae[qA&be])>zt&&0!=--KA);return bt<=j.lookahead?bt:j.lookahead}function ht(j){var KA,DA,jA,lt,bt,qA=j.w_size;do{if(lt=j.window_size-j.lookahead-j.strstart,j.strstart>=qA+(qA-FA)){c.arraySet(j.window,j.window,qA,qA,0),j.match_start-=qA,j.strstart-=qA,j.block_start-=qA,KA=DA=j.hash_size;do{jA=j.head[--KA],j.head[KA]=jA>=qA?jA-qA:0}while(--DA);KA=DA=qA;do{jA=j.prev[--KA],j.prev[KA]=jA>=qA?jA-qA:0}while(--DA);lt+=qA}if(0===j.strm.avail_in)break;if(DA=vt(j.strm,j.window,j.strstart+j.lookahead,lt),j.lookahead+=DA,j.lookahead+j.insert>=3)for(j.ins_h=j.window[bt=j.strstart-j.insert],j.ins_h=(j.ins_h<=3&&(j.ins_h=(j.ins_h<=3)if(DA=i._tr_tally(j,j.strstart-j.match_start,j.match_length-3),j.lookahead-=j.match_length,j.match_length<=j.max_lazy_match&&j.lookahead>=3){j.match_length--;do{j.strstart++,j.ins_h=(j.ins_h<=3&&(j.ins_h=(j.ins_h<4096)&&(j.match_length=2)),j.prev_length>=3&&j.match_length<=j.prev_length){jA=j.strstart+j.lookahead-3,DA=i._tr_tally(j,j.strstart-1-j.prev_match,j.prev_length-3),j.lookahead-=j.prev_length-1,j.prev_length-=2;do{++j.strstart<=jA&&(j.ins_h=(j.ins_h<15&&(bt=2,DA-=16),jA<1||jA>9||8!==KA||DA<8||DA>15||qA<0||qA>9||lt<0||lt>4)return nA(j,g);8===DA&&(DA=9);var yt=new H;return j.state=yt,yt.strm=j,yt.wrap=bt,yt.gzhead=null,yt.w_bits=DA,yt.w_size=1<j.pending_buf_size-5&&(KA=j.pending_buf_size-5);;){if(j.lookahead<=1){if(ht(j),0===j.lookahead&&0===qA)return 1;if(0===j.lookahead)break}j.strstart+=j.lookahead,j.lookahead=0;var DA=j.block_start+KA;if((0===j.strstart||j.strstart>=DA)&&(j.lookahead=j.strstart-DA,j.strstart=DA,st(j,!1),0===j.strm.avail_out)||j.strstart-j.block_start>=j.w_size-FA&&(st(j,!1),0===j.strm.avail_out))return 1}return j.insert=0,4===qA?(st(j,!0),0===j.strm.avail_out?3:4):(j.strstart>j.block_start&&st(j,!1),1)}),new Et(4,4,8,4,WA),new Et(4,5,16,8,WA),new Et(4,6,32,32,WA),new Et(4,4,16,16,rt),new Et(8,16,32,32,rt),new Et(8,16,128,128,rt),new Et(8,32,128,256,rt),new Et(32,128,258,1024,rt),new Et(32,258,258,4096,rt)],I.deflateInit=function RA(j,qA){return wA(j,qA,8,15,8,0)},I.deflateInit2=wA,I.deflateReset=b,I.deflateResetKeep=k,I.deflateSetHeader=function CA(j,qA){return j&&j.state&&2===j.state.wrap?(j.state.gzhead=qA,0):g},I.deflate=function rA(j,qA){var KA,DA,jA,lt;if(!j||!j.state||qA>5||qA<0)return j?nA(j,g):g;if(DA=j.state,!j.output||!j.input&&0!==j.avail_in||DA.status===X&&4!==qA)return nA(j,0===j.avail_out?-5:g);if(DA.strm=j,KA=DA.last_flush,DA.last_flush=qA,42===DA.status)if(2===DA.wrap)j.adler=0,TA(DA,31),TA(DA,139),TA(DA,8),DA.gzhead?(TA(DA,(DA.gzhead.text?1:0)+(DA.gzhead.hcrc?2:0)+(DA.gzhead.extra?4:0)+(DA.gzhead.name?8:0)+(DA.gzhead.comment?16:0)),TA(DA,255&DA.gzhead.time),TA(DA,DA.gzhead.time>>8&255),TA(DA,DA.gzhead.time>>16&255),TA(DA,DA.gzhead.time>>24&255),TA(DA,9===DA.level?2:DA.strategy>=2||DA.level<2?4:0),TA(DA,255&DA.gzhead.os),DA.gzhead.extra&&DA.gzhead.extra.length&&(TA(DA,255&DA.gzhead.extra.length),TA(DA,DA.gzhead.extra.length>>8&255)),DA.gzhead.hcrc&&(j.adler=l(j.adler,DA.pending_buf,DA.pending,0)),DA.gzindex=0,DA.status=69):(TA(DA,0),TA(DA,0),TA(DA,0),TA(DA,0),TA(DA,0),TA(DA,9===DA.level?2:DA.strategy>=2||DA.level<2?4:0),TA(DA,3),DA.status=113);else{var bt=8+(DA.w_bits-8<<4)<<8;bt|=(DA.strategy>=2||DA.level<2?0:DA.level<6?1:6===DA.level?2:3)<<6,0!==DA.strstart&&(bt|=32),bt+=31-bt%31,DA.status=113,it(DA,bt),0!==DA.strstart&&(it(DA,j.adler>>>16),it(DA,65535&j.adler)),j.adler=1}if(69===DA.status)if(DA.gzhead.extra){for(jA=DA.pending;DA.gzindex<(65535&DA.gzhead.extra.length)&&(DA.pending!==DA.pending_buf_size||(DA.gzhead.hcrc&&DA.pending>jA&&(j.adler=l(j.adler,DA.pending_buf,DA.pending-jA,jA)),et(j),jA=DA.pending,DA.pending!==DA.pending_buf_size));)TA(DA,255&DA.gzhead.extra[DA.gzindex]),DA.gzindex++;DA.gzhead.hcrc&&DA.pending>jA&&(j.adler=l(j.adler,DA.pending_buf,DA.pending-jA,jA)),DA.gzindex===DA.gzhead.extra.length&&(DA.gzindex=0,DA.status=73)}else DA.status=73;if(73===DA.status)if(DA.gzhead.name){jA=DA.pending;do{if(DA.pending===DA.pending_buf_size&&(DA.gzhead.hcrc&&DA.pending>jA&&(j.adler=l(j.adler,DA.pending_buf,DA.pending-jA,jA)),et(j),jA=DA.pending,DA.pending===DA.pending_buf_size)){lt=1;break}lt=DA.gzindexjA&&(j.adler=l(j.adler,DA.pending_buf,DA.pending-jA,jA)),0===lt&&(DA.gzindex=0,DA.status=91)}else DA.status=91;if(91===DA.status)if(DA.gzhead.comment){jA=DA.pending;do{if(DA.pending===DA.pending_buf_size&&(DA.gzhead.hcrc&&DA.pending>jA&&(j.adler=l(j.adler,DA.pending_buf,DA.pending-jA,jA)),et(j),jA=DA.pending,DA.pending===DA.pending_buf_size)){lt=1;break}lt=DA.gzindexjA&&(j.adler=l(j.adler,DA.pending_buf,DA.pending-jA,jA)),0===lt&&(DA.status=103)}else DA.status=103;if(103===DA.status&&(DA.gzhead.hcrc?(DA.pending+2>DA.pending_buf_size&&et(j),DA.pending+2<=DA.pending_buf_size&&(TA(DA,255&j.adler),TA(DA,j.adler>>8&255),j.adler=0,DA.status=113)):DA.status=113),0!==DA.pending){if(et(j),0===j.avail_out)return DA.last_flush=-1,0}else if(0===j.avail_in&&EA(qA)<=EA(KA)&&4!==qA)return nA(j,-5);if(DA.status===X&&0!==j.avail_in)return nA(j,-5);if(0!==j.avail_in||0!==DA.lookahead||0!==qA&&DA.status!==X){var zt=2===DA.strategy?function Mt(j,qA){for(var KA;;){if(0===j.lookahead&&(ht(j),0===j.lookahead)){if(0===qA)return 1;break}if(j.match_length=0,KA=i._tr_tally(j,0,j.window[j.strstart]),j.lookahead--,j.strstart++,KA&&(st(j,!1),0===j.strm.avail_out))return 1}return j.insert=0,4===qA?(st(j,!0),0===j.strm.avail_out?3:4):j.last_lit&&(st(j,!1),0===j.strm.avail_out)?1:2}(DA,qA):3===DA.strategy?function xA(j,qA){for(var KA,DA,jA,lt,bt=j.window;;){if(j.lookahead<=yA){if(ht(j),j.lookahead<=yA&&0===qA)return 1;if(0===j.lookahead)break}if(j.match_length=0,j.lookahead>=3&&j.strstart>0&&(DA=bt[jA=j.strstart-1])===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]){lt=j.strstart+yA;do{}while(DA===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]&&DA===bt[++jA]&&jAj.lookahead&&(j.match_length=j.lookahead)}if(j.match_length>=3?(KA=i._tr_tally(j,1,j.match_length-3),j.lookahead-=j.match_length,j.strstart+=j.match_length,j.match_length=0):(KA=i._tr_tally(j,0,j.window[j.strstart]),j.lookahead--,j.strstart++),KA&&(st(j,!1),0===j.strm.avail_out))return 1}return j.insert=0,4===qA?(st(j,!0),0===j.strm.avail_out?3:4):j.last_lit&&(st(j,!1),0===j.strm.avail_out)?1:2}(DA,qA):Tt[DA.level].func(DA,qA);if((3===zt||4===zt)&&(DA.status=X),1===zt||3===zt)return 0===j.avail_out&&(DA.last_flush=-1),0;if(2===zt&&(1===qA?i._tr_align(DA):5!==qA&&(i._tr_stored_block(DA,0,0,!1),3===qA&&(GA(DA.head),0===DA.lookahead&&(DA.strstart=0,DA.block_start=0,DA.insert=0))),et(j),0===j.avail_out))return DA.last_flush=-1,0}return 4!==qA?0:DA.wrap<=0?1:(2===DA.wrap?(TA(DA,255&j.adler),TA(DA,j.adler>>8&255),TA(DA,j.adler>>16&255),TA(DA,j.adler>>24&255),TA(DA,255&j.total_in),TA(DA,j.total_in>>8&255),TA(DA,j.total_in>>16&255),TA(DA,j.total_in>>24&255)):(it(DA,j.adler>>>16),it(DA,65535&j.adler)),et(j),DA.wrap>0&&(DA.wrap=-DA.wrap),0!==DA.pending?0:1)},I.deflateEnd=function gt(j){var qA;return j&&j.state?42!==(qA=j.state.status)&&69!==qA&&73!==qA&&91!==qA&&103!==qA&&113!==qA&&qA!==X?nA(j,g):(j.state=null,113===qA?nA(j,-3):0):g},I.deflateSetDictionary=function Yt(j,qA){var DA,jA,lt,bt,yt,zt,Zt,be,KA=qA.length;if(!j||!j.state||2===(bt=(DA=j.state).wrap)||1===bt&&42!==DA.status||DA.lookahead)return g;for(1===bt&&(j.adler=o(j.adler,qA,KA,0)),DA.wrap=0,KA>=DA.w_size&&(0===bt&&(GA(DA.head),DA.strstart=0,DA.block_start=0,DA.insert=0),be=new c.Buf8(DA.w_size),c.arraySet(be,qA,KA-DA.w_size,DA.w_size,0),qA=be,KA=DA.w_size),yt=j.avail_in,zt=j.next_in,Zt=j.input,j.avail_in=KA,j.next_in=0,j.input=qA,ht(DA);DA.lookahead>=3;){jA=DA.strstart,lt=DA.lookahead-2;do{DA.ins_h=(DA.ins_h<>>=P=m>>>24,p-=P,0==(P=m>>>16&255))sA[B++]=65535&m;else{if(!(16&P)){if(0==(64&P)){m=Y[(65535&m)+(Q&(1<>>=P,p-=P),p<15&&(Q+=eA[h++]<>>=P=m>>>24,p-=P,!(16&(P=m>>>16&255))){if(0==(64&P)){m=y[(65535&m)+(Q&(1<C){i.msg="invalid distance too far back",l.mode=30;break A}if(Q>>>=P,p-=P,F>(P=B-E)){if((P=F-P)>f&&l.sane){i.msg="invalid distance too far back",l.mode=30;break A}if(L=0,U=w,0===g){if(L+=e-P,P2;)sA[B++]=U[L++],sA[B++]=U[L++],sA[B++]=U[L++],N-=3;N&&(sA[B++]=U[L++],N>1&&(sA[B++]=U[L++]))}else{L=B-F;do{sA[B++]=sA[L++],sA[B++]=sA[L++],sA[B++]=sA[L++],N-=3}while(N>2);N&&(sA[B++]=sA[L++],N>1&&(sA[B++]=sA[L++]))}break}}break}}while(h>3)<<3))-1,i.next_in=h-=N,i.next_out=B,i.avail_in=h>>24&255)+(wA>>>8&65280)+((65280&wA)<<8)+((255&wA)<<24)}function vt(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new c.Buf16(320),this.work=new c.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function It(wA){var RA;return wA&&wA.state?(wA.total_in=wA.total_out=(RA=wA.state).total=0,wA.msg="",RA.wrap&&(wA.adler=1&RA.wrap),RA.mode=1,RA.last=0,RA.havedict=0,RA.dmax=32768,RA.head=null,RA.hold=0,RA.bits=0,RA.lencode=RA.lendyn=new c.Buf32(852),RA.distcode=RA.distdyn=new c.Buf32(592),RA.sane=1,RA.back=-1,0):Q}function ht(wA){var RA;return wA&&wA.state?((RA=wA.state).wsize=0,RA.whave=0,RA.wnext=0,It(wA)):Q}function JA(wA,RA){var rA,gt;return!wA||!wA.state||(gt=wA.state,RA<0?(rA=0,RA=-RA):(rA=1+(RA>>4),RA<48&&(RA&=15)),RA&&(RA<8||RA>15))?Q:(null!==gt.window&>.wbits!==RA&&(gt.window=null),gt.wrap=rA,gt.wbits=RA,ht(wA))}function WA(wA,RA){var rA,gt;return wA?(gt=new vt,wA.state=gt,gt.window=null,0!==(rA=JA(wA,RA))&&(wA.state=null),rA):Q}var Mt,Et,xA=!0;function Tt(wA){if(xA){var RA;for(Mt=new c.Buf32(512),Et=new c.Buf32(32),RA=0;RA<144;)wA.lens[RA++]=8;for(;RA<256;)wA.lens[RA++]=9;for(;RA<280;)wA.lens[RA++]=7;for(;RA<288;)wA.lens[RA++]=8;for(h(1,wA.lens,0,288,Mt,0,wA.work,{bits:9}),RA=0;RA<32;)wA.lens[RA++]=5;h(2,wA.lens,0,32,Et,0,wA.work,{bits:5}),xA=!1}wA.lencode=Mt,wA.lenbits=9,wA.distcode=Et,wA.distbits=5}function OA(wA,RA,rA,gt){var Yt,j=wA.state;return null===j.window&&(j.wsize=1<=j.wsize?(c.arraySet(j.window,RA,rA-j.wsize,j.wsize,0),j.wnext=0,j.whave=j.wsize):((Yt=j.wsize-j.wnext)>gt&&(Yt=gt),c.arraySet(j.window,RA,rA-gt,Yt,j.wnext),(gt-=Yt)?(c.arraySet(j.window,RA,rA-gt,gt,0),j.wnext=gt,j.whave=j.wsize):(j.wnext+=Yt,j.wnext===j.wsize&&(j.wnext=0),j.whave>>8&255,rA.check=o(rA.check,Ne,2,0),jA=0,lt=0,rA.mode=2;break}if(rA.flags=0,rA.head&&(rA.head.done=!1),!(1&rA.wrap)||(((255&jA)<<8)+(jA>>8))%31){wA.msg="incorrect header check",rA.mode=30;break}if(8!=(15&jA)){wA.msg="unknown compression method",rA.mode=30;break}if(lt-=4,ie=8+(15&(jA>>>=4)),0===rA.wbits)rA.wbits=ie;else if(ie>rA.wbits){wA.msg="invalid window size",rA.mode=30;break}rA.dmax=1<>8&1),512&rA.flags&&(Ne[0]=255&jA,Ne[1]=jA>>>8&255,rA.check=o(rA.check,Ne,2,0)),jA=0,lt=0,rA.mode=3;case 3:for(;lt<32;){if(0===KA)break A;KA--,jA+=gt[j++]<>>8&255,Ne[2]=jA>>>16&255,Ne[3]=jA>>>24&255,rA.check=o(rA.check,Ne,4,0)),jA=0,lt=0,rA.mode=4;case 4:for(;lt<16;){if(0===KA)break A;KA--,jA+=gt[j++]<>8),512&rA.flags&&(Ne[0]=255&jA,Ne[1]=jA>>>8&255,rA.check=o(rA.check,Ne,2,0)),jA=0,lt=0,rA.mode=5;case 5:if(1024&rA.flags){for(;lt<16;){if(0===KA)break A;KA--,jA+=gt[j++]<>>8&255,rA.check=o(rA.check,Ne,2,0)),jA=0,lt=0}else rA.head&&(rA.head.extra=null);rA.mode=6;case 6:if(1024&rA.flags&&((zt=rA.length)>KA&&(zt=KA),zt&&(rA.head&&(ie=rA.head.extra_len-rA.length,rA.head.extra||(rA.head.extra=new Array(rA.head.extra_len)),c.arraySet(rA.head.extra,gt,j,zt,ie)),512&rA.flags&&(rA.check=o(rA.check,gt,zt,j)),KA-=zt,j+=zt,rA.length-=zt),rA.length))break A;rA.length=0,rA.mode=7;case 7:if(2048&rA.flags){if(0===KA)break A;zt=0;do{ie=gt[j+zt++],rA.head&&ie&&rA.length<65536&&(rA.head.name+=String.fromCharCode(ie))}while(ie&&zt>9&1,rA.head.done=!0),wA.adler=rA.check=0,rA.mode=12;break;case 10:for(;lt<32;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=7<,lt-=7<,rA.mode=27;break}for(;lt<3;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=1)){case 0:rA.mode=14;break;case 1:if(Tt(rA),rA.mode=20,6===RA){jA>>>=2,lt-=2;break A}break;case 2:rA.mode=17;break;case 3:wA.msg="invalid block type",rA.mode=30}jA>>>=2,lt-=2;break;case 14:for(jA>>>=7<,lt-=7<lt<32;){if(0===KA)break A;KA--,jA+=gt[j++]<>>16^65535)){wA.msg="invalid stored block lengths",rA.mode=30;break}if(rA.length=65535&jA,jA=0,lt=0,rA.mode=15,6===RA)break A;case 15:rA.mode=16;case 16:if(zt=rA.length){if(zt>KA&&(zt=KA),zt>DA&&(zt=DA),0===zt)break A;c.arraySet(Yt,gt,j,zt,qA),KA-=zt,j+=zt,DA-=zt,qA+=zt,rA.length-=zt;break}rA.mode=12;break;case 17:for(;lt<14;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=5)),lt-=5,rA.ncode=4+(15&(jA>>>=5)),jA>>>=4,lt-=4,rA.nlen>286||rA.ndist>30){wA.msg="too many length or distance symbols",rA.mode=30;break}rA.have=0,rA.mode=18;case 18:for(;rA.have>>=3,lt-=3}for(;rA.have<19;)rA.lens[Hn[rA.have++]]=0;if(rA.lencode=rA.lendyn,rA.lenbits=7,rn=h(0,rA.lens,0,19,rA.lencode,0,rA.work,an={bits:rA.lenbits}),rA.lenbits=an.bits,rn){wA.msg="invalid code lengths set",rA.mode=30;break}rA.have=0,rA.mode=19;case 19:for(;rA.have>>16&255,Ge=65535&ae,!((ee=ae>>>24)<=lt);){if(0===KA)break A;KA--,jA+=gt[j++]<>>=ee,lt-=ee,rA.lens[rA.have++]=Ge;else{if(16===Ge){for($e=ee+2;lt<$e;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=ee,lt-=ee,0===rA.have){wA.msg="invalid bit length repeat",rA.mode=30;break}ie=rA.lens[rA.have-1],zt=3+(3&jA),jA>>>=2,lt-=2}else if(17===Ge){for($e=ee+3;lt<$e;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=ee)),jA>>>=3,lt-=3}else{for($e=ee+7;lt<$e;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=ee)),jA>>>=7,lt-=7}if(rA.have+zt>rA.nlen+rA.ndist){wA.msg="invalid bit length repeat",rA.mode=30;break}for(;zt--;)rA.lens[rA.have++]=ie}}if(30===rA.mode)break;if(0===rA.lens[256]){wA.msg="invalid code -- missing end-of-block",rA.mode=30;break}if(rA.lenbits=9,rn=h(1,rA.lens,0,rA.nlen,rA.lencode,0,rA.work,an={bits:rA.lenbits}),rA.lenbits=an.bits,rn){wA.msg="invalid literal/lengths set",rA.mode=30;break}if(rA.distbits=6,rA.distcode=rA.distdyn,rn=h(2,rA.lens,rA.nlen,rA.ndist,rA.distcode,0,rA.work,an={bits:rA.distbits}),rA.distbits=an.bits,rn){wA.msg="invalid distances set",rA.mode=30;break}if(rA.mode=20,6===RA)break A;case 20:rA.mode=21;case 21:if(KA>=6&&DA>=258){wA.next_out=qA,wA.avail_out=DA,wA.next_in=j,wA.avail_in=KA,rA.hold=jA,rA.bits=lt,l(wA,yt),qA=wA.next_out,Yt=wA.output,DA=wA.avail_out,j=wA.next_in,gt=wA.input,KA=wA.avail_in,jA=rA.hold,lt=rA.bits,12===rA.mode&&(rA.back=-1);break}for(rA.back=0;xe=(ae=rA.lencode[jA&(1<>>16&255,Ge=65535&ae,!((ee=ae>>>24)<=lt);){if(0===KA)break A;KA--,jA+=gt[j++]<>ze)])>>>16&255,Ge=65535&ae,!(ze+(ee=ae>>>24)<=lt);){if(0===KA)break A;KA--,jA+=gt[j++]<>>=ze,lt-=ze,rA.back+=ze}if(jA>>>=ee,lt-=ee,rA.back+=ee,rA.length=Ge,0===xe){rA.mode=26;break}if(32&xe){rA.back=-1,rA.mode=12;break}if(64&xe){wA.msg="invalid literal/length code",rA.mode=30;break}rA.extra=15&xe,rA.mode=22;case 22:if(rA.extra){for($e=rA.extra;lt<$e;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=rA.extra,lt-=rA.extra,rA.back+=rA.extra}rA.was=rA.length,rA.mode=23;case 23:for(;xe=(ae=rA.distcode[jA&(1<>>16&255,Ge=65535&ae,!((ee=ae>>>24)<=lt);){if(0===KA)break A;KA--,jA+=gt[j++]<>ze)])>>>16&255,Ge=65535&ae,!(ze+(ee=ae>>>24)<=lt);){if(0===KA)break A;KA--,jA+=gt[j++]<>>=ze,lt-=ze,rA.back+=ze}if(jA>>>=ee,lt-=ee,rA.back+=ee,64&xe){wA.msg="invalid distance code",rA.mode=30;break}rA.offset=Ge,rA.extra=15&xe,rA.mode=24;case 24:if(rA.extra){for($e=rA.extra;lt<$e;){if(0===KA)break A;KA--,jA+=gt[j++]<>>=rA.extra,lt-=rA.extra,rA.back+=rA.extra}if(rA.offset>rA.dmax){wA.msg="invalid distance too far back",rA.mode=30;break}rA.mode=25;case 25:if(0===DA)break A;if(rA.offset>(zt=yt-DA)){if((zt=rA.offset-zt)>rA.whave&&rA.sane){wA.msg="invalid distance too far back",rA.mode=30;break}Zt=zt>rA.wnext?rA.wsize-(zt-=rA.wnext):rA.wnext-zt,zt>rA.length&&(zt=rA.length),be=rA.window}else be=Yt,Zt=qA-rA.offset,zt=rA.length;zt>DA&&(zt=DA),DA-=zt,rA.length-=zt;do{Yt[qA++]=be[Zt++]}while(--zt);0===rA.length&&(rA.mode=21);break;case 26:if(0===DA)break A;Yt[qA++]=rA.length,DA--,rA.mode=21;break;case 27:if(rA.wrap){for(;lt<32;){if(0===KA)break A;KA--,jA|=gt[j++]<=1&&0===QA[L];L--);if(U>L&&(U=L),0===L)return Y[y++]=20971520,Y[y++]=20971520,v.bits=1,0;for(F=1;F0&&(0===g||1!==L))return-1;for(NA[1]=0,P=1;P852||2===g&&BA>592)return 1;for(;;){X=P-sA,d[N]uA?(O=bA[XA+d[N]],$=_[MA+d[N]]):(O=96,$=0),lA=1<>sA)+(cA-=lA)]=X<<24|O<<16|$|0}while(0!==cA);for(lA=1<>=1;if(0!==lA?(pA&=lA-1,pA+=lA):pA=0,N++,0==--QA[P]){if(P===L)break;P=w[Q+d[N]]}if(P>U&&(pA&yA)!==gA){for(0===sA&&(sA=U),FA+=F,q=1<<(eA=P-sA);eA+sA852||2===g&&BA>592)return 1;Y[gA=pA&yA]=U<<24|eA<<16|FA-y|0}}return 0!==pA&&(Y[FA+pA]=4194304|P-sA<<24),v.bits=U,0}},8898:function(T){"use strict";T.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},342:function(T,I,n){"use strict";var c=n(4236);function a(H){for(var k=H.length;--k>=0;)H[k]=0}var g=256,w=286,Q=30,y=15,L=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],U=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],eA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],sA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],BA=new Array(576);a(BA);var pA=new Array(60);a(pA);var lA=new Array(512);a(lA);var cA=new Array(256);a(cA);var gA=new Array(29);a(gA);var _,MA,uA,yA=new Array(Q);function FA(H,k,b,CA,wA){this.static_tree=H,this.extra_bits=k,this.extra_base=b,this.elems=CA,this.max_length=wA,this.has_stree=H&&H.length}function QA(H,k){this.dyn_tree=H,this.max_code=0,this.stat_desc=k}function NA(H){return H<256?lA[H]:lA[256+(H>>>7)]}function bA(H,k){H.pending_buf[H.pending++]=255&k,H.pending_buf[H.pending++]=k>>>8&255}function XA(H,k,b){H.bi_valid>16-b?(H.bi_buf|=k<>16-H.bi_valid,H.bi_valid+=b-16):(H.bi_buf|=k<>>=1,b<<=1}while(--k>0);return b>>>1}function hA(H,k,b){var RA,rA,CA=new Array(16),wA=0;for(RA=1;RA<=y;RA++)CA[RA]=wA=wA+b[RA-1]<<1;for(rA=0;rA<=k;rA++){var gt=H[2*rA+1];0!==gt&&(H[2*rA]=O(CA[gt]++,gt))}}function nA(H){var k;for(k=0;k8?bA(H,H.bi_buf):H.bi_valid>0&&(H.pending_buf[H.pending++]=H.bi_buf),H.bi_buf=0,H.bi_valid=0}function et(H,k,b,CA){var wA=2*k,RA=2*b;return H[wA]>1;rA>=1;rA--)st(H,b,rA);j=RA;do{rA=H.heap[1],H.heap[1]=H.heap[H.heap_len--],st(H,b,1),gt=H.heap[1],H.heap[--H.heap_max]=rA,H.heap[--H.heap_max]=gt,b[2*j]=b[2*rA]+b[2*gt],H.depth[j]=(H.depth[rA]>=H.depth[gt]?H.depth[rA]:H.depth[gt])+1,b[2*rA+1]=b[2*gt+1]=j,H.heap[1]=j++,st(H,b,1)}while(H.heap_len>=2);H.heap[--H.heap_max]=H.heap[1],function W(H,k){var j,qA,KA,DA,jA,lt,b=k.dyn_tree,CA=k.max_code,wA=k.stat_desc.static_tree,RA=k.stat_desc.has_stree,rA=k.stat_desc.extra_bits,gt=k.stat_desc.extra_base,Yt=k.stat_desc.max_length,bt=0;for(DA=0;DA<=y;DA++)H.bl_count[DA]=0;for(b[2*H.heap[H.heap_max]+1]=0,j=H.heap_max+1;j<573;j++)(DA=b[2*b[2*(qA=H.heap[j])+1]+1]+1)>Yt&&(DA=Yt,bt++),b[2*qA+1]=DA,!(qA>CA)&&(H.bl_count[DA]++,jA=0,qA>=gt&&(jA=rA[qA-gt]),H.opt_len+=(lt=b[2*qA])*(DA+jA),RA&&(H.static_len+=lt*(wA[2*qA+1]+jA)));if(0!==bt){do{for(DA=Yt-1;0===H.bl_count[DA];)DA--;H.bl_count[DA]--,H.bl_count[DA+1]+=2,H.bl_count[Yt]--,bt-=2}while(bt>0);for(DA=Yt;0!==DA;DA--)for(qA=H.bl_count[DA];0!==qA;)!((KA=H.heap[--j])>CA)&&(b[2*KA+1]!==DA&&(H.opt_len+=(DA-b[2*KA+1])*b[2*KA],b[2*KA+1]=DA),qA--)}}(H,k),hA(b,Yt,H.bl_count)}function vt(H,k,b){var CA,RA,wA=-1,rA=k[1],gt=0,Yt=7,j=4;for(0===rA&&(Yt=138,j=3),k[2*(b+1)+1]=65535,CA=0;CA<=b;CA++)RA=rA,rA=k[2*(CA+1)+1],!(++gt>=7;CA0?(2===H.strm.data_type&&(H.strm.data_type=function WA(H){var b,k=4093624447;for(b=0;b<=31;b++,k>>>=1)if(1&k&&0!==H.dyn_ltree[2*b])return 0;if(0!==H.dyn_ltree[18]||0!==H.dyn_ltree[20]||0!==H.dyn_ltree[26])return 1;for(b=32;b=3&&0===H.bl_tree[2*sA[k]+1];k--);return H.opt_len+=3*(k+1)+5+5+4,k}(H),(RA=H.static_len+3+7>>>3)<=(wA=H.opt_len+3+7>>>3)&&(wA=RA)):wA=RA=b+5,b+4<=wA&&-1!==k?Mt(H,k,b,CA):4===H.strategy||RA===wA?(XA(H,2+(CA?1:0),3),TA(H,BA,pA)):(XA(H,4+(CA?1:0),3),function JA(H,k,b,CA){var wA;for(XA(H,k-257,5),XA(H,b-1,5),XA(H,CA-4,4),wA=0;wA>>8&255,H.pending_buf[H.d_buf+2*H.last_lit+1]=255&k,H.pending_buf[H.l_buf+H.last_lit]=255&b,H.last_lit++,0===k?H.dyn_ltree[2*b]++:(H.matches++,k--,H.dyn_ltree[2*(cA[b]+g+1)]++,H.dyn_dtree[2*NA(k)]++),H.last_lit===H.lit_bufsize-1},I._tr_align=function Et(H){XA(H,2,3),X(H,256,BA),function $(H){16===H.bi_valid?(bA(H,H.bi_buf),H.bi_buf=0,H.bi_valid=0):H.bi_valid>=8&&(H.pending_buf[H.pending++]=255&H.bi_buf,H.bi_buf>>=8,H.bi_valid-=8)}(H)}},2292:function(T){"use strict";T.exports=function I(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},4155:function(T){var n,c,I=T.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function l(w){if(n===setTimeout)return setTimeout(w,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(w,0);try{return n(w,0)}catch(Q){try{return n.call(null,w,0)}catch(p){return n.call(this,w,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(w){n=i}try{c="function"==typeof clearTimeout?clearTimeout:o}catch(w){c=o}}();var E,a=[],B=!1,u=-1;function C(){!B||!E||(B=!1,E.length?a=E.concat(a):u=-1,a.length&&e())}function e(){if(!B){var w=l(C);B=!0;for(var Q=a.length;Q;){for(E=a,a=[];++u1)for(var p=1;p=0;--yA){var FA=this.tryEntries[yA],_=FA.completion;if("root"===FA.tryLoc)return gA("end");if(FA.tryLoc<=this.prev){var MA=i.call(FA,"catchLoc"),uA=i.call(FA,"finallyLoc");if(MA&&uA){if(this.prev=0;--gA){var yA=this.tryEntries[gA];if(yA.tryLoc<=this.prev&&i.call(yA,"finallyLoc")&&this.prev=0;--cA){var gA=this.tryEntries[cA];if(gA.finallyLoc===lA)return this.complete(gA.completion,gA.afterLoc),sA(gA),Q}},catch:function(lA){for(var cA=this.tryEntries.length-1;cA>=0;--cA){var gA=this.tryEntries[cA];if(gA.tryLoc===lA){var yA=gA.completion;if("throw"===yA.type){var FA=yA.arg;sA(gA)}return FA}}throw new Error("illegal catch attempt")},delegateYield:function(lA,cA,gA){return this.delegate={iterator:BA(lA),resultName:cA,nextLoc:gA},"next"===this.method&&(this.arg=o),Q}},n}(T.exports);try{regeneratorRuntime=I}catch(n){"object"==typeof globalThis?globalThis.regeneratorRuntime=I:Function("r","regeneratorRuntime = r")(I)}},3697:function(T){"use strict";var I=Object,n=TypeError;T.exports=function(){if(null!=this&&this!==I(this))throw new n("RegExp.prototype.flags getter called on non-object");var i="";return this.hasIndices&&(i+="d"),this.global&&(i+="g"),this.ignoreCase&&(i+="i"),this.multiline&&(i+="m"),this.dotAll&&(i+="s"),this.unicode&&(i+="u"),this.sticky&&(i+="y"),i}},2847:function(T,I,n){"use strict";var c=n(4289),i=n(5559),o=n(3697),l=n(1721),h=n(2753),a=i(l());c(a,{getPolyfill:l,implementation:o,shim:h}),T.exports=a},1721:function(T,I,n){"use strict";var c=n(3697),i=n(4289).supportsDescriptors,o=Object.getOwnPropertyDescriptor;T.exports=function(){if(i&&"gim"===/a/gim.flags){var h=o(RegExp.prototype,"flags");if(h&&"function"==typeof h.get&&"boolean"==typeof/a/.dotAll)return h.get}return c}},2753:function(T,I,n){"use strict";var c=n(4289).supportsDescriptors,i=n(1721),o=Object.getOwnPropertyDescriptor,l=Object.defineProperty,h=TypeError,a=Object.getPrototypeOf,B=/a/;T.exports=function(){if(!c||!a)throw new h("RegExp.prototype.flags requires a true ES5 environment that supports property descriptors");var u=i(),C=a(B),e=o(C,"flags");return(!e||e.get!==u)&&l(C,"flags",{configurable:!0,enumerable:!1,get:u}),u}},6099:function(T,I,n){var c=n(8823).Buffer;!function(i){i.parser=function(X,O){return new l(X,O)},i.SAXParser=l,i.SAXStream=e,i.createStream=function C(X,O){return new e(X,O)},i.MAX_BUFFER_LENGTH=65536;var E,o=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function l(X,O){if(!(this instanceof l))return new l(X,O);var $=this;(function a(X){for(var O=0,$=o.length;O<$;O++)X[o[O]]=""})($),$.q=$.c="",$.bufferCheckPosition=i.MAX_BUFFER_LENGTH,$.opt=O||{},$.opt.lowercase=$.opt.lowercase||$.opt.lowercasetags,$.looseCase=$.opt.lowercase?"toLowerCase":"toUpperCase",$.tags=[],$.closed=$.closedRoot=$.sawRoot=!1,$.tag=$.error=null,$.strict=!!X,$.noscript=!(!X&&!$.opt.noscript),$.state=U.BEGIN,$.strictEntities=$.opt.strictEntities,$.ENTITIES=Object.create($.strictEntities?i.XML_ENTITIES:i.ENTITIES),$.attribList=[],$.opt.xmlns&&($.ns=Object.create(p)),$.trackPosition=!1!==$.opt.position,$.trackPosition&&($.position=$.line=$.column=0),sA($,"onready")}i.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(X){function O(){}return O.prototype=X,new O}),Object.keys||(Object.keys=function(X){var O=[];for(var $ in X)X.hasOwnProperty($)&&O.push($);return O}),l.prototype={end:function(){cA(this)},write:function XA(X){var O=this;if(this.error)throw this.error;if(O.closed)return lA(O,"Cannot write after close. Assign an onready handler.");if(null===X)return cA(O);"object"==typeof X&&(X=X.toString());for(var $=0,W="";W=bA(X,$++),O.c=W,W;)switch(O.trackPosition&&(O.position++,"\n"===W?(O.line++,O.column=0):O.column++),O.state){case U.BEGIN:if(O.state=U.BEGIN_WHITESPACE,"\ufeff"===W)continue;NA(O,W);continue;case U.BEGIN_WHITESPACE:NA(O,W);continue;case U.TEXT:if(O.sawRoot&&!O.closedRoot){for(var hA=$-1;W&&"<"!==W&&"&"!==W;)(W=bA(X,$++))&&O.trackPosition&&(O.position++,"\n"===W?(O.line++,O.column=0):O.column++);O.textNode+=X.substring(hA,$-1)}"<"!==W||O.sawRoot&&O.closedRoot&&!O.strict?(!m(W)&&(!O.sawRoot||O.closedRoot)&&gA(O,"Text data outside of root node."),"&"===W?O.state=U.TEXT_ENTITY:O.textNode+=W):(O.state=U.OPEN_WAKA,O.startTagPosition=O.position);continue;case U.SCRIPT:"<"===W?O.state=U.SCRIPT_ENDING:O.script+=W;continue;case U.SCRIPT_ENDING:"/"===W?O.state=U.CLOSE_TAG:(O.script+="<"+W,O.state=U.SCRIPT);continue;case U.OPEN_WAKA:"!"===W?(O.state=U.SGML_DECL,O.sgmlDecl=""):m(W)||(F(Y,W)?(O.state=U.OPEN_TAG,O.tagName=W):"/"===W?(O.state=U.CLOSE_TAG,O.tagName=""):"?"===W?(O.state=U.PROC_INST,O.procInstName=O.procInstBody=""):(gA(O,"Unencoded <"),O.startTagPosition+1"===W?(q(O,"onsgmldeclaration",O.sgmlDecl),O.sgmlDecl="",O.state=U.TEXT):(P(W)&&(O.state=U.SGML_DECL_QUOTED),O.sgmlDecl+=W);continue;case U.SGML_DECL_QUOTED:W===O.q&&(O.state=U.SGML_DECL,O.q=""),O.sgmlDecl+=W;continue;case U.DOCTYPE:">"===W?(O.state=U.TEXT,q(O,"ondoctype",O.doctype),O.doctype=!0):(O.doctype+=W,"["===W?O.state=U.DOCTYPE_DTD:P(W)&&(O.state=U.DOCTYPE_QUOTED,O.q=W));continue;case U.DOCTYPE_QUOTED:O.doctype+=W,W===O.q&&(O.q="",O.state=U.DOCTYPE);continue;case U.DOCTYPE_DTD:O.doctype+=W,"]"===W?O.state=U.DOCTYPE:P(W)&&(O.state=U.DOCTYPE_DTD_QUOTED,O.q=W);continue;case U.DOCTYPE_DTD_QUOTED:O.doctype+=W,W===O.q&&(O.state=U.DOCTYPE_DTD,O.q="");continue;case U.COMMENT:"-"===W?O.state=U.COMMENT_ENDING:O.comment+=W;continue;case U.COMMENT_ENDING:"-"===W?(O.state=U.COMMENT_ENDED,O.comment=pA(O.opt,O.comment),O.comment&&q(O,"oncomment",O.comment),O.comment=""):(O.comment+="-"+W,O.state=U.COMMENT);continue;case U.COMMENT_ENDED:">"!==W?(gA(O,"Malformed comment"),O.comment+="--"+W,O.state=U.COMMENT):O.state=U.TEXT;continue;case U.CDATA:"]"===W?O.state=U.CDATA_ENDING:O.cdata+=W;continue;case U.CDATA_ENDING:"]"===W?O.state=U.CDATA_ENDING_2:(O.cdata+="]"+W,O.state=U.CDATA);continue;case U.CDATA_ENDING_2:">"===W?(O.cdata&&q(O,"oncdata",O.cdata),q(O,"onclosecdata"),O.cdata="",O.state=U.TEXT):"]"===W?O.cdata+="]":(O.cdata+="]]"+W,O.state=U.CDATA);continue;case U.PROC_INST:"?"===W?O.state=U.PROC_INST_ENDING:m(W)?O.state=U.PROC_INST_BODY:O.procInstName+=W;continue;case U.PROC_INST_BODY:if(!O.procInstBody&&m(W))continue;"?"===W?O.state=U.PROC_INST_ENDING:O.procInstBody+=W;continue;case U.PROC_INST_ENDING:">"===W?(q(O,"onprocessinginstruction",{name:O.procInstName,body:O.procInstBody}),O.procInstName=O.procInstBody="",O.state=U.TEXT):(O.procInstBody+="?"+W,O.state=U.PROC_INST_BODY);continue;case U.OPEN_TAG:F(y,W)?O.tagName+=W:(yA(O),">"===W?MA(O):"/"===W?O.state=U.OPEN_TAG_SLASH:(m(W)||gA(O,"Invalid character in tag name"),O.state=U.ATTRIB));continue;case U.OPEN_TAG_SLASH:">"===W?(MA(O,!0),uA(O)):(gA(O,"Forward-slash in opening tag not followed by >"),O.state=U.ATTRIB);continue;case U.ATTRIB:if(m(W))continue;">"===W?MA(O):"/"===W?O.state=U.OPEN_TAG_SLASH:F(Y,W)?(O.attribName=W,O.attribValue="",O.state=U.ATTRIB_NAME):gA(O,"Invalid attribute name");continue;case U.ATTRIB_NAME:"="===W?O.state=U.ATTRIB_VALUE:">"===W?(gA(O,"Attribute without value"),O.attribValue=O.attribName,_(O),MA(O)):m(W)?O.state=U.ATTRIB_NAME_SAW_WHITE:F(y,W)?O.attribName+=W:gA(O,"Invalid attribute name");continue;case U.ATTRIB_NAME_SAW_WHITE:if("="===W)O.state=U.ATTRIB_VALUE;else{if(m(W))continue;gA(O,"Attribute without value"),O.tag.attributes[O.attribName]="",O.attribValue="",q(O,"onattribute",{name:O.attribName,value:""}),O.attribName="",">"===W?MA(O):F(Y,W)?(O.attribName=W,O.state=U.ATTRIB_NAME):(gA(O,"Invalid attribute name"),O.state=U.ATTRIB)}continue;case U.ATTRIB_VALUE:if(m(W))continue;P(W)?(O.q=W,O.state=U.ATTRIB_VALUE_QUOTED):(gA(O,"Unquoted attribute value"),O.state=U.ATTRIB_VALUE_UNQUOTED,O.attribValue=W);continue;case U.ATTRIB_VALUE_QUOTED:if(W!==O.q){"&"===W?O.state=U.ATTRIB_VALUE_ENTITY_Q:O.attribValue+=W;continue}_(O),O.q="",O.state=U.ATTRIB_VALUE_CLOSED;continue;case U.ATTRIB_VALUE_CLOSED:m(W)?O.state=U.ATTRIB:">"===W?MA(O):"/"===W?O.state=U.OPEN_TAG_SLASH:F(Y,W)?(gA(O,"No whitespace between attributes"),O.attribName=W,O.attribValue="",O.state=U.ATTRIB_NAME):gA(O,"Invalid attribute name");continue;case U.ATTRIB_VALUE_UNQUOTED:if(!N(W)){"&"===W?O.state=U.ATTRIB_VALUE_ENTITY_U:O.attribValue+=W;continue}_(O),">"===W?MA(O):O.state=U.ATTRIB;continue;case U.CLOSE_TAG:if(O.tagName)">"===W?uA(O):F(y,W)?O.tagName+=W:O.script?(O.script+=""===W?uA(O):gA(O,"Invalid characters in closing tag");continue;case U.TEXT_ENTITY:case U.ATTRIB_VALUE_ENTITY_Q:case U.ATTRIB_VALUE_ENTITY_U:var nA,EA;switch(O.state){case U.TEXT_ENTITY:nA=U.TEXT,EA="textNode";break;case U.ATTRIB_VALUE_ENTITY_Q:nA=U.ATTRIB_VALUE_QUOTED,EA="attribValue";break;case U.ATTRIB_VALUE_ENTITY_U:nA=U.ATTRIB_VALUE_UNQUOTED,EA="attribValue"}";"===W?(O[EA]+=QA(O),O.entity="",O.state=nA):F(O.entity.length?v:d,W)?O.entity+=W:(gA(O,"Invalid character in entity name"),O[EA]+="&"+O.entity+W,O.entity="",O.state=nA);continue;default:throw new Error(O,"Unknown state: "+O.state)}return O.position>=O.bufferCheckPosition&&function h(X){for(var O=Math.max(i.MAX_BUFFER_LENGTH,10),$=0,W=0,hA=o.length;WO)switch(o[W]){case"textNode":BA(X);break;case"cdata":q(X,"oncdata",X.cdata),X.cdata="";break;case"script":q(X,"onscript",X.script),X.script="";break;default:lA(X,"Max buffer length exceeded: "+o[W])}$=Math.max($,mA)}X.bufferCheckPosition=i.MAX_BUFFER_LENGTH-$+X.position}(O),O},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function B(X){BA(X),""!==X.cdata&&(q(X,"oncdata",X.cdata),X.cdata=""),""!==X.script&&(q(X,"onscript",X.script),X.script="")}(this)}};try{E=n(2830).Stream}catch(X){E=function(){}}var u=i.EVENTS.filter(function(X){return"error"!==X&&"end"!==X});function e(X,O){if(!(this instanceof e))return new e(X,O);E.apply(this),this._parser=new l(X,O),this.writable=!0,this.readable=!0;var $=this;this._parser.onend=function(){$.emit("end")},this._parser.onerror=function(W){$.emit("error",W),$._parser.error=null},this._decoder=null,u.forEach(function(W){Object.defineProperty($,"on"+W,{get:function(){return $._parser["on"+W]},set:function(hA){if(!hA)return $.removeAllListeners(W),$._parser["on"+W]=hA,hA;$.on(W,hA)},enumerable:!0,configurable:!1})})}(e.prototype=Object.create(E.prototype,{constructor:{value:e}})).write=function(X){if("function"==typeof c&&"function"==typeof c.isBuffer&&c.isBuffer(X)){if(!this._decoder){var O=n(2553).s;this._decoder=new O("utf8")}X=this._decoder.write(X)}return this._parser.write(X.toString()),this.emit("data",X),!0},e.prototype.end=function(X){return X&&X.length&&this.write(X),this._parser.end(),!0},e.prototype.on=function(X,O){var $=this;return!$._parser["on"+X]&&-1!==u.indexOf(X)&&($._parser["on"+X]=function(){var W=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);W.splice(0,0,X),$.emit.apply($,W)}),E.prototype.on.call($,X,O)};var w="http://www.w3.org/XML/1998/namespace",Q="http://www.w3.org/2000/xmlns/",p={xml:w,xmlns:Q},Y=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,y=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,d=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,v=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function m(X){return" "===X||"\n"===X||"\r"===X||"\t"===X}function P(X){return'"'===X||"'"===X}function N(X){return">"===X||m(X)}function F(X,O){return X.test(O)}function L(X,O){return!F(X,O)}var X,O,$,U=0;for(var eA in i.STATE={BEGIN:U++,BEGIN_WHITESPACE:U++,TEXT:U++,TEXT_ENTITY:U++,OPEN_WAKA:U++,SGML_DECL:U++,SGML_DECL_QUOTED:U++,DOCTYPE:U++,DOCTYPE_QUOTED:U++,DOCTYPE_DTD:U++,DOCTYPE_DTD_QUOTED:U++,COMMENT_STARTING:U++,COMMENT:U++,COMMENT_ENDING:U++,COMMENT_ENDED:U++,CDATA:U++,CDATA_ENDING:U++,CDATA_ENDING_2:U++,PROC_INST:U++,PROC_INST_BODY:U++,PROC_INST_ENDING:U++,OPEN_TAG:U++,OPEN_TAG_SLASH:U++,ATTRIB:U++,ATTRIB_NAME:U++,ATTRIB_NAME_SAW_WHITE:U++,ATTRIB_VALUE:U++,ATTRIB_VALUE_QUOTED:U++,ATTRIB_VALUE_CLOSED:U++,ATTRIB_VALUE_UNQUOTED:U++,ATTRIB_VALUE_ENTITY_Q:U++,ATTRIB_VALUE_ENTITY_U:U++,CLOSE_TAG:U++,CLOSE_TAG_SAW_WHITE:U++,SCRIPT:U++,SCRIPT_ENDING:U++},i.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},i.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(i.ENTITIES).forEach(function(X){var O=i.ENTITIES[X],$="number"==typeof O?String.fromCharCode(O):O;i.ENTITIES[X]=$}),i.STATE)i.STATE[i.STATE[eA]]=eA;function sA(X,O,$){X[O]&&X[O]($)}function q(X,O,$){X.textNode&&BA(X),sA(X,O,$)}function BA(X){X.textNode=pA(X.opt,X.textNode),X.textNode&&sA(X,"ontext",X.textNode),X.textNode=""}function pA(X,O){return X.trim&&(O=O.trim()),X.normalize&&(O=O.replace(/\s+/g," ")),O}function lA(X,O){return BA(X),X.trackPosition&&(O+="\nLine: "+X.line+"\nColumn: "+X.column+"\nChar: "+X.c),O=new Error(O),X.error=O,sA(X,"onerror",O),X}function cA(X){return X.sawRoot&&!X.closedRoot&&gA(X,"Unclosed root tag"),X.state!==U.BEGIN&&X.state!==U.BEGIN_WHITESPACE&&X.state!==U.TEXT&&lA(X,"Unexpected end"),BA(X),X.c="",X.closed=!0,sA(X,"onend"),l.call(X,X.strict,X.opt),X}function gA(X,O){if("object"!=typeof X||!(X instanceof l))throw new Error("bad call to strictFail");X.strict&&lA(X,O)}function yA(X){X.strict||(X.tagName=X.tagName[X.looseCase]());var O=X.tags[X.tags.length-1]||X,$=X.tag={name:X.tagName,attributes:{}};X.opt.xmlns&&($.ns=O.ns),X.attribList.length=0,q(X,"onopentagstart",$)}function FA(X,O){var W=X.indexOf(":")<0?["",X]:X.split(":"),hA=W[0],mA=W[1];return O&&"xmlns"===X&&(hA="xmlns",mA=""),{prefix:hA,local:mA}}function _(X){if(X.strict||(X.attribName=X.attribName[X.looseCase]()),-1!==X.attribList.indexOf(X.attribName)||X.tag.attributes.hasOwnProperty(X.attribName))X.attribName=X.attribValue="";else{if(X.opt.xmlns){var O=FA(X.attribName,!0),W=O.local;if("xmlns"===O.prefix)if("xml"===W&&X.attribValue!==w)gA(X,"xml: prefix must be bound to "+w+"\nActual: "+X.attribValue);else if("xmlns"===W&&X.attribValue!==Q)gA(X,"xmlns: prefix must be bound to "+Q+"\nActual: "+X.attribValue);else{var hA=X.tag,mA=X.tags[X.tags.length-1]||X;hA.ns===mA.ns&&(hA.ns=Object.create(mA.ns)),hA.ns[W]=X.attribValue}X.attribList.push([X.attribName,X.attribValue])}else X.tag.attributes[X.attribName]=X.attribValue,q(X,"onattribute",{name:X.attribName,value:X.attribValue});X.attribName=X.attribValue=""}}function MA(X,O){if(X.opt.xmlns){var $=X.tag,W=FA(X.tagName);$.prefix=W.prefix,$.local=W.local,$.uri=$.ns[W.prefix]||"",$.prefix&&!$.uri&&(gA(X,"Unbound namespace prefix: "+JSON.stringify(X.tagName)),$.uri=W.prefix),$.ns&&(X.tags[X.tags.length-1]||X).ns!==$.ns&&Object.keys($.ns).forEach(function(ht){q(X,"onopennamespace",{prefix:ht,uri:$.ns[ht]})});for(var mA=0,nA=X.attribList.length;mA",X.tagName="",void(X.state=U.SCRIPT);q(X,"onscript",X.script),X.script=""}var O=X.tags.length,$=X.tagName;X.strict||($=$[X.looseCase]());for(var W=$;O--&&X.tags[O].name!==W;)gA(X,"Unexpected close tag");if(O<0)return gA(X,"Unmatched closing tag: "+X.tagName),X.textNode+="",void(X.state=U.TEXT);X.tagName=$;for(var mA=X.tags.length;mA-- >O;){var nA=X.tag=X.tags.pop();X.tagName=X.tag.name,q(X,"onclosetag",X.tagName);var EA={};for(var GA in nA.ns)EA[GA]=nA.ns[GA];X.opt.xmlns&&nA.ns!==(X.tags[X.tags.length-1]||X).ns&&Object.keys(nA.ns).forEach(function(st){q(X,"onclosenamespace",{prefix:st,uri:nA.ns[st]})})}0===O&&(X.closedRoot=!0),X.tagName=X.attribValue=X.attribName="",X.attribList.length=0,X.state=U.TEXT}function QA(X){var W,O=X.entity,$=O.toLowerCase(),hA="";return X.ENTITIES[O]?X.ENTITIES[O]:X.ENTITIES[$]?X.ENTITIES[$]:("#"===(O=$).charAt(0)&&("x"===O.charAt(1)?(O=O.slice(2),hA=(W=parseInt(O,16)).toString(16)):(O=O.slice(1),hA=(W=parseInt(O,10)).toString(10))),O=O.replace(/^0+/,""),isNaN(W)||hA.toLowerCase()!==O?(gA(X,"Invalid character entity"),"&"+X.entity+";"):String.fromCodePoint(W))}function NA(X,O){"<"===O?(X.state=U.OPEN_WAKA,X.startTagPosition=X.position):m(O)||(gA(X,"Non-whitespace before first tag."),X.textNode=O,X.state=U.TEXT)}function bA(X,O){var $="";return O1114111||O(st)!==st)throw RangeError("Invalid code point: "+st);st<=65535?hA.push(st):hA.push(55296+((st-=65536)>>10),st%1024+56320),(EA+1===GA||hA.length>W)&&(et+=X.apply(null,hA),hA.length=0)}return et},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:$,configurable:!0,writable:!0}):String.fromCodePoint=$)}(I)},2830:function(T,I,n){T.exports=o;var c=n(7187).EventEmitter;function o(){c.call(this)}n(5717)(o,c),o.Readable=n(6577),o.Writable=n(323),o.Duplex=n(8656),o.Transform=n(4473),o.PassThrough=n(2366),o.finished=n(1086),o.pipeline=n(6472),o.Stream=o,o.prototype.pipe=function(l,h){var a=this;function B(w){l.writable&&!1===l.write(w)&&a.pause&&a.pause()}function E(){a.readable&&a.resume&&a.resume()}a.on("data",B),l.on("drain",E),!l._isStdio&&(!h||!1!==h.end)&&(a.on("end",C),a.on("close",e));var u=!1;function C(){u||(u=!0,l.end())}function e(){u||(u=!0,"function"==typeof l.destroy&&l.destroy())}function f(w){if(g(),0===c.listenerCount(this,"error"))throw w}function g(){a.removeListener("data",B),l.removeListener("drain",E),a.removeListener("end",C),a.removeListener("close",e),a.removeListener("error",f),l.removeListener("error",f),a.removeListener("end",g),a.removeListener("close",g),l.removeListener("close",g)}return a.on("error",f),l.on("error",f),a.on("end",g),a.on("close",g),l.on("close",g),l.emit("pipe",a),l}},8106:function(T){"use strict";var n={};function c(a,B,E){E||(E=Error);var C=function(e){function f(g,w,Q){return e.call(this,function u(e,f,g){return"string"==typeof B?B:B(e,f,g)}(g,w,Q))||this}return function I(a,B){a.prototype=Object.create(B.prototype),a.prototype.constructor=a,a.__proto__=B}(f,e),f}(E);C.prototype.name=E.name,C.prototype.code=a,n[a]=C}function i(a,B){if(Array.isArray(a)){var E=a.length;return a=a.map(function(u){return String(u)}),E>2?"one of ".concat(B," ").concat(a.slice(0,E-1).join(", "),", or ")+a[E-1]:2===E?"one of ".concat(B," ").concat(a[0]," or ").concat(a[1]):"of ".concat(B," ").concat(a[0])}return"of ".concat(B," ").concat(String(a))}c("ERR_INVALID_OPT_VALUE",function(a,B){return'The value "'+B+'" is invalid for option "'+a+'"'},TypeError),c("ERR_INVALID_ARG_TYPE",function(a,B,E){var u,C;if("string"==typeof B&&function o(a,B,E){return a.substr(!E||E<0?0:+E,B.length)===B}(B,"not ")?(u="must not be",B=B.replace(/^not /,"")):u="must be",function l(a,B,E){return(void 0===E||E>a.length)&&(E=a.length),a.substring(E-B.length,E)===B}(a," argument"))C="The ".concat(a," ").concat(u," ").concat(i(B,"type"));else{var e=function h(a,B,E){return"number"!=typeof E&&(E=0),!(E+B.length>a.length)&&-1!==a.indexOf(B,E)}(a,".")?"property":"argument";C='The "'.concat(a,'" ').concat(e," ").concat(u," ").concat(i(B,"type"))}return C+". Received type ".concat(typeof E)},TypeError),c("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),c("ERR_METHOD_NOT_IMPLEMENTED",function(a){return"The "+a+" method is not implemented"}),c("ERR_STREAM_PREMATURE_CLOSE","Premature close"),c("ERR_STREAM_DESTROYED",function(a){return"Cannot call "+a+" after a stream was destroyed"}),c("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),c("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),c("ERR_STREAM_WRITE_AFTER_END","write after end"),c("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),c("ERR_UNKNOWN_ENCODING",function(a){return"Unknown encoding: "+a},TypeError),c("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),T.exports.q=n},8656:function(T,I,n){"use strict";var c=n(4155),i=Object.keys||function(e){var f=[];for(var g in e)f.push(g);return f};T.exports=E;var o=n(6577),l=n(323);n(5717)(E,o);for(var h=i(l.prototype),a=0;a0)if("string"!=typeof EA&&!TA.objectMode&&Object.getPrototypeOf(EA)!==a.prototype&&(EA=function E(nA){return a.from(nA)}(EA)),et)TA.endEmitted?F(nA,new v):BA(nA,TA,EA,!0);else if(TA.ended)F(nA,new y);else{if(TA.destroyed)return!1;TA.reading=!1,TA.decoder&&!GA?(EA=TA.decoder.write(EA),TA.objectMode||0!==EA.length?BA(nA,TA,EA,!1):MA(nA,TA)):BA(nA,TA,EA,!1)}else et||(TA.reading=!1,MA(nA,TA));return!TA.ended&&(TA.lengthEA.highWaterMark&&(EA.highWaterMark=function cA(nA){return nA>=lA?nA=lA:(nA--,nA|=nA>>>1,nA|=nA>>>2,nA|=nA>>>4,nA|=nA>>>8,nA|=nA>>>16,nA++),nA}(nA)),nA<=EA.length?nA:EA.ended?EA.length:(EA.needReadable=!0,0))}function FA(nA){var EA=nA._readableState;e("emitReadable",EA.needReadable,EA.emittedReadable),EA.needReadable=!1,EA.emittedReadable||(e("emitReadable",EA.flowing),EA.emittedReadable=!0,c.nextTick(_,nA))}function _(nA){var EA=nA._readableState;e("emitReadable_",EA.destroyed,EA.length,EA.ended),!EA.destroyed&&(EA.length||EA.ended)&&(nA.emit("readable"),EA.emittedReadable=!1),EA.needReadable=!EA.flowing&&!EA.ended&&EA.length<=EA.highWaterMark,O(nA)}function MA(nA,EA){EA.readingMore||(EA.readingMore=!0,c.nextTick(uA,nA,EA))}function uA(nA,EA){for(;!EA.reading&&!EA.ended&&(EA.length0,EA.resumeScheduled&&!EA.paused?EA.flowing=!0:nA.listenerCount("data")>0&&nA.resume()}function bA(nA){e("readable nexttick read 0"),nA.read(0)}function X(nA,EA){e("resume",EA.reading),EA.reading||nA.read(0),EA.resumeScheduled=!1,nA.emit("resume"),O(nA),EA.flowing&&!EA.reading&&nA.read(0)}function O(nA){var EA=nA._readableState;for(e("flow",EA.flowing);EA.flowing&&null!==nA.read(););}function $(nA,EA){return 0===EA.length?null:(EA.objectMode?GA=EA.buffer.shift():!nA||nA>=EA.length?(GA=EA.decoder?EA.buffer.join(""):1===EA.buffer.length?EA.buffer.first():EA.buffer.concat(EA.length),EA.buffer.clear()):GA=EA.buffer.consume(nA,EA.decoder),GA);var GA}function W(nA){var EA=nA._readableState;e("endReadable",EA.endEmitted),EA.endEmitted||(EA.ended=!0,c.nextTick(hA,EA,nA))}function hA(nA,EA){if(e("endReadableNT",nA.endEmitted,nA.length),!nA.endEmitted&&0===nA.length&&(nA.endEmitted=!0,EA.readable=!1,EA.emit("end"),nA.autoDestroy)){var GA=EA._writableState;(!GA||GA.autoDestroy&&GA.finished)&&EA.destroy()}}function mA(nA,EA){for(var GA=0,et=nA.length;GA=EA.highWaterMark:EA.length>0)||EA.ended))return e("read: emitReadable",EA.length,EA.ended),0===EA.length&&EA.ended?W(this):FA(this),null;if(0===(nA=gA(nA,EA))&&EA.ended)return 0===EA.length&&W(this),null;var st,et=EA.needReadable;return e("need readable",et),(0===EA.length||EA.length-nA0?$(nA,EA):null)?(EA.needReadable=EA.length<=EA.highWaterMark,nA=0):(EA.length-=nA,EA.awaitDrain=0),0===EA.length&&(EA.ended||(EA.needReadable=!0),GA!==nA&&EA.ended&&W(this)),null!==st&&this.emit("data",st),st},sA.prototype._read=function(nA){F(this,new d("_read()"))},sA.prototype.pipe=function(nA,EA){var GA=this,et=this._readableState;switch(et.pipesCount){case 0:et.pipes=nA;break;case 1:et.pipes=[et.pipes,nA];break;default:et.pipes.push(nA)}et.pipesCount+=1,e("pipe count=%d opts=%j",et.pipesCount,EA);var TA=EA&&!1===EA.end||nA===c.stdout||nA===c.stderr?Et:vt;function it(Tt,OA){e("onunpipe"),Tt===GA&&OA&&!1===OA.hasUnpiped&&(OA.hasUnpiped=!0,function JA(){e("cleanup"),nA.removeListener("close",xA),nA.removeListener("finish",Mt),nA.removeListener("drain",It),nA.removeListener("error",rt),nA.removeListener("unpipe",it),GA.removeListener("end",vt),GA.removeListener("end",Et),GA.removeListener("data",WA),ht=!0,et.awaitDrain&&(!nA._writableState||nA._writableState.needDrain)&&It()}())}function vt(){e("onend"),nA.end()}et.endEmitted?c.nextTick(TA):GA.once("end",TA),nA.on("unpipe",it);var It=function QA(nA){return function(){var GA=nA._readableState;e("pipeOnDrain",GA.awaitDrain),GA.awaitDrain&&GA.awaitDrain--,0===GA.awaitDrain&&l(nA,"data")&&(GA.flowing=!0,O(nA))}}(GA);nA.on("drain",It);var ht=!1;function WA(Tt){e("ondata");var OA=nA.write(Tt);e("dest.write",OA),!1===OA&&((1===et.pipesCount&&et.pipes===nA||et.pipesCount>1&&-1!==mA(et.pipes,nA))&&!ht&&(e("false write response, pause",et.awaitDrain),et.awaitDrain++),GA.pause())}function rt(Tt){e("onerror",Tt),Et(),nA.removeListener("error",rt),0===l(nA,"error")&&F(nA,Tt)}function xA(){nA.removeListener("finish",Mt),Et()}function Mt(){e("onfinish"),nA.removeListener("close",xA),Et()}function Et(){e("unpipe"),GA.unpipe(nA)}return GA.on("data",WA),function U(nA,EA,GA){if("function"==typeof nA.prependListener)return nA.prependListener(EA,GA);nA._events&&nA._events[EA]?Array.isArray(nA._events[EA])?nA._events[EA].unshift(GA):nA._events[EA]=[GA,nA._events[EA]]:nA.on(EA,GA)}(nA,"error",rt),nA.once("close",xA),nA.once("finish",Mt),nA.emit("pipe",GA),et.flowing||(e("pipe resume"),GA.resume()),nA},sA.prototype.unpipe=function(nA){var EA=this._readableState,GA={hasUnpiped:!1};if(0===EA.pipesCount)return this;if(1===EA.pipesCount)return nA&&nA!==EA.pipes||(nA||(nA=EA.pipes),EA.pipes=null,EA.pipesCount=0,EA.flowing=!1,nA&&nA.emit("unpipe",this,GA)),this;if(!nA){var et=EA.pipes,st=EA.pipesCount;EA.pipes=null,EA.pipesCount=0,EA.flowing=!1;for(var TA=0;TA0,!1!==et.flowing&&this.resume()):"readable"===nA&&!et.endEmitted&&!et.readableListening&&(et.readableListening=et.needReadable=!0,et.flowing=!1,et.emittedReadable=!1,e("on readable",et.length,et.reading),et.length?FA(this):et.reading||c.nextTick(bA,this)),GA},sA.prototype.removeListener=function(nA,EA){var GA=h.prototype.removeListener.call(this,nA,EA);return"readable"===nA&&c.nextTick(NA,this),GA},sA.prototype.removeAllListeners=function(nA){var EA=h.prototype.removeAllListeners.apply(this,arguments);return("readable"===nA||void 0===nA)&&c.nextTick(NA,this),EA},sA.prototype.resume=function(){var nA=this._readableState;return nA.flowing||(e("resume"),nA.flowing=!nA.readableListening,function XA(nA,EA){EA.resumeScheduled||(EA.resumeScheduled=!0,c.nextTick(X,nA,EA))}(this,nA)),nA.paused=!1,this},sA.prototype.pause=function(){return e("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(e("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},sA.prototype.wrap=function(nA){var EA=this,GA=this._readableState,et=!1;for(var st in nA.on("end",function(){if(e("wrapped end"),GA.decoder&&!GA.ended){var it=GA.decoder.end();it&&it.length&&EA.push(it)}EA.push(null)}),nA.on("data",function(it){e("wrapped data"),GA.decoder&&(it=GA.decoder.write(it)),GA.objectMode&&null==it||!(GA.objectMode||it&&it.length)||EA.push(it)||(et=!0,nA.pause())}),nA)void 0===this[st]&&"function"==typeof nA[st]&&(this[st]=function(vt){return function(){return nA[vt].apply(nA,arguments)}}(st));for(var TA=0;TA-1))throw new P($);return this._writableState.defaultEncoding=$,this},Object.defineProperty(eA.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(eA.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),eA.prototype._write=function(O,$,W){W(new p("_write()"))},eA.prototype._writev=null,eA.prototype.end=function(O,$,W){var hA=this._writableState;return"function"==typeof O?(W=O,O=null,$=null):"function"==typeof $&&(W=$,$=null),null!=O&&this.write(O,$),hA.corked&&(hA.corked=1,this.uncork()),hA.ending||function XA(O,$,W){$.ending=!0,bA(O,$),W&&($.finished?c.nextTick(W):O.once("finish",W)),$.ended=!0,O.writable=!1}(this,hA,W),this},Object.defineProperty(eA.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(eA.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function($){!this._writableState||(this._writableState.destroyed=$)}}),eA.prototype.destroy=e.destroy,eA.prototype._undestroy=e.undestroy,eA.prototype._destroy=function(O,$){$(O)}},828:function(T,I,n){"use strict";var i,c=n(4155);function o(d,v,m){return v in d?Object.defineProperty(d,v,{value:m,enumerable:!0,configurable:!0,writable:!0}):d[v]=m,d}var l=n(1086),h=Symbol("lastResolve"),a=Symbol("lastReject"),B=Symbol("error"),E=Symbol("ended"),u=Symbol("lastPromise"),C=Symbol("handlePromise"),e=Symbol("stream");function f(d,v){return{value:d,done:v}}function g(d){var v=d[h];if(null!==v){var m=d[e].read();null!==m&&(d[u]=null,d[h]=null,d[a]=null,v(f(m,!1)))}}function w(d){c.nextTick(g,d)}var p=Object.getPrototypeOf(function(){}),Y=Object.setPrototypeOf((o(i={get stream(){return this[e]},next:function(){var v=this,m=this[B];if(null!==m)return Promise.reject(m);if(this[E])return Promise.resolve(f(void 0,!0));if(this[e].destroyed)return new Promise(function(L,U){c.nextTick(function(){v[B]?U(v[B]):L(f(void 0,!0))})});var N,P=this[u];if(P)N=new Promise(function Q(d,v){return function(m,P){d.then(function(){v[E]?m(f(void 0,!0)):v[C](m,P)},P)}}(P,this));else{var F=this[e].read();if(null!==F)return Promise.resolve(f(F,!1));N=new Promise(this[C])}return this[u]=N,N}},Symbol.asyncIterator,function(){return this}),o(i,"return",function(){var v=this;return new Promise(function(m,P){v[e].destroy(null,function(N){N?P(N):m(f(void 0,!0))})})}),i),p);T.exports=function(v){var m,P=Object.create(Y,(o(m={},e,{value:v,writable:!0}),o(m,h,{value:null,writable:!0}),o(m,a,{value:null,writable:!0}),o(m,B,{value:null,writable:!0}),o(m,E,{value:v._readableState.endEmitted,writable:!0}),o(m,C,{value:function(F,L){var U=P[e].read();U?(P[u]=null,P[h]=null,P[a]=null,F(f(U,!1))):(P[h]=F,P[a]=L)},writable:!0}),m));return P[u]=null,l(v,function(N){if(N&&"ERR_STREAM_PREMATURE_CLOSE"!==N.code){var F=P[a];return null!==F&&(P[u]=null,P[h]=null,P[a]=null,F(N)),void(P[B]=N)}var L=P[h];null!==L&&(P[u]=null,P[h]=null,P[a]=null,L(f(void 0,!0))),P[E]=!0}),v.on("readable",w.bind(null,P)),P}},1029:function(T,I,n){"use strict";var c=n(4155);function o(E,u){a(E,u),l(E)}function l(E){E._writableState&&!E._writableState.emitClose||E._readableState&&!E._readableState.emitClose||E.emit("close")}function a(E,u){E.emit("error",u)}T.exports={destroy:function i(E,u){var C=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(u?u(E):E&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,c.nextTick(a,this,E)):c.nextTick(a,this,E)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(E||null,function(g){!u&&g?C._writableState?C._writableState.errorEmitted?c.nextTick(l,C):(C._writableState.errorEmitted=!0,c.nextTick(o,C,g)):c.nextTick(o,C,g):u?(c.nextTick(l,C),u(g)):c.nextTick(l,C)}),this)},undestroy:function h(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function B(E,u){var C=E._readableState,e=E._writableState;C&&C.autoDestroy||e&&e.autoDestroy?E.destroy(u):E.emit("error",u)}}},1086:function(T,I,n){"use strict";var c=n(8106).q.ERR_STREAM_PREMATURE_CLOSE;function o(){}T.exports=function h(a,B,E){if("function"==typeof B)return h(a,null,B);B||(B={}),E=function i(a){var B=!1;return function(){if(!B){B=!0;for(var E=arguments.length,u=new Array(E),C=0;C0,function(N){Y||(Y=N),N&&y.forEach(u),!m&&(y.forEach(u),p(Y))})});return w.reduce(C)}},94:function(T,I,n){"use strict";var c=n(8106).q.ERR_INVALID_OPT_VALUE;T.exports={getHighWaterMark:function o(l,h,a,B){var E=function i(l,h,a){return null!=l.highWaterMark?l.highWaterMark:h?l[a]:null}(h,B,a);if(null!=E){if(!isFinite(E)||Math.floor(E)!==E||E<0)throw new c(B?a:"highWaterMark",E);return Math.floor(E)}return l.objectMode?16:16384}}},3194:function(T,I,n){T.exports=n(7187).EventEmitter},1818:function(T,I,n){var c,o;void 0!==(o="function"==typeof(c=function(){"use strict";function h(e,f,g){var w=new XMLHttpRequest;w.open("GET",e),w.responseType="blob",w.onload=function(){C(w.response,f,g)},w.onerror=function(){console.error("could not download file")},w.send()}function a(e){var f=new XMLHttpRequest;f.open("HEAD",e,!1);try{f.send()}catch(g){}return 200<=f.status&&299>=f.status}function B(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(g){var f=document.createEvent("MouseEvents");f.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(f)}}var E="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,u=E.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),C=E.saveAs||("object"!=typeof window||window!==E?function(){}:"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!u?function(e,f,g){var w=E.URL||E.webkitURL,Q=document.createElement("a");Q.download=f=f||e.name||"download",Q.rel="noopener","string"==typeof e?(Q.href=e,Q.origin===location.origin?B(Q):a(Q.href)?h(e,f,g):B(Q,Q.target="_blank")):(Q.href=w.createObjectURL(e),setTimeout(function(){w.revokeObjectURL(Q.href)},4e4),setTimeout(function(){B(Q)},0))}:"msSaveOrOpenBlob"in navigator?function(e,f,g){if(f=f||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(function l(e,f){return void 0===f?f={autoBom:!1}:"object"!=typeof f&&(console.warn("Deprecated: Expected third argument to be a object"),f={autoBom:!f}),f.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e}(e,g),f);else if(a(e))h(e,f,g);else{var w=document.createElement("a");w.href=e,w.target="_blank",setTimeout(function(){B(w)})}}:function(e,f,g,w){if((w=w||open("","_blank"))&&(w.document.title=w.document.body.innerText="downloading..."),"string"==typeof e)return h(e,f,g);var Q="application/octet-stream"===e.type,p=/constructor/i.test(E.HTMLElement)||E.safari,Y=/CriOS\/[\d]+/.test(navigator.userAgent);if((Y||Q&&p||u)&&"undefined"!=typeof FileReader){var y=new FileReader;y.onloadend=function(){var m=y.result;m=Y?m:m.replace(/^data:[^;]*;/,"data:attachment/file;"),w?w.location.href=m:location=m,w=null},y.readAsDataURL(e)}else{var d=E.URL||E.webkitURL,v=d.createObjectURL(e);w?w.location=v:location.href=v,w=null,setTimeout(function(){d.revokeObjectURL(v)},4e4)}});E.saveAs=C.saveAs=C,T.exports=C})?c.apply(I,[]):c)&&(T.exports=o)},2553:function(T,I,n){"use strict";var c=n(1750).Buffer,i=c.isEncoding||function(y){switch((y=""+y)&&y.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function h(y){var d;switch(this.encoding=function l(y){var d=function o(y){if(!y)return"utf8";for(var d;;)switch(y){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return y;default:if(d)return;y=(""+y).toLowerCase(),d=!0}}(y);if("string"!=typeof d&&(c.isEncoding===i||!i(y)))throw new Error("Unknown encoding: "+y);return d||y}(y),this.encoding){case"utf16le":this.text=f,this.end=g,d=4;break;case"utf8":this.fillLast=u,d=4;break;case"base64":this.text=w,this.end=Q,d=3;break;default:return this.write=p,void(this.end=Y)}this.lastNeed=0,this.lastTotal=0,this.lastChar=c.allocUnsafe(d)}function a(y){return y<=127?0:y>>5==6?2:y>>4==14?3:y>>3==30?4:y>>6==2?-1:-2}function u(y){var d=this.lastTotal-this.lastNeed,v=function E(y,d,v){if(128!=(192&d[0]))return y.lastNeed=0,"\ufffd";if(y.lastNeed>1&&d.length>1){if(128!=(192&d[1]))return y.lastNeed=1,"\ufffd";if(y.lastNeed>2&&d.length>2&&128!=(192&d[2]))return y.lastNeed=2,"\ufffd"}}(this,y);return void 0!==v?v:this.lastNeed<=y.length?(y.copy(this.lastChar,d,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(y.copy(this.lastChar,d,0,y.length),void(this.lastNeed-=y.length))}function f(y,d){if((y.length-d)%2==0){var v=y.toString("utf16le",d);if(v){var m=v.charCodeAt(v.length-1);if(m>=55296&&m<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=y[y.length-2],this.lastChar[1]=y[y.length-1],v.slice(0,-1)}return v}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=y[y.length-1],y.toString("utf16le",d,y.length-1)}function g(y){var d=y&&y.length?this.write(y):"";return this.lastNeed?d+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):d}function w(y,d){var v=(y.length-d)%3;return 0===v?y.toString("base64",d):(this.lastNeed=3-v,this.lastTotal=3,1===v?this.lastChar[0]=y[y.length-1]:(this.lastChar[0]=y[y.length-2],this.lastChar[1]=y[y.length-1]),y.toString("base64",d,y.length-v))}function Q(y){var d=y&&y.length?this.write(y):"";return this.lastNeed?d+this.lastChar.toString("base64",0,3-this.lastNeed):d}function p(y){return y.toString(this.encoding)}function Y(y){return y&&y.length?this.write(y):""}I.s=h,h.prototype.write=function(y){if(0===y.length)return"";var d,v;if(this.lastNeed){if(void 0===(d=this.fillLast(y)))return"";v=this.lastNeed,this.lastNeed=0}else v=0;return v=0?(P>0&&(y.lastNeed=P-1),P):--m=0?(P>0&&(y.lastNeed=P-2),P):--m=0?(P>0&&(2===P?P=0:y.lastNeed=P-3),P):0}(this,y,d);if(!this.lastNeed)return y.toString("utf8",d);this.lastTotal=v;var m=y.length-(v-this.lastNeed);return y.copy(this.lastChar,0,m),y.toString("utf8",d,m)},h.prototype.fillLast=function(y){if(this.lastNeed<=y.length)return y.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);y.copy(this.lastChar,this.lastTotal-this.lastNeed,0,y.length),this.lastNeed-=y.length}},311:function(T){function c(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function i(N,F){this.source=N,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=F,this.destLen=0,this.ltree=new c,this.dtree=new c}var o=new c,l=new c,h=new Uint8Array(30),a=new Uint16Array(30),B=new Uint8Array(30),E=new Uint16Array(30),u=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),C=new c,e=new Uint8Array(320);function f(N,F,L,U){var eA,sA;for(eA=0;eA>>=1,F}function Y(N,F,L){if(!F)return L;for(;N.bitcount<24;)N.tag|=N.source[N.sourceIndex++]<>>16-F;return N.tag>>>=F,N.bitcount-=F,U+L}function y(N,F){for(;N.bitcount<24;)N.tag|=N.source[N.sourceIndex++]<>>=1,++eA,L+=F.table[eA],U-=F.table[eA]}while(U>=0);return N.tag=sA,N.bitcount-=eA,F.trans[L+U]}function d(N,F,L){var U,eA,sA,q,BA,pA;for(U=Y(N,5,257),eA=Y(N,5,1),sA=Y(N,4,4),q=0;q<19;++q)e[q]=0;for(q=0;q8;)N.sourceIndex--,N.bitcount-=8;if((F=256*(F=N.source[N.sourceIndex+1])+N.source[N.sourceIndex])!==(65535&~(256*N.source[N.sourceIndex+3]+N.source[N.sourceIndex+2])))return-3;for(N.sourceIndex+=4,U=F;U;--U)N.dest[N.destLen++]=N.source[N.sourceIndex++];return N.bitcount=0,0}(function g(N,F){var L;for(L=0;L<7;++L)N.table[L]=0;for(N.table[7]=24,N.table[8]=152,N.table[9]=112,L=0;L<24;++L)N.trans[L]=256+L;for(L=0;L<144;++L)N.trans[24+L]=L;for(L=0;L<8;++L)N.trans[168+L]=280+L;for(L=0;L<112;++L)N.trans[176+L]=144+L;for(L=0;L<5;++L)F.table[L]=0;for(F.table[5]=32,L=0;L<32;++L)F.trans[L]=L})(o,l),f(h,a,4,3),f(B,E,2,1),h[28]=0,a[28]=258,T.exports=function P(N,F){var U,sA,L=new i(N,F);do{switch(U=p(L),Y(L,2,0)){case 0:sA=m(L);break;case 1:sA=v(L,o,l);break;case 2:d(L,L.ltree,L.dtree),sA=v(L,L.ltree,L.dtree);break;default:sA=-3}if(0!==sA)throw new Error("Data error")}while(!U);return L.destLen=tA.length?{done:!0}:{done:!1,value:tA[M++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function u(tA,G){(null==G||G>tA.length)&&(G=tA.length);for(var V=0,M=new Array(G);V0?iA[0]:"value";if(AA.has(kA))return AA.get(kA);var ct=x.apply(this,iA);return AA.set(kA,ct),ct}return Object.defineProperty(this,G,{value:aA}),aA}}}}m.registerFormat=function(tA){P.push(tA)},m.openSync=function(tA,G){var V=v.readFileSync(tA);return m.create(V,G)},m.open=function(tA,G,V){"function"==typeof G&&(V=G,G=null),v.readFile(tA,function(M,x){if(M)return V(M);try{var z=m.create(x,G)}catch(AA){return V(AA)}return V(null,z)})},m.create=function(tA,G){for(var V=0;V>1},searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,endCode:new e.LazyArray(e.uint16,"segCount"),reservedPad:new e.Reserved(e.uint16),startCode:new e.LazyArray(e.uint16,"segCount"),idDelta:new e.LazyArray(e.int16,"segCount"),idRangeOffset:new e.LazyArray(e.uint16,"segCount"),glyphIndexArray:new e.LazyArray(e.uint16,function(tA){return(tA.length-tA._currentOffset)/2})},6:{length:e.uint16,language:e.uint16,firstCode:e.uint16,entryCount:e.uint16,glyphIndices:new e.LazyArray(e.uint16,"entryCount")},8:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint16,is32:new e.LazyArray(e.uint8,8192),nGroups:e.uint32,groups:new e.LazyArray(eA,"nGroups")},10:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,firstCode:e.uint32,entryCount:e.uint32,glyphIndices:new e.LazyArray(e.uint16,"numChars")},12:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(eA,"nGroups")},13:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(eA,"nGroups")},14:{length:e.uint32,numRecords:e.uint32,varSelectors:new e.LazyArray(lA,"numRecords")}}),gA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,table:new e.Pointer(e.uint32,cA,{type:"parent",lazy:!0})}),yA=new e.Struct({version:e.uint16,numSubtables:e.uint16,tables:new e.Array(gA,"numSubtables")}),FA=new e.Struct({version:e.int32,revision:e.int32,checkSumAdjustment:e.uint32,magicNumber:e.uint32,flags:e.uint16,unitsPerEm:e.uint16,created:new e.Array(e.int32,2),modified:new e.Array(e.int32,2),xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,macStyle:new e.Bitfield(e.uint16,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:e.uint16,fontDirectionHint:e.int16,indexToLocFormat:e.int16,glyphDataFormat:e.int16}),_=new e.Struct({version:e.int32,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceWidthMax:e.uint16,minLeftSideBearing:e.int16,minRightSideBearing:e.int16,xMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),MA=new e.Struct({advance:e.uint16,bearing:e.int16}),uA=new e.Struct({metrics:new e.LazyArray(MA,function(tA){return tA.parent.hhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.hhea.numberOfMetrics})}),QA=new e.Struct({version:e.int32,numGlyphs:e.uint16,maxPoints:e.uint16,maxContours:e.uint16,maxComponentPoints:e.uint16,maxComponentContours:e.uint16,maxZones:e.uint16,maxTwilightPoints:e.uint16,maxStorage:e.uint16,maxFunctionDefs:e.uint16,maxInstructionDefs:e.uint16,maxStackElements:e.uint16,maxSizeOfInstructions:e.uint16,maxComponentElements:e.uint16,maxComponentDepth:e.uint16});function NA(tA,G,V){return void 0===V&&(V=0),1===tA&&XA[V]?XA[V]:bA[tA][G]}var bA=[["utf16be","utf16be","utf16be","utf16be","utf16be","utf16be"],["macroman","shift-jis","big5","euc-kr","iso-8859-6","iso-8859-8","macgreek","maccyrillic","symbol","Devanagari","Gurmukhi","Gujarati","Oriya","Bengali","Tamil","Telugu","Kannada","Malayalam","Sinhalese","Burmese","Khmer","macthai","Laotian","Georgian","Armenian","gb-2312-80","Tibetan","Mongolian","Geez","maccenteuro","Vietnamese","Sindhi"],["ascii"],["symbol","utf16be","shift-jis","gb18030","big5","wansung","johab",null,null,null,"utf16be"]],XA={15:"maciceland",17:"macturkish",18:"maccroatian",24:"maccenteuro",25:"maccenteuro",26:"maccenteuro",27:"maccenteuro",28:"maccenteuro",30:"maciceland",37:"macromania",38:"maccenteuro",39:"maccenteuro",40:"maccenteuro",143:"macinuit",146:"macgaelic"},X=[[],{0:"en",30:"fo",60:"ks",90:"rw",1:"fr",31:"fa",61:"ku",91:"rn",2:"de",32:"ru",62:"sd",92:"ny",3:"it",33:"zh",63:"bo",93:"mg",4:"nl",34:"nl-BE",64:"ne",94:"eo",5:"sv",35:"ga",65:"sa",128:"cy",6:"es",36:"sq",66:"mr",129:"eu",7:"da",37:"ro",67:"bn",130:"ca",8:"pt",38:"cz",68:"as",131:"la",9:"no",39:"sk",69:"gu",132:"qu",10:"he",40:"si",70:"pa",133:"gn",11:"ja",41:"yi",71:"or",134:"ay",12:"ar",42:"sr",72:"ml",135:"tt",13:"fi",43:"mk",73:"kn",136:"ug",14:"el",44:"bg",74:"ta",137:"dz",15:"is",45:"uk",75:"te",138:"jv",16:"mt",46:"be",76:"si",139:"su",17:"tr",47:"uz",77:"my",140:"gl",18:"hr",48:"kk",78:"km",141:"af",19:"zh-Hant",49:"az-Cyrl",79:"lo",142:"br",20:"ur",50:"az-Arab",80:"vi",143:"iu",21:"hi",51:"hy",81:"id",144:"gd",22:"th",52:"ka",82:"tl",145:"gv",23:"ko",53:"mo",83:"ms",146:"ga",24:"lt",54:"ky",84:"ms-Arab",147:"to",25:"pl",55:"tg",85:"am",148:"el-polyton",26:"hu",56:"tk",86:"ti",149:"kl",27:"es",57:"mn-CN",87:"om",150:"az",28:"lv",58:"mn",88:"so",151:"nn",29:"se",59:"ps",89:"sw"},[],{1078:"af",16393:"en-IN",1159:"rw",1074:"tn",1052:"sq",6153:"en-IE",1089:"sw",1115:"si",1156:"gsw",8201:"en-JM",1111:"kok",1051:"sk",1118:"am",17417:"en-MY",1042:"ko",1060:"sl",5121:"ar-DZ",5129:"en-NZ",1088:"ky",11274:"es-AR",15361:"ar-BH",13321:"en-PH",1108:"lo",16394:"es-BO",3073:"ar",18441:"en-SG",1062:"lv",13322:"es-CL",2049:"ar-IQ",7177:"en-ZA",1063:"lt",9226:"es-CO",11265:"ar-JO",11273:"en-TT",2094:"dsb",5130:"es-CR",13313:"ar-KW",2057:"en-GB",1134:"lb",7178:"es-DO",12289:"ar-LB",1033:"en",1071:"mk",12298:"es-EC",4097:"ar-LY",12297:"en-ZW",2110:"ms-BN",17418:"es-SV",6145:"ary",1061:"et",1086:"ms",4106:"es-GT",8193:"ar-OM",1080:"fo",1100:"ml",18442:"es-HN",16385:"ar-QA",1124:"fil",1082:"mt",2058:"es-MX",1025:"ar-SA",1035:"fi",1153:"mi",19466:"es-NI",10241:"ar-SY",2060:"fr-BE",1146:"arn",6154:"es-PA",7169:"aeb",3084:"fr-CA",1102:"mr",15370:"es-PY",14337:"ar-AE",1036:"fr",1148:"moh",10250:"es-PE",9217:"ar-YE",5132:"fr-LU",1104:"mn",20490:"es-PR",1067:"hy",6156:"fr-MC",2128:"mn-CN",3082:"es",1101:"as",4108:"fr-CH",1121:"ne",1034:"es",2092:"az-Cyrl",1122:"fy",1044:"nb",21514:"es-US",1068:"az",1110:"gl",2068:"nn",14346:"es-UY",1133:"ba",1079:"ka",1154:"oc",8202:"es-VE",1069:"eu",3079:"de-AT",1096:"or",2077:"sv-FI",1059:"be",1031:"de",1123:"ps",1053:"sv",2117:"bn",5127:"de-LI",1045:"pl",1114:"syr",1093:"bn-IN",4103:"de-LU",1046:"pt",1064:"tg",8218:"bs-Cyrl",2055:"de-CH",2070:"pt-PT",2143:"tzm",5146:"bs",1032:"el",1094:"pa",1097:"ta",1150:"br",1135:"kl",1131:"qu-BO",1092:"tt",1026:"bg",1095:"gu",2155:"qu-EC",1098:"te",1027:"ca",1128:"ha",3179:"qu",1054:"th",3076:"zh-HK",1037:"he",1048:"ro",1105:"bo",5124:"zh-MO",1081:"hi",1047:"rm",1055:"tr",2052:"zh",1038:"hu",1049:"ru",1090:"tk",4100:"zh-SG",1039:"is",9275:"smn",1152:"ug",1028:"zh-TW",1136:"ig",4155:"smj-NO",1058:"uk",1155:"co",1057:"id",5179:"smj",1070:"hsb",1050:"hr",1117:"iu",3131:"se-FI",1056:"ur",4122:"hr-BA",2141:"iu-Latn",1083:"se",2115:"uz-Cyrl",1029:"cs",2108:"ga",2107:"se-SE",1091:"uz",1030:"da",1076:"xh",8251:"sms",1066:"vi",1164:"prs",1077:"zu",6203:"sma-NO",1106:"cy",1125:"dv",1040:"it",7227:"sms",1160:"wo",2067:"nl-BE",2064:"it-CH",1103:"sa",1157:"sah",1043:"nl",1041:"ja",7194:"sr-Cyrl-BA",1144:"ii",3081:"en-AU",1099:"kn",3098:"sr",1130:"yo",10249:"en-BZ",1087:"kk",6170:"sr-Latn-BA",4105:"en-CA",1107:"km",2074:"sr-Latn",9225:"en-029",1158:"quc",1132:"nso"}],O=new e.Struct({platformID:e.uint16,encodingID:e.uint16,languageID:e.uint16,nameID:e.uint16,length:e.uint16,string:new e.Pointer(e.uint16,new e.String("length",function(tA){return NA(tA.platformID,tA.encodingID,tA.languageID)}),{type:"parent",relativeTo:function(G){return G.parent.stringOffset},allowNull:!1})}),$=new e.Struct({length:e.uint16,tag:new e.Pointer(e.uint16,new e.String("length","utf16be"),{type:"parent",relativeTo:function(G){return G.stringOffset}})}),W=new e.VersionedStruct(e.uint16,{0:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(O,"count")},1:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(O,"count"),langTagCount:e.uint16,langTags:new e.Array($,"langTagCount")}}),hA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];W.process=function(tA){for(var M,G={},V=B(this.records);!(M=V()).done;){var x=M.value,z=X[x.platformID][x.languageID];null==z&&null!=this.langTags&&x.languageID>=32768&&(z=this.langTags[x.languageID-32768].tag),null==z&&(z=x.platformID+"-"+x.languageID);var AA=x.nameID>=256?"fontFeatures":hA[x.nameID]||x.nameID;null==G[AA]&&(G[AA]={});var aA=G[AA];x.nameID>=256&&(aA=aA[x.nameID]||(aA[x.nameID]={})),("string"==typeof x.string||"string"!=typeof aA[z])&&(aA[z]=x.string)}this.records=G},W.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var tA=[];for(var G in this.records){var V=this.records[G];"fontFeatures"!==G&&(tA.push({platformID:3,encodingID:1,languageID:1033,nameID:hA.indexOf(G),length:c.byteLength(V.en,"utf16le"),string:V.en}),"postscriptName"===G&&tA.push({platformID:1,encodingID:0,languageID:0,nameID:hA.indexOf(G),length:V.en.length,string:V.en}))}this.records=tA,this.count=tA.length,this.stringOffset=W.size(this,null,!1)}};var mA=new e.VersionedStruct(e.uint16,{header:{xAvgCharWidth:e.int16,usWeightClass:e.uint16,usWidthClass:e.uint16,fsType:new e.Bitfield(e.uint16,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:e.int16,ySubscriptYSize:e.int16,ySubscriptXOffset:e.int16,ySubscriptYOffset:e.int16,ySuperscriptXSize:e.int16,ySuperscriptYSize:e.int16,ySuperscriptXOffset:e.int16,ySuperscriptYOffset:e.int16,yStrikeoutSize:e.int16,yStrikeoutPosition:e.int16,sFamilyClass:e.int16,panose:new e.Array(e.uint8,10),ulCharRange:new e.Array(e.uint32,4),vendorID:new e.String(4),fsSelection:new e.Bitfield(e.uint16,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:e.uint16,usLastCharIndex:e.uint16},0:{},1:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2)},2:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16},5:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16,usLowerOpticalPointSize:e.uint16,usUpperOpticalPointSize:e.uint16}}),nA=mA.versions;nA[3]=nA[4]=nA[2];var EA=new e.VersionedStruct(e.fixed32,{header:{italicAngle:e.fixed32,underlinePosition:e.int16,underlineThickness:e.int16,isFixedPitch:e.uint32,minMemType42:e.uint32,maxMemType42:e.uint32,minMemType1:e.uint32,maxMemType1:e.uint32},1:{},2:{numberOfGlyphs:e.uint16,glyphNameIndex:new e.Array(e.uint16,"numberOfGlyphs"),names:new e.Array(new e.String(e.uint8))},2.5:{numberOfGlyphs:e.uint16,offsets:new e.Array(e.uint8,"numberOfGlyphs")},3:{},4:{map:new e.Array(e.uint32,function(tA){return tA.parent.maxp.numGlyphs})}}),GA=new e.Struct({controlValues:new e.Array(e.int16)}),et=new e.Struct({instructions:new e.Array(e.uint8)}),st=new e.VersionedStruct("head.indexToLocFormat",{0:{offsets:new e.Array(e.uint16)},1:{offsets:new e.Array(e.uint32)}});st.process=function(){if(0===this.version)for(var tA=0;tA>>=1};var TA=new e.Struct({controlValueProgram:new e.Array(e.uint8)}),it=new e.Array(new e.Buffer),vt=function(){function tA(V){this.type=V}var G=tA.prototype;return G.getCFFVersion=function(M){for(;M&&!M.hdrSize;)M=M.parent;return M?M.version:-1},G.decode=function(M,x){var AA=this.getCFFVersion(x)>=2?M.readUInt32BE():M.readUInt16BE();if(0===AA)return[];var oA,aA=M.readUInt8();if(1===aA)oA=e.uint8;else if(2===aA)oA=e.uint16;else if(3===aA)oA=e.uint24;else{if(4!==aA)throw new Error("Bad offset size in CFFIndex: ".concat(aA," ").concat(M.pos));oA=e.uint32}for(var iA=[],SA=M.pos+(AA+1)*aA-1,kA=oA.decode(M),ct=0;ct>4;if(15===AA)break;x+=ht[AA];var aA=15&z;if(15===aA)break;x+=ht[aA]}return parseFloat(x)}return null},tA.size=function(V){return V.forceLarge&&(V=32768),(0|V)!==V?1+Math.ceil(((""+V).length+1)/2):-107<=V&&V<=107?1:108<=V&&V<=1131||-1131<=V&&V<=-108?2:-32768<=V&&V<=32767?3:5},tA.encode=function(V,M){var x=Number(M);if(M.forceLarge)return V.writeUInt8(29),V.writeInt32BE(x);if((0|x)===x)return-107<=x&&x<=107?V.writeUInt8(x+139):108<=x&&x<=1131?(V.writeUInt8(247+((x-=108)>>8)),V.writeUInt8(255&x)):-1131<=x&&x<=-108?(V.writeUInt8(251+((x=-x-108)>>8)),V.writeUInt8(255&x)):-32768<=x&&x<=32767?(V.writeUInt8(28),V.writeInt16BE(x)):(V.writeUInt8(29),V.writeInt32BE(x));V.writeUInt8(30);for(var z=""+x,AA=0;AAz;)x.pop()},tA}(),null],[19,"Subrs",new xA(new vt,{type:"local"}),null]]),OA=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","001.000","001.001","001.002","001.003","Black","Bold","Book","Light","Medium","Regular","Roman","Semibold"],H=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","","endash","dagger","daggerdbl","periodcentered","","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","","questiondown","","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","","ring","cedilla","","hungarumlaut","ogonek","caron","emdash","","","","","","","","","","","","","","","","","AE","","ordfeminine","","","","","Lslash","Oslash","OE","ordmasculine","","","","","","ae","","","","dotlessi","","","lslash","oslash","oe","germandbls"],b=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron"],RA=new e.Struct({reserved:new e.Reserved(e.uint16),reqFeatureIndex:e.uint16,featureCount:e.uint16,featureIndexes:new e.Array(e.uint16,"featureCount")}),rA=new e.Struct({tag:new e.String(4),langSys:new e.Pointer(e.uint16,RA,{type:"parent"})}),gt=new e.Struct({defaultLangSys:new e.Pointer(e.uint16,RA),count:e.uint16,langSysRecords:new e.Array(rA,"count")}),Yt=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,gt,{type:"parent"})}),j=new e.Array(Yt,e.uint16),qA=new e.Struct({featureParams:e.uint16,lookupCount:e.uint16,lookupListIndexes:new e.Array(e.uint16,"lookupCount")}),KA=new e.Struct({tag:new e.String(4),feature:new e.Pointer(e.uint16,qA,{type:"parent"})}),DA=new e.Array(KA,e.uint16),jA=new e.Struct({markAttachmentType:e.uint8,flags:new e.Bitfield(e.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function lt(tA){var G=new e.Struct({lookupType:e.uint16,flags:jA,subTableCount:e.uint16,subTables:new e.Array(new e.Pointer(e.uint16,tA),"subTableCount"),markFilteringSet:new e.Optional(e.uint16,function(V){return V.flags.flags.useMarkFilteringSet})});return new e.LazyArray(new e.Pointer(e.uint16,G),e.uint16)}var bt=new e.Struct({start:e.uint16,end:e.uint16,startCoverageIndex:e.uint16}),yt=new e.VersionedStruct(e.uint16,{1:{glyphCount:e.uint16,glyphs:new e.Array(e.uint16,"glyphCount")},2:{rangeCount:e.uint16,rangeRecords:new e.Array(bt,"rangeCount")}}),zt=new e.Struct({start:e.uint16,end:e.uint16,class:e.uint16}),Zt=new e.VersionedStruct(e.uint16,{1:{startGlyph:e.uint16,glyphCount:e.uint16,classValueArray:new e.Array(e.uint16,"glyphCount")},2:{classRangeCount:e.uint16,classRangeRecord:new e.Array(zt,"classRangeCount")}}),be=new e.Struct({a:e.uint16,b:e.uint16,deltaFormat:e.uint16}),ae=new e.Struct({sequenceIndex:e.uint16,lookupListIndex:e.uint16}),ee=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(ae,"lookupCount")}),xe=new e.Array(new e.Pointer(e.uint16,ee),e.uint16),Ge=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,classes:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(ae,"lookupCount")}),ze=new e.Array(new e.Pointer(e.uint16,Ge),e.uint16),yn=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,yt),ruleSetCount:e.uint16,ruleSets:new e.Array(new e.Pointer(e.uint16,xe),"ruleSetCount")},2:{coverage:new e.Pointer(e.uint16,yt),classDef:new e.Pointer(e.uint16,Zt),classSetCnt:e.uint16,classSet:new e.Array(new e.Pointer(e.uint16,ze),"classSetCnt")},3:{glyphCount:e.uint16,lookupCount:e.uint16,coverages:new e.Array(new e.Pointer(e.uint16,yt),"glyphCount"),lookupRecords:new e.Array(ae,"lookupCount")}}),xn=new e.Struct({backtrackGlyphCount:e.uint16,backtrack:new e.Array(e.uint16,"backtrackGlyphCount"),inputGlyphCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.inputGlyphCount-1}),lookaheadGlyphCount:e.uint16,lookahead:new e.Array(e.uint16,"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(ae,"lookupCount")}),ie=new e.Array(new e.Pointer(e.uint16,xn),e.uint16),rn=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,yt),chainCount:e.uint16,chainRuleSets:new e.Array(new e.Pointer(e.uint16,ie),"chainCount")},2:{coverage:new e.Pointer(e.uint16,yt),backtrackClassDef:new e.Pointer(e.uint16,Zt),inputClassDef:new e.Pointer(e.uint16,Zt),lookaheadClassDef:new e.Pointer(e.uint16,Zt),chainCount:e.uint16,chainClassSet:new e.Array(new e.Pointer(e.uint16,ie),"chainCount")},3:{backtrackGlyphCount:e.uint16,backtrackCoverage:new e.Array(new e.Pointer(e.uint16,yt),"backtrackGlyphCount"),inputGlyphCount:e.uint16,inputCoverage:new e.Array(new e.Pointer(e.uint16,yt),"inputGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,yt),"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(ae,"lookupCount")}}),Ne=new e.Fixed(16,"BE",14),an=new e.Struct({startCoord:Ne,peakCoord:Ne,endCoord:Ne}),$e=new e.Struct({axisCount:e.uint16,regionCount:e.uint16,variationRegions:new e.Array(new e.Array(an,"axisCount"),"regionCount")}),Hn=new e.Struct({shortDeltas:new e.Array(e.int16,function(tA){return tA.parent.shortDeltaCount}),regionDeltas:new e.Array(e.int8,function(tA){return tA.parent.regionIndexCount-tA.parent.shortDeltaCount}),deltas:function(G){return G.shortDeltas.concat(G.regionDeltas)}}),Jn=new e.Struct({itemCount:e.uint16,shortDeltaCount:e.uint16,regionIndexCount:e.uint16,regionIndexes:new e.Array(e.uint16,"regionIndexCount"),deltaSets:new e.Array(Hn,"itemCount")}),kt=new e.Struct({format:e.uint16,variationRegionList:new e.Pointer(e.uint32,$e),variationDataCount:e.uint16,itemVariationData:new e.Array(new e.Pointer(e.uint32,Jn),"variationDataCount")}),Gt=new e.VersionedStruct(e.uint16,{1:(i={axisIndex:e.uint16},i.axisIndex=e.uint16,i.filterRangeMinValue=Ne,i.filterRangeMaxValue=Ne,i)}),_t=new e.Struct({conditionCount:e.uint16,conditionTable:new e.Array(new e.Pointer(e.uint32,Gt),"conditionCount")}),le=new e.Struct({featureIndex:e.uint16,alternateFeatureTable:new e.Pointer(e.uint32,qA,{type:"parent"})}),mn=new e.Struct({version:e.fixed32,substitutionCount:e.uint16,substitutions:new e.Array(le,"substitutionCount")}),pn=new e.Struct({conditionSet:new e.Pointer(e.uint32,_t,{type:"parent"}),featureTableSubstitution:new e.Pointer(e.uint32,mn,{type:"parent"})}),Tn=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,featureVariationRecordCount:e.uint32,featureVariationRecords:new e.Array(pn,"featureVariationRecordCount")}),Zn=function(){function tA(V,M){this.predefinedOps=V,this.type=M}var G=tA.prototype;return G.decode=function(M,x,z){return this.predefinedOps[z[0]]?this.predefinedOps[z[0]]:this.type.decode(M,x,z)},G.size=function(M,x){return this.type.size(M,x)},G.encode=function(M,x,z){var AA=this.predefinedOps.indexOf(x);return-1!==AA?AA:this.type.encode(M,x,z)},tA}(),fr=function(tA){function G(){return tA.call(this,"UInt8")||this}return h(G,tA),G.prototype.decode=function(x){return 127&e.uint8.decode(x)},G}(e.Number),Nn=new e.Struct({first:e.uint16,nLeft:e.uint8}),ZA=new e.Struct({first:e.uint16,nLeft:e.uint16}),tt=new Zn([H,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","","asuperior","bsuperior","centsuperior","dsuperior","esuperior","","","isuperior","","","lsuperior","msuperior","nsuperior","osuperior","","","rsuperior","ssuperior","tsuperior","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdownsmall","centoldstyle","Lslashsmall","","","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","","Dotaccentsmall","","","Macronsmall","","","figuredash","hypheninferior","","","Ogoneksmall","Ringsmall","Cedillasmall","","","","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"]],new xA(new e.VersionedStruct(new fr,{0:{nCodes:e.uint8,codes:new e.Array(e.uint8,"nCodes")},1:{nRanges:e.uint8,ranges:new e.Array(Nn,"nRanges")}}),{lazy:!0})),UA=function(tA){function G(){return tA.apply(this,arguments)||this}return h(G,tA),G.prototype.decode=function(x,z){for(var AA=f.resolveLength(this.length,x,z),aA=0,oA=[];aA=2?null:M=2||this.isCIDFont)return null;var x=this.topDict.charset;if(Array.isArray(x))return x[M];if(0===M)return".notdef";switch(M-=1,x.version){case 0:return this.string(x.glyphs[M]);case 1:case 2:for(var z=0;z>1;if(M=x[aA+1].first))return x[aA].fd;z=aA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},G.privateDictForGlyph=function(M){if(this.topDict.FDSelect){var x=this.fdForGlyph(M);return this.topDict.FDArray[x]?this.topDict.FDArray[x].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},l(tA,[{key:"postscriptName",get:function(){return this.version<2?this.nameIndex[0]:null}},{key:"fullName",get:function(){return this.string(this.topDict.FullName)}},{key:"familyName",get:function(){return this.string(this.topDict.FamilyName)}}]),tA}(),wt=new e.Struct({glyphIndex:e.uint16,vertOriginY:e.int16}),Rt=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,defaultVertOriginY:e.int16,numVertOriginYMetrics:e.uint16,metrics:new e.Array(wt,"numVertOriginYMetrics")}),Vt=new e.Struct({height:e.uint8,width:e.uint8,horiBearingX:e.int8,horiBearingY:e.int8,horiAdvance:e.uint8,vertBearingX:e.int8,vertBearingY:e.int8,vertAdvance:e.uint8}),Jt=new e.Struct({height:e.uint8,width:e.uint8,bearingX:e.int8,bearingY:e.int8,advance:e.uint8}),Be=new e.Struct({glyph:e.uint16,xOffset:e.int8,yOffset:e.int8}),qt=function(){},he=function(){},De=(new e.VersionedStruct("version",{1:{metrics:Jt,data:qt},2:{metrics:Jt,data:he},5:{data:he},6:{metrics:Vt,data:qt},7:{metrics:Vt,data:he},8:{metrics:Jt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(Be,"numComponents")},9:{metrics:Vt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(Be,"numComponents")},17:{metrics:Jt,dataLen:e.uint32,data:new e.Buffer("dataLen")},18:{metrics:Vt,dataLen:e.uint32,data:new e.Buffer("dataLen")},19:{dataLen:e.uint32,data:new e.Buffer("dataLen")}}),new e.Struct({ascender:e.int8,descender:e.int8,widthMax:e.uint8,caretSlopeNumerator:e.int8,caretSlopeDenominator:e.int8,caretOffset:e.int8,minOriginSB:e.int8,minAdvanceSB:e.int8,maxBeforeBL:e.int8,minAfterBL:e.int8,pad:new e.Reserved(e.int8,2)})),He=new e.Struct({glyphCode:e.uint16,offset:e.uint16}),Se=new e.VersionedStruct(e.uint16,{header:{imageFormat:e.uint16,imageDataOffset:e.uint32},1:{offsetArray:new e.Array(e.uint32,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},2:{imageSize:e.uint32,bigMetrics:Vt},3:{offsetArray:new e.Array(e.uint16,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},4:{numGlyphs:e.uint32,glyphArray:new e.Array(He,function(tA){return tA.numGlyphs+1})},5:{imageSize:e.uint32,bigMetrics:Vt,numGlyphs:e.uint32,glyphCodeArray:new e.Array(e.uint16,"numGlyphs")}}),Fe=new e.Struct({firstGlyphIndex:e.uint16,lastGlyphIndex:e.uint16,subtable:new e.Pointer(e.uint32,Se)}),Ue=new e.Struct({indexSubTableArray:new e.Pointer(e.uint32,new e.Array(Fe,1),{type:"parent"}),indexTablesSize:e.uint32,numberOfIndexSubTables:e.uint32,colorRef:e.uint32,hori:De,vert:De,startGlyphIndex:e.uint16,endGlyphIndex:e.uint16,ppemX:e.uint8,ppemY:e.uint8,bitDepth:e.uint8,flags:new e.Bitfield(e.uint8,["horizontal","vertical"])}),en=new e.Struct({version:e.uint32,numSizes:e.uint32,sizes:new e.Array(Ue,"numSizes")}),Fn=new e.Struct({ppem:e.uint16,resolution:e.uint16,imageOffsets:new e.Array(new e.Pointer(e.uint32,"void"),function(tA){return tA.parent.parent.maxp.numGlyphs+1})}),sn=new e.Struct({version:e.uint16,flags:new e.Bitfield(e.uint16,["renderOutlines"]),numImgTables:e.uint32,imageTables:new e.Array(new e.Pointer(e.uint32,Fn),"numImgTables")}),In=new e.Struct({gid:e.uint16,paletteIndex:e.uint16}),Yn=new e.Struct({gid:e.uint16,firstLayerIndex:e.uint16,numLayers:e.uint16}),An=new e.Struct({version:e.uint16,numBaseGlyphRecords:e.uint16,baseGlyphRecord:new e.Pointer(e.uint32,new e.Array(Yn,"numBaseGlyphRecords")),layerRecords:new e.Pointer(e.uint32,new e.Array(In,"numLayerRecords"),{lazy:!0}),numLayerRecords:e.uint16}),En=new e.Struct({blue:e.uint8,green:e.uint8,red:e.uint8,alpha:e.uint8}),un=new e.VersionedStruct(e.uint16,{header:{numPaletteEntries:e.uint16,numPalettes:e.uint16,numColorRecords:e.uint16,colorRecords:new e.Pointer(e.uint32,new e.Array(En,"numColorRecords")),colorRecordIndices:new e.Array(e.uint16,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new e.Pointer(e.uint32,new e.Array(e.uint32,"numPalettes")),offsetPaletteLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPalettes")),offsetPaletteEntryLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPaletteEntries"))}}),$n=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{coordinate:e.int16,referenceGlyph:e.uint16,baseCoordPoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,be)}}),Ur=new e.Struct({defaultIndex:e.uint16,baseCoordCount:e.uint16,baseCoords:new e.Array(new e.Pointer(e.uint16,$n),"baseCoordCount")}),Pr=new e.Struct({tag:new e.String(4),minCoord:new e.Pointer(e.uint16,$n,{type:"parent"}),maxCoord:new e.Pointer(e.uint16,$n,{type:"parent"})}),or=new e.Struct({minCoord:new e.Pointer(e.uint16,$n),maxCoord:new e.Pointer(e.uint16,$n),featMinMaxCount:e.uint16,featMinMaxRecords:new e.Array(Pr,"featMinMaxCount")}),Sn=new e.Struct({tag:new e.String(4),minMax:new e.Pointer(e.uint16,or,{type:"parent"})}),Un=new e.Struct({baseValues:new e.Pointer(e.uint16,Ur),defaultMinMax:new e.Pointer(e.uint16,or),baseLangSysCount:e.uint16,baseLangSysRecords:new e.Array(Sn,"baseLangSysCount")}),vA=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,Un,{type:"parent"})}),J=new e.Array(vA,e.uint16),S=new e.Array(new e.String(4),e.uint16),Z=new e.Struct({baseTagList:new e.Pointer(e.uint16,S),baseScriptList:new e.Pointer(e.uint16,J)}),K=new e.VersionedStruct(e.uint32,{header:{horizAxis:new e.Pointer(e.uint16,Z),vertAxis:new e.Pointer(e.uint16,Z)},65536:{},65537:{itemVariationStore:new e.Pointer(e.uint32,kt)}}),fA=new e.Array(e.uint16,e.uint16),IA=new e.Struct({coverage:new e.Pointer(e.uint16,yt),glyphCount:e.uint16,attachPoints:new e.Array(new e.Pointer(e.uint16,fA),"glyphCount")}),At=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{caretValuePoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,be)}}),nt=new e.Array(new e.Pointer(e.uint16,At),e.uint16),ut=new e.Struct({coverage:new e.Pointer(e.uint16,yt),ligGlyphCount:e.uint16,ligGlyphs:new e.Array(new e.Pointer(e.uint16,nt),"ligGlyphCount")}),Qt=new e.Struct({markSetTableFormat:e.uint16,markSetCount:e.uint16,coverage:new e.Array(new e.Pointer(e.uint32,yt),"markSetCount")}),mt=new e.VersionedStruct(e.uint32,{header:{glyphClassDef:new e.Pointer(e.uint16,Zt),attachList:new e.Pointer(e.uint16,IA),ligCaretList:new e.Pointer(e.uint16,ut),markAttachClassDef:new e.Pointer(e.uint16,Zt)},65536:{},65538:{markGlyphSetsDef:new e.Pointer(e.uint16,Qt)},65539:{markGlyphSetsDef:new e.Pointer(e.uint16,Qt),itemVariationStore:new e.Pointer(e.uint32,kt)}}),xt=new e.Bitfield(e.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Nt={xPlacement:e.int16,yPlacement:e.int16,xAdvance:e.int16,yAdvance:e.int16,xPlaDevice:new e.Pointer(e.uint16,be,{type:"global",relativeTo:function(G){return G.rel}}),yPlaDevice:new e.Pointer(e.uint16,be,{type:"global",relativeTo:function(G){return G.rel}}),xAdvDevice:new e.Pointer(e.uint16,be,{type:"global",relativeTo:function(G){return G.rel}}),yAdvDevice:new e.Pointer(e.uint16,be,{type:"global",relativeTo:function(G){return G.rel}})},jt=function(){function tA(V){void 0===V&&(V="valueFormat"),this.key=V}var G=tA.prototype;return G.buildStruct=function(M){for(var x=M;!x[this.key]&&x.parent;)x=x.parent;if(x[this.key]){var z={rel:function(){return x._startOffset}},AA=x[this.key];for(var aA in AA)AA[aA]&&(z[aA]=Nt[aA]);return new e.Struct(z)}},G.size=function(M,x){return this.buildStruct(x).size(M,x)},G.decode=function(M,x){var z=this.buildStruct(x).decode(M,x);return delete z.rel,z},tA}(),Wt=new e.Struct({secondGlyph:e.uint16,value1:new jt("valueFormat1"),value2:new jt("valueFormat2")}),Ee=new e.Array(Wt,e.uint16),Ce=new e.Struct({value1:new jt("valueFormat1"),value2:new jt("valueFormat2")}),Ie=new e.VersionedStruct(e.uint16,{1:{xCoordinate:e.int16,yCoordinate:e.int16},2:{xCoordinate:e.int16,yCoordinate:e.int16,anchorPoint:e.uint16},3:{xCoordinate:e.int16,yCoordinate:e.int16,xDeviceTable:new e.Pointer(e.uint16,be),yDeviceTable:new e.Pointer(e.uint16,be)}}),on=new e.Struct({entryAnchor:new e.Pointer(e.uint16,Ie,{type:"parent"}),exitAnchor:new e.Pointer(e.uint16,Ie,{type:"parent"})}),pe=new e.Struct({class:e.uint16,markAnchor:new e.Pointer(e.uint16,Ie,{type:"parent"})}),Ke=new e.Array(pe,e.uint16),Qn=new e.Array(new e.Pointer(e.uint16,Ie),function(tA){return tA.parent.classCount}),Ve=new e.Array(Qn,e.uint16),dn=new e.Array(new e.Pointer(e.uint16,Ie),function(tA){return tA.parent.parent.classCount}),Xn=new e.Array(dn,e.uint16),Ar=new e.Array(new e.Pointer(e.uint16,Xn),e.uint16),Pn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,yt),valueFormat:xt,value:new jt},2:{coverage:new e.Pointer(e.uint16,yt),valueFormat:xt,valueCount:e.uint16,values:new e.LazyArray(new jt,"valueCount")}}),2:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,yt),valueFormat1:xt,valueFormat2:xt,pairSetCount:e.uint16,pairSets:new e.LazyArray(new e.Pointer(e.uint16,Ee),"pairSetCount")},2:{coverage:new e.Pointer(e.uint16,yt),valueFormat1:xt,valueFormat2:xt,classDef1:new e.Pointer(e.uint16,Zt),classDef2:new e.Pointer(e.uint16,Zt),class1Count:e.uint16,class2Count:e.uint16,classRecords:new e.LazyArray(new e.LazyArray(Ce,"class2Count"),"class1Count")}}),3:{format:e.uint16,coverage:new e.Pointer(e.uint16,yt),entryExitCount:e.uint16,entryExitRecords:new e.Array(on,"entryExitCount")},4:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,yt),baseCoverage:new e.Pointer(e.uint16,yt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ke),baseArray:new e.Pointer(e.uint16,Ve)},5:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,yt),ligatureCoverage:new e.Pointer(e.uint16,yt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ke),ligatureArray:new e.Pointer(e.uint16,Ar)},6:{format:e.uint16,mark1Coverage:new e.Pointer(e.uint16,yt),mark2Coverage:new e.Pointer(e.uint16,yt),classCount:e.uint16,mark1Array:new e.Pointer(e.uint16,Ke),mark2Array:new e.Pointer(e.uint16,Ve)},7:yn,8:rn,9:{posFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Pn)}});Pn.versions[9].extension.type=Pn;var Hr=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,j),featureList:new e.Pointer(e.uint16,DA),lookupList:new e.Pointer(e.uint16,new lt(Pn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,Tn)}}),jn=new e.Array(e.uint16,e.uint16),sr=jn,vr=new e.Struct({glyph:e.uint16,compCount:e.uint16,components:new e.Array(e.uint16,function(tA){return tA.compCount-1})}),tr=new e.Array(new e.Pointer(e.uint16,vr),e.uint16),hr=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,yt),deltaGlyphID:e.int16},2:{coverage:new e.Pointer(e.uint16,yt),glyphCount:e.uint16,substitute:new e.LazyArray(e.uint16,"glyphCount")}}),2:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,yt),count:e.uint16,sequences:new e.LazyArray(new e.Pointer(e.uint16,jn),"count")},3:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,yt),count:e.uint16,alternateSet:new e.LazyArray(new e.Pointer(e.uint16,sr),"count")},4:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,yt),count:e.uint16,ligatureSets:new e.LazyArray(new e.Pointer(e.uint16,tr),"count")},5:yn,6:rn,7:{substFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,hr)},8:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,yt),backtrackCoverage:new e.Array(new e.Pointer(e.uint16,yt),"backtrackGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,yt),"lookaheadGlyphCount"),glyphCount:e.uint16,substitutes:new e.Array(e.uint16,"glyphCount")}});hr.versions[7].extension.type=hr;var Jr=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,j),featureList:new e.Pointer(e.uint16,DA),lookupList:new e.Pointer(e.uint16,new lt(hr))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,Tn)}}),qn=new e.Array(e.uint16,e.uint16),Or=new e.Struct({shrinkageEnableGSUB:new e.Pointer(e.uint16,qn),shrinkageDisableGSUB:new e.Pointer(e.uint16,qn),shrinkageEnableGPOS:new e.Pointer(e.uint16,qn),shrinkageDisableGPOS:new e.Pointer(e.uint16,qn),shrinkageJstfMax:new e.Pointer(e.uint16,new lt(Pn)),extensionEnableGSUB:new e.Pointer(e.uint16,qn),extensionDisableGSUB:new e.Pointer(e.uint16,qn),extensionEnableGPOS:new e.Pointer(e.uint16,qn),extensionDisableGPOS:new e.Pointer(e.uint16,qn),extensionJstfMax:new e.Pointer(e.uint16,new lt(Pn))}),mr=new e.Array(new e.Pointer(e.uint16,Or),e.uint16),kr=new e.Struct({tag:new e.String(4),jstfLangSys:new e.Pointer(e.uint16,mr)}),jr=new e.Struct({extenderGlyphs:new e.Pointer(e.uint16,new e.Array(e.uint16,e.uint16)),defaultLangSys:new e.Pointer(e.uint16,mr),langSysCount:e.uint16,langSysRecords:new e.Array(kr,"langSysCount")}),ui=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,jr,{type:"parent"})}),Kr=new e.Struct({version:e.uint32,scriptCount:e.uint16,scriptList:new e.Array(ui,"scriptCount")}),Vr=new e.Struct({entry:new(function(){function tA(V){this._size=V}var G=tA.prototype;return G.decode=function(M,x){switch(this.size(0,x)){case 1:return M.readUInt8();case 2:return M.readUInt16BE();case 3:return M.readUInt24BE();case 4:return M.readUInt32BE()}},G.size=function(M,x){return f.resolveLength(this._size,null,x)},tA}())(function(tA){return 1+((48&tA.parent.entryFormat)>>4)}),outerIndex:function(G){return G.entry>>1+(15&G.parent.entryFormat)},innerIndex:function(G){return G.entry&(1<<1+(15&G.parent.entryFormat))-1}}),_n=new e.Struct({entryFormat:e.uint16,mapCount:e.uint16,mapData:new e.Array(Vr,"mapCount")}),Ji=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,itemVariationStore:new e.Pointer(e.uint32,kt),advanceWidthMapping:new e.Pointer(e.uint32,_n),LSBMapping:new e.Pointer(e.uint32,_n),RSBMapping:new e.Pointer(e.uint32,_n)}),Oi=new e.Struct({format:e.uint32,length:e.uint32,offset:e.uint32}),go=new e.Struct({reserved:new e.Reserved(e.uint16,2),cbSignature:e.uint32,signature:new e.Buffer("cbSignature")}),ca=new e.Struct({ulVersion:e.uint32,usNumSigs:e.uint16,usFlag:e.uint16,signatures:new e.Array(Oi,"usNumSigs"),signatureBlocks:new e.Array(go,"usNumSigs")}),Bo=new e.Struct({rangeMaxPPEM:e.uint16,rangeGaspBehavior:new e.Bitfield(e.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),uo=new e.Struct({version:e.uint16,numRanges:e.uint16,gaspRanges:new e.Array(Bo,"numRanges")}),fo=new e.Struct({pixelSize:e.uint8,maximumWidth:e.uint8,widths:new e.Array(e.uint8,function(tA){return tA.parent.parent.maxp.numGlyphs})}),ho=new e.Struct({version:e.uint16,numRecords:e.int16,sizeDeviceRecord:e.int32,records:new e.Array(fo,"numRecords")}),Eo=new e.Struct({left:e.uint16,right:e.uint16,value:e.int16}),ga=new e.Struct({firstGlyph:e.uint16,nGlyphs:e.uint16,offsets:new e.Array(e.uint16,"nGlyphs"),max:function(G){return G.offsets.length&&Math.max.apply(Math,G.offsets)}}),wo=new e.Struct({off:function(G){return G._startOffset-G.parent.parent._startOffset},len:function(G){return G.parent.rowWidth/2*((G.parent.leftTable.max-G.off)/G.parent.rowWidth+1)},values:new e.LazyArray(e.int16,"len")}),Ba=new e.VersionedStruct("format",{0:{nPairs:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,pairs:new e.Array(Eo,"nPairs")},2:{rowWidth:e.uint16,leftTable:new e.Pointer(e.uint16,ga,{type:"parent"}),rightTable:new e.Pointer(e.uint16,ga,{type:"parent"}),array:new e.Pointer(e.uint16,wo,{type:"parent"})},3:{glyphCount:e.uint16,kernValueCount:e.uint8,leftClassCount:e.uint8,rightClassCount:e.uint8,flags:e.uint8,kernValue:new e.Array(e.int16,"kernValueCount"),leftClass:new e.Array(e.uint8,"glyphCount"),rightClass:new e.Array(e.uint8,"glyphCount"),kernIndex:new e.Array(e.uint8,function(tA){return tA.leftClassCount*tA.rightClassCount})}}),ua=new e.VersionedStruct("version",{0:{subVersion:e.uint16,length:e.uint16,format:e.uint8,coverage:new e.Bitfield(e.uint8,["horizontal","minimum","crossStream","override"]),subtable:Ba,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})},1:{length:e.uint32,coverage:new e.Bitfield(e.uint8,[null,null,null,null,null,"variation","crossStream","vertical"]),format:e.uint8,tupleIndex:e.uint16,subtable:Ba,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}}),Co=new e.VersionedStruct(e.uint16,{0:{nTables:e.uint16,tables:new e.Array(ua,"nTables")},1:{reserved:new e.Reserved(e.uint16),nTables:e.uint32,tables:new e.Array(ua,"nTables")}}),fa=new e.Struct({version:e.uint16,numGlyphs:e.uint16,yPels:new e.Array(e.uint8,"numGlyphs")}),Qo=new e.Struct({version:e.uint16,fontNumber:e.uint32,pitch:e.uint16,xHeight:e.uint16,style:e.uint16,typeFamily:e.uint16,capHeight:e.uint16,symbolSet:e.uint16,typeface:new e.String(16),characterComplement:new e.String(8),fileName:new e.String(6),strokeWeight:new e.String(1),widthType:new e.String(1),serifStyle:e.uint8,reserved:new e.Reserved(e.uint8)}),Mo=new e.Struct({bCharSet:e.uint8,xRatio:e.uint8,yStartRatio:e.uint8,yEndRatio:e.uint8}),po=new e.Struct({yPelHeight:e.uint16,yMax:e.int16,yMin:e.int16}),Io=new e.Struct({recs:e.uint16,startsz:e.uint8,endsz:e.uint8,entries:new e.Array(po,"recs")}),vo=new e.Struct({version:e.uint16,numRecs:e.uint16,numRatios:e.uint16,ratioRanges:new e.Array(Mo,"numRatios"),offsets:new e.Array(e.uint16,"numRatios"),groups:new e.Array(Io,"numRecs")}),mo=new e.Struct({version:e.uint16,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceHeightMax:e.int16,minTopSideBearing:e.int16,minBottomSideBearing:e.int16,yMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),Do=new e.Struct({advance:e.uint16,bearing:e.int16}),yo=new e.Struct({metrics:new e.LazyArray(Do,function(tA){return tA.parent.vhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.vhea.numberOfMetrics})}),ha=new e.Fixed(16,"BE",14),xo=new e.Struct({fromCoord:ha,toCoord:ha}),Fo=new e.Struct({pairCount:e.uint16,correspondence:new e.Array(xo,"pairCount")}),Yo=new e.Struct({version:e.fixed32,axisCount:e.uint32,segment:new e.Array(Fo,"axisCount")}),To=function(){function tA(V,M,x){this.type=V,this.stream=M,this.parent=x,this.base=this.stream.pos,this._items=[]}var G=tA.prototype;return G.getItem=function(M){if(null==this._items[M]){var x=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*M,this._items[M]=this.type.decode(this.stream,this.parent),this.stream.pos=x}return this._items[M]},G.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},tA}(),er=function(tA){function G(M){return tA.call(this,M,0)||this}return h(G,tA),G.prototype.decode=function(x,z){return new To(this.type,x,z)},G}(e.Array),Er=function(G){void 0===G&&(G=e.uint16),G=new(function(){function aA(iA){this.type=iA}var oA=aA.prototype;return oA.decode=function(SA,kA){return this.type.decode(SA,kA=kA.parent.parent)},oA.size=function(SA,kA){return this.type.size(SA,kA=kA.parent.parent)},oA.encode=function(SA,kA,ct){return this.type.encode(SA,kA,ct=ct.parent.parent)},aA}())(G);var M=new e.Struct({unitSize:e.uint16,nUnits:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16}),x=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,value:G}),z=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,values:new e.Pointer(e.uint16,new e.Array(G,function(aA){return aA.lastGlyph-aA.firstGlyph+1}),{type:"parent"})}),AA=new e.Struct({glyph:e.uint16,value:G});return new e.VersionedStruct(e.uint16,{0:{values:new er(G)},2:{binarySearchHeader:M,segments:new e.Array(x,function(aA){return aA.binarySearchHeader.nUnits})},4:{binarySearchHeader:M,segments:new e.Array(z,function(aA){return aA.binarySearchHeader.nUnits})},6:{binarySearchHeader:M,segments:new e.Array(AA,function(aA){return aA.binarySearchHeader.nUnits})},8:{firstGlyph:e.uint16,count:e.uint16,values:new e.Array(G,"count")}})};function fi(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var V=Object.assign({newState:e.uint16,flags:e.uint16},tA),M=new e.Struct(V),x=new er(new e.Array(e.uint16,function(AA){return AA.nClasses}));return new e.Struct({nClasses:e.uint32,classTable:new e.Pointer(e.uint32,new Er(G)),stateArray:new e.Pointer(e.uint32,x),entryTable:new e.Pointer(e.uint32,new er(M))})}var So=new e.VersionedStruct("format",{0:{deltas:new e.Array(e.int16,32)},1:{deltas:new e.Array(e.int16,32),mappingData:new Er(e.uint16)},2:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32)},3:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32),mappingData:new Er(e.uint16)}}),Ea=new e.Struct({version:e.fixed32,format:e.uint16,defaultBaseline:e.uint16,subtable:So}),Uo=new e.Struct({setting:e.uint16,nameIndex:e.int16,name:function(G){return G.parent.parent.parent.name.records.fontFeatures[G.nameIndex]}}),wa=new e.Struct({feature:e.uint16,nSettings:e.uint16,settingTable:new e.Pointer(e.uint32,new e.Array(Uo,"nSettings"),{type:"parent"}),featureFlags:new e.Bitfield(e.uint8,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:e.uint8,nameIndex:e.int16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameIndex]}}),Rr=new e.Struct({version:e.fixed32,featureNameCount:e.uint16,reserved1:new e.Reserved(e.uint16),reserved2:new e.Reserved(e.uint32),featureNames:new e.Array(wa,"featureNameCount")}),cr=new e.Struct({axisTag:new e.String(4),minValue:e.fixed32,defaultValue:e.fixed32,maxValue:e.fixed32,flags:e.uint16,nameID:e.uint16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameID]}}),Dr=new e.Struct({nameID:e.uint16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameID]},flags:e.uint16,coord:new e.Array(e.fixed32,function(tA){return tA.parent.axisCount}),postscriptNameID:new e.Optional(e.uint16,function(tA){return tA.parent.instanceSize-tA._currentOffset>0})}),Po=new e.Struct({version:e.fixed32,offsetToData:e.uint16,countSizePairs:e.uint16,axisCount:e.uint16,axisSize:e.uint16,instanceCount:e.uint16,instanceSize:e.uint16,axis:new e.Array(cr,"axisCount"),instance:new e.Array(Dr,"instanceCount")}),Ro=new e.Fixed(16,"BE",14),zo=function(){function tA(){}return tA.decode=function(V,M){return M.flags?V.readUInt32BE():2*V.readUInt16BE()},tA}(),Lo=new e.Struct({version:e.uint16,reserved:new e.Reserved(e.uint16),axisCount:e.uint16,globalCoordCount:e.uint16,globalCoords:new e.Pointer(e.uint32,new e.Array(new e.Array(Ro,"axisCount"),"globalCoordCount")),glyphCount:e.uint16,flags:e.uint16,offsetToData:e.uint32,offsets:new e.Array(new e.Pointer(zo,"void",{relativeTo:function(G){return G.offsetToData},allowNull:!1}),function(tA){return tA.glyphCount+1})}),bo=new e.Struct({length:e.uint16,coverage:e.uint16,subFeatureFlags:e.uint32,stateTable:new function No(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var V=new e.Struct({version:function(){return 8},firstGlyph:e.uint16,values:new e.Array(e.uint8,e.uint16)}),M=Object.assign({newStateOffset:e.uint16,newState:function(oA){return(oA.newStateOffset-(oA.parent.stateArray.base-oA.parent._startOffset))/oA.parent.nClasses},flags:e.uint16},tA),x=new e.Struct(M),z=new er(new e.Array(e.uint8,function(aA){return aA.nClasses}));return new e.Struct({nClasses:e.uint16,classTable:new e.Pointer(e.uint16,V),stateArray:new e.Pointer(e.uint16,z),entryTable:new e.Pointer(e.uint16,new er(x))})}}),Go=new e.Struct({justClass:e.uint32,beforeGrowLimit:e.fixed32,beforeShrinkLimit:e.fixed32,afterGrowLimit:e.fixed32,afterShrinkLimit:e.fixed32,growFlags:e.uint16,shrinkFlags:e.uint16}),Ho=new e.Array(Go,e.uint32),Jo=new e.VersionedStruct("actionType",{0:{lowerLimit:e.fixed32,upperLimit:e.fixed32,order:e.uint16,glyphs:new e.Array(e.uint16,e.uint16)},1:{addGlyph:e.uint16},2:{substThreshold:e.fixed32,addGlyph:e.uint16,substGlyph:e.uint16},3:{},4:{variationAxis:e.uint32,minimumLimit:e.fixed32,noStretchValue:e.fixed32,maximumLimit:e.fixed32},5:{flags:e.uint16,glyph:e.uint16}}),Oo=new e.Struct({actionClass:e.uint16,actionType:e.uint16,actionLength:e.uint32,actionData:Jo,padding:new e.Reserved(e.uint8,function(tA){return tA.actionLength-tA._currentOffset})}),ko=new e.Array(Oo,e.uint32),jo=new e.Struct({lookupTable:new Er(new e.Pointer(e.uint16,ko))}),Ca=new e.Struct({classTable:new e.Pointer(e.uint16,bo,{type:"parent"}),wdcOffset:e.uint16,postCompensationTable:new e.Pointer(e.uint16,jo,{type:"parent"}),widthDeltaClusters:new Er(new e.Pointer(e.uint16,Ho,{type:"parent",relativeTo:function(G){return G.wdcOffset}}))}),Ko=new e.Struct({version:e.uint32,format:e.uint16,horizontal:new e.Pointer(e.uint16,Ca),vertical:new e.Pointer(e.uint16,Ca)}),Vo={action:e.uint16},Wo={markIndex:e.uint16,currentIndex:e.uint16},Qa={currentInsertIndex:e.uint16,markedInsertIndex:e.uint16},Zo=new e.Struct({items:new er(new e.Pointer(e.uint32,new Er))}),Xo=new e.VersionedStruct("type",{0:{stateTable:new fi},1:{stateTable:new fi(Wo),substitutionTable:new e.Pointer(e.uint32,Zo)},2:{stateTable:new fi(Vo),ligatureActions:new e.Pointer(e.uint32,new er(e.uint32)),components:new e.Pointer(e.uint32,new er(e.uint16)),ligatureList:new e.Pointer(e.uint32,new er(e.uint16))},4:{lookupTable:new Er},5:{stateTable:new fi(Qa),insertionActions:new e.Pointer(e.uint32,new er(e.uint16))}}),qo=new e.Struct({length:e.uint32,coverage:e.uint24,type:e.uint8,subFeatureFlags:e.uint32,table:Xo,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}),_o=new e.Struct({featureType:e.uint16,featureSetting:e.uint16,enableFlags:e.uint32,disableFlags:e.uint32}),$o=new e.Struct({defaultFlags:e.uint32,chainLength:e.uint32,nFeatureEntries:e.uint32,nSubtables:e.uint32,features:new e.Array(_o,"nFeatureEntries"),subtables:new e.Array(qo,"nSubtables")}),As=new e.Struct({version:e.uint16,unused:new e.Reserved(e.uint16),nChains:e.uint32,chains:new e.Array($o,"nChains")}),ts=new e.Struct({left:e.int16,top:e.int16,right:e.int16,bottom:e.int16}),es=new e.Struct({version:e.fixed32,format:e.uint16,lookupTable:new Er(ts)}),ce={};ce.cmap=yA,ce.head=FA,ce.hhea=_,ce.hmtx=uA,ce.maxp=QA,ce.name=W,ce["OS/2"]=mA,ce.post=EA,ce.fpgm=et,ce.loca=st,ce.prep=TA,ce["cvt "]=GA,ce.glyf=it,ce["CFF "]=re,ce.CFF2=re,ce.VORG=Rt,ce.EBLC=en,ce.CBLC=ce.EBLC,ce.sbix=sn,ce.COLR=An,ce.CPAL=un,ce.BASE=K,ce.GDEF=mt,ce.GPOS=Hr,ce.GSUB=Jr,ce.JSTF=Kr,ce.HVAR=Ji,ce.DSIG=ca,ce.gasp=uo,ce.hdmx=ho,ce.kern=Co,ce.LTSH=fa,ce.PCLT=Qo,ce.VDMX=vo,ce.vhea=mo,ce.vmtx=yo,ce.avar=Yo,ce.bsln=Ea,ce.feat=Rr,ce.fvar=Po,ce.gvar=Lo,ce.just=Ko,ce.morx=As,ce.opbd=es;var wr,ns=new e.Struct({tag:new e.String(4),checkSum:e.uint32,offset:new e.Pointer(e.uint32,"void",{type:"global"}),length:e.uint32}),hi=new e.Struct({tag:new e.String(4),numTables:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,tables:new e.Array(ns,"numTables")});function Ei(tA,G){for(var V=0,M=tA.length-1;V<=M;){var x=V+M>>1,z=G(tA[x]);if(z<0)M=x-1;else{if(!(z>0))return x;V=x+1}}return-1}function zr(tA,G){for(var V=[];tA>1;if(MoA.endCode.get(kA))){var ct=oA.idRangeOffset.get(kA),_A=void 0;if(0===ct)_A=M+oA.idDelta.get(kA);else{var Bt=ct/2+(M-oA.startCode.get(kA))-(oA.segCount-kA);0!==(_A=oA.glyphIndexArray.get(Bt)||0)&&(_A+=oA.idDelta.get(kA))}return 65535&_A}iA=kA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return oA.glyphIndices.get(M-oA.firstCode)||0;case 12:case 13:for(var pt=0,Dt=oA.nGroups-1;pt<=Dt;){var Ht=pt+Dt>>1,te=oA.groups.get(Ht);if(Mte.endCharCode))return 12===oA.version?te.glyphID+(M-te.startCharCode):te.glyphID;pt=Ht+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(oA.version))}},G.getVariationSelector=function(M,x){if(!this.uvs)return 0;var z=this.uvs.varSelectors.toArray(),AA=Ei(z,function(oA){return x-oA.varSelector}),aA=z[AA];return-1!==AA&&aA.defaultUVS&&(AA=Ei(aA.defaultUVS,function(oA){return MoA.startUnicodeValue+oA.additionalCount?1:0})),-1!==AA&&aA.nonDefaultUVS&&-1!==(AA=Ei(aA.nonDefaultUVS,function(oA){return M-oA.unicodeValue}))?aA.nonDefaultUVS[AA].glyphID:0},G.getCharacterSet=function(){var M=this.cmap;switch(M.version){case 0:return zr(0,M.codeMap.length);case 4:for(var x=[],z=M.endCode.toArray(),AA=0;AA=Ae.glyphID&&M<=Ae.glyphID+(Ae.endCharCode-Ae.startCharCode)&&Dt.push(Ae.startCharCode+(M-Ae.glyphID))}return Dt;case 13:for(var Qe,oe=[],fe=B(x.groups.toArray());!(Qe=fe()).done;){var de=Qe.value;M===de.glyphID&&oe.push.apply(oe,zr(de.startCharCode,de.endCharCode+1))}return oe;default:throw new Error("Unknown cmap format ".concat(x.version))}},tA}()).prototype,"getCharacterSet",[L],Object.getOwnPropertyDescriptor(wr.prototype,"getCharacterSet"),wr.prototype),F(wr.prototype,"codePointsForGlyph",[L],Object.getOwnPropertyDescriptor(wr.prototype,"codePointsForGlyph"),wr.prototype),wr),ji=function(){function tA(V){this.kern=V.kern}var G=tA.prototype;return G.process=function(M,x){for(var z=0;z=0&&(iA=SA.pairs[kA].value);break;case 2:var _A=0;x>=SA.rightTable.firstGlyph&&x=SA.leftTable.firstGlyph&&M=SA.glyphCount||x>=SA.glyphCount)return 0;iA=SA.kernValue[SA.kernIndex[SA.leftClass[M]*SA.rightClassCount+SA.rightClass[x]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(oA.format))}oA.coverage.override?z=iA:z+=iA}}return z},tA}(),rs=function(){function tA(V){this.font=V}var G=tA.prototype;return G.positionGlyphs=function(M,x){for(var z=0,AA=0,aA=0;aA1&&(oA.minX+=(aA.codePoints.length-1)*oA.width/aA.codePoints.length);for(var iA=-x[z].xAdvance,SA=0,kA=this.font.unitsPerEm/16,ct=z+1;ct<=AA;ct++){var _A=M[ct],Bt=_A.cbox,pt=x[ct],Dt=this.getCombiningClass(_A.codePoints[0]);if("Not_Reordered"!==Dt){switch(pt.xOffset=pt.yOffset=0,Dt){case"Double_Above":case"Double_Below":pt.xOffset+=oA.minX-Bt.width/2-Bt.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":pt.xOffset+=oA.minX-Bt.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":pt.xOffset+=oA.maxX-Bt.width-Bt.minX;break;default:pt.xOffset+=oA.minX+(oA.width-Bt.width)/2-Bt.minX}switch(Dt){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===Dt||"Attached_Below"===Dt)&&(oA.minY+=kA),pt.yOffset=-oA.minY-Bt.maxY,oA.minY+=Bt.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===Dt||"Attached_Above_Right"===Dt)&&(oA.maxY+=kA),pt.yOffset=oA.maxY-Bt.minY,oA.maxY+=Bt.height}pt.xAdvance=pt.yAdvance=0,pt.xOffset+=iA,pt.yOffset+=SA}else iA-=pt.xAdvance,SA-=pt.yAdvance}},G.getCombiningClass=function(M){var x=w.getCombiningClass(M);if(3584==(-256&M))if("Not_Reordered"===x)switch(M){case 3633:case 3636:case 3637:case 3638:case 3639:case 3655:case 3660:case 3645:case 3662:return"Above_Right";case 3761:case 3764:case 3765:case 3766:case 3767:case 3771:case 3788:case 3789:return"Above";case 3772:return"Below"}else if(3642===M)return"Below_Right";switch(x){case"CCC10":case"CCC11":case"CCC12":case"CCC13":case"CCC14":case"CCC15":case"CCC16":case"CCC17":case"CCC18":case"CCC20":case"CCC22":case"CCC29":case"CCC32":case"CCC118":case"CCC129":case"CCC132":return"Below";case"CCC23":return"Attached_Above";case"CCC24":case"CCC107":return"Above_Right";case"CCC25":case"CCC19":return"Above_Left";case"CCC26":case"CCC27":case"CCC28":case"CCC30":case"CCC31":case"CCC33":case"CCC34":case"CCC35":case"CCC36":case"CCC122":case"CCC130":return"Above";case"CCC21":break;case"CCC103":return"Below_Right"}return x},tA}(),Lr=function(){function tA(V,M,x,z){void 0===V&&(V=1/0),void 0===M&&(M=1/0),void 0===x&&(x=-1/0),void 0===z&&(z=-1/0),this.minX=V,this.minY=M,this.maxX=x,this.maxY=z}var G=tA.prototype;return G.addPoint=function(M,x){Math.abs(M)!==1/0&&(Mthis.maxX&&(this.maxX=M)),Math.abs(x)!==1/0&&(xthis.maxY&&(this.maxY=x))},G.copy=function(){return new tA(this.minX,this.minY,this.maxX,this.maxY)},l(tA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}]),tA}(),br={Caucasian_Albanian:"aghb",Arabic:"arab",Imperial_Aramaic:"armi",Armenian:"armn",Avestan:"avst",Balinese:"bali",Bamum:"bamu",Bassa_Vah:"bass",Batak:"batk",Bengali:["bng2","beng"],Bopomofo:"bopo",Brahmi:"brah",Braille:"brai",Buginese:"bugi",Buhid:"buhd",Chakma:"cakm",Canadian_Aboriginal:"cans",Carian:"cari",Cham:"cham",Cherokee:"cher",Coptic:"copt",Cypriot:"cprt",Cyrillic:"cyrl",Devanagari:["dev2","deva"],Deseret:"dsrt",Duployan:"dupl",Egyptian_Hieroglyphs:"egyp",Elbasan:"elba",Ethiopic:"ethi",Georgian:"geor",Glagolitic:"glag",Gothic:"goth",Grantha:"gran",Greek:"grek",Gujarati:["gjr2","gujr"],Gurmukhi:["gur2","guru"],Hangul:"hang",Han:"hani",Hanunoo:"hano",Hebrew:"hebr",Hiragana:"hira",Pahawh_Hmong:"hmng",Katakana_Or_Hiragana:"hrkt",Old_Italic:"ital",Javanese:"java",Kayah_Li:"kali",Katakana:"kana",Kharoshthi:"khar",Khmer:"khmr",Khojki:"khoj",Kannada:["knd2","knda"],Kaithi:"kthi",Tai_Tham:"lana",Lao:"lao ",Latin:"latn",Lepcha:"lepc",Limbu:"limb",Linear_A:"lina",Linear_B:"linb",Lisu:"lisu",Lycian:"lyci",Lydian:"lydi",Mahajani:"mahj",Mandaic:"mand",Manichaean:"mani",Mende_Kikakui:"mend",Meroitic_Cursive:"merc",Meroitic_Hieroglyphs:"mero",Malayalam:["mlm2","mlym"],Modi:"modi",Mongolian:"mong",Mro:"mroo",Meetei_Mayek:"mtei",Myanmar:["mym2","mymr"],Old_North_Arabian:"narb",Nabataean:"nbat",Nko:"nko ",Ogham:"ogam",Ol_Chiki:"olck",Old_Turkic:"orkh",Oriya:["ory2","orya"],Osmanya:"osma",Palmyrene:"palm",Pau_Cin_Hau:"pauc",Old_Permic:"perm",Phags_Pa:"phag",Inscriptional_Pahlavi:"phli",Psalter_Pahlavi:"phlp",Phoenician:"phnx",Miao:"plrd",Inscriptional_Parthian:"prti",Rejang:"rjng",Runic:"runr",Samaritan:"samr",Old_South_Arabian:"sarb",Saurashtra:"saur",Shavian:"shaw",Sharada:"shrd",Siddham:"sidd",Khudawadi:"sind",Sinhala:"sinh",Sora_Sompeng:"sora",Sundanese:"sund",Syloti_Nagri:"sylo",Syriac:"syrc",Tagbanwa:"tagb",Takri:"takr",Tai_Le:"tale",New_Tai_Lue:"talu",Tamil:["tml2","taml"],Tai_Viet:"tavt",Telugu:["tel2","telu"],Tifinagh:"tfng",Tagalog:"tglg",Thaana:"thaa",Thai:"thai",Tibetan:"tibt",Tirhuta:"tirh",Ugaritic:"ugar",Vai:"vai ",Warang_Citi:"wara",Old_Persian:"xpeo",Cuneiform:"xsux",Yi:"yi ",Inherited:"zinh",Common:"zyyy",Unknown:"zzzz"},Ki={};for(var Vi in br){var Wi=br[Vi];if(Array.isArray(Wi))for(var da,is=B(Wi);!(da=is()).done;)Ki[da.value]=Vi;else Ki[Wi]=Vi}var cs={arab:!0,hebr:!0,syrc:!0,thaa:!0,cprt:!0,khar:!0,phnx:!0,"nko ":!0,lydi:!0,avst:!0,armi:!0,phli:!0,prti:!0,sarb:!0,orkh:!0,samr:!0,mand:!0,merc:!0,mero:!0,mani:!0,mend:!0,nbat:!0,narb:!0,palm:!0,phlp:!0};function Ma(tA){return cs[tA]?"rtl":"ltr"}for(var gs=function(){function tA(G,V,M,x,z){if(this.glyphs=G,this.positions=null,this.script=M,this.language=x||null,this.direction=z||Ma(M),this.features={},Array.isArray(V))for(var aA,AA=B(V);!(aA=AA()).done;)this.features[aA.value]=!0;else"object"==typeof V&&(this.features=V)}return l(tA,[{key:"advanceWidth",get:function(){for(var x,V=0,M=B(this.positions);!(x=M()).done;)V+=x.value.xAdvance;return V}},{key:"advanceHeight",get:function(){for(var x,V=0,M=B(this.positions);!(x=M()).done;)V+=x.value.yAdvance;return V}},{key:"bbox",get:function(){for(var V=new Lr,M=0,x=0,z=0;z>1]).firstGlyph)return null;if(MaA.lastGlyph))return 2===this.table.version?aA.value:aA.values[M-aA.firstGlyph];x=AA+1}}return null;case 6:for(var oA=0,iA=this.table.binarySearchHeader.nUnits-1;oA<=iA;){var AA,aA;if(65535===(aA=this.table.segments[AA=oA+iA>>1]).glyph)return null;if(MaA.glyph))return aA.value;oA=AA+1}}return null;case 8:return this.table.values[M-this.table.firstGlyph];default:throw new Error("Unknown lookup table format: ".concat(this.table.version))}},G.glyphsForValue=function(M){var x=[];switch(this.table.version){case 2:case 4:for(var AA,z=B(this.table.segments);!(AA=z()).done;){var aA=AA.value;if(2===this.table.version&&aA.value===M)x.push.apply(x,zr(aA.firstGlyph,aA.lastGlyph+1));else for(var oA=0;oA=-1;){var iA=null,SA=1,kA=!0;aA===M.length||-1===aA?SA=0:65535===(iA=M[aA]).id?SA=2:null==(SA=this.lookupTable.lookup(iA.id))&&(SA=1);var ct=this.stateTable.stateArray.getItem(AA),Bt=this.stateTable.entryTable.getItem(ct[SA]);0!==SA&&2!==SA&&(z(iA,Bt,aA),kA=!(16384&Bt.flags)),AA=Bt.newState,kA&&(aA+=oA)}return M},G.traverse=function(M,x,z){if(void 0===x&&(x=0),void 0===z&&(z=new Set),!z.has(x)){z.add(x);for(var AA=this.stateTable,aA=AA.nClasses,iA=AA.entryTable,SA=AA.stateArray.getItem(x),kA=4;kA=0;)65535===M[Dt].id&&M.splice(Dt,1),Dt--;return M},G.processSubtable=function(M,x){if(this.subtable=M,this.glyphs=x,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var z=this.getStateMachine(M),AA=this.getProcessor();return z.process(this.glyphs,!!(4194304&this.subtable.coverage),AA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},G.getStateMachine=function(M){return new ws(M.table.stateTable)},G.getProcessor=function(){switch(this.subtable.type){case 0:return this.processIndicRearragement;case 1:return this.processContextualSubstitution;case 2:return this.processLigature;case 4:return this.processNoncontextualSubstitutions;case 5:return this.processGlyphInsertion;default:throw new Error("Invalid morx subtable type: ".concat(this.subtable.type))}},G.processIndicRearragement=function(M,x,z){32768&x.flags&&(this.firstGlyph=z),8192&x.flags&&(this.lastGlyph=z),function Ys(tA,G,V,M){switch(G){case 0:return tA;case 1:return Rn(tA,[V,1],[M,0]);case 2:return Rn(tA,[V,0],[M,1]);case 3:return Rn(tA,[V,1],[M,1]);case 4:return Rn(tA,[V,2],[M,0]);case 5:return Rn(tA,[V,2],[M,0],!0,!1);case 6:return Rn(tA,[V,0],[M,2]);case 7:return Rn(tA,[V,0],[M,2],!1,!0);case 8:return Rn(tA,[V,1],[M,2]);case 9:return Rn(tA,[V,1],[M,2],!1,!0);case 10:return Rn(tA,[V,2],[M,1]);case 11:return Rn(tA,[V,2],[M,1],!0,!1);case 12:return Rn(tA,[V,2],[M,2]);case 13:return Rn(tA,[V,2],[M,2],!0,!1);case 14:return Rn(tA,[V,2],[M,2],!1,!0);case 15:return Rn(tA,[V,2],[M,2],!0,!0);default:throw new Error("Unknown verb: ".concat(G))}}(this.glyphs,15&x.flags,this.firstGlyph,this.lastGlyph)},G.processContextualSubstitution=function(M,x,z){var AA=this.subtable.table.substitutionTable.items;if(65535!==x.markIndex){var aA=AA.getItem(x.markIndex);(iA=new Mi(aA).lookup((M=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(iA,M.codePoints))}if(65535!==x.currentIndex){var iA,SA=AA.getItem(x.currentIndex);(iA=new Mi(SA).lookup((M=this.glyphs[z]).id))&&(this.glyphs[z]=this.font.getGlyph(iA,M.codePoints))}32768&x.flags&&(this.markedGlyph=z)},G.processLigature=function(M,x,z){if(32768&x.flags&&this.ligatureStack.push(z),8192&x.flags){for(var AA,aA=this.subtable.table.ligatureActions,oA=this.subtable.table.components,iA=this.subtable.table.ligatureList,SA=x.action,kA=!1,ct=0,_A=[],Bt=[];!kA;){var pt,Dt=this.ligatureStack.pop();(pt=_A).unshift.apply(pt,this.glyphs[Dt].codePoints);var Ht=aA.getItem(SA++);kA=!!(2147483648&Ht);var te=!!(1073741824&Ht),Ae=(1073741823&Ht)<<2>>2;if(ct+=oA.getItem(Ae+=this.glyphs[Dt].id),kA||te){var fe=iA.getItem(ct);this.glyphs[Dt]=this.font.getGlyph(fe,_A),Bt.push(Dt),ct=0,_A=[]}else this.glyphs[Dt]=this.font.getGlyph(65535)}(AA=this.ligatureStack).push.apply(AA,Bt)}},G.processNoncontextualSubstitutions=function(M,x,z){var AA=new Mi(M.table.lookupTable);for(z=0;z>>5,!!(1024&x.flags)),65535!==x.currentInsertIndex&&this._insertGlyphs(z,x.currentInsertIndex,(992&x.flags)>>>5,!!(2048&x.flags))},G.getSupportedFeatures=function(){for(var z,M=[],x=B(this.morx.chains);!(z=x()).done;)for(var oA,aA=B(z.value.features);!(oA=aA()).done;){var iA=oA.value;M.push([iA.featureType,iA.featureSetting])}return M},G.generateInputs=function(M){return this.inputCache||this.generateInputCache(),this.inputCache[M]||[]},G.generateInputCache=function(){this.inputCache={};for(var x,M=B(this.morx.chains);!(x=M()).done;)for(var oA,z=x.value,AA=z.defaultFlags,aA=B(z.subtables);!(oA=aA()).done;){var iA=oA.value;iA.subFeatureFlags&AA&&this.generateInputsForSubtable(iA)}},G.generateInputsForSubtable=function(M){var x=this;if(2===M.type){if(4194304&M.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=M,this.ligatureStack=[];var AA=this.getStateMachine(M),aA=this.getProcessor(),oA=[],iA=[];this.glyphs=[],AA.traverse({enter:function(kA,ct){var _A=x.glyphs;iA.push({glyphs:_A.slice(),ligatureStack:x.ligatureStack.slice()});var Bt=x.font.getGlyph(kA);oA.push(Bt),_A.push(oA[oA.length-1]),aA(_A[_A.length-1],ct,_A.length-1);for(var pt=0,Dt=0,Ht=0;Ht<_A.length&&pt<=1;Ht++)65535!==_A[Ht].id&&(pt++,Dt=_A[Ht].id);if(1===pt){var te=oA.map(function(oe){return oe.id}),Ae=x.inputCache[Dt];Ae?Ae.push(te):x.inputCache[Dt]=[te]}},exit:function(){var kA=iA.pop();x.glyphs=kA.glyphs,x.ligatureStack=kA.ligatureStack,oA.pop()}})}},tA}()).prototype,"getStateMachine",[L],Object.getOwnPropertyDescriptor(Zr.prototype,"getStateMachine"),Zr.prototype),Zr);function Rn(tA,G,V,M,x){void 0===M&&(M=!1),void 0===x&&(x=!1);var z=tA.splice(V[0]-(V[1]-1),V[1]);x&&z.reverse();var AA=tA.splice.apply(tA,[G[0],G[1]].concat(z));return M&&AA.reverse(),tA.splice.apply(tA,[V[0]-(G[1]-1),0].concat(AA)),tA}var Ts=function(){function tA(V){this.font=V,this.morxProcessor=new Fs(V),this.fallbackPosition=!1}var G=tA.prototype;return G.substitute=function(M){"rtl"===M.direction&&M.glyphs.reverse(),this.morxProcessor.process(M.glyphs,function us(tA){var G={};for(var V in tA){var M;(M=Ci[V])&&(null==G[M[0]]&&(G[M[0]]={}),G[M[0]][M[1]]=tA[V])}return G}(M.features))},G.getAvailableFeatures=function(M,x){return function fs(tA){var G={};if(Array.isArray(tA))for(var V=0;V0&&M.applyFeatures(oA,x,z)}},tA}(),Ss=["rvrn"],Us=["ccmp","locl","rlig","mark","mkmk"],Ps=["frac","numr","dnom"],Rs=["calt","clig","liga","rclt","curs","kern"],zs={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},Cr=function(){function tA(){}return tA.plan=function(V,M,x){this.planPreprocessing(V),this.planFeatures(V),this.planPostprocessing(V,x),V.assignGlobalFeatures(M),this.assignFeatures(V,M)},tA.planPreprocessing=function(V){V.add({global:[].concat(Ss,zs[V.direction]),local:Ps})},tA.planFeatures=function(V){},tA.planPostprocessing=function(V,M){V.add([].concat(Us,Rs)),V.setFeatureOverrides(M)},tA.assignFeatures=function(V,M){for(var x=0;x0&&w.isDigit(M[AA-1].codePoints[0]);)M[AA-1].features.numr=!0,M[AA-1].features.frac=!0,AA--;for(;aAthis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]},G.next=function(){return this.move(1)},G.prev=function(){return this.move(-1)},G.peek=function(M){void 0===M&&(M=1);var x=this.index,z=this.increment(M);return this.index=x,z},G.peekIndex=function(M){void 0===M&&(M=1);var x=this.index;this.increment(M);var z=this.index;return this.index=x,z},G.increment=function(M){void 0===M&&(M=1);var x=M<0?-1:1;for(M=Math.abs(M);M--;)this.move(x);return this.glyphs[this.index]},l(tA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}]),tA}(),Os=["DFLT","dflt","latn"],Mr=function(){function tA(V,M){this.font=V,this.table=M,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=V._variationProcessor?this.findVariationsIndex(V._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}var G=tA.prototype;return G.findScript=function(M){if(null==this.table.scriptList)return null;Array.isArray(M)||(M=[M]);for(var z,x=B(M);!(z=x()).done;)for(var oA,AA=z.value,aA=B(this.table.scriptList);!(oA=aA()).done;){var iA=oA.value;if(iA.tag===AA)return iA}return null},G.selectScript=function(M,x,z){var aA,AA=!1;if(!this.script||M!==this.scriptTag){if((aA=this.findScript(M))||(aA=this.findScript(Os)),!aA)return this.scriptTag;this.scriptTag=aA.tag,this.script=aA.script,this.language=null,this.languageTag=null,AA=!0}if((!z||z!==this.direction)&&(this.direction=z||Ma(M)),x&&x.length<4&&(x+=" ".repeat(4-x.length)),!x||x!==this.languageTag){this.language=null;for(var iA,oA=B(this.script.langSysRecords);!(iA=oA()).done;){var SA=iA.value;if(SA.tag===x){this.language=SA.langSys,this.languageTag=SA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),AA=!0}if(AA&&(this.features={},this.language))for(var ct,kA=B(this.language.featureIndexes);!(ct=kA()).done;){var _A=ct.value,Bt=this.table.featureList[_A],pt=this.substituteFeatureForVariations(_A);this.features[Bt.tag]=pt||Bt.feature}return this.scriptTag},G.lookupsForFeatures=function(M,x){void 0===M&&(M=[]);for(var aA,z=[],AA=B(M);!(aA=AA()).done;){var oA=aA.value,iA=this.features[oA];if(iA)for(var kA,SA=B(iA.lookupListIndexes);!(kA=SA()).done;){var ct=kA.value;x&&-1!==x.indexOf(ct)||z.push({feature:oA,index:ct,lookup:this.table.lookupList.get(ct)})}}return z.sort(function(_A,Bt){return _A.index-Bt.index}),z},G.substituteFeatureForVariations=function(M){if(-1===this.variationsIndex)return null;for(var aA,AA=B(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(aA=AA()).done;){var oA=aA.value;if(oA.featureIndex===M)return oA.alternateFeatureTable}return null},G.findVariationsIndex=function(M){var x=this.table.featureVariations;if(!x)return-1;for(var z=x.featureVariationRecords,AA=0;AA=0})},G.getClassID=function(M,x){switch(x.version){case 1:var z=M-x.startGlyph;if(z>=0&&z0&&this.codePoints.every(w.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}]),tA}(),Ya=function(tA){function G(){return tA.apply(this,arguments)||this}return h(G,tA),G.planFeatures=function(M){M.add(["ljmo","vjmo","tjmo"],!1)},G.assignFeatures=function(M,x){for(var z=0,AA=0;AAFr){var ct=$r(V,AA,M.features);ct.features.tjmo=!0,kA.push(ct)}return tA.splice.apply(tA,[G,1].concat(kA)),G+kA.length-1}function o0(tA,G,V){var oA,iA,SA,kA,M=tA[G],z=_r(tA[G].codePoints[0]),AA=tA[G-1].codePoints[0],aA=_r(AA);if(4===aA&&3===z)oA=AA,kA=M;else{2===z?(iA=tA[G-1],SA=M):(iA=tA[G-2],SA=tA[G-1],kA=M);var ct=iA.codePoints[0],_A=SA.codePoints[0];(function(G){return 4352<=G&&G<=4370})(ct)&&function(G){return 4449<=G&&G<=4469}(_A)&&(oA=Gr+28*(21*(ct-4352)+(_A-4449)))}var Bt=kA&&kA.codePoints[0]||Fr;if(null!=oA&&(Bt===Fr||function(G){return 1<=G&&G<=4546}(Bt))){var pt=oA+(Bt-Fr);if(V.hasGlyphForCodePoint(pt)){var Dt=2===aA?3:2;return tA.splice(G-Dt+1,Dt,$r(V,pt,M.features)),G-Dt+1}}return iA&&(iA.features.ljmo=!0),SA&&(SA.features.vjmo=!0),kA&&(kA.features.tjmo=!0),4===aA?(Pa(tA,G-1,V),G+1):G}function l0(tA,G,V){var M=tA[G];if(0!==V.glyphForCodePoint(tA[G].codePoints[0]).advanceWidth){var AA=function s0(tA){switch(_r(tA)){case 4:case 5:return 1;case 2:return 2;case 3:return 3}}(tA[G-1].codePoints[0]);return tA.splice(G,1),tA.splice(G-AA,0,M)}}function c0(tA,G,V){var M=tA[G],x=tA[G].codePoints[0];if(V.hasGlyphForCodePoint(9676)){var z=$r(V,9676,M.features),AA=0===V.glyphForCodePoint(x).advanceWidth?G:G+1;tA.splice(AA,0,z),G++}return G}var Ni={categories:["O","IND","S","GB","B","FM","CGJ","VMAbv","VMPst","VAbv","VPst","CMBlw","VPre","VBlw","H","VMBlw","CMAbv","MBlw","CS","R","SUB","MPst","MPre","FAbv","FPst","FBlw","null","SMAbv","SMBlw","VMPre","ZWNJ","ZWJ","WJ","M","VS","N","HN","MAbv"],decompositions:{2507:[2503,2494],2508:[2503,2519],2888:[2887,2902],2891:[2887,2878],2892:[2887,2903],3018:[3014,3006],3019:[3015,3006],3020:[3014,3031],3144:[3142,3158],3264:[3263,3285],3271:[3270,3285],3272:[3270,3286],3274:[3270,3266],3275:[3270,3266,3285],3402:[3398,3390],3403:[3399,3390],3404:[3398,3415],3546:[3545,3530],3548:[3545,3535],3549:[3545,3535,3530],3550:[3545,3551],3635:[3661,3634],3763:[3789,3762],3955:[3953,3954],3957:[3953,3956],3958:[4018,3968],3959:[4018,3953,3968],3960:[4019,3968],3961:[4019,3953,3968],3969:[3953,3968],6971:[6970,6965],6973:[6972,6965],6976:[6974,6965],6977:[6975,6965],6979:[6978,6965],69934:[69937,69927],69935:[69938,69927],70475:[70471,70462],70476:[70471,70487],70843:[70841,70842],70844:[70841,70832],70846:[70841,70845],71098:[71096,71087],71099:[71097,71087]},stateTable:[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,2,3,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,17,18,11,19,20,21,22,0,0,0,23,0,0,2,0,0,24,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,27,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,39,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,49,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,53,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0]],accepting:[!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0],tags:[[],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["symbol_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["virama_terminated_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["number_joiner_terminated_cluster"],["standard_cluster"],["standard_cluster"],["numeral_cluster"]]},ve_X=1,ve_N=8,ve_H=16,ve_ZWNJ=32,ve_ZWJ=64,ve_M=128,ve_RS=8192,ve_Repha=32768,ve_Ra=65536,ve_CM=1<<17,ne={Start:1,Ra_To_Become_Reph:2,Pre_M:4,Pre_C:8,Base_C:16,After_Main:32,Above_C:64,Before_Sub:128,Below_C:256,After_Sub:512,Before_Post:1024,Post_C:2048,After_Post:4096,Final_C:8192,SMVD:16384,End:32768},d0=2|ve_Ra|ve_CM|4|2048|4096,Ra=ve_ZWJ|ve_ZWNJ,Ai=ve_H|16384,za={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:ne.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:ne.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:ne.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:ne.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:ne.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:ne.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:ne.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:ne.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:ne.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:ne.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:ne.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},M0={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},p0=Ni.decompositions,La=new Q(c("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","base64")),I0=new p({stateTable:[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,14,15,16,17],[0,0,0,18,19,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,28,29,30,31,32,33,0,34,0,0,35,36,0,0,37,0],[0,0,0,38,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,39,0,0,0,40,41,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,12,43,0,0,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,0,43,0,0,0,0],[0,0,0,45,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,50,0,0,51,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0],[0,0,0,53,54,55,56,57,58,0,59,0,0,60,61,0,0,62,0],[0,0,0,4,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,63,64,0,0,40,41,0,9,0,10,0,0,0,42,0,63,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,0,2,16,0],[0,0,0,18,65,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,0,0],[0,0,0,69,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,73,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,75,0,0,0,76,77,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,25,79,0,0,0,0],[0,0,0,18,19,20,74,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,81,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,86,0,0,87,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0],[0,0,0,18,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,89,90,0,0,76,77,0,23,0,24,0,0,0,78,0,89,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,0,0],[0,0,0,94,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,96,0,0,0,97,98,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,35,100,0,0,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,102,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,107,0,0,108,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0],[0,0,0,28,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,110,111,0,0,97,98,0,33,0,34,0,0,0,99,0,110,0,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,0,0],[0,0,0,0,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,0,0,115,116,117,118,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,39,0,122,0,123,123,8,9,0,10,0,0,0,42,0,39,0,0],[0,124,64,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0],[0,39,0,0,0,121,125,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,126,126,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,47,47,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,128,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,129,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,50,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0],[0,0,0,135,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,136,0,0,0,137,138,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,60,140,0,0,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,0,140,0,0,0,0],[0,0,0,142,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,147,0,0,148,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0],[0,0,0,53,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,150,151,0,0,137,138,0,58,0,59,0,0,0,139,0,150,0,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,0,0],[0,0,0,155,116,156,157,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,75,3,4,5,159,160,8,161,0,162,0,11,12,163,0,75,16,0],[0,0,0,0,0,40,164,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,0,165,0,0,0,0],[0,124,64,0,0,40,164,0,9,0,10,0,0,0,42,0,124,0,0],[0,0,0,0,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,167,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0],[0,0,0,0,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,0,79,0,0,0,0],[0,0,0,169,170,171,172,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,75,0,176,0,177,177,22,23,0,24,0,0,0,78,0,75,0,0],[0,178,90,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0],[0,75,0,0,0,175,179,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,180,180,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,83,83,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,182,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,183,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0],[0,0,0,189,170,190,191,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,76,193,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,0,194,0,0,0,0],[0,178,90,0,0,76,193,0,23,0,24,0,0,0,78,0,178,0,0],[0,0,0,0,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,195,196,197,198,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,96,0,202,0,203,203,32,33,0,34,0,0,0,99,0,96,0,0],[0,204,111,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0],[0,96,0,0,0,201,205,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,206,206,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,104,104,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,208,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,209,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,107,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0],[0,0,0,215,196,216,217,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,97,219,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,0,220,0,0,0,0],[0,204,111,0,0,97,219,0,33,0,34,0,0,0,99,0,204,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,223,0,0,0,40,224,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,119,225,0,0,0,0],[0,0,0,115,116,117,222,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,115,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,226,64,0,0,40,224,0,9,0,10,0,0,0,42,0,226,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,39,0,0,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,44,44,8,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,227,0,228,229,0,9,0,10,0,0,230,0,0,0,0,0],[0,39,0,122,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,231,231,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,131,131,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,234,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,235,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,0,0,240,241,242,243,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,136,0,247,0,248,248,57,58,0,59,0,0,0,139,0,136,0,0],[0,249,151,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0],[0,136,0,0,0,246,250,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,251,251,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,144,144,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,253,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,254,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,147,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0],[0,0,0,260,241,261,262,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,137,264,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,0,265,0,0,0,0],[0,249,151,0,0,137,264,0,58,0,59,0,0,0,139,0,249,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,158,225,0,0,0,0],[0,0,0,155,116,156,222,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,155,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,43,266,266,8,161,0,24,0,0,12,267,0,0,0,0],[0,75,0,176,43,268,268,269,161,0,24,0,0,0,267,0,75,0,0],[0,0,0,0,0,270,0,0,271,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0],[0,273,274,0,0,40,41,0,9,0,10,0,0,0,42,0,273,0,0],[0,0,0,40,0,123,123,8,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,121,275,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,279,0,0,0,76,280,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,173,281,0,0,0,0],[0,0,0,169,170,171,278,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,169,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,282,90,0,0,76,280,0,23,0,24,0,0,0,78,0,282,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,75,0,0,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,80,80,22,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,283,0,284,285,0,23,0,24,0,0,286,0,0,0,0,0],[0,75,0,176,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,287,287,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,185,185,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,290,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,291,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,192,281,0,0,0,0],[0,0,0,189,170,190,278,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,189,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,76,0,177,177,22,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,175,296,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,299,0,0,0,97,300,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,199,301,0,0,0,0],[0,0,0,195,196,197,298,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,195,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,302,111,0,0,97,300,0,33,0,34,0,0,0,99,0,302,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,96,0,0,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,101,101,32,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,303,0,304,305,0,33,0,34,0,0,306,0,0,0,0,0],[0,96,0,202,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,307,307,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,211,211,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,310,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,311,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,218,301,0,0,0,0],[0,0,0,215,196,216,298,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,215,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,97,0,203,203,32,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,201,316,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,0,225,0,0,0,0],[0,0,0,317,318,319,320,8,9,0,10,0,0,321,322,0,0,16,0],[0,223,0,323,0,123,123,8,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,0,0,121,324,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,325,318,326,327,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,64,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,230,0,0,0,0,0],[0,0,0,227,0,228,121,0,9,0,10,0,0,230,0,0,0,0,0],[0,0,0,227,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0],[0,0,0,0,0,329,329,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,237,237,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,332,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,333,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,337,0,0,0,137,338,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,244,339,0,0,0,0],[0,0,0,240,241,242,336,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,240,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,340,151,0,0,137,338,0,58,0,59,0,0,0,139,0,340,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,136,0,0,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,141,141,57,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,341,0,342,343,0,58,0,59,0,0,344,0,0,0,0,0],[0,136,0,247,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,345,345,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,256,256,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,348,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,349,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,263,339,0,0,0,0],[0,0,0,260,241,261,336,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,260,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,137,0,248,248,57,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,246,354,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,126,126,8,23,0,0,0,0,0,0,0,0,0,0],[0,355,90,0,0,121,125,0,9,0,10,0,0,0,42,0,355,0,0],[0,0,0,0,0,356,356,269,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,357,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0],[0,0,0,364,116,365,366,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,40,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,0,281,0,0,0,0],[0,0,0,369,370,371,372,22,23,0,24,0,0,373,374,0,0,27,0],[0,279,0,375,0,177,177,22,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,0,0,175,376,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,377,370,378,379,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,90,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,286,0,0,0,0,0],[0,0,0,283,0,284,175,0,23,0,24,0,0,286,0,0,0,0,0],[0,0,0,283,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0],[0,0,0,0,0,381,381,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,293,293,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,384,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,385,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,76,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,0,301,0,0,0,0],[0,0,0,387,388,389,390,32,33,0,34,0,0,391,392,0,0,37,0],[0,299,0,393,0,203,203,32,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,0,0,201,394,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,395,388,396,397,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,111,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,306,0,0,0,0,0],[0,0,0,303,0,304,201,0,33,0,34,0,0,306,0,0,0,0,0],[0,0,0,303,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0],[0,0,0,0,0,399,399,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,313,313,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,402,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,403,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,97,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,407,0,0,0,40,408,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,321,409,0,0,0,0],[0,0,0,317,318,319,406,8,9,0,10,0,0,321,322,0,0,16,0],[0,0,0,317,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,410,64,0,0,40,408,0,9,0,10,0,0,0,42,0,410,0,0],[0,223,0,0,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,323,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,328,409,0,0,0,0],[0,0,0,325,318,326,406,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,325,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0],[0,0,0,0,0,411,411,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,413,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,0,339,0,0,0,0],[0,0,0,414,415,416,417,57,58,0,59,0,0,418,419,0,0,62,0],[0,337,0,420,0,248,248,57,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,0,0,246,421,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,422,415,423,424,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,151,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,344,0,0,0,0,0],[0,0,0,341,0,342,246,0,58,0,59,0,0,344,0,0,0,0,0],[0,0,0,341,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0],[0,0,0,0,0,426,426,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,351,351,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,429,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,430,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,137,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,432,116,433,434,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,0,0,180,180,269,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,359,359,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,437,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,438,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,443,274,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,367,225,0,0,0,0],[0,0,0,364,116,365,445,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,364,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,448,0,0,0,76,449,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,373,450,0,0,0,0],[0,0,0,369,370,371,447,22,23,0,24,0,0,373,374,0,0,27,0],[0,0,0,369,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,451,90,0,0,76,449,0,23,0,24,0,0,0,78,0,451,0,0],[0,279,0,0,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,375,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,380,450,0,0,0,0],[0,0,0,377,370,378,447,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,377,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0],[0,0,0,0,0,452,452,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,454,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,457,0,0,0,97,458,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,391,459,0,0,0,0],[0,0,0,387,388,389,456,32,33,0,34,0,0,391,392,0,0,37,0],[0,0,0,387,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,460,111,0,0,97,458,0,33,0,34,0,0,0,99,0,460,0,0],[0,299,0,0,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,393,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,398,459,0,0,0,0],[0,0,0,395,388,396,456,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,395,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0],[0,0,0,0,0,461,461,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,463,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,0,409,0,0,0,0],[0,0,0,464,465,466,467,8,9,0,10,0,0,468,469,0,0,16,0],[0,407,0,470,0,123,123,8,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,0,0,121,471,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,472,465,473,474,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0],[0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,479,0,0,0,137,480,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,418,481,0,0,0,0],[0,0,0,414,415,416,478,57,58,0,59,0,0,418,419,0,0,62,0],[0,0,0,414,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,482,151,0,0,137,480,0,58,0,59,0,0,0,139,0,482,0,0],[0,337,0,0,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,420,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,425,481,0,0,0,0],[0,0,0,422,415,423,478,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,422,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0],[0,0,0,0,0,483,483,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,485,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,435,225,0,0,0,0],[0,0,0,432,116,433,445,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,432,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,486,486,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,440,440,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,489,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,490,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,495,0,496,497,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,0,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,0,225,0,0,0,0],[0,0,0,0,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,0,450,0,0,0,0],[0,0,0,499,500,501,502,22,23,0,24,0,0,503,504,0,0,27,0],[0,448,0,505,0,177,177,22,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,0,0,175,506,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,507,500,508,509,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0],[0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,0,459,0,0,0,0],[0,0,0,512,513,514,515,32,33,0,34,0,0,516,517,0,0,37,0],[0,457,0,518,0,203,203,32,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,0,0,201,519,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,520,513,521,522,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0],[0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,527,0,0,0,40,528,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,468,529,0,0,0,0],[0,0,0,464,465,466,526,8,9,0,10,0,0,468,469,0,0,16,0],[0,0,0,464,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,530,64,0,0,40,528,0,9,0,10,0,0,0,42,0,530,0,0],[0,407,0,0,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,470,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,475,529,0,0,0,0],[0,0,0,472,465,473,526,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,472,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0],[0,0,0,0,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,0,481,0,0,0,0],[0,0,0,531,532,533,534,57,58,0,59,0,0,535,536,0,0,62,0],[0,479,0,537,0,248,248,57,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,0,0,246,538,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,539,532,540,541,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0],[0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0],[0,0,0,0,0,544,544,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,492,492,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,547,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,548,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,274,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,498,0,0,0,0,0],[0,0,0,495,0,496,368,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,495,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,553,0,0,0,76,554,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,503,555,0,0,0,0],[0,0,0,499,500,501,552,22,23,0,24,0,0,503,504,0,0,27,0],[0,0,0,499,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,556,90,0,0,76,554,0,23,0,24,0,0,0,78,0,556,0,0],[0,448,0,0,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,505,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,510,555,0,0,0,0],[0,0,0,507,500,508,552,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,507,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,559,0,0,0,97,560,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,516,561,0,0,0,0],[0,0,0,512,513,514,558,32,33,0,34,0,0,516,517,0,0,37,0],[0,0,0,512,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,562,111,0,0,97,560,0,33,0,34,0,0,0,99,0,562,0,0],[0,457,0,0,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,518,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,523,561,0,0,0,0],[0,0,0,520,513,521,558,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,520,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0],[0,0,0,0,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,0,529,0,0,0,0],[0,0,0,563,66,564,565,8,9,0,10,0,0,566,68,0,0,16,0],[0,527,0,567,0,123,123,8,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,0,0,121,568,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,569,66,570,571,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,575,0,0,0,137,576,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,535,577,0,0,0,0],[0,0,0,531,532,533,574,57,58,0,59,0,0,535,536,0,0,62,0],[0,0,0,531,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,578,151,0,0,137,576,0,58,0,59,0,0,0,139,0,578,0,0],[0,479,0,0,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,537,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,542,577,0,0,0,0],[0,0,0,539,532,540,574,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,539,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0],[0,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0],[0,0,0,0,0,579,579,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,581,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,0,555,0,0,0,0],[0,0,0,582,91,583,584,22,23,0,24,0,0,585,93,0,0,27,0],[0,553,0,586,0,177,177,22,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,0,0,175,587,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,588,91,589,590,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,0,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,0,561,0,0,0,0],[0,0,0,592,112,593,594,32,33,0,34,0,0,595,114,0,0,37,0],[0,559,0,596,0,203,203,32,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,0,0,201,597,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,598,112,599,600,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,566,165,0,0,0,0],[0,0,0,563,66,564,67,8,9,0,10,0,0,566,68,0,0,16,0],[0,0,0,563,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,527,0,0,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,567,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,572,165,0,0,0,0],[0,0,0,569,66,570,67,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,569,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,0,577,0,0,0,0],[0,0,0,603,152,604,605,57,58,0,59,0,0,606,154,0,0,62,0],[0,575,0,607,0,248,248,57,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,0,0,246,608,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,609,152,610,611,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0],[0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,585,194,0,0,0,0],[0,0,0,582,91,583,92,22,23,0,24,0,0,585,93,0,0,27,0],[0,0,0,582,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,553,0,0,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,586,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,591,194,0,0,0,0],[0,0,0,588,91,589,92,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,588,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,595,220,0,0,0,0],[0,0,0,592,112,593,113,32,33,0,34,0,0,595,114,0,0,37,0],[0,0,0,592,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,559,0,0,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,596,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,601,220,0,0,0,0],[0,0,0,598,112,599,113,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,598,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,606,265,0,0,0,0],[0,0,0,603,152,604,153,57,58,0,59,0,0,606,154,0,0,62,0],[0,0,0,603,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,575,0,0,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,607,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,612,265,0,0,0,0],[0,0,0,609,152,610,153,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,609,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0]],accepting:[!1,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!1,!1,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0],tags:[[],["broken_cluster"],["consonant_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],[],["broken_cluster"],["symbol_cluster"],[],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["symbol_cluster"],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],[],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],[],[],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],["consonant_syllable"],["vowel_syllable"],["standalone_cluster"]]}),wn=function(tA){function G(){return tA.apply(this,arguments)||this}return h(G,tA),G.planFeatures=function(M){M.addStage(v0),M.addStage(["locl","ccmp"]),M.addStage(D0),M.addStage("nukt"),M.addStage("akhn"),M.addStage("rphf",!1),M.addStage("rkrf"),M.addStage("pref",!1),M.addStage("blwf",!1),M.addStage("abvf",!1),M.addStage("half",!1),M.addStage("pstf",!1),M.addStage("vatu"),M.addStage("cjct"),M.addStage("cfar",!1),M.addStage(y0),M.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),M.unicodeScript=function os(tA){return Ki[tA]}(M.script),M.indicConfig=za[M.unicodeScript]||za.Default,M.isOldSpec=M.indicConfig.hasOldSpec&&"2"!==M.script[M.script.length-1]},G.assignFeatures=function(M,x){for(var z=function(oA){var iA=x[oA].codePoints[0],SA=M0[iA]||p0[iA];if(SA){var kA=SA.map(function(ct){var _A=M.font.glyphForCodePoint(ct);return new gr(M.font,_A.id,[ct],x[oA].features)});x.splice.apply(x,[oA,1].concat(kA))}},AA=x.length-1;AA>=0;AA--)z(AA)},G}(Cr);function $i(tA){return La.get(tA.codePoints[0])>>8}function Aa(tA){return 1<<(255&La.get(tA.codePoints[0]))}N(wn,"zeroMarkWidths","NONE");var Si=function(G,V,M,x){this.category=G,this.position=V,this.syllableType=M,this.syllable=x};function v0(tA,G){for(var z,V=0,M=0,x=B(I0.match(G.map($i)));!(z=x()).done;){var AA=z.value,aA=AA[0],oA=AA[1],iA=AA[2];if(aA>M){++V;for(var SA=M;SAHt);break;case"First":for(var de=(Dt=iA)+1;deZe&&!(Yr(G[ke])||gn&&G[ke].shaperInfo.category===ve_H);ke--);if(G[ke].shaperInfo.category!==ve_H&&ke>Ze){var we=G[Ze];G.splice.apply(G,[Ze,0].concat(G.splice(Ze+1,ke-Ze))),G[ke]=we}break}for(var tn=ne.Start,Pe=iA;PeiA;nn--)if(G[nn-1].shaperInfo.position!==ne.Pre_M){Ye.position=G[nn-1].shaperInfo.position;break}}else Ye.position!==ne.SMVD&&(tn=Ye.position)}for(var bn=Dt,fn=Dt+1;fniA&&!Yr(G[Gn]))}}}}function y0(tA,G,V){for(var M=V.indicConfig,x=tA._layoutEngine.engine.GSUBProcessor.features,z=0,AA=Ui(G,0);z=ne.Base_C){if(aA&&oA+1ne.Base_C&&oA--;break}if(oA===AA&&zz&&!(G[kA].shaperInfo.category&(ve_M|Ai));)kA--;ir(G[kA])&&G[kA].shaperInfo.position!==ne.Pre_M?kA+1z;ct--)if(G[ct-1].shaperInfo.position===ne.Pre_M){var _A=ct-1;_Az&&G[pt].shaperInfo.position===ne.SMVD;)pt--;if(ir(G[pt]))for(var te=oA+1;tez&&!(G[fe-1].shaperInfo.category&(ve_M|Ai));)fe--;if(fe>z&&G[fe-1].shaperInfo.category===ve_M)for(var Qe=oe,de=oA+1;dez&&ir(G[fe-1])&&fe=tA.length)return G;for(var V=tA[G].shaperInfo.syllable;++G=0;AA--)z(AA)},G}(Cr);function Ga(tA){return F0.get(tA.codePoints[0])}N(Me,"zeroMarkWidths","BEFORE_GPOS");var T0=function(G,V,M){this.category=G,this.syllableType=V,this.syllable=M};function N0(tA,G){for(var x,V=0,M=B(Y0.match(G.map(Ga)));!(x=M()).done;){var z=x.value,AA=z[0],aA=z[1],oA=z[2];++V;for(var iA=AA;iA<=aA;iA++)G[iA].shaperInfo=new T0(x0[Ga(G[iA])],oA[0],V);for(var SA="R"===G[AA].shaperInfo.category?1:Math.min(3,aA-AA),kA=AA;kA1)for(z=M+1;z=tA.length)return G;for(var V=tA[G].shaperInfo.syllable;++G=0;On--)this.glyphs.splice(fe[On],1);return this.glyphs[this.glyphIterator.index]=ge,!0}}return!1;case 5:return this.applyContext(z);case 6:return this.applyChainingContext(z);case 7:return this.applyLookup(z.lookupType,z.extension);default:throw new Error("GSUB lookupType ".concat(x," is not supported"))}},G}(Mr),b0=function(tA){function G(){return tA.apply(this,arguments)||this}h(G,tA);var V=G.prototype;return V.applyPositionValue=function(x,z){var AA=this.positions[this.glyphIterator.peekIndex(x)];null!=z.xAdvance&&(AA.xAdvance+=z.xAdvance),null!=z.yAdvance&&(AA.yAdvance+=z.yAdvance),null!=z.xPlacement&&(AA.xOffset+=z.xPlacement),null!=z.yPlacement&&(AA.yOffset+=z.yPlacement);var aA=this.font._variationProcessor,oA=this.font.GDEF&&this.font.GDEF.itemVariationStore;aA&&oA&&(z.xPlaDevice&&(AA.xOffset+=aA.getDelta(oA,z.xPlaDevice.a,z.xPlaDevice.b)),z.yPlaDevice&&(AA.yOffset+=aA.getDelta(oA,z.yPlaDevice.a,z.yPlaDevice.b)),z.xAdvDevice&&(AA.xAdvance+=aA.getDelta(oA,z.xAdvDevice.a,z.xAdvDevice.b)),z.yAdvDevice&&(AA.yAdvance+=aA.getDelta(oA,z.yAdvDevice.a,z.yAdvDevice.b)))},V.applyLookup=function(x,z){switch(x){case 1:var AA=this.coverageIndex(z.coverage);if(-1===AA)return!1;switch(z.version){case 1:this.applyPositionValue(0,z.value);break;case 2:this.applyPositionValue(0,z.values.get(AA))}return!0;case 2:var aA=this.glyphIterator.peek();if(!aA)return!1;var oA=this.coverageIndex(z.coverage);if(-1===oA)return!1;switch(z.version){case 1:for(var kA,SA=B(z.pairSets.get(oA));!(kA=SA()).done;){var ct=kA.value;if(ct.secondGlyph===aA.id)return this.applyPositionValue(0,ct.value1),this.applyPositionValue(1,ct.value2),!0}return!1;case 2:var _A=this.getClassID(this.glyphIterator.cur.id,z.classDef1),Bt=this.getClassID(aA.id,z.classDef2);if(-1===_A||-1===Bt)return!1;var pt=z.classRecords.get(_A).get(Bt);return this.applyPositionValue(0,pt.value1),this.applyPositionValue(1,pt.value2),!0}case 3:var Dt=this.glyphIterator.peekIndex(),Ht=this.glyphs[Dt];if(!Ht)return!1;var te=z.entryExitRecords[this.coverageIndex(z.coverage)];if(!te||!te.exitAnchor)return!1;var Ae=z.entryExitRecords[this.coverageIndex(z.coverage,Ht.id)];if(!Ae||!Ae.entryAnchor)return!1;var oe=this.getAnchor(Ae.entryAnchor),fe=this.getAnchor(te.exitAnchor),Qe=this.positions[this.glyphIterator.index],de=this.positions[Dt];switch(this.direction){case"ltr":Qe.xAdvance=fe.x+Qe.xOffset;var Je=oe.x+de.xOffset;de.xAdvance-=Je,de.xOffset-=Je;break;case"rtl":Qe.xAdvance-=Je=fe.x+Qe.xOffset,Qe.xOffset-=Je,de.xAdvance=oe.x+de.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=Dt,Qe.yOffset=oe.y-fe.y):(Ht.cursiveAttachment=this.glyphIterator.index,Qe.yOffset=fe.y-oe.y),!0;case 4:var cn=this.coverageIndex(z.markCoverage);if(-1===cn)return!1;for(var Oe=this.glyphIterator.index;--Oe>=0&&(this.glyphs[Oe].isMark||this.glyphs[Oe].ligatureComponent>0););if(Oe<0)return!1;var ge=this.coverageIndex(z.baseCoverage,this.glyphs[Oe].id);if(-1===ge)return!1;var gn=z.markArray[cn];return this.applyAnchor(gn,z.baseArray[ge][gn.class],Oe),!0;case 5:var ke=this.coverageIndex(z.markCoverage);if(-1===ke)return!1;for(var we=this.glyphIterator.index;--we>=0&&this.glyphs[we].isMark;);if(we<0)return!1;var tn=this.coverageIndex(z.ligatureCoverage,this.glyphs[we].id);if(-1===tn)return!1;var Pe=z.ligatureArray[tn],Ye=this.glyphIterator.cur,nn=this.glyphs[we],bn=nn.ligatureID&&nn.ligatureID===Ye.ligatureID&&Ye.ligatureComponent>0?Math.min(Ye.ligatureComponent,nn.codePoints.length)-1:nn.codePoints.length-1,fn=z.markArray[ke];return this.applyAnchor(fn,Pe[bn][fn.class],we),!0;case 6:var On=this.coverageIndex(z.mark1Coverage);if(-1===On)return!1;var Kn=this.glyphIterator.peekIndex(-1),Dn=this.glyphs[Kn];if(!Dn||!Dn.isMark)return!1;var Mn=this.glyphIterator.cur,Vn=!1;if(Mn.ligatureID===Dn.ligatureID?Mn.ligatureID?Mn.ligatureComponent===Dn.ligatureComponent&&(Vn=!0):Vn=!0:(Mn.ligatureID&&!Mn.ligatureComponent||Dn.ligatureID&&!Dn.ligatureComponent)&&(Vn=!0),!Vn)return!1;var Wn=this.coverageIndex(z.mark2Coverage,Dn.id);if(-1===Wn)return!1;var me=z.mark1Array[On];return this.applyAnchor(me,z.mark2Array[Wn][me.class],Kn),!0;case 7:return this.applyContext(z);case 8:return this.applyChainingContext(z);case 9:return this.applyLookup(z.lookupType,z.extension);default:throw new Error("Unsupported GPOS table: ".concat(x))}},V.applyAnchor=function(x,z,AA){var aA=this.getAnchor(z),oA=this.getAnchor(x.markAnchor),SA=this.positions[this.glyphIterator.index];SA.xOffset=aA.x-oA.x,SA.yOffset=aA.y-oA.y,this.glyphIterator.cur.markAttachment=AA},V.getAnchor=function(x){var z=x.xCoordinate,AA=x.yCoordinate,aA=this.font._variationProcessor,oA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return aA&&oA&&(x.xDeviceTable&&(z+=aA.getDelta(oA,x.xDeviceTable.a,x.xDeviceTable.b)),x.yDeviceTable&&(AA+=aA.getDelta(oA,x.yDeviceTable.a,x.yDeviceTable.b))),{x:z,y:AA}},V.applyFeatures=function(x,z,AA){tA.prototype.applyFeatures.call(this,x,z,AA);for(var aA=0;aA>16;if(0===x)switch(M>>8){case 0:return 173===M;case 3:return 847===M;case 6:return 1564===M;case 23:return 6068<=M&&M<=6069;case 24:return 6155<=M&&M<=6158;case 32:return 8203<=M&&M<=8207||8234<=M&&M<=8238||8288<=M&&M<=8303;case 254:return 65024<=M&&M<=65039||65279===M;case 255:return 65520<=M&&M<=65528;default:return!1}else switch(x){case 1:return 113824<=M&&M<=113827||119155<=M&&M<=119162;case 14:return 917504<=M&&M<=921599;default:return!1}},G.getAvailableFeatures=function(M,x){var z=[];return this.engine&&z.push.apply(z,this.engine.getAvailableFeatures(M,x)),this.font.kern&&-1===z.indexOf("kern")&&z.push("kern"),z},G.stringsForGlyph=function(M){for(var aA,x=new Set,AA=B(this.font._cmapProcessor.codePointsForGlyph(M));!(aA=AA()).done;)x.add(String.fromCodePoint(aA.value));if(this.engine&&this.engine.stringsForGlyph)for(var SA,iA=B(this.engine.stringsForGlyph(M));!(SA=iA()).done;)x.add(SA.value);return Array.from(x)},tA}(),J0={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},Ri=function(){function tA(){this.commands=[],this._bbox=null,this._cbox=null}var G=tA.prototype;return G.toFunction=function(){var M=this;return function(x){M.commands.forEach(function(z){return x[z.command].apply(x,z.args)})}},G.toSVG=function(){return this.commands.map(function(x){var z=x.args.map(function(AA){return Math.round(100*AA)/100});return"".concat(J0[x.command]).concat(z.join(" "))}).join("")},G.mapPoints=function(M){for(var AA,x=new tA,z=B(this.commands);!(AA=z()).done;){for(var aA=AA.value,oA=[],iA=0;iA0&&this.codePoints.every(w.isMark),this.isLigature=this.codePoints.length>1}var G=tA.prototype;return G._getPath=function(){return new Ri},G._getCBox=function(){return this.path.cbox},G._getBBox=function(){return this.path.bbox},G._getTableMetrics=function(M){if(this.id0)oA=Math.abs(SA.typoAscender-SA.typoDescender),iA=SA.typoAscender-M.maxY;else{var kA=this._font.hhea;oA=Math.abs(kA.ascent-kA.descent),iA=kA.ascent-M.maxY}return this._font._variationProcessor&&this._font.HVAR&&(z+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:z,advanceHeight:oA,leftBearing:AA,topBearing:iA}},G.getScaledPath=function(M){return this.path.scale(1/this._font.unitsPerEm*M)},G._getName=function(){var M=this._font.post;if(!M)return null;switch(M.version){case 1:return ti[this.id];case 2:var x=M.glyphNameIndex[this.id];return x0?this._decodeSimple(oA,AA):oA.numberOfContours<0&&this._decodeComposite(oA,AA,aA),oA},V._decodeSimple=function(x,z){x.points=[];var AA=new e.Array(e.uint16,x.numberOfContours).decode(z);x.instructions=new e.Array(e.uint8,e.uint16).decode(z);for(var aA=[],oA=AA[AA.length-1]+1;aA.length=0,0,0);x.points.push(_A)}var Bt=0;for(ct=0;ct>1,iA.length=0}function gn(ke,we){Ht&&oA.closePath(),oA.moveTo(ke,we),Ht=!0}return function ke(){for(;z.pos1&&Oe(),Bt+=iA.shift(),gn(_A,Bt);break;case 5:for(;iA.length>=2;)_A+=iA.shift(),Bt+=iA.shift(),oA.lineTo(_A,Bt);break;case 6:case 7:for(var tn=6===we;iA.length>=1;)tn?_A+=iA.shift():Bt+=iA.shift(),oA.lineTo(_A,Bt),tn=!tn;break;case 8:for(;iA.length>0;){var me=_A+iA.shift(),Re=Bt+iA.shift(),Te=me+iA.shift(),Xe=Re+iA.shift();_A=Te+iA.shift(),Bt=Xe+iA.shift(),oA.bezierCurveTo(me,Re,Te,Xe,_A,Bt)}break;case 10:var Pe=iA.pop()+Qe,Ye=fe[Pe];if(Ye){Dt[Pe]=!0;var nn=z.pos,bn=aA;z.pos=Ye.offset,aA=Ye.offset+Ye.length,ke(),z.pos=nn,aA=bn}break;case 11:if(x.version>=2)break;return;case 14:if(x.version>=2)break;iA.length>0&&Oe(),Ht&&(oA.closePath(),Ht=!1);break;case 15:if(x.version<2)throw new Error("vsindex operator not supported in CFF v1");Je=iA.pop();break;case 16:if(x.version<2)throw new Error("blend operator not supported in CFF v1");if(!cn)throw new Error("blend operator in non-variation font");for(var fn=cn.getBlendVector(de,Je),vn=iA.pop(),On=vn*fn.length,Kn=iA.length-On,Dn=Kn-vn,Mn=0;Mn>3;break;case 21:iA.length>2&&Oe(),_A+=iA.shift(),Bt+=iA.shift(),gn(_A,Bt);break;case 22:iA.length>1&&Oe(),gn(_A+=iA.shift(),Bt);break;case 24:for(;iA.length>=8;)me=_A+iA.shift(),Re=Bt+iA.shift(),Te=me+iA.shift(),Xe=Re+iA.shift(),_A=Te+iA.shift(),Bt=Xe+iA.shift(),oA.bezierCurveTo(me,Re,Te,Xe,_A,Bt);_A+=iA.shift(),Bt+=iA.shift(),oA.lineTo(_A,Bt);break;case 25:for(;iA.length>=8;)_A+=iA.shift(),Bt+=iA.shift(),oA.lineTo(_A,Bt);me=_A+iA.shift(),Re=Bt+iA.shift(),Te=me+iA.shift(),Xe=Re+iA.shift(),_A=Te+iA.shift(),Bt=Xe+iA.shift(),oA.bezierCurveTo(me,Re,Te,Xe,_A,Bt);break;case 26:for(iA.length%2&&(_A+=iA.shift());iA.length>=4;)me=_A,Re=Bt+iA.shift(),Te=me+iA.shift(),Xe=Re+iA.shift(),_A=Te,Bt=Xe+iA.shift(),oA.bezierCurveTo(me,Re,Te,Xe,_A,Bt);break;case 27:for(iA.length%2&&(Bt+=iA.shift());iA.length>=4;)me=_A+iA.shift(),Re=Bt,Te=me+iA.shift(),Xe=Re+iA.shift(),_A=Te+iA.shift(),oA.bezierCurveTo(me,Re,Te,Xe,_A,Bt=Xe);break;case 28:iA.push(z.readInt16BE());break;case 29:Pe=iA.pop()+Ae,(Ye=te[Pe])&&(pt[Pe]=!0,nn=z.pos,bn=aA,z.pos=Ye.offset,aA=Ye.offset+Ye.length,ke(),z.pos=nn,aA=bn);break;case 30:case 31:for(tn=31===we;iA.length>=4;)tn?(me=_A+iA.shift(),Re=Bt,Te=me+iA.shift(),Xe=Re+iA.shift(),Bt=Xe+iA.shift(),_A=Te+(1===iA.length?iA.shift():0)):(me=_A,Re=Bt+iA.shift(),Te=me+iA.shift(),Xe=Re+iA.shift(),_A=Te+iA.shift(),Bt=Xe+(1===iA.length?iA.shift():0)),oA.bezierCurveTo(me,Re,Te,Xe,_A,Bt),tn=!tn;break;case 12:switch(we=z.readUInt8()){case 3:var je=iA.pop(),hn=iA.pop();iA.push(je&&hn?1:0);break;case 4:je=iA.pop(),hn=iA.pop(),iA.push(je||hn?1:0);break;case 5:je=iA.pop(),iA.push(je?0:1);break;case 9:je=iA.pop(),iA.push(Math.abs(je));break;case 10:je=iA.pop(),hn=iA.pop(),iA.push(je+hn);break;case 11:je=iA.pop(),hn=iA.pop(),iA.push(je-hn);break;case 12:je=iA.pop(),hn=iA.pop(),iA.push(je/hn);break;case 14:je=iA.pop(),iA.push(-je);break;case 15:je=iA.pop(),hn=iA.pop(),iA.push(je===hn?1:0);break;case 18:iA.pop();break;case 20:var ra=iA.pop(),Gn=iA.pop();SA[Gn]=ra;break;case 21:Gn=iA.pop(),iA.push(SA[Gn]||0);break;case 22:var ia=iA.pop(),aa=iA.pop(),Jl=iA.pop(),Ol=iA.pop();iA.push(Jl<=Ol?ia:aa);break;case 23:iA.push(Math.random());break;case 24:je=iA.pop(),hn=iA.pop(),iA.push(je*hn);break;case 26:je=iA.pop(),iA.push(Math.sqrt(je));break;case 27:je=iA.pop(),iA.push(je,je);break;case 28:je=iA.pop(),hn=iA.pop(),iA.push(hn,je);break;case 29:(Gn=iA.pop())<0?Gn=0:Gn>iA.length-1&&(Gn=iA.length-1),iA.push(iA[Gn]);break;case 30:var bi=iA.pop(),ei=iA.pop();if(ei>=0)for(;ei>0;){for(var oa=iA[bi-1],Gi=bi-2;Gi>=0;Gi--)iA[Gi+1]=iA[Gi];iA[0]=oa,ei--}else for(;ei<0;){oa=iA[0];for(var Hi=0;Hi<=bi;Hi++)iA[Hi]=iA[Hi+1];iA[bi-1]=oa,ei++}break;case 34:me=_A+iA.shift(),Re=Bt,Te=me+iA.shift(),Xe=Re+iA.shift();var ni=Te+iA.shift(),ri=Xe,ii=ni+iA.shift(),ai=ri,oi=ii+iA.shift(),si=ai,li=oi+iA.shift(),ci=si;_A=li,Bt=ci,oA.bezierCurveTo(me,Re,Te,Xe,ni,ri),oA.bezierCurveTo(ii,ai,oi,si,li,ci);break;case 35:for(var pr=[],oo=0;oo<=5;oo++)_A+=iA.shift(),Bt+=iA.shift(),pr.push(_A,Bt);oA.bezierCurveTo.apply(oA,pr.slice(0,6)),oA.bezierCurveTo.apply(oA,pr.slice(6)),iA.shift();break;case 36:me=_A+iA.shift(),Re=Bt+iA.shift(),Te=me+iA.shift(),ai=ri=Xe=Re+iA.shift(),oi=(ii=(ni=Te+iA.shift())+iA.shift())+iA.shift(),si=ai+iA.shift(),li=oi+iA.shift(),_A=li,Bt=ci=si,oA.bezierCurveTo(me,Re,Te,Xe,ni,ri),oA.bezierCurveTo(ii,ai,oi,si,li,ci);break;case 37:var sa=_A,so=Bt;pr=[];for(var lo=0;lo<=4;lo++)_A+=iA.shift(),Bt+=iA.shift(),pr.push(_A,Bt);Math.abs(_A-sa)>Math.abs(Bt-so)?(_A+=iA.shift(),Bt=so):(_A=sa,Bt+=iA.shift()),pr.push(_A,Bt),oA.bezierCurveTo.apply(oA,pr.slice(0,6)),oA.bezierCurveTo.apply(oA,pr.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(we))}break;default:throw new Error("Unknown op: ".concat(we))}else if(we<247)iA.push(we-139);else if(we<251){var la=z.readUInt8();iA.push(256*(we-247)+la+108)}else we<255?(la=z.readUInt8(),iA.push(256*-(we-251)-la-108)):iA.push(z.readInt32BE()/65536)}}(),Ht&&oA.closePath(),oA},G}(zi),rl=new e.Struct({originX:e.uint16,originY:e.uint16,type:new e.String(4),data:new e.Buffer(function(tA){return tA.parent.buflen-tA._currentOffset})}),il=function(tA){function G(){return tA.apply(this,arguments)||this}h(G,tA);var V=G.prototype;return V.getImageForSize=function(x){for(var z=0;z=x)break}var aA=AA.imageOffsets,oA=aA[this.id],iA=aA[this.id+1];return oA===iA?null:(this._font.stream.pos=oA,rl.decode(this._font.stream,{buflen:iA-oA}))},V.render=function(x,z){var AA=this.getImageForSize(z);null!=AA&&x.image(AA.data,{height:z,x:AA.originX,y:z/this._font.unitsPerEm*(this.bbox.minY-AA.originY)}),this._font.sbix.flags.renderOutlines&&tA.prototype.render.call(this,x,z)},G}(Li),Va=function(G,V){this.glyph=G,this.color=V},al=function(tA){function G(){return tA.apply(this,arguments)||this}h(G,tA);var V=G.prototype;return V._getBBox=function(){for(var x=new Lr,z=0;z>1;if(this.id<(iA=z.baseGlyphRecord[oA]).gid)aA=oA-1;else{if(!(this.id>iA.gid)){var SA=iA;break}AA=oA+1}}if(null==SA){var kA=this._font._getBaseGlyph(this.id);return[new Va(kA,ct={red:0,green:0,blue:0,alpha:255})]}for(var _A=[],Bt=SA.firstLayerIndex;Bt=1&&x[z]=z.glyphCount)){var AA=z.offsets[M];if(AA!==z.offsets[M+1]){var aA=this.font.stream;if(aA.pos=AA,!(aA.pos>=aA.length)){var oA=aA.readUInt16BE(),iA=AA+aA.readUInt16BE();if(32768&oA){var SA=aA.pos;aA.pos=iA;var kA=this.decodePoints();iA=aA.pos,aA.pos=SA}var ct=x.map(function(fn){return fn.copy()});oA&=4095;for(var _A=0;_A=z.globalCoordCount)throw new Error("Invalid gvar table");Dt=z.globalCoords[4095&pt]}if(16384&pt){for(var te=[],Ae=0;AeMath.max(0,x[SA]))return 0;iA=(iA*aA[SA]+Number.EPSILON)/(x[SA]+Number.EPSILON)}else{if(aA[SA]AA[SA])return 0;iA=aA[SA]oA)){var SA=AA,kA=AA;for(AA++;AA<=oA;)z[AA]&&(this.deltaInterpolate(kA+1,AA-1,kA,AA,x,M),kA=AA),AA++;kA===SA?this.deltaShift(aA,oA,kA,x,M):(this.deltaInterpolate(kA+1,oA,kA,SA,x,M),SA>0&&this.deltaInterpolate(aA,SA-1,kA,SA,x,M)),AA=oA+1}}},G.deltaInterpolate=function(M,x,z,AA,aA,oA){if(!(M>x))for(var iA=["x","y"],SA=0;SAaA[AA][kA]){var ct=z;z=AA,AA=ct}var _A=aA[z][kA],Bt=aA[AA][kA],pt=oA[z][kA],Dt=oA[AA][kA];if(_A!==Bt||pt===Dt)for(var Ht=_A===Bt?0:(Dt-pt)/(Bt-_A),te=M;te<=x;te++){var Ae=aA[te][kA];Ae<=_A?Ae+=pt-_A:Ae>=Bt?Ae+=Dt-Bt:Ae=pt+(Ae-_A)*Ht,oA[te][kA]=Ae}}},G.deltaShift=function(M,x,z,AA,aA){var oA=aA[z].x-AA[z].x,iA=aA[z].y-AA[z].y;if(0!==oA||0!==iA)for(var SA=M;SA<=x;SA++)SA!==z&&(aA[SA].x+=oA,aA[SA].y+=iA)},G.getAdvanceAdjustment=function(M,x){var z,AA;if(x.advanceWidthMapping){var aA=M;aA>=x.advanceWidthMapping.mapCount&&(aA=x.advanceWidthMapping.mapCount-1);var iA=x.advanceWidthMapping.mapData[aA];z=iA.outerIndex,AA=iA.innerIndex}else z=0,AA=M;return this.getDelta(x.itemVariationStore,z,AA)},G.getDelta=function(M,x,z){if(x>=M.itemVariationData.length)return 0;var AA=M.itemVariationData[x];if(z>=AA.deltaSets.length)return 0;for(var aA=AA.deltaSets[z],oA=this.getBlendVector(M,x),iA=0,SA=0;SA_A.peakCoord||_A.peakCoord>_A.endCoord||_A.startCoord<0&&_A.endCoord>0&&0!==_A.peakCoord||0===_A.peakCoord?1:AA[ct]<_A.startCoord||AA[ct]>_A.endCoord?0:AA[ct]===_A.peakCoord?1:AA[ct]<_A.peakCoord?(AA[ct]-_A.startCoord+Number.EPSILON)/(_A.peakCoord-_A.startCoord+Number.EPSILON):(_A.endCoord-AA[ct]+Number.EPSILON)/(_A.endCoord-_A.peakCoord+Number.EPSILON)}aA[oA]=iA}return this.blendVectors.set(z,aA),aA},tA}(),hl=Promise.resolve(),_a=function(){function tA(V){this.font=V,this.glyphs=[],this.mapping={},this.includeGlyph(0)}var G=tA.prototype;return G.includeGlyph=function(M){return"object"==typeof M&&(M=M.id),null==this.mapping[M]&&(this.glyphs.push(M),this.mapping[M]=this.glyphs.length-1),this.mapping[M]},G.encodeStream=function(){var M=this,x=new e.EncodeStream;return hl.then(function(){return M.encode(x),x.end()}),x},tA}(),$a=function(){function tA(){}return tA.size=function(V){return V>=0&&V<=255?1:2},tA.encode=function(V,M){M>=0&&M<=255?V.writeUInt8(M):V.writeInt16BE(M)},tA}(),Ao=new e.Struct({numberOfContours:e.int16,xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,endPtsOfContours:new e.Array(e.uint16,"numberOfContours"),instructions:new e.Array(e.uint8,e.uint16),flags:new e.Array(e.uint8,0),xPoints:new e.Array($a,0),yPoints:new e.Array($a,0)}),pl=function(){function tA(){}var G=tA.prototype;return G.encodeSimple=function(M,x){void 0===x&&(x=[]);for(var z=[],AA=[],aA=[],oA=[],iA=0,SA=0,kA=0,ct=0,_A=0,Bt=0;Bt0&&(oA.push(iA),iA=0),oA.push(Ae),ct=Ae),SA=Ht,kA=te,_A++}"closePath"===pt.command&&z.push(_A-1)}M.commands.length>1&&"closePath"!==M.commands[M.commands.length-1].command&&z.push(_A-1);var de=M.bbox,Je={numberOfContours:z.length,xMin:de.minX,yMin:de.minY,xMax:de.maxX,yMax:de.maxY,endPtsOfContours:z,instructions:x,flags:oA,xPoints:AA,yPoints:aA},cn=Ao.size(Je),Oe=4-cn%4,ge=new e.EncodeStream(cn+Oe);return Ao.encode(ge,Je),0!==Oe&&ge.fill(0,Oe),ge.buffer},G._encodePoint=function(M,x,z,AA,aA,oA){var iA=M-x;return M===x?AA|=oA:(-255<=iA&&iA<=255&&(AA|=aA,iA<0?iA=-iA:AA|=oA),z.push(iA)),AA},tA}(),Il=function(tA){function G(M){var x;return(x=tA.call(this,M)||this).glyphEncoder=new pl,x}h(G,tA);var V=G.prototype;return V._addGlyph=function(x){var z=this.font.getGlyph(x),AA=z._decode(),aA=this.font.loca.offsets[x],oA=this.font.loca.offsets[x+1],iA=this.font._getTableStream("glyf");iA.pos+=aA;var SA=iA.readBuffer(oA-aA);if(AA&&AA.numberOfContours<0){SA=c.from(SA);for(var ct,kA=B(AA.components);!(ct=kA()).done;){var _A=ct.value;x=this.includeGlyph(_A.glyphID),SA.writeUInt16BE(x,_A.pos)}}else AA&&this.font._variationProcessor&&(SA=this.glyphEncoder.encodeSimple(z.path,AA.instructions));return this.glyf.push(SA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:z.advanceWidth,bearing:z._getMetrics().leftBearing}),this.offset+=SA.length,this.glyf.length-1},V.encode=function(x){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var z=0;z255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},AA=Object.assign({},this.cff.topDict);AA.Private=null,AA.charset=z,AA.Encoding=null,AA.CharStrings=this.charstrings;for(var aA=0,oA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];aA0&&Object.defineProperty(this,x,{get:this._getTable.bind(this,z)})}}tA.probe=function(M){var x=M.toString("ascii",0,4);return"true"===x||"OTTO"===x||x===String.fromCharCode(0,1,0,0)};var G=tA.prototype;return G.setDefaultLanguage=function(M){void 0===M&&(M=null),this.defaultLanguage=M},G._getTable=function(M){if(!(M.tag in this._tables))try{this._tables[M.tag]=this._decodeTable(M)}catch(x){m.logErrors&&(console.error("Error decoding table ".concat(M.tag)),console.error(x.stack))}return this._tables[M.tag]},G._getTableStream=function(M){var x=this.directory.tables[M];return x?(this.stream.pos=x.offset,this.stream):null},G._decodeDirectory=function(){return this.directory=hi.decode(this.stream,{_startOffset:0})},G._decodeTable=function(M){var x=this.stream.pos,z=this._getTableStream(M.tag),AA=ce[M.tag].decode(z,this,M.length);return this.stream.pos=x,AA},G.getName=function(M,x){void 0===x&&(x=this.defaultLanguage||m.defaultLanguage);var z=this.name&&this.name.records[M];return z&&(z[x]||z[this.defaultLanguage]||z[m.defaultLanguage]||z.en||z[Object.keys(z)[0]])||null},G.hasGlyphForCodePoint=function(M){return!!this._cmapProcessor.lookup(M)},G.glyphForCodePoint=function(M){return this.getGlyph(this._cmapProcessor.lookup(M),[M])},G.glyphsForString=function(M){for(var x=[],z=M.length,AA=0,aA=-1,oA=-1;AA<=z;){var iA=0,SA=0;if(AA>>6&3},transformed:function(G){return"glyf"===G.tag||"loca"===G.tag?0===G.transformVersion:0!==G.transformVersion},transformLength:new e.Optional(eo,function(tA){return tA.transformed})}),no=new e.Struct({tag:new e.String(4),flavor:e.uint32,length:e.uint32,numTables:e.uint16,reserved:new e.Reserved(e.uint16),totalSfntSize:e.uint32,totalCompressedSize:e.uint32,majorVersion:e.uint16,minorVersion:e.uint16,metaOffset:e.uint32,metaLength:e.uint32,metaOrigLength:e.uint32,privOffset:e.uint32,privLength:e.uint32,tables:new e.Array(Fl,"numTables")});no.process=function(){for(var tA={},G=0;G0){for(var iA=[],SA=0,kA=0;kA>7);if((iA&=127)<10)aA=0,oA=ar(iA,((14&iA)<<7)+G.readUInt8());else if(iA<20)aA=ar(iA,((iA-10&14)<<7)+G.readUInt8()),oA=0;else if(iA<84)aA=ar(iA,1+(48&(kA=iA-20))+((ct=G.readUInt8())>>4)),oA=ar(iA>>1,1+((12&kA)<<2)+(15&ct));else if(iA<120){var kA;aA=ar(iA,1+((kA=iA-84)/12<<8)+G.readUInt8()),oA=ar(iA>>1,1+(kA%12>>2<<8)+G.readUInt8())}else if(iA<124){var ct=G.readUInt8(),_A=G.readUInt8();aA=ar(iA,(ct<<4)+(_A>>4)),oA=ar(iA>>1,((15&_A)<<8)+G.readUInt8())}else aA=ar(iA,G.readUInt16BE()),oA=ar(iA>>1,G.readUInt16BE());z.push(new ur(SA,!1,x+=aA,M+=oA))}return z}var Ul=new e.VersionedStruct(e.uint32,{65536:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts")},131072:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts"),dsigTag:e.uint32,dsigLength:e.uint32,dsigOffset:e.uint32}}),Pl=function(){function tA(V){if(this.stream=V,"ttcf"!==V.readString(4))throw new Error("Not a TrueType collection");this.header=Ul.decode(V)}return tA.probe=function(M){return"ttcf"===M.toString("ascii",0,4)},tA.prototype.getFont=function(M){for(var z,x=B(this.header.offsets);!(z=x()).done;){var AA=z.value,aA=new e.DecodeStream(this.stream.buffer);aA.pos=AA;var oA=new Tr(aA);if(oA.postscriptName===M)return oA}return null},l(tA,[{key:"fonts",get:function(){for(var z,M=[],x=B(this.header.offsets);!(z=x()).done;){var AA=z.value,aA=new e.DecodeStream(this.stream.buffer);aA.pos=AA,M.push(new Tr(aA))}return M}}]),tA}(),Rl=new e.String(e.uint8),zl=(new e.Struct({len:e.uint32,buf:new e.Buffer("len")}),new e.Struct({id:e.uint16,nameOffset:e.int16,attr:e.uint8,dataOffset:e.uint24,handle:e.uint32})),Ll=new e.Struct({name:new e.String(4),maxTypeIndex:e.uint16,refList:new e.Pointer(e.uint16,new e.Array(zl,function(tA){return tA.maxTypeIndex+1}),{type:"parent"})}),bl=new e.Struct({length:e.uint16,types:new e.Array(Ll,function(tA){return tA.length+1})}),Gl=new e.Struct({reserved:new e.Reserved(e.uint8,24),typeList:new e.Pointer(e.uint16,bl),nameListOffset:new e.Pointer(e.uint16,"void")}),ao=new e.Struct({dataOffset:e.uint32,map:new e.Pointer(e.uint32,Gl),dataLength:e.uint32,mapLength:e.uint32}),Hl=function(){function tA(V){this.stream=V,this.header=ao.decode(this.stream);for(var x,M=B(this.header.map.typeList.types);!(x=M()).done;){for(var aA,z=x.value,AA=B(z.refList);!(aA=AA()).done;){var oA=aA.value;oA.nameOffset>=0?(this.stream.pos=oA.nameOffset+this.header.map.nameListOffset,oA.name=Rl.decode(this.stream)):oA.name=null}"sfnt"===z.name&&(this.sfnt=z)}}return tA.probe=function(M){var x=new e.DecodeStream(M);try{var z=ao.decode(x)}catch(iA){return!1}for(var aA,AA=B(z.map.typeList.types);!(aA=AA()).done;)if("sfnt"===aA.value.name)return!0;return!1},tA.prototype.getFont=function(M){if(!this.sfnt)return null;for(var z,x=B(this.sfnt.refList);!(z=x()).done;){var oA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+z.value.dataOffset+4)),iA=new Tr(oA);if(iA.postscriptName===M)return iA}return null},l(tA,[{key:"fonts",get:function(){for(var z,M=[],x=B(this.sfnt.refList);!(z=x()).done;){var oA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+z.value.dataOffset+4));M.push(new Tr(oA))}return M}}]),tA}();m.registerFormat(Tr),m.registerFormat(Dl),m.registerFormat(ro),m.registerFormat(Pl),m.registerFormat(Hl),T.exports=m},7337:function(T,I,n){"use strict";var c=n(4781),i=n(9742),o=n(2055),l=o.BK,h=o.CR,a=o.LF,B=o.NL,E=o.SG,u=o.WJ,C=o.SP,e=o.ZWJ,f=o.BA,g=o.HY,w=o.NS,Q=o.AI,p=o.AL,Y=o.CJ,y=o.HL,d=o.RI,v=o.SA,m=o.XX,P=n(8383),N=P.DI_BRK,F=P.IN_BRK,L=P.CI_BRK,U=P.CP_BRK,sA=P.pairTable,BA=new c(i.toByteArray("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")),pA=function(FA){switch(FA){case Q:case v:case E:case m:return p;case Y:return w;default:return FA}},lA=function(FA){switch(FA){case a:case B:return l;case C:return u;default:return FA}},cA=function(FA,_){void 0===_&&(_=!1),this.position=FA,this.required=_};T.exports=function(){function yA(_){this.string=_,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var FA=yA.prototype;return FA.nextCodePoint=function(){var MA=this.string.charCodeAt(this.pos++),uA=this.string.charCodeAt(this.pos);return 55296<=MA&&MA<=56319&&56320<=uA&&uA<=57343?(this.pos++,1024*(MA-55296)+(uA-56320)+65536):MA},FA.nextCharClass=function(){return pA(BA.get(this.nextCodePoint()))},FA.getSimpleBreak=function(){switch(this.nextClass){case C:return!1;case l:case a:case B:return this.curClass=l,!1;case h:return this.curClass=h,!1}return null},FA.getPairTableBreak=function(MA){var uA=!1;switch(sA[this.curClass][this.nextClass]){case N:uA=!0;break;case F:uA=MA===C;break;case L:if(!(uA=MA===C))return!1;break;case U:if(MA!==C)return uA}return this.LB8a&&(uA=!1),!this.LB21a||this.curClass!==g&&this.curClass!==f?this.LB21a=this.curClass===y:(uA=!1,this.LB21a=!1),this.curClass===d?(this.LB30a++,2==this.LB30a&&this.nextClass===d&&(uA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,uA},FA.nextBreak=function(){if(null==this.curClass){var MA=this.nextCharClass();this.curClass=lA(MA),this.nextClass=MA,this.LB8a=MA===e,this.LB30a=0}for(;this.pos=XA)return $;switch($){case"%s":return String(bA[NA++]);case"%d":return Number(bA[NA++]);case"%j":try{return JSON.stringify(bA[NA++])}catch(W){return"[Circular]"}default:return $}}),O=bA[NA];NA=3&&(NA.depth=arguments[2]),arguments.length>=4&&(NA.colors=arguments[3]),y(QA)?NA.showHidden=QA:QA&&I._extend(NA,QA),F(NA.showHidden)&&(NA.showHidden=!1),F(NA.depth)&&(NA.depth=2),F(NA.colors)&&(NA.colors=!1),F(NA.customInspect)&&(NA.customInspect=!0),NA.colors&&(NA.stylize=E),e(NA,uA,NA.depth)}function E(uA,QA){var NA=B.styles[QA];return NA?"\x1b["+B.colors[NA][0]+"m"+uA+"\x1b["+B.colors[NA][1]+"m":uA}function u(uA,QA){return uA}function e(uA,QA,NA){if(uA.customInspect&&QA&&q(QA.inspect)&&QA.inspect!==I.inspect&&(!QA.constructor||QA.constructor.prototype!==QA)){var bA=QA.inspect(NA,uA);return P(bA)||(bA=e(uA,bA,NA)),bA}var XA=function f(uA,QA){if(F(QA))return uA.stylize("undefined","undefined");if(P(QA)){var NA="'"+JSON.stringify(QA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return uA.stylize(NA,"string")}return m(QA)?uA.stylize(""+QA,"number"):y(QA)?uA.stylize(""+QA,"boolean"):d(QA)?uA.stylize("null","null"):void 0}(uA,QA);if(XA)return XA;var X=Object.keys(QA),O=function C(uA){var QA={};return uA.forEach(function(NA,bA){QA[NA]=!0}),QA}(X);if(uA.showHidden&&(X=Object.getOwnPropertyNames(QA)),sA(QA)&&(X.indexOf("message")>=0||X.indexOf("description")>=0))return g(QA);if(0===X.length){if(q(QA))return uA.stylize("[Function"+(QA.name?": "+QA.name:"")+"]","special");if(L(QA))return uA.stylize(RegExp.prototype.toString.call(QA),"regexp");if(eA(QA))return uA.stylize(Date.prototype.toString.call(QA),"date");if(sA(QA))return g(QA)}var EA,W="",hA=!1,mA=["{","}"];return Y(QA)&&(hA=!0,mA=["[","]"]),q(QA)&&(W=" [Function"+(QA.name?": "+QA.name:"")+"]"),L(QA)&&(W=" "+RegExp.prototype.toString.call(QA)),eA(QA)&&(W=" "+Date.prototype.toUTCString.call(QA)),sA(QA)&&(W=" "+g(QA)),0!==X.length||hA&&0!=QA.length?NA<0?L(QA)?uA.stylize(RegExp.prototype.toString.call(QA),"regexp"):uA.stylize("[Object]","special"):(uA.seen.push(QA),EA=hA?function w(uA,QA,NA,bA,XA){for(var X=[],O=0,$=QA.length;O<$;++O)yA(QA,String(O))?X.push(Q(uA,QA,NA,bA,String(O),!0)):X.push("");return XA.forEach(function(W){W.match(/^\d+$/)||X.push(Q(uA,QA,NA,bA,W,!0))}),X}(uA,QA,NA,O,X):X.map(function(GA){return Q(uA,QA,NA,O,GA,hA)}),uA.seen.pop(),function p(uA,QA,NA){return uA.reduce(function(X,O){return O.indexOf("\n"),X+O.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60?NA[0]+(""===QA?"":QA+"\n ")+" "+uA.join(",\n ")+" "+NA[1]:NA[0]+QA+" "+uA.join(", ")+" "+NA[1]}(EA,W,mA)):mA[0]+W+mA[1]}function g(uA){return"["+Error.prototype.toString.call(uA)+"]"}function Q(uA,QA,NA,bA,XA,X){var O,$,W;if((W=Object.getOwnPropertyDescriptor(QA,XA)||{value:QA[XA]}).get?$=uA.stylize(W.set?"[Getter/Setter]":"[Getter]","special"):W.set&&($=uA.stylize("[Setter]","special")),yA(bA,XA)||(O="["+XA+"]"),$||(uA.seen.indexOf(W.value)<0?($=d(NA)?e(uA,W.value,null):e(uA,W.value,NA-1)).indexOf("\n")>-1&&($=X?$.split("\n").map(function(hA){return" "+hA}).join("\n").substr(2):"\n"+$.split("\n").map(function(hA){return" "+hA}).join("\n")):$=uA.stylize("[Circular]","special")),F(O)){if(X&&XA.match(/^\d+$/))return $;(O=JSON.stringify(""+XA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(O=O.substr(1,O.length-2),O=uA.stylize(O,"name")):(O=O.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),O=uA.stylize(O,"string"))}return O+": "+$}function Y(uA){return Array.isArray(uA)}function y(uA){return"boolean"==typeof uA}function d(uA){return null===uA}function m(uA){return"number"==typeof uA}function P(uA){return"string"==typeof uA}function F(uA){return void 0===uA}function L(uA){return U(uA)&&"[object RegExp]"===pA(uA)}function U(uA){return"object"==typeof uA&&null!==uA}function eA(uA){return U(uA)&&"[object Date]"===pA(uA)}function sA(uA){return U(uA)&&("[object Error]"===pA(uA)||uA instanceof Error)}function q(uA){return"function"==typeof uA}function pA(uA){return Object.prototype.toString.call(uA)}function lA(uA){return uA<10?"0"+uA.toString(10):uA.toString(10)}I.debuglog=function(uA){if(uA=uA.toUpperCase(),!l[uA])if(h.test(uA)){var QA=c.pid;l[uA]=function(){var NA=I.format.apply(I,arguments);console.error("%s %d: %s",uA,QA,NA)}}else l[uA]=function(){};return l[uA]},I.inspect=B,B.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},B.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},I.types=n(5955),I.isArray=Y,I.isBoolean=y,I.isNull=d,I.isNullOrUndefined=function v(uA){return null==uA},I.isNumber=m,I.isString=P,I.isSymbol=function N(uA){return"symbol"==typeof uA},I.isUndefined=F,I.isRegExp=L,I.types.isRegExp=L,I.isObject=U,I.isDate=eA,I.types.isDate=eA,I.isError=sA,I.types.isNativeError=sA,I.isFunction=q,I.isPrimitive=function BA(uA){return null===uA||"boolean"==typeof uA||"number"==typeof uA||"string"==typeof uA||"symbol"==typeof uA||void 0===uA},I.isBuffer=n(384);var cA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function gA(){var uA=new Date,QA=[lA(uA.getHours()),lA(uA.getMinutes()),lA(uA.getSeconds())].join(":");return[uA.getDate(),cA[uA.getMonth()],QA].join(" ")}function yA(uA,QA){return Object.prototype.hasOwnProperty.call(uA,QA)}I.log=function(){console.log("%s - %s",gA(),I.format.apply(I,arguments))},I.inherits=n(5717),I._extend=function(uA,QA){if(!QA||!U(QA))return uA;for(var NA=Object.keys(QA),bA=NA.length;bA--;)uA[NA[bA]]=QA[NA[bA]];return uA};var FA="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function _(uA,QA){if(!uA){var NA=new Error("Promise was rejected with a falsy value");NA.reason=uA,uA=NA}return QA(uA)}I.promisify=function(QA){if("function"!=typeof QA)throw new TypeError('The "original" argument must be of type Function');if(FA&&QA[FA]){var NA;if("function"!=typeof(NA=QA[FA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(NA,FA,{value:NA,enumerable:!1,writable:!1,configurable:!0}),NA}function NA(){for(var bA,XA,X=new Promise(function(W,hA){bA=W,XA=hA}),O=[],$=0;$1?m.attr[v[1]]:m.val},i.prototype.toString=function(d){return this.toStringWithIndent("",d)},i.prototype.toStringWithIndent=function(d,v){var m=d+"<"+this.name,P=v&&v.compressed?"":"\n";for(var F in this.attr)Object.prototype.hasOwnProperty.call(this.attr,F)&&(m+=" "+F+'="'+Y(this.attr[F])+'"');if(1===this.children.length&&"element"!==this.children[0].type)m+=">"+this.children[0].toString(v)+"";else if(this.children.length){m+=">"+P;for(var L=d+(v&&v.compressed?"":" "),U=0,eA=this.children.length;U"}else v&&v.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?m+="/>":m+=">":m+="/>";return m},o.prototype.toString=function(d){return y(Y(this.text),d)},o.prototype.toStringWithIndent=function(d,v){return d+this.toString(v)},l.prototype.toString=function(d){return""},l.prototype.toStringWithIndent=function(d,v){return d+this.toString(v)},h.prototype.toString=function(d){return"\x3c!--"+y(Y(this.comment),d)+"--\x3e"},h.prototype.toStringWithIndent=function(d,v){return d+this.toString(v)},i.prototype.type="element",o.prototype.type="text",l.prototype.type="cdata",h.prototype.type="comment",function p(d,v){for(var m in v)v.hasOwnProperty(m)&&(d[m]=v[m])}(a.prototype,i.prototype),a.prototype._opentag=function(d){void 0===this.children?i.call(this,d):i.prototype._opentag.apply(this,arguments)},a.prototype._doctype=function(d){this.doctype+=d};var B=null;function u(){B[0]&&B[0]._opentag.apply(B[0],arguments)}function C(){B[0]&&B[0]._closetag.apply(B[0],arguments)}function e(){B[0]&&B[0]._text.apply(B[0],arguments)}function f(){B[0]&&B[0]._cdata.apply(B[0],arguments)}function g(){B[0]&&B[0]._comment.apply(B[0],arguments)}function w(){B[0]&&B[0]._doctype.apply(B[0],arguments)}function Q(){B[0]&&B[0]._error.apply(B[0],arguments)}function Y(d){return d.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function y(d,v){var m=d;return v&&v.trimmed&&d.length>25&&(m=m.substring(0,25).trim()+"\u2026"),v&&v.preserveWhitespace||(m=m.trim()),m}T.exports&&!n.g.xmldocAssumeBrowser?T.exports.XmlDocument=a:this.XmlDocument=a}()},6255:function(T,I,n){"use strict";"undefined"!=typeof window&&!window.Promise&&n(3867),n(4667);function i(o){this.fs=o,this.resolving={}}i.prototype.resolve=function(o,l){if(!this.resolving[o]){var h=this;this.resolving[o]=new Promise(function(a,B){0===o.toLowerCase().indexOf("https://")||0===o.toLowerCase().indexOf("http://")?function(o,l){return new Promise(function(h,a){var B=new XMLHttpRequest;for(var E in B.open("GET",o,!0),l)B.setRequestHeader(E,l[E]);B.responseType="arraybuffer",B.onreadystatechange=function(){4===B.readyState&&(B.status>=200&&B.status<300||setTimeout(function(){a(new TypeError('Failed to fetch (url: "'+o+'")'))},0))},B.onload=function(){B.status>=200&&B.status<300&&h(B.response)},B.onerror=function(){setTimeout(function(){a(new TypeError('Network request failed (url: "'+o+'")'))},0)},B.ontimeout=function(){setTimeout(function(){a(new TypeError('Network request failed (url: "'+o+'")'))},0)},B.send()})}(o,l).then(function(E){h.fs.writeFileSync(o,E),a()},function(E){B(E)}):a()})}return this.resolving[o]},i.prototype.resolved=function(){var o=this;return new Promise(function(l,h){Promise.all(Object.values(o.resolving)).then(function(){l()},function(a){h(a)})})},T.exports=i},4275:function(T,I,n){"use strict";var c=n(8823).Buffer,i=n(6225).isFunction,o=n(6225).isUndefined,a=(n(6225),n(1818).saveAs),B={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function E(C,e,f,g){this.docDefinition=C,this.tableLayouts=e||null,this.fonts=f||B,this.vfs=g}E.prototype._createDoc=function(C,e){var f=function(P){return"object"==typeof P?{url:P.url,headers:P.headers}:{url:P,headers:{}}};C=C||{},this.tableLayouts&&(C.tableLayouts=this.tableLayouts);var w=new(n(8617))(this.fonts);if(n(3857).bindFS(this.vfs),!i(e))return w.createPdfKitDocument(this.docDefinition,C);var Y=new(n(6255))(n(3857));for(var y in this.fonts)if(this.fonts.hasOwnProperty(y)){if(this.fonts[y].normal){var d=f(this.fonts[y].normal);Y.resolve(d.url,d.headers),this.fonts[y].normal=d.url}this.fonts[y].bold&&(d=f(this.fonts[y].bold),Y.resolve(d.url,d.headers),this.fonts[y].bold=d.url),this.fonts[y].italics&&(d=f(this.fonts[y].italics),Y.resolve(d.url,d.headers),this.fonts[y].italics=d.url),this.fonts[y].bolditalics&&(d=f(this.fonts[y].bolditalics),Y.resolve(d.url,d.headers),this.fonts[y].bolditalics=d.url)}if(this.docDefinition.images)for(var v in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(v)&&(d=f(this.docDefinition.images[v]),Y.resolve(d.url,d.headers),this.docDefinition.images[v]=d.url);var m=this;Y.resolved().then(function(){var P=w.createPdfKitDocument(m.docDefinition,C);e(P)},function(P){throw P})},E.prototype._flushDoc=function(C,e){var g,f=[];C.on("readable",function(){for(var w;null!==(w=C.read(9007199254740991));)f.push(w)}),C.on("end",function(){g=c.concat(f),e(g,C._pdfMakePages)}),C.end()},E.prototype._getPages=function(C,e){if(!e)throw"_getPages is an async method and needs a callback argument";var f=this;this._createDoc(C,function(g){f._flushDoc(g,function(w,Q){e(Q)})})},E.prototype._bufferToBlob=function(C){var e;try{e=new Blob([C],{type:"application/pdf"})}catch(g){if("InvalidStateError"===g.name){var f=new Uint8Array(C);e=new Blob([f.buffer],{type:"application/pdf"})}}if(!e)throw"Could not generate blob";return e},E.prototype._openWindow=function(){var C=window.open("","_blank");if(null===C)throw"Open PDF in new window blocked by browser";return C},E.prototype._openPdf=function(C,e){e||(e=this._openWindow());try{this.getBlob(function(f){var w=(window.URL||window.webkitURL).createObjectURL(f);e.location.href=w},C)}catch(f){throw e.close(),f}},E.prototype.open=function(C,e){(C=C||{}).autoPrint=!1,this._openPdf(C,e=e||null)},E.prototype.print=function(C,e){(C=C||{}).autoPrint=!0,this._openPdf(C,e=e||null)},E.prototype.download=function(C,e,f){i(C)&&(o(e)||(f=e),e=C,C=null),C=C||"file.pdf",this.getBlob(function(g){a(g,C),i(e)&&e()},f)},E.prototype.getBase64=function(C,e){if(!C)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(f){C(f.toString("base64"))},e)},E.prototype.getDataUrl=function(C,e){if(!C)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(f){C("data:application/pdf;base64,"+f.toString("base64"))},e)},E.prototype.getBlob=function(C,e){if(!C)throw"getBlob is an async method and needs a callback argument";var f=this;this.getBuffer(function(g){var w=f._bufferToBlob(g);C(w)},e)},E.prototype.getBuffer=function(C,e){if(!C)throw"getBuffer is an async method and needs a callback argument";var f=this;this._createDoc(e,function(g){f._flushDoc(g,function(w){C(w)})})},E.prototype.getStream=function(C,e){if(!i(e))return this._createDoc(C);this._createDoc(C,function(g){e(g)})},T.exports={createPdf:function(C,e,f,g){if(!function u(){try{var C=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(C,e),42===C.foo()}catch(f){return!1}}())throw"Your browser does not provide the level of support needed";return new E(C,e||n.g.pdfMake.tableLayouts,f||n.g.pdfMake.fonts,g||n.g.pdfMake.vfs)}}},3857:function(T,I,n){"use strict";var i=n(8823).Buffer;function o(){this.fileSystem={},this.dataSystem={}}function l(h){return 0===h.indexOf("/")&&(h=h.substring("/".length)),0===h.indexOf("/")&&(h=h.substring(1)),h}o.prototype.existsSync=function(h){return h=l(h),void 0!==this.fileSystem[h]||void 0!==this.dataSystem[h]},o.prototype.readFileSync=function(h,a){h=l(h);var B=this.dataSystem[h];if("string"==typeof B&&"utf8"===a)return B;if(B)return new i(B,"string"==typeof B?"base64":void 0);var E=this.fileSystem[h];if(E)return E;throw"File '"+h+"' not found in virtual file system"},o.prototype.writeFileSync=function(h,a){this.fileSystem[l(h)]=a},o.prototype.bindFS=function(h){this.dataSystem=h||{}},T.exports=new o},4498:function(T,I,n){"use strict";var c=n(6225).isString;function o(a){return"auto"===a.width}function l(a){return null==a.width||"*"===a.width||"star"===a.width}T.exports={buildColumnWidths:function i(a,B){var E=[],u=0,C=0,e=[],f=0,g=0,w=[],Q=B;a.forEach(function(m){o(m)?(E.push(m),u+=m._minWidth,C+=m._maxWidth):l(m)?(e.push(m),f=Math.max(f,m._minWidth),g=Math.max(g,m._maxWidth)):w.push(m)}),w.forEach(function(m){c(m.width)&&/\d+%/.test(m.width)&&(m.width=parseFloat(m.width)*Q/100),m._calcWidth=m.width=B)E.forEach(function(m){m._calcWidth=m._minWidth}),e.forEach(function(m){m._calcWidth=f});else{if(Y0){var v=B/e.length;e.forEach(function(m){m._calcWidth=v})}}},measureMinMax:function h(a){for(var B={min:0,max:0},E={min:0,max:0},u=0,C=0,e=a.length;C=0;L--){var eA=w.styleStack.styleDictionary[N[L]];for(var sA in eA)eA.hasOwnProperty(sA)&&(F[sA]=eA[sA])}return F}function d(N){return h(N)?N=[N,N,N,N]:B(N)&&2===N.length&&(N=[N[0],N[1],N[0],N[1]]),N}var v=[void 0,void 0,void 0,void 0];if(g.style){var P=y(B(g.style)?g.style:[g.style]);P&&(v=Y(P,v)),P.margin&&(v=d(P.margin))}return v=Y(g,v),g.margin&&(v=d(g.margin)),void 0===v[0]&&void 0===v[1]&&void 0===v[2]&&void 0===v[3]?null:v}(),g.columns)return Q(w.measureColumns(g));if(g.stack)return Q(w.measureVerticalContainer(g));if(g.ul)return Q(w.measureUnorderedList(g));if(g.ol)return Q(w.measureOrderedList(g));if(g.table)return Q(w.measureTable(g));if(void 0!==g.text)return Q(w.measureLeaf(g));if(g.toc)return Q(w.measureToc(g));if(g.image)return Q(w.measureImage(g));if(g.svg)return Q(w.measureSVG(g));if(g.canvas)return Q(w.measureCanvas(g));if(g.qr)return Q(w.measureQr(g));throw"Unrecognized document structure: "+JSON.stringify(g,E)});function Q(Y){var y=Y._margin;return y&&(Y._minWidth+=y[0]+y[2],Y._maxWidth+=y[0]+y[2]),Y}},f.prototype.convertIfBase64Image=function(g){if(/^data:image\/(jpeg|jpg|png);base64,/.test(g.image)){var w="$$pdfmake$$"+this.autoImageIndex++;this.images[w]=g.image,g.image=w}},f.prototype.measureImageWithDimensions=function(g,w){if(g.fit){var Q=w.width/w.height>g.fit[0]/g.fit[1]?g.fit[0]/w.width:g.fit[1]/w.height;g._width=g._minWidth=g._maxWidth=w.width*Q,g._height=w.height*Q}else g._width=g._minWidth=g._maxWidth=g.width||w.width,g._height=g.height||w.height*g._width/w.width,h(g.maxWidth)&&g.maxWidthg._width&&(g._width=g._minWidth=g._maxWidth=g.minWidth,g._height=g._width*w.height/w.width),h(g.minHeight)&&g.minHeight>g._height&&(g._height=g.minHeight,g._width=g._minWidth=g._maxWidth=g._height*w.width/w.height);g._alignment=this.styleStack.getProperty("alignment")},f.prototype.measureImage=function(g){this.images&&this.convertIfBase64Image(g);var w=this.imageMeasure.measureImage(g.image);return this.measureImageWithDimensions(g,w),g},f.prototype.measureSVG=function(g){var w=this.svgMeasure.measureSVG(g.svg);return this.measureImageWithDimensions(g,w),g.font=this.styleStack.getProperty("font"),g.svg=this.svgMeasure.writeDimensions(g.svg,{width:g._width,height:g._height}),g},f.prototype.measureLeaf=function(g){g._textRef&&g._textRef._textNodeRef.text&&(g.text=g._textRef._textNodeRef.text);var w=this.styleStack.clone();w.push(g);var Q=this.textTools.buildInlines(g.text,w);return g._inlines=Q.items,g._minWidth=Q.minWidth,g._maxWidth=Q.maxWidth,g},f.prototype.measureToc=function(g){if(g.toc.title&&(g.toc.title=this.measureNode(g.toc.title)),g.toc._items.length>0){for(var w=[],Q=g.toc.textStyle||{},p=g.toc.numberStyle||Q,Y=g.toc.textMargin||[0,0,0,0],y=0,d=g.toc._items.length;y=26?F((L/26>>0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[L%26>>0]}(N-1)}function y(N){if(N<1||N>4999)return N.toString();var eA,F=N,L={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},U="";for(eA in L)for(;F>=L[eA];)U+=eA,F-=L[eA];return U}var v;switch(Q){case"none":v=null;break;case"upper-alpha":v=Y(g).toUpperCase();break;case"lower-alpha":v=Y(g);break;case"upper-roman":v=y(g);break;case"lower-roman":v=y(g).toLowerCase();break;default:v=function d(N){return N.toString()}(g)}if(null===v)return{};p&&(B(p)?(p[0]&&(v=p[0]+v),p[1]&&(v+=p[1]),v+=" "):v+=p+" ");var m={text:v},P=w.getProperty("markerColor");return P&&(m.color=P),{_inlines:this.textTools.buildInlines(m,w).items}},f.prototype.measureUnorderedList=function(g){var w=this.styleStack.clone(),Q=g.ul;g.type=g.type||"disc",g._gapSize=this.gapSizeForList(),g._minWidth=0,g._maxWidth=0;for(var p=0,Y=Q.length;p0?w.length-1:0;return g._minWidth=Y.min+g._gap*y,g._maxWidth=Y.max+g._gap*y,g},f.prototype.measureTable=function(g){(function BA(pA){if(pA.table.widths||(pA.table.widths="auto"),l(pA.table.widths))for(pA.table.widths=[pA.table.widths];pA.table.widths.length1?(sA(v,Q,m.colSpan),w.push({col:Q,span:m.colSpan,minWidth:m._minWidth,maxWidth:m._maxWidth})):(d._minWidth=Math.max(d._minWidth,m._minWidth),d._maxWidth=Math.max(d._maxWidth,m._maxWidth))),m.rowSpan&&m.rowSpan>1&&q(g.table,p,Q,m.rowSpan)}}!function U(){for(var pA,lA,cA=0,gA=w.length;cA0)for(pA=_/yA.span,lA=0;lA0)for(pA=MA/yA.span,lA=0;lAE.page?B:E.page>B.page?E:B.y>E.y?B:E).page,x:u.x,y:u.y,availableHeight:u.availableHeight,availableWidth:u.availableWidth}}(this,B.bottomMost)},o.prototype.markEnding=function(B){this.page=B._columnEndingContext.page,this.x=B._columnEndingContext.x,this.y=B._columnEndingContext.y,this.availableWidth=B._columnEndingContext.availableWidth,this.availableHeight=B._columnEndingContext.availableHeight,this.lastColumnWidth=B._columnEndingContext.lastColumnWidth},o.prototype.saveContextInEndingCell=function(B){B._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},o.prototype.completeColumnGroup=function(B){var E=this.snapshots.pop();this.calculateBottomMost(E),this.endingCell=null,this.x=E.x;var u=E.bottomMost.y;B&&(E.page===E.bottomMost.page?E.y+B>u&&(u=E.y+B):u+=B),this.y=u,this.page=E.bottomMost.page,this.availableWidth=E.availableWidth,this.availableHeight=E.bottomMost.availableHeight,B&&(this.availableHeight-=u-E.bottomMost.y),this.lastColumnWidth=E.lastColumnWidth},o.prototype.addMargin=function(B,E){this.x+=B,this.availableWidth-=B+(E||0)},o.prototype.moveDown=function(B){return this.y+=B,this.availableHeight-=B,this.availableHeight>0},o.prototype.initializePage=function(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom,this.pageSnapshot().availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right},o.prototype.pageSnapshot=function(){return this.snapshots[0]?this.snapshots[0]:this},o.prototype.moveTo=function(B,E){null!=B&&(this.x=B,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=E&&(this.y=E,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},o.prototype.moveToRelative=function(B,E){null!=B&&(this.x=this.x+B),null!=E&&(this.y=this.y+E)},o.prototype.beginDetachedBlock=function(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,endingCell:this.endingCell,lastColumnWidth:this.lastColumnWidth})},o.prototype.endDetachedBlock=function(){var B=this.snapshots.pop();this.x=B.x,this.y=B.y,this.availableWidth=B.availableWidth,this.availableHeight=B.availableHeight,this.page=B.page,this.endingCell=B.endingCell,this.lastColumnWidth=B.lastColumnWidth};var h=function(B,E){return(E=function l(B,E){return void 0===B?E:i(B)&&"landscape"===B.toLowerCase()?"landscape":"portrait"}(E,B.pageSize.orientation))!==B.pageSize.orientation?{orientation:E,width:B.pageSize.height,height:B.pageSize.width}:{orientation:B.pageSize.orientation,width:B.pageSize.width,height:B.pageSize.height}};o.prototype.moveToNextPage=function(B){var E=this.page+1,u=this.page,C=this.y,e=E>=this.pages.length;if(e){var f=this.availableWidth,g=this.getCurrentPage().pageSize.orientation,w=h(this.getCurrentPage(),B);this.addPage(w),g===w.orientation&&(this.availableWidth=f)}else this.page=E,this.initializePage();return{newPageCreated:e,prevPage:u,prevY:C,y:this.y}},o.prototype.addPage=function(B){var E={items:[],pageSize:B};return this.pages.push(E),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),E},o.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},o.prototype.getCurrentPosition=function(){var B=this.getCurrentPage().pageSize,E=B.height-this.pageMargins.top-this.pageMargins.bottom,u=B.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:B.orientation,pageInnerHeight:E,pageInnerWidth:u,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/E,horizontalRatio:(this.x-this.pageMargins.left)/u}},T.exports=o},1196:function(T,I,n){"use strict";var c=n(4775),i=n(6225).isNumber,o=n(6225).pack,l=n(6225).offsetVector,h=n(3858);function a(u,C){this.context=u,this.contextStack=[],this.tracker=C}function B(u,C,e){null==e||e<0||e>u.items.length?u.items.push(C):u.items.splice(e,0,C)}a.prototype.addLine=function(u,C,e){var f=u.getHeight(),g=this.context,w=g.getCurrentPage(),Q=this.getCurrentPositionOnPage();return!(g.availableHeight0&&u.inlines[0].alignment,g=0;switch(f){case"right":g=C-e;break;case"center":g=(C-e)/2}if(g&&(u.x=(u.x||0)+g),"justify"===f&&!u.newLineForced&&!u.lastLineInParagraph&&u.inlines.length>1)for(var w=(C-e)/(u.inlines.length-1),Q=1,p=u.inlines.length;Q0)&&(void 0===u._x&&(u._x=u.x||0),u.x=f.x+u._x,u.y=f.y,this.alignImage(u),B(g,{type:e||"image",item:u},C),f.moveDown(u._height),w)},a.prototype.addSVG=function(u,C){return this.addImage(u,C,"svg")},a.prototype.addQr=function(u,C){var e=this.context,f=e.getCurrentPage(),g=this.getCurrentPositionOnPage();if(!f||void 0===u.absolutePosition&&e.availableHeightg.availableHeight||(u.items.forEach(function(Q){switch(Q.type){case"line":var p=function E(u){var C=new c(u.maxWidth);for(var e in u)u.hasOwnProperty(e)&&(C[e]=u[e]);return C}(Q.item);p._node&&(p._node.positions[0].pageNumber=g.page+1),p.x=(p.x||0)+(C?u.xOffset||0:g.x),p.y=(p.y||0)+(e?u.yOffset||0:g.y),w.items.push({type:"line",item:p});break;case"vector":var Y=o(Q.item);l(Y,C?u.xOffset||0:g.x,e?u.yOffset||0:g.y),w.items.push({type:"vector",item:Y});break;case"image":case"svg":var y=o(Q.item);y.x=(y.x||0)+(C?u.xOffset||0:g.x),y.y=(y.y||0)+(e?u.yOffset||0:g.y),w.items.push({type:Q.type,item:y})}}),f||g.moveDown(u.height),0))},a.prototype.pushContext=function(u,C){void 0===u&&(C=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,u=this.context.availableWidth),i(u)&&(u=new h({width:u,height:C},{left:0,right:0,top:0,bottom:0})),this.contextStack.push(this.context),this.context=u},a.prototype.popContext=function(){this.context=this.contextStack.pop()},a.prototype.getCurrentPositionOnPage=function(){return(this.contextStack[0]||this.context).getCurrentPosition()},T.exports=a},2249:function(T,I,n){"use strict";var c=n(6225).isArray;function o(l,h){for(var a in this.fonts={},this.pdfKitDoc=h,this.fontCache={},l)if(l.hasOwnProperty(a)){var B=l[a];this.fonts[a]={normal:B.normal,bold:B.bold,italics:B.italics,bolditalics:B.bolditalics}}}o.prototype.getFontType=function(l,h){return function i(l,h){var a="normal";return l&&h?a="bolditalics":l?a="bold":h&&(a="italics"),a}(l,h)},o.prototype.getFontFile=function(l,h,a){var B=this.getFontType(h,a);return this.fonts[l]&&this.fonts[l][B]?this.fonts[l][B]:null},o.prototype.provideFont=function(l,h,a){var B=this.getFontType(h,a);if(null===this.getFontFile(l,h,a))throw new Error("Font '"+l+"' in style '"+B+"' is not defined in the font section of the document definition.");if(this.fontCache[l]=this.fontCache[l]||{},!this.fontCache[l][B]){var E=this.fonts[l][B];c(E)||(E=[E]),this.fontCache[l][B]=this.pdfKitDoc.font.apply(this.pdfKitDoc,E)._font}return this.fontCache[l][B]},T.exports=o},6225:function(T){"use strict";function i(g){return Array.isArray(g)}T.exports={isString:function I(g){return"string"==typeof g||g instanceof String},isNumber:function n(g){return"number"==typeof g||g instanceof Number},isBoolean:function c(g){return"boolean"==typeof g},isArray:i,isFunction:function o(g){return"function"==typeof g},isObject:function l(g){return null!==g&&"object"==typeof g},isNull:function h(g){return null===g},isUndefined:function a(g){return void 0===g},pack:function B(){for(var g={},w=0,Q=arguments.length;w0})).forEach(function(W){var hA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(mA){void 0!==W[mA]&&(hA[mA]=W[mA])}),hA.startPosition=W.positions[0],hA.pageNumbers=Array.from(new Set(W.positions.map(function(mA){return mA.pageNumber}))),hA.pages=MA.length,hA.stack=C(W.stack),W.nodeInfo=hA});for(var uA=0;uA<_.length;uA++){var QA=_[uA];if("before"!==QA.pageBreak&&!QA.pageBreakCalculated){QA.pageBreakCalculated=!0;var NA=QA.nodeInfo.pageNumbers[0],bA=[],XA=[],X=[];if(cA.length>1)for(var O=uA+1,$=_.length;O<$;O++)_[O].nodeInfo.pageNumbers.indexOf(NA)>-1&&bA.push(_[O].nodeInfo),cA.length>2&&_[O].nodeInfo.pageNumbers.indexOf(NA+1)>-1&&XA.push(_[O].nodeInfo);if(cA.length>3)for(O=0;O-1&&X.push(_[O].nodeInfo);if(cA(QA.nodeInfo,bA,XA,X))return QA.pageBreak="before",!0}}return!1}this.docPreprocessor=new i,this.docMeasure=new o(L,U,eA,this.imageMeasure,this.svgMeasure,this.tableLayouts,pA);for(var FA=this.tryLayoutDocument(F,L,U,eA,sA,q,BA,pA,lA);gA(FA.linearNodeList,FA.pages);)FA.linearNodeList.forEach(function(MA){MA.resetXY()}),FA=this.tryLayoutDocument(F,L,U,eA,sA,q,BA,pA,lA);return FA.pages},P.prototype.tryLayoutDocument=function(F,L,U,eA,sA,q,BA,pA,lA,cA){this.linearNodeList=[],F=this.docPreprocessor.preprocessDocument(F),F=this.docMeasure.measureDocument(F),this.writer=new h(new l(this.pageSize,this.pageMargins),this.tracker);var gA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){gA.addBackground(sA)}),this.addBackground(sA),this.processNode(F),this.addHeadersAndFooters(q,BA),null!=lA&&this.addWatermark(lA,L,eA),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},P.prototype.addBackground=function(F){var L=Y(F)?F:function(){return F},U=this.writer.context(),eA=U.getCurrentPage().pageSize,sA=L(U.page+1,eA);sA&&(this.writer.beginUnbreakableBlock(eA.width,eA.height),sA=this.docPreprocessor.preprocessDocument(sA),this.processNode(this.docMeasure.measureDocument(sA)),this.writer.commitUnbreakableBlock(0,0),U.backgroundLength[U.page]+=sA.positions.length)},P.prototype.addStaticRepeatable=function(F,L){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(F))},L)},P.prototype.addDynamicRepeatable=function(F,L){for(var eA=0,sA=this.writer.context().pages.length;eA1;)_.push({fontSize:NA}),(MA=FA.sizeOfRotatedText(gA.text,gA.angle,_)).width>cA.width?NA=(uA+(QA=NA))/2:MA.widthcA.height?(uA+(QA=NA))/2:((uA=NA)+QA)/2),_.pop();return NA}(this.pageSize,F,L));var eA={text:F.text,font:L.provideFont(F.font,F.bold,F.italics),fontSize:F.fontSize,color:F.color,opacity:F.opacity,angle:F.angle};eA._size=function pA(cA,gA){var yA=new y(gA),FA=new d(null,{font:cA.font,bold:cA.bold,italics:cA.italics});return FA.push({fontSize:cA.fontSize}),{size:yA.sizeOfString(cA.text,FA),rotatedSize:yA.sizeOfRotatedText(cA.text,cA.angle,FA)}}(F,L);for(var sA=this.writer.context().pages,q=0,BA=sA.length;q0;lA--)pA.push(BA);return pA}(F._gap);eA&&(U-=(eA.length-1)*F._gap),a.buildColumnWidths(L,U);var sA=this.processRow(L,L,eA);m(F.positions,sA.positions)},P.prototype.processRow=function(F,L,U,eA,sA,q){var BA=this,pA=[],lA=[];return this.tracker.auto("pageChanged",function cA(FA){for(var _,MA=0,uA=pA.length;MA1)for(var NA=1;NAFA?U[FA]:0}function yA(FA,_){if(FA.rowSpan&&FA.rowSpan>1){var MA=sA+FA.rowSpan-1;if(MA>=eA.length)throw"Row span for column "+_+" (with indexes starting from 0) exceeded row count";return eA[MA][_]}return null}},P.prototype.processList=function(F,L){var q,U=this,eA=F?L.ol:L.ul,sA=L._gapSize;this.writer.context().addMargin(sA.width),this.tracker.auto("lineAdded",function BA(pA){if(q){var lA=q;if(q=null,lA.canvas){var cA=lA.canvas[0];w(cA,-lA._minWidth,0),U.writer.addVector(cA)}else if(lA._inlines){var gA=new E(U.pageSize.width);gA.addInline(lA._inlines[0]),gA.x=-lA._minWidth,gA.y=pA.getAscenderHeight()-gA.getAscenderHeight(),U.writer.addLine(gA,!0)}}},function(){eA.forEach(function(pA){q=pA.listMarker,U.processNode(pA),m(L.positions,pA.positions)})}),this.writer.context().addMargin(-sA.width)},P.prototype.processTable=function(F){var L=new B(F);L.beginTable(this.writer);for(var U=F.table.heights,eA=0,sA=F.table.body.length;eA0&&(U.hasEnoughSpaceForInline(F._inlines[0],F._inlines.slice(1))||sA);){var q=!1,BA=F._inlines.shift();if(sA=!1,!BA.noWrap&&BA.text.length>1&&BA.width>U.getAvailableWidth()){var pA=BA.width/BA.text.length,lA=Math.floor(U.getAvailableWidth()/pA);if(lA<1&&(lA=1),lA0){var u=B.pages[0];if(u.xOffset=h,u.yOffset=a,E>1)if(void 0!==h||void 0!==a)u.height=B.getCurrentPage().pageSize.height-B.pageMargins.top-B.pageMargins.bottom;else{u.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var C=0,e=this.repeatables.length;CXA.item.y2?XA.item.y1:XA.item.y2:0}(XA)}var NA=N(MA||40),bA=NA.top;return _.forEach(function(XA){XA.items.forEach(function(X){var O=QA(X);O>bA&&(bA=O)})}),bA+=NA.bottom}function P(_,MA){_&&"auto"===_.height&&(_.height=1/0);var QA=function L(_){if(C(_)){var MA=l[_.toUpperCase()];if(!MA)throw"Page size "+_+" not recognized";return{width:MA[0],height:MA[1]}}return _}(_||"A4");return function uA(NA){return!!C(NA)&&("portrait"===(NA=NA.toLowerCase())&&QA.width>QA.height||"landscape"===NA&&QA.widthQA.height?"landscape":"portrait",QA}function N(_){if(e(_))_={left:_,right:_,top:_,bottom:_};else if(g(_))if(2===_.length)_={left:_[0],top:_[1],right:_[0],bottom:_[1]};else{if(4!==_.length)throw"Invalid pageMargins definition";_={left:_[0],top:_[1],right:_[2],bottom:_[3]}}return _}function U(_,MA){_.pageSize.orientation!==(MA.options.size[0]>MA.options.size[1]?"landscape":"portrait")&&(MA.options.size=[MA.options.size[1],MA.options.size[0]])}function sA(_,MA){var uA=_;return MA.sup&&(uA-=.75*MA.fontSize),MA.sub&&(uA+=.35*MA.fontSize),uA}function q(_,MA,uA,QA,NA){function bA(st,TA){var it,vt,It=new E(null);if(w(st.positions))throw"Page reference id not found";var ht=st.positions[0].pageNumber.toString();switch(TA.text=ht,it=It.widthOfString(TA.text,TA.font,TA.fontSize,TA.characterSpacing,TA.fontFeatures),vt=TA.width-it,TA.width=it,TA.alignment){case"right":TA.x+=vt;break;case"center":TA.x+=vt/2}}_._pageNodeRef&&bA(_._pageNodeRef,_.inlines[0]),MA=MA||0,uA=uA||0;var XA=_.getHeight(),O=XA-_.getAscenderHeight();B.drawBackground(_,MA,uA,QA,NA);for(var $=0,W=_.inlines.length;$1){var XA=_.points[0],X=_.points[_.points.length-1];(_.closePath||XA.x===X.x&&XA.y===X.y)&&uA.closePath()}break;case"path":uA.path(_.d)}if(_.linearGradient&&QA){var O=1/(_.linearGradient.length-1);for(NA=0;NA<_.linearGradient.length;NA++)QA.stop(NA*O,_.linearGradient[NA]);_.color=QA}Q(_.color)&&(_.color=p(_.color,MA));var $=e(_.fillOpacity)?_.fillOpacity:1,W=e(_.strokeOpacity)?_.strokeOpacity:1;_.color&&_.lineColor?(uA.fillColor(_.color,$),uA.strokeColor(_.lineColor,W),uA.fillAndStroke()):_.color?(uA.fillColor(_.color,$),uA.fill()):(uA.strokeColor(_.lineColor||"black",W),uA.stroke())}function lA(_,MA,uA,QA){var NA=e(_.opacity)?_.opacity:1;if(QA.opacity(NA),_.cover){var bA=_.cover.align||"center",XA=_.cover.valign||"center",X=_.cover.width?_.cover.width:_.width,O=_.cover.height?_.cover.height:_.height;QA.save(),QA.rect(_.x,_.y,X,O).clip(),QA.image(_.image,_.x,_.y,{cover:[X,O],align:bA,valign:XA}),QA.restore()}else QA.image(_.image,_.x,_.y,{width:_._width,height:_._height});_.link&&QA.link(_.x,_.y,_._width,_._height,_.link),_.linkToPage&&(QA.ref({Type:"Action",S:"GoTo",D:[_.linkToPage,0,0]}).end(),QA.annotate(_.x,_.y,_._width,_._height,{Subtype:"Link",Dest:[_.linkToPage-1,"XYZ",null,null,null]})),_.linkToDestination&&QA.goTo(_.x,_.y,_._width,_._height,_.linkToDestination)}function cA(_,MA,uA,QA,NA){var bA=Object.assign({width:_._width,height:_._height,assumePt:!0},_.options);bA.fontCallback=function(XA,X,O){var $=XA.split(",").map(function(nA){return nA.trim().replace(/('|")/g,"")}),W=function(_,MA,uA){for(var QA=0;QA-1&&(bA=bA.slice(0,XA)),uA.height===1/0){var X=m(bA,_.pageMargins);this.pdfKitDoc.options.size=[uA.width,X]}var O=function FA(_,MA){var uA={};return Object.keys(_).forEach(function(QA){var NA=_[QA];uA[QA]=MA.pattern(NA.boundingBox,NA.xStep,NA.yStep,NA.pattern,NA.colored)}),uA}(_.patterns||{},this.pdfKitDoc);if(function eA(_,MA,uA,QA,NA){uA._pdfMakePages=_,uA.addPage();var bA=0;NA&&_.forEach(function(mA){bA+=mA.items.length});var XA=0;NA=NA||function(){};for(var X=0;X<_.length;X++){X>0&&(U(_[X],uA),uA.addPage(uA.options));for(var O=_[X],$=0,W=O.items.length;$=128?285:0);var p=[[]];for(w=0;w<30;++w){for(var Y=p[w],y=[],d=0;d<=w;++d)y.push(g[(d6},eA=function(X,O){var $=-8&function(X){var O=I[X],$=16*X*X+128*X+64;return F(X)&&($-=36),O[2].length&&($-=25*O[2].length*O[2].length-10*O[2].length-55),$}(X),W=I[X];return $-8*W[0][O]*W[1][O]},sA=function(X,O){switch(O){case 1:return X<10?10:X<27?12:14;case 2:return X<10?9:X<27?11:13;case 4:return X<10?8:16;case 8:return X<10?8:X<27?10:12}},q=function(X,O,$){var W=eA(X,$)-4-sA(X,O);switch(O){case 1:return 3*(W/10|0)+(W%10<4?0:W%10<7?1:2);case 2:return 2*(W/11|0)+(W%11<6?0:1);case 4:return W/8|0;case 8:return W/13|0}},lA=function(X,O){for(var $=X.slice(0),W=X.length,hA=O.length,mA=0;mA=0)for(var EA=0;EA=0;--mA)hA>>W+mA&1&&(hA^=$<>nA&1;return X},uA=function(X){for(var mA=function(JA){for(var WA=0,rt=0;rt=5&&(WA+=JA[rt]-5+3);for(rt=5;rt=4*xA||JA[rt+1]>=4*xA)&&(WA+=40)}return WA},nA=X.length,EA=0,GA=0,et=0;et=nA){for(hA.push(mA|TA>>(it-=nA));it>=8;)hA.push(TA>>(it-=8)&255);mA=0,nA=8}it>0&&(mA|=(TA&(1<>3);nA=function(X,O,$){for(var W=[],hA=X.length/O|0,mA=0,nA=O-X.length%O,EA=0;EA>Mt&1,hA[It+xA][ht+Mt]=1};for(nA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),nA($-8,0,8,9,[256,127,65,93,93,93,65,127]),nA(0,$-8,9,8,[254,130,186,186,186,130,254,0,0]),mA=9;mA<$-8;++mA)W[6][mA]=W[mA][6]=1&~mA,hA[6][mA]=hA[mA][6]=1;var EA=O[2],GA=EA.length;for(mA=0;mA>vt++&1,hA[mA][$-11+TA]=hA[$-11+TA][mA]=1}return{matrix:W,reserved:hA}}(O),GA=EA.matrix,et=EA.reserved;if(function(X,O,$){for(var W=X.length,hA=0,mA=-1,nA=W-1;nA>=0;nA-=2){6==nA&&--nA;for(var EA=mA<0?W-1:0,GA=0;GAnA-2;--et)O[EA][et]||(X[EA][et]=$[hA>>3]>>(7&~hA)&1,++hA);EA+=mA}mA=-mA}}(GA,et,nA),hA<0){_(GA,et,0),MA(GA,0,W,0);var st=0,TA=uA(GA);for(_(GA,et,0),hA=1;hA<8;++hA){_(GA,et,hA),MA(GA,0,W,hA);var it=uA(GA);TA>it&&(TA=it,st=hA),_(GA,et,hA)}hA=st}return _(GA,et,hA),MA(GA,0,W,hA),GA};function NA(X,O){var $={numeric:1,alphanumeric:2,octet:4},hA=(O=O||{}).version||-1,mA={L:1,M:0,Q:3,H:2}[(O.eccLevel||"L").toUpperCase()],nA=O.mode?$[O.mode.toLowerCase()]:-1,EA="mask"in O?O.mask:-1;if(nA<0)nA="string"==typeof X?X.match(h)?1:X.match(B)?2:4:4;else if(1!=nA&&2!=nA&&4!=nA)throw"invalid or unsupported mode";if(null===(X=function(X,O){switch(X){case 1:return O.match(h)?O:null;case 2:return O.match(a)?O.toUpperCase():null;case 4:if("string"==typeof O){for(var $=[],W=0;W>6,128|63&hA):hA<65536?$.push(224|hA>>12,128|hA>>6&63,128|63&hA):$.push(240|hA>>18,128|hA>>12&63,128|hA>>6&63,128|63&hA)}return $}return O}}(nA,X)))throw"invalid data format";if(mA<0||mA>3)throw"invalid ECC level";if(hA<0){for(hA=1;hA<=40&&!(X.length<=q(hA,nA,mA));++hA);if(hA>40)throw"too large data for the Qr format"}else if(hA<1||hA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=EA&&(EA<0||EA>8))throw"invalid mask";return QA(X,hA,nA,mA,EA)}T.exports={measure:function XA(X){var O=function bA(X,O){var $=[],W=O.background||"#fff",hA=O.foreground||"#000",mA=NA(X,O),nA=mA.length,EA=Math.floor(O.fit?O.fit/nA:5),GA=nA*EA;$.push({type:"rect",x:0,y:0,w:GA,h:GA,lineWidth:0,color:W});for(var et=0;et0;)this.styleOverrides.pop()},h.prototype.autopush=function(a){if(c(a))return 0;var B=[];a.style&&(B=i(a.style)?a.style:[a.style]);for(var E=0,u=B.length;E0&&this.pop(E),u},h.prototype.getProperty=function(a){if(this.styleOverrides)for(var B=this.styleOverrides.length-1;B>=0;B--){var E=this.styleOverrides[B];if(c(E)){var u=this.styleDictionary[E];if(u&&!o(u[a])&&!l(u[a]))return u[a]}else if(!o(E[a])&&!l(E[a]))return E[a]}return this.defaultStyle&&this.defaultStyle[a]},T.exports=h},7601:function(T,I,n){"use strict";var c=n(6513);function i(h){var a=parseFloat(h);if("number"==typeof a&&!isNaN(a))return a}function o(h){var a;try{a=new c.XmlDocument(h)}catch(B){throw new Error("SVGMeasure: "+B)}if("svg"!==a.name)throw new Error("SVGMeasure: expected document");return a}function l(){}l.prototype.measureSVG=function(h){var a=o(h),B=i(a.attr.width),E=i(a.attr.height);if((null==B||null==E)&&"string"==typeof a.attr.viewBox){var u=a.attr.viewBox.split(/[,\s]+/);if(4!==u.length)throw new Error("Unexpected svg viewbox format, should have 4 entries but found: '"+a.attr.viewBox+"'");null==B&&(B=i(u[2])),null==E&&(E=i(u[3]))}return{width:B,height:E}},l.prototype.writeDimensions=function(h,a){var B=o(h);return B.attr.width=""+a.width,B.attr.height=""+a.height,B.toString()},T.exports=l},9342:function(T,I,n){"use strict";var c=n(4498),i=n(6225).isFunction,o=n(6225).isNumber;function l(h){this.tableNode=h}l.prototype.beginTable=function(h){var a,B,E=this;this.offsets=(a=this.tableNode)._offsets,this.layout=a._layout,B=h.context().availableWidth-this.offsets.total,c.buildColumnWidths(a.table.widths,B),this.tableWidth=a._offsets.total+function u(){var f=0;return a.table.widths.forEach(function(g){f+=g._calcWidth}),f}(),this.rowSpanData=function C(){var f=[],g=0,w=0;f.push({left:0,rowSpan:0});for(var Q=0,p=E.tableNode.table.body[0].length;Q0&&m(g+d,Q,0,p.border[0]),void 0!==p.border[2]&&m(g+d,Q+y-1,2,p.border[2]);for(var v=0;v0&&m(g,Q+v,1,p.border[1]),void 0!==p.border[3]&&m(g+Y-1,Q+v,3,p.border[3])}}function m(P,N,F,L){var U=f[P][N];U.border=U.border||{},U.border[F]=L}}(this.tableNode.table.body),this.drawHorizontalLine(0,h)},l.prototype.onRowBreak=function(h,a){var B=this;return function(){var E=B.rowPaddingTop+(B.headerRows?0:B.topLineWidth);a.context().availableHeight-=B.reservedAtBottom,a.context().moveDown(E)}},l.prototype.beginRow=function(h,a){this.topLineWidth=this.layout.hLineWidth(h,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(h,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(h+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(h,this.tableNode),this.rowCallback=this.onRowBreak(h,a),a.tracker.startTracking("pageChanged",this.rowCallback),this.dontBreakRows&&a.beginUnbreakableBlock(),this.rowTopY=a.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,a.context().availableHeight-=this.reservedAtBottom,a.context().moveDown(this.rowPaddingTop)},l.prototype.drawHorizontalLine=function(h,a,B){var E=this.layout.hLineWidth(h,this.tableNode);if(E){var C,u=this.layout.hLineStyle(h,this.tableNode);u&&u.dash&&(C=u.dash);for(var w,Q,p,e=E/2,f=null,g=this.tableNode.table.body,Y=0,y=this.rowSpanData.length;Y0&&(N=(w=g[h-1][Y]).border?w.border[3]:this.layout.defaultBorder)&&w.borderColor&&(m=w.borderColor[3]),hL;)f.width+=this.rowSpanData[Y+L++].width||0;Y+=L-1}else if(w&&w.colSpan&&N){for(;w.colSpan>L;)f.width+=this.rowSpanData[Y+L++].width||0;Y+=L-1}else if(Q&&Q.colSpan&&P){for(;Q.colSpan>L;)f.width+=this.rowSpanData[Y+L++].width||0;Y+=L-1}else f.width+=this.rowSpanData[Y].width||0}var U=(B||0)+e;v&&f&&f.width&&(a.addVector({type:"line",x1:f.left,x2:f.left+f.width,y1:U,y2:U,lineWidth:E,dash:C,lineColor:m},!1,B),f=null,m=null,w=null,Q=null,p=null)}a.context().moveDown(E)}},l.prototype.drawVerticalLine=function(h,a,B,E,u,C,e){var f=this.layout.vLineWidth(E,this.tableNode);if(0!==f){var w,g=this.layout.vLineStyle(E,this.tableNode);g&&g.dash&&(w=g.dash);var p,Y,y,Q=this.tableNode.table.body;if(E>0&&(p=Q[C][e])&&p.borderColor&&(p.border?p.border[2]:this.layout.defaultBorder)&&(y=p.borderColor[2]),null==y&&E0&&$--}return O.push({x:C.rowSpanData[C.rowSpanData.length-1].left,index:C.rowSpanData.length-1}),O}(),w=[],Q=B&&B.length>0,p=this.tableNode.table.body;if(w.push({y0:this.rowTopY,page:Q?B[0].prevPage:e}),Q)for(u=0,E=B.length;u0&&!this.headerRows,N=P?0:this.topLineWidth,F=w[d].y0,L=w[d].y1;for(m&&(L+=this.rowPaddingBottom),a.context().page!=w[d].page&&(a.context().page=w[d].page,this.reservedAtBottom=0),u=0,E=g.length;u0&&!U&&(U=(q=p[h][sA-1]).border?q.border[2]:this.layout.defaultBorder),sA+11)for(var XA=1;XA1)for(XA=1;XA0&&this.rowSpanData[u].rowSpan--}this.drawHorizontalLine(h+1,a),this.headerRows&&h===this.headerRows-1&&(this.headerRepeatable=a.currentBlockToRepeatable()),this.dontBreakRows&&a.tracker.auto("pageChanged",function(){!C.headerRows&&!1!==C.layout.hLineWhenBroken&&C.drawHorizontalLine(h,a)},function(){a.commitUnbreakableBlock()}),this.headerRepeatable&&(h===this.rowsWithoutPageBreak-1||h===this.tableNode.table.body.length-1)&&(a.commitUnbreakableBlock(),a.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)},T.exports=l},3497:function(T,I,n){"use strict";var c=n(6225).isArray,i=n(6225).isPattern,o=n(6225).getPattern;function h(E,u,C,e){var w=E.inlines[0],Q=function f(){for(var gA=0,yA=0,FA=E.inlines.length;yAgA?yA:gA;return E.inlines[gA]}(),p=function g(){for(var gA=0,yA=0,FA=E.inlines.length;yA=0&&i.splice(o,1)}},I.prototype.emit=function(n){var c=Array.prototype.slice.call(arguments,1),i=this.events[n];!i||i.forEach(function(o){o.apply(this,c)})},I.prototype.auto=function(n,c,i){this.startTracking(n,c),i(),this.stopTracking(n,c)},T.exports=I},2480:function(){},5832:function(){},9862:function(){},964:function(){},3083:function(T,I,n){"use strict";var c=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],i="undefined"==typeof globalThis?n.g:globalThis;T.exports=function(){for(var l=[],h=0;h{var Sr=function(Ut){"use strict";var zn,ft=Object.prototype,$t=ft.hasOwnProperty,A="function"==typeof Symbol?Symbol:{},Ct=A.iterator||"@@iterator",T=A.asyncIterator||"@@asyncIterator",I=A.toStringTag||"@@toStringTag";function n(F,L,U){return Object.defineProperty(F,L,{value:U,enumerable:!0,configurable:!0,writable:!0}),F[L]}try{n({},"")}catch(F){n=function(L,U,eA){return L[U]=eA}}function c(F,L,U,eA){var q=Object.create((L&&L.prototype instanceof E?L:E).prototype),BA=new m(eA||[]);return q._invoke=function Y(F,L,U){var eA=o;return function(q,BA){if(eA===h)throw new Error("Generator is already running");if(eA===a){if("throw"===q)throw BA;return N()}for(U.method=q,U.arg=BA;;){var pA=U.delegate;if(pA){var lA=y(pA,U);if(lA){if(lA===B)continue;return lA}}if("next"===U.method)U.sent=U._sent=U.arg;else if("throw"===U.method){if(eA===o)throw eA=a,U.arg;U.dispatchException(U.arg)}else"return"===U.method&&U.abrupt("return",U.arg);eA=h;var cA=i(F,L,U);if("normal"===cA.type){if(eA=U.done?a:l,cA.arg===B)continue;return{value:cA.arg,done:U.done}}"throw"===cA.type&&(eA=a,U.method="throw",U.arg=cA.arg)}}}(F,U,BA),q}function i(F,L,U){try{return{type:"normal",arg:F.call(L,U)}}catch(eA){return{type:"throw",arg:eA}}}Ut.wrap=c;var o="suspendedStart",l="suspendedYield",h="executing",a="completed",B={};function E(){}function u(){}function C(){}var e={};n(e,Ct,function(){return this});var f=Object.getPrototypeOf,g=f&&f(f(P([])));g&&g!==ft&&$t.call(g,Ct)&&(e=g);var w=C.prototype=E.prototype=Object.create(e);function Q(F){["next","throw","return"].forEach(function(L){n(F,L,function(U){return this._invoke(L,U)})})}function p(F,L){function U(q,BA,pA,lA){var cA=i(F[q],F,BA);if("throw"!==cA.type){var gA=cA.arg,yA=gA.value;return yA&&"object"==typeof yA&&$t.call(yA,"__await")?L.resolve(yA.__await).then(function(FA){U("next",FA,pA,lA)},function(FA){U("throw",FA,pA,lA)}):L.resolve(yA).then(function(FA){gA.value=FA,pA(gA)},function(FA){return U("throw",FA,pA,lA)})}lA(cA.arg)}var eA;this._invoke=function sA(q,BA){function pA(){return new L(function(lA,cA){U(q,BA,lA,cA)})}return eA=eA?eA.then(pA,pA):pA()}}function y(F,L){var U=F.iterator[L.method];if(U===zn){if(L.delegate=null,"throw"===L.method){if(F.iterator.return&&(L.method="return",L.arg=zn,y(F,L),"throw"===L.method))return B;L.method="throw",L.arg=new TypeError("The iterator does not provide a 'throw' method")}return B}var eA=i(U,F.iterator,L.arg);if("throw"===eA.type)return L.method="throw",L.arg=eA.arg,L.delegate=null,B;var sA=eA.arg;return sA?sA.done?(L[F.resultName]=sA.value,L.next=F.nextLoc,"return"!==L.method&&(L.method="next",L.arg=zn),L.delegate=null,B):sA:(L.method="throw",L.arg=new TypeError("iterator result is not an object"),L.delegate=null,B)}function d(F){var L={tryLoc:F[0]};1 in F&&(L.catchLoc=F[1]),2 in F&&(L.finallyLoc=F[2],L.afterLoc=F[3]),this.tryEntries.push(L)}function v(F){var L=F.completion||{};L.type="normal",delete L.arg,F.completion=L}function m(F){this.tryEntries=[{tryLoc:"root"}],F.forEach(d,this),this.reset(!0)}function P(F){if(F){var L=F[Ct];if(L)return L.call(F);if("function"==typeof F.next)return F;if(!isNaN(F.length)){var U=-1,eA=function sA(){for(;++U=0;--eA){var sA=this.tryEntries[eA],q=sA.completion;if("root"===sA.tryLoc)return U("end");if(sA.tryLoc<=this.prev){var BA=$t.call(sA,"catchLoc"),pA=$t.call(sA,"finallyLoc");if(BA&&pA){if(this.prev=0;--U){var eA=this.tryEntries[U];if(eA.tryLoc<=this.prev&&$t.call(eA,"finallyLoc")&&this.prev=0;--L){var U=this.tryEntries[L];if(U.finallyLoc===F)return this.complete(U.completion,U.afterLoc),v(U),B}},catch:function(F){for(var L=this.tryEntries.length-1;L>=0;--L){var U=this.tryEntries[L];if(U.tryLoc===F){var eA=U.completion;if("throw"===eA.type){var sA=eA.arg;v(U)}return sA}}throw new Error("illegal catch attempt")},delegateYield:function(F,L,U){return this.delegate={iterator:P(F),resultName:L,nextLoc:U},"next"===this.method&&(this.arg=zn),B}},Ut}(Bi.exports);try{regeneratorRuntime=Sr}catch(Ut){"object"==typeof globalThis?globalThis.regeneratorRuntime=Sr:Function("r","regeneratorRuntime = r")(Sr)}},7757:(Bi,Sr,Ut)=>{Bi.exports=Ut(4979)}}]); \ No newline at end of file diff --git a/frontend/564.c60bd98c3a9d472b.js b/frontend/564.c60bd98c3a9d472b.js new file mode 100644 index 00000000..ce05a22d --- /dev/null +++ b/frontend/564.c60bd98c3a9d472b.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[564],{9564:(X0,Gr,Pt)=>{"use strict";Pt.r(Gr),Pt.d(Gr,{CLNModule:()=>xE});var gt=Pt(9808),ie=Pt(1402),T=Pt(8878),A=Pt(5e3),n=Pt(7093),u=Pt(5899);function o(i,d){1&i&&A._UZ(0,"mat-progress-bar",3)}let s=(()=>{class i{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof ie.OD:this.loading=!0;break;case a instanceof ie.m2:case a instanceof ie.gk:case a instanceof ie.Q3:this.loading=!1}})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-root"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["outlet","outlet"],["color","primary","mode","indeterminate"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,o,1,0,"mat-progress-bar",1),A._UZ(2,"router-outlet",null,2),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",a.loading))},directives:[n.xw,n.yH,n.Wh,gt.O5,u.pW,ie.lC],styles:[""],data:{animation:[T.g]}}),i})();var l=Pt(7579),g=Pt(2722),f=Pt(1365),E=Pt(3396),h=Pt(2687),r=Pt(7731),w=Pt(9828),e=Pt(5043),B=Pt(5620),c=Pt(62),C=Pt(9546),Q=Pt(3954),M=Pt(9224),Y=Pt(7423),v=Pt(2181),p=Pt(5245),I=Pt(3322);const y=function(i){return{backgroundColor:i}};function U(i,d){if(1&i&&A._UZ(0,"span",6),2&i){const t=A.oxw();A.Q6J("ngStyle",A.VKq(1,y,"#"+(null==t.information?null:t.information.color)))}}function S(i,d){if(1&i&&(A.TgZ(0,"div")(1,"h4",1),A._uU(2,"Color"),A.qZA(),A.TgZ(3,"div",2),A._UZ(4,"span",7),A._uU(5),A.ALo(6,"uppercase"),A.qZA()()),2&i){const t=A.oxw();A.xp6(4),A.Q6J("ngStyle",A.VKq(4,y,"#"+(null==t.information?null:t.information.color))),A.xp6(1),A.hij(" ",A.lcZ(6,2,null==t.information?null:t.information.color)," ")}}function b(i,d){if(1&i&&(A.TgZ(0,"span",2),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t)}}let O=(()=>{class i{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain||"")+" "+this.commonService.titleCase(t.network||""))}))}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(c.v))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[A.TTD],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div")(2,"h4",1),A._uU(3,"Alias"),A.qZA(),A.TgZ(4,"div",2),A._uU(5),A.YNc(6,U,1,3,"span",3),A.qZA()(),A.YNc(7,S,7,6,"div",4),A.TgZ(8,"div")(9,"h4",1),A._uU(10,"Implementation"),A.qZA(),A.TgZ(11,"div",2),A._uU(12),A.qZA()(),A.TgZ(13,"div")(14,"h4",1),A._uU(15,"Chain"),A.qZA(),A.YNc(16,b,2,1,"span",5),A.qZA()()),2&t&&(A.xp6(5),A.hij(" ",null==a.information?null:a.information.alias," "),A.xp6(1),A.Q6J("ngIf",!a.showColorFieldSeparately),A.xp6(1),A.Q6J("ngIf",a.showColorFieldSeparately),A.xp6(5),A.Oqu(null!=a.information&&a.information.lnImplementation||null!=a.information&&a.information.version?(null==a.information?null:a.information.lnImplementation)+" "+(null==a.information?null:a.information.version):""),A.xp6(4),A.Q6J("ngForOf",a.chains))},directives:[n.xw,n.yH,n.Wh,gt.O5,gt.PC,I.Zl,gt.sg],pipes:[gt.gd],styles:[""]}),i})();function J(i,d){if(1&i&&(A.TgZ(0,"div",2)(1,"div")(2,"h4",3),A._uU(3,"Lightning"),A.qZA(),A.TgZ(4,"div",4),A._uU(5),A.ALo(6,"number"),A.qZA(),A._UZ(7,"mat-progress-bar",5),A.qZA(),A.TgZ(8,"div")(9,"h4",3),A._uU(10,"On-chain"),A.qZA(),A.TgZ(11,"div",4),A._uU(12),A.ALo(13,"number"),A.qZA(),A._UZ(14,"mat-progress-bar",5),A.qZA(),A.TgZ(15,"div")(16,"h4",3),A._uU(17,"Total"),A.qZA(),A.TgZ(18,"div",4),A._uU(19),A.ALo(20,"number"),A.qZA()()()),2&i){const t=A.oxw();A.xp6(5),A.hij("",A.lcZ(6,5,t.balances.lightning)," Sats"),A.xp6(2),A.s9C("value",t.balances.lightning/t.balances.total*100),A.xp6(5),A.hij("",A.lcZ(13,7,t.balances.onchain)," Sats"),A.xp6(2),A.s9C("value",t.balances.onchain/t.balances.total*100),A.xp6(5),A.hij("",A.lcZ(20,9,t.balances.total)," Sats")}}function sA(i,d){if(1&i&&(A.TgZ(0,"div",6)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let uA=(()=>{class i{constructor(){this.balances={onchain:0,lightning:0,total:0}}}return i.\u0275fac=function(t){return new(t||i)},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,J,21,11,"div",0),A.YNc(1,sA,3,1,"ng-template",null,1,A.W1O)),2&t){const D=A.MAs(2);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.yH,n.Wh,u.pW],pipes:[gt.JJ],styles:[""]}),i})();var X=Pt(7322),cA=Pt(7238),pA=Pt(4834),dA=Pt(8129);const DA=function(){return["../connections/channels/open"]},gA=function(i){return{filter:i}};function QA(i,d){if(1&i&&(A.TgZ(0,"div",19)(1,"a",20),A._uU(2),A.ALo(3,"slice"),A.qZA(),A.TgZ(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A._uU(7,"Local:"),A.qZA(),A._uU(8),A.ALo(9,"number"),A.qZA(),A.TgZ(10,"mat-hint",22),A._UZ(11,"fa-icon",23),A._uU(12),A.ALo(13,"number"),A.qZA(),A.TgZ(14,"mat-hint",24)(15,"strong",8),A._uU(16,"Remote:"),A.qZA(),A._uU(17),A.ALo(18,"number"),A.qZA()(),A._UZ(19,"mat-progress-bar",25),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(3);A.xp6(1),A.s9C("matTooltip",t.alias||t.id),A.s9C("matTooltipDisabled",(t.alias||t.id).length<26),A.Q6J("routerLink",A.DdM(23,DA))("state",A.VKq(24,gA,t.id)),A.xp6(1),A.AsE(" ",A.Dn7(3,11,t.alias||t.id,0,24),"",(t.alias||t.id).length>25?"...":""," "),A.xp6(6),A.hij("",A.xi3(9,15,t.msatoshi_to_us/1e3||0,"1.0-0")," Sats"),A.xp6(3),A.Q6J("icon",a.faBalanceScale),A.xp6(1),A.hij(" (",A.lcZ(13,18,t.balancedness||0),") "),A.xp6(5),A.hij("",A.xi3(18,20,t.msatoshi_to_them/1e3||0,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",t.msatoshi_to_us&&t.msatoshi_to_us>0?+t.msatoshi_to_us/(+t.msatoshi_to_us+ +t.msatoshi_to_them)*100:0)}}function yA(i,d){if(1&i&&(A.TgZ(0,"div",17),A.YNc(1,QA,20,26,"div",18),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngForOf",t.activeChannels)}}function Z(i,d){if(1&i&&(A.TgZ(0,"div",3)(1,"div",4)(2,"span",5),A._uU(3,"Total Capacity"),A.qZA(),A.TgZ(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A._uU(7,"Local:"),A.qZA(),A._uU(8),A.ALo(9,"number"),A.qZA(),A.TgZ(10,"mat-hint",9),A._UZ(11,"fa-icon",10),A._uU(12),A.ALo(13,"number"),A.qZA(),A.TgZ(14,"mat-hint",11)(15,"strong",8),A._uU(16,"Remote:"),A.qZA(),A._uU(17),A.ALo(18,"number"),A.qZA()(),A._UZ(19,"mat-progress-bar",12),A.qZA(),A.TgZ(20,"div",13),A._UZ(21,"mat-divider",14),A.qZA(),A.TgZ(22,"div",15),A.YNc(23,yA,2,1,"div",16),A.qZA()()),2&i){const t=A.oxw(),a=A.MAs(2);A.xp6(8),A.hij("",A.xi3(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.xp6(3),A.Q6J("icon",t.faBalanceScale),A.xp6(1),A.hij(" (",A.lcZ(13,10,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),A.xp6(5),A.hij("",A.xi3(18,12,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),A.xp6(4),A.Q6J("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",a)}}function CA(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",26),A._uU(1," No channels available. "),A.TgZ(2,"button",27),A.NdJ("click",function(){return A.CHM(t),A.oxw().goToChannels()}),A._uU(3,"Open Channel"),A.qZA()()}}function nA(i,d){if(1&i&&(A.TgZ(0,"div",28)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let lA=(()=>{class i{constructor(t){this.router=t,this.faBalanceScale=h.DL8,this.faDumbbell=h.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,Z,24,15,"div",0),A.YNc(1,CA,4,0,"ng-template",null,1,A.W1O),A.YNc(3,nA,3,1,"ng-template",null,2,A.W1O)),2&t){const D=A.MAs(4);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.Wh,n.yH,X.bx,C.BN,cA.gM,u.pW,pA.d,dA.$V,gt.sg,ie.yS,Y.lW],pipes:[gt.JJ,gt.OU],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}),i})();function FA(i,d){if(1&i&&(A.TgZ(0,"div")(1,"h4",4),A._uU(2,"Transactions"),A.qZA(),A.TgZ(3,"div",5),A._uU(4),A.ALo(5,"number"),A.qZA()()),2&i){const t=A.oxw(2);A.xp6(4),A.Oqu(A.lcZ(5,1,null==t.fees?null:t.fees.totalTxCount))}}function bA(i,d){if(1&i&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4,"Total"),A.qZA(),A.TgZ(5,"div",5),A._uU(6),A.ALo(7,"number"),A.qZA()()(),A.TgZ(8,"div",6),A.YNc(9,FA,6,3,"div",7),A.qZA()()),2&i){const t=A.oxw();A.xp6(6),A.hij("",A.lcZ(7,2,(null==t.fees?null:t.fees.feeCollected)/1e3)," Sats"),A.xp6(3),A.Q6J("ngIf",null==t.fees?null:t.fees.totalTxCount)}}function HA(i,d){if(1&i&&(A.TgZ(0,"div",8)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let q=(()=>{class i{constructor(){this.totalFees=[{name:"Total",value:0}]}}return i.\u0275fac=function(t){return new(t||i)},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,bA,10,4,"div",0),A.YNc(1,HA,3,1,"ng-template",null,1,A.W1O)),2&t){const D=A.MAs(2);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.yH,n.Wh],pipes:[gt.JJ],styles:[""]}),i})();function z(i,d){if(1&i&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4,"Active"),A.qZA(),A.TgZ(5,"div",5),A._UZ(6,"span",6),A._uU(7),A.ALo(8,"number"),A.qZA()(),A.TgZ(9,"div")(10,"h4",4),A._uU(11,"Pending"),A.qZA(),A.TgZ(12,"div",5),A._UZ(13,"span",7),A._uU(14),A.ALo(15,"number"),A.qZA()(),A.TgZ(16,"div")(17,"h4",4),A._uU(18,"Inactive"),A.qZA(),A.TgZ(19,"div",5),A._UZ(20,"span",8),A._uU(21),A.ALo(22,"number"),A.qZA()()(),A.TgZ(23,"div",3)(24,"div")(25,"h4",4),A._uU(26,"Capacity"),A.qZA(),A.TgZ(27,"div",5),A._uU(28),A.ALo(29,"number"),A.qZA()(),A.TgZ(30,"div")(31,"h4",4),A._uU(32,"Capacity"),A.qZA(),A.TgZ(33,"div",5),A._uU(34),A.ALo(35,"number"),A.qZA()(),A.TgZ(36,"div")(37,"h4",4),A._uU(38,"Capacity"),A.qZA(),A.TgZ(39,"div",5),A._uU(40),A.ALo(41,"number"),A.qZA()()()()),2&i){const t=A.oxw();A.xp6(7),A.Oqu(A.lcZ(8,6,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.channels)||0)),A.xp6(7),A.Oqu(A.lcZ(15,8,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.channels)||0)),A.xp6(7),A.Oqu(A.lcZ(22,10,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.channels)||0)),A.xp6(7),A.hij("",A.lcZ(29,12,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),A.xp6(6),A.hij("",A.lcZ(35,14,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),A.xp6(6),A.hij("",A.lcZ(41,16,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats")}}function $(i,d){if(1&i&&(A.TgZ(0,"div",9)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let K=(()=>{class i{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}}return i.\u0275fac=function(t){return new(t||i)},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,z,42,18,"div",0),A.YNc(1,$,3,1,"ng-template",null,1,A.W1O)),2&t){const D=A.MAs(2);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.yH,n.Wh],pipes:[gt.JJ],styles:[""]}),i})();function fA(i,d){if(1&i&&(A.TgZ(0,"mat-hint",19)(1,"strong",20),A._uU(2,"Capacity: "),A.qZA(),A._uU(3),A.ALo(4,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(3),A.hij("",A.xi3(4,1,t.msatoshi_to_them/1e3||0,"1.0-0")," Sats")}}function IA(i,d){if(1&i&&(A.TgZ(0,"mat-hint",19)(1,"strong",20),A._uU(2,"Capacity: "),A.qZA(),A._uU(3),A.ALo(4,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(3),A.hij("",A.xi3(4,1,t.msatoshi_to_us/1e3||0,"1.0-0")," Sats")}}function oA(i,d){if(1&i&&A._UZ(0,"mat-progress-bar",21),2&i){const t=A.oxw().$implicit,a=A.oxw(3);A.s9C("value",a.totalLiquidity>0?(+t.msatoshi_to_them/1e3||0)/a.totalLiquidity*100:0)}}function hA(i,d){if(1&i&&A._UZ(0,"mat-progress-bar",21),2&i){const t=A.oxw().$implicit,a=A.oxw(3);A.s9C("value",a.totalLiquidity>0?(+t.msatoshi_to_us/1e3||0)/a.totalLiquidity*100:0)}}const zA=function(){return["../connections/channels/open"]},tt=function(i){return{filter:i}};function lt(i,d){if(1&i&&(A.TgZ(0,"div",14)(1,"a",15),A._uU(2),A.ALo(3,"slice"),A.qZA(),A.TgZ(4,"div",16),A.YNc(5,fA,5,4,"mat-hint",17),A.YNc(6,IA,5,4,"mat-hint",17),A.qZA(),A.YNc(7,oA,1,1,"mat-progress-bar",18),A.YNc(8,hA,1,1,"mat-progress-bar",18),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(3);A.xp6(1),A.s9C("matTooltip",t.alias||t.id),A.s9C("matTooltipDisabled",(t.alias||t.id).length<26),A.Q6J("routerLink",A.DdM(14,zA))("state",A.VKq(15,tt,t.id)),A.xp6(1),A.AsE(" ",A.Dn7(3,10,t.alias||t.id,0,24),"",(t.alias||t.id).length>25?"...":""," "),A.xp6(3),A.Q6J("ngIf","In"===a.direction),A.xp6(1),A.Q6J("ngIf","Out"===a.direction),A.xp6(1),A.Q6J("ngIf","In"===a.direction),A.xp6(1),A.Q6J("ngIf","Out"===a.direction)}}function YA(i,d){if(1&i&&(A.TgZ(0,"div",12),A.YNc(1,lt,9,17,"div",13),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngForOf",t.activeChannels)}}const it=function(i,d,t){return{"mb-4":i,"mb-2":d,"mb-1":t}};function mt(i,d){if(1&i&&(A.TgZ(0,"div",3)(1,"div",4)(2,"span",5),A._uU(3,"Total Capacity"),A.qZA(),A.TgZ(4,"mat-hint",6),A._uU(5),A.ALo(6,"number"),A.qZA(),A._UZ(7,"mat-progress-bar",7),A.qZA(),A.TgZ(8,"div",8),A._UZ(9,"mat-divider",9),A.qZA(),A.TgZ(10,"div",10),A.YNc(11,YA,2,1,"div",11),A.qZA()()),2&i){const t=A.oxw(),a=A.MAs(2);A.Q6J("ngClass",A.kEZ(7,it,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.xp6(5),A.hij("",A.xi3(6,4,t.totalLiquidity,"1.0-0")," Sats"),A.xp6(6),A.Q6J("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",a)}}function Mt(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",24),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).goToChannels()}),A._uU(1,"Open Channel"),A.qZA()}}function dt(i,d){if(1&i&&(A.TgZ(0,"div",22),A._uU(1," No channels available. "),A.YNc(2,Mt,2,0,"button",23),A.qZA()),2&i){const t=A.oxw();A.xp6(2),A.Q6J("ngIf","Out"===t.direction)}}function OA(i,d){if(1&i&&(A.TgZ(0,"div",25)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let et=(()=>{class i{constructor(t,a){this.router=t,this.commonService=a,this.screenSize="",this.screenSizeEnum=r.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0),A.Y36(c.v))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,mt,12,11,"div",0),A.YNc(1,dt,3,1,"ng-template",null,1,A.W1O),A.YNc(3,OA,3,1,"ng-template",null,2,A.W1O)),2&t){const D=A.MAs(4);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.Wh,n.yH,gt.mk,I.oO,X.bx,u.pW,pA.d,dA.$V,gt.sg,ie.yS,cA.gM,Y.lW],pipes:[gt.JJ,gt.OU],styles:[""]}),i})();var st=Pt(3251),ot=Pt(9300),Et=Pt(6087),ut=Pt(4847),TA=Pt(2075),Ft=Pt(8966),L=Pt(429),H=Pt(6642),x=Pt(3075),wA=Pt(7531),EA=Pt(3390),NA=Pt(6534),eA=Pt(4107),rt=Pt(508),yt=Pt(2368);function j(i,d){if(1&i&&(A.TgZ(0,"mat-option",27),A._uU(1),A.ALo(2,"titlecase"),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(A.lcZ(2,2,t))}}function VA(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.invoiceError)}}function _A(i,d){if(1&i&&(A.TgZ(0,"div",28),A._UZ(1,"fa-icon",29),A.YNc(2,VA,2,1,"span",30),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.invoiceError)}}let vA=(()=>{class i{constructor(t,a,D,k,nt,wt){this.dialogRef=t,this.data=a,this.store=D,this.decimalPipe=k,this.commonService=nt,this.actions=wt,this.faExclamationTriangle=h.eHv,this.selNode={},this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.IV,this.timeUnitEnum=r.Qk,this.timeUnits=r.LO,this.selTimeUnit=r.Qk.SECS,this.invoiceError="",this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,g.R)(this.unSubs[2]),(0,ot.h)(t=>t.type===r.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===t.payload.action&&(t.payload.status===r.Bn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===r.Bn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let a=this.expiry?this.expiry:3600;this.selTimeUnit!==r.Qk.SECS&&this.expiry&&(a=this.commonService.convertTime(this.expiry,this.selTimeUnit,r.Qk.SECS)),this.store.dispatch((0,L.Rd)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount:1e3*this.invoiceValue,description:this.description,expiry:a,private:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=r.Qk.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,r.NT.SATS,r.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,g.R)(this.unSubs[3])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,r.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(B.yh),A.Y36(gt.JJ),A.Y36(c.v),A.Y36(H.eX))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-create-invoices"]],decls:39,vars:16,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","placeholder","Description","tabindex","2","name","description",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxFlex","40"],["matInput","","placeholder","Amount","type","number","tabindex","3","name","invoiceValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","30"],["matInput","","name","expiry","placeholder","Expiry","type","number","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fxFlex","26"],["tabindex","5","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"mt-2"],["tabindex","6","color","primary","name","private",3,"ngModel","ngModelChange"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(t,a){if(1&t){const D=A.EpF();A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Create Invoice"),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),A.NdJ("ngModelChange",function(nt){return a.description=nt}),A.qZA()(),A.TgZ(13,"div",11)(14,"mat-form-field",12)(15,"input",13),A.NdJ("ngModelChange",function(nt){return a.invoiceValue=nt})("keyup",function(){return a.onInvoiceValueChange()}),A.qZA(),A.TgZ(16,"span",14),A._uU(17," Sats "),A.qZA(),A.TgZ(18,"mat-hint"),A._uU(19),A.qZA()(),A.TgZ(20,"mat-form-field",15)(21,"input",16),A.NdJ("ngModelChange",function(nt){return a.expiry=nt}),A.qZA(),A.TgZ(22,"span",14),A._uU(23),A.ALo(24,"titlecase"),A.qZA()(),A.TgZ(25,"mat-form-field",17)(26,"mat-select",18),A.NdJ("selectionChange",function(nt){return a.onTimeUnitChange(nt)}),A.YNc(27,j,3,4,"mat-option",19),A.qZA()()(),A.TgZ(28,"div",20)(29,"mat-slide-toggle",21),A.NdJ("ngModelChange",function(nt){return a.private=nt}),A._uU(30,"Private Routing Hints"),A.qZA(),A.TgZ(31,"mat-icon",22),A._uU(32,"info_outline"),A.qZA()(),A.YNc(33,_A,3,2,"div",23),A.TgZ(34,"div",24)(35,"button",25),A.NdJ("click",function(){return a.resetData()}),A._uU(36,"Clear Field"),A.qZA(),A.TgZ(37,"button",26),A.NdJ("click",function(){A.CHM(D);const nt=A.MAs(10);return a.onAddInvoice(nt)}),A._uU(38,"Create Invoice"),A.qZA()()()()()()}2&t&&(A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(6),A.Q6J("ngModel",a.description),A.xp6(3),A.Q6J("ngModel",a.invoiceValue)("step",100)("min",1),A.xp6(4),A.Oqu(a.invoiceValueHint),A.xp6(2),A.Q6J("ngModel",a.expiry)("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),A.xp6(2),A.hij("",A.lcZ(24,14,a.selTimeUnit)," "),A.xp6(3),A.Q6J("value",a.selTimeUnit),A.xp6(1),A.Q6J("ngForOf",a.timeUnits),A.xp6(2),A.Q6J("ngModel",a.private),A.xp6(4),A.Q6J("ngIf",""!==a.invoiceError))},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,Ft.ZT,M.dn,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,EA.h,x.JJ,x.On,x.wV,x.qQ,NA.q,X.R9,X.bx,eA.gD,gt.sg,rt.ey,yt.Rr,p.Hw,cA.gM,gt.O5,C.BN],pipes:[gt.rS],styles:[""]}),i})();var kA=Pt(5566),qA=Pt(7861),Ut=Pt(3093),It=Pt(9445);function bt(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"input",7),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().description=D}),A.qZA()(),A.TgZ(4,"mat-form-field",8)(5,"input",9),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().invoiceValue=D})("keyup",function(){return A.CHM(t),A.oxw().onInvoiceValueChange()}),A.qZA(),A.TgZ(6,"span",10),A._uU(7," Sats "),A.qZA(),A.TgZ(8,"mat-hint"),A._uU(9),A.qZA()(),A.TgZ(10,"div",11)(11,"button",12),A.NdJ("click",function(){return A.CHM(t),A.oxw().resetData()}),A._uU(12,"Clear Field"),A.qZA(),A.TgZ(13,"button",13),A.NdJ("click",function(){A.CHM(t);const D=A.MAs(1);return A.oxw().onAddInvoice(D)}),A._uU(14,"Create Invoice"),A.qZA()()()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.description),A.xp6(2),A.Q6J("ngModel",t.invoiceValue)("step",100)("min",1),A.xp6(4),A.Oqu(t.invoiceValueHint)}}function Vt(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",14)(1,"button",15),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDeleteExpiredInvoices()}),A._uU(2,"Delete Expired"),A.qZA(),A.TgZ(3,"button",16),A.NdJ("click",function(){return A.CHM(t),A.oxw().openCreateInvoiceModal()}),A._uU(4,"Create Invoice"),A.qZA()()}}function Pe(i,d){if(1&i&&(A.TgZ(0,"mat-option",54),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function re(i,d){1&i&&A._UZ(0,"mat-progress-bar",55)}function $t(i,d){1&i&&A._UZ(0,"th",56)}const ve=function(i){return{"mr-0":i}};function ze(i,d){if(1&i&&A._UZ(0,"span",61),2&i){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,ve,t.screenSize===t.screenSizeEnum.XS))}}function Re(i,d){if(1&i&&A._UZ(0,"span",62),2&i){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,ve,t.screenSize===t.screenSizeEnum.XS))}}function vn(i,d){if(1&i&&A._UZ(0,"span",63),2&i){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,ve,t.screenSize===t.screenSizeEnum.XS))}}function Dn(i,d){if(1&i&&(A.TgZ(0,"td",57),A.YNc(1,ze,1,3,"span",58),A.YNc(2,Re,1,3,"span",59),A.YNc(3,vn,1,3,"span",60),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf","paid"===(null==t?null:t.status)),A.xp6(1),A.Q6J("ngIf","unpaid"===(null==t?null:t.status)),A.xp6(1),A.Q6J("ngIf","expired"===(null==t?null:t.status))}}function ne(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Expiry Date"),A.qZA())}function tn(i,d){if(1&i&&(A.TgZ(0,"td",57),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,1e3*(null==t?null:t.expires_at),"dd/MMM/y HH:mm")," ")}}function Te(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Date Settled"),A.qZA())}function en(i,d){if(1&i&&(A.TgZ(0,"td",57),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.paid_at),"dd/MMM/y HH:mm")||"-")}}function qe(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Type"),A.qZA())}function Pn(i,d){if(1&i&&(A.TgZ(0,"td",57),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11&&t.label.includes("keysend-")?"Keysend":"Bolt11")}}function zn(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Description"),A.qZA())}const Ot=function(i){return{width:i}};function zt(i,d){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ot,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.description)}}function Xt(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Label"),A.qZA())}function se(i,d){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ot,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.label)}}function mn(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Payment Hash"),A.qZA())}function dn(i,d){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ot,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function xn(i,d){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Invoice"),A.qZA())}function jn(i,d){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ot,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.bolt11)}}function fi(i,d){1&i&&(A.TgZ(0,"th",67),A._uU(1,"Amount (Sats)"),A.qZA())}function Fn(i,d){if(1&i&&(A.TgZ(0,"td",57)(1,"span",68),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.msatoshi)/1e3,(null==t?null:t.msatoshi)<1e3?"1.0-4":"1.0-0"))}}function WA(i,d){1&i&&(A.TgZ(0,"th",67),A._uU(1,"Amount Settled (Sats)"),A.qZA())}function xA(i,d){if(1&i&&(A.TgZ(0,"td",57)(1,"span",68),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.msatoshi_received)/1e3,(null==t?null:t.msatoshi_received)<1e3?"1.0-4":"1.0-0"))}}function $A(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",69)(1,"div",70)(2,"mat-select",71),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",72),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function UA(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",73)(1,"div",70)(2,"mat-select",74),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",72),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw(2).onInvoiceClick(k)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",72),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw(2).onRefreshInvoice(k)}),A._uU(7,"Refresh"),A.qZA()()()()}}function RA(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No invoice available."),A.qZA())}function LA(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting invoices..."),A.qZA())}function GA(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function XA(i,d){if(1&i&&(A.TgZ(0,"td",75),A.YNc(1,RA,2,0,"p",76),A.YNc(2,LA,2,0,"p",76),A.YNc(3,GA,2,1,"p",76),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const PA=function(i){return{"display-none":i}};function at(i,d){if(1&i&&A._UZ(0,"tr",77),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,PA,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function jA(i,d){1&i&&A._UZ(0,"tr",78)}function Qt(i,d){1&i&&A._UZ(0,"tr",79)}const Tt=function(){return["all"]},Nt=function(i){return{"error-border":i}},kt=function(){return["no_invoice"]};function Kt(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",17)(1,"div",18)(2,"div",19),A._UZ(3,"fa-icon",20),A.TgZ(4,"span",21),A._uU(5,"Invoices History"),A.qZA()(),A.TgZ(6,"div",22)(7,"mat-form-field",23)(8,"mat-select",24),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilterBy=D})("selectionChange",function(){A.CHM(t);const D=A.oxw();return D.selFilter="",D.applyFilter()}),A.YNc(9,Pe,2,2,"mat-option",25),A.qZA()(),A.TgZ(10,"mat-form-field",23)(11,"input",26),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilter=D})("input",function(){return A.CHM(t),A.oxw().applyFilter()})("keyup",function(){return A.CHM(t),A.oxw().applyFilter()}),A.qZA()()()(),A.TgZ(12,"div",27),A.YNc(13,re,1,0,"mat-progress-bar",28),A.TgZ(14,"table",29,30),A.ynx(16,31),A.YNc(17,$t,1,0,"th",32),A.YNc(18,Dn,4,3,"td",33),A.BQk(),A.ynx(19,34),A.YNc(20,ne,2,0,"th",35),A.YNc(21,tn,3,4,"td",33),A.BQk(),A.ynx(22,36),A.YNc(23,Te,2,0,"th",35),A.YNc(24,en,3,4,"td",33),A.BQk(),A.ynx(25,37),A.YNc(26,qe,2,0,"th",35),A.YNc(27,Pn,2,1,"td",33),A.BQk(),A.ynx(28,38),A.YNc(29,zn,2,0,"th",35),A.YNc(30,zt,4,4,"td",33),A.BQk(),A.ynx(31,39),A.YNc(32,Xt,2,0,"th",35),A.YNc(33,se,4,4,"td",33),A.BQk(),A.ynx(34,40),A.YNc(35,mn,2,0,"th",35),A.YNc(36,dn,4,4,"td",33),A.BQk(),A.ynx(37,41),A.YNc(38,xn,2,0,"th",35),A.YNc(39,jn,4,4,"td",33),A.BQk(),A.ynx(40,42),A.YNc(41,fi,2,0,"th",43),A.YNc(42,Fn,4,4,"td",33),A.BQk(),A.ynx(43,44),A.YNc(44,WA,2,0,"th",43),A.YNc(45,xA,4,4,"td",33),A.BQk(),A.ynx(46,45),A.YNc(47,$A,6,0,"th",46),A.YNc(48,UA,8,0,"td",47),A.BQk(),A.ynx(49,48),A.YNc(50,XA,4,3,"td",49),A.BQk(),A.YNc(51,at,1,3,"tr",50),A.YNc(52,jA,1,0,"tr",51),A.YNc(53,Qt,1,0,"tr",52),A.qZA()(),A._UZ(54,"mat-paginator",53),A.qZA()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("icon",t.faHistory),A.xp6(5),A.Q6J("ngModel",t.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(13,Tt).concat(t.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",t.selFilter),A.xp6(2),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.invoices)("ngClass",A.VKq(14,Nt,""!==t.errorMessage)),A.xp6(37),A.Q6J("matFooterRowDef",A.DdM(16,kt)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Ae=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt,me){this.logger=t,this.store=a,this.decimalPipe=D,this.commonService=k,this.rtlEffects=nt,this.datePipe=wt,this.actions=Lt,this.camelCaseWithReplace=me,this.calledFrom="transactions",this.faHistory=h.qO$,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:r.IV,sortBy:"expires_at",sortOrder:r.Pi.DESCENDING},this.selNode={},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new TA.by([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.gc).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=t.listInvoices.invoices||[],this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(t)}),this.actions.pipe((0,g.R)(this.unSubs[4]),(0,ot.h)(t=>t.type===r.AB.SET_LOOKUP_CLN||t.type===r.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.AB.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,qA.qR)({payload:{data:{pageSize:this.pageSize,component:vA}}}))}onAddInvoice(t){this.invoiceValue||(this.invoiceValue=0);const a=this.expiry?this.expiry:3600;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,L.Rd)({payload:{label:this.newlyAddedInvoiceMemo,amount:1e3*this.invoiceValue,description:this.description,expiry:a,private:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,qA.c1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[5])).subscribe(t=>{t&&this.store.dispatch((0,L.g6)({payload:null}))})}onInvoiceClick(t){this.store.dispatch((0,qA.qR)({payload:{data:{invoice:{msatoshi:t.msatoshi,label:t.label,expires_at:t.expires_at,paid_at:t.paid_at,bolt11:t.bolt11,payment_hash:t.payment_hash,description:t.description,status:t.status,msatoshi_received:t.msatoshi_received},newlyAdded:!1,component:kA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,a)=>{var D,k,nt,wt,Lt;let me="";switch(this.selFilterBy){case"all":me=(null===(D=this.datePipe.transform(new Date(1e3*(t.paid_at||0)),"dd/MMM/y HH:mm"))||void 0===D?void 0:D.toLowerCase())+(null===(k=this.datePipe.transform(new Date(1e3*(t.expires_at||0)),"dd/MMM/y HH:mm"))||void 0===k?void 0:k.toLowerCase())+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":me="paid"===(null==t?void 0:t.status)?"paid":"unpaid"===(null==t?void 0:t.status)?"unpaid":"expired";break;case"expires_at":case"paid_at":me=(null===(nt=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===nt?void 0:nt.toLowerCase())||"";break;case"type":me=(null==t?void 0:t.bolt12)?"bolt12":(null==t?void 0:t.bolt11)&&(null===(wt=null==t?void 0:t.label)||void 0===wt?void 0:wt.includes("keysend-"))?"keysend":"bolt11";break;case"msatoshi":case"msatoshi_received":me=(null===(Lt=+(t[this.selFilterBy]||0)/1e3)||void 0===Lt?void 0:Lt.toString())||"";break;default:me=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===me.indexOf(a):me.includes(a)}}onInvoiceValueChange(){var t;this.selNode&&this.selNode.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,r.NT.SATS,r.NT.OTHER,(null===(t=this.selNode)||void 0===t?void 0:t.currencyUnits)&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,g.R)(this.unSubs[6])).subscribe({next:a=>{this.invoiceValueHint="= "+a.symbol+this.decimalPipe.transform(a.OTHER,r.Xz.OTHER)+" "+a.unit},error:a=>{this.invoiceValueHint="Conversion Error: "+a}}))}onRefreshInvoice(t){this.store.dispatch((0,L.n7)({payload:t.label}))}updateInvoicesData(t){var a;this.invoiceJSONArr=null===(a=this.invoiceJSONArr)||void 0===a?void 0:a.map(D=>D.label===t.label?t:D)}loadInvoicesTable(t){var a;this.invoices=new TA.by(t?[...t]:[]),this.invoices.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,this.invoices.sort=this.sort,null===(a=this.invoices.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.invoices.paginator=this.paginator,this.applyFilter(),this.setFilterPredicate()}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(gt.JJ),A.Y36(c.v),A.Y36(Ut.V),A.Y36(gt.uU),A.Y36(H.eX),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},inputs:{calledFrom:"calledFrom"},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Invoices")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","placeholder","Description","tabindex","2","name","description",3,"ngModel","ngModelChange"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","name","invoiceValue","type","number","tabindex","3",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],["fxLayout","row"],["mat-stroked-button","","color","warn","tabindex","7","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","expires_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","paid_at"],["matColumnDef","type"],["matColumnDef","description"],["matColumnDef","label"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_received"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,bt,15,5,"form",1),A.YNc(2,Vt,5,0,"div",2),A.YNc(3,Kt,55,17,"div",3),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf","home"===a.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===a.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===a.calledFrom))},directives:[n.xw,n.yH,n.Wh,gt.O5,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,x.JJ,x.On,x.wV,x.qQ,NA.q,X.R9,X.bx,Y.lW,C.BN,eA.gD,gt.sg,rt.ey,dA.$V,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.uU,gt.JJ],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),i})();var ft=Pt(5698),St=Pt(8104),jt=Pt(9814),Gt=Pt(7446);const ge=["sendPaymentForm"],Zt=["paymentAmt"],fe=["offerAmt"],Be=["paymentReq"],De=["offerReq"];function Ge(i,d){if(1&i&&(A.TgZ(0,"mat-radio-button",22),A._uU(1,"Offer"),A.qZA()),2&i){const t=A.oxw(2);A.s9C("value",t.paymentTypes.OFFER)}}function Se(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-radio-group",18),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().paymentType=D})("change",function(){return A.CHM(t),A.oxw().onPaymentTypeChange()}),A.TgZ(1,"mat-radio-button",19),A._uU(2,"Invoice"),A.qZA(),A.TgZ(3,"mat-radio-button",20),A._uU(4,"Keysend"),A.qZA(),A.YNc(5,Ge,2,1,"mat-radio-button",21),A.qZA()}if(2&i){const t=A.oxw();A.Q6J("ngModel",t.paymentType),A.xp6(1),A.s9C("value",t.paymentTypes.INVOICE),A.xp6(2),A.s9C("value",t.paymentTypes.KEYSEND),A.xp6(2),A.Q6J("ngIf",t.selNode.enableOffers)}}function xe(i,d){1&i&&A.GkF(0)}function Ne(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentError)}}function $e(i,d){if(1&i&&(A.TgZ(0,"div",23),A._UZ(1,"fa-icon",24),A.YNc(2,Ne,2,1,"span",25),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.paymentError)}}function yn(i,d){if(1&i&&(A.TgZ(0,"mat-hint"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentDecodedHint)}}function rn(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment request is required."),A.qZA())}function pn(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentDecodedHint)}}function Yn(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment amount is required."),A.qZA())}function an(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",29,30),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw(2).paymentAmount=D})("change",function(D){return A.CHM(t),A.oxw(2).onAmountChange(D)}),A.qZA(),A.TgZ(3,"mat-hint"),A._uU(4,"It is a zero amount invoice, enter amount to be paid."),A.qZA(),A.YNc(5,Yn,2,0,"mat-error",25),A.qZA()}if(2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.paymentAmount),A.xp6(4),A.Q6J("ngIf",!t.paymentAmount)}}function hn(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"textarea",26,27),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().onPaymentRequestEntry(D)})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(3,yn,2,1,"mat-hint",25),A.YNc(4,rn,2,0,"mat-error",25),A.YNc(5,pn,2,1,"mat-error",25),A.qZA(),A.YNc(6,an,6,2,"mat-form-field",28)}if(2&i){const t=A.MAs(2),a=A.oxw();A.xp6(1),A.Q6J("ngModel",a.paymentRequest),A.xp6(2),A.Q6J("ngIf",a.paymentRequest&&""!==a.paymentDecodedHint),A.xp6(1),A.Q6J("ngIf",!a.paymentRequest),A.xp6(1),A.Q6J("ngIf",null==t.errors?null:t.errors.decodeError),A.xp6(1),A.Q6J("ngIf",a.zeroAmtInvoice)}}function gn(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Pubkey is required."),A.qZA())}function _n(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Keysend amount is required."),A.qZA())}function Ti(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",31),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().pubkey=D}),A.qZA(),A.YNc(2,gn,2,0,"mat-error",25),A.qZA(),A.TgZ(3,"mat-form-field",1)(4,"input",32,33),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().keysendAmount=D}),A.qZA(),A.YNc(6,_n,2,0,"mat-error",25),A.qZA()}if(2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngModel",t.pubkey),A.xp6(1),A.Q6J("ngIf",!t.pubkey),A.xp6(2),A.Q6J("ngModel",t.keysendAmount),A.xp6(2),A.Q6J("ngIf",!t.keysendAmount)}}function Si(i,d){if(1&i&&(A.TgZ(0,"mat-hint"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.offerDecodedHint)}}function ri(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Offer request is required."),A.qZA())}function Tn(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.offerDecodedHint)}}function $n(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Offer amount is required."),A.qZA())}function mA(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",40,41),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw(2).offerAmount=D})("change",function(D){return A.CHM(t),A.oxw(2).onAmountChange(D)}),A.qZA(),A.TgZ(3,"mat-hint"),A._uU(4,"It is a zero amount offer, enter amount to be paid."),A.qZA(),A.YNc(5,$n,2,0,"mat-error",25),A.qZA()}if(2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.offerAmount),A.xp6(4),A.Q6J("ngIf",!t.offerAmount)}}function G(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",42)(1,"input",43),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw(2).offerTitle=D}),A.qZA()()}if(2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.offerTitle)}}function N(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"textarea",34,35),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().onPaymentRequestEntry(D)})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(3,Si,2,1,"mat-hint",25),A.YNc(4,ri,2,0,"mat-error",25),A.YNc(5,Tn,2,1,"mat-error",25),A.qZA(),A.YNc(6,mA,6,2,"mat-form-field",28),A.TgZ(7,"div",36)(8,"mat-checkbox",37),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().flgSaveToDB=D}),A._uU(9,"Bookmark Offer"),A.qZA(),A.TgZ(10,"mat-icon",38),A._uU(11,"info_outline"),A.qZA()(),A.YNc(12,G,2,1,"mat-form-field",39)}if(2&i){const t=A.MAs(2),a=A.oxw();A.xp6(1),A.Q6J("ngModel",a.offerRequest),A.xp6(2),A.Q6J("ngIf",a.offerRequest&&""!==a.offerDecodedHint),A.xp6(1),A.Q6J("ngIf",!a.offerRequest),A.xp6(1),A.Q6J("ngIf",null==t.errors?null:t.errors.decodeError),A.xp6(1),A.Q6J("ngIf",a.zeroAmtOffer),A.xp6(2),A.Q6J("ngModel",a.flgSaveToDB),A.xp6(4),A.Q6J("ngIf",a.flgSaveToDB||""!==a.offerTitle)}}let _=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt,me){this.dialogRef=t,this.data=a,this.store=D,this.logger=k,this.commonService=nt,this.decimalPipe=wt,this.actions=Lt,this.dataService=me,this.faExclamationTriangle=h.eHv,this.paymentTypes=r.IX,this.paymentType=r.IX.INVOICE,this.selNode={},this.offerDecoded={},this.offerRequest="",this.offerDecodedHint="",this.offerDescription="",this.offerVendor="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=r.Vc[0],this.feeLimitTypes=r.Vc,this.paymentError="",this.isCompatibleVersion=!1,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x]}set payReq(t){t&&(this.paymentReq=t)}set offrReq(t){t&&(this.offerReq=t)}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case r.IX.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case r.IX.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case r.IX.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.isCompatibleVersion=this.commonService.isVersionCompatible(t.version,"0.9.0")&&this.commonService.isVersionCompatible(t.api_version,"0.4.0")}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.activeChannels=t.activeChannels,this.logger.info(t)}),this.actions.pipe((0,g.R)(this.unSubs[3]),(0,ot.h)(t=>t.type===r.AB.UPDATE_API_CALL_STATUS_CLN||t.type===r.AB.SEND_PAYMENT_STATUS_CLN||t.type===r.AB.SET_OFFER_INVOICE_CLN)).subscribe(t=>{t.type===r.AB.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),t.type===r.AB.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=t.payload,this.sendPayment()),t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.Bn.ERROR&&("SendPayment"===t.payload.action&&(delete this.paymentDecoded.msatoshi,this.paymentError=t.payload.message),"DecodePayment"===t.payload.action&&(this.paymentType===r.IX.INVOICE&&(this.paymentDecodedHint="ERROR: "+t.payload.message,this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===r.IX.OFFER&&(this.offerDecodedHint="ERROR: "+t.payload.message,this.offerReq.control.setErrors({decodeError:!0}))),"FetchOfferInvoice"===t.payload.action&&this.paymentType===r.IX.OFFER&&(this.paymentError=t.payload.message))})}onSendPayment(){switch(this.paymentType){case r.IX.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case r.IX.INVOICE:if(!this.paymentRequest||this.zeroAmtInvoice&&(0===this.paymentAmount||!this.paymentAmount))return this.paymentReq.control.markAsTouched(),this.paymentAmt.control.markAsTouched(),!0;this.paymentDecoded.created_at?this.sendPayment():(this.resetInvoiceDetails(),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,g.R)(this.unSubs[4])).subscribe(t=>{"bolt12 offer"===t.type&&t.offer_id?(this.paymentDecodedHint="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=t,this.setPaymentDecodedDetails())}));break;case r.IX.OFFER:if(!this.offerRequest||this.zeroAmtOffer&&(0===this.offerAmount||!this.offerAmount))return this.offerReq.control.markAsTouched(),this.offerAmt.control.markAsTouched(),!0;this.offerDecoded.offer_id?this.sendPayment():(this.resetOfferDetails(),this.dataService.decodePayment(this.offerRequest,!0).pipe((0,g.R)(this.unSubs[5])).subscribe(t=>{"bolt11 invoice"===t.type&&t.payment_hash?(this.offerDecodedHint="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=t,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,L.oV)({payload:{uiMessage:r.m6.SEND_KEYSEND,paymentType:r.IX.KEYSEND,pubkey:this.pubkey,amount:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===r.IX.INVOICE?this.store.dispatch((0,L.oV)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,invoice:this.paymentRequest,amount:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,invoice:this.paymentRequest,fromDialog:!0}})):this.paymentType===r.IX.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,L.oV)({payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.OFFER,invoice:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,vendor:this.offerVendor,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,L.eM)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,msatoshi:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(t){this.paymentType===r.IX.INVOICE?(this.paymentRequest=t,this.resetInvoiceDetails()):this.paymentType===r.IX.OFFER&&(this.offerRequest=t,this.resetOfferDetails()),t.length>100&&this.dataService.decodePayment(t,!0).pipe((0,g.R)(this.unSubs[6])).subscribe(a=>{this.paymentType===r.IX.INVOICE?"bolt12 offer"===a.type&&a.offer_id?(this.paymentDecodedHint="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=a,this.setPaymentDecodedDetails()):this.paymentType===r.IX.OFFER&&("bolt11 invoice"===a.type&&a.payment_hash?(this.offerDecodedHint="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=a,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHint="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(t){this.paymentType===r.IX.INVOICE&&(delete this.paymentDecoded.msatoshi,this.paymentDecoded.msatoshi=+t.target.value),this.paymentType===r.IX.OFFER&&(delete this.offerDecoded.amount,delete this.offerDecoded.amount_msat,this.offerDecoded.amount=1e3*+t.target.value,this.offerDecoded.amount_msat=t.target.value+"msat")}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHint="",this.offerDecodedHint="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.amount_msat?(this.offerDecoded.amount_msat="0msat",this.offerDecoded.amount=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.description||"",this.offerVendor=this.offerDecoded.vendor?this.offerDecoded.vendor:this.offerDecoded.issuer?this.offerDecoded.issuer:"",this.offerDecodedHint="Zero Amount Offer | Description: "+this.offerDecoded.description):(this.zeroAmtOffer=!1,this.offerDecoded.amount=this.offerDecoded.amount?+this.offerDecoded.amount:this.offerDecoded.amount_msat?+this.offerDecoded.amount_msat.slice(0,-4):null,this.offerAmount=this.offerDecoded.amount?this.offerDecoded.amount/1e3:0,this.offerDescription=this.offerDecoded.description||"",this.offerVendor=this.offerDecoded.vendor?this.offerDecoded.vendor:this.offerDecoded.issuer?this.offerDecoded.issuer:"",this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(this.offerAmount,r.NT.SATS,r.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,g.R)(this.unSubs[7])).subscribe({next:t=>{this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats ("+t.symbol+this.decimalPipe.transform(t.OTHER?t.OTHER:0,r.Xz.OTHER)+") | Description: "+this.offerDecoded.description},error:t=>{this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.description+". Unable to convert currency."}}):this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.description)}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.msatoshi?(this.paymentDecoded.msatoshi=0,this.zeroAmtInvoice=!0,this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0,r.NT.SATS,r.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,g.R)(this.unSubs[8])).subscribe({next:t=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats ("+t.symbol+this.decimalPipe.transform(t.OTHER?t.OTHER:0,r.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:t=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description)}resetData(){switch(this.paymentType){case r.IX.KEYSEND:this.pubkey="",this.keysendAmount=null;break;case r.IX.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=r.Vc[0],this.resetInvoiceDetails();break;case r.IX.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(B.yh),A.Y36(e.mQ),A.Y36(c.v),A.Y36(gt.JJ),A.Y36(H.eX),A.Y36(St.D))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ge,5),A.Gf(Zt,5),A.Gf(fe,5),A.Gf(Be,5),A.Gf(De,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first),A.iGM(D=A.CRH())&&(a.paymentAmt=D.first),A.iGM(D=A.CRH())&&(a.offerAmt=D.first),A.iGM(D=A.CRH())&&(a.payReq=D.first),A.iGM(D=A.CRH())&&(a.offrReq=D.first)}},decls:25,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","12","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","my-1","color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",3,"ngModel","ngModelChange","change",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],["sendPaymentForm","ngForm"],[4,"ngTemplateOutlet"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["autoFocus","","matInput","","placeholder","Payment Request","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],["fxFlex","100",4,"ngIf"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","5","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],["autoFocus","","matInput","","placeholder","Pubkey","name","pubkey","tabindex","4","required","",3,"ngModel","ngModelChange"],["matInput","","placeholder","Amount (Sats)","name","keysendAmount","tabindex","5","required","",3,"ngModel","ngModelChange"],["keysendAmt","ngModel"],["autoFocus","","matInput","","placeholder","Offer Request","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["offerReq","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModel","ngModelChange"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","placeholder","Amount (Sats)","name","amountoffer","tabindex","5","required","",3,"ngModel","ngModelChange","change"],["offerAmt","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","placeholder","Title to Save","tabindex","7",3,"ngModel","ngModelChange"]],template:function(t,a){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Send Payment"),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6),A.YNc(9,Se,6,4,"mat-radio-group",7),A.TgZ(10,"form",8,9),A.NdJ("submit",function(){return a.onSendPayment()})("reset",function(){return a.resetData()}),A.YNc(12,xe,1,0,"ng-container",10),A.YNc(13,$e,3,2,"div",11),A.TgZ(14,"div",12)(15,"button",13),A._uU(16,"Clear Fields"),A.qZA(),A.TgZ(17,"button",14),A._uU(18,"Send Payment"),A.qZA()()()()()(),A.YNc(19,hn,7,5,"ng-template",null,15,A.W1O),A.YNc(21,Ti,7,4,"ng-template",null,16,A.W1O),A.YNc(23,N,13,7,"ng-template",null,17,A.W1O)),2&t){const D=A.MAs(20),k=A.MAs(22),nt=A.MAs(24);A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(3),A.Q6J("ngIf",a.isCompatibleVersion),A.xp6(3),A.Q6J("ngTemplateOutlet",a.paymentType===a.paymentTypes.KEYSEND?k:a.paymentType===a.paymentTypes.OFFER?nt:D),A.xp6(1),A.Q6J("ngIf",""!==a.paymentError)}},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,Ft.ZT,M.dn,gt.O5,jt.VQ,x.JJ,x.On,jt.U0,x._Y,x.JL,x.F,gt.tP,C.BN,X.KE,wA.Nt,x.Fj,EA.h,x.Q7,X.bx,X.TO,Gt.oG,p.Hw,cA.gM],styles:[""]}),i})();const W=["sendPaymentForm"];function BA(i,d){if(1&i&&(A.TgZ(0,"mat-hint"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.paymentDecodedHint)}}function MA(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment request is required."),A.qZA())}function ZA(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"textarea",7,8),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().onPaymentRequestEntry(D)})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(5,BA,2,1,"mat-hint",9),A.YNc(6,MA,2,0,"mat-error",9),A.qZA(),A.TgZ(7,"div",10)(8,"button",11),A.NdJ("click",function(){return A.CHM(t),A.oxw().resetData()}),A._uU(9,"Clear Field"),A.qZA(),A.TgZ(10,"button",12),A.NdJ("click",function(){return A.CHM(t),A.oxw().onSendPayment()}),A._uU(11,"Send Payment"),A.qZA()()()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.paymentRequest),A.xp6(2),A.Q6J("ngIf",t.paymentRequest&&""!==t.paymentDecodedHint),A.xp6(1),A.Q6J("ngIf",!t.paymentRequest)}}function At(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",13)(1,"button",12),A.NdJ("click",function(){return A.CHM(t),A.oxw().openSendPaymentModal()}),A._uU(2,"Send Payment"),A.qZA()()}}function ht(i,d){if(1&i&&(A.TgZ(0,"mat-option",63),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function Ct(i,d){1&i&&A._UZ(0,"mat-progress-bar",64)}function vt(i,d){1&i&&A._UZ(0,"th",65)}function xt(i,d){1&i&&A._UZ(0,"span",69)}function Yt(i,d){1&i&&A._UZ(0,"span",70)}function Jt(i,d){if(1&i&&(A.TgZ(0,"td",66),A.YNc(1,xt,1,0,"span",67),A.YNc(2,Yt,1,0,"span",68),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status)}}function Wt(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Created At"),A.qZA())}function he(i,d){if(1&i&&(A.TgZ(0,"td",66),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,1e3*(null==t?null:t.created_at),"dd/MMM/y HH:mm")," ")}}function we(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Type"),A.qZA())}function pe(i,d){if(1&i&&(A.TgZ(0,"td",66),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function nn(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Payment Hash"),A.qZA())}const te=function(i){return{width:i}};function je(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function wn(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Invoice"),A.qZA())}function We(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.bolt11)}}function Cn(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Label"),A.qZA())}function Wn(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.label)}}function Ai(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Destination"),A.qZA())}function Sn(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.destination)}}function Li(i,d){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Memo"),A.qZA())}function Hn(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.memo)}}function ai(i,d){1&i&&(A.TgZ(0,"th",74),A._uU(1,"Sats Sent"),A.qZA())}function mi(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",75),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.msatoshi_sent)/1e3,(null==t?null:t.msatoshi_sent)<1e3?"1.0-4":"1.0-0"))}}function ti(i,d){1&i&&(A.TgZ(0,"th",74),A._uU(1,"Sats Received"),A.qZA())}function hi(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",75),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.msatoshi)/1e3,(null==t?null:t.msatoshi)<1e3?"1.0-4":"1.0-0"))}}function Pi(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",76)(1,"div",77)(2,"mat-select",78),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",79),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Vn(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",80)(1,"button",81),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw(2).onPaymentClick(k)}),A._uU(2,"View Info"),A.qZA()()}}function zi(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No payment available."),A.qZA())}function Ii(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting payments..."),A.qZA())}function Gi(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function Hi(i,d){if(1&i&&(A.TgZ(0,"td",82),A.YNc(1,zi,2,0,"p",9),A.YNc(2,Ii,2,0,"p",9),A.YNc(3,Gi,2,1,"p",9),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.COMPLETED)),A.xp6(1),A.Q6J("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.INITIATED)),A.xp6(1),A.Q6J("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.ERROR))}}function Br(i,d){1&i&&A._UZ(0,"span",69)}function Oi(i,d){1&i&&A._UZ(0,"span",70)}function oi(i,d){1&i&&A._UZ(0,"span",69)}function Ji(i,d){1&i&&A._UZ(0,"span",70)}function Kn(i,d){if(1&i&&(A.TgZ(0,"span",83),A.YNc(1,oi,1,0,"span",67),A.YNc(2,Ji,1,0,"span",68),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status)}}function Hr(i,d){if(1&i&&(A.ynx(0),A.YNc(1,Kn,3,2,"span",84),A.BQk()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Or(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",83),A.YNc(2,Br,1,0,"span",67),A.YNc(3,Oi,1,0,"span",68),A.qZA(),A.YNc(4,Hr,2,1,"ng-container",9),A.qZA()),2&i){const t=d.$implicit;A.xp6(2),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function co(i,d){if(1&i&&(A.TgZ(0,"span",83),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,1e3*t.created_at,"dd/MMM/y HH:mm")," ")}}function go(i,d){if(1&i&&(A.ynx(0),A.YNc(1,co,3,4,"span",84),A.BQk()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Bo(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",83),A._uU(2),A.qZA(),A.YNc(3,go,2,1,"ng-container",9),A.qZA()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" Total Attempts: ",null==t?null:t.total_parts," "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function uo(i,d){1&i&&A._UZ(0,"span",83)}function fo(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,uo,1,0,"span",84),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function ho(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",83),A._uU(2),A.qZA(),A.YNc(3,fo,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend"),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Eo(i,d){if(1&i&&(A.TgZ(0,"span",83),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" Part ID ",t.partid?t.partid:0," ")}}function ga(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Eo,2,1,"span",84),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function wo(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,ga,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Ba(i,d){if(1&i&&(A.TgZ(0,"span",87),A._UZ(1,"span",73),A.qZA()),2&i){const t=A.oxw(4);A.Q6J("ngStyle",A.VKq(1,te,t.screenSize===t.screenSizeEnum.XS?"10rem":t.colWidth))}}function ua(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Ba,2,3,"span",86),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Co(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,ua,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.bolt11),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Qo(i,d){if(1&i&&(A.TgZ(0,"span",87),A._UZ(1,"span",73),A.qZA()),2&i){const t=A.oxw(4);A.Q6J("ngStyle",A.VKq(1,te,t.screenSize===t.screenSizeEnum.XS?"10rem":t.colWidth))}}function po(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Qo,2,3,"span",86),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Mo(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,po,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.label),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function mo(i,d){if(1&i&&(A.TgZ(0,"span",87),A._UZ(1,"span",73),A.qZA()),2&i){const t=A.oxw(4);A.Q6J("ngStyle",A.VKq(1,te,t.screenSize===t.screenSizeEnum.XS?"10rem":t.colWidth))}}function Io(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,mo,2,3,"span",86),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function vo(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,Io,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.destination),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Do(i,d){if(1&i&&(A.TgZ(0,"span",87),A._UZ(1,"span",73),A.qZA()),2&i){const t=A.oxw(4);A.Q6J("ngStyle",A.VKq(1,te,t.screenSize===t.screenSizeEnum.XS?"10rem":t.colWidth))}}function yo(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Do,2,3,"span",86),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function xo(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,yo,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,te,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.memo),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function fa(i,d){if(1&i&&(A.TgZ(0,"span",88),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,t.msatoshi_sent/1e3,t.msatoshi_sent<1e3?"1.0-4":"1.0-0")," ")}}function Fo(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,fa,3,4,"span",89),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function Yo(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",88),A._uU(2),A.ALo(3,"number"),A.qZA(),A.YNc(4,Fo,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,2,(null==t?null:t.msatoshi_sent)/1e3,(null==t?null:t.msatoshi_sent)<1e3?"1.0-4":"1.0-0")),A.xp6(2),A.Q6J("ngIf",t.is_expanded)}}function To(i,d){if(1&i&&(A.TgZ(0,"span",88),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,t.msatoshi/1e3,t.msatoshi<1e3?"1.0-4":"1.0-0")," ")}}function So(i,d){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,To,3,4,"span",89),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function ei(i,d){if(1&i&&(A.TgZ(0,"td",66)(1,"span",88),A._uU(2),A.ALo(3,"number"),A.qZA(),A.YNc(4,So,2,1,"span",9),A.qZA()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,2,(null==t?null:t.msatoshi)/1e3,(null==t?null:t.msatoshi)<1e3?"1.0-4":"1.0-0")),A.xp6(2),A.Q6J("ngIf",t.is_expanded)}}function Ei(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",75)(1,"button",92),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw(4).onPaymentClick(k)}),A._uU(2),A.qZA()()}if(2&i){const t=d.$implicit;A.xp6(2),A.hij("View ",t.partid?t.partid:0,"")}}function ur(i,d){if(1&i&&(A.TgZ(0,"div"),A.YNc(1,Ei,3,1,"div",91),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function No(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",66)(1,"span",75)(2,"button",90),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return k.is_expanded=!k.is_expanded}),A._uU(3),A.qZA()(),A.YNc(4,ur,2,1,"div",9),A.qZA()}if(2&i){const t=d.$implicit;A.xp6(3),A.Oqu(t.is_expanded?"Hide":"Show"),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Uo(i,d){1&i&&A._UZ(0,"tr",93)}const bo=function(i){return{"display-none":i}};function Ro(i,d){if(1&i&&A._UZ(0,"tr",94),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,bo,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function Lo(i,d){1&i&&A._UZ(0,"tr",95)}function Po(i,d){1&i&&A._UZ(0,"tr",93)}const zo=function(){return["all"]},Go=function(i){return{"error-border":i}},Ho=function(){return["no_payment"]};function Oo(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",14)(1,"div",15)(2,"div",16),A._UZ(3,"fa-icon",17),A.TgZ(4,"span",18),A._uU(5,"Payments History"),A.qZA()(),A.TgZ(6,"div",19)(7,"mat-form-field",20)(8,"mat-select",21),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilterBy=D})("selectionChange",function(){A.CHM(t);const D=A.oxw();return D.selFilter="",D.applyFilter()}),A.YNc(9,ht,2,2,"mat-option",22),A.qZA()(),A.TgZ(10,"mat-form-field",20)(11,"input",23),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilter=D})("input",function(){return A.CHM(t),A.oxw().applyFilter()})("keyup",function(){return A.CHM(t),A.oxw().applyFilter()}),A.qZA()()()(),A.TgZ(12,"div",24)(13,"div",25),A.YNc(14,Ct,1,0,"mat-progress-bar",26),A.TgZ(15,"table",27,28),A.ynx(17,29),A.YNc(18,vt,1,0,"th",30),A.YNc(19,Jt,3,2,"td",31),A.BQk(),A.ynx(20,32),A.YNc(21,Wt,2,0,"th",33),A.YNc(22,he,3,4,"td",31),A.BQk(),A.ynx(23,34),A.YNc(24,we,2,0,"th",33),A.YNc(25,pe,2,1,"td",31),A.BQk(),A.ynx(26,35),A.YNc(27,nn,2,0,"th",33),A.YNc(28,je,4,4,"td",31),A.BQk(),A.ynx(29,36),A.YNc(30,wn,2,0,"th",33),A.YNc(31,We,4,4,"td",31),A.BQk(),A.ynx(32,37),A.YNc(33,Cn,2,0,"th",33),A.YNc(34,Wn,4,4,"td",31),A.BQk(),A.ynx(35,38),A.YNc(36,Ai,2,0,"th",33),A.YNc(37,Sn,4,4,"td",31),A.BQk(),A.ynx(38,39),A.YNc(39,Li,2,0,"th",33),A.YNc(40,Hn,4,4,"td",31),A.BQk(),A.ynx(41,40),A.YNc(42,ai,2,0,"th",41),A.YNc(43,mi,4,4,"td",31),A.BQk(),A.ynx(44,42),A.YNc(45,ti,2,0,"th",41),A.YNc(46,hi,4,4,"td",31),A.BQk(),A.ynx(47,43),A.YNc(48,Pi,6,0,"th",44),A.YNc(49,Vn,3,0,"td",45),A.BQk(),A.ynx(50,46),A.YNc(51,Hi,4,3,"td",47),A.BQk(),A.ynx(52,48),A.YNc(53,Or,5,3,"td",31),A.BQk(),A.ynx(54,49),A.YNc(55,Bo,4,2,"td",31),A.BQk(),A.ynx(56,50),A.YNc(57,ho,4,2,"td",31),A.BQk(),A.ynx(58,51),A.YNc(59,wo,5,5,"td",31),A.BQk(),A.ynx(60,52),A.YNc(61,Co,5,5,"td",31),A.BQk(),A.ynx(62,53),A.YNc(63,Mo,5,5,"td",31),A.BQk(),A.ynx(64,54),A.YNc(65,vo,5,5,"td",31),A.BQk(),A.ynx(66,55),A.YNc(67,xo,5,5,"td",31),A.BQk(),A.ynx(68,56),A.YNc(69,Yo,5,5,"td",31),A.BQk(),A.ynx(70,57),A.YNc(71,ei,5,5,"td",31),A.BQk(),A.ynx(72,58),A.YNc(73,No,5,2,"td",31),A.BQk(),A.YNc(74,Uo,1,0,"tr",59),A.YNc(75,Ro,1,3,"tr",60),A.YNc(76,Lo,1,0,"tr",61),A.YNc(77,Po,1,0,"tr",59),A.qZA()()(),A._UZ(78,"mat-paginator",62),A.qZA()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("icon",t.faHistory),A.xp6(5),A.Q6J("ngModel",t.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(16,zo).concat(t.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",t.selFilter),A.xp6(3),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.payments)("ngClass",A.VKq(17,Go,""!==t.errorMessage)),A.xp6(59),A.Q6J("matRowDefColumns",t.mppColumns)("matRowDefWhen",t.is_group),A.xp6(1),A.Q6J("matFooterRowDef",A.DdM(19,Ho)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)("matRowDefWhen",!t.is_group),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let ha=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt,me,cn){this.logger=t,this.commonService=a,this.store=D,this.rtlEffects=k,this.decimalPipe=nt,this.titleCasePipe=wt,this.datePipe=Lt,this.dataService=me,this.camelCaseWithReplace=cn,this.calledFrom="transactions",this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:r.IV,sortBy:"created_at",sortOrder:r.Pi.DESCENDING},this.faHistory=h.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.payments=new TA.by([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHint="",this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.mppColumns=[],this.displayedColumns.map(k=>this.mppColumns.push("group_"+k)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(w.PP).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.payments||[],this.paymentJSONArr.length&&this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(t,a){return a.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.R)(this.unSubs[4])).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.created_at?(this.paymentDecoded.msatoshi||(this.paymentDecoded.msatoshi=0),this.sendPayment()):this.resetData()})}sendPayment(){var t;this.newlyAddedPayment=(null===(t=this.paymentDecoded)||void 0===t?void 0:t.payment_hash)||"",this.paymentDecoded.msatoshi&&0!==this.paymentDecoded.msatoshi?(this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:50,type:r.Gi.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.msatoshi/1e3,title:"Amount (Sats)",width:50,type:r.Gi.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:r.Gi.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,ft.q)(1)).subscribe(D=>{D&&(this.store.dispatch((0,L.oV)({payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:40,type:r.Gi.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:r.Gi.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:r.Gi.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,ft.q)(1)).subscribe(k=>{k&&(this.paymentDecoded.msatoshi=k[0].inputValue,this.store.dispatch((0,L.oV)({payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,invoice:this.paymentRequest,amount:1e3*k[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHint="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.R)(this.unSubs[5])).subscribe(a=>{var D;this.paymentDecoded=a,this.paymentDecoded.msatoshi?(null===(D=this.selNode)||void 0===D?void 0:D.fiatConversion)?this.commonService.convertCurrency(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0,r.NT.SATS,r.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,g.R)(this.unSubs[6])).subscribe({next:k=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats ("+k.symbol+this.decimalPipe.transform(k.OTHER?k.OTHER:0,r.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:k=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.msatoshi?this.paymentDecoded.msatoshi/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}openSendPaymentModal(){this.store.dispatch((0,qA.qR)({payload:{data:{component:_}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(t){const a=[[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:r.Gi.STRING}],[{key:"id",value:t.id,title:"ID",width:20,type:r.Gi.STRING},{key:"destination",value:t.destination,title:"Destination",width:80,type:r.Gi.STRING}],[{key:"created_at",value:t.created_at,title:"Creation Date",width:50,type:r.Gi.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(t.status),title:"Status",width:50,type:r.Gi.STRING}],[{key:"msatoshi",value:t.msatoshi,title:"Amount (mSats)",width:50,type:r.Gi.NUMBER},{key:"msatoshi_sent",value:t.msatoshi_sent,title:"Amount Sent (mSats)",width:50,type:r.Gi.NUMBER}]];t.bolt11&&""!==t.bolt11&&(null==a||a.unshift([{key:"bolt11",value:t.bolt11,title:"Bolt 11",width:100,type:r.Gi.STRING}])),t.bolt12&&""!==t.bolt12&&(null==a||a.unshift([{key:"bolt12",value:t.bolt12,title:"Bolt 12",width:100,type:r.Gi.STRING}])),t.memo&&""!==t.memo&&(null==a||a.splice(2,0,[{key:"memo",value:t.memo,title:"Memo",width:100,type:r.Gi.STRING}])),t.hasOwnProperty("partid")?null==a||a.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:80,type:r.Gi.STRING},{key:"partid",value:t.partid,title:"Part ID",width:20,type:r.Gi.STRING}]):null==a||a.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}]),this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Payment Information",message:a}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,a)=>{var D,k,nt;let wt="";switch(this.selFilterBy){case"all":wt=(t.created_at?null===(D=this.datePipe.transform(new Date(1e3*t.created_at),"dd/MMM/y HH:mm"))||void 0===D?void 0:D.toLowerCase():"")+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":wt="complete"===(null==t?void 0:t.status)?"completed":"incomplete/failed";break;case"created_at":wt=(null===(k=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===k?void 0:k.toLowerCase())||"";break;case"msatoshi_sent":case"msatoshi":wt=(null===(nt=+(t[this.selFilterBy]||0)/1e3)||void 0===nt?void 0:nt.toString())||"";break;case"type":wt=(null==t?void 0:t.bolt12)?"bolt12":(null==t?void 0:t.bolt11)?"bolt11":"keysend";break;default:wt=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===wt.indexOf(a):wt.includes(a)}}loadPaymentsTable(t){var a;this.payments=new TA.by(t?[...t]:[]),this.payments.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,this.payments.sort=this.sort,null===(a=this.payments.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),a=null==t?void 0:t.reduce((D,k)=>k.mpps?D.concat(k.mpps):(delete k.is_group,delete k.is_expanded,delete k.total_parts,D.concat(k)),[]);this.commonService.downloadFile(a,"Payments")}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(Ut.V),A.Y36(gt.JJ),A.Y36(gt.rS),A.Y36(gt.uU),A.Y36(St.D),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(t,a){if(1&t&&(A.Gf(W,5),A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first),A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},inputs:{calledFrom:"calledFrom"},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Payments")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["sendPaymentForm","ngForm"],["fxFlex","100"],["matInput","","placeholder","Payment Request","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","created_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","type"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","label"],["matColumnDef","destination"],["matColumnDef","memo"],["matColumnDef","msatoshi_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_created_at"],["matColumnDef","group_type"],["matColumnDef","group_payment_hash"],["matColumnDef","group_bolt11"],["matColumnDef","group_label"],["matColumnDef","group_destination"],["matColumnDef","group_memo"],["matColumnDef","group_msatoshi_sent"],["matColumnDef","group_msatoshi"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Completed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Incomplete/Failed","matTooltipPosition","right",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green"],["matTooltip","Incomplete/Failed","matTooltipPosition","right",1,"dot","yellow"],["mat-header-cell","","mat-sort-header",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"mpp-row-span"],["fxLayoutAlign","start center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","start center","class","ellipsis-parent mpp-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"mpp-row-span"],["fxLayoutAlign","end center","class","mpp-row-span",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["fxLayoutAlign","end center",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-mpp-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,ZA,12,3,"form",1),A.YNc(2,At,3,0,"div",2),A.YNc(3,Oo,79,20,"div",3),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf","home"===a.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===a.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===a.calledFrom))},directives:[n.xw,n.yH,n.Wh,gt.O5,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,x.Q7,dA.$V,x.JJ,x.On,X.bx,X.TO,Y.lW,C.BN,eA.gD,gt.sg,rt.ey,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,TA.mD,TA.yh,TA.nj,TA.Gk,TA.Ke,TA.Q2,TA.as,TA.XQ,Et.NW],pipes:[gt.uU,gt.JJ],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-group_actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:10rem;width:10rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{margin-top:.5rem;min-width:9rem;width:9rem}.mat-column-group_status[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_created_at[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:3rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.4rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:17rem}"]}),i})();function Jo(i,d){if(1&i&&(A.TgZ(0,"button",26)(1,"mat-icon"),A._uU(2,"more_vert"),A.qZA()()),2&i){A.oxw();const t=A.MAs(11);A.Q6J("matMenuTriggerFor",t)}}function ko(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const k=A.CHM(t).index,nt=A.oxw().$implicit;return A.oxw(2).onNavigateTo(nt.links[k])}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t)}}function jo(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){return A.CHM(t),A.oxw(3).onsortChannelsBy()}),A._uU(1),A.qZA()}if(2&i){const t=A.oxw(3);A.xp6(1),A.hij("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function Wo(i,d){1&i&&A._UZ(0,"mat-progress-bar",28)}function Vo(i,d){if(1&i&&A._UZ(0,"rtl-cln-node-info",29),2&i){const t=A.oxw(3);A.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function Ko(i,d){if(1&i&&A._UZ(0,"rtl-cln-balances-info",30),2&i){const t=A.oxw(3);A.Q6J("balances",t.balances)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[3])}}function Zo(i,d){if(1&i&&A._UZ(0,"rtl-cln-channel-capacity-info",31),2&i){const t=A.oxw(3);A.Q6J("sortBy",t.sortField)("channelBalances",t.channelBalances)("activeChannels",t.activeChannelsCapacity)("errorMessage",t.errorMessages[4]+" "+t.errorMessages[3])}}function Xo(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-info",32),2&i){const t=A.oxw(3);A.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1]+" "+t.errorMessages[4]+" "+t.errorMessages[5])}}function Ea(i,d){if(1&i&&A._UZ(0,"rtl-cln-channel-status-info",33),2&i){const t=A.oxw(3);A.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[3]+" "+t.errorMessages[4])}}function qo(i,d){1&i&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find information!"),A.qZA())}const wa=function(i){return{"dashboard-card-content":!0,"error-border":i}};function _o(i,d){if(1&i&&(A.TgZ(0,"mat-grid-tile",8)(1,"mat-card",9)(2,"mat-card-header")(3,"mat-card-title",10)(4,"div"),A._UZ(5,"fa-icon",11),A.TgZ(6,"span"),A._uU(7),A.qZA()(),A.TgZ(8,"div"),A.YNc(9,Jo,3,1,"button",12),A.TgZ(10,"mat-menu",13,14),A.YNc(12,ko,2,1,"button",15),A.YNc(13,jo,2,1,"button",16),A.qZA()()()(),A.TgZ(14,"mat-card-content",17),A.YNc(15,Wo,1,0,"mat-progress-bar",18),A.TgZ(16,"div",19),A.YNc(17,Vo,1,2,"rtl-cln-node-info",20),A.YNc(18,Ko,1,2,"rtl-cln-balances-info",21),A.YNc(19,Zo,1,4,"rtl-cln-channel-capacity-info",22),A.YNc(20,Xo,1,2,"rtl-cln-fee-info",23),A.YNc(21,Ea,1,2,"rtl-cln-channel-status-info",24),A.YNc(22,qo,2,0,"h3",25),A.qZA()()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(5),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(2),A.Q6J("ngIf",t.links[0]),A.xp6(3),A.Q6J("ngForOf",t.goToOptions),A.xp6(1),A.Q6J("ngIf","capacity"===t.id),A.xp6(1),A.s9C("fxFlex","capacity"===t.id?90:70),A.Q6J("ngClass",A.VKq(16,wa,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusBalance.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.ERROR)||"capacity"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&(a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusFHistory.status===a.apiCallStatusEnum.ERROR)||"status"===t.id&&(a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.ERROR))),A.xp6(1),A.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusBalance.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusFHistory.status===a.apiCallStatusEnum.INITIATED)||"status"===t.id&&(a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.INITIATED)),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","balance"),A.xp6(1),A.Q6J("ngSwitchCase","capacity"),A.xp6(1),A.Q6J("ngSwitchCase","fee"),A.xp6(1),A.Q6J("ngSwitchCase","status")}}function $o(i,d){if(1&i&&(A.TgZ(0,"div",2)(1,"div",3),A._UZ(2,"fa-icon",4),A.TgZ(3,"span",5),A._uU(4),A.qZA()(),A.TgZ(5,"mat-grid-list",6),A.YNc(6,_o,23,18,"mat-grid-tile",7),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),A.xp6(2),A.Oqu(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.xp6(1),A.Q6J("rowHeight",t.operatorCardHeight),A.xp6(1),A.Q6J("ngForOf",t.operatorCards)}}function As(i,d){if(1&i&&(A.TgZ(0,"button",26)(1,"mat-icon"),A._uU(2,"more_vert"),A.qZA()()),2&i){A.oxw();const t=A.MAs(9);A.Q6J("matMenuTriggerFor",t)}}function ts(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const k=A.CHM(t).index,nt=A.oxw(2).$implicit;return A.oxw(2).onNavigateTo(nt.links[k])}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t)}}function es(i,d){if(1&i&&(A.TgZ(0,"mat-card-header")(1,"mat-card-title",10)(2,"div"),A._UZ(3,"fa-icon",11),A.TgZ(4,"span"),A._uU(5),A.qZA()(),A.TgZ(6,"div"),A.YNc(7,As,3,1,"button",12),A.TgZ(8,"mat-menu",13,42),A.YNc(10,ts,2,1,"button",15),A.qZA()()()()),2&i){const t=A.oxw().$implicit;A.xp6(3),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(2),A.Q6J("ngIf",t.links[0]),A.xp6(3),A.Q6J("ngForOf",t.goToOptions)}}function ns(i,d){1&i&&A._UZ(0,"mat-progress-bar",28)}function is(i,d){if(1&i&&A._UZ(0,"rtl-cln-node-info",43),2&i){const t=A.oxw(3);A.Q6J("information",t.information)}}function rs(i,d){if(1&i&&A._UZ(0,"rtl-cln-balances-info",30),2&i){const t=A.oxw(3);A.Q6J("balances",t.balances)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[3])}}function as(i,d){if(1&i&&A._UZ(0,"rtl-cln-channel-liquidity-info",44),2&i){const t=A.oxw(3);A.Q6J("direction","In")("totalLiquidity",t.totalInboundLiquidity)("activeChannels",t.allInboundChannels)("errorMessage",t.errorMessages[4])}}function os(i,d){if(1&i&&A._UZ(0,"rtl-cln-channel-liquidity-info",44),2&i){const t=A.oxw(3);A.Q6J("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("activeChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[4])}}function le(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const k=A.CHM(t).index,nt=A.oxw(3).$implicit;return A.oxw(2).onNavigateTo(nt.links[k])}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t)}}function ss(i,d){if(1&i&&(A.TgZ(0,"button",26)(1,"mat-icon"),A._uU(2,"more_vert"),A.qZA()(),A.TgZ(3,"mat-menu",13,53),A.YNc(5,le,2,1,"button",15),A.qZA()),2&i){const t=A.MAs(4),a=A.oxw(2).$implicit;A.Q6J("matMenuTriggerFor",t),A.xp6(5),A.Q6J("ngForOf",a.goToOptions)}}function fr(i,d){1&i&&(A.TgZ(0,"span",45)(1,"mat-tab-group",46)(2,"mat-tab",47),A._UZ(3,"rtl-cln-lightning-invoices-table",48),A.qZA(),A.TgZ(4,"mat-tab",49),A._UZ(5,"rtl-cln-lightning-payments",50),A.qZA(),A.TgZ(6,"mat-tab",51),A.YNc(7,ss,6,2,"ng-template",52),A.qZA()()()),2&i&&(A.xp6(3),A.Q6J("calledFrom","home"),A.xp6(2),A.Q6J("calledFrom","home"),A.xp6(1),A.Q6J("disabled",!0))}function hr(i,d){1&i&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find information!"),A.qZA())}const Ni=function(i){return{"p-0":i}};function wi(i,d){if(1&i&&(A.TgZ(0,"mat-grid-tile",8)(1,"mat-card",36),A.YNc(2,es,11,4,"mat-card-header",37),A.TgZ(3,"mat-card-content",38),A.YNc(4,ns,1,0,"mat-progress-bar",18),A.TgZ(5,"div",19),A.YNc(6,is,1,1,"rtl-cln-node-info",39),A.YNc(7,rs,1,2,"rtl-cln-balances-info",21),A.YNc(8,as,1,4,"rtl-cln-channel-liquidity-info",40),A.YNc(9,os,1,4,"rtl-cln-channel-liquidity-info",40),A.YNc(10,fr,8,3,"span",41),A.YNc(11,hr,2,0,"h3",25),A.qZA()()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(1),A.Q6J("ngClass",A.VKq(13,Ni,"transactions"===t.id)),A.xp6(1),A.Q6J("ngIf","transactions"!==t.id),A.xp6(1),A.s9C("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),A.Q6J("ngClass",A.VKq(15,wa,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusBalance.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusBalance.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","balance"),A.xp6(1),A.Q6J("ngSwitchCase","inboundLiq"),A.xp6(1),A.Q6J("ngSwitchCase","outboundLiq"),A.xp6(1),A.Q6J("ngSwitchCase","transactions")}}function Jr(i,d){if(1&i&&(A.TgZ(0,"div",34),A._UZ(1,"fa-icon",4),A.TgZ(2,"span",5),A._uU(3),A.qZA()(),A.TgZ(4,"mat-grid-list",35),A.YNc(5,wi,12,17,"mat-grid-tile",7),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faSmile),A.xp6(2),A.hij("Welcome ",t.information.alias,"! Your node is up and running."),A.xp6(1),A.Q6J("rowHeight",t.merchantCardHeight),A.xp6(1),A.Q6J("ngForOf",t.merchantCards)}}let ls=(()=>{class i{constructor(t,a,D,k){this.logger=t,this.store=a,this.commonService=D,this.router=k,this.faSmile=E.ctA,this.faFrown=E.KfU,this.faAngleDoubleDown=h.Sbq,this.faAngleDoubleUp=h.Vfw,this.faChartPie=h.OS1,this.faBolt=h.BDt,this.faServer=h.xf3,this.faNetworkWired=h.kXW,this.userPersonaEnum=r.ol,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.selNode={},this.information={},this.totalBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.activeChannels=[],this.channelsStatus={active:{},pending:{},inactive:{}},this.activeChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="405px",this.merchantCardHeight="65px",this.sortField="Balance Score",this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBalance=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.cu.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===r.cu.SM||this.screenSize===r.cu.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(w.Hz).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.errorMessages[5]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusFHistory=t.apisCallStatus[1],this.apiCallStatusNodeInfo.status===r.Bn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===r.Bn.ERROR&&(this.errorMessages[5]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=t.nodeSettings,this.information=t.information}),this.store.select(w.JG).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===r.Bn.ERROR&&(this.errorMessages[1]=this.apiCallStatusFees.message?"object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message:""),this.fees=t.fees,this.logger.info(t)}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{var a,D;this.errorMessages[4]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===r.Bn.ERROR&&(this.errorMessages[4]=this.apiCallStatusChannels.message?"object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message:""),this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.activeChannels=t.activeChannels,this.activeChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels,"balancedness")))||[],this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(a=this.activeChannels)||void 0===a?void 0:a.filter(k=>!!k.msatoshi_to_them&&k.msatoshi_to_them>0),"msatoshi_to_them")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(D=this.activeChannels)||void 0===D?void 0:D.filter(k=>!!k.msatoshi_to_us&&k.msatoshi_to_us>0),"msatoshi_to_us")))||[],this.activeChannels.forEach(k=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((k.msatoshi_to_them||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((k.msatoshi_to_us||0)/1e3)}),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.logger.info(t)}),this.store.select(w.Rn).pipe((0,g.R)(this.unSubs[3]),(0,f.M)(this.store.select(w.Wj))).subscribe(([t,a])=>{this.errorMessages[2]="",this.apiCallStatusBalance=t.apiCallStatus,this.apiCallStatusBalance.status===r.Bn.ERROR&&(this.errorMessages[2]=this.apiCallStatusBalance.message?"object"==typeof this.apiCallStatusBalance.message?JSON.stringify(this.apiCallStatusBalance.message):this.apiCallStatusBalance.message:""),this.errorMessages[3]="",this.apiCallStatusLRBal=a.apiCallStatus,this.apiCallStatusLRBal.status===r.Bn.ERROR&&(this.errorMessages[3]=this.apiCallStatusLRBal.message?"object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message:""),this.totalBalance=t.balance,this.balances.onchain=t.balance.totalBalance||0,this.balances.lightning=a.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const D=a.localRemoteBalance.localBalance?+a.localRemoteBalance.localBalance:0,k=a.localRemoteBalance.remoteBalance?+a.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:D,remoteBalance:k,balancedness:+(1-Math.abs((D-k)/(D+k))).toFixed(3)},this.channelsStatus.active.capacity=a.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=a.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=a.localRemoteBalance.inactiveBalance||0,this.logger.info(t),this.logger.info(a)})}onNavigateTo(t){this.router.navigateByUrl("/cln/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((t,a)=>{const D=(t.msatoshi_to_us?+t.msatoshi_to_us:0)+(t.msatoshi_to_them?+t.msatoshi_to_them:0),k=(a.msatoshi_to_them?+a.msatoshi_to_them:0)+(a.msatoshi_to_them?+a.msatoshi_to_them:0);return D>k?-1:D{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(c.v),A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-home"]],decls:3,vars:2,consts:[["fxLayout","column",4,"ngIf","ngIfElse"],["merchantDashboard",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["menuOperator","matMenu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column",1,"w-100","dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[3,"disabled"],["mat-tab-label",""],["menuTransactions","matMenu"]],template:function(t,a){if(1&t&&(A.YNc(0,$o,7,4,"div",0),A.YNc(1,Jr,6,4,"ng-template",null,1,A.W1O)),2&t){const D=A.MAs(2);A.Q6J("ngIf",(null==a.selNode?null:a.selNode.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",D)}},directives:[gt.O5,n.xw,n.Wh,C.BN,Q.Il,gt.sg,Q.DX,n.yH,M.a8,M.dk,M.n5,Y.lW,v.p6,p.Hw,v.VK,v.OP,M.dn,gt.mk,I.oO,u.pW,gt.RF,gt.n9,O,uA,lA,q,K,gt.ED,et,st.SP,st.uX,Ae,ha,st.uD],styles:[""]}),i})();var Ca=Pt(9841),cs=Pt(8012),vi=Pt(8377),Zn=Pt(7261),Xn=Pt(1125),si=Pt(5615);const kr=["form"],gs=["formSweepAll"],Qa=["stepper"];function Bs(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Bitcoin address is required."),A.qZA())}function us(i,d){1&i&&(A.TgZ(0,"mat-hint"),A._uU(1,"Amount replaced by UTXO balance"),A.qZA())}function fs(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.amountError)}}function hs(i,d){if(1&i&&(A.TgZ(0,"mat-option",38),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(t)}}function Es(i,d){if(1&i&&(A.TgZ(0,"mat-option",38),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function da(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function ws(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",39)(1,"input",40,41),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw(2).customFeeRate=D}),A.qZA(),A.YNc(3,da,2,0,"mat-error",14),A.qZA()}if(2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngModel",t.customFeeRate)("step",.1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function Cs(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function Di(i,d){if(1&i&&(A.TgZ(0,"mat-option",38),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t),A.xp6(1),A.hij("",A.lcZ(2,2,t.value)," Sats")}}function Rt(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",23)(1,"mat-expansion-panel",42),A.NdJ("closed",function(){return A.CHM(t),A.oxw(2).onAdvancedPanelToggle(!0)})("opened",function(){return A.CHM(t),A.oxw(2).onAdvancedPanelToggle(!1)}),A.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"span"),A._uU(5),A.qZA()()(),A.TgZ(6,"div",22)(7,"div",43)(8,"mat-form-field",44)(9,"mat-select",45),A.NdJ("selectionChange",function(D){return A.CHM(t),A.oxw(2).onUTXOSelectionChange(D)})("valueChange",function(D){return A.CHM(t),A.oxw(2).selUTXOs=D}),A.TgZ(10,"mat-select-trigger"),A._uU(11),A.ALo(12,"number"),A.qZA(),A.YNc(13,Di,3,4,"mat-option",21),A.qZA()(),A.TgZ(14,"div",46)(15,"mat-slide-toggle",47),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw(2).flgUseAllBalance=D})("change",function(){return A.CHM(t),A.oxw(2).onUTXOAllBalanceChange()}),A._uU(16," Use selected UTXOs balance "),A.qZA(),A.TgZ(17,"mat-icon",48),A._uU(18,"info_outline"),A.qZA()()()()()()}if(2&i){const t=A.oxw(2);A.xp6(5),A.Oqu(t.advancedTitle),A.xp6(4),A.Q6J("value",t.selUTXOs),A.xp6(2),A.AsE("",A.lcZ(12,7,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.xp6(2),A.Q6J("ngForOf",t.utxos),A.xp6(2),A.Q6J("ngModel",t.flgUseAllBalance)("disabled",t.selUTXOs.length<1)}}function Er(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.sendFundError)}}function wr(i,d){if(1&i&&(A.TgZ(0,"div",49),A._UZ(1,"fa-icon",50),A.YNc(2,Er,2,1,"span",14),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.sendFundError)}}const Ci=function(i,d){return{"mr-6":i,"mr-2":d}};function pa(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"form",9,10),A.NdJ("submit",function(){return A.CHM(t),A.oxw().onSendFunds()})("reset",function(){return A.CHM(t),A.oxw().resetData()}),A.TgZ(2,"mat-form-field",11)(3,"input",12,13),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().transaction.address=D}),A.qZA(),A.YNc(5,Bs,2,0,"mat-error",14),A.qZA(),A.TgZ(6,"mat-form-field",15)(7,"input",16,17),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().transaction.satoshis=D}),A.qZA(),A.YNc(9,us,2,0,"mat-hint",14),A.TgZ(10,"span",18),A._uU(11),A.qZA(),A.YNc(12,fs,2,1,"mat-error",14),A.qZA(),A.TgZ(13,"mat-form-field",19)(14,"mat-select",20),A.NdJ("selectionChange",function(D){return A.CHM(t),A.oxw().onAmountUnitChange(D)}),A.YNc(15,hs,2,2,"mat-option",21),A.qZA()(),A.TgZ(16,"div",22)(17,"div",23)(18,"div",24)(19,"mat-form-field",25)(20,"mat-select",26),A.NdJ("valueChange",function(D){return A.CHM(t),A.oxw().selFeeRate=D})("selectionChange",function(){return A.CHM(t),A.oxw().customFeeRate=null}),A.YNc(21,Es,2,2,"mat-option",21),A.qZA()(),A.YNc(22,ws,4,5,"mat-form-field",27),A.qZA(),A.TgZ(23,"div",28)(24,"mat-checkbox",29),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().flgMinConf=D})("change",function(){A.CHM(t);const D=A.oxw();return D.flgMinConf?D.selFeeRate=null:D.minConfValue=null}),A.qZA(),A.TgZ(25,"mat-form-field",30)(26,"input",31,32),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().minConfValue=D}),A.qZA(),A.YNc(28,Cs,2,0,"mat-error",14),A.qZA()()(),A.YNc(29,Rt,19,9,"div",33),A._UZ(30,"div",22),A.YNc(31,wr,3,2,"div",34),A.TgZ(32,"div",35)(33,"button",36),A._uU(34,"Clear Fields"),A.qZA(),A.TgZ(35,"button",37),A._uU(36,"Send Funds"),A.qZA()()()()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.transaction.address),A.xp6(2),A.Q6J("ngIf",!t.transaction.address),A.xp6(2),A.Q6J("ngModel",t.transaction.satoshis)("type",t.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",t.flgUseAllBalance),A.xp6(2),A.Q6J("ngIf",t.flgUseAllBalance),A.xp6(2),A.hij("",t.selAmountUnit," "),A.xp6(1),A.Q6J("ngIf",!t.transaction.satoshis),A.xp6(2),A.Q6J("value",t.selAmountUnit)("disabled",t.flgUseAllBalance),A.xp6(1),A.Q6J("ngForOf",t.amountUnits),A.xp6(4),A.Q6J("fxFlex","customperkb"!==t.selFeeRate||t.flgMinConf?"100":"48"),A.xp6(1),A.Q6J("value",t.selFeeRate)("disabled",t.flgMinConf),A.xp6(1),A.Q6J("ngForOf",t.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngModel",t.flgMinConf)("ngClass",A.WLB(28,Ci,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.xp6(2),A.Q6J("ngModel",t.minConfValue)("step",1)("min",0)("required",t.flgMinConf)("disabled",!t.flgMinConf),A.xp6(2),A.Q6J("ngIf",t.flgMinConf&&!t.minConfValue),A.xp6(1),A.Q6J("ngIf",t.isCompatibleVersion),A.xp6(2),A.Q6J("ngIf",""!==t.sendFundError)}}function Cr(i,d){if(1&i&&A._uU(0),2&i){const t=A.oxw(3);A.Oqu(t.passwordFormLabel)}}function Qs(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Password is required."),A.qZA())}function Ma(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-step",55)(1,"form",73),A.YNc(2,Cr,1,1,"ng-template",67),A.TgZ(3,"div",0)(4,"mat-form-field",1),A._UZ(5,"input",74),A.YNc(6,Qs,2,0,"mat-error",14),A.qZA()(),A.TgZ(7,"div",75)(8,"button",76),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onAuthenticate()}),A._uU(9,"Confirm"),A.qZA()()()()}if(2&i){const t=A.oxw(2);A.Q6J("stepControl",t.passwordFormGroup)("editable",t.flgEditable),A.xp6(1),A.Q6J("formGroup",t.passwordFormGroup),A.xp6(5),A.Q6J("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function ds(i,d){if(1&i&&A._uU(0),2&i){const t=A.oxw(2);A.Oqu(t.sendFundFormLabel)}}function ki(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Bitcoin address is required."),A.qZA())}function Qr(i,d){if(1&i&&(A.TgZ(0,"mat-option",38),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function ps(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function ma(i,d){if(1&i&&(A.TgZ(0,"mat-form-field",39),A._UZ(1,"input",77),A.YNc(2,ps,2,0,"mat-error",14),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("step",.1)("min",0),A.xp6(1),A.Q6J("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.customFeeRate.value)}}function Ia(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function va(i,d){if(1&i&&A._uU(0),2&i){const t=A.oxw(2);A.Oqu(t.confirmFormLabel)}}function Ms(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.sendFundError)}}function ms(i,d){if(1&i&&(A.TgZ(0,"div",49),A._UZ(1,"fa-icon",50),A.YNc(2,Ms,2,1,"span",14),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.sendFundError)}}function ji(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",51)(1,"mat-vertical-stepper",52,53),A.NdJ("selectionChange",function(D){return A.CHM(t),A.oxw().stepSelectionChanged(D)}),A.YNc(3,Ma,10,4,"mat-step",54),A.TgZ(4,"mat-step",55)(5,"form",56),A.YNc(6,ds,1,1,"ng-template",57),A.TgZ(7,"div",22)(8,"mat-form-field",1),A._UZ(9,"input",58),A.YNc(10,ki,2,0,"mat-error",14),A.qZA(),A.TgZ(11,"div",59)(12,"div",24)(13,"mat-form-field",25)(14,"mat-select",60),A.YNc(15,Qr,2,2,"mat-option",21),A.qZA()(),A.YNc(16,ma,3,3,"mat-form-field",27),A.qZA(),A.TgZ(17,"div",28),A._UZ(18,"mat-checkbox",61),A.TgZ(19,"mat-form-field",30),A._UZ(20,"input",62),A.YNc(21,Ia,2,0,"mat-error",14),A.qZA()()()(),A.TgZ(22,"div",63)(23,"button",64),A._uU(24,"Next"),A.qZA()()()(),A.TgZ(25,"mat-step",65)(26,"form",66),A.YNc(27,va,1,1,"ng-template",67),A.TgZ(28,"div",51)(29,"div",68),A._UZ(30,"fa-icon",69),A.TgZ(31,"span"),A._uU(32,"You are about to sweep all funds from RTL. Are you sure?"),A.qZA()(),A.YNc(33,ms,3,2,"div",34),A.TgZ(34,"div",63)(35,"button",70),A.NdJ("click",function(){return A.CHM(t),A.oxw().onSendFunds()}),A._uU(36,"Sweep All Funds"),A.qZA()()()()()(),A.TgZ(37,"div",71)(38,"button",72),A._uU(39),A.qZA()()()}if(2&i){const t=A.oxw();A.xp6(1),A.Q6J("linear",!0),A.xp6(2),A.Q6J("ngIf",!t.appConfig.sso.rtlSSO),A.xp6(1),A.Q6J("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),A.xp6(1),A.Q6J("formGroup",t.sendFundFormGroup),A.xp6(5),A.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),A.xp6(3),A.Q6J("fxFlex","customperkb"!==t.sendFundFormGroup.controls.selFeeRate.value||t.sendFundFormGroup.controls.flgMinConf.value?"100":"48"),A.xp6(2),A.Q6J("ngForOf",t.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value),A.xp6(2),A.Q6J("ngClass",A.WLB(20,Ci,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.xp6(2),A.Q6J("step",1)("min",0)("required",t.sendFundFormGroup.controls.flgMinConf.value),A.xp6(1),A.Q6J("ngIf",t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.minConfValue.value),A.xp6(4),A.Q6J("stepControl",t.confirmFormGroup),A.xp6(1),A.Q6J("formGroup",t.confirmFormGroup),A.xp6(4),A.Q6J("icon",t.faExclamationTriangle),A.xp6(3),A.Q6J("ngIf",""!==t.sendFundError),A.xp6(5),A.Q6J("mat-dialog-close",!1),A.xp6(1),A.Oqu(t.flgValidated?"Close":"Cancel")}}let Da=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt,me,cn,oe){this.dialogRef=t,this.data=a,this.logger=D,this.store=k,this.commonService=nt,this.decimalPipe=wt,this.actions=Lt,this.formBuilder=me,this.rtlEffects=cn,this.snackBar=oe,this.faExclamationTriangle=h.eHv,this.sweepAll=!1,this.selNode={},this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=r._t[1],this.blockchainBalance={},this.information={},this.isCompatibleVersion=!1,this.newAddress="",this.transaction={},this.feeRateTypes=r.vn,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=r.uA,this.selAmountUnit=r.uA[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=r.Xz,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[x.kI.required]],password:["",[x.kI.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",x.kI.required],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{t?(this.sendFundFormGroup.controls.selFeeRate.disable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.reset(),this.sendFundFormGroup.controls.minConfValue.enable(),this.sendFundFormGroup.controls.minConfValue.setValidators([x.kI.required]),this.sendFundFormGroup.controls.minConfValue.setValue(null)):(this.sendFundFormGroup.controls.selFeeRate.enable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.setValue(null),this.sendFundFormGroup.controls.minConfValue.disable(),this.sendFundFormGroup.controls.minConfValue.setValidators(null),this.sendFundFormGroup.controls.minConfValue.setErrors(null))}),this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.sendFundFormGroup.controls.flgMinConf.value?null:[x.kI.required])}),(0,Ca.a)([this.store.select(vi.dT),this.store.select(vi.Yj)]).pipe((0,g.R)(this.unSubs[1])).subscribe(([t,a])=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.appConfig=a}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.information=t,this.isCompatibleVersion=this.commonService.isVersionCompatible(this.information.version,"0.9.0")&&this.commonService.isVersionCompatible(this.information.api_version,"0.4.0")}),this.store.select(w.T4).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{var a;this.utxos=this.commonService.sortAscByKey(null===(a=t.utxos)||void 0===a?void 0:a.filter(D=>"confirmed"===D.status),"value"),this.logger.info(t)}),this.actions.pipe((0,g.R)(this.unSubs[4]),(0,ot.h)(t=>t.type===r.AB.UPDATE_API_CALL_STATUS_CLN||t.type===r.AB.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(t=>{t.type===r.AB.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,qA.jW)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.Bn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,qA.QO)({payload:cs(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,ft.q)(1)).subscribe(t=>{"ERROR"!==t?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshis="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(t=>{var a;return null===(a=this.transaction.utxos)||void 0===a?void 0:a.push(t.txid+":"+t.output)})),this.sweepAll){if(!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||this.sendFundFormGroup.controls.flgMinConf.value&&(!this.sendFundFormGroup.controls.minConfValue.value||this.sendFundFormGroup.controls.minConfValue.value<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshis="all",this.transaction.address=this.sendFundFormGroup.controls.transactionAddress.value,this.sendFundFormGroup.controls.flgMinConf.value?(delete this.transaction.feeRate,this.transaction.minconf=this.sendFundFormGroup.controls.flgMinConf.value?this.sendFundFormGroup.controls.minConfValue.value:null):(delete this.transaction.minconf,this.transaction.feeRate="customperkb"===this.sendFundFormGroup.controls.selFeeRate.value&&!this.sendFundFormGroup.controls.flgMinConf.value&&this.sendFundFormGroup.controls.customFeeRate.value?1e3*this.sendFundFormGroup.controls.customFeeRate.value+"perkb":this.sendFundFormGroup.controls.selFeeRate.value),delete this.transaction.utxos,this.store.dispatch((0,L.Wi)({payload:this.transaction}))}else{if(this.transaction.minconf=this.flgMinConf?this.minConfValue:null,this.transaction.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,!this.transaction.address||""===this.transaction.address||!this.transaction.satoshis||+this.transaction.satoshis<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshis&&"all"!==this.transaction.satoshis&&this.selAmountUnit!==r.NT.SATS?this.commonService.convertCurrency(+this.transaction.satoshis,this.selAmountUnit===this.amountUnits[2]?r.NT.OTHER:this.selAmountUnit,r.NT.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.R)(this.unSubs[5])).subscribe({next:t=>{this.transaction.satoshis=t[r.NT.SATS],this.selAmountUnit=r.NT.SATS,this.store.dispatch((0,L.Wi)({payload:this.transaction}))},error:t=>{this.transaction.satoshis=null,this.selAmountUnit=r.NT.SATS,this.amountError="Conversion Error: "+t}}):this.store.dispatch((0,L.Wi)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=r.uA[0]}stepSelectionChanged(t){var a;switch(this.sendFundError="",t.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+(this.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+(null===(a=this.feeRateTypes.find(D=>D.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value))||void 0===a?void 0:a.feeRateType):"")}t.selectedIndex0?(this.totalSelectedUTXOAmount=null===(a=this.selUTXOs)||void 0===a?void 0:a.reduce((D,k)=>D+(k.value||0),0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshis=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshis=this.totalSelectedUTXOAmount,this.selAmountUnit=r.uA[0]):this.transaction.satoshis=null}onAmountUnitChange(t){const a=this,D=this.selAmountUnit===this.amountUnits[2]?r.NT.OTHER:this.selAmountUnit;let k=t.value===this.amountUnits[2]?r.NT.OTHER:t.value;this.transaction.satoshis&&this.selAmountUnit!==t.value&&this.commonService.convertCurrency(+this.transaction.satoshis,D,k,this.amountUnits[2],this.fiatConversion).pipe((0,g.R)(this.unSubs[6])).subscribe({next:nt=>{var wt;this.selAmountUnit=t.value,a.transaction.satoshis=null===(wt=a.decimalPipe.transform(nt[k],a.currencyUnitFormats[k]))||void 0===wt?void 0:wt.replace(/,/g,"")},error:nt=>{a.transaction.satoshis=null,this.amountError="Conversion Error: "+nt,this.selAmountUnit=D,k=D}})}onAdvancedPanelToggle(t){this.advancedTitle=t&&this.selUTXOs.length&&this.selUTXOs.length>0?"Advanced Options | Selected UTXOs: "+this.selUTXOs.length+" | Selected UTXO Amount: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats":"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(e.mQ),A.Y36(B.yh),A.Y36(c.v),A.Y36(gt.JJ),A.Y36(H.eX),A.Y36(x.qu),A.Y36(Ut.V),A.Y36(Zn.ux))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(t,a){if(1&t&&(A.Gf(kr,7),A.Gf(gs,5),A.Gf(Qa,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first),A.iGM(D=A.CRH())&&(a.formSweepAll=D.first),A.iGM(D=A.CRH())&&(a.stepper=D.first)}},decls:12,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["sweepAllBlock",""],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex","55"],["matInput","","autoFocus","","placeholder","Bitcoin Address","tabindex","1","name","address","required","",3,"ngModel","ngModelChange"],["address","ngModel"],[4,"ngIf"],["fxFlex","30"],["matInput","","placeholder","Amount","name","amount","tabindex","2","required","",3,"ngModel","type","step","min","disabled","ngModelChange"],["amount","ngModel"],["matSuffix",""],["fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"value","disabled","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","48","fxLayoutAlign","space-between end"],["fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","placeholder","Fee Rate",3,"value","disabled","valueChange","selectionChange"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","2","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModel","ngClass","ngModelChange","change"],["fxFlex","98"],["matInput","","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"ngModel","step","min","required","disabled","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"ngModel","step","min","required","ngModelChange"],["custFeeRate","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","35","fxLayoutAlign","start end"],["tabindex","8","placeholder","Coin Selection","multiple","",3,"value","selectionChange","valueChange"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["tabindex","9","color","primary","name","flgUseAllBalance",3,"ngModel","disabled","ngModelChange","change"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","above",1,"info-icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["matInput","","formControlName","transactionAddress","placeholder","Bitcoin Address","tabindex","4","name","address","required",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["tabindex","4","placeholder","Fee Rate","formControlName","selFeeRate"],["fxFlex","2","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"step","min","required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","default","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","placeholder","Password","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","default",3,"click"],["matInput","","formControlName","customFeeRate","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(t,a){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6),A.YNc(9,pa,37,31,"form",7),A.qZA()()(),A.YNc(10,ji,40,23,"ng-template",null,8,A.W1O)),2&t){const D=A.MAs(11);A.xp6(5),A.Oqu(a.sweepAll?"Sweep All Funds":"Send Funds"),A.xp6(1),A.Q6J("mat-dialog-close",!1),A.xp6(3),A.Q6J("ngIf",!a.sweepAll)("ngIfElse",D)}},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,Ft.ZT,M.dn,gt.O5,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,EA.h,x.Q7,x.JJ,x.On,X.TO,NA.q,X.bx,X.R9,eA.gD,gt.sg,rt.ey,x.wV,x.qQ,Gt.oG,gt.mk,I.oO,Xn.ib,Xn.yz,Xn.yK,eA.$L,yt.Rr,p.Hw,cA.gM,C.BN,si.Vq,si.C0,x.sg,si.VY,x.u,si.Ic],pipes:[gt.JJ],styles:[""]}),i})();var jr=Pt(1203),Wr=Pt(7544);function ya(i,d){if(1&i&&(A.TgZ(0,"mat-option",37),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function Is(i,d){1&i&&A._UZ(0,"mat-progress-bar",38)}function vs(i,d){1&i&&A._UZ(0,"th",39)}function Ds(i,d){1&i&&(A.TgZ(0,"span",42)(1,"mat-icon",43),A._uU(2,"warning"),A.qZA()())}function ys(i,d){if(1&i&&(A.TgZ(0,"td",40),A.YNc(1,Ds,3,0,"span",41),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(),D=A.MAs(51);A.xp6(1),A.Q6J("ngIf",a.numDustUTXOs>0&&!a.isDustUTXO&&t.value0||0===t.value),A.xp6(1),A.Q6J("ngIf",t.value<0)}}function Hs(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Blockheight"),A.qZA())}function Fa(i,d){if(1&i&&(A.TgZ(0,"td",40)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.blockheight)," ")}}function Kr(i,d){1&i&&(A.TgZ(0,"th",49),A._uU(1,"Reserved"),A.qZA())}function Ve(i,d){if(1&i&&(A.TgZ(0,"td",40)(1,"span"),A._uU(2),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(t.reserved?"Yes":"No")}}function di(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",57)(1,"div",58)(2,"mat-select",59),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",60),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Zr(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",61)(1,"button",62),A.NdJ("click",function(D){const nt=A.CHM(t).$implicit;return A.oxw().onUTXOClick(nt,D)}),A._uU(2,"View Info"),A.qZA()()}}function Os(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No utxos available."),A.qZA())}function dr(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting utxos..."),A.qZA())}function pr(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function Mr(i,d){if(1&i&&(A.TgZ(0,"td",63),A.YNc(1,Os,2,0,"p",64),A.YNc(2,dr,2,0,"p",64),A.YNc(3,pr,2,1,"p",64),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const ye=function(i){return{"display-none":i}};function Js(i,d){if(1&i&&A._UZ(0,"tr",65),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,ye,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function pi(i,d){1&i&&A._UZ(0,"tr",66)}function ks(i,d){1&i&&A._UZ(0,"tr",67)}function js(i,d){1&i&&A._UZ(0,"mat-icon",68)}const Ws=function(){return["all"]},mr=function(i){return{"error-border":i}},li=function(){return["no_utxo"]};let Ya=(()=>{class i{constructor(t,a,D,k,nt){this.logger=t,this.commonService=a,this.store=D,this.router=k,this.camelCaseWithReplace=nt,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:r.IV,sortBy:"status",sortOrder:r.Pi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new TA.by([]),this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.T4).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{var a;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=null===(a=t.utxos)||void 0===a?void 0:a.filter(D=>+(D.value||0)0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.utxos.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(t)})}ngAfterViewInit(){this.utxos&&this.utxos.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)}onUTXOClick(t,a){const D=[[{key:"txid",value:t.txid,title:"Transaction ID",width:100}],[{key:"output",value:t.output,title:"Output",width:50,type:r.Gi.NUMBER},{key:"value",value:t.value,title:"Value (Sats)",width:50,type:r.Gi.NUMBER}],[{key:"status",value:this.commonService.titleCase(t.status||""),title:"Status",width:50,type:r.Gi.STRING},{key:"blockheight",value:t.blockheight,title:"Blockheight",width:50,type:r.Gi.NUMBER}],[{key:"address",value:t.address,title:"Address",width:100}]];this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"UTXO Information",message:D}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,a)=>{var D;let k="";switch(this.selFilterBy){case"all":k=JSON.stringify(t).toLowerCase();break;case"is_dust":k=((null==t?void 0:t.value)||0)"is_dust"===k?+(D.value||0)0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(ie.F0),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("UTXOs")}])],decls:52,vars:16,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["matColumnDef","txid"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","address"],["matColumnDef","scriptpubkey"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","blockheight"],["matColumnDef","reserved"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["emptySpace",""],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["class","dot green","matTooltip","Confirmed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltip","Confirmed","matTooltipPosition","right",1,"dot","green"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip"],["mat-header-cell","","mat-sort-header",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],["fxLayoutAlign","start center","color","warn",1,"mr-1"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"div",2),A.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(6,ya,2,2,"mat-option",6),A.qZA()(),A.TgZ(7,"mat-form-field",4)(8,"input",7),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.TgZ(9,"div",8)(10,"div",9),A.YNc(11,Is,1,0,"mat-progress-bar",10),A.TgZ(12,"table",11,12),A.ynx(14,13),A.YNc(15,vs,1,0,"th",14),A.YNc(16,ys,2,2,"td",15),A.BQk(),A.ynx(17,16),A.YNc(18,xs,1,0,"th",17),A.YNc(19,Ys,3,2,"td",15),A.BQk(),A.ynx(20,18),A.YNc(21,Ts,2,0,"th",19),A.YNc(22,Ss,4,4,"td",15),A.BQk(),A.ynx(23,20),A.YNc(24,Nn,2,0,"th",19),A.YNc(25,Ns,4,4,"td",15),A.BQk(),A.ynx(26,21),A.YNc(27,Us,2,0,"th",19),A.YNc(28,bs,4,4,"td",15),A.BQk(),A.ynx(29,22),A.YNc(30,Rs,2,0,"th",23),A.YNc(31,Ls,4,3,"td",15),A.BQk(),A.ynx(32,24),A.YNc(33,Ps,2,0,"th",23),A.YNc(34,Qi,3,2,"td",15),A.BQk(),A.ynx(35,25),A.YNc(36,Hs,2,0,"th",23),A.YNc(37,Fa,4,3,"td",15),A.BQk(),A.ynx(38,26),A.YNc(39,Kr,2,0,"th",19),A.YNc(40,Ve,3,1,"td",15),A.BQk(),A.ynx(41,27),A.YNc(42,di,6,0,"th",28),A.YNc(43,Zr,3,0,"td",29),A.BQk(),A.ynx(44,30),A.YNc(45,Mr,4,3,"td",31),A.BQk(),A.YNc(46,Js,1,3,"tr",32),A.YNc(47,pi,1,0,"tr",33),A.YNc(48,ks,1,0,"tr",34),A.qZA(),A._UZ(49,"mat-paginator",35),A.qZA()()(),A.YNc(50,js,1,0,"ng-template",null,36,A.W1O)),2&t&&(A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(12,Ws).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(3),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",a.listUTXOs)("ngClass",A.VKq(13,mr,""!==a.errorMessage)),A.xp6(34),A.Q6J("matFooterRowDef",A.DdM(15,li)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.Wh,n.yH,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,gt.O5,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,p.Hw,gt.PC,I.Zl,eA.$L,Y.lW,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.rS,gt.JJ],styles:[".mat-column-is_dust[_ngcontent-%COMP%], .mat-column-status[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),i})();function Ui(i,d){if(1&i&&(A.TgZ(0,"span",4),A._uU(1,"UTXOs"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.numUtxos)}}function Ta(i,d){if(1&i&&(A.TgZ(0,"span",4),A._uU(1,"Dust UTXOs"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.numDustUtxos)}}let Vs=(()=>{class i{constructor(t,a){this.logger=t,this.store=a,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.vpe,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new l.x,new l.x]}ngOnInit(){this.store.select(w.T4).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a;t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length||0,this.numDustUtxos=(null===(a=t.utxos)||void 0===a?void 0:a.filter(D=>+(D.value||0){t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},decls:8,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box","my-2"],[3,"selectedIndex","selectedIndexChange"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"mat-tab-group",1),A.NdJ("selectedIndexChange",function(k){return a.onSelectedIndexChanged(k)}),A.TgZ(2,"mat-tab"),A.YNc(3,Ui,2,1,"ng-template",2),A._UZ(4,"rtl-cln-on-chain-utxos",3),A.qZA(),A.TgZ(5,"mat-tab"),A.YNc(6,Ta,2,1,"ng-template",2),A._UZ(7,"rtl-cln-on-chain-utxos",3),A.qZA()()()),2&t&&(A.xp6(1),A.Q6J("selectedIndex",a.selectedTableIndex),A.xp6(3),A.Q6J("numDustUTXOs",a.numDustUtxos)("isDustUTXO",!1)("dustAmount",a.DUST_AMOUNT),A.xp6(3),A.Q6J("numDustUTXOs",a.numDustUtxos)("isDustUTXO",!0)("dustAmount",a.DUST_AMOUNT))},directives:[n.xw,n.yH,n.Wh,st.SP,st.uX,st.uD,Wr.k,Ya],styles:[""]}),i})();const Ir=function(i,d){return[i,d]};function vr(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",12),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().activeLink=null==k?null:k.link}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit,a=A.oxw();A.Q6J("active",a.activeLink===(null==t?null:t.link))("routerLink",A.WLB(3,Ir,null==t?null:t.link,null==a.selectedTable?null:a.selectedTable.name)),A.xp6(1),A.Oqu(null==t?null:t.name)}}let yi=(()=>{class i{constructor(t,a,D){this.store=t,this.router=a,this.activatedRoute=D,this.selNode={},this.faExchangeAlt=h.Ssp,this.faChartPie=h.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(a=>a.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(a=>a instanceof ie.Av)).subscribe({next:a=>{const D=this.links.find(k=>a.urlAfterRedirects.includes(k.link));this.activeLink=D?D.link:this.links[0].link,this.selectedTable=this.tables.find(k=>k.name===a.urlAfterRedirects.substring(a.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(w.lw).pipe((0,g.R)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(w.Rn).pipe((0,g.R)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.balance.totalBalance||0},{title:"Confirmed",dataValue:a.balance.confBalance||0},{title:"Unconfirmed",dataValue:a.balance.unconfBalance||0}]})}openSendFundsModal(t){this.store.dispatch((0,qA.qR)({payload:{data:{sweepAll:t,component:Da}}}))}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(a=>a.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(B.yh),A.Y36(ie.F0),A.Y36(ie.gz))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain"]],decls:21,vars:5,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndex","selectedTableIndexChange"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"On-chain Balance"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A._UZ(7,"rtl-currency-unit-converter",5),A.qZA()()(),A.TgZ(8,"div",0),A._UZ(9,"fa-icon",1),A.TgZ(10,"span",2),A._uU(11,"On-chain Transactions"),A.qZA()(),A.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",7),A.YNc(16,vr,2,6,"div",8),A.qZA(),A.TgZ(17,"div",9),A._UZ(18,"router-outlet"),A.qZA(),A.TgZ(19,"div",10)(20,"rtl-cln-utxo-tables",11),A.NdJ("selectedTableIndexChange",function(k){return a.onSelectedTableIndexChanged(k)}),A.qZA()()()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faChartPie),A.xp6(6),A.Q6J("values",a.balances),A.xp6(2),A.Q6J("icon",a.faExchangeAlt),A.xp6(7),A.Q6J("ngForOf",a.links),A.xp6(4),A.Q6J("selectedTableIndex",null==a.selectedTable?null:a.selectedTable.id))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,jr.D,st.BU,gt.sg,st.Nj,ie.rH,n.yH,ie.lC,Vs],styles:[""]}),i})();function Ks(i,d){if(1&i&&(A.TgZ(0,"span",10),A._uU(1,"Channels"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.activeChannels)}}function Dr(i,d){if(1&i&&(A.TgZ(0,"span",10),A._uU(1,"Peers"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.activePeers)}}let Wi=(()=>{class i{constructor(t,a,D){this.store=t,this.logger=a,this.router=D,this.activePeers=0,this.activeChannels=0,this.faUsers=h.FVb,this.faChartPie=h.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(t=>t instanceof ie.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.activeChannels=t.activeChannels.length||0}),this.store.select(w.Wi).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(w.Rn).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.balance.totalBalance||0},{title:"Confirmed",dataValue:t.balance.confBalance||0},{title:"Unconfirmed",dataValue:t.balance.unconfBalance||0}]})}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(B.yh),A.Y36(e.mQ),A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"On-chain Balance"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A._UZ(7,"rtl-currency-unit-converter",5),A.qZA()()(),A.TgZ(8,"div",0),A._UZ(9,"fa-icon",1),A.TgZ(10,"span",2),A._uU(11,"Connections"),A.qZA()(),A.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.NdJ("selectedIndexChange",function(k){return a.activeLink=k})("selectedTabChange",function(k){return a.onSelectedTabChange(k)}),A.TgZ(16,"mat-tab"),A.YNc(17,Ks,2,1,"ng-template",8),A.qZA(),A.TgZ(18,"mat-tab"),A.YNc(19,Dr,2,1,"ng-template",8),A.qZA()(),A.TgZ(20,"div",9),A._UZ(21,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faChartPie),A.xp6(6),A.Q6J("values",a.balances),A.xp6(2),A.Q6J("icon",a.faUsers),A.xp6(6),A.Q6J("selectedIndex",a.activeLink))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,jr.D,st.SP,st.uX,st.uD,Wr.k,n.yH,ie.lC],styles:[""]}),i})();function Zs(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",11),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().activeLink=k.link}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit,a=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",a.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Xs=(()=>{class i{constructor(t,a,D){this.logger=t,this.store=a,this.router=D,this.faExchangeAlt=h.Ssp,this.faChartPie=h.OS1,this.currencyUnits=[],this.routerUrl="",this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.selNode={},this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(a=>a instanceof ie.Av)).subscribe({next:a=>{const D=this.links.find(k=>a.urlAfterRedirects.includes(k.link));this.activeLink=D?D.link:this.links[0].link,this.routerUrl=a.urlAfterRedirects}}),this.store.select(w.lw).pipe((0,g.R)(this.unSubs[1])).subscribe(a=>{if(this.selNode=a,this.selNode&&this.selNode.enableOffers){this.store.dispatch((0,L.yl)()),this.store.dispatch((0,L.uT)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const D=this.links.find(k=>this.router.url.includes(k.link));this.activeLink=D?D.link:this.links[0].link}}),this.store.select(w.Wj).pipe((0,g.R)(this.unSubs[2]),(0,f.M)(this.store.select(w.lw))).subscribe(([a,D])=>{this.currencyUnits=(null==D?void 0:D.currencyUnits)||[],this.balances=D&&D.userPersona===r.ol.OPERATOR?[{title:"Local Capacity",dataValue:a.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-transactions"]],decls:19,vars:4,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Lightning Balance"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A._UZ(7,"rtl-currency-unit-converter",5),A.qZA()()(),A.TgZ(8,"div",6),A._UZ(9,"fa-icon",1),A.TgZ(10,"span",2),A._uU(11,"Lightning Transactions"),A.qZA()(),A.TgZ(12,"div",7)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",8),A.YNc(16,Zs,2,3,"div",9),A.qZA(),A.TgZ(17,"div",10),A._UZ(18,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faChartPie),A.xp6(6),A.Q6J("values",a.balances),A.xp6(2),A.Q6J("icon",a.faExchangeAlt),A.xp6(7),A.Q6J("ngForOf",a.links))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,jr.D,st.BU,gt.sg,st.Nj,ie.rH,n.yH,ie.lC],styles:[""]}),i})();function qs(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",11),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().activeLink=k.link}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit,a=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",a.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Sa=(()=>{class i{constructor(t){this.router=t,this.faMapSigns=h.SuH,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"routingpeers",name:"Routing Peers"},{link:"failedtransactions",name:"Failed Transactions"},{link:"localfail",name:"Local Failed Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new l.x,new l.x,new l.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(a=>a instanceof ie.Av)).subscribe({next:a=>{const D=this.links.find(k=>a.urlAfterRedirects.includes(k.link));this.activeLink=D?D.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-routing"]],decls:13,vars:2,consts:[["fxLayout","column",1,"mb-2"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","fxFlex","100"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"fa-icon",2),A.TgZ(3,"span",3),A._uU(4,"Routing"),A.qZA()(),A.TgZ(5,"div",4)(6,"mat-card",5)(7,"mat-card-content",6)(8,"div",7)(9,"nav",8),A.YNc(10,qs,2,3,"div",9),A.qZA()(),A.TgZ(11,"div",10),A._UZ(12,"router-outlet"),A.qZA()()()()()),2&t&&(A.xp6(2),A.Q6J("icon",a.faMapSigns),A.xp6(8),A.Q6J("ngForOf",a.links))},directives:[n.xw,n.Wh,C.BN,n.yH,M.a8,M.dn,st.BU,gt.sg,st.Nj,ie.rH,ie.lC],styles:[""]}),i})();var Vi=Pt(6895);function _s(i,d){if(1&i&&(A.TgZ(0,"span",6),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t)}}function $s(i,d){1&i&&(A.TgZ(0,"th",26),A._uU(1,"Type"),A.qZA())}function Al(i,d){if(1&i&&(A.TgZ(0,"td",27),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.type)}}function tl(i,d){1&i&&(A.TgZ(0,"th",26),A._uU(1,"Address"),A.qZA())}function el(i,d){if(1&i&&(A.TgZ(0,"td",27),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.address)}}function nl(i,d){1&i&&(A.TgZ(0,"th",26),A._uU(1,"Port"),A.qZA())}function il(i,d){if(1&i&&(A.TgZ(0,"td",27),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.port)}}function rl(i,d){1&i&&(A.TgZ(0,"th",28)(1,"div",29),A._uU(2,"Actions"),A.qZA()())}function al(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",27)(1,"span",30)(2,"button",31),A.NdJ("copied",function(D){return A.CHM(t),A.oxw(2).onCopyNodeURI(D)}),A._uU(3,"Copy Node URI"),A.qZA()()()}if(2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(2),A.Q6J("payload",(null==a.lookupResult?null:a.lookupResult.nodeid)+"@"+t.address+":"+t.port)}}function ol(i,d){1&i&&A._UZ(0,"tr",32)}function yr(i,d){1&i&&A._UZ(0,"tr",33)}const Xr=function(i){return{"background-color":i}};function xr(i,d){if(1&i&&(A.TgZ(0,"div",1),A._UZ(1,"mat-divider",2),A.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),A._uU(5,"Alias"),A.qZA(),A.TgZ(6,"span",6),A._uU(7),A.TgZ(8,"span",7),A._uU(9),A.qZA()()(),A.TgZ(10,"div",8)(11,"h4",5),A._uU(12,"Pub Key"),A.qZA(),A.TgZ(13,"span",9),A._uU(14),A.qZA()()(),A._UZ(15,"mat-divider",10),A.TgZ(16,"div",3)(17,"div",4)(18,"h4",5),A._uU(19,"Last Update"),A.qZA(),A.TgZ(20,"span",6),A._uU(21),A.ALo(22,"date"),A.qZA()(),A.TgZ(23,"div",8)(24,"h4",5),A._uU(25,"Features"),A.qZA(),A.YNc(26,_s,2,1,"span",11),A.qZA()(),A._UZ(27,"mat-divider",10),A.TgZ(28,"div",12)(29,"h4",13),A._uU(30,"Addresses"),A.qZA(),A.TgZ(31,"div",14)(32,"table",15,16),A.ynx(34,17),A.YNc(35,$s,2,0,"th",18),A.YNc(36,Al,2,1,"td",19),A.BQk(),A.ynx(37,20),A.YNc(38,tl,2,0,"th",18),A.YNc(39,el,2,1,"td",19),A.BQk(),A.ynx(40,21),A.YNc(41,nl,2,0,"th",18),A.YNc(42,il,2,1,"td",19),A.BQk(),A.ynx(43,22),A.YNc(44,rl,3,0,"th",23),A.YNc(45,al,4,1,"td",19),A.BQk(),A.YNc(46,ol,1,0,"tr",24),A.YNc(47,yr,1,0,"tr",25),A.qZA()()()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(null==t.lookupResult?null:t.lookupResult.alias),A.xp6(1),A.Q6J("ngStyle",A.VKq(15,Xr,"#"+(null==t.lookupResult?null:t.lookupResult.color))),A.xp6(1),A.Oqu(null!=t.lookupResult&&t.lookupResult.color?"#"+(null==t.lookupResult?null:t.lookupResult.color):""),A.xp6(5),A.Oqu(null==t.lookupResult?null:t.lookupResult.nodeid),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(A.xi3(22,12,1e3*(null==t.lookupResult?null:t.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.xp6(5),A.Q6J("ngForOf",t.featureDescriptions),A.xp6(1),A.Q6J("inset",!0),A.xp6(5),A.Q6J("dataSource",t.addresses),A.xp6(14),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}let Na=(()=>{class i{constructor(t,a){this.logger=t,this.snackBar=a,this.featureDescriptions=[],this.addresses=new TA.by([]),this.displayedColumns=["type","address","port","actions"]}ngOnInit(){if(this.addresses=new TA.by(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(t,a)=>t[a]&&isNaN(t[a])?t[a].toLocaleLowerCase():t[a]?+t[a]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){const t=parseInt(this.lookupResult.features,16);r.Df.forEach(a=>{t&(1<{class i{constructor(t){this.store=t,this.lookupResult=[],this.node1_match=!1,this.node2_match=!1,this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){this.store.select(w.ey).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.lookupResult.length>0&&this.lookupResult[0].source===t.id&&(this.node1_match=!0),this.lookupResult.length>1&&this.lookupResult[1].source===t.id&&(this.node2_match=!0)})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(B.yh))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start start",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[3,"inset"],["fxLayout","column","fxFlex","20",1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","10",1,"my-1"],[1,"page-title","font-bold-500"]],template:function(t,a){1&t&&A.YNc(0,qr,204,91,"div",0),2&t&&A.Q6J("ngIf",a.lookupResult)},directives:[gt.O5,n.xw,pA.d,n.Wh,n.yH],pipes:[gt.JJ,gt.uU],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}),i})();const $r=["form"];function ll(i,d){if(1&i&&(A.TgZ(0,"mat-radio-button",17),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t.id)("checked",a.selectedFieldId===t.id),A.xp6(1),A.hij(" ",t.name," ")}}function Ki(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.hij("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function Ua(i,d){if(1&i&&(A.TgZ(0,"div"),A._UZ(1,"rtl-cln-node-lookup",26),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Q6J("lookupResult",t.nodeLookupValue)}}function cl(i,d){if(1&i&&(A.TgZ(0,"span",24),A.YNc(1,Ua,2,1,"div",25),A.qZA()),2&i){const t=A.oxw(2),a=A.MAs(19);A.xp6(1),A.Q6J("ngIf",""!==t.nodeLookupValue.nodeid)("ngIfElse",a)}}function gl(i,d){if(1&i&&(A.TgZ(0,"div"),A._UZ(1,"rtl-cln-channel-lookup",26),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Q6J("lookupResult",t.channelLookupValue)}}function Bl(i,d){if(1&i&&(A.TgZ(0,"span",24),A.YNc(1,gl,2,1,"div",25),A.qZA()),2&i){const t=A.oxw(2),a=A.MAs(19);A.xp6(1),A.Q6J("ngIf",t.channelLookupValue.length>0)("ngIfElse",a)}}function ul(i,d){1&i&&(A.TgZ(0,"span",24)(1,"h3"),A._uU(2,"Error! Unable to find details!"),A.qZA()())}function fl(i,d){if(1&i&&(A.TgZ(0,"div",18)(1,"div",19)(2,"span",20),A._uU(3),A.qZA()(),A.TgZ(4,"div",21),A.YNc(5,cl,2,2,"span",22),A.YNc(6,Bl,2,2,"span",22),A.YNc(7,ul,3,0,"span",23),A.qZA()()),2&i){const t=A.oxw();A.xp6(3),A.hij("",t.lookupFields[t.selectedFieldId].name," Details"),A.xp6(1),A.Q6J("ngSwitch",t.selectedFieldId),A.xp6(1),A.Q6J("ngSwitchCase",0),A.xp6(1),A.Q6J("ngSwitchCase",1)}}function hl(i,d){1&i&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find details!"),A.qZA())}const El=function(i){return{"mt-1":!0,"mt-2":i}};let wl=(()=>{class i{constructor(t,a,D,k){this.logger=t,this.commonService=a,this.store=D,this.actions=k,this.lookupKey="",this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=h.wn1,this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(t=>t.type===r.AB.SET_LOOKUP_CLN||t.type===r.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{if(t.type===r.AB.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof t.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(t.payload[0]));break;case 1:this.channelLookupValue="object"!=typeof t.payload[0]?[]:JSON.parse(JSON.stringify(t.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.Bn.ERROR&&"Lookup"===t.payload.action&&(this.flgLoading[0]="error")})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.selectedFieldId){case 0:this.store.dispatch((0,L.Sf)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,L.$A)({payload:{uiMessage:r.m6.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(H.eX))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lookups"]],viewQuery:function(t,a){if(1&t&&A.Gf($r,7),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first)}},decls:20,vars:9,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"placeholder","ngModel","change","ngModelChange"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["errorBlock",""],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6),A.NdJ("ngModelChange",function(k){return a.selectedFieldId=k})("change",function(k){return a.onSelectChange(k)}),A.YNc(7,ll,2,3,"mat-radio-button",7),A.qZA()(),A.TgZ(8,"mat-form-field",8)(9,"input",9,10),A.NdJ("change",function(){return a.clearLookupValue()})("ngModelChange",function(k){return a.lookupKey=k}),A.qZA(),A.YNc(11,Ki,2,1,"mat-error",11),A.qZA(),A.TgZ(12,"div",12)(13,"button",13),A.NdJ("click",function(){return a.resetData()}),A._uU(14,"Clear"),A.qZA(),A.TgZ(15,"button",14),A.NdJ("click",function(){return a.onLookup()}),A._uU(16,"Lookup"),A.qZA()()(),A.YNc(17,fl,8,4,"div",15),A.qZA()()(),A.YNc(18,hl,2,0,"ng-template",null,16,A.W1O)),2&t&&(A.xp6(6),A.Q6J("ngModel",a.selectedFieldId),A.xp6(1),A.Q6J("ngForOf",a.lookupFields),A.xp6(1),A.Q6J("ngClass",A.VKq(7,El,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),A.xp6(1),A.Q6J("placeholder",(null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key")("ngModel",a.lookupKey),A.xp6(2),A.Q6J("ngIf",!a.lookupKey),A.xp6(6),A.Q6J("ngIf",a.flgSetLookupValue))},directives:[n.xw,n.yH,n.Wh,M.dn,x._Y,x.JL,x.F,jt.VQ,x.JJ,x.On,gt.sg,jt.U0,X.KE,gt.mk,I.oO,wA.Nt,x.Fj,x.Q7,gt.O5,X.TO,Y.lW,gt.RF,gt.n9,Na,_r,gt.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}),i})();var Zi=(()=>{return(i=Zi||(Zi={})).KB="KB",i.KW="KW",Zi;var i})();function Cl(i,d){if(1&i&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4," Opening "),A.TgZ(5,"mat-icon",5),A._uU(6,"info_outline"),A.qZA()(),A.TgZ(7,"div",6),A._uU(8),A.ALo(9,"number"),A.qZA()(),A.TgZ(10,"div")(11,"h4",4),A._uU(12," Mutual Close "),A.TgZ(13,"mat-icon",7),A._uU(14,"info_outline"),A.qZA()(),A.TgZ(15,"div",6),A._uU(16),A.ALo(17,"number"),A.qZA()(),A.TgZ(18,"div")(19,"h4",4),A._uU(20," Unilateral Close "),A.TgZ(21,"mat-icon",8),A._uU(22,"info_outline"),A.qZA()(),A.TgZ(23,"div",6),A._uU(24),A.ALo(25,"number"),A.qZA()(),A.TgZ(26,"div")(27,"h4",4),A._uU(28," Delayed To Us "),A.TgZ(29,"mat-icon",9),A._uU(30,"info_outline"),A.qZA()(),A.TgZ(31,"div",6),A._uU(32),A.ALo(33,"number"),A.qZA()()(),A.TgZ(34,"div",3)(35,"div")(36,"h4",4),A._uU(37," Minimum Acceptable "),A.TgZ(38,"mat-icon",10),A._uU(39,"info_outline"),A.qZA()(),A.TgZ(40,"div",6),A._uU(41),A.ALo(42,"number"),A.qZA()(),A.TgZ(43,"div")(44,"h4",4),A._uU(45," Maximum Acceptable "),A.TgZ(46,"mat-icon",11),A._uU(47,"info_outline"),A.qZA()(),A.TgZ(48,"div",6),A._uU(49),A.ALo(50,"number"),A.qZA()(),A.TgZ(51,"div")(52,"h4",4),A._uU(53," HTLC Resolution "),A.TgZ(54,"mat-icon",12),A._uU(55,"info_outline"),A.qZA()(),A.TgZ(56,"div",6),A._uU(57),A.ALo(58,"number"),A.qZA()(),A.TgZ(59,"div")(60,"h4",4),A._uU(61," Penalty "),A.TgZ(62,"mat-icon",13),A._uU(63,"info_outline"),A.qZA()(),A.TgZ(64,"div",6),A._uU(65),A.ALo(66,"number"),A.qZA()()()()),2&i){const t=A.oxw();A.xp6(8),A.Oqu(A.lcZ(9,8,null==t.perkbw?null:t.perkbw.opening)),A.xp6(8),A.Oqu(A.lcZ(17,10,null==t.perkbw?null:t.perkbw.mutual_close)),A.xp6(8),A.Oqu(A.lcZ(25,12,null==t.perkbw?null:t.perkbw.unilateral_close)),A.xp6(8),A.Oqu(A.lcZ(33,14,null==t.perkbw?null:t.perkbw.delayed_to_us)),A.xp6(9),A.Oqu(A.lcZ(42,16,null==t.perkbw?null:t.perkbw.min_acceptable)),A.xp6(8),A.Oqu(A.lcZ(50,18,null==t.perkbw?null:t.perkbw.max_acceptable)),A.xp6(8),A.Oqu(A.lcZ(58,20,null==t.perkbw?null:t.perkbw.htlc_resolution)),A.xp6(8),A.Oqu(A.lcZ(66,22,null==t.perkbw?null:t.perkbw.penalty))}}function Ql(i,d){if(1&i&&(A.TgZ(0,"div",14)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let dl=(()=>{class i{constructor(){this.perkbw={}}ngAfterContentChecked(){this.feeRateStyle===Zi.KB?this.perkbw=this.feeRates.perkb:this.feeRateStyle===Zi.KW&&(this.perkbw=this.feeRates.perkw)}}return i.\u0275fac=function(t){return new(t||i)},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch","class","h-100",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch",1,"h-100"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start center",1,"dashboard-info-title"],["matTooltip","Default feerate for fundchannel and withdraw","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Feerate to aim for in cooperative shutdown. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for commitment_transaction in a live channel which we originally funded","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close funds to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The smallest feerate that you can use, usually the minimum relayed feerate of the backend","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The largest feerate we will accept from remote negotiations. If a peer attempts to set the feerate higher than this we will unilaterally close the channel (or simply forget it if it's not open yet)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close HTLC outputs to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate to start at when penalizing a cheat attempt","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,Cl,67,24,"div",0),A.YNc(1,Ql,3,1,"ng-template",null,1,A.W1O)),2&t){const D=A.MAs(2);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.yH,n.Wh,p.Hw,cA.gM],pipes:[gt.JJ],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}),i})();function pl(i,d){if(1&i&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A._uU(4," Opening Channel "),A.TgZ(5,"mat-icon",5),A._uU(6,"info_outline"),A.qZA()(),A.TgZ(7,"div",6),A._uU(8),A.ALo(9,"number"),A.qZA()(),A.TgZ(10,"div")(11,"h4",4),A._uU(12," Mutual Close "),A.TgZ(13,"mat-icon",7),A._uU(14,"info_outline"),A.qZA()(),A.TgZ(15,"div",6),A._uU(16),A.ALo(17,"number"),A.qZA()(),A.TgZ(18,"div")(19,"h4",4),A._uU(20," Unilateral Close "),A.TgZ(21,"mat-icon",8),A._uU(22,"info_outline"),A.qZA()(),A.TgZ(23,"div",6),A._uU(24),A.ALo(25,"number"),A.qZA()(),A.TgZ(26,"div",9),A._UZ(27,"h4",4)(28,"div",6),A.qZA()(),A.TgZ(29,"div",3)(30,"div")(31,"h4",4),A._uU(32," HTLC Timeout "),A.TgZ(33,"mat-icon",10),A._uU(34,"info_outline"),A.qZA()(),A.TgZ(35,"div",6),A._uU(36),A.ALo(37,"number"),A.qZA()(),A.TgZ(38,"div")(39,"h4",4),A._uU(40," HTLC Success "),A.TgZ(41,"mat-icon",11),A._uU(42,"info_outline"),A.qZA()(),A.TgZ(43,"div",6),A._uU(44),A.ALo(45,"number"),A.qZA()(),A.TgZ(46,"div",9),A._UZ(47,"h4",4)(48,"div",6),A.qZA(),A.TgZ(49,"div",9),A._UZ(50,"h4",4)(51,"div",6),A.qZA()()()),2&i){const t=A.oxw();A.xp6(8),A.Oqu(A.lcZ(9,5,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.xp6(8),A.Oqu(A.lcZ(17,7,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.xp6(8),A.Oqu(A.lcZ(25,9,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.xp6(12),A.Oqu(A.lcZ(37,11,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.xp6(8),A.Oqu(A.lcZ(45,13,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function Yr(i,d){if(1&i&&(A.TgZ(0,"div",12)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let Me=(()=>{class i{constructor(){}}return i.\u0275fac=function(t){return new(t||i)},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch","class","h-100",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","stretch",1,"h-100"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start center",1,"dashboard-info-title"],["matTooltip","Estimated cost of typical channel open","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Estimated cost of typical channel close","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical unilateral close (without HTLCs)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxFlex","12"],["matTooltip","Estimated cost of typical HTLC timeout transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical HTLC fulfillment transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(A.YNc(0,pl,52,15,"div",0),A.YNc(1,Yr,3,1,"ng-template",null,1,A.W1O)),2&t){const D=A.MAs(2);A.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",D)}},directives:[gt.O5,n.xw,n.yH,n.Wh,p.Hw,cA.gM],pipes:[gt.JJ],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}),i})();function ee(i,d){1&i&&A._UZ(0,"mat-progress-bar",19)}function Ml(i,d){if(1&i&&A._UZ(0,"rtl-cln-node-info",20),2&i){const t=A.oxw(3);A.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function ba(i,d){if(1&i&&A._UZ(0,"rtl-cln-channel-status-info",21),2&i){const t=A.oxw(3);A.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2])}}function Xi(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-info",22),2&i){const t=A.oxw(3);A.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1]+" "+t.errorMessages[3]+" "+t.errorMessages[4])}}function Ra(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-rates",23),2&i){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[5])}}function ml(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-rates",23),2&i){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[6])}}function Il(i,d){if(1&i&&A._UZ(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[5])}}const Aa=function(i){return{"dashboard-card-content":!0,"error-border":i}};function vl(i,d){if(1&i&&(A.TgZ(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A._UZ(4,"fa-icon",8),A.TgZ(5,"span"),A._uU(6),A.qZA()()(),A.TgZ(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.YNc(10,ee,1,0,"mat-progress-bar",12),A.TgZ(11,"div",13),A.YNc(12,Ml,1,2,"rtl-cln-node-info",14),A.YNc(13,ba,1,2,"rtl-cln-channel-status-info",15),A.YNc(14,Xi,1,2,"rtl-cln-fee-info",16),A.YNc(15,Ra,1,3,"rtl-cln-fee-rates",17),A.YNc(16,ml,1,3,"rtl-cln-fee-rates",17),A.YNc(17,Il,1,2,"rtl-cln-onchain-fee-estimates",18),A.qZA()()()()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(4),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(3),A.Q6J("ngClass",A.VKq(13,Aa,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&(a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusFHistory.status===a.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&a.apiCallStatusPerKB.status===a.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusFHistory.status===a.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&a.apiCallStatusPerKB.status===a.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","status"),A.xp6(1),A.Q6J("ngSwitchCase","fee"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKB"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKW"),A.xp6(1),A.Q6J("ngSwitchCase","onChainFeeEstimates")}}function En(i,d){if(1&i&&(A.TgZ(0,"mat-grid-list",2),A.YNc(1,vl,18,15,"mat-grid-tile",3),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngForOf",t.nodeCardsOperator)}}function ta(i,d){1&i&&A._UZ(0,"mat-progress-bar",19)}function La(i,d){if(1&i&&A._UZ(0,"rtl-cln-node-info",20),2&i){const t=A.oxw(3);A.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function Tr(i,d){if(1&i&&A._UZ(0,"rtl-cln-channel-status-info",21),2&i){const t=A.oxw(3);A.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2])}}function Dl(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-info",22),2&i){const t=A.oxw(3);A.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1]+" "+t.errorMessages[3]+" "+t.errorMessages[4])}}function xi(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-rates",23),2&i){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[5])}}function ni(i,d){if(1&i&&A._UZ(0,"rtl-cln-fee-rates",23),2&i){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[5])}}function gi(i,d){if(1&i&&A._UZ(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.oxw(3);A.Q6J("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[5])}}function Bi(i,d){if(1&i&&(A.TgZ(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",25),A._UZ(4,"fa-icon",8),A.TgZ(5,"span"),A._uU(6),A.qZA()()(),A.TgZ(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.YNc(10,ta,1,0,"mat-progress-bar",12),A.TgZ(11,"div",13),A.YNc(12,La,1,2,"rtl-cln-node-info",14),A.YNc(13,Tr,1,2,"rtl-cln-channel-status-info",15),A.YNc(14,Dl,1,2,"rtl-cln-fee-info",16),A.YNc(15,xi,1,3,"rtl-cln-fee-rates",17),A.YNc(16,ni,1,3,"rtl-cln-fee-rates",17),A.YNc(17,gi,1,2,"rtl-cln-onchain-fee-estimates",18),A.qZA()()()()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(4),A.Q6J("icon",t.icon),A.xp6(2),A.Oqu(t.title),A.xp6(3),A.Q6J("ngClass",A.VKq(13,Aa,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&(a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusFHistory.status===a.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&a.apiCallStatusPerKB.status===a.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusLRBal.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusFHistory.status===a.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&a.apiCallStatusPerKB.status===a.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&a.apiCallStatusPerKW.status===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngSwitch",t.id),A.xp6(1),A.Q6J("ngSwitchCase","node"),A.xp6(1),A.Q6J("ngSwitchCase","status"),A.xp6(1),A.Q6J("ngSwitchCase","fee"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKB"),A.xp6(1),A.Q6J("ngSwitchCase","feeRatesKW"),A.xp6(1),A.Q6J("ngSwitchCase","onChainFeeEstimates")}}function yl(i,d){if(1&i&&(A.TgZ(0,"mat-grid-list",2),A.YNc(1,Bi,18,15,"mat-grid-tile",3),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngForOf",t.nodeCardsMerchant)}}let xl=(()=>{class i{constructor(t,a,D){this.logger=t,this.commonService=a,this.store=D,this.faBolt=h.BDt,this.faServer=h.xf3,this.faNetworkWired=h.kXW,this.faLink=h.nNP,this.selNode={},this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=r.cu,this.userPersonaEnum=r.ol,this.errorMessages=["","","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFees=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.cu.XS?(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:6,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:6,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:6,rows:1},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:4}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:4}]):(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:2,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:2,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:2,rows:3},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:4}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:4},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:4},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:4}])}ngOnInit(){this.store.select(w.Hz).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusNodeInfo.status===r.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=t.nodeSettings,this.information=t.information,this.logger.info(t)}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[1]),(0,f.M)(this.store.select(w.Wj))).subscribe(([t,a])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusLRBal=t.apiCallStatus,this.apiCallStatusChannels=a.apiCallStatus,this.apiCallStatusLRBal.status===r.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===r.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.channelsStatus.active.capacity=a.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=a.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=a.localRemoteBalance.inactiveBalance||0}),this.store.select(w.JG).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===r.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(w.Bo).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusFHistory=t.apiCallStatus,this.apiCallStatusFHistory.status===r.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),t.forwardingHistory&&t.forwardingHistory.listForwards&&t.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=t.forwardingHistory.listForwards.length)}),this.store.select(w.zm).pipe((0,g.R)(this.unSubs[4])).subscribe(t=>{this.errorMessages[5]="",this.apiCallStatusPerKB=t.apiCallStatus,this.apiCallStatusPerKB.status===r.Bn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=t.feeRatesPerKB}),this.store.select(w.hx).pipe((0,g.R)(this.unSubs[5])).subscribe(t=>{this.errorMessages[6]="",this.apiCallStatusPerKW=t.apiCallStatus,this.apiCallStatusPerKW.status===r.Bn.ERROR&&(this.errorMessages[6]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=t.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-network-info"]],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","6","rowHeight","100px",4,"ngIf"],["cols","6","rowHeight","100px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-2"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","feeRateStyle","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],[1,"h-100",3,"feeRates","feeRateStyle","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,En,2,1,"mat-grid-list",1),A.YNc(2,yl,2,1,"mat-grid-list",1),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",a.selNode.userPersona===a.userPersonaEnum.OPERATOR),A.xp6(1),A.Q6J("ngIf",a.selNode.userPersona===a.userPersonaEnum.MERCHANT))},directives:[n.xw,n.Wh,gt.O5,Q.Il,gt.sg,Q.DX,n.yH,C.BN,M.a8,M.dn,gt.mk,I.oO,u.pW,gt.RF,gt.n9,O,K,q,dl,Me],styles:[""]}),i})();function Fl(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",8),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().activeLink=k.link}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit,a=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",a.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Sr=(()=>{class i{constructor(t){this.router=t,this.faUserCheck=h.hkK,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new l.x,new l.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(a=>a instanceof ie.Av)).subscribe({next:a=>{const D=this.links.find(k=>a.urlAfterRedirects.includes(k.link));this.activeLink=D?D.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-sign-verify-message"]],decls:11,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Sign/Verify Message"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),A.YNc(8,Fl,2,3,"div",6),A.qZA(),A.TgZ(9,"div",7),A._UZ(10,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faUserCheck),A.xp6(7),A.Q6J("ngForOf",a.links))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,st.BU,gt.sg,st.Nj,ie.rH,n.yH,ie.lC],styles:[""]}),i})();var Yl=Pt(9122),Nr=Pt(4947);function Tl(i,d){if(1&i&&(A.TgZ(0,"mat-option",7),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t),A.xp6(1),A.hij(" ",t.addressTp," ")}}let Sl=(()=>{class i{constructor(t,a){this.store=t,this.clnEffects=a,this.addressTypes=r._t,this.selectedAddressType=r._t[0],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,L._E)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,ft.q)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,qA.qR)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:Yl.n}}}))},0)})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(B.yh),A.Y36(Nr.J))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-receive"]],decls:8,vars:2,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","space-between end","fxLayoutAlign.gt-sm","start end"],["fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["placeholder","Address Type","name","address_type","tabindex","1",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],[1,"mt-2"],["mat-flat-button","","color","primary","tabindex","2",1,"top-minus-15px",3,"click"],[3,"value"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-select",3),A.NdJ("ngModelChange",function(k){return a.selectedAddressType=k}),A.YNc(4,Tl,2,2,"mat-option",4),A.qZA()(),A.TgZ(5,"div",5)(6,"button",6),A.NdJ("click",function(){return a.onGenerateAddress()}),A._uU(7,"Generate Address"),A.qZA()()()()),2&t&&(A.xp6(3),A.Q6J("ngModel",a.selectedAddressType),A.xp6(1),A.Q6J("ngForOf",a.addressTypes))},directives:[n.xw,n.Wh,X.KE,n.yH,eA.gD,x.JJ,x.On,gt.sg,rt.ey,Y.lW],styles:[""]}),i})(),Ce=(()=>{class i{constructor(t,a){this.store=t,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new l.x,new l.x]}ngOnInit(){this.activatedRoute.data.pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,qA.qR)({payload:{data:{sweepAll:this.sweepAll,component:Da}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(B.yh),A.Y36(ie.gz))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return a.openSendFundsModal()}),A._uU(3),A.qZA()()()),2&t&&(A.xp6(3),A.Oqu(a.sweepAll?"Sweep All":"Send Funds"))},directives:[n.xw,n.yH,n.Wh,Y.lW],styles:[""]}),i})();var Pa=Pt(8675),za=Pt(4004),Ga=Pt(1079),ea=Pt(9843);const Nl=["form"];function Ul(i,d){if(1&i&&(A.TgZ(0,"mat-option",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(t.alias?t.alias:t.id?t.id:"")}}function bl(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Peer alias is required."),A.qZA())}function Ha(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Peer not found in the list."),A.qZA())}function Ur(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"input",39),A.NdJ("change",function(){return A.CHM(t),A.oxw().onSelectedPeerChanged()}),A.qZA(),A.TgZ(2,"mat-autocomplete",40,41),A.NdJ("optionSelected",function(){return A.CHM(t),A.oxw().onSelectedPeerChanged()}),A.YNc(4,Ul,2,2,"mat-option",26),A.ALo(5,"async"),A.qZA(),A.YNc(6,bl,2,0,"mat-error",17),A.YNc(7,Ha,2,0,"mat-error",17),A.qZA()}if(2&i){const t=A.MAs(3),a=A.oxw();A.xp6(1),A.Q6J("formControl",a.selectedPeer)("matAutocomplete",t),A.xp6(1),A.Q6J("displayWith",a.displayFn),A.xp6(2),A.Q6J("ngForOf",A.lcZ(5,6,a.filteredPeers)),A.xp6(2),A.Q6J("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.required),A.xp6(1),A.Q6J("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.notfound)}}function Oa(i,d){1&i&&A.GkF(0)}function Rl(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function Ll(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function Pl(i,d){if(1&i&&(A.TgZ(0,"mat-option",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function zl(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function Gl(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",43)(1,"input",44,45),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().customFeeRate=D}),A.qZA(),A.YNc(3,zl,2,0,"mat-error",17),A.qZA()}if(2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngModel",t.customFeeRate)("step",.1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function Hl(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function Ol(i,d){if(1&i&&(A.TgZ(0,"mat-option",42),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t),A.xp6(1),A.hij("",A.lcZ(2,2,t.value)," Sats")}}function br(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",22)(1,"mat-form-field",46)(2,"mat-select",47),A.NdJ("selectionChange",function(D){return A.CHM(t),A.oxw().onUTXOSelectionChange(D)})("valueChange",function(D){return A.CHM(t),A.oxw().selUTXOs=D}),A.TgZ(3,"mat-select-trigger"),A._uU(4),A.ALo(5,"number"),A.qZA(),A.YNc(6,Ol,3,4,"mat-option",26),A.qZA()(),A.TgZ(7,"div",28)(8,"mat-slide-toggle",48),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().flgUseAllBalance=D})("change",function(){return A.CHM(t),A.oxw().onUTXOAllBalanceChange()}),A._uU(9," Use selected UTXOs balance "),A.qZA(),A.TgZ(10,"mat-icon",49),A._uU(11,"info_outline"),A.qZA()()()}if(2&i){const t=A.oxw();A.xp6(2),A.Q6J("value",t.selUTXOs),A.xp6(2),A.AsE("",A.lcZ(5,6,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.xp6(2),A.Q6J("ngForOf",t.utxos),A.xp6(2),A.Q6J("ngModel",t.flgUseAllBalance)("disabled",t.selUTXOs.length<1)}}function Jl(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.channelConnectionError)}}function na(i,d){if(1&i&&(A.TgZ(0,"div",50),A._UZ(1,"fa-icon",51),A.YNc(2,Jl,2,1,"span",17),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.channelConnectionError)}}function Ja(i,d){if(1&i&&(A.TgZ(0,"mat-expansion-panel",53)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A._uU(4,"Peer: \xa0"),A.qZA(),A.TgZ(5,"strong",54),A._uU(6),A.qZA()()(),A.TgZ(7,"div",9)(8,"div",0)(9,"div",1)(10,"h4",55),A._uU(11,"Pubkey"),A.qZA(),A.TgZ(12,"span",56),A._uU(13),A.qZA()()(),A._UZ(14,"mat-divider",57),A.TgZ(15,"div",0)(16,"div",58)(17,"h4",55),A._uU(18,"Address"),A.qZA(),A.TgZ(19,"span",59),A._uU(20),A.qZA()(),A.TgZ(21,"div",58)(22,"h4",55),A._uU(23,"Connected"),A.qZA(),A.TgZ(24,"span",59),A._uU(25),A.qZA()()()()()),2&i){const t=A.oxw(2);A.xp6(6),A.Oqu((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.id)),A.xp6(7),A.Oqu(t.peer.id),A.xp6(7),A.Oqu(null==t.peer?null:t.peer.netaddr),A.xp6(5),A.Oqu(t.peer.connected?"True":"False")}}function kl(i,d){if(1&i&&A.YNc(0,Ja,26,4,"mat-expansion-panel",52),2&i){const t=A.oxw();A.Q6J("ngIf",t.peer)}}const qi=function(i,d){return{"mr-6":i,"mr-2":d}};let Bn=(()=>{class i{constructor(t,a,D,k,nt,wt){this.dialogRef=t,this.data=a,this.store=D,this.actions=k,this.decimalPipe=nt,this.commonService=wt,this.selectedPeer=new x.NI,this.faExclamationTriangle=h.eHv,this.isCompatibleVersion=!1,this.selNode={},this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=0,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.fundingAmount=null,this.selectedPubkey="",this.isPrivate=!1,this.feeRateTypes=r.vn,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.isCompatibleVersion=this.data.message.isCompatibleVersion,this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.utxos=this.data.message.utxos,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.isCompatibleVersion=!1,this.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(D=>{this.selNode=D,this.isPrivate=!!(null==D?void 0:D.unannouncedChannels)}),this.actions.pipe((0,g.R)(this.unSubs[1]),(0,ot.h)(D=>D.type===r.AB.UPDATE_API_CALL_STATUS_CLN||D.type===r.AB.FETCH_CHANNELS_CLN)).subscribe(D=>{D.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&D.payload.status===r.Bn.ERROR&&"SaveNewChannel"===D.payload.action&&(this.channelConnectionError=D.payload.message),D.type===r.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let t="",a="";this.sortedPeers=this.peers.sort((D,k)=>(t=D.alias?D.alias.toLowerCase():D.id?D.id.toLowerCase():"",a=k.alias?k.alias.toLowerCase():D.id?D.id.toLowerCase():"",ta?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.R)(this.unSubs[2]),(0,Pa.O)(""),(0,za.U)(D=>"string"==typeof D?D:D.alias?D.alias:D.id),(0,za.U)(D=>D?this.filterPeers(D):this.sortedPeers.slice()))}filterPeers(t){var a;return null===(a=this.sortedPeers)||void 0===a?void 0:a.filter(D=>{var k;return 0===(null===(k=D.alias)||void 0===k?void 0:k.toLowerCase().indexOf(t?t.toLowerCase():""))})}displayFn(t){return t&&t.alias?t.alias:t&&t.id?t.id:""}onSelectedPeerChanged(){var t;if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const a=null===(t=this.peers)||void 0===t?void 0:t.filter(D=>{var k,nt;return(null===(k=D.alias)||void 0===k?void 0:k.length)===this.selectedPeer.value.length&&0===(null===(nt=D.alias)||void 0===nt?void 0:nt.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""))});1===a.length&&a[0].id&&(this.selectedPubkey=a[0].id)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){var t;this.flgMinConf=!1,this.selFeeRate="",this.minConfValue=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!(null===(t=this.selNode)||void 0===t?void 0:t.unannouncedChannels),this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(t){var a;t&&(this.flgMinConf||this.selFeeRate||this.selUTXOs.length&&0!==this.selUTXOs.length)?(this.advancedTitle="Advanced Options",this.flgMinConf&&(this.advancedTitle=this.advancedTitle+" | Min Confirmation Blocks: "+this.minConfValue),this.selFeeRate&&(this.advancedTitle=this.advancedTitle+" | Fee Rate: "+(this.customFeeRate?this.customFeeRate+" (Sats/vByte)":null===(a=this.feeRateTypes.find(D=>D.feeRateId===this.selFeeRate))||void 0===a?void 0:a.feeRateType)),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.advancedTitle=this.advancedTitle+" | Total Selected: "+this.selUTXOs.length+" | Selected UTXOs: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats")):this.advancedTitle="Advanced Options"}onUTXOSelectionChange(t){var a;this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=null===(a=this.selUTXOs)||void 0===a?void 0:a.reduce((D,k)=>D+(k.value||0),0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=0,this.fundingAmount=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.fundingAmount=this.flgUseAllBalance?this.totalSelectedUTXOAmount:null}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.flgMinConf&&!this.minConfValue||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;const t={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,satoshis:this.flgUseAllBalance?"all":this.fundingAmount.toString(),announce:!this.isPrivate,minconf:this.flgMinConf?this.minConfValue:null};t.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(t.utxos=[],this.selUTXOs.forEach(a=>t.utxos.push(a.txid+":"+a.output))),this.store.dispatch((0,L.YX)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(B.yh),A.Y36(H.eX),A.Y36(gt.JJ),A.Y36(c.v))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-open-channel"]],viewQuery:function(t,a){if(1&t&&A.Gf(Nl,7),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first)}},decls:56,vars:34,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["form","ngForm"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","70","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","1","required","","name","amount",3,"ngModel","step","min","max","disabled","ngModelChange"],["amount","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModel","ngModelChange"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","54","fxLayoutAlign","space-between end"],["fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","placeholder","Fee Rate",3,"value","disabled","valueChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","42","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","2","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModel","ngClass","ngModelChange","change"],["fxFlex","98"],["matInput","","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"ngModel","step","min","required","disabled","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["peerDetailsExpansionBlock",""],["type","text","placeholder","Peer Alias","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"ngModel","step","min","required","ngModelChange"],["custFeeRate","ngModel"],["fxFlex","54","fxLayoutAlign","start end"],["tabindex","6","placeholder","Coin Selection","multiple","",3,"value","selectionChange","valueChange"],["tabindex","7","color","primary","name","flgUseAllBalance",3,"ngModel","disabled","ngModelChange","change"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","before",1,"info-icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(t,a){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return a.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8),A.NdJ("submit",function(){return a.onOpenChannel()})("reset",function(){return a.resetData()}),A.TgZ(11,"div",9),A.YNc(12,Ur,8,8,"mat-form-field",10),A.qZA(),A.YNc(13,Oa,1,0,"ng-container",11),A.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"input",14,15),A.NdJ("ngModelChange",function(k){return a.fundingAmount=k}),A.qZA(),A.TgZ(19,"mat-hint"),A._uU(20),A.ALo(21,"number"),A.qZA(),A.TgZ(22,"span",16),A._uU(23," Sats "),A.qZA(),A.YNc(24,Rl,2,0,"mat-error",17),A.YNc(25,Ll,2,1,"mat-error",17),A.qZA(),A.TgZ(26,"div",18)(27,"mat-slide-toggle",19),A.NdJ("ngModelChange",function(k){return a.isPrivate=k}),A._uU(28,"Private Channel"),A.qZA()()(),A.TgZ(29,"mat-expansion-panel",20),A.NdJ("closed",function(){return a.onAdvancedPanelToggle(!0)})("opened",function(){return a.onAdvancedPanelToggle(!1)}),A.TgZ(30,"mat-expansion-panel-header")(31,"mat-panel-title")(32,"span"),A._uU(33),A.qZA()()(),A.TgZ(34,"div",21)(35,"div",22)(36,"div",23)(37,"mat-form-field",24)(38,"mat-select",25),A.NdJ("valueChange",function(k){return a.selFeeRate=k})("selectionChange",function(){return a.customFeeRate=null}),A.YNc(39,Pl,2,2,"mat-option",26),A.qZA()(),A.YNc(40,Gl,4,5,"mat-form-field",27),A.qZA(),A.TgZ(41,"div",28)(42,"mat-checkbox",29),A.NdJ("ngModelChange",function(k){return a.flgMinConf=k})("change",function(){return a.flgMinConf?a.selFeeRate=null:a.minConfValue=null}),A.qZA(),A.TgZ(43,"mat-form-field",30)(44,"input",31,32),A.NdJ("ngModelChange",function(k){return a.minConfValue=k}),A.qZA(),A.YNc(46,Hl,2,0,"mat-error",17),A.qZA()()(),A.YNc(47,br,12,8,"div",33),A.qZA()()(),A.YNc(48,na,3,2,"div",34),A.TgZ(49,"div",35)(50,"button",36),A._uU(51,"Clear Fields"),A.qZA(),A.TgZ(52,"button",37),A._uU(53,"Open Channel"),A.qZA()()()()()(),A.YNc(54,kl,1,1,"ng-template",null,38,A.W1O)),2&t){const D=A.MAs(18),k=A.MAs(55);A.xp6(5),A.Oqu(a.alertTitle),A.xp6(7),A.Q6J("ngIf",!a.peer&&a.peers&&a.peers.length>0),A.xp6(1),A.Q6J("ngTemplateOutlet",k),A.xp6(4),A.Q6J("ngModel",a.fundingAmount)("step",1e3)("min",1)("max",a.totalBalance)("disabled",a.flgUseAllBalance),A.xp6(3),A.AsE("Remaining Bal: ",A.lcZ(21,29,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),"",a.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.xp6(4),A.Q6J("ngIf",(null==D.errors?null:D.errors.required)||!a.fundingAmount),A.xp6(1),A.Q6J("ngIf",null==D.errors?null:D.errors.max),A.xp6(2),A.Q6J("ngModel",a.isPrivate),A.xp6(6),A.Oqu(a.advancedTitle),A.xp6(4),A.Q6J("fxFlex","customperkb"!==a.selFeeRate||a.flgMinConf?"100":"48"),A.xp6(1),A.Q6J("value",a.selFeeRate)("disabled",a.flgMinConf),A.xp6(1),A.Q6J("ngForOf",a.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===a.selFeeRate&&!a.flgMinConf),A.xp6(2),A.Q6J("ngModel",a.flgMinConf)("ngClass",A.WLB(31,qi,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM,a.screenSize===a.screenSizeEnum.MD||a.screenSize===a.screenSizeEnum.LG||a.screenSize===a.screenSizeEnum.XL)),A.xp6(2),A.Q6J("ngModel",a.minConfValue)("step",1)("min",0)("required",a.flgMinConf)("disabled",!a.flgMinConf),A.xp6(2),A.Q6J("ngIf",a.flgMinConf&&!a.minConfValue),A.xp6(1),A.Q6J("ngIf",a.isCompatibleVersion),A.xp6(1),A.Q6J("ngIf",""!==a.channelConnectionError)}},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,M.dn,x._Y,x.JL,x.F,gt.O5,X.KE,wA.Nt,x.Fj,Ga.ZL,x.Q7,x.JJ,x.oH,Ga.XC,gt.sg,rt.ey,X.TO,gt.tP,x.wV,x.qQ,x.Fd,NA.q,ea.F,x.On,X.bx,X.R9,yt.Rr,Xn.ib,Xn.yz,Xn.yK,eA.gD,Gt.oG,gt.mk,I.oO,eA.$L,p.Hw,cA.gM,C.BN,EA.h,pA.d],pipes:[gt.Ov,gt.JJ],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),i})();function Rr(i,d){if(1&i&&(A.TgZ(0,"span",7),A._uU(1,"Open"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.openChannels)}}function ka(i,d){if(1&i&&(A.TgZ(0,"span",7),A._uU(1,"Pending/Inactive"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.pendingChannels)}}let jl=(()=>{class i{constructor(t,a,D,k){this.logger=t,this.store=a,this.commonService=D,this.router=k,this.openChannels=0,this.pendingChannels=0,this.selNode={},this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"}],this.activeLink=0,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(t=>t instanceof ie.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(w.OL).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.selNode=t.nodeSettings,this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(w.Wi).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(w.T4).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{var a;this.utxos=this.commonService.sortAscByKey(null===(a=t.utxos)||void 0===a?void 0:a.filter(D=>"confirmed"===D.status),"value")}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[4])).subscribe(t=>{this.openChannels=t.activeChannels.length||0,this.pendingChannels=t.pendingChannels.length+t.inactiveChannels.length||0,this.logger.info(t)})}onOpenChannel(){const t={peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos,isCompatibleVersion:this.commonService.isVersionCompatible(this.information.version,"0.9.0")&&this.commonService.isVersionCompatible(this.information.api_version,"0.4.0")};this.store.dispatch((0,qA.qR)({payload:{data:{alertTitle:"Open Channel",message:t,component:Bn}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(c.v),A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channels-tables"]],decls:12,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"my-2","bordered-box"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return a.onOpenChannel()}),A._uU(3,"Open Channel"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-tab-group",4),A.NdJ("selectedIndexChange",function(k){return a.activeLink=k})("selectedTabChange",function(k){return a.onSelectedTabChange(k)}),A.TgZ(6,"mat-tab"),A.YNc(7,Rr,2,1,"ng-template",5),A.qZA(),A.TgZ(8,"mat-tab"),A.YNc(9,ka,2,1,"ng-template",5),A.qZA()(),A.TgZ(10,"div",6),A._UZ(11,"router-outlet"),A.qZA()()()),2&t&&(A.xp6(5),A.Q6J("selectedIndex",a.activeLink))},directives:[n.xw,n.yH,n.Wh,Y.lW,st.SP,st.uX,st.uD,Wr.k,ie.lC],styles:[""]}),i})();function Wl(i,d){if(1&i&&(A.TgZ(0,"div")(1,"div",9)(2,"div",1)(3,"h4",11),A._uU(4,"Funding Transaction ID"),A.qZA(),A.TgZ(5,"span",12),A._uU(6),A.qZA()()(),A._UZ(7,"mat-divider",13),A.qZA()),2&i){const t=A.oxw();A.xp6(6),A.Oqu(t.channel.funding_txid),A.xp6(1),A.Q6J("inset",!0)}}function Vl(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Show Advanced"),A.qZA())}function Kl(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Hide Advanced"),A.qZA())}function Zl(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",23),A.NdJ("copied",function(D){return A.CHM(t),A.oxw().onCopyChanID(D)}),A._uU(1,"Copy Short Channel ID"),A.qZA()}if(2&i){const t=A.oxw();A.Q6J("payload",t.channel.short_channel_id)}}function Xl(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"button",24),A.NdJ("click",function(){return A.CHM(t),A.oxw().onClose()}),A._uU(1,"OK"),A.qZA()}}const ql=function(i){return{"xs-scroll-y":i}},_l=function(i,d){return{"mt-2":i,"mt-1":d}};let ia=(()=>{class i{constructor(t,a,D,k,nt){this.dialogRef=t,this.data=a,this.logger=D,this.commonService=k,this.snackBar=nt,this.faReceipt=h.dLy,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=r.cu}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(t){this.snackBar.open("Short channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(e.mQ),A.Y36(c.v),A.Y36(Zn.ux))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-information"]],decls:94,vars:40,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(t,a){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3),A._UZ(4,"fa-icon",4),A.TgZ(5,"span",5),A._uU(6,"Channel Information"),A.qZA()(),A.TgZ(7,"button",6),A.NdJ("click",function(){return a.onClose()}),A._uU(8,"X"),A.qZA()(),A.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),A._uU(14,"Short Channel ID"),A.qZA(),A.TgZ(15,"span",12),A._uU(16),A.qZA()(),A.TgZ(17,"div",10)(18,"h4",11),A._uU(19,"Peer Alias"),A.qZA(),A.TgZ(20,"span",12),A._uU(21),A.qZA()()(),A._UZ(22,"mat-divider",13),A.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),A._uU(26,"Channel ID"),A.qZA(),A.TgZ(27,"span",12),A._uU(28),A.qZA()()(),A._UZ(29,"mat-divider",13),A.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),A._uU(33,"Peer Public Key"),A.qZA(),A.TgZ(34,"span",12),A._uU(35),A.qZA()()(),A._UZ(36,"mat-divider",13),A.TgZ(37,"div",9)(38,"div",14)(39,"h4",11),A._uU(40,"mSatoshi to Us"),A.qZA(),A.TgZ(41,"span",15),A._uU(42),A.ALo(43,"number"),A.qZA()(),A.TgZ(44,"div",14)(45,"h4",11),A._uU(46,"Spendable (mSats)"),A.qZA(),A.TgZ(47,"span",15),A._uU(48),A.ALo(49,"number"),A.qZA()(),A.TgZ(50,"div",14)(51,"h4",11),A._uU(52,"Total (mSats)"),A.qZA(),A.TgZ(53,"span",15),A._uU(54),A.ALo(55,"number"),A.qZA()(),A.TgZ(56,"div",14)(57,"h4",11),A._uU(58,"State"),A.qZA(),A.TgZ(59,"span",15),A._uU(60),A.qZA()()(),A._UZ(61,"mat-divider",13),A.TgZ(62,"div",9)(63,"div",14)(64,"h4",11),A._uU(65,"Our Reserve (Sats)"),A.qZA(),A.TgZ(66,"span",15),A._uU(67),A.ALo(68,"number"),A.qZA()(),A.TgZ(69,"div",14)(70,"h4",11),A._uU(71,"Their Reserve (Sats)"),A.qZA(),A.TgZ(72,"span",15),A._uU(73),A.ALo(74,"number"),A.qZA()(),A.TgZ(75,"div",14)(76,"h4",11),A._uU(77,"Connected"),A.qZA(),A.TgZ(78,"span",15),A._uU(79),A.qZA()(),A.TgZ(80,"div",14)(81,"h4",11),A._uU(82,"Private"),A.qZA(),A.TgZ(83,"span",15),A._uU(84),A.qZA()()(),A._UZ(85,"mat-divider",13),A.YNc(86,Wl,8,2,"div",16),A.TgZ(87,"div",17)(88,"button",18),A.NdJ("click",function(){return a.onShowAdvanced()}),A.YNc(89,Vl,2,0,"p",19),A.YNc(90,Kl,2,0,"ng-template",null,20,A.W1O),A.qZA(),A.YNc(92,Zl,2,1,"button",21),A.YNc(93,Xl,2,0,"button",22),A.qZA()()()()()),2&t){const D=A.MAs(91);A.xp6(4),A.Q6J("icon",a.faReceipt),A.xp6(5),A.Q6J("ngClass",A.VKq(35,ql,a.screenSize===a.screenSizeEnum.XS)),A.xp6(7),A.Oqu(a.channel.short_channel_id),A.xp6(5),A.Oqu(a.channel.alias),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(a.channel.channel_id),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(a.channel.id),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(A.lcZ(43,25,a.channel.msatoshi_to_us)),A.xp6(6),A.Oqu(A.lcZ(49,27,a.channel.spendable_msatoshi)),A.xp6(6),A.Oqu(A.lcZ(55,29,a.channel.msatoshi_total)),A.xp6(6),A.Oqu(a.channel.state),A.xp6(1),A.Q6J("inset",!0),A.xp6(6),A.Oqu(A.lcZ(68,31,a.channel.our_channel_reserve_satoshis)),A.xp6(6),A.Oqu(A.lcZ(74,33,a.channel.their_channel_reserve_satoshis)),A.xp6(6),A.Oqu(a.channel.connected?"Yes":"No"),A.xp6(5),A.Oqu(a.channel.private?"Yes":"No"),A.xp6(1),A.Q6J("inset",!0),A.xp6(1),A.Q6J("ngIf",a.showAdvanced),A.xp6(1),A.Q6J("ngClass",A.WLB(37,_l,!a.showAdvanced,a.showAdvanced)),A.xp6(2),A.Q6J("ngIf",!a.showAdvanced)("ngIfElse",D),A.xp6(3),A.Q6J("ngIf",a.showCopy),A.xp6(1),A.Q6J("ngIf",!a.showCopy)}},directives:[n.xw,n.Wh,n.yH,M.dk,C.BN,Y.lW,M.dn,gt.mk,I.oO,pA.d,gt.O5,EA.h,Vi.y],pipes:[gt.JJ],styles:[""]}),i})();function $l(i,d){if(1&i&&(A.TgZ(0,"mat-option",39),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function A0(i,d){1&i&&A._UZ(0,"mat-progress-bar",40)}function t0(i,d){1&i&&A._UZ(0,"th",41)}function ui(i,d){if(1&i&&(A.TgZ(0,"span",45),A._UZ(1,"fa-icon",46),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faEyeSlash)}}function e0(i,d){if(1&i&&(A.TgZ(0,"span",47),A._UZ(1,"fa-icon",46),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faEye)}}function Lr(i,d){if(1&i&&(A.TgZ(0,"td",42),A.YNc(1,ui,2,1,"span",43),A.YNc(2,e0,2,1,"span",44),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf",t.private),A.xp6(1),A.Q6J("ngIf",!t.private)}}function n0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Short Channel ID"),A.qZA())}const _i=function(i){return{width:i}};function i0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.short_channel_id)}}function ja(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Alias"),A.qZA())}function r0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function a0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"ID"),A.qZA())}function o0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function s0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Channel ID"),A.qZA())}function Wa(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.channel_id)}}function l0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Funding Transaction ID"),A.qZA())}function Va(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.funding_txid)}}function Ka(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Connected"),A.qZA())}function Za(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null!=t&&t.connected?"Connected":"Disconnected")}}function c0(i,d){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Local Reserve (Sats)"),A.qZA())}function g0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,null==t?null:t.our_channel_reserve_satoshis,"1.0-0")," ")}}function B0(i,d){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Remote Reserve (Sats)"),A.qZA())}function u0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,null==t?null:t.their_channel_reserve_satoshis,"1.0-0")," ")}}function f0(i,d){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Total (Sats)"),A.qZA())}function Xa(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_total)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function h0(i,d){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Spendable (Sats)"),A.qZA())}function E0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.spendable_msatoshi)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function w0(i,d){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Local Balance (Sats)"),A.qZA())}function C0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_to_us)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function Q0(i,d){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Remote Balance (Sats)"),A.qZA())}function d0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_to_them)/1e3,(null==t?null:t.msatoshi_to_them)<1e3?"1.0-4":"1.0-0")," ")}}function qa(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Balance Score"),A.qZA())}function _a(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",53)(2,"mat-hint",54),A._uU(3),A.ALo(4,"number"),A.qZA()(),A._UZ(5,"mat-progress-bar",55),A.qZA()),2&i){const t=d.$implicit;A.xp6(3),A.Oqu(A.lcZ(4,2,t.balancedness||0)),A.xp6(2),A.s9C("value",t.msatoshi_to_us&&t.msatoshi_to_us>0?+t.msatoshi_to_us/(+t.msatoshi_to_us+ +t.msatoshi_to_them)*100:0)}}function p0(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",56)(1,"div",57)(2,"mat-select",58),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",59),A.NdJ("click",function(){return A.CHM(t),A.oxw().onChannelUpdate("all")}),A._uU(5,"Update Fee Policy"),A.qZA(),A.TgZ(6,"mat-option",59),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(7,"Download CSV"),A.qZA()()()()}}function M0(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",60)(1,"div",57)(2,"mat-select",61),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",59),A.NdJ("click",function(D){const nt=A.CHM(t).$implicit;return A.oxw().onChannelClick(nt,D)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",59),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onViewRemotePolicy(k)}),A._uU(7,"View Remote Fee"),A.qZA(),A.TgZ(8,"mat-option",59),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onChannelUpdate(k)}),A._uU(9,"Update Fee Policy"),A.qZA(),A.TgZ(10,"mat-option",59),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onChannelClose(k)}),A._uU(11,"Close Channel"),A.qZA()()()()}}function m0(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No peers connected. Add a peer in order to open a channel."),A.qZA())}function on(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No channel available."),A.qZA())}function Fi(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting channels..."),A.qZA())}function I0(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function $a(i,d){if(1&i&&(A.TgZ(0,"td",62),A.YNc(1,m0,2,0,"p",63),A.YNc(2,on,2,0,"p",63),A.YNc(3,Fi,2,0,"p",63),A.YNc(4,I0,2,1,"p",63),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const v0=function(i){return{"display-none":i}};function D0(i,d){if(1&i&&A._UZ(0,"tr",64),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,v0,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Ao(i,d){1&i&&A._UZ(0,"tr",65)}function y0(i,d){1&i&&A._UZ(0,"tr",66)}const x0=function(){return["all"]},to=function(i){return{"error-border":i}},F0=function(){return["no_peer"]};let Yi=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt){var me,cn,oe,Xe,qn,Un,lr,cr;this.logger=t,this.store=a,this.rtlEffects=D,this.clnEffects=k,this.commonService=nt,this.router=wt,this.camelCaseWithReplace=Lt,this.faEye=h.Mdf,this.faEyeSlash=h.Aq,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:r.IV,sortBy:"alias",sortOrder:r.Pi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new TA.by([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.vn,this.selFilter="",this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize(),this.selFilter=(null===(Xe=null===(oe=null===(cn=null===(me=this.router)||void 0===me?void 0:me.getCurrentNavigation())||void 0===cn?void 0:cn.extras)||void 0===oe?void 0:oe.state)||void 0===Xe?void 0:Xe.filter)?null===(cr=null===(lr=null===(Un=null===(qn=this.router)||void 0===qn?void 0:qn.getCurrentNavigation())||void 0===Un?void 0:Un.extras)||void 0===lr?void 0:lr.state)||void 0===cr?void 0:cr.filter:""}ngOnInit(){this.store.select(w.jK).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.activeChannels,this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,L.$A)({payload:{uiMessage:r.m6.GET_REMOTE_POLICY,shortChannelID:t.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,ft.q)(1)).subscribe(a=>{if(0===a.length)return!1;let D={};D=a[0].source!==this.information.id?a[0]:a[1];const k=[[{key:"base_fee_millisatoshi",value:D.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:r.Gi.NUMBER},{key:"fee_per_millionth",value:D.fee_per_millionth,title:"Fee/Millionth",width:33,type:r.Gi.NUMBER},{key:"delay",value:D.delay,title:"Delay",width:33,type:r.Gi.NUMBER}]],nt="Remote policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id);setTimeout(()=>{this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:nt,message:k}}}))},0)})}onChannelUpdate(t){"all"!==t&&"ONCHAIN"===t.state||("all"===t?(this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:"number",inputValue:1e3,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:"number",inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[3])).subscribe(D=>{D&&this.store.dispatch((0,L.pW)({payload:{baseFeeMsat:D[0].inputValue,feeRate:D[1].inputValue,channelId:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0},this.store.dispatch((0,L.$A)({payload:{uiMessage:r.m6.GET_CHAN_POLICY,shortChannelID:t.short_channel_id,showError:!1}})),this.clnEffects.setLookupCL.pipe((0,ft.q)(1)).subscribe(a=>{this.myChanPolicy=a.length>0&&a[0].source===this.information.id?{fee_base_msat:a[0].base_fee_millisatoshi,fee_rate_milli_msat:a[0].fee_per_millionth}:a.length>1&&a[1].source===this.information.id?{fee_base_msat:a[1].base_fee_millisatoshi,fee_rate_milli_msat:a[1].fee_per_millionth}:{fee_base_msat:0,fee_rate_milli_msat:0},this.logger.info(this.myChanPolicy);const D="Update fee policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),k=[];setTimeout(()=>{this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:k,titleMessage:D,flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:"number",inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:"number",inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:48,hintFunction:this.percentHintFunction}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[4])).subscribe(a=>{a&&this.store.dispatch((0,L.pW)({payload:{baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,channelId:t.channel_id}}))})),this.applyFilter())}percentHintFunction(t){return(t/1e4).toString()+"%"}onChannelClose(t){this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[5])).subscribe(a=>{a&&this.store.dispatch((0,L.BL)({payload:{id:t.id||"",channelId:t.channel_id||"",force:!1}}))})}onChannelClick(t,a){this.store.dispatch((0,qA.qR)({payload:{data:{channel:t,showCopy:!0,component:ia}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{var D;let k="";switch(this.selFilterBy){case"all":k=(t.connected?"connected":"disconnected")+(t.channel_id?t.channel_id.toLowerCase():"")+(t.short_channel_id?t.short_channel_id.toLowerCase():"")+(t.id?t.id.toLowerCase():"")+(t.alias?t.alias.toLowerCase():"")+(t.private?"private":"public")+(t.state?t.state.toLowerCase():"")+(t.funding_txid?t.funding_txid.toLowerCase():"")+(t.msatoshi_to_us?t.msatoshi_to_us:"")+(t.msatoshi_total?t.msatoshi_total:"")+(t.their_channel_reserve_satoshis?t.their_channel_reserve_satoshis:"")+(t.our_channel_reserve_satoshis?t.our_channel_reserve_satoshis:"")+(t.spendable_msatoshi?t.spendable_msatoshi:"");break;case"private":k=(null==t?void 0:t.private)?"private":"public";break;case"connected":k=(null==t?void 0:t.connected)?"connected":"disconnected";break;case"msatoshi_total":case"spendable_msatoshi":case"msatoshi_to_us":case"msatoshi_to_them":k=(null===(D=+(t[this.selFilterBy]||0)/1e3)||void 0===D?void 0:D.toString())||"";break;default:k=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===k.indexOf(a):k.includes(a)}}loadChannelsTable(t){var a;this.channels=new TA.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,null===(a=this.channels.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(Ut.V),A.Y36(Nr.J),A.Y36(c.v),A.Y36(ie.F0),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Channels")}])],decls:64,vars:16,consts:[["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","alias"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"div",2),A.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(6,$l,2,2,"mat-option",6),A.qZA()(),A.TgZ(7,"mat-form-field",4)(8,"input",7),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.YNc(9,A0,1,0,"mat-progress-bar",8),A.TgZ(10,"div",9)(11,"table",10,11),A.ynx(13,12),A.YNc(14,t0,1,0,"th",13),A.YNc(15,Lr,3,2,"td",14),A.BQk(),A.ynx(16,15),A.YNc(17,n0,2,0,"th",16),A.YNc(18,i0,4,4,"td",14),A.BQk(),A.ynx(19,17),A.YNc(20,ja,2,0,"th",16),A.YNc(21,r0,4,4,"td",14),A.BQk(),A.ynx(22,18),A.YNc(23,a0,2,0,"th",16),A.YNc(24,o0,4,4,"td",14),A.BQk(),A.ynx(25,19),A.YNc(26,s0,2,0,"th",16),A.YNc(27,Wa,4,4,"td",14),A.BQk(),A.ynx(28,20),A.YNc(29,l0,2,0,"th",16),A.YNc(30,Va,4,4,"td",14),A.BQk(),A.ynx(31,21),A.YNc(32,Ka,2,0,"th",16),A.YNc(33,Za,2,1,"td",14),A.BQk(),A.ynx(34,22),A.YNc(35,c0,2,0,"th",23),A.YNc(36,g0,4,4,"td",14),A.BQk(),A.ynx(37,24),A.YNc(38,B0,2,0,"th",23),A.YNc(39,u0,4,4,"td",14),A.BQk(),A.ynx(40,25),A.YNc(41,f0,2,0,"th",23),A.YNc(42,Xa,4,4,"td",14),A.BQk(),A.ynx(43,26),A.YNc(44,h0,2,0,"th",23),A.YNc(45,E0,4,4,"td",14),A.BQk(),A.ynx(46,27),A.YNc(47,w0,2,0,"th",23),A.YNc(48,C0,4,4,"td",14),A.BQk(),A.ynx(49,28),A.YNc(50,Q0,2,0,"th",23),A.YNc(51,d0,4,4,"td",14),A.BQk(),A.ynx(52,29),A.YNc(53,qa,2,0,"th",16),A.YNc(54,_a,6,4,"td",14),A.BQk(),A.ynx(55,30),A.YNc(56,p0,8,0,"th",31),A.YNc(57,M0,12,0,"td",32),A.BQk(),A.ynx(58,33),A.YNc(59,$a,5,4,"td",34),A.BQk(),A.YNc(60,D0,1,3,"tr",35),A.YNc(61,Ao,1,0,"tr",36),A.YNc(62,y0,1,0,"tr",37),A.qZA()(),A._UZ(63,"mat-paginator",38),A.qZA()),2&t&&(A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(12,x0).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(1),A.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),A.xp6(2),A.Q6J("dataSource",a.channels)("ngClass",A.VKq(13,to,""!==a.errorMessage)),A.xp6(49),A.Q6J("matFooterRowDef",A.DdM(15,F0)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.Wh,n.yH,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,gt.O5,u.pW,dA.$V,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,C.BN,gt.PC,I.Zl,X.bx,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.JJ],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}),i})();const Y0=["outputIdx"];function T0(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Output Index required."),A.qZA())}function S0(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Invalid index value."),A.qZA())}function N0(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fees is required."),A.qZA())}function eo(i,d){if(1&i&&(A.TgZ(0,"div",27),A._UZ(1,"fa-icon",13),A.TgZ(2,"span"),A._uU(3),A.qZA()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(2),A.Oqu(t.bumpFeeError)}}let ra=(()=>{class i{constructor(t,a,D,k,nt,wt){this.actions=t,this.dialogRef=a,this.data=D,this.store=k,this.logger=nt,this.snackBar=wt,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=h.kZ_,this.faInfoCircle=h.sqG,this.faExclamationTriangle=h.eHv,this.bumpFeeError="",this.unSubs=[new l.x,new l.x]}set payReq(t){t&&(this.outputIdx=t)}ngOnInit(){this.bumpFeeChannel=this.data.channel}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,L._E)({payload:r._t[0]})),this.actions.pipe((0,ot.h)(t=>t.type===r.AB.SET_NEW_ADDRESS_CLN),(0,ft.q)(1)).subscribe(t=>{this.store.dispatch((0,L.Wi)({payload:{address:t.payload,satoshis:"all",feeRate:(1e3*+(this.fees||0)).toString(),utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,ot.h)(t=>t.type===r.AB.SET_CHANNEL_TRANSACTION_RES_CLN),(0,ft.q)(1)).subscribe(t=>{this.store.dispatch((0,qA.jW)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,ot.h)(t=>t.type===r.AB.UPDATE_API_CALL_STATUS_CLN),(0,g.R)(this.unSubs[0])).subscribe(t=>{t.payload.status===r.Bn.ERROR&&("SetChannelTransaction"===t.payload.action||"GenerateNewAddress"===t.payload.action)&&(this.logger.error(t.payload.message),this.bumpFeeError=t.payload.message)})}onCopyID(t){this.snackBar.open("Transaction ID copied.")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(H.eX),A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(B.yh),A.Y36(e.mQ),A.Y36(Zn.ux))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(t,a){if(1&t&&A.Gf(Y0,5),2&t){let D;A.iGM(D=A.CRH())&&(a.payReq=D.first)}},decls:47,vars:15,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["matSuffix","","rtlClipboard","","matTooltip","Copy transaction ID",1,"ml-1",3,"icon","payload","copied"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],[1,"pl-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","49"],["autoFocus","","matInput","","placeholder","Output Index","type","number","tabindex","1","required","","name","outputIdx",3,"ngModel","step","min","ngModelChange"],["outputIdx","ngModel"],[4,"ngIf"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","fees","required","","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fee","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(t,a){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Bump Fee"),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return a.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"div",8)(11,"p",9),A._uU(12),A.TgZ(13,"fa-icon",10),A.NdJ("copied",function(k){return a.onCopyID(k)}),A.qZA()(),A.TgZ(14,"div",11)(15,"div",12),A._UZ(16,"fa-icon",13),A.TgZ(17,"span",14),A._uU(18,"Bumping fee on pending open channels is an advanced feature, attempt it only if you are familiar with the functionality of Bitcoin transactions. "),A.TgZ(19,"div"),A._uU(20,"Before attempting fee bump ensure the following:"),A.qZA(),A.TgZ(21,"div",15),A._uU(22,"1: Use a Bitcoin block explorer to ensure that channel opening transaction is not confirmed."),A.qZA(),A.TgZ(23,"div",15),A._uU(24,"2: The channel opening transaction must have a sizable change output, which can be spent further. The fee cannot be bumped without the change output."),A.qZA(),A.TgZ(25,"div",15),A._uU(26,"3: Find the index value of the change output via a block explorer."),A.qZA(),A.TgZ(27,"div",15),A._uU(28,"4: Enter the index value of the change output in the form below and the desired fee rate."),A.qZA(),A.TgZ(29,"div",15),A._uU(30,"5: Upon successful fee bump, use your block explorer to track the child transaction in the mempool, which should be linked with the change output transaction."),A.qZA()()(),A.TgZ(31,"div",16)(32,"mat-form-field",17)(33,"input",18,19),A.NdJ("ngModelChange",function(k){return a.outputIndex=k}),A.qZA(),A.YNc(35,T0,2,0,"mat-error",20),A.YNc(36,S0,2,0,"mat-error",20),A.qZA(),A.TgZ(37,"mat-form-field",17)(38,"input",21,22),A.NdJ("ngModelChange",function(k){return a.fees=k}),A.qZA(),A.YNc(40,N0,2,0,"mat-error",20),A.qZA()(),A.YNc(41,eo,4,2,"div",23),A.qZA()(),A.TgZ(42,"div",24)(43,"button",25),A.NdJ("click",function(){return a.resetData()}),A._uU(44,"Clear"),A.qZA(),A.TgZ(45,"button",26),A.NdJ("click",function(){return a.onBumpFee()}),A._uU(46),A.qZA()()()()()()),2&t){const D=A.MAs(34);A.xp6(12),A.hij("Bump fee for transaction id: ",null==a.bumpFeeChannel?null:a.bumpFeeChannel.funding_txid," "),A.xp6(1),A.Q6J("icon",a.faCopy)("payload",null==a.bumpFeeChannel?null:a.bumpFeeChannel.funding_txid),A.xp6(3),A.Q6J("icon",a.faInfoCircle),A.xp6(17),A.Q6J("ngModel",a.outputIndex)("step",1)("min",0),A.xp6(2),A.Q6J("ngIf",null==D.errors?null:D.errors.required),A.xp6(1),A.Q6J("ngIf",null==D.errors?null:D.errors.pendingChannelOutputIndex),A.xp6(2),A.Q6J("ngModel",a.fees)("step",1)("min",0),A.xp6(2),A.Q6J("ngIf",!a.fees),A.xp6(1),A.Q6J("ngIf",""!==a.bumpFeeError),A.xp6(5),A.Oqu(""!==a.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,M.dn,x._Y,x.JL,x.F,C.BN,X.R9,Vi.y,cA.gM,X.KE,wA.Nt,x.wV,x.qQ,x.Fj,NA.q,EA.h,x.Q7,x.JJ,x.On,gt.O5,X.TO],styles:[""]}),i})();function ii(i,d){if(1&i&&(A.TgZ(0,"mat-option",39),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function U0(i,d){1&i&&A._UZ(0,"mat-progress-bar",40)}function b0(i,d){1&i&&A._UZ(0,"th",41)}function R0(i,d){if(1&i&&(A.TgZ(0,"span",45),A._UZ(1,"fa-icon",46),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faEyeSlash)}}function L0(i,d){if(1&i&&(A.TgZ(0,"span",47),A._UZ(1,"fa-icon",46),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("icon",t.faEye)}}function q0(i,d){if(1&i&&(A.TgZ(0,"td",42),A.YNc(1,R0,2,1,"span",43),A.YNc(2,L0,2,1,"span",44),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf",t.private),A.xp6(1),A.Q6J("ngIf",!t.private)}}function P0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Alias"),A.qZA())}const $i=function(i){return{width:i}};function z0(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,$i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function G0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"ID"),A.qZA())}function no(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,$i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function H0(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Channel ID"),A.qZA())}function tA(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,$i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.channel_id)}}function P(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Funding Transaction ID"),A.qZA())}function V(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,$i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.funding_txid)}}function m(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Connected"),A.qZA())}function F(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null!=t&&t.connected?"Connected":"Disconnected")}}function R(i,d){1&i&&(A.TgZ(0,"th",48),A._uU(1,"State"),A.qZA())}function AA(i,d){if(1&i&&(A.TgZ(0,"td",51),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("ngStyle",A.VKq(2,$i,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(1),A.Oqu(a.CLNChannelPendingState[null==t?null:t.state])}}function rA(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Local Reserve (Sats)"),A.qZA())}function aA(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,null==t?null:t.our_channel_reserve_satoshis,"1.0-0")," ")}}function iA(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Remote Reserve (Sats)"),A.qZA())}function SA(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,null==t?null:t.their_channel_reserve_satoshis,"1.0-0")," ")}}function JA(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Total (Sats)"),A.qZA())}function ct(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_total)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function KA(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Spendable (Sats)"),A.qZA())}function Bt(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.spendable_msatoshi)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function pt(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Local Balance (Sats)"),A.qZA())}function Dt(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_to_us)/1e3,(null==t?null:t.msatoshi_to_us)<1e3?"1.0-4":"1.0-0")," ")}}function Ht(i,d){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Remote Balance (Sats)"),A.qZA())}function _t(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.msatoshi_to_them)/1e3,(null==t?null:t.msatoshi_to_them)<1e3?"1.0-4":"1.0-0")," ")}}function qt(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",54)(1,"div",55)(2,"mat-select",56),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",57),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function ae(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",57),A.NdJ("click",function(){A.CHM(t);const D=A.oxw().$implicit;return A.oxw().onChannelClose(D)}),A._uU(1,"Close Channel"),A.qZA()}}function ue(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",57),A.NdJ("click",function(){A.CHM(t);const D=A.oxw().$implicit;return A.oxw().onBumpFee(D)}),A._uU(1,"Bump Fee"),A.qZA()}}function Qe(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",58)(1,"div",55)(2,"mat-select",59),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",57),A.NdJ("click",function(D){const nt=A.CHM(t).$implicit;return A.oxw().onChannelClick(nt,D)}),A._uU(5,"View Info"),A.qZA(),A.YNc(6,ae,2,0,"mat-option",60),A.YNc(7,ue,2,0,"mat-option",60),A.qZA()()()}if(2&i){const t=d.$implicit,a=A.oxw();A.xp6(6),A.Q6J("ngIf",a.isCompatibleVersion&&("CHANNELD_SHUTTING_DOWN"===t.state||"CLOSINGD_SIGEXCHANGE"===t.state||!t.connected&&"CHANNELD_NORMAL"===t.state)),A.xp6(1),A.Q6J("ngIf","CHANNELD_AWAITING_LOCKIN"===t.state)}}function de(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No peers connected. Add a peer in order to open a channel."),A.qZA())}function He(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No pending/inactive channel available."),A.qZA())}function sn(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting pending/inactive channels..."),A.qZA())}function Oe(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function ce(i,d){if(1&i&&(A.TgZ(0,"td",61),A.YNc(1,de,2,0,"p",62),A.YNc(2,He,2,0,"p",62),A.YNc(3,sn,2,0,"p",62),A.YNc(4,Oe,2,1,"p",62),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const ln=function(i){return{"display-none":i}};function Ke(i,d){if(1&i&&A._UZ(0,"tr",63),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,ln,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Je(i,d){1&i&&A._UZ(0,"tr",64)}function Ee(i,d){1&i&&A._UZ(0,"tr",65)}const _e=function(){return["all"]},Ue=function(i){return{"error-border":i}},Fe=function(){return["no_peer"]};let An=(()=>{class i{constructor(t,a,D,k,nt){this.logger=t,this.store=a,this.rtlEffects=D,this.commonService=k,this.camelCaseWithReplace=nt,this.faEye=h.Mdf,this.faEyeSlash=h.Aq,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:r.IV,sortBy:"alias",sortOrder:r.Pi.DESCENDING},this.isCompatibleVersion=!1,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new TA.by([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.vn,this.selFilter="",this.CLNChannelPendingState=r.Zs,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.jK).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.information.api_version&&(this.isCompatibleVersion=this.commonService.isVersionCompatible(this.information.api_version,"0.4.2")),this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.ZW).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...t.pendingChannels,...t.inactiveChannels],this.channelsData=this.channelsData.sort((a,D)=>this.CLNChannelPendingState[a.state||""]>=this.CLNChannelPendingState[D.state||""]?1:-1),this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(t){this.store.dispatch((0,qA.qR)({payload:{data:{channel:t,component:ra}}}))}onChannelClick(t,a){this.store.dispatch((0,qA.qR)({payload:{data:{channel:t,showCopy:!0,component:ia}}}))}onChannelClose(t){this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[3])).subscribe(a=>{a&&this.store.dispatch((0,L.BL)({payload:{id:t.id,channelId:t.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{var D;let k="";switch(this.selFilterBy){case"all":k=(t.connected?"connected":"disconnected")+(t.channel_id?t.channel_id.toLowerCase():"")+(t.short_channel_id?t.short_channel_id.toLowerCase():"")+(t.id?t.id.toLowerCase():"")+(t.alias?t.alias.toLowerCase():"")+(t.private?"private":"public")+(t.state&&this.CLNChannelPendingState[t.state]?this.CLNChannelPendingState[t.state].toLowerCase():"")+(t.funding_txid?t.funding_txid.toLowerCase():"")+(t.msatoshi_to_us?t.msatoshi_to_us:"")+(t.msatoshi_total?t.msatoshi_total:"")+(t.their_channel_reserve_satoshis?t.their_channel_reserve_satoshis:"")+(t.our_channel_reserve_satoshis?t.our_channel_reserve_satoshis:"")+(t.spendable_msatoshi?t.spendable_msatoshi:"");break;case"private":k=(null==t?void 0:t.private)?"private":"public";break;case"connected":k=(null==t?void 0:t.connected)?"connected":"disconnected";break;case"msatoshi_total":case"spendable_msatoshi":case"msatoshi_to_us":case"msatoshi_to_them":k=(null===(D=+(t[this.selFilterBy]||0)/1e3)||void 0===D?void 0:D.toString())||"";break;case"state":k=(null==t?void 0:t.state)?this.CLNChannelPendingState[null==t?void 0:t.state]:"";break;default:k=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy||"state"===this.selFilterBy?0===k.indexOf(a):k.includes(a)}}loadChannelsTable(t){var a;this.channels=new TA.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(D,k)=>"state"===k?this.CLNChannelPendingState[D.state]:D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,null===(a=this.channels.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Pending-inactive-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(Ut.V),A.Y36(c.v),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Channels")}])],decls:61,vars:16,consts:[["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","state"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1),A._UZ(2,"div",2),A.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(6,ii,2,2,"mat-option",6),A.qZA()(),A.TgZ(7,"mat-form-field",4)(8,"input",7),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.YNc(9,U0,1,0,"mat-progress-bar",8),A.TgZ(10,"div",9)(11,"table",10,11),A.ynx(13,12),A.YNc(14,b0,1,0,"th",13),A.YNc(15,q0,3,2,"td",14),A.BQk(),A.ynx(16,15),A.YNc(17,P0,2,0,"th",16),A.YNc(18,z0,4,4,"td",14),A.BQk(),A.ynx(19,17),A.YNc(20,G0,2,0,"th",16),A.YNc(21,no,4,4,"td",14),A.BQk(),A.ynx(22,18),A.YNc(23,H0,2,0,"th",16),A.YNc(24,tA,4,4,"td",14),A.BQk(),A.ynx(25,19),A.YNc(26,P,2,0,"th",16),A.YNc(27,V,4,4,"td",14),A.BQk(),A.ynx(28,20),A.YNc(29,m,2,0,"th",16),A.YNc(30,F,2,1,"td",14),A.BQk(),A.ynx(31,21),A.YNc(32,R,2,0,"th",16),A.YNc(33,AA,2,4,"td",22),A.BQk(),A.ynx(34,23),A.YNc(35,rA,2,0,"th",24),A.YNc(36,aA,4,4,"td",14),A.BQk(),A.ynx(37,25),A.YNc(38,iA,2,0,"th",24),A.YNc(39,SA,4,4,"td",14),A.BQk(),A.ynx(40,26),A.YNc(41,JA,2,0,"th",24),A.YNc(42,ct,4,4,"td",14),A.BQk(),A.ynx(43,27),A.YNc(44,KA,2,0,"th",24),A.YNc(45,Bt,4,4,"td",14),A.BQk(),A.ynx(46,28),A.YNc(47,pt,2,0,"th",24),A.YNc(48,Dt,4,4,"td",14),A.BQk(),A.ynx(49,29),A.YNc(50,Ht,2,0,"th",24),A.YNc(51,_t,4,4,"td",14),A.BQk(),A.ynx(52,30),A.YNc(53,qt,6,0,"th",31),A.YNc(54,Qe,8,2,"td",32),A.BQk(),A.ynx(55,33),A.YNc(56,ce,5,4,"td",34),A.BQk(),A.YNc(57,Ke,1,3,"tr",35),A.YNc(58,Je,1,0,"tr",36),A.YNc(59,Ee,1,0,"tr",37),A.qZA()(),A._UZ(60,"mat-paginator",38),A.qZA()),2&t&&(A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(12,_e).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(1),A.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),A.xp6(2),A.Q6J("dataSource",a.channels)("ngClass",A.VKq(13,Ue,""!==a.errorMessage)),A.xp6(46),A.Q6J("matFooterRowDef",A.DdM(15,Fe)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.Wh,n.yH,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,gt.O5,u.pW,dA.$V,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,C.BN,gt.PC,I.Zl,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.JJ],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),i})();const Rn=["peersForm"],un=["stepper"];function Mn(i,d){if(1&i&&A._uU(0),2&i){const t=A.oxw();A.Oqu(t.peerFormLabel)}}function Gn(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Address is required."),A.qZA())}function On(i,d){if(1&i&&(A.TgZ(0,"div",40),A._UZ(1,"fa-icon",41),A.TgZ(2,"span"),A._uU(3),A.qZA()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(2),A.Oqu(t.peerConnectionError)}}function In(i,d){if(1&i&&A._uU(0),2&i){const t=A.oxw();A.Oqu(t.channelFormLabel)}}function Qn(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function Jn(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount must be a positive number."),A.qZA())}function kn(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function Ie(i,d){if(1&i&&(A.TgZ(0,"mat-option",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function be(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function Ye(i,d){if(1&i&&(A.TgZ(0,"mat-form-field",43),A._UZ(1,"input",44),A.YNc(2,be,2,0,"mat-error",14),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("step",.1)("min",0),A.xp6(1),A.Q6J("ngIf","customperkb"===t.channelFormGroup.controls.selFeeRate.value&&!t.channelFormGroup.controls.flgMinConf.value&&!t.channelFormGroup.controls.customFeeRate.value)}}function Ze(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function ke(i,d){if(1&i&&(A.TgZ(0,"div",40),A._UZ(1,"fa-icon",41),A.TgZ(2,"span"),A._uU(3),A.qZA()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(2),A.Oqu(t.channelConnectionError)}}const fn=function(i,d){return{"mr-6":i,"mr-2":d}};let aa=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt){this.dialogRef=t,this.data=a,this.store=D,this.formBuilder=k,this.actions=nt,this.logger=wt,this.commonService=Lt,this.faExclamationTriangle=h.eHv,this.selNode={},this.peerAddress="",this.totalBalance=0,this.feeRateTypes=r.vn,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){var t;this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.id&&this.data.message.peer.netaddr?this.data.message.peer.id+"@"+this.data.message.peer.netaddr:this.data.message.peer&&this.data.message.peer.id&&!this.data.message.peer.netaddr?this.data.message.peer.id:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[x.kI.required]],peerAddress:[this.peerAddress,[x.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[x.kI.required,x.kI.min(1),x.kI.max(this.totalBalance)]],isPrivate:[!!(null===(t=this.selNode)||void 0===t?void 0:t.unannouncedChannels)],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[x.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.channelFormGroup.controls.isPrivate.setValue(!!(null==a?void 0:a.unannouncedChannels))}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.R)(this.unSubs[1])).subscribe(a=>{a?(this.channelFormGroup.controls.selFeeRate.setValue(null),this.channelFormGroup.controls.selFeeRate.disable(),this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.minConfValue.reset(),this.channelFormGroup.controls.minConfValue.enable(),this.channelFormGroup.controls.minConfValue.setValidators([x.kI.required])):(this.channelFormGroup.controls.selFeeRate.enable(),this.channelFormGroup.controls.minConfValue.setValue(null),this.channelFormGroup.controls.minConfValue.disable(),this.channelFormGroup.controls.minConfValue.setValidators(null))}),this.channelFormGroup.controls.selFeeRate.valueChanges.pipe((0,g.R)(this.unSubs[2])).subscribe(a=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==a||this.channelFormGroup.controls.flgMinConf.value?null:[x.kI.required])}),this.actions.pipe((0,g.R)(this.unSubs[3]),(0,ot.h)(a=>a.type===r.AB.NEWLY_ADDED_PEER_CLN||a.type===r.AB.FETCH_CHANNELS_CLN||a.type===r.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(a=>{a.type===r.AB.NEWLY_ADDED_PEER_CLN&&(this.logger.info(a.payload),this.flgEditable=!1,this.newlyAddedPeer=a.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),a.type===r.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close(),a.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&a.payload.status===r.Bn.ERROR&&("SaveNewPeer"===a.payload.action?this.peerConnectionError=a.payload.message:"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,L.El)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){var t;if(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)return!0;this.channelConnectionError="",this.store.dispatch((0,L.YX)({payload:{peerId:null===(t=this.newlyAddedPeer)||void 0===t?void 0:t.id,satoshis:this.channelFormGroup.controls.fundingAmount.value,announce:!this.channelFormGroup.controls.isPrivate.value,feeRate:"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&!this.channelFormGroup.controls.flgMinConf.value&&this.channelFormGroup.controls.customFeeRate.value?1e3*this.channelFormGroup.controls.customFeeRate.value+"perkb":this.channelFormGroup.controls.selFeeRate.value,minconf:this.channelFormGroup.controls.flgMinConf.value?this.channelFormGroup.controls.minConfValue.value:null}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){var a,D,k,nt,wt;switch(t.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(a=this.newlyAddedPeer)||void 0===a?void 0:a.alias)?this.newlyAddedPeer.alias:null===(D=this.newlyAddedPeer)||void 0===D?void 0:D.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(k=this.newlyAddedPeer)||void 0===k?void 0:k.alias)?null===(nt=this.newlyAddedPeer)||void 0===nt?void 0:nt.alias:null===(wt=this.newlyAddedPeer)||void 0===wt?void 0:wt.id):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}t.selectedIndex{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(B.yh),A.Y36(x.qu),A.Y36(H.eX),A.Y36(e.mQ),A.Y36(c.v))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(t,a){if(1&t&&(A.Gf(Rn,5),A.Gf(un,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first),A.iGM(D=A.CRH())&&(a.stepper=D.first)}},decls:57,vars:30,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Lightning Address (pubkey OR pubkey@ip:port)","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup","ngSubmit"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","placeholder","Amount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","60","fxLayoutAlign","space-between end"],["fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","placeholder","Fee Rate","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","35","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","2","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxFlex","98"],["matInput","","formControlName","minConfValue","placeholder","Min Confirmation Blocks","type","number","name","blocks","tabindex","8",3,"step","min","required"],["mat-button","","color","primary","tabindex","8","type","submit"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","placeholder","Fee Rate (Sats/vByte)","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Connect to a new peer"),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return a.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),A.NdJ("selectionChange",function(k){return a.stepSelectionChanged(k)}),A.TgZ(12,"mat-step",10)(13,"form",11),A.YNc(14,Mn,1,1,"ng-template",12),A.TgZ(15,"mat-form-field",1),A._UZ(16,"input",13),A.YNc(17,Gn,2,0,"mat-error",14),A.qZA(),A.YNc(18,On,4,2,"div",15),A.TgZ(19,"div",16)(20,"button",17),A.NdJ("click",function(){return a.onConnectPeer()}),A._uU(21),A.qZA()()()(),A.TgZ(22,"mat-step",10)(23,"form",18),A.NdJ("ngSubmit",function(){return a.onOpenChannel()}),A.YNc(24,In,1,1,"ng-template",19),A.TgZ(25,"div",20)(26,"div",21)(27,"mat-form-field",22),A._UZ(28,"input",23),A.TgZ(29,"mat-hint"),A._uU(30),A.qZA(),A.TgZ(31,"span",24),A._uU(32," Sats "),A.qZA(),A.YNc(33,Qn,2,0,"mat-error",14),A.YNc(34,Jn,2,0,"mat-error",14),A.YNc(35,kn,2,1,"mat-error",14),A.qZA(),A.TgZ(36,"div",25)(37,"mat-slide-toggle",26),A._uU(38,"Private Channel"),A.qZA()()(),A.TgZ(39,"div",27)(40,"div",28)(41,"mat-form-field",29)(42,"mat-select",30),A.YNc(43,Ie,2,2,"mat-option",31),A.qZA()(),A.YNc(44,Ye,3,3,"mat-form-field",32),A.qZA(),A.TgZ(45,"div",33),A._UZ(46,"mat-checkbox",34),A.TgZ(47,"mat-form-field",35),A._UZ(48,"input",36),A.YNc(49,Ze,2,0,"mat-error",14),A.qZA()()()(),A.YNc(50,ke,4,2,"div",15),A.TgZ(51,"div",16)(52,"button",37),A._uU(53),A.qZA()()()()(),A.TgZ(54,"div",38)(55,"button",39),A._uU(56),A.qZA()()()()()()),2&t&&(A.xp6(10),A.Q6J("linear",!0),A.xp6(2),A.Q6J("stepControl",a.peerFormGroup)("editable",a.flgEditable),A.xp6(1),A.Q6J("formGroup",a.peerFormGroup),A.xp6(4),A.Q6J("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),A.xp6(1),A.Q6J("ngIf",""!==a.peerConnectionError),A.xp6(3),A.Oqu(""!==a.peerConnectionError?"Retry":"Add Peer"),A.xp6(1),A.Q6J("stepControl",a.channelFormGroup)("editable",a.flgEditable),A.xp6(1),A.Q6J("formGroup",a.channelFormGroup),A.xp6(5),A.Q6J("step",1e3),A.xp6(2),A.hij("Remaining Bal: ",a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0),""),A.xp6(3),A.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),A.xp6(1),A.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),A.xp6(1),A.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),A.xp6(6),A.Q6J("fxFlex","customperkb"!==a.channelFormGroup.controls.selFeeRate.value||a.channelFormGroup.controls.flgMinConf.value?"100":"48"),A.xp6(2),A.Q6J("ngForOf",a.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===a.channelFormGroup.controls.selFeeRate.value&&!a.channelFormGroup.controls.flgMinConf.value),A.xp6(2),A.Q6J("ngClass",A.WLB(27,fn,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM,a.screenSize===a.screenSizeEnum.MD||a.screenSize===a.screenSizeEnum.LG||a.screenSize===a.screenSizeEnum.XL)),A.xp6(2),A.Q6J("step",1)("min",0)("required",a.channelFormGroup.controls.flgMinConf.value),A.xp6(1),A.Q6J("ngIf",a.channelFormGroup.controls.flgMinConf.value&&!a.channelFormGroup.controls.minConfValue.value),A.xp6(1),A.Q6J("ngIf",""!==a.channelConnectionError),A.xp6(3),A.Oqu(""!==a.channelConnectionError?"Retry":"Open Channel"),A.xp6(2),A.Q6J("mat-dialog-close",!1),A.xp6(1),A.Oqu(null!=a.newlyAddedPeer&&a.newlyAddedPeer.id?"Do It Later":"Close"))},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,M.dn,si.Vq,si.C0,x._Y,x.JL,x.sg,si.VY,X.KE,wA.Nt,x.Fj,EA.h,x.JJ,x.u,x.Q7,gt.O5,X.TO,C.BN,x.wV,X.bx,X.R9,yt.Rr,eA.gD,gt.sg,rt.ey,x.qQ,NA.q,Gt.oG,gt.mk,I.oO,Ft.ZT],styles:[""]}),i})();function Ln(i,d){if(1&i&&(A.TgZ(0,"mat-option",34),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function oa(i,d){1&i&&A._UZ(0,"mat-progress-bar",35)}function sa(i,d){1&i&&A._UZ(0,"th",36)}const io=function(i){return{"mr-0":i}};function O0(i,d){if(1&i&&A._UZ(0,"span",40),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,io,t.screenSize===t.screenSizeEnum.XS))}}function Pr(i,d){if(1&i&&A._UZ(0,"span",41),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,io,t.screenSize===t.screenSizeEnum.XS))}}function Ar(i,d){if(1&i&&(A.TgZ(0,"td",37),A.YNc(1,O0,1,3,"span",38),A.YNc(2,Pr,1,3,"span",39),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf",null==t?null:t.connected),A.xp6(1),A.Q6J("ngIf",!(null!=t&&t.connected))}}function la(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Alias"),A.qZA())}const bi=function(i){return{width:i}};function zr(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,bi,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function tr(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"ID"),A.qZA())}function er(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,bi,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function nr(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Network Address"),A.qZA())}function ir(i,d){1&i&&(A.TgZ(0,"span"),A._uU(1,","),A._UZ(2,"br"),A.qZA())}function rr(i,d){if(1&i&&(A.TgZ(0,"span",44),A._uU(1),A.YNc(2,ir,3,0,"span",46),A.qZA()),2&i){const t=d.$implicit,a=d.last;A.xp6(1),A.Oqu(t),A.xp6(1),A.Q6J("ngIf",!a)}}function ar(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43),A.YNc(2,rr,3,2,"span",45),A.qZA()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,bi,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(1),A.Q6J("ngForOf",null==t?null:t.netaddr)}}function or(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",47)(1,"div",48)(2,"mat-select",49),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",50),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function sr(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",50),A.NdJ("click",function(){A.CHM(t);const D=A.oxw().$implicit;return A.oxw().onPeerDetach(D)}),A._uU(1,"Disconnect"),A.qZA()}}function Mi(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",50),A.NdJ("click",function(){A.CHM(t);const D=A.oxw().$implicit;return A.oxw().onConnectPeer(D)}),A._uU(1,"Reconnect"),A.qZA()}}function ro(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",51)(1,"div",48)(2,"mat-select",49),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",50),A.NdJ("click",function(D){const nt=A.CHM(t).$implicit;return A.oxw().onPeerClick(nt,D)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",50),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onOpenChannel(k)}),A._uU(7,"Open Channel"),A.qZA(),A.YNc(8,sr,2,0,"mat-option",52),A.YNc(9,Mi,2,0,"mat-option",52),A.qZA()()()}if(2&i){const t=d.$implicit;A.xp6(8),A.Q6J("ngIf",t.connected),A.xp6(1),A.Q6J("ngIf",!t.connected)}}function ao(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No connected peer."),A.qZA())}function oo(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting peers..."),A.qZA())}function so(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function ca(i,d){if(1&i&&(A.TgZ(0,"td",53),A.YNc(1,ao,2,0,"p",46),A.YNc(2,oo,2,0,"p",46),A.YNc(3,so,2,1,"p",46),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const gc=function(i){return{"display-none":i}};function Bc(i,d){if(1&i&&A._UZ(0,"tr",54),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,gc,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function uc(i,d){1&i&&A._UZ(0,"tr",55)}function fc(i,d){1&i&&A._UZ(0,"tr",56)}const hc=function(){return["all"]},Ec=function(i){return{"error-border":i}},wc=function(){return["no_peer"]};let Cc=(()=>{class i{constructor(t,a,D,k,nt,wt){this.logger=t,this.store=a,this.rtlEffects=D,this.actions=k,this.commonService=nt,this.camelCaseWithReplace=wt,this.faUsers=h.FVb,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:r.IV,sortBy:"alias",sortOrder:r.Pi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new TA.by([]),this.information={},this.availableBalance=0,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.Ao).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.availableBalance=t.balance.totalBalance||0}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("connected"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.Wi).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers||[],this.peersData.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)}),this.actions.pipe((0,g.R)(this.unSubs[3]),(0,ot.h)(t=>t.type===r.AB.SET_PEERS_CLN)).subscribe(t=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,a){this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Peer Information",showQRName:"Public Key",showQRField:t.id,message:[[{key:"id",value:t.id,title:"Public Key",width:100}],[{key:"netaddr",value:t.netaddr,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:50},{key:"connected",value:t.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(t){this.store.dispatch((0,qA.qR)({payload:{data:{message:{peer:t.id?t:null,information:this.information,balance:this.availableBalance},component:aa}}}))}onOpenChannel(t){this.store.dispatch((0,qA.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Bn}}}))}onPeerDetach(t){this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[4])).subscribe(D=>{D&&this.store.dispatch((0,L.z)({payload:{id:t.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,a)=>{let D="";switch(this.selFilterBy){case"all":D=JSON.stringify(t).toLowerCase();break;case"connected":D=(null==t?void 0:t.connected)?"connected":"disconnected";break;case"netaddr":D=t.netaddr?t.netaddr.reduce((k,nt)=>k+nt," "):"";break;default:D=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===D.indexOf(a):D.includes(a)}}loadPeersTable(t){var a;this.peers=new TA.by([...t]),this.peers.sortingDataAccessor=(D,k)=>{if("netaddr"===k){if(D.netaddr&&D.netaddr[0]){const nt=D.netaddr[0].toString().split(".");return nt[0]?+nt[0]:D.netaddr[0]}return""}return D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null},this.peers.sort=this.sort,null===(a=this.peers.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(Ut.V),A.Y36(H.eX),A.Y36(c.v),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-peers"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Peers")}])],decls:42,vars:17,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["peersForm","ngForm"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","connected"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","netaddr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["class","ellipsis-child",4,"ngFor","ngForOf"],[4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"button",3),A.NdJ("click",function(){return a.onConnectPeer({})}),A._uU(4,"Add Peer"),A.qZA()(),A.TgZ(5,"div",4)(6,"div",5)(7,"div",6),A._UZ(8,"fa-icon",7),A.TgZ(9,"span",8),A._uU(10,"Connected Peers"),A.qZA()(),A.TgZ(11,"div",9)(12,"mat-form-field",10)(13,"mat-select",11),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(14,Ln,2,2,"mat-option",12),A.qZA()(),A.TgZ(15,"mat-form-field",10)(16,"input",13),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.TgZ(17,"div",14),A.YNc(18,oa,1,0,"mat-progress-bar",15),A.TgZ(19,"table",16,17),A.ynx(21,18),A.YNc(22,sa,1,0,"th",19),A.YNc(23,Ar,3,2,"td",20),A.BQk(),A.ynx(24,21),A.YNc(25,la,2,0,"th",22),A.YNc(26,zr,4,4,"td",20),A.BQk(),A.ynx(27,23),A.YNc(28,tr,2,0,"th",22),A.YNc(29,er,4,4,"td",20),A.BQk(),A.ynx(30,24),A.YNc(31,nr,2,0,"th",22),A.YNc(32,ar,3,4,"td",20),A.BQk(),A.ynx(33,25),A.YNc(34,or,6,0,"th",26),A.YNc(35,ro,10,2,"td",27),A.BQk(),A.ynx(36,28),A.YNc(37,ca,4,3,"td",29),A.BQk(),A.YNc(38,Bc,1,3,"tr",30),A.YNc(39,uc,1,0,"tr",31),A.YNc(40,fc,1,0,"tr",32),A.qZA()(),A._UZ(41,"mat-paginator",33),A.qZA()()),2&t&&(A.xp6(8),A.Q6J("icon",a.faUsers),A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(13,hc).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(2),A.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",a.peers)("ngClass",A.VKq(14,Ec,""!==a.errorMessage)),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(16,wc)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.yH,n.Wh,x._Y,x.JL,x.F,Y.lW,C.BN,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,gt.O5,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),i})();const Qc=["queryRoutesForm"];function dc(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Destination pubkey is required."),A.qZA())}function pc(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function Mc(i,d){1&i&&A._UZ(0,"mat-progress-bar",36)}function mc(i,d){1&i&&(A.TgZ(0,"th",37),A._uU(1,"ID"),A.qZA())}const _0=function(i){return{width:i}};function Ic(i,d){if(1&i&&(A.TgZ(0,"td",38)(1,"div",39)(2,"span",40),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function vc(i,d){1&i&&(A.TgZ(0,"th",37),A._uU(1,"Alias"),A.qZA())}function Dc(i,d){if(1&i&&(A.TgZ(0,"td",38)(1,"div",39)(2,"span",40),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function yc(i,d){1&i&&(A.TgZ(0,"th",37),A._uU(1,"Channel"),A.qZA())}function xc(i,d){if(1&i&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.channel)}}function Fc(i,d){1&i&&(A.TgZ(0,"th",37),A._uU(1,"Direction"),A.qZA())}function Yc(i,d){if(1&i&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.direction)}}function Tc(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Delay"),A.qZA())}function Sc(i,d){if(1&i&&(A.TgZ(0,"td",38)(1,"span",42),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij("",A.lcZ(3,1,null==t?null:t.delay)," ")}}function Nc(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Amount (Sats)"),A.qZA())}function Uc(i,d){if(1&i&&(A.TgZ(0,"td",38)(1,"span",42),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,(null==t?null:t.msatoshi)/1e3))}}function bc(i,d){1&i&&(A.TgZ(0,"th",43)(1,"div",44),A._uU(2,"Actions"),A.qZA()())}function Rc(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",45)(1,"button",46),A.NdJ("click",function(D){const nt=A.CHM(t).$implicit;return A.oxw().onHopClick(nt,D)}),A._uU(2,"View Info"),A.qZA()()}}function Lc(i,d){1&i&&A._UZ(0,"tr",47)}function Pc(i,d){1&i&&A._UZ(0,"tr",48)}const zc=function(i){return{"overflow-auto error-border":i,"overflow-auto":!0}};let Gc=(()=>{class i{constructor(t,a,D){this.store=t,this.clnEffects=a,this.commonService=D,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:r.IV,sortBy:"id",sortOrder:r.Pi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new TA.by([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=h.FpQ,this.faExclamationTriangle=h.eHv,this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions")}),this.clnEffects.setQueryRoutesCL.pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{var a;this.qrHops.data=[],t.routes&&t.routes.length&&t.routes.length>0?(this.flgLoading[0]=!1,this.qrHops=new TA.by([...t.routes]),this.qrHops.data=t.routes):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,null===(a=this.qrHops.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0})})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,L.WO)({payload:{destPubkey:this.destinationPubkey,amount:1e3*this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1,this.qrHops.data=[],this.form.resetForm()}onHopClick(t,a){this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:t.id,title:"ID",width:100,type:r.Gi.STRING}],[{key:"channel",value:t.channel,title:"Channel",width:50,type:r.Gi.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:r.Gi.STRING}],[{key:"msatoshi",value:t.msatoshi,title:"mSatoshi",width:50,type:r.Gi.NUMBER},{key:"amount_msat",value:t.amount_msat,title:"Amount mSat",width:50,type:r.Gi.STRING}],[{key:"direction",value:t.direction,title:"Direction",width:50,type:r.Gi.STRING},{key:"delay",value:t.delay,title:"Delay",width:50,type:r.Gi.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(B.yh),A.Y36(Nr.J),A.Y36(c.v))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-query-routes"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Qc,7)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.form=D.first)}},decls:51,vars:15,consts:[["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["queryRoutesForm","ngForm"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","69","fxLayoutAlign","start end"],["matInput","","placeholder","Destination Pubkey","name","destinationPubkey","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxFlex","29","fxLayoutAlign","start end"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","type","number","required","",3,"ngModel","step","min","ngModelChange"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","channel"],["matColumnDef","direction"],["matColumnDef","delay"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(t,a){if(1&t){const D=A.EpF();A.TgZ(0,"div",0)(1,"form",1,2),A.NdJ("ngSubmit",function(){return A.CHM(D),A.MAs(2).form.valid&&a.onQueryRoutes()}),A.TgZ(3,"div",3),A._UZ(4,"fa-icon",4),A.TgZ(5,"span"),A._uU(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.qZA()(),A.TgZ(7,"mat-form-field",5)(8,"input",6,7),A.NdJ("ngModelChange",function(nt){return a.destinationPubkey=nt}),A.qZA(),A.YNc(10,dc,2,0,"mat-error",8),A.qZA(),A.TgZ(11,"mat-form-field",9)(12,"input",10),A.NdJ("ngModelChange",function(nt){return a.amount=nt}),A.qZA(),A.YNc(13,pc,2,0,"mat-error",8),A.qZA(),A.TgZ(14,"div",11)(15,"button",12),A.NdJ("click",function(){return a.resetData()}),A._uU(16,"Clear"),A.qZA(),A.TgZ(17,"button",13),A._uU(18,"Query Route"),A.qZA()()(),A.TgZ(19,"div",14)(20,"div",15),A._UZ(21,"fa-icon",16),A.TgZ(22,"span",17),A._uU(23,"Transaction Route"),A.qZA()()(),A.TgZ(24,"div",18),A.YNc(25,Mc,1,0,"mat-progress-bar",19),A.TgZ(26,"table",20,21),A.ynx(28,22),A.YNc(29,mc,2,0,"th",23),A.YNc(30,Ic,4,4,"td",24),A.BQk(),A.ynx(31,25),A.YNc(32,vc,2,0,"th",23),A.YNc(33,Dc,4,4,"td",24),A.BQk(),A.ynx(34,26),A.YNc(35,yc,2,0,"th",23),A.YNc(36,xc,2,1,"td",24),A.BQk(),A.ynx(37,27),A.YNc(38,Fc,2,0,"th",23),A.YNc(39,Yc,2,1,"td",24),A.BQk(),A.ynx(40,28),A.YNc(41,Tc,2,0,"th",29),A.YNc(42,Sc,4,3,"td",24),A.BQk(),A.ynx(43,30),A.YNc(44,Nc,2,0,"th",29),A.YNc(45,Uc,4,3,"td",24),A.BQk(),A.ynx(46,31),A.YNc(47,bc,3,0,"th",32),A.YNc(48,Rc,3,0,"td",33),A.BQk(),A.YNc(49,Lc,1,0,"tr",34),A.YNc(50,Pc,1,0,"tr",35),A.qZA()()()}2&t&&(A.xp6(4),A.Q6J("icon",a.faExclamationTriangle),A.xp6(4),A.Q6J("ngModel",a.destinationPubkey),A.xp6(2),A.Q6J("ngIf",!a.destinationPubkey),A.xp6(2),A.Q6J("ngModel",a.amount)("step",1e3)("min",0),A.xp6(1),A.Q6J("ngIf",!a.amount),A.xp6(8),A.Q6J("icon",a.faRoute),A.xp6(4),A.Q6J("ngIf",!0===a.flgLoading[0]),A.xp6(1),A.Q6J("dataSource",a.qrHops)("ngClass",A.VKq(13,zc,"error"===a.flgLoading[0])),A.xp6(23),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns))},directives:[n.xw,n.yH,x._Y,x.JL,x.F,n.Wh,C.BN,X.KE,wA.Nt,x.Fj,x.Q7,x.JJ,x.On,gt.O5,X.TO,x.wV,x.qQ,NA.q,Y.lW,dA.$V,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,TA.as,TA.XQ,TA.nj,TA.Gk],pipes:[gt.JJ],styles:[""]}),i})();function Hc(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Message is required."),A.qZA())}let Oc=(()=>{class i{constructor(t,a,D){this.dataService=t,this.snackBar=a,this.logger=D,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new l.x,new l.x]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(St.D),A.Y36(Zn.ux),A.Y36(e.mQ))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-sign"]],decls:20,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to sign","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),A.NdJ("ngModelChange",function(k){return a.message=k})("keyup",function(){return a.onMessageChange()}),A.qZA(),A.YNc(5,Hc,2,0,"mat-error",5),A.qZA(),A.TgZ(6,"div",6)(7,"button",7),A.NdJ("click",function(){return a.resetData()}),A._uU(8,"Clear Field"),A.qZA(),A.TgZ(9,"button",8),A.NdJ("click",function(){return a.onSign()}),A._uU(10,"Sign"),A.qZA()(),A._UZ(11,"mat-divider",9),A.TgZ(12,"div",10)(13,"p"),A._uU(14,"Generated Signature"),A.qZA()(),A.TgZ(15,"div",11),A._uU(16),A.qZA(),A.TgZ(17,"div",12)(18,"button",13),A.NdJ("copied",function(k){return a.onCopyField(k)}),A._uU(19,"Copy Signature"),A.qZA()()()()),2&t&&(A.xp6(4),A.Q6J("ngModel",a.message),A.xp6(1),A.Q6J("ngIf",!a.message),A.xp6(6),A.Q6J("inset",!0),A.xp6(5),A.Oqu(a.signature),A.xp6(2),A.Q6J("payload",a.signature))},directives:[n.xw,n.yH,n.Wh,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,EA.h,x.Q7,x.JJ,x.On,gt.O5,X.TO,Y.lW,pA.d,Vi.y],styles:[""]}),i})();function Jc(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Message is required."),A.qZA())}function kc(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Signature is required."),A.qZA())}function jc(i,d){1&i&&(A.TgZ(0,"p",13)(1,"mat-icon",14),A._uU(2,"close"),A.qZA(),A._uU(3,"Verification failed, please double check message and signature"),A.qZA())}function Wc(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Pubkey Used"),A.qZA())}function Vc(i,d){if(1&i&&(A.TgZ(0,"div",20)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw(2);A.xp6(2),A.Oqu(null==t.verifyRes?null:t.verifyRes.pubkey)}}function Kc(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",21)(1,"button",22),A.NdJ("copied",function(D){return A.CHM(t),A.oxw(2).onCopyField(D)}),A._uU(2,"Copy Pubkey"),A.qZA()()}if(2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function Zc(i,d){if(1&i&&(A.TgZ(0,"div",15),A._UZ(1,"mat-divider",16),A.TgZ(2,"div",17),A.YNc(3,Wc,2,0,"p",5),A.qZA(),A.YNc(4,Vc,3,1,"div",18),A.YNc(5,Kc,3,1,"div",19),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("inset",!0),A.xp6(2),A.Q6J("ngIf",t.verifyRes.verified),A.xp6(1),A.Q6J("ngIf",t.verifyRes.verified),A.xp6(1),A.Q6J("ngIf",t.verifyRes.verified)}}let Xc=(()=>{class i{constructor(t,a,D){this.dataService=t,this.snackBar=a,this.logger=D,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new l.x,new l.x]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(St.D),A.Y36(Zn.ux),A.Y36(e.mQ))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-verify"]],decls:17,vars:6,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to verify","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","placeholder","Signature provided","name","signature","tabindex","2","required","",3,"ngModel","ngModelChange","keyup"],["sign","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only h-4 padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),A.NdJ("ngModelChange",function(k){return a.message=k})("keyup",function(){return a.onChange()}),A.qZA(),A.YNc(5,Jc,2,0,"mat-error",5),A.qZA(),A.TgZ(6,"mat-form-field",3)(7,"input",6,7),A.NdJ("ngModelChange",function(k){return a.signature=k})("keyup",function(){return a.onChange()}),A.qZA(),A.YNc(9,kc,2,0,"mat-error",5),A.qZA(),A.YNc(10,jc,4,0,"p",8),A.TgZ(11,"div",9)(12,"button",10),A.NdJ("click",function(){return a.resetData()}),A._uU(13,"Clear Fields"),A.qZA(),A.TgZ(14,"button",11),A.NdJ("click",function(){return a.onVerify()}),A._uU(15,"Verify"),A.qZA()(),A.YNc(16,Zc,6,4,"div",12),A.qZA()()),2&t&&(A.xp6(4),A.Q6J("ngModel",a.message),A.xp6(1),A.Q6J("ngIf",!a.message),A.xp6(2),A.Q6J("ngModel",a.signature),A.xp6(2),A.Q6J("ngIf",!a.signature),A.xp6(1),A.Q6J("ngIf",a.showVerifyStatus&&!a.verifyRes.verified),A.xp6(6),A.Q6J("ngIf",a.showVerifyStatus&&a.verifyRes.verified))},directives:[n.xw,n.yH,n.Wh,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,EA.h,x.Q7,x.JJ,x.On,gt.O5,X.TO,p.Hw,Y.lW,pA.d,Vi.y],styles:[""]}),i})();function qc(i,d){if(1&i&&(A.TgZ(0,"div",5),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function _c(i,d){if(1&i&&(A.TgZ(0,"mat-option",13),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}const $c=function(){return["all"]};function Ag(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",6),A._UZ(1,"div",7),A.TgZ(2,"div",8)(3,"mat-form-field",9)(4,"mat-select",10),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilterBy=D})("selectionChange",function(){A.CHM(t);const D=A.oxw();return D.selFilter="",D.applyFilter()}),A.YNc(5,_c,2,2,"mat-option",11),A.qZA()(),A.TgZ(6,"mat-form-field",9)(7,"input",12),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilter=D})("input",function(){return A.CHM(t),A.oxw().applyFilter()})("keyup",function(){return A.CHM(t),A.oxw().applyFilter()}),A.qZA()()()()}if(2&i){const t=A.oxw();A.xp6(4),A.Q6J("ngModel",t.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(3,$c).concat(t.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",t.selFilter)}}function tg(i,d){1&i&&A._UZ(0,"mat-progress-bar",39)}function eg(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Received Time"),A.qZA())}function ng(i,d){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function ig(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Resolved Time"),A.qZA())}function rg(i,d){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function ag(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"In Channel ID"),A.qZA())}function og(i,d){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel)}}function sg(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"In Channel"),A.qZA())}const J0=function(i){return{width:i}};function lg(i,d){if(1&i&&(A.TgZ(0,"td",41)(1,"div",42)(2,"span",43),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,J0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.in_channel_alias)}}function cg(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Out Channel ID"),A.qZA())}function gg(i,d){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel)}}function Bg(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Out Channel"),A.qZA())}function ug(i,d){if(1&i&&(A.TgZ(0,"td",41)(1,"div",42)(2,"span",43),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,J0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.out_channel_alias)}}function fg(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Payment Hash"),A.qZA())}function hg(i,d){if(1&i&&(A.TgZ(0,"td",41)(1,"div",42)(2,"span",43),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,J0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function Eg(i,d){1&i&&(A.TgZ(0,"th",44),A._uU(1,"Amount In (Sats)"),A.qZA())}function wg(i,d){if(1&i&&(A.TgZ(0,"td",41)(1,"span",45),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.in_msatoshi)/1e3,(null==t?null:t.in_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function Cg(i,d){1&i&&(A.TgZ(0,"th",44),A._uU(1,"Amount Out (Sats)"),A.qZA())}function Qg(i,d){if(1&i&&(A.TgZ(0,"td",41)(1,"span",45),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.out_msatoshi)/1e3,(null==t?null:t.out_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function dg(i,d){1&i&&(A.TgZ(0,"th",44),A._uU(1,"Fee (mSat)"),A.qZA())}function pg(i,d){if(1&i&&(A.TgZ(0,"td",41)(1,"span",45),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,null==t?null:t.fee))}}function Mg(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",46)(1,"div",47)(2,"mat-select",48),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",49),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function mg(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",50)(1,"button",51),A.NdJ("click",function(D){const nt=A.CHM(t).$implicit;return A.oxw(2).onForwardingEventClick(nt,D)}),A._uU(2,"View Info"),A.qZA()()}}function Ig(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No forwarding history available."),A.qZA())}function vg(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting forwarding history..."),A.qZA())}function Dg(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function yg(i,d){if(1&i&&(A.TgZ(0,"td",52),A.YNc(1,Ig,2,0,"p",53),A.YNc(2,vg,2,0,"p",53),A.YNc(3,Dg,2,1,"p",53),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const xg=function(i){return{"display-none":i}};function Fg(i,d){if(1&i&&A._UZ(0,"tr",54),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,xg,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function Yg(i,d){1&i&&A._UZ(0,"tr",55)}function Tg(i,d){1&i&&A._UZ(0,"tr",56)}const Sg=function(){return["no_event"]};function Ng(i,d){if(1&i&&(A.TgZ(0,"div",14),A.YNc(1,tg,1,0,"mat-progress-bar",15),A.TgZ(2,"table",16,17),A.ynx(4,18),A.YNc(5,eg,2,0,"th",19),A.YNc(6,ng,3,4,"td",20),A.BQk(),A.ynx(7,21),A.YNc(8,ig,2,0,"th",19),A.YNc(9,rg,3,4,"td",20),A.BQk(),A.ynx(10,22),A.YNc(11,ag,2,0,"th",19),A.YNc(12,og,2,1,"td",20),A.BQk(),A.ynx(13,23),A.YNc(14,sg,2,0,"th",19),A.YNc(15,lg,4,4,"td",20),A.BQk(),A.ynx(16,24),A.YNc(17,cg,2,0,"th",19),A.YNc(18,gg,2,1,"td",20),A.BQk(),A.ynx(19,25),A.YNc(20,Bg,2,0,"th",19),A.YNc(21,ug,4,4,"td",20),A.BQk(),A.ynx(22,26),A.YNc(23,fg,2,0,"th",19),A.YNc(24,hg,4,4,"td",20),A.BQk(),A.ynx(25,27),A.YNc(26,Eg,2,0,"th",28),A.YNc(27,wg,4,4,"td",20),A.BQk(),A.ynx(28,29),A.YNc(29,Cg,2,0,"th",28),A.YNc(30,Qg,4,4,"td",20),A.BQk(),A.ynx(31,30),A.YNc(32,dg,2,0,"th",28),A.YNc(33,pg,4,3,"td",20),A.BQk(),A.ynx(34,31),A.YNc(35,Mg,6,0,"th",32),A.YNc(36,mg,3,0,"td",33),A.BQk(),A.ynx(37,34),A.YNc(38,yg,4,3,"td",35),A.BQk(),A.YNc(39,Fg,1,3,"tr",36),A.YNc(40,Yg,1,0,"tr",37),A.YNc(41,Tg,1,0,"tr",38),A.qZA()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.forwardingHistoryEvents),A.xp6(37),A.Q6J("matFooterRowDef",A.DdM(5,Sg)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function Ug(i,d){if(1&i&&A._UZ(0,"mat-paginator",57),2&i){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let $0=(()=>{class i{constructor(t,a,D,k,nt,wt){this.logger=t,this.commonService=a,this.store=D,this.datePipe=k,this.router=nt,this.camelCaseWithReplace=wt,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:r.IV,sortBy:"received_time",sortOrder:r.Pi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new TA.by([]),this.totalForwardedTransactions=0,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.pageId))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.pageId))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,ft.q)(1)).subscribe(t=>{var a;t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.Bn.UN_INITIATED&&!(null===(a=t.cln.forwardingHistory.listForwards)||void 0===a?void 0:a.length)&&this.store.dispatch((0,L.u0)({payload:{status:r.OO.SETTLED}}))}),this.store.select(w.Bo).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&t.forwardingHistory.listForwards&&(this.totalForwardedTransactions=t.forwardingHistory.totalForwards||0,this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.Bn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),t.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}onForwardingEventClick(t,a){this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Event Information",message:[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}],[{key:"status",value:"Settled",title:"Status",width:50,type:r.Gi.STRING},{key:"fee",value:t.fee,title:"Fee (mSats)",width:50,type:r.Gi.NUMBER}],[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.Gi.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.Gi.DATE_TIME}],[{key:"in_channel",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.Gi.STRING},{key:"out_channel",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.Gi.STRING}],[{key:"in_msatoshi",value:t.in_msatoshi,title:"In (mSats)",width:50,type:r.Gi.NUMBER},{key:"out_msatoshi",value:t.out_msatoshi,title:"Out (mSats)",width:50,type:r.Gi.NUMBER}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,a)=>{var D,k,nt,wt;let Lt="";switch(this.selFilterBy){case"all":Lt=(t.received_time?(null===(D=this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm"))||void 0===D?void 0:D.toLowerCase())+" ":"")+(t.resolved_time?(null===(k=this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm"))||void 0===k?void 0:k.toLowerCase())+" ":"")+(t.in_channel?t.in_channel.toLowerCase()+" ":"")+(t.out_channel?t.out_channel.toLowerCase()+" ":"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase()+" ":"")+(t.out_channel_alias?t.out_channel_alias.toLowerCase()+" ":"")+(t.in_msatoshi?t.in_msatoshi/1e3+" ":"")+(t.out_msatoshi?t.out_msatoshi/1e3+" ":"")+(t.fee?t.fee+" ":"");break;case"received_time":case"resolved_time":Lt=(null===(nt=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===nt?void 0:nt.toLowerCase())||"";break;case"in_msatoshi":case"out_msatoshi":Lt=(null===(wt=+(t[this.selFilterBy]||0)/1e3)||void 0===wt?void 0:wt.toString())||"";break;default:Lt=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return Lt.includes(a)}}loadForwardingEventsTable(t){var a;this.forwardingHistoryEvents=new TA.by([...t]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,null===(a=this.forwardingHistoryEvents.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(gt.uU),A.Y36(ie.F0),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Events")}]),A.TTD],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","payment_hash"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,qc,2,1,"div",1),A.YNc(2,Ag,8,4,"div",2),A.YNc(3,Ng,42,6,"div",3),A.YNc(4,Ug,1,3,"mat-paginator",4),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage))},directives:[n.xw,n.Wh,gt.O5,n.yH,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,u.pW,TA.BZ,ut.YE,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,Y.lW,TA.mD,TA.yh,TA.Ke,TA.Q2,gt.mk,I.oO,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.uU,gt.JJ],styles:[""]}),i})();function bg(i,d){if(1&i&&(A.TgZ(0,"div",5),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function Rg(i,d){if(1&i&&(A.TgZ(0,"mat-option",16),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}const Lg=function(){return["all"]};function Pg(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",6)(1,"div",7),A._UZ(2,"fa-icon",8),A.TgZ(3,"span"),A._uU(4,"Maximum 1,000 failed transactions only."),A.qZA()(),A.TgZ(5,"div",9),A._UZ(6,"div",10),A.TgZ(7,"div",11)(8,"mat-form-field",12)(9,"mat-select",13),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilterBy=D})("selectionChange",function(){A.CHM(t);const D=A.oxw();return D.selFilter="",D.applyFilter()}),A.YNc(10,Rg,2,2,"mat-option",14),A.qZA()(),A.TgZ(11,"mat-form-field",12)(12,"input",15),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilter=D})("input",function(){return A.CHM(t),A.oxw().applyFilter()})("keyup",function(){return A.CHM(t),A.oxw().applyFilter()}),A.qZA()()()()()}if(2&i){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.faExclamationTriangle),A.xp6(7),A.Q6J("ngModel",t.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(4,Lg).concat(t.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",t.selFilter)}}function zg(i,d){1&i&&A._UZ(0,"mat-progress-bar",41)}function Gg(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Received Time"),A.qZA())}function Hg(i,d){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Og(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Resolved Time"),A.qZA())}function Jg(i,d){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function kg(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"In Channel ID"),A.qZA())}function jg(i,d){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel)}}function Wg(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"In Channel"),A.qZA())}const Ac=function(i){return{width:i}};function Vg(i,d){if(1&i&&(A.TgZ(0,"td",43)(1,"span",44)(2,"span",45),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ac,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.in_channel_alias)}}function Kg(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Out Channel ID"),A.qZA())}function Zg(i,d){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel)}}function Xg(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Out Channel"),A.qZA())}function qg(i,d){if(1&i&&(A.TgZ(0,"td",43)(1,"span",44)(2,"span",45),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ac,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.out_channel_alias)}}function _g(i,d){1&i&&(A.TgZ(0,"th",46),A._uU(1,"Amount In (Sats)"),A.qZA())}function $g(i,d){if(1&i&&(A.TgZ(0,"td",43)(1,"span",47),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.in_msatoshi)/1e3,(null==t?null:t.in_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function AB(i,d){1&i&&(A.TgZ(0,"th",46),A._uU(1,"Amount Out (Sats)"),A.qZA())}function tB(i,d){if(1&i&&(A.TgZ(0,"td",43)(1,"span",47),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.out_msatoshi)/1e3,(null==t?null:t.out_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function eB(i,d){1&i&&(A.TgZ(0,"th",46),A._uU(1,"Fee (mSats)"),A.qZA())}function nB(i,d){if(1&i&&(A.TgZ(0,"td",43)(1,"span",47),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,null==t?null:t.fee,"1.0-0"))}}function iB(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",48)(1,"div",49)(2,"mat-select",50),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",51),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function rB(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",52)(1,"button",53),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw(2).onFailedEventClick(k)}),A._uU(2,"View Info"),A.qZA()()}}function aB(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No failed transaction available."),A.qZA())}function oB(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting failed transactions..."),A.qZA())}function sB(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function lB(i,d){if(1&i&&(A.TgZ(0,"td",54),A.YNc(1,aB,2,0,"p",55),A.YNc(2,oB,2,0,"p",55),A.YNc(3,sB,2,1,"p",55),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const cB=function(i){return{"display-none":i}};function gB(i,d){if(1&i&&A._UZ(0,"tr",56),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,cB,(null==t.failedForwardingEvents?null:t.failedForwardingEvents.data)&&(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)>0))}}function BB(i,d){1&i&&A._UZ(0,"tr",57)}function uB(i,d){1&i&&A._UZ(0,"tr",58)}const fB=function(){return["no_event"]};function hB(i,d){if(1&i&&(A.TgZ(0,"div",17),A.YNc(1,zg,1,0,"mat-progress-bar",18),A.TgZ(2,"table",19,20),A.ynx(4,21),A.YNc(5,Gg,2,0,"th",22),A.YNc(6,Hg,3,4,"td",23),A.BQk(),A.ynx(7,24),A.YNc(8,Og,2,0,"th",22),A.YNc(9,Jg,3,4,"td",23),A.BQk(),A.ynx(10,25),A.YNc(11,kg,2,0,"th",22),A.YNc(12,jg,2,1,"td",23),A.BQk(),A.ynx(13,26),A.YNc(14,Wg,2,0,"th",22),A.YNc(15,Vg,4,4,"td",23),A.BQk(),A.ynx(16,27),A.YNc(17,Kg,2,0,"th",22),A.YNc(18,Zg,2,1,"td",23),A.BQk(),A.ynx(19,28),A.YNc(20,Xg,2,0,"th",22),A.YNc(21,qg,4,4,"td",23),A.BQk(),A.ynx(22,29),A.YNc(23,_g,2,0,"th",30),A.YNc(24,$g,4,4,"td",23),A.BQk(),A.ynx(25,31),A.YNc(26,AB,2,0,"th",30),A.YNc(27,tB,4,4,"td",23),A.BQk(),A.ynx(28,32),A.YNc(29,eB,2,0,"th",30),A.YNc(30,nB,4,4,"td",23),A.BQk(),A.ynx(31,33),A.YNc(32,iB,6,0,"th",34),A.YNc(33,rB,3,0,"td",35),A.BQk(),A.ynx(34,36),A.YNc(35,lB,4,3,"td",37),A.BQk(),A.YNc(36,gB,1,3,"tr",38),A.YNc(37,BB,1,0,"tr",39),A.YNc(38,uB,1,0,"tr",40),A.qZA()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.failedForwardingEvents),A.xp6(34),A.Q6J("matFooterRowDef",A.DdM(5,fB)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function EB(i,d){if(1&i&&A._UZ(0,"mat-paginator",59),2&i){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let wB=(()=>{class i{constructor(t,a,D,k,nt,wt){this.logger=t,this.commonService=a,this.store=D,this.datePipe=k,this.router=nt,this.camelCaseWithReplace=wt,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:r.IV,sortBy:"received_time",sortOrder:r.Pi.DESCENDING},this.faExclamationTriangle=h.eHv,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new TA.by([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.store.dispatch((0,L.u0)({payload:{status:r.OO.FAILED}})),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.xQ).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=t.failedForwardingHistory.totalForwards||0,this.failedEvents=t.failedForwardingHistory.listForwards||[],this.failedEvents.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(t){const a=[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.Gi.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.Gi.DATE_TIME}],[{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.Gi.STRING},{key:"out_channel_alias",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.Gi.STRING}],[{key:"in_msatoshi",value:t.in_msatoshi,title:"Amount In (mSats)",width:33,type:r.Gi.NUMBER},{key:"out_msatoshi",value:t.out_msatoshi,title:"Amount Out (mSats)",width:33,type:r.Gi.NUMBER},{key:"fee",value:t.fee,title:"Fee (mSats)",width:34,type:r.Gi.NUMBER}]];t.payment_hash&&(null==a||a.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}])),this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Failed Event Information",message:a}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(t,a)=>{var D,k,nt;let wt="";switch(this.selFilterBy){case"all":wt=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/YYYY HH:mm").toLowerCase():"")+(t.resolved_time?null===(D=this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm"))||void 0===D?void 0:D.toLowerCase():"")+(t.payment_hash?t.payment_hash.toLowerCase():"")+(t.in_channel?t.in_channel.toLowerCase():"")+(t.out_channel?t.out_channel.toLowerCase():"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase():"")+(t.out_channel_alias?t.out_channel_alias.toLowerCase():"")+(t.in_msatoshi?t.in_msatoshi/1e3:"")+(t.out_msatoshi?t.out_msatoshi/1e3:"")+(t.fee?t.fee:"");break;case"received_time":case"resolved_time":wt=(null===(k=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===k?void 0:k.toLowerCase())||"";break;case"in_msatoshi":case"out_msatoshi":wt=(null===(nt=+(t[this.selFilterBy]||0)/1e3)||void 0===nt?void 0:nt.toString())||"";break;default:wt=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return wt.includes(a)}}loadFailedEventsTable(t){var a;this.failedForwardingEvents=new TA.by([...t]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,null===(a=this.failedForwardingEvents.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.failedForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedForwardingEvents)}onDownloadCSV(){this.failedForwardingEvents&&this.failedForwardingEvents.data&&this.failedForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedForwardingEvents.data,"Failed-transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(gt.uU),A.Y36(ie.F0),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-failed-history"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Failed events")}])],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,bg,2,1,"div",1),A.YNc(2,Pg,13,5,"div",2),A.YNc(3,hB,39,6,"div",3),A.YNc(4,EB,1,3,"mat-paginator",4),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage))},directives:[n.xw,n.Wh,gt.O5,n.yH,C.BN,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,u.pW,TA.BZ,ut.YE,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,Y.lW,TA.mD,TA.yh,TA.Ke,TA.Q2,gt.mk,I.oO,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.uU,gt.JJ],styles:[""]}),i})();const CB=["tableIn"],QB=["tableOut"],dB=["paginatorIn"],pB=["paginatorOut"];function MB(i,d){if(1&i&&(A.TgZ(0,"div",3),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function mB(i,d){1&i&&A._UZ(0,"mat-progress-bar",34)}function IB(i,d){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Channel ID"),A.qZA())}const lo=function(i){return{width:i}};function vB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,lo,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.channel_id)}}function DB(i,d){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Peer Alias"),A.qZA())}function yB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,lo,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.alias)}}function xB(i,d){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Events"),A.qZA())}function FB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,t.events))}}function YB(i,d){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Amount (Sats)"),A.qZA())}function TB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function SB(i,d){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Fee (Sats)"),A.qZA())}function NB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function UB(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No incoming routing peer available."),A.qZA())}function bB(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting incoming routing peers..."),A.qZA())}function RB(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function LB(i,d){if(1&i&&(A.TgZ(0,"td",41),A.YNc(1,UB,2,0,"p",42),A.YNc(2,bB,2,0,"p",42),A.YNc(3,RB,2,1,"p",42),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const tc=function(i){return{"display-none":i}};function PB(i,d){if(1&i&&A._UZ(0,"tr",43),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,tc,(null==t.routingPeersIncoming?null:t.routingPeersIncoming.data)&&(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function zB(i,d){1&i&&A._UZ(0,"tr",44)}function GB(i,d){1&i&&A._UZ(0,"tr",45)}function HB(i,d){1&i&&A._UZ(0,"mat-progress-bar",34)}function OB(i,d){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Channel ID"),A.qZA())}function JB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,lo,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.channel_id)}}function kB(i,d){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Peer Alias"),A.qZA())}function jB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,lo,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.alias)}}function WB(i,d){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Events"),A.qZA())}function VB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,t.events))}}function KB(i,d){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Amount (Sats)"),A.qZA())}function ZB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function XB(i,d){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Fee (Sats)"),A.qZA())}function qB(i,d){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function _B(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No outgoing routing peer available."),A.qZA())}function $B(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting outgoing routing peers..."),A.qZA())}function Au(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function tu(i,d){if(1&i&&(A.TgZ(0,"td",41),A.YNc(1,_B,2,0,"p",42),A.YNc(2,$B,2,0,"p",42),A.YNc(3,Au,2,1,"p",42),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function eu(i,d){if(1&i&&A._UZ(0,"tr",43),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,tc,(null==t.routingPeersOutgoing?null:t.routingPeersOutgoing.data)&&(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function nu(i,d){1&i&&A._UZ(0,"tr",44)}function iu(i,d){1&i&&A._UZ(0,"tr",45)}const ru=function(i,d){return{"mt-2":i,"mt-1":d}},au=function(){return["no_incoming_event"]},ou=function(i){return{"mt-2":i}},su=function(){return["no_outgoing_event"]};function lu(i,d){if(1&i&&(A.TgZ(0,"div",4)(1,"div",5)(2,"div",6)(3,"div",7),A._uU(4,"Incoming"),A.qZA(),A._UZ(5,"div",8),A.qZA(),A.TgZ(6,"div",9),A.YNc(7,mB,1,0,"mat-progress-bar",10),A.TgZ(8,"table",11,12),A.ynx(10,13),A.YNc(11,IB,2,0,"th",14),A.YNc(12,vB,4,4,"td",15),A.BQk(),A.ynx(13,16),A.YNc(14,DB,2,0,"th",14),A.YNc(15,yB,4,4,"td",15),A.BQk(),A.ynx(16,17),A.YNc(17,xB,2,0,"th",18),A.YNc(18,FB,4,3,"td",15),A.BQk(),A.ynx(19,19),A.YNc(20,YB,2,0,"th",18),A.YNc(21,TB,4,4,"td",15),A.BQk(),A.ynx(22,20),A.YNc(23,SB,2,0,"th",18),A.YNc(24,NB,4,4,"td",15),A.BQk(),A.ynx(25,21),A.YNc(26,LB,4,3,"td",22),A.BQk(),A.YNc(27,PB,1,3,"tr",23),A.YNc(28,zB,1,0,"tr",24),A.YNc(29,GB,1,0,"tr",25),A.qZA()(),A._UZ(30,"mat-paginator",26,27),A.qZA(),A.TgZ(32,"div",28)(33,"div",6)(34,"div",7),A._uU(35,"Outgoing"),A.qZA(),A._UZ(36,"div",8),A.qZA(),A.TgZ(37,"div",29),A.YNc(38,HB,1,0,"mat-progress-bar",10),A.TgZ(39,"table",30,31),A.ynx(41,13),A.YNc(42,OB,2,0,"th",14),A.YNc(43,JB,4,4,"td",15),A.BQk(),A.ynx(44,16),A.YNc(45,kB,2,0,"th",14),A.YNc(46,jB,4,4,"td",15),A.BQk(),A.ynx(47,17),A.YNc(48,WB,2,0,"th",18),A.YNc(49,VB,4,3,"td",15),A.BQk(),A.ynx(50,19),A.YNc(51,KB,2,0,"th",18),A.YNc(52,ZB,4,4,"td",15),A.BQk(),A.ynx(53,20),A.YNc(54,XB,2,0,"th",18),A.YNc(55,qB,4,4,"td",15),A.BQk(),A.ynx(56,32),A.YNc(57,tu,4,3,"td",22),A.BQk(),A.YNc(58,eu,1,3,"tr",23),A.YNc(59,nu,1,0,"tr",24),A.YNc(60,iu,1,0,"tr",25),A.qZA(),A._UZ(61,"mat-paginator",26,33),A.qZA()()()),2&i){const t=A.oxw();A.xp6(2),A.Q6J("ngClass",A.WLB(18,ru,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),A.xp6(5),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.routingPeersIncoming),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(21,au)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),A.xp6(3),A.Q6J("ngClass",A.VKq(22,ou,t.screenSize!==t.screenSizeEnum.LG)),A.xp6(5),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.routingPeersOutgoing),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(24,su)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns),A.xp6(1),A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let cu=(()=>{class i{constructor(t,a,D,k){this.logger=t,this.commonService=a,this.store=D,this.camelCaseWithReplace=k,this.eventsData=[],this.selFilter="",this.nodePageDefs=r.At,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:r.IV,sortBy:"total_fee",sortOrder:r.Pi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new TA.by([]),this.routingPeersOutgoing=new TA.by([]),this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.pipe((0,ft.q)(1)).subscribe(t=>{var a;t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.Bn.UN_INITIATED&&!(null===(a=t.cln.forwardingHistory.listForwards)||void 0===a?void 0:a.length)&&this.store.dispatch((0,L.u0)({payload:{status:r.OO.SETTLED}}))}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.Bo).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.Bn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,t.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,a)=>JSON.stringify(t).toLowerCase().includes(a),this.routingPeersOutgoing.filterPredicate=(t,a)=>JSON.stringify(t).toLowerCase().includes(a)}loadRoutingPeersTable(t){var a,D;if(t.length>0){const k=this.groupRoutingPeers(t);this.routingPeersIncoming=new TA.by(k[0]),this.routingPeersIncoming.sort=this.sortIn,null===(a=this.routingPeersIncoming.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new TA.by(k[1]),this.routingPeersOutgoing.sort=this.sortOut,null===(D=this.routingPeersOutgoing.sort)||void 0===D||D.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new TA.by([]),this.routingPeersOutgoing=new TA.by([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(t){const a=[],D=[];return t.forEach(k=>{const nt=null==a?void 0:a.find(Lt=>Lt.channel_id===k.in_channel),wt=null==D?void 0:D.find(Lt=>Lt.channel_id===k.out_channel);nt?(nt.events++,nt.total_amount=+nt.total_amount+ +(k.in_msatoshi||0),nt.total_fee=(k.in_msatoshi||0)-(k.out_msatoshi||0)+ +nt.total_fee):a.push({channel_id:k.in_channel,alias:k.in_channel_alias,events:1,total_amount:k.in_msatoshi,total_fee:(k.in_msatoshi||0)-(k.out_msatoshi||0)}),wt?(wt.events++,wt.total_amount=+wt.total_amount+ +(k.out_msatoshi||0),wt.total_fee=(k.in_msatoshi||0)-(k.out_msatoshi||0)+ +wt.total_fee):D.push({channel_id:k.out_channel,alias:k.out_channel_alias,events:1,total_amount:k.out_msatoshi,total_fee:(k.in_msatoshi||0)-(k.out_msatoshi||0)})}),[this.commonService.sortDescByKey(a,"total_fee"),this.commonService.sortDescByKey(D,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(t,a){if(1&t&&(A.Gf(CB,5,ut.YE),A.Gf(QB,5,ut.YE),A.Gf(dB,5),A.Gf(pB,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sortIn=D.first),A.iGM(D=A.CRH())&&(a.sortOut=D.first),A.iGM(D=A.CRH())&&(a.paginatorIn=D.first),A.iGM(D=A.CRH())&&(a.paginatorOut=D.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Peers")}]),A.TTD],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["tableIn",""],["matColumnDef","channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","total_fee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginatorIn",""],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["tableOut",""],["matColumnDef","no_outgoing_event"],["paginatorOut",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,MB,2,1,"div",1),A.YNc(2,lu,63,25,"div",2),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage))},directives:[n.xw,n.Wh,gt.O5,n.yH,gt.mk,I.oO,dA.$V,u.pW,TA.BZ,ut.YE,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.JJ],styles:[""]}),i})();function gu(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",7),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().activeLink=k.link}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit,a=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",a.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Bu=(()=>{class i{constructor(t){this.router=t,this.faChartBar=h.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(a=>a instanceof ie.Av)).subscribe({next:a=>{const D=this.links.find(k=>a.urlAfterRedirects.includes(k.link));this.activeLink=D?D.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-reports"]],decls:10,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Reports"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),A.YNc(8,gu,2,3,"div",6),A.qZA(),A._UZ(9,"router-outlet"),A.qZA()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faChartBar),A.xp6(7),A.Q6J("ngForOf",a.links))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,st.BU,gt.sg,st.Nj,ie.rH,ie.lC],styles:[""]}),i})();var ec=Pt(7772),nc=Pt(7671),ic=Pt(1210);function uu(i,d){1&i&&(A.TgZ(0,"div",14),A._UZ(1,"mat-progress-bar",15),A.TgZ(2,"p"),A._uU(3,"Getting Forwarding History..."),A.qZA()())}function fu(i,d){if(1&i&&(A.TgZ(0,"div",16),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function hu(i,d){if(1&i&&(A.TgZ(0,"div",17),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=A.oxw();A.Q6J("@fadeIn",t.totalFeeMsat),A.xp6(1),A.AsE("",A.xi3(2,3,t.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.lcZ(3,6,t.filteredEventsBySelectedPeriod.length||0)," Events")}}function Eu(i,d){1&i&&(A.TgZ(0,"div",14),A._uU(1,"No routing report for the selected period"),A.qZA())}function wu(i,d){if(1&i&&(A.TgZ(0,"span")(1,"span",20),A._uU(2),A.ALo(3,"number"),A.qZA(),A.TgZ(4,"span",20),A._uU(5),A.ALo(6,"number"),A.qZA()()),2&i){const t=d.model,a=A.oxw(2);A.xp6(2),A.hij("Events: ",A.lcZ(3,2,(a.selReportBy===a.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),A.xp6(3),A.hij("Fee: ",A.xi3(6,4,(a.selReportBy===a.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function Cu(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"ngx-charts-bar-vertical",18),A.NdJ("select",function(D){return A.CHM(t),A.oxw().onChartBarSelected(D)})("mouseup",function(D){return A.CHM(t),A.oxw().onChartMouseUp(D)}),A.YNc(1,wu,7,7,"ng-template",null,19,A.W1O),A.qZA()}if(2&i){const t=A.oxw();A.Q6J("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function Qu(i,d){if(1&i&&A._UZ(0,"rtl-cln-forwarding-history",21),2&i){const t=A.oxw();A.Q6J("pageId","reports")("tableId","routing")("eventsData",t.filteredEventsBySelectedPeriod)("selFilter",t.eventFilterValue)}}let du=(()=>{class i{constructor(t,a,D,k){this.logger=t,this.commonService=a,this.store=D,this.dataService=k,this.reportPeriod=r.op[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=r.Xr,this.selReportBy=r.Xr.FEES,this.totalFeeMsat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.cu.XS||this.screenSize===r.cu.SM),this.store.pipe((0,ft.q)(1)).subscribe(t=>{var a;t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.Bn.UN_INITIATED&&!(null===(a=t.cln.forwardingHistory.listForwards)||void 0===a?void 0:a.length)&&this.store.dispatch((0,L.u0)({payload:{status:r.OO.SETTLED}}))}),this.store.select(w.Bo).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{t.forwardingHistory.status===r.OO.SETTLED&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===r.Bn.COMPLETED&&(this.events=t.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(t))}),this.commonService.containerSizeUpdated.pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case r.cu.MD:this.screenPaddingX=t.width/10;break;case r.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(t,a){const D=Math.round(t.getTime()/1e3),k=Math.round(a.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(nt=>{nt.received_time&&nt.received_time>=D&&nt.received_time0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===r.op[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+r.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){var a,D;const k=Math.round(t.getTime()/1e3),nt=[];if(this.totalFeeMsat=0,this.reportPeriod===r.op[1]){for(let wt=0;wt<12;wt++)nt.push({name:r.gg[wt].name,value:0,extra:{totalEvents:0}});null===(a=this.filteredEventsBySelectedPeriod)||void 0===a||a.map(wt=>{const Lt=wt.received_time?new Date(1e3*+wt.received_time).getMonth():12;return nt[Lt].value=wt.fee?nt[Lt].value+ +wt.fee/1e3:nt[Lt].value,nt[Lt].extra.totalEvents=nt[Lt].extra.totalEvents+1,this.totalFeeMsat=wt.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +wt.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}else{for(let wt=0;wt{const Lt=wt.received_time?Math.floor((+wt.received_time-k)/this.secondsInADay):0;return nt[Lt].value=wt.fee?nt[Lt].value+ +wt.fee/1e3:nt[Lt].value,nt[Lt].extra.totalEvents=nt[Lt].extra.totalEvents+1,this.totalFeeMsat=wt.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +wt.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}return nt}prepareEventsReport(t){var a,D;const k=Math.round(t.getTime()/1e3),nt=[];if(this.totalFeeMsat=0,this.reportPeriod===r.op[1]){for(let wt=0;wt<12;wt++)nt.push({name:r.gg[wt].name,value:0,extra:{totalFees:0}});null===(a=this.filteredEventsBySelectedPeriod)||void 0===a||a.map(wt=>{const Lt=wt.received_time?new Date(1e3*+wt.received_time).getMonth():12;return nt[Lt].value=nt[Lt].value+1,nt[Lt].extra.totalFees=wt.fee?nt[Lt].extra.totalFees+ +wt.fee/1e3:nt[Lt].extra.totalFees,this.totalFeeMsat=wt.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +wt.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}else{for(let wt=0;wt{const Lt=wt.received_time?Math.floor((+wt.received_time-k)/this.secondsInADay):0;return nt[Lt].value=nt[Lt].value+1,nt[Lt].extra.totalFees=wt.fee?nt[Lt].extra.totalFees+ +wt.fee/1e3:nt[Lt].extra.totalFees,this.totalFeeMsat=wt.fee?(this.totalFeeMsat?this.totalFeeMsat:0)+ +wt.fee:this.totalFeeMsat,this.filteredEventsBySelectedPeriod})}return nt}onSelectionChange(t){const a=t.selDate.getMonth(),D=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.op[1]?(this.startDate=new Date(D,0,1,0,0,0),this.endDate=new Date(D,11,31,23,59,59)):(this.startDate=new Date(D,a,1,0,0,0),this.endDate=new Date(D,a,this.getMonthDays(a,D),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?r.gg[t].days+1:r.gg[t].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(St.D))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-routing-report"]],hostBindings:function(t,a){1&t&&A.NdJ("mouseup",function(k){return a.onChartMouseUp(k)})},decls:19,vars:9,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1 error-border",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],[3,"pageId","tableId","eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["mode","indeterminate"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1","error-border"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],[1,"one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),A.NdJ("stepChanged",function(k){return a.onSelectionChange(k)}),A.qZA(),A.TgZ(2,"div",2)(3,"mat-radio-group",3),A.NdJ("ngModelChange",function(k){return a.selReportBy=k})("change",function(){return a.onSelReportByChange()}),A.TgZ(4,"span",4),A._uU(5,"Report By: "),A.qZA(),A.TgZ(6,"mat-radio-button",5),A._uU(7,"Fees"),A.qZA(),A.TgZ(8,"mat-radio-button",6),A._uU(9,"Events"),A.qZA()()(),A.TgZ(10,"div",7),A.YNc(11,uu,4,0,"div",8),A.YNc(12,fu,2,1,"div",9),A.YNc(13,hu,4,8,"div",10),A.YNc(14,Eu,2,0,"div",8),A.TgZ(15,"div",11),A.YNc(16,Cu,3,11,"ngx-charts-bar-vertical",12),A.qZA(),A.TgZ(17,"div",11),A.YNc(18,Qu,1,4,"rtl-cln-forwarding-history",13),A.qZA()()()),2&t&&(A.xp6(3),A.Q6J("ngModel",a.selReportBy),A.xp6(3),A.s9C("value",a.reportBy.FEES),A.xp6(2),A.s9C("value",a.reportBy.EVENTS),A.xp6(3),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.ERROR),A.xp6(1),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.COMPLETED&&a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),A.xp6(1),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.COMPLETED&&(a.routingReportData.length<=0||a.filteredEventsBySelectedPeriod.length<=0)),A.xp6(2),A.Q6J("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),A.xp6(2),A.Q6J("ngIf",a.filteredEventsBySelectedPeriod&&a.filteredEventsBySelectedPeriod.length>0))},directives:[n.xw,n.Wh,n.yH,nc.D,jt.VQ,x.JJ,x.On,jt.U0,gt.O5,u.pW,ic.K$,$0],pipes:[gt.JJ],styles:[""],data:{animation:[ec.J]}}),i})();var pu=Pt(165);function Mu(i,d){if(1&i&&(A.TgZ(0,"div",10),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.AsE(" Paid ",A.xi3(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.lcZ(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function mu(i,d){if(1&i&&(A.TgZ(0,"div",10),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.AsE(" Received ",A.xi3(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.lcZ(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Iu(i,d){if(1&i&&(A.TgZ(0,"div",8),A.YNc(1,Mu,4,7,"div",9),A.YNc(2,mu,4,7,"div",9),A.qZA()),2&i){const t=A.oxw();A.Q6J("@fadeIn",t.transactionsReportSummary),A.xp6(1),A.Q6J("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod),A.xp6(1),A.Q6J("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function vu(i,d){1&i&&(A.TgZ(0,"div",11),A._uU(1,"No transactions report for the selected period"),A.qZA())}function Du(i,d){if(1&i&&(A.TgZ(0,"span",14),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=d.model;A.xp6(1),A.HOy("",t.name,": ",A.xi3(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",A.lcZ(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function yu(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"ngx-charts-bar-vertical-2d",12),A.NdJ("select",function(D){return A.CHM(t),A.oxw().onChartBarSelected(D)})("mouseup",function(D){return A.CHM(t),A.oxw().onChartMouseUp(D)}),A.YNc(1,Du,4,9,"ng-template",null,13,A.W1O),A.qZA()}if(2&i){const t=A.oxw();A.Q6J("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:4)}}function xu(i,d){if(1&i&&A._UZ(0,"rtl-transactions-report-table",15),2&i){const t=A.oxw();A.Q6J("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let Fu=(()=>{class i{constructor(t,a,D){this.logger=t,this.commonService=a,this.store=D,this.scrollRanges=r.op,this.reportPeriod=r.op[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:r.IV,sortBy:"date",sortOrder:r.Pi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.cu.XS||this.screenSize===r.cu.SM),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.PP).pipe((0,g.R)(this.unSubs[1]),(0,f.M)(this.store.select(w.gc))).subscribe(([t,a])=>{this.payments=t.payments,this.invoices=a.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case r.cu.MD:this.screenPaddingX=t.width/10;break;case r.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===r.op[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+r.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,a){var D,k;const nt=Math.round(t.getTime()/1e3),wt=Math.round(a.getTime()/1e3),Lt=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const me=null===(D=this.payments)||void 0===D?void 0:D.filter(oe=>"complete"===oe.status&&oe.created_at&&oe.created_at>=nt&&oe.created_at"paid"===oe.status&&oe.paid_at&&oe.paid_at>=nt&&oe.paid_at{const Xe=new Date(1e3*(oe.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(oe.msatoshi_sent||0),Lt[Xe].series[0].value=Lt[Xe].series[0].value+(oe.msatoshi_sent||0)/1e3,Lt[Xe].series[0].extra.total=Lt[Xe].series[0].extra.total+1,this.transactionsReportSummary}),null==cn||cn.map(oe=>{const Xe=new Date(1e3*+(oe.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(oe.msatoshi_received||0),Lt[Xe].series[1].value=Lt[Xe].series[1].value+(oe.msatoshi_received||0)/1e3,Lt[Xe].series[1].extra.total=Lt[Xe].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let oe=0;oe{const Xe=Math.floor((+(oe.created_at||0)-nt)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(oe.msatoshi_sent||0),Lt[Xe].series[0].value=Lt[Xe].series[0].value+(oe.msatoshi_sent||0)/1e3,Lt[Xe].series[0].extra.total=Lt[Xe].series[0].extra.total+1,this.transactionsReportSummary}),null==cn||cn.map(oe=>{const Xe=Math.floor((+(oe.paid_at||0)-nt)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(oe.msatoshi_received||0),Lt[Xe].series[1].value=Lt[Xe].series[1].value+(oe.msatoshi_received||0)/1e3,Lt[Xe].series[1].extra.total=Lt[Xe].series[1].extra.total+1,this.transactionsReportSummary})}return Lt}prepareTableData(){var t;return null===(t=this.transactionsReportData)||void 0===t?void 0:t.reduce((a,D)=>D.series[0].extra.total>0||D.series[1].extra.total>0?a.concat({date:D.date,amount_paid:D.series[0].value,num_payments:D.series[0].extra.total,amount_received:D.series[1].value,num_invoices:D.series[1].extra.total}):a,[])}onSelectionChange(t){const a=t.selDate.getMonth(),D=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.op[1]?(this.startDate=new Date(D,0,1,0,0,0),this.endDate=new Date(D,11,31,23,59,59)):(this.startDate=new Date(D,a,1,0,0,0),this.endDate=new Date(D,a,this.getMonthDays(a,D),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?r.gg[t].days+1:r.gg[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(t,a){1&t&&A.NdJ("mouseup",function(k){return a.onChartMouseUp(k)})},decls:9,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),A.NdJ("stepChanged",function(k){return a.onSelectionChange(k)}),A.qZA(),A.TgZ(2,"div",2),A.YNc(3,Iu,3,3,"div",3),A.YNc(4,vu,2,0,"div",4),A.TgZ(5,"div",5),A.YNc(6,yu,3,13,"ngx-charts-bar-vertical-2d",6),A.qZA(),A.TgZ(7,"div",5),A.YNc(8,xu,1,5,"rtl-transactions-report-table",7),A.qZA()()()),2&t&&(A.xp6(3),A.Q6J("ngIf",a.transactionsNonZeroReportData.length>0),A.xp6(1),A.Q6J("ngIf",a.transactionsNonZeroReportData.length<=0),A.xp6(2),A.Q6J("ngIf",a.transactionsNonZeroReportData.length>0),A.xp6(2),A.Q6J("ngIf",a.transactionsNonZeroReportData.length>0))},directives:[n.xw,n.Wh,n.yH,nc.D,gt.O5,ic.H5,pu.g],pipes:[gt.JJ],styles:[""],data:{animation:[ec.J]}}),i})();var Le=Pt(1643),Yu=Pt(9442);function Tu(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",8),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().activeLink=k.link}),A._uU(1),A.qZA()}if(2&i){const t=d.$implicit,a=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",a.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Su=(()=>{class i{constructor(t){this.router=t,this.faSearch=h.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new l.x,new l.x,new l.x,new l.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(a=>a instanceof ie.Av)).subscribe({next:a=>{const D=this.links.find(k=>a.urlAfterRedirects.includes(k.link));this.activeLink=D?D.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(ie.F0))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-graph"]],decls:11,vars:2,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Graph Lookups"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),A.YNc(8,Tu,2,3,"div",6),A.qZA(),A.TgZ(9,"div",7),A._UZ(10,"router-outlet"),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faSearch),A.xp6(7),A.Q6J("ngForOf",a.links))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,st.BU,gt.sg,st.Nj,ie.rH,n.yH,ie.lC],styles:[""]}),i})();var Nu=Pt(4641),Uu=Pt(8493);function bu(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.offerError)}}function Ru(i,d){if(1&i&&(A.TgZ(0,"div",21),A._UZ(1,"fa-icon",22),A.YNc(2,bu,2,1,"span",23),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.offerError)}}let Lu=(()=>{class i{constructor(t,a,D,k,nt,wt){this.dialogRef=t,this.data=a,this.store=D,this.decimalPipe=k,this.commonService=nt,this.actions=wt,this.faExclamationTriangle=h.eHv,this.selNode={},this.description="",this.vendor="",this.offerValueHint="",this.information={},this.pageSize=r.IV,this.offerError="",this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t,this.vendor=this.information.alias}),this.actions.pipe((0,g.R)(this.unSubs[2]),(0,ot.h)(t=>t.type===r.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===t.payload.action&&(t.payload.status===r.Bn.ERROR&&(this.offerError=t.payload.message),t.payload.status===r.Bn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="",this.store.dispatch((0,L.dh)({payload:{amount:this.offerValue?this.offerValue+"sats":"any",description:this.description,vendor:this.vendor}}))}resetData(){this.description="",this.vendor=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,r.NT.SATS,r.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,g.R)(this.unSubs[3])).subscribe({next:t=>{this.offerValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,r.Xz.OTHER)+" "+t.unit},error:t=>{this.offerValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(B.yh),A.Y36(gt.JJ),A.Y36(c.v),A.Y36(H.eX))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-create-offer"]],decls:28,vars:8,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["addOfferForm","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","placeholder","Description","tabindex","1","name","description",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxFlex","40"],["matInput","","placeholder","Amount","type","number","tabindex","2","name","offerValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","58","fxLayoutAlign","start end"],["matInput","","placeholder","Vendor","tabindex","3","name","vendor",3,"ngModel","ngModelChange"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5,"Create Offer"),A.qZA()(),A.TgZ(6,"button",5),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),A.NdJ("ngModelChange",function(k){return a.description=k}),A.qZA()(),A.TgZ(13,"div",11)(14,"mat-form-field",12)(15,"input",13),A.NdJ("ngModelChange",function(k){return a.offerValue=k})("keyup",function(){return a.onOfferValueChange()}),A.qZA(),A.TgZ(16,"span",14),A._uU(17," Sats "),A.qZA(),A.TgZ(18,"mat-hint"),A._uU(19),A.qZA()(),A.TgZ(20,"mat-form-field",15)(21,"input",16),A.NdJ("ngModelChange",function(k){return a.vendor=k}),A.qZA()()(),A.YNc(22,Ru,3,2,"div",17),A.TgZ(23,"div",18)(24,"button",19),A.NdJ("click",function(){return a.resetData()}),A._uU(25,"Clear Field"),A.qZA(),A.TgZ(26,"button",20),A.NdJ("click",function(){return a.onAddOffer()}),A._uU(27,"Create Offer"),A.qZA()()()()()()),2&t&&(A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(6),A.Q6J("ngModel",a.description),A.xp6(3),A.Q6J("ngModel",a.offerValue)("step",100)("min",1),A.xp6(4),A.Oqu(a.offerValueHint),A.xp6(2),A.Q6J("ngModel",a.vendor),A.xp6(1),A.Q6J("ngIf",""!==a.offerError))},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,Ft.ZT,M.dn,x._Y,x.JL,x.F,X.KE,wA.Nt,x.Fj,EA.h,x.JJ,x.On,x.wV,x.qQ,NA.q,X.R9,X.bx,gt.O5,C.BN],styles:[""]}),i})();var rc=Pt(1462);function Pu(i,d){if(1&i&&(A.TgZ(0,"mat-option",34),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function zu(i,d){1&i&&A._UZ(0,"mat-progress-bar",35)}function Gu(i,d){1&i&&A._UZ(0,"th",36)}const ac=function(i){return{"mr-0":i}};function Hu(i,d){if(1&i&&A._UZ(0,"span",40),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,ac,t.screenSize===t.screenSizeEnum.XS))}}function Ou(i,d){if(1&i&&A._UZ(0,"span",41),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,ac,t.screenSize===t.screenSizeEnum.XS))}}function Ju(i,d){if(1&i&&(A.TgZ(0,"td",37),A.YNc(1,Hu,1,3,"span",38),A.YNc(2,Ou,1,3,"span",39),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Q6J("ngIf",t.active),A.xp6(1),A.Q6J("ngIf",!t.active)}}function ku(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Offer ID"),A.qZA())}const oc=function(i){return{width:i}};function ju(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,oc,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.hij(" ",t.offer_id," ")}}function Wu(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Single Use"),A.qZA())}function Vu(i,d){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t.single_use?"Yes":"No")}}function Ku(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Used"),A.qZA())}function Zu(i,d){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ",t.used?"Yes":"No"," ")}}function Xu(i,d){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Invoice"),A.qZA())}function qu(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,oc,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.hij(" ",t.bolt12," ")}}function _u(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",45)(1,"div",46)(2,"mat-select",47),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",48),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function $u(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",48),A.NdJ("click",function(){A.CHM(t);const D=A.oxw().$implicit;return A.oxw().onDisableOffer(D)}),A._uU(1,"Disable Offer"),A.qZA()}}function Af(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",48),A.NdJ("click",function(){A.CHM(t);const D=A.oxw().$implicit;return A.oxw().onPrintOffer(D)}),A._uU(1,"Export QR code"),A.qZA()}}function tf(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",49)(1,"div",46)(2,"mat-select",50),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",48),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onOfferClick(k)}),A._uU(5,"View Info"),A.qZA(),A.YNc(6,$u,2,0,"mat-option",51),A.YNc(7,Af,2,0,"mat-option",51),A.qZA()()()}if(2&i){const t=d.$implicit;A.xp6(6),A.Q6J("ngIf",t.active),A.xp6(1),A.Q6J("ngIf",t.active)}}function ef(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No offer available."),A.qZA())}function nf(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting offers..."),A.qZA())}function rf(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function af(i,d){if(1&i&&(A.TgZ(0,"td",52),A.YNc(1,ef,2,0,"p",53),A.YNc(2,nf,2,0,"p",53),A.YNc(3,rf,2,1,"p",53),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const of=function(i){return{"display-none":i}};function sf(i,d){if(1&i&&A._UZ(0,"tr",54),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,of,(null==t.offers?null:t.offers.data)&&(null==t.offers||null==t.offers.data?null:t.offers.data.length)>0))}}function lf(i,d){1&i&&A._UZ(0,"tr",55)}function cf(i,d){1&i&&A._UZ(0,"tr",56)}const gf=function(){return["all"]},Bf=function(i){return{"error-border":i}},uf=function(){return["no_offer"]};let ff=(()=>{class i{constructor(t,a,D,k,nt,wt,Lt){this.logger=t,this.store=a,this.commonService=D,this.rtlEffects=k,this.dataService=nt,this.decimalPipe=wt,this.camelCaseWithReplace=Lt,this.faHistory=h.qO$,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:r.IV,sortBy:"offer_id",sortOrder:r.Pi.DESCENDING},this.selNode={},this.newlyAddedOfferMemo="",this.newlyAddedOfferValue=0,this.description="",this.offerValue=null,this.offerValueHint="",this.displayedColumns=[],this.offerPaymentReq="",this.offerJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(w.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.Y_).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=t.offers||[],this.offerJSONArr&&this.offerJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offerJSONArr&&this.offerJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,qA.qR)({payload:{data:{pageSize:this.pageSize,component:Lu}}}))}onOfferClick(t){this.store.dispatch((0,qA.qR)({payload:{data:{offer:{used:t.used,single_use:t.single_use,active:t.active,offer_id:t.offer_id,bolt12:t.bolt12,bolt12_unsigned:t.bolt12_unsigned},newlyAdded:!1,component:rc.k}}}))}onDisableOffer(t){this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(t.offer_id||t.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[4])).subscribe(a=>{a&&this.store.dispatch((0,L.i9)({payload:{offer_id:t.offer_id}}))})}onPrintOffer(t){this.dataService.decodePayment(t.bolt12,!1).pipe((0,ft.q)(1)).subscribe(a=>{a.offer_id&&!a.amount_msat?(a.amount_msat="0msat",a.amount=0):a.amount=a.amount?+a.amount:a.amount_msat?+a.amount_msat.slice(0,-4):null;const D={pageSize:"A5",pageOrientation:"portrait",pageMargins:[10,50,10,50],background:{svg:'\n \n \n \n \n \n ',width:249,height:333,absolutePosition:{x:84,y:160}},header:{text:a.vendor||a.issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:a.description?a.description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:t.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:(null==a?void 0:a.amount_msat)&&0!==(null==a?void 0:a.amount)?this.decimalPipe.transform((a.amount||0)/1e3)+" SATS":"Open amount",fontSize:20,bold:!1,color:"white",alignment:"center",absolutePosition:{x:0,y:430}},{text:"SCAN TO PAY",fontSize:22,bold:!0,color:"white",alignment:"center",absolutePosition:{x:0,y:455}}],footer:{svg:'\n \n \n \n \n ',alignment:"center"}};Nu.createPdf(D,null,null,Uu.I.vfs).download("Offer-"+(a&&a.description?a.description:t.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offers.filterPredicate=(t,a)=>{let D="";switch(this.selFilterBy){case"all":D=(t.active?" active":" inactive")+(t.used?" yes":" no")+(t.single_use?" single":" multiple")+JSON.stringify(t).toLowerCase(),("active"===a||"inactive"===a||"single"===a||"multiple"===a)&&(a=" "+a);break;case"active":D=(null==t?void 0:t.active)?"active":"inactive";break;default:D=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===D.indexOf(a):D.includes(a)}}loadOffersTable(t){var a;this.offers=new TA.by(t?[...t]:[]),this.offers.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,this.offers.sort=this.sort,null===(a=this.offers.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.offers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offers.data&&this.offers.data.length>0&&this.commonService.downloadFile(this.offers.data,"Offers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(c.v),A.Y36(Ut.V),A.Y36(St.D),A.Y36(gt.JJ),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-offers-table"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Offers")}])],decls:44,vars:17,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","offer_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","single_use"],["matColumnDef","used"],["matColumnDef","bolt12"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Inactive","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return a.openCreateOfferModal()}),A._uU(3,"Create Offer"),A.qZA()(),A.TgZ(4,"div",3)(5,"div",4)(6,"div",5),A._UZ(7,"fa-icon",6),A.TgZ(8,"span",7),A._uU(9,"Offers History"),A.qZA()(),A.TgZ(10,"div",8)(11,"mat-form-field",9)(12,"mat-select",10),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(13,Pu,2,2,"mat-option",11),A.qZA()(),A.TgZ(14,"mat-form-field",9)(15,"input",12),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.TgZ(16,"div",13),A.YNc(17,zu,1,0,"mat-progress-bar",14),A.TgZ(18,"table",15,16),A.ynx(20,17),A.YNc(21,Gu,1,0,"th",18),A.YNc(22,Ju,3,2,"td",19),A.BQk(),A.ynx(23,20),A.YNc(24,ku,2,0,"th",21),A.YNc(25,ju,4,4,"td",19),A.BQk(),A.ynx(26,22),A.YNc(27,Wu,2,0,"th",21),A.YNc(28,Vu,2,1,"td",19),A.BQk(),A.ynx(29,23),A.YNc(30,Ku,2,0,"th",21),A.YNc(31,Zu,2,1,"td",19),A.BQk(),A.ynx(32,24),A.YNc(33,Xu,2,0,"th",21),A.YNc(34,qu,4,4,"td",19),A.BQk(),A.ynx(35,25),A.YNc(36,_u,6,0,"th",26),A.YNc(37,tf,8,2,"td",27),A.BQk(),A.ynx(38,28),A.YNc(39,af,4,3,"td",29),A.BQk(),A.YNc(40,sf,1,3,"tr",30),A.YNc(41,lf,1,0,"tr",31),A.YNc(42,cf,1,0,"tr",32),A.qZA()(),A._UZ(43,"mat-paginator",33),A.qZA()()),2&t&&(A.xp6(7),A.Q6J("icon",a.faHistory),A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(13,gf).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(2),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",a.offers)("ngClass",A.VKq(14,Bf,""!==a.errorMessage)),A.xp6(22),A.Q6J("matFooterRowDef",A.DdM(16,uf)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.yH,n.Wh,Y.lW,C.BN,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,gt.O5,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,cA.gM,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),i})();function hf(i,d){if(1&i&&(A.TgZ(0,"mat-option",34),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function Ef(i,d){1&i&&A._UZ(0,"mat-progress-bar",35)}function wf(i,d){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Updated At"),A.qZA())}function Cf(i,d){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,t.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function Qf(i,d){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Title"),A.qZA())}const k0=function(i){return{width:i}};function df(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",38)(2,"span",39),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,k0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.title)}}function pf(i,d){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Description"),A.qZA())}function Mf(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",38)(2,"span",39),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,k0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.description)}}function mf(i,d){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Vendor"),A.qZA())}function If(i,d){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(t.vendor)}}function vf(i,d){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Invoice"),A.qZA())}function Df(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"div",38)(2,"span",39),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,k0,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(t.bolt12)}}function yf(i,d){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Amount (Sats)"),A.qZA())}function xf(i,d){if(1&i&&(A.TgZ(0,"td",37)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(0===t.amountMSat?"Open":A.lcZ(3,1,t.amountMSat/1e3))}}function Ff(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",42)(1,"div",43)(2,"mat-select",44),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",45),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Yf(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",46)(1,"div",43)(2,"mat-select",47),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",45),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onOfferBookmarkClick(k)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",45),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onRePayOffer(k)}),A._uU(7,"Pay Again"),A.qZA(),A.TgZ(8,"mat-option",45),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onDeleteBookmark(k)}),A._uU(9,"Delete Bookmark"),A.qZA()()()()}}function Tf(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No offer bookmarked."),A.qZA())}function Sf(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting offer bookmarks..."),A.qZA())}function Nf(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function Uf(i,d){if(1&i&&(A.TgZ(0,"td",48),A.YNc(1,Tf,2,0,"p",49),A.YNc(2,Sf,2,0,"p",49),A.YNc(3,Nf,2,1,"p",49),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const bf=function(i){return{"display-none":i}};function Rf(i,d){if(1&i&&A._UZ(0,"tr",50),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,bf,(null==t.offersBookmarks?null:t.offersBookmarks.data)&&(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)>0))}}function Lf(i,d){1&i&&A._UZ(0,"tr",51)}function Pf(i,d){1&i&&A._UZ(0,"tr",52)}const zf=function(){return["all"]},Gf=function(i){return{"error-border":i}},Hf=function(){return["no_offer"]};let Of=(()=>{class i{constructor(t,a,D,k,nt,wt){this.logger=t,this.store=a,this.commonService=D,this.rtlEffects=k,this.datePipe=nt,this.camelCaseWithReplace=wt,this.faHistory=h.qO$,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:r.IV,sortBy:"lastUpdatedAt",sortOrder:r.Pi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new TA.by([]),this.offersBookmarksJSONArr=[],this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.EQ).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=t.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(t){this.store.dispatch((0,qA.qR)({payload:{data:{offer:{bolt12:t.bolt12},newlyAdded:!1,component:rc.k}}}))}onDeleteBookmark(t){this.store.dispatch((0,qA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(t.title||t.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[2])).subscribe(a=>{a&&this.store.dispatch((0,L._9)({payload:{bolt12:t.bolt12}}))})}onRePayOffer(t){this.store.dispatch((0,qA.qR)({payload:{data:{paymentType:r.IX.OFFER,bolt12:t.bolt12,offerTitle:t.title,component:_}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(t,a)=>{var D;let k="";switch(this.selFilterBy){case"all":k=JSON.stringify(t).toLowerCase();break;case"lastUpdatedAt":k=(null===(D=this.datePipe.transform(new Date(t.lastUpdatedAt||0),"dd/MMM/y HH:mm"))||void 0===D?void 0:D.toLowerCase())||"";break;case"amountMSat":k=(t.amountMSat&&0!==t.amountMSat?(t.amountMSat/1e3).toString():"Open")||"";break;default:k=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return k.includes(a)}}loadOffersTable(t){var a;this.offersBookmarks=new TA.by(t?[...t]:[]),this.offersBookmarks.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,this.offersBookmarks.sort=this.sort,null===(a=this.offersBookmarks.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.offersBookmarks.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offersBookmarks.data&&this.offersBookmarks.data.length>0&&this.commonService.downloadFile(this.offersBookmarks.data,"OfferBookmarks")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(c.v),A.Y36(Ut.V),A.Y36(gt.uU),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Offer Bookmarks")}])],decls:45,vars:17,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","vendor"],["matColumnDef","bolt12"],["matColumnDef","amountMSat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"div",1),A.TgZ(2,"div",2)(3,"div",3)(4,"div",4),A._UZ(5,"fa-icon",5),A.TgZ(6,"span",6),A._uU(7,"Offer Bookmarks"),A.qZA()(),A.TgZ(8,"div",7)(9,"mat-form-field",8)(10,"mat-select",9),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(11,hf,2,2,"mat-option",10),A.qZA()(),A.TgZ(12,"mat-form-field",8)(13,"input",11),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.TgZ(14,"div",12),A.YNc(15,Ef,1,0,"mat-progress-bar",13),A.TgZ(16,"table",14,15),A.ynx(18,16),A.YNc(19,wf,2,0,"th",17),A.YNc(20,Cf,3,4,"td",18),A.BQk(),A.ynx(21,19),A.YNc(22,Qf,2,0,"th",17),A.YNc(23,df,4,4,"td",18),A.BQk(),A.ynx(24,20),A.YNc(25,pf,2,0,"th",17),A.YNc(26,Mf,4,4,"td",18),A.BQk(),A.ynx(27,21),A.YNc(28,mf,2,0,"th",17),A.YNc(29,If,2,1,"td",18),A.BQk(),A.ynx(30,22),A.YNc(31,vf,2,0,"th",17),A.YNc(32,Df,4,4,"td",18),A.BQk(),A.ynx(33,23),A.YNc(34,yf,2,0,"th",24),A.YNc(35,xf,4,3,"td",18),A.BQk(),A.ynx(36,25),A.YNc(37,Ff,6,0,"th",26),A.YNc(38,Yf,10,0,"td",27),A.BQk(),A.ynx(39,28),A.YNc(40,Uf,4,3,"td",29),A.BQk(),A.YNc(41,Rf,1,3,"tr",30),A.YNc(42,Lf,1,0,"tr",31),A.YNc(43,Pf,1,0,"tr",32),A.qZA()(),A._UZ(44,"mat-paginator",33),A.qZA()()),2&t&&(A.xp6(5),A.Q6J("icon",a.faHistory),A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(13,zf).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(2),A.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",a.offersBookmarks)("ngClass",A.VKq(14,Gf,""!==a.errorMessage)),A.xp6(25),A.Q6J("matFooterRowDef",A.DdM(16,Hf)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.yH,n.Wh,C.BN,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,gt.O5,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.uU,gt.JJ],styles:[""]}),i})();function Jf(i,d){if(1&i&&(A.TgZ(0,"div",5),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Oqu(t.errorMessage)}}function kf(i,d){if(1&i&&(A.TgZ(0,"mat-option",16),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}const jf=function(){return["all"]};function Wf(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"div",6)(1,"div",7),A._UZ(2,"fa-icon",8),A.TgZ(3,"span"),A._uU(4,"Maximum 1,000 local failed transactions only."),A.qZA()(),A.TgZ(5,"div",9),A._UZ(6,"div",10),A.TgZ(7,"div",11)(8,"mat-form-field",12)(9,"mat-select",13),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilterBy=D})("selectionChange",function(){A.CHM(t);const D=A.oxw();return D.selFilter="",D.applyFilter()}),A.YNc(10,kf,2,2,"mat-option",14),A.qZA()(),A.TgZ(11,"mat-form-field",12)(12,"input",15),A.NdJ("ngModelChange",function(D){return A.CHM(t),A.oxw().selFilter=D})("input",function(){return A.CHM(t),A.oxw().applyFilter()})("keyup",function(){return A.CHM(t),A.oxw().applyFilter()}),A.qZA()()()()()}if(2&i){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.faExclamationTriangle),A.xp6(7),A.Q6J("ngModel",t.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(4,jf).concat(t.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",t.selFilter)}}function Vf(i,d){1&i&&A._UZ(0,"mat-progress-bar",40)}function Kf(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Received Time"),A.qZA())}function Zf(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Xf(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"In Channel ID"),A.qZA())}function qf(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel)}}function _f(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"In Channel"),A.qZA())}const sc=function(i){return{width:i}};function $f(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,sc,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.in_channel_alias)}}function Ah(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Out Channel ID"),A.qZA())}function th(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel)}}function eh(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Out Channel"),A.qZA())}function nh(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,sc,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.out_channel_alias)}}function ih(i,d){1&i&&(A.TgZ(0,"th",45),A._uU(1,"Amount In (Sats)"),A.qZA())}function rh(i,d){if(1&i&&(A.TgZ(0,"td",42)(1,"span",46),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.in_msatoshi)/1e3,(null==t?null:t.in_msatoshi)<1e3?"1.0-4":"1.0-0"))}}function ah(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Style"),A.qZA())}function oh(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.style)}}function sh(i,d){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Fail Reason"),A.qZA())}function lh(i,d){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw(2);A.xp6(1),A.Oqu(a.CLNFailReason[null==t?null:t.failreason])}}function ch(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",47)(1,"div",48)(2,"mat-select",49),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",50),A.NdJ("click",function(){return A.CHM(t),A.oxw(2).onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function gh(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",51)(1,"button",52),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw(2).onFailedLocalEventClick(k)}),A._uU(2,"View Info"),A.qZA()()}}function Bh(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No failed transaction available."),A.qZA())}function uh(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting failed transactions..."),A.qZA())}function fh(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(3);A.xp6(1),A.Oqu(t.errorMessage)}}function hh(i,d){if(1&i&&(A.TgZ(0,"td",53),A.YNc(1,Bh,2,0,"p",54),A.YNc(2,uh,2,0,"p",54),A.YNc(3,fh,2,1,"p",54),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const Eh=function(i){return{"display-none":i}};function wh(i,d){if(1&i&&A._UZ(0,"tr",55),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Eh,(null==t.failedLocalForwardingEvents?null:t.failedLocalForwardingEvents.data)&&(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)>0))}}function Ch(i,d){1&i&&A._UZ(0,"tr",56)}function Qh(i,d){1&i&&A._UZ(0,"tr",57)}const dh=function(){return["no_event"]};function ph(i,d){if(1&i&&(A.TgZ(0,"div",17),A.YNc(1,Vf,1,0,"mat-progress-bar",18),A.TgZ(2,"table",19,20),A.ynx(4,21),A.YNc(5,Kf,2,0,"th",22),A.YNc(6,Zf,3,4,"td",23),A.BQk(),A.ynx(7,24),A.YNc(8,Xf,2,0,"th",22),A.YNc(9,qf,2,1,"td",23),A.BQk(),A.ynx(10,25),A.YNc(11,_f,2,0,"th",22),A.YNc(12,$f,4,4,"td",23),A.BQk(),A.ynx(13,26),A.YNc(14,Ah,2,0,"th",22),A.YNc(15,th,2,1,"td",23),A.BQk(),A.ynx(16,27),A.YNc(17,eh,2,0,"th",22),A.YNc(18,nh,4,4,"td",23),A.BQk(),A.ynx(19,28),A.YNc(20,ih,2,0,"th",29),A.YNc(21,rh,4,4,"td",23),A.BQk(),A.ynx(22,30),A.YNc(23,ah,2,0,"th",22),A.YNc(24,oh,2,1,"td",23),A.BQk(),A.ynx(25,31),A.YNc(26,sh,2,0,"th",22),A.YNc(27,lh,2,1,"td",23),A.BQk(),A.ynx(28,32),A.YNc(29,ch,6,0,"th",33),A.YNc(30,gh,3,0,"td",34),A.BQk(),A.ynx(31,35),A.YNc(32,hh,4,3,"td",36),A.BQk(),A.YNc(33,wh,1,3,"tr",37),A.YNc(34,Ch,1,0,"tr",38),A.YNc(35,Qh,1,0,"tr",39),A.qZA()()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",t.failedLocalForwardingEvents),A.xp6(31),A.Q6J("matFooterRowDef",A.DdM(5,dh)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function Mh(i,d){if(1&i&&A._UZ(0,"mat-paginator",58),2&i){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let mh=(()=>{class i{constructor(t,a,D,k,nt,wt){this.logger=t,this.commonService=a,this.store=D,this.datePipe=k,this.router=nt,this.camelCaseWithReplace=wt,this.faExclamationTriangle=h.eHv,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:r.IV,sortBy:"received_time",sortOrder:r.Pi.DESCENDING},this.CLNFailReason=r.p7,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new TA.by([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.apiCallStatus=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.store.dispatch((0,L.u0)({payload:{status:r.OO.LOCAL_FAILED}})),this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(w.lK).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=t.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=t.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(t){this.store.dispatch((0,qA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.Gi.DATE_TIME},{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.Gi.STRING}],[{key:"in_msatoshi",value:t.in_msatoshi,title:"Amount In (mSats)",width:100,type:r.Gi.NUMBER}],[{key:"failreason",value:t.failreason?this.CLNFailReason[t.failreason]:"",title:"Reason for Failure",width:100,type:r.Gi.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(t,a)=>{var D,k,nt;let wt="";switch(this.selFilterBy){case"all":wt=(t.received_time?null===(D=this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm"))||void 0===D?void 0:D.toLowerCase():"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase():"")+(t.failreason&&this.CLNFailReason[t.failreason]?this.CLNFailReason[t.failreason].toLowerCase():"")+(t.in_msatoshi?t.in_msatoshi/1e3:"");break;case"received_time":wt=(null===(k=this.datePipe.transform(new Date(1e3*(t.received_time||0)),"dd/MMM/y HH:mm"))||void 0===k?void 0:k.toLowerCase())||"";break;case"in_msatoshi":wt=(null===(nt=+(t.in_msatoshi||0)/1e3)||void 0===nt?void 0:nt.toString())||"";break;case"failreason":wt=(null==t?void 0:t.failreason)?this.CLNFailReason[null==t?void 0:t.failreason]:"";break;default:wt=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failreason"===this.selFilterBy?0===wt.indexOf(a):wt.includes(a)}}loadLocalfailedLocalEventsTable(t){var a;this.failedLocalForwardingEvents=new TA.by([...t]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(D,k)=>"failreason"===k?D.failreason?this.CLNFailReason[D.failreason]:"":D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,null===(a=this.failedLocalForwardingEvents.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.failedLocalForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedLocalForwardingEvents)}onDownloadCSV(){this.failedLocalForwardingEvents&&this.failedLocalForwardingEvents.data&&this.failedLocalForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedLocalForwardingEvents.data,"Local-failed-transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(c.v),A.Y36(B.yh),A.Y36(gt.uU),A.Y36(ie.F0),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Local failed events")}])],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout.gt-xs","column","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.gt-xs","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","style"],["matColumnDef","failreason"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A.YNc(1,Jf,2,1,"div",1),A.YNc(2,Wf,13,5,"div",2),A.YNc(3,ph,36,6,"div",3),A.YNc(4,Mh,1,3,"mat-paginator",4),A.qZA()),2&t&&(A.xp6(1),A.Q6J("ngIf",""!==a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage),A.xp6(1),A.Q6J("ngIf",""===a.errorMessage))},directives:[n.xw,n.Wh,gt.O5,n.yH,C.BN,X.KE,eA.gD,x.JJ,x.On,gt.sg,rt.ey,wA.Nt,x.Fj,dA.$V,u.pW,TA.BZ,ut.YE,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,eA.$L,Y.lW,TA.mD,TA.yh,TA.Ke,TA.Q2,gt.mk,I.oO,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.uU,gt.JJ],styles:[""]}),i})();const Ih=["form"];function vh(i,d){1&i&&A.GkF(0)}function Dh(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Requested amount is required."),A.qZA())}function yh(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee rate is required."),A.qZA())}function xh(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Local amount is required."),A.qZA())}function Fh(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Local amount must be greater than or equal to 20,000 Sats. It's required to cover the channel force close fee, if needed."),A.qZA())}function Yh(i,d){if(1&i&&(A.TgZ(0,"mat-error"),A._uU(1),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.hij("Local amount must be less than or equal to ",t.totalBalance,".")}}function Th(i,d){if(1&i&&(A.TgZ(0,"span"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.channelConnectionError)}}function Sh(i,d){if(1&i&&(A.TgZ(0,"div",26),A._UZ(1,"fa-icon",27),A.YNc(2,Th,2,1,"span",15),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("icon",t.faExclamationTriangle),A.xp6(1),A.Q6J("ngIf",""!==t.channelConnectionError)}}function Nh(i,d){1&i&&(A.TgZ(0,"th",47),A._uU(1,"Type"),A.qZA())}function Uh(i,d){if(1&i&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.type)}}function bh(i,d){1&i&&(A.TgZ(0,"th",47),A._uU(1,"Address"),A.qZA())}function Rh(i,d){if(1&i&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.address)}}function Lh(i,d){1&i&&(A.TgZ(0,"th",47),A._uU(1,"Port"),A.qZA())}function Ph(i,d){if(1&i&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t?null:t.port)}}function zh(i,d){1&i&&A._UZ(0,"tr",49)}function Gh(i,d){1&i&&A._UZ(0,"tr",50)}function Hh(i,d){if(1&i&&(A.TgZ(0,"mat-expansion-panel",29)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A._uU(4,"Node: \xa0"),A.qZA(),A.TgZ(5,"strong",30),A._uU(6),A.qZA()()(),A.TgZ(7,"div",7)(8,"div",0)(9,"div",1)(10,"h4",31),A._uU(11,"Pubkey"),A.qZA(),A.TgZ(12,"span",32),A._uU(13),A.qZA()()(),A._UZ(14,"mat-divider",33),A.TgZ(15,"div",0)(16,"div",1)(17,"h4",31),A._uU(18,"Last Timestamp"),A.qZA(),A.TgZ(19,"span",34),A._uU(20),A.ALo(21,"date"),A.qZA()()(),A._UZ(22,"mat-divider",33),A.TgZ(23,"div",35)(24,"h4",36),A._uU(25,"Addresses"),A.qZA(),A.TgZ(26,"div",37)(27,"table",38,39),A.ynx(29,40),A.YNc(30,Nh,2,0,"th",41),A.YNc(31,Uh,2,1,"td",42),A.BQk(),A.ynx(32,43),A.YNc(33,bh,2,0,"th",41),A.YNc(34,Rh,2,1,"td",42),A.BQk(),A.ynx(35,44),A.YNc(36,Lh,2,0,"th",41),A.YNc(37,Ph,2,1,"td",42),A.BQk(),A.YNc(38,zh,1,0,"tr",45),A.YNc(39,Gh,1,0,"tr",46),A.qZA()()()()()),2&i){const t=A.oxw(2);A.xp6(6),A.Oqu((null==t.node?null:t.node.alias)||(null==t.node?null:t.node.nodeid)),A.xp6(7),A.Oqu(t.node.nodeid),A.xp6(7),A.Oqu(A.xi3(21,6,1e3*t.node.last_timestamp,"dd/MMM/y HH:mm")),A.xp6(7),A.Q6J("dataSource",t.node.addresses),A.xp6(11),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function Oh(i,d){if(1&i&&A.YNc(0,Hh,40,9,"mat-expansion-panel",28),2&i){const t=A.oxw();A.Q6J("ngIf",t.node)}}let Jh=(()=>{class i{constructor(t,a,D,k){this.dialogRef=t,this.data=a,this.actions=D,this.store=k,this.faExclamationTriangle=h.eHv,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new l.x,new l.x]}ngOnInit(){var t,a,D,k,nt;this.alertTitle=this.data.alertTitle||"",this.totalBalance=(null===(t=this.data.message)||void 0===t?void 0:t.balance)||0,this.node=(null===(a=this.data.message)||void 0===a?void 0:a.node)||{},this.requestedAmount=(null===(D=this.data.message)||void 0===D?void 0:D.requestedAmount)||0,this.feeRate=(null===(k=this.data.message)||void 0===k?void 0:k.feeRate)||0,this.localAmount=(null===(nt=this.data.message)||void 0===nt?void 0:nt.localAmount)||0,this.actions.pipe((0,g.R)(this.unSubs[0]),(0,ot.h)(wt=>wt.type===r.AB.UPDATE_API_CALL_STATUS_CLN||wt.type===r.AB.FETCH_CHANNELS_CLN)).subscribe(wt=>{wt.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&wt.payload.status===r.Bn.ERROR&&"SaveNewChannel"===wt.payload.action&&(this.channelConnectionError=wt.payload.message),wt.type===r.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){var t,a,D;this.form.resetForm(),this.form.controls.ramount.setValue(null===(t=this.data.message)||void 0===t?void 0:t.requestedAmount),this.form.controls.feerate.setValue(null===(a=this.data.message)||void 0===a?void 0:a.feeRate),this.form.controls.lamount.setValue(null===(D=this.data.message)||void 0===D?void 0:D.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){var t,a,D;this.node.channel_opening_fee=+((null===(t=this.node.option_will_fund)||void 0===t?void 0:t.lease_fee_base_msat)||0)/1e3+this.requestedAmount*+((null===(a=this.node.option_will_fund)||void 0===a?void 0:a.lease_fee_basis)||0)/1e4+ +((null===(D=this.node.option_will_fund)||void 0===D?void 0:D.funding_weight)||0)/4*this.feeRate}onOpenChannel(){if(!this.node||!this.node.option_will_fund||!this.requestedAmount||!this.feeRate||!this.localAmount||this.localAmount<2e4)return!0;const t={peerId:this.node.nodeid||"",satoshis:this.localAmount.toString(),feeRate:this.feeRate+"perkb",requestAmount:this.requestedAmount.toString(),compactLease:this.node.option_will_fund.compact_lease,announce:!0};this.store.dispatch((0,L.YX)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(Ft.so),A.Y36(Ft.WI),A.Y36(H.eX),A.Y36(B.yh))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(t,a){if(1&t&&A.Gf(Ih,7),2&t){let D;A.iGM(D=A.CRH())&&(a.form=D.first)}},decls:48,vars:24,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["form","ngForm"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","placeholder","Requested Amount","type","number","tabindex","1","required","","name","ramount",3,"ngModel","step","min","ngModelChange","keyup"],["ramount","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","placeholder","Fee Rate","type","number","tabindex","2","required","","name","feerate",3,"ngModel","step","min","ngModelChange","keyup"],["feeRt","ngModel"],["matInput","","placeholder","Local Amount","type","number","tabindex","3","required","","name","lamount",3,"ngModel","step","min","max","ngModelChange"],["lamount","ngModel"],["fxFlex","100",1,"alert","alert-info","mt-4"],["fxFlex","100","class","alert alert-danger mt-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","4",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","tabindex","5",3,"click"],["nodeDetailsExpansionBlock",""],["fxFlex","100",1,"alert","alert-danger","mt-2"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel mt-1 mb-2","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","mt-1","mb-2"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"font-bold-500","mb-1"],[1,"table-container"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(t,a){if(1&t&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),A._uU(5),A.qZA()(),A.TgZ(6,"button",5),A.NdJ("click",function(){return a.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8),A.YNc(11,vh,1,0,"ng-container",9),A.TgZ(12,"div",10)(13,"mat-form-field",11)(14,"input",12,13),A.NdJ("ngModelChange",function(k){return a.requestedAmount=k})("keyup",function(){return a.calculateFee()}),A.qZA(),A.TgZ(16,"span",14),A._uU(17," Sats "),A.qZA(),A.YNc(18,Dh,2,0,"mat-error",15),A.qZA(),A.TgZ(19,"mat-form-field",11)(20,"input",16,17),A.NdJ("ngModelChange",function(k){return a.feeRate=k})("keyup",function(){return a.calculateFee()}),A.qZA(),A.TgZ(22,"span",14),A._uU(23," Sats/vByte "),A.qZA(),A.YNc(24,yh,2,0,"mat-error",15),A.qZA(),A.TgZ(25,"mat-form-field",11)(26,"input",18,19),A.NdJ("ngModelChange",function(k){return a.localAmount=k}),A.qZA(),A.TgZ(28,"mat-hint"),A._uU(29),A.ALo(30,"number"),A.qZA(),A.TgZ(31,"span",14),A._uU(32," Sats "),A.qZA(),A.YNc(33,xh,2,0,"mat-error",15),A.YNc(34,Fh,2,0,"mat-error",15),A.YNc(35,Yh,2,1,"mat-error",15),A.qZA()(),A.TgZ(36,"div",20)(37,"span"),A._uU(38),A.ALo(39,"number"),A.qZA()(),A.YNc(40,Sh,3,2,"div",21),A.TgZ(41,"div",22)(42,"button",23),A.NdJ("click",function(){return a.resetData()}),A._uU(43,"Clear"),A.qZA(),A.TgZ(44,"button",24),A.NdJ("click",function(){return a.onOpenChannel()}),A._uU(45,"Execute"),A.qZA()()()()()(),A.YNc(46,Oh,1,1,"ng-template",null,25,A.W1O)),2&t){const D=A.MAs(15),k=A.MAs(21),nt=A.MAs(27),wt=A.MAs(47);A.xp6(5),A.Oqu(a.alertTitle),A.xp6(6),A.Q6J("ngTemplateOutlet",wt),A.xp6(3),A.Q6J("ngModel",a.requestedAmount)("step",1e4)("min",0),A.xp6(4),A.Q6J("ngIf",null==D.errors?null:D.errors.required),A.xp6(2),A.Q6J("ngModel",a.feeRate)("step",10)("min",0),A.xp6(4),A.Q6J("ngIf",null==k.errors?null:k.errors.required),A.xp6(2),A.Q6J("ngModel",a.localAmount)("step",1e4)("min",2e4)("max",a.totalBalance),A.xp6(3),A.hij("Remaining Bal: ",A.lcZ(30,20,a.totalBalance-(a.localAmount?a.localAmount:0)),""),A.xp6(4),A.Q6J("ngIf",null==nt.errors?null:nt.errors.required),A.xp6(1),A.Q6J("ngIf",null==nt.errors?null:nt.errors.min),A.xp6(1),A.Q6J("ngIf",null==nt.errors?null:nt.errors.max),A.xp6(3),A.hij("Total cost to lease ",A.lcZ(39,22,a.node.channel_opening_fee)," (Sats)"),A.xp6(2),A.Q6J("ngIf",""!==a.channelConnectionError)}},directives:[n.xw,n.yH,M.dk,n.Wh,Y.lW,M.dn,x._Y,x.JL,x.F,gt.tP,X.KE,wA.Nt,x.wV,x.qQ,x.Fj,NA.q,EA.h,x.Q7,x.JJ,x.On,X.R9,gt.O5,X.TO,x.Fd,ea.F,X.bx,C.BN,Xn.ib,Xn.yz,Xn.yK,pA.d,TA.BZ,ut.YE,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,TA.as,TA.XQ,TA.nj,TA.Gk],pipes:[gt.JJ,gt.uU],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),i})();var lc=Pt(6688);function kh(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Channel amount is required."),A.qZA())}function jh(i,d){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Channel opening fee rate is required."),A.qZA())}function Wh(i,d){if(1&i&&(A.TgZ(0,"mat-option",48),A._uU(1),A.qZA()),2&i){const t=d.$implicit,a=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(a.getLabel(t))}}function Vh(i,d){1&i&&A._UZ(0,"mat-progress-bar",49)}function Kh(i,d){1&i&&(A.TgZ(0,"th",50),A._uU(1,"Alias"),A.qZA())}function Zh(i,d){if(1&i&&(A.TgZ(0,"mat-chip",56),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.hij(" ","tor"===t?"Tor":"ipv"===t?"Clearnet":t," ")}}const cc=function(i){return{width:i}};function Xh(i,d){if(1&i&&(A.TgZ(0,"td",51)(1,"div",52)(2,"span",53),A._uU(3),A.TgZ(4,"mat-chip-list",54),A.YNc(5,Zh,2,1,"mat-chip",55),A.qZA()()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(3,cc,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.hij(" ",null==t?null:t.alias," "),A.xp6(2),A.Q6J("ngForOf",t.address_types)}}function qh(i,d){1&i&&(A.TgZ(0,"th",50),A._uU(1,"Node ID"),A.qZA())}function _h(i,d){if(1&i&&(A.TgZ(0,"td",51)(1,"div",52)(2,"span",57),A._uU(3),A.qZA()()()),2&i){const t=d.$implicit,a=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,cc,a.screenSize===a.screenSizeEnum.XS?"10rem":a.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.nodeid)}}function $h(i,d){1&i&&(A.TgZ(0,"th",50),A._uU(1,"Last Announcement At"),A.qZA())}function AE(i,d){if(1&i&&(A.TgZ(0,"td",51),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function tE(i,d){1&i&&(A.TgZ(0,"th",50),A._uU(1,"Compact Lease"),A.qZA())}function eE(i,d){if(1&i&&(A.TgZ(0,"td",51),A._uU(1),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.Oqu(null==t||null==t.option_will_fund?null:t.option_will_fund.compact_lease)}}function nE(i,d){1&i&&(A.TgZ(0,"th",58),A._uU(1," Lease Fee"),A.qZA())}function iE(i,d){if(1&i&&(A.TgZ(0,"td",51),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.AsE(" ",A.xi3(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.xi3(3,5,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function rE(i,d){1&i&&(A.TgZ(0,"th",58),A._uU(1," Routing Fee"),A.qZA())}function aE(i,d){if(1&i&&(A.TgZ(0,"td",51),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=d.$implicit;A.xp6(1),A.AsE(" ",A.xi3(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.xi3(3,5,1e3*(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function oE(i,d){1&i&&(A.TgZ(0,"th",59),A._uU(1,"Channel Opening Fee (Sats)"),A.qZA())}function sE(i,d){if(1&i&&(A.TgZ(0,"td",51)(1,"span",60),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,t.channel_opening_fee,"1.0-0")," ")}}function lE(i,d){1&i&&(A.TgZ(0,"th",59),A._uU(1,"Funding Weight"),A.qZA())}function cE(i,d){if(1&i&&(A.TgZ(0,"td",51)(1,"span",60),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=d.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,null==t||null==t.option_will_fund?null:t.option_will_fund.funding_weight,"1.0-0")," ")}}function gE(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"th",58)(1,"div",61)(2,"mat-select",62),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",63),A.NdJ("click",function(){return A.CHM(t),A.oxw().onDownloadCSV()}),A._uU(5,"Download CSV"),A.qZA()()()()}}function BE(i,d){if(1&i){const t=A.EpF();A.TgZ(0,"td",64)(1,"div",61)(2,"mat-select",62),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",63),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onViewLeaseInfo(k)}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",63),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().onOpenChannel(k)}),A._uU(7,"Open Channel"),A.qZA(),A.TgZ(8,"mat-option",63),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().viewLeaseOn(k,"LN")}),A._uU(9,"View on Lnrouter"),A.qZA(),A.TgZ(10,"mat-option",63),A.NdJ("click",function(){const k=A.CHM(t).$implicit;return A.oxw().viewLeaseOn(k,"AM")}),A._uU(11,"View on Amboss"),A.qZA()()()()}}function uE(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"No node with liquidity."),A.qZA())}function fE(i,d){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting nodes with liquidity..."),A.qZA())}function hE(i,d){if(1&i&&(A.TgZ(0,"p"),A._uU(1),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Oqu(t.errorMessage)}}function EE(i,d){if(1&i&&(A.TgZ(0,"td",65),A.YNc(1,uE,2,0,"p",15),A.YNc(2,fE,2,0,"p",15),A.YNc(3,hE,2,1,"p",15),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const wE=function(i){return{"display-none":i}};function CE(i,d){if(1&i&&A._UZ(0,"tr",66),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,wE,(null==t.liquidityNodes?null:t.liquidityNodes.data)&&(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)>0))}}function QE(i,d){1&i&&A._UZ(0,"tr",67)}function dE(i,d){1&i&&A._UZ(0,"tr",68)}const pE=function(){return["all"]},ME=function(i){return{"error-border":i}},mE=function(){return["no_lqNode"]},DE=ie.Bz.forChild([{path:"",component:s,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ls,canActivate:[Le.eQ]},{path:"onchain",component:yi,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:Sl,canActivate:[Le.eQ]},{path:"send/:selTab",component:Ce,data:{sweepAll:!1},canActivate:[Le.eQ]},{path:"sweep/:selTab",component:Ce,data:{sweepAll:!0},canActivate:[Le.eQ]}]},{path:"connections",component:Wi,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:jl,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Yi,canActivate:[Le.eQ]},{path:"pending",component:An,canActivate:[Le.eQ]}]},{path:"peers",component:Cc,data:{sweepAll:!1},canActivate:[Le.eQ]}]},{path:"liquidityads",component:(()=>{class i{constructor(t,a,D,k,nt,wt,Lt){this.logger=t,this.store=a,this.dataService=D,this.commonService=k,this.rtlEffects=nt,this.datePipe=wt,this.camelCaseWithReplace=Lt,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:r.IV,sortBy:"channel_opening_fee",sortOrder:r.Pi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=h.Acd,this.faExclamationTriangle=h.eHv,this.faUsers=h.FVb,this.totalBalance=0,this.channelAmount=1e5,this.channel_opening_feeRate=10,this.node_capacity=5e5,this.channel_count=5,this.liquidityNodesData=[],this.liquidityNodes=new TA.by([]),this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus={status:r.Bn.INITIATED},this.apiCallStatusEnum=r.Bn,this.unSubs=[new l.x,new l.x,new l.x,new l.x,new l.x,new l.x],this.askTooltipMsg="Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you",this.nodesTooltipMsg="These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n",this.nodesTooltipMsg=this.nodesTooltipMsg+"- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers",this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(w.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{var a,D;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(a=t.pageSettings.find(k=>k.pageId===this.PAGE_ID))||void 0===a?void 0:a.tables.find(k=>k.tableId===this.tableSetting.tableId))||(null===(D=r.gG.find(k=>k.pageId===this.PAGE_ID))||void 0===D?void 0:D.tables.find(k=>k.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===r.cu.XS||this.screenSize===r.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Ca.a)([this.store.select(w.OL),this.dataService.listNetworkNodes("?liquidity_ads=yes")]).pipe((0,g.R)(this.unSubs[1])).subscribe({next:([t,a])=>{this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t),a&&!a.length&&(a=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(a)),this.apiCallStatus.status=r.Bn.COMPLETED,a.forEach(D=>{var k;D.address_types=Array.from(new Set(null===(k=D.addresses)||void 0===k?void 0:k.reduce((wt,Lt)=>{var me,cn,oe;return((null===(me=Lt.type)||void 0===me?void 0:me.includes("ipv"))||(null===(cn=Lt.type)||void 0===cn?void 0:cn.includes("tor")))&&wt.push(null===(oe=Lt.type)||void 0===oe?void 0:oe.substring(0,3)),wt},[])))}),this.liquidityNodesData=a.filter(D=>D.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:t=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(t)),this.apiCallStatus.status=r.Bn.ERROR,this.errorMessage=JSON.stringify(t)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(t=>{t.option_will_fund&&(t.channel_opening_fee=+(t.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(t.option_will_fund.lease_fee_basis||0)/1e4+ +(t.option_will_fund.funding_weight||0)/4*this.channel_opening_feeRate)}),this.paginator&&this.paginator.firstPage()}onFilter(){}applyFilter(){this.liquidityNodes.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(D=>D.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(t,a)=>{var D,k,nt,wt,Lt,me,cn,oe,Xe,qn,Un,lr,cr,j0,W0,V0,K0;let Ri="";switch(this.selFilterBy){case"all":Ri=(t.alias?t.alias.toLocaleLowerCase():"")+(t.channel_opening_fee?t.channel_opening_fee+" Sats":"")+((null===(D=t.option_will_fund)||void 0===D?void 0:D.lease_fee_base_msat)?(null===(k=t.option_will_fund)||void 0===k?void 0:k.lease_fee_base_msat)/1e3+" Sats":"")+((null===(nt=t.option_will_fund)||void 0===nt?void 0:nt.lease_fee_basis)?(null===(wt=t.option_will_fund)||void 0===wt?void 0:wt.lease_fee_basis)/100+"%":"")+((null===(Lt=t.option_will_fund)||void 0===Lt?void 0:Lt.channel_fee_max_base_msat)?(null===(me=t.option_will_fund)||void 0===me?void 0:me.channel_fee_max_base_msat)/1e3+" Sats":"")+((null===(cn=t.option_will_fund)||void 0===cn?void 0:cn.channel_fee_max_proportional_thousandths)?1e3*(null===(oe=t.option_will_fund)||void 0===oe?void 0:oe.channel_fee_max_proportional_thousandths)+" ppm":"")+(t.address_types?t.address_types.reduce((Z0,gr)=>Z0+("tor"===gr?" tor":"ipv"===gr?" clearnet":" "+gr.toLowerCase()),""):"");break;case"alias":Ri=((null===(Xe=null==t?void 0:t.alias)||void 0===Xe?void 0:Xe.toLowerCase())||" ")+(null===(qn=null==t?void 0:t.address_types)||void 0===qn?void 0:qn.reduce((Z0,gr)=>Z0+(gr?"ipv"===gr?"clearnet":gr:"")," "))||"";break;case"last_timestamp":Ri=(null===(Un=this.datePipe.transform(new Date(1e3*(t.last_timestamp||0)),"dd/MMM/y HH:mm"))||void 0===Un?void 0:Un.toLowerCase())||"";break;case"compact_lease":Ri=(null===(cr=null===(lr=null==t?void 0:t.option_will_fund)||void 0===lr?void 0:lr.compact_lease)||void 0===cr?void 0:cr.toLowerCase())||"";break;case"lease_fee":Ri=(((null===(j0=t.option_will_fund)||void 0===j0?void 0:j0.lease_fee_base_msat)||0)/1e3+" sats "||0)+(((null===(W0=t.option_will_fund)||void 0===W0?void 0:W0.lease_fee_basis)||0)/100+"%")||0;break;case"routing_fee":Ri=(((null===(V0=t.option_will_fund)||void 0===V0?void 0:V0.channel_fee_max_base_msat)||0)/1e3+" sats "||0)+(1e3*((null===(K0=t.option_will_fund)||void 0===K0?void 0:K0.channel_fee_max_proportional_thousandths)||0)+" ppm")||0;break;default:Ri=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return Ri.includes(a)}}loadLiqNodesTable(t){var a;this.liquidityNodes=new TA.by([...t]),this.liquidityNodes.sortingDataAccessor=(D,k)=>D[k]&&isNaN(D[k])?D[k].toLocaleLowerCase():D[k]?+D[k]:null,this.liquidityNodes.sort=this.sort,null===(a=this.liquidityNodes.sort)||void 0===a||a.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(t,a){"LN"===a?window.open("https://lnrouter.app/node/"+t.nodeid,"_blank"):"AM"===a&&window.open("https://amboss.space/node/"+t.nodeid,"_blank")}onOpenChannel(t){this.store.dispatch((0,qA.qR)({payload:{data:{alertTitle:"Open Channel",message:{node:t,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:Jh}}}))}onViewLeaseInfo(t){var a,D,k,nt,wt,Lt,me;const cn=null===(a=t.addresses)||void 0===a?void 0:a.reduce((qn,Un)=>(Un.address&&Un.address.length>40&&(Un.address=Un.address.substring(0,39)+"..."),qn.concat(JSON.stringify(Un).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),oe=[];if(t.features&&""!==t.features.trim()){const qn=parseInt(t.features,16);r.Df.forEach(Un=>{qn&(1<{qn&&this.onOpenChannel(t)})}onDownloadCSV(){this.liquidityNodes.data&&this.liquidityNodes.data.length>0&&this.commonService.downloadFile(this.liquidityNodes.data,"LiquidityNodes")}onFilterReset(){this.node_capacity=0,this.channel_count=0}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return i.\u0275fac=function(t){return new(t||i)(A.Y36(e.mQ),A.Y36(B.yh),A.Y36(St.D),A.Y36(c.v),A.Y36(Ut.V),A.Y36(gt.uU),A.Y36(It.D3))},i.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(t,a){if(1&t&&(A.Gf(ut.YE,5),A.Gf(Et.NW,5)),2&t){let D;A.iGM(D=A.CRH())&&(a.sort=D.first),A.iGM(D=A.CRH())&&(a.paginator=D.first)}},features:[A._Bn([{provide:Et.ye,useValue:(0,r.pt)("Liquidity Ads")}])],decls:74,vars:24,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],[1,"padding-gap-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["formAsk","ngForm"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxFlex","30"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxFlex","34"],["autoFocus","","matInput","","placeholder","Channel Amount (Sats)","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","placeholder","Channel Opening Fee Rate (Sats/vByte)","name","channel_opening_feeRate","type","number","step","10","tabindex","2","required","",3,"ngModel","ngModelChange","keyup"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeid"],["matColumnDef","last_timestamp"],["matColumnDef","compact_lease"],["matColumnDef","lease_fee"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","routing_fee"],["matColumnDef","channel_opening_fee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","funding_weight"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_lqNode"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["fxLayout","row","fxLayoutAlign","start center",1,"ellipsis-child"],["aria-label","Address Types",1,"ml-half"],["color","primary","selected","",4,"ngFor","ngForOf"],["color","primary","selected",""],[1,"ellipsis-child"],["mat-header-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(A.TgZ(0,"div",0),A._UZ(1,"fa-icon",1),A.TgZ(2,"span",2),A._uU(3,"Liquidity Ads"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"form",6,7)(10,"div",8),A._UZ(11,"fa-icon",9),A.TgZ(12,"span"),A._uU(13,"Ads should be supplemented with additional research of the node, before buying liquidity."),A.qZA()(),A.TgZ(14,"div",10)(15,"div",11)(16,"span",2),A._uU(17," Liquidity Ask "),A.TgZ(18,"mat-icon",12),A._uU(19,"info_outline"),A.qZA()()(),A.TgZ(20,"mat-form-field",13)(21,"input",14),A.NdJ("ngModelChange",function(k){return a.channelAmount=k})("keyup",function(){return a.onCalculateOpeningFee()}),A.qZA(),A.YNc(22,kh,2,0,"mat-error",15),A.qZA(),A.TgZ(23,"mat-form-field",13)(24,"input",16),A.NdJ("ngModelChange",function(k){return a.channel_opening_feeRate=k})("keyup",function(){return a.onCalculateOpeningFee()}),A.qZA(),A.YNc(25,jh,2,0,"mat-error",15),A.qZA()()(),A.TgZ(26,"div",17)(27,"div",18),A._UZ(28,"fa-icon",1),A.TgZ(29,"span",2),A._uU(30,"Liquidity Providing Peers"),A.qZA()(),A.TgZ(31,"div",19)(32,"mat-form-field",20)(33,"mat-select",21),A.NdJ("ngModelChange",function(k){return a.selFilterBy=k})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),A.YNc(34,Wh,2,2,"mat-option",22),A.qZA()(),A.TgZ(35,"mat-form-field",20)(36,"input",23),A.NdJ("ngModelChange",function(k){return a.selFilter=k})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),A.qZA()()()(),A.TgZ(37,"div",24),A.YNc(38,Vh,1,0,"mat-progress-bar",25),A.TgZ(39,"table",26,27),A.ynx(41,28),A.YNc(42,Kh,2,0,"th",29),A.YNc(43,Xh,6,5,"td",30),A.BQk(),A.ynx(44,31),A.YNc(45,qh,2,0,"th",29),A.YNc(46,_h,4,4,"td",30),A.BQk(),A.ynx(47,32),A.YNc(48,$h,2,0,"th",29),A.YNc(49,AE,3,4,"td",30),A.BQk(),A.ynx(50,33),A.YNc(51,tE,2,0,"th",29),A.YNc(52,eE,2,1,"td",30),A.BQk(),A.ynx(53,34),A.YNc(54,nE,2,0,"th",35),A.YNc(55,iE,4,8,"td",30),A.BQk(),A.ynx(56,36),A.YNc(57,rE,2,0,"th",35),A.YNc(58,aE,4,8,"td",30),A.BQk(),A.ynx(59,37),A.YNc(60,oE,2,0,"th",38),A.YNc(61,sE,4,4,"td",30),A.BQk(),A.ynx(62,39),A.YNc(63,lE,2,0,"th",38),A.YNc(64,cE,4,4,"td",30),A.BQk(),A.ynx(65,40),A.YNc(66,gE,6,0,"th",35),A.YNc(67,BE,12,0,"td",41),A.BQk(),A.ynx(68,42),A.YNc(69,EE,4,3,"td",43),A.BQk(),A.YNc(70,CE,1,3,"tr",44),A.YNc(71,QE,1,0,"tr",45),A.YNc(72,dE,1,0,"tr",46),A.qZA()(),A._UZ(73,"mat-paginator",47),A.qZA()()()()),2&t&&(A.xp6(1),A.Q6J("icon",a.faBullhorn),A.xp6(10),A.Q6J("icon",a.faExclamationTriangle),A.xp6(7),A.Q6J("matTooltip",a.askTooltipMsg),A.xp6(3),A.Q6J("ngModel",a.channelAmount),A.xp6(1),A.Q6J("ngIf",!a.channelAmount),A.xp6(2),A.Q6J("ngModel",a.channel_opening_feeRate),A.xp6(1),A.Q6J("ngIf",!a.channel_opening_feeRate),A.xp6(3),A.Q6J("icon",a.faUsers),A.xp6(5),A.Q6J("ngModel",a.selFilterBy),A.xp6(1),A.Q6J("ngForOf",A.DdM(20,pE).concat(a.displayedColumns.slice(0,-1))),A.xp6(2),A.Q6J("ngModel",a.selFilter),A.xp6(2),A.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("dataSource",a.liquidityNodes)("ngClass",A.VKq(21,ME,""!==a.errorMessage)),A.xp6(31),A.Q6J("matFooterRowDef",A.DdM(23,mE)),A.xp6(1),A.Q6J("matHeaderRowDef",a.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",a.displayedColumns),A.xp6(1),A.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[n.xw,n.Wh,C.BN,M.a8,M.dn,n.yH,x._Y,x.JL,x.F,p.Hw,cA.gM,X.KE,wA.Nt,x.wV,x.Fj,EA.h,x.Q7,x.JJ,x.On,gt.O5,X.TO,eA.gD,gt.sg,rt.ey,dA.$V,u.pW,TA.BZ,ut.YE,gt.mk,I.oO,TA.w1,TA.fO,TA.ge,ut.nU,TA.Dz,TA.ev,gt.PC,I.Zl,lc.qn,lc.HS,eA.$L,TA.mD,TA.yh,TA.Ke,TA.Q2,TA.as,TA.XQ,TA.nj,TA.Gk,Et.NW],pipes:[gt.uU,gt.JJ],styles:[""]}),i})(),canActivate:[Le.eQ]},{path:"transactions",component:Xs,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:ha,canActivate:[Le.eQ]},{path:"invoices",component:Ae,canActivate:[Le.eQ]},{path:"offers",component:ff,canActivate:[Le.eQ]},{path:"offrBookmarks",component:Of,canActivate:[Le.eQ]}]},{path:"messages",component:Sr,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Oc,canActivate:[Le.eQ]},{path:"verify",component:Xc,canActivate:[Le.eQ]}]},{path:"routing",component:Sa,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:$0,canActivate:[Le.eQ]},{path:"failedtransactions",component:wB,canActivate:[Le.eQ]},{path:"localfail",component:mh,canActivate:[Le.eQ]},{path:"routingpeers",component:cu,canActivate:[Le.eQ]}]},{path:"reports",component:Bu,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:du,canActivate:[Le.eQ]},{path:"transactions",component:Fu,canActivate:[Le.eQ]}]},{path:"graph",component:Su,canActivate:[Le.eQ],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:wl,canActivate:[Le.eQ]},{path:"queryroutes",component:Gc,canActivate:[Le.eQ]}]},{path:"rates",component:xl,canActivate:[Le.eQ]},{path:"**",component:Yu.w},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}]);var yE=Pt(8750);let xE=(()=>{class i{}return i.\u0275fac=function(t){return new(t||i)},i.\u0275mod=A.oAB({type:i,bootstrap:[s]}),i.\u0275inj=A.cJS({providers:[Le.eQ],imports:[[gt.ez,yE.m,DE]]}),i})()},4641:function(X0){"undefined"!=typeof self&&self,X0.exports=function(){var Gr={9282:function(T,A,n){"use strict";var u=n(4155);function o($){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(fA){return typeof fA}:function(fA){return fA&&"function"==typeof Symbol&&fA.constructor===Symbol&&fA!==Symbol.prototype?"symbol":typeof fA})($)}var I,y,g=n(2136).codes,f=g.ERR_AMBIGUOUS_ARGUMENT,E=g.ERR_INVALID_ARG_TYPE,h=g.ERR_INVALID_ARG_VALUE,r=g.ERR_INVALID_RETURN_VALUE,w=g.ERR_MISSING_ARGS,e=n(5961),c=n(9539).inspect,C=n(9539).types,Q=C.isPromise,M=C.isRegExp,Y=Object.assign?Object.assign:n(8091).assign,v=Object.is?Object.is:n(609);function O(){var $=n(9158);I=$.isDeepEqual,y=$.isDeepStrictEqual}var X=!1,cA=T.exports=QA,pA={};function dA($){throw $.message instanceof Error?$.message:new e($)}function gA($,K,fA,IA){if(!fA){var oA=!1;if(0===K)oA=!0,IA="No value argument passed to `assert.ok()`";else if(IA instanceof Error)throw IA;var hA=new e({actual:fA,expected:!0,message:IA,operator:"==",stackStartFn:$});throw hA.generatedMessage=oA,hA}}function QA(){for(var $=arguments.length,K=new Array($),fA=0;fA<$;fA++)K[fA]=arguments[fA];gA.apply(void 0,[QA,K.length].concat(K))}cA.fail=function DA($,K,fA,IA,oA){var zA,hA=arguments.length;if(0===hA?zA="Failed":1===hA?(fA=$,$=void 0):(!1===X&&(X=!0,(u.emitWarning?u.emitWarning:console.warn.bind(console))("assert.fail() with more than one argument is deprecated. Please use assert.strictEqual() instead or only pass a message.","DeprecationWarning","DEP0094")),2===hA&&(IA="!=")),fA instanceof Error)throw fA;var lt={actual:$,expected:K,operator:void 0===IA?"fail":IA,stackStartFn:oA||DA};void 0!==fA&&(lt.message=fA);var YA=new e(lt);throw zA&&(YA.message=zA,YA.generatedMessage=!0),YA},cA.AssertionError=e,cA.ok=QA,cA.equal=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");K!=fA&&dA({actual:K,expected:fA,message:IA,operator:"==",stackStartFn:$})},cA.notEqual=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");K==fA&&dA({actual:K,expected:fA,message:IA,operator:"!=",stackStartFn:$})},cA.deepEqual=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");void 0===I&&O(),I(K,fA)||dA({actual:K,expected:fA,message:IA,operator:"deepEqual",stackStartFn:$})},cA.notDeepEqual=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");void 0===I&&O(),I(K,fA)&&dA({actual:K,expected:fA,message:IA,operator:"notDeepEqual",stackStartFn:$})},cA.deepStrictEqual=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");void 0===I&&O(),y(K,fA)||dA({actual:K,expected:fA,message:IA,operator:"deepStrictEqual",stackStartFn:$})},cA.notDeepStrictEqual=function yA($,K,fA){if(arguments.length<2)throw new w("actual","expected");void 0===I&&O(),y($,K)&&dA({actual:$,expected:K,message:fA,operator:"notDeepStrictEqual",stackStartFn:yA})},cA.strictEqual=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");v(K,fA)||dA({actual:K,expected:fA,message:IA,operator:"strictEqual",stackStartFn:$})},cA.notStrictEqual=function $(K,fA,IA){if(arguments.length<2)throw new w("actual","expected");v(K,fA)&&dA({actual:K,expected:fA,message:IA,operator:"notStrictEqual",stackStartFn:$})};var Z=function $(K,fA,IA){var oA=this;(function s($,K){if(!($ instanceof K))throw new TypeError("Cannot call a class as a function")})(this,$),fA.forEach(function(hA){hA in K&&(oA[hA]=void 0!==IA&&"string"==typeof IA[hA]&&M(K[hA])&&K[hA].test(IA[hA])?IA[hA]:K[hA])})};function CA($,K,fA,IA,oA,hA){if(!(fA in $)||!y($[fA],K[fA])){if(!IA){var zA=new Z($,oA),tt=new Z(K,oA,$),lt=new e({actual:zA,expected:tt,operator:"deepStrictEqual",stackStartFn:hA});throw lt.actual=$,lt.expected=K,lt.operator=hA.name,lt}dA({actual:$,expected:K,message:IA,operator:hA.name,stackStartFn:hA})}}function nA($,K,fA,IA){if("function"!=typeof K){if(M(K))return K.test($);if(2===arguments.length)throw new E("expected",["Function","RegExp"],K);if("object"!==o($)||null===$){var oA=new e({actual:$,expected:K,message:fA,operator:"deepStrictEqual",stackStartFn:IA});throw oA.operator=IA.name,oA}var hA=Object.keys(K);if(K instanceof Error)hA.push("name","message");else if(0===hA.length)throw new h("error",K,"may not be an empty object");return void 0===I&&O(),hA.forEach(function(zA){"string"==typeof $[zA]&&M(K[zA])&&K[zA].test($[zA])||CA($,K,zA,fA,hA,IA)}),!0}return void 0!==K.prototype&&$ instanceof K||!Error.isPrototypeOf(K)&&!0===K.call({},$)}function lA($){if("function"!=typeof $)throw new E("fn","Function",$);try{$()}catch(K){return K}return pA}function FA($){return Q($)||null!==$&&"object"===o($)&&"function"==typeof $.then&&"function"==typeof $.catch}function bA($){return Promise.resolve().then(function(){var K;if("function"==typeof $){if(!FA(K=$()))throw new r("instance of Promise","promiseFn",K)}else{if(!FA($))throw new E("promiseFn",["Function","Promise"],$);K=$}return Promise.resolve().then(function(){return K}).then(function(){return pA}).catch(function(fA){return fA})})}function HA($,K,fA,IA){if("string"==typeof fA){if(4===arguments.length)throw new E("error",["Object","Error","Function","RegExp"],fA);if("object"===o(K)&&null!==K){if(K.message===fA)throw new f("error/message",'The error message "'.concat(K.message,'" is identical to the message.'))}else if(K===fA)throw new f("error/message",'The error "'.concat(K,'" is identical to the message.'));IA=fA,fA=void 0}else if(null!=fA&&"object"!==o(fA)&&"function"!=typeof fA)throw new E("error",["Object","Error","Function","RegExp"],fA);if(K===pA){var oA="";fA&&fA.name&&(oA+=" (".concat(fA.name,")")),oA+=IA?": ".concat(IA):".",dA({actual:void 0,expected:fA,operator:$.name,message:"Missing expected ".concat("rejects"===$.name?"rejection":"exception").concat(oA),stackStartFn:$})}if(fA&&!nA(K,fA,IA,$))throw K}function q($,K,fA,IA){if(K!==pA){if("string"==typeof fA&&(IA=fA,fA=void 0),!fA||nA(K,fA)){var oA=IA?": ".concat(IA):".";dA({actual:K,expected:fA,operator:$.name,message:"Got unwanted ".concat("doesNotReject"===$.name?"rejection":"exception").concat(oA,"\n")+'Actual message: "'.concat(K&&K.message,'"'),stackStartFn:$})}throw K}}function z(){for(var $=arguments.length,K=new Array($),fA=0;fA<$;fA++)K[fA]=arguments[fA];gA.apply(void 0,[z,K.length].concat(K))}cA.throws=function $(K){for(var fA=arguments.length,IA=new Array(fA>1?fA-1:0),oA=1;oA1?fA-1:0),oA=1;oA1?fA-1:0),oA=1;oA1?fA-1:0),oA=1;oADA.length)&&(QA=DA.length),DA.substring(QA-gA.length,QA)===gA}var S="",b="",O="",J="",sA={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function X(DA){var gA=Object.keys(DA),QA=Object.create(Object.getPrototypeOf(DA));return gA.forEach(function(yA){QA[yA]=DA[yA]}),Object.defineProperty(QA,"message",{value:DA.message}),QA}function cA(DA){return v(DA,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function pA(DA,gA,QA){var yA="",Z="",CA=0,nA="",lA=!1,FA=cA(DA),bA=FA.split("\n"),HA=cA(gA).split("\n"),q=0,z="";if("strictEqual"===QA&&"object"===M(DA)&&"object"===M(gA)&&null!==DA&&null!==gA&&(QA="strictEqualObject"),1===bA.length&&1===HA.length&&bA[0]!==HA[0]){var $=bA[0].length+HA[0].length;if($<=10){if(!("object"===M(DA)&&null!==DA||"object"===M(gA)&&null!==gA||0===DA&&0===gA))return"".concat(sA[QA],"\n\n")+"".concat(bA[0]," !== ").concat(HA[0],"\n")}else if("strictEqualObject"!==QA&&$<(u.stderr&&u.stderr.isTTY?u.stderr.columns:80)){for(;bA[0][q]===HA[0][q];)q++;q>2&&(z="\n ".concat(function U(DA,gA){if(gA=Math.floor(gA),0==DA.length||0==gA)return"";var QA=DA.length*gA;for(gA=Math.floor(Math.log(gA)/Math.log(2));gA;)DA+=DA,gA--;return DA+DA.substring(0,QA-DA.length)}(" ",q),"^"),q=0)}}for(var fA=bA[bA.length-1],IA=HA[HA.length-1];fA===IA&&(q++<2?nA="\n ".concat(fA).concat(nA):yA=fA,bA.pop(),HA.pop(),0!==bA.length&&0!==HA.length);)fA=bA[bA.length-1],IA=HA[HA.length-1];var oA=Math.max(bA.length,HA.length);if(0===oA){var hA=FA.split("\n");if(hA.length>30)for(hA[26]="".concat(S,"...").concat(J);hA.length>27;)hA.pop();return"".concat(sA.notIdentical,"\n\n").concat(hA.join("\n"),"\n")}q>3&&(nA="\n".concat(S,"...").concat(J).concat(nA),lA=!0),""!==yA&&(nA="\n ".concat(yA).concat(nA),yA="");var zA=0,tt=sA[QA]+"\n".concat(b,"+ actual").concat(J," ").concat(O,"- expected").concat(J),lt=" ".concat(S,"...").concat(J," Lines skipped");for(q=0;q1&&q>2&&(YA>4?(Z+="\n".concat(S,"...").concat(J),lA=!0):YA>3&&(Z+="\n ".concat(HA[q-2]),zA++),Z+="\n ".concat(HA[q-1]),zA++),CA=q,yA+="\n".concat(O,"-").concat(J," ").concat(HA[q]),zA++;else if(HA.length1&&q>2&&(YA>4?(Z+="\n".concat(S,"...").concat(J),lA=!0):YA>3&&(Z+="\n ".concat(bA[q-2]),zA++),Z+="\n ".concat(bA[q-1]),zA++),CA=q,Z+="\n".concat(b,"+").concat(J," ").concat(bA[q]),zA++;else{var it=HA[q],mt=bA[q],Mt=mt!==it&&(!y(mt,",")||mt.slice(0,-1)!==it);Mt&&y(it,",")&&it.slice(0,-1)===mt&&(Mt=!1,mt+=","),Mt?(YA>1&&q>2&&(YA>4?(Z+="\n".concat(S,"...").concat(J),lA=!0):YA>3&&(Z+="\n ".concat(bA[q-2]),zA++),Z+="\n ".concat(bA[q-1]),zA++),CA=q,Z+="\n".concat(b,"+").concat(J," ").concat(mt),yA+="\n".concat(O,"-").concat(J," ").concat(it),zA+=2):(Z+=yA,yA="",(1===YA||0===q)&&(Z+="\n ".concat(mt),zA++))}if(zA>20&&q30)for(q[26]="".concat(S,"...").concat(J);q.length>27;)q.pop();yA=E(this,1===q.length?Q(gA).call(this,"".concat(HA," ").concat(q[0])):Q(gA).call(this,"".concat(HA,"\n\n").concat(q.join("\n"),"\n")))}else{var z=cA(lA),$="",K=sA[CA];"notDeepEqual"===CA||"notEqual"===CA?(z="".concat(sA[CA],"\n\n").concat(z)).length>1024&&(z="".concat(z.slice(0,1021),"...")):($="".concat(cA(FA)),z.length>512&&(z="".concat(z.slice(0,509),"...")),$.length>512&&($="".concat($.slice(0,509),"...")),"deepEqual"===CA||"equal"===CA?z="".concat(K,"\n\n").concat(z,"\n\nshould equal\n\n"):$=" ".concat(CA," ").concat($)),yA=E(this,Q(gA).call(this,"".concat(z).concat($)))}return Error.stackTraceLimit=bA,yA.generatedMessage=!Z,Object.defineProperty(h(yA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),yA.code="ERR_ASSERTION",yA.actual=lA,yA.expected=FA,yA.operator=CA,Error.captureStackTrace&&Error.captureStackTrace(h(yA),nA),yA.name="AssertionError",E(yA)}return function r(DA,gA){if("function"!=typeof gA&&null!==gA)throw new TypeError("Super expression must either be null or a function");DA.prototype=Object.create(gA&&gA.prototype,{constructor:{value:DA,writable:!0,configurable:!0}}),gA&&C(DA,gA)}(gA,DA),function f(DA,gA,QA){return gA&&g(DA.prototype,gA),QA&&g(DA,QA),DA}(gA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:v.custom,value:function(yA,Z){return v(this,function o(DA){for(var gA=1;gA2?"one of ".concat(Y," ").concat(M.slice(0,v-1).join(", "),", or ")+M[v-1]:2===v?"one of ".concat(Y," ").concat(M[0]," or ").concat(M[1]):"of ".concat(Y," ").concat(M[0])}return"of ".concat(Y," ").concat(String(M))}e("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),e("ERR_INVALID_ARG_TYPE",function(M,Y,v){var p,I;if(void 0===r&&(r=n(9282)),r("string"==typeof M,"'name' must be a string"),"string"==typeof Y&&function c(M,Y,v){return M.substr(!v||v<0?0:+v,Y.length)===Y}(Y,"not ")?(p="must not be",Y=Y.replace(/^not /,"")):p="must be",function C(M,Y,v){return(void 0===v||v>M.length)&&(v=M.length),M.substring(v-Y.length,v)===Y}(M," argument"))I="The ".concat(M," ").concat(p," ").concat(B(Y,"type"));else{var y=function Q(M,Y,v){return"number"!=typeof v&&(v=0),!(v+Y.length>M.length)&&-1!==M.indexOf(Y,v)}(M,".")?"property":"argument";I='The "'.concat(M,'" ').concat(y," ").concat(p," ").concat(B(Y,"type"))}return I+". Received type ".concat(u(v))},TypeError),e("ERR_INVALID_ARG_VALUE",function(M,Y){var v=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===w&&(w=n(9539));var p=w.inspect(Y);return p.length>128&&(p="".concat(p.slice(0,128),"...")),"The argument '".concat(M,"' ").concat(v,". Received ").concat(p)},TypeError,RangeError),e("ERR_INVALID_RETURN_VALUE",function(M,Y,v){var p;return p=v&&v.constructor&&v.constructor.name?"instance of ".concat(v.constructor.name):"type ".concat(u(v)),"Expected ".concat(M,' to be returned from the "').concat(Y,'"')+" function but got ".concat(p,".")},TypeError),e("ERR_MISSING_ARGS",function(){for(var M=arguments.length,Y=new Array(M),v=0;v0,"At least one arg needs to be specified");var p="The ",I=Y.length;switch(Y=Y.map(function(y){return'"'.concat(y,'"')}),I){case 1:p+="".concat(Y[0]," argument");break;case 2:p+="".concat(Y[0]," and ").concat(Y[1]," arguments");break;default:p+=Y.slice(0,I-1).join(", "),p+=", and ".concat(Y[I-1]," arguments")}return"".concat(p," must be specified")},TypeError),T.exports.codes=h},9158:function(T,A,n){"use strict";function u(OA,et){return function l(OA){if(Array.isArray(OA))return OA}(OA)||function s(OA,et){var st=[],ot=!0,Et=!1,ut=void 0;try{for(var Ft,TA=OA[Symbol.iterator]();!(ot=(Ft=TA.next()).done)&&(st.push(Ft.value),!et||st.length!==et);ot=!0);}catch(L){Et=!0,ut=L}finally{try{!ot&&null!=TA.return&&TA.return()}finally{if(Et)throw ut}}return st}(OA,et)||function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function g(OA){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(st){return typeof st}:function(st){return st&&"function"==typeof Symbol&&st.constructor===Symbol&&st!==Symbol.prototype?"symbol":typeof st})(OA)}var f=void 0!==/a/g.flags,E=function(et){var st=[];return et.forEach(function(ot){return st.push(ot)}),st},h=function(et){var st=[];return et.forEach(function(ot,Et){return st.push([Et,ot])}),st},r=Object.is?Object.is:n(609),w=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},e=Number.isNaN?Number.isNaN:n(360);function B(OA){return OA.call.bind(OA)}var c=B(Object.prototype.hasOwnProperty),C=B(Object.prototype.propertyIsEnumerable),Q=B(Object.prototype.toString),M=n(9539).types,Y=M.isAnyArrayBuffer,v=M.isArrayBufferView,p=M.isDate,I=M.isMap,y=M.isRegExp,U=M.isSet,S=M.isNativeError,b=M.isBoxedPrimitive,O=M.isNumberObject,J=M.isStringObject,sA=M.isBooleanObject,uA=M.isBigIntObject,X=M.isSymbolObject,cA=M.isFloat32Array,pA=M.isFloat64Array;function dA(OA){if(0===OA.length||OA.length>10)return!0;for(var et=0;et57)return!0}return 10===OA.length&&OA>=Math.pow(2,32)}function DA(OA){return Object.keys(OA).filter(dA).concat(w(OA).filter(Object.prototype.propertyIsEnumerable.bind(OA)))}function gA(OA,et){if(OA===et)return 0;for(var st=OA.length,ot=et.length,Et=0,ut=Math.min(st,ot);Et=h.length?{done:!0}:{done:!1,value:h[e++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(h,r){(null==r||r>h.length)&&(r=h.length);for(var w=0,e=new Array(r);wthis.buffer.length)return this.flush()},B.flush=function(){if(this.bufferOffset>0)return this.push(u.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},B.writeBuffer=function(C){return this.flush(),this.push(C),this.pos+=C.length},B.writeString=function(C,Q){switch(void 0===Q&&(Q="ascii"),Q){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(u.from(C,Q));case"utf16be":for(var M=u.from(C,"utf16le"),Y=0,v=M.length-1;Y>>16&255,this.buffer[this.bufferOffset++]=C>>>8&255,this.buffer[this.bufferOffset++]=255&C,this.pos+=3},B.writeUInt24LE=function(C){return this.ensure(3),this.buffer[this.bufferOffset++]=255&C,this.buffer[this.bufferOffset++]=C>>>8&255,this.buffer[this.bufferOffset++]=C>>>16&255,this.pos+=3},B.writeInt24BE=function(C){return this.writeUInt24BE(C>=0?C:C+16777215+1)},B.writeInt24LE=function(C){return this.writeUInt24LE(C>=0?C:C+16777215+1)},B.fill=function(C,Q){if(Q=this.length)){if(null==this.items[C]){var Q=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*C,this.items[C]=this.type.decode(this.stream,this.ctx),this.stream.pos=Q}return this.items[C]}},B.toArray=function(){for(var C=[],Q=0,M=this.length;Q>1),(B=f.call(this,"Int"+r,w)||this)._point=1<r)throw new RangeError('The value "'+L+'" is invalid for option "size"');var H=new Uint8Array(L);return Object.setPrototypeOf(H,B.prototype),H}function B(L,H,x){if("number"==typeof L){if("string"==typeof H)throw new TypeError('The "string" argument must be of type string. Received type number');return M(L)}return c(L,H,x)}function c(L,H,x){if("string"==typeof L)return function Y(L,H){if(("string"!=typeof H||""===H)&&(H="utf8"),!B.isEncoding(H))throw new TypeError("Unknown encoding: "+H);var x=0|b(L,H),wA=e(x),EA=wA.write(L,H);return EA!==x&&(wA=wA.slice(0,EA)),wA}(L,H);if(ArrayBuffer.isView(L))return function p(L){if(ot(L,Uint8Array)){var H=new Uint8Array(L);return I(H.buffer,H.byteOffset,H.byteLength)}return v(L)}(L);if(null==L)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof L);if(ot(L,ArrayBuffer)||L&&ot(L.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(ot(L,SharedArrayBuffer)||L&&ot(L.buffer,SharedArrayBuffer)))return I(L,H,x);if("number"==typeof L)throw new TypeError('The "value" argument must not be of type number. Received type number');var wA=L.valueOf&&L.valueOf();if(null!=wA&&wA!==L)return B.from(wA,H,x);var EA=function y(L){if(B.isBuffer(L)){var H=0|U(L.length),x=e(H);return 0===x.length||L.copy(x,0,0,H),x}return void 0!==L.length?"number"!=typeof L.length||Et(L.length)?e(0):v(L):"Buffer"===L.type&&Array.isArray(L.data)?v(L.data):void 0}(L);if(EA)return EA;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof L[Symbol.toPrimitive])return B.from(L[Symbol.toPrimitive]("string"),H,x);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof L)}function C(L){if("number"!=typeof L)throw new TypeError('"size" argument must be of type number');if(L<0)throw new RangeError('The value "'+L+'" is invalid for option "size"')}function M(L){return C(L),e(L<0?0:0|U(L))}function v(L){for(var H=L.length<0?0:0|U(L.length),x=e(H),wA=0;wA=r)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+r.toString(16)+" bytes");return 0|L}function b(L,H){if(B.isBuffer(L))return L.length;if(ArrayBuffer.isView(L)||ot(L,ArrayBuffer))return L.byteLength;if("string"!=typeof L)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof L);var x=L.length,wA=arguments.length>2&&!0===arguments[2];if(!wA&&0===x)return 0;for(var EA=!1;;)switch(H){case"ascii":case"latin1":case"binary":return x;case"utf8":case"utf-8":return Mt(L).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*x;case"hex":return x>>>1;case"base64":return et(L).length;default:if(EA)return wA?-1:Mt(L).length;H=(""+H).toLowerCase(),EA=!0}}function O(L,H,x){var wA=!1;if((void 0===H||H<0)&&(H=0),H>this.length||((void 0===x||x>this.length)&&(x=this.length),x<=0)||(x>>>=0)<=(H>>>=0))return"";for(L||(L="utf8");;)switch(L){case"hex":return lA(this,H,x);case"utf8":case"utf-8":return QA(this,H,x);case"ascii":return CA(this,H,x);case"latin1":case"binary":return nA(this,H,x);case"base64":return gA(this,H,x);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return FA(this,H,x);default:if(wA)throw new TypeError("Unknown encoding: "+L);L=(L+"").toLowerCase(),wA=!0}}function J(L,H,x){var wA=L[H];L[H]=L[x],L[x]=wA}function sA(L,H,x,wA,EA){if(0===L.length)return-1;if("string"==typeof x?(wA=x,x=0):x>2147483647?x=2147483647:x<-2147483648&&(x=-2147483648),Et(x=+x)&&(x=EA?0:L.length-1),x<0&&(x=L.length+x),x>=L.length){if(EA)return-1;x=L.length-1}else if(x<0){if(!EA)return-1;x=0}if("string"==typeof H&&(H=B.from(H,wA)),B.isBuffer(H))return 0===H.length?-1:uA(L,H,x,wA,EA);if("number"==typeof H)return H&=255,"function"==typeof Uint8Array.prototype.indexOf?EA?Uint8Array.prototype.indexOf.call(L,H,x):Uint8Array.prototype.lastIndexOf.call(L,H,x):uA(L,[H],x,wA,EA);throw new TypeError("val must be string, number or Buffer")}function uA(L,H,x,wA,EA){var j,NA=1,eA=L.length,rt=H.length;if(void 0!==wA&&("ucs2"===(wA=String(wA).toLowerCase())||"ucs-2"===wA||"utf16le"===wA||"utf-16le"===wA)){if(L.length<2||H.length<2)return-1;NA=2,eA/=2,rt/=2,x/=2}function yt(kA,qA){return 1===NA?kA[qA]:kA.readUInt16BE(qA*NA)}if(EA){var VA=-1;for(j=x;jeA&&(x=eA-rt),j=x;j>=0;j--){for(var _A=!0,vA=0;vAEA&&(wA=EA):wA=EA;var eA,NA=H.length;for(wA>NA/2&&(wA=NA/2),eA=0;eA>8,NA.push(x%256),NA.push(wA);return NA}(H,L.length-x),L,x,wA)}function gA(L,H,x){return f.fromByteArray(0===H&&x===L.length?L:L.slice(H,x))}function QA(L,H,x){x=Math.min(L.length,x);for(var wA=[],EA=H;EA239?4:NA>223?3:NA>191?2:1;if(EA+rt<=x){var yt=void 0,j=void 0,VA=void 0,_A=void 0;switch(rt){case 1:NA<128&&(eA=NA);break;case 2:128==(192&(yt=L[EA+1]))&&(_A=(31&NA)<<6|63&yt)>127&&(eA=_A);break;case 3:j=L[EA+2],128==(192&(yt=L[EA+1]))&&128==(192&j)&&(_A=(15&NA)<<12|(63&yt)<<6|63&j)>2047&&(_A<55296||_A>57343)&&(eA=_A);break;case 4:j=L[EA+2],VA=L[EA+3],128==(192&(yt=L[EA+1]))&&128==(192&j)&&128==(192&VA)&&(_A=(15&NA)<<18|(63&yt)<<12|(63&j)<<6|63&VA)>65535&&_A<1114112&&(eA=_A)}}null===eA?(eA=65533,rt=1):eA>65535&&(wA.push((eA-=65536)>>>10&1023|55296),eA=56320|1023&eA),wA.push(eA),EA+=rt}return function Z(L){var H=L.length;if(H<=4096)return String.fromCharCode.apply(String,L);for(var x="",wA=0;wAEA.length?(B.isBuffer(eA)||(eA=B.from(eA)),eA.copy(EA,NA)):Uint8Array.prototype.set.call(EA,eA,NA);else{if(!B.isBuffer(eA))throw new TypeError('"list" argument must be an Array of Buffers');eA.copy(EA,NA)}NA+=eA.length}return EA},B.byteLength=b,B.prototype._isBuffer=!0,B.prototype.swap16=function(){var H=this.length;if(H%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var x=0;xx&&(H+=" ... "),""},h&&(B.prototype[h]=B.prototype.inspect),B.prototype.compare=function(H,x,wA,EA,NA){if(ot(H,Uint8Array)&&(H=B.from(H,H.offset,H.byteLength)),!B.isBuffer(H))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof H);if(void 0===x&&(x=0),void 0===wA&&(wA=H?H.length:0),void 0===EA&&(EA=0),void 0===NA&&(NA=this.length),x<0||wA>H.length||EA<0||NA>this.length)throw new RangeError("out of range index");if(EA>=NA&&x>=wA)return 0;if(EA>=NA)return-1;if(x>=wA)return 1;if(this===H)return 0;for(var eA=(NA>>>=0)-(EA>>>=0),rt=(wA>>>=0)-(x>>>=0),yt=Math.min(eA,rt),j=this.slice(EA,NA),VA=H.slice(x,wA),_A=0;_A>>=0,isFinite(wA)?(wA>>>=0,void 0===EA&&(EA="utf8")):(EA=wA,wA=void 0)}var NA=this.length-x;if((void 0===wA||wA>NA)&&(wA=NA),H.length>0&&(wA<0||x<0)||x>this.length)throw new RangeError("Attempt to write outside buffer bounds");EA||(EA="utf8");for(var eA=!1;;)switch(EA){case"hex":return X(this,H,x,wA);case"utf8":case"utf-8":return cA(this,H,x,wA);case"ascii":case"latin1":case"binary":return pA(this,H,x,wA);case"base64":return dA(this,H,x,wA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return DA(this,H,x,wA);default:if(eA)throw new TypeError("Unknown encoding: "+EA);EA=(""+EA).toLowerCase(),eA=!0}},B.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function CA(L,H,x){var wA="";x=Math.min(L.length,x);for(var EA=H;EAwA)&&(x=wA);for(var EA="",NA=H;NAx)throw new RangeError("Trying to access beyond buffer length")}function HA(L,H,x,wA,EA,NA){if(!B.isBuffer(L))throw new TypeError('"buffer" argument must be a Buffer instance');if(H>EA||HL.length)throw new RangeError("Index out of range")}function q(L,H,x,wA,EA){tt(H,wA,EA,L,x,7);var NA=Number(H&BigInt(4294967295));L[x++]=NA,L[x++]=NA>>=8,L[x++]=NA>>=8,L[x++]=NA>>=8;var eA=Number(H>>BigInt(32)&BigInt(4294967295));return L[x++]=eA,L[x++]=eA>>=8,L[x++]=eA>>=8,L[x++]=eA>>=8,x}function z(L,H,x,wA,EA){tt(H,wA,EA,L,x,7);var NA=Number(H&BigInt(4294967295));L[x+7]=NA,L[x+6]=NA>>=8,L[x+5]=NA>>=8,L[x+4]=NA>>=8;var eA=Number(H>>BigInt(32)&BigInt(4294967295));return L[x+3]=eA,L[x+2]=eA>>=8,L[x+1]=eA>>=8,L[x]=eA>>=8,x+8}function $(L,H,x,wA,EA,NA){if(x+wA>L.length)throw new RangeError("Index out of range");if(x<0)throw new RangeError("Index out of range")}function K(L,H,x,wA,EA){return H=+H,x>>>=0,EA||$(L,0,x,4),E.write(L,H,x,wA,23,4),x+4}function fA(L,H,x,wA,EA){return H=+H,x>>>=0,EA||$(L,0,x,8),E.write(L,H,x,wA,52,8),x+8}B.prototype.slice=function(H,x){var wA=this.length;(H=~~H)<0?(H+=wA)<0&&(H=0):H>wA&&(H=wA),(x=void 0===x?wA:~~x)<0?(x+=wA)<0&&(x=0):x>wA&&(x=wA),x>>=0,x>>>=0,wA||bA(H,x,this.length);for(var EA=this[H],NA=1,eA=0;++eA>>=0,x>>>=0,wA||bA(H,x,this.length);for(var EA=this[H+--x],NA=1;x>0&&(NA*=256);)EA+=this[H+--x]*NA;return EA},B.prototype.readUint8=B.prototype.readUInt8=function(H,x){return H>>>=0,x||bA(H,1,this.length),this[H]},B.prototype.readUint16LE=B.prototype.readUInt16LE=function(H,x){return H>>>=0,x||bA(H,2,this.length),this[H]|this[H+1]<<8},B.prototype.readUint16BE=B.prototype.readUInt16BE=function(H,x){return H>>>=0,x||bA(H,2,this.length),this[H]<<8|this[H+1]},B.prototype.readUint32LE=B.prototype.readUInt32LE=function(H,x){return H>>>=0,x||bA(H,4,this.length),(this[H]|this[H+1]<<8|this[H+2]<<16)+16777216*this[H+3]},B.prototype.readUint32BE=B.prototype.readUInt32BE=function(H,x){return H>>>=0,x||bA(H,4,this.length),16777216*this[H]+(this[H+1]<<16|this[H+2]<<8|this[H+3])},B.prototype.readBigUInt64LE=TA(function(H){lt(H>>>=0,"offset");var x=this[H],wA=this[H+7];(void 0===x||void 0===wA)&&YA(H,this.length-8);var EA=x+this[++H]*Math.pow(2,8)+this[++H]*Math.pow(2,16)+this[++H]*Math.pow(2,24),NA=this[++H]+this[++H]*Math.pow(2,8)+this[++H]*Math.pow(2,16)+wA*Math.pow(2,24);return BigInt(EA)+(BigInt(NA)<>>=0,"offset");var x=this[H],wA=this[H+7];(void 0===x||void 0===wA)&&YA(H,this.length-8);var EA=x*Math.pow(2,24)+this[++H]*Math.pow(2,16)+this[++H]*Math.pow(2,8)+this[++H],NA=this[++H]*Math.pow(2,24)+this[++H]*Math.pow(2,16)+this[++H]*Math.pow(2,8)+wA;return(BigInt(EA)<>>=0,x>>>=0,wA||bA(H,x,this.length);for(var EA=this[H],NA=1,eA=0;++eA=(NA*=128)&&(EA-=Math.pow(2,8*x)),EA},B.prototype.readIntBE=function(H,x,wA){H>>>=0,x>>>=0,wA||bA(H,x,this.length);for(var EA=x,NA=1,eA=this[H+--EA];EA>0&&(NA*=256);)eA+=this[H+--EA]*NA;return eA>=(NA*=128)&&(eA-=Math.pow(2,8*x)),eA},B.prototype.readInt8=function(H,x){return H>>>=0,x||bA(H,1,this.length),128&this[H]?-1*(255-this[H]+1):this[H]},B.prototype.readInt16LE=function(H,x){H>>>=0,x||bA(H,2,this.length);var wA=this[H]|this[H+1]<<8;return 32768&wA?4294901760|wA:wA},B.prototype.readInt16BE=function(H,x){H>>>=0,x||bA(H,2,this.length);var wA=this[H+1]|this[H]<<8;return 32768&wA?4294901760|wA:wA},B.prototype.readInt32LE=function(H,x){return H>>>=0,x||bA(H,4,this.length),this[H]|this[H+1]<<8|this[H+2]<<16|this[H+3]<<24},B.prototype.readInt32BE=function(H,x){return H>>>=0,x||bA(H,4,this.length),this[H]<<24|this[H+1]<<16|this[H+2]<<8|this[H+3]},B.prototype.readBigInt64LE=TA(function(H){lt(H>>>=0,"offset");var x=this[H],wA=this[H+7];(void 0===x||void 0===wA)&&YA(H,this.length-8);var EA=this[H+4]+this[H+5]*Math.pow(2,8)+this[H+6]*Math.pow(2,16)+(wA<<24);return(BigInt(EA)<>>=0,"offset");var x=this[H],wA=this[H+7];(void 0===x||void 0===wA)&&YA(H,this.length-8);var EA=(x<<24)+this[++H]*Math.pow(2,16)+this[++H]*Math.pow(2,8)+this[++H];return(BigInt(EA)<>>=0,x||bA(H,4,this.length),E.read(this,H,!0,23,4)},B.prototype.readFloatBE=function(H,x){return H>>>=0,x||bA(H,4,this.length),E.read(this,H,!1,23,4)},B.prototype.readDoubleLE=function(H,x){return H>>>=0,x||bA(H,8,this.length),E.read(this,H,!0,52,8)},B.prototype.readDoubleBE=function(H,x){return H>>>=0,x||bA(H,8,this.length),E.read(this,H,!1,52,8)},B.prototype.writeUintLE=B.prototype.writeUIntLE=function(H,x,wA,EA){H=+H,x>>>=0,wA>>>=0,EA||HA(this,H,x,wA,Math.pow(2,8*wA)-1,0);var eA=1,rt=0;for(this[x]=255&H;++rt>>=0,wA>>>=0,EA||HA(this,H,x,wA,Math.pow(2,8*wA)-1,0);var eA=wA-1,rt=1;for(this[x+eA]=255&H;--eA>=0&&(rt*=256);)this[x+eA]=H/rt&255;return x+wA},B.prototype.writeUint8=B.prototype.writeUInt8=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,1,255,0),this[x]=255&H,x+1},B.prototype.writeUint16LE=B.prototype.writeUInt16LE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,2,65535,0),this[x]=255&H,this[x+1]=H>>>8,x+2},B.prototype.writeUint16BE=B.prototype.writeUInt16BE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,2,65535,0),this[x]=H>>>8,this[x+1]=255&H,x+2},B.prototype.writeUint32LE=B.prototype.writeUInt32LE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,4,4294967295,0),this[x+3]=H>>>24,this[x+2]=H>>>16,this[x+1]=H>>>8,this[x]=255&H,x+4},B.prototype.writeUint32BE=B.prototype.writeUInt32BE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,4,4294967295,0),this[x]=H>>>24,this[x+1]=H>>>16,this[x+2]=H>>>8,this[x+3]=255&H,x+4},B.prototype.writeBigUInt64LE=TA(function(H,x){return void 0===x&&(x=0),q(this,H,x,BigInt(0),BigInt("0xffffffffffffffff"))}),B.prototype.writeBigUInt64BE=TA(function(H,x){return void 0===x&&(x=0),z(this,H,x,BigInt(0),BigInt("0xffffffffffffffff"))}),B.prototype.writeIntLE=function(H,x,wA,EA){if(H=+H,x>>>=0,!EA){var NA=Math.pow(2,8*wA-1);HA(this,H,x,wA,NA-1,-NA)}var eA=0,rt=1,yt=0;for(this[x]=255&H;++eA>0)-yt&255;return x+wA},B.prototype.writeIntBE=function(H,x,wA,EA){if(H=+H,x>>>=0,!EA){var NA=Math.pow(2,8*wA-1);HA(this,H,x,wA,NA-1,-NA)}var eA=wA-1,rt=1,yt=0;for(this[x+eA]=255&H;--eA>=0&&(rt*=256);)H<0&&0===yt&&0!==this[x+eA+1]&&(yt=1),this[x+eA]=(H/rt>>0)-yt&255;return x+wA},B.prototype.writeInt8=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,1,127,-128),H<0&&(H=255+H+1),this[x]=255&H,x+1},B.prototype.writeInt16LE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,2,32767,-32768),this[x]=255&H,this[x+1]=H>>>8,x+2},B.prototype.writeInt16BE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,2,32767,-32768),this[x]=H>>>8,this[x+1]=255&H,x+2},B.prototype.writeInt32LE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,4,2147483647,-2147483648),this[x]=255&H,this[x+1]=H>>>8,this[x+2]=H>>>16,this[x+3]=H>>>24,x+4},B.prototype.writeInt32BE=function(H,x,wA){return H=+H,x>>>=0,wA||HA(this,H,x,4,2147483647,-2147483648),H<0&&(H=4294967295+H+1),this[x]=H>>>24,this[x+1]=H>>>16,this[x+2]=H>>>8,this[x+3]=255&H,x+4},B.prototype.writeBigInt64LE=TA(function(H,x){return void 0===x&&(x=0),q(this,H,x,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),B.prototype.writeBigInt64BE=TA(function(H,x){return void 0===x&&(x=0),z(this,H,x,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),B.prototype.writeFloatLE=function(H,x,wA){return K(this,H,x,!0,wA)},B.prototype.writeFloatBE=function(H,x,wA){return K(this,H,x,!1,wA)},B.prototype.writeDoubleLE=function(H,x,wA){return fA(this,H,x,!0,wA)},B.prototype.writeDoubleBE=function(H,x,wA){return fA(this,H,x,!1,wA)},B.prototype.copy=function(H,x,wA,EA){if(!B.isBuffer(H))throw new TypeError("argument should be a Buffer");if(wA||(wA=0),!EA&&0!==EA&&(EA=this.length),x>=H.length&&(x=H.length),x||(x=0),EA>0&&EA=this.length)throw new RangeError("Index out of range");if(EA<0)throw new RangeError("sourceEnd out of bounds");EA>this.length&&(EA=this.length),H.length-x>>=0,wA=void 0===wA?this.length:wA>>>0,H||(H=0),"number"==typeof H)for(eA=x;eA=wA+4;x-=3)H="_"+L.slice(x-3,x)+H;return""+L.slice(0,x)+H}function tt(L,H,x,wA,EA,NA){if(L>x||L3?0===H||H===BigInt(0)?">= 0"+eA+" and < 2"+eA+" ** "+8*(NA+1)+eA:">= -(2"+eA+" ** "+(8*(NA+1)-1)+eA+") and < 2 ** "+(8*(NA+1)-1)+eA:">= "+H+eA+" and <= "+x+eA,new IA.ERR_OUT_OF_RANGE("value",rt,L)}!function zA(L,H,x){lt(H,"offset"),(void 0===L[H]||void 0===L[H+x])&&YA(H,L.length-(x+1))}(wA,EA,NA)}function lt(L,H){if("number"!=typeof L)throw new IA.ERR_INVALID_ARG_TYPE(H,"number",L)}function YA(L,H,x){throw Math.floor(L)!==L?(lt(L,x),new IA.ERR_OUT_OF_RANGE(x||"offset","an integer",L)):H<0?new IA.ERR_BUFFER_OUT_OF_BOUNDS:new IA.ERR_OUT_OF_RANGE(x||"offset",">= "+(x?1:0)+" and <= "+H,L)}oA("ERR_BUFFER_OUT_OF_BOUNDS",function(L){return L?L+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),oA("ERR_INVALID_ARG_TYPE",function(L,H){return'The "'+L+'" argument must be of type number. Received type '+typeof H},TypeError),oA("ERR_OUT_OF_RANGE",function(L,H,x){var wA='The value of "'+L+'" is out of range.',EA=x;return Number.isInteger(x)&&Math.abs(x)>Math.pow(2,32)?EA=hA(String(x)):"bigint"==typeof x&&(EA=String(x),(x>Math.pow(BigInt(2),BigInt(32))||x<-Math.pow(BigInt(2),BigInt(32)))&&(EA=hA(EA)),EA+="n"),wA+" It must be "+H+". Received "+EA},RangeError);var it=/[^+/0-9A-Za-z-_]/g;function Mt(L,H){H=H||1/0;for(var x,wA=L.length,EA=null,NA=[],eA=0;eA55295&&x<57344){if(!EA){if(x>56319){(H-=3)>-1&&NA.push(239,191,189);continue}if(eA+1===wA){(H-=3)>-1&&NA.push(239,191,189);continue}EA=x;continue}if(x<56320){(H-=3)>-1&&NA.push(239,191,189),EA=x;continue}x=65536+(EA-55296<<10|x-56320)}else EA&&(H-=3)>-1&&NA.push(239,191,189);if(EA=null,x<128){if((H-=1)<0)break;NA.push(x)}else if(x<2048){if((H-=2)<0)break;NA.push(x>>6|192,63&x|128)}else if(x<65536){if((H-=3)<0)break;NA.push(x>>12|224,x>>6&63|128,63&x|128)}else{if(!(x<1114112))throw new Error("Invalid code point");if((H-=4)<0)break;NA.push(x>>18|240,x>>12&63|128,x>>6&63|128,63&x|128)}}return NA}function et(L){return f.toByteArray(function mt(L){if((L=(L=L.split("=")[0]).trim().replace(it,"")).length<2)return"";for(;L.length%4!=0;)L+="=";return L}(L))}function st(L,H,x,wA){var EA;for(EA=0;EA=H.length||EA>=L.length);++EA)H[EA+x]=L[EA];return EA}function ot(L,H){return L instanceof H||null!=L&&null!=L.constructor&&null!=L.constructor.name&&L.constructor.name===H.name}function Et(L){return L!=L}var ut=function(){for(var L="0123456789abcdef",H=new Array(256),x=0;x<16;++x)for(var wA=16*x,EA=0;EA<16;++EA)H[wA+EA]=L[x]+L[EA];return H}();function TA(L){return"undefined"==typeof BigInt?Ft:L}function Ft(){throw new Error("BigInt not supported")}},477:function(T,A,n){"use strict";n(7803),n(1539),T.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},2094:function(T,A,n){"use strict";var cA,pA,dA,u=n(477),o=n(9781),s=n(7854),l=n(614),g=n(111),f=n(2597),E=n(648),h=n(6330),r=n(8880),w=n(1320),e=n(3070).f,B=n(7976),c=n(9518),C=n(7674),Q=n(5112),M=n(9711),Y=s.Int8Array,v=Y&&Y.prototype,p=s.Uint8ClampedArray,I=p&&p.prototype,y=Y&&c(Y),U=v&&c(v),S=Object.prototype,b=s.TypeError,O=Q("toStringTag"),J=M("TYPED_ARRAY_TAG"),sA=M("TYPED_ARRAY_CONSTRUCTOR"),uA=u&&!!C&&"Opera"!==E(s.opera),X=!1,DA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},gA={BigInt64Array:8,BigUint64Array:8},yA=function(bA){if(!g(bA))return!1;var HA=E(bA);return f(DA,HA)||f(gA,HA)};for(cA in DA)(dA=(pA=s[cA])&&pA.prototype)?r(dA,sA,pA):uA=!1;for(cA in gA)(dA=(pA=s[cA])&&pA.prototype)&&r(dA,sA,pA);if((!uA||!l(y)||y===Function.prototype)&&(y=function(){throw b("Incorrect invocation")},uA))for(cA in DA)s[cA]&&C(s[cA],y);if((!uA||!U||U===S)&&(U=y.prototype,uA))for(cA in DA)s[cA]&&C(s[cA].prototype,U);if(uA&&c(I)!==U&&C(I,U),o&&!f(U,O))for(cA in X=!0,e(U,O,{get:function(){return g(this)?this[J]:void 0}}),DA)s[cA]&&r(s[cA],J,cA);T.exports={NATIVE_ARRAY_BUFFER_VIEWS:uA,TYPED_ARRAY_CONSTRUCTOR:sA,TYPED_ARRAY_TAG:X&&J,aTypedArray:function(bA){if(yA(bA))return bA;throw b("Target is not a typed array")},aTypedArrayConstructor:function(bA){if(l(bA)&&(!C||B(y,bA)))return bA;throw b(h(bA)+" is not a typed array constructor")},exportTypedArrayMethod:function(bA,HA,q){if(o){if(q)for(var z in DA){var $=s[z];if($&&f($.prototype,bA))try{delete $.prototype[bA]}catch(K){}}(!U[bA]||q)&&w(U,bA,q?HA:uA&&v[bA]||HA)}},exportTypedArrayStaticMethod:function(bA,HA,q){var z,$;if(o){if(C){if(q)for(z in DA)if(($=s[z])&&f($,bA))try{delete $[bA]}catch(K){}if(y[bA]&&!q)return;try{return w(y,bA,q?HA:uA&&y[bA]||HA)}catch(K){}}for(z in DA)($=s[z])&&(!$[bA]||q)&&w($,bA,HA)}},isView:function(bA){if(!g(bA))return!1;var HA=E(bA);return"DataView"===HA||f(DA,HA)||f(gA,HA)},isTypedArray:yA,TypedArray:y,TypedArrayPrototype:U}},2091:function(T,A,n){"use strict";n(8309);var u=n(7854),o=n(1702),s=n(9781),l=n(477),g=n(6530),f=n(8880),E=n(2248),h=n(7293),r=n(5787),w=n(9303),e=n(7466),B=n(7067),c=n(1179),C=n(9518),Q=n(7674),M=n(8006).f,Y=n(3070).f,v=n(1285),p=n(206),I=n(8003),y=n(9909),U=g.PROPER,S=g.CONFIGURABLE,b=y.get,O=y.set,J="ArrayBuffer",sA="DataView",uA="prototype",cA="Wrong index",pA=u[J],dA=pA,DA=dA&&dA[uA],gA=u[sA],QA=gA&&gA[uA],yA=Object.prototype,Z=u.Array,CA=u.RangeError,nA=o(v),lA=o([].reverse),FA=c.pack,bA=c.unpack,HA=function(dt){return[255&dt]},q=function(dt){return[255&dt,dt>>8&255]},z=function(dt){return[255&dt,dt>>8&255,dt>>16&255,dt>>24&255]},$=function(dt){return dt[3]<<24|dt[2]<<16|dt[1]<<8|dt[0]},K=function(dt){return FA(dt,23,4)},fA=function(dt){return FA(dt,52,8)},IA=function(dt,OA){Y(dt[uA],OA,{get:function(){return b(this)[OA]}})},oA=function(dt,OA,et,st){var ot=B(et),Et=b(dt);if(ot+OA>Et.byteLength)throw CA(cA);var ut=b(Et.buffer).bytes,TA=ot+Et.byteOffset,Ft=p(ut,TA,TA+OA);return st?Ft:lA(Ft)},hA=function(dt,OA,et,st,ot,Et){var ut=B(et),TA=b(dt);if(ut+OA>TA.byteLength)throw CA(cA);for(var Ft=b(TA.buffer).bytes,L=ut+TA.byteOffset,H=st(+ot),x=0;xlt;)(YA=tt[lt++])in dA||f(dA,YA,pA[YA]);DA.constructor=dA}Q&&C(QA)!==yA&&Q(QA,yA);var it=new gA(new dA(2)),mt=o(QA.setInt8);it.setInt8(0,2147483648),it.setInt8(1,2147483649),(it.getInt8(0)||!it.getInt8(1))&&E(QA,{setInt8:function(dt,OA){mt(this,dt,OA<<24>>24)},setUint8:function(dt,OA){mt(this,dt,OA<<24>>24)}},{unsafe:!0})}else DA=(dA=function(dt){r(this,DA);var OA=B(dt);O(this,{bytes:nA(Z(OA),0),byteLength:OA}),s||(this.byteLength=OA)})[uA],QA=(gA=function(dt,OA,et){r(this,QA),r(dt,DA);var st=b(dt).byteLength,ot=w(OA);if(ot<0||ot>st)throw CA("Wrong offset");if(ot+(et=void 0===et?st-ot:e(et))>st)throw CA("Wrong length");O(this,{buffer:dt,byteLength:et,byteOffset:ot}),s||(this.buffer=dt,this.byteLength=et,this.byteOffset=ot)})[uA],s&&(IA(dA,"byteLength"),IA(gA,"buffer"),IA(gA,"byteLength"),IA(gA,"byteOffset")),E(QA,{getInt8:function(dt){return oA(this,1,dt)[0]<<24>>24},getUint8:function(dt){return oA(this,1,dt)[0]},getInt16:function(dt){var OA=oA(this,2,dt,arguments.length>1?arguments[1]:void 0);return(OA[1]<<8|OA[0])<<16>>16},getUint16:function(dt){var OA=oA(this,2,dt,arguments.length>1?arguments[1]:void 0);return OA[1]<<8|OA[0]},getInt32:function(dt){return $(oA(this,4,dt,arguments.length>1?arguments[1]:void 0))},getUint32:function(dt){return $(oA(this,4,dt,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(dt){return bA(oA(this,4,dt,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(dt){return bA(oA(this,8,dt,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(dt,OA){hA(this,1,dt,HA,OA)},setUint8:function(dt,OA){hA(this,1,dt,HA,OA)},setInt16:function(dt,OA){hA(this,2,dt,q,OA,arguments.length>2?arguments[2]:void 0)},setUint16:function(dt,OA){hA(this,2,dt,q,OA,arguments.length>2?arguments[2]:void 0)},setInt32:function(dt,OA){hA(this,4,dt,z,OA,arguments.length>2?arguments[2]:void 0)},setUint32:function(dt,OA){hA(this,4,dt,z,OA,arguments.length>2?arguments[2]:void 0)},setFloat32:function(dt,OA){hA(this,4,dt,K,OA,arguments.length>2?arguments[2]:void 0)},setFloat64:function(dt,OA){hA(this,8,dt,fA,OA,arguments.length>2?arguments[2]:void 0)}});I(dA,J),I(gA,sA),T.exports={ArrayBuffer:dA,DataView:gA}},7803:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(2091),l=n(6340),g="ArrayBuffer",f=s[g];u({global:!0,forced:o[g]!==f},{ArrayBuffer:f}),l(g)},194:function(T,A,n){"use strict";T.exports=function(u){return function(){var o=u,l=o.lib.BlockCipher,g=o.algo,f=[],E=[],h=[],r=[],w=[],e=[],B=[],c=[],C=[],Q=[];!function(){for(var v=[],p=0;p<256;p++)v[p]=p<128?p<<1:p<<1^283;var I=0,y=0;for(p=0;p<256;p++){var U=y^y<<1^y<<2^y<<3^y<<4;f[I]=U=U>>>8^255&U^99,E[U]=I;var J,S=v[I],b=v[S],O=v[b];h[I]=(J=257*v[U]^16843008*U)<<24|J>>>8,r[I]=J<<16|J>>>16,w[I]=J<<8|J>>>24,e[I]=J,B[U]=(J=16843009*O^65537*b^257*S^16843008*I)<<24|J>>>8,c[U]=J<<16|J>>>16,C[U]=J<<8|J>>>24,Q[U]=J,I?(I=S^v[v[v[O^S]]],y^=v[v[y]]):I=y=1}}();var M=[0,1,2,4,8,16,32,64,128,27,54],Y=g.AES=l.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var I=this._keyPriorReset=this._key,y=I.words,U=I.sigBytes/4,b=4*((this._nRounds=U+6)+1),O=this._keySchedule=[],J=0;J6&&J%U==4&&(p=f[p>>>24]<<24|f[p>>>16&255]<<16|f[p>>>8&255]<<8|f[255&p]):(p=f[(p=p<<8|p>>>24)>>>24]<<24|f[p>>>16&255]<<16|f[p>>>8&255]<<8|f[255&p],p^=M[J/U|0]<<24),O[J]=O[J-U]^p);for(var sA=this._invKeySchedule=[],uA=0;uA>>24]]^c[f[p>>>16&255]]^C[f[p>>>8&255]]^Q[f[255&p]]}}},encryptBlock:function(p,I){this._doCryptBlock(p,I,this._keySchedule,h,r,w,e,f)},decryptBlock:function(p,I){var y=p[I+1];p[I+1]=p[I+3],p[I+3]=y,this._doCryptBlock(p,I,this._invKeySchedule,B,c,C,Q,E),y=p[I+1],p[I+1]=p[I+3],p[I+3]=y},_doCryptBlock:function(p,I,y,U,S,b,O,J){for(var sA=this._nRounds,uA=p[I]^y[0],X=p[I+1]^y[1],cA=p[I+2]^y[2],pA=p[I+3]^y[3],dA=4,DA=1;DA>>24]^S[X>>>16&255]^b[cA>>>8&255]^O[255&pA]^y[dA++],QA=U[X>>>24]^S[cA>>>16&255]^b[pA>>>8&255]^O[255&uA]^y[dA++],yA=U[cA>>>24]^S[pA>>>16&255]^b[uA>>>8&255]^O[255&X]^y[dA++],Z=U[pA>>>24]^S[uA>>>16&255]^b[X>>>8&255]^O[255&cA]^y[dA++];uA=gA,X=QA,cA=yA,pA=Z}gA=(J[uA>>>24]<<24|J[X>>>16&255]<<16|J[cA>>>8&255]<<8|J[255&pA])^y[dA++],QA=(J[X>>>24]<<24|J[cA>>>16&255]<<16|J[pA>>>8&255]<<8|J[255&uA])^y[dA++],yA=(J[cA>>>24]<<24|J[pA>>>16&255]<<16|J[uA>>>8&255]<<8|J[255&X])^y[dA++],Z=(J[pA>>>24]<<24|J[uA>>>16&255]<<16|J[X>>>8&255]<<8|J[255&cA])^y[dA++],p[I]=gA,p[I+1]=QA,p[I+2]=yA,p[I+3]=Z},keySize:8});o.AES=l._createHelper(Y)}(),u.AES}(n(757),n(7508),n(3440),n(3839),n(1582))},1582:function(T,A,n){"use strict";n(7042),n(2222),n(1539),n(9714),n(561),T.exports=function(u){var s,l,g,f,E,w,B,c,Q,M,Y,p,y,S,b,J,sA;u.lib.Cipher||(f=(l=(s=u).lib).WordArray,w=s.enc.Base64,B=s.algo.EvpKDF,c=l.Cipher=(E=l.BufferedBlockAlgorithm).extend({cfg:(g=l.Base).extend(),createEncryptor:function(X,cA){return this.create(this._ENC_XFORM_MODE,X,cA)},createDecryptor:function(X,cA){return this.create(this._DEC_XFORM_MODE,X,cA)},init:function(X,cA,pA){this.cfg=this.cfg.extend(pA),this._xformMode=X,this._key=cA,this.reset()},reset:function(){E.reset.call(this),this._doReset()},process:function(X){return this._append(X),this._process()},finalize:function(X){return X&&this._append(X),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function uA(X){return"string"==typeof X?sA:b}return function(X){return{encrypt:function(pA,dA,DA){return uA(dA).encrypt(X,pA,dA,DA)},decrypt:function(pA,dA,DA){return uA(dA).decrypt(X,pA,dA,DA)}}}}()}),l.StreamCipher=c.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),Q=s.mode={},M=l.BlockCipherMode=g.extend({createEncryptor:function(X,cA){return this.Encryptor.create(X,cA)},createDecryptor:function(X,cA){return this.Decryptor.create(X,cA)},init:function(X,cA){this._cipher=X,this._iv=cA}}),Y=Q.CBC=function(){var uA=M.extend();function X(cA,pA,dA){var DA,gA=this._iv;gA?(DA=gA,this._iv=undefined):DA=this._prevBlock;for(var QA=0;QA>>2]}},l.BlockCipher=c.extend({cfg:c.cfg.extend({mode:Y,padding:p}),reset:function(){var X;c.reset.call(this);var cA=this.cfg,pA=cA.iv,dA=cA.mode;this._xformMode==this._ENC_XFORM_MODE?X=dA.createEncryptor:(X=dA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==X?this._mode.init(this,pA&&pA.words):(this._mode=X.call(dA,this,pA&&pA.words),this._mode.__creator=X)},_doProcessBlock:function(X,cA){this._mode.processBlock(X,cA)},_doFinalize:function(){var X,cA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(cA.pad(this._data,this.blockSize),X=this._process(!0)):(X=this._process(!0),cA.unpad(X)),X},blockSize:4}),y=l.CipherParams=g.extend({init:function(X){this.mixIn(X)},toString:function(X){return(X||this.formatter).stringify(this)}}),S=(s.format={}).OpenSSL={stringify:function(X){var pA=X.ciphertext,dA=X.salt;return(dA?f.create([1398893684,1701076831]).concat(dA).concat(pA):pA).toString(w)},parse:function(X){var cA,pA=w.parse(X),dA=pA.words;return 1398893684==dA[0]&&1701076831==dA[1]&&(cA=f.create(dA.slice(2,4)),dA.splice(0,4),pA.sigBytes-=16),y.create({ciphertext:pA,salt:cA})}},b=l.SerializableCipher=g.extend({cfg:g.extend({format:S}),encrypt:function(X,cA,pA,dA){dA=this.cfg.extend(dA);var DA=X.createEncryptor(pA,dA),gA=DA.finalize(cA),QA=DA.cfg;return y.create({ciphertext:gA,key:pA,iv:QA.iv,algorithm:X,mode:QA.mode,padding:QA.padding,blockSize:X.blockSize,formatter:dA.format})},decrypt:function(X,cA,pA,dA){return dA=this.cfg.extend(dA),cA=this._parse(cA,dA.format),X.createDecryptor(pA,dA).finalize(cA.ciphertext)},_parse:function(X,cA){return"string"==typeof X?cA.parse(X,this):X}}),J=(s.kdf={}).OpenSSL={execute:function(X,cA,pA,dA){dA||(dA=f.random(8));var DA=B.create({keySize:cA+pA}).compute(X,dA),gA=f.create(DA.words.slice(cA),4*pA);return DA.sigBytes=4*cA,y.create({key:DA,iv:gA,salt:dA})}},sA=l.PasswordBasedCipher=b.extend({cfg:b.cfg.extend({kdf:J}),encrypt:function(X,cA,pA,dA){var DA=(dA=this.cfg.extend(dA)).kdf.execute(pA,X.keySize,X.ivSize);dA.iv=DA.iv;var gA=b.encrypt.call(this,X,cA,DA.key,dA);return gA.mixIn(DA),gA},decrypt:function(X,cA,pA,dA){dA=this.cfg.extend(dA),cA=this._parse(cA,dA.format);var DA=dA.kdf.execute(pA,X.keySize,X.ivSize,cA.salt);return dA.iv=DA.iv,b.decrypt.call(this,X,cA,DA.key,dA)}}))}(n(757),n(3839))},757:function(T,A,n){"use strict";var o;n(5743),n(6992),n(1539),n(9135),n(2990),n(8927),n(3105),n(5035),n(4345),n(7174),n(2846),n(4731),n(7209),n(6319),n(8867),n(7789),n(3739),n(9368),n(4483),n(2056),n(3462),n(678),n(7462),n(3824),n(5021),n(2974),n(5016),n(9714),n(7042),n(9600),n(2222),n(561),o=function(){var u=u||function(o,s){var l;if("undefined"!=typeof window&&window.crypto&&(l=window.crypto),"undefined"!=typeof self&&self.crypto&&(l=self.crypto),"undefined"!=typeof globalThis&&globalThis.crypto&&(l=globalThis.crypto),!l&&"undefined"!=typeof window&&window.msCrypto&&(l=window.msCrypto),!l&&void 0!==n.g&&n.g.crypto&&(l=n.g.crypto),!l)try{l=n(2480)}catch(v){}var g=function(){if(l){if("function"==typeof l.getRandomValues)try{return l.getRandomValues(new Uint32Array(1))[0]}catch(p){}if("function"==typeof l.randomBytes)try{return l.randomBytes(4).readInt32LE()}catch(p){}}throw new Error("Native crypto module could not be used to get secure random number.")},f=Object.create||function(){function v(){}return function(p){var I;return v.prototype=p,I=new v,v.prototype=null,I}}(),E={},h=E.lib={},r=h.Base={extend:function(p){var I=f(this);return p&&I.mixIn(p),(!I.hasOwnProperty("init")||this.init===I.init)&&(I.init=function(){I.$super.init.apply(this,arguments)}),I.init.prototype=I,I.$super=this,I},create:function(){var p=this.extend();return p.init.apply(p,arguments),p},init:function(){},mixIn:function(p){for(var I in p)p.hasOwnProperty(I)&&(this[I]=p[I]);p.hasOwnProperty("toString")&&(this.toString=p.toString)},clone:function(){return this.init.prototype.extend(this)}},w=h.WordArray=r.extend({init:function(p,I){p=this.words=p||[],this.sigBytes=null!=I?I:4*p.length},toString:function(p){return(p||B).stringify(this)},concat:function(p){var I=this.words,y=p.words,U=this.sigBytes,S=p.sigBytes;if(this.clamp(),U%4)for(var b=0;b>>2]|=(y[b>>>2]>>>24-b%4*8&255)<<24-(U+b)%4*8;else for(var J=0;J>>2]=y[J>>>2];return this.sigBytes+=S,this},clamp:function(){var p=this.words,I=this.sigBytes;p[I>>>2]&=4294967295<<32-I%4*8,p.length=o.ceil(I/4)},clone:function(){var p=r.clone.call(this);return p.words=this.words.slice(0),p},random:function(p){for(var I=[],y=0;y>>2]>>>24-S%4*8&255;U.push((b>>>4).toString(16)),U.push((15&b).toString(16))}return U.join("")},parse:function(p){for(var I=p.length,y=[],U=0;U>>3]|=parseInt(p.substr(U,2),16)<<24-U%8*4;return new w.init(y,I/2)}},c=e.Latin1={stringify:function(p){for(var I=p.words,y=p.sigBytes,U=[],S=0;S>>2]>>>24-S%4*8&255));return U.join("")},parse:function(p){for(var I=p.length,y=[],U=0;U>>2]|=(255&p.charCodeAt(U))<<24-U%4*8;return new w.init(y,I)}},C=e.Utf8={stringify:function(p){try{return decodeURIComponent(escape(c.stringify(p)))}catch(I){throw new Error("Malformed UTF-8 data")}},parse:function(p){return c.parse(unescape(encodeURIComponent(p)))}},Q=h.BufferedBlockAlgorithm=r.extend({reset:function(){this._data=new w.init,this._nDataBytes=0},_append:function(p){"string"==typeof p&&(p=C.parse(p)),this._data.concat(p),this._nDataBytes+=p.sigBytes},_process:function(p){var I,y=this._data,U=y.words,S=y.sigBytes,b=this.blockSize,J=S/(4*b),sA=(J=p?o.ceil(J):o.max((0|J)-this._minBufferSize,0))*b,uA=o.min(4*sA,S);if(sA){for(var X=0;X>>2]>>>24-C%4*8&255)<<16|(w[C+1>>>2]>>>24-(C+1)%4*8&255)<<8|w[C+2>>>2]>>>24-(C+2)%4*8&255,p=0;p<4&&C+.75*p>>6*(3-p)&63));var I=B.charAt(64);if(I)for(;c.length%4;)c.push(I);return c.join("")},parse:function(r){var w=r.length,e=this._map,B=this._reverseMap;if(!B){B=this._reverseMap=[];for(var c=0;c>>6-c%4*2;e[B>>>2]|=(C|Q)<<24-B%4*8,B++}return l.create(e,B)}(r,w,B)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},u.enc.Base64;var l}(n(757))},7590:function(T,A,n){"use strict";n(9600),T.exports=function(u){return l=u.lib.WordArray,u.enc.Base64url={stringify:function(r,w){void 0===w&&(w=!0);var e=r.words,B=r.sigBytes,c=w?this._safe_map:this._map;r.clamp();for(var C=[],Q=0;Q>>2]>>>24-Q%4*8&255)<<16|(e[Q+1>>>2]>>>24-(Q+1)%4*8&255)<<8|e[Q+2>>>2]>>>24-(Q+2)%4*8&255,I=0;I<4&&Q+.75*I>>6*(3-I)&63));var y=c.charAt(64);if(y)for(;C.length%4;)C.push(y);return C.join("")},parse:function(r,w){void 0===w&&(w=!0);var e=r.length,B=w?this._safe_map:this._map,c=this._reverseMap;if(!c){c=this._reverseMap=[];for(var C=0;C>>6-c%4*2;e[B>>>2]|=(C|Q)<<24-B%4*8,B++}return l.create(e,B)}(r,e,c)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},u.enc.Base64url;var l}(n(757))},4978:function(T,A,n){"use strict";n(9600),T.exports=function(u){return function(){var l=u.lib.WordArray,g=u.enc;function E(h){return h<<8&4278255360|h>>>8&16711935}g.Utf16=g.Utf16BE={stringify:function(r){for(var w=r.words,e=r.sigBytes,B=[],c=0;c>>2]>>>16-c%4*8&65535));return B.join("")},parse:function(r){for(var w=r.length,e=[],B=0;B>>1]|=r.charCodeAt(B)<<16-B%2*16;return l.create(e,2*w)}},g.Utf16LE={stringify:function(r){for(var w=r.words,e=r.sigBytes,B=[],c=0;c>>2]>>>16-c%4*8&65535);B.push(String.fromCharCode(C))}return B.join("")},parse:function(r){for(var w=r.length,e=[],B=0;B>>1]|=E(r.charCodeAt(B)<<16-B%2*16);return l.create(e,2*w)}}}(),u.enc.Utf16}(n(757))},3839:function(T,A,n){"use strict";n(2222),T.exports=function(u){return g=(s=(o=u).lib).WordArray,h=(f=o.algo).EvpKDF=(l=s.Base).extend({cfg:l.extend({keySize:4,hasher:f.MD5,iterations:1}),init:function(w){this.cfg=this.cfg.extend(w)},compute:function(w,e){for(var B,c=this.cfg,C=c.hasher.create(),Q=g.create(),M=Q.words,Y=c.keySize,v=c.iterations;M.lengthc&&(e=w.finalize(e)),e.clamp();for(var C=this._oKey=e.clone(),Q=this._iKey=e.clone(),M=C.words,Y=Q.words,v=0;v>>2]|=E[w]<<24-w%4*8;g.call(this,r,h)}else g.apply(this,arguments)};f.prototype=l}}(),u.lib.WordArray},T.exports=o(n(757))},3440:function(T,A,n){"use strict";T.exports=function(u){return function(o){var s=u,l=s.lib,g=l.WordArray,f=l.Hasher,E=s.algo,h=[];!function(){for(var C=0;C<64;C++)h[C]=4294967296*o.abs(o.sin(C+1))|0}();var r=E.MD5=f.extend({_doReset:function(){this._hash=new g.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(Q,M){for(var Y=0;Y<16;Y++){var v=M+Y,p=Q[v];Q[v]=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8)}var I=this._hash.words,y=Q[M+0],U=Q[M+1],S=Q[M+2],b=Q[M+3],O=Q[M+4],J=Q[M+5],sA=Q[M+6],uA=Q[M+7],X=Q[M+8],cA=Q[M+9],pA=Q[M+10],dA=Q[M+11],DA=Q[M+12],gA=Q[M+13],QA=Q[M+14],yA=Q[M+15],Z=I[0],CA=I[1],nA=I[2],lA=I[3];Z=w(Z,CA,nA,lA,y,7,h[0]),lA=w(lA,Z,CA,nA,U,12,h[1]),nA=w(nA,lA,Z,CA,S,17,h[2]),CA=w(CA,nA,lA,Z,b,22,h[3]),Z=w(Z,CA,nA,lA,O,7,h[4]),lA=w(lA,Z,CA,nA,J,12,h[5]),nA=w(nA,lA,Z,CA,sA,17,h[6]),CA=w(CA,nA,lA,Z,uA,22,h[7]),Z=w(Z,CA,nA,lA,X,7,h[8]),lA=w(lA,Z,CA,nA,cA,12,h[9]),nA=w(nA,lA,Z,CA,pA,17,h[10]),CA=w(CA,nA,lA,Z,dA,22,h[11]),Z=w(Z,CA,nA,lA,DA,7,h[12]),lA=w(lA,Z,CA,nA,gA,12,h[13]),nA=w(nA,lA,Z,CA,QA,17,h[14]),Z=e(Z,CA=w(CA,nA,lA,Z,yA,22,h[15]),nA,lA,U,5,h[16]),lA=e(lA,Z,CA,nA,sA,9,h[17]),nA=e(nA,lA,Z,CA,dA,14,h[18]),CA=e(CA,nA,lA,Z,y,20,h[19]),Z=e(Z,CA,nA,lA,J,5,h[20]),lA=e(lA,Z,CA,nA,pA,9,h[21]),nA=e(nA,lA,Z,CA,yA,14,h[22]),CA=e(CA,nA,lA,Z,O,20,h[23]),Z=e(Z,CA,nA,lA,cA,5,h[24]),lA=e(lA,Z,CA,nA,QA,9,h[25]),nA=e(nA,lA,Z,CA,b,14,h[26]),CA=e(CA,nA,lA,Z,X,20,h[27]),Z=e(Z,CA,nA,lA,gA,5,h[28]),lA=e(lA,Z,CA,nA,S,9,h[29]),nA=e(nA,lA,Z,CA,uA,14,h[30]),Z=B(Z,CA=e(CA,nA,lA,Z,DA,20,h[31]),nA,lA,J,4,h[32]),lA=B(lA,Z,CA,nA,X,11,h[33]),nA=B(nA,lA,Z,CA,dA,16,h[34]),CA=B(CA,nA,lA,Z,QA,23,h[35]),Z=B(Z,CA,nA,lA,U,4,h[36]),lA=B(lA,Z,CA,nA,O,11,h[37]),nA=B(nA,lA,Z,CA,uA,16,h[38]),CA=B(CA,nA,lA,Z,pA,23,h[39]),Z=B(Z,CA,nA,lA,gA,4,h[40]),lA=B(lA,Z,CA,nA,y,11,h[41]),nA=B(nA,lA,Z,CA,b,16,h[42]),CA=B(CA,nA,lA,Z,sA,23,h[43]),Z=B(Z,CA,nA,lA,cA,4,h[44]),lA=B(lA,Z,CA,nA,DA,11,h[45]),nA=B(nA,lA,Z,CA,yA,16,h[46]),Z=c(Z,CA=B(CA,nA,lA,Z,S,23,h[47]),nA,lA,y,6,h[48]),lA=c(lA,Z,CA,nA,uA,10,h[49]),nA=c(nA,lA,Z,CA,QA,15,h[50]),CA=c(CA,nA,lA,Z,J,21,h[51]),Z=c(Z,CA,nA,lA,DA,6,h[52]),lA=c(lA,Z,CA,nA,b,10,h[53]),nA=c(nA,lA,Z,CA,pA,15,h[54]),CA=c(CA,nA,lA,Z,U,21,h[55]),Z=c(Z,CA,nA,lA,X,6,h[56]),lA=c(lA,Z,CA,nA,yA,10,h[57]),nA=c(nA,lA,Z,CA,sA,15,h[58]),CA=c(CA,nA,lA,Z,gA,21,h[59]),Z=c(Z,CA,nA,lA,O,6,h[60]),lA=c(lA,Z,CA,nA,dA,10,h[61]),nA=c(nA,lA,Z,CA,S,15,h[62]),CA=c(CA,nA,lA,Z,cA,21,h[63]),I[0]=I[0]+Z|0,I[1]=I[1]+CA|0,I[2]=I[2]+nA|0,I[3]=I[3]+lA|0},_doFinalize:function(){var Q=this._data,M=Q.words,Y=8*this._nDataBytes,v=8*Q.sigBytes;M[v>>>5]|=128<<24-v%32;var p=o.floor(Y/4294967296),I=Y;M[15+(v+64>>>9<<4)]=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),M[14+(v+64>>>9<<4)]=16711935&(I<<8|I>>>24)|4278255360&(I<<24|I>>>8),Q.sigBytes=4*(M.length+1),this._process();for(var y=this._hash,U=y.words,S=0;S<4;S++){var b=U[S];U[S]=16711935&(b<<8|b>>>24)|4278255360&(b<<24|b>>>8)}return y},clone:function(){var Q=f.clone.call(this);return Q._hash=this._hash.clone(),Q}});function w(C,Q,M,Y,v,p,I){var y=C+(Q&M|~Q&Y)+v+I;return(y<>>32-p)+Q}function e(C,Q,M,Y,v,p,I){var y=C+(Q&Y|M&~Y)+v+I;return(y<>>32-p)+Q}function B(C,Q,M,Y,v,p,I){var y=C+(Q^M^Y)+v+I;return(y<>>32-p)+Q}function c(C,Q,M,Y,v,p,I){var y=C+(M^(Q|~Y))+v+I;return(y<>>32-p)+Q}s.MD5=f._createHelper(r),s.HmacMD5=f._createHmacHelper(r)}(Math),u.MD5}(n(757))},702:function(T,A,n){"use strict";n(7042),T.exports=function(u){return u.mode.CFB=function(){var o=u.lib.BlockCipherMode.extend();function s(l,g,f,E){var h,r=this._iv;r?(h=r.slice(0),this._iv=void 0):h=this._prevBlock,E.encryptBlock(h,0);for(var w=0;w>24&255)){var E=f>>16&255,h=f>>8&255,r=255&f;255===E?(E=0,255===h?(h=0,255===r?r=0:++r):++h):++E,f=0,f+=E<<16,f+=h<<8,f+=r}else f+=16777216;return f}var g=o.Encryptor=o.extend({processBlock:function(E,h){var r=this._cipher,w=r.blockSize,e=this._iv,B=this._counter;e&&(B=this._counter=e.slice(0),this._iv=void 0),function l(f){return 0===(f[0]=s(f[0]))&&(f[1]=s(f[1])),f}(B);var c=B.slice(0);r.encryptBlock(c,0);for(var C=0;C>>2]|=E<<24-h%4*8,s.sigBytes+=E},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},u.pad.Ansix923}(n(757),n(1582))},4431:function(T,A,n){"use strict";n(2222),T.exports=function(u){return u.pad.Iso10126={pad:function(s,l){var g=4*l,f=g-s.sigBytes%g;s.concat(u.lib.WordArray.random(f-1)).concat(u.lib.WordArray.create([f<<24],1))},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},u.pad.Iso10126}(n(757),n(1582))},8800:function(T,A,n){"use strict";n(2222),T.exports=function(u){return u.pad.Iso97971={pad:function(s,l){s.concat(u.lib.WordArray.create([2147483648],1)),u.pad.ZeroPadding.pad(s,l)},unpad:function(s){u.pad.ZeroPadding.unpad(s),s.sigBytes--}},u.pad.Iso97971}(n(757),n(1582))},649:function(T,A,n){"use strict";T.exports=function(u){return u.pad.NoPadding={pad:function(){},unpad:function(){}},u.pad.NoPadding}(n(757),n(1582))},3992:function(T,A,n){"use strict";T.exports=function(u){return u.pad.ZeroPadding={pad:function(s,l){var g=4*l;s.clamp(),s.sigBytes+=g-(s.sigBytes%g||g)},unpad:function(s){var l=s.words,g=s.sigBytes-1;for(g=s.sigBytes-1;g>=0;g--)if(l[g>>>2]>>>24-g%4*8&255){s.sigBytes=g+1;break}}},u.pad.ZeroPadding}(n(757),n(1582))},3486:function(T,A,n){"use strict";n(2222),T.exports=function(u){return g=(s=(o=u).lib).WordArray,h=(f=o.algo).HMAC,r=f.PBKDF2=(l=s.Base).extend({cfg:l.extend({keySize:4,hasher:f.SHA1,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,B){for(var c=this.cfg,C=h.create(c.hasher,e),Q=g.create(),M=g.create([1]),Y=Q.words,v=M.words,p=c.keySize,I=c.iterations;Y.length>>16,B[1],B[0]<<16|B[3]>>>16,B[2],B[1]<<16|B[0]>>>16,B[3],B[2]<<16|B[1]>>>16],Q=this._C=[B[2]<<16|B[2]>>>16,4294901760&B[0]|65535&B[1],B[3]<<16|B[3]>>>16,4294901760&B[1]|65535&B[2],B[0]<<16|B[0]>>>16,4294901760&B[2]|65535&B[3],B[1]<<16|B[1]>>>16,4294901760&B[3]|65535&B[0]];this._b=0;for(var M=0;M<4;M++)w.call(this);for(M=0;M<8;M++)Q[M]^=C[M+4&7];if(c){var Y=c.words,v=Y[0],p=Y[1],I=16711935&(v<<8|v>>>24)|4278255360&(v<<24|v>>>8),y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),U=I>>>16|4294901760&y,S=y<<16|65535&I;for(Q[0]^=I,Q[1]^=U,Q[2]^=y,Q[3]^=S,Q[4]^=I,Q[5]^=U,Q[6]^=y,Q[7]^=S,M=0;M<4;M++)w.call(this)}},_doProcessBlock:function(B,c){var C=this._X;w.call(this),f[0]=C[0]^C[5]>>>16^C[3]<<16,f[1]=C[2]^C[7]>>>16^C[5]<<16,f[2]=C[4]^C[1]>>>16^C[7]<<16,f[3]=C[6]^C[3]>>>16^C[1]<<16;for(var Q=0;Q<4;Q++)f[Q]=16711935&(f[Q]<<8|f[Q]>>>24)|4278255360&(f[Q]<<24|f[Q]>>>8),B[c+Q]^=f[Q]},blockSize:4,ivSize:2});function w(){for(var e=this._X,B=this._C,c=0;c<8;c++)E[c]=B[c];for(B[0]=B[0]+1295307597+this._b|0,B[1]=B[1]+3545052371+(B[0]>>>0>>0?1:0)|0,B[2]=B[2]+886263092+(B[1]>>>0>>0?1:0)|0,B[3]=B[3]+1295307597+(B[2]>>>0>>0?1:0)|0,B[4]=B[4]+3545052371+(B[3]>>>0>>0?1:0)|0,B[5]=B[5]+886263092+(B[4]>>>0>>0?1:0)|0,B[6]=B[6]+1295307597+(B[5]>>>0>>0?1:0)|0,B[7]=B[7]+3545052371+(B[6]>>>0>>0?1:0)|0,this._b=B[7]>>>0>>0?1:0,c=0;c<8;c++){var C=e[c]+B[c],Q=65535&C,M=C>>>16;h[c]=((Q*Q>>>17)+Q*M>>>15)+M*M^((4294901760&C)*C|0)+((65535&C)*C|0)}e[0]=h[0]+(h[7]<<16|h[7]>>>16)+(h[6]<<16|h[6]>>>16)|0,e[1]=h[1]+(h[0]<<8|h[0]>>>24)+h[7]|0,e[2]=h[2]+(h[1]<<16|h[1]>>>16)+(h[0]<<16|h[0]>>>16)|0,e[3]=h[3]+(h[2]<<8|h[2]>>>24)+h[1]|0,e[4]=h[4]+(h[3]<<16|h[3]>>>16)+(h[2]<<16|h[2]>>>16)|0,e[5]=h[5]+(h[4]<<8|h[4]>>>24)+h[3]|0,e[6]=h[6]+(h[5]<<16|h[5]>>>16)+(h[4]<<16|h[4]>>>16)|0,e[7]=h[7]+(h[6]<<8|h[6]>>>24)+h[5]|0}o.RabbitLegacy=l._createHelper(r)}(),u.RabbitLegacy}(n(757),n(7508),n(3440),n(3839),n(1582))},5323:function(T,A,n){"use strict";T.exports=function(u){return function(){var o=u,l=o.lib.StreamCipher,f=[],E=[],h=[],r=o.algo.Rabbit=l.extend({_doReset:function(){for(var B=this._key.words,c=this.cfg.iv,C=0;C<4;C++)B[C]=16711935&(B[C]<<8|B[C]>>>24)|4278255360&(B[C]<<24|B[C]>>>8);var Q=this._X=[B[0],B[3]<<16|B[2]>>>16,B[1],B[0]<<16|B[3]>>>16,B[2],B[1]<<16|B[0]>>>16,B[3],B[2]<<16|B[1]>>>16],M=this._C=[B[2]<<16|B[2]>>>16,4294901760&B[0]|65535&B[1],B[3]<<16|B[3]>>>16,4294901760&B[1]|65535&B[2],B[0]<<16|B[0]>>>16,4294901760&B[2]|65535&B[3],B[1]<<16|B[1]>>>16,4294901760&B[3]|65535&B[0]];for(this._b=0,C=0;C<4;C++)w.call(this);for(C=0;C<8;C++)M[C]^=Q[C+4&7];if(c){var Y=c.words,v=Y[0],p=Y[1],I=16711935&(v<<8|v>>>24)|4278255360&(v<<24|v>>>8),y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),U=I>>>16|4294901760&y,S=y<<16|65535&I;for(M[0]^=I,M[1]^=U,M[2]^=y,M[3]^=S,M[4]^=I,M[5]^=U,M[6]^=y,M[7]^=S,C=0;C<4;C++)w.call(this)}},_doProcessBlock:function(B,c){var C=this._X;w.call(this),f[0]=C[0]^C[5]>>>16^C[3]<<16,f[1]=C[2]^C[7]>>>16^C[5]<<16,f[2]=C[4]^C[1]>>>16^C[7]<<16,f[3]=C[6]^C[3]>>>16^C[1]<<16;for(var Q=0;Q<4;Q++)f[Q]=16711935&(f[Q]<<8|f[Q]>>>24)|4278255360&(f[Q]<<24|f[Q]>>>8),B[c+Q]^=f[Q]},blockSize:4,ivSize:2});function w(){for(var e=this._X,B=this._C,c=0;c<8;c++)E[c]=B[c];for(B[0]=B[0]+1295307597+this._b|0,B[1]=B[1]+3545052371+(B[0]>>>0>>0?1:0)|0,B[2]=B[2]+886263092+(B[1]>>>0>>0?1:0)|0,B[3]=B[3]+1295307597+(B[2]>>>0>>0?1:0)|0,B[4]=B[4]+3545052371+(B[3]>>>0>>0?1:0)|0,B[5]=B[5]+886263092+(B[4]>>>0>>0?1:0)|0,B[6]=B[6]+1295307597+(B[5]>>>0>>0?1:0)|0,B[7]=B[7]+3545052371+(B[6]>>>0>>0?1:0)|0,this._b=B[7]>>>0>>0?1:0,c=0;c<8;c++){var C=e[c]+B[c],Q=65535&C,M=C>>>16;h[c]=((Q*Q>>>17)+Q*M>>>15)+M*M^((4294901760&C)*C|0)+((65535&C)*C|0)}e[0]=h[0]+(h[7]<<16|h[7]>>>16)+(h[6]<<16|h[6]>>>16)|0,e[1]=h[1]+(h[0]<<8|h[0]>>>24)+h[7]|0,e[2]=h[2]+(h[1]<<16|h[1]>>>16)+(h[0]<<16|h[0]>>>16)|0,e[3]=h[3]+(h[2]<<8|h[2]>>>24)+h[1]|0,e[4]=h[4]+(h[3]<<16|h[3]>>>16)+(h[2]<<16|h[2]>>>16)|0,e[5]=h[5]+(h[4]<<8|h[4]>>>24)+h[3]|0,e[6]=h[6]+(h[5]<<16|h[5]>>>16)+(h[4]<<16|h[4]>>>16)|0,e[7]=h[7]+(h[6]<<8|h[6]>>>24)+h[5]|0}o.Rabbit=l._createHelper(r)}(),u.Rabbit}(n(757),n(7508),n(3440),n(3839),n(1582))},4640:function(T,A,n){"use strict";n(1539),n(8674),T.exports=function(u){return function(){var o=u,l=o.lib.StreamCipher,g=o.algo,f=g.RC4=l.extend({_doReset:function(){for(var w=this._key,e=w.words,B=w.sigBytes,c=this._S=[],C=0;C<256;C++)c[C]=C;C=0;for(var Q=0;C<256;C++){var M=C%B,v=c[C];c[C]=c[Q=(Q+c[C]+(e[M>>>2]>>>24-M%4*8&255))%256],c[Q]=v}this._i=this._j=0},_doProcessBlock:function(w,e){w[e]^=E.call(this)},keySize:8,ivSize:0});function E(){for(var r=this._S,w=this._i,e=this._j,B=0,c=0;c<4;c++){var C=r[w=(w+1)%256];r[w]=r[e=(e+r[w])%256],r[e]=C,B|=r[(r[w]+r[e])%256]<<24-8*c}return this._i=w,this._j=e,B}o.RC4=l._createHelper(f);var h=g.RC4Drop=f.extend({cfg:f.cfg.extend({drop:192}),_doReset:function(){f._doReset.call(this);for(var w=this.cfg.drop;w>0;w--)E.call(this)}});o.RC4Drop=l._createHelper(h)}(),u.RC4}(n(757),n(7508),n(3440),n(3839),n(1582))},8714:function(T,A,n){"use strict";T.exports=function(u){return function(o){var s=u,l=s.lib,g=l.WordArray,f=l.Hasher,E=s.algo,h=g.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),r=g.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),w=g.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),e=g.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),B=g.create([0,1518500249,1859775393,2400959708,2840853838]),c=g.create([1352829926,1548603684,1836072691,2053994217,0]),C=E.RIPEMD160=f.extend({_doReset:function(){this._hash=g.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(U,S){for(var b=0;b<16;b++){var O=S+b,J=U[O];U[O]=16711935&(J<<8|J>>>24)|4278255360&(J<<24|J>>>8)}var gA,QA,yA,Z,CA,nA,lA,FA,bA,HA,q,sA=this._hash.words,uA=B.words,X=c.words,cA=h.words,pA=r.words,dA=w.words,DA=e.words;for(nA=gA=sA[0],lA=QA=sA[1],FA=yA=sA[2],bA=Z=sA[3],HA=CA=sA[4],b=0;b<80;b+=1)q=gA+U[S+cA[b]]|0,q+=b<16?Q(QA,yA,Z)+uA[0]:b<32?M(QA,yA,Z)+uA[1]:b<48?Y(QA,yA,Z)+uA[2]:b<64?v(QA,yA,Z)+uA[3]:p(QA,yA,Z)+uA[4],q=(q=I(q|=0,dA[b]))+CA|0,gA=CA,CA=Z,Z=I(yA,10),yA=QA,QA=q,q=nA+U[S+pA[b]]|0,q+=b<16?p(lA,FA,bA)+X[0]:b<32?v(lA,FA,bA)+X[1]:b<48?Y(lA,FA,bA)+X[2]:b<64?M(lA,FA,bA)+X[3]:Q(lA,FA,bA)+X[4],q=(q=I(q|=0,DA[b]))+HA|0,nA=HA,HA=bA,bA=I(FA,10),FA=lA,lA=q;q=sA[1]+yA+bA|0,sA[1]=sA[2]+Z+HA|0,sA[2]=sA[3]+CA+nA|0,sA[3]=sA[4]+gA+lA|0,sA[4]=sA[0]+QA+FA|0,sA[0]=q},_doFinalize:function(){var U=this._data,S=U.words,b=8*this._nDataBytes,O=8*U.sigBytes;S[O>>>5]|=128<<24-O%32,S[14+(O+64>>>9<<4)]=16711935&(b<<8|b>>>24)|4278255360&(b<<24|b>>>8),U.sigBytes=4*(S.length+1),this._process();for(var J=this._hash,sA=J.words,uA=0;uA<5;uA++){var X=sA[uA];sA[uA]=16711935&(X<<8|X>>>24)|4278255360&(X<<24|X>>>8)}return J},clone:function(){var U=f.clone.call(this);return U._hash=this._hash.clone(),U}});function Q(y,U,S){return y^U^S}function M(y,U,S){return y&U|~y&S}function Y(y,U,S){return(y|~U)^S}function v(y,U,S){return y&S|U&~S}function p(y,U,S){return y^(U|~S)}function I(y,U){return y<>>32-U}s.RIPEMD160=f._createHelper(C),s.HmacRIPEMD160=f._createHmacHelper(C)}(Math),u.RIPEMD160}(n(757))},9865:function(T,A,n){"use strict";T.exports=function(u){return l=(s=(o=u).lib).WordArray,E=[],h=o.algo.SHA1=(g=s.Hasher).extend({_doReset:function(){this._hash=new l.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(w,e){for(var B=this._hash.words,c=B[0],C=B[1],Q=B[2],M=B[3],Y=B[4],v=0;v<80;v++){if(v<16)E[v]=0|w[e+v];else{var p=E[v-3]^E[v-8]^E[v-14]^E[v-16];E[v]=p<<1|p>>>31}var I=(c<<5|c>>>27)+Y+E[v];I+=v<20?1518500249+(C&Q|~C&M):v<40?1859775393+(C^Q^M):v<60?(C&Q|C&M|Q&M)-1894007588:(C^Q^M)-899497514,Y=M,M=Q,Q=C<<30|C>>>2,C=c,c=I}B[0]=B[0]+c|0,B[1]=B[1]+C|0,B[2]=B[2]+Q|0,B[3]=B[3]+M|0,B[4]=B[4]+Y|0},_doFinalize:function(){var w=this._data,e=w.words,B=8*this._nDataBytes,c=8*w.sigBytes;return e[c>>>5]|=128<<24-c%32,e[14+(c+64>>>9<<4)]=Math.floor(B/4294967296),e[15+(c+64>>>9<<4)]=B,w.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var w=g.clone.call(this);return w._hash=this._hash.clone(),w}}),o.SHA1=g._createHelper(h),o.HmacSHA1=g._createHmacHelper(h),u.SHA1;var o,s,l,g,E,h}(n(757))},6876:function(T,A,n){"use strict";T.exports=function(u){return l=(o=u).lib.WordArray,E=(g=o.algo).SHA224=(f=g.SHA256).extend({_doReset:function(){this._hash=new l.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var r=f._doFinalize.call(this);return r.sigBytes-=4,r}}),o.SHA224=f._createHelper(E),o.HmacSHA224=f._createHmacHelper(E),u.SHA224;var o,l,g,f,E}(n(757),n(8921))},8921:function(T,A,n){"use strict";n(7042),T.exports=function(u){return function(o){var s=u,l=s.lib,g=l.WordArray,f=l.Hasher,E=s.algo,h=[],r=[];!function(){function B(M){for(var Y=o.sqrt(M),v=2;v<=Y;v++)if(!(M%v))return!1;return!0}function c(M){return 4294967296*(M-(0|M))|0}for(var C=2,Q=0;Q<64;)B(C)&&(Q<8&&(h[Q]=c(o.pow(C,.5))),r[Q]=c(o.pow(C,.3333333333333333)),Q++),C++}();var w=[],e=E.SHA256=f.extend({_doReset:function(){this._hash=new g.init(h.slice(0))},_doProcessBlock:function(c,C){for(var Q=this._hash.words,M=Q[0],Y=Q[1],v=Q[2],p=Q[3],I=Q[4],y=Q[5],U=Q[6],S=Q[7],b=0;b<64;b++){if(b<16)w[b]=0|c[C+b];else{var O=w[b-15],sA=w[b-2];w[b]=((O<<25|O>>>7)^(O<<14|O>>>18)^O>>>3)+w[b-7]+((sA<<15|sA>>>17)^(sA<<13|sA>>>19)^sA>>>10)+w[b-16]}var cA=M&Y^M&v^Y&v,DA=S+((I<<26|I>>>6)^(I<<21|I>>>11)^(I<<7|I>>>25))+(I&y^~I&U)+r[b]+w[b];S=U,U=y,y=I,I=p+DA|0,p=v,v=Y,Y=M,M=DA+(((M<<30|M>>>2)^(M<<19|M>>>13)^(M<<10|M>>>22))+cA)|0}Q[0]=Q[0]+M|0,Q[1]=Q[1]+Y|0,Q[2]=Q[2]+v|0,Q[3]=Q[3]+p|0,Q[4]=Q[4]+I|0,Q[5]=Q[5]+y|0,Q[6]=Q[6]+U|0,Q[7]=Q[7]+S|0},_doFinalize:function(){var c=this._data,C=c.words,Q=8*this._nDataBytes,M=8*c.sigBytes;return C[M>>>5]|=128<<24-M%32,C[14+(M+64>>>9<<4)]=o.floor(Q/4294967296),C[15+(M+64>>>9<<4)]=Q,c.sigBytes=4*C.length,this._process(),this._hash},clone:function(){var c=f.clone.call(this);return c._hash=this._hash.clone(),c}});s.SHA256=f._createHelper(e),s.HmacSHA256=f._createHmacHelper(e)}(Math),u.SHA256}(n(757))},8342:function(T,A,n){"use strict";n(7042),T.exports=function(u){return function(o){var s=u,l=s.lib,g=l.WordArray,f=l.Hasher,h=s.x64.Word,r=s.algo,w=[],e=[],B=[];!function(){for(var Q=1,M=0,Y=0;Y<24;Y++){w[Q+5*M]=(Y+1)*(Y+2)/2%64;var p=(2*Q+3*M)%5;Q=M%5,M=p}for(Q=0;Q<5;Q++)for(M=0;M<5;M++)e[Q+5*M]=M+(2*Q+3*M)%5*5;for(var I=1,y=0;y<24;y++){for(var U=0,S=0,b=0;b<7;b++){if(1&I){var O=(1<>>24)|4278255360&(y<<24|y>>>8),(S=v[I]).high^=U=16711935&(U<<8|U>>>24)|4278255360&(U<<24|U>>>8),S.low^=y}for(var b=0;b<24;b++){for(var O=0;O<5;O++){for(var J=0,sA=0,uA=0;uA<5;uA++)J^=(S=v[O+5*uA]).high,sA^=S.low;var X=c[O];X.high=J,X.low=sA}for(O=0;O<5;O++){var cA=c[(O+4)%5],pA=c[(O+1)%5],dA=pA.high,DA=pA.low;for(J=cA.high^(dA<<1|DA>>>31),sA=cA.low^(DA<<1|dA>>>31),uA=0;uA<5;uA++)(S=v[O+5*uA]).high^=J,S.low^=sA}for(var gA=1;gA<25;gA++){var QA=(S=v[gA]).high,yA=S.low,Z=w[gA];Z<32?(J=QA<>>32-Z,sA=yA<>>32-Z):(J=yA<>>64-Z,sA=QA<>>64-Z);var CA=c[e[gA]];CA.high=J,CA.low=sA}var nA=c[0],lA=v[0];for(nA.high=lA.high,nA.low=lA.low,O=0;O<5;O++)for(uA=0;uA<5;uA++){var FA=c[gA=O+5*uA],bA=c[(O+1)%5+5*uA],HA=c[(O+2)%5+5*uA];(S=v[gA]).high=FA.high^~bA.high&HA.high,S.low=FA.low^~bA.low&HA.low}var S,q=B[b];(S=v[0]).high^=q.high,S.low^=q.low}},_doFinalize:function(){var M=this._data,Y=M.words,p=8*M.sigBytes,I=32*this.blockSize;Y[p>>>5]|=1<<24-p%32,Y[(o.ceil((p+1)/I)*I>>>5)-1]|=128,M.sigBytes=4*Y.length,this._process();for(var y=this._state,U=this.cfg.outputLength/8,S=U/8,b=[],O=0;O>>24)|4278255360&(sA<<24|sA>>>8),b.push(uA=16711935&(uA<<8|uA>>>24)|4278255360&(uA<<24|uA>>>8)),b.push(sA)}return new g.init(b,U)},clone:function(){for(var M=f.clone.call(this),Y=M._state=this._state.slice(0),v=0;v<25;v++)Y[v]=Y[v].clone();return M}});s.SHA3=f._createHelper(C),s.HmacSHA3=f._createHmacHelper(C)}(Math),u.SHA3}(n(757),n(2601))},8122:function(T,A,n){"use strict";T.exports=function(u){return l=(s=(o=u).x64).Word,g=s.WordArray,h=(f=o.algo).SHA384=(E=f.SHA512).extend({_doReset:function(){this._hash=new g.init([new l.init(3418070365,3238371032),new l.init(1654270250,914150663),new l.init(2438529370,812702999),new l.init(355462360,4144912697),new l.init(1731405415,4290775857),new l.init(2394180231,1750603025),new l.init(3675008525,1694076839),new l.init(1203062813,3204075428)])},_doFinalize:function(){var w=E._doFinalize.call(this);return w.sigBytes-=16,w}}),o.SHA384=E._createHelper(h),o.HmacSHA384=E._createHmacHelper(h),u.SHA384;var o,s,l,g,f,E,h}(n(757),n(2601),n(7991))},7991:function(T,A,n){"use strict";var o;o=function(u){return function(){var o=u,l=o.lib.Hasher,g=o.x64,f=g.Word,E=g.WordArray,h=o.algo;function r(){return f.create.apply(f,arguments)}var w=[r(1116352408,3609767458),r(1899447441,602891725),r(3049323471,3964484399),r(3921009573,2173295548),r(961987163,4081628472),r(1508970993,3053834265),r(2453635748,2937671579),r(2870763221,3664609560),r(3624381080,2734883394),r(310598401,1164996542),r(607225278,1323610764),r(1426881987,3590304994),r(1925078388,4068182383),r(2162078206,991336113),r(2614888103,633803317),r(3248222580,3479774868),r(3835390401,2666613458),r(4022224774,944711139),r(264347078,2341262773),r(604807628,2007800933),r(770255983,1495990901),r(1249150122,1856431235),r(1555081692,3175218132),r(1996064986,2198950837),r(2554220882,3999719339),r(2821834349,766784016),r(2952996808,2566594879),r(3210313671,3203337956),r(3336571891,1034457026),r(3584528711,2466948901),r(113926993,3758326383),r(338241895,168717936),r(666307205,1188179964),r(773529912,1546045734),r(1294757372,1522805485),r(1396182291,2643833823),r(1695183700,2343527390),r(1986661051,1014477480),r(2177026350,1206759142),r(2456956037,344077627),r(2730485921,1290863460),r(2820302411,3158454273),r(3259730800,3505952657),r(3345764771,106217008),r(3516065817,3606008344),r(3600352804,1432725776),r(4094571909,1467031594),r(275423344,851169720),r(430227734,3100823752),r(506948616,1363258195),r(659060556,3750685593),r(883997877,3785050280),r(958139571,3318307427),r(1322822218,3812723403),r(1537002063,2003034995),r(1747873779,3602036899),r(1955562222,1575990012),r(2024104815,1125592928),r(2227730452,2716904306),r(2361852424,442776044),r(2428436474,593698344),r(2756734187,3733110249),r(3204031479,2999351573),r(3329325298,3815920427),r(3391569614,3928383900),r(3515267271,566280711),r(3940187606,3454069534),r(4118630271,4000239992),r(116418474,1914138554),r(174292421,2731055270),r(289380356,3203993006),r(460393269,320620315),r(685471733,587496836),r(852142971,1086792851),r(1017036298,365543100),r(1126000580,2618297676),r(1288033470,3409855158),r(1501505948,4234509866),r(1607167915,987167468),r(1816402316,1246189591)],e=[];!function(){for(var c=0;c<80;c++)e[c]=r()}();var B=h.SHA512=l.extend({_doReset:function(){this._hash=new E.init([new f.init(1779033703,4089235720),new f.init(3144134277,2227873595),new f.init(1013904242,4271175723),new f.init(2773480762,1595750129),new f.init(1359893119,2917565137),new f.init(2600822924,725511199),new f.init(528734635,4215389547),new f.init(1541459225,327033209)])},_doProcessBlock:function(C,Q){for(var M=this._hash.words,Y=M[0],v=M[1],p=M[2],I=M[3],y=M[4],U=M[5],S=M[6],b=M[7],O=Y.high,J=Y.low,sA=v.high,uA=v.low,X=p.high,cA=p.low,pA=I.high,dA=I.low,DA=y.high,gA=y.low,QA=U.high,yA=U.low,Z=S.high,CA=S.low,nA=b.high,lA=b.low,FA=O,bA=J,HA=sA,q=uA,z=X,$=cA,K=pA,fA=dA,IA=DA,oA=gA,hA=QA,zA=yA,tt=Z,lt=CA,YA=nA,it=lA,mt=0;mt<80;mt++){var Mt,dt,OA=e[mt];if(mt<16)dt=OA.high=0|C[Q+2*mt],Mt=OA.low=0|C[Q+2*mt+1];else{var et=e[mt-15],st=et.high,ot=et.low,ut=(ot>>>1|st<<31)^(ot>>>8|st<<24)^(ot>>>7|st<<25),TA=e[mt-2],Ft=TA.high,L=TA.low,x=(L>>>19|Ft<<13)^(L<<3|Ft>>>29)^(L>>>6|Ft<<26),wA=e[mt-7],eA=e[mt-16],yt=eA.low;OA.high=dt=(dt=(dt=((st>>>1|ot<<31)^(st>>>8|ot<<24)^st>>>7)+wA.high+((Mt=ut+wA.low)>>>0>>0?1:0))+((Ft>>>19|L<<13)^(Ft<<3|L>>>29)^Ft>>>6)+((Mt+=x)>>>0>>0?1:0))+eA.high+((Mt+=yt)>>>0>>0?1:0),OA.low=Mt}var re,j=IA&hA^~IA&tt,VA=oA&zA^~oA<,_A=FA&HA^FA&z^HA&z,qA=(bA>>>28|FA<<4)^(bA<<30|FA>>>2)^(bA<<25|FA>>>7),bt=w[mt],Pe=bt.low,$t=YA+((IA>>>14|oA<<18)^(IA>>>18|oA<<14)^(IA<<23|oA>>>9))+((re=it+((oA>>>14|IA<<18)^(oA>>>18|IA<<14)^(oA<<23|IA>>>9)))>>>0>>0?1:0),ve=qA+(bA&q^bA&$^q&$);YA=tt,it=lt,tt=hA,lt=zA,hA=IA,zA=oA,IA=K+($t=($t=($t=$t+j+((re+=VA)>>>0>>0?1:0))+bt.high+((re+=Pe)>>>0>>0?1:0))+dt+((re+=Mt)>>>0>>0?1:0))+((oA=fA+re|0)>>>0>>0?1:0)|0,K=z,fA=$,z=HA,$=q,HA=FA,q=bA,FA=$t+(((FA>>>28|bA<<4)^(FA<<30|bA>>>2)^(FA<<25|bA>>>7))+_A+(ve>>>0>>0?1:0))+((bA=re+ve|0)>>>0>>0?1:0)|0}J=Y.low=J+bA,Y.high=O+FA+(J>>>0>>0?1:0),uA=v.low=uA+q,v.high=sA+HA+(uA>>>0>>0?1:0),cA=p.low=cA+$,p.high=X+z+(cA>>>0<$>>>0?1:0),dA=I.low=dA+fA,I.high=pA+K+(dA>>>0>>0?1:0),gA=y.low=gA+oA,y.high=DA+IA+(gA>>>0>>0?1:0),yA=U.low=yA+zA,U.high=QA+hA+(yA>>>0>>0?1:0),CA=S.low=CA+lt,S.high=Z+tt+(CA>>>0>>0?1:0),lA=b.low=lA+it,b.high=nA+YA+(lA>>>0>>0?1:0)},_doFinalize:function(){var C=this._data,Q=C.words,M=8*this._nDataBytes,Y=8*C.sigBytes;return Q[Y>>>5]|=128<<24-Y%32,Q[30+(Y+128>>>10<<5)]=Math.floor(M/4294967296),Q[31+(Y+128>>>10<<5)]=M,C.sigBytes=4*Q.length,this._process(),this._hash.toX32()},clone:function(){var C=l.clone.call(this);return C._hash=this._hash.clone(),C},blockSize:32});o.SHA512=l._createHelper(B),o.HmacSHA512=l._createHmacHelper(B)}(),u.SHA512},T.exports=o(n(757),n(2601))},8437:function(T,A,n){"use strict";n(7042),T.exports=function(u){return function(){var o=u,s=o.lib,l=s.WordArray,g=s.BlockCipher,f=o.algo,E=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],h=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],r=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],w=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],e=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],B=f.DES=g.extend({_doReset:function(){for(var v=this._key.words,p=[],I=0;I<56;I++){var y=E[I]-1;p[I]=v[y>>>5]>>>31-y%32&1}for(var U=this._subKeys=[],S=0;S<16;S++){var b=U[S]=[],O=r[S];for(I=0;I<24;I++)b[I/6|0]|=p[(h[I]-1+O)%28]<<31-I%6,b[4+(I/6|0)]|=p[28+(h[I+24]-1+O)%28]<<31-I%6;for(b[0]=b[0]<<1|b[0]>>>31,I=1;I<7;I++)b[I]=b[I]>>>4*(I-1)+3;b[7]=b[7]<<5|b[7]>>>27}var J=this._invSubKeys=[];for(I=0;I<16;I++)J[I]=U[15-I]},encryptBlock:function(Y,v){this._doCryptBlock(Y,v,this._subKeys)},decryptBlock:function(Y,v){this._doCryptBlock(Y,v,this._invSubKeys)},_doCryptBlock:function(Y,v,p){this._lBlock=Y[v],this._rBlock=Y[v+1],c.call(this,4,252645135),c.call(this,16,65535),C.call(this,2,858993459),C.call(this,8,16711935),c.call(this,1,1431655765);for(var I=0;I<16;I++){for(var y=p[I],U=this._lBlock,S=this._rBlock,b=0,O=0;O<8;O++)b|=w[O][((S^y[O])&e[O])>>>0];this._lBlock=S,this._rBlock=U^b}var J=this._lBlock;this._lBlock=this._rBlock,this._rBlock=J,c.call(this,1,1431655765),C.call(this,8,16711935),C.call(this,2,858993459),c.call(this,16,65535),c.call(this,4,252645135),Y[v]=this._lBlock,Y[v+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function c(M,Y){var v=(this._lBlock>>>M^this._rBlock)&Y;this._rBlock^=v,this._lBlock^=v<>>M^this._lBlock)&Y;this._lBlock^=v,this._rBlock^=v<192.");var p=v.slice(0,2),I=v.length<4?v.slice(0,2):v.slice(2,4),y=v.length<6?v.slice(0,2):v.slice(4,6);this._des1=B.createEncryptor(l.create(p)),this._des2=B.createEncryptor(l.create(I)),this._des3=B.createEncryptor(l.create(y))},encryptBlock:function(Y,v){this._des1.encryptBlock(Y,v),this._des2.decryptBlock(Y,v),this._des3.encryptBlock(Y,v)},decryptBlock:function(Y,v){this._des3.decryptBlock(Y,v),this._des2.encryptBlock(Y,v),this._des1.decryptBlock(Y,v)},keySize:6,ivSize:2,blockSize:2});o.TripleDES=g._createHelper(Q)}(),u.TripleDES}(n(757),n(7508),n(3440),n(3839),n(1582))},2601:function(T,A,n){"use strict";n(7042),T.exports=function(u){return g=(l=u.lib).Base,f=l.WordArray,(E=u.x64={}).Word=g.extend({init:function(e,B){this.high=e,this.low=B}}),E.WordArray=g.extend({init:function(e,B){e=this.words=e||[],this.sigBytes=null!=B?B:8*e.length},toX32:function(){for(var e=this.words,B=e.length,c=[],C=0;C=h.length?{done:!0}:{done:!1,value:h[e++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(h,r){(null==r||r>h.length)&&(r=h.length);for(var w=0,e=new Array(r);w=0;--CA){var nA=this.tryEntries[CA],lA=nA.completion;if("root"===nA.tryLoc)return Z("end");if(nA.tryLoc<=this.prev){var FA=w.call(nA,"catchLoc"),bA=w.call(nA,"finallyLoc");if(FA&&bA){if(this.prev=0;--Z){var CA=this.tryEntries[Z];if(CA.tryLoc<=this.prev&&w.call(CA,"finallyLoc")&&this.prev=0;--yA){var Z=this.tryEntries[yA];if(Z.finallyLoc===QA)return this.complete(Z.completion,Z.afterLoc),cA(Z),v}},catch:function(QA){for(var yA=this.tryEntries.length-1;yA>=0;--yA){var Z=this.tryEntries[yA];if(Z.tryLoc===QA){var CA=Z.completion;if("throw"===CA.type){var nA=CA.arg;cA(Z)}return nA}}throw new Error("illegal catch attempt")},delegateYield:function(QA,yA,Z){return this.delegate={iterator:dA(QA),resultName:yA,nextLoc:Z},"next"===this.method&&(this.arg=void 0),v}},h}n(2443),n(3680),n(3706),n(2703),n(489),n(4747),n(8309),n(8674),n(1038),n(4916),n(4723),n(2165),n(6992),n(1539),n(8783),n(3948),n(2526),n(1817),n(7042);T.exports=function(){function h(w){this.stateTable=w.stateTable,this.accepting=w.accepting,this.tags=w.tags}var r=h.prototype;return r.match=function(e){var B,c=this;return(B={})[Symbol.iterator]=l().mark(function C(){var Q,M,Y,v,p,I;return l().wrap(function(U){for(;;)switch(U.prev=U.next){case 0:Q=1,M=null,Y=null,v=null,p=0;case 5:if(!(p=M)){U.next=13;break}return U.next=13,[M,Y,c.tags[v]];case 13:Q=c.stateTable[1][I],M=null;case 15:0!==Q&&null==M&&(M=p),c.accepting[Q]&&(Y=p),0===Q&&(Q=1);case 18:p++,U.next=5;break;case 21:if(!(null!=M&&null!=Y&&Y>=M)){U.next=24;break}return U.next=24,[M,Y,c.tags[Q]];case 24:case"end":return U.stop()}},C)}),B},r.apply=function(e,B){for(var C,c=u(this.match(e));!(C=c()).done;)for(var I,Q=C.value,M=Q[0],Y=Q[1],p=u(Q[2]);!(I=p()).done;){var y=I.value;"function"==typeof B[y]&&B[y](M,Y,e.slice(M,Y+1))}},h}()},8478:function(T,A,n){"use strict";var u=n(8823).Buffer;n(1539),n(8674),n(7042),n(6699);var o=n(3857),s=n(2635);T.exports=function(){function l(f){var E;for(this.data=f,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var h=this.readUInt32(),r="";for(E=0;E<4;E++)r+=String.fromCharCode(this.data[this.pos++]);switch(r){case"IHDR":this.width=this.readUInt32(),this.height=this.readUInt32(),this.bits=this.data[this.pos++],this.colorType=this.data[this.pos++],this.compressionMethod=this.data[this.pos++],this.filterMethod=this.data[this.pos++],this.interlaceMethod=this.data[this.pos++];break;case"PLTE":this.palette=this.read(h);break;case"IDAT":for(E=0;E0)for(E=0;Ethis.data.length)throw new Error("Incomplete or corrupt PNG file")}}l.decode=function(E,h){return o.readFile(E,function(r,w){return new l(w).decode(function(B){return h(B)})})},l.load=function(E){return new l(o.readFileSync(E))};var g=l.prototype;return g.read=function(E){for(var h=new Array(E),r=0;r=2147483648)throw new RangeError('The value "'+E+'" is invalid for option "size"');var w=s(E);return h&&0!==h.length?"string"==typeof r?w.fill(h,r):w.fill(h):w.fill(0),w}),!l.kStringMaxLength)try{l.kStringMaxLength=u.binding("buffer").kStringMaxLength}catch(E){}l.constants||(l.constants={MAX_LENGTH:l.kMaxLength},l.kStringMaxLength&&(l.constants.MAX_STRING_LENGTH=l.kStringMaxLength)),T.exports=l},3361:function(T,A,n){"use strict";function u(c,C){var Q=Object.keys(c);if(Object.getOwnPropertySymbols){var M=Object.getOwnPropertySymbols(c);C&&(M=M.filter(function(Y){return Object.getOwnPropertyDescriptor(c,Y).enumerable})),Q.push.apply(Q,M)}return Q}function s(c,C,Q){return C in c?Object.defineProperty(c,C,{value:Q,enumerable:!0,configurable:!0,writable:!0}):c[C]=Q,c}function g(c,C){for(var Q=0;Q0?this.tail.next=M:this.head=M,this.tail=M,++this.length}},{key:"unshift",value:function(Q){var M={data:Q,next:this.head};0===this.length&&(this.tail=M),this.head=M,++this.length}},{key:"shift",value:function(){if(0!==this.length){var Q=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,Q}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(Q){if(0===this.length)return"";for(var M=this.head,Y=""+M.data;M=M.next;)Y+=Q+M.data;return Y}},{key:"concat",value:function(Q){if(0===this.length)return h.alloc(0);for(var M=h.allocUnsafe(Q>>>0),Y=this.head,v=0;Y;)B(Y.data,M,v),v+=Y.data.length,Y=Y.next;return M}},{key:"consume",value:function(Q,M){var Y;return Qp.length?p.length:Q;if(v+=I===p.length?p:p.slice(0,Q),0==(Q-=I)){I===p.length?(++Y,this.head=M.next?M.next:this.tail=null):(this.head=M,M.data=p.slice(I));break}++Y}return this.length-=Y,v}},{key:"_getBuffer",value:function(Q){var M=h.allocUnsafe(Q),Y=this.head,v=1;for(Y.data.copy(M),Q-=Y.data.length;Y=Y.next;){var p=Y.data,I=Q>p.length?p.length:Q;if(p.copy(M,M.length-Q,0,I),0==(Q-=I)){I===p.length?(++v,this.head=Y.next?Y.next:this.tail=null):(this.head=Y,Y.data=p.slice(I));break}++v}return this.length-=v,M}},{key:e,value:function(Q,M){return w(this,function o(c){for(var C=1;CmA.length)&&(G=mA.length);for(var N=0,_=new Array(G);N=mA.length?{done:!0}:{done:!1,value:mA[_++]}},e:function(ht){throw ht},f:W}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var ZA,BA=!0,MA=!1;return{s:function(){N=mA[Symbol.iterator]()},n:function(){var ht=N.next();return BA=ht.done,ht},e:function(ht){MA=!0,ZA=ht},f:function(){try{!BA&&null!=N.return&&N.return()}finally{if(MA)throw ZA}}}}var yA=function(){function mA(){B(this,mA)}return C(mA,[{key:"toString",value:function(){throw new Error("Must be implemented by subclasses")}}]),mA}(),Z=function(){function mA(){var G=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};B(this,mA),this._items={},this.limits="boolean"!=typeof G.limits||G.limits}return C(mA,[{key:"add",value:function(N,_){return this._items[N]=_}},{key:"get",value:function(N){return this._items[N]}},{key:"toString",value:function(){var N=this,_=Object.keys(this._items).sort(function(Ct,vt){return N._compareKeys(Ct,vt)}),W=["<<"];if(this.limits&&_.length>1){var MA=_[_.length-1];W.push(" /Limits ".concat(bA.convert([this._dataForKey(_[0]),this._dataForKey(MA)])))}W.push(" /".concat(this._keysName()," ["));var At,ZA=QA(_);try{for(ZA.s();!(At=ZA.n()).done;){var ht=At.value;W.push(" ".concat(bA.convert(this._dataForKey(ht))," ").concat(bA.convert(this._items[ht])))}}catch(Ct){ZA.e(Ct)}finally{ZA.f()}return W.push("]"),W.push(">>"),W.join("\n")}},{key:"_compareKeys",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_keysName",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_dataForKey",value:function(){throw new Error("Must be implemented by subclasses")}}]),mA}(),CA=function(G,N){return(Array(N+1).join("0")+G).slice(-N)},nA=/[\n\r\t\b\f()\\]/g,lA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},FA=function(G){var N=G.length;if(1&N)throw new Error("Buffer length must be even");for(var _=0,W=N-1;_1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof N)return"/".concat(N);if(N instanceof String){for(var W=N,BA=!1,MA=0,ZA=W.length;MA127){BA=!0;break}var At;return At=BA?FA(o.from("\ufeff".concat(W),"utf16le")):o.from(W.valueOf(),"ascii"),W=(W=_?_(At).toString("binary"):At.toString("binary")).replace(nA,function(Jt){return lA[Jt]}),"(".concat(W,")")}if(o.isBuffer(N))return"<".concat(N.toString("hex"),">");if(N instanceof yA||N instanceof Z)return N.toString();if(N instanceof Date){var ht="D:".concat(CA(N.getUTCFullYear(),4))+CA(N.getUTCMonth()+1,2)+CA(N.getUTCDate(),2)+CA(N.getUTCHours(),2)+CA(N.getUTCMinutes(),2)+CA(N.getUTCSeconds(),2)+"Z";return _&&(ht=(ht=_(o.from(ht,"ascii")).toString("binary")).replace(nA,function(Jt){return lA[Jt]})),"(".concat(ht,")")}if(Array.isArray(N)){var Ct=N.map(function(Jt){return mA.convert(Jt,_)}).join(" ");return"[".concat(Ct,"]")}if("[object Object]"==={}.toString.call(N)){var vt=["<<"];for(var xt in N){var Yt=N[xt];vt.push("/".concat(xt," ").concat(mA.convert(Yt,_)))}return vt.push(">>"),vt.join("\n")}return"number"==typeof N?mA.number(N):"".concat(N)}},{key:"number",value:function(N){if(N>-1e21&&N<1e21)return Math.round(1e6*N)/1e6;throw new Error("unsupported number: ".concat(N))}}]),mA}(),HA=function(mA){v(N,mA);var G=b(N);function N(_,W){var BA,MA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return B(this,N),(BA=G.call(this)).document=_,BA.id=W,BA.data=MA,BA.gen=0,BA.compress=BA.document.compress&&!BA.data.Filter,BA.uncompressedLength=0,BA.buffer=[],BA}return C(N,[{key:"write",value:function(W){if(o.isBuffer(W)||(W=o.from(W+"\n","binary")),this.uncompressedLength+=W.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(W),this.data.Length+=W.length,this.compress)return this.data.Filter="FlateDecode"}},{key:"end",value:function(W){return W&&this.write(W),this.finalize()}},{key:"finalize",value:function(){this.offset=this.document._offset;var W=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=o.concat(this.buffer),this.compress&&(this.buffer=l.default.deflateSync(this.buffer)),W&&(this.buffer=W(this.buffer)),this.data.Length=this.buffer.length),this.document._write("".concat(this.id," ").concat(this.gen," obj")),this.document._write(bA.convert(this.data,W)),this.buffer.length&&(this.document._write("stream"),this.document._write(this.buffer),this.buffer=[],this.document._write("\nendstream")),this.document._write("endobj"),this.document._refEnd(this)}},{key:"toString",value:function(){return"".concat(this.id," ").concat(this.gen," R")}}]),N}(yA),q={top:72,left:72,bottom:72,right:72},z={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]},$=function(){function mA(G){var N=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};B(this,mA),this.document=G,this.size=N.size||"letter",this.layout=N.layout||"portrait",this.margins="number"==typeof N.margin?{top:N.margin,left:N.margin,bottom:N.margin,right:N.margin}:N.margins||q;var _=Array.isArray(this.size)?this.size:z[this.size.toUpperCase()];this.width=_["portrait"===this.layout?0:1],this.height=_["portrait"===this.layout?1:0],this.content=this.document.ref(),this.resources=this.document.ref({ProcSet:["PDF","Text","ImageB","ImageC","ImageI"]}),this.dictionary=this.document.ref({Type:"Page",Parent:this.document._root.data.Pages,MediaBox:[0,0,this.width,this.height],Contents:this.content,Resources:this.resources}),this.markings=[]}return C(mA,[{key:"maxY",value:function(){return this.height-this.margins.bottom}},{key:"write",value:function(N){return this.content.write(N)}},{key:"end",value:function(){return this.dictionary.end(),this.resources.end(),this.content.end()}},{key:"fonts",get:function(){var N=this.resources.data;return null!=N.Font?N.Font:N.Font={}}},{key:"xobjects",get:function(){var N=this.resources.data;return null!=N.XObject?N.XObject:N.XObject={}}},{key:"ext_gstates",get:function(){var N=this.resources.data;return null!=N.ExtGState?N.ExtGState:N.ExtGState={}}},{key:"patterns",get:function(){var N=this.resources.data;return null!=N.Pattern?N.Pattern:N.Pattern={}}},{key:"colorSpaces",get:function(){var N=this.resources.data;return N.ColorSpace||(N.ColorSpace={})}},{key:"annotations",get:function(){var N=this.dictionary.data;return null!=N.Annots?N.Annots:N.Annots=[]}},{key:"structParentTreeKey",get:function(){var N=this.dictionary.data;return null!=N.StructParents?N.StructParents:N.StructParents=this.document.createStructParentTreeNextKey()}}]),mA}(),K=function(mA){v(N,mA);var G=b(N);function N(){return B(this,N),G.apply(this,arguments)}return C(N,[{key:"_compareKeys",value:function(W,BA){return W.localeCompare(BA)}},{key:"_keysName",value:function(){return"Names"}},{key:"_dataForKey",value:function(W){return new String(W)}}]),N}(Z);function fA(mA,G){if(mA=G[BA]&&mA<=G[BA+1])return!0;mA>G[BA+1]?N=W+1:_=W-1}return!1}var IA=[545,545,564,591,686,687,751,767,848,863,880,883,886,889,891,893,895,899,907,907,909,909,930,930,975,975,1015,1023,1159,1159,1231,1231,1270,1271,1274,1279,1296,1328,1367,1368,1376,1376,1416,1416,1419,1424,1442,1442,1466,1466,1477,1487,1515,1519,1525,1547,1549,1562,1564,1566,1568,1568,1595,1599,1622,1631,1774,1775,1791,1791,1806,1806,1837,1839,1867,1919,1970,2304,2308,2308,2362,2363,2382,2383,2389,2391,2417,2432,2436,2436,2445,2446,2449,2450,2473,2473,2481,2481,2483,2485,2490,2491,2493,2493,2501,2502,2505,2506,2510,2518,2520,2523,2526,2526,2532,2533,2555,2561,2563,2564,2571,2574,2577,2578,2601,2601,2609,2609,2612,2612,2615,2615,2618,2619,2621,2621,2627,2630,2633,2634,2638,2648,2653,2653,2655,2661,2677,2688,2692,2692,2700,2700,2702,2702,2706,2706,2729,2729,2737,2737,2740,2740,2746,2747,2758,2758,2762,2762,2766,2767,2769,2783,2785,2789,2800,2816,2820,2820,2829,2830,2833,2834,2857,2857,2865,2865,2868,2869,2874,2875,2884,2886,2889,2890,2894,2901,2904,2907,2910,2910,2914,2917,2929,2945,2948,2948,2955,2957,2961,2961,2966,2968,2971,2971,2973,2973,2976,2978,2981,2983,2987,2989,2998,2998,3002,3005,3011,3013,3017,3017,3022,3030,3032,3046,3059,3072,3076,3076,3085,3085,3089,3089,3113,3113,3124,3124,3130,3133,3141,3141,3145,3145,3150,3156,3159,3167,3170,3173,3184,3201,3204,3204,3213,3213,3217,3217,3241,3241,3252,3252,3258,3261,3269,3269,3273,3273,3278,3284,3287,3293,3295,3295,3298,3301,3312,3329,3332,3332,3341,3341,3345,3345,3369,3369,3386,3389,3396,3397,3401,3401,3406,3414,3416,3423,3426,3429,3440,3457,3460,3460,3479,3481,3506,3506,3516,3516,3518,3519,3527,3529,3531,3534,3541,3541,3543,3543,3552,3569,3573,3584,3643,3646,3676,3712,3715,3715,3717,3718,3721,3721,3723,3724,3726,3731,3736,3736,3744,3744,3748,3748,3750,3750,3752,3753,3756,3756,3770,3770,3774,3775,3781,3781,3783,3783,3790,3791,3802,3803,3806,3839,3912,3912,3947,3952,3980,3983,3992,3992,4029,4029,4045,4046,4048,4095,4130,4130,4136,4136,4139,4139,4147,4149,4154,4159,4186,4255,4294,4303,4345,4346,4348,4351,4442,4446,4515,4519,4602,4607,4615,4615,4679,4679,4681,4681,4686,4687,4695,4695,4697,4697,4702,4703,4743,4743,4745,4745,4750,4751,4783,4783,4785,4785,4790,4791,4799,4799,4801,4801,4806,4807,4815,4815,4823,4823,4847,4847,4879,4879,4881,4881,4886,4887,4895,4895,4935,4935,4955,4960,4989,5023,5109,5120,5751,5759,5789,5791,5873,5887,5901,5901,5909,5919,5943,5951,5972,5983,5997,5997,6001,6001,6004,6015,6109,6111,6122,6143,6159,6159,6170,6175,6264,6271,6314,7679,7836,7839,7930,7935,7958,7959,7966,7967,8006,8007,8014,8015,8024,8024,8026,8026,8028,8028,8030,8030,8062,8063,8117,8117,8133,8133,8148,8149,8156,8156,8176,8177,8181,8181,8191,8191,8275,8278,8280,8286,8292,8297,8306,8307,8335,8351,8370,8399,8427,8447,8507,8508,8524,8530,8580,8591,9167,9215,9255,9279,9291,9311,9471,9471,9748,9749,9752,9752,9854,9855,9866,9984,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10079,10080,10133,10135,10160,10160,10175,10191,10220,10223,11008,11903,11930,11930,12020,12031,12246,12271,12284,12287,12352,12352,12439,12440,12544,12548,12589,12592,12687,12687,12728,12783,12829,12831,12868,12880,12924,12926,13004,13007,13055,13055,13175,13178,13278,13279,13311,13311,19894,19967,40870,40959,42125,42127,42183,44031,55204,55295,64046,64047,64107,64255,64263,64274,64280,64284,64311,64311,64317,64317,64319,64319,64322,64322,64325,64325,64434,64466,64832,64847,64912,64913,64968,64975,65021,65023,65040,65055,65060,65071,65095,65096,65107,65107,65127,65127,65132,65135,65141,65141,65277,65278,65280,65280,65471,65473,65480,65481,65488,65489,65496,65497,65501,65503,65511,65511,65519,65528,65536,66303,66335,66335,66340,66351,66379,66559,66598,66599,66638,118783,119030,119039,119079,119081,119262,119807,119893,119893,119965,119965,119968,119969,119971,119972,119975,119976,119981,119981,119994,119994,119996,119996,120001,120001,120004,120004,120070,120070,120075,120076,120085,120085,120093,120093,120122,120122,120127,120127,120133,120133,120135,120137,120145,120145,120484,120487,120778,120781,120832,131069,173783,194559,195102,196605,196608,262141,262144,327677,327680,393213,393216,458749,458752,524285,524288,589821,589824,655357,655360,720893,720896,786429,786432,851965,851968,917501,917504,917504,917506,917535,917632,983037],oA=function(G){return fA(G,IA)},hA=[173,173,847,847,6150,6150,6155,6155,6156,6156,6157,6157,8203,8203,8204,8204,8205,8205,8288,8288,65024,65024,65025,65025,65026,65026,65027,65027,65028,65028,65029,65029,65030,65030,65031,65031,65032,65032,65033,65033,65034,65034,65035,65035,65036,65036,65037,65037,65038,65038,65039,65039,65279,65279],tt=[160,160,5760,5760,8192,8192,8193,8193,8194,8194,8195,8195,8196,8196,8197,8197,8198,8198,8199,8199,8200,8200,8201,8201,8202,8202,8203,8203,8239,8239,8287,8287,12288,12288],YA=[128,159,1757,1757,1807,1807,6158,6158,8204,8204,8205,8205,8232,8232,8233,8233,8288,8288,8289,8289,8290,8290,8291,8291,8298,8303,65279,65279,65529,65532,119155,119162],it=[64976,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1114110,1114111],mt=[0,31,127,127,832,832,833,833,8206,8206,8207,8207,8234,8234,8235,8235,8236,8236,8237,8237,8238,8238,8298,8298,8299,8299,8300,8300,8301,8301,8302,8302,8303,8303,12272,12283,55296,57343,57344,63743,65529,65529,65530,65530,65531,65531,65532,65532,65533,65533,917505,917505,917536,917631,983040,1048573,1048576,1114109],Mt=function(G){return fA(G,tt)||fA(G,mt)||fA(G,YA)||fA(G,it)},dt=[1470,1470,1472,1472,1475,1475,1488,1514,1520,1524,1563,1563,1567,1567,1569,1594,1600,1610,1645,1647,1649,1749,1757,1757,1765,1766,1786,1790,1792,1805,1808,1808,1810,1836,1920,1957,1969,1969,8207,8207,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65020,65136,65140,65142,65276],OA=function(G){return fA(G,dt)},et=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,544,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,1013,1024,1154,1162,1230,1232,1269,1272,1273,1280,1295,1329,1366,1369,1375,1377,1415,1417,1417,2307,2307,2309,2361,2365,2368,2377,2380,2384,2384,2392,2401,2404,2416,2434,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2494,2496,2503,2504,2507,2508,2519,2519,2524,2525,2527,2529,2534,2545,2548,2554,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2622,2624,2649,2652,2654,2654,2662,2671,2674,2676,2691,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2752,2761,2761,2763,2764,2768,2768,2784,2784,2790,2799,2818,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2878,2880,2880,2887,2888,2891,2892,2903,2903,2908,2909,2911,2913,2918,2928,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3007,3009,3010,3014,3016,3018,3020,3031,3031,3047,3058,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3137,3140,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3262,3264,3268,3271,3272,3274,3275,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3392,3398,3400,3402,3404,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3535,3537,3544,3551,3570,3572,3585,3632,3634,3635,3648,3654,3663,3675,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3792,3801,3804,3805,3840,3863,3866,3892,3894,3894,3896,3896,3902,3911,3913,3946,3967,3967,3973,3973,3976,3979,4030,4037,4039,4044,4047,4047,4096,4129,4131,4135,4137,4138,4140,4140,4145,4145,4152,4152,4160,4183,4256,4293,4304,4344,4347,4347,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4961,4988,5024,5108,5121,5750,5761,5786,5792,5872,5888,5900,5902,5905,5920,5937,5941,5942,5952,5969,5984,5996,5998,6e3,6016,6070,6078,6085,6087,6088,6100,6106,6108,6108,6112,6121,6160,6169,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8206,8206,8305,8305,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8509,8511,8517,8521,8544,8579,9014,9082,9109,9109,9372,9449,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12588,12593,12686,12688,12727,12784,12828,12832,12867,12896,12923,12927,12976,12992,13003,13008,13054,13056,13174,13179,13277,13280,13310,13312,19893,19968,40869,40960,42124,44032,55203,55296,64045,64048,64106,64256,64262,64275,64279,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,66304,66334,66336,66339,66352,66378,66560,66597,66600,66637,118784,119029,119040,119078,119082,119142,119146,119154,119171,119172,119180,119209,119214,119261,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,12e4,120002,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120483,120488,120777,131072,173782,194560,195101,983040,1048573,1048576,1114109],st=function(G){return fA(G,et)},ot=function(G){return fA(G,tt)},Et=function(G){return fA(G,hA)},ut=function(G){return G.codePointAt(0)},TA=function(G){return G[0]},Ft=function(G){return G[G.length-1]};function L(mA){for(var G=[],N=mA.length,_=0;_=55296&&W<=56319&&N>_+1){var BA=mA.charCodeAt(_+1);if(BA>=56320&&BA<=57343){G.push(1024*(W-55296)+BA-56320+65536),_+=1;continue}}G.push(W)}return G}function H(mA){var G=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof mA)throw new TypeError("Expected string.");if(0===mA.length)return"";var N=L(mA).map(function(vt){return ot(vt)?32:vt}).filter(function(vt){return!Et(vt)}),_=String.fromCodePoint.apply(null,N).normalize("NFKC"),W=L(_);if(W.some(Mt))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==G.allowUnassigned&&W.some(oA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var ZA=W.some(OA),At=W.some(st);if(ZA&&At)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");var ht=OA(ut(TA(_))),Ct=OA(ut(Ft(_)));if(ZA&&(!ht||!Ct))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return _}var x=function(){function mA(G){var N=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(B(this,mA),!N.ownerPassword&&!N.userPassword)throw new Error("None of owner password and user password is defined.");this.document=G,this._setupEncryption(N)}return C(mA,null,[{key:"generateFileID",value:function(){var N=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},_="".concat(N.CreationDate.getTime(),"\n");for(var W in N)!N.hasOwnProperty(W)||(_+="".concat(W,": ").concat(N[W].valueOf(),"\n"));return Vt(g.default.MD5(_))}},{key:"generateRandomWordArray",value:function(N){return g.default.lib.WordArray.random(N)}},{key:"create",value:function(N){var _=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return _.ownerPassword||_.userPassword?new mA(N,_):null}}]),C(mA,[{key:"_setupEncryption",value:function(N){switch(N.pdfVersion){case"1.4":case"1.5":this.version=2;break;case"1.6":case"1.7":this.version=4;break;case"1.7ext3":this.version=5;break;default:this.version=1}var _={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,_,N);break;case 5:this._setupEncryptionV5(_,N)}this.dictionary=this.document.ref(_)}},{key:"_setupEncryptionV1V2V4",value:function(N,_,W){var BA,MA;switch(N){case 1:BA=2,this.keyBits=40,MA=function wA(){var mA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},G=-64;return mA.printing&&(G|=4),mA.modifying&&(G|=8),mA.copying&&(G|=16),mA.annotating&&(G|=32),G}(W.permissions);break;case 2:BA=3,this.keyBits=128,MA=EA(W.permissions);break;case 4:BA=4,this.keyBits=128,MA=EA(W.permissions)}var Ct,ZA=Ut(W.userPassword),At=W.ownerPassword?Ut(W.ownerPassword):ZA,ht=function rt(mA,G,N,_){for(var W=_,BA=mA>=3?51:1,MA=0;MA=3?20:1;for(var ht=0;ht=3?51:1,At=0;At=2&&(_.Length=this.keyBits),4===N&&(_.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},_.StmF="StdCF",_.StrF="StdCF"),_.R=BA,_.O=Vt(ht),_.U=Vt(Ct),_.P=MA}},{key:"_setupEncryptionV5",value:function(N,_){this.keyBits=256;var W=EA(_.permissions),BA=It(_.userPassword),MA=_.ownerPassword?It(_.ownerPassword):BA;this.encryptionKey=function kA(mA){return mA(32)}(mA.generateRandomWordArray);var ZA=function j(mA,G){var N=G(8),_=G(8);return g.default.SHA256(mA.clone().concat(N)).concat(N).concat(_)}(BA,mA.generateRandomWordArray),ht=function VA(mA,G,N){var _=g.default.SHA256(mA.clone().concat(G)),W={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(N,_,W).ciphertext}(BA,g.default.lib.WordArray.create(ZA.words.slice(10,12),8),this.encryptionKey),Ct=function _A(mA,G,N){var _=N(8),W=N(8);return g.default.SHA256(mA.clone().concat(_).concat(G)).concat(_).concat(W)}(MA,ZA,mA.generateRandomWordArray),xt=function vA(mA,G,N,_){var W=g.default.SHA256(mA.clone().concat(G).concat(N)),BA={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(_,W,BA).ciphertext}(MA,g.default.lib.WordArray.create(Ct.words.slice(10,12),8),ZA,this.encryptionKey),Yt=function qA(mA,G,N){var _=g.default.lib.WordArray.create([bt(mA),4294967295,1415668834],12).concat(N(4));return g.default.AES.encrypt(_,G,{mode:g.default.mode.ECB,padding:g.default.pad.NoPadding}).ciphertext}(W,this.encryptionKey,mA.generateRandomWordArray);N.V=5,N.Length=this.keyBits,N.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},N.StmF="StdCF",N.StrF="StdCF",N.R=5,N.O=Vt(Ct),N.OE=Vt(xt),N.U=Vt(ZA),N.UE=Vt(ht),N.P=W,N.Perms=Vt(Yt)}},{key:"getEncryptFn",value:function(N,_){var W,MA;if(this.version<5&&(W=this.encryptionKey.clone().concat(g.default.lib.WordArray.create([(255&N)<<24|(65280&N)<<8|N>>8&65280|255&_,(65280&_)<<16],5))),1===this.version||2===this.version){var BA=g.default.MD5(W);return BA.sigBytes=Math.min(16,this.keyBits/8+5),function(ht){return Vt(g.default.RC4.encrypt(g.default.lib.WordArray.create(ht),BA).ciphertext)}}MA=4===this.version?g.default.MD5(W.concat(g.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var ZA=mA.generateRandomWordArray(16),At={mode:g.default.mode.CBC,padding:g.default.pad.Pkcs7,iv:ZA};return function(ht){return Vt(ZA.clone().concat(g.default.AES.encrypt(g.default.lib.WordArray.create(ht),MA,At).ciphertext))}}},{key:"end",value:function(){this.dictionary.end()}}]),mA}();function EA(){var mA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},G=-3904;return"lowResolution"===mA.printing&&(G|=4),"highResolution"===mA.printing&&(G|=2052),mA.modifying&&(G|=8),mA.copying&&(G|=16),mA.annotating&&(G|=32),mA.fillingForms&&(G|=256),mA.contentAccessibility&&(G|=512),mA.documentAssembly&&(G|=1024),G}function Ut(){for(var mA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",G=o.alloc(32),N=mA.length,_=0;_255)throw new Error("Password contains one or more invalid characters.");G[_]=W,_++}for(;_<32;)G[_]=Pe[_-N],_++;return g.default.lib.WordArray.create(G)}function It(){var mA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";mA=unescape(encodeURIComponent(H(mA)));for(var G=Math.min(127,mA.length),N=o.alloc(G),_=0;_>8&65280|mA>>24&255}function Vt(mA){for(var G=[],N=0;N>8*(3-N%4)&255);return o.from(G)}var Ot,zt,Xt,se,mn,dn,Pe=[40,191,78,94,78,117,138,65,100,0,78,86,255,250,1,8,46,46,0,182,208,104,62,128,47,12,169,254,100,83,105,122],re=bA.number,$t=function(){function mA(G){B(this,mA),this.doc=G,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}return C(mA,[{key:"stop",value:function(N,_,W){if(null==W&&(W=1),_=this.doc._normalizeColor(_),0===this.stops.length)if(3===_.length)this._colorSpace="DeviceRGB";else if(4===_.length)this._colorSpace="DeviceCMYK";else{if(1!==_.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==_.length||"DeviceCMYK"===this._colorSpace&&4!==_.length||"DeviceGray"===this._colorSpace&&1!==_.length)throw new Error("All gradient stops must use the same color space");return W=Math.max(0,Math.min(1,W)),this.stops.push([N,_,W]),this}},{key:"setTransform",value:function(N,_,W,BA,MA,ZA){return this.transform=[N,_,W,BA,MA,ZA],this}},{key:"embed",value:function(N){var _,W=this.stops.length;if(0!==W){this.embedded=!0,this.matrix=N;var BA=this.stops[W-1];BA[0]<1&&this.stops.push([1,BA[1],BA[2]]);for(var MA=[],ZA=[],At=[],ht=0;ht>16,N>>8&255,255&N]}else zn[G]&&(G=zn[G]);return Array.isArray(G)?(3===G.length?G=G.map(function(_){return _/255}):4===G.length&&(G=G.map(function(_){return _/100})),G):null},_setColor:function(G,N){return G instanceof tn?(G.apply(N),!0):Array.isArray(G)&&G[0]instanceof qe?(G[0].apply(N,G[1]),!0):this._setColorCore(G,N)},_setColorCore:function(G,N){if(!(G=this._normalizeColor(G)))return!1;var _=N?"SCN":"scn",W=this._getColorSpace(G);return this._setColorSpace(W,N),G=G.join(" "),this.addContent("".concat(G," ").concat(_)),!0},_setColorSpace:function(G,N){var _=N?"CS":"cs";return this.addContent("/".concat(G," ").concat(_))},_getColorSpace:function(G){return 4===G.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(G,N){return this._setColor(G,!1)&&this.fillOpacity(N),this._fillColor=[G,N],this},strokeColor:function(G,N){return this._setColor(G,!0)&&this.strokeOpacity(N),this},opacity:function(G){return this._doOpacity(G,G),this},fillOpacity:function(G){return this._doOpacity(G,null),this},strokeOpacity:function(G){return this._doOpacity(null,G),this},_doOpacity:function(G,N){var _,W;if(null!=G||null!=N){null!=G&&(G=Math.max(0,Math.min(1,G))),null!=N&&(N=Math.max(0,Math.min(1,N)));var BA="".concat(G,"_").concat(N);if(this._opacityRegistry[BA]){var MA=O(this._opacityRegistry[BA],2);_=MA[0],W=MA[1]}else{_={Type:"ExtGState"},null!=G&&(_.ca=G),null!=N&&(_.CA=N),(_=this.ref(_)).end();var ZA=++this._opacityCount;W="Gs".concat(ZA),this._opacityRegistry[BA]=[_,W]}return this.page.ext_gstates[W]=_,this.addContent("/".concat(W," gs"))}},linearGradient:function(G,N,_,W){return new Te(this,G,N,_,W)},radialGradient:function(G,N,_,W,BA,MA){return new en(this,G,N,_,W,BA,MA)},pattern:function(G,N,_,W){return new qe(this,G,N,_,W)}},zn={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};Ot=zt=Xt=se=mn=dn=0;var xn={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},Fn={M:function(G,N){return Xt=se=null,mn=Ot=N[0],dn=zt=N[1],G.moveTo(Ot,zt)},m:function(G,N){return Xt=se=null,mn=Ot+=N[0],dn=zt+=N[1],G.moveTo(Ot,zt)},C:function(G,N){return Ot=N[4],zt=N[5],Xt=N[2],se=N[3],G.bezierCurveTo.apply(G,J(N))},c:function(G,N){return G.bezierCurveTo(N[0]+Ot,N[1]+zt,N[2]+Ot,N[3]+zt,N[4]+Ot,N[5]+zt),Xt=Ot+N[2],se=zt+N[3],Ot+=N[4],zt+=N[5]},S:function(G,N){return null===Xt&&(Xt=Ot,se=zt),G.bezierCurveTo(Ot-(Xt-Ot),zt-(se-zt),N[0],N[1],N[2],N[3]),Xt=N[0],se=N[1],Ot=N[2],zt=N[3]},s:function(G,N){return null===Xt&&(Xt=Ot,se=zt),G.bezierCurveTo(Ot-(Xt-Ot),zt-(se-zt),Ot+N[0],zt+N[1],Ot+N[2],zt+N[3]),Xt=Ot+N[0],se=zt+N[1],Ot+=N[2],zt+=N[3]},Q:function(G,N){return Xt=N[0],se=N[1],G.quadraticCurveTo(N[0],N[1],Ot=N[2],zt=N[3])},q:function(G,N){return G.quadraticCurveTo(N[0]+Ot,N[1]+zt,N[2]+Ot,N[3]+zt),Xt=Ot+N[0],se=zt+N[1],Ot+=N[2],zt+=N[3]},T:function(G,N){return null===Xt?(Xt=Ot,se=zt):(Xt=Ot-(Xt-Ot),se=zt-(se-zt)),G.quadraticCurveTo(Xt,se,N[0],N[1]),Xt=Ot-(Xt-Ot),se=zt-(se-zt),Ot=N[0],zt=N[1]},t:function(G,N){return null===Xt?(Xt=Ot,se=zt):(Xt=Ot-(Xt-Ot),se=zt-(se-zt)),G.quadraticCurveTo(Xt,se,Ot+N[0],zt+N[1]),Ot+=N[0],zt+=N[1]},A:function(G,N){return WA(G,Ot,zt,N),Ot=N[5],zt=N[6]},a:function(G,N){return N[5]+=Ot,N[6]+=zt,WA(G,Ot,zt,N),Ot=N[5],zt=N[6]},L:function(G,N){return Xt=se=null,G.lineTo(Ot=N[0],zt=N[1])},l:function(G,N){return Xt=se=null,G.lineTo(Ot+=N[0],zt+=N[1])},H:function(G,N){return Xt=se=null,G.lineTo(Ot=N[0],zt)},h:function(G,N){return Xt=se=null,G.lineTo(Ot+=N[0],zt)},V:function(G,N){return Xt=se=null,G.lineTo(Ot,zt=N[0])},v:function(G,N){return Xt=se=null,G.lineTo(Ot,zt+=N[0])},Z:function(G){return G.closePath(),Ot=mn,zt=dn},z:function(G){return G.closePath(),Ot=mn,zt=dn}},WA=function(G,N,_,W){var Wt,BA=O(W,7),Jt=QA(xA(BA[5],BA[6],BA[0],BA[1],BA[3],BA[4],BA[2],N,_));try{for(Jt.s();!(Wt=Jt.n()).done;){var we=$A.apply(void 0,J(Wt.value));G.bezierCurveTo.apply(G,J(we))}}catch(pe){Jt.e(pe)}finally{Jt.f()}},xA=function(G,N,_,W,BA,MA,ZA,At,ht){var Ct=ZA*(Math.PI/180),vt=Math.sin(Ct),xt=Math.cos(Ct);_=Math.abs(_),W=Math.abs(W);var Yt=(Xt=xt*(At-G)*.5+vt*(ht-N)*.5)*Xt/(_*_)+(se=xt*(ht-N)*.5-vt*(At-G)*.5)*se/(W*W);Yt>1&&(_*=Yt=Math.sqrt(Yt),W*=Yt);var Jt=xt/_,Wt=vt/_,he=-vt/W,we=xt/W,pe=Jt*At+Wt*ht,nn=he*At+we*ht,te=Jt*G+Wt*N,je=he*G+we*N,We=1/((te-pe)*(te-pe)+(je-nn)*(je-nn))-.25;We<0&&(We=0);var Cn=Math.sqrt(We);MA===BA&&(Cn=-Cn);var Wn=.5*(pe+te)-Cn*(je-nn),Ai=.5*(nn+je)+Cn*(te-pe),Sn=Math.atan2(nn-Ai,pe-Wn),Hn=Math.atan2(je-Ai,te-Wn)-Sn;Hn<0&&1===MA?Hn+=2*Math.PI:Hn>0&&0===MA&&(Hn-=2*Math.PI);for(var ai=Math.ceil(Math.abs(Hn/(.5*Math.PI+.001))),mi=[],ti=0;ti0&&(W[W.length]=+BA),_[_.length]={cmd:N,args:W},W=[],BA="",MA=!1),N=Ct;else if([" ",","].includes(Ct)||"-"===Ct&&BA.length>0&&"e"!==BA[BA.length-1]||"."===Ct&&MA){if(0===BA.length)continue;W.length===ZA?(_[_.length]={cmd:N,args:W},W=[+BA],"M"===N&&(N="L"),"m"===N&&(N="l")):W[W.length]=+BA,MA="."===Ct,BA=["-","."].includes(Ct)?Ct:""}else BA+=Ct,"."===Ct&&(MA=!0)}}catch(vt){At.e(vt)}finally{At.f()}return BA.length>0&&(W.length===ZA?(_[_.length]={cmd:N,args:W},W=[+BA],"M"===N&&(N="L"),"m"===N&&(N="l")):W[W.length]=+BA),_[_.length]={cmd:N,args:W},_}(_);!function(G,N){Ot=zt=Xt=se=mn=dn=0;for(var _=0;_1&&void 0!==arguments[1]?arguments[1]:{},_=G;if(Array.isArray(G)||(G=[G,N.space||G]),!G.every(function(BA){return Number.isFinite(BA)&&BA>0}))throw new Error("dash(".concat(JSON.stringify(_),", ").concat(JSON.stringify(N),") invalid, lengths must be numeric and greater than zero"));return G=G.map(RA).join(" "),this.addContent("[".concat(G,"] ").concat(RA(N.phase||0)," d"))},undash:function(){return this.addContent("[] 0 d")},moveTo:function(G,N){return this.addContent("".concat(RA(G)," ").concat(RA(N)," m"))},lineTo:function(G,N){return this.addContent("".concat(RA(G)," ").concat(RA(N)," l"))},bezierCurveTo:function(G,N,_,W,BA,MA){return this.addContent("".concat(RA(G)," ").concat(RA(N)," ").concat(RA(_)," ").concat(RA(W)," ").concat(RA(BA)," ").concat(RA(MA)," c"))},quadraticCurveTo:function(G,N,_,W){return this.addContent("".concat(RA(G)," ").concat(RA(N)," ").concat(RA(_)," ").concat(RA(W)," v"))},rect:function(G,N,_,W){return this.addContent("".concat(RA(G)," ").concat(RA(N)," ").concat(RA(_)," ").concat(RA(W)," re"))},roundedRect:function(G,N,_,W,BA){null==BA&&(BA=0);var MA=(BA=Math.min(BA,.5*_,.5*W))*(1-LA);return this.moveTo(G+BA,N),this.lineTo(G+_-BA,N),this.bezierCurveTo(G+_-MA,N,G+_,N+MA,G+_,N+BA),this.lineTo(G+_,N+W-BA),this.bezierCurveTo(G+_,N+W-MA,G+_-MA,N+W,G+_-BA,N+W),this.lineTo(G+BA,N+W),this.bezierCurveTo(G+MA,N+W,G,N+W-MA,G,N+W-BA),this.lineTo(G,N+BA),this.bezierCurveTo(G,N+MA,G+MA,N,G+BA,N),this.closePath()},ellipse:function(G,N,_,W){null==W&&(W=_);var BA=_*LA,MA=W*LA,ZA=(G-=_)+2*_,At=(N-=W)+2*W,ht=G+_,Ct=N+W;return this.moveTo(G,Ct),this.bezierCurveTo(G,Ct-MA,ht-BA,N,ht,N),this.bezierCurveTo(ht+BA,N,ZA,Ct-MA,ZA,Ct),this.bezierCurveTo(ZA,Ct+MA,ht+BA,At,ht,At),this.bezierCurveTo(ht-BA,At,G,Ct+MA,G,Ct),this.closePath()},circle:function(G,N,_){return this.ellipse(G,N,_)},arc:function(G,N,_,W,BA,MA){null==MA&&(MA=!1);var ZA=2*Math.PI,At=.5*Math.PI,ht=BA-W;Math.abs(ht)>ZA?ht=ZA:0!==ht&&MA!==ht<0&&(ht=(MA?-1:1)*ZA+ht);var vt=Math.ceil(Math.abs(ht)/At),xt=ht/vt,Yt=xt/At*LA*_,Jt=W,Wt=-Math.sin(Jt)*Yt,he=Math.cos(Jt)*Yt,we=G+Math.cos(Jt)*_,pe=N+Math.sin(Jt)*_;this.moveTo(we,pe);for(var nn=0;nn1&&void 0!==arguments[1]?arguments[1]:{},W=G*Math.PI/180,BA=Math.cos(W),MA=Math.sin(W),ZA=_=0;if(null!=N.origin){var At=O(N.origin,2),Ct=(ZA=At[0])*MA+(_=At[1])*BA;ZA-=ZA*BA-_*MA,_-=Ct}return this.transform(BA,MA,-MA,BA,ZA,_)},scale:function(G,N){var W,_=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==N&&(N=G),"object"==typeof N&&(_=N,N=G);var BA=W=0;if(null!=_.origin){var MA=O(_.origin,2);BA=MA[0],W=MA[1],BA-=G*BA,W-=N*W}return this.transform(G,0,0,N,BA,W)}},XA={402:131,8211:150,8212:151,8216:145,8217:146,8218:130,8220:147,8221:148,8222:132,8224:134,8225:135,8226:149,8230:133,8364:128,8240:137,8249:139,8250:155,710:136,8482:153,338:140,339:156,732:152,352:138,353:154,376:159,381:142,382:158},PA=".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/),at=function(){function mA(G){B(this,mA),this.contents=G,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var N=0;N<=255;N++)this.charWidths[N]=this.glyphWidths[PA[N]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(_){return+_}),this.ascender=+(this.attributes.Ascender||0),this.descender=+(this.attributes.Descender||0),this.xHeight=+(this.attributes.XHeight||0),this.capHeight=+(this.attributes.CapHeight||0),this.lineGap=this.bbox[3]-this.bbox[1]-(this.ascender-this.descender)}return C(mA,null,[{key:"open",value:function(N){return new mA(e.readFileSync(N,"utf8"))}}]),C(mA,[{key:"parse",value:function(){var W,N="",_=QA(this.contents.split("\n"));try{for(_.s();!(W=_.n()).done;){var MA,ZA,BA=W.value;if(MA=BA.match(/^Start(\w+)/))N=MA[1];else if(MA=BA.match(/^End(\w+)/))N="";else switch(N){case"FontMetrics":var At=(MA=BA.match(/(^\w+)\s+(.*)/))[1],ht=MA[2];(ZA=this.attributes[At])?(Array.isArray(ZA)||(ZA=this.attributes[At]=[ZA]),ZA.push(ht)):this.attributes[At]=ht;break;case"CharMetrics":if(!/^CH?\s/.test(BA))continue;var Ct=BA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Ct]=+BA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(MA=BA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[MA[1]+"\0"+MA[2]]=parseInt(MA[3]))}}}catch(vt){_.e(vt)}finally{_.f()}}},{key:"encodeText",value:function(N){for(var _=[],W=0,BA=N.length;W>8,At=0;this.font.post.isFixedPitch&&(At|=1),1<=ZA&&ZA<=7&&(At|=2),At|=4,10===ZA&&(At|=8),this.font.head.macStyle.italic&&(At|=64);var Ct=[1,2,3,4,5,6].map(function(Wt){return String.fromCharCode((W.id.charCodeAt(Wt)||73)+17)}).join("")+"+"+this.font.postscriptName,vt=this.font.bbox,xt=this.document.ref({Type:"FontDescriptor",FontName:Ct,Flags:At,FontBBox:[vt.minX*this.scale,vt.minY*this.scale,vt.maxX*this.scale,vt.maxY*this.scale],ItalicAngle:this.font.italicAngle,Ascent:this.ascender,Descent:this.descender,CapHeight:(this.font.capHeight||this.font.ascent)*this.scale,XHeight:(this.font.xHeight||0)*this.scale,StemV:0});BA?xt.data.FontFile3=MA:xt.data.FontFile2=MA,xt.end();var Yt={Type:"Font",Subtype:"CIDFontType0",BaseFont:Ct,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:xt,W:[0,this.widths]};BA||(Yt.Subtype="CIDFontType2",Yt.CIDToGIDMap="Identity");var Jt=this.document.ref(Yt);return Jt.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Ct,Encoding:"Identity-H",DescendantFonts:[Jt],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}},{key:"toUnicodeCmap",value:function(){var ZA,W=this.document.ref(),BA=[],MA=QA(this.unicode);try{for(MA.s();!(ZA=MA.n()).done;){var vt,ht=[],Ct=QA(ZA.value);try{for(Ct.s();!(vt=Ct.n()).done;){var xt=vt.value;xt>65535&&(ht.push(Nt((xt-=65536)>>>10&1023|55296)),xt=56320|1023&xt),ht.push(Nt(xt))}}catch(Yt){Ct.e(Yt)}finally{Ct.f()}BA.push("<".concat(ht.join(" "),">"))}}catch(Yt){MA.e(Yt)}finally{MA.f()}return W.end("/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n1 beginbfrange\n<0000> <".concat(Nt(BA.length-1),"> [").concat(BA.join(" "),"]\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend")),W}}]),N}(jA),Kt=function(){function mA(){B(this,mA)}return C(mA,null,[{key:"open",value:function(N,_,W,BA){var MA;if("string"==typeof _){if(Tt.isStandardFont(_))return new Tt(N,_,BA);_=e.readFileSync(_)}if(o.isBuffer(_)?MA=f.default.create(_,W):_ instanceof Uint8Array?MA=f.default.create(o.from(_),W):_ instanceof ArrayBuffer&&(MA=f.default.create(o.from(new Uint8Array(_)),W)),null==MA)throw new Error("Not a supported font format or standard PDF font.");return new kt(N,MA,BA)}}]),mA}(),Ae={initFonts:function(){var G=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica";this._fontFamilies={},this._fontCount=0,this._fontSize=12,this._font=null,this._registeredFonts={},G&&this.font(G)},font:function(G,N,_){var W,BA;if("number"==typeof N&&(_=N,N=null),"string"==typeof G&&this._registeredFonts[G]){W=G;var MA=this._registeredFonts[G];G=MA.src,N=MA.family}else"string"!=typeof(W=N||G)&&(W=null);if(null!=_&&this.fontSize(_),BA=this._fontFamilies[W])return this._font=BA,this;var ZA="F".concat(++this._fontCount);return this._font=Kt.open(this,G,N,ZA),(BA=this._fontFamilies[this._font.name])?(this._font=BA,this):(W&&(this._fontFamilies[W]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize:function(G){return this._fontSize=G,this},currentLineHeight:function(G){return null==G&&(G=!1),this._font.lineHeight(this._fontSize,G)},registerFont:function(G,N,_){return this._registeredFonts[G]={src:N,family:_},this}},ft=function(mA){v(N,mA);var G=b(N);function N(_,W){var BA;return B(this,N),(BA=G.call(this)).document=_,BA.indent=W.indent||0,BA.characterSpacing=W.characterSpacing||0,BA.wordSpacing=0===W.wordSpacing,BA.columns=W.columns||1,BA.columnGap=null!=W.columnGap?W.columnGap:18,BA.lineWidth=(W.width-BA.columnGap*(BA.columns-1))/BA.columns,BA.spaceLeft=BA.lineWidth,BA.startX=BA.document.x,BA.startY=BA.document.y,BA.column=1,BA.ellipsis=W.ellipsis,BA.continuedX=0,BA.features=W.features,null!=W.height?(BA.height=W.height,BA.maxY=BA.startY+W.height):BA.maxY=BA.document.page.maxY(),BA.on("firstLine",function(MA){var ZA=BA.continuedX||BA.indent;return BA.document.x+=ZA,BA.lineWidth-=ZA,BA.once("line",function(){if(BA.document.x-=ZA,BA.lineWidth+=ZA,MA.continued&&!BA.continuedX&&(BA.continuedX=BA.indent),!MA.continued)return BA.continuedX=0})}),BA.on("lastLine",function(MA){var ZA=MA.align;return"justify"===ZA&&(MA.align="left"),BA.lastLine=!0,BA.once("line",function(){return BA.document.y+=MA.paragraphGap||0,MA.align=ZA,BA.lastLine=!1})}),BA}return C(N,[{key:"wordWidth",value:function(W){return this.document.widthOfString(W,this)+this.characterSpacing+this.wordSpacing}},{key:"eachWord",value:function(W,BA){for(var MA,ZA=new h.default(W),At=null,ht=Object.create(null);MA=ZA.nextBreak();){var Ct,vt=W.slice((null!=At?At.position:void 0)||0,MA.position),xt=null!=ht[vt]?ht[vt]:ht[vt]=this.wordWidth(vt);if(xt>this.lineWidth+this.continuedX)for(var Yt=At,Jt={};vt.length;){var Wt,he;xt>this.spaceLeft?(Wt=Math.ceil(this.spaceLeft/(xt/vt.length)),he=(xt=this.wordWidth(vt.slice(0,Wt)))<=this.spaceLeft&&Wtthis.spaceLeft&&Wt>0;we||he;)we?we=(xt=this.wordWidth(vt.slice(0,--Wt)))>this.spaceLeft&&Wt>0:(we=(xt=this.wordWidth(vt.slice(0,++Wt)))>this.spaceLeft&&Wt>0,he=xt<=this.spaceLeft&&Wtthis.maxY||ZA>this.maxY)&&this.nextSection();var At="",ht=0,Ct=0,vt=0,xt=this.document.y,Yt=function(){return BA.textWidth=ht+MA.wordSpacing*(Ct-1),BA.wordCount=Ct,BA.lineWidth=MA.lineWidth,xt=MA.document.y,MA.emit("line",At,BA,MA),vt++};return this.emit("sectionStart",BA,this),this.eachWord(W,function(Jt,Wt,he,we){if((null==we||we.required)&&(MA.emit("firstLine",BA,MA),MA.spaceLeft=MA.lineWidth),Wt<=MA.spaceLeft&&(At+=Jt,ht+=Wt,Ct++),he.required||Wt>MA.spaceLeft){var pe=MA.document.currentLineHeight(!0);if(null!=MA.height&&MA.ellipsis&&MA.document.y+2*pe>MA.maxY&&MA.column>=MA.columns){for(!0===MA.ellipsis&&(MA.ellipsis="\u2026"),At=At.replace(/\s+$/,""),ht=MA.wordWidth(At+MA.ellipsis);At&&ht>MA.lineWidth;)At=At.slice(0,-1).replace(/\s+$/,""),ht=MA.wordWidth(At+MA.ellipsis);ht<=MA.lineWidth&&(At+=MA.ellipsis),ht=MA.wordWidth(At)}return he.required&&(Wt>MA.spaceLeft&&(Yt(),At=Jt,ht=Wt,Ct=1),MA.emit("lastLine",BA,MA)),Yt(),MA.document.y+pe>MA.maxY&&!MA.nextSection()?(Ct=0,At="",!1):he.required?(MA.spaceLeft=MA.lineWidth,At="",ht=0,Ct=0):(MA.spaceLeft=MA.lineWidth-Wt,At=Jt,ht=Wt,Ct=1)}return MA.spaceLeft-=Wt}),Ct>0&&(this.emit("lastLine",BA,this),Yt()),this.emit("sectionEnd",BA,this),!0===BA.continued?(vt>1&&(this.continuedX=0),this.continuedX+=BA.textWidth||0,this.document.y=xt):this.document.x=this.startX}},{key:"nextSection",value:function(W){if(this.emit("sectionEnd",W,this),++this.column>this.columns){if(null!=this.height)return!1;var BA;this.document.continueOnNewPage(),this.column=1,this.startY=this.document.page.margins.top,this.maxY=this.document.page.maxY(),this.document.x=this.startX,this.document._fillColor&&(BA=this.document).fillColor.apply(BA,J(this.document._fillColor)),this.emit("pageBreak",W,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",W,this);return this.emit("sectionStart",W,this),!0}}]),N}(E.EventEmitter),St=bA.number,jt={initText:function(){return this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap:function(G){return this._lineGap=G,this},moveDown:function(G){return null==G&&(G=1),this.y+=this.currentLineHeight(!0)*G+this._lineGap,this},moveUp:function(G){return null==G&&(G=1),this.y-=this.currentLineHeight(!0)*G+this._lineGap,this},_text:function(G,N,_,W,BA){var MA=this;W=this._initOptions(N,_,W),G=null==G?"":"".concat(G),W.wordSpacing&&(G=G.replace(/\s{2,}/g," "));var ZA=function(){W.structParent&&W.structParent.add(MA.struct(W.structType||"P",[MA.markStructureContent(W.structType||"P")]))};if(W.width){var At=this._wrapper;At||((At=new ft(this,W)).on("line",BA),At.on("firstLine",ZA)),this._wrapper=W.continued?At:null,this._textOptions=W.continued?W:null,At.wrap(G,W)}else{var Ct,ht=QA(G.split("\n"));try{for(ht.s();!(Ct=ht.n()).done;){var vt=Ct.value;ZA(),BA(vt,W)}}catch(xt){ht.e(xt)}finally{ht.f()}}return this},text:function(G,N,_,W){return this._text(G,N,_,W,this._line)},widthOfString:function(G){var N=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(G,this._fontSize,N.features)+(N.characterSpacing||0)*(G.length-1)},heightOfString:function(G,N){var _=this,W=this.x,BA=this.y;(N=this._initOptions(N)).height=1/0;var MA=N.lineGap||this._lineGap||0;this._text(G,this.x,this.y,N,function(){return _.y+=_.currentLineHeight(!0)+MA});var ZA=this.y-BA;return this.x=W,this.y=BA,ZA},list:function(G,N,_,W,BA){var MA=this,ZA=(W=this._initOptions(N,_,W)).listType||"bullet",At=Math.round(this._font.ascender/1e3*this._fontSize),ht=At/2,Ct=W.bulletRadius||At/3,vt=W.textIndent||("bullet"===ZA?5*Ct:2*At),xt=W.bulletIndent||("bullet"===ZA?8*Ct:2*At),Yt=1,Jt=[],Wt=[],he=[];!function te(je){for(var wn=1,We=0;We0&&void 0!==arguments[0]?arguments[0]:{},N=arguments.length>1?arguments[1]:void 0,_=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof G&&(_=G,G=null);var W=Object.assign({},_);if(this._textOptions)for(var BA in this._textOptions)"continued"!==BA&&void 0===W[BA]&&(W[BA]=this._textOptions[BA]);return null!=G&&(this.x=G),null!=N&&(this.y=N),!1!==W.lineBreak&&(null==W.width&&(W.width=this.page.width-this.x-this.page.margins.right),W.width=Math.max(W.width,0)),W.columns||(W.columns=0),null==W.columnGap&&(W.columnGap=18),W},_line:function(G){var N=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},_=arguments.length>2?arguments[2]:void 0;this._fragment(G,this.x,this.y,N);var W=N.lineGap||this._lineGap||0;return _?this.y+=this.currentLineHeight(!0)+W:this.x+=this.widthOfString(G)},_fragment:function(G,N,_,W){var MA,ZA,At,ht,Ct,vt,BA=this;if(0!==(G="".concat(G).replace(/\n/g,"")).length){var Yt=W.wordSpacing||0,Jt=W.characterSpacing||0;if(W.width)switch(W.align||"left"){case"right":Ct=this.widthOfString(G.replace(/\s+$/,""),W),N+=W.lineWidth-Ct;break;case"center":N+=W.lineWidth/2-W.textWidth/2;break;case"justify":vt=G.trim().split(/\s+/),Ct=this.widthOfString(G.replace(/\s+/g,""),W);var Wt=this.widthOfString(" ")+Jt;Yt=Math.max(0,(W.lineWidth-Ct)/Math.max(1,vt.length-1)-Wt)}if("number"==typeof W.baseline)MA=-W.baseline;else{switch(W.baseline){case"svg-middle":MA=.5*this._font.xHeight;break;case"middle":case"svg-central":MA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":MA=this._font.descender;break;case"alphabetic":MA=0;break;case"mathematical":MA=.5*this._font.ascender;break;case"hanging":MA=.8*this._font.ascender;break;default:MA=this._font.ascender}MA=MA/1e3*this._fontSize}var je,he=W.textWidth+Yt*(W.wordCount-1)+Jt*(G.length-1);if(null!=W.link&&this.link(N,_,he,this.currentLineHeight(),W.link),null!=W.goTo&&this.goTo(N,_,he,this.currentLineHeight(),W.goTo),null!=W.destination&&this.addNamedDestination(W.destination,"XYZ",N,_,null),W.underline){this.save(),W.stroke||this.strokeColor.apply(this,J(this._fillColor||[]));var we=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(we);var pe=_+this.currentLineHeight()-we;this.moveTo(N,pe),this.lineTo(N+he,pe),this.stroke(),this.restore()}if(W.strike){this.save(),W.stroke||this.strokeColor.apply(this,J(this._fillColor||[]));var nn=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(nn);var te=_+this.currentLineHeight()/2;this.moveTo(N,te),this.lineTo(N+he,te),this.stroke(),this.restore()}this.save(),W.oblique&&(je="number"==typeof W.oblique?-Math.tan(W.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,N,_),this.transform(1,0,je,1,-je*MA,0),this.transform(1,0,0,1,-N,-_)),this.transform(1,0,0,-1,0,this.page.height),_=this.page.height-_-MA,null==this.page.fonts[this._font.id]&&(this.page.fonts[this._font.id]=this._font.ref()),this.addContent("BT"),this.addContent("1 0 0 1 ".concat(St(N)," ").concat(St(_)," Tm")),this.addContent("/".concat(this._font.id," ").concat(St(this._fontSize)," Tf"));var wn=W.fill&&W.stroke?2:W.stroke?1:0;if(wn&&this.addContent("".concat(wn," Tr")),Jt&&this.addContent("".concat(St(Jt)," Tc")),Yt){vt=G.trim().split(/\s+/),Yt+=this.widthOfString(" ")+Jt,Yt*=1e3/this._fontSize,ZA=[],ht=[];var Cn,We=QA(vt);try{for(We.s();!(Cn=We.n()).done;){var Sn=O(this._font.encode(Cn.value,W.features),2),Hn=Sn[1];ZA=ZA.concat(Sn[0]),ht=ht.concat(Hn);var ai={},mi=ht[ht.length-1];for(var ti in mi)ai[ti]=mi[ti];ai.xAdvance+=Yt,ht[ht.length-1]=ai}}catch(Ji){We.e(Ji)}finally{We.f()}}else{var Vn=O(this._font.encode(G,W.features),2);ZA=Vn[0],ht=Vn[1]}var zi=this._fontSize/1e3,Ii=[],Gi=0,Hi=!1,Br=function(Kn){if(Gi ").concat(St(-Or)))}return Gi=Kn},Oi=function(Kn){if(Br(Kn),Ii.length>0)return BA.addContent("[".concat(Ii.join(" "),"] TJ")),Ii.length=0};for(At=0;At3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof N&&(W=N,N=null),N=null!=(Ct=null!=N?N:W.x)?Ct:this.x,_=null!=(vt=null!=_?_:W.y)?vt:this.y,"string"==typeof G&&(At=this._imageRegistry[G]),At||(At=G.width&&G.height?G:this.openImage(G)),At.obj||At.embed(this),null==this.page.xobjects[At.label]&&(this.page.xobjects[At.label]=At.obj);var xt=W.width||At.width,Yt=W.height||At.height;if(W.width&&!W.height){var Jt=xt/At.width;xt=At.width*Jt,Yt=At.height*Jt}else if(W.height&&!W.width){var Wt=Yt/At.height;xt=At.width*Wt,Yt=At.height*Wt}else if(W.scale)xt=At.width*W.scale,Yt=At.height*W.scale;else if(W.fit){var he=O(W.fit,2);(ht=At.width/At.height)>(ZA=he[0])/(BA=he[1])?(xt=ZA,Yt=ZA/ht):(Yt=BA,xt=BA*ht)}else if(W.cover){var we=O(W.cover,2);(ht=At.width/At.height)>(ZA=we[0])/(BA=we[1])?(Yt=BA,xt=BA*ht):(xt=ZA,Yt=ZA/ht)}return(W.fit||W.cover)&&("center"===W.align?N=N+ZA/2-xt/2:"right"===W.align&&(N=N+ZA-xt),"center"===W.valign?_=_+BA/2-Yt/2:"bottom"===W.valign&&(_=_+BA-Yt)),null!=W.link&&this.link(N,_,xt,Yt,W.link),null!=W.goTo&&this.goTo(N,_,xt,Yt,W.goTo),null!=W.destination&&this.addNamedDestination(W.destination,"XYZ",N,_,null),this.y===_&&(this.y+=Yt),this.save(),this.transform(xt,0,0,-Yt,N,_+Yt),this.addContent("/".concat(At.label," Do")),this.restore(),this},openImage:function(G){var N;return"string"==typeof G&&(N=this._imageRegistry[G]),N||(N=Be.open(G,"I".concat(++this._imageCount)),"string"==typeof G&&(this._imageRegistry[G]=N)),N}},Ge={annotate:function(G,N,_,W,BA){for(var MA in BA.Type="Annot",BA.Rect=this._convertRect(G,N,_,W),BA.Border=[0,0,0],"Link"===BA.Subtype&&void 0===BA.F&&(BA.F=4),"Link"!==BA.Subtype&&null==BA.C&&(BA.C=this._normalizeColor(BA.color||[0,0,0])),delete BA.color,"string"==typeof BA.Dest&&(BA.Dest=new String(BA.Dest)),BA){var ZA=BA[MA];BA[MA[0].toUpperCase()+MA.slice(1)]=ZA}var At=this.ref(BA);return this.page.annotations.push(At),At.end(),this},note:function(G,N,_,W,BA){var MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return MA.Subtype="Text",MA.Contents=new String(BA),MA.Name="Comment",null==MA.color&&(MA.color=[243,223,92]),this.annotate(G,N,_,W,MA)},goTo:function(G,N,_,W,BA){var MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return MA.Subtype="Link",MA.A=this.ref({S:"GoTo",D:new String(BA)}),MA.A.end(),this.annotate(G,N,_,W,MA)},link:function(G,N,_,W,BA){var MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(MA.Subtype="Link","number"==typeof BA){var ZA=this._root.data.Pages.data;if(!(BA>=0&&BA4&&void 0!==arguments[4]?arguments[4]:{},ZA=O(this._convertRect(G,N,_,W),4),At=ZA[0],ht=ZA[1],Ct=ZA[2],vt=ZA[3];return BA.QuadPoints=[At,vt,Ct,vt,At,ht,Ct,ht],BA.Contents=new String,this.annotate(G,N,_,W,BA)},highlight:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Highlight",null==BA.color&&(BA.color=[241,238,148]),this._markup(G,N,_,W,BA)},underline:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Underline",this._markup(G,N,_,W,BA)},strike:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="StrikeOut",this._markup(G,N,_,W,BA)},lineAnnotation:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Line",BA.Contents=new String,BA.L=[G,this.page.height-N,_,this.page.height-W],this.annotate(G,N,_,W,BA)},rectAnnotation:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Square",BA.Contents=new String,this.annotate(G,N,_,W,BA)},ellipseAnnotation:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Circle",BA.Contents=new String,this.annotate(G,N,_,W,BA)},textAnnotation:function(G,N,_,W,BA){var MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return MA.Subtype="FreeText",MA.Contents=new String(BA),MA.DA=new String,this.annotate(G,N,_,W,MA)},fileAnnotation:function(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},MA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},ZA=this.file(BA.src,Object.assign({hidden:!0},BA));return MA.Subtype="FileAttachment",MA.FS=ZA,MA.Contents?MA.Contents=new String(MA.Contents):ZA.data.Desc&&(MA.Contents=ZA.data.Desc),this.annotate(G,N,_,W,MA)},_convertRect:function(G,N,_,W){var BA=N;N+=W;var MA=G+_,ZA=O(this._ctm,6),At=ZA[0],ht=ZA[1],Ct=ZA[2],vt=ZA[3],xt=ZA[4],Yt=ZA[5];return[G=At*G+Ct*N+xt,N=ht*G+vt*N+Yt,MA=At*MA+Ct*BA+xt,BA=ht*MA+vt*BA+Yt]}},Se=function(){function mA(G,N,_,W){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};B(this,mA),this.document=G,this.options=BA,this.outlineData={},null!==W&&(this.outlineData.Dest=[W.dictionary,"Fit"]),null!==N&&(this.outlineData.Parent=N),null!==_&&(this.outlineData.Title=new String(_)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}return C(mA,[{key:"addItem",value:function(N){var W=new mA(this.document,this.dictionary,N,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(W),W}},{key:"endOutline",value:function(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);var _=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=_.dictionary;for(var W=0,BA=this.children.length;W0&&(MA.outlineData.Prev=this.children[W-1].dictionary),W0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},Ne=function(){function mA(G,N){B(this,mA),this.refs=[{pageRef:G,mcid:N}]}return C(mA,[{key:"push",value:function(N){var _=this;N.refs.forEach(function(W){return _.refs.push(W)})}}]),mA}(),$e=function(){function mA(G,N){var _=this,W=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},BA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;B(this,mA),this.document=G,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=G.ref({S:N});var MA=this.dictionary.data;(Array.isArray(W)||this._isValidChild(W))&&(BA=W,W={}),void 0!==W.title&&(MA.T=new String(W.title)),void 0!==W.lang&&(MA.Lang=new String(W.lang)),void 0!==W.alt&&(MA.Alt=new String(W.alt)),void 0!==W.expanded&&(MA.E=new String(W.expanded)),void 0!==W.actual&&(MA.ActualText=new String(W.actual)),this._children=[],BA&&(Array.isArray(BA)||(BA=[BA]),BA.forEach(function(ZA){return _.add(ZA)}),this.end())}return C(mA,[{key:"add",value:function(N){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(N))throw new Error("Invalid structure element child");return N instanceof mA&&(N.setParent(this.dictionary),this._attached&&N.setAttached()),N instanceof Ne&&this._addContentToParentTree(N),"function"==typeof N&&this._attached&&(N=this._contentForClosure(N)),this._children.push(N),this}},{key:"_addContentToParentTree",value:function(N){var _=this;N.refs.forEach(function(W){var BA=W.pageRef,MA=W.mcid;_.document.getStructParentTree().get(BA.data.StructParents)[MA]=_.dictionary})}},{key:"setParent",value:function(N){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=N,this._flush()}},{key:"setAttached",value:function(){var N=this;this._attached||(this._children.forEach(function(_,W){_ instanceof mA&&_.setAttached(),"function"==typeof _&&(N._children[W]=N._contentForClosure(_))}),this._attached=!0,this._flush())}},{key:"end",value:function(){this._ended||(this._children.filter(function(N){return N instanceof mA}).forEach(function(N){return N.end()}),this._ended=!0,this._flush())}},{key:"_isValidChild",value:function(N){return N instanceof mA||N instanceof Ne||"function"==typeof N}},{key:"_contentForClosure",value:function(N){var _=this.document.markStructureContent(this.dictionary.data.S);return N(),this.document.endMarkedContent(),this._addContentToParentTree(_),_}},{key:"_isFlushable",value:function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(N){return"function"!=typeof N&&(!(N instanceof mA)||N._isFlushable())})}},{key:"_flush",value:function(){var N=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(_){return N._flushChild(_)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}},{key:"_flushChild",value:function(N){var _=this;N instanceof mA&&this.dictionary.data.K.push(N.dictionary),N instanceof Ne&&N.refs.forEach(function(W){var BA=W.pageRef,MA=W.mcid;_.dictionary.data.Pg||(_.dictionary.data.Pg=BA),_.dictionary.data.K.push(_.dictionary.data.Pg===BA?MA:{Type:"MCR",Pg:BA,MCID:MA})})}}]),mA}(),yn=function(mA){v(N,mA);var G=b(N);function N(){return B(this,N),G.apply(this,arguments)}return C(N,[{key:"_compareKeys",value:function(W,BA){return parseInt(W)-parseInt(BA)}},{key:"_keysName",value:function(){return"Nums"}},{key:"_dataForKey",value:function(W){return parseInt(W)}}]),N}(Z),rn={initMarkings:function(G){this.structChildren=[],G.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(G){var N=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===G||N&&N.mcid){var _=0;for(this.page.markings.forEach(function(BA){(_||BA.structContent||"Artifact"===BA.tag)&&_++});_--;)this.endMarkedContent()}if(!N)return this.page.markings.push({tag:G}),this.addContent("/".concat(G," BMC")),this;this.page.markings.push({tag:G,options:N});var W={};return void 0!==N.mcid&&(W.MCID=N.mcid),"Artifact"===G&&("string"==typeof N.type&&(W.Type=N.type),Array.isArray(N.bbox)&&(W.BBox=[N.bbox[0],this.page.height-N.bbox[3],N.bbox[2],this.page.height-N.bbox[1]]),Array.isArray(N.attached)&&N.attached.every(function(BA){return"string"==typeof BA})&&(W.Attached=N.attached)),"Span"===G&&(N.lang&&(W.Lang=new String(N.lang)),N.alt&&(W.Alt=new String(N.alt)),N.expanded&&(W.E=new String(N.expanded)),N.actual&&(W.ActualText=new String(N.actual))),this.addContent("/".concat(G," ").concat(bA.convert(W)," BDC")),this},markStructureContent:function(G){var N=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},_=this.getStructParentTree().get(this.page.structParentTreeKey),W=_.length;_.push(null),this.markContent(G,Y(Y({},N),{},{mcid:W}));var BA=new Ne(this.page.dictionary,W);return this.page.markings.slice(-1)[0].structContent=BA,BA},endMarkedContent:function(){return this.page.markings.pop(),this.addContent("EMC"),this},struct:function(G){return new $e(this,G,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure:function(G){var N=this.getStructTreeRoot();return G.setParent(N),G.setAttached(),this.structChildren.push(G),N.data.K||(N.data.K=[]),N.data.K.push(G.dictionary),this},initPageMarkings:function(G){var N=this;G.forEach(function(_){if(_.structContent){var W=_.structContent,BA=N.markStructureContent(_.tag,_.options);W.push(BA),N.page.markings.slice(-1)[0].structContent=W}else N.markContent(_.tag,_.options)})},endPageMarkings:function(G){var N=G.markings;return N.forEach(function(){return G.write("EMC")}),G.markings=[],N},getMarkInfoDictionary:function(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},getStructTreeRoot:function(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new yn,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var G=this.getStructTreeRoot(),N=G.data.ParentTreeNextKey++;return G.data.ParentTree.add(N,[]),N},endMarkings:function(){var G=this._root.data.StructTreeRoot;G&&(G.end(),this.structChildren.forEach(function(N){return N.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},pn={readOnly:1,required:2,noExport:4,multiline:4096,password:8192,toggleToOffButton:16384,radioButton:32768,pushButton:65536,combo:131072,edit:262144,sort:524288,multiSelect:2097152,noSpell:4194304},Yn={left:0,center:1,right:2},an={value:"V",defaultValue:"DV"},hn={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},gn_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},gn_percent={nDec:0,sepComma:!1},_n={initForm:function(){if(!this._font)throw new Error("Must set a font before calling initForm method");this._acroform={fonts:{},defaultFont:this._font.name},this._acroform.fonts[this._font.id]=this._font.ref();var G={Fields:[],NeedAppearances:!0,DA:new String("/".concat(this._font.id," 0 Tf 0 g")),DR:{Font:{}}};G.DR.Font[this._font.id]=this._font.ref();var N=this.ref(G);return this._root.data.AcroForm=N,this},endAcroForm:function(){var G=this;if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");var N=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(_){N[_]=G._acroform.fonts[_]}),this._root.data.AcroForm.data.Fields.forEach(function(_){G._endChild(_)}),this._root.data.AcroForm.end()}return this},_endChild:function(G){var N=this;return Array.isArray(G.data.Kids)&&(G.data.Kids.forEach(function(_){N._endChild(_)}),G.end()),this},formField:function(G){var _=this._fieldDict(G,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),W=this.ref(_);return this._addToParent(W),W},formAnnotation:function(G,N,_,W,BA,MA){var At=this._fieldDict(G,N,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return At.Subtype="Widget",void 0===At.F&&(At.F=4),this.annotate(_,W,BA,MA,At),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(G,N,_,W,BA){return this.formAnnotation(G,"text",N,_,W,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(G,N,_,W,BA){return this.formAnnotation(G,"pushButton",N,_,W,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(G,N,_,W,BA){return this.formAnnotation(G,"combo",N,_,W,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(G,N,_,W,BA){return this.formAnnotation(G,"list",N,_,W,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(G,N,_,W,BA){return this.formAnnotation(G,"radioButton",N,_,W,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(G,N,_,W,BA){return this.formAnnotation(G,"checkbox",N,_,W,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(G){var N=G.data.Parent;return N?(N.data.Kids||(N.data.Kids=[]),N.data.Kids.push(G)):this._root.data.AcroForm.data.Fields.push(G),this},_fieldDict:function(G,N){var _=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(!this._acroform)throw new Error("Call document.initForms() method before adding form elements to document");var W=Object.assign({},_);return null!==N&&(W=this._resolveType(N,_)),W=this._resolveFlags(W),W=this._resolveJustify(W),W=this._resolveFont(W),W=this._resolveStrings(W),W=this._resolveColors(W),(W=this._resolveFormat(W)).T=new String(G),W.parent&&(W.Parent=W.parent,delete W.parent),W},_resolveType:function(G,N){if("text"===G)N.FT="Tx";else if("pushButton"===G)N.FT="Btn",N.pushButton=!0;else if("radioButton"===G)N.FT="Btn",N.radioButton=!0;else if("checkbox"===G)N.FT="Btn";else if("combo"===G)N.FT="Ch",N.combo=!0;else{if("list"!==G)throw new Error("Invalid form annotation type '".concat(G,"'"));N.FT="Ch"}return N},_resolveFormat:function(G){var N=G.format;if(N&&N.type){var _,W,BA="";if(void 0!==hn[N.type])_="AFSpecial_Keystroke",W="AFSpecial_Format",BA=hn[N.type];else{var MA=N.type.charAt(0).toUpperCase()+N.type.slice(1);if(_="AF".concat(MA,"_Keystroke"),W="AF".concat(MA,"_Format"),"date"===N.type)_+="Ex",BA=String(N.param);else if("time"===N.type)BA=String(N.param);else if("number"===N.type){var ZA=Object.assign({},gn_number,N);BA=String([String(ZA.nDec),ZA.sepComma?"0":"1",'"'+ZA.negStyle+'"',"null",'"'+ZA.currency+'"',String(ZA.currencyPrepend)].join(","))}else if("percent"===N.type){var At=Object.assign({},gn_percent,N);BA=String([String(At.nDec),At.sepComma?"0":"1"].join(","))}}G.AA=G.AA?G.AA:{},G.AA.K={S:"JavaScript",JS:new String("".concat(_,"(").concat(BA,");"))},G.AA.F={S:"JavaScript",JS:new String("".concat(W,"(").concat(BA,");"))}}return delete G.format,G},_resolveColors:function(G){var N=this._normalizeColor(G.backgroundColor);return N&&(G.MK||(G.MK={}),G.MK.BG=N),(N=this._normalizeColor(G.borderColor))&&(G.MK||(G.MK={}),G.MK.BC=N),delete G.backgroundColor,delete G.borderColor,G},_resolveFlags:function(G){var N=0;return Object.keys(G).forEach(function(_){pn[_]&&(N|=pn[_],delete G[_])}),0!==N&&(G.Ff=G.Ff?G.Ff:0,G.Ff|=N),G},_resolveJustify:function(G){var N=0;return void 0!==G.align&&("number"==typeof Yn[G.align]&&(N=Yn[G.align]),delete G.align),0!==N&&(G.Q=N),G},_resolveFont:function(G){if(null===this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){G.DR={Font:{}};var N=G.fontSize||0;G.DR.Font[this._font.id]=this._font.ref(),G.DA=new String("/".concat(this._font.id," ").concat(N," Tf 0 g"))}return G},_resolveStrings:function(G){var N=[];function _(W){if(Array.isArray(W))for(var BA=0;BA1&&void 0!==arguments[1]?arguments[1]:{};N.name=N.name||G;var W,_={Type:"EmbeddedFile",Params:{}};if(!G)throw new Error("No src specified");if(o.isBuffer(G))W=G;else if(G instanceof ArrayBuffer)W=o.from(new Uint8Array(G));else{var BA;if(BA=/^data:(.*);base64,(.*)$/.exec(G))BA[1]&&(_.Subtype=BA[1].replace("/","#2F")),W=o.from(BA[2],"base64");else{if(!(W=e.readFileSync(G)))throw new Error("Could not read contents of file at filepath ".concat(G));var MA=e.statSync(G),At=MA.ctime;_.Params.CreationDate=MA.birthtime,_.Params.ModDate=At}}N.creationDate instanceof Date&&(_.Params.CreationDate=N.creationDate),N.modifiedDate instanceof Date&&(_.Params.ModDate=N.modifiedDate),N.type&&(_.Subtype=N.type.replace("/","#2F"));var Ct,ht=g.default.MD5(g.default.lib.WordArray.create(new Uint8Array(W)));_.Params.CheckSum=new String(ht),_.Params.Size=W.byteLength,this._fileRegistry||(this._fileRegistry={});var vt=this._fileRegistry[N.name];vt&&Si(_,vt)?Ct=vt.ref:((Ct=this.ref(_)).end(W),this._fileRegistry[N.name]=Y(Y({},_),{},{ref:Ct}));var xt={Type:"Filespec",F:new String(N.name),EF:{F:Ct},UF:new String(N.name)};N.description&&(xt.Desc=new String(N.description));var Yt=this.ref(xt);return Yt.end(),N.hidden||this.addNamedEmbeddedFile(N.name,Yt),Yt}};function Si(mA,G){return mA.Subtype===G.Subtype&&mA.Params.CheckSum.toString()===G.Params.CheckSum.toString()&&mA.Params.Size===G.Params.Size&&mA.Params.CreationDate===G.Params.CreationDate&&mA.Params.ModDate===G.Params.ModDate}var ri=function(mA){v(N,mA);var G=b(N);function N(){var _,W=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(B(this,N),(_=G.call(this,W)).options=W,W.pdfVersion){case"1.4":_.version=1.4;break;case"1.5":_.version=1.5;break;case"1.6":_.version=1.6;break;case"1.7":case"1.7ext3":_.version=1.7;break;default:_.version=1.3}_.compress=null==_.options.compress||_.options.compress,_._pageBuffer=[],_._pageBufferStart=0,_._offsets=[],_._waiting=0,_._ended=!1,_._offset=0;var BA=_.ref({Type:"Pages",Count:0,Kids:[]}),MA=_.ref({Dests:new K});if(_._root=_.ref({Type:"Catalog",Pages:BA,Names:MA}),_.options.lang&&(_._root.data.Lang=new String(_.options.lang)),_.page=null,_.initColor(),_.initVector(),_.initFonts(W.font),_.initText(),_.initImages(),_.initOutline(),_.initMarkings(W),_.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},_.options.info)for(var ZA in _.options.info)_.info[ZA]=_.options.info[ZA];return _.options.displayTitle&&(_._root.data.ViewerPreferences=_.ref({DisplayDocTitle:!0})),_._id=x.generateFileID(_.info),_._security=x.create(U(_),W),_._write("%PDF-".concat(_.version)),_._write("%\xff\xff\xff\xff"),!1!==_.options.autoFirstPage&&_.addPage(),_}return C(N,[{key:"addPage",value:function(W){null==W&&(W=this.options),this.options.bufferPages||this.flushPages(),this.page=new $(this,W),this._pageBuffer.push(this.page);var BA=this._root.data.Pages.data;return BA.Kids.push(this.page.dictionary),BA.Count++,this.x=this.page.margins.left,this.y=this.page.margins.top,this._ctm=[1,0,0,1,0,0],this.transform(1,0,0,-1,0,this.page.height),this.emit("pageAdded"),this}},{key:"continueOnNewPage",value:function(W){var BA=this.endPageMarkings(this.page);return this.addPage(W),this.initPageMarkings(BA),this}},{key:"bufferedPageRange",value:function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}},{key:"switchToPage",value:function(W){var BA;if(!(BA=this._pageBuffer[W-this._pageBufferStart]))throw new Error("switchToPage(".concat(W,") out of bounds, current buffer covers pages ").concat(this._pageBufferStart," to ").concat(this._pageBufferStart+this._pageBuffer.length-1));return this.page=BA}},{key:"flushPages",value:function(){var W=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=W.length;var MA,BA=QA(W);try{for(BA.s();!(MA=BA.n()).done;){var ZA=MA.value;this.endPageMarkings(ZA),ZA.end()}}catch(At){BA.e(At)}finally{BA.f()}}},{key:"addNamedDestination",value:function(W){for(var BA=arguments.length,MA=new Array(BA>1?BA-1:0),ZA=1;ZA1114111?this.errorValue:b<55296||b>56319&&b<=65535?this.data[(this.data[b>>5]<<2)+(31&b)]:b<=65535?this.data[(this.data[2048+(b-55296>>5)]<<2)+(31&b)]:b>11)]+(b>>5&63)]<<2)+(31&b)]:this.data[this.data.length-4]},y}()},1753:function(T,A,n){"use strict";n(6992),n(1539),n(2472),n(2990),n(8927),n(3105),n(5035),n(4345),n(7174),n(2846),n(4731),n(7209),n(6319),n(8867),n(7789),n(3739),n(9368),n(4483),n(2056),n(3462),n(678),n(7462),n(3824),n(5021),n(2974),n(5016),n(9135);var u=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],o=function(f,E,h){var r=f[E];f[E]=f[h],f[h]=r};T.exports={swap32LE:function(f){u&&function(f){for(var E=f.length,h=0;h/)){for(;at=XA();)jA.childNodes.push(at),at.parentNode=jA,jA.textContent+=3===at.nodeType||4===at.nodeType?at.nodeValue:at.textContent;return(PA=$A.match(/^<\/([\w:.-]+)\s*>/,!0))?(PA[1]===jA.nodeName||(ne('parseXml: tag not matching, opening "'+jA.nodeName+'" & closing "'+PA[1]+'"'),LA=!0),jA):(ne('parseXml: tag not matching, opening "'+jA.nodeName+'" & not closing'),LA=!0,jA)}if($A.match(/^\/>/))return jA;ne('parseXml: tag could not be parsed "'+jA.nodeName+'"'),LA=!0}else{if(PA=$A.match(/^/))return new xA(null,8,PA,LA);if(PA=$A.match(/^<\?[\s\S]*?\?>/))return new xA(null,7,PA,LA);if(PA=$A.match(/^/))return new xA(null,10,PA,LA);if(PA=$A.match(/^/,!0))return new xA("#cdata-section",4,PA[1],LA);if(PA=$A.match(/^([^<]+)/,!0))return new xA("#text",3,X(PA[1]),LA)}};RA=GA();)1!==RA.nodeType||UA?(1===RA.nodeType||3===RA.nodeType&&""!==RA.nodeValue.trim())&&ne("parseXml: data after document end has been discarded"):UA=RA;return $A.matchAll()&&ne("parseXml: parsing error"),UA}function X(WA){return WA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(xA,$A,UA,RA){return $A?String.fromCharCode(parseInt($A,10)):UA?String.fromCharCode(parseInt(UA,16)):RA&&w[RA]?String.fromCharCode(w[RA]):xA})}function cA(WA){var xA,$A;return WA=(WA||"").trim(),(xA=h[WA])?$A=[xA.slice(),1]:(xA=WA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(xA[1]=parseInt(xA[1]),xA[2]=parseInt(xA[2]),xA[3]=parseInt(xA[3]),xA[4]=parseFloat(xA[4]),xA[1]<256&&xA[2]<256&&xA[3]<256&&xA[4]<=1&&($A=[xA.slice(1,4),xA[4]])):(xA=WA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(xA[1]=parseInt(xA[1]),xA[2]=parseInt(xA[2]),xA[3]=parseInt(xA[3]),xA[1]<256&&xA[2]<256&&xA[3]<256&&($A=[xA.slice(1,4),1])):(xA=WA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(xA[1]=2.55*parseFloat(xA[1]),xA[2]=2.55*parseFloat(xA[2]),xA[3]=2.55*parseFloat(xA[3]),xA[1]<256&&xA[2]<256&&xA[3]<256&&($A=[xA.slice(1,4),1])):(xA=WA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?$A=[[parseInt(xA[1],16),parseInt(xA[2],16),parseInt(xA[3],16)],1]:(xA=WA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&($A=[[17*parseInt(xA[1],16),17*parseInt(xA[2],16),17*parseInt(xA[3],16)],1]),en?en($A,WA):$A}function pA(WA,xA,$A){var UA=WA[0].slice(),RA=WA[1]*xA;if($A){for(var LA=0;LA=0;xA--)WA=dA(zn[xA].savedMatrix,WA);return WA}function QA(){return(new et).M(0,0).L(s.page.width,0).L(s.page.width,s.page.height).L(0,s.page.height).transform(yA(gA())).getBoundingBox()}function yA(WA){var xA=WA[0]*WA[3]-WA[1]*WA[2];return[WA[3]/xA,-WA[1]/xA,-WA[2]/xA,WA[0]/xA,(WA[2]*WA[5]-WA[3]*WA[4])/xA,(WA[1]*WA[4]-WA[0]*WA[5])/xA]}function Z(WA){var xA=bA(WA[0]),$A=bA(WA[1]),UA=bA(WA[2]),RA=bA(WA[3]),LA=bA(WA[4]),GA=bA(WA[5]);if(FA(xA*RA-$A*UA,0))return[xA,$A,UA,RA,LA,GA]}function CA(WA){var xA=WA[2]||0,$A=WA[1]||0,UA=WA[0]||0;if(lA(xA,0)&&lA($A,0))return[];if(lA(xA,0))return[-UA/$A];var RA=$A*$A-4*xA*UA;return FA(RA,0)&&RA>0?[(-$A+Math.sqrt(RA))/(2*xA),(-$A-Math.sqrt(RA))/(2*xA)]:lA(RA,0)?[-$A/(2*xA)]:[]}function nA(WA,xA){return(xA[0]||0)+(xA[1]||0)*WA+(xA[2]||0)*WA*WA+(xA[3]||0)*WA*WA*WA}function lA(WA,xA){return Math.abs(WA-xA)<1e-10}function FA(WA,xA){return Math.abs(WA-xA)>=1e-10}function bA(WA){return WA>-1e21&&WA<1e21?Math.round(1e6*WA)/1e6:0}function q(WA){for(var UA,xA=new Mt((WA||"").trim()),$A=[1,0,0,1,0,0];UA=xA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var RA=UA[1],LA=[],GA=new Mt(UA[2].trim()),XA=void 0;XA=GA.matchNumber();)LA.push(Number(XA)),GA.matchSeparator();if("matrix"===RA&&6===LA.length)$A=dA($A,[LA[0],LA[1],LA[2],LA[3],LA[4],LA[5]]);else if("translate"===RA&&2===LA.length)$A=dA($A,[1,0,0,1,LA[0],LA[1]]);else if("translate"===RA&&1===LA.length)$A=dA($A,[1,0,0,1,LA[0],0]);else if("scale"===RA&&2===LA.length)$A=dA($A,[LA[0],0,0,LA[1],0,0]);else if("scale"===RA&&1===LA.length)$A=dA($A,[LA[0],0,0,LA[0],0,0]);else if("rotate"===RA&&3===LA.length){var PA=LA[0]*Math.PI/180;$A=dA($A,[1,0,0,1,LA[1],LA[2]],[Math.cos(PA),Math.sin(PA),-Math.sin(PA),Math.cos(PA),0,0],[1,0,0,1,-LA[1],-LA[2]])}else if("rotate"===RA&&1===LA.length){var at=LA[0]*Math.PI/180;$A=dA($A,[Math.cos(at),Math.sin(at),-Math.sin(at),Math.cos(at),0,0])}else if("skewX"===RA&&1===LA.length){var jA=LA[0]*Math.PI/180;$A=dA($A,[1,0,Math.tan(jA),1,0,0])}else{if("skewY"!==RA||1!==LA.length)return;var Qt=LA[0]*Math.PI/180;$A=dA($A,[1,Math.tan(Qt),0,1,0,0])}xA.matchSeparator()}if(!xA.matchAll())return $A}function z(WA,xA,$A,UA,RA,LA){var GA=(WA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],XA=GA[1]||GA[4]||"meet",jA=xA/UA,Qt=$A/RA,Tt={Min:0,Mid:.5,Max:1}[GA[2]||"Mid"]-(LA||0),Nt={Min:0,Mid:.5,Max:1}[GA[3]||"Mid"]-(LA||0);return"slice"===XA?Qt=jA=Math.max(jA,Qt):"meet"===XA&&(Qt=jA=Math.min(jA,Qt)),[jA,0,0,Qt,Tt*(xA-UA*jA),Nt*($A-RA*Qt)]}function $(WA){var xA=Object.create(null);WA=(WA||"").trim().split(/;/);for(var $A=0;$Afe&&(Gt=fe,fe=ge,ge=Gt),Zt>Be&&(Gt=Be,Be=Zt,Zt=Gt);for(var De=CA(Tt),Ge=0;Ge=0&&De[Ge]<=1){var Se=nA(De[Ge],jA);Sefe&&(fe=Se)}for(var xe=CA(Nt),Ne=0;Ne=0&&xe[Ne]<=1){var $e=nA(xe[Ne],Qt);$eBe&&(Be=$e)}return[ge,Zt,fe,Be]},this.getPointAtLength=function(Gt){if(lA(Gt,0))return this.startPoint;if(lA(Gt,this.totalLength))return this.endPoint;if(!(Gt<0||Gt>this.totalLength))for(var ge=1;ge<=at;ge++){var Zt=kt[ge-1],fe=kt[ge];if(Zt<=Gt&&Gt<=fe){var Be=(ge-(fe-Gt)/(fe-Zt))/at,De=nA(Be,jA),Ge=nA(Be,Qt),Se=nA(Be,Tt),xe=nA(Be,Nt);return[De,Ge,Math.atan2(xe,Se)]}}}},OA=function(xA,$A,UA,RA){this.totalLength=Math.sqrt((UA-xA)*(UA-xA)+(RA-$A)*(RA-$A)),this.startPoint=[xA,$A,Math.atan2(RA-$A,UA-xA)],this.endPoint=[UA,RA,Math.atan2(RA-$A,UA-xA)],this.getBoundingBox=function(){return[Math.min(this.startPoint[0],this.endPoint[0]),Math.min(this.startPoint[1],this.endPoint[1]),Math.max(this.startPoint[0],this.endPoint[0]),Math.max(this.startPoint[1],this.endPoint[1])]},this.getPointAtLength=function(LA){if(LA>=0&&LA<=this.totalLength){var GA=LA/this.totalLength||0;return[this.startPoint[0]+GA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+GA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},et=function WA(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var LA,GA,XA,xA=0,$A=0,UA=0,RA=0;this.move=function(PA,at){return xA=UA=PA,$A=RA=at,null},this.line=function(PA,at){var jA=new OA(UA,RA,PA,at);return UA=PA,RA=at,jA},this.curve=function(PA,at,jA,Qt,Tt,Nt){var kt=new dt(UA,RA,PA,at,jA,Qt,Tt,Nt);return UA=Tt,RA=Nt,kt},this.close=function(){var PA=new OA(UA,RA,xA,$A);return UA=xA,RA=$A,PA},this.addCommand=function(PA){this.pathCommands.push(PA);var at=this[PA[0]].apply(this,PA.slice(3));at&&(at.hasStart=PA[1],at.hasEnd=PA[2],this.startPoint=this.startPoint||at.startPoint,this.endPoint=at.endPoint,this.pathSegments.push(at),this.totalLength+=at.totalLength)},this.M=function(PA,at){return this.addCommand(["move",!0,!0,PA,at]),LA="M",this},this.m=function(PA,at){return this.M(UA+PA,RA+at)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),LA="Z",this},this.L=function(PA,at){return this.addCommand(["line",!0,!0,PA,at]),LA="L",this},this.l=function(PA,at){return this.L(UA+PA,RA+at)},this.H=function(PA){return this.L(PA,RA)},this.h=function(PA){return this.L(UA+PA,RA)},this.V=function(PA){return this.L(UA,PA)},this.v=function(PA){return this.L(UA,RA+PA)},this.C=function(PA,at,jA,Qt,Tt,Nt){return this.addCommand(["curve",!0,!0,PA,at,jA,Qt,Tt,Nt]),LA="C",GA=jA,XA=Qt,this},this.c=function(PA,at,jA,Qt,Tt,Nt){return this.C(UA+PA,RA+at,UA+jA,RA+Qt,UA+Tt,RA+Nt)},this.S=function(PA,at,jA,Qt){return this.C(UA+("C"===LA?UA-GA:0),RA+("C"===LA?RA-XA:0),PA,at,jA,Qt)},this.s=function(PA,at,jA,Qt){return this.C(UA+("C"===LA?UA-GA:0),RA+("C"===LA?RA-XA:0),UA+PA,RA+at,UA+jA,RA+Qt)},this.Q=function(PA,at,jA,Qt){return this.addCommand(["curve",!0,!0,UA+.6666666666666666*(PA-UA),RA+2/3*(at-RA),jA+2/3*(PA-jA),Qt+2/3*(at-Qt),jA,Qt]),LA="Q",GA=PA,XA=at,this},this.q=function(PA,at,jA,Qt){return this.Q(UA+PA,RA+at,UA+jA,RA+Qt)},this.T=function(PA,at){return this.Q(UA+("Q"===LA?UA-GA:0),RA+("Q"===LA?RA-XA:0),PA,at)},this.t=function(PA,at){return this.Q(UA+("Q"===LA?UA-GA:0),RA+("Q"===LA?RA-XA:0),UA+PA,RA+at)},this.A=function(PA,at,jA,Qt,Tt,Nt,kt){if(lA(PA,0)||lA(at,0))this.addCommand(["line",!0,!0,Nt,kt]);else{jA*=Math.PI/180,PA=Math.abs(PA),at=Math.abs(at),Qt=1*!!Qt,Tt=1*!!Tt;var Kt=Math.cos(jA)*(UA-Nt)/2+Math.sin(jA)*(RA-kt)/2,Ae=Math.cos(jA)*(RA-kt)/2-Math.sin(jA)*(UA-Nt)/2,ft=Kt*Kt/(PA*PA)+Ae*Ae/(at*at);ft>1&&(PA*=Math.sqrt(ft),at*=Math.sqrt(ft));var St=Math.sqrt(Math.max(0,PA*PA*at*at-PA*PA*Ae*Ae-at*at*Kt*Kt)/(PA*PA*Ae*Ae+at*at*Kt*Kt)),jt=(Qt===Tt?-1:1)*St*PA*Ae/at,Gt=(Qt===Tt?1:-1)*St*at*Kt/PA,ge=Math.cos(jA)*jt-Math.sin(jA)*Gt+(UA+Nt)/2,Zt=Math.sin(jA)*jt+Math.cos(jA)*Gt+(RA+kt)/2,fe=Math.atan2((Ae-Gt)/at,(Kt-jt)/PA),Be=Math.atan2((-Ae-Gt)/at,(-Kt-jt)/PA);0===Tt&&Be-fe>0?Be-=2*Math.PI:1===Tt&&Be-fe<0&&(Be+=2*Math.PI);for(var De=Math.ceil(Math.abs(Be-fe)/(Math.PI/Pn)),Ge=0;GePA[2]&&(PA[2]=Qt[2]),Qt[1]PA[3]&&(PA[3]=Qt[3]);return PA[0]===1/0&&(PA[0]=0),PA[1]===1/0&&(PA[1]=0),PA[2]===-1/0&&(PA[2]=0),PA[3]===-1/0&&(PA[3]=0),PA},this.getPointAtLength=function(PA){if(PA>=0&&PA<=this.totalLength){for(var at,jA=0;jARA.selector.specificity||(xA[LA]=RA.css[LA],$A[LA]=RA.selector.specificity)}return xA}(xA),this.allowedChildren=[],this.attr=function(LA){if("function"==typeof xA.getAttribute)return xA.getAttribute(LA)},this.resolveUrl=function(LA){var GA=(LA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],XA=GA[1]||GA[3]||GA[5]||GA[7],PA=GA[2]||GA[4]||GA[6]||GA[8];if(PA){if(!XA){var at=l.getElementById(PA);if(at)return-1===this.stack.indexOf(at)?at:void ne('SVGtoPDF: loop of circular references for id "'+PA+'"')}if(qe){var jA=Ot[XA];if(!jA){(function HA(WA){return"object"==typeof WA&&null!==WA&&"number"==typeof WA.length})(jA=qe(XA))||(jA=[jA]);for(var Qt=0;Qt=0&&XA[3]>=0?XA:GA},this.getPercent=function(LA,GA){var XA=this.attr(LA),PA=new Mt((XA||"").trim()),Qt=PA.matchNumber();return!Qt||(PA.match("%")&&(Qt*=.01),PA.matchAll())?GA:Math.max(0,Math.min(1,Qt))},this.chooseValue=function(LA){for(var GA=0;GA=0&&(PA=jA);break;case"stroke-miterlimit":null!=(jA=parseFloat(XA))&&jA>=1&&(PA=jA);break;case"word-spacing":case"letter-spacing":PA=this.computeLength(XA,this.getViewport());break;case"stroke-dashoffset":if(null!=(PA=this.computeLength(XA,this.getViewport()))&&PA<0)for(var Ae=this.get("stroke-dasharray"),ft=0;ft0?GA:this.ref?this.ref.getChildren():[]},this.getPaint=function(GA,XA,PA,at){var jA="userSpaceOnUse"!==this.attr("patternUnits"),Qt="objectBoundingBox"===this.attr("patternContentUnits"),Tt=this.getLength("x",jA?1:this.getParentVWidth(),0),Nt=this.getLength("y",jA?1:this.getParentVHeight(),0),kt=this.getLength("width",jA?1:this.getParentVWidth(),0),Kt=this.getLength("height",jA?1:this.getParentVHeight(),0);Qt&&!jA?(Tt=(Tt-GA[0])/(GA[2]-GA[0])||0,Nt=(Nt-GA[1])/(GA[3]-GA[1])||0,kt=kt/(GA[2]-GA[0])||0,Kt=Kt/(GA[3]-GA[1])||0):!Qt&&jA&&(Tt=GA[0]+Tt*(GA[2]-GA[0]),Nt=GA[1]+Nt*(GA[3]-GA[1]),kt*=GA[2]-GA[0],Kt*=GA[3]-GA[1]);var Ae=this.getViewbox("viewBox",[0,0,kt,Kt]),St=dA(z((this.attr("preserveAspectRatio")||"").trim(),kt,Kt,Ae[2],Ae[3],0),[1,0,0,1,-Ae[0],-Ae[1]]),jt=q(this.attr("patternTransform"));if(Qt&&(jt=dA([GA[2]-GA[0],0,0,GA[3]-GA[1],GA[0],GA[1]],jt)),(jt=Z(jt=dA(jt,[1,0,0,1,Tt,Nt])))&&(St=Z(St))&&(kt=bA(kt))&&(Kt=bA(Kt))){var Gt=C([0,0,kt,Kt]);return s.transform.apply(s,St),this.drawChildren(PA,at),Q(Gt),[v(Gt,kt,Kt,jt),XA]}return UA?[UA[0],UA[1]*XA]:void 0},this.getVWidth=function(){var GA="userSpaceOnUse"!==this.attr("patternUnits"),XA=this.getLength("width",GA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,XA,0])[2]},this.getVHeight=function(){var GA="userSpaceOnUse"!==this.attr("patternUnits"),XA=this.getLength("height",GA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,XA])[3]}},NA=function WA(xA,$A,UA){st.call(this,xA,$A),this.allowedChildren=["stop"],this.ref=function(){var GA=this.getUrl("href")||this.getUrl("xlink:href");if(GA&&GA.nodeName===xA.nodeName)return new WA(GA,$A,UA)}.call(this);var RA=this.attr;this.attr=function(GA){var XA=RA.call(this,GA);return null!=XA||"href"===GA||"xlink:href"===GA?XA:this.ref?this.ref.attr(GA):null};var LA=this.getChildren;this.getChildren=function(){var GA=LA.call(this);return GA.length>0?GA:this.ref?this.ref.getChildren():[]},this.getPaint=function(GA,XA,PA,at){var jA=this.getChildren();if(0!==jA.length){if(1===jA.length){var Qt=jA[0],Tt=Qt.get("stop-color");return"none"===Tt?void 0:pA(Tt,Qt.get("stop-opacity")*XA,at)}var Ae,ft,St,jt,Gt,ge,Nt="userSpaceOnUse"!==this.attr("gradientUnits"),kt=q(this.attr("gradientTransform")),Kt=this.attr("spreadMethod"),Zt=0,fe=0,Be=1;if(Nt&&(kt=dA([GA[2]-GA[0],0,0,GA[3]-GA[1],GA[0],GA[1]],kt)),kt=Z(kt)){if("linearGradient"===this.name)ft=this.getLength("x1",Nt?1:this.getVWidth(),0),St=this.getLength("x2",Nt?1:this.getVWidth(),Nt?1:this.getVWidth()),jt=this.getLength("y1",Nt?1:this.getVHeight(),0),Gt=this.getLength("y2",Nt?1:this.getVHeight(),0);else{St=this.getLength("cx",Nt?1:this.getVWidth(),Nt?.5:.5*this.getVWidth()),Gt=this.getLength("cy",Nt?1:this.getVHeight(),Nt?.5:.5*this.getVHeight()),ge=this.getLength("r",Nt?1:this.getViewport(),Nt?.5:.5*this.getViewport()),ft=this.getLength("fx",Nt?1:this.getVWidth(),St),jt=this.getLength("fy",Nt?1:this.getVHeight(),Gt),ge<0&&ne("SvgElemGradient: negative r value");var De=Math.sqrt(Math.pow(St-ft,2)+Math.pow(Gt-jt,2)),Ge=1;De>ge&&(ft=St+(ft-St)*(Ge=ge/De),jt=Gt+(jt-Gt)*Ge),ge=Math.max(ge,De*Ge*1.000001)}if("reflect"===Kt||"repeat"===Kt){var Se=yA(kt),xe=DA([GA[0],GA[1]],Se),Ne=DA([GA[2],GA[1]],Se),$e=DA([GA[2],GA[3]],Se),yn=DA([GA[0],GA[3]],Se);"linearGradient"===this.name?(Zt=Math.max((xe[0]-St)*(St-ft)+(xe[1]-Gt)*(Gt-jt),(Ne[0]-St)*(St-ft)+(Ne[1]-Gt)*(Gt-jt),($e[0]-St)*(St-ft)+($e[1]-Gt)*(Gt-jt),(yn[0]-St)*(St-ft)+(yn[1]-Gt)*(Gt-jt))/(Math.pow(St-ft,2)+Math.pow(Gt-jt,2)),fe=Math.max((xe[0]-ft)*(ft-St)+(xe[1]-jt)*(jt-Gt),(Ne[0]-ft)*(ft-St)+(Ne[1]-jt)*(jt-Gt),($e[0]-ft)*(ft-St)+($e[1]-jt)*(jt-Gt),(yn[0]-ft)*(ft-St)+(yn[1]-jt)*(jt-Gt))/(Math.pow(St-ft,2)+Math.pow(Gt-jt,2))):Zt=Math.sqrt(Math.max(Math.pow(xe[0]-St,2)+Math.pow(xe[1]-Gt,2),Math.pow(Ne[0]-St,2)+Math.pow(Ne[1]-Gt,2),Math.pow($e[0]-St,2)+Math.pow($e[1]-Gt,2),Math.pow(yn[0]-St,2)+Math.pow(yn[1]-Gt,2)))/ge-1,Zt=Math.ceil(Zt+.5),Be=(fe=Math.ceil(fe+.5))+1+Zt}Ae="linearGradient"===this.name?s.linearGradient(ft-fe*(St-ft),jt-fe*(Gt-jt),St+Zt*(St-ft),Gt+Zt*(Gt-jt)):s.radialGradient(ft,jt,0,St,Gt,ge+Zt*ge);for(var rn=0;rn0&&Ae.stop((rn+0)/Be,gn[0],gn[1]),Ae.stop((rn+pn)/(Zt+fe+1),gn[0],gn[1]),an===jA.length-1&&pn<1&&Ae.stop((rn+1)/Be,gn[0],gn[1])}return Ae.setTransform.apply(Ae,kt),[Ae,1]}return UA?[UA[0],UA[1]*XA]:void 0}}},eA=function(xA,$A){ot.call(this,xA,$A),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(UA,RA){if("hidden"!==this.get("visibility")&&this.shape){if(s.save(),this.transform(),this.clip(),UA)this.shape.insertInDocument(),O(r.white),s.fill(this.get("clip-rule"));else{var GA;this.mask()&&(GA=C(QA()));var XA=this.shape.getSubPaths(),PA=this.getFill(UA,RA),at=this.getStroke(UA,RA),jA=this.get("stroke-width"),Qt=this.get("stroke-linecap");if(PA||at){if(PA&&O(PA),at){for(var Tt=0;Tt0&&XA[Tt].startPoint&&XA[Tt].startPoint.length>1){var Nt=XA[Tt].startPoint[0],kt=XA[Tt].startPoint[1];O(at),"square"===Qt?s.rect(Nt-.5*jA,kt-.5*jA,jA,jA):"round"===Qt&&s.circle(Nt,kt,.5*jA),s.fill()}var Kt=this.get("stroke-dasharray"),Ae=this.get("stroke-dashoffset");if(FA(this.dashScale,1)){for(var ft=0;ft0&&XA[St].insertInDocument();PA&&at?s.fillAndStroke(this.get("fill-rule")):PA?s.fill(this.get("fill-rule")):at&&s.stroke()}var jt=this.get("marker-start"),Gt=this.get("marker-mid"),ge=this.get("marker-end");if("none"!==jt||"none"!==Gt||"none"!==ge){var Zt=this.shape.getMarkers();if("none"!==jt&&new qA(jt,null).drawMarker(!1,RA,Zt[0],jA),"none"!==Gt)for(var Be=1;Be0&&GA>0?XA&&PA?(XA=Math.min(XA,.5*LA),PA=Math.min(PA,.5*GA),this.shape=(new et).M(UA+XA,RA).L(UA+LA-XA,RA).A(XA,PA,0,0,1,UA+LA,RA+PA).L(UA+LA,RA+GA-PA).A(XA,PA,0,0,1,UA+LA-XA,RA+GA).L(UA+XA,RA+GA).A(XA,PA,0,0,1,UA,RA+GA-PA).L(UA,RA+PA).A(XA,PA,0,0,1,UA+XA,RA).Z()):this.shape=(new et).M(UA,RA).L(UA+LA,RA).L(UA+LA,RA+GA).L(UA,RA+GA).Z():this.shape=new et},yt=function(xA,$A){eA.call(this,xA,$A);var UA=this.getLength("cx",this.getVWidth(),0),RA=this.getLength("cy",this.getVHeight(),0),LA=this.getLength("r",this.getViewport(),0);this.shape=LA>0?(new et).M(UA+LA,RA).A(LA,LA,0,0,1,UA-LA,RA).A(LA,LA,0,0,1,UA+LA,RA).Z():new et},j=function(xA,$A){eA.call(this,xA,$A);var UA=this.getLength("cx",this.getVWidth(),0),RA=this.getLength("cy",this.getVHeight(),0),LA=this.getLength("rx",this.getVWidth(),0),GA=this.getLength("ry",this.getVHeight(),0);this.shape=LA>0&&GA>0?(new et).M(UA+LA,RA).A(LA,GA,0,0,1,UA-LA,RA).A(LA,GA,0,0,1,UA+LA,RA).Z():new et},VA=function(xA,$A){eA.call(this,xA,$A);var UA=this.getLength("x1",this.getVWidth(),0),RA=this.getLength("y1",this.getVHeight(),0),LA=this.getLength("x2",this.getVWidth(),0),GA=this.getLength("y2",this.getVHeight(),0);this.shape=(new et).M(UA,RA).L(LA,GA)},_A=function(xA,$A){eA.call(this,xA,$A);var UA=this.getNumberList("points");this.shape=new et;for(var RA=0;RA0?UA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},qA=function(xA,$A){Et.call(this,xA,$A);var UA=this.getLength("markerWidth",this.getParentVWidth(),3),RA=this.getLength("markerHeight",this.getParentVHeight(),3),LA=this.getViewbox("viewBox",[0,0,UA,RA]);this.getVWidth=function(){return LA[2]},this.getVHeight=function(){return LA[3]},this.drawMarker=function(GA,XA,PA,at){s.save();var jA=this.attr("orient"),Qt=this.attr("markerUnits"),Tt="auto"===jA?PA[2]:(parseFloat(jA)||0)*Math.PI/180,Nt="userSpaceOnUse"===Qt?1:at;s.transform(Math.cos(Tt)*Nt,Math.sin(Tt)*Nt,-Math.sin(Tt)*Nt,Math.cos(Tt)*Nt,PA[0],PA[1]);var ft,kt=this.getLength("refX",this.getVWidth(),0),Kt=this.getLength("refY",this.getVHeight(),0),Ae=z(this.attr("preserveAspectRatio"),UA,RA,LA[2],LA[3],.5);"hidden"===this.get("overflow")&&s.rect(Ae[0]*(LA[0]+LA[2]/2-kt)-UA/2,Ae[3]*(LA[1]+LA[3]/2-Kt)-RA/2,UA,RA).clip(),s.transform.apply(s,Ae),s.translate(-kt,-Kt),this.get("opacity")<1&&!GA&&(ft=C(QA())),this.drawChildren(GA,XA),ft&&(Q(ft),s.fillOpacity(this.get("opacity")),M(ft)),s.restore()}},Ut=function(xA,$A){Et.call(this,xA,$A),this.useMask=function(UA){var RA=C(QA());s.save(),"objectBoundingBox"===this.attr("clipPathUnits")&&s.transform(UA[2]-UA[0],0,0,UA[3]-UA[1],UA[0],UA[1]),this.clip(),this.drawChildren(!0,!1),s.restore(),Q(RA),Y(RA,!0)}},It=function(xA,$A){Et.call(this,xA,$A),this.useMask=function(UA){var LA,GA,XA,PA,RA=C(QA());s.save(),"userSpaceOnUse"===this.attr("maskUnits")?(LA=this.getLength("x",this.getVWidth(),-.1*(UA[2]-UA[0])+UA[0]),GA=this.getLength("y",this.getVHeight(),-.1*(UA[3]-UA[1])+UA[1]),XA=this.getLength("width",this.getVWidth(),1.2*(UA[2]-UA[0])),PA=this.getLength("height",this.getVHeight(),1.2*(UA[3]-UA[1]))):(LA=this.getLength("x",this.getVWidth(),-.1)*(UA[2]-UA[0])+UA[0],GA=this.getLength("y",this.getVHeight(),-.1)*(UA[3]-UA[1])+UA[1],XA=this.getLength("width",this.getVWidth(),1.2)*(UA[2]-UA[0]),PA=this.getLength("height",this.getVHeight(),1.2)*(UA[3]-UA[1])),s.rect(LA,GA,XA,PA).clip(),"objectBoundingBox"===this.attr("maskContentUnits")&&s.transform(UA[2]-UA[0],0,0,UA[3]-UA[1],UA[0],UA[1]),this.clip(),this.drawChildren(!1,!0),s.restore(),Q(RA),Y(RA,!0)}},bt=function(xA,$A){ot.call(this,xA,$A),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var UA=new et,RA=0;RA Tj")}s.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(zA(this._font.font,this._font.size)+tt(this._font.font,this._font.size)),UA,RA)},this.decorate=function(UA,RA,LA,GA){var XA=this.getFill(LA,GA),PA=this.getStroke(LA,GA);XA&&O(XA),PA&&(J(PA),s.lineWidth(this.get("stroke-width")).miterLimit(this.get("stroke-miterlimit")).lineJoin(this.get("stroke-linejoin")).lineCap(this.get("stroke-linecap")).dash(this.get("stroke-dasharray"),{phase:this.get("stroke-dashoffset")}));for(var at=0,jA=this._pos;at0?GA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((LA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===LA.nodeName){var XA=new kA(LA,this);this.pathObject=XA.shape.clone().transform(XA.get("transform")),this.pathLength=this.chooseValue(XA.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},$t=function(xA,$A){bt.call(this,xA,$A),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(UA){var PA,at,RA="",LA=xA.textContent,GA=[],XA=[],jA=0,Qt=0;function Tt(){if(XA.length)for(var ft=XA[XA.length-1],Gt={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[PA+at]*(ft.x+ft.width-XA[0].x)||0,ge=0;gejt||fe<0)ft._pos[Zt].hidden=!0;else{var Be=St.getPointAtLength(fe*Gt);FA(Gt,1)&&(ft._pos[Zt].scale*=Gt,ft._pos[Zt].width*=Gt),ft._pos[Zt].x=Be[0]-.5*ft._pos[Zt].width*Math.cos(Be[2])-ft._pos[Zt].y*Math.sin(Be[2]),ft._pos[Zt].y=Be[1]-.5*ft._pos[Zt].width*Math.sin(Be[2])+ft._pos[Zt].y*Math.cos(Be[2]),ft._pos[Zt].rotate=Be[2]+ft._pos[Zt].rotate,ft._pos[Zt].continuous=!1}}else for(var De=0;De0&&Be<1/0)for(var De=0;De=2)for(var Ge=(St-(fe-Zt))/(ft.length-1),Se=0;Se0?M-4:M;for(y=0;y>16&255,v[p++]=C>>8&255,v[p++]=255&C;return 2===Y&&(C=u[c.charCodeAt(y)]<<2|u[c.charCodeAt(y+1)]>>4,v[p++]=255&C),1===Y&&(C=u[c.charCodeAt(y)]<<10|u[c.charCodeAt(y+1)]<<4|u[c.charCodeAt(y+2)]>>2,v[p++]=C>>8&255,v[p++]=255&C),v},A.fromByteArray=function B(c){for(var C,Q=c.length,M=Q%3,Y=[],v=16383,p=0,I=Q-M;pI?I:p+v));return 1===M?Y.push(n[(C=c[Q-1])>>2]+n[C<<4&63]+"=="):2===M&&Y.push(n[(C=(c[Q-2]<<8)+c[Q-1])>>10]+n[C>>4&63]+n[C<<2&63]+"="),Y.join("")};for(var n=[],u=[],o="undefined"!=typeof Uint8Array?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",l=0,g=s.length;l0)throw new Error("Invalid string. Length must be a multiple of 4");var Q=c.indexOf("=");return-1===Q&&(Q=C),[Q,Q===C?0:4-Q%4]}function w(c){return n[c>>18&63]+n[c>>12&63]+n[c>>6&63]+n[63&c]}function e(c,C,Q){for(var Y=[],v=C;v0},s.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var l=this.buf_ptr_,g=this.input_.read(this.buf_,l,A);if(g<0)throw new Error("Unexpected end of input");if(g=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},s.prototype.readBits=function(l){32-this.bit_pos_>>this.bit_pos_&o[l];return this.bit_pos_+=l,g},T.exports=s},7080:function(T,A){A.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),A.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},6450:function(T,A,n){var o=n(6154).g,s=n(6154).j,l=n(4181),g=n(5139),f=n(966).h,E=n(966).g,h=n(7080),r=n(8435),w=n(2973),I=1080,U=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),b=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),O=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),J=new Uint16Array([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]);function sA($){var K;return 0===$.readBits(1)?16:(K=$.readBits(3))>0?17+K:(K=$.readBits(3))>0?8+K:17}function uA($){if($.readBits(1)){var K=$.readBits(3);return 0===K?1:$.readBits(K)+(1<1&&0===hA)throw new Error("Invalid size byte");K.meta_block_length|=hA<<8*oA}}else for(oA=0;oA4&&0===zA)throw new Error("Invalid size nibble");K.meta_block_length|=zA<<4*oA}return++K.meta_block_length,!K.input_end&&!K.is_metadata&&(K.is_uncompressed=$.readBits(1)),K}function pA($,K,fA){var oA;return fA.fillBitWindow(),(oA=$[K+=fA.val_>>>fA.bit_pos_&255].bits-8)>0&&(fA.bit_pos_+=8,K+=$[K].value,K+=fA.val_>>>fA.bit_pos_&(1<>=1,++YA;for(tt=0;tt0;++tt){var Et,st=U[tt],ot=0;IA.fillBitWindow(),IA.bit_pos_+=et[ot+=IA.val_>>>IA.bit_pos_&15].bits,Mt[st]=Et=et[ot].value,0!==Et&&(dt-=32>>Et,++OA)}if(1!==OA&&0!==dt)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function dA($,K,fA,IA){for(var oA=0,hA=8,zA=0,tt=0,lt=32768,YA=[],it=0;it<32;it++)YA.push(new f(0,0));for(E(YA,0,5,$,18);oA0;){var Mt,mt=0;if(IA.readMoreInput(),IA.fillBitWindow(),IA.bit_pos_+=YA[mt+=IA.val_>>>IA.bit_pos_&31].bits,(Mt=255&YA[mt].value)<16)zA=0,fA[oA++]=Mt,0!==Mt&&(hA=Mt,lt-=32768>>Mt);else{var OA,et,dt=Mt-14,st=0;if(16===Mt&&(st=hA),tt!==st&&(zA=0,tt=st),OA=zA,zA>0&&(zA-=2,zA<<=dt),oA+(et=(zA+=IA.readBits(dt)+3)-OA)>K)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var ot=0;ot>>5]),this.htrees=new Uint32Array(K)}function nA($,K){var hA,zA,fA={num_htrees:null,context_map:null},oA=0;K.readMoreInput();var tt=fA.num_htrees=uA(K)+1,lt=fA.context_map=new Uint8Array($);if(tt<=1)return fA;for(K.readBits(1)&&(oA=K.readBits(4)+1),hA=[],zA=0;zA=$)throw new Error("[DecodeContextMap] i >= context_map_size");lt[zA]=0,++zA}else lt[zA]=YA-oA,++zA}return K.readBits(1)&&function Z($,K){var IA,fA=new Uint8Array(256);for(IA=0;IA<256;++IA)fA[IA]=IA;for(IA=0;IA=$&&(it-=$),IA[fA]=it,oA[tt+(1&hA[lt])]=it,++hA[lt]}function FA($,K,fA,IA,oA,hA){var YA,zA=oA+1,tt=fA&oA,lt=hA.pos_&l.IBUF_MASK;if(K<8||hA.bit_pos_+(K<<3)0;)hA.readMoreInput(),IA[tt++]=hA.readBits(8),tt===zA&&($.write(IA,zA),tt=0);else{if(hA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;hA.bit_pos_<32;)IA[tt]=hA.val_>>>hA.bit_pos_,hA.bit_pos_+=8,++tt,--K;if(lt+(YA=hA.bit_end_pos_-hA.bit_pos_>>3)>l.IBUF_MASK){for(var it=l.IBUF_MASK+1-lt,mt=0;mt=zA)for($.write(IA,zA),tt-=zA,mt=0;mt=zA;){if(hA.input_.read(IA,tt,YA=zA-tt)K.buffer.length){var ne=new Uint8Array(IA+L);ne.set(K.buffer),K.buffer=ne}if(oA=Dn.input_end,H=Dn.is_uncompressed,Dn.is_metadata)for(bA(ut);L>0;--L)ut.readMoreInput(),ut.readBits(8);else if(0!==L){if(H){ut.bit_pos_=ut.bit_pos_+7&-8,FA(K,L,IA,it,YA,ut),IA+=L;continue}for(fA=0;fA<3;++fA)EA[fA]=uA(ut)+1,EA[fA]>=2&&(DA(EA[fA]+2,ot,fA*I,ut),DA(26,Et,fA*I,ut),x[fA]=gA(Et,fA*I,ut),eA[fA]=1);for(ut.readMoreInput(),j=(1<<(rt=ut.readBits(2)))-1,VA=(yt=16+(ut.readBits(4)<0;){var en,qe,Pn,zn,Ot,zt,Xt,se,dn,xn,jn,fi;for(ut.readMoreInput(),0===x[1]&&(lA(EA[1],ot,1,wA,NA,eA,ut),x[1]=gA(Et,I,ut),vn=st[1].htrees[wA[1]]),--x[1],(qe=(en=pA(st[1].codes,vn,ut))>>6)>=2?(qe-=2,Xt=-1):Xt=0,zn=r.kCopyRangeLut[qe]+(7&en),Ot=r.kInsertLengthPrefixCode[Pn=r.kInsertRangeLut[qe]+(en>>3&7)].offset+ut.readBits(r.kInsertLengthPrefixCode[Pn].nbits),zt=r.kCopyLengthPrefixCode[zn].offset+ut.readBits(r.kCopyLengthPrefixCode[zn].nbits),OA=it[IA-1&YA],et=it[IA-2&YA],dn=0;dn4?3:zt-2))]],ut))>=yt&&(fi=(Xt-=yt)&j,Xt=yt+((Fn=(2+(1&(Xt>>=rt))<<(jn=1+(Xt>>1)))-4)+ut.readBits(jn)<(tt=IA=g.minDictionaryWordLength&&zt<=g.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+IA+" distance: "+se+" len: "+zt+" bytes left: "+L);var Fn=g.offsetsByLength[zt],WA=se-tt-1,xA=g.sizeBitsByLength[zt],RA=WA>>xA;if(Fn+=(WA&(1<=mt){K.write(it,lt);for(var GA=0;GA0&&(Mt[3&dt]=se,++dt),zt>L)throw new Error("Invalid backward reference. pos: "+IA+" distance: "+se+" len: "+zt+" bytes left: "+L);for(dn=0;dn>=1;return(g&E-1)+E}function s(g,f,E,h,r){do{g[f+(h-=E)]=new n(r.bits,r.value)}while(h>0)}function l(g,f,E){for(var h=1<0;--U[B])s(g,f+C,Q,p,new n(255&B,65535&y[c++])),C=o(C,B);for(Y=I-1,M=-1,B=E+1,Q=2;B<=u;++B,Q<<=1)for(;U[B]>0;--U[B])(C&Y)!==M&&(f+=p,I+=p=1<<(v=l(U,B,E)),g[w+(M=C&Y)]=new n(v+E&255,f-w-M&65535)),s(g,f+(C>>E),Q,p,new n(B-E&255,65535&y[c++])),C=o(C,B);return I}},8435:function(T,A){function n(u,o){this.offset=u,this.nbits=o}A.kBlockLengthPrefixCode=[new n(1,2),new n(5,2),new n(9,2),new n(13,2),new n(17,3),new n(25,3),new n(33,3),new n(41,3),new n(49,4),new n(65,4),new n(81,4),new n(97,4),new n(113,5),new n(145,5),new n(177,5),new n(209,5),new n(241,6),new n(305,6),new n(369,7),new n(497,8),new n(753,9),new n(1265,10),new n(2289,11),new n(4337,12),new n(8433,13),new n(16625,24)],A.kInsertLengthPrefixCode=[new n(0,0),new n(1,0),new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,1),new n(8,1),new n(10,2),new n(14,2),new n(18,3),new n(26,3),new n(34,4),new n(50,4),new n(66,5),new n(98,5),new n(130,6),new n(194,7),new n(322,8),new n(578,9),new n(1090,10),new n(2114,12),new n(6210,14),new n(22594,24)],A.kCopyLengthPrefixCode=[new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,0),new n(7,0),new n(8,0),new n(9,0),new n(10,1),new n(12,1),new n(14,2),new n(18,2),new n(22,3),new n(30,3),new n(38,4),new n(54,4),new n(70,5),new n(102,5),new n(134,6),new n(198,7),new n(326,8),new n(582,9),new n(1094,10),new n(2118,24)],A.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],A.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},6154:function(T,A){function n(o){this.buffer=o,this.pos=0}function u(o){this.buffer=o,this.pos=0}n.prototype.read=function(o,s,l){this.pos+l>this.buffer.length&&(l=this.buffer.length-this.pos);for(var g=0;gthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(o.subarray(0,s),this.pos),this.pos+=s,s},A.j=u},2973:function(T,A,n){var u=n(5139),B=10,c=11;function S(J,sA,uA){this.prefix=new Uint8Array(J.length),this.transform=sA,this.suffix=new Uint8Array(uA.length);for(var X=0;X'),new S("",0,"\n"),new S("",3,""),new S("",0,"]"),new S("",0," for "),new S("",14,""),new S("",2,""),new S("",0," a "),new S("",0," that "),new S(" ",B,""),new S("",0,". "),new S(".",0,""),new S(" ",0,", "),new S("",15,""),new S("",0," with "),new S("",0,"'"),new S("",0," from "),new S("",0," by "),new S("",16,""),new S("",17,""),new S(" the ",0,""),new S("",4,""),new S("",0,". The "),new S("",c,""),new S("",0," on "),new S("",0," as "),new S("",0," is "),new S("",7,""),new S("",1,"ing "),new S("",0,"\n\t"),new S("",0,":"),new S(" ",0,". "),new S("",0,"ed "),new S("",20,""),new S("",18,""),new S("",6,""),new S("",0,"("),new S("",B,", "),new S("",8,""),new S("",0," at "),new S("",0,"ly "),new S(" the ",0," of "),new S("",5,""),new S("",9,""),new S(" ",B,", "),new S("",B,'"'),new S(".",0,"("),new S("",c," "),new S("",B,'">'),new S("",0,'="'),new S(" ",0,"."),new S(".com/",0,""),new S(" the ",0," of the "),new S("",B,"'"),new S("",0,". This "),new S("",0,","),new S(".",0," "),new S("",B,"("),new S("",B,"."),new S("",0," not "),new S(" ",0,'="'),new S("",0,"er "),new S(" ",c," "),new S("",0,"al "),new S(" ",c,""),new S("",0,"='"),new S("",c,'"'),new S("",B,". "),new S(" ",0,"("),new S("",0,"ful "),new S(" ",B,". "),new S("",0,"ive "),new S("",0,"less "),new S("",c,"'"),new S("",0,"est "),new S(" ",B,"."),new S("",c,'">'),new S(" ",0,"='"),new S("",B,","),new S("",0,"ize "),new S("",c,"."),new S("\xc2\xa0",0,""),new S(" ",0,","),new S("",B,'="'),new S("",c,'="'),new S("",0,"ous "),new S("",c,", "),new S("",B,"='"),new S(" ",B,","),new S(" ",c,'="'),new S(" ",c,", "),new S("",c,","),new S("",c,"("),new S("",c,". "),new S(" ",c,"."),new S("",c,"='"),new S(" ",c,". "),new S(" ",B,'="'),new S(" ",c,"='"),new S(" ",B,"='")];function O(J,sA){return J[sA]<192?(J[sA]>=97&&J[sA]<=122&&(J[sA]^=32),1):J[sA]<224?(J[sA+1]^=32,2):(J[sA+2]^=5,3)}A.kTransforms=b,A.kNumTransforms=b.length,A.transformDictionaryWord=function(J,sA,uA,X,cA){var Z,pA=b[cA].prefix,dA=b[cA].suffix,DA=b[cA].transform,gA=DA<12?0:DA-11,QA=0,yA=sA;gA>X&&(gA=X);for(var CA=0;CA0;){var nA=O(J,Z);Z+=nA,X-=nA}for(var lA=0;lAA.UNZIP)throw new TypeError("Bad argument");this.dictionary=null,this.err=0,this.flush=0,this.init_done=!1,this.level=0,this.memLevel=0,this.mode=B,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}e.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,s(this.init_done,"close before init"),s(this.mode<=A.UNZIP),this.mode===A.DEFLATE||this.mode===A.GZIP||this.mode===A.DEFLATERAW?g.deflateEnd(this.strm):(this.mode===A.INFLATE||this.mode===A.GUNZIP||this.mode===A.INFLATERAW||this.mode===A.UNZIP)&&f.inflateEnd(this.strm),this.mode=A.NONE,this.dictionary=null)},e.prototype.write=function(B,c,C,Q,M,Y,v){return this._write(!0,B,c,C,Q,M,Y,v)},e.prototype.writeSync=function(B,c,C,Q,M,Y,v){return this._write(!1,B,c,C,Q,M,Y,v)},e.prototype._write=function(B,c,C,Q,M,Y,v,p){if(s.equal(arguments.length,8),s(this.init_done,"write before init"),s(this.mode!==A.NONE,"already finalized"),s.equal(!1,this.write_in_progress,"write already in progress"),s.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,s.equal(!1,void 0===c,"must provide flush value"),this.write_in_progress=!0,c!==A.Z_NO_FLUSH&&c!==A.Z_PARTIAL_FLUSH&&c!==A.Z_SYNC_FLUSH&&c!==A.Z_FULL_FLUSH&&c!==A.Z_FINISH&&c!==A.Z_BLOCK)throw new Error("Invalid flush value");if(null==C&&(C=u.alloc(0),M=0,Q=0),this.strm.avail_in=M,this.strm.input=C,this.strm.next_in=Q,this.strm.avail_out=p,this.strm.output=Y,this.strm.next_out=v,this.flush=c,!B)return this._process(),this._checkError()?this._afterSync():void 0;var I=this;return o.nextTick(function(){I._process(),I._after()}),this},e.prototype._afterSync=function(){var B=this.strm.avail_out,c=this.strm.avail_in;return this.write_in_progress=!1,[c,B]},e.prototype._process=function(){var B=null;switch(this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=g.deflate(this.strm,this.flush);break;case A.UNZIP:switch(this.strm.avail_in>0&&(B=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===B)break;if(31!==this.strm.input[B]){this.mode=A.INFLATE;break}if(this.gzip_id_bytes_read=1,B++,1===this.strm.avail_in)break;case 1:if(null===B)break;139===this.strm.input[B]?(this.gzip_id_bytes_read=2,this.mode=A.GUNZIP):this.mode=A.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:for(this.err=f.inflate(this.strm,this.flush),this.err===A.Z_NEED_DICT&&this.dictionary&&(this.err=f.inflateSetDictionary(this.strm,this.dictionary),this.err===A.Z_OK?this.err=f.inflate(this.strm,this.flush):this.err===A.Z_DATA_ERROR&&(this.err=A.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===A.GUNZIP&&this.err===A.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=f.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},e.prototype._checkError=function(){switch(this.err){case A.Z_OK:case A.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===A.Z_FINISH)return this._error("unexpected end of file"),!1;break;case A.Z_STREAM_END:break;case A.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},e.prototype._after=function(){if(this._checkError()){var B=this.strm.avail_out,c=this.strm.avail_in;this.write_in_progress=!1,this.callback(c,B),this.pending_close&&this.close()}},e.prototype._error=function(B){this.strm.msg&&(B=this.strm.msg),this.onerror(B,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},e.prototype.init=function(B,c,C,Q,M){s(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),s(B>=8&&B<=15,"invalid windowBits"),s(c>=-1&&c<=9,"invalid compression level"),s(C>=1&&C<=9,"invalid memlevel"),s(Q===A.Z_FILTERED||Q===A.Z_HUFFMAN_ONLY||Q===A.Z_RLE||Q===A.Z_FIXED||Q===A.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(c,B,C,Q,M),this._setDictionary()},e.prototype.params=function(){throw new Error("deflateParams Not supported")},e.prototype.reset=function(){this._reset(),this._setDictionary()},e.prototype._init=function(B,c,C,Q,M){switch(this.level=B,this.windowBits=c,this.memLevel=C,this.strategy=Q,this.flush=A.Z_NO_FLUSH,this.err=A.Z_OK,(this.mode===A.GZIP||this.mode===A.GUNZIP)&&(this.windowBits+=16),this.mode===A.UNZIP&&(this.windowBits+=32),(this.mode===A.DEFLATERAW||this.mode===A.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new l,this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=g.deflateInit2(this.strm,this.level,A.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:case A.UNZIP:this.err=f.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==A.Z_OK&&this._error("Init error"),this.dictionary=M,this.write_in_progress=!1,this.init_done=!0},e.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:this.err=g.deflateSetDictionary(this.strm,this.dictionary)}this.err!==A.Z_OK&&this._error("Failed to set dictionary")}},e.prototype._reset=function(){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:case A.GZIP:this.err=g.deflateReset(this.strm);break;case A.INFLATE:case A.INFLATERAW:case A.GUNZIP:this.err=f.inflateReset(this.strm)}this.err!==A.Z_OK&&this._error("Failed to reset stream")},A.Zlib=e},2635:function(T,A,n){"use strict";var u=n(4155),o=n(8823).Buffer,s=n(2830).Transform,l=n(4505),g=n(9539),f=n(9282).ok,E=n(8823).kMaxLength,h="Cannot create final Buffer. It would be larger than 0x"+E.toString(16)+" bytes";l.Z_MIN_WINDOWBITS=8,l.Z_MAX_WINDOWBITS=15,l.Z_DEFAULT_WINDOWBITS=15,l.Z_MIN_CHUNK=64,l.Z_MAX_CHUNK=1/0,l.Z_DEFAULT_CHUNK=16384,l.Z_MIN_MEMLEVEL=1,l.Z_MAX_MEMLEVEL=9,l.Z_DEFAULT_MEMLEVEL=8,l.Z_MIN_LEVEL=-1,l.Z_MAX_LEVEL=9,l.Z_DEFAULT_LEVEL=l.Z_DEFAULT_COMPRESSION;for(var r=Object.keys(l),w=0;w=E?CA=new RangeError(h):Z=o.concat(dA,DA),dA=[],X.close(),pA(CA,Z)}X.on("error",function QA(Z){X.removeListener("end",yA),X.removeListener("readable",gA),pA(Z)}),X.on("end",yA),X.end(cA),gA()}function Y(X,cA){if("string"==typeof cA&&(cA=o.from(cA)),!o.isBuffer(cA))throw new TypeError("Not a string or buffer");return X._processChunk(cA,X._finishFlushFlag)}function v(X){if(!(this instanceof v))return new v(X);J.call(this,X,l.DEFLATE)}function p(X){if(!(this instanceof p))return new p(X);J.call(this,X,l.INFLATE)}function I(X){if(!(this instanceof I))return new I(X);J.call(this,X,l.GZIP)}function y(X){if(!(this instanceof y))return new y(X);J.call(this,X,l.GUNZIP)}function U(X){if(!(this instanceof U))return new U(X);J.call(this,X,l.DEFLATERAW)}function S(X){if(!(this instanceof S))return new S(X);J.call(this,X,l.INFLATERAW)}function b(X){if(!(this instanceof b))return new b(X);J.call(this,X,l.UNZIP)}function O(X){return X===l.Z_NO_FLUSH||X===l.Z_PARTIAL_FLUSH||X===l.Z_SYNC_FLUSH||X===l.Z_FULL_FLUSH||X===l.Z_FINISH||X===l.Z_BLOCK}function J(X,cA){var pA=this;if(this._opts=X=X||{},this._chunkSize=X.chunkSize||A.Z_DEFAULT_CHUNK,s.call(this,X),X.flush&&!O(X.flush))throw new Error("Invalid flush flag: "+X.flush);if(X.finishFlush&&!O(X.finishFlush))throw new Error("Invalid flush flag: "+X.finishFlush);if(this._flushFlag=X.flush||l.Z_NO_FLUSH,this._finishFlushFlag=void 0!==X.finishFlush?X.finishFlush:l.Z_FINISH,X.chunkSize&&(X.chunkSizeA.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+X.chunkSize);if(X.windowBits&&(X.windowBitsA.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+X.windowBits);if(X.level&&(X.levelA.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+X.level);if(X.memLevel&&(X.memLevelA.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+X.memLevel);if(X.strategy&&X.strategy!=A.Z_FILTERED&&X.strategy!=A.Z_HUFFMAN_ONLY&&X.strategy!=A.Z_RLE&&X.strategy!=A.Z_FIXED&&X.strategy!=A.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+X.strategy);if(X.dictionary&&!o.isBuffer(X.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new l.Zlib(cA);var dA=this;this._hadError=!1,this._handle.onerror=function(QA,yA){sA(dA),dA._hadError=!0;var Z=new Error(QA);Z.errno=yA,Z.code=A.codes[yA],dA.emit("error",Z)};var DA=A.Z_DEFAULT_COMPRESSION;"number"==typeof X.level&&(DA=X.level);var gA=A.Z_DEFAULT_STRATEGY;"number"==typeof X.strategy&&(gA=X.strategy),this._handle.init(X.windowBits||A.Z_DEFAULT_WINDOWBITS,DA,X.memLevel||A.Z_DEFAULT_MEMLEVEL,gA,X.dictionary),this._buffer=o.allocUnsafe(this._chunkSize),this._offset=0,this._level=DA,this._strategy=gA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!pA._handle},configurable:!0,enumerable:!0})}function sA(X,cA){cA&&u.nextTick(cA),X._handle&&(X._handle.close(),X._handle=null)}function uA(X){X.emit("close")}Object.defineProperty(A,"codes",{enumerable:!0,value:Object.freeze(B),writable:!1}),A.Deflate=v,A.Inflate=p,A.Gzip=I,A.Gunzip=y,A.DeflateRaw=U,A.InflateRaw=S,A.Unzip=b,A.createDeflate=function(X){return new v(X)},A.createInflate=function(X){return new p(X)},A.createDeflateRaw=function(X){return new U(X)},A.createInflateRaw=function(X){return new S(X)},A.createGzip=function(X){return new I(X)},A.createGunzip=function(X){return new y(X)},A.createUnzip=function(X){return new b(X)},A.deflate=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new v(cA),X,pA)},A.deflateSync=function(X,cA){return Y(new v(cA),X)},A.gzip=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new I(cA),X,pA)},A.gzipSync=function(X,cA){return Y(new I(cA),X)},A.deflateRaw=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new U(cA),X,pA)},A.deflateRawSync=function(X,cA){return Y(new U(cA),X)},A.unzip=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new b(cA),X,pA)},A.unzipSync=function(X,cA){return Y(new b(cA),X)},A.inflate=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new p(cA),X,pA)},A.inflateSync=function(X,cA){return Y(new p(cA),X)},A.gunzip=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new y(cA),X,pA)},A.gunzipSync=function(X,cA){return Y(new y(cA),X)},A.inflateRaw=function(X,cA,pA){return"function"==typeof cA&&(pA=cA,cA={}),M(new S(cA),X,pA)},A.inflateRawSync=function(X,cA){return Y(new S(cA),X)},g.inherits(J,s),J.prototype.params=function(X,cA,pA){if(XA.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+X);if(cA!=A.Z_FILTERED&&cA!=A.Z_HUFFMAN_ONLY&&cA!=A.Z_RLE&&cA!=A.Z_FIXED&&cA!=A.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+cA);if(this._level!==X||this._strategy!==cA){var dA=this;this.flush(l.Z_SYNC_FLUSH,function(){f(dA._handle,"zlib binding closed"),dA._handle.params(X,cA),dA._hadError||(dA._level=X,dA._strategy=cA,pA&&pA())})}else u.nextTick(pA)},J.prototype.reset=function(){return f(this._handle,"zlib binding closed"),this._handle.reset()},J.prototype._flush=function(X){this._transform(o.alloc(0),"",X)},J.prototype.flush=function(X,cA){var pA=this,dA=this._writableState;("function"==typeof X||void 0===X&&!cA)&&(cA=X,X=l.Z_FULL_FLUSH),dA.ended?cA&&u.nextTick(cA):dA.ending?cA&&this.once("end",cA):dA.needDrain?cA&&this.once("drain",function(){return pA.flush(X,cA)}):(this._flushFlag=X,this.write(o.alloc(0),"",cA))},J.prototype.close=function(X){sA(this,X),u.nextTick(uA,this)},J.prototype._transform=function(X,cA,pA){var dA,DA=this._writableState,QA=(DA.ending||DA.ended)&&(!X||DA.length===X.length);return null===X||o.isBuffer(X)?this._handle?(QA?dA=this._finishFlushFlag:(dA=this._flushFlag,X.length>=DA.length&&(this._flushFlag=this._opts.flush||l.Z_NO_FLUSH)),void this._processChunk(X,dA,pA)):pA(new Error("zlib binding closed")):pA(new Error("invalid input"))},J.prototype._processChunk=function(X,cA,pA){var dA=X&&X.length,DA=this._chunkSize-this._offset,gA=0,QA=this,yA="function"==typeof pA;if(!yA){var nA,Z=[],CA=0;this.on("error",function(q){nA=q}),f(this._handle,"zlib binding closed");do{var lA=this._handle.writeSync(cA,X,gA,dA,this._buffer,this._offset,DA)}while(!this._hadError&&HA(lA[0],lA[1]));if(this._hadError)throw nA;if(CA>=E)throw sA(this),new RangeError(h);var FA=o.concat(Z,CA);return sA(this),FA}f(this._handle,"zlib binding closed");var bA=this._handle.write(cA,X,gA,dA,this._buffer,this._offset,DA);function HA(q,z){if(this&&(this.buffer=null,this.callback=null),!QA._hadError){var $=DA-z;if(f($>=0,"have should not go down"),$>0){var K=QA._buffer.slice(QA._offset,QA._offset+$);QA._offset+=$,yA?QA.push(K):(Z.push(K),CA+=K.length)}if((0===z||QA._offset>=QA._chunkSize)&&(DA=QA._chunkSize,QA._offset=0,QA._buffer=o.allocUnsafe(QA._chunkSize)),0===z){if(gA+=dA-q,dA=q,!yA)return!0;var fA=QA._handle.write(cA,X,gA,dA,QA._buffer,QA._offset,QA._chunkSize);return fA.callback=HA,void(fA.buffer=X)}if(!yA)return!1;pA()}}bA.buffer=X,bA.callback=HA},g.inherits(v,J),g.inherits(p,J),g.inherits(I,J),g.inherits(y,J),g.inherits(U,J),g.inherits(S,J),g.inherits(b,J)},1924:function(T,A,n){"use strict";var u=n(210),o=n(5559),s=o(u("String.prototype.indexOf"));T.exports=function(g,f){var E=u(g,!!f);return"function"==typeof E&&s(g,".prototype.")>-1?o(E):E}},5559:function(T,A,n){"use strict";var u=n(8612),o=n(210),s=o("%Function.prototype.apply%"),l=o("%Function.prototype.call%"),g=o("%Reflect.apply%",!0)||u.call(l,s),f=o("%Object.getOwnPropertyDescriptor%",!0),E=o("%Object.defineProperty%",!0),h=o("%Math.max%");if(E)try{E({},"a",{value:1})}catch(w){E=null}T.exports=function(e){var B=g(u,l,arguments);return f&&E&&f(B,"length").configurable&&E(B,"length",{value:1+h(0,e.length-(arguments.length-1))}),B};var r=function(){return g(u,s,arguments)};E?E(T.exports,"apply",{value:r}):T.exports.apply=r},6313:function(T,A,n){var u=n(8823).Buffer,o=function(){"use strict";function s(r,w,e,B){"object"==typeof w&&(e=w.depth,B=w.prototype,w=w.circular);var C=[],Q=[],M=void 0!==u;return void 0===w&&(w=!0),void 0===e&&(e=1/0),function Y(v,p){if(null===v)return null;if(0==p)return v;var I,y;if("object"!=typeof v)return v;if(s.__isArray(v))I=[];else if(s.__isRegExp(v))I=new RegExp(v.source,h(v)),v.lastIndex&&(I.lastIndex=v.lastIndex);else if(s.__isDate(v))I=new Date(v.getTime());else{if(M&&u.isBuffer(v))return I=u.allocUnsafe?u.allocUnsafe(v.length):new u(v.length),v.copy(I),I;void 0===B?(y=Object.getPrototypeOf(v),I=Object.create(y)):(I=Object.create(B),y=B)}if(w){var U=C.indexOf(v);if(-1!=U)return Q[U];C.push(v),Q.push(I)}for(var S in v){var b;y&&(b=Object.getOwnPropertyDescriptor(y,S)),(!b||null!=b.set)&&(I[S]=Y(v[S],p-1))}return I}(r,e)}function l(r){return Object.prototype.toString.call(r)}function h(r){var w="";return r.global&&(w+="g"),r.ignoreCase&&(w+="i"),r.multiline&&(w+="m"),w}return s.clonePrototype=function(w){if(null===w)return null;var e=function(){};return e.prototype=w,new e},s.__objToStr=l,s.__isDate=function g(r){return"object"==typeof r&&"[object Date]"===l(r)},s.__isArray=function f(r){return"object"==typeof r&&"[object Array]"===l(r)},s.__isRegExp=function E(r){return"object"==typeof r&&"[object RegExp]"===l(r)},s.__getRegExpFlags=h,s}();T.exports&&(T.exports=o)},4667:function(T,A,n){n(2479);var u=n(857);T.exports=u.Object.values},7633:function(T,A,n){n(9170),n(6992),n(1539),n(8674),n(7922),n(4668),n(7727),n(8783);var u=n(857);T.exports=u.Promise},3867:function(T,A,n){var u=n(1150);n(8628),n(7314),n(7479),n(6290),T.exports=u},9662:function(T,A,n){var u=n(7854),o=n(614),s=n(6330),l=u.TypeError;T.exports=function(g){if(o(g))return g;throw l(s(g)+" is not a function")}},9483:function(T,A,n){var u=n(7854),o=n(4411),s=n(6330),l=u.TypeError;T.exports=function(g){if(o(g))return g;throw l(s(g)+" is not a constructor")}},6077:function(T,A,n){var u=n(7854),o=n(614),s=u.String,l=u.TypeError;T.exports=function(g){if("object"==typeof g||o(g))return g;throw l("Can't set "+s(g)+" as a prototype")}},1223:function(T,A,n){var u=n(5112),o=n(30),s=n(3070),l=u("unscopables"),g=Array.prototype;null==g[l]&&s.f(g,l,{configurable:!0,value:o(null)}),T.exports=function(f){g[l][f]=!0}},1530:function(T,A,n){"use strict";var u=n(8710).charAt;T.exports=function(o,s,l){return s+(l?u(o,s).length:1)}},5787:function(T,A,n){var u=n(7854),o=n(7976),s=u.TypeError;T.exports=function(l,g){if(o(g,l))return l;throw s("Incorrect invocation")}},9670:function(T,A,n){var u=n(7854),o=n(111),s=u.String,l=u.TypeError;T.exports=function(g){if(o(g))return g;throw l(s(g)+" is not an object")}},1048:function(T,A,n){"use strict";var u=n(7908),o=n(1400),s=n(6244),l=Math.min;T.exports=[].copyWithin||function(f,E){var h=u(this),r=s(h),w=o(f,r),e=o(E,r),B=arguments.length>2?arguments[2]:void 0,c=l((void 0===B?r:o(B,r))-e,r-w),C=1;for(e0;)e in h?h[w]=h[e]:delete h[w],w+=C,e+=C;return h}},1285:function(T,A,n){"use strict";var u=n(7908),o=n(1400),s=n(6244);T.exports=function(g){for(var f=u(this),E=s(f),h=arguments.length,r=o(h>1?arguments[1]:void 0,E),w=h>2?arguments[2]:void 0,e=void 0===w?E:o(w,E);e>r;)f[r++]=g;return f}},8533:function(T,A,n){"use strict";var u=n(2092).forEach,s=n(9341)("forEach");T.exports=s?[].forEach:function(g){return u(this,g,arguments.length>1?arguments[1]:void 0)}},7745:function(T){T.exports=function(A,n){for(var u=0,o=n.length,s=new A(o);o>u;)s[u]=n[u++];return s}},8457:function(T,A,n){"use strict";var u=n(7854),o=n(9974),s=n(6916),l=n(7908),g=n(3411),f=n(7659),E=n(4411),h=n(6244),r=n(6135),w=n(8554),e=n(1246),B=u.Array;T.exports=function(C){var Q=l(C),M=E(this),Y=arguments.length,v=Y>1?arguments[1]:void 0,p=void 0!==v;p&&(v=o(v,Y>2?arguments[2]:void 0));var U,S,b,O,J,sA,I=e(Q),y=0;if(!I||this==B&&f(I))for(U=h(Q),S=M?new this(U):B(U);U>y;y++)sA=p?v(Q[y],y):Q[y],r(S,y,sA);else for(J=(O=w(Q,I)).next,S=M?new this:[];!(b=s(J,O)).done;y++)sA=p?g(O,v,[b.value,y],!0):b.value,r(S,y,sA);return S.length=y,S}},1318:function(T,A,n){var u=n(5656),o=n(1400),s=n(6244),l=function(g){return function(f,E,h){var B,r=u(f),w=s(r),e=o(h,w);if(g&&E!=E){for(;w>e;)if((B=r[e++])!=B)return!0}else for(;w>e;e++)if((g||e in r)&&r[e]===E)return g||e||0;return!g&&-1}};T.exports={includes:l(!0),indexOf:l(!1)}},2092:function(T,A,n){var u=n(9974),o=n(1702),s=n(8361),l=n(7908),g=n(6244),f=n(5417),E=o([].push),h=function(r){var w=1==r,e=2==r,B=3==r,c=4==r,C=6==r,Q=7==r,M=5==r||C;return function(Y,v,p,I){for(var uA,X,y=l(Y),U=s(y),S=u(v,p),b=g(U),O=0,J=I||f,sA=w?J(Y,b):e||Q?J(Y,0):void 0;b>O;O++)if((M||O in U)&&(X=S(uA=U[O],O,y),r))if(w)sA[O]=X;else if(X)switch(r){case 3:return!0;case 5:return uA;case 6:return O;case 2:E(sA,uA)}else switch(r){case 4:return!1;case 7:E(sA,uA)}return C?-1:B||c?c:sA}};T.exports={forEach:h(0),map:h(1),filter:h(2),some:h(3),every:h(4),find:h(5),findIndex:h(6),filterReject:h(7)}},6583:function(T,A,n){"use strict";var u=n(2104),o=n(5656),s=n(9303),l=n(6244),g=n(9341),f=Math.min,E=[].lastIndexOf,h=!!E&&1/[1].lastIndexOf(1,-0)<0,r=g("lastIndexOf");T.exports=h||!r?function(B){if(h)return u(E,this,arguments)||0;var c=o(this),C=l(c),Q=C-1;for(arguments.length>1&&(Q=f(Q,s(arguments[1]))),Q<0&&(Q=C+Q);Q>=0;Q--)if(Q in c&&c[Q]===B)return Q||0;return-1}:E},1194:function(T,A,n){var u=n(7293),o=n(5112),s=n(7392),l=o("species");T.exports=function(g){return s>=51||!u(function(){var f=[];return(f.constructor={})[l]=function(){return{foo:1}},1!==f[g](Boolean).foo})}},9341:function(T,A,n){"use strict";var u=n(7293);T.exports=function(o,s){var l=[][o];return!!l&&u(function(){l.call(null,s||function(){throw 1},1)})}},3671:function(T,A,n){var u=n(7854),o=n(9662),s=n(7908),l=n(8361),g=n(6244),f=u.TypeError,E=function(h){return function(r,w,e,B){o(w);var c=s(r),C=l(c),Q=g(c),M=h?Q-1:0,Y=h?-1:1;if(e<2)for(;;){if(M in C){B=C[M],M+=Y;break}if(M+=Y,h?M<0:Q<=M)throw f("Reduce of empty array with no initial value")}for(;h?M>=0:Q>M;M+=Y)M in C&&(B=w(B,C[M],M,c));return B}};T.exports={left:E(!1),right:E(!0)}},206:function(T,A,n){var u=n(1702);T.exports=u([].slice)},4362:function(T,A,n){var u=n(206),o=Math.floor,s=function(f,E){var h=f.length,r=o(h/2);return h<8?l(f,E):g(f,s(u(f,0,r),E),s(u(f,r),E),E)},l=function(f,E){for(var w,e,h=f.length,r=1;r0;)f[e]=f[--e];e!==r++&&(f[e]=w)}return f},g=function(f,E,h,r){for(var w=E.length,e=h.length,B=0,c=0;B1?arguments[1]:void 0);sA=sA?sA.next:O.first;)for(J(sA.value,sA.key,this);sA&&sA.removed;)sA=sA.previous},has:function(b){return!!U(this,b)}}),s(p,M?{get:function(b){var O=U(this,b);return O&&O.value},set:function(b,O){return y(this,0===b?0:b,O)}}:{add:function(b){return y(this,b=0===b?0:b,b)}}),r&&u(p,"size",{get:function(){return I(this).size}}),v},setStrong:function(C,Q,M){var Y=Q+" Iterator",v=c(Q),p=c(Y);E(C,Q,function(I,y){B(this,{type:Y,target:I,state:v(I),kind:y,last:void 0})},function(){for(var I=p(this),y=I.kind,U=I.last;U&&U.removed;)U=U.previous;return I.target&&(I.last=U=U?U.next:I.state.first)?"keys"==y?{value:U.key,done:!1}:"values"==y?{value:U.value,done:!1}:{value:[U.key,U.value],done:!1}:(I.target=void 0,{value:void 0,done:!0})},M?"entries":"values",!M,!0),h(Q)}}},7710:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(1702),l=n(4705),g=n(1320),f=n(2423),E=n(408),h=n(5787),r=n(614),w=n(111),e=n(7293),B=n(7072),c=n(8003),C=n(9587);T.exports=function(Q,M,Y){var v=-1!==Q.indexOf("Map"),p=-1!==Q.indexOf("Weak"),I=v?"set":"add",y=o[Q],U=y&&y.prototype,S=y,b={},O=function(dA){var DA=s(U[dA]);g(U,dA,"add"==dA?function(QA){return DA(this,0===QA?0:QA),this}:"delete"==dA?function(gA){return!(p&&!w(gA))&&DA(this,0===gA?0:gA)}:"get"==dA?function(QA){return p&&!w(QA)?void 0:DA(this,0===QA?0:QA)}:"has"==dA?function(QA){return!(p&&!w(QA))&&DA(this,0===QA?0:QA)}:function(QA,yA){return DA(this,0===QA?0:QA,yA),this})};if(l(Q,!r(y)||!(p||U.forEach&&!e(function(){(new y).entries().next()}))))S=Y.getConstructor(M,Q,v,I),f.enable();else if(l(Q,!0)){var sA=new S,uA=sA[I](p?{}:-0,1)!=sA,X=e(function(){sA.has(1)}),cA=B(function(dA){new y(dA)}),pA=!p&&e(function(){for(var dA=new y,DA=5;DA--;)dA[I](DA,DA);return!dA.has(-0)});cA||((S=M(function(dA,DA){h(dA,U);var gA=C(new y,dA,S);return null!=DA&&E(DA,gA[I],{that:gA,AS_ENTRIES:v}),gA})).prototype=U,U.constructor=S),(X||pA)&&(O("delete"),O("has"),v&&O("get")),(pA||uA)&&O(I),p&&U.clear&&delete U.clear}return b[Q]=S,u({global:!0,forced:S!=y},b),c(S,Q),p||Y.setStrong(S,Q,v),S}},9920:function(T,A,n){var u=n(2597),o=n(3887),s=n(1236),l=n(3070);T.exports=function(g,f){for(var E=o(f),h=l.f,r=s.f,w=0;w"+w+""}},4994:function(T,A,n){"use strict";var u=n(3383).IteratorPrototype,o=n(30),s=n(9114),l=n(8003),g=n(7497),f=function(){return this};T.exports=function(E,h,r){var w=h+" Iterator";return E.prototype=o(u,{next:s(1,r)}),l(E,w,!1,!0),g[w]=f,E}},8880:function(T,A,n){var u=n(9781),o=n(3070),s=n(9114);T.exports=u?function(l,g,f){return o.f(l,g,s(1,f))}:function(l,g,f){return l[g]=f,l}},9114:function(T){T.exports=function(A,n){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:n}}},6135:function(T,A,n){"use strict";var u=n(4948),o=n(3070),s=n(9114);T.exports=function(l,g,f){var E=u(g);E in l?o.f(l,E,s(0,f)):l[E]=f}},8709:function(T,A,n){"use strict";var u=n(7854),o=n(9670),s=n(2140),l=u.TypeError;T.exports=function(g){if(o(this),"string"===g||"default"===g)g="string";else if("number"!==g)throw l("Incorrect hint");return s(this,g)}},654:function(T,A,n){"use strict";var u=n(2109),o=n(6916),s=n(1913),l=n(6530),g=n(614),f=n(4994),E=n(9518),h=n(7674),r=n(8003),w=n(8880),e=n(1320),B=n(5112),c=n(7497),C=n(3383),Q=l.PROPER,M=l.CONFIGURABLE,Y=C.IteratorPrototype,v=C.BUGGY_SAFARI_ITERATORS,p=B("iterator"),I="keys",y="values",U="entries",S=function(){return this};T.exports=function(b,O,J,sA,uA,X,cA){f(J,O,sA);var CA,nA,lA,pA=function(FA){if(FA===uA&&yA)return yA;if(!v&&FA in gA)return gA[FA];switch(FA){case I:case y:case U:return function(){return new J(this,FA)}}return function(){return new J(this)}},dA=O+" Iterator",DA=!1,gA=b.prototype,QA=gA[p]||gA["@@iterator"]||uA&&gA[uA],yA=!v&&QA||pA(uA),Z="Array"==O&&gA.entries||QA;if(Z&&(CA=E(Z.call(new b)))!==Object.prototype&&CA.next&&(!s&&E(CA)!==Y&&(h?h(CA,Y):g(CA[p])||e(CA,p,S)),r(CA,dA,!0,!0),s&&(c[dA]=S)),Q&&uA==y&&QA&&QA.name!==y&&(!s&&M?w(gA,"name",y):(DA=!0,yA=function(){return o(QA,this)})),uA)if(nA={values:pA(y),keys:X?yA:pA(I),entries:pA(U)},cA)for(lA in nA)(v||DA||!(lA in gA))&&e(gA,lA,nA[lA]);else u({target:O,proto:!0,forced:v||DA},nA);return(!s||cA)&&gA[p]!==yA&&e(gA,p,yA,{name:uA}),c[O]=yA,nA}},7235:function(T,A,n){var u=n(857),o=n(2597),s=n(6061),l=n(3070).f;T.exports=function(g){var f=u.Symbol||(u.Symbol={});o(f,g)||l(f,g,{value:s.f(g)})}},9781:function(T,A,n){var u=n(7293);T.exports=!u(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},317:function(T,A,n){var u=n(7854),o=n(111),s=u.document,l=o(s)&&o(s.createElement);T.exports=function(g){return l?s.createElement(g):{}}},8324:function(T){T.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:function(T,A,n){var o=n(317)("span").classList,s=o&&o.constructor&&o.constructor.prototype;T.exports=s===Object.prototype?void 0:s},8886:function(T,A,n){var o=n(8113).match(/firefox\/(\d+)/i);T.exports=!!o&&+o[1]},7871:function(T){T.exports="object"==typeof window},256:function(T,A,n){var u=n(8113);T.exports=/MSIE|Trident/.test(u)},1528:function(T,A,n){var u=n(8113),o=n(7854);T.exports=/ipad|iphone|ipod/i.test(u)&&void 0!==o.Pebble},6833:function(T,A,n){var u=n(8113);T.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(u)},5268:function(T,A,n){var u=n(4326),o=n(7854);T.exports="process"==u(o.process)},1036:function(T,A,n){var u=n(8113);T.exports=/web0s(?!.*chrome)/i.test(u)},8113:function(T,A,n){var u=n(5005);T.exports=u("navigator","userAgent")||""},7392:function(T,A,n){var E,h,u=n(7854),o=n(8113),s=u.process,l=u.Deno,g=s&&s.versions||l&&l.version,f=g&&g.v8;f&&(h=(E=f.split("."))[0]>0&&E[0]<4?1:+(E[0]+E[1])),!h&&o&&(!(E=o.match(/Edge\/(\d+)/))||E[1]>=74)&&(E=o.match(/Chrome\/(\d+)/))&&(h=+E[1]),T.exports=h},8008:function(T,A,n){var o=n(8113).match(/AppleWebKit\/(\d+)\./);T.exports=!!o&&+o[1]},748:function(T){T.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2914:function(T,A,n){var u=n(7293),o=n(9114);T.exports=!u(function(){var s=Error("a");return!("stack"in s)||(Object.defineProperty(s,"stack",o(1,7)),7!==s.stack)})},2109:function(T,A,n){var u=n(7854),o=n(1236).f,s=n(8880),l=n(1320),g=n(3505),f=n(9920),E=n(4705);T.exports=function(h,r){var C,Q,M,Y,v,w=h.target,e=h.global,B=h.stat;if(C=e?u:B?u[w]||g(w,{}):(u[w]||{}).prototype)for(Q in r){if(Y=r[Q],M=h.noTargetGet?(v=o(C,Q))&&v.value:C[Q],!E(e?Q:w+(B?".":"#")+Q,h.forced)&&void 0!==M){if(typeof Y==typeof M)continue;f(Y,M)}(h.sham||M&&M.sham)&&s(Y,"sham",!0),l(C,Q,Y,h)}}},7293:function(T){T.exports=function(A){try{return!!A()}catch(n){return!0}}},7007:function(T,A,n){"use strict";n(4916);var u=n(1702),o=n(1320),s=n(2261),l=n(7293),g=n(5112),f=n(8880),E=g("species"),h=RegExp.prototype;T.exports=function(r,w,e,B){var c=g(r),C=!l(function(){var v={};return v[c]=function(){return 7},7!=""[r](v)}),Q=C&&!l(function(){var v=!1,p=/a/;return"split"===r&&((p={}).constructor={},p.constructor[E]=function(){return p},p.flags="",p[c]=/./[c]),p.exec=function(){return v=!0,null},p[c](""),!v});if(!C||!Q||e){var M=u(/./[c]),Y=w(c,""[r],function(v,p,I,y,U){var S=u(v),b=p.exec;return b===s||b===h.exec?C&&!U?{done:!0,value:M(p,I,y)}:{done:!0,value:S(I,p,y)}:{done:!1}});o(String.prototype,r,Y[0]),o(h,c,Y[1])}B&&f(h[c],"sham",!0)}},6677:function(T,A,n){var u=n(7293);T.exports=!u(function(){return Object.isExtensible(Object.preventExtensions({}))})},2104:function(T){var A=Function.prototype,n=A.apply,o=A.call;T.exports="object"==typeof Reflect&&Reflect.apply||(A.bind?o.bind(n):function(){return o.apply(n,arguments)})},9974:function(T,A,n){var u=n(1702),o=n(9662),s=u(u.bind);T.exports=function(l,g){return o(l),void 0===g?l:s?s(l,g):function(){return l.apply(g,arguments)}}},7065:function(T,A,n){"use strict";var u=n(7854),o=n(1702),s=n(9662),l=n(111),g=n(2597),f=n(206),E=u.Function,h=o([].concat),r=o([].join),w={},e=function(B,c,C){if(!g(w,c)){for(var Q=[],M=0;M]*>)/g,h=/\$([$&'`]|\d{1,2})/g;T.exports=function(r,w,e,B,c,C){var Q=e+r.length,M=B.length,Y=h;return void 0!==c&&(c=o(c),Y=E),g(C,Y,function(v,p){var I;switch(l(p,0)){case"$":return"$";case"&":return r;case"`":return f(w,0,e);case"'":return f(w,Q);case"<":I=c[f(p,1,-1)];break;default:var y=+p;if(0===y)return v;if(y>M){var U=s(y/10);return 0===U?v:U<=M?void 0===B[U-1]?l(p,1):B[U-1]+l(p,1):v}I=B[y-1]}return void 0===I?"":I})}},7854:function(T,A,n){var u=function(o){return o&&o.Math==Math&&o};T.exports=u("object"==typeof globalThis&&globalThis)||u("object"==typeof window&&window)||u("object"==typeof self&&self)||u("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},2597:function(T,A,n){var u=n(1702),o=n(7908),s=u({}.hasOwnProperty);T.exports=Object.hasOwn||function(g,f){return s(o(g),f)}},3501:function(T){T.exports={}},842:function(T,A,n){var u=n(7854);T.exports=function(o,s){var l=u.console;l&&l.error&&(1==arguments.length?l.error(o):l.error(o,s))}},490:function(T,A,n){var u=n(5005);T.exports=u("document","documentElement")},4664:function(T,A,n){var u=n(9781),o=n(7293),s=n(317);T.exports=!u&&!o(function(){return 7!=Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a})},1179:function(T,A,n){var o=n(7854).Array,s=Math.abs,l=Math.pow,g=Math.floor,f=Math.log,E=Math.LN2;T.exports={pack:function(w,e,B){var I,y,U,c=o(B),C=8*B-e-1,Q=(1<>1,Y=23===e?l(2,-24)-l(2,-77):0,v=w<0||0===w&&1/w<0?1:0,p=0;for((w=s(w))!=w||w===1/0?(y=w!=w?1:0,I=Q):(I=g(f(w)/E),w*(U=l(2,-I))<1&&(I--,U*=2),(w+=I+M>=1?Y/U:Y*l(2,1-M))*U>=2&&(I++,U/=2),I+M>=Q?(y=0,I=Q):I+M>=1?(y=(w*U-1)*l(2,e),I+=M):(y=w*l(2,M-1)*l(2,e),I=0));e>=8;c[p++]=255&y,y/=256,e-=8);for(I=I<0;c[p++]=255&I,I/=256,C-=8);return c[--p]|=128*v,c},unpack:function(w,e){var I,B=w.length,c=8*B-e-1,C=(1<>1,M=c-7,Y=B-1,v=w[Y--],p=127&v;for(v>>=7;M>0;p=256*p+w[Y],Y--,M-=8);for(I=p&(1<<-M)-1,p>>=-M,M+=e;M>0;I=256*I+w[Y],Y--,M-=8);if(0===p)p=1-Q;else{if(p===C)return I?NaN:v?-1/0:1/0;I+=l(2,e),p-=Q}return(v?-1:1)*I*l(2,p-e)}}},8361:function(T,A,n){var u=n(7854),o=n(1702),s=n(7293),l=n(4326),g=u.Object,f=o("".split);T.exports=s(function(){return!g("z").propertyIsEnumerable(0)})?function(E){return"String"==l(E)?f(E,""):g(E)}:g},9587:function(T,A,n){var u=n(614),o=n(111),s=n(7674);T.exports=function(l,g,f){var E,h;return s&&u(E=g.constructor)&&E!==f&&o(h=E.prototype)&&h!==f.prototype&&s(l,h),l}},2788:function(T,A,n){var u=n(1702),o=n(614),s=n(5465),l=u(Function.toString);o(s.inspectSource)||(s.inspectSource=function(g){return l(g)}),T.exports=s.inspectSource},8340:function(T,A,n){var u=n(111),o=n(8880);T.exports=function(s,l){u(l)&&"cause"in l&&o(s,"cause",l.cause)}},2423:function(T,A,n){var u=n(2109),o=n(1702),s=n(3501),l=n(111),g=n(2597),f=n(3070).f,E=n(8006),h=n(1156),r=n(9711),w=n(6677),e=!1,B=r("meta"),c=0,C=Object.isExtensible||function(){return!0},Q=function(y){f(y,B,{value:{objectID:"O"+c++,weakData:{}}})},I=T.exports={enable:function(){I.enable=function(){},e=!0;var y=E.f,U=o([].splice),S={};S[B]=1,y(S).length&&(E.f=function(b){for(var O=y(b),J=0,sA=O.length;JO;O++)if((sA=pA(Q[O]))&&h(C,sA))return sA;return new c(!1)}S=r(Q,b)}for(uA=S.next;!(X=s(uA,S)).done;){try{sA=pA(X.value)}catch(dA){e(S,"throw",dA)}if("object"==typeof sA&&sA&&h(C,sA))return sA}return new c(!1)}},9212:function(T,A,n){var u=n(6916),o=n(9670),s=n(8173);T.exports=function(l,g,f){var E,h;o(l);try{if(!(E=s(l,"return"))){if("throw"===g)throw f;return f}E=u(E,l)}catch(r){h=!0,E=r}if("throw"===g)throw f;if(h)throw E;return o(E),f}},3383:function(T,A,n){"use strict";var w,e,B,u=n(7293),o=n(614),s=n(30),l=n(9518),g=n(1320),f=n(5112),E=n(1913),h=f("iterator"),r=!1;[].keys&&("next"in(B=[].keys())?(e=l(l(B)))!==Object.prototype&&(w=e):r=!0),null==w||u(function(){var C={};return w[h].call(C)!==C})?w={}:E&&(w=s(w)),o(w[h])||g(w,h,function(){return this}),T.exports={IteratorPrototype:w,BUGGY_SAFARI_ITERATORS:r}},7497:function(T){T.exports={}},6244:function(T,A,n){var u=n(7466);T.exports=function(o){return u(o.length)}},5948:function(T,A,n){var Q,M,Y,v,p,I,y,U,u=n(7854),o=n(9974),s=n(1236).f,l=n(261).set,g=n(6833),f=n(1528),E=n(1036),h=n(5268),r=u.MutationObserver||u.WebKitMutationObserver,w=u.document,e=u.process,B=u.Promise,c=s(u,"queueMicrotask"),C=c&&c.value;C||(Q=function(){var S,b;for(h&&(S=e.domain)&&S.exit();M;){b=M.fn,M=M.next;try{b()}catch(O){throw M?v():Y=void 0,O}}Y=void 0,S&&S.enter()},g||h||E||!r||!w?!f&&B&&B.resolve?((y=B.resolve(void 0)).constructor=B,U=o(y.then,y),v=function(){U(Q)}):h?v=function(){e.nextTick(Q)}:(l=o(l,u),v=function(){l(Q)}):(p=!0,I=w.createTextNode(""),new r(Q).observe(I,{characterData:!0}),v=function(){I.data=p=!p})),T.exports=C||function(S){var b={fn:S,next:void 0};Y&&(Y.next=b),M||(M=b,v()),Y=b}},3366:function(T,A,n){var u=n(7854);T.exports=u.Promise},133:function(T,A,n){var u=n(7392),o=n(7293);T.exports=!!Object.getOwnPropertySymbols&&!o(function(){var s=Symbol();return!String(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&u&&u<41})},8536:function(T,A,n){var u=n(7854),o=n(614),s=n(2788),l=u.WeakMap;T.exports=o(l)&&/native code/.test(s(l))},8523:function(T,A,n){"use strict";var u=n(9662),o=function(s){var l,g;this.promise=new s(function(f,E){if(void 0!==l||void 0!==g)throw TypeError("Bad Promise constructor");l=f,g=E}),this.resolve=u(l),this.reject=u(g)};T.exports.f=function(s){return new o(s)}},6277:function(T,A,n){var u=n(1340);T.exports=function(o,s){return void 0===o?arguments.length<2?"":s:u(o)}},3929:function(T,A,n){var u=n(7854),o=n(7850),s=u.TypeError;T.exports=function(l){if(o(l))throw s("The method doesn't accept regular expressions");return l}},7023:function(T,A,n){var o=n(7854).isFinite;T.exports=Number.isFinite||function(l){return"number"==typeof l&&o(l)}},1574:function(T,A,n){"use strict";var u=n(9781),o=n(1702),s=n(6916),l=n(7293),g=n(1956),f=n(5181),E=n(5296),h=n(7908),r=n(8361),w=Object.assign,e=Object.defineProperty,B=o([].concat);T.exports=!w||l(function(){if(u&&1!==w({b:1},w(e({},"a",{enumerable:!0,get:function(){e(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var c={},C={},Q=Symbol(),M="abcdefghijklmnopqrst";return c[Q]=7,M.split("").forEach(function(Y){C[Y]=Y}),7!=w({},c)[Q]||g(w({},C)).join("")!=M})?function(C,Q){for(var M=h(C),Y=arguments.length,v=1,p=f.f,I=E.f;Y>v;)for(var O,y=r(arguments[v++]),U=p?B(g(y),p(y)):g(y),S=U.length,b=0;S>b;)O=U[b++],(!u||s(I,y,O))&&(M[O]=y[O]);return M}:w},30:function(T,A,n){var Y,u=n(9670),o=n(6048),s=n(748),l=n(3501),g=n(490),f=n(317),E=n(6200),w="prototype",e="script",B=E("IE_PROTO"),c=function(){},C=function(p){return"<"+e+">"+p+""},Q=function(p){p.write(C("")),p.close();var I=p.parentWindow.Object;return p=null,I},v=function(){try{Y=new ActiveXObject("htmlfile")}catch(I){}v="undefined"!=typeof document?document.domain&&Y?Q(Y):function(){var y,p=f("iframe");return p.style.display="none",g.appendChild(p),p.src=String("javascript:"),(y=p.contentWindow.document).open(),y.write(C("document.F=Object")),y.close(),y.F}():Q(Y);for(var p=s.length;p--;)delete v[w][s[p]];return v()};l[B]=!0,T.exports=Object.create||function(I,y){var U;return null!==I?(c[w]=u(I),U=new c,c[w]=null,U[B]=I):U=v(),void 0===y?U:o(U,y)}},6048:function(T,A,n){var u=n(9781),o=n(3070),s=n(9670),l=n(5656),g=n(1956);T.exports=u?Object.defineProperties:function(E,h){s(E);for(var c,r=l(h),w=g(h),e=w.length,B=0;e>B;)o.f(E,c=w[B++],r[c]);return E}},3070:function(T,A,n){var u=n(7854),o=n(9781),s=n(4664),l=n(9670),g=n(4948),f=u.TypeError,E=Object.defineProperty;A.f=o?E:function(r,w,e){if(l(r),w=g(w),l(e),s)try{return E(r,w,e)}catch(B){}if("get"in e||"set"in e)throw f("Accessors not supported");return"value"in e&&(r[w]=e.value),r}},1236:function(T,A,n){var u=n(9781),o=n(6916),s=n(5296),l=n(9114),g=n(5656),f=n(4948),E=n(2597),h=n(4664),r=Object.getOwnPropertyDescriptor;A.f=u?r:function(e,B){if(e=g(e),B=f(B),h)try{return r(e,B)}catch(c){}if(E(e,B))return l(!o(s.f,e,B),e[B])}},1156:function(T,A,n){var u=n(4326),o=n(5656),s=n(8006).f,l=n(206),g="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];T.exports.f=function(h){return g&&"Window"==u(h)?function(E){try{return s(E)}catch(h){return l(g)}}(h):s(o(h))}},8006:function(T,A,n){var u=n(6324),s=n(748).concat("length","prototype");A.f=Object.getOwnPropertyNames||function(g){return u(g,s)}},5181:function(T,A){A.f=Object.getOwnPropertySymbols},9518:function(T,A,n){var u=n(7854),o=n(2597),s=n(614),l=n(7908),g=n(6200),f=n(8544),E=g("IE_PROTO"),h=u.Object,r=h.prototype;T.exports=f?h.getPrototypeOf:function(w){var e=l(w);if(o(e,E))return e[E];var B=e.constructor;return s(B)&&e instanceof B?B.prototype:e instanceof h?r:null}},7976:function(T,A,n){var u=n(1702);T.exports=u({}.isPrototypeOf)},6324:function(T,A,n){var u=n(1702),o=n(2597),s=n(5656),l=n(1318).indexOf,g=n(3501),f=u([].push);T.exports=function(E,h){var B,r=s(E),w=0,e=[];for(B in r)!o(g,B)&&o(r,B)&&f(e,B);for(;h.length>w;)o(r,B=h[w++])&&(~l(e,B)||f(e,B));return e}},1956:function(T,A,n){var u=n(6324),o=n(748);T.exports=Object.keys||function(l){return u(l,o)}},5296:function(T,A){"use strict";var n={}.propertyIsEnumerable,u=Object.getOwnPropertyDescriptor,o=u&&!n.call({1:2},1);A.f=o?function(l){var g=u(this,l);return!!g&&g.enumerable}:n},7674:function(T,A,n){var u=n(1702),o=n(9670),s=n(6077);T.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var f,l=!1,g={};try{(f=u(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(g,[]),l=g instanceof Array}catch(E){}return function(h,r){return o(h),s(r),l?f(h,r):h.__proto__=r,h}}():void 0)},4699:function(T,A,n){var u=n(9781),o=n(1702),s=n(1956),l=n(5656),f=o(n(5296).f),E=o([].push),h=function(r){return function(w){for(var M,e=l(w),B=s(e),c=B.length,C=0,Q=[];c>C;)M=B[C++],(!u||f(e,M))&&E(Q,r?[M,e[M]]:e[M]);return Q}};T.exports={entries:h(!0),values:h(!1)}},288:function(T,A,n){"use strict";var u=n(1694),o=n(648);T.exports=u?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(T,A,n){var u=n(7854),o=n(6916),s=n(614),l=n(111),g=u.TypeError;T.exports=function(f,E){var h,r;if("string"===E&&s(h=f.toString)&&!l(r=o(h,f))||s(h=f.valueOf)&&!l(r=o(h,f))||"string"!==E&&s(h=f.toString)&&!l(r=o(h,f)))return r;throw g("Can't convert object to primitive value")}},3887:function(T,A,n){var u=n(5005),o=n(1702),s=n(8006),l=n(5181),g=n(9670),f=o([].concat);T.exports=u("Reflect","ownKeys")||function(h){var r=s.f(g(h)),w=l.f;return w?f(r,w(h)):r}},857:function(T,A,n){var u=n(7854);T.exports=u},2534:function(T){T.exports=function(A){try{return{error:!1,value:A()}}catch(n){return{error:!0,value:n}}}},9478:function(T,A,n){var u=n(9670),o=n(111),s=n(8523);T.exports=function(l,g){if(u(l),o(g)&&g.constructor===l)return g;var f=s.f(l);return(0,f.resolve)(g),f.promise}},2248:function(T,A,n){var u=n(1320);T.exports=function(o,s,l){for(var g in s)u(o,g,s[g],l);return o}},1320:function(T,A,n){var u=n(7854),o=n(614),s=n(2597),l=n(8880),g=n(3505),f=n(2788),E=n(9909),h=n(6530).CONFIGURABLE,r=E.get,w=E.enforce,e=String(String).split("String");(T.exports=function(B,c,C,Q){var I,M=!!Q&&!!Q.unsafe,Y=!!Q&&!!Q.enumerable,v=!!Q&&!!Q.noTargetGet,p=Q&&void 0!==Q.name?Q.name:c;o(C)&&("Symbol("===String(p).slice(0,7)&&(p="["+String(p).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!s(C,"name")||h&&C.name!==p)&&l(C,"name",p),(I=w(C)).source||(I.source=e.join("string"==typeof p?p:""))),B!==u?(M?!v&&B[c]&&(Y=!0):delete B[c],Y?B[c]=C:l(B,c,C)):Y?B[c]=C:g(c,C)})(Function.prototype,"toString",function(){return o(this)&&r(this).source||f(this)})},7651:function(T,A,n){var u=n(7854),o=n(6916),s=n(9670),l=n(614),g=n(4326),f=n(2261),E=u.TypeError;T.exports=function(h,r){var w=h.exec;if(l(w)){var e=o(w,h,r);return null!==e&&s(e),e}if("RegExp"===g(h))return o(f,h,r);throw E("RegExp#exec called on incompatible receiver")}},2261:function(T,A,n){"use strict";var U,S,u=n(6916),o=n(1702),s=n(1340),l=n(7066),g=n(2999),f=n(2309),E=n(30),h=n(9909).get,r=n(9441),w=n(7168),e=f("native-string-replace",String.prototype.replace),B=RegExp.prototype.exec,c=B,C=o("".charAt),Q=o("".indexOf),M=o("".replace),Y=o("".slice),v=(S=/b*/g,u(B,U=/a/,"a"),u(B,S,"a"),0!==U.lastIndex||0!==S.lastIndex),p=g.UNSUPPORTED_Y||g.BROKEN_CARET,I=void 0!==/()??/.exec("")[1];(v||I||p||r||w)&&(c=function(S){var uA,X,cA,pA,dA,DA,gA,b=this,O=h(b),J=s(S),sA=O.raw;if(sA)return sA.lastIndex=b.lastIndex,uA=u(c,sA,J),b.lastIndex=sA.lastIndex,uA;var QA=O.groups,yA=p&&b.sticky,Z=u(l,b),CA=b.source,nA=0,lA=J;if(yA&&(Z=M(Z,"y",""),-1===Q(Z,"g")&&(Z+="g"),lA=Y(J,b.lastIndex),b.lastIndex>0&&(!b.multiline||b.multiline&&"\n"!==C(J,b.lastIndex-1))&&(CA="(?: "+CA+")",lA=" "+lA,nA++),X=new RegExp("^(?:"+CA+")",Z)),I&&(X=new RegExp("^"+CA+"$(?!\\s)",Z)),v&&(cA=b.lastIndex),pA=u(B,yA?X:b,lA),yA?pA?(pA.input=Y(pA.input,nA),pA[0]=Y(pA[0],nA),pA.index=b.lastIndex,b.lastIndex+=pA[0].length):b.lastIndex=0:v&&pA&&(b.lastIndex=b.global?pA.index+pA[0].length:cA),I&&pA&&pA.length>1&&u(e,pA[0],X,function(){for(dA=1;dAb)","g");return"b"!==l.exec("b").groups.a||"bc"!=="b".replace(l,"$c")})},4488:function(T,A,n){var o=n(7854).TypeError;T.exports=function(s){if(null==s)throw o("Can't call method on "+s);return s}},3505:function(T,A,n){var u=n(7854),o=Object.defineProperty;T.exports=function(s,l){try{o(u,s,{value:l,configurable:!0,writable:!0})}catch(g){u[s]=l}return l}},6340:function(T,A,n){"use strict";var u=n(5005),o=n(3070),s=n(5112),l=n(9781),g=s("species");T.exports=function(f){var E=u(f);l&&E&&!E[g]&&(0,o.f)(E,g,{configurable:!0,get:function(){return this}})}},8003:function(T,A,n){var u=n(3070).f,o=n(2597),l=n(5112)("toStringTag");T.exports=function(g,f,E){g&&!o(g=E?g:g.prototype,l)&&u(g,l,{configurable:!0,value:f})}},6200:function(T,A,n){var u=n(2309),o=n(9711),s=u("keys");T.exports=function(l){return s[l]||(s[l]=o(l))}},5465:function(T,A,n){var u=n(7854),o=n(3505),s="__core-js_shared__",l=u[s]||o(s,{});T.exports=l},2309:function(T,A,n){var u=n(1913),o=n(5465);(T.exports=function(s,l){return o[s]||(o[s]=void 0!==l?l:{})})("versions",[]).push({version:"3.19.0",mode:u?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(T,A,n){var u=n(9670),o=n(9483),l=n(5112)("species");T.exports=function(g,f){var h,E=u(g).constructor;return void 0===E||null==(h=u(E)[l])?f:o(h)}},3429:function(T,A,n){var u=n(7293);T.exports=function(o){return u(function(){var s=""[o]('"');return s!==s.toLowerCase()||s.split('"').length>3})}},8710:function(T,A,n){var u=n(1702),o=n(9303),s=n(1340),l=n(4488),g=u("".charAt),f=u("".charCodeAt),E=u("".slice),h=function(r){return function(w,e){var Q,M,B=s(l(w)),c=o(e),C=B.length;return c<0||c>=C?r?"":void 0:(Q=f(B,c))<55296||Q>56319||c+1===C||(M=f(B,c+1))<56320||M>57343?r?g(B,c):Q:r?E(B,c,c+2):M-56320+(Q-55296<<10)+65536}};T.exports={codeAt:h(!1),charAt:h(!0)}},8415:function(T,A,n){"use strict";var u=n(7854),o=n(9303),s=n(1340),l=n(4488),g=u.RangeError;T.exports=function(E){var h=s(l(this)),r="",w=o(E);if(w<0||w==1/0)throw g("Wrong number of repetitions");for(;w>0;(w>>>=1)&&(h+=h))1&w&&(r+=h);return r}},6091:function(T,A,n){var u=n(6530).PROPER,o=n(7293),s=n(1361);T.exports=function(g){return o(function(){return!!s[g]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[g]()||u&&s[g].name!==g})}},3111:function(T,A,n){var u=n(1702),o=n(4488),s=n(1340),l=n(1361),g=u("".replace),f="["+l+"]",E=RegExp("^"+f+f+"*"),h=RegExp(f+f+"*$"),r=function(w){return function(e){var B=s(o(e));return 1&w&&(B=g(B,E,"")),2&w&&(B=g(B,h,"")),B}};T.exports={start:r(1),end:r(2),trim:r(3)}},261:function(T,A,n){var U,S,b,O,u=n(7854),o=n(2104),s=n(9974),l=n(614),g=n(2597),f=n(7293),E=n(490),h=n(206),r=n(317),w=n(6833),e=n(5268),B=u.setImmediate,c=u.clearImmediate,C=u.process,Q=u.Dispatch,M=u.Function,Y=u.MessageChannel,v=u.String,p=0,I={},y="onreadystatechange";try{U=u.location}catch(cA){}var J=function(cA){if(g(I,cA)){var pA=I[cA];delete I[cA],pA()}},sA=function(cA){return function(){J(cA)}},uA=function(cA){J(cA.data)},X=function(cA){u.postMessage(v(cA),U.protocol+"//"+U.host)};(!B||!c)&&(B=function(pA){var dA=h(arguments,1);return I[++p]=function(){o(l(pA)?pA:M(pA),void 0,dA)},S(p),p},c=function(pA){delete I[pA]},e?S=function(cA){C.nextTick(sA(cA))}:Q&&Q.now?S=function(cA){Q.now(sA(cA))}:Y&&!w?(O=(b=new Y).port2,b.port1.onmessage=uA,S=s(O.postMessage,O)):u.addEventListener&&l(u.postMessage)&&!u.importScripts&&U&&"file:"!==U.protocol&&!f(X)?(S=X,u.addEventListener("message",uA,!1)):S=y in r("script")?function(cA){E.appendChild(r("script"))[y]=function(){E.removeChild(this),J(cA)}}:function(cA){setTimeout(sA(cA),0)}),T.exports={set:B,clear:c}},863:function(T,A,n){var u=n(1702);T.exports=u(1..valueOf)},1400:function(T,A,n){var u=n(9303),o=Math.max,s=Math.min;T.exports=function(l,g){var f=u(l);return f<0?o(f+g,0):s(f,g)}},7067:function(T,A,n){var u=n(7854),o=n(9303),s=n(7466),l=u.RangeError;T.exports=function(g){if(void 0===g)return 0;var f=o(g),E=s(f);if(f!==E)throw l("Wrong length or index");return E}},5656:function(T,A,n){var u=n(8361),o=n(4488);T.exports=function(s){return u(o(s))}},9303:function(T){var A=Math.ceil,n=Math.floor;T.exports=function(u){var o=+u;return o!=o||0===o?0:(o>0?n:A)(o)}},7466:function(T,A,n){var u=n(9303),o=Math.min;T.exports=function(s){return s>0?o(u(s),9007199254740991):0}},7908:function(T,A,n){var u=n(7854),o=n(4488),s=u.Object;T.exports=function(l){return s(o(l))}},4590:function(T,A,n){var u=n(7854),o=n(3002),s=u.RangeError;T.exports=function(l,g){var f=o(l);if(f%g)throw s("Wrong offset");return f}},3002:function(T,A,n){var u=n(7854),o=n(9303),s=u.RangeError;T.exports=function(l){var g=o(l);if(g<0)throw s("The argument can't be less than 0");return g}},7593:function(T,A,n){var u=n(7854),o=n(6916),s=n(111),l=n(2190),g=n(8173),f=n(2140),E=n(5112),h=u.TypeError,r=E("toPrimitive");T.exports=function(w,e){if(!s(w)||l(w))return w;var c,B=g(w,r);if(B){if(void 0===e&&(e="default"),c=o(B,w,e),!s(c)||l(c))return c;throw h("Can't convert object to primitive value")}return void 0===e&&(e="number"),f(w,e)}},4948:function(T,A,n){var u=n(7593),o=n(2190);T.exports=function(s){var l=u(s,"string");return o(l)?l:l+""}},1694:function(T,A,n){var s={};s[n(5112)("toStringTag")]="z",T.exports="[object z]"===String(s)},1340:function(T,A,n){var u=n(7854),o=n(648),s=u.String;T.exports=function(l){if("Symbol"===o(l))throw TypeError("Cannot convert a Symbol value to a string");return s(l)}},6330:function(T,A,n){var o=n(7854).String;T.exports=function(s){try{return o(s)}catch(l){return"Object"}}},9843:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(6916),l=n(9781),g=n(3832),f=n(2094),E=n(2091),h=n(5787),r=n(9114),w=n(8880),e=n(5988),B=n(7466),c=n(7067),C=n(4590),Q=n(4948),M=n(2597),Y=n(648),v=n(111),p=n(2190),I=n(30),y=n(7976),U=n(7674),S=n(8006).f,b=n(7321),O=n(2092).forEach,J=n(6340),sA=n(3070),uA=n(1236),X=n(9909),cA=n(9587),pA=X.get,dA=X.set,DA=sA.f,gA=uA.f,QA=Math.round,yA=o.RangeError,Z=E.ArrayBuffer,CA=Z.prototype,nA=E.DataView,lA=f.NATIVE_ARRAY_BUFFER_VIEWS,FA=f.TYPED_ARRAY_CONSTRUCTOR,bA=f.TYPED_ARRAY_TAG,HA=f.TypedArray,q=f.TypedArrayPrototype,z=f.aTypedArrayConstructor,$=f.isTypedArray,K="BYTES_PER_ELEMENT",fA="Wrong length",IA=function(YA,it){z(YA);for(var mt=0,Mt=it.length,dt=new YA(Mt);Mt>mt;)dt[mt]=it[mt++];return dt},oA=function(YA,it){DA(YA,it,{get:function(){return pA(this)[it]}})},hA=function(YA){var it;return y(CA,YA)||"ArrayBuffer"==(it=Y(YA))||"SharedArrayBuffer"==it},zA=function(YA,it){return $(YA)&&!p(it)&&it in YA&&e(+it)&&it>=0},tt=function(it,mt){return mt=Q(mt),zA(it,mt)?r(2,it[mt]):gA(it,mt)},lt=function(it,mt,Mt){return mt=Q(mt),!(zA(it,mt)&&v(Mt)&&M(Mt,"value"))||M(Mt,"get")||M(Mt,"set")||Mt.configurable||M(Mt,"writable")&&!Mt.writable||M(Mt,"enumerable")&&!Mt.enumerable?DA(it,mt,Mt):(it[mt]=Mt.value,it)};l?(lA||(uA.f=tt,sA.f=lt,oA(q,"buffer"),oA(q,"byteOffset"),oA(q,"byteLength"),oA(q,"length")),u({target:"Object",stat:!0,forced:!lA},{getOwnPropertyDescriptor:tt,defineProperty:lt}),T.exports=function(YA,it,mt){var Mt=YA.match(/\d+$/)[0]/8,dt=YA+(mt?"Clamped":"")+"Array",OA="get"+YA,et="set"+YA,st=o[dt],ot=st,Et=ot&&ot.prototype,ut={},L=function(H,x){DA(H,x,{get:function(){return function(H,x){var wA=pA(H);return wA.view[OA](x*Mt+wA.byteOffset,!0)}(this,x)},set:function(wA){return function(H,x,wA){var EA=pA(H);mt&&(wA=(wA=QA(wA))<0?0:wA>255?255:255&wA),EA.view[et](x*Mt+EA.byteOffset,wA,!0)}(this,x,wA)},enumerable:!0})};lA?g&&(ot=it(function(H,x,wA,EA){return h(H,Et),cA(v(x)?hA(x)?void 0!==EA?new st(x,C(wA,Mt),EA):void 0!==wA?new st(x,C(wA,Mt)):new st(x):$(x)?IA(ot,x):s(b,ot,x):new st(c(x)),H,ot)}),U&&U(ot,HA),O(S(st),function(H){H in ot||w(ot,H,st[H])}),ot.prototype=Et):(ot=it(function(H,x,wA,EA){h(H,Et);var rt,yt,j,NA=0,eA=0;if(v(x)){if(!hA(x))return $(x)?IA(ot,x):s(b,ot,x);rt=x,eA=C(wA,Mt);var VA=x.byteLength;if(void 0===EA){if(VA%Mt||(yt=VA-eA)<0)throw yA(fA)}else if((yt=B(EA)*Mt)+eA>VA)throw yA(fA);j=yt/Mt}else j=c(x),rt=new Z(yt=j*Mt);for(dA(H,{buffer:rt,byteOffset:eA,byteLength:yt,length:j,view:new nA(rt)});NA1?arguments[1]:void 0,M=void 0!==Q,Y=E(c);if(Y&&!h(Y))for(S=(U=f(c,Y)).next,c=[];!(y=o(S,U)).done;)c.push(y.value);for(M&&C>2&&(Q=u(Q,arguments[2])),p=g(c),I=new(r(B))(p),v=0;p>v;v++)I[v]=M?Q(c[v],v):c[v];return I}},6304:function(T,A,n){var u=n(2094),o=n(6707),s=u.TYPED_ARRAY_CONSTRUCTOR,l=u.aTypedArrayConstructor;T.exports=function(g){return l(o(g,g[s]))}},9711:function(T,A,n){var u=n(1702),o=0,s=Math.random(),l=u(1..toString);T.exports=function(g){return"Symbol("+(void 0===g?"":g)+")_"+l(++o+s,36)}},3307:function(T,A,n){var u=n(133);T.exports=u&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},6061:function(T,A,n){var u=n(5112);A.f=u},5112:function(T,A,n){var u=n(7854),o=n(2309),s=n(2597),l=n(9711),g=n(133),f=n(3307),E=o("wks"),h=u.Symbol,r=h&&h.for,w=f?h:h&&h.withoutSetter||l;T.exports=function(e){if(!s(E,e)||!g&&"string"!=typeof E[e]){var B="Symbol."+e;E[e]=g&&s(h,e)?h[e]:f&&r?r(B):w(B)}return E[e]}},1361:function(T){T.exports="\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},9170:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(7976),l=n(9518),g=n(7674),f=n(9920),E=n(30),h=n(8880),r=n(9114),w=n(7741),e=n(8340),B=n(408),c=n(6277),C=n(2914),Q=o.Error,M=[].push,Y=function(I,y){var U=s(v,this)?this:E(v),S=arguments.length>2?arguments[2]:void 0;g&&(U=g(new Q(void 0),l(U))),h(U,"message",c(y,"")),C&&h(U,"stack",w(U.stack,1)),e(U,S);var b=[];return B(I,M,{that:b}),h(U,"errors",b),U};g?g(Y,Q):f(Y,Q);var v=Y.prototype=E(Q.prototype,{constructor:r(1,Y),message:r(1,""),name:r(1,"AggregateError")});u({global:!0},{AggregateError:Y})},2222:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(7293),l=n(3157),g=n(111),f=n(7908),E=n(6244),h=n(6135),r=n(5417),w=n(1194),e=n(5112),B=n(7392),c=e("isConcatSpreadable"),C=9007199254740991,Q="Maximum allowed index exceeded",M=o.TypeError,Y=B>=51||!s(function(){var y=[];return y[c]=!1,y.concat()[0]!==y}),v=w("concat"),p=function(y){if(!g(y))return!1;var U=y[c];return void 0!==U?!!U:l(y)};u({target:"Array",proto:!0,forced:!Y||!v},{concat:function(U){var J,sA,uA,X,cA,S=f(this),b=r(S,0),O=0;for(J=-1,uA=arguments.length;JC)throw M(Q);for(sA=0;sA=C)throw M(Q);h(b,O++,cA)}return b.length=O,b}})},545:function(T,A,n){var u=n(2109),o=n(1048),s=n(1223);u({target:"Array",proto:!0},{copyWithin:o}),s("copyWithin")},3290:function(T,A,n){var u=n(2109),o=n(1285),s=n(1223);u({target:"Array",proto:!0},{fill:o}),s("fill")},7327:function(T,A,n){"use strict";var u=n(2109),o=n(2092).filter;u({target:"Array",proto:!0,forced:!n(1194)("filter")},{filter:function(f){return o(this,f,arguments.length>1?arguments[1]:void 0)}})},1038:function(T,A,n){var u=n(2109),o=n(8457);u({target:"Array",stat:!0,forced:!n(7072)(function(g){Array.from(g)})},{from:o})},6699:function(T,A,n){"use strict";var u=n(2109),o=n(1318).includes,s=n(1223);u({target:"Array",proto:!0},{includes:function(g){return o(this,g,arguments.length>1?arguments[1]:void 0)}}),s("includes")},6992:function(T,A,n){"use strict";var u=n(5656),o=n(1223),s=n(7497),l=n(9909),g=n(654),f="Array Iterator",E=l.set,h=l.getterFor(f);T.exports=g(Array,"Array",function(r,w){E(this,{type:f,target:u(r),index:0,kind:w})},function(){var r=h(this),w=r.target,e=r.kind,B=r.index++;return!w||B>=w.length?(r.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:B,done:!1}:"values"==e?{value:w[B],done:!1}:{value:[B,w[B]],done:!1}},"values"),s.Arguments=s.Array,o("keys"),o("values"),o("entries")},9600:function(T,A,n){"use strict";var u=n(2109),o=n(1702),s=n(8361),l=n(5656),g=n(9341),f=o([].join),E=s!=Object,h=g("join",",");u({target:"Array",proto:!0,forced:E||!h},{join:function(w){return f(l(this),void 0===w?",":w)}})},1249:function(T,A,n){"use strict";var u=n(2109),o=n(2092).map;u({target:"Array",proto:!0,forced:!n(1194)("map")},{map:function(f){return o(this,f,arguments.length>1?arguments[1]:void 0)}})},7042:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(3157),l=n(4411),g=n(111),f=n(1400),E=n(6244),h=n(5656),r=n(6135),w=n(5112),e=n(1194),B=n(206),c=e("slice"),C=w("species"),Q=o.Array,M=Math.max;u({target:"Array",proto:!0,forced:!c},{slice:function(v,p){var b,O,J,I=h(this),y=E(I),U=f(v,y),S=f(void 0===p?y:p,y);if(s(I)&&((l(b=I.constructor)&&(b===Q||s(b.prototype))||g(b)&&null===(b=b[C]))&&(b=void 0),b===Q||void 0===b))return B(I,U,S);for(O=new(void 0===b?Q:b)(M(S-U,0)),J=0;U3)){if(e)return!0;if(c)return c<603;var b,O,J,sA,S="";for(b=65;b<76;b++){switch(O=String.fromCharCode(b),b){case 66:case 69:case 70:case 72:J=3;break;case 68:case 71:J=4;break;default:J=2}for(sA=0;sA<47;sA++)C.push({k:O+sA,v:J})}for(C.sort(function(uA,X){return X.v-uA.v}),sA=0;sAf(O)?1:-1}}(b)),uA=J.length,X=0;XC)throw e(Q);for(O=E(p,b),J=0;JI-b+S;J--)delete p[J-1]}else if(S>b)for(J=I-b;J>y;J--)uA=J+S-1,(sA=J+b-1)in p?p[uA]=p[sA]:delete p[uA];for(J=0;J2)if(cA=M(cA),43===(pA=U(cA,0))||45===pA){if(88===(dA=U(cA,2))||120===dA)return NaN}else if(48===pA){switch(U(cA,1)){case 66:case 98:DA=2,gA=49;break;case 79:case 111:DA=8,gA=55;break;default:return+cA}for(yA=(QA=y(cA,2)).length,Z=0;ZgA)return NaN;return parseInt(QA,DA)}return+cA};if(l(Y,!v(" 0o1")||!v("0b1")||v("+0x1"))){for(var uA,O=function(cA){var pA=arguments.length<1?0:v(S(cA)),dA=this;return h(p,dA)&&e(function(){Q(dA)})?E(Object(pA),dA,O):pA},J=u?B(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),sA=0;J.length>sA;sA++)f(v,uA=J[sA])&&!f(O,uA)&&C(O,uA,c(v,uA));O.prototype=p,p.constructor=O,g(o,Y,O)}},3299:function(T,A,n){n(2109)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},5192:function(T,A,n){n(2109)({target:"Number",stat:!0},{isFinite:n(7023)})},3161:function(T,A,n){n(2109)({target:"Number",stat:!0},{isInteger:n(5988)})},6977:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(1702),l=n(9303),g=n(863),f=n(8415),E=n(7293),h=o.RangeError,r=o.String,w=Math.floor,e=s(f),B=s("".slice),c=s(1..toFixed),C=function(I,y,U){return 0===y?U:y%2==1?C(I,y-1,U*I):C(I*I,y/2,U)},M=function(I,y,U){for(var S=-1,b=U;++S<6;)I[S]=(b+=y*I[S])%1e7,b=w(b/1e7)},Y=function(I,y){for(var U=6,S=0;--U>=0;)I[U]=w((S+=I[U])/y),S=S%y*1e7},v=function(I){for(var y=6,U="";--y>=0;)if(""!==U||0===y||0!==I[y]){var S=r(I[y]);U=""===U?S:U+e("0",7-S.length)+S}return U};u({target:"Number",proto:!0,forced:E(function(){return"0.000"!==c(8e-5,3)||"1"!==c(.9,0)||"1.25"!==c(1.255,2)||"1000000000000000128"!==c(0xde0b6b3a7640080,0)})||!E(function(){c({})})},{toFixed:function(y){var sA,uA,X,cA,U=g(this),S=l(y),b=[0,0,0,0,0,0],O="",J="0";if(S<0||S>20)throw h("Incorrect fraction digits");if(U!=U)return"NaN";if(U<=-1e21||U>=1e21)return r(U);if(U<0&&(O="-",U=-U),U>1e-21)if(uA=(sA=function(I){for(var y=0,U=I;U>=4096;)y+=12,U/=4096;for(;U>=2;)y+=1,U/=2;return y}(U*C(2,69,1))-69)<0?U*C(2,-sA,1):U/C(2,sA,1),uA*=4503599627370496,(sA=52-sA)>0){for(M(b,0,uA),X=S;X>=7;)M(b,1e7,0),X-=7;for(M(b,C(10,X,1),0),X=sA-1;X>=23;)Y(b,8388608),X-=23;Y(b,1<0?O+((cA=J.length)<=S?"0."+e("0",S-cA)+J:B(J,0,cA-S)+"."+B(J,cA-S)):O+J}})},9601:function(T,A,n){var u=n(2109),o=n(1574);u({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},3371:function(T,A,n){var u=n(2109),o=n(6677),s=n(7293),l=n(111),g=n(2423).onFreeze,f=Object.freeze;u({target:"Object",stat:!0,forced:s(function(){f(1)}),sham:!o},{freeze:function(r){return f&&l(r)?f(g(r)):r}})},5003:function(T,A,n){var u=n(2109),o=n(7293),s=n(5656),l=n(1236).f,g=n(9781),f=o(function(){l(1)});u({target:"Object",stat:!0,forced:!g||f,sham:!g},{getOwnPropertyDescriptor:function(r,w){return l(s(r),w)}})},9337:function(T,A,n){var u=n(2109),o=n(9781),s=n(3887),l=n(5656),g=n(1236),f=n(6135);u({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(h){for(var C,Q,r=l(h),w=g.f,e=s(r),B={},c=0;e.length>c;)void 0!==(Q=w(r,C=e[c++]))&&f(B,C,Q);return B}})},489:function(T,A,n){var u=n(2109),o=n(7293),s=n(7908),l=n(9518),g=n(8544);u({target:"Object",stat:!0,forced:o(function(){l(1)}),sham:!g},{getPrototypeOf:function(h){return l(s(h))}})},7941:function(T,A,n){var u=n(2109),o=n(7908),s=n(1956);u({target:"Object",stat:!0,forced:n(7293)(function(){s(1)})},{keys:function(E){return s(o(E))}})},1539:function(T,A,n){var u=n(1694),o=n(1320),s=n(288);u||o(Object.prototype,"toString",s,{unsafe:!0})},2479:function(T,A,n){var u=n(2109),o=n(4699).values;u({target:"Object",stat:!0},{values:function(l){return o(l)}})},7922:function(T,A,n){"use strict";var u=n(2109),o=n(6916),s=n(9662),l=n(8523),g=n(2534),f=n(408);u({target:"Promise",stat:!0},{allSettled:function(h){var r=this,w=l.f(r),e=w.resolve,B=w.reject,c=g(function(){var C=s(r.resolve),Q=[],M=0,Y=1;f(h,function(v){var p=M++,I=!1;Y++,o(C,r,v).then(function(y){I||(I=!0,Q[p]={status:"fulfilled",value:y},--Y||e(Q))},function(y){I||(I=!0,Q[p]={status:"rejected",reason:y},--Y||e(Q))})}),--Y||e(Q)});return c.error&&B(c.value),w.promise}})},4668:function(T,A,n){"use strict";var u=n(2109),o=n(9662),s=n(5005),l=n(6916),g=n(8523),f=n(2534),E=n(408),h="No one promise resolved";u({target:"Promise",stat:!0},{any:function(w){var e=this,B=s("AggregateError"),c=g.f(e),C=c.resolve,Q=c.reject,M=f(function(){var Y=o(e.resolve),v=[],p=0,I=1,y=!1;E(w,function(U){var S=p++,b=!1;I++,l(Y,e,U).then(function(O){b||y||(y=!0,C(O))},function(O){b||y||(b=!0,v[S]=O,--I||Q(new B(v,h)))})}),--I||Q(new B(v,h))});return M.error&&Q(M.value),c.promise}})},7727:function(T,A,n){"use strict";var u=n(2109),o=n(1913),s=n(3366),l=n(7293),g=n(5005),f=n(614),E=n(6707),h=n(9478),r=n(1320);if(u({target:"Promise",proto:!0,real:!0,forced:!!s&&l(function(){s.prototype.finally.call({then:function(){}},function(){})})},{finally:function(B){var c=E(this,g("Promise")),C=f(B);return this.then(C?function(Q){return h(c,B()).then(function(){return Q})}:B,C?function(Q){return h(c,B()).then(function(){throw Q})}:B)}}),!o&&f(s)){var e=g("Promise").prototype.finally;s.prototype.finally!==e&&r(s.prototype,"finally",e,{unsafe:!0})}},8674:function(T,A,n){"use strict";var YA,it,mt,Mt,u=n(2109),o=n(1913),s=n(7854),l=n(5005),g=n(6916),f=n(3366),E=n(1320),h=n(2248),r=n(7674),w=n(8003),e=n(6340),B=n(9662),c=n(614),C=n(111),Q=n(5787),M=n(2788),Y=n(408),v=n(7072),p=n(6707),I=n(261).set,y=n(5948),U=n(9478),S=n(842),b=n(8523),O=n(2534),J=n(9909),sA=n(4705),uA=n(5112),X=n(7871),cA=n(5268),pA=n(7392),dA=uA("species"),DA="Promise",gA=J.get,QA=J.set,yA=J.getterFor(DA),Z=f&&f.prototype,CA=f,nA=Z,lA=s.TypeError,FA=s.document,bA=s.process,HA=b.f,q=HA,z=!!(FA&&FA.createEvent&&s.dispatchEvent),$=c(s.PromiseRejectionEvent),K="unhandledrejection",lt=!1,dt=sA(DA,function(){var x=M(CA),wA=x!==String(CA);if(!wA&&66===pA||o&&!nA.finally)return!0;if(pA>=51&&/native code/.test(x))return!1;var EA=new CA(function(rt){rt(1)}),NA=function(rt){rt(function(){},function(){})};return(EA.constructor={})[dA]=NA,!(lt=EA.then(function(){})instanceof NA)||!wA&&X&&!$}),OA=dt||!v(function(x){CA.all(x).catch(function(){})}),et=function(x){var wA;return!(!C(x)||!c(wA=x.then))&&wA},st=function(x,wA){if(!x.notified){x.notified=!0;var EA=x.reactions;y(function(){for(var NA=x.value,eA=1==x.state,rt=0;EA.length>rt;){var kA,qA,Ut,yt=EA[rt++],j=eA?yt.ok:yt.fail,VA=yt.resolve,_A=yt.reject,vA=yt.domain;try{j?(eA||(2===x.rejection&&TA(x),x.rejection=1),!0===j?kA=NA:(vA&&vA.enter(),kA=j(NA),vA&&(vA.exit(),Ut=!0)),kA===yt.promise?_A(lA("Promise-chain cycle")):(qA=et(kA))?g(qA,kA,VA,_A):VA(kA)):_A(NA)}catch(It){vA&&!Ut&&vA.exit(),_A(It)}}x.reactions=[],x.notified=!1,wA&&!x.rejection&&Et(x)})}},ot=function(x,wA,EA){var NA,eA;z?((NA=FA.createEvent("Event")).promise=wA,NA.reason=EA,NA.initEvent(x,!1,!0),s.dispatchEvent(NA)):NA={promise:wA,reason:EA},!$&&(eA=s["on"+x])?eA(NA):x===K&&S("Unhandled promise rejection",EA)},Et=function(x){g(I,s,function(){var eA,wA=x.facade,EA=x.value;if(ut(x)&&(eA=O(function(){cA?bA.emit("unhandledRejection",EA,wA):ot(K,wA,EA)}),x.rejection=cA||ut(x)?2:1,eA.error))throw eA.value})},ut=function(x){return 1!==x.rejection&&!x.parent},TA=function(x){g(I,s,function(){var wA=x.facade;cA?bA.emit("rejectionHandled",wA):ot("rejectionhandled",wA,x.value)})},Ft=function(x,wA,EA){return function(NA){x(wA,NA,EA)}},L=function(x,wA,EA){x.done||(x.done=!0,EA&&(x=EA),x.value=wA,x.state=2,st(x,!0))},H=function(x,wA,EA){if(!x.done){x.done=!0,EA&&(x=EA);try{if(x.facade===wA)throw lA("Promise can't be resolved itself");var NA=et(wA);NA?y(function(){var eA={done:!1};try{g(NA,wA,Ft(H,eA,x),Ft(L,eA,x))}catch(rt){L(eA,rt,x)}}):(x.value=wA,x.state=1,st(x,!1))}catch(eA){L({done:!1},eA,x)}}};if(dt&&(CA=function(wA){Q(this,nA),B(wA),g(YA,this);var EA=gA(this);try{wA(Ft(H,EA),Ft(L,EA))}catch(NA){L(EA,NA)}},(YA=function(wA){QA(this,{type:DA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=h(nA=CA.prototype,{then:function(wA,EA){var NA=yA(this),eA=NA.reactions,rt=HA(p(this,CA));return rt.ok=!c(wA)||wA,rt.fail=c(EA)&&EA,rt.domain=cA?bA.domain:void 0,NA.parent=!0,eA[eA.length]=rt,0!=NA.state&&st(NA,!1),rt.promise},catch:function(x){return this.then(void 0,x)}}),it=function(){var x=new YA,wA=gA(x);this.promise=x,this.resolve=Ft(H,wA),this.reject=Ft(L,wA)},b.f=HA=function(x){return x===CA||x===mt?new it(x):q(x)},!o&&c(f)&&Z!==Object.prototype)){Mt=Z.then,lt||(E(Z,"then",function(wA,EA){var NA=this;return new CA(function(eA,rt){g(Mt,NA,eA,rt)}).then(wA,EA)},{unsafe:!0}),E(Z,"catch",nA.catch,{unsafe:!0}));try{delete Z.constructor}catch(x){}r&&r(Z,nA)}u({global:!0,wrap:!0,forced:dt},{Promise:CA}),w(CA,DA,!1,!0),e(DA),mt=l(DA),u({target:DA,stat:!0,forced:dt},{reject:function(wA){var EA=HA(this);return g(EA.reject,void 0,wA),EA.promise}}),u({target:DA,stat:!0,forced:o||dt},{resolve:function(wA){return U(o&&this===mt?CA:this,wA)}}),u({target:DA,stat:!0,forced:OA},{all:function(wA){var EA=this,NA=HA(EA),eA=NA.resolve,rt=NA.reject,yt=O(function(){var j=B(EA.resolve),VA=[],_A=0,vA=1;Y(wA,function(kA){var qA=_A++,Ut=!1;vA++,g(j,EA,kA).then(function(It){Ut||(Ut=!0,VA[qA]=It,--vA||eA(VA))},rt)}),--vA||eA(VA)});return yt.error&&rt(yt.value),NA.promise},race:function(wA){var EA=this,NA=HA(EA),eA=NA.reject,rt=O(function(){var yt=B(EA.resolve);Y(wA,function(j){g(yt,EA,j).then(NA.resolve,eA)})});return rt.error&&eA(rt.value),NA.promise}})},2419:function(T,A,n){var u=n(2109),o=n(5005),s=n(2104),l=n(7065),g=n(9483),f=n(9670),E=n(111),h=n(30),r=n(7293),w=o("Reflect","construct"),e=Object.prototype,B=[].push,c=r(function(){function M(){}return!(w(function(){},[],M)instanceof M)}),C=!r(function(){w(function(){})}),Q=c||C;u({target:"Reflect",stat:!0,forced:Q,sham:Q},{construct:function(Y,v){g(Y),f(v);var p=arguments.length<3?Y:g(arguments[2]);if(C&&!c)return w(Y,v,p);if(Y==p){switch(v.length){case 0:return new Y;case 1:return new Y(v[0]);case 2:return new Y(v[0],v[1]);case 3:return new Y(v[0],v[1],v[2]);case 4:return new Y(v[0],v[1],v[2],v[3])}var I=[null];return s(B,I,v),new(s(l,Y,I))}var y=p.prototype,U=h(E(y)?y:e),S=s(Y,U,v);return E(S)?S:U}})},4916:function(T,A,n){"use strict";var u=n(2109),o=n(2261);u({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},2087:function(T,A,n){var u=n(9781),o=n(3070),s=n(7066),l=n(7293),g=RegExp.prototype;u&&l(function(){return"sy"!==Object.getOwnPropertyDescriptor(g,"flags").get.call({dotAll:!0,sticky:!0})})&&o.f(g,"flags",{configurable:!0,get:s})},9714:function(T,A,n){"use strict";var u=n(1702),o=n(6530).PROPER,s=n(1320),l=n(9670),g=n(7976),f=n(1340),E=n(7293),h=n(7066),r="toString",w=RegExp.prototype,e=w[r],B=u(h);(E(function(){return"/a/b"!=e.call({source:"a",flags:"b"})})||o&&e.name!=r)&&s(RegExp.prototype,r,function(){var M=l(this),Y=f(M.source),v=M.flags;return"/"+Y+"/"+f(void 0===v&&g(w,M)&&!("flags"in w)?B(M):v)},{unsafe:!0})},189:function(T,A,n){"use strict";n(7710)("Set",function(s){return function(){return s(this,arguments.length?arguments[0]:void 0)}},n(5631))},9841:function(T,A,n){"use strict";var u=n(2109),o=n(8710).codeAt;u({target:"String",proto:!0},{codePointAt:function(l){return o(this,l)}})},4953:function(T,A,n){var u=n(2109),o=n(7854),s=n(1702),l=n(1400),g=o.RangeError,f=String.fromCharCode,E=String.fromCodePoint,h=s([].join);u({target:"String",stat:!0,forced:!!E&&1!=E.length},{fromCodePoint:function(e){for(var Q,B=[],c=arguments.length,C=0;c>C;){if(Q=+arguments[C++],l(Q,1114111)!==Q)throw g(Q+" is not a valid code point");B[C]=Q<65536?f(Q):f(55296+((Q-=65536)>>10),Q%1024+56320)}return h(B,"")}})},2023:function(T,A,n){"use strict";var u=n(2109),o=n(1702),s=n(3929),l=n(4488),g=n(1340),f=n(4964),E=o("".indexOf);u({target:"String",proto:!0,forced:!f("includes")},{includes:function(r){return!!~E(g(l(this)),g(s(r)),arguments.length>1?arguments[1]:void 0)}})},8734:function(T,A,n){"use strict";var u=n(2109),o=n(4230);u({target:"String",proto:!0,forced:n(3429)("italics")},{italics:function(){return o(this,"i","","")}})},8783:function(T,A,n){"use strict";var u=n(8710).charAt,o=n(1340),s=n(9909),l=n(654),g="String Iterator",f=s.set,E=s.getterFor(g);l(String,"String",function(h){f(this,{type:g,string:o(h),index:0})},function(){var B,r=E(this),w=r.string,e=r.index;return e>=w.length?{value:void 0,done:!0}:(B=u(w,e),r.index+=B.length,{value:B,done:!1})})},9254:function(T,A,n){"use strict";var u=n(2109),o=n(4230);u({target:"String",proto:!0,forced:n(3429)("link")},{link:function(g){return o(this,"a","href",g)}})},6373:function(T,A,n){"use strict";var u=n(2109),o=n(7854),s=n(6916),l=n(1702),g=n(4994),f=n(4488),E=n(7466),h=n(1340),r=n(9670),w=n(4326),e=n(7976),B=n(7850),c=n(7066),C=n(8173),Q=n(1320),M=n(7293),Y=n(5112),v=n(6707),p=n(1530),I=n(7651),y=n(9909),U=n(1913),S=Y("matchAll"),b="RegExp String",O=b+" Iterator",J=y.set,sA=y.getterFor(O),uA=RegExp.prototype,X=o.TypeError,cA=l(c),pA=l("".indexOf),dA=l("".matchAll),DA=!!dA&&!M(function(){dA("a",/./)}),gA=g(function(Z,CA,nA,lA){J(this,{type:O,regexp:Z,string:CA,global:nA,unicode:lA,done:!1})},b,function(){var Z=sA(this);if(Z.done)return{value:void 0,done:!0};var CA=Z.regexp,nA=Z.string,lA=I(CA,nA);return null===lA?{value:void 0,done:Z.done=!0}:Z.global?(""===h(lA[0])&&(CA.lastIndex=p(nA,E(CA.lastIndex),Z.unicode)),{value:lA,done:!1}):(Z.done=!0,{value:lA,done:!1})}),QA=function(yA){var nA,lA,FA,bA,HA,q,Z=r(this),CA=h(yA);return nA=v(Z,RegExp),void 0===(lA=Z.flags)&&e(uA,Z)&&!("flags"in uA)&&(lA=cA(Z)),FA=void 0===lA?"":h(lA),bA=new nA(nA===RegExp?Z.source:Z,FA),HA=!!~pA(FA,"g"),q=!!~pA(FA,"u"),bA.lastIndex=E(Z.lastIndex),new gA(bA,CA,HA,q)};u({target:"String",proto:!0,forced:DA},{matchAll:function(Z){var nA,lA,FA,bA,CA=f(this);if(null!=Z){if(B(Z)&&(nA=h(f("flags"in uA?Z.flags:cA(Z))),!~pA(nA,"g")))throw X("`.matchAll` does not allow non-global regexes");if(DA)return dA(CA,Z);if(void 0===(FA=C(Z,S))&&U&&"RegExp"==w(Z)&&(FA=QA),FA)return s(FA,Z,CA)}else if(DA)return dA(CA,Z);return lA=h(CA),bA=new RegExp(Z,"g"),U?s(QA,bA,lA):bA[S](lA)}}),U||S in uA||Q(uA,S,QA)},4723:function(T,A,n){"use strict";var u=n(6916),o=n(7007),s=n(9670),l=n(7466),g=n(1340),f=n(4488),E=n(8173),h=n(1530),r=n(7651);o("match",function(w,e,B){return[function(C){var Q=f(this),M=null==C?void 0:E(C,w);return M?u(M,C,Q):new RegExp(C)[w](g(Q))},function(c){var C=s(this),Q=g(c),M=B(e,C,Q);if(M.done)return M.value;if(!C.global)return r(C,Q);var Y=C.unicode;C.lastIndex=0;for(var I,v=[],p=0;null!==(I=r(C,Q));){var y=g(I[0]);v[p]=y,""===y&&(C.lastIndex=h(Q,l(C.lastIndex),Y)),p++}return 0===p?null:v}]})},2481:function(T,A,n){n(2109)({target:"String",proto:!0},{repeat:n(8415)})},5306:function(T,A,n){"use strict";var u=n(2104),o=n(6916),s=n(1702),l=n(7007),g=n(7293),f=n(9670),E=n(614),h=n(9303),r=n(7466),w=n(1340),e=n(4488),B=n(1530),c=n(8173),C=n(647),Q=n(7651),Y=n(5112)("replace"),v=Math.max,p=Math.min,I=s([].concat),y=s([].push),U=s("".indexOf),S=s("".slice),b=function(uA){return void 0===uA?uA:String(uA)},O="$0"==="a".replace(/./,"$0"),J=!!/./[Y]&&""===/./[Y]("a","$0");l("replace",function(uA,X,cA){var pA=J?"$":"$0";return[function(DA,gA){var QA=e(this),yA=null==DA?void 0:c(DA,Y);return yA?o(yA,DA,QA,gA):o(X,w(QA),DA,gA)},function(dA,DA){var gA=f(this),QA=w(dA);if("string"==typeof DA&&-1===U(DA,pA)&&-1===U(DA,"$<")){var yA=cA(X,gA,QA,DA);if(yA.done)return yA.value}var Z=E(DA);Z||(DA=w(DA));var CA=gA.global;if(CA){var nA=gA.unicode;gA.lastIndex=0}for(var lA=[];;){var FA=Q(gA,QA);if(null===FA||(y(lA,FA),!CA))break;""===w(FA[0])&&(gA.lastIndex=B(QA,r(gA.lastIndex),nA))}for(var HA="",q=0,z=0;z=q&&(HA+=S(QA,q,K)+zA,q=K+$.length)}return HA+S(QA,q)}]},!!g(function(){var uA=/./;return uA.exec=function(){var X=[];return X.groups={a:"7"},X},"7"!=="".replace(uA,"$")})||!O||J)},3123:function(T,A,n){"use strict";var u=n(2104),o=n(6916),s=n(1702),l=n(7007),g=n(7850),f=n(9670),E=n(4488),h=n(6707),r=n(1530),w=n(7466),e=n(1340),B=n(8173),c=n(206),C=n(7651),Q=n(2261),M=n(2999),Y=n(7293),v=M.UNSUPPORTED_Y,p=4294967295,I=Math.min,y=[].push,U=s(/./.exec),S=s(y),b=s("".slice),O=!Y(function(){var J=/(?:)/,sA=J.exec;J.exec=function(){return sA.apply(this,arguments)};var uA="ab".split(J);return 2!==uA.length||"a"!==uA[0]||"b"!==uA[1]});l("split",function(J,sA,uA){var X;return X="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(cA,pA){var dA=e(E(this)),DA=void 0===pA?p:pA>>>0;if(0===DA)return[];if(void 0===cA)return[dA];if(!g(cA))return o(sA,dA,cA,DA);for(var CA,nA,lA,gA=[],yA=0,Z=new RegExp(cA.source,(cA.ignoreCase?"i":"")+(cA.multiline?"m":"")+(cA.unicode?"u":"")+(cA.sticky?"y":"")+"g");(CA=o(Q,Z,dA))&&!((nA=Z.lastIndex)>yA&&(S(gA,b(dA,yA,CA.index)),CA.length>1&&CA.index=DA));)Z.lastIndex===CA.index&&Z.lastIndex++;return yA===dA.length?(lA||!U(Z,""))&&S(gA,""):S(gA,b(dA,yA)),gA.length>DA?c(gA,0,DA):gA}:"0".split(void 0,0).length?function(cA,pA){return void 0===cA&&0===pA?[]:o(sA,this,cA,pA)}:sA,[function(pA,dA){var DA=E(this),gA=null==pA?void 0:B(pA,J);return gA?o(gA,pA,DA,dA):o(X,e(DA),pA,dA)},function(cA,pA){var dA=f(this),DA=e(cA),gA=uA(X,dA,DA,pA,X!==sA);if(gA.done)return gA.value;var QA=h(dA,RegExp),yA=dA.unicode,CA=new QA(v?"^(?:"+dA.source+")":dA,(dA.ignoreCase?"i":"")+(dA.multiline?"m":"")+(dA.unicode?"u":"")+(v?"g":"y")),nA=void 0===pA?p:pA>>>0;if(0===nA)return[];if(0===DA.length)return null===C(CA,DA)?[DA]:[];for(var lA=0,FA=0,bA=[];FA2?arguments[2]:void 0)})},8927:function(T,A,n){"use strict";var u=n(2094),o=n(2092).every,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("every",function(f){return o(s(this),f,arguments.length>1?arguments[1]:void 0)})},3105:function(T,A,n){"use strict";var u=n(2094),o=n(6916),s=n(1285),l=u.aTypedArray;(0,u.exportTypedArrayMethod)("fill",function(E){var h=arguments.length;return o(s,l(this),E,h>1?arguments[1]:void 0,h>2?arguments[2]:void 0)})},5035:function(T,A,n){"use strict";var u=n(2094),o=n(2092).filter,s=n(3074),l=u.aTypedArray;(0,u.exportTypedArrayMethod)("filter",function(E){var h=o(l(this),E,arguments.length>1?arguments[1]:void 0);return s(this,h)})},7174:function(T,A,n){"use strict";var u=n(2094),o=n(2092).findIndex,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("findIndex",function(f){return o(s(this),f,arguments.length>1?arguments[1]:void 0)})},4345:function(T,A,n){"use strict";var u=n(2094),o=n(2092).find,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("find",function(f){return o(s(this),f,arguments.length>1?arguments[1]:void 0)})},4197:function(T,A,n){n(9843)("Float32",function(o){return function(l,g,f){return o(this,l,g,f)}})},6495:function(T,A,n){n(9843)("Float64",function(o){return function(l,g,f){return o(this,l,g,f)}})},2846:function(T,A,n){"use strict";var u=n(2094),o=n(2092).forEach,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("forEach",function(f){o(s(this),f,arguments.length>1?arguments[1]:void 0)})},8145:function(T,A,n){"use strict";var u=n(3832);(0,n(2094).exportTypedArrayStaticMethod)("from",n(7321),u)},4731:function(T,A,n){"use strict";var u=n(2094),o=n(1318).includes,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("includes",function(f){return o(s(this),f,arguments.length>1?arguments[1]:void 0)})},7209:function(T,A,n){"use strict";var u=n(2094),o=n(1318).indexOf,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("indexOf",function(f){return o(s(this),f,arguments.length>1?arguments[1]:void 0)})},5109:function(T,A,n){n(9843)("Int16",function(o){return function(l,g,f){return o(this,l,g,f)}})},5125:function(T,A,n){n(9843)("Int32",function(o){return function(l,g,f){return o(this,l,g,f)}})},7145:function(T,A,n){n(9843)("Int8",function(o){return function(l,g,f){return o(this,l,g,f)}})},6319:function(T,A,n){"use strict";var u=n(7854),o=n(1702),s=n(6530).PROPER,l=n(2094),g=n(6992),E=n(5112)("iterator"),h=u.Uint8Array,r=o(g.values),w=o(g.keys),e=o(g.entries),B=l.aTypedArray,c=l.exportTypedArrayMethod,C=h&&h.prototype[E],Q=!!C&&"values"===C.name,M=function(){return r(B(this))};c("entries",function(){return e(B(this))}),c("keys",function(){return w(B(this))}),c("values",M,s&&!Q),c(E,M,s&&!Q)},8867:function(T,A,n){"use strict";var u=n(2094),o=n(1702),s=u.aTypedArray,l=u.exportTypedArrayMethod,g=o([].join);l("join",function(E){return g(s(this),E)})},7789:function(T,A,n){"use strict";var u=n(2094),o=n(2104),s=n(6583),l=u.aTypedArray;(0,u.exportTypedArrayMethod)("lastIndexOf",function(E){var h=arguments.length;return o(s,l(this),h>1?[E,arguments[1]]:[E])})},3739:function(T,A,n){"use strict";var u=n(2094),o=n(2092).map,s=n(6304),l=u.aTypedArray;(0,u.exportTypedArrayMethod)("map",function(E){return o(l(this),E,arguments.length>1?arguments[1]:void 0,function(h,r){return new(s(h))(r)})})},4483:function(T,A,n){"use strict";var u=n(2094),o=n(3671).right,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("reduceRight",function(f){var E=arguments.length;return o(s(this),f,E,E>1?arguments[1]:void 0)})},9368:function(T,A,n){"use strict";var u=n(2094),o=n(3671).left,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("reduce",function(f){var E=arguments.length;return o(s(this),f,E,E>1?arguments[1]:void 0)})},2056:function(T,A,n){"use strict";var u=n(2094),o=u.aTypedArray,l=Math.floor;(0,u.exportTypedArrayMethod)("reverse",function(){for(var w,f=this,E=o(f).length,h=l(E/2),r=0;r1?arguments[1]:void 0,1),C=this.length,Q=g(B),M=s(Q),Y=0;if(M+c>C)throw E("Wrong length");for(;Yc;)Q[c]=e[c++];return Q},s(function(){new Int8Array(1).slice()}))},7462:function(T,A,n){"use strict";var u=n(2094),o=n(2092).some,s=u.aTypedArray;(0,u.exportTypedArrayMethod)("some",function(f){return o(s(this),f,arguments.length>1?arguments[1]:void 0)})},3824:function(T,A,n){"use strict";var u=n(7854),o=n(1702),s=n(7293),l=n(9662),g=n(4362),f=n(2094),E=n(8886),h=n(256),r=n(7392),w=n(8008),e=u.Array,B=f.aTypedArray,c=f.exportTypedArrayMethod,C=u.Uint16Array,Q=C&&o(C.prototype.sort),M=!(!Q||s(function(){Q(new C(2),null)})&&s(function(){Q(new C(2),{})})),Y=!!Q&&!s(function(){if(r)return r<74;if(E)return E<67;if(h)return!0;if(w)return w<602;var y,U,p=new C(516),I=e(516);for(y=0;y<516;y++)U=y%4,p[y]=515-y,I[y]=y-2*U+3;for(Q(p,function(S,b){return(S/4|0)-(b/4|0)}),y=0;y<516;y++)if(p[y]!==I[y])return!0});c("sort",function(I){return void 0!==I&&l(I),Y?Q(this,I):g(B(this),(p=I,function(I,y){return void 0!==p?+p(I,y)||0:y!=y?-1:I!=I?1:0===I&&0===y?1/I>0&&1/y<0?1:-1:I>y}));var p},!Y||M)},5021:function(T,A,n){"use strict";var u=n(2094),o=n(7466),s=n(1400),l=n(6304),g=u.aTypedArray;(0,u.exportTypedArrayMethod)("subarray",function(h,r){var w=g(this),e=w.length,B=s(h,e);return new(l(w))(w.buffer,w.byteOffset+B*w.BYTES_PER_ELEMENT,o((void 0===r?e:s(r,e))-B))})},2974:function(T,A,n){"use strict";var u=n(7854),o=n(2104),s=n(2094),l=n(7293),g=n(206),f=u.Int8Array,E=s.aTypedArray,h=s.exportTypedArrayMethod,r=[].toLocaleString,w=!!f&&l(function(){r.call(new f(1))});h("toLocaleString",function(){return o(r,w?g(E(this)):E(this),g(arguments))},l(function(){return[1,2].toLocaleString()!=new f([1,2]).toLocaleString()})||!l(function(){f.prototype.toLocaleString.call([1,2])}))},5016:function(T,A,n){"use strict";var u=n(2094).exportTypedArrayMethod,o=n(7293),s=n(7854),l=n(1702),g=s.Uint8Array,f=g&&g.prototype||{},E=[].toString,h=l([].join);o(function(){E.call({})})&&(E=function(){return h(this)}),u("toString",E,f.toString!=E)},8255:function(T,A,n){n(9843)("Uint16",function(o){return function(l,g,f){return o(this,l,g,f)}})},9135:function(T,A,n){n(9843)("Uint32",function(o){return function(l,g,f){return o(this,l,g,f)}})},2472:function(T,A,n){n(9843)("Uint8",function(o){return function(l,g,f){return o(this,l,g,f)}})},9743:function(T,A,n){n(9843)("Uint8",function(o){return function(l,g,f){return o(this,l,g,f)}},!0)},8628:function(T,A,n){n(9170)},5743:function(T,A,n){n(5837)},7314:function(T,A,n){n(7922)},6290:function(T,A,n){n(4668)},7479:function(T,A,n){"use strict";var u=n(2109),o=n(8523),s=n(2534);u({target:"Promise",stat:!0},{try:function(l){var g=o.f(this),f=s(l);return(f.error?g.reject:g.resolve)(f.value),g.promise}})},3728:function(T,A,n){n(6373)},4747:function(T,A,n){var u=n(7854),o=n(8324),s=n(8509),l=n(8533),g=n(8880),f=function(h){if(h&&h.forEach!==l)try{g(h,"forEach",l)}catch(r){h.forEach=l}};for(var E in o)o[E]&&f(u[E]&&u[E].prototype);f(s)},3948:function(T,A,n){var u=n(7854),o=n(8324),s=n(8509),l=n(6992),g=n(8880),f=n(5112),E=f("iterator"),h=f("toStringTag"),r=l.values,w=function(B,c){if(B){if(B[E]!==r)try{g(B,E,r)}catch(Q){B[E]=r}if(B[h]||g(B,h,c),o[c])for(var C in l)if(B[C]!==l[C])try{g(B,C,l[C])}catch(Q){B[C]=l[C]}}};for(var e in o)w(u[e]&&u[e].prototype,e);w(s,"DOMTokenList")},3753:function(T,A,n){"use strict";var u=n(2109),o=n(6916);u({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return o(URL.prototype.toString,this)}})},1150:function(T,A,n){var u=n(7633);n(3948),T.exports=u},251:function(T,A,n){var u=n(2215),o=n(2584),s=n(609),l=n(8420),g=n(2847),f=n(8923),E=Date.prototype.getTime;function h(B,c,C){var Q=C||{};return!!(Q.strict?s(B,c):B===c)||(!B||!c||"object"!=typeof B&&"object"!=typeof c?Q.strict?s(B,c):B==c:function e(B,c,C){var Q,M;if(typeof B!=typeof c||r(B)||r(c)||B.prototype!==c.prototype||o(B)!==o(c))return!1;var Y=l(B),v=l(c);if(Y!==v)return!1;if(Y||v)return B.source===c.source&&g(B)===g(c);if(f(B)&&f(c))return E.call(B)===E.call(c);var p=w(B),I=w(c);if(p!==I)return!1;if(p||I){if(B.length!==c.length)return!1;for(Q=0;Q=0;Q--)if(y[Q]!=U[Q])return!1;for(Q=y.length-1;Q>=0;Q--)if(!h(B[M=y[Q]],c[M],C))return!1;return!0}(B,c,Q))}function r(B){return null==B}function w(B){return!(!B||"object"!=typeof B||"number"!=typeof B.length||"function"!=typeof B.copy||"function"!=typeof B.slice||B.length>0&&"number"!=typeof B[0])}T.exports=h},4289:function(T,A,n){"use strict";var u=n(2215),o="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),s=Object.prototype.toString,l=Array.prototype.concat,g=Object.defineProperty,E=n(1044)(),h=g&&E,r=function(e,B,c,C){B in e&&(!function(e){return"function"==typeof e&&"[object Function]"===s.call(e)}(C)||!C())||(h?g(e,B,{configurable:!0,enumerable:!1,value:c,writable:!0}):e[B]=c)},w=function(e,B){var c=arguments.length>2?arguments[2]:{},C=u(B);o&&(C=l.call(C,Object.getOwnPropertySymbols(B)));for(var Q=0;Q0&&O.length>S&&!O.warned){O.warned=!0;var J=new Error("Possible EventEmitter memory leak detected. "+O.length+" "+String(I)+" listeners added. Use emitter.setMaxListeners() to increase limit");J.name="MaxListenersExceededWarning",J.emitter=p,J.type=I,J.count=O.length,function o(p){console&&console.warn&&console.warn(p)}(J)}return p}function r(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function w(p,I,y){var U={fired:!1,wrapFn:void 0,target:p,type:I,listener:y},S=r.bind(U);return S.listener=y,U.wrapFn=S,S}function e(p,I,y){var U=p._events;if(void 0===U)return[];var S=U[I];return void 0===S?[]:"function"==typeof S?y?[S.listener||S]:[S]:y?function Q(p){for(var I=new Array(p.length),y=0;y0&&(O=y[0]),O instanceof Error)throw O;var J=new Error("Unhandled error."+(O?" ("+O.message+")":""));throw J.context=O,J}var sA=b[I];if(void 0===sA)return!1;if("function"==typeof sA)n(sA,this,y);else{var uA=sA.length,X=c(sA,uA);for(U=0;U=0;O--)if(U[O]===y||U[O].listener===y){J=U[O].listener,b=O;break}if(b<0)return this;0===b?U.shift():function C(p,I){for(;I+1=0;S--)this.removeListener(I,y[S]);return this},l.prototype.listeners=function(I){return e(this,I,!0)},l.prototype.rawListeners=function(I){return e(this,I,!1)},l.listenerCount=function(p,I){return"function"==typeof p.listenerCount?p.listenerCount(I):B.call(p,I)},l.prototype.listenerCount=B,l.prototype.eventNames=function(){return this._eventsCount>0?u(this._events):[]}},2536:function(T,A,n){var u=n(4275),o=n(7672);void 0===o.pdfMake&&(o.pdfMake=u),T.exports=u},7672:function(T,A,n){"use strict";T.exports=function(){if("object"==typeof globalThis)return globalThis;var u;try{u=this||new Function("return this")()}catch(o){if("object"==typeof window)return window;if("object"==typeof self)return self;if(void 0!==n.g)return n.g}return u}()},4029:function(T,A,n){"use strict";var u=n(5320),o=Object.prototype.toString,s=Object.prototype.hasOwnProperty,l=function(r,w,e){for(var B=0,c=r.length;B=3&&(B=e),"[object Array]"===o.call(r)?l(r,w,B):"string"==typeof r?g(r,w,B):f(r,w,B)}},7648:function(T){"use strict";var A="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,u=Object.prototype.toString,o="[object Function]";T.exports=function(l){var g=this;if("function"!=typeof g||u.call(g)!==o)throw new TypeError(A+g);for(var E,f=n.call(arguments,1),h=function(){if(this instanceof E){var c=g.apply(this,f.concat(n.call(arguments)));return Object(c)===c?c:this}return g.apply(l,f.concat(n.call(arguments)))},r=Math.max(0,g.length-f.length),w=[],e=0;e1&&"boolean"!=typeof X)throw new l('"allowMissing" argument must be a boolean');if(null===U(/^%?[^%]*%?$/,uA))throw new o("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var cA=O(uA),pA=cA.length>0?cA[0]:"",dA=J("%"+pA+"%",X),DA=dA.name,gA=dA.value,QA=!1,yA=dA.alias;yA&&(pA=yA[0],p(cA,v([0,1],yA)));for(var Z=1,CA=!0;Z=cA.length){var bA=f(gA,nA);gA=(CA=!!bA)&&"get"in bA&&!("originalValue"in bA.get)?bA.get:gA[nA]}else CA=Y(gA,nA),gA=gA[nA];CA&&!QA&&(c[DA]=gA)}}return gA}},1044:function(T,A,n){"use strict";var o=n(210)("%Object.defineProperty%",!0),s=function(){if(o)try{return o({},"a",{value:1}),!0}catch(g){return!1}return!1};s.hasArrayLengthDefineBug=function(){if(!s())return null;try{return 1!==o([],"length",{value:1}).length}catch(g){return!0}},T.exports=s},1405:function(T,A,n){"use strict";var u="undefined"!=typeof Symbol&&Symbol,o=n(5419);T.exports=function(){return"function"==typeof u&&"function"==typeof Symbol&&"symbol"==typeof u("foo")&&"symbol"==typeof Symbol("bar")&&o()}},5419:function(T){"use strict";T.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var n={},u=Symbol("test"),o=Object(u);if("string"==typeof u||"[object Symbol]"!==Object.prototype.toString.call(u)||"[object Symbol]"!==Object.prototype.toString.call(o))return!1;for(u in n[u]=42,n)return!1;if("function"==typeof Object.keys&&0!==Object.keys(n).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(n).length)return!1;var l=Object.getOwnPropertySymbols(n);if(1!==l.length||l[0]!==u||!Object.prototype.propertyIsEnumerable.call(n,u))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var g=Object.getOwnPropertyDescriptor(n,u);if(42!==g.value||!0!==g.enumerable)return!1}return!0}},6410:function(T,A,n){"use strict";var u=n(5419);T.exports=function(){return u()&&!!Symbol.toStringTag}},7642:function(T,A,n){"use strict";var u=n(8612);T.exports=u.call(Function.call,Object.prototype.hasOwnProperty)},688:function(T,A,n){"use strict";var u=n(7103).Buffer;A._dbcs=r;for(var o=-1,l=-10,g=-1e3,f=new Array(256),h=0;h<256;h++)f[h]=o;function r(c,C){if(this.encodingName=c.encodingName,!c)throw new Error("DBCS codec is called without the data.");if(!c.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var Q=c.table();this.decodeTables=[],this.decodeTables[0]=f.slice(0),this.decodeTableSeq=[];for(var M=0;Mg)throw new Error("gb18030 decode tables conflict at byte 2");for(var U=this.decodeTables[g-I[y]],S=129;S<=254;S++){if(U[S]===o)U[S]=g-v;else{if(U[S]===g-v)continue;if(U[S]>g)throw new Error("gb18030 decode tables conflict at byte 3")}for(var b=this.decodeTables[g-U[S]],O=48;O<=57;O++)b[O]===o&&(b[O]=-2)}}}this.defaultCharUnicode=C.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var J={};if(c.encodeSkipVals)for(M=0;MC)return-1;for(var Q=0,M=c.length;Q>1);c[Y]<=C?Q=Y:M=Y}return Q}r.prototype.encoder=w,r.prototype.decoder=e,r.prototype._getDecodeTrieNode=function(c){for(var C=[];c>0;c>>>=8)C.push(255&c);0==C.length&&C.push(0);for(var Q=this.decodeTables[0],M=C.length-1;M>0;M--){var Y=Q[C[M]];if(Y==o)Q[C[M]]=g-this.decodeTables.length,this.decodeTables.push(Q=f.slice(0));else{if(!(Y<=g))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+c.toString(16));Q=this.decodeTables[g-Y]}}return Q},r.prototype._addDecodeChunk=function(c){var C=parseInt(c[0],16),Q=this._getDecodeTrieNode(C);C&=255;for(var M=1;M255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+c[0]+": too long"+C)},r.prototype._getEncodeBucket=function(c){var C=c>>8;return void 0===this.encodeTable[C]&&(this.encodeTable[C]=f.slice(0)),this.encodeTable[C]},r.prototype._setEncodeChar=function(c,C){var Q=this._getEncodeBucket(c),M=255&c;Q[M]<=l?this.encodeTableSeq[l-Q[M]][-1]=C:Q[M]==o&&(Q[M]=C)},r.prototype._setEncodeSequence=function(c,C){var v,Q=c[0],M=this._getEncodeBucket(Q),Y=255&Q;M[Y]<=l?v=this.encodeTableSeq[l-M[Y]]:(v={},M[Y]!==o&&(v[-1]=M[Y]),M[Y]=l-this.encodeTableSeq.length,this.encodeTableSeq.push(v));for(var p=1;p=0)this._setEncodeChar(I,y),Y=!0;else if(I<=g){var U=g-I;v[U]||(this._fillEncodeTable(U,y<<8>>>0,Q)?Y=!0:v[U]=!0)}else I<=l&&(this._setEncodeSequence(this.decodeTableSeq[l-I],y),Y=!0)}return Y},w.prototype.write=function(c){for(var C=u.alloc(c.length*(this.gb18030?4:3)),Q=this.leadSurrogate,M=this.seqObj,Y=-1,v=0,p=0;;){if(-1===Y){if(v==c.length)break;var I=c.charCodeAt(v++)}else I=Y,Y=-1;if(55296<=I&&I<57344)if(I<56320){if(-1===Q){Q=I;continue}Q=I,I=o}else-1!==Q?(I=65536+1024*(Q-55296)+(I-56320),Q=-1):I=o;else-1!==Q&&(Y=I,I=o,Q=-1);var y=o;if(void 0!==M&&I!=o){var U=M[I];if("object"==typeof U){M=U;continue}"number"==typeof U?y=U:null==U&&void 0!==(U=M[-1])&&(y=U,Y=I),M=void 0}else if(I>=0){var S=this.encodeTable[I>>8];if(void 0!==S&&(y=S[255&I]),y<=l){M=this.encodeTableSeq[l-y];continue}if(y==o&&this.gb18030){var b=B(this.gb18030.uChars,I);if(-1!=b){y=this.gb18030.gbChars[b]+(I-this.gb18030.uChars[b]),C[p++]=129+Math.floor(y/12600),y%=12600,C[p++]=48+Math.floor(y/1260),y%=1260,C[p++]=129+Math.floor(y/10),C[p++]=48+(y%=10);continue}}}y===o&&(y=this.defaultCharSingleByte),y<256?C[p++]=y:y<65536?(C[p++]=y>>8,C[p++]=255&y):y<16777216?(C[p++]=y>>16,C[p++]=y>>8&255,C[p++]=255&y):(C[p++]=y>>>24,C[p++]=y>>>16&255,C[p++]=y>>>8&255,C[p++]=255&y)}return this.seqObj=M,this.leadSurrogate=Q,C.slice(0,p)},w.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var c=u.alloc(10),C=0;if(this.seqObj){var Q=this.seqObj[-1];void 0!==Q&&(Q<256?c[C++]=Q:(c[C++]=Q>>8,c[C++]=255&Q)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(c[C++]=this.defaultCharSingleByte,this.leadSurrogate=-1),c.slice(0,C)}},w.prototype.findIdx=B,e.prototype.write=function(c){for(var C=u.alloc(2*c.length),Q=this.nodeIdx,M=this.prevBytes,Y=this.prevBytes.length,v=-this.prevBytes.length,I=0,y=0;I=0?c[I]:M[I+Y];if(!((p=this.decodeTables[Q][U])>=0))if(p===o)p=this.defaultCharUnicode.charCodeAt(0),I=v;else if(-2===p){if(I>=3)var S=12600*(c[I-3]-129)+1260*(c[I-2]-48)+10*(c[I-1]-129)+(U-48);else S=12600*(M[I-3+Y]-129)+1260*((I-2>=0?c[I-2]:M[I-2+Y])-48)+10*((I-1>=0?c[I-1]:M[I-1+Y])-129)+(U-48);var b=B(this.gb18030.gbChars,S);p=this.gb18030.uChars[b]+S-this.gb18030.gbChars[b]}else{if(p<=g){Q=g-p;continue}if(!(p<=l))throw new Error("iconv-lite internal error: invalid decoding table value "+p+" at "+Q+"/"+U);for(var O=this.decodeTableSeq[l-p],J=0;J>8;p=O[O.length-1]}if(p>=65536){var sA=55296|(p-=65536)>>10;C[y++]=255&sA,C[y++]=sA>>8,p=56320|1023&p}C[y++]=255&p,C[y++]=p>>8,Q=0,v=I+1}return this.nodeIdx=Q,this.prevBytes=v>=0?Array.prototype.slice.call(c,v):M.slice(v+Y).concat(Array.prototype.slice.call(c)),C.slice(0,y).toString("ucs2")},e.prototype.end=function(){for(var c="";this.prevBytes.length>0;){c+=this.defaultCharUnicode;var C=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,C.length>0&&(c+=this.write(C))}return this.prevBytes=[],this.nodeIdx=0,c}},5990:function(T,A,n){"use strict";T.exports={shiftjis:{type:"_dbcs",table:function(){return n(7014)},encodeAdd:{"\xa5":92,"\u203e":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(5633)},encodeAdd:{"\xa5":92,"\u203e":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(3336)}},gbk:{type:"_dbcs",table:function(){return n(3336).concat(n(4346))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(3336).concat(n(4346))},gb18030:function(){return n(6258)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(7348)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(4284)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(4284).concat(n(3480))},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},6934:function(T,A,n){"use strict";for(var u=[n(1025),n(7688),n(1279),n(758),n(9068),n(3769),n(7018),n(688),n(5990)],o=0;o>>6),w[e++]=128+(63&c)):(w[e++]=224+(c>>>12),w[e++]=128+(c>>>6&63),w[e++]=128+(63&c))}return w.slice(0,e)},E.prototype.end=function(){},h.prototype.write=function(r){for(var w=this.acc,e=this.contBytes,B=this.accBytes,c="",C=0;C0&&(c+=this.defaultCharUnicode,e=0),Q<128?c+=String.fromCharCode(Q):Q<224?(w=31&Q,e=1,B=1):Q<240?(w=15&Q,e=2,B=1):c+=this.defaultCharUnicode):e>0?(w=w<<6|63&Q,B++,0==--e&&(c+=2===B&&w<128&&w>0||3===B&&w<2048?this.defaultCharUnicode:String.fromCharCode(w))):c+=this.defaultCharUnicode}return this.acc=w,this.contBytes=e,this.accBytes=B,c},h.prototype.end=function(){var r=0;return this.contBytes>0&&(r+=this.defaultCharUnicode),r}},9068:function(T,A,n){"use strict";var u=n(7103).Buffer;function o(g,f){if(!g)throw new Error("SBCS codec is called without the data.");if(!g.chars||128!==g.chars.length&&256!==g.chars.length)throw new Error("Encoding '"+g.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(128===g.chars.length){for(var E="",h=0;h<128;h++)E+=String.fromCharCode(h);g.chars=E+g.chars}this.decodeBuf=u.from(g.chars,"ucs2");var r=u.alloc(65536,f.defaultCharSingleByte.charCodeAt(0));for(h=0;h?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xb0\xb7\u2219\u221a\u2592\u2500\u2502\u253c\u2524\u252c\u251c\u2534\u2510\u250c\u2514\u2518\u03b2\u221e\u03c6\xb1\xbd\xbc\u2248\xab\xbb\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufffd\xa0\xad\ufe82\xa3\xa4\ufe84\ufffd\ufffd\ufe8e\ufe8f\ufe95\ufe99\u060c\ufe9d\ufea1\ufea5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufed1\u061b\ufeb1\ufeb5\ufeb9\u061f\xa2\ufe80\ufe81\ufe83\ufe85\ufeca\ufe8b\ufe8d\ufe91\ufe93\ufe97\ufe9b\ufe9f\ufea3\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb3\ufeb7\ufebb\ufebf\ufec1\ufec5\ufecb\ufecf\xa6\xac\xf7\xd7\ufec9\u0640\ufed3\ufed7\ufedb\ufedf\ufee3\ufee7\ufeeb\ufeed\ufeef\ufef3\ufebd\ufecc\ufece\ufecd\ufee1\ufe7d\u0651\ufee5\ufee9\ufeec\ufef0\ufef2\ufed0\ufed5\ufef5\ufef6\ufedd\ufed9\ufef1\u25a0\ufffd"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xc7\xfc\xe9\xe2\xe4\xe0\xe5\xe7\xea\xeb\xe8\xef\xee\xec\xc4\xc5\xc9\xe6\xc6\xf4\xf6\xf2\xfb\xf9\xff\xd6\xdc\xf8\xa3\xd8\u20a7\u0192\xe1\xed\xf3\xfa\xf1\xd1\xaa\xba\xbf\u2310\xac\xbd\xbc\xa1\xab\xa4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0386\ufffd\xb7\xac\xa6\u2018\u2019\u0388\u2015\u0389\u038a\u03aa\u038c\ufffd\ufffd\u038e\u03ab\xa9\u038f\xb2\xb3\u03ac\xa3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xbd\u0398\u0399\xab\xbb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u0384\xad\xb1\u03c5\u03c6\u03c7\xa7\u03c8\u0385\xb0\xa8\u03c9\u03cb\u03b0\u03ce\u25a0\xa0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\u203e\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\u0160\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\u017d\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\u0161\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\u017e\xff"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\ufe88\xd7\xf7\uf8f6\uf8f5\uf8f4\uf8f7\ufe71\x88\u25a0\u2502\u2500\u2510\u250c\u2514\u2518\ufe79\ufe7b\ufe7d\ufe7f\ufe77\ufe8a\ufef0\ufef3\ufef2\ufece\ufecf\ufed0\ufef6\ufef8\ufefa\ufefc\xa0\uf8fa\uf8f9\uf8f8\xa4\uf8fb\ufe8b\ufe91\ufe97\ufe9b\ufe9f\ufea3\u060c\xad\ufea7\ufeb3\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufeb7\u061b\ufebb\ufebf\ufeca\u061f\ufecb\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\ufec7\u0639\u063a\ufecc\ufe82\ufe84\ufe8e\ufed3\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u064b\u064c\u064d\u064e\u064f\u0650\u0651\u0652\ufed7\ufedb\ufedf\uf8fc\ufef5\ufef7\ufef9\ufefb\ufee3\ufee7\ufeec\ufee9\ufffd"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\xad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\xa7\u045e\u045f"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4\u0ec8\u0ec9\u0eca\u0ecb\u0ecc\u0ecd\u0ec6\ufffd\u0edc\u0edd\u20ad\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\ufffd\xa2\xac\xa6\ufffd"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e48\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\u0e49\u0e4a\u0e4b\u20ac\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\xa2\xac\xa6\xa0"},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"\u20ac\x81\x82\x83\x84\u2026\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\u20ac\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\u0160\u2122\xb4\xa8\u2260\u017d\xd8\u221e\xb1\u2264\u2265\u2206\xb5\u2202\u2211\u220f\u0161\u222b\xaa\xba\u2126\u017e\xf8\xbf\xa1\xac\u221a\u0192\u2248\u0106\xab\u010c\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u0110\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\ufffd\xa9\u2044\xa4\u2039\u203a\xc6\xbb\u2013\xb7\u201a\u201e\u2030\xc2\u0107\xc1\u010d\xc8\xcd\xce\xcf\xcc\xd3\xd4\u0111\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u03c0\xcb\u02da\xb8\xca\xe6\u02c7"},maccyrillic:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\xa2\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u2202\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},macgreek:{type:"_sbcs",chars:"\xc4\xb9\xb2\xc9\xb3\xd6\xdc\u0385\xe0\xe2\xe4\u0384\xa8\xe7\xe9\xe8\xea\xeb\xa3\u2122\xee\xef\u2022\xbd\u2030\xf4\xf6\xa6\xad\xf9\xfb\xfc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\xdf\xae\xa9\u03a3\u03aa\xa7\u2260\xb0\u0387\u0391\xb1\u2264\u2265\xa5\u0392\u0395\u0396\u0397\u0399\u039a\u039c\u03a6\u03ab\u03a8\u03a9\u03ac\u039d\xac\u039f\u03a1\u2248\u03a4\xab\xbb\u2026\xa0\u03a5\u03a7\u0386\u0388\u0153\u2013\u2015\u201c\u201d\u2018\u2019\xf7\u0389\u038a\u038c\u038e\u03ad\u03ae\u03af\u03cc\u038f\u03cd\u03b1\u03b2\u03c8\u03b4\u03b5\u03c6\u03b3\u03b7\u03b9\u03be\u03ba\u03bb\u03bc\u03bd\u03bf\u03c0\u03ce\u03c1\u03c3\u03c4\u03b8\u03c9\u03c2\u03c7\u03c5\u03b6\u03ca\u03cb\u0390\u03b0\ufffd"},maciceland:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\xdd\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\xd0\xf0\xde\xfe\xfd\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macroman:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macromania:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\u0102\u015e\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\u0103\u015f\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\u0162\u0163\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macthai:{type:"_sbcs",chars:"\xab\xbb\u2026\uf88c\uf88f\uf892\uf895\uf898\uf88b\uf88e\uf891\uf894\uf897\u201c\u201d\uf899\ufffd\u2022\uf884\uf889\uf885\uf886\uf887\uf888\uf88a\uf88d\uf890\uf893\uf896\u2018\u2019\ufffd\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufeff\u200b\u2013\u2014\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u2122\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\xae\xa9\ufffd\ufffd\ufffd\ufffd"},macturkish:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u011e\u011f\u0130\u0131\u015e\u015f\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\ufffd\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macukraine:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\u0490\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},koi8r:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255a\u255b\u255c\u255d\u255e\u255f\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256a\u256b\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8u:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u255d\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8ru:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u045e\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u040e\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8t:{type:"_sbcs",chars:"\u049b\u0493\u201a\u0492\u201e\u2026\u2020\u2021\ufffd\u2030\u04b3\u2039\u04b2\u04b7\u04b6\ufffd\u049a\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\ufffd\u04ef\u04ee\u0451\xa4\u04e3\xa6\xa7\ufffd\ufffd\ufffd\xab\xac\xad\xae\ufffd\xb0\xb1\xb2\u0401\ufffd\u04e2\xb6\xb7\ufffd\u2116\ufffd\xbb\ufffd\ufffd\ufffd\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},armscii8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\ufffd\u0587\u0589)(\xbb\xab\u2014.\u055d,-\u058a\u2026\u055c\u055b\u055e\u0531\u0561\u0532\u0562\u0533\u0563\u0534\u0564\u0535\u0565\u0536\u0566\u0537\u0567\u0538\u0568\u0539\u0569\u053a\u056a\u053b\u056b\u053c\u056c\u053d\u056d\u053e\u056e\u053f\u056f\u0540\u0570\u0541\u0571\u0542\u0572\u0543\u0573\u0544\u0574\u0545\u0575\u0546\u0576\u0547\u0577\u0548\u0578\u0549\u0579\u054a\u057a\u054b\u057b\u054c\u057c\u054d\u057d\u054e\u057e\u054f\u057f\u0550\u0580\u0551\u0581\u0552\u0582\u0553\u0583\u0554\u0584\u0555\u0585\u0556\u0586\u055a\ufffd"},rk1048:{type:"_sbcs",chars:"\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u049a\u04ba\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0459\u203a\u045a\u049b\u04bb\u045f\xa0\u04b0\u04b1\u04d8\xa4\u04e8\xa6\xa7\u0401\xa9\u0492\xab\xac\xad\xae\u04ae\xb0\xb1\u0406\u0456\u04e9\xb5\xb6\xb7\u0451\u2116\u0493\xbb\u04d9\u04a2\u04a3\u04af\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},tcvn:{type:"_sbcs",chars:"\0\xda\u1ee4\x03\u1eea\u1eec\u1eee\x07\b\t\n\v\f\r\x0e\x0f\x10\u1ee8\u1ef0\u1ef2\u1ef6\u1ef8\xdd\u1ef4\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xc0\u1ea2\xc3\xc1\u1ea0\u1eb6\u1eac\xc8\u1eba\u1ebc\xc9\u1eb8\u1ec6\xcc\u1ec8\u0128\xcd\u1eca\xd2\u1ece\xd5\xd3\u1ecc\u1ed8\u1edc\u1ede\u1ee0\u1eda\u1ee2\xd9\u1ee6\u0168\xa0\u0102\xc2\xca\xd4\u01a0\u01af\u0110\u0103\xe2\xea\xf4\u01a1\u01b0\u0111\u1eb0\u0300\u0309\u0303\u0301\u0323\xe0\u1ea3\xe3\xe1\u1ea1\u1eb2\u1eb1\u1eb3\u1eb5\u1eaf\u1eb4\u1eae\u1ea6\u1ea8\u1eaa\u1ea4\u1ec0\u1eb7\u1ea7\u1ea9\u1eab\u1ea5\u1ead\xe8\u1ec2\u1ebb\u1ebd\xe9\u1eb9\u1ec1\u1ec3\u1ec5\u1ebf\u1ec7\xec\u1ec9\u1ec4\u1ebe\u1ed2\u0129\xed\u1ecb\xf2\u1ed4\u1ecf\xf5\xf3\u1ecd\u1ed3\u1ed5\u1ed7\u1ed1\u1ed9\u1edd\u1edf\u1ee1\u1edb\u1ee3\xf9\u1ed6\u1ee7\u0169\xfa\u1ee5\u1eeb\u1eed\u1eef\u1ee9\u1ef1\u1ef3\u1ef7\u1ef9\xfd\u1ef5\u1ed0"},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10f1\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10f2\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10f3\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10f4\u10ef\u10f0\u10f5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04ee\u0493\u201e\u2026\u04b6\u04ae\u04b2\u04af\u04a0\u04e2\u04a2\u049a\u04ba\u04b8\u0497\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u04b3\u04b7\u04a1\u04e3\u04a3\u049b\u04bb\u04b9\xa0\u040e\u045e\u0408\u04e8\u0498\u04b0\xa7\u0401\xa9\u04d8\xab\xac\u04ef\xae\u049c\xb0\u04b1\u0406\u0456\u0499\u04e9\xb6\xb7\u0451\u2116\u04d9\xbb\u0458\u04aa\u04ab\u049d\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},viscii:{type:"_sbcs",chars:"\0\x01\u1eb2\x03\x04\u1eb4\u1eaa\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\u1ef6\x15\x16\x17\x18\u1ef8\x1a\x1b\x1c\x1d\u1ef4\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u1ea0\u1eae\u1eb0\u1eb6\u1ea4\u1ea6\u1ea8\u1eac\u1ebc\u1eb8\u1ebe\u1ec0\u1ec2\u1ec4\u1ec6\u1ed0\u1ed2\u1ed4\u1ed6\u1ed8\u1ee2\u1eda\u1edc\u1ede\u1eca\u1ece\u1ecc\u1ec8\u1ee6\u0168\u1ee4\u1ef2\xd5\u1eaf\u1eb1\u1eb7\u1ea5\u1ea7\u1ea9\u1ead\u1ebd\u1eb9\u1ebf\u1ec1\u1ec3\u1ec5\u1ec7\u1ed1\u1ed3\u1ed5\u1ed7\u1ee0\u01a0\u1ed9\u1edd\u1edf\u1ecb\u1ef0\u1ee8\u1eea\u1eec\u01a1\u1edb\u01af\xc0\xc1\xc2\xc3\u1ea2\u0102\u1eb3\u1eb5\xc8\xc9\xca\u1eba\xcc\xcd\u0128\u1ef3\u0110\u1ee9\xd2\xd3\xd4\u1ea1\u1ef7\u1eeb\u1eed\xd9\xda\u1ef9\u1ef5\xdd\u1ee1\u01b0\xe0\xe1\xe2\xe3\u1ea3\u0103\u1eef\u1eab\xe8\xe9\xea\u1ebb\xec\xed\u0129\u1ec9\u0111\u1ef1\xf2\xf3\xf4\xf5\u1ecf\u1ecd\u1ee5\xf9\xfa\u0169\u1ee7\xfd\u1ee3\u1eee"},iso646cn:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#\xa5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},iso646jp:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xa5]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xc0\xc2\xc8\xca\xcb\xce\xcf\xb4\u02cb\u02c6\xa8\u02dc\xd9\xdb\u20a4\xaf\xdd\xfd\xb0\xc7\xe7\xd1\xf1\xa1\xbf\xa4\xa3\xa5\xa7\u0192\xa2\xe2\xea\xf4\xfb\xe1\xe9\xf3\xfa\xe0\xe8\xf2\xf9\xe4\xeb\xf6\xfc\xc5\xee\xd8\xc6\xe5\xed\xf8\xe6\xc4\xec\xd6\xdc\xc9\xef\xdf\xd4\xc1\xc3\xe3\xd0\xf0\xcd\xcc\xd3\xd2\xd5\xf5\u0160\u0161\xda\u0178\xff\xde\xfe\xb7\xb5\xb6\xbe\u2014\xbc\xbd\xaa\xba\xab\u25a0\xbb\xb1\ufffd"},macintosh:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},ascii:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},tis620:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"}}},3769:function(T){"use strict";T.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"\xc4\u0100\u0101\xc9\u0104\xd6\xdc\xe1\u0105\u010c\xe4\u010d\u0106\u0107\xe9\u0179\u017a\u010e\xed\u010f\u0112\u0113\u0116\xf3\u0117\xf4\xf6\xf5\xfa\u011a\u011b\xfc\u2020\xb0\u0118\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\u0119\xa8\u2260\u0123\u012e\u012f\u012a\u2264\u2265\u012b\u0136\u2202\u2211\u0142\u013b\u013c\u013d\u013e\u0139\u013a\u0145\u0146\u0143\xac\u221a\u0144\u0147\u2206\xab\xbb\u2026\xa0\u0148\u0150\xd5\u0151\u014c\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\u014d\u0154\u0155\u0158\u2039\u203a\u0159\u0156\u0157\u0160\u201a\u201e\u0161\u015a\u015b\xc1\u0164\u0165\xcd\u017d\u017e\u016a\xd3\xd4\u016b\u016e\xda\u016f\u0170\u0171\u0172\u0173\xdd\xfd\u0137\u017b\u0141\u017c\u0122\u02c7"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\u20ac\u25a0\xa0"},mik:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2514\u2534\u252c\u251c\u2500\u253c\u2563\u2551\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2510\u2591\u2592\u2593\u2502\u2524\u2116\xa7\u2557\u255d\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},cp720:{type:"_sbcs",chars:"\x80\x81\xe9\xe2\x84\xe0\x86\xe7\xea\xeb\xe8\xef\xee\x8d\x8e\x8f\x90\u0651\u0652\xf4\xa4\u0640\xfb\xf9\u0621\u0622\u0623\u0624\xa3\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\xab\xbb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0636\u0637\u0638\u0639\u063a\u0641\xb5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u2261\u064b\u064c\u064d\u064e\u064f\u0650\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},1279:function(T,A,n){"use strict";var u=n(7103).Buffer;function o(){}function s(){}function l(){this.overflowByte=-1}function g(r,w){this.iconv=w}function f(r,w){void 0===(r=r||{}).addBOM&&(r.addBOM=!0),this.encoder=w.iconv.getEncoder("utf-16le",r)}function E(r,w){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=r||{},this.iconv=w.iconv}function h(r,w){var e=[],B=0,c=0,C=0;A:for(var Q=0;Q=100)break A}return C>c?"utf-16be":C1114111)&&(B=c),B>=65536){var C=55296|(B-=65536)>>10;w[e++]=255&C,w[e++]=C>>8,B=56320|1023&B}return w[e++]=255&B,w[e++]=B>>8,e}function f(w,e){this.iconv=e}function E(w,e){void 0===(w=w||{}).addBOM&&(w.addBOM=!0),this.encoder=e.iconv.getEncoder(w.defaultEncoding||"utf-32le",w)}function h(w,e){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=w||{},this.iconv=e.iconv}function r(w,e){var B=[],c=0,C=0,Q=0,M=0,Y=0;A:for(var v=0;v16)&&Q++,(0!==B[3]||B[2]>16)&&C++,0===B[0]&&0===B[1]&&(0!==B[2]||0!==B[3])&&Y++,(0!==B[0]||0!==B[1])&&0===B[2]&&0===B[3]&&M++,B.length=0,++c>=100)break A}return Y-Q>M-C?"utf-32be":Y-Q0){for(;e0&&(M=this.iconv.decode(u.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",M},A.utf7imap=B,B.prototype.encoder=c,B.prototype.decoder=C,B.prototype.bomAware=!0,c.prototype.write=function(M){for(var Y=this.inBase64,v=this.base64Accum,p=this.base64AccumIdx,I=u.alloc(5*M.length+10),y=0,U=0;U0&&(y+=I.write(v.slice(0,p).toString("base64").replace(/\//g,",").replace(/=+$/,""),y),p=0),I[y++]=w,Y=!1),Y||(I[y++]=S,S===e&&(I[y++]=w))):(Y||(I[y++]=e,Y=!0),Y&&(v[p++]=S>>8,v[p++]=255&S,p==v.length&&(y+=I.write(v.toString("base64").replace(/\//g,","),y),p=0)))}return this.inBase64=Y,this.base64AccumIdx=p,I.slice(0,y)},c.prototype.end=function(){var M=u.alloc(10),Y=0;return this.inBase64&&(this.base64AccumIdx>0&&(Y+=M.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),Y),this.base64AccumIdx=0),M[Y++]=w,this.inBase64=!1),M.slice(0,Y)};var Q=E.slice();Q[",".charCodeAt(0)]=!0,C.prototype.write=function(M){for(var Y="",v=0,p=this.inBase64,I=this.base64Accum,y=0;y0&&(M=this.iconv.decode(u.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",M}},5395:function(T,A){"use strict";function u(s,l){this.encoder=s,this.addBOM=!0}function o(s,l){this.decoder=s,this.pass=!1,this.options=l||{}}A.PrependBOM=u,u.prototype.write=function(s){return this.addBOM&&(s="\ufeff"+s,this.addBOM=!1),this.encoder.write(s)},u.prototype.end=function(){return this.encoder.end()},A.StripBOM=o,o.prototype.write=function(s){var l=this.decoder.write(s);return this.pass||!l||("\ufeff"===l[0]&&(l=l.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),l},o.prototype.end=function(){return this.decoder.end()}},4914:function(T,A,n){"use strict";var l,u=n(7103).Buffer,o=n(5395),s=T.exports;s.encodings=null,s.defaultCharUnicode="\ufffd",s.defaultCharSingleByte="?",s.encode=function(f,E,h){f=""+(f||"");var r=s.getEncoder(E,h),w=r.write(f),e=r.end();return e&&e.length>0?u.concat([w,e]):w},s.decode=function(f,E,h){"string"==typeof f&&(s.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),s.skipDecodeWarning=!0),f=u.from(""+(f||""),"binary"));var r=s.getDecoder(E,h),w=r.write(f),e=r.end();return e?w+e:w},s.encodingExists=function(f){try{return s.getCodec(f),!0}catch(E){return!1}},s.toEncoding=s.encode,s.fromEncoding=s.decode,s._codecDataCache={},s.getCodec=function(f){s.encodings||(s.encodings=n(6934));for(var E=s._canonicalizeEncoding(f),h={};;){var r=s._codecDataCache[E];if(r)return r;var w=s.encodings[E];switch(typeof w){case"string":E=w;break;case"object":for(var e in w)h[e]=w[e];h.encodingName||(h.encodingName=E),E=w.type;break;case"function":return h.encodingName||(h.encodingName=E),r=new w(h,s),s._codecDataCache[h.encodingName]=r,r;default:throw new Error("Encoding not recognized: '"+f+"' (searched as: '"+E+"')")}}},s._canonicalizeEncoding=function(g){return(""+g).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},s.getEncoder=function(f,E){var h=s.getCodec(f),r=new h.encoder(E,h);return h.bomAware&&E&&E.addBOM&&(r=new o.PrependBOM(r,E)),r},s.getDecoder=function(f,E){var h=s.getCodec(f),r=new h.decoder(E,h);return h.bomAware&&!(E&&!1===E.stripBOM)&&(r=new o.StripBOM(r,E)),r},s.enableStreamingAPI=function(f){if(!s.supportsStreams){var E=n(8044)(f);s.IconvLiteEncoderStream=E.IconvLiteEncoderStream,s.IconvLiteDecoderStream=E.IconvLiteDecoderStream,s.encodeStream=function(r,w){return new s.IconvLiteEncoderStream(s.getEncoder(r,w),w)},s.decodeStream=function(r,w){return new s.IconvLiteDecoderStream(s.getDecoder(r,w),w)},s.supportsStreams=!0}};try{l=n(5832)}catch(g){}l&&l.Transform?s.enableStreamingAPI(l):s.encodeStream=s.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},8044:function(T,A,n){"use strict";var u=n(7103).Buffer;T.exports=function(o){var s=o.Transform;function l(f,E){this.conv=f,(E=E||{}).decodeStrings=!1,s.call(this,E)}function g(f,E){this.conv=f,(E=E||{}).encoding=this.encoding="utf8",s.call(this,E)}return(l.prototype=Object.create(s.prototype,{constructor:{value:l}}))._transform=function(f,E,h){if("string"!=typeof f)return h(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r),h()}catch(w){h(w)}},l.prototype._flush=function(f){try{var E=this.conv.end();E&&E.length&&this.push(E),f()}catch(h){f(h)}},l.prototype.collect=function(f){var E=[];return this.on("error",f),this.on("data",function(h){E.push(h)}),this.on("end",function(){f(null,u.concat(E))}),this},(g.prototype=Object.create(s.prototype,{constructor:{value:g}}))._transform=function(f,E,h){if(!(u.isBuffer(f)||f instanceof Uint8Array))return h(new Error("Iconv decoding stream needs buffers as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r,this.encoding),h()}catch(w){h(w)}},g.prototype._flush=function(f){try{var E=this.conv.end();E&&E.length&&this.push(E,this.encoding),f()}catch(h){f(h)}},g.prototype.collect=function(f){var E="";return this.on("error",f),this.on("data",function(h){E+=h}),this.on("end",function(){f(null,E)}),this},{IconvLiteEncoderStream:l,IconvLiteDecoderStream:g}}},645:function(T,A){A.read=function(n,u,o,s,l){var g,f,E=8*l-s-1,h=(1<>1,w=-7,e=o?l-1:0,B=o?-1:1,c=n[u+e];for(e+=B,g=c&(1<<-w)-1,c>>=-w,w+=E;w>0;g=256*g+n[u+e],e+=B,w-=8);for(f=g&(1<<-w)-1,g>>=-w,w+=s;w>0;f=256*f+n[u+e],e+=B,w-=8);if(0===g)g=1-r;else{if(g===h)return f?NaN:1/0*(c?-1:1);f+=Math.pow(2,s),g-=r}return(c?-1:1)*f*Math.pow(2,g-s)},A.write=function(n,u,o,s,l,g){var f,E,h,r=8*g-l-1,w=(1<>1,B=23===l?Math.pow(2,-24)-Math.pow(2,-77):0,c=s?0:g-1,C=s?1:-1,Q=u<0||0===u&&1/u<0?1:0;for(u=Math.abs(u),isNaN(u)||u===1/0?(E=isNaN(u)?1:0,f=w):(f=Math.floor(Math.log(u)/Math.LN2),u*(h=Math.pow(2,-f))<1&&(f--,h*=2),(u+=f+e>=1?B/h:B*Math.pow(2,1-e))*h>=2&&(f++,h/=2),f+e>=w?(E=0,f=w):f+e>=1?(E=(u*h-1)*Math.pow(2,l),f+=e):(E=u*Math.pow(2,e-1)*Math.pow(2,l),f=0));l>=8;n[o+c]=255&E,c+=C,E/=256,l-=8);for(f=f<0;n[o+c]=255&f,c+=C,f/=256,r-=8);n[o+c-C]|=128*Q}},5717:function(T){T.exports="function"==typeof Object.create?function(n,u){u&&(n.super_=u,n.prototype=Object.create(u.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}))}:function(n,u){if(u){n.super_=u;var o=function(){};o.prototype=u.prototype,n.prototype=new o,n.prototype.constructor=n}}},2584:function(T,A,n){"use strict";var u=n(6410)(),s=n(1924)("Object.prototype.toString"),l=function(h){return!(u&&h&&"object"==typeof h&&Symbol.toStringTag in h)&&"[object Arguments]"===s(h)},g=function(h){return!!l(h)||null!==h&&"object"==typeof h&&"number"==typeof h.length&&h.length>=0&&"[object Array]"!==s(h)&&"[object Function]"===s(h.callee)},f=function(){return l(arguments)}();l.isLegacyArguments=g,T.exports=f?l:g},5320:function(T){"use strict";var u,o,A=Function.prototype.toString,n="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof n&&"function"==typeof Object.defineProperty)try{u=Object.defineProperty({},"length",{get:function(){throw o}}),o={},n(function(){throw 42},null,u)}catch(Y){Y!==o&&(n=null)}else n=null;var s=/^\s*class\b/,l=function(v){try{var p=A.call(v);return s.test(p)}catch(I){return!1}},g=function(v){try{return!l(v)&&(A.call(v),!0)}catch(p){return!1}},f=Object.prototype.toString,c="function"==typeof Symbol&&!!Symbol.toStringTag,C=!(0 in[,]),Q=function(){return!1};if("object"==typeof document){var M=document.all;f.call(M)===f.call(document.all)&&(Q=function(v){if((C||!v)&&(void 0===v||"object"==typeof v))try{var p=f.call(v);return("[object HTMLAllCollection]"===p||"[object HTML document.all class]"===p||"[object HTMLCollection]"===p||"[object Object]"===p)&&null==v("")}catch(I){}return!1})}T.exports=n?function(v){if(Q(v))return!0;if(!v||"function"!=typeof v&&"object"!=typeof v)return!1;try{n(v,null,u)}catch(p){if(p!==o)return!1}return!l(v)&&g(v)}:function(v){if(Q(v))return!0;if(!v||"function"!=typeof v&&"object"!=typeof v)return!1;if(c)return g(v);if(l(v))return!1;var p=f.call(v);return!("[object Function]"!==p&&"[object GeneratorFunction]"!==p&&!/^\[object HTML/.test(p))&&g(v)}},8923:function(T,A,n){"use strict";var u=Date.prototype.getDay,s=Object.prototype.toString,g=n(6410)();T.exports=function(E){return"object"==typeof E&&null!==E&&(g?function(E){try{return u.call(E),!0}catch(h){return!1}}(E):"[object Date]"===s.call(E))}},8662:function(T,A,n){"use strict";var E,u=Object.prototype.toString,o=Function.prototype.toString,s=/^\s*(?:function)?\*/,l=n(6410)(),g=Object.getPrototypeOf;T.exports=function(r){if("function"!=typeof r)return!1;if(s.test(o.call(r)))return!0;if(!l)return"[object GeneratorFunction]"===u.call(r);if(!g)return!1;if(void 0===E){var e=function(){if(!l)return!1;try{return Function("return function*() {}")()}catch(h){}}();E=!!e&&g(e)}return g(r)===E}},8611:function(T){"use strict";T.exports=function(n){return n!=n}},360:function(T,A,n){"use strict";var u=n(5559),o=n(4289),s=n(8611),l=n(9415),g=n(6743),f=u(l(),Number);o(f,{getPolyfill:l,implementation:s,shim:g}),T.exports=f},9415:function(T,A,n){"use strict";var u=n(8611);T.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:u}},6743:function(T,A,n){"use strict";var u=n(4289),o=n(9415);T.exports=function(){var l=o();return u(Number,{isNaN:l},{isNaN:function(){return Number.isNaN!==l}}),l}},8420:function(T,A,n){"use strict";var s,l,g,f,u=n(1924),o=n(6410)();if(o){s=u("Object.prototype.hasOwnProperty"),l=u("RegExp.prototype.exec"),g={};var E=function(){throw g};f={toString:E,valueOf:E},"symbol"==typeof Symbol.toPrimitive&&(f[Symbol.toPrimitive]=E)}var h=u("Object.prototype.toString"),r=Object.getOwnPropertyDescriptor;T.exports=o?function(B){if(!B||"object"!=typeof B)return!1;var c=r(B,"lastIndex");if(!c||!s(c,"value"))return!1;try{l(B,f)}catch(Q){return Q===g}}:function(B){return!(!B||"object"!=typeof B&&"function"!=typeof B)&&"[object RegExp]"===h(B)}},5692:function(T,A,n){"use strict";var u=n(4029),o=n(3083),s=n(1924),l=s("Object.prototype.toString"),g=n(6410)(),f="undefined"==typeof globalThis?n.g:globalThis,E=o(),h=s("Array.prototype.indexOf",!0)||function(Q,M){for(var Y=0;Y-1}return!!e&&function(Q){var M=!1;return u(w,function(Y,v){if(!M)try{M=Y.call(Q)===v}catch(p){}}),M}(Q)}},4244:function(T){"use strict";var A=function(n){return n!=n};T.exports=function(u,o){return 0===u&&0===o?1/u==1/o:!!(u===o||A(u)&&A(o))}},609:function(T,A,n){"use strict";var u=n(4289),o=n(5559),s=n(4244),l=n(5624),g=n(2281),f=o(l(),Object);u(f,{getPolyfill:l,implementation:s,shim:g}),T.exports=f},5624:function(T,A,n){"use strict";var u=n(4244);T.exports=function(){return"function"==typeof Object.is?Object.is:u}},2281:function(T,A,n){"use strict";var u=n(5624),o=n(4289);T.exports=function(){var l=u();return o(Object,{is:l},{is:function(){return Object.is!==l}}),l}},8987:function(T,A,n){"use strict";var u;if(!Object.keys){var o=Object.prototype.hasOwnProperty,s=Object.prototype.toString,l=n(1414),g=Object.prototype.propertyIsEnumerable,f=!g.call({toString:null},"toString"),E=g.call(function(){},"prototype"),h=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],r=function(c){var C=c.constructor;return C&&C.prototype===c},w={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},e=function(){if("undefined"==typeof window)return!1;for(var c in window)try{if(!w["$"+c]&&o.call(window,c)&&null!==window[c]&&"object"==typeof window[c])try{r(window[c])}catch(C){return!0}}catch(C){return!0}return!1}();u=function(C){var Q=null!==C&&"object"==typeof C,M="[object Function]"===s.call(C),Y=l(C),v=Q&&"[object String]"===s.call(C),p=[];if(!Q&&!M&&!Y)throw new TypeError("Object.keys called on a non-object");var I=E&&M;if(v&&C.length>0&&!o.call(C,0))for(var y=0;y0)for(var U=0;U=0&&"[object Function]"===A.call(u.callee)),s}},4236:function(T,A){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;function u(l,g){return Object.prototype.hasOwnProperty.call(l,g)}A.assign=function(l){for(var g=Array.prototype.slice.call(arguments,1);g.length;){var f=g.shift();if(f){if("object"!=typeof f)throw new TypeError(f+"must be non-object");for(var E in f)u(f,E)&&(l[E]=f[E])}}return l},A.shrinkBuf=function(l,g){return l.length===g?l:l.subarray?l.subarray(0,g):(l.length=g,l)};var o={arraySet:function(l,g,f,E,h){if(g.subarray&&l.subarray)l.set(g.subarray(f,f+E),h);else for(var r=0;r>>16&65535|0,f=0;0!==o;){o-=f=o>2e3?2e3:o;do{g=g+(l=l+u[s++]|0)|0}while(--f);l%=65521,g%=65521}return l|g<<16|0}},1619:function(T){"use strict";T.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},2869:function(T){"use strict";var n=function A(){for(var o,s=[],l=0;l<256;l++){o=l;for(var g=0;g<8;g++)o=1&o?3988292384^o>>>1:o>>>1;s[l]=o}return s}();T.exports=function u(o,s,l,g){var f=n,E=g+l;o^=-1;for(var h=g;h>>8^f[255&(o^s[h])];return-1^o}},405:function(T,A,n){"use strict";var TA,u=n(4236),o=n(342),s=n(6069),l=n(2869),g=n(8898),c=-2,QA=258,yA=262,q=666;function oA(j,VA){return j.msg=g[VA],VA}function hA(j){return(j<<1)-(j>4?9:0)}function zA(j){for(var VA=j.length;--VA>=0;)j[VA]=0}function tt(j){var VA=j.state,_A=VA.pending;_A>j.avail_out&&(_A=j.avail_out),0!==_A&&(u.arraySet(j.output,VA.pending_buf,VA.pending_out,_A,j.next_out),j.next_out+=_A,VA.pending_out+=_A,j.total_out+=_A,j.avail_out-=_A,VA.pending-=_A,0===VA.pending&&(VA.pending_out=0))}function lt(j,VA){o._tr_flush_block(j,j.block_start>=0?j.block_start:-1,j.strstart-j.block_start,VA),j.block_start=j.strstart,tt(j.strm)}function YA(j,VA){j.pending_buf[j.pending++]=VA}function it(j,VA){j.pending_buf[j.pending++]=VA>>>8&255,j.pending_buf[j.pending++]=255&VA}function mt(j,VA,_A,vA){var kA=j.avail_in;return kA>vA&&(kA=vA),0===kA?0:(j.avail_in-=kA,u.arraySet(VA,j.input,j.next_in,kA,_A),1===j.state.wrap?j.adler=s(j.adler,VA,kA,_A):2===j.state.wrap&&(j.adler=l(j.adler,VA,kA,_A)),j.next_in+=kA,j.total_in+=kA,kA)}function Mt(j,VA){var kA,qA,_A=j.max_chain_length,vA=j.strstart,Ut=j.prev_length,It=j.nice_match,bt=j.strstart>j.w_size-yA?j.strstart-(j.w_size-yA):0,Vt=j.window,Pe=j.w_mask,re=j.prev,$t=j.strstart+QA,ve=Vt[vA+Ut-1],ze=Vt[vA+Ut];j.prev_length>=j.good_match&&(_A>>=2),It>j.lookahead&&(It=j.lookahead);do{if(Vt[(kA=VA)+Ut]===ze&&Vt[kA+Ut-1]===ve&&Vt[kA]===Vt[vA]&&Vt[++kA]===Vt[vA+1]){vA+=2,kA++;do{}while(Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&Vt[++vA]===Vt[++kA]&&vA<$t);if(qA=QA-($t-vA),vA=$t-QA,qA>Ut){if(j.match_start=VA,Ut=qA,qA>=It)break;ve=Vt[vA+Ut-1],ze=Vt[vA+Ut]}}}while((VA=re[VA&Pe])>bt&&0!=--_A);return Ut<=j.lookahead?Ut:j.lookahead}function dt(j){var _A,vA,kA,qA,Ut,VA=j.w_size;do{if(qA=j.window_size-j.lookahead-j.strstart,j.strstart>=VA+(VA-yA)){u.arraySet(j.window,j.window,VA,VA,0),j.match_start-=VA,j.strstart-=VA,j.block_start-=VA,_A=vA=j.hash_size;do{kA=j.head[--_A],j.head[_A]=kA>=VA?kA-VA:0}while(--vA);_A=vA=VA;do{kA=j.prev[--_A],j.prev[_A]=kA>=VA?kA-VA:0}while(--vA);qA+=VA}if(0===j.strm.avail_in)break;if(vA=mt(j.strm,j.window,j.strstart+j.lookahead,qA),j.lookahead+=vA,j.lookahead+j.insert>=3)for(j.ins_h=j.window[Ut=j.strstart-j.insert],j.ins_h=(j.ins_h<=3&&(j.ins_h=(j.ins_h<=3)if(vA=o._tr_tally(j,j.strstart-j.match_start,j.match_length-3),j.lookahead-=j.match_length,j.match_length<=j.max_lazy_match&&j.lookahead>=3){j.match_length--;do{j.strstart++,j.ins_h=(j.ins_h<=3&&(j.ins_h=(j.ins_h<4096)&&(j.match_length=2)),j.prev_length>=3&&j.match_length<=j.prev_length){kA=j.strstart+j.lookahead-3,vA=o._tr_tally(j,j.strstart-1-j.prev_match,j.prev_length-3),j.lookahead-=j.prev_length-1,j.prev_length-=2;do{++j.strstart<=kA&&(j.ins_h=(j.ins_h<15&&(Ut=2,vA-=16),kA<1||kA>9||8!==_A||vA<8||vA>15||VA<0||VA>9||qA<0||qA>4)return oA(j,c);8===vA&&(vA=9);var It=new L;return j.state=It,It.strm=j,It.wrap=Ut,It.gzhead=null,It.w_bits=vA,It.w_size=1<j.pending_buf_size-5&&(_A=j.pending_buf_size-5);;){if(j.lookahead<=1){if(dt(j),0===j.lookahead&&0===VA)return 1;if(0===j.lookahead)break}j.strstart+=j.lookahead,j.lookahead=0;var vA=j.block_start+_A;if((0===j.strstart||j.strstart>=vA)&&(j.lookahead=j.strstart-vA,j.strstart=vA,lt(j,!1),0===j.strm.avail_out)||j.strstart-j.block_start>=j.w_size-yA&&(lt(j,!1),0===j.strm.avail_out))return 1}return j.insert=0,4===VA?(lt(j,!0),0===j.strm.avail_out?3:4):(j.strstart>j.block_start&<(j,!1),1)}),new ut(4,4,8,4,et),new ut(4,5,16,8,et),new ut(4,6,32,32,et),new ut(4,4,16,16,st),new ut(8,16,32,32,st),new ut(8,16,128,128,st),new ut(8,32,128,256,st),new ut(32,128,258,1024,st),new ut(32,258,258,4096,st)],A.deflateInit=function NA(j,VA){return EA(j,VA,8,15,8,0)},A.deflateInit2=EA,A.deflateReset=x,A.deflateResetKeep=H,A.deflateSetHeader=function wA(j,VA){return j&&j.state&&2===j.state.wrap?(j.state.gzhead=VA,0):c},A.deflate=function eA(j,VA){var _A,vA,kA,qA;if(!j||!j.state||VA>5||VA<0)return j?oA(j,c):c;if(vA=j.state,!j.output||!j.input&&0!==j.avail_in||vA.status===q&&4!==VA)return oA(j,0===j.avail_out?-5:c);if(vA.strm=j,_A=vA.last_flush,vA.last_flush=VA,42===vA.status)if(2===vA.wrap)j.adler=0,YA(vA,31),YA(vA,139),YA(vA,8),vA.gzhead?(YA(vA,(vA.gzhead.text?1:0)+(vA.gzhead.hcrc?2:0)+(vA.gzhead.extra?4:0)+(vA.gzhead.name?8:0)+(vA.gzhead.comment?16:0)),YA(vA,255&vA.gzhead.time),YA(vA,vA.gzhead.time>>8&255),YA(vA,vA.gzhead.time>>16&255),YA(vA,vA.gzhead.time>>24&255),YA(vA,9===vA.level?2:vA.strategy>=2||vA.level<2?4:0),YA(vA,255&vA.gzhead.os),vA.gzhead.extra&&vA.gzhead.extra.length&&(YA(vA,255&vA.gzhead.extra.length),YA(vA,vA.gzhead.extra.length>>8&255)),vA.gzhead.hcrc&&(j.adler=l(j.adler,vA.pending_buf,vA.pending,0)),vA.gzindex=0,vA.status=69):(YA(vA,0),YA(vA,0),YA(vA,0),YA(vA,0),YA(vA,0),YA(vA,9===vA.level?2:vA.strategy>=2||vA.level<2?4:0),YA(vA,3),vA.status=113);else{var Ut=8+(vA.w_bits-8<<4)<<8;Ut|=(vA.strategy>=2||vA.level<2?0:vA.level<6?1:6===vA.level?2:3)<<6,0!==vA.strstart&&(Ut|=32),Ut+=31-Ut%31,vA.status=113,it(vA,Ut),0!==vA.strstart&&(it(vA,j.adler>>>16),it(vA,65535&j.adler)),j.adler=1}if(69===vA.status)if(vA.gzhead.extra){for(kA=vA.pending;vA.gzindex<(65535&vA.gzhead.extra.length)&&(vA.pending!==vA.pending_buf_size||(vA.gzhead.hcrc&&vA.pending>kA&&(j.adler=l(j.adler,vA.pending_buf,vA.pending-kA,kA)),tt(j),kA=vA.pending,vA.pending!==vA.pending_buf_size));)YA(vA,255&vA.gzhead.extra[vA.gzindex]),vA.gzindex++;vA.gzhead.hcrc&&vA.pending>kA&&(j.adler=l(j.adler,vA.pending_buf,vA.pending-kA,kA)),vA.gzindex===vA.gzhead.extra.length&&(vA.gzindex=0,vA.status=73)}else vA.status=73;if(73===vA.status)if(vA.gzhead.name){kA=vA.pending;do{if(vA.pending===vA.pending_buf_size&&(vA.gzhead.hcrc&&vA.pending>kA&&(j.adler=l(j.adler,vA.pending_buf,vA.pending-kA,kA)),tt(j),kA=vA.pending,vA.pending===vA.pending_buf_size)){qA=1;break}qA=vA.gzindexkA&&(j.adler=l(j.adler,vA.pending_buf,vA.pending-kA,kA)),0===qA&&(vA.gzindex=0,vA.status=91)}else vA.status=91;if(91===vA.status)if(vA.gzhead.comment){kA=vA.pending;do{if(vA.pending===vA.pending_buf_size&&(vA.gzhead.hcrc&&vA.pending>kA&&(j.adler=l(j.adler,vA.pending_buf,vA.pending-kA,kA)),tt(j),kA=vA.pending,vA.pending===vA.pending_buf_size)){qA=1;break}qA=vA.gzindexkA&&(j.adler=l(j.adler,vA.pending_buf,vA.pending-kA,kA)),0===qA&&(vA.status=103)}else vA.status=103;if(103===vA.status&&(vA.gzhead.hcrc?(vA.pending+2>vA.pending_buf_size&&tt(j),vA.pending+2<=vA.pending_buf_size&&(YA(vA,255&j.adler),YA(vA,j.adler>>8&255),j.adler=0,vA.status=113)):vA.status=113),0!==vA.pending){if(tt(j),0===j.avail_out)return vA.last_flush=-1,0}else if(0===j.avail_in&&hA(VA)<=hA(_A)&&4!==VA)return oA(j,-5);if(vA.status===q&&0!==j.avail_in)return oA(j,-5);if(0!==j.avail_in||0!==vA.lookahead||0!==VA&&vA.status!==q){var bt=2===vA.strategy?function Et(j,VA){for(var _A;;){if(0===j.lookahead&&(dt(j),0===j.lookahead)){if(0===VA)return 1;break}if(j.match_length=0,_A=o._tr_tally(j,0,j.window[j.strstart]),j.lookahead--,j.strstart++,_A&&(lt(j,!1),0===j.strm.avail_out))return 1}return j.insert=0,4===VA?(lt(j,!0),0===j.strm.avail_out?3:4):j.last_lit&&(lt(j,!1),0===j.strm.avail_out)?1:2}(vA,VA):3===vA.strategy?function ot(j,VA){for(var _A,vA,kA,qA,Ut=j.window;;){if(j.lookahead<=QA){if(dt(j),j.lookahead<=QA&&0===VA)return 1;if(0===j.lookahead)break}if(j.match_length=0,j.lookahead>=3&&j.strstart>0&&(vA=Ut[kA=j.strstart-1])===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]){qA=j.strstart+QA;do{}while(vA===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]&&vA===Ut[++kA]&&kAj.lookahead&&(j.match_length=j.lookahead)}if(j.match_length>=3?(_A=o._tr_tally(j,1,j.match_length-3),j.lookahead-=j.match_length,j.strstart+=j.match_length,j.match_length=0):(_A=o._tr_tally(j,0,j.window[j.strstart]),j.lookahead--,j.strstart++),_A&&(lt(j,!1),0===j.strm.avail_out))return 1}return j.insert=0,4===VA?(lt(j,!0),0===j.strm.avail_out?3:4):j.last_lit&&(lt(j,!1),0===j.strm.avail_out)?1:2}(vA,VA):TA[vA.level].func(vA,VA);if((3===bt||4===bt)&&(vA.status=q),1===bt||3===bt)return 0===j.avail_out&&(vA.last_flush=-1),0;if(2===bt&&(1===VA?o._tr_align(vA):5!==VA&&(o._tr_stored_block(vA,0,0,!1),3===VA&&(zA(vA.head),0===vA.lookahead&&(vA.strstart=0,vA.block_start=0,vA.insert=0))),tt(j),0===j.avail_out))return vA.last_flush=-1,0}return 4!==VA?0:vA.wrap<=0?1:(2===vA.wrap?(YA(vA,255&j.adler),YA(vA,j.adler>>8&255),YA(vA,j.adler>>16&255),YA(vA,j.adler>>24&255),YA(vA,255&j.total_in),YA(vA,j.total_in>>8&255),YA(vA,j.total_in>>16&255),YA(vA,j.total_in>>24&255)):(it(vA,j.adler>>>16),it(vA,65535&j.adler)),tt(j),vA.wrap>0&&(vA.wrap=-vA.wrap),0!==vA.pending?0:1)},A.deflateEnd=function rt(j){var VA;return j&&j.state?42!==(VA=j.state.status)&&69!==VA&&73!==VA&&91!==VA&&103!==VA&&113!==VA&&VA!==q?oA(j,c):(j.state=null,113===VA?oA(j,-3):0):c},A.deflateSetDictionary=function yt(j,VA){var vA,kA,qA,Ut,It,bt,Vt,Pe,_A=VA.length;if(!j||!j.state||2===(Ut=(vA=j.state).wrap)||1===Ut&&42!==vA.status||vA.lookahead)return c;for(1===Ut&&(j.adler=s(j.adler,VA,_A,0)),vA.wrap=0,_A>=vA.w_size&&(0===Ut&&(zA(vA.head),vA.strstart=0,vA.block_start=0,vA.insert=0),Pe=new u.Buf8(vA.w_size),u.arraySet(Pe,VA,_A-vA.w_size,vA.w_size,0),VA=Pe,_A=vA.w_size),It=j.avail_in,bt=j.next_in,Vt=j.input,j.avail_in=_A,j.next_in=0,j.input=VA,dt(vA);vA.lookahead>=3;){kA=vA.strstart,qA=vA.lookahead-2;do{vA.ins_h=(vA.ins_h<>>=U=y>>>24,M-=U,0==(U=y>>>16&255))uA[E++]=65535&y;else{if(!(16&U)){if(0==(64&U)){y=Y[(65535&y)+(Q&(1<>>=U,M-=U),M<15&&(Q+=sA[g++]<>>=U=y>>>24,M-=U,!(16&(U=y>>>16&255))){if(0==(64&U)){y=v[(65535&y)+(Q&(1<w){o.msg="invalid distance too far back",l.mode=30;break A}if(Q>>>=U,M-=U,b>(U=E-h)){if((U=b-U)>B&&l.sane){o.msg="invalid distance too far back",l.mode=30;break A}if(O=0,J=C,0===c){if(O+=e-U,U2;)uA[E++]=J[O++],uA[E++]=J[O++],uA[E++]=J[O++],S-=3;S&&(uA[E++]=J[O++],S>1&&(uA[E++]=J[O++]))}else{O=E-b;do{uA[E++]=uA[O++],uA[E++]=uA[O++],uA[E++]=uA[O++],S-=3}while(S>2);S&&(uA[E++]=uA[O++],S>1&&(uA[E++]=uA[O++]))}break}}break}}while(g>3)<<3))-1,o.next_in=g-=S,o.next_out=E,o.avail_in=g>>24&255)+(EA>>>8&65280)+((65280&EA)<<8)+((255&EA)<<24)}function mt(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new u.Buf16(320),this.work=new u.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Mt(EA){var NA;return EA&&EA.state?(EA.total_in=EA.total_out=(NA=EA.state).total=0,EA.msg="",NA.wrap&&(EA.adler=1&NA.wrap),NA.mode=1,NA.last=0,NA.havedict=0,NA.dmax=32768,NA.head=null,NA.hold=0,NA.bits=0,NA.lencode=NA.lendyn=new u.Buf32(852),NA.distcode=NA.distdyn=new u.Buf32(592),NA.sane=1,NA.back=-1,0):Q}function dt(EA){var NA;return EA&&EA.state?((NA=EA.state).wsize=0,NA.whave=0,NA.wnext=0,Mt(EA)):Q}function OA(EA,NA){var eA,rt;return!EA||!EA.state||(rt=EA.state,NA<0?(eA=0,NA=-NA):(eA=1+(NA>>4),NA<48&&(NA&=15)),NA&&(NA<8||NA>15))?Q:(null!==rt.window&&rt.wbits!==NA&&(rt.window=null),rt.wrap=eA,rt.wbits=NA,dt(EA))}function et(EA,NA){var eA,rt;return EA?(rt=new mt,EA.state=rt,rt.window=null,0!==(eA=OA(EA,NA))&&(EA.state=null),eA):Q}var Et,ut,ot=!0;function TA(EA){if(ot){var NA;for(Et=new u.Buf32(512),ut=new u.Buf32(32),NA=0;NA<144;)EA.lens[NA++]=8;for(;NA<256;)EA.lens[NA++]=9;for(;NA<280;)EA.lens[NA++]=7;for(;NA<288;)EA.lens[NA++]=8;for(g(1,EA.lens,0,288,Et,0,EA.work,{bits:9}),NA=0;NA<32;)EA.lens[NA++]=5;g(2,EA.lens,0,32,ut,0,EA.work,{bits:5}),ot=!1}EA.lencode=Et,EA.lenbits=9,EA.distcode=ut,EA.distbits=5}function Ft(EA,NA,eA,rt){var yt,j=EA.state;return null===j.window&&(j.wsize=1<=j.wsize?(u.arraySet(j.window,NA,eA-j.wsize,j.wsize,0),j.wnext=0,j.whave=j.wsize):((yt=j.wsize-j.wnext)>rt&&(yt=rt),u.arraySet(j.window,NA,eA-rt,yt,j.wnext),(rt-=yt)?(u.arraySet(j.window,NA,eA-rt,rt,0),j.wnext=rt,j.whave=j.wsize):(j.wnext+=yt,j.wnext===j.wsize&&(j.wnext=0),j.whave>>8&255,eA.check=s(eA.check,Te,2,0),kA=0,qA=0,eA.mode=2;break}if(eA.flags=0,eA.head&&(eA.head.done=!1),!(1&eA.wrap)||(((255&kA)<<8)+(kA>>8))%31){EA.msg="incorrect header check",eA.mode=30;break}if(8!=(15&kA)){EA.msg="unknown compression method",eA.mode=30;break}if(qA-=4,ne=8+(15&(kA>>>=4)),0===eA.wbits)eA.wbits=ne;else if(ne>eA.wbits){EA.msg="invalid window size",eA.mode=30;break}eA.dmax=1<>8&1),512&eA.flags&&(Te[0]=255&kA,Te[1]=kA>>>8&255,eA.check=s(eA.check,Te,2,0)),kA=0,qA=0,eA.mode=3;case 3:for(;qA<32;){if(0===_A)break A;_A--,kA+=rt[j++]<>>8&255,Te[2]=kA>>>16&255,Te[3]=kA>>>24&255,eA.check=s(eA.check,Te,4,0)),kA=0,qA=0,eA.mode=4;case 4:for(;qA<16;){if(0===_A)break A;_A--,kA+=rt[j++]<>8),512&eA.flags&&(Te[0]=255&kA,Te[1]=kA>>>8&255,eA.check=s(eA.check,Te,2,0)),kA=0,qA=0,eA.mode=5;case 5:if(1024&eA.flags){for(;qA<16;){if(0===_A)break A;_A--,kA+=rt[j++]<>>8&255,eA.check=s(eA.check,Te,2,0)),kA=0,qA=0}else eA.head&&(eA.head.extra=null);eA.mode=6;case 6:if(1024&eA.flags&&((bt=eA.length)>_A&&(bt=_A),bt&&(eA.head&&(ne=eA.head.extra_len-eA.length,eA.head.extra||(eA.head.extra=new Array(eA.head.extra_len)),u.arraySet(eA.head.extra,rt,j,bt,ne)),512&eA.flags&&(eA.check=s(eA.check,rt,bt,j)),_A-=bt,j+=bt,eA.length-=bt),eA.length))break A;eA.length=0,eA.mode=7;case 7:if(2048&eA.flags){if(0===_A)break A;bt=0;do{ne=rt[j+bt++],eA.head&&ne&&eA.length<65536&&(eA.head.name+=String.fromCharCode(ne))}while(ne&&bt<_A);if(512&eA.flags&&(eA.check=s(eA.check,rt,bt,j)),_A-=bt,j+=bt,ne)break A}else eA.head&&(eA.head.name=null);eA.length=0,eA.mode=8;case 8:if(4096&eA.flags){if(0===_A)break A;bt=0;do{ne=rt[j+bt++],eA.head&&ne&&eA.length<65536&&(eA.head.comment+=String.fromCharCode(ne))}while(ne&&bt<_A);if(512&eA.flags&&(eA.check=s(eA.check,rt,bt,j)),_A-=bt,j+=bt,ne)break A}else eA.head&&(eA.head.comment=null);eA.mode=9;case 9:if(512&eA.flags){for(;qA<16;){if(0===_A)break A;_A--,kA+=rt[j++]<>9&1,eA.head.done=!0),EA.adler=eA.check=0,eA.mode=12;break;case 10:for(;qA<32;){if(0===_A)break A;_A--,kA+=rt[j++]<>>=7&qA,qA-=7&qA,eA.mode=27;break}for(;qA<3;){if(0===_A)break A;_A--,kA+=rt[j++]<>>=1)){case 0:eA.mode=14;break;case 1:if(TA(eA),eA.mode=20,6===NA){kA>>>=2,qA-=2;break A}break;case 2:eA.mode=17;break;case 3:EA.msg="invalid block type",eA.mode=30}kA>>>=2,qA-=2;break;case 14:for(kA>>>=7&qA,qA-=7&qA;qA<32;){if(0===_A)break A;_A--,kA+=rt[j++]<>>16^65535)){EA.msg="invalid stored block lengths",eA.mode=30;break}if(eA.length=65535&kA,kA=0,qA=0,eA.mode=15,6===NA)break A;case 15:eA.mode=16;case 16:if(bt=eA.length){if(bt>_A&&(bt=_A),bt>vA&&(bt=vA),0===bt)break A;u.arraySet(yt,rt,j,bt,VA),_A-=bt,j+=bt,vA-=bt,VA+=bt,eA.length-=bt;break}eA.mode=12;break;case 17:for(;qA<14;){if(0===_A)break A;_A--,kA+=rt[j++]<>>=5)),qA-=5,eA.ncode=4+(15&(kA>>>=5)),kA>>>=4,qA-=4,eA.nlen>286||eA.ndist>30){EA.msg="too many length or distance symbols",eA.mode=30;break}eA.have=0,eA.mode=18;case 18:for(;eA.have>>=3,qA-=3}for(;eA.have<19;)eA.lens[Pn[eA.have++]]=0;if(eA.lencode=eA.lendyn,eA.lenbits=7,tn=g(0,eA.lens,0,19,eA.lencode,0,eA.work,en={bits:eA.lenbits}),eA.lenbits=en.bits,tn){EA.msg="invalid code lengths set",eA.mode=30;break}eA.have=0,eA.mode=19;case 19:for(;eA.have>>16&255,ze=65535&re,!(($t=re>>>24)<=qA);){if(0===_A)break A;_A--,kA+=rt[j++]<>>=$t,qA-=$t,eA.lens[eA.have++]=ze;else{if(16===ze){for(qe=$t+2;qA>>=$t,qA-=$t,0===eA.have){EA.msg="invalid bit length repeat",eA.mode=30;break}ne=eA.lens[eA.have-1],bt=3+(3&kA),kA>>>=2,qA-=2}else if(17===ze){for(qe=$t+3;qA>>=$t)),kA>>>=3,qA-=3}else{for(qe=$t+7;qA>>=$t)),kA>>>=7,qA-=7}if(eA.have+bt>eA.nlen+eA.ndist){EA.msg="invalid bit length repeat",eA.mode=30;break}for(;bt--;)eA.lens[eA.have++]=ne}}if(30===eA.mode)break;if(0===eA.lens[256]){EA.msg="invalid code -- missing end-of-block",eA.mode=30;break}if(eA.lenbits=9,tn=g(1,eA.lens,0,eA.nlen,eA.lencode,0,eA.work,en={bits:eA.lenbits}),eA.lenbits=en.bits,tn){EA.msg="invalid literal/lengths set",eA.mode=30;break}if(eA.distbits=6,eA.distcode=eA.distdyn,tn=g(2,eA.lens,eA.nlen,eA.ndist,eA.distcode,0,eA.work,en={bits:eA.distbits}),eA.distbits=en.bits,tn){EA.msg="invalid distances set",eA.mode=30;break}if(eA.mode=20,6===NA)break A;case 20:eA.mode=21;case 21:if(_A>=6&&vA>=258){EA.next_out=VA,EA.avail_out=vA,EA.next_in=j,EA.avail_in=_A,eA.hold=kA,eA.bits=qA,l(EA,It),VA=EA.next_out,yt=EA.output,vA=EA.avail_out,j=EA.next_in,rt=EA.input,_A=EA.avail_in,kA=eA.hold,qA=eA.bits,12===eA.mode&&(eA.back=-1);break}for(eA.back=0;ve=(re=eA.lencode[kA&(1<>>16&255,ze=65535&re,!(($t=re>>>24)<=qA);){if(0===_A)break A;_A--,kA+=rt[j++]<>Re)])>>>16&255,ze=65535&re,!(Re+($t=re>>>24)<=qA);){if(0===_A)break A;_A--,kA+=rt[j++]<>>=Re,qA-=Re,eA.back+=Re}if(kA>>>=$t,qA-=$t,eA.back+=$t,eA.length=ze,0===ve){eA.mode=26;break}if(32&ve){eA.back=-1,eA.mode=12;break}if(64&ve){EA.msg="invalid literal/length code",eA.mode=30;break}eA.extra=15&ve,eA.mode=22;case 22:if(eA.extra){for(qe=eA.extra;qA>>=eA.extra,qA-=eA.extra,eA.back+=eA.extra}eA.was=eA.length,eA.mode=23;case 23:for(;ve=(re=eA.distcode[kA&(1<>>16&255,ze=65535&re,!(($t=re>>>24)<=qA);){if(0===_A)break A;_A--,kA+=rt[j++]<>Re)])>>>16&255,ze=65535&re,!(Re+($t=re>>>24)<=qA);){if(0===_A)break A;_A--,kA+=rt[j++]<>>=Re,qA-=Re,eA.back+=Re}if(kA>>>=$t,qA-=$t,eA.back+=$t,64&ve){EA.msg="invalid distance code",eA.mode=30;break}eA.offset=ze,eA.extra=15&ve,eA.mode=24;case 24:if(eA.extra){for(qe=eA.extra;qA>>=eA.extra,qA-=eA.extra,eA.back+=eA.extra}if(eA.offset>eA.dmax){EA.msg="invalid distance too far back",eA.mode=30;break}eA.mode=25;case 25:if(0===vA)break A;if(eA.offset>(bt=It-vA)){if((bt=eA.offset-bt)>eA.whave&&eA.sane){EA.msg="invalid distance too far back",eA.mode=30;break}Vt=bt>eA.wnext?eA.wsize-(bt-=eA.wnext):eA.wnext-bt,bt>eA.length&&(bt=eA.length),Pe=eA.window}else Pe=yt,Vt=VA-eA.offset,bt=eA.length;bt>vA&&(bt=vA),vA-=bt,eA.length-=bt;do{yt[VA++]=Pe[Vt++]}while(--bt);0===eA.length&&(eA.mode=21);break;case 26:if(0===vA)break A;yt[VA++]=eA.length,vA--,eA.mode=21;break;case 27:if(eA.wrap){for(;qA<32;){if(0===_A)break A;_A--,kA|=rt[j++]<=1&&0===lA[O];O--);if(J>O&&(J=O),0===O)return Y[v++]=20971520,Y[v++]=20971520,I.bits=1,0;for(b=1;b0&&(0===c||1!==O))return-1;for(FA[1]=0,U=1;U852||2===c&&cA>592)return 1;for(;;){q=U-uA,p[S]nA?(z=bA[HA+p[S]],$=Z[CA+p[S]]):(z=96,$=0),dA=1<>uA)+(DA-=dA)]=q<<24|z<<16|$|0}while(0!==DA);for(dA=1<>=1;if(0!==dA?(pA&=dA-1,pA+=dA):pA=0,S++,0==--lA[U]){if(U===O)break;U=C[Q+p[S]]}if(U>J&&(pA&QA)!==gA){for(0===uA&&(uA=J),yA+=b,X=1<<(sA=U-uA);sA+uA852||2===c&&cA>592)return 1;Y[gA=pA&QA]=J<<24|sA<<16|yA-v|0}}return 0!==pA&&(Y[yA+pA]=4194304|U-uA<<24),I.bits=J,0}},8898:function(T){"use strict";T.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},342:function(T,A,n){"use strict";var u=n(4236);function f(L){for(var H=L.length;--H>=0;)L[H]=0}var c=256,C=286,Q=30,v=15,O=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],J=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],sA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],uA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],cA=new Array(576);f(cA);var pA=new Array(60);f(pA);var dA=new Array(512);f(dA);var DA=new Array(256);f(DA);var gA=new Array(29);f(gA);var Z,CA,nA,QA=new Array(Q);function yA(L,H,x,wA,EA){this.static_tree=L,this.extra_bits=H,this.extra_base=x,this.elems=wA,this.max_length=EA,this.has_stree=L&&L.length}function lA(L,H){this.dyn_tree=L,this.max_code=0,this.stat_desc=H}function FA(L){return L<256?dA[L]:dA[256+(L>>>7)]}function bA(L,H){L.pending_buf[L.pending++]=255&H,L.pending_buf[L.pending++]=H>>>8&255}function HA(L,H,x){L.bi_valid>16-x?(L.bi_buf|=H<>16-L.bi_valid,L.bi_valid+=x-16):(L.bi_buf|=H<>>=1,x<<=1}while(--H>0);return x>>>1}function fA(L,H,x){var NA,eA,wA=new Array(16),EA=0;for(NA=1;NA<=v;NA++)wA[NA]=EA=EA+x[NA-1]<<1;for(eA=0;eA<=H;eA++){var rt=L[2*eA+1];0!==rt&&(L[2*eA]=z(wA[rt]++,rt))}}function oA(L){var H;for(H=0;H8?bA(L,L.bi_buf):L.bi_valid>0&&(L.pending_buf[L.pending++]=L.bi_buf),L.bi_buf=0,L.bi_valid=0}function tt(L,H,x,wA){var EA=2*H,NA=2*x;return L[EA]>1;eA>=1;eA--)lt(L,x,eA);j=NA;do{eA=L.heap[1],L.heap[1]=L.heap[L.heap_len--],lt(L,x,1),rt=L.heap[1],L.heap[--L.heap_max]=eA,L.heap[--L.heap_max]=rt,x[2*j]=x[2*eA]+x[2*rt],L.depth[j]=(L.depth[eA]>=L.depth[rt]?L.depth[eA]:L.depth[rt])+1,x[2*eA+1]=x[2*rt+1]=j,L.heap[1]=j++,lt(L,x,1)}while(L.heap_len>=2);L.heap[--L.heap_max]=L.heap[1],function K(L,H){var j,VA,_A,vA,kA,qA,x=H.dyn_tree,wA=H.max_code,EA=H.stat_desc.static_tree,NA=H.stat_desc.has_stree,eA=H.stat_desc.extra_bits,rt=H.stat_desc.extra_base,yt=H.stat_desc.max_length,Ut=0;for(vA=0;vA<=v;vA++)L.bl_count[vA]=0;for(x[2*L.heap[L.heap_max]+1]=0,j=L.heap_max+1;j<573;j++)(vA=x[2*x[2*(VA=L.heap[j])+1]+1]+1)>yt&&(vA=yt,Ut++),x[2*VA+1]=vA,!(VA>wA)&&(L.bl_count[vA]++,kA=0,VA>=rt&&(kA=eA[VA-rt]),L.opt_len+=(qA=x[2*VA])*(vA+kA),NA&&(L.static_len+=qA*(EA[2*VA+1]+kA)));if(0!==Ut){do{for(vA=yt-1;0===L.bl_count[vA];)vA--;L.bl_count[vA]--,L.bl_count[vA+1]+=2,L.bl_count[yt]--,Ut-=2}while(Ut>0);for(vA=yt;0!==vA;vA--)for(VA=L.bl_count[vA];0!==VA;)!((_A=L.heap[--j])>wA)&&(x[2*_A+1]!==vA&&(L.opt_len+=(vA-x[2*_A+1])*x[2*_A],x[2*_A+1]=vA),VA--)}}(L,H),fA(x,yt,L.bl_count)}function mt(L,H,x){var wA,NA,EA=-1,eA=H[1],rt=0,yt=7,j=4;for(0===eA&&(yt=138,j=3),H[2*(x+1)+1]=65535,wA=0;wA<=x;wA++)NA=eA,eA=H[2*(wA+1)+1],!(++rt>=7;wA0?(2===L.strm.data_type&&(L.strm.data_type=function et(L){var x,H=4093624447;for(x=0;x<=31;x++,H>>>=1)if(1&H&&0!==L.dyn_ltree[2*x])return 0;if(0!==L.dyn_ltree[18]||0!==L.dyn_ltree[20]||0!==L.dyn_ltree[26])return 1;for(x=32;x=3&&0===L.bl_tree[2*uA[H]+1];H--);return L.opt_len+=3*(H+1)+5+5+4,H}(L),(NA=L.static_len+3+7>>>3)<=(EA=L.opt_len+3+7>>>3)&&(EA=NA)):EA=NA=x+5,x+4<=EA&&-1!==H?Et(L,H,x,wA):4===L.strategy||NA===EA?(HA(L,2+(wA?1:0),3),YA(L,cA,pA)):(HA(L,4+(wA?1:0),3),function OA(L,H,x,wA){var EA;for(HA(L,H-257,5),HA(L,x-1,5),HA(L,wA-4,4),EA=0;EA>>8&255,L.pending_buf[L.d_buf+2*L.last_lit+1]=255&H,L.pending_buf[L.l_buf+L.last_lit]=255&x,L.last_lit++,0===H?L.dyn_ltree[2*x]++:(L.matches++,H--,L.dyn_ltree[2*(DA[x]+c+1)]++,L.dyn_dtree[2*FA(H)]++),L.last_lit===L.lit_bufsize-1},A._tr_align=function ut(L){HA(L,2,3),q(L,256,cA),function $(L){16===L.bi_valid?(bA(L,L.bi_buf),L.bi_buf=0,L.bi_valid=0):L.bi_valid>=8&&(L.pending_buf[L.pending++]=255&L.bi_buf,L.bi_buf>>=8,L.bi_valid-=8)}(L)}},2292:function(T){"use strict";T.exports=function A(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},4155:function(T){var n,u,A=T.exports={};function o(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function l(C){if(n===setTimeout)return setTimeout(C,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(C,0);try{return n(C,0)}catch(Q){try{return n.call(null,C,0)}catch(M){return n.call(this,C,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(C){n=o}try{u="function"==typeof clearTimeout?clearTimeout:s}catch(C){u=s}}();var h,f=[],E=!1,r=-1;function w(){!E||!h||(E=!1,h.length?f=h.concat(f):r=-1,f.length&&e())}function e(){if(!E){var C=l(w);E=!0;for(var Q=f.length;Q;){for(h=f,f=[];++r1)for(var M=1;M"===K?(X(z,"onsgmldeclaration",z.sgmlDecl),z.sgmlDecl="",z.state=J.TEXT):(U(K)&&(z.state=J.SGML_DECL_QUOTED),z.sgmlDecl+=K);continue;case J.SGML_DECL_QUOTED:K===z.q&&(z.state=J.SGML_DECL,z.q=""),z.sgmlDecl+=K;continue;case J.DOCTYPE:">"===K?(z.state=J.TEXT,X(z,"ondoctype",z.doctype),z.doctype=!0):(z.doctype+=K,"["===K?z.state=J.DOCTYPE_DTD:U(K)&&(z.state=J.DOCTYPE_QUOTED,z.q=K));continue;case J.DOCTYPE_QUOTED:z.doctype+=K,K===z.q&&(z.q="",z.state=J.DOCTYPE);continue;case J.DOCTYPE_DTD:z.doctype+=K,"]"===K?z.state=J.DOCTYPE:U(K)&&(z.state=J.DOCTYPE_DTD_QUOTED,z.q=K);continue;case J.DOCTYPE_DTD_QUOTED:z.doctype+=K,K===z.q&&(z.state=J.DOCTYPE_DTD,z.q="");continue;case J.COMMENT:"-"===K?z.state=J.COMMENT_ENDING:z.comment+=K;continue;case J.COMMENT_ENDING:"-"===K?(z.state=J.COMMENT_ENDED,z.comment=pA(z.opt,z.comment),z.comment&&X(z,"oncomment",z.comment),z.comment=""):(z.comment+="-"+K,z.state=J.COMMENT);continue;case J.COMMENT_ENDED:">"!==K?(gA(z,"Malformed comment"),z.comment+="--"+K,z.state=J.COMMENT):z.state=J.TEXT;continue;case J.CDATA:"]"===K?z.state=J.CDATA_ENDING:z.cdata+=K;continue;case J.CDATA_ENDING:"]"===K?z.state=J.CDATA_ENDING_2:(z.cdata+="]"+K,z.state=J.CDATA);continue;case J.CDATA_ENDING_2:">"===K?(z.cdata&&X(z,"oncdata",z.cdata),X(z,"onclosecdata"),z.cdata="",z.state=J.TEXT):"]"===K?z.cdata+="]":(z.cdata+="]]"+K,z.state=J.CDATA);continue;case J.PROC_INST:"?"===K?z.state=J.PROC_INST_ENDING:y(K)?z.state=J.PROC_INST_BODY:z.procInstName+=K;continue;case J.PROC_INST_BODY:if(!z.procInstBody&&y(K))continue;"?"===K?z.state=J.PROC_INST_ENDING:z.procInstBody+=K;continue;case J.PROC_INST_ENDING:">"===K?(X(z,"onprocessinginstruction",{name:z.procInstName,body:z.procInstBody}),z.procInstName=z.procInstBody="",z.state=J.TEXT):(z.procInstBody+="?"+K,z.state=J.PROC_INST_BODY);continue;case J.OPEN_TAG:b(v,K)?z.tagName+=K:(QA(z),">"===K?CA(z):"/"===K?z.state=J.OPEN_TAG_SLASH:(y(K)||gA(z,"Invalid character in tag name"),z.state=J.ATTRIB));continue;case J.OPEN_TAG_SLASH:">"===K?(CA(z,!0),nA(z)):(gA(z,"Forward-slash in opening tag not followed by >"),z.state=J.ATTRIB);continue;case J.ATTRIB:if(y(K))continue;">"===K?CA(z):"/"===K?z.state=J.OPEN_TAG_SLASH:b(Y,K)?(z.attribName=K,z.attribValue="",z.state=J.ATTRIB_NAME):gA(z,"Invalid attribute name");continue;case J.ATTRIB_NAME:"="===K?z.state=J.ATTRIB_VALUE:">"===K?(gA(z,"Attribute without value"),z.attribValue=z.attribName,Z(z),CA(z)):y(K)?z.state=J.ATTRIB_NAME_SAW_WHITE:b(v,K)?z.attribName+=K:gA(z,"Invalid attribute name");continue;case J.ATTRIB_NAME_SAW_WHITE:if("="===K)z.state=J.ATTRIB_VALUE;else{if(y(K))continue;gA(z,"Attribute without value"),z.tag.attributes[z.attribName]="",z.attribValue="",X(z,"onattribute",{name:z.attribName,value:""}),z.attribName="",">"===K?CA(z):b(Y,K)?(z.attribName=K,z.state=J.ATTRIB_NAME):(gA(z,"Invalid attribute name"),z.state=J.ATTRIB)}continue;case J.ATTRIB_VALUE:if(y(K))continue;U(K)?(z.q=K,z.state=J.ATTRIB_VALUE_QUOTED):(gA(z,"Unquoted attribute value"),z.state=J.ATTRIB_VALUE_UNQUOTED,z.attribValue=K);continue;case J.ATTRIB_VALUE_QUOTED:if(K!==z.q){"&"===K?z.state=J.ATTRIB_VALUE_ENTITY_Q:z.attribValue+=K;continue}Z(z),z.q="",z.state=J.ATTRIB_VALUE_CLOSED;continue;case J.ATTRIB_VALUE_CLOSED:y(K)?z.state=J.ATTRIB:">"===K?CA(z):"/"===K?z.state=J.OPEN_TAG_SLASH:b(Y,K)?(gA(z,"No whitespace between attributes"),z.attribName=K,z.attribValue="",z.state=J.ATTRIB_NAME):gA(z,"Invalid attribute name");continue;case J.ATTRIB_VALUE_UNQUOTED:if(!S(K)){"&"===K?z.state=J.ATTRIB_VALUE_ENTITY_U:z.attribValue+=K;continue}Z(z),">"===K?CA(z):z.state=J.ATTRIB;continue;case J.CLOSE_TAG:if(z.tagName)">"===K?nA(z):b(v,K)?z.tagName+=K:z.script?(z.script+=""===K?nA(z):gA(z,"Invalid characters in closing tag");continue;case J.TEXT_ENTITY:case J.ATTRIB_VALUE_ENTITY_Q:case J.ATTRIB_VALUE_ENTITY_U:var oA,hA;switch(z.state){case J.TEXT_ENTITY:oA=J.TEXT,hA="textNode";break;case J.ATTRIB_VALUE_ENTITY_Q:oA=J.ATTRIB_VALUE_QUOTED,hA="attribValue";break;case J.ATTRIB_VALUE_ENTITY_U:oA=J.ATTRIB_VALUE_UNQUOTED,hA="attribValue"}";"===K?(z[hA]+=lA(z),z.entity="",z.state=oA):b(z.entity.length?I:p,K)?z.entity+=K:(gA(z,"Invalid character in entity name"),z[hA]+="&"+z.entity+K,z.entity="",z.state=oA);continue;default:throw new Error(z,"Unknown state: "+z.state)}return z.position>=z.bufferCheckPosition&&function g(q){for(var z=Math.max(o.MAX_BUFFER_LENGTH,10),$=0,K=0,fA=s.length;Kz)switch(s[K]){case"textNode":cA(q);break;case"cdata":X(q,"oncdata",q.cdata),q.cdata="";break;case"script":X(q,"onscript",q.script),q.script="";break;default:dA(q,"Max buffer length exceeded: "+s[K])}$=Math.max($,IA)}q.bufferCheckPosition=o.MAX_BUFFER_LENGTH-$+q.position}(z),z},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function E(q){cA(q),""!==q.cdata&&(X(q,"oncdata",q.cdata),q.cdata=""),""!==q.script&&(X(q,"onscript",q.script),q.script="")}(this)}};try{h=n(2830).Stream}catch(q){h=function(){}}var r=o.EVENTS.filter(function(q){return"error"!==q&&"end"!==q});function e(q,z){if(!(this instanceof e))return new e(q,z);h.apply(this),this._parser=new l(q,z),this.writable=!0,this.readable=!0;var $=this;this._parser.onend=function(){$.emit("end")},this._parser.onerror=function(K){$.emit("error",K),$._parser.error=null},this._decoder=null,r.forEach(function(K){Object.defineProperty($,"on"+K,{get:function(){return $._parser["on"+K]},set:function(fA){if(!fA)return $.removeAllListeners(K),$._parser["on"+K]=fA,fA;$.on(K,fA)},enumerable:!0,configurable:!1})})}(e.prototype=Object.create(h.prototype,{constructor:{value:e}})).write=function(q){if("function"==typeof u&&"function"==typeof u.isBuffer&&u.isBuffer(q)){if(!this._decoder){var z=n(2553).s;this._decoder=new z("utf8")}q=this._decoder.write(q)}return this._parser.write(q.toString()),this.emit("data",q),!0},e.prototype.end=function(q){return q&&q.length&&this.write(q),this._parser.end(),!0},e.prototype.on=function(q,z){var $=this;return!$._parser["on"+q]&&-1!==r.indexOf(q)&&($._parser["on"+q]=function(){var K=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);K.splice(0,0,q),$.emit.apply($,K)}),h.prototype.on.call($,q,z)};var C="http://www.w3.org/XML/1998/namespace",Q="http://www.w3.org/2000/xmlns/",M={xml:C,xmlns:Q},Y=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,v=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,p=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,I=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function y(q){return" "===q||"\n"===q||"\r"===q||"\t"===q}function U(q){return'"'===q||"'"===q}function S(q){return">"===q||y(q)}function b(q,z){return q.test(z)}function O(q,z){return!b(q,z)}var q,z,$,J=0;for(var sA in o.STATE={BEGIN:J++,BEGIN_WHITESPACE:J++,TEXT:J++,TEXT_ENTITY:J++,OPEN_WAKA:J++,SGML_DECL:J++,SGML_DECL_QUOTED:J++,DOCTYPE:J++,DOCTYPE_QUOTED:J++,DOCTYPE_DTD:J++,DOCTYPE_DTD_QUOTED:J++,COMMENT_STARTING:J++,COMMENT:J++,COMMENT_ENDING:J++,COMMENT_ENDED:J++,CDATA:J++,CDATA_ENDING:J++,CDATA_ENDING_2:J++,PROC_INST:J++,PROC_INST_BODY:J++,PROC_INST_ENDING:J++,OPEN_TAG:J++,OPEN_TAG_SLASH:J++,ATTRIB:J++,ATTRIB_NAME:J++,ATTRIB_NAME_SAW_WHITE:J++,ATTRIB_VALUE:J++,ATTRIB_VALUE_QUOTED:J++,ATTRIB_VALUE_CLOSED:J++,ATTRIB_VALUE_UNQUOTED:J++,ATTRIB_VALUE_ENTITY_Q:J++,ATTRIB_VALUE_ENTITY_U:J++,CLOSE_TAG:J++,CLOSE_TAG_SAW_WHITE:J++,SCRIPT:J++,SCRIPT_ENDING:J++},o.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},o.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(o.ENTITIES).forEach(function(q){var z=o.ENTITIES[q],$="number"==typeof z?String.fromCharCode(z):z;o.ENTITIES[q]=$}),o.STATE)o.STATE[o.STATE[sA]]=sA;function uA(q,z,$){q[z]&&q[z]($)}function X(q,z,$){q.textNode&&cA(q),uA(q,z,$)}function cA(q){q.textNode=pA(q.opt,q.textNode),q.textNode&&uA(q,"ontext",q.textNode),q.textNode=""}function pA(q,z){return q.trim&&(z=z.trim()),q.normalize&&(z=z.replace(/\s+/g," ")),z}function dA(q,z){return cA(q),q.trackPosition&&(z+="\nLine: "+q.line+"\nColumn: "+q.column+"\nChar: "+q.c),z=new Error(z),q.error=z,uA(q,"onerror",z),q}function DA(q){return q.sawRoot&&!q.closedRoot&&gA(q,"Unclosed root tag"),q.state!==J.BEGIN&&q.state!==J.BEGIN_WHITESPACE&&q.state!==J.TEXT&&dA(q,"Unexpected end"),cA(q),q.c="",q.closed=!0,uA(q,"onend"),l.call(q,q.strict,q.opt),q}function gA(q,z){if("object"!=typeof q||!(q instanceof l))throw new Error("bad call to strictFail");q.strict&&dA(q,z)}function QA(q){q.strict||(q.tagName=q.tagName[q.looseCase]());var z=q.tags[q.tags.length-1]||q,$=q.tag={name:q.tagName,attributes:{}};q.opt.xmlns&&($.ns=z.ns),q.attribList.length=0,X(q,"onopentagstart",$)}function yA(q,z){var K=q.indexOf(":")<0?["",q]:q.split(":"),fA=K[0],IA=K[1];return z&&"xmlns"===q&&(fA="xmlns",IA=""),{prefix:fA,local:IA}}function Z(q){if(q.strict||(q.attribName=q.attribName[q.looseCase]()),-1!==q.attribList.indexOf(q.attribName)||q.tag.attributes.hasOwnProperty(q.attribName))q.attribName=q.attribValue="";else{if(q.opt.xmlns){var z=yA(q.attribName,!0),K=z.local;if("xmlns"===z.prefix)if("xml"===K&&q.attribValue!==C)gA(q,"xml: prefix must be bound to "+C+"\nActual: "+q.attribValue);else if("xmlns"===K&&q.attribValue!==Q)gA(q,"xmlns: prefix must be bound to "+Q+"\nActual: "+q.attribValue);else{var fA=q.tag,IA=q.tags[q.tags.length-1]||q;fA.ns===IA.ns&&(fA.ns=Object.create(IA.ns)),fA.ns[K]=q.attribValue}q.attribList.push([q.attribName,q.attribValue])}else q.tag.attributes[q.attribName]=q.attribValue,X(q,"onattribute",{name:q.attribName,value:q.attribValue});q.attribName=q.attribValue=""}}function CA(q,z){if(q.opt.xmlns){var $=q.tag,K=yA(q.tagName);$.prefix=K.prefix,$.local=K.local,$.uri=$.ns[K.prefix]||"",$.prefix&&!$.uri&&(gA(q,"Unbound namespace prefix: "+JSON.stringify(q.tagName)),$.uri=K.prefix),$.ns&&(q.tags[q.tags.length-1]||q).ns!==$.ns&&Object.keys($.ns).forEach(function(dt){X(q,"onopennamespace",{prefix:dt,uri:$.ns[dt]})});for(var IA=0,oA=q.attribList.length;IA",q.tagName="",void(q.state=J.SCRIPT);X(q,"onscript",q.script),q.script=""}var z=q.tags.length,$=q.tagName;q.strict||($=$[q.looseCase]());for(var K=$;z--&&q.tags[z].name!==K;)gA(q,"Unexpected close tag");if(z<0)return gA(q,"Unmatched closing tag: "+q.tagName),q.textNode+="",void(q.state=J.TEXT);q.tagName=$;for(var IA=q.tags.length;IA-- >z;){var oA=q.tag=q.tags.pop();q.tagName=q.tag.name,X(q,"onclosetag",q.tagName);var hA={};for(var zA in oA.ns)hA[zA]=oA.ns[zA];q.opt.xmlns&&oA.ns!==(q.tags[q.tags.length-1]||q).ns&&Object.keys(oA.ns).forEach(function(lt){X(q,"onclosenamespace",{prefix:lt,uri:oA.ns[lt]})})}0===z&&(q.closedRoot=!0),q.tagName=q.attribValue=q.attribName="",q.attribList.length=0,q.state=J.TEXT}function lA(q){var K,z=q.entity,$=z.toLowerCase(),fA="";return q.ENTITIES[z]?q.ENTITIES[z]:q.ENTITIES[$]?q.ENTITIES[$]:("#"===(z=$).charAt(0)&&("x"===z.charAt(1)?(z=z.slice(2),fA=(K=parseInt(z,16)).toString(16)):(z=z.slice(1),fA=(K=parseInt(z,10)).toString(10))),z=z.replace(/^0+/,""),isNaN(K)||fA.toLowerCase()!==z?(gA(q,"Invalid character entity"),"&"+q.entity+";"):String.fromCodePoint(K))}function FA(q,z){"<"===z?(q.state=J.OPEN_WAKA,q.startTagPosition=q.position):y(z)||(gA(q,"Non-whitespace before first tag."),q.textNode=z,q.state=J.TEXT)}function bA(q,z){var $="";return z1114111||z(lt)!==lt)throw RangeError("Invalid code point: "+lt);lt<=65535?fA.push(lt):fA.push(55296+((lt-=65536)>>10),lt%1024+56320),(hA+1===zA||fA.length>K)&&(tt+=q.apply(null,fA),fA.length=0)}return tt},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:$,configurable:!0,writable:!0}):String.fromCodePoint=$)}(A)},2830:function(T,A,n){T.exports=s;var u=n(7187).EventEmitter;function s(){u.call(this)}n(5717)(s,u),s.Readable=n(6577),s.Writable=n(323),s.Duplex=n(8656),s.Transform=n(4473),s.PassThrough=n(2366),s.finished=n(1086),s.pipeline=n(6472),s.Stream=s,s.prototype.pipe=function(l,g){var f=this;function E(C){l.writable&&!1===l.write(C)&&f.pause&&f.pause()}function h(){f.readable&&f.resume&&f.resume()}f.on("data",E),l.on("drain",h),!l._isStdio&&(!g||!1!==g.end)&&(f.on("end",w),f.on("close",e));var r=!1;function w(){r||(r=!0,l.end())}function e(){r||(r=!0,"function"==typeof l.destroy&&l.destroy())}function B(C){if(c(),0===u.listenerCount(this,"error"))throw C}function c(){f.removeListener("data",E),l.removeListener("drain",h),f.removeListener("end",w),f.removeListener("close",e),f.removeListener("error",B),l.removeListener("error",B),f.removeListener("end",c),f.removeListener("close",c),l.removeListener("close",c)}return f.on("error",B),l.on("error",B),f.on("end",c),f.on("close",c),l.on("close",c),l.emit("pipe",f),l}},8106:function(T){"use strict";var n={};function u(f,E,h){h||(h=Error);var w=function(e){function B(c,C,Q){return e.call(this,function r(e,B,c){return"string"==typeof E?E:E(e,B,c)}(c,C,Q))||this}return function A(f,E){f.prototype=Object.create(E.prototype),f.prototype.constructor=f,f.__proto__=E}(B,e),B}(h);w.prototype.name=h.name,w.prototype.code=f,n[f]=w}function o(f,E){if(Array.isArray(f)){var h=f.length;return f=f.map(function(r){return String(r)}),h>2?"one of ".concat(E," ").concat(f.slice(0,h-1).join(", "),", or ")+f[h-1]:2===h?"one of ".concat(E," ").concat(f[0]," or ").concat(f[1]):"of ".concat(E," ").concat(f[0])}return"of ".concat(E," ").concat(String(f))}u("ERR_INVALID_OPT_VALUE",function(f,E){return'The value "'+E+'" is invalid for option "'+f+'"'},TypeError),u("ERR_INVALID_ARG_TYPE",function(f,E,h){var r,w;if("string"==typeof E&&function s(f,E,h){return f.substr(!h||h<0?0:+h,E.length)===E}(E,"not ")?(r="must not be",E=E.replace(/^not /,"")):r="must be",function l(f,E,h){return(void 0===h||h>f.length)&&(h=f.length),f.substring(h-E.length,h)===E}(f," argument"))w="The ".concat(f," ").concat(r," ").concat(o(E,"type"));else{var e=function g(f,E,h){return"number"!=typeof h&&(h=0),!(h+E.length>f.length)&&-1!==f.indexOf(E,h)}(f,".")?"property":"argument";w='The "'.concat(f,'" ').concat(e," ").concat(r," ").concat(o(E,"type"))}return w+". Received type ".concat(typeof h)},TypeError),u("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),u("ERR_METHOD_NOT_IMPLEMENTED",function(f){return"The "+f+" method is not implemented"}),u("ERR_STREAM_PREMATURE_CLOSE","Premature close"),u("ERR_STREAM_DESTROYED",function(f){return"Cannot call "+f+" after a stream was destroyed"}),u("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),u("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),u("ERR_STREAM_WRITE_AFTER_END","write after end"),u("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),u("ERR_UNKNOWN_ENCODING",function(f){return"Unknown encoding: "+f},TypeError),u("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),T.exports.q=n},8656:function(T,A,n){"use strict";var u=n(4155),o=Object.keys||function(e){var B=[];for(var c in e)B.push(c);return B};T.exports=h;var s=n(6577),l=n(323);n(5717)(h,s);for(var g=o(l.prototype),f=0;f0)if("string"!=typeof hA&&!YA.objectMode&&Object.getPrototypeOf(hA)!==f.prototype&&(hA=function h(oA){return f.from(oA)}(hA)),tt)YA.endEmitted?b(oA,new I):cA(oA,YA,hA,!0);else if(YA.ended)b(oA,new v);else{if(YA.destroyed)return!1;YA.reading=!1,YA.decoder&&!zA?(hA=YA.decoder.write(hA),YA.objectMode||0!==hA.length?cA(oA,YA,hA,!1):CA(oA,YA)):cA(oA,YA,hA,!1)}else tt||(YA.reading=!1,CA(oA,YA));return!YA.ended&&(YA.lengthhA.highWaterMark&&(hA.highWaterMark=function DA(oA){return oA>=dA?oA=dA:(oA--,oA|=oA>>>1,oA|=oA>>>2,oA|=oA>>>4,oA|=oA>>>8,oA|=oA>>>16,oA++),oA}(oA)),oA<=hA.length?oA:hA.ended?hA.length:(hA.needReadable=!0,0))}function yA(oA){var hA=oA._readableState;e("emitReadable",hA.needReadable,hA.emittedReadable),hA.needReadable=!1,hA.emittedReadable||(e("emitReadable",hA.flowing),hA.emittedReadable=!0,u.nextTick(Z,oA))}function Z(oA){var hA=oA._readableState;e("emitReadable_",hA.destroyed,hA.length,hA.ended),!hA.destroyed&&(hA.length||hA.ended)&&(oA.emit("readable"),hA.emittedReadable=!1),hA.needReadable=!hA.flowing&&!hA.ended&&hA.length<=hA.highWaterMark,z(oA)}function CA(oA,hA){hA.readingMore||(hA.readingMore=!0,u.nextTick(nA,oA,hA))}function nA(oA,hA){for(;!hA.reading&&!hA.ended&&(hA.length0,hA.resumeScheduled&&!hA.paused?hA.flowing=!0:oA.listenerCount("data")>0&&oA.resume()}function bA(oA){e("readable nexttick read 0"),oA.read(0)}function q(oA,hA){e("resume",hA.reading),hA.reading||oA.read(0),hA.resumeScheduled=!1,oA.emit("resume"),z(oA),hA.flowing&&!hA.reading&&oA.read(0)}function z(oA){var hA=oA._readableState;for(e("flow",hA.flowing);hA.flowing&&null!==oA.read(););}function $(oA,hA){return 0===hA.length?null:(hA.objectMode?zA=hA.buffer.shift():!oA||oA>=hA.length?(zA=hA.decoder?hA.buffer.join(""):1===hA.buffer.length?hA.buffer.first():hA.buffer.concat(hA.length),hA.buffer.clear()):zA=hA.buffer.consume(oA,hA.decoder),zA);var zA}function K(oA){var hA=oA._readableState;e("endReadable",hA.endEmitted),hA.endEmitted||(hA.ended=!0,u.nextTick(fA,hA,oA))}function fA(oA,hA){if(e("endReadableNT",oA.endEmitted,oA.length),!oA.endEmitted&&0===oA.length&&(oA.endEmitted=!0,hA.readable=!1,hA.emit("end"),oA.autoDestroy)){var zA=hA._writableState;(!zA||zA.autoDestroy&&zA.finished)&&hA.destroy()}}function IA(oA,hA){for(var zA=0,tt=oA.length;zA=hA.highWaterMark:hA.length>0)||hA.ended))return e("read: emitReadable",hA.length,hA.ended),0===hA.length&&hA.ended?K(this):yA(this),null;if(0===(oA=gA(oA,hA))&&hA.ended)return 0===hA.length&&K(this),null;var lt,tt=hA.needReadable;return e("need readable",tt),(0===hA.length||hA.length-oA0?$(oA,hA):null)?(hA.needReadable=hA.length<=hA.highWaterMark,oA=0):(hA.length-=oA,hA.awaitDrain=0),0===hA.length&&(hA.ended||(hA.needReadable=!0),zA!==oA&&hA.ended&&K(this)),null!==lt&&this.emit("data",lt),lt},uA.prototype._read=function(oA){b(this,new p("_read()"))},uA.prototype.pipe=function(oA,hA){var zA=this,tt=this._readableState;switch(tt.pipesCount){case 0:tt.pipes=oA;break;case 1:tt.pipes=[tt.pipes,oA];break;default:tt.pipes.push(oA)}tt.pipesCount+=1,e("pipe count=%d opts=%j",tt.pipesCount,hA);var YA=hA&&!1===hA.end||oA===u.stdout||oA===u.stderr?ut:mt;function it(TA,Ft){e("onunpipe"),TA===zA&&Ft&&!1===Ft.hasUnpiped&&(Ft.hasUnpiped=!0,function OA(){e("cleanup"),oA.removeListener("close",ot),oA.removeListener("finish",Et),oA.removeListener("drain",Mt),oA.removeListener("error",st),oA.removeListener("unpipe",it),zA.removeListener("end",mt),zA.removeListener("end",ut),zA.removeListener("data",et),dt=!0,tt.awaitDrain&&(!oA._writableState||oA._writableState.needDrain)&&Mt()}())}function mt(){e("onend"),oA.end()}tt.endEmitted?u.nextTick(YA):zA.once("end",YA),oA.on("unpipe",it);var Mt=function lA(oA){return function(){var zA=oA._readableState;e("pipeOnDrain",zA.awaitDrain),zA.awaitDrain&&zA.awaitDrain--,0===zA.awaitDrain&&l(oA,"data")&&(zA.flowing=!0,z(oA))}}(zA);oA.on("drain",Mt);var dt=!1;function et(TA){e("ondata");var Ft=oA.write(TA);e("dest.write",Ft),!1===Ft&&((1===tt.pipesCount&&tt.pipes===oA||tt.pipesCount>1&&-1!==IA(tt.pipes,oA))&&!dt&&(e("false write response, pause",tt.awaitDrain),tt.awaitDrain++),zA.pause())}function st(TA){e("onerror",TA),ut(),oA.removeListener("error",st),0===l(oA,"error")&&b(oA,TA)}function ot(){oA.removeListener("finish",Et),ut()}function Et(){e("onfinish"),oA.removeListener("close",ot),ut()}function ut(){e("unpipe"),zA.unpipe(oA)}return zA.on("data",et),function J(oA,hA,zA){if("function"==typeof oA.prependListener)return oA.prependListener(hA,zA);oA._events&&oA._events[hA]?Array.isArray(oA._events[hA])?oA._events[hA].unshift(zA):oA._events[hA]=[zA,oA._events[hA]]:oA.on(hA,zA)}(oA,"error",st),oA.once("close",ot),oA.once("finish",Et),oA.emit("pipe",zA),tt.flowing||(e("pipe resume"),zA.resume()),oA},uA.prototype.unpipe=function(oA){var hA=this._readableState,zA={hasUnpiped:!1};if(0===hA.pipesCount)return this;if(1===hA.pipesCount)return oA&&oA!==hA.pipes||(oA||(oA=hA.pipes),hA.pipes=null,hA.pipesCount=0,hA.flowing=!1,oA&&oA.emit("unpipe",this,zA)),this;if(!oA){var tt=hA.pipes,lt=hA.pipesCount;hA.pipes=null,hA.pipesCount=0,hA.flowing=!1;for(var YA=0;YA0,!1!==tt.flowing&&this.resume()):"readable"===oA&&!tt.endEmitted&&!tt.readableListening&&(tt.readableListening=tt.needReadable=!0,tt.flowing=!1,tt.emittedReadable=!1,e("on readable",tt.length,tt.reading),tt.length?yA(this):tt.reading||u.nextTick(bA,this)),zA},uA.prototype.removeListener=function(oA,hA){var zA=g.prototype.removeListener.call(this,oA,hA);return"readable"===oA&&u.nextTick(FA,this),zA},uA.prototype.removeAllListeners=function(oA){var hA=g.prototype.removeAllListeners.apply(this,arguments);return("readable"===oA||void 0===oA)&&u.nextTick(FA,this),hA},uA.prototype.resume=function(){var oA=this._readableState;return oA.flowing||(e("resume"),oA.flowing=!oA.readableListening,function HA(oA,hA){hA.resumeScheduled||(hA.resumeScheduled=!0,u.nextTick(q,oA,hA))}(this,oA)),oA.paused=!1,this},uA.prototype.pause=function(){return e("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(e("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},uA.prototype.wrap=function(oA){var hA=this,zA=this._readableState,tt=!1;for(var lt in oA.on("end",function(){if(e("wrapped end"),zA.decoder&&!zA.ended){var it=zA.decoder.end();it&&it.length&&hA.push(it)}hA.push(null)}),oA.on("data",function(it){e("wrapped data"),zA.decoder&&(it=zA.decoder.write(it)),zA.objectMode&&null==it||!(zA.objectMode||it&&it.length)||hA.push(it)||(tt=!0,oA.pause())}),oA)void 0===this[lt]&&"function"==typeof oA[lt]&&(this[lt]=function(mt){return function(){return oA[mt].apply(oA,arguments)}}(lt));for(var YA=0;YA-1))throw new U($);return this._writableState.defaultEncoding=$,this},Object.defineProperty(sA.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(sA.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),sA.prototype._write=function(z,$,K){K(new M("_write()"))},sA.prototype._writev=null,sA.prototype.end=function(z,$,K){var fA=this._writableState;return"function"==typeof z?(K=z,z=null,$=null):"function"==typeof $&&(K=$,$=null),null!=z&&this.write(z,$),fA.corked&&(fA.corked=1,this.uncork()),fA.ending||function HA(z,$,K){$.ending=!0,bA(z,$),K&&($.finished?u.nextTick(K):z.once("finish",K)),$.ended=!0,z.writable=!1}(this,fA,K),this},Object.defineProperty(sA.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(sA.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function($){!this._writableState||(this._writableState.destroyed=$)}}),sA.prototype.destroy=e.destroy,sA.prototype._undestroy=e.undestroy,sA.prototype._destroy=function(z,$){$(z)}},828:function(T,A,n){"use strict";var o,u=n(4155);function s(p,I,y){return I in p?Object.defineProperty(p,I,{value:y,enumerable:!0,configurable:!0,writable:!0}):p[I]=y,p}var l=n(1086),g=Symbol("lastResolve"),f=Symbol("lastReject"),E=Symbol("error"),h=Symbol("ended"),r=Symbol("lastPromise"),w=Symbol("handlePromise"),e=Symbol("stream");function B(p,I){return{value:p,done:I}}function c(p){var I=p[g];if(null!==I){var y=p[e].read();null!==y&&(p[r]=null,p[g]=null,p[f]=null,I(B(y,!1)))}}function C(p){u.nextTick(c,p)}var M=Object.getPrototypeOf(function(){}),Y=Object.setPrototypeOf((s(o={get stream(){return this[e]},next:function(){var I=this,y=this[E];if(null!==y)return Promise.reject(y);if(this[h])return Promise.resolve(B(void 0,!0));if(this[e].destroyed)return new Promise(function(O,J){u.nextTick(function(){I[E]?J(I[E]):O(B(void 0,!0))})});var S,U=this[r];if(U)S=new Promise(function Q(p,I){return function(y,U){p.then(function(){I[h]?y(B(void 0,!0)):I[w](y,U)},U)}}(U,this));else{var b=this[e].read();if(null!==b)return Promise.resolve(B(b,!1));S=new Promise(this[w])}return this[r]=S,S}},Symbol.asyncIterator,function(){return this}),s(o,"return",function(){var I=this;return new Promise(function(y,U){I[e].destroy(null,function(S){S?U(S):y(B(void 0,!0))})})}),o),M);T.exports=function(I){var y,U=Object.create(Y,(s(y={},e,{value:I,writable:!0}),s(y,g,{value:null,writable:!0}),s(y,f,{value:null,writable:!0}),s(y,E,{value:null,writable:!0}),s(y,h,{value:I._readableState.endEmitted,writable:!0}),s(y,w,{value:function(b,O){var J=U[e].read();J?(U[r]=null,U[g]=null,U[f]=null,b(B(J,!1))):(U[g]=b,U[f]=O)},writable:!0}),y));return U[r]=null,l(I,function(S){if(S&&"ERR_STREAM_PREMATURE_CLOSE"!==S.code){var b=U[f];return null!==b&&(U[r]=null,U[g]=null,U[f]=null,b(S)),void(U[E]=S)}var O=U[g];null!==O&&(U[r]=null,U[g]=null,U[f]=null,O(B(void 0,!0))),U[h]=!0}),I.on("readable",C.bind(null,U)),U}},1029:function(T,A,n){"use strict";var u=n(4155);function s(h,r){f(h,r),l(h)}function l(h){h._writableState&&!h._writableState.emitClose||h._readableState&&!h._readableState.emitClose||h.emit("close")}function f(h,r){h.emit("error",r)}T.exports={destroy:function o(h,r){var w=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(r?r(h):h&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,u.nextTick(f,this,h)):u.nextTick(f,this,h)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(h||null,function(c){!r&&c?w._writableState?w._writableState.errorEmitted?u.nextTick(l,w):(w._writableState.errorEmitted=!0,u.nextTick(s,w,c)):u.nextTick(s,w,c):r?(u.nextTick(l,w),r(c)):u.nextTick(l,w)}),this)},undestroy:function g(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function E(h,r){var w=h._readableState,e=h._writableState;w&&w.autoDestroy||e&&e.autoDestroy?h.destroy(r):h.emit("error",r)}}},1086:function(T,A,n){"use strict";var u=n(8106).q.ERR_STREAM_PREMATURE_CLOSE;function s(){}T.exports=function g(f,E,h){if("function"==typeof E)return g(f,null,E);E||(E={}),h=function o(f){var E=!1;return function(){if(!E){E=!0;for(var h=arguments.length,r=new Array(h),w=0;w0,function(S){Y||(Y=S),S&&v.forEach(r),!y&&(v.forEach(r),M(Y))})});return C.reduce(w)}},94:function(T,A,n){"use strict";var u=n(8106).q.ERR_INVALID_OPT_VALUE;T.exports={getHighWaterMark:function s(l,g,f,E){var h=function o(l,g,f){return null!=l.highWaterMark?l.highWaterMark:g?l[f]:null}(g,E,f);if(null!=h){if(!isFinite(h)||Math.floor(h)!==h||h<0)throw new u(E?f:"highWaterMark",h);return Math.floor(h)}return l.objectMode?16:16384}}},3194:function(T,A,n){T.exports=n(7187).EventEmitter},8487:function(T,A,n){var u,s;void 0!==(s="function"==typeof(u=function(){"use strict";function g(e,B,c){var C=new XMLHttpRequest;C.open("GET",e),C.responseType="blob",C.onload=function(){w(C.response,B,c)},C.onerror=function(){console.error("could not download file")},C.send()}function f(e){var B=new XMLHttpRequest;B.open("HEAD",e,!1);try{B.send()}catch(c){}return 200<=B.status&&299>=B.status}function E(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(c){var B=document.createEvent("MouseEvents");B.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(B)}}var h="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,r=h.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),w=h.saveAs||("object"!=typeof window||window!==h?function(){}:"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!r?function(e,B,c){var C=h.URL||h.webkitURL,Q=document.createElement("a");Q.download=B=B||e.name||"download",Q.rel="noopener","string"==typeof e?(Q.href=e,Q.origin===location.origin?E(Q):f(Q.href)?g(e,B,c):E(Q,Q.target="_blank")):(Q.href=C.createObjectURL(e),setTimeout(function(){C.revokeObjectURL(Q.href)},4e4),setTimeout(function(){E(Q)},0))}:"msSaveOrOpenBlob"in navigator?function(e,B,c){if(B=B||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(function l(e,B){return void 0===B?B={autoBom:!1}:"object"!=typeof B&&(console.warn("Deprecated: Expected third argument to be a object"),B={autoBom:!B}),B.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e}(e,c),B);else if(f(e))g(e,B,c);else{var C=document.createElement("a");C.href=e,C.target="_blank",setTimeout(function(){E(C)})}}:function(e,B,c,C){if((C=C||open("","_blank"))&&(C.document.title=C.document.body.innerText="downloading..."),"string"==typeof e)return g(e,B,c);var Q="application/octet-stream"===e.type,M=/constructor/i.test(h.HTMLElement)||h.safari,Y=/CriOS\/[\d]+/.test(navigator.userAgent);if((Y||Q&&M||r)&&"undefined"!=typeof FileReader){var v=new FileReader;v.onloadend=function(){var y=v.result;y=Y?y:y.replace(/^data:[^;]*;/,"data:attachment/file;"),C?C.location.href=y:location=y,C=null},v.readAsDataURL(e)}else{var p=h.URL||h.webkitURL,I=p.createObjectURL(e);C?C.location=I:location.href=I,C=null,setTimeout(function(){p.revokeObjectURL(I)},4e4)}});h.saveAs=w.saveAs=w,T.exports=w})?u.apply(A,[]):u)&&(T.exports=s)},2553:function(T,A,n){"use strict";var u=n(1750).Buffer,o=u.isEncoding||function(v){switch((v=""+v)&&v.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function g(v){var p;switch(this.encoding=function l(v){var p=function s(v){if(!v)return"utf8";for(var p;;)switch(v){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return v;default:if(p)return;v=(""+v).toLowerCase(),p=!0}}(v);if("string"!=typeof p&&(u.isEncoding===o||!o(v)))throw new Error("Unknown encoding: "+v);return p||v}(v),this.encoding){case"utf16le":this.text=B,this.end=c,p=4;break;case"utf8":this.fillLast=r,p=4;break;case"base64":this.text=C,this.end=Q,p=3;break;default:return this.write=M,void(this.end=Y)}this.lastNeed=0,this.lastTotal=0,this.lastChar=u.allocUnsafe(p)}function f(v){return v<=127?0:v>>5==6?2:v>>4==14?3:v>>3==30?4:v>>6==2?-1:-2}function r(v){var p=this.lastTotal-this.lastNeed,I=function h(v,p,I){if(128!=(192&p[0]))return v.lastNeed=0,"\ufffd";if(v.lastNeed>1&&p.length>1){if(128!=(192&p[1]))return v.lastNeed=1,"\ufffd";if(v.lastNeed>2&&p.length>2&&128!=(192&p[2]))return v.lastNeed=2,"\ufffd"}}(this,v);return void 0!==I?I:this.lastNeed<=v.length?(v.copy(this.lastChar,p,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(v.copy(this.lastChar,p,0,v.length),void(this.lastNeed-=v.length))}function B(v,p){if((v.length-p)%2==0){var I=v.toString("utf16le",p);if(I){var y=I.charCodeAt(I.length-1);if(y>=55296&&y<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=v[v.length-2],this.lastChar[1]=v[v.length-1],I.slice(0,-1)}return I}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=v[v.length-1],v.toString("utf16le",p,v.length-1)}function c(v){var p=v&&v.length?this.write(v):"";return this.lastNeed?p+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):p}function C(v,p){var I=(v.length-p)%3;return 0===I?v.toString("base64",p):(this.lastNeed=3-I,this.lastTotal=3,1===I?this.lastChar[0]=v[v.length-1]:(this.lastChar[0]=v[v.length-2],this.lastChar[1]=v[v.length-1]),v.toString("base64",p,v.length-I))}function Q(v){var p=v&&v.length?this.write(v):"";return this.lastNeed?p+this.lastChar.toString("base64",0,3-this.lastNeed):p}function M(v){return v.toString(this.encoding)}function Y(v){return v&&v.length?this.write(v):""}A.s=g,g.prototype.write=function(v){if(0===v.length)return"";var p,I;if(this.lastNeed){if(void 0===(p=this.fillLast(v)))return"";I=this.lastNeed,this.lastNeed=0}else I=0;return I=0?(U>0&&(v.lastNeed=U-1),U):--y=0?(U>0&&(v.lastNeed=U-2),U):--y=0?(U>0&&(2===U?U=0:v.lastNeed=U-3),U):0}(this,v,p);if(!this.lastNeed)return v.toString("utf8",p);this.lastTotal=I;var y=v.length-(I-this.lastNeed);return v.copy(this.lastChar,0,y),v.toString("utf8",p,y)},g.prototype.fillLast=function(v){if(this.lastNeed<=v.length)return v.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);v.copy(this.lastChar,this.lastTotal-this.lastNeed,0,v.length),this.lastNeed-=v.length}},311:function(T){function u(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function o(S,b){this.source=S,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=b,this.destLen=0,this.ltree=new u,this.dtree=new u}var s=new u,l=new u,g=new Uint8Array(30),f=new Uint16Array(30),E=new Uint8Array(30),h=new Uint16Array(30),r=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),w=new u,e=new Uint8Array(320);function B(S,b,O,J){var sA,uA;for(sA=0;sA>>=1,b}function Y(S,b,O){if(!b)return O;for(;S.bitcount<24;)S.tag|=S.source[S.sourceIndex++]<>>16-b;return S.tag>>>=b,S.bitcount-=b,J+O}function v(S,b){for(;S.bitcount<24;)S.tag|=S.source[S.sourceIndex++]<>>=1,++sA,O+=b.table[sA],J-=b.table[sA]}while(J>=0);return S.tag=uA,S.bitcount-=sA,b.trans[O+J]}function p(S,b,O){var J,sA,uA,X,cA,pA;for(J=Y(S,5,257),sA=Y(S,5,1),uA=Y(S,4,4),X=0;X<19;++X)e[X]=0;for(X=0;X8;)S.sourceIndex--,S.bitcount-=8;if((b=256*(b=S.source[S.sourceIndex+1])+S.source[S.sourceIndex])!==(65535&~(256*S.source[S.sourceIndex+3]+S.source[S.sourceIndex+2])))return-3;for(S.sourceIndex+=4,J=b;J;--J)S.dest[S.destLen++]=S.source[S.sourceIndex++];return S.bitcount=0,0}(function c(S,b){var O;for(O=0;O<7;++O)S.table[O]=0;for(S.table[7]=24,S.table[8]=152,S.table[9]=112,O=0;O<24;++O)S.trans[O]=256+O;for(O=0;O<144;++O)S.trans[24+O]=O;for(O=0;O<8;++O)S.trans[168+O]=280+O;for(O=0;O<112;++O)S.trans[176+O]=144+O;for(O=0;O<5;++O)b.table[O]=0;for(b.table[5]=32,O=0;O<32;++O)b.trans[O]=O})(s,l),B(g,f,4,3),B(E,h,2,1),g[28]=0,f[28]=258,T.exports=function U(S,b){var J,uA,O=new o(S,b);do{switch(J=M(O),Y(O,2,0)){case 0:uA=y(O);break;case 1:uA=I(O,s,l);break;case 2:p(O,O.ltree,O.dtree),uA=I(O,O.ltree,O.dtree);break;default:uA=-3}if(0!==uA)throw new Error("Data error")}while(!J);return O.destLen=tA.length?{done:!0}:{done:!1,value:tA[m++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function r(tA,P){(null==P||P>tA.length)&&(P=tA.length);for(var V=0,m=new Array(P);V0?iA[0]:"value";if(AA.has(JA))return AA.get(JA);var ct=F.apply(this,iA);return AA.set(JA,ct),ct}return Object.defineProperty(this,P,{value:rA}),rA}}}}y.registerFormat=function(tA){U.push(tA)},y.openSync=function(tA,P){var V=I.readFileSync(tA);return y.create(V,P)},y.open=function(tA,P,V){"function"==typeof P&&(V=P,P=null),I.readFile(tA,function(m,F){if(m)return V(m);try{var R=y.create(F,P)}catch(AA){return V(AA)}return V(null,R)})},y.create=function(tA,P){for(var V=0;V>1},searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,endCode:new e.LazyArray(e.uint16,"segCount"),reservedPad:new e.Reserved(e.uint16),startCode:new e.LazyArray(e.uint16,"segCount"),idDelta:new e.LazyArray(e.int16,"segCount"),idRangeOffset:new e.LazyArray(e.uint16,"segCount"),glyphIndexArray:new e.LazyArray(e.uint16,function(tA){return(tA.length-tA._currentOffset)/2})},6:{length:e.uint16,language:e.uint16,firstCode:e.uint16,entryCount:e.uint16,glyphIndices:new e.LazyArray(e.uint16,"entryCount")},8:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint16,is32:new e.LazyArray(e.uint8,8192),nGroups:e.uint32,groups:new e.LazyArray(sA,"nGroups")},10:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,firstCode:e.uint32,entryCount:e.uint32,glyphIndices:new e.LazyArray(e.uint16,"numChars")},12:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(sA,"nGroups")},13:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(sA,"nGroups")},14:{length:e.uint32,numRecords:e.uint32,varSelectors:new e.LazyArray(dA,"numRecords")}}),gA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,table:new e.Pointer(e.uint32,DA,{type:"parent",lazy:!0})}),QA=new e.Struct({version:e.uint16,numSubtables:e.uint16,tables:new e.Array(gA,"numSubtables")}),yA=new e.Struct({version:e.int32,revision:e.int32,checkSumAdjustment:e.uint32,magicNumber:e.uint32,flags:e.uint16,unitsPerEm:e.uint16,created:new e.Array(e.int32,2),modified:new e.Array(e.int32,2),xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,macStyle:new e.Bitfield(e.uint16,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:e.uint16,fontDirectionHint:e.int16,indexToLocFormat:e.int16,glyphDataFormat:e.int16}),Z=new e.Struct({version:e.int32,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceWidthMax:e.uint16,minLeftSideBearing:e.int16,minRightSideBearing:e.int16,xMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),CA=new e.Struct({advance:e.uint16,bearing:e.int16}),nA=new e.Struct({metrics:new e.LazyArray(CA,function(tA){return tA.parent.hhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.hhea.numberOfMetrics})}),lA=new e.Struct({version:e.int32,numGlyphs:e.uint16,maxPoints:e.uint16,maxContours:e.uint16,maxComponentPoints:e.uint16,maxComponentContours:e.uint16,maxZones:e.uint16,maxTwilightPoints:e.uint16,maxStorage:e.uint16,maxFunctionDefs:e.uint16,maxInstructionDefs:e.uint16,maxStackElements:e.uint16,maxSizeOfInstructions:e.uint16,maxComponentElements:e.uint16,maxComponentDepth:e.uint16});function FA(tA,P,V){return void 0===V&&(V=0),1===tA&&HA[V]?HA[V]:bA[tA][P]}var bA=[["utf16be","utf16be","utf16be","utf16be","utf16be","utf16be"],["macroman","shift-jis","big5","euc-kr","iso-8859-6","iso-8859-8","macgreek","maccyrillic","symbol","Devanagari","Gurmukhi","Gujarati","Oriya","Bengali","Tamil","Telugu","Kannada","Malayalam","Sinhalese","Burmese","Khmer","macthai","Laotian","Georgian","Armenian","gb-2312-80","Tibetan","Mongolian","Geez","maccenteuro","Vietnamese","Sindhi"],["ascii"],["symbol","utf16be","shift-jis","gb18030","big5","wansung","johab",null,null,null,"utf16be"]],HA={15:"maciceland",17:"macturkish",18:"maccroatian",24:"maccenteuro",25:"maccenteuro",26:"maccenteuro",27:"maccenteuro",28:"maccenteuro",30:"maciceland",37:"macromania",38:"maccenteuro",39:"maccenteuro",40:"maccenteuro",143:"macinuit",146:"macgaelic"},q=[[],{0:"en",30:"fo",60:"ks",90:"rw",1:"fr",31:"fa",61:"ku",91:"rn",2:"de",32:"ru",62:"sd",92:"ny",3:"it",33:"zh",63:"bo",93:"mg",4:"nl",34:"nl-BE",64:"ne",94:"eo",5:"sv",35:"ga",65:"sa",128:"cy",6:"es",36:"sq",66:"mr",129:"eu",7:"da",37:"ro",67:"bn",130:"ca",8:"pt",38:"cz",68:"as",131:"la",9:"no",39:"sk",69:"gu",132:"qu",10:"he",40:"si",70:"pa",133:"gn",11:"ja",41:"yi",71:"or",134:"ay",12:"ar",42:"sr",72:"ml",135:"tt",13:"fi",43:"mk",73:"kn",136:"ug",14:"el",44:"bg",74:"ta",137:"dz",15:"is",45:"uk",75:"te",138:"jv",16:"mt",46:"be",76:"si",139:"su",17:"tr",47:"uz",77:"my",140:"gl",18:"hr",48:"kk",78:"km",141:"af",19:"zh-Hant",49:"az-Cyrl",79:"lo",142:"br",20:"ur",50:"az-Arab",80:"vi",143:"iu",21:"hi",51:"hy",81:"id",144:"gd",22:"th",52:"ka",82:"tl",145:"gv",23:"ko",53:"mo",83:"ms",146:"ga",24:"lt",54:"ky",84:"ms-Arab",147:"to",25:"pl",55:"tg",85:"am",148:"el-polyton",26:"hu",56:"tk",86:"ti",149:"kl",27:"es",57:"mn-CN",87:"om",150:"az",28:"lv",58:"mn",88:"so",151:"nn",29:"se",59:"ps",89:"sw"},[],{1078:"af",16393:"en-IN",1159:"rw",1074:"tn",1052:"sq",6153:"en-IE",1089:"sw",1115:"si",1156:"gsw",8201:"en-JM",1111:"kok",1051:"sk",1118:"am",17417:"en-MY",1042:"ko",1060:"sl",5121:"ar-DZ",5129:"en-NZ",1088:"ky",11274:"es-AR",15361:"ar-BH",13321:"en-PH",1108:"lo",16394:"es-BO",3073:"ar",18441:"en-SG",1062:"lv",13322:"es-CL",2049:"ar-IQ",7177:"en-ZA",1063:"lt",9226:"es-CO",11265:"ar-JO",11273:"en-TT",2094:"dsb",5130:"es-CR",13313:"ar-KW",2057:"en-GB",1134:"lb",7178:"es-DO",12289:"ar-LB",1033:"en",1071:"mk",12298:"es-EC",4097:"ar-LY",12297:"en-ZW",2110:"ms-BN",17418:"es-SV",6145:"ary",1061:"et",1086:"ms",4106:"es-GT",8193:"ar-OM",1080:"fo",1100:"ml",18442:"es-HN",16385:"ar-QA",1124:"fil",1082:"mt",2058:"es-MX",1025:"ar-SA",1035:"fi",1153:"mi",19466:"es-NI",10241:"ar-SY",2060:"fr-BE",1146:"arn",6154:"es-PA",7169:"aeb",3084:"fr-CA",1102:"mr",15370:"es-PY",14337:"ar-AE",1036:"fr",1148:"moh",10250:"es-PE",9217:"ar-YE",5132:"fr-LU",1104:"mn",20490:"es-PR",1067:"hy",6156:"fr-MC",2128:"mn-CN",3082:"es",1101:"as",4108:"fr-CH",1121:"ne",1034:"es",2092:"az-Cyrl",1122:"fy",1044:"nb",21514:"es-US",1068:"az",1110:"gl",2068:"nn",14346:"es-UY",1133:"ba",1079:"ka",1154:"oc",8202:"es-VE",1069:"eu",3079:"de-AT",1096:"or",2077:"sv-FI",1059:"be",1031:"de",1123:"ps",1053:"sv",2117:"bn",5127:"de-LI",1045:"pl",1114:"syr",1093:"bn-IN",4103:"de-LU",1046:"pt",1064:"tg",8218:"bs-Cyrl",2055:"de-CH",2070:"pt-PT",2143:"tzm",5146:"bs",1032:"el",1094:"pa",1097:"ta",1150:"br",1135:"kl",1131:"qu-BO",1092:"tt",1026:"bg",1095:"gu",2155:"qu-EC",1098:"te",1027:"ca",1128:"ha",3179:"qu",1054:"th",3076:"zh-HK",1037:"he",1048:"ro",1105:"bo",5124:"zh-MO",1081:"hi",1047:"rm",1055:"tr",2052:"zh",1038:"hu",1049:"ru",1090:"tk",4100:"zh-SG",1039:"is",9275:"smn",1152:"ug",1028:"zh-TW",1136:"ig",4155:"smj-NO",1058:"uk",1155:"co",1057:"id",5179:"smj",1070:"hsb",1050:"hr",1117:"iu",3131:"se-FI",1056:"ur",4122:"hr-BA",2141:"iu-Latn",1083:"se",2115:"uz-Cyrl",1029:"cs",2108:"ga",2107:"se-SE",1091:"uz",1030:"da",1076:"xh",8251:"sms",1066:"vi",1164:"prs",1077:"zu",6203:"sma-NO",1106:"cy",1125:"dv",1040:"it",7227:"sms",1160:"wo",2067:"nl-BE",2064:"it-CH",1103:"sa",1157:"sah",1043:"nl",1041:"ja",7194:"sr-Cyrl-BA",1144:"ii",3081:"en-AU",1099:"kn",3098:"sr",1130:"yo",10249:"en-BZ",1087:"kk",6170:"sr-Latn-BA",4105:"en-CA",1107:"km",2074:"sr-Latn",9225:"en-029",1158:"quc",1132:"nso"}],z=new e.Struct({platformID:e.uint16,encodingID:e.uint16,languageID:e.uint16,nameID:e.uint16,length:e.uint16,string:new e.Pointer(e.uint16,new e.String("length",function(tA){return FA(tA.platformID,tA.encodingID,tA.languageID)}),{type:"parent",relativeTo:function(P){return P.parent.stringOffset},allowNull:!1})}),$=new e.Struct({length:e.uint16,tag:new e.Pointer(e.uint16,new e.String("length","utf16be"),{type:"parent",relativeTo:function(P){return P.stringOffset}})}),K=new e.VersionedStruct(e.uint16,{0:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(z,"count")},1:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(z,"count"),langTagCount:e.uint16,langTags:new e.Array($,"langTagCount")}}),fA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];K.process=function(tA){for(var m,P={},V=E(this.records);!(m=V()).done;){var F=m.value,R=q[F.platformID][F.languageID];null==R&&null!=this.langTags&&F.languageID>=32768&&(R=this.langTags[F.languageID-32768].tag),null==R&&(R=F.platformID+"-"+F.languageID);var AA=F.nameID>=256?"fontFeatures":fA[F.nameID]||F.nameID;null==P[AA]&&(P[AA]={});var rA=P[AA];F.nameID>=256&&(rA=rA[F.nameID]||(rA[F.nameID]={})),("string"==typeof F.string||"string"!=typeof rA[R])&&(rA[R]=F.string)}this.records=P},K.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var tA=[];for(var P in this.records){var V=this.records[P];"fontFeatures"!==P&&(tA.push({platformID:3,encodingID:1,languageID:1033,nameID:fA.indexOf(P),length:u.byteLength(V.en,"utf16le"),string:V.en}),"postscriptName"===P&&tA.push({platformID:1,encodingID:0,languageID:0,nameID:fA.indexOf(P),length:V.en.length,string:V.en}))}this.records=tA,this.count=tA.length,this.stringOffset=K.size(this,null,!1)}};var IA=new e.VersionedStruct(e.uint16,{header:{xAvgCharWidth:e.int16,usWeightClass:e.uint16,usWidthClass:e.uint16,fsType:new e.Bitfield(e.uint16,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:e.int16,ySubscriptYSize:e.int16,ySubscriptXOffset:e.int16,ySubscriptYOffset:e.int16,ySuperscriptXSize:e.int16,ySuperscriptYSize:e.int16,ySuperscriptXOffset:e.int16,ySuperscriptYOffset:e.int16,yStrikeoutSize:e.int16,yStrikeoutPosition:e.int16,sFamilyClass:e.int16,panose:new e.Array(e.uint8,10),ulCharRange:new e.Array(e.uint32,4),vendorID:new e.String(4),fsSelection:new e.Bitfield(e.uint16,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:e.uint16,usLastCharIndex:e.uint16},0:{},1:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2)},2:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16},5:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16,usLowerOpticalPointSize:e.uint16,usUpperOpticalPointSize:e.uint16}}),oA=IA.versions;oA[3]=oA[4]=oA[2];var hA=new e.VersionedStruct(e.fixed32,{header:{italicAngle:e.fixed32,underlinePosition:e.int16,underlineThickness:e.int16,isFixedPitch:e.uint32,minMemType42:e.uint32,maxMemType42:e.uint32,minMemType1:e.uint32,maxMemType1:e.uint32},1:{},2:{numberOfGlyphs:e.uint16,glyphNameIndex:new e.Array(e.uint16,"numberOfGlyphs"),names:new e.Array(new e.String(e.uint8))},2.5:{numberOfGlyphs:e.uint16,offsets:new e.Array(e.uint8,"numberOfGlyphs")},3:{},4:{map:new e.Array(e.uint32,function(tA){return tA.parent.maxp.numGlyphs})}}),zA=new e.Struct({controlValues:new e.Array(e.int16)}),tt=new e.Struct({instructions:new e.Array(e.uint8)}),lt=new e.VersionedStruct("head.indexToLocFormat",{0:{offsets:new e.Array(e.uint16)},1:{offsets:new e.Array(e.uint32)}});lt.process=function(){if(0===this.version)for(var tA=0;tA>>=1};var YA=new e.Struct({controlValueProgram:new e.Array(e.uint8)}),it=new e.Array(new e.Buffer),mt=function(){function tA(V){this.type=V}var P=tA.prototype;return P.getCFFVersion=function(m){for(;m&&!m.hdrSize;)m=m.parent;return m?m.version:-1},P.decode=function(m,F){var AA=this.getCFFVersion(F)>=2?m.readUInt32BE():m.readUInt16BE();if(0===AA)return[];var aA,rA=m.readUInt8();if(1===rA)aA=e.uint8;else if(2===rA)aA=e.uint16;else if(3===rA)aA=e.uint24;else{if(4!==rA)throw new Error("Bad offset size in CFFIndex: ".concat(rA," ").concat(m.pos));aA=e.uint32}for(var iA=[],SA=m.pos+(AA+1)*rA-1,JA=aA.decode(m),ct=0;ct>4;if(15===AA)break;F+=dt[AA];var rA=15&R;if(15===rA)break;F+=dt[rA]}return parseFloat(F)}return null},tA.size=function(V){return V.forceLarge&&(V=32768),(0|V)!==V?1+Math.ceil(((""+V).length+1)/2):-107<=V&&V<=107?1:108<=V&&V<=1131||-1131<=V&&V<=-108?2:-32768<=V&&V<=32767?3:5},tA.encode=function(V,m){var F=Number(m);if(m.forceLarge)return V.writeUInt8(29),V.writeInt32BE(F);if((0|F)===F)return-107<=F&&F<=107?V.writeUInt8(F+139):108<=F&&F<=1131?(V.writeUInt8(247+((F-=108)>>8)),V.writeUInt8(255&F)):-1131<=F&&F<=-108?(V.writeUInt8(251+((F=-F-108)>>8)),V.writeUInt8(255&F)):-32768<=F&&F<=32767?(V.writeUInt8(28),V.writeInt16BE(F)):(V.writeUInt8(29),V.writeInt32BE(F));V.writeUInt8(30);for(var R=""+F,AA=0;AAR;)F.pop()},tA}(),null],[19,"Subrs",new ot(new mt,{type:"local"}),null]]),Ft=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","001.000","001.001","001.002","001.003","Black","Bold","Book","Light","Medium","Regular","Roman","Semibold"],L=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","","endash","dagger","daggerdbl","periodcentered","","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","","questiondown","","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","","ring","cedilla","","hungarumlaut","ogonek","caron","emdash","","","","","","","","","","","","","","","","","AE","","ordfeminine","","","","","Lslash","Oslash","OE","ordmasculine","","","","","","ae","","","","dotlessi","","","lslash","oslash","oe","germandbls"],x=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron"],NA=new e.Struct({reserved:new e.Reserved(e.uint16),reqFeatureIndex:e.uint16,featureCount:e.uint16,featureIndexes:new e.Array(e.uint16,"featureCount")}),eA=new e.Struct({tag:new e.String(4),langSys:new e.Pointer(e.uint16,NA,{type:"parent"})}),rt=new e.Struct({defaultLangSys:new e.Pointer(e.uint16,NA),count:e.uint16,langSysRecords:new e.Array(eA,"count")}),yt=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,rt,{type:"parent"})}),j=new e.Array(yt,e.uint16),VA=new e.Struct({featureParams:e.uint16,lookupCount:e.uint16,lookupListIndexes:new e.Array(e.uint16,"lookupCount")}),_A=new e.Struct({tag:new e.String(4),feature:new e.Pointer(e.uint16,VA,{type:"parent"})}),vA=new e.Array(_A,e.uint16),kA=new e.Struct({markAttachmentType:e.uint8,flags:new e.Bitfield(e.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function qA(tA){var P=new e.Struct({lookupType:e.uint16,flags:kA,subTableCount:e.uint16,subTables:new e.Array(new e.Pointer(e.uint16,tA),"subTableCount"),markFilteringSet:new e.Optional(e.uint16,function(V){return V.flags.flags.useMarkFilteringSet})});return new e.LazyArray(new e.Pointer(e.uint16,P),e.uint16)}var Ut=new e.Struct({start:e.uint16,end:e.uint16,startCoverageIndex:e.uint16}),It=new e.VersionedStruct(e.uint16,{1:{glyphCount:e.uint16,glyphs:new e.Array(e.uint16,"glyphCount")},2:{rangeCount:e.uint16,rangeRecords:new e.Array(Ut,"rangeCount")}}),bt=new e.Struct({start:e.uint16,end:e.uint16,class:e.uint16}),Vt=new e.VersionedStruct(e.uint16,{1:{startGlyph:e.uint16,glyphCount:e.uint16,classValueArray:new e.Array(e.uint16,"glyphCount")},2:{classRangeCount:e.uint16,classRangeRecord:new e.Array(bt,"classRangeCount")}}),Pe=new e.Struct({a:e.uint16,b:e.uint16,deltaFormat:e.uint16}),re=new e.Struct({sequenceIndex:e.uint16,lookupListIndex:e.uint16}),$t=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(re,"lookupCount")}),ve=new e.Array(new e.Pointer(e.uint16,$t),e.uint16),ze=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,classes:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(re,"lookupCount")}),Re=new e.Array(new e.Pointer(e.uint16,ze),e.uint16),vn=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,It),ruleSetCount:e.uint16,ruleSets:new e.Array(new e.Pointer(e.uint16,ve),"ruleSetCount")},2:{coverage:new e.Pointer(e.uint16,It),classDef:new e.Pointer(e.uint16,Vt),classSetCnt:e.uint16,classSet:new e.Array(new e.Pointer(e.uint16,Re),"classSetCnt")},3:{glyphCount:e.uint16,lookupCount:e.uint16,coverages:new e.Array(new e.Pointer(e.uint16,It),"glyphCount"),lookupRecords:new e.Array(re,"lookupCount")}}),Dn=new e.Struct({backtrackGlyphCount:e.uint16,backtrack:new e.Array(e.uint16,"backtrackGlyphCount"),inputGlyphCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.inputGlyphCount-1}),lookaheadGlyphCount:e.uint16,lookahead:new e.Array(e.uint16,"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(re,"lookupCount")}),ne=new e.Array(new e.Pointer(e.uint16,Dn),e.uint16),tn=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,It),chainCount:e.uint16,chainRuleSets:new e.Array(new e.Pointer(e.uint16,ne),"chainCount")},2:{coverage:new e.Pointer(e.uint16,It),backtrackClassDef:new e.Pointer(e.uint16,Vt),inputClassDef:new e.Pointer(e.uint16,Vt),lookaheadClassDef:new e.Pointer(e.uint16,Vt),chainCount:e.uint16,chainClassSet:new e.Array(new e.Pointer(e.uint16,ne),"chainCount")},3:{backtrackGlyphCount:e.uint16,backtrackCoverage:new e.Array(new e.Pointer(e.uint16,It),"backtrackGlyphCount"),inputGlyphCount:e.uint16,inputCoverage:new e.Array(new e.Pointer(e.uint16,It),"inputGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,It),"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(re,"lookupCount")}}),Te=new e.Fixed(16,"BE",14),en=new e.Struct({startCoord:Te,peakCoord:Te,endCoord:Te}),qe=new e.Struct({axisCount:e.uint16,regionCount:e.uint16,variationRegions:new e.Array(new e.Array(en,"axisCount"),"regionCount")}),Pn=new e.Struct({shortDeltas:new e.Array(e.int16,function(tA){return tA.parent.shortDeltaCount}),regionDeltas:new e.Array(e.int8,function(tA){return tA.parent.regionIndexCount-tA.parent.shortDeltaCount}),deltas:function(P){return P.shortDeltas.concat(P.regionDeltas)}}),zn=new e.Struct({itemCount:e.uint16,shortDeltaCount:e.uint16,regionIndexCount:e.uint16,regionIndexes:new e.Array(e.uint16,"regionIndexCount"),deltaSets:new e.Array(Pn,"itemCount")}),Ot=new e.Struct({format:e.uint16,variationRegionList:new e.Pointer(e.uint32,qe),variationDataCount:e.uint16,itemVariationData:new e.Array(new e.Pointer(e.uint32,zn),"variationDataCount")}),zt=new e.VersionedStruct(e.uint16,{1:(o={axisIndex:e.uint16},o.axisIndex=e.uint16,o.filterRangeMinValue=Te,o.filterRangeMaxValue=Te,o)}),Xt=new e.Struct({conditionCount:e.uint16,conditionTable:new e.Array(new e.Pointer(e.uint32,zt),"conditionCount")}),se=new e.Struct({featureIndex:e.uint16,alternateFeatureTable:new e.Pointer(e.uint32,VA,{type:"parent"})}),mn=new e.Struct({version:e.fixed32,substitutionCount:e.uint16,substitutions:new e.Array(se,"substitutionCount")}),dn=new e.Struct({conditionSet:new e.Pointer(e.uint32,Xt,{type:"parent"}),featureTableSubstitution:new e.Pointer(e.uint32,mn,{type:"parent"})}),xn=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,featureVariationRecordCount:e.uint32,featureVariationRecords:new e.Array(dn,"featureVariationRecordCount")}),jn=function(){function tA(V,m){this.predefinedOps=V,this.type=m}var P=tA.prototype;return P.decode=function(m,F,R){return this.predefinedOps[R[0]]?this.predefinedOps[R[0]]:this.type.decode(m,F,R)},P.size=function(m,F){return this.type.size(m,F)},P.encode=function(m,F,R){var AA=this.predefinedOps.indexOf(F);return-1!==AA?AA:this.type.encode(m,F,R)},tA}(),fi=function(tA){function P(){return tA.call(this,"UInt8")||this}return g(P,tA),P.prototype.decode=function(F){return 127&e.uint8.decode(F)},P}(e.Number),Fn=new e.Struct({first:e.uint16,nLeft:e.uint8}),WA=new e.Struct({first:e.uint16,nLeft:e.uint16}),$A=new jn([L,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","","asuperior","bsuperior","centsuperior","dsuperior","esuperior","","","isuperior","","","lsuperior","msuperior","nsuperior","osuperior","","","rsuperior","ssuperior","tsuperior","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdownsmall","centoldstyle","Lslashsmall","","","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","","Dotaccentsmall","","","Macronsmall","","","figuredash","hypheninferior","","","Ogoneksmall","Ringsmall","Cedillasmall","","","","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"]],new ot(new e.VersionedStruct(new fi,{0:{nCodes:e.uint8,codes:new e.Array(e.uint8,"nCodes")},1:{nRanges:e.uint8,ranges:new e.Array(Fn,"nRanges")}}),{lazy:!0})),UA=function(tA){function P(){return tA.apply(this,arguments)||this}return g(P,tA),P.prototype.decode=function(F,R){for(var AA=B.resolveLength(this.length,F,R),rA=0,aA=[];rA=2?null:m=2||this.isCIDFont)return null;var F=this.topDict.charset;if(Array.isArray(F))return F[m];if(0===m)return".notdef";switch(m-=1,F.version){case 0:return this.string(F.glyphs[m]);case 1:case 2:for(var R=0;R>1;if(m=F[rA+1].first))return F[rA].fd;R=rA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},P.privateDictForGlyph=function(m){if(this.topDict.FDSelect){var F=this.fdForGlyph(m);return this.topDict.FDArray[F]?this.topDict.FDArray[F].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},l(tA,[{key:"postscriptName",get:function(){return this.version<2?this.nameIndex[0]:null}},{key:"fullName",get:function(){return this.string(this.topDict.FullName)}},{key:"familyName",get:function(){return this.string(this.topDict.FamilyName)}}]),tA}(),ft=new e.Struct({glyphIndex:e.uint16,vertOriginY:e.int16}),St=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,defaultVertOriginY:e.int16,numVertOriginYMetrics:e.uint16,metrics:new e.Array(ft,"numVertOriginYMetrics")}),jt=new e.Struct({height:e.uint8,width:e.uint8,horiBearingX:e.int8,horiBearingY:e.int8,horiAdvance:e.uint8,vertBearingX:e.int8,vertBearingY:e.int8,vertAdvance:e.uint8}),Gt=new e.Struct({height:e.uint8,width:e.uint8,bearingX:e.int8,bearingY:e.int8,advance:e.uint8}),ge=new e.Struct({glyph:e.uint16,xOffset:e.int8,yOffset:e.int8}),Zt=function(){},fe=function(){},De=(new e.VersionedStruct("version",{1:{metrics:Gt,data:Zt},2:{metrics:Gt,data:fe},5:{data:fe},6:{metrics:jt,data:Zt},7:{metrics:jt,data:fe},8:{metrics:Gt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ge,"numComponents")},9:{metrics:jt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ge,"numComponents")},17:{metrics:Gt,dataLen:e.uint32,data:new e.Buffer("dataLen")},18:{metrics:jt,dataLen:e.uint32,data:new e.Buffer("dataLen")},19:{dataLen:e.uint32,data:new e.Buffer("dataLen")}}),new e.Struct({ascender:e.int8,descender:e.int8,widthMax:e.uint8,caretSlopeNumerator:e.int8,caretSlopeDenominator:e.int8,caretOffset:e.int8,minOriginSB:e.int8,minAdvanceSB:e.int8,maxBeforeBL:e.int8,minAfterBL:e.int8,pad:new e.Reserved(e.int8,2)})),Ge=new e.Struct({glyphCode:e.uint16,offset:e.uint16}),Se=new e.VersionedStruct(e.uint16,{header:{imageFormat:e.uint16,imageDataOffset:e.uint32},1:{offsetArray:new e.Array(e.uint32,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},2:{imageSize:e.uint32,bigMetrics:jt},3:{offsetArray:new e.Array(e.uint16,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},4:{numGlyphs:e.uint32,glyphArray:new e.Array(Ge,function(tA){return tA.numGlyphs+1})},5:{imageSize:e.uint32,bigMetrics:jt,numGlyphs:e.uint32,glyphCodeArray:new e.Array(e.uint16,"numGlyphs")}}),xe=new e.Struct({firstGlyphIndex:e.uint16,lastGlyphIndex:e.uint16,subtable:new e.Pointer(e.uint32,Se)}),Ne=new e.Struct({indexSubTableArray:new e.Pointer(e.uint32,new e.Array(xe,1),{type:"parent"}),indexTablesSize:e.uint32,numberOfIndexSubTables:e.uint32,colorRef:e.uint32,hori:De,vert:De,startGlyphIndex:e.uint16,endGlyphIndex:e.uint16,ppemX:e.uint8,ppemY:e.uint8,bitDepth:e.uint8,flags:new e.Bitfield(e.uint8,["horizontal","vertical"])}),$e=new e.Struct({version:e.uint32,numSizes:e.uint32,sizes:new e.Array(Ne,"numSizes")}),yn=new e.Struct({ppem:e.uint16,resolution:e.uint16,imageOffsets:new e.Array(new e.Pointer(e.uint32,"void"),function(tA){return tA.parent.parent.maxp.numGlyphs+1})}),rn=new e.Struct({version:e.uint16,flags:new e.Bitfield(e.uint16,["renderOutlines"]),numImgTables:e.uint32,imageTables:new e.Array(new e.Pointer(e.uint32,yn),"numImgTables")}),pn=new e.Struct({gid:e.uint16,paletteIndex:e.uint16}),Yn=new e.Struct({gid:e.uint16,firstLayerIndex:e.uint16,numLayers:e.uint16}),an=new e.Struct({version:e.uint16,numBaseGlyphRecords:e.uint16,baseGlyphRecord:new e.Pointer(e.uint32,new e.Array(Yn,"numBaseGlyphRecords")),layerRecords:new e.Pointer(e.uint32,new e.Array(pn,"numLayerRecords"),{lazy:!0}),numLayerRecords:e.uint16}),hn=new e.Struct({blue:e.uint8,green:e.uint8,red:e.uint8,alpha:e.uint8}),gn=new e.VersionedStruct(e.uint16,{header:{numPaletteEntries:e.uint16,numPalettes:e.uint16,numColorRecords:e.uint16,colorRecords:new e.Pointer(e.uint32,new e.Array(hn,"numColorRecords")),colorRecordIndices:new e.Array(e.uint16,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new e.Pointer(e.uint32,new e.Array(e.uint32,"numPalettes")),offsetPaletteLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPalettes")),offsetPaletteEntryLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPaletteEntries"))}}),_n=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{coordinate:e.int16,referenceGlyph:e.uint16,baseCoordPoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Pe)}}),Ti=new e.Struct({defaultIndex:e.uint16,baseCoordCount:e.uint16,baseCoords:new e.Array(new e.Pointer(e.uint16,_n),"baseCoordCount")}),Si=new e.Struct({tag:new e.String(4),minCoord:new e.Pointer(e.uint16,_n,{type:"parent"}),maxCoord:new e.Pointer(e.uint16,_n,{type:"parent"})}),ri=new e.Struct({minCoord:new e.Pointer(e.uint16,_n),maxCoord:new e.Pointer(e.uint16,_n),featMinMaxCount:e.uint16,featMinMaxRecords:new e.Array(Si,"featMinMaxCount")}),Tn=new e.Struct({tag:new e.String(4),minMax:new e.Pointer(e.uint16,ri,{type:"parent"})}),$n=new e.Struct({baseValues:new e.Pointer(e.uint16,Ti),defaultMinMax:new e.Pointer(e.uint16,ri),baseLangSysCount:e.uint16,baseLangSysRecords:new e.Array(Tn,"baseLangSysCount")}),mA=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,$n,{type:"parent"})}),G=new e.Array(mA,e.uint16),N=new e.Array(new e.String(4),e.uint16),_=new e.Struct({baseTagList:new e.Pointer(e.uint16,N),baseScriptList:new e.Pointer(e.uint16,G)}),W=new e.VersionedStruct(e.uint32,{header:{horizAxis:new e.Pointer(e.uint16,_),vertAxis:new e.Pointer(e.uint16,_)},65536:{},65537:{itemVariationStore:new e.Pointer(e.uint32,Ot)}}),BA=new e.Array(e.uint16,e.uint16),MA=new e.Struct({coverage:new e.Pointer(e.uint16,It),glyphCount:e.uint16,attachPoints:new e.Array(new e.Pointer(e.uint16,BA),"glyphCount")}),ZA=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{caretValuePoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Pe)}}),At=new e.Array(new e.Pointer(e.uint16,ZA),e.uint16),ht=new e.Struct({coverage:new e.Pointer(e.uint16,It),ligGlyphCount:e.uint16,ligGlyphs:new e.Array(new e.Pointer(e.uint16,At),"ligGlyphCount")}),Ct=new e.Struct({markSetTableFormat:e.uint16,markSetCount:e.uint16,coverage:new e.Array(new e.Pointer(e.uint32,It),"markSetCount")}),vt=new e.VersionedStruct(e.uint32,{header:{glyphClassDef:new e.Pointer(e.uint16,Vt),attachList:new e.Pointer(e.uint16,MA),ligCaretList:new e.Pointer(e.uint16,ht),markAttachClassDef:new e.Pointer(e.uint16,Vt)},65536:{},65538:{markGlyphSetsDef:new e.Pointer(e.uint16,Ct)},65539:{markGlyphSetsDef:new e.Pointer(e.uint16,Ct),itemVariationStore:new e.Pointer(e.uint32,Ot)}}),xt=new e.Bitfield(e.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Yt={xPlacement:e.int16,yPlacement:e.int16,xAdvance:e.int16,yAdvance:e.int16,xPlaDevice:new e.Pointer(e.uint16,Pe,{type:"global",relativeTo:function(P){return P.rel}}),yPlaDevice:new e.Pointer(e.uint16,Pe,{type:"global",relativeTo:function(P){return P.rel}}),xAdvDevice:new e.Pointer(e.uint16,Pe,{type:"global",relativeTo:function(P){return P.rel}}),yAdvDevice:new e.Pointer(e.uint16,Pe,{type:"global",relativeTo:function(P){return P.rel}})},Jt=function(){function tA(V){void 0===V&&(V="valueFormat"),this.key=V}var P=tA.prototype;return P.buildStruct=function(m){for(var F=m;!F[this.key]&&F.parent;)F=F.parent;if(F[this.key]){var R={rel:function(){return F._startOffset}},AA=F[this.key];for(var rA in AA)AA[rA]&&(R[rA]=Yt[rA]);return new e.Struct(R)}},P.size=function(m,F){return this.buildStruct(F).size(m,F)},P.decode=function(m,F){var R=this.buildStruct(F).decode(m,F);return delete R.rel,R},tA}(),Wt=new e.Struct({secondGlyph:e.uint16,value1:new Jt("valueFormat1"),value2:new Jt("valueFormat2")}),he=new e.Array(Wt,e.uint16),we=new e.Struct({value1:new Jt("valueFormat1"),value2:new Jt("valueFormat2")}),pe=new e.VersionedStruct(e.uint16,{1:{xCoordinate:e.int16,yCoordinate:e.int16},2:{xCoordinate:e.int16,yCoordinate:e.int16,anchorPoint:e.uint16},3:{xCoordinate:e.int16,yCoordinate:e.int16,xDeviceTable:new e.Pointer(e.uint16,Pe),yDeviceTable:new e.Pointer(e.uint16,Pe)}}),nn=new e.Struct({entryAnchor:new e.Pointer(e.uint16,pe,{type:"parent"}),exitAnchor:new e.Pointer(e.uint16,pe,{type:"parent"})}),te=new e.Struct({class:e.uint16,markAnchor:new e.Pointer(e.uint16,pe,{type:"parent"})}),je=new e.Array(te,e.uint16),wn=new e.Array(new e.Pointer(e.uint16,pe),function(tA){return tA.parent.classCount}),We=new e.Array(wn,e.uint16),Cn=new e.Array(new e.Pointer(e.uint16,pe),function(tA){return tA.parent.parent.classCount}),Wn=new e.Array(Cn,e.uint16),Ai=new e.Array(new e.Pointer(e.uint16,Wn),e.uint16),Sn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,It),valueFormat:xt,value:new Jt},2:{coverage:new e.Pointer(e.uint16,It),valueFormat:xt,valueCount:e.uint16,values:new e.LazyArray(new Jt,"valueCount")}}),2:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,It),valueFormat1:xt,valueFormat2:xt,pairSetCount:e.uint16,pairSets:new e.LazyArray(new e.Pointer(e.uint16,he),"pairSetCount")},2:{coverage:new e.Pointer(e.uint16,It),valueFormat1:xt,valueFormat2:xt,classDef1:new e.Pointer(e.uint16,Vt),classDef2:new e.Pointer(e.uint16,Vt),class1Count:e.uint16,class2Count:e.uint16,classRecords:new e.LazyArray(new e.LazyArray(we,"class2Count"),"class1Count")}}),3:{format:e.uint16,coverage:new e.Pointer(e.uint16,It),entryExitCount:e.uint16,entryExitRecords:new e.Array(nn,"entryExitCount")},4:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,It),baseCoverage:new e.Pointer(e.uint16,It),classCount:e.uint16,markArray:new e.Pointer(e.uint16,je),baseArray:new e.Pointer(e.uint16,We)},5:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,It),ligatureCoverage:new e.Pointer(e.uint16,It),classCount:e.uint16,markArray:new e.Pointer(e.uint16,je),ligatureArray:new e.Pointer(e.uint16,Ai)},6:{format:e.uint16,mark1Coverage:new e.Pointer(e.uint16,It),mark2Coverage:new e.Pointer(e.uint16,It),classCount:e.uint16,mark1Array:new e.Pointer(e.uint16,je),mark2Array:new e.Pointer(e.uint16,We)},7:vn,8:tn,9:{posFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Sn)}});Sn.versions[9].extension.type=Sn;var Li=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,j),featureList:new e.Pointer(e.uint16,vA),lookupList:new e.Pointer(e.uint16,new qA(Sn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,xn)}}),Hn=new e.Array(e.uint16,e.uint16),ai=Hn,mi=new e.Struct({glyph:e.uint16,compCount:e.uint16,components:new e.Array(e.uint16,function(tA){return tA.compCount-1})}),ti=new e.Array(new e.Pointer(e.uint16,mi),e.uint16),hi=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,It),deltaGlyphID:e.int16},2:{coverage:new e.Pointer(e.uint16,It),glyphCount:e.uint16,substitute:new e.LazyArray(e.uint16,"glyphCount")}}),2:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,It),count:e.uint16,sequences:new e.LazyArray(new e.Pointer(e.uint16,Hn),"count")},3:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,It),count:e.uint16,alternateSet:new e.LazyArray(new e.Pointer(e.uint16,ai),"count")},4:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,It),count:e.uint16,ligatureSets:new e.LazyArray(new e.Pointer(e.uint16,ti),"count")},5:vn,6:tn,7:{substFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,hi)},8:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,It),backtrackCoverage:new e.Array(new e.Pointer(e.uint16,It),"backtrackGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,It),"lookaheadGlyphCount"),glyphCount:e.uint16,substitutes:new e.Array(e.uint16,"glyphCount")}});hi.versions[7].extension.type=hi;var Pi=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,j),featureList:new e.Pointer(e.uint16,vA),lookupList:new e.Pointer(e.uint16,new qA(hi))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,xn)}}),Vn=new e.Array(e.uint16,e.uint16),zi=new e.Struct({shrinkageEnableGSUB:new e.Pointer(e.uint16,Vn),shrinkageDisableGSUB:new e.Pointer(e.uint16,Vn),shrinkageEnableGPOS:new e.Pointer(e.uint16,Vn),shrinkageDisableGPOS:new e.Pointer(e.uint16,Vn),shrinkageJstfMax:new e.Pointer(e.uint16,new qA(Sn)),extensionEnableGSUB:new e.Pointer(e.uint16,Vn),extensionDisableGSUB:new e.Pointer(e.uint16,Vn),extensionEnableGPOS:new e.Pointer(e.uint16,Vn),extensionDisableGPOS:new e.Pointer(e.uint16,Vn),extensionJstfMax:new e.Pointer(e.uint16,new qA(Sn))}),Ii=new e.Array(new e.Pointer(e.uint16,zi),e.uint16),Gi=new e.Struct({tag:new e.String(4),jstfLangSys:new e.Pointer(e.uint16,Ii)}),Hi=new e.Struct({extenderGlyphs:new e.Pointer(e.uint16,new e.Array(e.uint16,e.uint16)),defaultLangSys:new e.Pointer(e.uint16,Ii),langSysCount:e.uint16,langSysRecords:new e.Array(Gi,"langSysCount")}),Br=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,Hi,{type:"parent"})}),Oi=new e.Struct({version:e.uint32,scriptCount:e.uint16,scriptList:new e.Array(Br,"scriptCount")}),Ji=new e.Struct({entry:new(function(){function tA(V){this._size=V}var P=tA.prototype;return P.decode=function(m,F){switch(this.size(0,F)){case 1:return m.readUInt8();case 2:return m.readUInt16BE();case 3:return m.readUInt24BE();case 4:return m.readUInt32BE()}},P.size=function(m,F){return B.resolveLength(this._size,null,F)},tA}())(function(tA){return 1+((48&tA.parent.entryFormat)>>4)}),outerIndex:function(P){return P.entry>>1+(15&P.parent.entryFormat)},innerIndex:function(P){return P.entry&(1<<1+(15&P.parent.entryFormat))-1}}),Kn=new e.Struct({entryFormat:e.uint16,mapCount:e.uint16,mapData:new e.Array(Ji,"mapCount")}),Hr=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,itemVariationStore:new e.Pointer(e.uint32,Ot),advanceWidthMapping:new e.Pointer(e.uint32,Kn),LSBMapping:new e.Pointer(e.uint32,Kn),RSBMapping:new e.Pointer(e.uint32,Kn)}),Or=new e.Struct({format:e.uint32,length:e.uint32,offset:e.uint32}),co=new e.Struct({reserved:new e.Reserved(e.uint16,2),cbSignature:e.uint32,signature:new e.Buffer("cbSignature")}),go=new e.Struct({ulVersion:e.uint32,usNumSigs:e.uint16,usFlag:e.uint16,signatures:new e.Array(Or,"usNumSigs"),signatureBlocks:new e.Array(co,"usNumSigs")}),Bo=new e.Struct({rangeMaxPPEM:e.uint16,rangeGaspBehavior:new e.Bitfield(e.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),uo=new e.Struct({version:e.uint16,numRanges:e.uint16,gaspRanges:new e.Array(Bo,"numRanges")}),fo=new e.Struct({pixelSize:e.uint8,maximumWidth:e.uint8,widths:new e.Array(e.uint8,function(tA){return tA.parent.parent.maxp.numGlyphs})}),ho=new e.Struct({version:e.uint16,numRecords:e.int16,sizeDeviceRecord:e.int32,records:new e.Array(fo,"numRecords")}),Eo=new e.Struct({left:e.uint16,right:e.uint16,value:e.int16}),ga=new e.Struct({firstGlyph:e.uint16,nGlyphs:e.uint16,offsets:new e.Array(e.uint16,"nGlyphs"),max:function(P){return P.offsets.length&&Math.max.apply(Math,P.offsets)}}),wo=new e.Struct({off:function(P){return P._startOffset-P.parent.parent._startOffset},len:function(P){return P.parent.rowWidth/2*((P.parent.leftTable.max-P.off)/P.parent.rowWidth+1)},values:new e.LazyArray(e.int16,"len")}),Ba=new e.VersionedStruct("format",{0:{nPairs:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,pairs:new e.Array(Eo,"nPairs")},2:{rowWidth:e.uint16,leftTable:new e.Pointer(e.uint16,ga,{type:"parent"}),rightTable:new e.Pointer(e.uint16,ga,{type:"parent"}),array:new e.Pointer(e.uint16,wo,{type:"parent"})},3:{glyphCount:e.uint16,kernValueCount:e.uint8,leftClassCount:e.uint8,rightClassCount:e.uint8,flags:e.uint8,kernValue:new e.Array(e.int16,"kernValueCount"),leftClass:new e.Array(e.uint8,"glyphCount"),rightClass:new e.Array(e.uint8,"glyphCount"),kernIndex:new e.Array(e.uint8,function(tA){return tA.leftClassCount*tA.rightClassCount})}}),ua=new e.VersionedStruct("version",{0:{subVersion:e.uint16,length:e.uint16,format:e.uint8,coverage:new e.Bitfield(e.uint8,["horizontal","minimum","crossStream","override"]),subtable:Ba,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})},1:{length:e.uint32,coverage:new e.Bitfield(e.uint8,[null,null,null,null,null,"variation","crossStream","vertical"]),format:e.uint8,tupleIndex:e.uint16,subtable:Ba,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}}),Co=new e.VersionedStruct(e.uint16,{0:{nTables:e.uint16,tables:new e.Array(ua,"nTables")},1:{reserved:new e.Reserved(e.uint16),nTables:e.uint32,tables:new e.Array(ua,"nTables")}}),Qo=new e.Struct({version:e.uint16,numGlyphs:e.uint16,yPels:new e.Array(e.uint8,"numGlyphs")}),po=new e.Struct({version:e.uint16,fontNumber:e.uint32,pitch:e.uint16,xHeight:e.uint16,style:e.uint16,typeFamily:e.uint16,capHeight:e.uint16,symbolSet:e.uint16,typeface:new e.String(16),characterComplement:new e.String(8),fileName:new e.String(6),strokeWeight:new e.String(1),widthType:new e.String(1),serifStyle:e.uint8,reserved:new e.Reserved(e.uint8)}),Mo=new e.Struct({bCharSet:e.uint8,xRatio:e.uint8,yStartRatio:e.uint8,yEndRatio:e.uint8}),mo=new e.Struct({yPelHeight:e.uint16,yMax:e.int16,yMin:e.int16}),Io=new e.Struct({recs:e.uint16,startsz:e.uint8,endsz:e.uint8,entries:new e.Array(mo,"recs")}),vo=new e.Struct({version:e.uint16,numRecs:e.uint16,numRatios:e.uint16,ratioRanges:new e.Array(Mo,"numRatios"),offsets:new e.Array(e.uint16,"numRatios"),groups:new e.Array(Io,"numRecs")}),Do=new e.Struct({version:e.uint16,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceHeightMax:e.int16,minTopSideBearing:e.int16,minBottomSideBearing:e.int16,yMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),yo=new e.Struct({advance:e.uint16,bearing:e.int16}),xo=new e.Struct({metrics:new e.LazyArray(yo,function(tA){return tA.parent.vhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.vhea.numberOfMetrics})}),fa=new e.Fixed(16,"BE",14),Fo=new e.Struct({fromCoord:fa,toCoord:fa}),Yo=new e.Struct({pairCount:e.uint16,correspondence:new e.Array(Fo,"pairCount")}),To=new e.Struct({version:e.fixed32,axisCount:e.uint32,segment:new e.Array(Yo,"axisCount")}),So=function(){function tA(V,m,F){this.type=V,this.stream=m,this.parent=F,this.base=this.stream.pos,this._items=[]}var P=tA.prototype;return P.getItem=function(m){if(null==this._items[m]){var F=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*m,this._items[m]=this.type.decode(this.stream,this.parent),this.stream.pos=F}return this._items[m]},P.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},tA}(),ei=function(tA){function P(m){return tA.call(this,m,0)||this}return g(P,tA),P.prototype.decode=function(F,R){return new So(this.type,F,R)},P}(e.Array),Ei=function(P){void 0===P&&(P=e.uint16),P=new(function(){function rA(iA){this.type=iA}var aA=rA.prototype;return aA.decode=function(SA,JA){return this.type.decode(SA,JA=JA.parent.parent)},aA.size=function(SA,JA){return this.type.size(SA,JA=JA.parent.parent)},aA.encode=function(SA,JA,ct){return this.type.encode(SA,JA,ct=ct.parent.parent)},rA}())(P);var m=new e.Struct({unitSize:e.uint16,nUnits:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16}),F=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,value:P}),R=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,values:new e.Pointer(e.uint16,new e.Array(P,function(rA){return rA.lastGlyph-rA.firstGlyph+1}),{type:"parent"})}),AA=new e.Struct({glyph:e.uint16,value:P});return new e.VersionedStruct(e.uint16,{0:{values:new ei(P)},2:{binarySearchHeader:m,segments:new e.Array(F,function(rA){return rA.binarySearchHeader.nUnits})},4:{binarySearchHeader:m,segments:new e.Array(R,function(rA){return rA.binarySearchHeader.nUnits})},6:{binarySearchHeader:m,segments:new e.Array(AA,function(rA){return rA.binarySearchHeader.nUnits})},8:{firstGlyph:e.uint16,count:e.uint16,values:new e.Array(P,"count")}})};function ur(tA,P){void 0===tA&&(tA={}),void 0===P&&(P=e.uint16);var V=Object.assign({newState:e.uint16,flags:e.uint16},tA),m=new e.Struct(V),F=new ei(new e.Array(e.uint16,function(AA){return AA.nClasses}));return new e.Struct({nClasses:e.uint32,classTable:new e.Pointer(e.uint32,new Ei(P)),stateArray:new e.Pointer(e.uint32,F),entryTable:new e.Pointer(e.uint32,new ei(m))})}var Uo=new e.VersionedStruct("format",{0:{deltas:new e.Array(e.int16,32)},1:{deltas:new e.Array(e.int16,32),mappingData:new Ei(e.uint16)},2:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32)},3:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32),mappingData:new Ei(e.uint16)}}),bo=new e.Struct({version:e.fixed32,format:e.uint16,defaultBaseline:e.uint16,subtable:Uo}),Ro=new e.Struct({setting:e.uint16,nameIndex:e.int16,name:function(P){return P.parent.parent.parent.name.records.fontFeatures[P.nameIndex]}}),Lo=new e.Struct({feature:e.uint16,nSettings:e.uint16,settingTable:new e.Pointer(e.uint32,new e.Array(Ro,"nSettings"),{type:"parent"}),featureFlags:new e.Bitfield(e.uint8,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:e.uint8,nameIndex:e.int16,name:function(P){return P.parent.parent.name.records.fontFeatures[P.nameIndex]}}),Po=new e.Struct({version:e.fixed32,featureNameCount:e.uint16,reserved1:new e.Reserved(e.uint16),reserved2:new e.Reserved(e.uint32),featureNames:new e.Array(Lo,"featureNameCount")}),zo=new e.Struct({axisTag:new e.String(4),minValue:e.fixed32,defaultValue:e.fixed32,maxValue:e.fixed32,flags:e.uint16,nameID:e.uint16,name:function(P){return P.parent.parent.name.records.fontFeatures[P.nameID]}}),Go=new e.Struct({nameID:e.uint16,name:function(P){return P.parent.parent.name.records.fontFeatures[P.nameID]},flags:e.uint16,coord:new e.Array(e.fixed32,function(tA){return tA.parent.axisCount}),postscriptNameID:new e.Optional(e.uint16,function(tA){return tA.parent.instanceSize-tA._currentOffset>0})}),Ho=new e.Struct({version:e.fixed32,offsetToData:e.uint16,countSizePairs:e.uint16,axisCount:e.uint16,axisSize:e.uint16,instanceCount:e.uint16,instanceSize:e.uint16,axis:new e.Array(zo,"axisCount"),instance:new e.Array(Go,"instanceCount")}),Oo=new e.Fixed(16,"BE",14),ha=function(){function tA(){}return tA.decode=function(V,m){return m.flags?V.readUInt32BE():2*V.readUInt16BE()},tA}(),Jo=new e.Struct({version:e.uint16,reserved:new e.Reserved(e.uint16),axisCount:e.uint16,globalCoordCount:e.uint16,globalCoords:new e.Pointer(e.uint32,new e.Array(new e.Array(Oo,"axisCount"),"globalCoordCount")),glyphCount:e.uint16,flags:e.uint16,offsetToData:e.uint32,offsets:new e.Array(new e.Pointer(ha,"void",{relativeTo:function(P){return P.offsetToData},allowNull:!1}),function(tA){return tA.glyphCount+1})}),ko=new e.Struct({length:e.uint16,coverage:e.uint16,subFeatureFlags:e.uint32,stateTable:new function No(tA,P){void 0===tA&&(tA={}),void 0===P&&(P=e.uint16);var V=new e.Struct({version:function(){return 8},firstGlyph:e.uint16,values:new e.Array(e.uint8,e.uint16)}),m=Object.assign({newStateOffset:e.uint16,newState:function(aA){return(aA.newStateOffset-(aA.parent.stateArray.base-aA.parent._startOffset))/aA.parent.nClasses},flags:e.uint16},tA),F=new e.Struct(m),R=new ei(new e.Array(e.uint8,function(rA){return rA.nClasses}));return new e.Struct({nClasses:e.uint16,classTable:new e.Pointer(e.uint16,V),stateArray:new e.Pointer(e.uint16,R),entryTable:new e.Pointer(e.uint16,new ei(F))})}}),jo=new e.Struct({justClass:e.uint32,beforeGrowLimit:e.fixed32,beforeShrinkLimit:e.fixed32,afterGrowLimit:e.fixed32,afterShrinkLimit:e.fixed32,growFlags:e.uint16,shrinkFlags:e.uint16}),Wo=new e.Array(jo,e.uint32),Vo=new e.VersionedStruct("actionType",{0:{lowerLimit:e.fixed32,upperLimit:e.fixed32,order:e.uint16,glyphs:new e.Array(e.uint16,e.uint16)},1:{addGlyph:e.uint16},2:{substThreshold:e.fixed32,addGlyph:e.uint16,substGlyph:e.uint16},3:{},4:{variationAxis:e.uint32,minimumLimit:e.fixed32,noStretchValue:e.fixed32,maximumLimit:e.fixed32},5:{flags:e.uint16,glyph:e.uint16}}),Ko=new e.Struct({actionClass:e.uint16,actionType:e.uint16,actionLength:e.uint32,actionData:Vo,padding:new e.Reserved(e.uint8,function(tA){return tA.actionLength-tA._currentOffset})}),Zo=new e.Array(Ko,e.uint32),Xo=new e.Struct({lookupTable:new Ei(new e.Pointer(e.uint16,Zo))}),Ea=new e.Struct({classTable:new e.Pointer(e.uint16,ko,{type:"parent"}),wdcOffset:e.uint16,postCompensationTable:new e.Pointer(e.uint16,Xo,{type:"parent"}),widthDeltaClusters:new Ei(new e.Pointer(e.uint16,Wo,{type:"parent",relativeTo:function(P){return P.wdcOffset}}))}),qo=new e.Struct({version:e.uint32,format:e.uint16,horizontal:new e.Pointer(e.uint16,Ea),vertical:new e.Pointer(e.uint16,Ea)}),wa={action:e.uint16},_o={markIndex:e.uint16,currentIndex:e.uint16},$o={currentInsertIndex:e.uint16,markedInsertIndex:e.uint16},As=new e.Struct({items:new ei(new e.Pointer(e.uint32,new Ei))}),ts=new e.VersionedStruct("type",{0:{stateTable:new ur},1:{stateTable:new ur(_o),substitutionTable:new e.Pointer(e.uint32,As)},2:{stateTable:new ur(wa),ligatureActions:new e.Pointer(e.uint32,new ei(e.uint32)),components:new e.Pointer(e.uint32,new ei(e.uint16)),ligatureList:new e.Pointer(e.uint32,new ei(e.uint16))},4:{lookupTable:new Ei},5:{stateTable:new ur($o),insertionActions:new e.Pointer(e.uint32,new ei(e.uint16))}}),es=new e.Struct({length:e.uint32,coverage:e.uint24,type:e.uint8,subFeatureFlags:e.uint32,table:ts,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}),ns=new e.Struct({featureType:e.uint16,featureSetting:e.uint16,enableFlags:e.uint32,disableFlags:e.uint32}),is=new e.Struct({defaultFlags:e.uint32,chainLength:e.uint32,nFeatureEntries:e.uint32,nSubtables:e.uint32,features:new e.Array(ns,"nFeatureEntries"),subtables:new e.Array(es,"nSubtables")}),rs=new e.Struct({version:e.uint16,unused:new e.Reserved(e.uint16),nChains:e.uint32,chains:new e.Array(is,"nChains")}),as=new e.Struct({left:e.int16,top:e.int16,right:e.int16,bottom:e.int16}),os=new e.Struct({version:e.fixed32,format:e.uint16,lookupTable:new Ei(as)}),le={};le.cmap=QA,le.head=yA,le.hhea=Z,le.hmtx=nA,le.maxp=lA,le.name=K,le["OS/2"]=IA,le.post=hA,le.fpgm=tt,le.loca=lt,le.prep=YA,le["cvt "]=zA,le.glyf=it,le["CFF "]=Ae,le.CFF2=Ae,le.VORG=St,le.EBLC=$e,le.CBLC=le.EBLC,le.sbix=rn,le.COLR=an,le.CPAL=gn,le.BASE=W,le.GDEF=vt,le.GPOS=Li,le.GSUB=Pi,le.JSTF=Oi,le.HVAR=Hr,le.DSIG=go,le.gasp=uo,le.hdmx=ho,le.kern=Co,le.LTSH=Qo,le.PCLT=po,le.VDMX=vo,le.vhea=Do,le.vmtx=xo,le.avar=To,le.bsln=bo,le.feat=Po,le.fvar=Ho,le.gvar=Jo,le.just=qo,le.morx=rs,le.opbd=os;var wi,ss=new e.Struct({tag:new e.String(4),checkSum:e.uint32,offset:new e.Pointer(e.uint32,"void",{type:"global"}),length:e.uint32}),fr=new e.Struct({tag:new e.String(4),numTables:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,tables:new e.Array(ss,"numTables")});function hr(tA,P){for(var V=0,m=tA.length-1;V<=m;){var F=V+m>>1,R=P(tA[F]);if(R<0)m=F-1;else{if(!(R>0))return F;V=F+1}}return-1}function Ni(tA,P){for(var V=[];tA>1;if(maA.endCode.get(JA))){var ct=aA.idRangeOffset.get(JA),KA=void 0;if(0===ct)KA=m+aA.idDelta.get(JA);else{var Bt=ct/2+(m-aA.startCode.get(JA))-(aA.segCount-JA);0!==(KA=aA.glyphIndexArray.get(Bt)||0)&&(KA+=aA.idDelta.get(JA))}return 65535&KA}iA=JA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return aA.glyphIndices.get(m-aA.firstCode)||0;case 12:case 13:for(var pt=0,Dt=aA.nGroups-1;pt<=Dt;){var Ht=pt+Dt>>1,_t=aA.groups.get(Ht);if(m<_t.startCharCode)Dt=Ht-1;else{if(!(m>_t.endCharCode))return 12===aA.version?_t.glyphID+(m-_t.startCharCode):_t.glyphID;pt=Ht+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(aA.version))}},P.getVariationSelector=function(m,F){if(!this.uvs)return 0;var R=this.uvs.varSelectors.toArray(),AA=hr(R,function(aA){return F-aA.varSelector}),rA=R[AA];return-1!==AA&&rA.defaultUVS&&(AA=hr(rA.defaultUVS,function(aA){return maA.startUnicodeValue+aA.additionalCount?1:0})),-1!==AA&&rA.nonDefaultUVS&&-1!==(AA=hr(rA.nonDefaultUVS,function(aA){return m-aA.unicodeValue}))?rA.nonDefaultUVS[AA].glyphID:0},P.getCharacterSet=function(){var m=this.cmap;switch(m.version){case 0:return Ni(0,m.codeMap.length);case 4:for(var F=[],R=m.endCode.toArray(),AA=0;AA=qt.glyphID&&m<=qt.glyphID+(qt.endCharCode-qt.startCharCode)&&Dt.push(qt.startCharCode+(m-qt.glyphID))}return Dt;case 13:for(var Qe,ae=[],ue=E(F.groups.toArray());!(Qe=ue()).done;){var de=Qe.value;m===de.glyphID&&ae.push.apply(ae,Ni(de.startCharCode,de.endCharCode+1))}return ae;default:throw new Error("Unknown cmap format ".concat(F.version))}},tA}()).prototype,"getCharacterSet",[O],Object.getOwnPropertyDescriptor(wi.prototype,"getCharacterSet"),wi.prototype),b(wi.prototype,"codePointsForGlyph",[O],Object.getOwnPropertyDescriptor(wi.prototype,"codePointsForGlyph"),wi.prototype),wi),Ca=function(){function tA(V){this.kern=V.kern}var P=tA.prototype;return P.process=function(m,F){for(var R=0;R=0&&(iA=SA.pairs[JA].value);break;case 2:var KA=0;F>=SA.rightTable.firstGlyph&&F=SA.leftTable.firstGlyph&&m=SA.glyphCount||F>=SA.glyphCount)return 0;iA=SA.kernValue[SA.kernIndex[SA.leftClass[m]*SA.rightClassCount+SA.rightClass[F]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(aA.format))}aA.coverage.override?R=iA:R+=iA}}return R},tA}(),cs=function(){function tA(V){this.font=V}var P=tA.prototype;return P.positionGlyphs=function(m,F){for(var R=0,AA=0,rA=0;rA1&&(aA.minX+=(rA.codePoints.length-1)*aA.width/rA.codePoints.length);for(var iA=-F[R].xAdvance,SA=0,JA=this.font.unitsPerEm/16,ct=R+1;ct<=AA;ct++){var KA=m[ct],Bt=KA.cbox,pt=F[ct],Dt=this.getCombiningClass(KA.codePoints[0]);if("Not_Reordered"!==Dt){switch(pt.xOffset=pt.yOffset=0,Dt){case"Double_Above":case"Double_Below":pt.xOffset+=aA.minX-Bt.width/2-Bt.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":pt.xOffset+=aA.minX-Bt.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":pt.xOffset+=aA.maxX-Bt.width-Bt.minX;break;default:pt.xOffset+=aA.minX+(aA.width-Bt.width)/2-Bt.minX}switch(Dt){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===Dt||"Attached_Below"===Dt)&&(aA.minY+=JA),pt.yOffset=-aA.minY-Bt.maxY,aA.minY+=Bt.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===Dt||"Attached_Above_Right"===Dt)&&(aA.maxY+=JA),pt.yOffset=aA.maxY-Bt.minY,aA.maxY+=Bt.height}pt.xAdvance=pt.yAdvance=0,pt.xOffset+=iA,pt.yOffset+=SA}else iA-=pt.xAdvance,SA-=pt.yAdvance}},P.getCombiningClass=function(m){var F=C.getCombiningClass(m);if(3584==(-256&m))if("Not_Reordered"===F)switch(m){case 3633:case 3636:case 3637:case 3638:case 3639:case 3655:case 3660:case 3645:case 3662:return"Above_Right";case 3761:case 3764:case 3765:case 3766:case 3767:case 3771:case 3788:case 3789:return"Above";case 3772:return"Below"}else if(3642===m)return"Below_Right";switch(F){case"CCC10":case"CCC11":case"CCC12":case"CCC13":case"CCC14":case"CCC15":case"CCC16":case"CCC17":case"CCC18":case"CCC20":case"CCC22":case"CCC29":case"CCC32":case"CCC118":case"CCC129":case"CCC132":return"Below";case"CCC23":return"Attached_Above";case"CCC24":case"CCC107":return"Above_Right";case"CCC25":case"CCC19":return"Above_Left";case"CCC26":case"CCC27":case"CCC28":case"CCC30":case"CCC31":case"CCC33":case"CCC34":case"CCC35":case"CCC36":case"CCC122":case"CCC130":return"Above";case"CCC21":break;case"CCC103":return"Below_Right"}return F},tA}(),vi=function(){function tA(V,m,F,R){void 0===V&&(V=1/0),void 0===m&&(m=1/0),void 0===F&&(F=-1/0),void 0===R&&(R=-1/0),this.minX=V,this.minY=m,this.maxX=F,this.maxY=R}var P=tA.prototype;return P.addPoint=function(m,F){Math.abs(m)!==1/0&&(mthis.maxX&&(this.maxX=m)),Math.abs(F)!==1/0&&(Fthis.maxY&&(this.maxY=F))},P.copy=function(){return new tA(this.minX,this.minY,this.maxX,this.maxY)},l(tA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}]),tA}(),Zn={Caucasian_Albanian:"aghb",Arabic:"arab",Imperial_Aramaic:"armi",Armenian:"armn",Avestan:"avst",Balinese:"bali",Bamum:"bamu",Bassa_Vah:"bass",Batak:"batk",Bengali:["bng2","beng"],Bopomofo:"bopo",Brahmi:"brah",Braille:"brai",Buginese:"bugi",Buhid:"buhd",Chakma:"cakm",Canadian_Aboriginal:"cans",Carian:"cari",Cham:"cham",Cherokee:"cher",Coptic:"copt",Cypriot:"cprt",Cyrillic:"cyrl",Devanagari:["dev2","deva"],Deseret:"dsrt",Duployan:"dupl",Egyptian_Hieroglyphs:"egyp",Elbasan:"elba",Ethiopic:"ethi",Georgian:"geor",Glagolitic:"glag",Gothic:"goth",Grantha:"gran",Greek:"grek",Gujarati:["gjr2","gujr"],Gurmukhi:["gur2","guru"],Hangul:"hang",Han:"hani",Hanunoo:"hano",Hebrew:"hebr",Hiragana:"hira",Pahawh_Hmong:"hmng",Katakana_Or_Hiragana:"hrkt",Old_Italic:"ital",Javanese:"java",Kayah_Li:"kali",Katakana:"kana",Kharoshthi:"khar",Khmer:"khmr",Khojki:"khoj",Kannada:["knd2","knda"],Kaithi:"kthi",Tai_Tham:"lana",Lao:"lao ",Latin:"latn",Lepcha:"lepc",Limbu:"limb",Linear_A:"lina",Linear_B:"linb",Lisu:"lisu",Lycian:"lyci",Lydian:"lydi",Mahajani:"mahj",Mandaic:"mand",Manichaean:"mani",Mende_Kikakui:"mend",Meroitic_Cursive:"merc",Meroitic_Hieroglyphs:"mero",Malayalam:["mlm2","mlym"],Modi:"modi",Mongolian:"mong",Mro:"mroo",Meetei_Mayek:"mtei",Myanmar:["mym2","mymr"],Old_North_Arabian:"narb",Nabataean:"nbat",Nko:"nko ",Ogham:"ogam",Ol_Chiki:"olck",Old_Turkic:"orkh",Oriya:["ory2","orya"],Osmanya:"osma",Palmyrene:"palm",Pau_Cin_Hau:"pauc",Old_Permic:"perm",Phags_Pa:"phag",Inscriptional_Pahlavi:"phli",Psalter_Pahlavi:"phlp",Phoenician:"phnx",Miao:"plrd",Inscriptional_Parthian:"prti",Rejang:"rjng",Runic:"runr",Samaritan:"samr",Old_South_Arabian:"sarb",Saurashtra:"saur",Shavian:"shaw",Sharada:"shrd",Siddham:"sidd",Khudawadi:"sind",Sinhala:"sinh",Sora_Sompeng:"sora",Sundanese:"sund",Syloti_Nagri:"sylo",Syriac:"syrc",Tagbanwa:"tagb",Takri:"takr",Tai_Le:"tale",New_Tai_Lue:"talu",Tamil:["tml2","taml"],Tai_Viet:"tavt",Telugu:["tel2","telu"],Tifinagh:"tfng",Tagalog:"tglg",Thaana:"thaa",Thai:"thai",Tibetan:"tibt",Tirhuta:"tirh",Ugaritic:"ugar",Vai:"vai ",Warang_Citi:"wara",Old_Persian:"xpeo",Cuneiform:"xsux",Yi:"yi ",Inherited:"zinh",Common:"zyyy",Unknown:"zzzz"},Xn={};for(var si in Zn){var kr=Zn[si];if(Array.isArray(kr))for(var Qa,gs=E(kr);!(Qa=gs()).done;)Xn[Qa.value]=si;else Xn[kr]=si}var Es={arab:!0,hebr:!0,syrc:!0,thaa:!0,cprt:!0,khar:!0,phnx:!0,"nko ":!0,lydi:!0,avst:!0,armi:!0,phli:!0,prti:!0,sarb:!0,orkh:!0,samr:!0,mand:!0,merc:!0,mero:!0,mani:!0,mend:!0,nbat:!0,narb:!0,palm:!0,phlp:!0};function da(tA){return Es[tA]?"rtl":"ltr"}for(var ws=function(){function tA(P,V,m,F,R){if(this.glyphs=P,this.positions=null,this.script=m,this.language=F||null,this.direction=R||da(m),this.features={},Array.isArray(V))for(var rA,AA=E(V);!(rA=AA()).done;)this.features[rA.value]=!0;else"object"==typeof V&&(this.features=V)}return l(tA,[{key:"advanceWidth",get:function(){for(var F,V=0,m=E(this.positions);!(F=m()).done;)V+=F.value.xAdvance;return V}},{key:"advanceHeight",get:function(){for(var F,V=0,m=E(this.positions);!(F=m()).done;)V+=F.value.yAdvance;return V}},{key:"bbox",get:function(){for(var V=new vi,m=0,F=0,R=0;R>1]).firstGlyph)return null;if(mrA.lastGlyph))return 2===this.table.version?rA.value:rA.values[m-rA.firstGlyph];F=AA+1}}return null;case 6:for(var aA=0,iA=this.table.binarySearchHeader.nUnits-1;aA<=iA;){var AA,rA;if(65535===(rA=this.table.segments[AA=aA+iA>>1]).glyph)return null;if(mrA.glyph))return rA.value;aA=AA+1}}return null;case 8:return this.table.values[m-this.table.firstGlyph];default:throw new Error("Unknown lookup table format: ".concat(this.table.version))}},P.glyphsForValue=function(m){var F=[];switch(this.table.version){case 2:case 4:for(var AA,R=E(this.table.segments);!(AA=R()).done;){var rA=AA.value;if(2===this.table.version&&rA.value===m)F.push.apply(F,Ni(rA.firstGlyph,rA.lastGlyph+1));else for(var aA=0;aA=-1;){var iA=null,SA=1,JA=!0;rA===m.length||-1===rA?SA=0:65535===(iA=m[rA]).id?SA=2:null==(SA=this.lookupTable.lookup(iA.id))&&(SA=1);var ct=this.stateTable.stateArray.getItem(AA),Bt=this.stateTable.entryTable.getItem(ct[SA]);0!==SA&&2!==SA&&(R(iA,Bt,rA),JA=!(16384&Bt.flags)),AA=Bt.newState,JA&&(rA+=aA)}return m},P.traverse=function(m,F,R){if(void 0===F&&(F=0),void 0===R&&(R=new Set),!R.has(F)){R.add(F);for(var AA=this.stateTable,rA=AA.nClasses,iA=AA.entryTable,SA=AA.stateArray.getItem(F),JA=4;JA=0;)65535===m[Dt].id&&m.splice(Dt,1),Dt--;return m},P.processSubtable=function(m,F){if(this.subtable=m,this.glyphs=F,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var R=this.getStateMachine(m),AA=this.getProcessor();return R.process(this.glyphs,!!(4194304&this.subtable.coverage),AA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},P.getStateMachine=function(m){return new ms(m.table.stateTable)},P.getProcessor=function(){switch(this.subtable.type){case 0:return this.processIndicRearragement;case 1:return this.processContextualSubstitution;case 2:return this.processLigature;case 4:return this.processNoncontextualSubstitutions;case 5:return this.processGlyphInsertion;default:throw new Error("Invalid morx subtable type: ".concat(this.subtable.type))}},P.processIndicRearragement=function(m,F,R){32768&F.flags&&(this.firstGlyph=R),8192&F.flags&&(this.lastGlyph=R),function Ns(tA,P,V,m){switch(P){case 0:return tA;case 1:return Nn(tA,[V,1],[m,0]);case 2:return Nn(tA,[V,0],[m,1]);case 3:return Nn(tA,[V,1],[m,1]);case 4:return Nn(tA,[V,2],[m,0]);case 5:return Nn(tA,[V,2],[m,0],!0,!1);case 6:return Nn(tA,[V,0],[m,2]);case 7:return Nn(tA,[V,0],[m,2],!1,!0);case 8:return Nn(tA,[V,1],[m,2]);case 9:return Nn(tA,[V,1],[m,2],!1,!0);case 10:return Nn(tA,[V,2],[m,1]);case 11:return Nn(tA,[V,2],[m,1],!0,!1);case 12:return Nn(tA,[V,2],[m,2]);case 13:return Nn(tA,[V,2],[m,2],!0,!1);case 14:return Nn(tA,[V,2],[m,2],!1,!0);case 15:return Nn(tA,[V,2],[m,2],!0,!0);default:throw new Error("Unknown verb: ".concat(P))}}(this.glyphs,15&F.flags,this.firstGlyph,this.lastGlyph)},P.processContextualSubstitution=function(m,F,R){var AA=this.subtable.table.substitutionTable.items;if(65535!==F.markIndex){var rA=AA.getItem(F.markIndex);(iA=new Qr(rA).lookup((m=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(iA,m.codePoints))}if(65535!==F.currentIndex){var iA,SA=AA.getItem(F.currentIndex);(iA=new Qr(SA).lookup((m=this.glyphs[R]).id))&&(this.glyphs[R]=this.font.getGlyph(iA,m.codePoints))}32768&F.flags&&(this.markedGlyph=R)},P.processLigature=function(m,F,R){if(32768&F.flags&&this.ligatureStack.push(R),8192&F.flags){for(var AA,rA=this.subtable.table.ligatureActions,aA=this.subtable.table.components,iA=this.subtable.table.ligatureList,SA=F.action,JA=!1,ct=0,KA=[],Bt=[];!JA;){var pt,Dt=this.ligatureStack.pop();(pt=KA).unshift.apply(pt,this.glyphs[Dt].codePoints);var Ht=rA.getItem(SA++);JA=!!(2147483648&Ht);var _t=!!(1073741824&Ht),qt=(1073741823&Ht)<<2>>2;if(ct+=aA.getItem(qt+=this.glyphs[Dt].id),JA||_t){var ue=iA.getItem(ct);this.glyphs[Dt]=this.font.getGlyph(ue,KA),Bt.push(Dt),ct=0,KA=[]}else this.glyphs[Dt]=this.font.getGlyph(65535)}(AA=this.ligatureStack).push.apply(AA,Bt)}},P.processNoncontextualSubstitutions=function(m,F,R){var AA=new Qr(m.table.lookupTable);for(R=0;R>>5,!!(1024&F.flags)),65535!==F.currentInsertIndex&&this._insertGlyphs(R,F.currentInsertIndex,(992&F.flags)>>>5,!!(2048&F.flags))},P.getSupportedFeatures=function(){for(var R,m=[],F=E(this.morx.chains);!(R=F()).done;)for(var aA,rA=E(R.value.features);!(aA=rA()).done;){var iA=aA.value;m.push([iA.featureType,iA.featureSetting])}return m},P.generateInputs=function(m){return this.inputCache||this.generateInputCache(),this.inputCache[m]||[]},P.generateInputCache=function(){this.inputCache={};for(var F,m=E(this.morx.chains);!(F=m()).done;)for(var aA,R=F.value,AA=R.defaultFlags,rA=E(R.subtables);!(aA=rA()).done;){var iA=aA.value;iA.subFeatureFlags&AA&&this.generateInputsForSubtable(iA)}},P.generateInputsForSubtable=function(m){var F=this;if(2===m.type){if(4194304&m.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=m,this.ligatureStack=[];var AA=this.getStateMachine(m),rA=this.getProcessor(),aA=[],iA=[];this.glyphs=[],AA.traverse({enter:function(JA,ct){var KA=F.glyphs;iA.push({glyphs:KA.slice(),ligatureStack:F.ligatureStack.slice()});var Bt=F.font.getGlyph(JA);aA.push(Bt),KA.push(aA[aA.length-1]),rA(KA[KA.length-1],ct,KA.length-1);for(var pt=0,Dt=0,Ht=0;Ht0&&m.applyFeatures(aA,F,R)}},tA}(),Rs=["rvrn"],Ls=["ccmp","locl","rlig","mark","mkmk"],Ps=["frac","numr","dnom"],zs=["calt","clig","liga","rclt","curs","kern"],Gs={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},Qi=function(){function tA(){}return tA.plan=function(V,m,F){this.planPreprocessing(V),this.planFeatures(V),this.planPostprocessing(V,F),V.assignGlobalFeatures(m),this.assignFeatures(V,m)},tA.planPreprocessing=function(V){V.add({global:[].concat(Rs,Gs[V.direction]),local:Ps})},tA.planFeatures=function(V){},tA.planPostprocessing=function(V,m){V.add([].concat(Ls,zs)),V.setFeatureOverrides(m)},tA.assignFeatures=function(V,m){for(var F=0;F0&&C.isDigit(m[AA-1].codePoints[0]);)m[AA-1].features.numr=!0,m[AA-1].features.frac=!0,AA--;for(;rAthis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]},P.next=function(){return this.move(1)},P.prev=function(){return this.move(-1)},P.peek=function(m){void 0===m&&(m=1);var F=this.index,R=this.increment(m);return this.index=F,R},P.peekIndex=function(m){void 0===m&&(m=1);var F=this.index;this.increment(m);var R=this.index;return this.index=F,R},P.increment=function(m){void 0===m&&(m=1);var F=m<0?-1:1;for(m=Math.abs(m);m--;)this.move(F);return this.glyphs[this.index]},l(tA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}]),tA}(),Ws=["DFLT","dflt","latn"],mr=function(){function tA(V,m){this.font=V,this.table=m,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=V._variationProcessor?this.findVariationsIndex(V._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}var P=tA.prototype;return P.findScript=function(m){if(null==this.table.scriptList)return null;Array.isArray(m)||(m=[m]);for(var R,F=E(m);!(R=F()).done;)for(var aA,AA=R.value,rA=E(this.table.scriptList);!(aA=rA()).done;){var iA=aA.value;if(iA.tag===AA)return iA}return null},P.selectScript=function(m,F,R){var rA,AA=!1;if(!this.script||m!==this.scriptTag){if((rA=this.findScript(m))||(rA=this.findScript(Ws)),!rA)return this.scriptTag;this.scriptTag=rA.tag,this.script=rA.script,this.language=null,this.languageTag=null,AA=!0}if((!R||R!==this.direction)&&(this.direction=R||da(m)),F&&F.length<4&&(F+=" ".repeat(4-F.length)),!F||F!==this.languageTag){this.language=null;for(var iA,aA=E(this.script.langSysRecords);!(iA=aA()).done;){var SA=iA.value;if(SA.tag===F){this.language=SA.langSys,this.languageTag=SA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),AA=!0}if(AA&&(this.features={},this.language))for(var ct,JA=E(this.language.featureIndexes);!(ct=JA()).done;){var KA=ct.value,Bt=this.table.featureList[KA],pt=this.substituteFeatureForVariations(KA);this.features[Bt.tag]=pt||Bt.feature}return this.scriptTag},P.lookupsForFeatures=function(m,F){void 0===m&&(m=[]);for(var rA,R=[],AA=E(m);!(rA=AA()).done;){var aA=rA.value,iA=this.features[aA];if(iA)for(var JA,SA=E(iA.lookupListIndexes);!(JA=SA()).done;){var ct=JA.value;F&&-1!==F.indexOf(ct)||R.push({feature:aA,index:ct,lookup:this.table.lookupList.get(ct)})}}return R.sort(function(KA,Bt){return KA.index-Bt.index}),R},P.substituteFeatureForVariations=function(m){if(-1===this.variationsIndex)return null;for(var rA,AA=E(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(rA=AA()).done;){var aA=rA.value;if(aA.featureIndex===m)return aA.alternateFeatureTable}return null},P.findVariationsIndex=function(m){var F=this.table.featureVariations;if(!F)return-1;for(var R=F.featureVariationRecords,AA=0;AA=0})},P.getClassID=function(m,F){switch(F.version){case 1:var R=m-F.startGlyph;if(R>=0&&R0&&this.codePoints.every(C.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}]),tA}(),Ya=function(tA){function P(){return tA.apply(this,arguments)||this}return g(P,tA),P.planFeatures=function(m){m.add(["ljmo","vjmo","tjmo"],!1)},P.assignFeatures=function(m,F){for(var R=0,AA=0;AAyi){var ct=Ki(V,AA,m.features);ct.features.tjmo=!0,JA.push(ct)}return tA.splice.apply(tA,[P,1].concat(JA)),P+JA.length-1}function cl(tA,P,V){var aA,iA,SA,JA,m=tA[P],R=Fr(tA[P].codePoints[0]),AA=tA[P-1].codePoints[0],rA=Fr(AA);if(4===rA&&3===R)aA=AA,JA=m;else{2===R?(iA=tA[P-1],SA=m):(iA=tA[P-2],SA=tA[P-1],JA=m);var ct=iA.codePoints[0],KA=SA.codePoints[0];(function(P){return 4352<=P&&P<=4370})(ct)&&function(P){return 4449<=P&&P<=4469}(KA)&&(aA=Ui+28*(21*(ct-4352)+(KA-4449)))}var Bt=JA&&JA.codePoints[0]||yi;if(null!=aA&&(Bt===yi||function(P){return 1<=P&&P<=4546}(Bt))){var pt=aA+(Bt-yi);if(V.hasGlyphForCodePoint(pt)){var Dt=2===rA?3:2;return tA.splice(P-Dt+1,Dt,Ki(V,pt,m.features)),P-Dt+1}}return iA&&(iA.features.ljmo=!0),SA&&(SA.features.vjmo=!0),JA&&(JA.features.tjmo=!0),4===rA?(Ua(tA,P-1,V),P+1):P}function Bl(tA,P,V){var m=tA[P];if(0!==V.glyphForCodePoint(tA[P].codePoints[0]).advanceWidth){var AA=function gl(tA){switch(Fr(tA)){case 4:case 5:return 1;case 2:return 2;case 3:return 3}}(tA[P-1].codePoints[0]);return tA.splice(P,1),tA.splice(P-AA,0,m)}}function ul(tA,P,V){var m=tA[P],F=tA[P].codePoints[0];if(V.hasGlyphForCodePoint(9676)){var R=Ki(V,9676,m.features),AA=0===V.glyphForCodePoint(F).advanceWidth?P:P+1;tA.splice(AA,0,R),P++}return P}var Yr={categories:["O","IND","S","GB","B","FM","CGJ","VMAbv","VMPst","VAbv","VPst","CMBlw","VPre","VBlw","H","VMBlw","CMAbv","MBlw","CS","R","SUB","MPst","MPre","FAbv","FPst","FBlw","null","SMAbv","SMBlw","VMPre","ZWNJ","ZWJ","WJ","M","VS","N","HN","MAbv"],decompositions:{2507:[2503,2494],2508:[2503,2519],2888:[2887,2902],2891:[2887,2878],2892:[2887,2903],3018:[3014,3006],3019:[3015,3006],3020:[3014,3031],3144:[3142,3158],3264:[3263,3285],3271:[3270,3285],3272:[3270,3286],3274:[3270,3266],3275:[3270,3266,3285],3402:[3398,3390],3403:[3399,3390],3404:[3398,3415],3546:[3545,3530],3548:[3545,3535],3549:[3545,3535,3530],3550:[3545,3551],3635:[3661,3634],3763:[3789,3762],3955:[3953,3954],3957:[3953,3956],3958:[4018,3968],3959:[4018,3953,3968],3960:[4019,3968],3961:[4019,3953,3968],3969:[3953,3968],6971:[6970,6965],6973:[6972,6965],6976:[6974,6965],6977:[6975,6965],6979:[6978,6965],69934:[69937,69927],69935:[69938,69927],70475:[70471,70462],70476:[70471,70487],70843:[70841,70842],70844:[70841,70832],70846:[70841,70845],71098:[71096,71087],71099:[71097,71087]},stateTable:[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,2,3,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,17,18,11,19,20,21,22,0,0,0,23,0,0,2,0,0,24,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,27,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,39,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,49,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,53,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0]],accepting:[!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0],tags:[[],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["symbol_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["virama_terminated_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["number_joiner_terminated_cluster"],["standard_cluster"],["standard_cluster"],["numeral_cluster"]]},Me_X=1,Me_N=8,Me_H=16,Me_ZWNJ=32,Me_ZWJ=64,Me_M=128,Me_RS=8192,Me_Repha=32768,Me_Ra=65536,Me_CM=1<<17,ee={Start:1,Ra_To_Become_Reph:2,Pre_M:4,Pre_C:8,Base_C:16,After_Main:32,Above_C:64,Before_Sub:128,Below_C:256,After_Sub:512,Before_Post:1024,Post_C:2048,After_Post:4096,Final_C:8192,SMVD:16384,End:32768},Ml=2|Me_Ra|Me_CM|4|2048|4096,ba=Me_ZWJ|Me_ZWNJ,Xi=Me_H|16384,Ra={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:ee.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:ee.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:ee.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:ee.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:ee.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:ee.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:ee.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:ee.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:ee.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:ee.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:ee.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},ml={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},Il=Yr.decompositions,Aa=new Q(u("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","base64")),vl=new M({stateTable:[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,14,15,16,17],[0,0,0,18,19,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,28,29,30,31,32,33,0,34,0,0,35,36,0,0,37,0],[0,0,0,38,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,39,0,0,0,40,41,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,12,43,0,0,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,0,43,0,0,0,0],[0,0,0,45,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,50,0,0,51,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0],[0,0,0,53,54,55,56,57,58,0,59,0,0,60,61,0,0,62,0],[0,0,0,4,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,63,64,0,0,40,41,0,9,0,10,0,0,0,42,0,63,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,0,2,16,0],[0,0,0,18,65,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,0,0],[0,0,0,69,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,73,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,75,0,0,0,76,77,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,25,79,0,0,0,0],[0,0,0,18,19,20,74,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,81,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,86,0,0,87,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0],[0,0,0,18,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,89,90,0,0,76,77,0,23,0,24,0,0,0,78,0,89,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,0,0],[0,0,0,94,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,96,0,0,0,97,98,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,35,100,0,0,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,102,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,107,0,0,108,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0],[0,0,0,28,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,110,111,0,0,97,98,0,33,0,34,0,0,0,99,0,110,0,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,0,0],[0,0,0,0,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,0,0,115,116,117,118,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,39,0,122,0,123,123,8,9,0,10,0,0,0,42,0,39,0,0],[0,124,64,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0],[0,39,0,0,0,121,125,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,126,126,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,47,47,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,128,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,129,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,50,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0],[0,0,0,135,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,136,0,0,0,137,138,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,60,140,0,0,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,0,140,0,0,0,0],[0,0,0,142,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,147,0,0,148,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0],[0,0,0,53,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,150,151,0,0,137,138,0,58,0,59,0,0,0,139,0,150,0,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,0,0],[0,0,0,155,116,156,157,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,75,3,4,5,159,160,8,161,0,162,0,11,12,163,0,75,16,0],[0,0,0,0,0,40,164,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,0,165,0,0,0,0],[0,124,64,0,0,40,164,0,9,0,10,0,0,0,42,0,124,0,0],[0,0,0,0,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,167,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0],[0,0,0,0,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,0,79,0,0,0,0],[0,0,0,169,170,171,172,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,75,0,176,0,177,177,22,23,0,24,0,0,0,78,0,75,0,0],[0,178,90,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0],[0,75,0,0,0,175,179,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,180,180,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,83,83,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,182,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,183,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0],[0,0,0,189,170,190,191,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,76,193,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,0,194,0,0,0,0],[0,178,90,0,0,76,193,0,23,0,24,0,0,0,78,0,178,0,0],[0,0,0,0,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,195,196,197,198,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,96,0,202,0,203,203,32,33,0,34,0,0,0,99,0,96,0,0],[0,204,111,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0],[0,96,0,0,0,201,205,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,206,206,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,104,104,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,208,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,209,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,107,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0],[0,0,0,215,196,216,217,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,97,219,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,0,220,0,0,0,0],[0,204,111,0,0,97,219,0,33,0,34,0,0,0,99,0,204,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,223,0,0,0,40,224,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,119,225,0,0,0,0],[0,0,0,115,116,117,222,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,115,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,226,64,0,0,40,224,0,9,0,10,0,0,0,42,0,226,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,39,0,0,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,44,44,8,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,227,0,228,229,0,9,0,10,0,0,230,0,0,0,0,0],[0,39,0,122,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,231,231,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,131,131,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,234,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,235,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,0,0,240,241,242,243,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,136,0,247,0,248,248,57,58,0,59,0,0,0,139,0,136,0,0],[0,249,151,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0],[0,136,0,0,0,246,250,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,251,251,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,144,144,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,253,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,254,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,147,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0],[0,0,0,260,241,261,262,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,137,264,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,0,265,0,0,0,0],[0,249,151,0,0,137,264,0,58,0,59,0,0,0,139,0,249,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,158,225,0,0,0,0],[0,0,0,155,116,156,222,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,155,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,43,266,266,8,161,0,24,0,0,12,267,0,0,0,0],[0,75,0,176,43,268,268,269,161,0,24,0,0,0,267,0,75,0,0],[0,0,0,0,0,270,0,0,271,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0],[0,273,274,0,0,40,41,0,9,0,10,0,0,0,42,0,273,0,0],[0,0,0,40,0,123,123,8,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,121,275,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,279,0,0,0,76,280,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,173,281,0,0,0,0],[0,0,0,169,170,171,278,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,169,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,282,90,0,0,76,280,0,23,0,24,0,0,0,78,0,282,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,75,0,0,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,80,80,22,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,283,0,284,285,0,23,0,24,0,0,286,0,0,0,0,0],[0,75,0,176,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,287,287,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,185,185,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,290,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,291,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,192,281,0,0,0,0],[0,0,0,189,170,190,278,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,189,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,76,0,177,177,22,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,175,296,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,299,0,0,0,97,300,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,199,301,0,0,0,0],[0,0,0,195,196,197,298,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,195,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,302,111,0,0,97,300,0,33,0,34,0,0,0,99,0,302,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,96,0,0,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,101,101,32,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,303,0,304,305,0,33,0,34,0,0,306,0,0,0,0,0],[0,96,0,202,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,307,307,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,211,211,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,310,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,311,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,218,301,0,0,0,0],[0,0,0,215,196,216,298,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,215,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,97,0,203,203,32,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,201,316,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,0,225,0,0,0,0],[0,0,0,317,318,319,320,8,9,0,10,0,0,321,322,0,0,16,0],[0,223,0,323,0,123,123,8,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,0,0,121,324,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,325,318,326,327,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,64,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,230,0,0,0,0,0],[0,0,0,227,0,228,121,0,9,0,10,0,0,230,0,0,0,0,0],[0,0,0,227,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0],[0,0,0,0,0,329,329,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,237,237,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,332,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,333,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,337,0,0,0,137,338,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,244,339,0,0,0,0],[0,0,0,240,241,242,336,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,240,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,340,151,0,0,137,338,0,58,0,59,0,0,0,139,0,340,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,136,0,0,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,141,141,57,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,341,0,342,343,0,58,0,59,0,0,344,0,0,0,0,0],[0,136,0,247,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,345,345,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,256,256,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,348,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,349,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,263,339,0,0,0,0],[0,0,0,260,241,261,336,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,260,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,137,0,248,248,57,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,246,354,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,126,126,8,23,0,0,0,0,0,0,0,0,0,0],[0,355,90,0,0,121,125,0,9,0,10,0,0,0,42,0,355,0,0],[0,0,0,0,0,356,356,269,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,357,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0],[0,0,0,364,116,365,366,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,40,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,0,281,0,0,0,0],[0,0,0,369,370,371,372,22,23,0,24,0,0,373,374,0,0,27,0],[0,279,0,375,0,177,177,22,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,0,0,175,376,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,377,370,378,379,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,90,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,286,0,0,0,0,0],[0,0,0,283,0,284,175,0,23,0,24,0,0,286,0,0,0,0,0],[0,0,0,283,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0],[0,0,0,0,0,381,381,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,293,293,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,384,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,385,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,76,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,0,301,0,0,0,0],[0,0,0,387,388,389,390,32,33,0,34,0,0,391,392,0,0,37,0],[0,299,0,393,0,203,203,32,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,0,0,201,394,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,395,388,396,397,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,111,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,306,0,0,0,0,0],[0,0,0,303,0,304,201,0,33,0,34,0,0,306,0,0,0,0,0],[0,0,0,303,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0],[0,0,0,0,0,399,399,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,313,313,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,402,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,403,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,97,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,407,0,0,0,40,408,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,321,409,0,0,0,0],[0,0,0,317,318,319,406,8,9,0,10,0,0,321,322,0,0,16,0],[0,0,0,317,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,410,64,0,0,40,408,0,9,0,10,0,0,0,42,0,410,0,0],[0,223,0,0,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,323,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,328,409,0,0,0,0],[0,0,0,325,318,326,406,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,325,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0],[0,0,0,0,0,411,411,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,413,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,0,339,0,0,0,0],[0,0,0,414,415,416,417,57,58,0,59,0,0,418,419,0,0,62,0],[0,337,0,420,0,248,248,57,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,0,0,246,421,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,422,415,423,424,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,151,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,344,0,0,0,0,0],[0,0,0,341,0,342,246,0,58,0,59,0,0,344,0,0,0,0,0],[0,0,0,341,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0],[0,0,0,0,0,426,426,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,351,351,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,429,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,430,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,137,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,432,116,433,434,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,0,0,180,180,269,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,359,359,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,437,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,438,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,443,274,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,367,225,0,0,0,0],[0,0,0,364,116,365,445,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,364,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,448,0,0,0,76,449,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,373,450,0,0,0,0],[0,0,0,369,370,371,447,22,23,0,24,0,0,373,374,0,0,27,0],[0,0,0,369,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,451,90,0,0,76,449,0,23,0,24,0,0,0,78,0,451,0,0],[0,279,0,0,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,375,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,380,450,0,0,0,0],[0,0,0,377,370,378,447,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,377,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0],[0,0,0,0,0,452,452,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,454,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,457,0,0,0,97,458,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,391,459,0,0,0,0],[0,0,0,387,388,389,456,32,33,0,34,0,0,391,392,0,0,37,0],[0,0,0,387,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,460,111,0,0,97,458,0,33,0,34,0,0,0,99,0,460,0,0],[0,299,0,0,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,393,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,398,459,0,0,0,0],[0,0,0,395,388,396,456,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,395,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0],[0,0,0,0,0,461,461,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,463,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,0,409,0,0,0,0],[0,0,0,464,465,466,467,8,9,0,10,0,0,468,469,0,0,16,0],[0,407,0,470,0,123,123,8,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,0,0,121,471,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,472,465,473,474,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0],[0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,479,0,0,0,137,480,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,418,481,0,0,0,0],[0,0,0,414,415,416,478,57,58,0,59,0,0,418,419,0,0,62,0],[0,0,0,414,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,482,151,0,0,137,480,0,58,0,59,0,0,0,139,0,482,0,0],[0,337,0,0,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,420,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,425,481,0,0,0,0],[0,0,0,422,415,423,478,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,422,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0],[0,0,0,0,0,483,483,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,485,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,435,225,0,0,0,0],[0,0,0,432,116,433,445,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,432,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,486,486,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,440,440,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,489,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,490,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,495,0,496,497,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,0,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,0,225,0,0,0,0],[0,0,0,0,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,0,450,0,0,0,0],[0,0,0,499,500,501,502,22,23,0,24,0,0,503,504,0,0,27,0],[0,448,0,505,0,177,177,22,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,0,0,175,506,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,507,500,508,509,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0],[0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,0,459,0,0,0,0],[0,0,0,512,513,514,515,32,33,0,34,0,0,516,517,0,0,37,0],[0,457,0,518,0,203,203,32,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,0,0,201,519,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,520,513,521,522,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0],[0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,527,0,0,0,40,528,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,468,529,0,0,0,0],[0,0,0,464,465,466,526,8,9,0,10,0,0,468,469,0,0,16,0],[0,0,0,464,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,530,64,0,0,40,528,0,9,0,10,0,0,0,42,0,530,0,0],[0,407,0,0,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,470,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,475,529,0,0,0,0],[0,0,0,472,465,473,526,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,472,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0],[0,0,0,0,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,0,481,0,0,0,0],[0,0,0,531,532,533,534,57,58,0,59,0,0,535,536,0,0,62,0],[0,479,0,537,0,248,248,57,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,0,0,246,538,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,539,532,540,541,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0],[0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0],[0,0,0,0,0,544,544,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,492,492,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,547,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,548,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,274,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,498,0,0,0,0,0],[0,0,0,495,0,496,368,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,495,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,553,0,0,0,76,554,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,503,555,0,0,0,0],[0,0,0,499,500,501,552,22,23,0,24,0,0,503,504,0,0,27,0],[0,0,0,499,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,556,90,0,0,76,554,0,23,0,24,0,0,0,78,0,556,0,0],[0,448,0,0,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,505,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,510,555,0,0,0,0],[0,0,0,507,500,508,552,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,507,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,559,0,0,0,97,560,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,516,561,0,0,0,0],[0,0,0,512,513,514,558,32,33,0,34,0,0,516,517,0,0,37,0],[0,0,0,512,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,562,111,0,0,97,560,0,33,0,34,0,0,0,99,0,562,0,0],[0,457,0,0,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,518,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,523,561,0,0,0,0],[0,0,0,520,513,521,558,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,520,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0],[0,0,0,0,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,0,529,0,0,0,0],[0,0,0,563,66,564,565,8,9,0,10,0,0,566,68,0,0,16,0],[0,527,0,567,0,123,123,8,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,0,0,121,568,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,569,66,570,571,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,575,0,0,0,137,576,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,535,577,0,0,0,0],[0,0,0,531,532,533,574,57,58,0,59,0,0,535,536,0,0,62,0],[0,0,0,531,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,578,151,0,0,137,576,0,58,0,59,0,0,0,139,0,578,0,0],[0,479,0,0,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,537,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,542,577,0,0,0,0],[0,0,0,539,532,540,574,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,539,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0],[0,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0],[0,0,0,0,0,579,579,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,581,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,0,555,0,0,0,0],[0,0,0,582,91,583,584,22,23,0,24,0,0,585,93,0,0,27,0],[0,553,0,586,0,177,177,22,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,0,0,175,587,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,588,91,589,590,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,0,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,0,561,0,0,0,0],[0,0,0,592,112,593,594,32,33,0,34,0,0,595,114,0,0,37,0],[0,559,0,596,0,203,203,32,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,0,0,201,597,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,598,112,599,600,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,566,165,0,0,0,0],[0,0,0,563,66,564,67,8,9,0,10,0,0,566,68,0,0,16,0],[0,0,0,563,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,527,0,0,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,567,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,572,165,0,0,0,0],[0,0,0,569,66,570,67,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,569,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,0,577,0,0,0,0],[0,0,0,603,152,604,605,57,58,0,59,0,0,606,154,0,0,62,0],[0,575,0,607,0,248,248,57,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,0,0,246,608,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,609,152,610,611,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0],[0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,585,194,0,0,0,0],[0,0,0,582,91,583,92,22,23,0,24,0,0,585,93,0,0,27,0],[0,0,0,582,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,553,0,0,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,586,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,591,194,0,0,0,0],[0,0,0,588,91,589,92,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,588,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,595,220,0,0,0,0],[0,0,0,592,112,593,113,32,33,0,34,0,0,595,114,0,0,37,0],[0,0,0,592,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,559,0,0,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,596,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,601,220,0,0,0,0],[0,0,0,598,112,599,113,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,598,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,606,265,0,0,0,0],[0,0,0,603,152,604,153,57,58,0,59,0,0,606,154,0,0,62,0],[0,0,0,603,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,575,0,0,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,607,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,612,265,0,0,0,0],[0,0,0,609,152,610,153,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,609,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0]],accepting:[!1,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!1,!1,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0],tags:[[],["broken_cluster"],["consonant_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],[],["broken_cluster"],["symbol_cluster"],[],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["symbol_cluster"],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],[],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],[],[],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],["consonant_syllable"],["vowel_syllable"],["standalone_cluster"]]}),En=function(tA){function P(){return tA.apply(this,arguments)||this}return g(P,tA),P.planFeatures=function(m){m.addStage(Dl),m.addStage(["locl","ccmp"]),m.addStage(xl),m.addStage("nukt"),m.addStage("akhn"),m.addStage("rphf",!1),m.addStage("rkrf"),m.addStage("pref",!1),m.addStage("blwf",!1),m.addStage("abvf",!1),m.addStage("half",!1),m.addStage("pstf",!1),m.addStage("vatu"),m.addStage("cjct"),m.addStage("cfar",!1),m.addStage(Fl),m.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),m.unicodeScript=function us(tA){return Xn[tA]}(m.script),m.indicConfig=Ra[m.unicodeScript]||Ra.Default,m.isOldSpec=m.indicConfig.hasOldSpec&&"2"!==m.script[m.script.length-1]},P.assignFeatures=function(m,F){for(var R=function(aA){var iA=F[aA].codePoints[0],SA=ml[iA]||Il[iA];if(SA){var JA=SA.map(function(ct){var KA=m.font.glyphForCodePoint(ct);return new li(m.font,KA.id,[ct],F[aA].features)});F.splice.apply(F,[aA,1].concat(JA))}},AA=F.length-1;AA>=0;AA--)R(AA)},P}(Qi);function ta(tA){return Aa.get(tA.codePoints[0])>>8}function La(tA){return 1<<(255&Aa.get(tA.codePoints[0]))}S(En,"zeroMarkWidths","NONE");var Tr=function(P,V,m,F){this.category=P,this.position=V,this.syllableType=m,this.syllable=F};function Dl(tA,P){for(var R,V=0,m=0,F=E(vl.match(P.map(ta)));!(R=F()).done;){var AA=R.value,rA=AA[0],aA=AA[1],iA=AA[2];if(rA>m){++V;for(var SA=m;SAHt);break;case"First":for(var de=(Dt=iA)+1;deKe&&!(xi(P[Je])||ln&&P[Je].shaperInfo.category===Me_H);Je--);if(P[Je].shaperInfo.category!==Me_H&&Je>Ke){var Ee=P[Ke];P.splice.apply(P,[Ke,0].concat(P.splice(Ke+1,Je-Ke))),P[Je]=Ee}break}for(var _e=ee.Start,Ue=iA;UeiA;An--)if(P[An-1].shaperInfo.position!==ee.Pre_M){Fe.position=P[An-1].shaperInfo.position;break}}else Fe.position!==ee.SMVD&&(_e=Fe.position)}for(var Rn=Dt,un=Dt+1;uniA&&!xi(P[Ln]))}}}}function Fl(tA,P,V){for(var m=V.indicConfig,F=tA._layoutEngine.engine.GSUBProcessor.features,R=0,AA=Sr(P,0);R=ee.Base_C){if(rA&&aA+1ee.Base_C&&aA--;break}if(aA===AA&&RR&&!(P[JA].shaperInfo.category&(Me_M|Xi));)JA--;gi(P[JA])&&P[JA].shaperInfo.position!==ee.Pre_M?JA+1R;ct--)if(P[ct-1].shaperInfo.position===ee.Pre_M){var KA=ct-1;KAR&&P[pt].shaperInfo.position===ee.SMVD;)pt--;if(gi(P[pt]))for(var _t=aA+1;_tR&&!(P[ue-1].shaperInfo.category&(Me_M|Xi));)ue--;if(ue>R&&P[ue-1].shaperInfo.category===Me_M)for(var Qe=ae,de=aA+1;deR&&gi(P[ue-1])&&ue=tA.length)return P;for(var V=tA[P].shaperInfo.syllable;++P=0;AA--)R(AA)},P}(Qi);function Pa(tA){return Tl.get(tA.codePoints[0])}S(Ce,"zeroMarkWidths","BEFORE_GPOS");var za=function(P,V,m){this.category=P,this.syllableType=V,this.syllable=m};function Ga(tA,P){for(var F,V=0,m=E(Sl.match(P.map(Pa)));!(F=m()).done;){var R=F.value,AA=R[0],rA=R[1],aA=R[2];++V;for(var iA=AA;iA<=rA;iA++)P[iA].shaperInfo=new za(Yl[Pa(P[iA])],aA[0],V);for(var SA="R"===P[AA].shaperInfo.category?1:Math.min(3,rA-AA),JA=AA;JA1)for(R=m+1;R=tA.length)return P;for(var V=tA[P].shaperInfo.syllable;++P=0;Gn--)this.glyphs.splice(ue[Gn],1);return this.glyphs[this.glyphIterator.index]=ce,!0}}return!1;case 5:return this.applyContext(R);case 6:return this.applyChainingContext(R);case 7:return this.applyLookup(R.lookupType,R.extension);default:throw new Error("GSUB lookupType ".concat(F," is not supported"))}},P}(mr),zl=function(tA){function P(){return tA.apply(this,arguments)||this}g(P,tA);var V=P.prototype;return V.applyPositionValue=function(F,R){var AA=this.positions[this.glyphIterator.peekIndex(F)];null!=R.xAdvance&&(AA.xAdvance+=R.xAdvance),null!=R.yAdvance&&(AA.yAdvance+=R.yAdvance),null!=R.xPlacement&&(AA.xOffset+=R.xPlacement),null!=R.yPlacement&&(AA.yOffset+=R.yPlacement);var rA=this.font._variationProcessor,aA=this.font.GDEF&&this.font.GDEF.itemVariationStore;rA&&aA&&(R.xPlaDevice&&(AA.xOffset+=rA.getDelta(aA,R.xPlaDevice.a,R.xPlaDevice.b)),R.yPlaDevice&&(AA.yOffset+=rA.getDelta(aA,R.yPlaDevice.a,R.yPlaDevice.b)),R.xAdvDevice&&(AA.xAdvance+=rA.getDelta(aA,R.xAdvDevice.a,R.xAdvDevice.b)),R.yAdvDevice&&(AA.yAdvance+=rA.getDelta(aA,R.yAdvDevice.a,R.yAdvDevice.b)))},V.applyLookup=function(F,R){switch(F){case 1:var AA=this.coverageIndex(R.coverage);if(-1===AA)return!1;switch(R.version){case 1:this.applyPositionValue(0,R.value);break;case 2:this.applyPositionValue(0,R.values.get(AA))}return!0;case 2:var rA=this.glyphIterator.peek();if(!rA)return!1;var aA=this.coverageIndex(R.coverage);if(-1===aA)return!1;switch(R.version){case 1:for(var JA,SA=E(R.pairSets.get(aA));!(JA=SA()).done;){var ct=JA.value;if(ct.secondGlyph===rA.id)return this.applyPositionValue(0,ct.value1),this.applyPositionValue(1,ct.value2),!0}return!1;case 2:var KA=this.getClassID(this.glyphIterator.cur.id,R.classDef1),Bt=this.getClassID(rA.id,R.classDef2);if(-1===KA||-1===Bt)return!1;var pt=R.classRecords.get(KA).get(Bt);return this.applyPositionValue(0,pt.value1),this.applyPositionValue(1,pt.value2),!0}case 3:var Dt=this.glyphIterator.peekIndex(),Ht=this.glyphs[Dt];if(!Ht)return!1;var _t=R.entryExitRecords[this.coverageIndex(R.coverage)];if(!_t||!_t.exitAnchor)return!1;var qt=R.entryExitRecords[this.coverageIndex(R.coverage,Ht.id)];if(!qt||!qt.entryAnchor)return!1;var ae=this.getAnchor(qt.entryAnchor),ue=this.getAnchor(_t.exitAnchor),Qe=this.positions[this.glyphIterator.index],de=this.positions[Dt];switch(this.direction){case"ltr":Qe.xAdvance=ue.x+Qe.xOffset;var He=ae.x+de.xOffset;de.xAdvance-=He,de.xOffset-=He;break;case"rtl":Qe.xAdvance-=He=ue.x+Qe.xOffset,Qe.xOffset-=He,de.xAdvance=ae.x+de.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=Dt,Qe.yOffset=ae.y-ue.y):(Ht.cursiveAttachment=this.glyphIterator.index,Qe.yOffset=ue.y-ae.y),!0;case 4:var sn=this.coverageIndex(R.markCoverage);if(-1===sn)return!1;for(var Oe=this.glyphIterator.index;--Oe>=0&&(this.glyphs[Oe].isMark||this.glyphs[Oe].ligatureComponent>0););if(Oe<0)return!1;var ce=this.coverageIndex(R.baseCoverage,this.glyphs[Oe].id);if(-1===ce)return!1;var ln=R.markArray[sn];return this.applyAnchor(ln,R.baseArray[ce][ln.class],Oe),!0;case 5:var Je=this.coverageIndex(R.markCoverage);if(-1===Je)return!1;for(var Ee=this.glyphIterator.index;--Ee>=0&&this.glyphs[Ee].isMark;);if(Ee<0)return!1;var _e=this.coverageIndex(R.ligatureCoverage,this.glyphs[Ee].id);if(-1===_e)return!1;var Ue=R.ligatureArray[_e],Fe=this.glyphIterator.cur,An=this.glyphs[Ee],Rn=An.ligatureID&&An.ligatureID===Fe.ligatureID&&Fe.ligatureComponent>0?Math.min(Fe.ligatureComponent,An.codePoints.length)-1:An.codePoints.length-1,un=R.markArray[Je];return this.applyAnchor(un,Ue[Rn][un.class],Ee),!0;case 6:var Gn=this.coverageIndex(R.mark1Coverage);if(-1===Gn)return!1;var On=this.glyphIterator.peekIndex(-1),In=this.glyphs[On];if(!In||!In.isMark)return!1;var Qn=this.glyphIterator.cur,Jn=!1;if(Qn.ligatureID===In.ligatureID?Qn.ligatureID?Qn.ligatureComponent===In.ligatureComponent&&(Jn=!0):Jn=!0:(Qn.ligatureID&&!Qn.ligatureComponent||In.ligatureID&&!In.ligatureComponent)&&(Jn=!0),!Jn)return!1;var kn=this.coverageIndex(R.mark2Coverage,In.id);if(-1===kn)return!1;var Ie=R.mark1Array[Gn];return this.applyAnchor(Ie,R.mark2Array[kn][Ie.class],On),!0;case 7:return this.applyContext(R);case 8:return this.applyChainingContext(R);case 9:return this.applyLookup(R.lookupType,R.extension);default:throw new Error("Unsupported GPOS table: ".concat(F))}},V.applyAnchor=function(F,R,AA){var rA=this.getAnchor(R),aA=this.getAnchor(F.markAnchor),SA=this.positions[this.glyphIterator.index];SA.xOffset=rA.x-aA.x,SA.yOffset=rA.y-aA.y,this.glyphIterator.cur.markAttachment=AA},V.getAnchor=function(F){var R=F.xCoordinate,AA=F.yCoordinate,rA=this.font._variationProcessor,aA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return rA&&aA&&(F.xDeviceTable&&(R+=rA.getDelta(aA,F.xDeviceTable.a,F.xDeviceTable.b)),F.yDeviceTable&&(AA+=rA.getDelta(aA,F.yDeviceTable.a,F.yDeviceTable.b))),{x:R,y:AA}},V.applyFeatures=function(F,R,AA){tA.prototype.applyFeatures.call(this,F,R,AA);for(var rA=0;rA>16;if(0===F)switch(m>>8){case 0:return 173===m;case 3:return 847===m;case 6:return 1564===m;case 23:return 6068<=m&&m<=6069;case 24:return 6155<=m&&m<=6158;case 32:return 8203<=m&&m<=8207||8234<=m&&m<=8238||8288<=m&&m<=8303;case 254:return 65024<=m&&m<=65039||65279===m;case 255:return 65520<=m&&m<=65528;default:return!1}else switch(F){case 1:return 113824<=m&&m<=113827||119155<=m&&m<=119162;case 14:return 917504<=m&&m<=921599;default:return!1}},P.getAvailableFeatures=function(m,F){var R=[];return this.engine&&R.push.apply(R,this.engine.getAvailableFeatures(m,F)),this.font.kern&&-1===R.indexOf("kern")&&R.push("kern"),R},P.stringsForGlyph=function(m){for(var rA,F=new Set,AA=E(this.font._cmapProcessor.codePointsForGlyph(m));!(rA=AA()).done;)F.add(String.fromCodePoint(rA.value));if(this.engine&&this.engine.stringsForGlyph)for(var SA,iA=E(this.engine.stringsForGlyph(m));!(SA=iA()).done;)F.add(SA.value);return Array.from(F)},tA}(),Ol={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},br=function(){function tA(){this.commands=[],this._bbox=null,this._cbox=null}var P=tA.prototype;return P.toFunction=function(){var m=this;return function(F){m.commands.forEach(function(R){return F[R.command].apply(F,R.args)})}},P.toSVG=function(){return this.commands.map(function(F){var R=F.args.map(function(AA){return Math.round(100*AA)/100});return"".concat(Ol[F.command]).concat(R.join(" "))}).join("")},P.mapPoints=function(m){for(var AA,F=new tA,R=E(this.commands);!(AA=R()).done;){for(var rA=AA.value,aA=[],iA=0;iA0&&this.codePoints.every(C.isMark),this.isLigature=this.codePoints.length>1}var P=tA.prototype;return P._getPath=function(){return new br},P._getCBox=function(){return this.path.cbox},P._getBBox=function(){return this.path.bbox},P._getTableMetrics=function(m){if(this.id0)aA=Math.abs(SA.typoAscender-SA.typoDescender),iA=SA.typoAscender-m.maxY;else{var JA=this._font.hhea;aA=Math.abs(JA.ascent-JA.descent),iA=JA.ascent-m.maxY}return this._font._variationProcessor&&this._font.HVAR&&(R+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:R,advanceHeight:aA,leftBearing:AA,topBearing:iA}},P.getScaledPath=function(m){return this.path.scale(1/this._font.unitsPerEm*m)},P._getName=function(){var m=this._font.post;if(!m)return null;switch(m.version){case 1:return qi[this.id];case 2:var F=m.glyphNameIndex[this.id];return F0?this._decodeSimple(aA,AA):aA.numberOfContours<0&&this._decodeComposite(aA,AA,rA),aA},V._decodeSimple=function(F,R){F.points=[];var AA=new e.Array(e.uint16,F.numberOfContours).decode(R);F.instructions=new e.Array(e.uint8,e.uint16).decode(R);for(var rA=[],aA=AA[AA.length-1]+1;rA.length=0,0,0);F.points.push(KA)}var Bt=0;for(ct=0;ct>1,iA.length=0}function ln(Je,Ee){Ht&&aA.closePath(),aA.moveTo(Je,Ee),Ht=!0}return function Je(){for(;R.pos1&&Oe(),Bt+=iA.shift(),ln(KA,Bt);break;case 5:for(;iA.length>=2;)KA+=iA.shift(),Bt+=iA.shift(),aA.lineTo(KA,Bt);break;case 6:case 7:for(var _e=6===Ee;iA.length>=1;)_e?KA+=iA.shift():Bt+=iA.shift(),aA.lineTo(KA,Bt),_e=!_e;break;case 8:for(;iA.length>0;){var Ie=KA+iA.shift(),be=Bt+iA.shift(),Ye=Ie+iA.shift(),Ze=be+iA.shift();KA=Ye+iA.shift(),Bt=Ze+iA.shift(),aA.bezierCurveTo(Ie,be,Ye,Ze,KA,Bt)}break;case 10:var Ue=iA.pop()+Qe,Fe=ue[Ue];if(Fe){Dt[Ue]=!0;var An=R.pos,Rn=rA;R.pos=Fe.offset,rA=Fe.offset+Fe.length,Je(),R.pos=An,rA=Rn}break;case 11:if(F.version>=2)break;return;case 14:if(F.version>=2)break;iA.length>0&&Oe(),Ht&&(aA.closePath(),Ht=!1);break;case 15:if(F.version<2)throw new Error("vsindex operator not supported in CFF v1");He=iA.pop();break;case 16:if(F.version<2)throw new Error("blend operator not supported in CFF v1");if(!sn)throw new Error("blend operator in non-variation font");for(var un=sn.getBlendVector(de,He),Mn=iA.pop(),Gn=Mn*un.length,On=iA.length-Gn,In=On-Mn,Qn=0;Qn>3;break;case 21:iA.length>2&&Oe(),KA+=iA.shift(),Bt+=iA.shift(),ln(KA,Bt);break;case 22:iA.length>1&&Oe(),ln(KA+=iA.shift(),Bt);break;case 24:for(;iA.length>=8;)Ie=KA+iA.shift(),be=Bt+iA.shift(),Ye=Ie+iA.shift(),Ze=be+iA.shift(),KA=Ye+iA.shift(),Bt=Ze+iA.shift(),aA.bezierCurveTo(Ie,be,Ye,Ze,KA,Bt);KA+=iA.shift(),Bt+=iA.shift(),aA.lineTo(KA,Bt);break;case 25:for(;iA.length>=8;)KA+=iA.shift(),Bt+=iA.shift(),aA.lineTo(KA,Bt);Ie=KA+iA.shift(),be=Bt+iA.shift(),Ye=Ie+iA.shift(),Ze=be+iA.shift(),KA=Ye+iA.shift(),Bt=Ze+iA.shift(),aA.bezierCurveTo(Ie,be,Ye,Ze,KA,Bt);break;case 26:for(iA.length%2&&(KA+=iA.shift());iA.length>=4;)Ie=KA,be=Bt+iA.shift(),Ye=Ie+iA.shift(),Ze=be+iA.shift(),KA=Ye,Bt=Ze+iA.shift(),aA.bezierCurveTo(Ie,be,Ye,Ze,KA,Bt);break;case 27:for(iA.length%2&&(Bt+=iA.shift());iA.length>=4;)Ie=KA+iA.shift(),be=Bt,Ye=Ie+iA.shift(),Ze=be+iA.shift(),KA=Ye+iA.shift(),aA.bezierCurveTo(Ie,be,Ye,Ze,KA,Bt=Ze);break;case 28:iA.push(R.readInt16BE());break;case 29:Ue=iA.pop()+qt,(Fe=_t[Ue])&&(pt[Ue]=!0,An=R.pos,Rn=rA,R.pos=Fe.offset,rA=Fe.offset+Fe.length,Je(),R.pos=An,rA=Rn);break;case 30:case 31:for(_e=31===Ee;iA.length>=4;)_e?(Ie=KA+iA.shift(),be=Bt,Ye=Ie+iA.shift(),Ze=be+iA.shift(),Bt=Ze+iA.shift(),KA=Ye+(1===iA.length?iA.shift():0)):(Ie=KA,be=Bt+iA.shift(),Ye=Ie+iA.shift(),Ze=be+iA.shift(),KA=Ye+iA.shift(),Bt=Ze+(1===iA.length?iA.shift():0)),aA.bezierCurveTo(Ie,be,Ye,Ze,KA,Bt),_e=!_e;break;case 12:switch(Ee=R.readUInt8()){case 3:var ke=iA.pop(),fn=iA.pop();iA.push(ke&&fn?1:0);break;case 4:ke=iA.pop(),fn=iA.pop(),iA.push(ke||fn?1:0);break;case 5:ke=iA.pop(),iA.push(ke?0:1);break;case 9:ke=iA.pop(),iA.push(Math.abs(ke));break;case 10:ke=iA.pop(),fn=iA.pop(),iA.push(ke+fn);break;case 11:ke=iA.pop(),fn=iA.pop(),iA.push(ke-fn);break;case 12:ke=iA.pop(),fn=iA.pop(),iA.push(ke/fn);break;case 14:ke=iA.pop(),iA.push(-ke);break;case 15:ke=iA.pop(),fn=iA.pop(),iA.push(ke===fn?1:0);break;case 18:iA.pop();break;case 20:var aa=iA.pop(),Ln=iA.pop();SA[Ln]=aa;break;case 21:Ln=iA.pop(),iA.push(SA[Ln]||0);break;case 22:var oa=iA.pop(),sa=iA.pop(),io=iA.pop(),O0=iA.pop();iA.push(io<=O0?oa:sa);break;case 23:iA.push(Math.random());break;case 24:ke=iA.pop(),fn=iA.pop(),iA.push(ke*fn);break;case 26:ke=iA.pop(),iA.push(Math.sqrt(ke));break;case 27:ke=iA.pop(),iA.push(ke,ke);break;case 28:ke=iA.pop(),fn=iA.pop(),iA.push(fn,ke);break;case 29:(Ln=iA.pop())<0?Ln=0:Ln>iA.length-1&&(Ln=iA.length-1),iA.push(iA[Ln]);break;case 30:var Pr=iA.pop(),Ar=iA.pop();if(Ar>=0)for(;Ar>0;){for(var la=iA[Pr-1],bi=Pr-2;bi>=0;bi--)iA[bi+1]=iA[bi];iA[0]=la,Ar--}else for(;Ar<0;){la=iA[0];for(var zr=0;zr<=Pr;zr++)iA[zr]=iA[zr+1];iA[Pr-1]=la,Ar++}break;case 34:Ie=KA+iA.shift(),be=Bt,Ye=Ie+iA.shift(),Ze=be+iA.shift();var tr=Ye+iA.shift(),er=Ze,nr=tr+iA.shift(),ir=er,rr=nr+iA.shift(),ar=ir,or=rr+iA.shift(),sr=ar;KA=or,Bt=sr,aA.bezierCurveTo(Ie,be,Ye,Ze,tr,er),aA.bezierCurveTo(nr,ir,rr,ar,or,sr);break;case 35:for(var Mi=[],ro=0;ro<=5;ro++)KA+=iA.shift(),Bt+=iA.shift(),Mi.push(KA,Bt);aA.bezierCurveTo.apply(aA,Mi.slice(0,6)),aA.bezierCurveTo.apply(aA,Mi.slice(6)),iA.shift();break;case 36:Ie=KA+iA.shift(),be=Bt+iA.shift(),Ye=Ie+iA.shift(),ir=er=Ze=be+iA.shift(),rr=(nr=(tr=Ye+iA.shift())+iA.shift())+iA.shift(),ar=ir+iA.shift(),or=rr+iA.shift(),KA=or,Bt=sr=ar,aA.bezierCurveTo(Ie,be,Ye,Ze,tr,er),aA.bezierCurveTo(nr,ir,rr,ar,or,sr);break;case 37:var ao=KA,oo=Bt;Mi=[];for(var so=0;so<=4;so++)KA+=iA.shift(),Bt+=iA.shift(),Mi.push(KA,Bt);Math.abs(KA-ao)>Math.abs(Bt-oo)?(KA+=iA.shift(),Bt=oo):(KA=ao,Bt+=iA.shift()),Mi.push(KA,Bt),aA.bezierCurveTo.apply(aA,Mi.slice(0,6)),aA.bezierCurveTo.apply(aA,Mi.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(Ee))}break;default:throw new Error("Unknown op: ".concat(Ee))}else if(Ee<247)iA.push(Ee-139);else if(Ee<251){var ca=R.readUInt8();iA.push(256*(Ee-247)+ca+108)}else Ee<255?(ca=R.readUInt8(),iA.push(256*-(Ee-251)-ca-108)):iA.push(R.readInt32BE()/65536)}}(),Ht&&aA.closePath(),aA},P}(Rr),_i=new e.Struct({originX:e.uint16,originY:e.uint16,type:new e.String(4),data:new e.Buffer(function(tA){return tA.parent.buflen-tA._currentOffset})}),i0=function(tA){function P(){return tA.apply(this,arguments)||this}g(P,tA);var V=P.prototype;return V.getImageForSize=function(F){for(var R=0;R=F)break}var rA=AA.imageOffsets,aA=rA[this.id],iA=rA[this.id+1];return aA===iA?null:(this._font.stream.pos=aA,_i.decode(this._font.stream,{buflen:iA-aA}))},V.render=function(F,R){var AA=this.getImageForSize(R);null!=AA&&F.image(AA.data,{height:R,x:AA.originX,y:R/this._font.unitsPerEm*(this.bbox.minY-AA.originY)}),this._font.sbix.flags.renderOutlines&&tA.prototype.render.call(this,F,R)},P}(Lr),ja=function(P,V){this.glyph=P,this.color=V},r0=function(tA){function P(){return tA.apply(this,arguments)||this}g(P,tA);var V=P.prototype;return V._getBBox=function(){for(var F=new vi,R=0;R>1;if(this.id<(iA=R.baseGlyphRecord[aA]).gid)rA=aA-1;else{if(!(this.id>iA.gid)){var SA=iA;break}AA=aA+1}}if(null==SA){var JA=this._font._getBaseGlyph(this.id);return[new ja(JA,ct={red:0,green:0,blue:0,alpha:255})]}for(var KA=[],Bt=SA.firstLayerIndex;Bt=1&&F[R]=R.glyphCount)){var AA=R.offsets[m];if(AA!==R.offsets[m+1]){var rA=this.font.stream;if(rA.pos=AA,!(rA.pos>=rA.length)){var aA=rA.readUInt16BE(),iA=AA+rA.readUInt16BE();if(32768&aA){var SA=rA.pos;rA.pos=iA;var JA=this.decodePoints();iA=rA.pos,rA.pos=SA}var ct=F.map(function(un){return un.copy()});aA&=4095;for(var KA=0;KA=R.globalCoordCount)throw new Error("Invalid gvar table");Dt=R.globalCoords[4095&pt]}if(16384&pt){for(var _t=[],qt=0;qtMath.max(0,F[SA]))return 0;iA=(iA*rA[SA]+Number.EPSILON)/(F[SA]+Number.EPSILON)}else{if(rA[SA]AA[SA])return 0;iA=rA[SA]aA)){var SA=AA,JA=AA;for(AA++;AA<=aA;)R[AA]&&(this.deltaInterpolate(JA+1,AA-1,JA,AA,F,m),JA=AA),AA++;JA===SA?this.deltaShift(rA,aA,JA,F,m):(this.deltaInterpolate(JA+1,aA,JA,SA,F,m),SA>0&&this.deltaInterpolate(rA,SA-1,JA,SA,F,m)),AA=aA+1}}},P.deltaInterpolate=function(m,F,R,AA,rA,aA){if(!(m>F))for(var iA=["x","y"],SA=0;SArA[AA][JA]){var ct=R;R=AA,AA=ct}var KA=rA[R][JA],Bt=rA[AA][JA],pt=aA[R][JA],Dt=aA[AA][JA];if(KA!==Bt||pt===Dt)for(var Ht=KA===Bt?0:(Dt-pt)/(Bt-KA),_t=m;_t<=F;_t++){var qt=rA[_t][JA];qt<=KA?qt+=pt-KA:qt>=Bt?qt+=Dt-Bt:qt=pt+(qt-KA)*Ht,aA[_t][JA]=qt}}},P.deltaShift=function(m,F,R,AA,rA){var aA=rA[R].x-AA[R].x,iA=rA[R].y-AA[R].y;if(0!==aA||0!==iA)for(var SA=m;SA<=F;SA++)SA!==R&&(rA[SA].x+=aA,rA[SA].y+=iA)},P.getAdvanceAdjustment=function(m,F){var R,AA;if(F.advanceWidthMapping){var rA=m;rA>=F.advanceWidthMapping.mapCount&&(rA=F.advanceWidthMapping.mapCount-1);var iA=F.advanceWidthMapping.mapData[rA];R=iA.outerIndex,AA=iA.innerIndex}else R=0,AA=m;return this.getDelta(F.itemVariationStore,R,AA)},P.getDelta=function(m,F,R){if(F>=m.itemVariationData.length)return 0;var AA=m.itemVariationData[F];if(R>=AA.deltaSets.length)return 0;for(var rA=AA.deltaSets[R],aA=this.getBlendVector(m,F),iA=0,SA=0;SAKA.peakCoord||KA.peakCoord>KA.endCoord||KA.startCoord<0&&KA.endCoord>0&&0!==KA.peakCoord||0===KA.peakCoord?1:AA[ct]KA.endCoord?0:AA[ct]===KA.peakCoord?1:AA[ct]=0&&V<=255?1:2},tA.encode=function(V,m){m>=0&&m<=255?V.writeUInt8(m):V.writeInt16BE(m)},tA}(),_a=new e.Struct({numberOfContours:e.int16,xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,endPtsOfContours:new e.Array(e.uint16,"numberOfContours"),instructions:new e.Array(e.uint8,e.uint16),flags:new e.Array(e.uint8,0),xPoints:new e.Array(qa,0),yPoints:new e.Array(qa,0)}),p0=function(){function tA(){}var P=tA.prototype;return P.encodeSimple=function(m,F){void 0===F&&(F=[]);for(var R=[],AA=[],rA=[],aA=[],iA=0,SA=0,JA=0,ct=0,KA=0,Bt=0;Bt0&&(aA.push(iA),iA=0),aA.push(qt),ct=qt),SA=Ht,JA=_t,KA++}"closePath"===pt.command&&R.push(KA-1)}m.commands.length>1&&"closePath"!==m.commands[m.commands.length-1].command&&R.push(KA-1);var de=m.bbox,He={numberOfContours:R.length,xMin:de.minX,yMin:de.minY,xMax:de.maxX,yMax:de.maxY,endPtsOfContours:R,instructions:F,flags:aA,xPoints:AA,yPoints:rA},sn=_a.size(He),Oe=4-sn%4,ce=new e.EncodeStream(sn+Oe);return _a.encode(ce,He),0!==Oe&&ce.fill(0,Oe),ce.buffer},P._encodePoint=function(m,F,R,AA,rA,aA){var iA=m-F;return m===F?AA|=aA:(-255<=iA&&iA<=255&&(AA|=rA,iA<0?iA=-iA:AA|=aA),R.push(iA)),AA},tA}(),M0=function(tA){function P(m){var F;return(F=tA.call(this,m)||this).glyphEncoder=new p0,F}g(P,tA);var V=P.prototype;return V._addGlyph=function(F){var R=this.font.getGlyph(F),AA=R._decode(),rA=this.font.loca.offsets[F],aA=this.font.loca.offsets[F+1],iA=this.font._getTableStream("glyf");iA.pos+=rA;var SA=iA.readBuffer(aA-rA);if(AA&&AA.numberOfContours<0){SA=u.from(SA);for(var ct,JA=E(AA.components);!(ct=JA()).done;){var KA=ct.value;F=this.includeGlyph(KA.glyphID),SA.writeUInt16BE(F,KA.pos)}}else AA&&this.font._variationProcessor&&(SA=this.glyphEncoder.encodeSimple(R.path,AA.instructions));return this.glyf.push(SA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:R.advanceWidth,bearing:R._getMetrics().leftBearing}),this.offset+=SA.length,this.glyf.length-1},V.encode=function(F){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var R=0;R255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},AA=Object.assign({},this.cff.topDict);AA.Private=null,AA.charset=R,AA.Encoding=null,AA.CharStrings=this.charstrings;for(var rA=0,aA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];rA0&&Object.defineProperty(this,F,{get:this._getTable.bind(this,R)})}}tA.probe=function(m){var F=m.toString("ascii",0,4);return"true"===F||"OTTO"===F||F===String.fromCharCode(0,1,0,0)};var P=tA.prototype;return P.setDefaultLanguage=function(m){void 0===m&&(m=null),this.defaultLanguage=m},P._getTable=function(m){if(!(m.tag in this._tables))try{this._tables[m.tag]=this._decodeTable(m)}catch(F){y.logErrors&&(console.error("Error decoding table ".concat(m.tag)),console.error(F.stack))}return this._tables[m.tag]},P._getTableStream=function(m){var F=this.directory.tables[m];return F?(this.stream.pos=F.offset,this.stream):null},P._decodeDirectory=function(){return this.directory=fr.decode(this.stream,{_startOffset:0})},P._decodeTable=function(m){var F=this.stream.pos,R=this._getTableStream(m.tag),AA=le[m.tag].decode(R,this,m.length);return this.stream.pos=F,AA},P.getName=function(m,F){void 0===F&&(F=this.defaultLanguage||y.defaultLanguage);var R=this.name&&this.name.records[m];return R&&(R[F]||R[this.defaultLanguage]||R[y.defaultLanguage]||R.en||R[Object.keys(R)[0]])||null},P.hasGlyphForCodePoint=function(m){return!!this._cmapProcessor.lookup(m)},P.glyphForCodePoint=function(m){return this.getGlyph(this._cmapProcessor.lookup(m),[m])},P.glyphsForString=function(m){for(var F=[],R=m.length,AA=0,rA=-1,aA=-1;AA<=R;){var iA=0,SA=0;if(AA>>6&3},transformed:function(P){return"glyf"===P.tag||"loca"===P.tag?0===P.transformVersion:0!==P.transformVersion},transformLength:new e.Optional(Ao,function(tA){return tA.transformed})}),to=new e.Struct({tag:new e.String(4),flavor:e.uint32,length:e.uint32,numTables:e.uint16,reserved:new e.Reserved(e.uint16),totalSfntSize:e.uint32,totalCompressedSize:e.uint32,majorVersion:e.uint16,minorVersion:e.uint16,metaOffset:e.uint32,metaLength:e.uint32,metaOrigLength:e.uint32,privOffset:e.uint32,privLength:e.uint32,tables:new e.Array(x0,"numTables")});to.process=function(){for(var tA={},P=0;P0){for(var iA=[],SA=0,JA=0;JA>7);if((iA&=127)<10)rA=0,aA=ii(iA,((14&iA)<<7)+P.readUInt8());else if(iA<20)rA=ii(iA,((iA-10&14)<<7)+P.readUInt8()),aA=0;else if(iA<84)rA=ii(iA,1+(48&(JA=iA-20))+((ct=P.readUInt8())>>4)),aA=ii(iA>>1,1+((12&JA)<<2)+(15&ct));else if(iA<120){var JA;rA=ii(iA,1+((JA=iA-84)/12<<8)+P.readUInt8()),aA=ii(iA>>1,1+(JA%12>>2<<8)+P.readUInt8())}else if(iA<124){var ct=P.readUInt8(),KA=P.readUInt8();rA=ii(iA,(ct<<4)+(KA>>4)),aA=ii(iA>>1,((15&KA)<<8)+P.readUInt8())}else rA=ii(iA,P.readUInt16BE()),aA=ii(iA>>1,P.readUInt16BE());R.push(new ui(SA,!1,F+=rA,m+=aA))}return R}var b0=new e.VersionedStruct(e.uint32,{65536:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts")},131072:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts"),dsigTag:e.uint32,dsigLength:e.uint32,dsigOffset:e.uint32}}),R0=function(){function tA(V){if(this.stream=V,"ttcf"!==V.readString(4))throw new Error("Not a TrueType collection");this.header=b0.decode(V)}return tA.probe=function(m){return"ttcf"===m.toString("ascii",0,4)},tA.prototype.getFont=function(m){for(var R,F=E(this.header.offsets);!(R=F()).done;){var AA=R.value,rA=new e.DecodeStream(this.stream.buffer);rA.pos=AA;var aA=new Fi(rA);if(aA.postscriptName===m)return aA}return null},l(tA,[{key:"fonts",get:function(){for(var R,m=[],F=E(this.header.offsets);!(R=F()).done;){var AA=R.value,rA=new e.DecodeStream(this.stream.buffer);rA.pos=AA,m.push(new Fi(rA))}return m}}]),tA}(),L0=new e.String(e.uint8),P0=(new e.Struct({len:e.uint32,buf:new e.Buffer("len")}),new e.Struct({id:e.uint16,nameOffset:e.int16,attr:e.uint8,dataOffset:e.uint24,handle:e.uint32})),$i=new e.Struct({name:new e.String(4),maxTypeIndex:e.uint16,refList:new e.Pointer(e.uint16,new e.Array(P0,function(tA){return tA.maxTypeIndex+1}),{type:"parent"})}),z0=new e.Struct({length:e.uint16,types:new e.Array($i,function(tA){return tA.length+1})}),G0=new e.Struct({reserved:new e.Reserved(e.uint8,24),typeList:new e.Pointer(e.uint16,z0),nameListOffset:new e.Pointer(e.uint16,"void")}),no=new e.Struct({dataOffset:e.uint32,map:new e.Pointer(e.uint32,G0),dataLength:e.uint32,mapLength:e.uint32}),H0=function(){function tA(V){this.stream=V,this.header=no.decode(this.stream);for(var F,m=E(this.header.map.typeList.types);!(F=m()).done;){for(var rA,R=F.value,AA=E(R.refList);!(rA=AA()).done;){var aA=rA.value;aA.nameOffset>=0?(this.stream.pos=aA.nameOffset+this.header.map.nameListOffset,aA.name=L0.decode(this.stream)):aA.name=null}"sfnt"===R.name&&(this.sfnt=R)}}return tA.probe=function(m){var F=new e.DecodeStream(m);try{var R=no.decode(F)}catch(iA){return!1}for(var rA,AA=E(R.map.typeList.types);!(rA=AA()).done;)if("sfnt"===rA.value.name)return!0;return!1},tA.prototype.getFont=function(m){if(!this.sfnt)return null;for(var R,F=E(this.sfnt.refList);!(R=F()).done;){var aA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+R.value.dataOffset+4)),iA=new Fi(aA);if(iA.postscriptName===m)return iA}return null},l(tA,[{key:"fonts",get:function(){for(var R,m=[],F=E(this.sfnt.refList);!(R=F()).done;){var aA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+R.value.dataOffset+4));m.push(new Fi(aA))}return m}}]),tA}();y.registerFormat(Fi),y.registerFormat(v0),y.registerFormat(F0),y.registerFormat(R0),y.registerFormat(H0),T.exports=y},7337:function(T,A,n){"use strict";var u=n(4781),o=n(9742),s=n(2055),l=s.BK,g=s.CR,f=s.LF,E=s.NL,h=s.SG,r=s.WJ,w=s.SP,e=s.ZWJ,B=s.BA,c=s.HY,C=s.NS,Q=s.AI,M=s.AL,Y=s.CJ,v=s.HL,p=s.RI,I=s.SA,y=s.XX,U=n(8383),S=U.DI_BRK,b=U.IN_BRK,O=U.CI_BRK,J=U.CP_BRK,uA=U.pairTable,cA=new u(o.toByteArray("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")),pA=function(yA){switch(yA){case Q:case I:case h:case y:return M;case Y:return C;default:return yA}},dA=function(yA){switch(yA){case f:case E:return l;case w:return r;default:return yA}},DA=function(yA,Z){void 0===Z&&(Z=!1),this.position=yA,this.required=Z};T.exports=function(){function QA(Z){this.string=Z,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var yA=QA.prototype;return yA.nextCodePoint=function(){var CA=this.string.charCodeAt(this.pos++),nA=this.string.charCodeAt(this.pos);return 55296<=CA&&CA<=56319&&56320<=nA&&nA<=57343?(this.pos++,1024*(CA-55296)+(nA-56320)+65536):CA},yA.nextCharClass=function(){return pA(cA.get(this.nextCodePoint()))},yA.getSimpleBreak=function(){switch(this.nextClass){case w:return!1;case l:case f:case E:return this.curClass=l,!1;case g:return this.curClass=g,!1}return null},yA.getPairTableBreak=function(CA){var nA=!1;switch(uA[this.curClass][this.nextClass]){case S:nA=!0;break;case b:nA=CA===w;break;case O:if(!(nA=CA===w))return!1;break;case J:if(CA!==w)return nA}return this.LB8a&&(nA=!1),!this.LB21a||this.curClass!==c&&this.curClass!==B?this.LB21a=this.curClass===v:(nA=!1,this.LB21a=!1),this.curClass===p?(this.LB30a++,2==this.LB30a&&this.nextClass===p&&(nA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,nA},yA.nextBreak=function(){if(null==this.curClass){var CA=this.nextCharClass();this.curClass=dA(CA),this.nextClass=CA,this.LB8a=CA===e,this.LB30a=0}for(;this.pos=HA)return $;switch($){case"%s":return String(bA[FA++]);case"%d":return Number(bA[FA++]);case"%j":try{return JSON.stringify(bA[FA++])}catch(K){return"[Circular]"}default:return $}}),z=bA[FA];FA=3&&(FA.depth=arguments[2]),arguments.length>=4&&(FA.colors=arguments[3]),v(lA)?FA.showHidden=lA:lA&&A._extend(FA,lA),b(FA.showHidden)&&(FA.showHidden=!1),b(FA.depth)&&(FA.depth=2),b(FA.colors)&&(FA.colors=!1),b(FA.customInspect)&&(FA.customInspect=!0),FA.colors&&(FA.stylize=h),e(FA,nA,FA.depth)}function h(nA,lA){var FA=E.styles[lA];return FA?"\x1b["+E.colors[FA][0]+"m"+nA+"\x1b["+E.colors[FA][1]+"m":nA}function r(nA,lA){return nA}function e(nA,lA,FA){if(nA.customInspect&&lA&&X(lA.inspect)&&lA.inspect!==A.inspect&&(!lA.constructor||lA.constructor.prototype!==lA)){var bA=lA.inspect(FA,nA);return U(bA)||(bA=e(nA,bA,FA)),bA}var HA=function B(nA,lA){if(b(lA))return nA.stylize("undefined","undefined");if(U(lA)){var FA="'"+JSON.stringify(lA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return nA.stylize(FA,"string")}return y(lA)?nA.stylize(""+lA,"number"):v(lA)?nA.stylize(""+lA,"boolean"):p(lA)?nA.stylize("null","null"):void 0}(nA,lA);if(HA)return HA;var q=Object.keys(lA),z=function w(nA){var lA={};return nA.forEach(function(FA,bA){lA[FA]=!0}),lA}(q);if(nA.showHidden&&(q=Object.getOwnPropertyNames(lA)),uA(lA)&&(q.indexOf("message")>=0||q.indexOf("description")>=0))return c(lA);if(0===q.length){if(X(lA))return nA.stylize("[Function"+(lA.name?": "+lA.name:"")+"]","special");if(O(lA))return nA.stylize(RegExp.prototype.toString.call(lA),"regexp");if(sA(lA))return nA.stylize(Date.prototype.toString.call(lA),"date");if(uA(lA))return c(lA)}var hA,K="",fA=!1,IA=["{","}"];return Y(lA)&&(fA=!0,IA=["[","]"]),X(lA)&&(K=" [Function"+(lA.name?": "+lA.name:"")+"]"),O(lA)&&(K=" "+RegExp.prototype.toString.call(lA)),sA(lA)&&(K=" "+Date.prototype.toUTCString.call(lA)),uA(lA)&&(K=" "+c(lA)),0!==q.length||fA&&0!=lA.length?FA<0?O(lA)?nA.stylize(RegExp.prototype.toString.call(lA),"regexp"):nA.stylize("[Object]","special"):(nA.seen.push(lA),hA=fA?function C(nA,lA,FA,bA,HA){for(var q=[],z=0,$=lA.length;z<$;++z)QA(lA,String(z))?q.push(Q(nA,lA,FA,bA,String(z),!0)):q.push("");return HA.forEach(function(K){K.match(/^\d+$/)||q.push(Q(nA,lA,FA,bA,K,!0))}),q}(nA,lA,FA,z,q):q.map(function(zA){return Q(nA,lA,FA,z,zA,fA)}),nA.seen.pop(),function M(nA,lA,FA){return nA.reduce(function(q,z){return z.indexOf("\n"),q+z.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60?FA[0]+(""===lA?"":lA+"\n ")+" "+nA.join(",\n ")+" "+FA[1]:FA[0]+lA+" "+nA.join(", ")+" "+FA[1]}(hA,K,IA)):IA[0]+K+IA[1]}function c(nA){return"["+Error.prototype.toString.call(nA)+"]"}function Q(nA,lA,FA,bA,HA,q){var z,$,K;if((K=Object.getOwnPropertyDescriptor(lA,HA)||{value:lA[HA]}).get?$=nA.stylize(K.set?"[Getter/Setter]":"[Getter]","special"):K.set&&($=nA.stylize("[Setter]","special")),QA(bA,HA)||(z="["+HA+"]"),$||(nA.seen.indexOf(K.value)<0?($=p(FA)?e(nA,K.value,null):e(nA,K.value,FA-1)).indexOf("\n")>-1&&($=q?$.split("\n").map(function(fA){return" "+fA}).join("\n").substr(2):"\n"+$.split("\n").map(function(fA){return" "+fA}).join("\n")):$=nA.stylize("[Circular]","special")),b(z)){if(q&&HA.match(/^\d+$/))return $;(z=JSON.stringify(""+HA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(z=z.substr(1,z.length-2),z=nA.stylize(z,"name")):(z=z.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),z=nA.stylize(z,"string"))}return z+": "+$}function Y(nA){return Array.isArray(nA)}function v(nA){return"boolean"==typeof nA}function p(nA){return null===nA}function y(nA){return"number"==typeof nA}function U(nA){return"string"==typeof nA}function b(nA){return void 0===nA}function O(nA){return J(nA)&&"[object RegExp]"===pA(nA)}function J(nA){return"object"==typeof nA&&null!==nA}function sA(nA){return J(nA)&&"[object Date]"===pA(nA)}function uA(nA){return J(nA)&&("[object Error]"===pA(nA)||nA instanceof Error)}function X(nA){return"function"==typeof nA}function pA(nA){return Object.prototype.toString.call(nA)}function dA(nA){return nA<10?"0"+nA.toString(10):nA.toString(10)}A.debuglog=function(nA){if(nA=nA.toUpperCase(),!l[nA])if(g.test(nA)){var lA=u.pid;l[nA]=function(){var FA=A.format.apply(A,arguments);console.error("%s %d: %s",nA,lA,FA)}}else l[nA]=function(){};return l[nA]},A.inspect=E,E.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},E.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},A.types=n(5955),A.isArray=Y,A.isBoolean=v,A.isNull=p,A.isNullOrUndefined=function I(nA){return null==nA},A.isNumber=y,A.isString=U,A.isSymbol=function S(nA){return"symbol"==typeof nA},A.isUndefined=b,A.isRegExp=O,A.types.isRegExp=O,A.isObject=J,A.isDate=sA,A.types.isDate=sA,A.isError=uA,A.types.isNativeError=uA,A.isFunction=X,A.isPrimitive=function cA(nA){return null===nA||"boolean"==typeof nA||"number"==typeof nA||"string"==typeof nA||"symbol"==typeof nA||void 0===nA},A.isBuffer=n(384);var DA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function gA(){var nA=new Date,lA=[dA(nA.getHours()),dA(nA.getMinutes()),dA(nA.getSeconds())].join(":");return[nA.getDate(),DA[nA.getMonth()],lA].join(" ")}function QA(nA,lA){return Object.prototype.hasOwnProperty.call(nA,lA)}A.log=function(){console.log("%s - %s",gA(),A.format.apply(A,arguments))},A.inherits=n(5717),A._extend=function(nA,lA){if(!lA||!J(lA))return nA;for(var FA=Object.keys(lA),bA=FA.length;bA--;)nA[FA[bA]]=lA[FA[bA]];return nA};var yA="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function Z(nA,lA){if(!nA){var FA=new Error("Promise was rejected with a falsy value");FA.reason=nA,nA=FA}return lA(nA)}A.promisify=function(lA){if("function"!=typeof lA)throw new TypeError('The "original" argument must be of type Function');if(yA&&lA[yA]){var FA;if("function"!=typeof(FA=lA[yA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(FA,yA,{value:FA,enumerable:!1,writable:!1,configurable:!0}),FA}function FA(){for(var bA,HA,q=new Promise(function(K,fA){bA=K,HA=fA}),z=[],$=0;$1?y.attr[I[1]]:y.val},o.prototype.toString=function(p){return this.toStringWithIndent("",p)},o.prototype.toStringWithIndent=function(p,I){var y=p+"<"+this.name,U=I&&I.compressed?"":"\n";for(var b in this.attr)Object.prototype.hasOwnProperty.call(this.attr,b)&&(y+=" "+b+'="'+Y(this.attr[b])+'"');if(1===this.children.length&&"element"!==this.children[0].type)y+=">"+this.children[0].toString(I)+"";else if(this.children.length){y+=">"+U;for(var O=p+(I&&I.compressed?"":" "),J=0,sA=this.children.length;J"}else I&&I.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?y+="/>":y+=">":y+="/>";return y},s.prototype.toString=function(p){return v(Y(this.text),p)},s.prototype.toStringWithIndent=function(p,I){return p+this.toString(I)},l.prototype.toString=function(p){return""+v(this.cdata,p)+""},l.prototype.toStringWithIndent=function(p,I){return p+this.toString(I)},g.prototype.toString=function(p){return"\x3c!--"+v(Y(this.comment),p)+"--\x3e"},g.prototype.toStringWithIndent=function(p,I){return p+this.toString(I)},o.prototype.type="element",s.prototype.type="text",l.prototype.type="cdata",g.prototype.type="comment",function M(p,I){for(var y in I)I.hasOwnProperty(y)&&(p[y]=I[y])}(f.prototype,o.prototype),f.prototype._opentag=function(p){void 0===this.children?o.call(this,p):o.prototype._opentag.apply(this,arguments)},f.prototype._doctype=function(p){this.doctype+=p};var E=null;function r(){E[0]&&E[0]._opentag.apply(E[0],arguments)}function w(){E[0]&&E[0]._closetag.apply(E[0],arguments)}function e(){E[0]&&E[0]._text.apply(E[0],arguments)}function B(){E[0]&&E[0]._cdata.apply(E[0],arguments)}function c(){E[0]&&E[0]._comment.apply(E[0],arguments)}function C(){E[0]&&E[0]._doctype.apply(E[0],arguments)}function Q(){E[0]&&E[0]._error.apply(E[0],arguments)}function Y(p){return p.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function v(p,I){var y=p;return I&&I.trimmed&&p.length>25&&(y=y.substring(0,25).trim()+"\u2026"),I&&I.preserveWhitespace||(y=y.trim()),y}T.exports&&!n.g.xmldocAssumeBrowser?(T.exports.XmlDocument=f,T.exports.XmlElement=o,T.exports.XmlTextNode=s,T.exports.XmlCDataNode=l,T.exports.XmlCommentNode=g):(this.XmlDocument=f,this.XmlElement=o,this.XmlTextNode=s,this.XmlCDataNode=l,this.XmlCommentNode=g)}()},6255:function(T,A,n){"use strict";"undefined"!=typeof window&&!window.Promise&&n(3867),n(4667);function o(s){this.fs=s,this.resolving={}}o.prototype.resolve=function(s,l){if(!this.resolving[s]){var g=this;this.resolving[s]=new Promise(function(f,E){0===s.toLowerCase().indexOf("https://")||0===s.toLowerCase().indexOf("http://")?g.fs.existsSync(s)?f():function(s,l){return new Promise(function(g,f){var E=new XMLHttpRequest;for(var h in E.open("GET",s,!0),l)E.setRequestHeader(h,l[h]);E.responseType="arraybuffer",E.onreadystatechange=function(){4===E.readyState&&(E.status>=200&&E.status<300||setTimeout(function(){f(new TypeError('Failed to fetch (url: "'+s+'")'))},0))},E.onload=function(){E.status>=200&&E.status<300&&g(E.response)},E.onerror=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},E.ontimeout=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},E.send()})}(s,l).then(function(h){g.fs.writeFileSync(s,h),f()},function(h){E(h)}):f()})}return this.resolving[s]},o.prototype.resolved=function(){var s=this;return new Promise(function(l,g){Promise.all(Object.values(s.resolving)).then(function(){l()},function(f){g(f)})})},T.exports=o},4275:function(T,A,n){"use strict";var u=n(8823).Buffer,o=n(6225).isFunction,s=n(6225).isUndefined,f=(n(6225),n(8487).saveAs),E={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function h(w,e,B,c){this.docDefinition=w,this.tableLayouts=e||null,this.fonts=B||E,this.vfs=c}h.prototype._createDoc=function(w,e){var B=function(U){return"object"==typeof U?{url:U.url,headers:U.headers}:{url:U,headers:{}}};w=w||{},this.tableLayouts&&(w.tableLayouts=this.tableLayouts);var C=new(n(8617))(this.fonts);if(n(3857).bindFS(this.vfs),!o(e))return C.createPdfKitDocument(this.docDefinition,w);var Y=new(n(6255))(n(3857));for(var v in this.fonts)if(this.fonts.hasOwnProperty(v)){if(this.fonts[v].normal)if(Array.isArray(this.fonts[v].normal)){var p=B(this.fonts[v].normal[0]);Y.resolve(p.url,p.headers),this.fonts[v].normal[0]=p.url}else p=B(this.fonts[v].normal),Y.resolve(p.url,p.headers),this.fonts[v].normal=p.url;this.fonts[v].bold&&(Array.isArray(this.fonts[v].bold)?(p=B(this.fonts[v].bold[0]),Y.resolve(p.url,p.headers),this.fonts[v].bold[0]=p.url):(p=B(this.fonts[v].bold),Y.resolve(p.url,p.headers),this.fonts[v].bold=p.url)),this.fonts[v].italics&&(Array.isArray(this.fonts[v].italics)?(p=B(this.fonts[v].italics[0]),Y.resolve(p.url,p.headers),this.fonts[v].italics[0]=p.url):(p=B(this.fonts[v].italics),Y.resolve(p.url,p.headers),this.fonts[v].italics=p.url)),this.fonts[v].bolditalics&&(Array.isArray(this.fonts[v].bolditalics)?(p=B(this.fonts[v].bolditalics[0]),Y.resolve(p.url,p.headers),this.fonts[v].bolditalics[0]=p.url):(p=B(this.fonts[v].bolditalics),Y.resolve(p.url,p.headers),this.fonts[v].bolditalics=p.url))}if(this.docDefinition.images)for(var I in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(I)&&(p=B(this.docDefinition.images[I]),Y.resolve(p.url,p.headers),this.docDefinition.images[I]=p.url);var y=this;Y.resolved().then(function(){var U=C.createPdfKitDocument(y.docDefinition,w);e(U)},function(U){throw U})},h.prototype._flushDoc=function(w,e){var c,B=[];w.on("readable",function(){for(var C;null!==(C=w.read(9007199254740991));)B.push(C)}),w.on("end",function(){c=u.concat(B),e(c,w._pdfMakePages)}),w.end()},h.prototype._getPages=function(w,e){if(!e)throw"_getPages is an async method and needs a callback argument";var B=this;this._createDoc(w,function(c){B._flushDoc(c,function(C,Q){e(Q)})})},h.prototype._bufferToBlob=function(w){var e;try{e=new Blob([w],{type:"application/pdf"})}catch(c){if("InvalidStateError"===c.name){var B=new Uint8Array(w);e=new Blob([B.buffer],{type:"application/pdf"})}}if(!e)throw"Could not generate blob";return e},h.prototype._openWindow=function(){var w=window.open("","_blank");if(null===w)throw"Open PDF in new window blocked by browser";return w},h.prototype._openPdf=function(w,e){e||(e=this._openWindow());try{this.getBlob(function(B){var C=(window.URL||window.webkitURL).createObjectURL(B);e.location.href=C},w)}catch(B){throw e.close(),B}},h.prototype.open=function(w,e){(w=w||{}).autoPrint=!1,this._openPdf(w,e=e||null)},h.prototype.print=function(w,e){(w=w||{}).autoPrint=!0,this._openPdf(w,e=e||null)},h.prototype.download=function(w,e,B){o(w)&&(s(e)||(B=e),e=w,w=null),w=w||"file.pdf",this.getBlob(function(c){f(c,w),o(e)&&e()},B)},h.prototype.getBase64=function(w,e){if(!w)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(B){w(B.toString("base64"))},e)},h.prototype.getDataUrl=function(w,e){if(!w)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(B){w("data:application/pdf;base64,"+B.toString("base64"))},e)},h.prototype.getBlob=function(w,e){if(!w)throw"getBlob is an async method and needs a callback argument";var B=this;this.getBuffer(function(c){var C=B._bufferToBlob(c);w(C)},e)},h.prototype.getBuffer=function(w,e){if(!w)throw"getBuffer is an async method and needs a callback argument";var B=this;this._createDoc(e,function(c){B._flushDoc(c,function(C){w(C)})})},h.prototype.getStream=function(w,e){if(!o(e))return this._createDoc(w);this._createDoc(w,function(c){e(c)})},T.exports={createPdf:function(w,e,B,c){if(!function r(){try{var w=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(w,e),42===w.foo()}catch(B){return!1}}())throw"Your browser does not provide the level of support needed";return new h(w,e||n.g.pdfMake.tableLayouts,B||n.g.pdfMake.fonts,c||n.g.pdfMake.vfs)}}},3857:function(T,A,n){"use strict";var o=n(8823).Buffer;function s(){this.fileSystem={},this.dataSystem={}}function l(g){return 0===g.indexOf("/")&&(g=g.substring("/".length)),0===g.indexOf("/")&&(g=g.substring(1)),g}s.prototype.existsSync=function(g){return g=l(g),void 0!==this.fileSystem[g]||void 0!==this.dataSystem[g]},s.prototype.readFileSync=function(g,f){g=l(g);var E=this.dataSystem[g];if("string"==typeof E&&"utf8"===f)return E;if(E)return new o(E,"string"==typeof E?"base64":void 0);var h=this.fileSystem[g];if(h)return h;throw"File '"+g+"' not found in virtual file system"},s.prototype.writeFileSync=function(g,f){this.fileSystem[l(g)]=f},s.prototype.bindFS=function(g){this.dataSystem=g||{}},T.exports=new s},4498:function(T,A,n){"use strict";var u=n(6225).isString;function s(f){return"auto"===f.width}function l(f){return null==f.width||"*"===f.width||"star"===f.width}T.exports={buildColumnWidths:function o(f,E){var h=[],r=0,w=0,e=[],B=0,c=0,C=[],Q=E;f.forEach(function(y){s(y)?(h.push(y),r+=y._minWidth,w+=y._maxWidth):l(y)?(e.push(y),B=Math.max(B,y._minWidth),c=Math.max(c,y._maxWidth)):C.push(y)}),C.forEach(function(y){u(y.width)&&/\d+%/.test(y.width)&&(y.width=parseFloat(y.width)*Q/100),y._calcWidth=y.width=E)h.forEach(function(y){y._calcWidth=y._minWidth}),e.forEach(function(y){y._calcWidth=B});else{if(Y0){var I=E/e.length;e.forEach(function(y){y._calcWidth=I})}}},measureMinMax:function g(f){for(var E={min:0,max:0},h={min:0,max:0},r=0,w=0,e=f.length;w=0;O--){var sA=C.styleStack.styleDictionary[S[O]];for(var uA in sA)sA.hasOwnProperty(uA)&&(b[uA]=sA[uA])}return b}function p(S){return g(S)?S=[S,S,S,S]:E(S)&&2===S.length&&(S=[S[0],S[1],S[0],S[1]]),S}var I=[void 0,void 0,void 0,void 0];if(c.style){var U=v(E(c.style)?c.style:[c.style]);U&&(I=Y(U,I)),U.margin&&(I=p(U.margin))}return I=Y(c,I),c.margin&&(I=p(c.margin)),void 0===I[0]&&void 0===I[1]&&void 0===I[2]&&void 0===I[3]?null:I}(),c.columns)return Q(C.measureColumns(c));if(c.stack)return Q(C.measureVerticalContainer(c));if(c.ul)return Q(C.measureUnorderedList(c));if(c.ol)return Q(C.measureOrderedList(c));if(c.table)return Q(C.measureTable(c));if(void 0!==c.text)return Q(C.measureLeaf(c));if(c.toc)return Q(C.measureToc(c));if(c.image)return Q(C.measureImage(c));if(c.svg)return Q(C.measureSVG(c));if(c.canvas)return Q(C.measureCanvas(c));if(c.qr)return Q(C.measureQr(c));throw"Unrecognized document structure: "+JSON.stringify(c,h)});function Q(Y){var v=Y._margin;return v&&(Y._minWidth+=v[0]+v[2],Y._maxWidth+=v[0]+v[2]),Y}},B.prototype.convertIfBase64Image=function(c){if(/^data:image\/(jpeg|jpg|png);base64,/.test(c.image)){var C="$$pdfmake$$"+this.autoImageIndex++;this.images[C]=c.image,c.image=C}},B.prototype.measureImageWithDimensions=function(c,C){if(c.fit){var Q=C.width/C.height>c.fit[0]/c.fit[1]?c.fit[0]/C.width:c.fit[1]/C.height;c._width=c._minWidth=c._maxWidth=C.width*Q,c._height=C.height*Q}else c._width=c._minWidth=c._maxWidth=c.width||C.width,c._height=c.height||C.height*c._width/C.width,g(c.maxWidth)&&c.maxWidthc._width&&(c._width=c._minWidth=c._maxWidth=c.minWidth,c._height=c._width*C.height/C.width),g(c.minHeight)&&c.minHeight>c._height&&(c._height=c.minHeight,c._width=c._minWidth=c._maxWidth=c._height*C.width/C.height);c._alignment=this.styleStack.getProperty("alignment")},B.prototype.measureImage=function(c){this.images&&this.convertIfBase64Image(c);var C=this.imageMeasure.measureImage(c.image);return this.measureImageWithDimensions(c,C),c},B.prototype.measureSVG=function(c){var C=this.svgMeasure.measureSVG(c.svg);return this.measureImageWithDimensions(c,C),c.font=this.styleStack.getProperty("font"),c.svg=this.svgMeasure.writeDimensions(c.svg,{width:c._width,height:c._height}),c},B.prototype.measureLeaf=function(c){c._textRef&&c._textRef._textNodeRef.text&&(c.text=c._textRef._textNodeRef.text);var C=this.styleStack.clone();C.push(c);var Q=this.textTools.buildInlines(c.text,C);return c._inlines=Q.items,c._minWidth=Q.minWidth,c._maxWidth=Q.maxWidth,c},B.prototype.measureToc=function(c){if(c.toc.title&&(c.toc.title=this.measureNode(c.toc.title)),c.toc._items.length>0){for(var C=[],Q=c.toc.textStyle||{},M=c.toc.numberStyle||Q,Y=c.toc.textMargin||[0,0,0,0],v=0,p=c.toc._items.length;v=26?b((O/26>>0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[O%26>>0]}(S-1)}function v(S){if(S<1||S>4999)return S.toString();var sA,b=S,O={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},J="";for(sA in O)for(;b>=O[sA];)J+=sA,b-=O[sA];return J}var I;switch(Q){case"none":I=null;break;case"upper-alpha":I=Y(c).toUpperCase();break;case"lower-alpha":I=Y(c);break;case"upper-roman":I=v(c);break;case"lower-roman":I=v(c).toLowerCase();break;default:I=function p(S){return S.toString()}(c)}if(null===I)return{};M&&(E(M)?(M[0]&&(I=M[0]+I),M[1]&&(I+=M[1]),I+=" "):I+=M+" ");var y={text:I},U=C.getProperty("markerColor");return U&&(y.color=U),{_inlines:this.textTools.buildInlines(y,C).items}},B.prototype.measureUnorderedList=function(c){var C=this.styleStack.clone(),Q=c.ul;c.type=c.type||"disc",c._gapSize=this.gapSizeForList(),c._minWidth=0,c._maxWidth=0;for(var M=0,Y=Q.length;M0?C.length-1:0;return c._minWidth=Y.min+c._gap*v,c._maxWidth=Y.max+c._gap*v,c},B.prototype.measureTable=function(c){(function cA(pA){if(pA.table.widths||(pA.table.widths="auto"),l(pA.table.widths))for(pA.table.widths=[pA.table.widths];pA.table.widths.length1?(uA(I,Q,y.colSpan),C.push({col:Q,span:y.colSpan,minWidth:y._minWidth,maxWidth:y._maxWidth})):(p._minWidth=Math.max(p._minWidth,y._minWidth),p._maxWidth=Math.max(p._maxWidth,y._maxWidth))),y.rowSpan&&y.rowSpan>1&&X(c.table,M,Q,y.rowSpan)}}!function J(){for(var pA,dA,DA=0,gA=C.length;DA0)for(pA=Z/QA.span,dA=0;dA0)for(pA=CA/QA.span,dA=0;dAh.page?E:h.page>E.page?h:E.y>h.y?E:h).page,x:r.x,y:r.y,availableHeight:r.availableHeight,availableWidth:r.availableWidth}}(this,E.bottomMost)},s.prototype.markEnding=function(E){this.page=E._columnEndingContext.page,this.x=E._columnEndingContext.x,this.y=E._columnEndingContext.y,this.availableWidth=E._columnEndingContext.availableWidth,this.availableHeight=E._columnEndingContext.availableHeight,this.lastColumnWidth=E._columnEndingContext.lastColumnWidth},s.prototype.saveContextInEndingCell=function(E){E._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},s.prototype.completeColumnGroup=function(E){var h=this.snapshots.pop();this.calculateBottomMost(h),this.endingCell=null,this.x=h.x;var r=h.bottomMost.y;E&&(h.page===h.bottomMost.page?h.y+E>r&&(r=h.y+E):r+=E),this.y=r,this.page=h.bottomMost.page,this.availableWidth=h.availableWidth,this.availableHeight=h.bottomMost.availableHeight,E&&(this.availableHeight-=r-h.bottomMost.y),this.lastColumnWidth=h.lastColumnWidth},s.prototype.addMargin=function(E,h){this.x+=E,this.availableWidth-=E+(h||0)},s.prototype.moveDown=function(E){return this.y+=E,this.availableHeight-=E,this.availableHeight>0},s.prototype.initializePage=function(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom,this.pageSnapshot().availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right},s.prototype.pageSnapshot=function(){return this.snapshots[0]?this.snapshots[0]:this},s.prototype.moveTo=function(E,h){null!=E&&(this.x=E,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=h&&(this.y=h,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},s.prototype.moveToRelative=function(E,h){null!=E&&(this.x=this.x+E),null!=h&&(this.y=this.y+h)},s.prototype.beginDetachedBlock=function(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,endingCell:this.endingCell,lastColumnWidth:this.lastColumnWidth})},s.prototype.endDetachedBlock=function(){var E=this.snapshots.pop();this.x=E.x,this.y=E.y,this.availableWidth=E.availableWidth,this.availableHeight=E.availableHeight,this.page=E.page,this.endingCell=E.endingCell,this.lastColumnWidth=E.lastColumnWidth};var g=function(E,h){return(h=function l(E,h){return void 0===E?h:o(E)&&"landscape"===E.toLowerCase()?"landscape":"portrait"}(h,E.pageSize.orientation))!==E.pageSize.orientation?{orientation:h,width:E.pageSize.height,height:E.pageSize.width}:{orientation:E.pageSize.orientation,width:E.pageSize.width,height:E.pageSize.height}};s.prototype.moveToNextPage=function(E){var h=this.page+1,r=this.page,w=this.y,e=h>=this.pages.length;if(e){var B=this.availableWidth,c=this.getCurrentPage().pageSize.orientation,C=g(this.getCurrentPage(),E);this.addPage(C),c===C.orientation&&(this.availableWidth=B)}else this.page=h,this.initializePage();return{newPageCreated:e,prevPage:r,prevY:w,y:this.y}},s.prototype.addPage=function(E){var h={items:[],pageSize:E};return this.pages.push(h),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),h},s.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},s.prototype.getCurrentPosition=function(){var E=this.getCurrentPage().pageSize,h=E.height-this.pageMargins.top-this.pageMargins.bottom,r=E.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:E.orientation,pageInnerHeight:h,pageInnerWidth:r,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/h,horizontalRatio:(this.x-this.pageMargins.left)/r}},T.exports=s},1196:function(T,A,n){"use strict";var u=n(4775),o=n(6225).isNumber,s=n(6225).pack,l=n(6225).offsetVector,g=n(3858);function f(r,w){this.context=r,this.contextStack=[],this.tracker=w}function E(r,w,e){null==e||e<0||e>r.items.length?r.items.push(w):r.items.splice(e,0,w)}f.prototype.addLine=function(r,w,e){var B=r.getHeight(),c=this.context,C=c.getCurrentPage(),Q=this.getCurrentPositionOnPage();return!(c.availableHeight0&&r.inlines[0].alignment,c=0;switch(B){case"right":c=w-e;break;case"center":c=(w-e)/2}if(c&&(r.x=(r.x||0)+c),"justify"===B&&!r.newLineForced&&!r.lastLineInParagraph&&r.inlines.length>1)for(var C=(w-e)/(r.inlines.length-1),Q=1,M=r.inlines.length;Q0)&&(void 0===r._x&&(r._x=r.x||0),r.x=B.x+r._x,r.y=B.y,this.alignImage(r),E(c,{type:e||"image",item:r},w),B.moveDown(r._height),C)},f.prototype.addSVG=function(r,w){return this.addImage(r,w,"svg")},f.prototype.addQr=function(r,w){var e=this.context,B=e.getCurrentPage(),c=this.getCurrentPositionOnPage();if(!B||void 0===r.absolutePosition&&e.availableHeightc.availableHeight||(r.items.forEach(function(Q){switch(Q.type){case"line":var M=function h(r){var w=new u(r.maxWidth);for(var e in r)r.hasOwnProperty(e)&&(w[e]=r[e]);return w}(Q.item);M._node&&(M._node.positions[0].pageNumber=c.page+1),M.x=(M.x||0)+(w?r.xOffset||0:c.x),M.y=(M.y||0)+(e?r.yOffset||0:c.y),C.items.push({type:"line",item:M});break;case"vector":var Y=s(Q.item);l(Y,w?r.xOffset||0:c.x,e?r.yOffset||0:c.y),C.items.push({type:"vector",item:Y});break;case"image":case"svg":var v=s(Q.item);v.x=(v.x||0)+(w?r.xOffset||0:c.x),v.y=(v.y||0)+(e?r.yOffset||0:c.y),C.items.push({type:Q.type,item:v})}}),B||c.moveDown(r.height),0))},f.prototype.pushContext=function(r,w){void 0===r&&(w=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,r=this.context.availableWidth),o(r)&&(r=new g({width:r,height:w},{left:0,right:0,top:0,bottom:0})),this.contextStack.push(this.context),this.context=r},f.prototype.popContext=function(){this.context=this.contextStack.pop()},f.prototype.getCurrentPositionOnPage=function(){return(this.contextStack[0]||this.context).getCurrentPosition()},T.exports=f},2249:function(T,A,n){"use strict";var u=n(6225).isArray;function s(l,g){for(var f in this.fonts={},this.pdfKitDoc=g,this.fontCache={},l)if(l.hasOwnProperty(f)){var E=l[f];this.fonts[f]={normal:E.normal,bold:E.bold,italics:E.italics,bolditalics:E.bolditalics}}}s.prototype.getFontType=function(l,g){return function o(l,g){var f="normal";return l&&g?f="bolditalics":l?f="bold":g&&(f="italics"),f}(l,g)},s.prototype.getFontFile=function(l,g,f){var E=this.getFontType(g,f);return this.fonts[l]&&this.fonts[l][E]?this.fonts[l][E]:null},s.prototype.provideFont=function(l,g,f){var E=this.getFontType(g,f);if(null===this.getFontFile(l,g,f))throw new Error("Font '"+l+"' in style '"+E+"' is not defined in the font section of the document definition.");if(this.fontCache[l]=this.fontCache[l]||{},!this.fontCache[l][E]){var h=this.fonts[l][E];u(h)||(h=[h]),this.fontCache[l][E]=this.pdfKitDoc.font.apply(this.pdfKitDoc,h)._font}return this.fontCache[l][E]},T.exports=s},6225:function(T){"use strict";function o(c){return Array.isArray(c)}T.exports={isString:function A(c){return"string"==typeof c||c instanceof String},isNumber:function n(c){return"number"==typeof c||c instanceof Number},isBoolean:function u(c){return"boolean"==typeof c},isArray:o,isFunction:function s(c){return"function"==typeof c},isObject:function l(c){return null!==c&&"object"==typeof c},isNull:function g(c){return null===c},isUndefined:function f(c){return void 0===c},pack:function E(){for(var c={},C=0,Q=arguments.length;C0})).forEach(function(K){var fA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(IA){void 0!==K[IA]&&(fA[IA]=K[IA])}),fA.startPosition=K.positions[0],fA.pageNumbers=Array.from(new Set(K.positions.map(function(IA){return IA.pageNumber}))),fA.pages=CA.length,fA.stack=w(K.stack),K.nodeInfo=fA});for(var nA=0;nA1)for(var z=nA+1,$=Z.length;z<$;z++)Z[z].nodeInfo.pageNumbers.indexOf(FA)>-1&&bA.push(Z[z].nodeInfo),DA.length>2&&Z[z].nodeInfo.pageNumbers.indexOf(FA+1)>-1&&HA.push(Z[z].nodeInfo);if(DA.length>3)for(z=0;z-1&&q.push(Z[z].nodeInfo);if(DA(lA.nodeInfo,bA,HA,q))return lA.pageBreak="before",!0}}return!1}this.docPreprocessor=new o,this.docMeasure=new s(O,J,sA,this.imageMeasure,this.svgMeasure,this.tableLayouts,pA);for(var yA=this.tryLayoutDocument(b,O,J,sA,uA,X,cA,pA,dA);gA(yA.linearNodeList,yA.pages);)yA.linearNodeList.forEach(function(CA){CA.resetXY()}),yA=this.tryLayoutDocument(b,O,J,sA,uA,X,cA,pA,dA);return yA.pages},U.prototype.tryLayoutDocument=function(b,O,J,sA,uA,X,cA,pA,dA,DA){this.linearNodeList=[],b=this.docPreprocessor.preprocessDocument(b),b=this.docMeasure.measureDocument(b),this.writer=new g(new l(this.pageSize,this.pageMargins),this.tracker);var gA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){gA.addBackground(uA)}),this.addBackground(uA),this.processNode(b),this.addHeadersAndFooters(X,cA),null!=dA&&this.addWatermark(dA,O,sA),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},U.prototype.addBackground=function(b){var O=Y(b)?b:function(){return b},J=this.writer.context(),sA=J.getCurrentPage().pageSize,uA=O(J.page+1,sA);uA&&(this.writer.beginUnbreakableBlock(sA.width,sA.height),uA=this.docPreprocessor.preprocessDocument(uA),this.processNode(this.docMeasure.measureDocument(uA)),this.writer.commitUnbreakableBlock(0,0),J.backgroundLength[J.page]+=uA.positions.length)},U.prototype.addStaticRepeatable=function(b,O){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(b))},O)},U.prototype.addDynamicRepeatable=function(b,O){for(var sA=0,uA=this.writer.context().pages.length;sA1;)Z.push({fontSize:FA}),(CA=yA.sizeOfRotatedText(gA.text,gA.angle,Z)).width>DA.width?FA=(nA+(lA=FA))/2:CA.widthDA.height?(nA+(lA=FA))/2:((nA=FA)+lA)/2),Z.pop();return FA}(this.pageSize,b,O));var sA={text:b.text,font:O.provideFont(b.font,b.bold,b.italics),fontSize:b.fontSize,color:b.color,opacity:b.opacity,angle:b.angle};sA._size=function pA(DA,gA){var QA=new v(gA),yA=new p(null,{font:DA.font,bold:DA.bold,italics:DA.italics});return yA.push({fontSize:DA.fontSize}),{size:QA.sizeOfString(DA.text,yA),rotatedSize:QA.sizeOfRotatedText(DA.text,DA.angle,yA)}}(b,O);for(var uA=this.writer.context().pages,X=0,cA=uA.length;X0;dA--)pA.push(cA);return pA}(b._gap);sA&&(J-=(sA.length-1)*b._gap),f.buildColumnWidths(O,J);var uA=this.processRow(O,O,sA);y(b.positions,uA.positions)},U.prototype.processRow=function(b,O,J,sA,uA,X){var cA=this,pA=[],dA=[];return this.tracker.auto("pageChanged",function DA(yA){for(var Z,CA=0,nA=pA.length;CA1)for(var FA=1;FAyA?J[yA]:0}function QA(yA,Z){if(yA.rowSpan&&yA.rowSpan>1){var CA=uA+yA.rowSpan-1;if(CA>=sA.length)throw"Row span for column "+Z+" (with indexes starting from 0) exceeded row count";return sA[CA][Z]}return null}},U.prototype.processList=function(b,O){var X,J=this,sA=b?O.ol:O.ul,uA=O._gapSize;this.writer.context().addMargin(uA.width),this.tracker.auto("lineAdded",function cA(pA){if(X){var dA=X;if(X=null,dA.canvas){var DA=dA.canvas[0];C(DA,-dA._minWidth,0),J.writer.addVector(DA)}else if(dA._inlines){var gA=new h(J.pageSize.width);gA.addInline(dA._inlines[0]),gA.x=-dA._minWidth,gA.y=pA.getAscenderHeight()-gA.getAscenderHeight(),J.writer.addLine(gA,!0)}}},function(){sA.forEach(function(pA){X=pA.listMarker,J.processNode(pA),y(O.positions,pA.positions)})}),this.writer.context().addMargin(-uA.width)},U.prototype.processTable=function(b){var O=new E(b);O.beginTable(this.writer);for(var J=b.table.heights,sA=0,uA=b.table.body.length;sA0&&(J.hasEnoughSpaceForInline(b._inlines[0],b._inlines.slice(1))||uA);){var X=!1,cA=b._inlines.shift();if(uA=!1,!cA.noWrap&&cA.text.length>1&&cA.width>J.getAvailableWidth()){var pA=cA.width/cA.text.length,dA=Math.floor(J.getAvailableWidth()/pA);if(dA<1&&(dA=1),dA0){var r=E.pages[0];if(r.xOffset=g,r.yOffset=f,h>1)if(void 0!==g||void 0!==f)r.height=E.getCurrentPage().pageSize.height-E.pageMargins.top-E.pageMargins.bottom;else{r.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var w=0,e=this.repeatables.length;wHA.item.y2?HA.item.y1:HA.item.y2:HA.item.h:0}(HA)}var FA=S(CA||40),bA=FA.top;return Z.forEach(function(HA){HA.items.forEach(function(q){var z=lA(q);z>bA&&(bA=z)})}),bA+=FA.bottom}function U(Z,CA){Z&&"auto"===Z.height&&(Z.height=1/0);var lA=function O(Z){if(w(Z)){var CA=l[Z.toUpperCase()];if(!CA)throw"Page size "+Z+" not recognized";return{width:CA[0],height:CA[1]}}return Z}(Z||"A4");return function nA(FA){return!!w(FA)&&("portrait"===(FA=FA.toLowerCase())&&lA.width>lA.height||"landscape"===FA&&lA.widthlA.height?"landscape":"portrait",lA}function S(Z){if(e(Z))Z={left:Z,right:Z,top:Z,bottom:Z};else if(c(Z))if(2===Z.length)Z={left:Z[0],top:Z[1],right:Z[0],bottom:Z[1]};else{if(4!==Z.length)throw"Invalid pageMargins definition";Z={left:Z[0],top:Z[1],right:Z[2],bottom:Z[3]}}return Z}function J(Z,CA){Z.pageSize.orientation!==(CA.options.size[0]>CA.options.size[1]?"landscape":"portrait")&&(CA.options.size=[CA.options.size[1],CA.options.size[0]])}function uA(Z,CA){var nA=Z;return CA.sup&&(nA-=.75*CA.fontSize),CA.sub&&(nA+=.35*CA.fontSize),nA}function X(Z,CA,nA,lA,FA){function bA(lt,YA){var it,mt,Mt=new h(null);if(C(lt.positions))throw"Page reference id not found";var dt=lt.positions[0].pageNumber.toString();switch(YA.text=dt,it=Mt.widthOfString(YA.text,YA.font,YA.fontSize,YA.characterSpacing,YA.fontFeatures),mt=YA.width-it,YA.width=it,YA.alignment){case"right":YA.x+=mt;break;case"center":YA.x+=mt/2}}Z._pageNodeRef&&bA(Z._pageNodeRef,Z.inlines[0]),CA=CA||0,nA=nA||0;var HA=Z.getHeight(),z=HA-Z.getAscenderHeight();E.drawBackground(Z,CA,nA,lA,FA);for(var $=0,K=Z.inlines.length;$1){var HA=Z.points[0],q=Z.points[Z.points.length-1];(Z.closePath||HA.x===q.x&&HA.y===q.y)&&nA.closePath()}break;case"path":nA.path(Z.d)}if(Z.linearGradient&&lA){var z=1/(Z.linearGradient.length-1);for(FA=0;FA-1&&(bA=bA.slice(0,HA)),nA.height===1/0){var q=y(bA,Z.pageMargins);this.pdfKitDoc.options.size=[nA.width,q]}var z=function yA(Z,CA){var nA={};return Object.keys(Z).forEach(function(lA){var FA=Z[lA];nA[lA]=CA.pattern(FA.boundingBox,FA.xStep,FA.yStep,FA.pattern,FA.colored)}),nA}(Z.patterns||{},this.pdfKitDoc);if(function sA(Z,CA,nA,lA,FA){nA._pdfMakePages=Z,nA.addPage();var bA=0;FA&&Z.forEach(function(IA){bA+=IA.items.length});var HA=0;FA=FA||function(){};for(var q=0;q0&&(J(Z[q],nA),nA.addPage(nA.options));for(var z=Z[q],$=0,K=z.items.length;$=128?285:0);var M=[[]];for(C=0;C<30;++C){for(var Y=M[C],v=[],p=0;p<=C;++p)v.push(c[(p6},sA=function(q,z){var $=-8&function(q){var z=A[q],$=16*q*q+128*q+64;return b(q)&&($-=36),z[2].length&&($-=25*z[2].length*z[2].length-10*z[2].length-55),$}(q),K=A[q];return $-8*K[0][z]*K[1][z]},uA=function(q,z){switch(z){case 1:return q<10?10:q<27?12:14;case 2:return q<10?9:q<27?11:13;case 4:return q<10?8:16;case 8:return q<10?8:q<27?10:12}},X=function(q,z,$){var K=sA(q,$)-4-uA(q,z);switch(z){case 1:return 3*(K/10|0)+(K%10<4?0:K%10<7?1:2);case 2:return 2*(K/11|0)+(K%11<6?0:1);case 4:return K/8|0;case 8:return K/13|0}},dA=function(q,z){for(var $=q.slice(0),K=q.length,fA=z.length,IA=0;IA=0)for(var hA=0;hA=0;--IA)fA>>K+IA&1&&(fA^=$<>oA&1;return q},nA=function(q){for(var IA=function(OA){for(var et=0,st=0;st=5&&(et+=OA[st]-5+3);for(st=5;st=4*ot||OA[st+1]>=4*ot)&&(et+=40)}return et},oA=q.length,hA=0,zA=0,tt=0;tt=oA){for(fA.push(IA|YA>>(it-=oA));it>=8;)fA.push(YA>>(it-=8)&255);IA=0,oA=8}it>0&&(IA|=(YA&(1<>3);oA=function(q,z,$){for(var K=[],fA=q.length/z|0,IA=0,oA=z-q.length%z,hA=0;hA>Et&1,fA[Mt+ot][dt+Et]=1};for(oA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),oA($-8,0,8,9,[256,127,65,93,93,93,65,127]),oA(0,$-8,9,8,[254,130,186,186,186,130,254,0,0]),IA=9;IA<$-8;++IA)K[6][IA]=K[IA][6]=1&~IA,fA[6][IA]=fA[IA][6]=1;var hA=z[2],zA=hA.length;for(IA=0;IA>mt++&1,fA[IA][$-11+YA]=fA[$-11+YA][IA]=1}return{matrix:K,reserved:fA}}(z),zA=hA.matrix,tt=hA.reserved;if(function(q,z,$){for(var K=q.length,fA=0,IA=-1,oA=K-1;oA>=0;oA-=2){6==oA&&--oA;for(var hA=IA<0?K-1:0,zA=0;zAoA-2;--tt)z[hA][tt]||(q[hA][tt]=$[fA>>3]>>(7&~fA)&1,++fA);hA+=IA}IA=-IA}}(zA,tt,oA),fA<0){Z(zA,tt,0),CA(zA,0,K,0);var lt=0,YA=nA(zA);for(Z(zA,tt,0),fA=1;fA<8;++fA){Z(zA,tt,fA),CA(zA,0,K,fA);var it=nA(zA);YA>it&&(YA=it,lt=fA),Z(zA,tt,fA)}fA=lt}return Z(zA,tt,fA),CA(zA,0,K,fA),zA};function FA(q,z){var $={numeric:1,alphanumeric:2,octet:4},fA=(z=z||{}).version||-1,IA={L:1,M:0,Q:3,H:2}[(z.eccLevel||"L").toUpperCase()],oA=z.mode?$[z.mode.toLowerCase()]:-1,hA="mask"in z?z.mask:-1;if(oA<0)oA="string"==typeof q?q.match(g)?1:q.match(E)?2:4:4;else if(1!=oA&&2!=oA&&4!=oA)throw"invalid or unsupported mode";if(null===(q=function(q,z){switch(q){case 1:return z.match(g)?z:null;case 2:return z.match(f)?z.toUpperCase():null;case 4:if("string"==typeof z){for(var $=[],K=0;K>6,128|63&fA):fA<65536?$.push(224|fA>>12,128|fA>>6&63,128|63&fA):$.push(240|fA>>18,128|fA>>12&63,128|fA>>6&63,128|63&fA)}return $}return z}}(oA,q)))throw"invalid data format";if(IA<0||IA>3)throw"invalid ECC level";if(fA<0){for(fA=1;fA<=40&&!(q.length<=X(fA,oA,IA));++fA);if(fA>40)throw"too large data for the Qr format"}else if(fA<1||fA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=hA&&(hA<0||hA>8))throw"invalid mask";return lA(q,fA,oA,IA,hA)}T.exports={measure:function HA(q){var z=function bA(q,z){var $=[],K=z.background||"#fff",fA=z.foreground||"#000",IA=FA(q,z),oA=IA.length,hA=Math.floor(z.fit?z.fit/oA:5),zA=oA*hA;$.push({type:"rect",x:0,y:0,w:zA,h:zA,lineWidth:0,color:K});for(var tt=0;tt0;)this.styleOverrides.pop()},g.prototype.autopush=function(f){if(u(f))return 0;var E=[];f.style&&(E=o(f.style)?f.style:[f.style]);for(var h=0,r=E.length;h0&&this.pop(h),r},g.prototype.getProperty=function(f){if(this.styleOverrides)for(var E=this.styleOverrides.length-1;E>=0;E--){var h=this.styleOverrides[E];if(u(h)){var r=this.styleDictionary[h];if(r&&!s(r[f])&&!l(r[f]))return r[f]}else if(!s(h[f])&&!l(h[f]))return h[f]}return this.defaultStyle&&this.defaultStyle[f]},T.exports=g},7601:function(T,A,n){"use strict";var u=n(6513);function o(g){var f=parseFloat(g);if("number"==typeof f&&!isNaN(f))return f}function s(g){var f;try{f=new u.XmlDocument(g)}catch(E){throw new Error("SVGMeasure: "+E)}if("svg"!==f.name)throw new Error("SVGMeasure: expected document");return f}function l(){}l.prototype.measureSVG=function(g){var f=s(g),E=o(f.attr.width),h=o(f.attr.height);if((null==E||null==h)&&"string"==typeof f.attr.viewBox){var r=f.attr.viewBox.split(/[,\s]+/);if(4!==r.length)throw new Error("Unexpected svg viewbox format, should have 4 entries but found: '"+f.attr.viewBox+"'");null==E&&(E=o(r[2])),null==h&&(h=o(r[3]))}return{width:E,height:h}},l.prototype.writeDimensions=function(g,f){var E=s(g);return E.attr.width=""+f.width,E.attr.height=""+f.height,E.toString()},T.exports=l},9342:function(T,A,n){"use strict";var u=n(4498),o=n(6225).isFunction,s=n(6225).isNumber;function l(g){this.tableNode=g}l.prototype.beginTable=function(g){var f,E,h=this;this.offsets=(f=this.tableNode)._offsets,this.layout=f._layout,E=g.context().availableWidth-this.offsets.total,u.buildColumnWidths(f.table.widths,E),this.tableWidth=f._offsets.total+function r(){var B=0;return f.table.widths.forEach(function(c){B+=c._calcWidth}),B}(),this.rowSpanData=function w(){var B=[],c=0,C=0;B.push({left:0,rowSpan:0});for(var Q=0,M=h.tableNode.table.body[0].length;Q0&&y(c+p,Q,0,M.border[0]),void 0!==M.border[2]&&y(c+p,Q+v-1,2,M.border[2]);for(var I=0;I0&&y(c,Q+I,1,M.border[1]),void 0!==M.border[3]&&y(c+Y-1,Q+I,3,M.border[3])}}function y(U,S,b,O){var J=B[U][S];J.border=J.border||{},J.border[b]=O}}(this.tableNode.table.body),this.drawHorizontalLine(0,g)},l.prototype.onRowBreak=function(g,f){var E=this;return function(){var h=E.rowPaddingTop+(E.headerRows?0:E.topLineWidth);f.context().availableHeight-=E.reservedAtBottom,f.context().moveDown(h)}},l.prototype.beginRow=function(g,f){this.topLineWidth=this.layout.hLineWidth(g,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(g,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(g+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(g,this.tableNode),this.rowCallback=this.onRowBreak(g,f),f.tracker.startTracking("pageChanged",this.rowCallback),this.dontBreakRows&&f.beginUnbreakableBlock(),this.rowTopY=f.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,f.context().availableHeight-=this.reservedAtBottom,f.context().moveDown(this.rowPaddingTop)},l.prototype.drawHorizontalLine=function(g,f,E){var h=this.layout.hLineWidth(g,this.tableNode);if(h){var w,r=this.layout.hLineStyle(g,this.tableNode);r&&r.dash&&(w=r.dash);for(var C,Q,M,e=h/2,B=null,c=this.tableNode.table.body,Y=0,v=this.rowSpanData.length;Y0&&(S=(C=c[g-1][Y]).border?C.border[3]:this.layout.defaultBorder)&&C.borderColor&&(y=C.borderColor[3]),gO;)B.width+=this.rowSpanData[Y+O++].width||0;Y+=O-1}else if(C&&C.colSpan&&S){for(;C.colSpan>O;)B.width+=this.rowSpanData[Y+O++].width||0;Y+=O-1}else if(Q&&Q.colSpan&&U){for(;Q.colSpan>O;)B.width+=this.rowSpanData[Y+O++].width||0;Y+=O-1}else B.width+=this.rowSpanData[Y].width||0}var J=(E||0)+e;I&&B&&B.width&&(f.addVector({type:"line",x1:B.left,x2:B.left+B.width,y1:J,y2:J,lineWidth:h,dash:w,lineColor:y},!1,E),B=null,y=null,C=null,Q=null,M=null)}f.context().moveDown(h)}},l.prototype.drawVerticalLine=function(g,f,E,h,r,w,e){var B=this.layout.vLineWidth(h,this.tableNode);if(0!==B){var C,c=this.layout.vLineStyle(h,this.tableNode);c&&c.dash&&(C=c.dash);var M,Y,v,Q=this.tableNode.table.body;if(h>0&&(M=Q[w][e])&&M.borderColor&&(M.border?M.border[2]:this.layout.defaultBorder)&&(v=M.borderColor[2]),null==v&&h0&&$--}return z.push({x:w.rowSpanData[w.rowSpanData.length-1].left,index:w.rowSpanData.length-1}),z}(),C=[],Q=E&&E.length>0,M=this.tableNode.table.body;if(C.push({y0:this.rowTopY,page:Q?E[0].prevPage:e}),Q)for(r=0,h=E.length;r0&&!this.headerRows,S=U?0:this.topLineWidth,b=C[p].y0,O=C[p].y1;for(y&&(O+=this.rowPaddingBottom),f.context().page!=C[p].page&&(f.context().page=C[p].page,this.reservedAtBottom=0),r=0,h=c.length;r0&&!J&&(J=(X=M[g][uA-1]).border?X.border[2]:this.layout.defaultBorder),uA+11)for(var HA=1;HA1)for(HA=1;HA0&&this.rowSpanData[r].rowSpan--}this.drawHorizontalLine(g+1,f),this.headerRows&&g===this.headerRows-1&&(this.headerRepeatable=f.currentBlockToRepeatable()),this.dontBreakRows&&f.tracker.auto("pageChanged",function(){!w.headerRows&&!1!==w.layout.hLineWhenBroken&&w.drawHorizontalLine(g,f)},function(){f.commitUnbreakableBlock()}),this.headerRepeatable&&(g===this.rowsWithoutPageBreak-1||g===this.tableNode.table.body.length-1)&&(f.commitUnbreakableBlock(),f.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)},T.exports=l},3497:function(T,A,n){"use strict";var u=n(6225).isArray,o=n(6225).isPattern,s=n(6225).getPattern;function g(h,r,w,e){var C=h.inlines[0],Q=function B(){for(var gA=0,QA=0,yA=h.inlines.length;QAgA?QA:gA;return h.inlines[gA]}(),M=function c(){for(var gA=0,QA=0,yA=h.inlines.length;QA=0&&o.splice(s,1)}},A.prototype.emit=function(n){var u=Array.prototype.slice.call(arguments,1),o=this.events[n];!o||o.forEach(function(s){s.apply(this,u)})},A.prototype.auto=function(n,u,o){this.startTracking(n,u),o(),this.stopTracking(n,u)},T.exports=A},2480:function(){},5832:function(){},9862:function(){},964:function(){},3083:function(T,A,n){"use strict";var u=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],o="undefined"==typeof globalThis?n.g:globalThis;T.exports=function(){for(var l=[],g=0;gb),g(T.exports,"getCombiningClass",()=>O),g(T.exports,"getScript",()=>J),g(T.exports,"getEastAsianWidth",()=>sA),g(T.exports,"getNumericValue",()=>uA),g(T.exports,"isAlphabetic",()=>X),g(T.exports,"isDigit",()=>cA),g(T.exports,"isPunctuation",()=>pA),g(T.exports,"isLowerCase",()=>dA),g(T.exports,"isUpperCase",()=>DA),g(T.exports,"isTitleCase",()=>gA),g(T.exports,"isWhiteSpace",()=>QA),g(T.exports,"isBaseForm",()=>yA),g(T.exports,"isMark",()=>Z),g(T.exports,"default",()=>CA);var f;f=JSON.parse('{"categories":["Cc","Zs","Po","Sc","Ps","Pe","Sm","Pd","Nd","Lu","Sk","Pc","Ll","So","Lo","Pi","Cf","No","Pf","Lt","Lm","Mn","Me","Mc","Nl","Zl","Zp","Cs","Co"],"combiningClasses":["Not_Reordered","Above","Above_Right","Below","Attached_Above_Right","Attached_Below","Overlay","Iota_Subscript","Double_Below","Double_Above","Below_Right","Above_Left","CCC10","CCC11","CCC12","CCC13","CCC14","CCC15","CCC16","CCC17","CCC18","CCC19","CCC20","CCC21","CCC22","CCC23","CCC24","CCC25","CCC30","CCC31","CCC32","CCC27","CCC28","CCC29","CCC33","CCC34","CCC35","CCC36","Nukta","Virama","CCC84","CCC91","CCC103","CCC107","CCC118","CCC122","CCC129","CCC130","CCC132","Attached_Above","Below_Left","Left","Kana_Voicing","CCC26","Right"],"scripts":["Common","Latin","Bopomofo","Inherited","Greek","Coptic","Cyrillic","Armenian","Hebrew","Arabic","Syriac","Thaana","Nko","Samaritan","Mandaic","Devanagari","Bengali","Gurmukhi","Gujarati","Oriya","Tamil","Telugu","Kannada","Malayalam","Sinhala","Thai","Lao","Tibetan","Myanmar","Georgian","Hangul","Ethiopic","Cherokee","Canadian_Aboriginal","Ogham","Runic","Tagalog","Hanunoo","Buhid","Tagbanwa","Khmer","Mongolian","Limbu","Tai_Le","New_Tai_Lue","Buginese","Tai_Tham","Balinese","Sundanese","Batak","Lepcha","Ol_Chiki","Braille","Glagolitic","Tifinagh","Han","Hiragana","Katakana","Yi","Lisu","Vai","Bamum","Syloti_Nagri","Phags_Pa","Saurashtra","Kayah_Li","Rejang","Javanese","Cham","Tai_Viet","Meetei_Mayek","null","Linear_B","Lycian","Carian","Old_Italic","Gothic","Old_Permic","Ugaritic","Old_Persian","Deseret","Shavian","Osmanya","Osage","Elbasan","Caucasian_Albanian","Linear_A","Cypriot","Imperial_Aramaic","Palmyrene","Nabataean","Hatran","Phoenician","Lydian","Meroitic_Hieroglyphs","Meroitic_Cursive","Kharoshthi","Old_South_Arabian","Old_North_Arabian","Manichaean","Avestan","Inscriptional_Parthian","Inscriptional_Pahlavi","Psalter_Pahlavi","Old_Turkic","Old_Hungarian","Hanifi_Rohingya","Old_Sogdian","Sogdian","Elymaic","Brahmi","Kaithi","Sora_Sompeng","Chakma","Mahajani","Sharada","Khojki","Multani","Khudawadi","Grantha","Newa","Tirhuta","Siddham","Modi","Takri","Ahom","Dogra","Warang_Citi","Nandinagari","Zanabazar_Square","Soyombo","Pau_Cin_Hau","Bhaiksuki","Marchen","Masaram_Gondi","Gunjala_Gondi","Makasar","Cuneiform","Egyptian_Hieroglyphs","Anatolian_Hieroglyphs","Mro","Bassa_Vah","Pahawh_Hmong","Medefaidrin","Miao","Tangut","Nushu","Duployan","SignWriting","Nyiakeng_Puachue_Hmong","Wancho","Mende_Kikakui","Adlam"],"eaw":["N","Na","A","W","H","F"]}');const E=new(s(o))(s(u).toByteArray("AAARAAAAAADwfAEAZXl5ONRt+/5bPVFZimRfKoTQJNm37CGE7Iw0j3UsTWKsoyI7kwyyTiEUzSD7NiEzhWYijH0wMVkHE4Mx49fzfo+3nuP4/fdZjvv+XNd5n/d9nef1WZvmKhTxiZndzDQBSEYQqxqKwnsKvGQucFh+6t6cJ792ePQBZv5S9yXSwkyjf/P4T7mTNnIAv1dOVhMlR9lflbUL9JeJguqsjvG9NTj/wLb566VAURnLo2vvRi89S3gW/33ihh2eXpDn40BIW7REl/7coRKIhAFlAiOtbLDTt6mMb4GzMF1gNnvX/sBxtbsAIjfztCNcQjcNDtLThRvuXu5M5g/CBjaLBE4lJm4qy/oZD97+IJryApcXfgWYlkvWbhfXgujOJKVu8B+ozqTLbxyJ5kNiR75CxDqfBM9eOlDMmGeoZ0iQbbS5VUplIwI+ZNXEKQVJxlwqjhOY7w3XwPesbLK5JZE+Tt4X8q8km0dzInsPPzbscrjBMVjF5mOHSeRdJVgKUjLTHiHqXSPkep8N/zFk8167KLp75f6RndkvzdfB6Uz3MmqvRArzdCbs1/iRZjYPLLF3U8Qs+H+Rb8iK51a6NIV2V9+07uJsTGFWpPz8J++7iRu2B6eAKlK/kujrLthwaD/7a6J5w90TusnH1JMAc+gNrql4aspOUG/RrsxUKmPzhHgP4Bleru+6Vfc/MBjgXVx7who94nPn7MPFrnwQP7g0k0Dq0h2GSKO6fTZ8nLodN1SiOUj/5EL/Xo1DBvRm0wmrh3x6phcJ20/9CuMr5h8WPqXMSasLoLHoufTmE7mzYrs6B0dY7KjuCogKqsvxnxAwXWvd9Puc9PnE8DOHT2INHxRlIyVHrqZahtfV2E/A2PDdtA3ewlRHMtFIBKO/T4IozWTQZ+mb+gdKuk/ZHrqloucKdsOSJmlWTSntWjcxVMjUmroXLM10I6TwDLnBq4LP69TxgVeyGsd8yHvhF8ydPlrNRSNs9EP7WmeuSE7Lu10JbOuQcJw/63sDp68wB9iwP5AO+mBpV0R5VDDeyQUFCel1G+4KHBgEVFS0YK+m2sXLWLuGTlkVAd97WwKKdacjWElRCuDRauf33l/yVcDF6sVPKeTes99FC1NpNWcpieGSV/IbO8PCTy5pbUR1U8lxzf4T+y6fZMxOz3LshkQLeeDSd0WmUrQgajmbktrxsb2AZ0ACw2Vgni+gV/m+KvCRWLg08Clx7uhql+v9XySGcjjOHlsp8vBw/e8HS7dtiqF6T/XcSXuaMW66GF1g4q9YyBadHqy3Y5jin1c7yZos6BBr6dsomSHxiUHanYtcYQwnMMZhRhOnaYJeyJzaRuukyCUh48+e/BUvk/aEfDp8ag+jD64BHxNnQ5v/E7WRk7eLjGV13I3oqy45YNONi/1op1oDr7rPjkhPsTXgUpQtGDPlIs55KhQaic9kSGs/UrZ2QKQOflB8MTEQxRF9pullToWO7Eplan6mcMRFnUu2441yxi23x+KqKlr7RWWsi9ZXMWlr8vfP3llk1m2PRj0yudccxBuoa7VfIgRmnFPGX6Pm1WIfMm/Rm4n/xTn8IGqA0GWuqgu48pEUO0U9nN+ZdIvFpPb7VDPphIfRZxznlHeVFebkd9l+raXy9BpTMcIUIvBfgHEb6ndGo8VUkxpief14KjzFOcaANfgvFpvyY8lE8lE4raHizLpluPzMks1hx/e1Hok5yV0p7qQH7GaYeMzzZTFvRpv6k6iaJ4yNqzBvN8J7B430h2wFm1IBPcqbou33G7/NWPgopl4Mllla6e24L3TOTVNkza2zv3QKuDWTeDpClCEYgTQ+5vEBSQZs/rMF50+sm4jofTgWLqgX1x3TkrDEVaRqfY/xZizFZ3Y8/DFEFD31VSfBQ5raEB6nHnZh6ddehtclQJ8fBrldyIh99LNnV32HzKEej04hk6SYjdauCa4aYW0ru/QxvQRGzLKOAQszf3ixJypTW3WWL6BLSF2EMCMIw7OUvWBC6A/gDc2D1jvBapMCc7ztx6jYczwTKsRLL6dMNXb83HS8kdD0pTMMj161zbVHkU0mhSHo9SlBDDXdN6hDvRGizmohtIyR3ot8tF5iUG4GLNcXeGvBudSFrHu+bVZb9jirNVG+rQPI51A7Hu8/b0UeaIaZ4UgDO68PkYx3PE2HWpKapJ764Kxt5TFYpywMy4DLQqVRy11I7SOLhxUFmqiEK52NaijWArIfCg6qG8q5eSiwRCJb1R7GDJG74TrYgx/lVq7w9++Kh929xSJEaoSse5fUOQg9nMAnIZv+7fwVRcNv3gOHI46Vb5jYUC66PYHO6lS+TOmvEQjuYmx4RkffYGxqZIp/DPWNHAixbRBc+XKE3JEOgs4jIwu/dSAwhydruOGF39co91aTs85JJ3Z/LpXoF43hUwJsb/M1Chzdn8HX8vLXnqWUKvRhNLpfAF4PTFqva1sBQG0J+59HyYfmQ3oa4/sxZdapVLlo/fooxSXi/dOEQWIWq8E0FkttEyTFXR2aNMPINMIzZwCNEheYTVltsdaLkMyKoEUluPNAYCM2IG3br0DLy0fVNWKHtbSKbBjfiw7Lu06gQFalC7RC9BwRMSpLYDUo9pDtDfzwUiPJKLJ2LGcSphWBadOI/iJjNqUHV7ucG8yC6+iNM9QYElqBR7ECFXrcTgWQ3eG/tCWacT9bxIkfmxPmi3vOd36KxihAJA73vWNJ+Y9oapXNscVSVqS5g15xOWND/WuUCcA9YAAg6WFbjHamrblZ5c0L6Zx1X58ZittGcfDKU697QRSqW/g+RofNRyvrWMrBn44cPvkRe2HdTu/Cq01C5/riWPHZyXPKHuSDDdW8c1XPgd6ogvLh20qEIu8c19sqr4ufyHrwh37ZN5MkvY1dsGmEz9pUBTxWrvvhNyODyX2Q1k/fbX/T/vbHNcBrmjgDtvBdtZrVtiIg5iXQuzO/DEMvRX8Mi1zymSlt92BGILeKItjoShJXE/H7xwnf0Iewb8BFieJ9MflEBCQYEDm8eZniiEPfGoaYiiEdhQxHQNr2AuRdmbL9mcl18Kumh+HEZLp6z+j35ML9zTbUwahUZCyQQOgQrGfdfQtaR/OYJ/9dYXb2TWZFMijfCA8Nov4sa5FFDUe1T68h4q08WDE7JbbDiej4utRMR9ontevxlXv6LuJTXt1YEv8bDzEt683PuSsIN0afvu0rcBu9AbXZbkOG3K3AhtqQ28N23lXm7S3Yn6KXmAhBhz+GeorJJ4XxO/b3vZk2LXp42+QvsVxGSNVpfSctIFMTR1bD9t70i6sfNF3WKz/uKDEDCpzzztwhL45lsw89H2IpWN10sXHRlhDse9KCdpP5qNNpU84cTY+aiqswqR8XZ9ea0KbVRwRuOGQU3csAtV2fSbnq47U6es6rKlWLWhg3s/B9C9g+oTyp6RtIldR51OOkP5/6nSy6itUVPcMNOp4M/hDdKOz3uK6srbdxOrc2cJgr1Sg02oBxxSky6V7JaG+ziNwlfqnjnvh2/uq1lKfbp+qpwq/D/5OI5gkFl5CejKGxfc2YVJfGqc4E0x5e9PHK2ukbHNI7/RZV6LNe65apbTGjoCaQls0txPPbmQbCQn+/upCoXRZy9yzorWJvZ0KWcbXlBxU/d5I4ERUTxMuVWhSMmF677LNN7NnLwsmKawXkCgbrpcluOl0WChR1qhtSrxGXHu251dEItYhYX3snvn1gS2uXuzdTxCJjZtjsip0iT2sDC0qMS7Bk9su2NyXjFK5/f5ZoWwofg3DtTyjaFqspnOOTSh8xK/CKUFS57guVEkw9xoQuRCwwEO9Lu9z2vYxSa9NFV8DvSxv2C4WYLYF8Nrc4DzWkzNsk81JJOlZ/LYJrGCoj4MmZpnf3AXmzxT4rtl9jsqljEyedz468SGKdBiQzyz/qWKEhFg45ZczlZZ3KGL3l6sn+3TTa3zMVMhPa1obGp/z+fvY0QXTrJTf1XAT3EtQdUfYYlmWZyvPZ/6rWwU7UOQei7pVE0osgN94Iy+T1+omE6z4Rh2O20FjgBeK2y1mcoFiMDOJvuZPn5Moy9fmFH3wyfKvn4+TwfLvt/lHTTVnvrtoUWRBiQXhiNM8nE6ZoWeux/Z0b2unRcdUzdDpmL7CAgd1ToRXwgmHTZOgiGtVT+xr1QH9ObebRTT4NzL+XSpLuuWp62GqQvJVTPoZOeJCb6gIwd9XHMftQ+Kc08IKKdKQANSJ1a2gve3JdRhO0+tNiYzWAZfd7isoeBu67W7xuK8WX7nhJURld98Inb0t/dWOSau/kDvV4DJo/cImw9AO2Gvq0F2n0M7yIZKL8amMbjYld+qFls7hq8Acvq97K2PrCaomuUiesu7qNanGupEl6J/iem8lyr/NMnsTr6o41PO0yhQh3hPFN0wJP7S830je9iTBLzUNgYH+gUZpROo3rN2qgCI+6GewpX8w8CH+ro6QrWiStqmcMzVa3vEel+3/dDxMp0rDv1Q6wTMS3K64zTT6RWzK1y643im25Ja7X2ePCV2mTswd/4jshZPo4bLnerqIosq/hy2bKUAmVn9n4oun1+a0DIZ56UhVwmZHdUNpLa8gmPvxS1eNvCF1T0wo1wKPdCJi0qOrWz7oYRTzgTtkzEzZn308XSLwUog4OWGKJzCn/3FfF9iA32dZHSv30pRCM3KBY9WZoRhtdK/ChHk6DEQBsfV6tN2o1Cn0mLtPBfnkS+qy1L2xfFe9TQPtDE1Be44RTl82E9hPT2rS2+93LFbzhQQO3C/hD2jRFH3BWWbasAfuMhRJFcTri73eE835y016s22DjoFJ862WvLj69fu2TgSF3RHia9D5DSitlQAXYCnbdqjPkR287Lh6dCHDapos+eFDvcZPP2edPmTFxznJE/EBLoQQ0Qmn9EkZOyJmHxMbvKYb8o21ZHmv5YLqgsEPk9gWZwYQY9wLqGXuax/8QlV5qDaPbq9pLPT1yp+zOWKmraEy1OUJI7zdEcEmvBpbdwLrDCgEb2xX8S/nxZgjK4bRi+pbOmbh8bEeoPvU/L9ndx9kntlDALbdAvp0O8ZC3zSUnFg4cePsw7jxewWvL7HRSBLUn6J7vTH9uld5N76JFPgBCdXGF221oEJk++XfRwXplLSyrVO7HFWBEs99nTazKveW3HpbD4dH/YmdAl+lwbSt8BQWyTG7jAsACI7bPPUU9hI9XUHWqQOuezHzUjnx5Qqs6T1qNHfTTHleDtmqK7flA9a0gz2nycIpz1FHBuWxKNtUeTdqP29Fb3tv+tl5JyBqXoR+vCsdzZwZUhf6Lu8bvkB9yQP4x7GGegB0ym0Lpl03Q7e+C0cDsm9GSDepCDji7nUslLyYyluPfvLyKaDSX4xpR+nVYQjQQn5F8KbY1gbIVLiK1J3mW90zTyR1bqApX2BlWh7KG8LAY9/S9nWC0XXh9pZZo6xuir12T43rkaGfQssbQyIslA7uJnSHOV22NhlNtUo0czxPAsXhh8tIQYaTM4l/yAlZlydTcXhlG22Gs/n3BxKBd/3ZjYwg3NaUurVXhNB+afVnFfNr9TbC9ksNdvwpNfeHanyJ8M6GrIVfLlYAPv0ILe4dn0Z+BJSbJkN7eZY/c6+6ttDYcIDeUKIDXqUSE42Xdh5nRbuaObozjht0HJ5H1e+em+NJi/+8kQlyjCbJpPckwThZeIF9/u7lrVIKNeJLCN/TpPAeXxvd31/CUDWHK9MuP1V1TJgngzi4V0qzS3SW3Qy5UiGHqg02wQa5tsEl9s/X9nNMosgLlUgZSfCBj1DiypLfhr9/r0nR0XY2tmhDOcUS4E7cqa4EJBhzqvpbZa35Q5Iz5EqmhYiOGDAYk606Tv74+KGfPjKVuP15rIzgW0I7/niOu9el/sn2bRye0gV+GrePDRDMHjwO1lEdeXH8N+UTO3IoN18kpI3tPxz+fY+n2MGMSGFHAx/83tKeJOl+2i+f1O9v6FfEDBbqrw+lpM8Anav7zHNr7hE78nXUtPNodMbCnITWA7Ma/IHlZ50F9hWge/wzOvSbtqFVFtkS8Of2nssjZwbSFdU+VO8z6tCEc9UA9ACxT5zIUeSrkBB/v1krOpm7bVMrGxEKfI6LcnpB4D8bvn2hDKGqKrJaVAJuDaBEY3F7eXyqnFWlOoFV/8ZLspZiZd7orXLhd4mhHQgbuKbHjJWUzrnm0Dxw/LJLzXCkh7slMxKo8uxZIWZfdKHlfI7uj3LP6ARAuWdF7ZmZ7daOKqKGbz5LxOggTgS39oEioYmrqkCeUDvbxkBYKeHhcLmMN8dMF01ZMb32IpL/cH8R7VHQSI5I0YfL14g9d7P/6cjB1JXXxbozEDbsrPdmL8ph7QW10jio+v7YsqHKQ6xrBbOVtxU0/nFfzUGZwIBLwyUvg49ii+54nv9FyECBpURnQK4Ox6N7lw5fsjdd5l/2SwBcAHMJoyjO1Pifye2dagaOwCVMqdJWAo77pvBe0zdJcTWu5fdzPNfV2p1pc7/JKQ8zhKkwsOELUDhXygPJ5oR8Vpk2lsCen3D3QOQp2zdrSZHjVBstDF/wWO98rrkQ6/7zt/Drip7OHIug1lomNdmRaHRrjmqeodn22sesQQPgzimPOMqC60a5+i/UYh51uZm+ijWkkaI2xjrBO2558DZNZMiuDQlaVAvBy2wLn/bR3FrNzfnO/9oDztYqxZrr7JMIhqmrochbqmQnKowxW29bpqTaJu7kW1VotC72QkYX8OoDDdMDwV1kJRk3mufgJBzf+iwFRJ7XWQwO5ujVglgFgHtycWiMLx5N+6XU+TulLabWjOzoao03fniUW0xvIJNPbk7CQlFZd/RCOPvgQbLjh5ITE8NVJeKt3HGr6JTnFdIzcVOlEtwqbIIX0IM7saC+4N5047MTJ9+Wn11EhyEPIlwsHE5utCeXRjQzlrR+R1Cf/qDzcNbqLXdk3J7gQ39VUrrEkS/VMWjjg+t2oYrqB0tUZClcUF6+LBC3EQ7KnGIwm/qjZX4GKPtjTX1zQKV6nPAb2t/Rza5IqKRf8i2DFEhV/YSifX0YwsiF6TQnp48Gr65TFq0zUe6LGjiY7fq0LSGKL1VnC6ESI2yxvt3XqBx53B3gSlGFeJcPbUbonW1E9E9m4NfuwPh+t5QjRxX34lvBPVxwQd7aeTd+r9dw5CiP1pt8wMZoMdni7GapYdo6KPgeQKcmlFfq4UYhvV0IBgeiR3RnTMBaqDqpZrTRyLdsp4l0IXZTdErfH0sN3dqBG5vRIx3VgCYcHmmkqJ8Hyu3s9K9uBD1d8cZUEx3qYcF5vsqeRpF1GOg8emeWM2OmBlWPdZ6qAXwm3nENFyh+kvXk132PfWAlN0kb7yh4fz2T7VWUY/hEXX5DvxGABC03XRpyOG8t/u3Gh5tZdpsSV9AWaxJN7zwhVglgII1gV28tUViyqn4UMdIh5t+Ea2zo7PO48oba0TwQbiSZOH4YhD578kPF3reuaP7LujPMsjHmaDuId9XEaZBCJhbXJbRg5VCk3KJpryH/+8S3wdhR47pdFcmpZG2p0Bpjp/VbvalgIZMllYX5L31aMPdt1J7r/7wbixt0Mnz2ZvNGTARHPVD+2O1D8SGpWXlVnP2ekgon55YiinADDynyaXtZDXueVqbuTi8z8cHHK325pgqM+mWZwzHeEreMvhZopAScXM14SJHpGwZyRljMlDvcMm9FZ/1e9+r/puOnpXOtc9Iu2fmgBfEP9cGW1Fzb1rGlfJ08pACtq1ZW18bf2cevebzVeHbaA50G9qoUp39JWdPHbYkPCRXjt4gzlq3Cxge28Mky8MoS/+On72kc+ZI2xBtgJytpAQHQ1zrEddMIVyR5urX6yBNu8v5lKC8eLdGKTJtbgIZ3ZyTzSfWmx9f+cvcJe8yM39K/djkp2aUTE/9m2Lj5jg7b8vdRAer7DO3SyLNHs1CAm5x5iAdh2yGJYivArZbCBNY88Tw+w+C1Tbt7wK3zl2rzTHo/D8/gb3c3mYrnEIEipYqPUcdWjnTsSw471O3EUN7Gtg4NOAs9PJrxm03VuZKa5xwXAYCjt7Gs01Km6T2DhOYUMoFcCSu7Hk1p3yP1eG+M3v3Q5luAze6WwBnZIYO0TCucPWK+UJ36KoJ8Y+vpavhLO8g5ed704IjlQdfemrMu//EvPYXTQSGIPPfiagJS9nMqP5IvkxN9pvuJz7h8carPXTKMq8jnTeL0STan6dnLTAqwIswcIwWDR2KwbGddAVN8SYWRB7kfBfBRkSXzvHlIF8D6jo64kUzYk5o/n8oLjKqat0rdXvQ86MkwQGMnnlcasqPPT2+mVtUGb32KuH6cyZQenrRG11TArcAl27+nvOMBDe++EKHf4YdyGf7mznzOz33cFFGEcv329p4qG2hoaQ8ULiMyVz6ENcxhoqGnFIdupcn7GICQWuw3yO3W8S33mzCcMYJ8ywc7U7rmaQf/W5K63Gr4bVTpXOyOp4tbaPyIaatBNpXqlmQUTSZXjxPr19+73PSaT+QnI35YsWn6WpfJjRtK8vlJZoTSgjaRU39AGCkWOZtifJrnefCrqwTKDFmuWUCukEsYcRrMzCoit28wYpP7kSVjMD8WJYQiNc2blMjuqYegmf6SsfC1jqz8XzghMlOX+gn/MKZmgljszrmehEa4V98VreJDxYvHr3j7IeJB9/sBZV41BWT/AZAjuC5XorlIPnZgBAniBEhanp0/0+qZmEWDpu8ige1hUPIyTo6T6gDEcFhWSoduNh8YSu65KgMOGBw7VlNYzNIgwHtq9KP2yyTVysqX5v12sf7D+vQUdR2dRDvCV40rIInXSLWT/yrC6ExOQxBJwIDbeZcl3z1yR5Rj3l8IGpxspapnvBL+fwupA3b6fkFceID9wgiM1ILB0cHVdvo/R4xg8yqKXT8efl0GnGX1/27FUYeUW2L/GNRGGWVGp3i91oaJkb4rybENHre9a2P5viz/yqk8ngWUUS+Kv+fu+9BLFnfLiLXOFcIeBJLhnayCiuDRSqcx0Qu68gVsGYc6EHD500Fkt+gpDj6gvr884n8wZ5o6q7xtL5wA0beXQnffWYkZrs2NGIRgQbsc5NB302SVx+R4ROvmgZaR8wBcji128BMfJ9kcvJ4DC+bQ57kRmv5yxgU4ngZfn0/JNZ8JBwxjTqS+s9kjJFG1unGUGLwMiIuXUD9EFhNIJuyCEAmVZSIGKH4G6v1gRR1LyzQKH2ZqiI1DnHMoDEZspbDjTeaFIAbSvjSq3A+n46y9hhVM8wIpnARSXyzmOD96d9UXvFroSPgGw1dq2vdEqDq9fJN1EbL2WulNmHkFDvxSO9ZT/RX/Bw2gA/BrF90XrJACereVfbV/YXaKfp77Nmx5NjEIUlxojsy7iN7nBHSZigfsbFyVOX1ZTeCCxvqnRSExP4lk5ZeYlRu9caaa743TWNdchRIhEWwadsBIe245C8clpaZ4zrPsk+OwXzxWCvRRumyNSLW5KWaSJyJU95cwheK76gr7228spZ3hmTtLyrfM2QRFqZFMR8/Q6yWfVgwTdfX2Ry4w3+eAO/5VT5nFb5NlzXPvBEAWrNZ6Q3jbH0RF4vcbp+fDngf/ywpoyNQtjrfvcq93AVb1RDWRghvyqgI2BkMr1rwYi8gizZ0G9GmPpMeqPerAQ0dJbzx+KAFM4IBq6iSLpZHUroeyfd9o5o+4fR2EtsZBoJORQEA4SW0CmeXSnblx2e9QkCHIodyqV6+g5ETEpZsLqnd/Na60EKPX/tQpPEcO+COIBPcQdszDzSiHGyQFPly/7KciUh1u+mFfxTCHGv9nn2WqndGgeGjQ/kr02qmTBX7Hc1qiEvgiSz1Tz/sy7Es29wvn6FrDGPP7asXlhOaiHxOctPvTptFA1kHFUk8bME7SsTSnGbFbUrssxrq70LhoSh5OwvQna+w84XdXhZb2sloJ4ZsCg3j+PrjJL08/JBi5zGd6ud/ZxhmcGKLOXPcNunQq5ESW92iJvfsuRrNYtawWwSmNhPYoFj2QqWNF0ffLpGt/ad24RJ8vkb5sXkpyKXmvFG5Vcdzf/44k3PBL/ojJ52+kWGzOArnyp5f969oV3J2c4Li27Nkova9VwRNVKqN0V+gV+mTHitgkXV30aWd3A1RSildEleiNPA+5cp+3+T7X+xfHiRZXQ1s4FA9TxIcnveQs9JSZ5r5qNmgqlW4zMtZ6rYNvgmyVcywKtu8ZxnSbS5vXlBV+NXdIfi3+xzrnJ0TkFL+Un8v1PWOC2PPFCjVPq7qTH7mOpzOYj/b4h0ceT+eHgr97Jqhb1ziVfeANzfN8bFUhPKBi7hJBCukQnB0aGjFTYLJPXL26lQ2b80xrOD5cFWgA8hz3St0e69kwNnD3+nX3gy12FjrjO+ddRvvvfyV3SWbXcxqNHfmsb9u1TV+wHTb9B07/L2sB8WUHJ9eeNomDyysEWZ0deqEhH/oWI2oiEh526gvAK1Nx2kIhNvkYR+tPYHEa9j+nd1VBpQP1uzSjIDO+fDDB7uy029rRjDC5Sk6aKczyz1D5uA9Lu+Rrrapl8JXNL3VRllNQH2K1ZFxOpX8LprttfqQ56MbPM0IttUheXWD/mROOeFqGUbL+kUOVlXLTFX/525g4faLEFO4qWWdmOXMNvVjpIVTWt650HfQjX9oT3Dg5Au6+v1/Ci78La6ZOngYCFPT1AUwxQuZ0yt5xKdNXLaDTISMTeCj16XTryhM36K2mfGRIgot71voWs8tTpL/f1rvcwv3LSDf+/G8THCT7NpfHWcW+lsF/ol8q9Bi6MezNTqp0rpp/kJRiVfNrX/w27cRRTu8RIIqtUblBMkxy4jwAVqCjUJkiPBj2cAoVloG8B2/N5deLdMhDb7xs5nhd3dubJhuj8WbaFRyu1L678DHhhA+rMimNo4C1kGpp0tD/qnCfCFHejpf0LJX43OTr578PY0tnIIrlWyNYyuR/ie6j2xNb1OV6u0dOX/1Dtcd7+ya9W+rY2LmnyQMtk8SMLTon8RAdwOaN2tNg5zVnDKlmVeOxPV2vhHIo9QEPV7jc3f+zVDquiNg1OaHX3cZXJDRY5MJpo+VanAcmqp4oasYLG+wrXUL5vJU0kqk2hGEskhP+Jjigrz1l6QnEwp6n8PMVeJp70Ii6ppeaK9GhF6fJE00ceLyxv08tKiPat4QdxZFgSbQknnEiCLD8Qc1rjazVKM3r3gXnnMeONgdz/yFV1q+haaN+wnF3Fn4uYCI9XsKOuVwDD0LsCO/f0gj5cmxCFcr7sclIcefWjvore+3aSU474cyqDVxH7w1RX3CHsaqsMRX17ZLgjsDXws3kLm2XJdM3Ku383UXqaHqsywzPhx7NFir0Fqjym/w6cxD2U9ypa3dx7Z12w/fi3Jps8sqJ8f8Ah8aZAvkHXvIRyrsxK7rrFaNNdNvjI8+3Emri195DCNa858anj2Qdny6Czshkn4N2+1m+k5S8sunX3Ja7I+JutRzg1mc2e9Yc0Zv9PZn1SwhxIdU9sXwZRTd/J5FoUm0e+PYREeHg3oc2YYzGf2xfJxXExt4pT3RfDRHvMXLUmoXOy63xv5pLuhOEax0dRgSywZ/GH+YBXFgCeTU0hZ8SPEFsn8punp1Kurd1KgXxUZ+la3R5+4ePGR4ZF5UQtOa83+Vj8zh80dfzbhxWCeoJnQ4dkZJM4drzknZOOKx2n3WrvJnzFIS8p0xeic+M3ZRVXIp10tV2DyYKwRxLzulPwzHcLlYTxl4PF7v8l106Azr+6wBFejbq/3P72C/0j78cepY9990/d4eAurn2lqdGKLU8FffnMw7cY7pVeXJRMU73Oxwi2g2vh/+4gX8dvbjfojn/eLVhhYl8GthwCQ50KcZq4z2JeW5eeOnJWFQEnVxDoG459TaC4zXybECEoJ0V5q1tXrQbDMtUxeTV6Pdt1/zJuc7TJoV/9YZFWxUtCf6Ou3Vd/vR/vG0138hJQrHkNeoep5dLe+6umcSquKvMaFpm3EZHDBOvCi0XYyIFHMgX7Cqp3JVXlxJFwQfHSaIUEbI2u1lBVUdlNw4Qa9UsLPEK94Qiln3pyKxQVCeNlx8yd7EegVNQBkFLabKvnietYVB4IPZ1fSor82arbgYec8aSdFMaIluYTYuNx32SxfrjKUdPGq+UNp5YpydoEG3xVLixtmHO9zXxKAnHnPuH2fPGrjx0GcuCDEU+yXUtXh6nfUL+cykws1gJ5vkfYFaFBr9PdCXvVf35OJQxzUMmWjv0W6uGJK11uAGDqSpOwCf6rouSIjPVgw57cJCOQ4b9tkI/Y5WNon9Swe72aZryKo8d+HyHBEdWJKrkary0LIGczA4Irq353Wc0Zga3om7UQiAGCvIl8GGyaqz5zH+1gMP5phWUCpKtttWIyicz09vXg76GxkmiGSMQ06Z9X8BUwqOtauDbPIf4rpK/yYoeAHxJ9soXS9VDe1Aw+awOOxaN8foLrif0TXBvQ55dtRtulRq9emFDBxlQcqKCaD8NeTSE7FOHvcjf/+oKbbtRqz9gbofoc2EzQ3pL6W5JdfJzAWmOk8oeoECe90lVMruwl/ltM015P/zIPazqvdvFmLNVHMIZrwiQ2tIKtGh6PDVH+85ew3caqVt2BsDv5rOcu3G9srQWd7NmgtzCRUXLYknYRSwtH9oUtkqyN3CfP20xQ1faXQl4MEmjQehWR6GmGnkdpYNQYeIG408yAX7uCZmYUic9juOfb+Re28+OVOB+scYK4DaPcBe+5wmji9gymtkMpKo4UKqCz7yxzuN8VIlx9yNozpRJpNaWHtaZVEqP45n2JemTlYBSmNIK1FuSYAUQ1yBLnKxevrjayd+h2i8PjdB3YY6b0nr3JuOXGpPMyh4V2dslpR3DFEvgpsBLqhqLDOWP4yEvIL6f21PpA7/8B")),h=Math.log2||(nA=>Math.log(nA)/Math.LN2),r=nA=>h(nA)+1|0,w=r(s(f).categories.length-1),e=r(s(f).combiningClasses.length-1),B=r(s(f).scripts.length-1),c=r(s(f).eaw.length-1),Q=e+B+c+10,M=B+c+10,Y=c+10,p=(1<>Q&p]}function O(nA){const lA=E.get(nA);return s(f).combiningClasses[lA>>M&I]}function J(nA){const lA=E.get(nA);return s(f).scripts[lA>>Y&y]}function sA(nA){const lA=E.get(nA);return s(f).eaw[lA>>10&U]}function uA(nA){let lA=E.get(nA),FA=1023&lA;if(0===FA)return null;if(FA<=50)return FA-1;if(FA<480)return((FA>>4)-12)/(1+(15&FA));if(FA<768){lA=(FA>>5)-14;let bA=2+(31&FA);for(;bA>0;)lA*=10,bA--;return lA}{lA=(FA>>2)-191;let bA=1+(3&FA);for(;bA>0;)lA*=60,bA--;return lA}}function X(nA){const lA=b(nA);return"Lu"===lA||"Ll"===lA||"Lt"===lA||"Lm"===lA||"Lo"===lA||"Nl"===lA}function cA(nA){return"Nd"===b(nA)}function pA(nA){const lA=b(nA);return"Pc"===lA||"Pd"===lA||"Pe"===lA||"Pf"===lA||"Pi"===lA||"Po"===lA||"Ps"===lA}function dA(nA){return"Ll"===b(nA)}function DA(nA){return"Lu"===b(nA)}function gA(nA){return"Lt"===b(nA)}function QA(nA){const lA=b(nA);return"Zs"===lA||"Zl"===lA||"Zp"===lA}function yA(nA){const lA=b(nA);return"Nd"===lA||"No"===lA||"Nl"===lA||"Lu"===lA||"Ll"===lA||"Lt"===lA||"Lm"===lA||"Lo"===lA||"Me"===lA||"Mc"===lA}function Z(nA){const lA=b(nA);return"Mn"===lA||"Me"===lA||"Mc"===lA}var CA={getCategory:b,getCombiningClass:O,getScript:J,getEastAsianWidth:sA,getNumericValue:uA,isAlphabetic:X,isDigit:cA,isPunctuation:pA,isLowerCase:dA,isUpperCase:DA,isTitleCase:gA,isWhiteSpace:QA,isBaseForm:yA,isMark:Z}},3480:function(T){"use strict";T.exports=JSON.parse('[["8740","\u43f0\u4c32\u4603\u45a6\u4578\u{27267}\u4d77\u45b3\u{27cb1}\u4ce2\u{27cc5}\u3b95\u4736\u4744\u4c47\u4c40\u{242bf}\u{23617}\u{27352}\u{26e8b}\u{270d2}\u4c57\u{2a351}\u474f\u45da\u4c85\u{27c6c}\u4d07\u4aa4\u46a1\u{26b23}\u7225\u{25a54}\u{21a63}\u{23e06}\u{23f61}\u664d\u56fb"],["8767","\u7d95\u591d\u{28bb9}\u3df4\u9734\u{27bef}\u5bdb\u{21d5e}\u5aa4\u3625\u{29eb0}\u5ad1\u5bb7\u5cfc\u676e\u8593\u{29945}\u7461\u749d\u3875\u{21d53}\u{2369e}\u{26021}\u3eec"],["87a1","\u{258de}\u3af5\u7afc\u9f97\u{24161}\u{2890d}\u{231ea}\u{20a8a}\u{2325e}\u430a\u8484\u9f96\u942f\u4930\u8613\u5896\u974a\u9218\u79d0\u7a32\u6660\u6a29\u889d\u744c\u7bc5\u6782\u7a2c\u524f\u9046\u34e6\u73c4\u{25db9}\u74c6\u9fc7\u57b3\u492f\u544c\u4131\u{2368e}\u5818\u7a72\u{27b65}\u8b8f\u46ae\u{26e88}\u4181\u{25d99}\u7bae\u{224bc}\u9fc8\u{224c1}\u{224c9}\u{224cc}\u9fc9\u8504\u{235bb}\u40b4\u9fca\u44e1\u{2adff}\u62c1\u706e\u9fcb"],["8840","\u31c0",4,"\u{2010c}\u31c5\u{200d1}\u{200cd}\u31c6\u31c7\u{200cb}\u{21fe8}\u31c8\u{200ca}\u31c9\u31ca\u31cb\u31cc\u{2010e}\u31cd\u31ce\u0100\xc1\u01cd\xc0\u0112\xc9\u011a\xc8\u014c\xd3\u01d1\xd2\u0fff\xca\u0304\u1ebe\u0fff\xca\u030c\u1ec0\xca\u0101\xe1\u01ce\xe0\u0251\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da"],["88a1","\u01dc\xfc\u0fff\xea\u0304\u1ebf\u0fff\xea\u030c\u1ec1\xea\u0261\u23da\u23db"],["8940","\u{2a3a9}\u{21145}"],["8943","\u650a"],["8946","\u4e3d\u6edd\u9d4e\u91df"],["894c","\u{27735}\u6491\u4f1a\u4f28\u4fa8\u5156\u5174\u519c\u51e4\u52a1\u52a8\u533b\u534e\u53d1\u53d8\u56e2\u58f0\u5904\u5907\u5932\u5934\u5b66\u5b9e\u5b9f\u5c9a\u5e86\u603b\u6589\u67fe\u6804\u6865\u6d4e\u70bc\u7535\u7ea4\u7eac\u7eba\u7ec7\u7ecf\u7edf\u7f06\u7f37\u827a\u82cf\u836f\u89c6\u8bbe\u8be2\u8f66\u8f67\u8f6e"],["89a1","\u7411\u7cfc\u7dcd\u6946\u7ac9\u5227"],["89ab","\u918c\u78b8\u915e\u80bc"],["89b0","\u8d0b\u80f6\u{209e7}"],["89b5","\u809f\u9ec7\u4ccd\u9dc9\u9e0c\u4c3e\u{29df6}\u{2700e}\u9e0a\u{2a133}\u35c1"],["89c1","\u6e9a\u823e\u7519"],["89c5","\u4911\u9a6c\u9a8f\u9f99\u7987\u{2846c}\u{21dca}\u{205d0}\u{22ae6}\u4e24\u4e81\u4e80\u4e87\u4ebf\u4eeb\u4f37\u344c\u4fbd\u3e48\u5003\u5088\u347d\u3493\u34a5\u5186\u5905\u51db\u51fc\u5205\u4e89\u5279\u5290\u5327\u35c7\u53a9\u3551\u53b0\u3553\u53c2\u5423\u356d\u3572\u3681\u5493\u54a3\u54b4\u54b9\u54d0\u54ef\u5518\u5523\u5528\u3598\u553f\u35a5\u35bf\u55d7\u35c5"],["8a40","\u{27d84}\u5525"],["8a43","\u{20c42}\u{20d15}\u{2512b}\u5590\u{22cc6}\u39ec\u{20341}\u8e46\u{24db8}\u{294e5}\u4053\u{280be}\u777a\u{22c38}\u3a34\u47d5\u{2815d}\u{269f2}\u{24dea}\u64dd\u{20d7c}\u{20fb4}\u{20cd5}\u{210f4}\u648d\u8e7e\u{20e96}\u{20c0b}\u{20f64}\u{22ca9}\u{28256}\u{244d3}"],["8a64","\u{20d46}\u{29a4d}\u{280e9}\u47f4\u{24ea7}\u{22cc2}\u9ab2\u3a67\u{295f4}\u3fed\u3506\u{252c7}\u{297d4}\u{278c8}\u{22d44}\u9d6e\u9815"],["8a76","\u43d9\u{260a5}\u64b4\u54e3\u{22d4c}\u{22bca}\u{21077}\u39fb\u{2106f}"],["8aa1","\u{266da}\u{26716}\u{279a0}\u64ea\u{25052}\u{20c43}\u8e68\u{221a1}\u{28b4c}\u{20731}"],["8aac","\u480b\u{201a9}\u3ffa\u5873\u{22d8d}"],["8ab2","\u{245c8}\u{204fc}\u{26097}\u{20f4c}\u{20d96}\u5579\u40bb\u43ba"],["8abb","\u4ab4\u{22a66}\u{2109d}\u81aa\u98f5\u{20d9c}\u6379\u39fe\u{22775}\u8dc0\u56a1\u647c\u3e43"],["8ac9","\u{2a601}\u{20e09}\u{22acf}\u{22cc9}"],["8ace","\u{210c8}\u{239c2}\u3992\u3a06\u{2829b}\u3578\u{25e49}\u{220c7}\u5652\u{20f31}\u{22cb2}\u{29720}\u34bc\u6c3d\u{24e3b}"],["8adf","\u{27574}\u{22e8b}\u{22208}\u{2a65b}\u{28ccd}\u{20e7a}\u{20c34}\u{2681c}\u7f93\u{210cf}\u{22803}\u{22939}\u35fb\u{251e3}\u{20e8c}\u{20f8d}\u{20eaa}\u3f93\u{20f30}\u{20d47}\u{2114f}\u{20e4c}"],["8af6","\u{20eab}\u{20ba9}\u{20d48}\u{210c0}\u{2113d}\u3ff9\u{22696}\u6432\u{20fad}"],["8b40","\u{233f4}\u{27639}\u{22bce}\u{20d7e}\u{20d7f}\u{22c51}\u{22c55}\u3a18\u{20e98}\u{210c7}\u{20f2e}\u{2a632}\u{26b50}\u{28cd2}\u{28d99}\u{28cca}\u95aa\u54cc\u82c4\u55b9"],["8b55","\u{29ec3}\u9c26\u9ab6\u{2775e}\u{22dee}\u7140\u816d\u80ec\u5c1c\u{26572}\u8134\u3797\u535f\u{280bd}\u91b6\u{20efa}\u{20e0f}\u{20e77}\u{20efb}\u35dd\u{24deb}\u3609\u{20cd6}\u56af\u{227b5}\u{210c9}\u{20e10}\u{20e78}\u{21078}\u{21148}\u{28207}\u{21455}\u{20e79}\u{24e50}\u{22da4}\u5a54\u{2101d}\u{2101e}\u{210f5}\u{210f6}\u579c\u{20e11}"],["8ba1","\u{27694}\u{282cd}\u{20fb5}\u{20e7b}\u{2517e}\u3703\u{20fb6}\u{21180}\u{252d8}\u{2a2bd}\u{249da}\u{2183a}\u{24177}\u{2827c}\u5899\u5268\u361a\u{2573d}\u7bb2\u5b68\u4800\u4b2c\u9f27\u49e7\u9c1f\u9b8d\u{25b74}\u{2313d}\u55fb\u35f2\u5689\u4e28\u5902\u{21bc1}\u{2f878}\u9751\u{20086}\u4e5b\u4ebb\u353e\u5c23\u5f51\u5fc4\u38fa\u624c\u6535\u6b7a\u6c35\u6c3a\u706c\u722b\u4e2c\u72ad\u{248e9}\u7f52\u793b\u7cf9\u7f53\u{2626a}\u34c1"],["8bde","\u{2634b}\u8002\u8080\u{26612}\u{26951}\u535d\u8864\u89c1\u{278b2}\u8ba0\u8d1d\u9485\u9578\u957f\u95e8\u{28e0f}\u97e6\u9875\u98ce\u98de\u9963\u{29810}\u9c7c\u9e1f\u9ec4\u6b6f\uf907\u4e37\u{20087}\u961d\u6237\u94a2"],["8c40","\u503b\u6dfe\u{29c73}\u9fa6\u3dc9\u888f\u{2414e}\u7077\u5cf5\u4b20\u{251cd}\u3559\u{25d30}\u6122\u{28a32}\u8fa7\u91f6\u7191\u6719\u73ba\u{23281}\u{2a107}\u3c8b\u{21980}\u4b10\u78e4\u7402\u51ae\u{2870f}\u4009\u6a63\u{2a2ba}\u4223\u860f\u{20a6f}\u7a2a\u{29947}\u{28aea}\u9755\u704d\u5324\u{2207e}\u93f4\u76d9\u{289e3}\u9fa7\u77dd\u4ea3\u4ff0\u50bc\u4e2f\u4f17\u9fa8\u5434\u7d8b\u5892\u58d0\u{21db6}\u5e92\u5e99\u5fc2\u{22712}\u658b"],["8ca1","\u{233f9}\u6919\u6a43\u{23c63}\u6cff"],["8ca7","\u7200\u{24505}\u738c\u3edb\u{24a13}\u5b15\u74b9\u8b83\u{25ca4}\u{25695}\u7a93\u7bec\u7cc3\u7e6c\u82f8\u8597\u9fa9\u8890\u9faa\u8eb9\u9fab\u8fcf\u855f\u99e0\u9221\u9fac\u{28db9}\u{2143f}\u4071\u42a2\u5a1a"],["8cc9","\u9868\u676b\u4276\u573d"],["8cce","\u85d6\u{2497b}\u82bf\u{2710d}\u4c81\u{26d74}\u5d7b\u{26b15}\u{26fbe}\u9fad\u9fae\u5b96\u9faf\u66e7\u7e5b\u6e57\u79ca\u3d88\u44c3\u{23256}\u{22796}\u439a\u4536"],["8ce6","\u5cd5\u{23b1a}\u8af9\u5c78\u3d12\u{23551}\u5d78\u9fb2\u7157\u4558\u{240ec}\u{21e23}\u4c77\u3978\u344a\u{201a4}\u{26c41}\u8acc\u4fb4\u{20239}\u59bf\u816c\u9856\u{298fa}\u5f3b"],["8d40","\u{20b9f}"],["8d42","\u{221c1}\u{2896d}\u4102\u46bb\u{29079}\u3f07\u9fb3\u{2a1b5}\u40f8\u37d6\u46f7\u{26c46}\u417c\u{286b2}\u{273ff}\u456d\u38d4\u{2549a}\u4561\u451b\u4d89\u4c7b\u4d76\u45ea\u3fc8\u{24b0f}\u3661\u44de\u44bd\u41ed\u5d3e\u5d48\u5d56\u3dfc\u380f\u5da4\u5db9\u3820\u3838\u5e42\u5ebd\u5f25\u5f83\u3908\u3914\u393f\u394d\u60d7\u613d\u5ce5\u3989\u61b7\u61b9\u61cf\u39b8\u622c\u6290\u62e5\u6318\u39f8\u56b1"],["8da1","\u3a03\u63e2\u63fb\u6407\u645a\u3a4b\u64c0\u5d15\u5621\u9f9f\u3a97\u6586\u3abd\u65ff\u6653\u3af2\u6692\u3b22\u6716\u3b42\u67a4\u6800\u3b58\u684a\u6884\u3b72\u3b71\u3b7b\u6909\u6943\u725c\u6964\u699f\u6985\u3bbc\u69d6\u3bdd\u6a65\u6a74\u6a71\u6a82\u3bec\u6a99\u3bf2\u6aab\u6ab5\u6ad4\u6af6\u6b81\u6bc1\u6bea\u6c75\u6caa\u3ccb\u6d02\u6d06\u6d26\u6d81\u3cef\u6da4\u6db1\u6e15\u6e18\u6e29\u6e86\u{289c0}\u6ebb\u6ee2\u6eda\u9f7f\u6ee8\u6ee9\u6f24\u6f34\u3d46\u{23f41}\u6f81\u6fbe\u3d6a\u3d75\u71b7\u5c99\u3d8a\u702c\u3d91\u7050\u7054\u706f\u707f\u7089\u{20325}\u43c1\u35f1\u{20ed8}"],["8e40","\u{23ed7}\u57be\u{26ed3}\u713e\u{257e0}\u364e\u69a2\u{28be9}\u5b74\u7a49\u{258e1}\u{294d9}\u7a65\u7a7d\u{259ac}\u7abb\u7ab0\u7ac2\u7ac3\u71d1\u{2648d}\u41ca\u7ada\u7add\u7aea\u41ef\u54b2\u{25c01}\u7b0b\u7b55\u7b29\u{2530e}\u{25cfe}\u7ba2\u7b6f\u839c\u{25bb4}\u{26c7f}\u7bd0\u8421\u7b92\u7bb8\u{25d20}\u3dad\u{25c65}\u8492\u7bfa\u7c06\u7c35\u{25cc1}\u7c44\u7c83\u{24882}\u7ca6\u667d\u{24578}\u7cc9\u7cc7\u7ce6\u7c74\u7cf3\u7cf5\u7cce"],["8ea1","\u7e67\u451d\u{26e44}\u7d5d\u{26ed6}\u748d\u7d89\u7dab\u7135\u7db3\u7dd2\u{24057}\u{26029}\u7de4\u3d13\u7df5\u{217f9}\u7de5\u{2836d}\u7e1d\u{26121}\u{2615a}\u7e6e\u7e92\u432b\u946c\u7e27\u7f40\u7f41\u7f47\u7936\u{262d0}\u99e1\u7f97\u{26351}\u7fa3\u{21661}\u{20068}\u455c\u{23766}\u4503\u{2833a}\u7ffa\u{26489}\u8005\u8008\u801d\u8028\u802f\u{2a087}\u{26cc3}\u803b\u803c\u8061\u{22714}\u4989\u{26626}\u{23de3}\u{266e8}\u6725\u80a7\u{28a48}\u8107\u811a\u58b0\u{226f6}\u6c7f\u{26498}\u{24fb8}\u64e7\u{2148a}\u8218\u{2185e}\u6a53\u{24a65}\u{24a95}\u447a\u8229\u{20b0d}\u{26a52}\u{23d7e}\u4ff9\u{214fd}\u84e2\u8362\u{26b0a}\u{249a7}\u{23530}\u{21773}\u{23df8}\u82aa\u691b\u{2f994}\u41db"],["8f40","\u854b\u82d0\u831a\u{20e16}\u{217b4}\u36c1\u{2317d}\u{2355a}\u827b\u82e2\u8318\u{23e8b}\u{26da3}\u{26b05}\u{26b97}\u{235ce}\u3dbf\u831d\u55ec\u8385\u450b\u{26da5}\u83ac\u83c1\u83d3\u347e\u{26ed4}\u6a57\u855a\u3496\u{26e42}\u{22eef}\u8458\u{25be4}\u8471\u3dd3\u44e4\u6aa7\u844a\u{23cb5}\u7958\u84a8\u{26b96}\u{26e77}\u{26e43}\u84de\u840f\u8391\u44a0\u8493\u84e4\u{25c91}\u4240\u{25cc0}\u4543\u8534\u5af2\u{26e99}\u4527\u8573\u4516\u67bf\u8616"],["8fa1","\u{28625}\u{2863b}\u85c1\u{27088}\u8602\u{21582}\u{270cd}\u{2f9b2}\u456a\u8628\u3648\u{218a2}\u53f7\u{2739a}\u867e\u8771\u{2a0f8}\u87ee\u{22c27}\u87b1\u87da\u880f\u5661\u866c\u6856\u460f\u8845\u8846\u{275e0}\u{23db9}\u{275e4}\u885e\u889c\u465b\u88b4\u88b5\u63c1\u88c5\u7777\u{2770f}\u8987\u898a\u89a6\u89a9\u89a7\u89bc\u{28a25}\u89e7\u{27924}\u{27abd}\u8a9c\u7793\u91fe\u8a90\u{27a59}\u7ae9\u{27b3a}\u{23f8f}\u4713\u{27b38}\u717c\u8b0c\u8b1f\u{25430}\u{25565}\u8b3f\u8b4c\u8b4d\u8aa9\u{24a7a}\u8b90\u8b9b\u8aaf\u{216df}\u4615\u884f\u8c9b\u{27d54}\u{27d8f}\u{2f9d4}\u3725\u{27d53}\u8cd6\u{27d98}\u{27dbd}\u8d12\u8d03\u{21910}\u8cdb\u705c\u8d11\u{24cc9}\u3ed0\u8d77"],["9040","\u8da9\u{28002}\u{21014}\u{2498a}\u3b7c\u{281bc}\u{2710c}\u7ae7\u8ead\u8eb6\u8ec3\u92d4\u8f19\u8f2d\u{28365}\u{28412}\u8fa5\u9303\u{2a29f}\u{20a50}\u8fb3\u492a\u{289de}\u{2853d}\u{23dbb}\u5ef8\u{23262}\u8ff9\u{2a014}\u{286bc}\u{28501}\u{22325}\u3980\u{26ed7}\u9037\u{2853c}\u{27abe}\u9061\u{2856c}\u{2860b}\u90a8\u{28713}\u90c4\u{286e6}\u90ae\u90fd\u9167\u3af0\u91a9\u91c4\u7cac\u{28933}\u{21e89}\u920e\u6c9f\u9241\u9262\u{255b9}\u92b9\u{28ac6}\u{23c9b}\u{28b0c}\u{255db}"],["90a1","\u{20d31}\u932c\u936b\u{28ae1}\u{28beb}\u708f\u5ac3\u{28ae2}\u{28ae5}\u4965\u9244\u{28bec}\u{28c39}\u{28bff}\u9373\u945b\u8ebc\u9585\u95a6\u9426\u95a0\u6ff6\u42b9\u{2267a}\u{286d8}\u{2127c}\u{23e2e}\u49df\u6c1c\u967b\u9696\u416c\u96a3\u{26ed5}\u61da\u96b6\u78f5\u{28ae0}\u96bd\u53cc\u49a1\u{26cb8}\u{20274}\u{26410}\u{290af}\u{290e5}\u{24ad1}\u{21915}\u{2330a}\u9731\u8642\u9736\u4a0f\u453d\u4585\u{24ae9}\u7075\u5b41\u971b\u975c\u{291d5}\u9757\u5b4a\u{291eb}\u975f\u9425\u50d0\u{230b7}\u{230bc}\u9789\u979f\u97b1\u97be\u97c0\u97d2\u97e0\u{2546c}\u97ee\u741c\u{29433}\u97ff\u97f5\u{2941d}\u{2797a}\u4ad1\u9834\u9833\u984b\u9866\u3b0e\u{27175}\u3d51\u{20630}\u{2415c}"],["9140","\u{25706}\u98ca\u98b7\u98c8\u98c7\u4aff\u{26d27}\u{216d3}\u55b0\u98e1\u98e6\u98ec\u9378\u9939\u{24a29}\u4b72\u{29857}\u{29905}\u99f5\u9a0c\u9a3b\u9a10\u9a58\u{25725}\u36c4\u{290b1}\u{29bd5}\u9ae0\u9ae2\u{29b05}\u9af4\u4c0e\u9b14\u9b2d\u{28600}\u5034\u9b34\u{269a8}\u38c3\u{2307d}\u9b50\u9b40\u{29d3e}\u5a45\u{21863}\u9b8e\u{2424b}\u9c02\u9bff\u9c0c\u{29e68}\u9dd4\u{29fb7}\u{2a192}\u{2a1ab}\u{2a0e1}\u{2a123}\u{2a1df}\u9d7e\u9d83\u{2a134}\u9e0e\u6888"],["91a1","\u9dc4\u{2215b}\u{2a193}\u{2a220}\u{2193b}\u{2a233}\u9d39\u{2a0b9}\u{2a2b4}\u9e90\u9e95\u9e9e\u9ea2\u4d34\u9eaa\u9eaf\u{24364}\u9ec1\u3b60\u39e5\u3d1d\u4f32\u37be\u{28c2b}\u9f02\u9f08\u4b96\u9424\u{26da2}\u9f17\u9f16\u9f39\u569f\u568a\u9f45\u99b8\u{2908b}\u97f2\u847f\u9f62\u9f69\u7adc\u9f8e\u7216\u4bbe\u{24975}\u{249bb}\u7177\u{249f8}\u{24348}\u{24a51}\u739e\u{28bda}\u{218fa}\u799f\u{2897e}\u{28e36}\u9369\u93f3\u{28a44}\u92ec\u9381\u93cb\u{2896c}\u{244b9}\u7217\u3eeb\u7772\u7a43\u70d0\u{24473}\u{243f8}\u717e\u{217ef}\u70a3\u{218be}\u{23599}\u3ec7\u{21885}\u{2542f}\u{217f8}\u3722\u{216fb}\u{21839}\u36e1\u{21774}\u{218d1}\u{25f4b}\u3723\u{216c0}\u575b\u{24a25}\u{213fe}\u{212a8}"],["9240","\u{213c6}\u{214b6}\u8503\u{236a6}\u8503\u8455\u{24994}\u{27165}\u{23e31}\u{2555c}\u{23efb}\u{27052}\u44f4\u{236ee}\u{2999d}\u{26f26}\u67f9\u3733\u3c15\u3de7\u586c\u{21922}\u6810\u4057\u{2373f}\u{240e1}\u{2408b}\u{2410f}\u{26c21}\u54cb\u569e\u{266b1}\u5692\u{20fdf}\u{20ba8}\u{20e0d}\u93c6\u{28b13}\u939c\u4ef8\u512b\u3819\u{24436}\u4ebc\u{20465}\u{2037f}\u4f4b\u4f8a\u{25651}\u5a68\u{201ab}\u{203cb}\u3999\u{2030a}\u{20414}\u3435\u4f29\u{202c0}\u{28eb3}\u{20275}\u8ada\u{2020c}\u4e98"],["92a1","\u50cd\u510d\u4fa2\u4f03\u{24a0e}\u{23e8a}\u4f42\u502e\u506c\u5081\u4fcc\u4fe5\u5058\u50fc\u5159\u515b\u515d\u515e\u6e76\u{23595}\u{23e39}\u{23ebf}\u6d72\u{21884}\u{23e89}\u51a8\u51c3\u{205e0}\u44dd\u{204a3}\u{20492}\u{20491}\u8d7a\u{28a9c}\u{2070e}\u5259\u52a4\u{20873}\u52e1\u936e\u467a\u718c\u{2438c}\u{20c20}\u{249ac}\u{210e4}\u69d1\u{20e1d}\u7479\u3ede\u7499\u7414\u7456\u7398\u4b8e\u{24abc}\u{2408d}\u53d0\u3584\u720f\u{240c9}\u55b4\u{20345}\u54cd\u{20bc6}\u571d\u925d\u96f4\u9366\u57dd\u578d\u577f\u363e\u58cb\u5a99\u{28a46}\u{216fa}\u{2176f}\u{21710}\u5a2c\u59b8\u928f\u5a7e\u5acf\u5a12\u{25946}\u{219f3}\u{21861}\u{24295}\u36f5\u6d05\u7443\u5a21\u{25e83}"],["9340","\u5a81\u{28bd7}\u{20413}\u93e0\u748c\u{21303}\u7105\u4972\u9408\u{289fb}\u93bd\u37a0\u5c1e\u5c9e\u5e5e\u5e48\u{21996}\u{2197c}\u{23aee}\u5ecd\u5b4f\u{21903}\u{21904}\u3701\u{218a0}\u36dd\u{216fe}\u36d3\u812a\u{28a47}\u{21dba}\u{23472}\u{289a8}\u5f0c\u5f0e\u{21927}\u{217ab}\u5a6b\u{2173b}\u5b44\u8614\u{275fd}\u8860\u607e\u{22860}\u{2262b}\u5fdb\u3eb8\u{225af}\u{225be}\u{29088}\u{26f73}\u61c0\u{2003e}\u{20046}\u{2261b}\u6199\u6198\u6075\u{22c9b}\u{22d07}\u{246d4}\u{2914d}"],["93a1","\u6471\u{24665}\u{22b6a}\u3a29\u{22b22}\u{23450}\u{298ea}\u{22e78}\u6337\u{2a45b}\u64b6\u6331\u63d1\u{249e3}\u{22d67}\u62a4\u{22ca1}\u643b\u656b\u6972\u3bf4\u{2308e}\u{232ad}\u{24989}\u{232ab}\u550d\u{232e0}\u{218d9}\u{2943f}\u66ce\u{23289}\u{231b3}\u3ae0\u4190\u{25584}\u{28b22}\u{2558f}\u{216fc}\u{2555b}\u{25425}\u78ee\u{23103}\u{2182a}\u{23234}\u3464\u{2320f}\u{23182}\u{242c9}\u668e\u{26d24}\u666b\u4b93\u6630\u{27870}\u{21deb}\u6663\u{232d2}\u{232e1}\u661e\u{25872}\u38d1\u{2383a}\u{237bc}\u3b99\u{237a2}\u{233fe}\u74d0\u3b96\u678f\u{2462a}\u68b6\u681e\u3bc4\u6abe\u3863\u{237d5}\u{24487}\u6a33\u6a52\u6ac9\u6b05\u{21912}\u6511\u6898\u6a4c\u3bd7\u6a7a\u6b57\u{23fc0}\u{23c9a}\u93a0\u92f2\u{28bea}\u{28acb}"],["9440","\u9289\u{2801e}\u{289dc}\u9467\u6da5\u6f0b\u{249ec}\u6d67\u{23f7f}\u3d8f\u6e04\u{2403c}\u5a3d\u6e0a\u5847\u6d24\u7842\u713b\u{2431a}\u{24276}\u70f1\u7250\u7287\u7294\u{2478f}\u{24725}\u5179\u{24aa4}\u{205eb}\u747a\u{23ef8}\u{2365f}\u{24a4a}\u{24917}\u{25fe1}\u3f06\u3eb1\u{24adf}\u{28c23}\u{23f35}\u60a7\u3ef3\u74cc\u743c\u9387\u7437\u449f\u{26dea}\u4551\u7583\u3f63\u{24cd9}\u{24d06}\u3f58\u7555\u7673\u{2a5c6}\u3b19\u7468\u{28acc}\u{249ab}\u{2498e}\u3afb"],["94a1","\u3dcd\u{24a4e}\u3eff\u{249c5}\u{248f3}\u91fa\u5732\u9342\u{28ae3}\u{21864}\u50df\u{25221}\u{251e7}\u7778\u{23232}\u770e\u770f\u777b\u{24697}\u{23781}\u3a5e\u{248f0}\u7438\u749b\u3ebf\u{24aba}\u{24ac7}\u40c8\u{24a96}\u{261ae}\u9307\u{25581}\u781e\u788d\u7888\u78d2\u73d0\u7959\u{27741}\u{256e3}\u410e\u799b\u8496\u79a5\u6a2d\u{23efa}\u7a3a\u79f4\u416e\u{216e6}\u4132\u9235\u79f1\u{20d4c}\u{2498c}\u{20299}\u{23dba}\u{2176e}\u3597\u556b\u3570\u36aa\u{201d4}\u{20c0d}\u7ae2\u5a59\u{226f5}\u{25aaf}\u{25a9c}\u5a0d\u{2025b}\u78f0\u5a2a\u{25bc6}\u7afe\u41f9\u7c5d\u7c6d\u4211\u{25bb3}\u{25ebc}\u{25ea6}\u7ccd\u{249f9}\u{217b0}\u7c8e\u7c7c\u7cae\u6ab2\u7ddc\u7e07\u7dd3\u7f4e\u{26261}"],["9540","\u{2615c}\u{27b48}\u7d97\u{25e82}\u426a\u{26b75}\u{20916}\u67d6\u{2004e}\u{235cf}\u57c4\u{26412}\u{263f8}\u{24962}\u7fdd\u7b27\u{2082c}\u{25ae9}\u{25d43}\u7b0c\u{25e0e}\u99e6\u8645\u9a63\u6a1c\u{2343f}\u39e2\u{249f7}\u{265ad}\u9a1f\u{265a0}\u8480\u{27127}\u{26cd1}\u44ea\u8137\u4402\u80c6\u8109\u8142\u{267b4}\u98c3\u{26a42}\u8262\u8265\u{26a51}\u8453\u{26da7}\u8610\u{2721b}\u5a86\u417f\u{21840}\u5b2b\u{218a1}\u5ae4\u{218d8}\u86a0\u{2f9bc}\u{23d8f}\u882d\u{27422}\u5a02"],["95a1","\u886e\u4f45\u8887\u88bf\u88e6\u8965\u894d\u{25683}\u8954\u{27785}\u{27784}\u{28bf5}\u{28bd9}\u{28b9c}\u{289f9}\u3ead\u84a3\u46f5\u46cf\u37f2\u8a3d\u8a1c\u{29448}\u5f4d\u922b\u{24284}\u65d4\u7129\u70c4\u{21845}\u9d6d\u8c9f\u8ce9\u{27ddc}\u599a\u77c3\u59f0\u436e\u36d4\u8e2a\u8ea7\u{24c09}\u8f30\u8f4a\u42f4\u6c58\u6fbb\u{22321}\u489b\u6f79\u6e8b\u{217da}\u9be9\u36b5\u{2492f}\u90bb\u9097\u5571\u4906\u91bb\u9404\u{28a4b}\u4062\u{28afc}\u9427\u{28c1d}\u{28c3b}\u84e5\u8a2b\u9599\u95a7\u9597\u9596\u{28d34}\u7445\u3ec2\u{248ff}\u{24a42}\u{243ea}\u3ee7\u{23225}\u968f\u{28ee7}\u{28e66}\u{28e65}\u3ecc\u{249ed}\u{24a78}\u{23fee}\u7412\u746b\u3efc\u9741\u{290b0}"],["9640","\u6847\u4a1d\u{29093}\u{257df}\u975d\u9368\u{28989}\u{28c26}\u{28b2f}\u{263be}\u92ba\u5b11\u8b69\u493c\u73f9\u{2421b}\u979b\u9771\u9938\u{20f26}\u5dc1\u{28bc5}\u{24ab2}\u981f\u{294da}\u92f6\u{295d7}\u91e5\u44c0\u{28b50}\u{24a67}\u{28b64}\u98dc\u{28a45}\u3f00\u922a\u4925\u8414\u993b\u994d\u{27b06}\u3dfd\u999b\u4b6f\u99aa\u9a5c\u{28b65}\u{258c8}\u6a8f\u9a21\u5afe\u9a2f\u{298f1}\u4b90\u{29948}\u99bc\u4bbd\u4b97\u937d\u5872\u{21302}\u5822\u{249b8}"],["96a1","\u{214e8}\u7844\u{2271f}\u{23db8}\u68c5\u3d7d\u9458\u3927\u6150\u{22781}\u{2296b}\u6107\u9c4f\u9c53\u9c7b\u9c35\u9c10\u9b7f\u9bcf\u{29e2d}\u9b9f\u{2a1f5}\u{2a0fe}\u9d21\u4cae\u{24104}\u9e18\u4cb0\u9d0c\u{2a1b4}\u{2a0ed}\u{2a0f3}\u{2992f}\u9da5\u84bd\u{26e12}\u{26fdf}\u{26b82}\u85fc\u4533\u{26da4}\u{26e84}\u{26df0}\u8420\u85ee\u{26e00}\u{237d7}\u{26064}\u79e2\u{2359c}\u{23640}\u492d\u{249de}\u3d62\u93db\u92be\u9348\u{202bf}\u78b9\u9277\u944d\u4fe4\u3440\u9064\u{2555d}\u783d\u7854\u78b6\u784b\u{21757}\u{231c9}\u{24941}\u369a\u4f72\u6fda\u6fd9\u701e\u701e\u5414\u{241b5}\u57bb\u58f3\u578a\u9d16\u57d7\u7134\u34af\u{241ac}\u71eb\u{26c40}\u{24f97}\u5b28\u{217b5}\u{28a49}"],["9740","\u610c\u5ace\u5a0b\u42bc\u{24488}\u372c\u4b7b\u{289fc}\u93bb\u93b8\u{218d6}\u{20f1d}\u8472\u{26cc0}\u{21413}\u{242fa}\u{22c26}\u{243c1}\u5994\u{23db7}\u{26741}\u7da8\u{2615b}\u{260a4}\u{249b9}\u{2498b}\u{289fa}\u92e5\u73e2\u3ee9\u74b4\u{28b63}\u{2189f}\u3ee1\u{24ab3}\u6ad8\u73f3\u73fb\u3ed6\u{24a3e}\u{24a94}\u{217d9}\u{24a66}\u{203a7}\u{21424}\u{249e5}\u7448\u{24916}\u70a5\u{24976}\u9284\u73e6\u935f\u{204fe}\u9331\u{28ace}\u{28a16}\u9386\u{28be7}\u{255d5}\u4935\u{28a82}\u716b"],["97a1","\u{24943}\u{20cff}\u56a4\u{2061a}\u{20beb}\u{20cb8}\u5502\u79c4\u{217fa}\u7dfe\u{216c2}\u{24a50}\u{21852}\u452e\u9401\u370a\u{28ac0}\u{249ad}\u59b0\u{218bf}\u{21883}\u{27484}\u5aa1\u36e2\u{23d5b}\u36b0\u925f\u5a79\u{28a81}\u{21862}\u9374\u3ccd\u{20ab4}\u4a96\u398a\u50f4\u3d69\u3d4c\u{2139c}\u7175\u42fb\u{28218}\u6e0f\u{290e4}\u44eb\u6d57\u{27e4f}\u7067\u6caf\u3cd6\u{23fed}\u{23e2d}\u6e02\u6f0c\u3d6f\u{203f5}\u7551\u36bc\u34c8\u4680\u3eda\u4871\u59c4\u926e\u493e\u8f41\u{28c1c}\u{26bc0}\u5812\u57c8\u36d6\u{21452}\u70fe\u{24362}\u{24a71}\u{22fe3}\u{212b0}\u{223bd}\u68b9\u6967\u{21398}\u{234e5}\u{27bf4}\u{236df}\u{28a83}\u{237d6}\u{233fa}\u{24c9f}\u6a1a\u{236ad}\u{26cb7}\u843e\u44df\u44ce"],["9840","\u{26d26}\u{26d51}\u{26c82}\u{26fde}\u6f17\u{27109}\u833d\u{2173a}\u83ed\u{26c80}\u{27053}\u{217db}\u5989\u5a82\u{217b3}\u5a61\u5a71\u{21905}\u{241fc}\u372d\u59ef\u{2173c}\u36c7\u718e\u9390\u669a\u{242a5}\u5a6e\u5a2b\u{24293}\u6a2b\u{23ef9}\u{27736}\u{2445b}\u{242ca}\u711d\u{24259}\u{289e1}\u4fb0\u{26d28}\u5cc2\u{244ce}\u{27e4d}\u{243bd}\u6a0c\u{24256}\u{21304}\u70a6\u7133\u{243e9}\u3da5\u6cdf\u{2f825}\u{24a4f}\u7e65\u59eb\u5d2f\u3df3\u5f5c\u{24a5d}\u{217df}\u7da4\u8426"],["98a1","\u5485\u{23afa}\u{23300}\u{20214}\u577e\u{208d5}\u{20619}\u3fe5\u{21f9e}\u{2a2b6}\u7003\u{2915b}\u5d70\u738f\u7cd3\u{28a59}\u{29420}\u4fc8\u7fe7\u72cd\u7310\u{27af4}\u7338\u7339\u{256f6}\u7341\u7348\u3ea9\u{27b18}\u906c\u71f5\u{248f2}\u73e1\u81f6\u3eca\u770c\u3ed1\u6ca2\u56fd\u7419\u741e\u741f\u3ee2\u3ef0\u3ef4\u3efa\u74d3\u3f0e\u3f53\u7542\u756d\u7572\u758d\u3f7c\u75c8\u75dc\u3fc0\u764d\u3fd7\u7674\u3fdc\u767a\u{24f5c}\u7188\u5623\u8980\u5869\u401d\u7743\u4039\u6761\u4045\u35db\u7798\u406a\u406f\u5c5e\u77be\u77cb\u58f2\u7818\u70b9\u781c\u40a8\u7839\u7847\u7851\u7866\u8448\u{25535}\u7933\u6803\u7932\u4103"],["9940","\u4109\u7991\u7999\u8fbb\u7a06\u8fbc\u4167\u7a91\u41b2\u7abc\u8279\u41c4\u7acf\u7adb\u41cf\u4e21\u7b62\u7b6c\u7b7b\u7c12\u7c1b\u4260\u427a\u7c7b\u7c9c\u428c\u7cb8\u4294\u7ced\u8f93\u70c0\u{20ccf}\u7dcf\u7dd4\u7dd0\u7dfd\u7fae\u7fb4\u729f\u4397\u8020\u8025\u7b39\u802e\u8031\u8054\u3dcc\u57b4\u70a0\u80b7\u80e9\u43ed\u810c\u732a\u810e\u8112\u7560\u8114\u4401\u3b39\u8156\u8159\u815a"],["99a1","\u4413\u583a\u817c\u8184\u4425\u8193\u442d\u81a5\u57ef\u81c1\u81e4\u8254\u448f\u82a6\u8276\u82ca\u82d8\u82ff\u44b0\u8357\u9669\u698a\u8405\u70f5\u8464\u60e3\u8488\u4504\u84be\u84e1\u84f8\u8510\u8538\u8552\u453b\u856f\u8570\u85e0\u4577\u8672\u8692\u86b2\u86ef\u9645\u878b\u4606\u4617\u88ae\u88ff\u8924\u8947\u8991\u{27967}\u8a29\u8a38\u8a94\u8ab4\u8c51\u8cd4\u8cf2\u8d1c\u4798\u585f\u8dc3\u47ed\u4eee\u8e3a\u55d8\u5754\u8e71\u55f5\u8eb0\u4837\u8ece\u8ee2\u8ee4\u8eed\u8ef2\u8fb7\u8fc1\u8fca\u8fcc\u9033\u99c4\u48ad\u98e0\u9213\u491e\u9228\u9258\u926b\u92b1\u92ae\u92bf"],["9a40","\u92e3\u92eb\u92f3\u92f4\u92fd\u9343\u9384\u93ad\u4945\u4951\u9ebf\u9417\u5301\u941d\u942d\u943e\u496a\u9454\u9479\u952d\u95a2\u49a7\u95f4\u9633\u49e5\u67a0\u4a24\u9740\u4a35\u97b2\u97c2\u5654\u4ae4\u60e8\u98b9\u4b19\u98f1\u5844\u990e\u9919\u51b4\u991c\u9937\u9942\u995d\u9962\u4b70\u99c5\u4b9d\u9a3c\u9b0f\u7a83\u9b69\u9b81\u9bdd\u9bf1\u9bf4\u4c6d\u9c20\u376f\u{21bc2}\u9d49\u9c3a"],["9aa1","\u9efe\u5650\u9d93\u9dbd\u9dc0\u9dfc\u94f6\u8fb6\u9e7b\u9eac\u9eb1\u9ebd\u9ec6\u94dc\u9ee2\u9ef1\u9ef8\u7ac8\u9f44\u{20094}\u{202b7}\u{203a0}\u691a\u94c3\u59ac\u{204d7}\u5840\u94c1\u37b9\u{205d5}\u{20615}\u{20676}\u{216ba}\u5757\u7173\u{20ac2}\u{20acd}\u{20bbf}\u546a\u{2f83b}\u{20bcb}\u549e\u{20bfb}\u{20c3b}\u{20c53}\u{20c65}\u{20c7c}\u60e7\u{20c8d}\u567a\u{20cb5}\u{20cdd}\u{20ced}\u{20d6f}\u{20db2}\u{20dc8}\u6955\u9c2f\u87a5\u{20e04}\u{20e0e}\u{20ed7}\u{20f90}\u{20f2d}\u{20e73}\u5c20\u{20fbc}\u5e0b\u{2105c}\u{2104f}\u{21076}\u671e\u{2107b}\u{21088}\u{21096}\u3647\u{210bf}\u{210d3}\u{2112f}\u{2113b}\u5364\u84ad\u{212e3}\u{21375}\u{21336}\u8b81\u{21577}\u{21619}\u{217c3}\u{217c7}\u4e78\u70bb\u{2182d}\u{2196a}"],["9b40","\u{21a2d}\u{21a45}\u{21c2a}\u{21c70}\u{21cac}\u{21ec8}\u62c3\u{21ed5}\u{21f15}\u7198\u6855\u{22045}\u69e9\u36c8\u{2227c}\u{223d7}\u{223fa}\u{2272a}\u{22871}\u{2294f}\u82fd\u{22967}\u{22993}\u{22ad5}\u89a5\u{22ae8}\u8fa0\u{22b0e}\u97b8\u{22b3f}\u9847\u9abd\u{22c4c}"],["9b62","\u{22c88}\u{22cb7}\u{25be8}\u{22d08}\u{22d12}\u{22db7}\u{22d95}\u{22e42}\u{22f74}\u{22fcc}\u{23033}\u{23066}\u{2331f}\u{233de}\u5fb1\u6648\u66bf\u{27a79}\u{23567}\u{235f3}\u7201\u{249ba}\u77d7\u{2361a}\u{23716}\u7e87\u{20346}\u58b5\u670e"],["9ba1","\u6918\u{23aa7}\u{27657}\u{25fe2}\u{23e11}\u{23eb9}\u{275fe}\u{2209a}\u48d0\u4ab8\u{24119}\u{28a9a}\u{242ee}\u{2430d}\u{2403b}\u{24334}\u{24396}\u{24a45}\u{205ca}\u51d2\u{20611}\u599f\u{21ea8}\u3bbe\u{23cff}\u{24404}\u{244d6}\u5788\u{24674}\u399b\u{2472f}\u{285e8}\u{299c9}\u3762\u{221c3}\u8b5e\u{28b4e}\u99d6\u{24812}\u{248fb}\u{24a15}\u7209\u{24ac0}\u{20c78}\u5965\u{24ea5}\u{24f86}\u{20779}\u8eda\u{2502c}\u528f\u573f\u7171\u{25299}\u{25419}\u{23f4a}\u{24aa7}\u55bc\u{25446}\u{2546e}\u{26b52}\u91d4\u3473\u{2553f}\u{27632}\u{2555e}\u4718\u{25562}\u{25566}\u{257c7}\u{2493f}\u{2585d}\u5066\u34fb\u{233cc}\u60de\u{25903}\u477c\u{28948}\u{25aae}\u{25b89}\u{25c06}\u{21d90}\u57a1\u7151\u6fb6\u{26102}\u{27c12}\u9056\u{261b2}\u{24f9a}\u8b62\u{26402}\u{2644a}"],["9c40","\u5d5b\u{26bf7}\u8f36\u{26484}\u{2191c}\u8aea\u{249f6}\u{26488}\u{23fef}\u{26512}\u4bc0\u{265bf}\u{266b5}\u{2271b}\u9465\u{257e1}\u6195\u5a27\u{2f8cd}\u4fbb\u56b9\u{24521}\u{266fc}\u4e6a\u{24934}\u9656\u6d8f\u{26cbd}\u3618\u8977\u{26799}\u{2686e}\u{26411}\u{2685e}\u71df\u{268c7}\u7b42\u{290c0}\u{20a11}\u{26926}\u9104\u{26939}\u7a45\u9df0\u{269fa}\u9a26\u{26a2d}\u365f\u{26469}\u{20021}\u7983\u{26a34}\u{26b5b}\u5d2c\u{23519}\u83cf\u{26b9d}\u46d0\u{26ca4}\u753b\u8865\u{26dae}\u58b6"],["9ca1","\u371c\u{2258d}\u{2704b}\u{271cd}\u3c54\u{27280}\u{27285}\u9281\u{2217a}\u{2728b}\u9330\u{272e6}\u{249d0}\u6c39\u949f\u{27450}\u{20ef8}\u8827\u88f5\u{22926}\u{28473}\u{217b1}\u6eb8\u{24a2a}\u{21820}\u39a4\u36b9\u5c10\u79e3\u453f\u66b6\u{29cad}\u{298a4}\u8943\u{277cc}\u{27858}\u56d6\u40df\u{2160a}\u39a1\u{2372f}\u{280e8}\u{213c5}\u71ad\u8366\u{279dd}\u{291a8}\u5a67\u4cb7\u{270af}\u{289ab}\u{279fd}\u{27a0a}\u{27b0b}\u{27d66}\u{2417a}\u7b43\u797e\u{28009}\u6fb5\u{2a2df}\u6a03\u{28318}\u53a2\u{26e07}\u93bf\u6836\u975d\u{2816f}\u{28023}\u{269b5}\u{213ed}\u{2322f}\u{28048}\u5d85\u{28c30}\u{28083}\u5715\u9823\u{28949}\u5dab\u{24988}\u65be\u69d5\u53d2\u{24aa5}\u{23f81}\u3c11\u6736\u{28090}\u{280f4}\u{2812e}\u{21fa1}\u{2814f}"],["9d40","\u{28189}\u{281af}\u{2821a}\u{28306}\u{2832f}\u{2838a}\u35ca\u{28468}\u{286aa}\u48fa\u63e6\u{28956}\u7808\u9255\u{289b8}\u43f2\u{289e7}\u43df\u{289e8}\u{28b46}\u{28bd4}\u59f8\u{28c09}\u8f0b\u{28fc5}\u{290ec}\u7b51\u{29110}\u{2913c}\u3df7\u{2915e}\u{24aca}\u8fd0\u728f\u568b\u{294e7}\u{295e9}\u{295b0}\u{295b8}\u{29732}\u{298d1}\u{29949}\u{2996a}\u{299c3}\u{29a28}\u{29b0e}\u{29d5a}\u{29d9b}\u7e9f\u{29ef8}\u{29f23}\u4ca4\u9547\u{2a293}\u71a2\u{2a2ff}\u4d91\u9012\u{2a5cb}\u4d9c\u{20c9c}\u8fbe\u55c1"],["9da1","\u8fba\u{224b0}\u8fb9\u{24a93}\u4509\u7e7f\u6f56\u6ab1\u4eea\u34e4\u{28b2c}\u{2789d}\u373a\u8e80\u{217f5}\u{28024}\u{28b6c}\u{28b99}\u{27a3e}\u{266af}\u3deb\u{27655}\u{23cb7}\u{25635}\u{25956}\u4e9a\u{25e81}\u{26258}\u56bf\u{20e6d}\u8e0e\u5b6d\u{23e88}\u{24c9e}\u63de\u62d0\u{217f6}\u{2187b}\u6530\u562d\u{25c4a}\u541a\u{25311}\u3dc6\u{29d98}\u4c7d\u5622\u561e\u7f49\u{25ed8}\u5975\u{23d40}\u8770\u4e1c\u{20fea}\u{20d49}\u{236ba}\u8117\u9d5e\u8d18\u763b\u9c45\u764e\u77b9\u9345\u5432\u8148\u82f7\u5625\u8132\u8418\u80bd\u55ea\u7962\u5643\u5416\u{20e9d}\u35ce\u5605\u55f1\u66f1\u{282e2}\u362d\u7534\u55f0\u55ba\u5497\u5572\u{20c41}\u{20c96}\u5ed0\u{25148}\u{20e76}\u{22c62}"],["9e40","\u{20ea2}\u9eab\u7d5a\u55de\u{21075}\u629d\u976d\u5494\u8ccd\u71f6\u9176\u63fc\u63b9\u63fe\u5569\u{22b43}\u9c72\u{22eb3}\u519a\u34df\u{20da7}\u51a7\u544d\u551e\u5513\u7666\u8e2d\u{2688a}\u75b1\u80b6\u8804\u8786\u88c7\u81b6\u841c\u{210c1}\u44ec\u7304\u{24706}\u5b90\u830b\u{26893}\u567b\u{226f4}\u{27d2f}\u{241a3}\u{27d73}\u{26ed0}\u{272b6}\u9170\u{211d9}\u9208\u{23cfc}\u{2a6a9}\u{20eac}\u{20ef9}\u7266\u{21ca2}\u474e\u{24fc2}\u{27ff9}\u{20feb}\u40fa"],["9ea1","\u9c5d\u651f\u{22da0}\u48f3\u{247e0}\u{29d7c}\u{20fec}\u{20e0a}\u6062\u{275a3}\u{20fed}"],["9ead","\u{26048}\u{21187}\u71a3\u7e8e\u9d50\u4e1a\u4e04\u3577\u5b0d\u6cb2\u5367\u36ac\u39dc\u537d\u36a5\u{24618}\u589a\u{24b6e}\u822d\u544b\u57aa\u{25a95}\u{20979}"],["9ec5","\u3a52\u{22465}\u7374\u{29eac}\u4d09\u9bed\u{23cfe}\u{29f30}\u4c5b\u{24fa9}\u{2959e}\u{29fde}\u845c\u{23db6}\u{272b2}\u{267b3}\u{23720}\u632e\u7d25\u{23ef7}\u{23e2c}\u3a2a\u9008\u52cc\u3e74\u367a\u45e9\u{2048e}\u7640\u5af0\u{20eb6}\u787a\u{27f2e}\u58a7\u40bf\u567c\u9b8b\u5d74\u7654\u{2a434}\u9e85\u4ce1\u75f9\u37fb\u6119\u{230da}\u{243f2}"],["9ef5","\u565d\u{212a9}\u57a7\u{24963}\u{29e06}\u5234\u{270ae}\u35ad\u6c4a\u9d7c"],["9f40","\u7c56\u9b39\u57de\u{2176c}\u5c53\u64d3\u{294d0}\u{26335}\u{27164}\u86ad\u{20d28}\u{26d22}\u{24ae2}\u{20d71}"],["9f4f","\u51fe\u{21f0f}\u5d8e\u9703\u{21dd1}\u9e81\u904c\u7b1f\u9b02\u5cd1\u7ba3\u6268\u6335\u9aff\u7bcf\u9b2a\u7c7e\u9b2e\u7c42\u7c86\u9c15\u7bfc\u9b09\u9f17\u9c1b\u{2493e}\u9f5a\u5573\u5bc3\u4ffd\u9e98\u4ff2\u5260\u3e06\u52d1\u5767\u5056\u59b7\u5e12\u97c8\u9dab\u8f5c\u5469\u97b4\u9940\u97ba\u532c\u6130"],["9fa1","\u692c\u53da\u9c0a\u9d02\u4c3b\u9641\u6980\u50a6\u7546\u{2176d}\u99da\u5273"],["9fae","\u9159\u9681\u915c"],["9fb2","\u9151\u{28e97}\u637f\u{26d23}\u6aca\u5611\u918e\u757a\u6285\u{203fc}\u734f\u7c70\u{25c21}\u{23cfd}"],["9fc1","\u{24919}\u76d6\u9b9d\u4e2a\u{20cd4}\u83be\u8842"],["9fc9","\u5c4a\u69c0\u50ed\u577a\u521f\u5df5\u4ece\u6c31\u{201f2}\u4f39\u549c\u54da\u529a\u8d82\u35fe\u5f0c\u35f3"],["9fdb","\u6b52\u917c\u9fa5\u9b97\u982e\u98b4\u9aba\u9ea8\u9e84\u717a\u7b14"],["9fe7","\u6bfa\u8818\u7f78"],["9feb","\u5620\u{2a64a}\u8e77\u9f53"],["9ff0","\u8dd4\u8e4f\u9e1c\u8e01\u6282\u{2837d}\u8e28\u8e75\u7ad3\u{24a77}\u7a3e\u78d8\u6cea\u8a67\u7607"],["a040","\u{28a5a}\u9f26\u6cce\u87d6\u75c3\u{2a2b2}\u7853\u{2f840}\u8d0c\u72e2\u7371\u8b2d\u7302\u74f1\u8ceb\u{24abb}\u862f\u5fba\u88a0\u44b7"],["a055","\u{2183b}\u{26e05}"],["a058","\u8a7e\u{2251b}"],["a05b","\u60fd\u7667\u9ad7\u9d44\u936e\u9b8f\u87f5"],["a063","\u880f\u8cf7\u732c\u9721\u9bb0\u35d6\u72b2\u4c07\u7c51\u994a\u{26159}\u6159\u4c04\u9e96\u617d"],["a073","\u575f\u616f\u62a6\u6239\u62ce\u3a5c\u61e2\u53aa\u{233f5}\u6364\u6802\u35d2"],["a0a1","\u5d57\u{28bc2}\u8fda\u{28e39}"],["a0a6","\u50d9\u{21d46}\u7906\u5332\u9638\u{20f3b}\u4065"],["a0ae","\u77fe"],["a0b0","\u7cc2\u{25f1a}\u7cda\u7a2d\u8066\u8063\u7d4d\u7505\u74f2\u8994\u821a\u670c\u8062\u{27486}\u805b\u74f0\u8103\u7724\u8989\u{267cc}\u7553\u{26ed1}\u87a9\u87ce\u81c8\u878c\u8a49\u8cad\u8b43\u772b\u74f8\u84da\u3635\u69b2\u8da6"],["a0d4","\u89a9\u7468\u6db9\u87c1\u{24011}\u74e7\u3ddb\u7176\u60a4\u619c\u3cd1\u7162\u6077"],["a0e2","\u7f71\u{28b2d}\u7250\u60e9\u4b7e\u5220\u3c18\u{23cc7}\u{25ed7}\u{27656}\u{25531}\u{21944}\u{212fe}\u{29903}\u{26ddc}\u{270ad}\u5cc1\u{261ad}\u{28a0f}\u{23677}\u{200ee}\u{26846}\u{24f0e}\u4562\u5b1f\u{2634c}\u9f50\u9ea6\u{2626b}"],["a3c0","\u2400",31,"\u2421"],["c6a1","\u2460",9,"\u2474",9,"\u2170",9,"\u4e36\u4e3f\u4e85\u4ea0\u5182\u5196\u51ab\u52f9\u5338\u5369\u53b6\u590a\u5b80\u5ddb\u2f33\u5e7f\u5ef4\u5f50\u5f61\u6534\u65e0\u7592\u7676\u8fb5\u96b6\xa8\u02c6\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\uff3b\uff3d\u273d\u3041",23],["c740","\u3059",58,"\u30a1\u30a2\u30a3\u30a4"],["c7a1","\u30a5",81,"\u0410",5,"\u0401\u0416",4],["c840","\u041b",26,"\u0451\u0436",25,"\u21e7\u21b8\u21b9\u31cf\u{200cc}\u4e5a\u{2008a}\u5202\u4491"],["c8a1","\u9fb0\u5188\u9fb1\u{27607}"],["c8cd","\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u309b\u309c\u2e80\u2e84\u2e86\u2e87\u2e88\u2e8a\u2e8c\u2e8d\u2e95\u2e9c\u2e9d\u2ea5\u2ea7\u2eaa\u2eac\u2eae\u2eb6\u2ebc\u2ebe\u2ec6\u2eca\u2ecc\u2ecd\u2ecf\u2ed6\u2ed7\u2ede\u2ee3"],["c8f5","\u0283\u0250\u025b\u0254\u0275\u0153\xf8\u014b\u028a\u026a"],["f9fe","\uffed"],["fa40","\u{20547}\u92db\u{205df}\u{23fc5}\u854c\u42b5\u73ef\u51b5\u3649\u{24942}\u{289e4}\u9344\u{219db}\u82ee\u{23cc8}\u783c\u6744\u62df\u{24933}\u{289aa}\u{202a0}\u{26bb3}\u{21305}\u4fab\u{224ed}\u5008\u{26d29}\u{27a84}\u{23600}\u{24ab1}\u{22513}\u5029\u{2037e}\u5fa4\u{20380}\u{20347}\u6edb\u{2041f}\u507d\u5101\u347a\u510e\u986c\u3743\u8416\u{249a4}\u{20487}\u5160\u{233b4}\u516a\u{20bff}\u{220fc}\u{202e5}\u{22530}\u{2058e}\u{23233}\u{21983}\u5b82\u877d\u{205b3}\u{23c99}\u51b2\u51b8"],["faa1","\u9d34\u51c9\u51cf\u51d1\u3cdc\u51d3\u{24aa6}\u51b3\u51e2\u5342\u51ed\u83cd\u693e\u{2372d}\u5f7b\u520b\u5226\u523c\u52b5\u5257\u5294\u52b9\u52c5\u7c15\u8542\u52e0\u860d\u{26b13}\u5305\u{28ade}\u5549\u6ed9\u{23f80}\u{20954}\u{23fec}\u5333\u5344\u{20be2}\u6ccb\u{21726}\u681b\u73d5\u604a\u3eaa\u38cc\u{216e8}\u71dd\u44a2\u536d\u5374\u{286ab}\u537e\u537f\u{21596}\u{21613}\u77e6\u5393\u{28a9b}\u53a0\u53ab\u53ae\u73a7\u{25772}\u3f59\u739c\u53c1\u53c5\u6c49\u4e49\u57fe\u53d9\u3aab\u{20b8f}\u53e0\u{23feb}\u{22da3}\u53f6\u{20c77}\u5413\u7079\u552b\u6657\u6d5b\u546d\u{26b53}\u{20d74}\u555d\u548f\u54a4\u47a6\u{2170d}\u{20edd}\u3db4\u{20d4d}"],["fb40","\u{289bc}\u{22698}\u5547\u4ced\u542f\u7417\u5586\u55a9\u5605\u{218d7}\u{2403a}\u4552\u{24435}\u66b3\u{210b4}\u5637\u66cd\u{2328a}\u66a4\u66ad\u564d\u564f\u78f1\u56f1\u9787\u53fe\u5700\u56ef\u56ed\u{28b66}\u3623\u{2124f}\u5746\u{241a5}\u6c6e\u708b\u5742\u36b1\u{26c7e}\u57e6\u{21416}\u5803\u{21454}\u{24363}\u5826\u{24bf5}\u585c\u58aa\u3561\u58e0\u58dc\u{2123c}\u58fb\u5bff\u5743\u{2a150}\u{24278}\u93d3\u35a1\u591f\u68a6\u36c3\u6e59"],["fba1","\u{2163e}\u5a24\u5553\u{21692}\u8505\u59c9\u{20d4e}\u{26c81}\u{26d2a}\u{217dc}\u59d9\u{217fb}\u{217b2}\u{26da6}\u6d71\u{21828}\u{216d5}\u59f9\u{26e45}\u5aab\u5a63\u36e6\u{249a9}\u5a77\u3708\u5a96\u7465\u5ad3\u{26fa1}\u{22554}\u3d85\u{21911}\u3732\u{216b8}\u5e83\u52d0\u5b76\u6588\u5b7c\u{27a0e}\u4004\u485d\u{20204}\u5bd5\u6160\u{21a34}\u{259cc}\u{205a5}\u5bf3\u5b9d\u4d10\u5c05\u{21b44}\u5c13\u73ce\u5c14\u{21ca5}\u{26b28}\u5c49\u48dd\u5c85\u5ce9\u5cef\u5d8b\u{21df9}\u{21e37}\u5d10\u5d18\u5d46\u{21ea4}\u5cba\u5dd7\u82fc\u382d\u{24901}\u{22049}\u{22173}\u8287\u3836\u3bc2\u5e2e\u6a8a\u5e75\u5e7a\u{244bc}\u{20cd3}\u53a6\u4eb7\u5ed0\u53a8\u{21771}\u5e09\u5ef4\u{28482}"],["fc40","\u5ef9\u5efb\u38a0\u5efc\u683e\u941b\u5f0d\u{201c1}\u{2f894}\u3ade\u48ae\u{2133a}\u5f3a\u{26888}\u{223d0}\u5f58\u{22471}\u5f63\u97bd\u{26e6e}\u5f72\u9340\u{28a36}\u5fa7\u5db6\u3d5f\u{25250}\u{21f6a}\u{270f8}\u{22668}\u91d6\u{2029e}\u{28a29}\u6031\u6685\u{21877}\u3963\u3dc7\u3639\u5790\u{227b4}\u7971\u3e40\u609e\u60a4\u60b3\u{24982}\u{2498f}\u{27a53}\u74a4\u50e1\u5aa0\u6164\u8424\u6142\u{2f8a6}\u{26ed2}\u6181\u51f4\u{20656}\u6187\u5baa\u{23fb7}"],["fca1","\u{2285f}\u61d3\u{28b9d}\u{2995d}\u61d0\u3932\u{22980}\u{228c1}\u6023\u615c\u651e\u638b\u{20118}\u62c5\u{21770}\u62d5\u{22e0d}\u636c\u{249df}\u3a17\u6438\u63f8\u{2138e}\u{217fc}\u6490\u6f8a\u{22e36}\u9814\u{2408c}\u{2571d}\u64e1\u64e5\u947b\u3a66\u643a\u3a57\u654d\u6f16\u{24a28}\u{24a23}\u6585\u656d\u655f\u{2307e}\u65b5\u{24940}\u4b37\u65d1\u40d8\u{21829}\u65e0\u65e3\u5fdf\u{23400}\u6618\u{231f7}\u{231f8}\u6644\u{231a4}\u{231a5}\u664b\u{20e75}\u6667\u{251e6}\u6673\u6674\u{21e3d}\u{23231}\u{285f4}\u{231c8}\u{25313}\u77c5\u{228f7}\u99a4\u6702\u{2439c}\u{24a21}\u3b2b\u69fa\u{237c2}\u675e\u6767\u6762\u{241cd}\u{290ed}\u67d7\u44e9\u6822\u6e50\u923c\u6801\u{233e6}\u{26da0}\u685d"],["fd40","\u{2346f}\u69e1\u6a0b\u{28adf}\u6973\u68c3\u{235cd}\u6901\u6900\u3d32\u3a01\u{2363c}\u3b80\u67ac\u6961\u{28a4a}\u42fc\u6936\u6998\u3ba1\u{203c9}\u8363\u5090\u69f9\u{23659}\u{2212a}\u6a45\u{23703}\u6a9d\u3bf3\u67b1\u6ac8\u{2919c}\u3c0d\u6b1d\u{20923}\u60de\u6b35\u6b74\u{227cd}\u6eb5\u{23adb}\u{203b5}\u{21958}\u3740\u5421\u{23b5a}\u6be1\u{23efc}\u6bdc\u6c37\u{2248b}\u{248f1}\u{26b51}\u6c5a\u8226\u6c79\u{23dbc}\u44c5\u{23dbd}\u{241a4}\u{2490c}\u{24900}"],["fda1","\u{23cc9}\u36e5\u3ceb\u{20d32}\u9b83\u{231f9}\u{22491}\u7f8f\u6837\u{26d25}\u{26da1}\u{26deb}\u6d96\u6d5c\u6e7c\u6f04\u{2497f}\u{24085}\u{26e72}\u8533\u{26f74}\u51c7\u6c9c\u6e1d\u842e\u{28b21}\u6e2f\u{23e2f}\u7453\u{23f82}\u79cc\u6e4f\u5a91\u{2304b}\u6ff8\u370d\u6f9d\u{23e30}\u6efa\u{21497}\u{2403d}\u4555\u93f0\u6f44\u6f5c\u3d4e\u6f74\u{29170}\u3d3b\u6f9f\u{24144}\u6fd3\u{24091}\u{24155}\u{24039}\u{23ff0}\u{23fb4}\u{2413f}\u51df\u{24156}\u{24157}\u{24140}\u{261dd}\u704b\u707e\u70a7\u7081\u70cc\u70d5\u70d6\u70df\u4104\u3de8\u71b4\u7196\u{24277}\u712b\u7145\u5a88\u714a\u716e\u5c9c\u{24365}\u714f\u9362\u{242c1}\u712c\u{2445a}\u{24a27}\u{24a22}\u71ba\u{28be8}\u70bd\u720e"],["fe40","\u9442\u7215\u5911\u9443\u7224\u9341\u{25605}\u722e\u7240\u{24974}\u68bd\u7255\u7257\u3e55\u{23044}\u680d\u6f3d\u7282\u732a\u732b\u{24823}\u{2882b}\u48ed\u{28804}\u7328\u732e\u73cf\u73aa\u{20c3a}\u{26a2e}\u73c9\u7449\u{241e2}\u{216e7}\u{24a24}\u6623\u36c5\u{249b7}\u{2498d}\u{249fb}\u73f7\u7415\u6903\u{24a26}\u7439\u{205c3}\u3ed7\u745c\u{228ad}\u7460\u{28eb2}\u7447\u73e4\u7476\u83b9\u746c\u3730\u7474\u93f1\u6a2c\u7482\u4953\u{24a8c}"],["fea1","\u{2415f}\u{24a79}\u{28b8f}\u5b46\u{28c03}\u{2189e}\u74c8\u{21988}\u750e\u74e9\u751e\u{28ed9}\u{21a4b}\u5bd7\u{28eac}\u9385\u754d\u754a\u7567\u756e\u{24f82}\u3f04\u{24d13}\u758e\u745d\u759e\u75b4\u7602\u762c\u7651\u764f\u766f\u7676\u{263f5}\u7690\u81ef\u37f8\u{26911}\u{2690e}\u76a1\u76a5\u76b7\u76cc\u{26f9f}\u8462\u{2509d}\u{2517d}\u{21e1c}\u771e\u7726\u7740\u64af\u{25220}\u7758\u{232ac}\u77af\u{28964}\u{28968}\u{216c1}\u77f4\u7809\u{21376}\u{24a12}\u68ca\u78af\u78c7\u78d3\u96a5\u792e\u{255e0}\u78d7\u7934\u78b1\u{2760c}\u8fb8\u8884\u{28b2b}\u{26083}\u{2261c}\u7986\u8900\u6902\u7980\u{25857}\u799d\u{27b39}\u793c\u79a9\u6e2a\u{27126}\u3ea8\u79c6\u{2910d}\u79d4"]]')},3336:function(T){"use strict";T.exports=JSON.parse('[["0","\\u0000",127,"\u20ac"],["8140","\u4e02\u4e04\u4e05\u4e06\u4e0f\u4e12\u4e17\u4e1f\u4e20\u4e21\u4e23\u4e26\u4e29\u4e2e\u4e2f\u4e31\u4e33\u4e35\u4e37\u4e3c\u4e40\u4e41\u4e42\u4e44\u4e46\u4e4a\u4e51\u4e55\u4e57\u4e5a\u4e5b\u4e62\u4e63\u4e64\u4e65\u4e67\u4e68\u4e6a",5,"\u4e72\u4e74",9,"\u4e7f",6,"\u4e87\u4e8a"],["8180","\u4e90\u4e96\u4e97\u4e99\u4e9c\u4e9d\u4e9e\u4ea3\u4eaa\u4eaf\u4eb0\u4eb1\u4eb4\u4eb6\u4eb7\u4eb8\u4eb9\u4ebc\u4ebd\u4ebe\u4ec8\u4ecc\u4ecf\u4ed0\u4ed2\u4eda\u4edb\u4edc\u4ee0\u4ee2\u4ee6\u4ee7\u4ee9\u4eed\u4eee\u4eef\u4ef1\u4ef4\u4ef8\u4ef9\u4efa\u4efc\u4efe\u4f00\u4f02",6,"\u4f0b\u4f0c\u4f12",4,"\u4f1c\u4f1d\u4f21\u4f23\u4f28\u4f29\u4f2c\u4f2d\u4f2e\u4f31\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e",4,"\u4f44\u4f45\u4f47",5,"\u4f52\u4f54\u4f56\u4f61\u4f62\u4f66\u4f68\u4f6a\u4f6b\u4f6d\u4f6e\u4f71\u4f72\u4f75\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f80\u4f81\u4f82\u4f85\u4f86\u4f87\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f95\u4f96\u4f98\u4f99\u4f9a\u4f9c\u4f9e\u4f9f\u4fa1\u4fa2"],["8240","\u4fa4\u4fab\u4fad\u4fb0",4,"\u4fb6",8,"\u4fc0\u4fc1\u4fc2\u4fc6\u4fc7\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fd2",4,"\u4fd9\u4fdb\u4fe0\u4fe2\u4fe4\u4fe5\u4fe7\u4feb\u4fec\u4ff0\u4ff2\u4ff4\u4ff5\u4ff6\u4ff7\u4ff9\u4ffb\u4ffc\u4ffd\u4fff",11],["8280","\u500b\u500e\u5010\u5011\u5013\u5015\u5016\u5017\u501b\u501d\u501e\u5020\u5022\u5023\u5024\u5027\u502b\u502f",10,"\u503b\u503d\u503f\u5040\u5041\u5042\u5044\u5045\u5046\u5049\u504a\u504b\u504d\u5050",4,"\u5056\u5057\u5058\u5059\u505b\u505d",7,"\u5066",5,"\u506d",8,"\u5078\u5079\u507a\u507c\u507d\u5081\u5082\u5083\u5084\u5086\u5087\u5089\u508a\u508b\u508c\u508e",20,"\u50a4\u50a6\u50aa\u50ab\u50ad",4,"\u50b3",6,"\u50bc"],["8340","\u50bd",17,"\u50d0",5,"\u50d7\u50d8\u50d9\u50db",10,"\u50e8\u50e9\u50ea\u50eb\u50ef\u50f0\u50f1\u50f2\u50f4\u50f6",4,"\u50fc",9,"\u5108"],["8380","\u5109\u510a\u510c",5,"\u5113",13,"\u5122",28,"\u5142\u5147\u514a\u514c\u514e\u514f\u5150\u5152\u5153\u5157\u5158\u5159\u515b\u515d",4,"\u5163\u5164\u5166\u5167\u5169\u516a\u516f\u5172\u517a\u517e\u517f\u5183\u5184\u5186\u5187\u518a\u518b\u518e\u518f\u5190\u5191\u5193\u5194\u5198\u519a\u519d\u519e\u519f\u51a1\u51a3\u51a6",4,"\u51ad\u51ae\u51b4\u51b8\u51b9\u51ba\u51be\u51bf\u51c1\u51c2\u51c3\u51c5\u51c8\u51ca\u51cd\u51ce\u51d0\u51d2",5],["8440","\u51d8\u51d9\u51da\u51dc\u51de\u51df\u51e2\u51e3\u51e5",5,"\u51ec\u51ee\u51f1\u51f2\u51f4\u51f7\u51fe\u5204\u5205\u5209\u520b\u520c\u520f\u5210\u5213\u5214\u5215\u521c\u521e\u521f\u5221\u5222\u5223\u5225\u5226\u5227\u522a\u522c\u522f\u5231\u5232\u5234\u5235\u523c\u523e\u5244",5,"\u524b\u524e\u524f\u5252\u5253\u5255\u5257\u5258"],["8480","\u5259\u525a\u525b\u525d\u525f\u5260\u5262\u5263\u5264\u5266\u5268\u526b\u526c\u526d\u526e\u5270\u5271\u5273",9,"\u527e\u5280\u5283",4,"\u5289",6,"\u5291\u5292\u5294",6,"\u529c\u52a4\u52a5\u52a6\u52a7\u52ae\u52af\u52b0\u52b4",9,"\u52c0\u52c1\u52c2\u52c4\u52c5\u52c6\u52c8\u52ca\u52cc\u52cd\u52ce\u52cf\u52d1\u52d3\u52d4\u52d5\u52d7\u52d9",5,"\u52e0\u52e1\u52e2\u52e3\u52e5",10,"\u52f1",7,"\u52fb\u52fc\u52fd\u5301\u5302\u5303\u5304\u5307\u5309\u530a\u530b\u530c\u530e"],["8540","\u5311\u5312\u5313\u5314\u5318\u531b\u531c\u531e\u531f\u5322\u5324\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u532f",9,"\u533c\u533d\u5340\u5342\u5344\u5346\u534b\u534c\u534d\u5350\u5354\u5358\u5359\u535b\u535d\u5365\u5368\u536a\u536c\u536d\u5372\u5376\u5379\u537b\u537c\u537d\u537e\u5380\u5381\u5383\u5387\u5388\u538a\u538e\u538f"],["8580","\u5390",4,"\u5396\u5397\u5399\u539b\u539c\u539e\u53a0\u53a1\u53a4\u53a7\u53aa\u53ab\u53ac\u53ad\u53af",6,"\u53b7\u53b8\u53b9\u53ba\u53bc\u53bd\u53be\u53c0\u53c3",4,"\u53ce\u53cf\u53d0\u53d2\u53d3\u53d5\u53da\u53dc\u53dd\u53de\u53e1\u53e2\u53e7\u53f4\u53fa\u53fe\u53ff\u5400\u5402\u5405\u5407\u540b\u5414\u5418\u5419\u541a\u541c\u5422\u5424\u5425\u542a\u5430\u5433\u5436\u5437\u543a\u543d\u543f\u5441\u5442\u5444\u5445\u5447\u5449\u544c\u544d\u544e\u544f\u5451\u545a\u545d",4,"\u5463\u5465\u5467\u5469",7,"\u5474\u5479\u547a\u547e\u547f\u5481\u5483\u5485\u5487\u5488\u5489\u548a\u548d\u5491\u5493\u5497\u5498\u549c\u549e\u549f\u54a0\u54a1"],["8640","\u54a2\u54a5\u54ae\u54b0\u54b2\u54b5\u54b6\u54b7\u54b9\u54ba\u54bc\u54be\u54c3\u54c5\u54ca\u54cb\u54d6\u54d8\u54db\u54e0",4,"\u54eb\u54ec\u54ef\u54f0\u54f1\u54f4",5,"\u54fb\u54fe\u5500\u5502\u5503\u5504\u5505\u5508\u550a",4,"\u5512\u5513\u5515",5,"\u551c\u551d\u551e\u551f\u5521\u5525\u5526"],["8680","\u5528\u5529\u552b\u552d\u5532\u5534\u5535\u5536\u5538\u5539\u553a\u553b\u553d\u5540\u5542\u5545\u5547\u5548\u554b",4,"\u5551\u5552\u5553\u5554\u5557",4,"\u555d\u555e\u555f\u5560\u5562\u5563\u5568\u5569\u556b\u556f",5,"\u5579\u557a\u557d\u557f\u5585\u5586\u558c\u558d\u558e\u5590\u5592\u5593\u5595\u5596\u5597\u559a\u559b\u559e\u55a0",6,"\u55a8",8,"\u55b2\u55b4\u55b6\u55b8\u55ba\u55bc\u55bf",4,"\u55c6\u55c7\u55c8\u55ca\u55cb\u55ce\u55cf\u55d0\u55d5\u55d7",4,"\u55de\u55e0\u55e2\u55e7\u55e9\u55ed\u55ee\u55f0\u55f1\u55f4\u55f6\u55f8",4,"\u55ff\u5602\u5603\u5604\u5605"],["8740","\u5606\u5607\u560a\u560b\u560d\u5610",7,"\u5619\u561a\u561c\u561d\u5620\u5621\u5622\u5625\u5626\u5628\u5629\u562a\u562b\u562e\u562f\u5630\u5633\u5635\u5637\u5638\u563a\u563c\u563d\u563e\u5640",11,"\u564f",4,"\u5655\u5656\u565a\u565b\u565d",4],["8780","\u5663\u5665\u5666\u5667\u566d\u566e\u566f\u5670\u5672\u5673\u5674\u5675\u5677\u5678\u5679\u567a\u567d",7,"\u5687",6,"\u5690\u5691\u5692\u5694",14,"\u56a4",10,"\u56b0",6,"\u56b8\u56b9\u56ba\u56bb\u56bd",12,"\u56cb",8,"\u56d5\u56d6\u56d8\u56d9\u56dc\u56e3\u56e5",5,"\u56ec\u56ee\u56ef\u56f2\u56f3\u56f6\u56f7\u56f8\u56fb\u56fc\u5700\u5701\u5702\u5705\u5707\u570b",6],["8840","\u5712",9,"\u571d\u571e\u5720\u5721\u5722\u5724\u5725\u5726\u5727\u572b\u5731\u5732\u5734",4,"\u573c\u573d\u573f\u5741\u5743\u5744\u5745\u5746\u5748\u5749\u574b\u5752",4,"\u5758\u5759\u5762\u5763\u5765\u5767\u576c\u576e\u5770\u5771\u5772\u5774\u5775\u5778\u5779\u577a\u577d\u577e\u577f\u5780"],["8880","\u5781\u5787\u5788\u5789\u578a\u578d",4,"\u5794",6,"\u579c\u579d\u579e\u579f\u57a5\u57a8\u57aa\u57ac\u57af\u57b0\u57b1\u57b3\u57b5\u57b6\u57b7\u57b9",8,"\u57c4",6,"\u57cc\u57cd\u57d0\u57d1\u57d3\u57d6\u57d7\u57db\u57dc\u57de\u57e1\u57e2\u57e3\u57e5",7,"\u57ee\u57f0\u57f1\u57f2\u57f3\u57f5\u57f6\u57f7\u57fb\u57fc\u57fe\u57ff\u5801\u5803\u5804\u5805\u5808\u5809\u580a\u580c\u580e\u580f\u5810\u5812\u5813\u5814\u5816\u5817\u5818\u581a\u581b\u581c\u581d\u581f\u5822\u5823\u5825",4,"\u582b",4,"\u5831\u5832\u5833\u5834\u5836",7],["8940","\u583e",5,"\u5845",6,"\u584e\u584f\u5850\u5852\u5853\u5855\u5856\u5857\u5859",4,"\u585f",5,"\u5866",4,"\u586d",16,"\u587f\u5882\u5884\u5886\u5887\u5888\u588a\u588b\u588c"],["8980","\u588d",4,"\u5894",4,"\u589b\u589c\u589d\u58a0",7,"\u58aa",17,"\u58bd\u58be\u58bf\u58c0\u58c2\u58c3\u58c4\u58c6",10,"\u58d2\u58d3\u58d4\u58d6",13,"\u58e5",5,"\u58ed\u58ef\u58f1\u58f2\u58f4\u58f5\u58f7\u58f8\u58fa",7,"\u5903\u5905\u5906\u5908",4,"\u590e\u5910\u5911\u5912\u5913\u5917\u5918\u591b\u591d\u591e\u5920\u5921\u5922\u5923\u5926\u5928\u592c\u5930\u5932\u5933\u5935\u5936\u593b"],["8a40","\u593d\u593e\u593f\u5940\u5943\u5945\u5946\u594a\u594c\u594d\u5950\u5952\u5953\u5959\u595b",4,"\u5961\u5963\u5964\u5966",12,"\u5975\u5977\u597a\u597b\u597c\u597e\u597f\u5980\u5985\u5989\u598b\u598c\u598e\u598f\u5990\u5991\u5994\u5995\u5998\u599a\u599b\u599c\u599d\u599f\u59a0\u59a1\u59a2\u59a6"],["8a80","\u59a7\u59ac\u59ad\u59b0\u59b1\u59b3",5,"\u59ba\u59bc\u59bd\u59bf",6,"\u59c7\u59c8\u59c9\u59cc\u59cd\u59ce\u59cf\u59d5\u59d6\u59d9\u59db\u59de",4,"\u59e4\u59e6\u59e7\u59e9\u59ea\u59eb\u59ed",11,"\u59fa\u59fc\u59fd\u59fe\u5a00\u5a02\u5a0a\u5a0b\u5a0d\u5a0e\u5a0f\u5a10\u5a12\u5a14\u5a15\u5a16\u5a17\u5a19\u5a1a\u5a1b\u5a1d\u5a1e\u5a21\u5a22\u5a24\u5a26\u5a27\u5a28\u5a2a",6,"\u5a33\u5a35\u5a37",4,"\u5a3d\u5a3e\u5a3f\u5a41",4,"\u5a47\u5a48\u5a4b",9,"\u5a56\u5a57\u5a58\u5a59\u5a5b",5],["8b40","\u5a61\u5a63\u5a64\u5a65\u5a66\u5a68\u5a69\u5a6b",8,"\u5a78\u5a79\u5a7b\u5a7c\u5a7d\u5a7e\u5a80",17,"\u5a93",6,"\u5a9c",13,"\u5aab\u5aac"],["8b80","\u5aad",4,"\u5ab4\u5ab6\u5ab7\u5ab9",4,"\u5abf\u5ac0\u5ac3",5,"\u5aca\u5acb\u5acd",4,"\u5ad3\u5ad5\u5ad7\u5ad9\u5ada\u5adb\u5add\u5ade\u5adf\u5ae2\u5ae4\u5ae5\u5ae7\u5ae8\u5aea\u5aec",4,"\u5af2",22,"\u5b0a",11,"\u5b18",25,"\u5b33\u5b35\u5b36\u5b38",7,"\u5b41",6],["8c40","\u5b48",7,"\u5b52\u5b56\u5b5e\u5b60\u5b61\u5b67\u5b68\u5b6b\u5b6d\u5b6e\u5b6f\u5b72\u5b74\u5b76\u5b77\u5b78\u5b79\u5b7b\u5b7c\u5b7e\u5b7f\u5b82\u5b86\u5b8a\u5b8d\u5b8e\u5b90\u5b91\u5b92\u5b94\u5b96\u5b9f\u5ba7\u5ba8\u5ba9\u5bac\u5bad\u5bae\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbb\u5bbc\u5bc0\u5bc1\u5bc3\u5bc8\u5bc9\u5bca\u5bcb\u5bcd\u5bce\u5bcf"],["8c80","\u5bd1\u5bd4",8,"\u5be0\u5be2\u5be3\u5be6\u5be7\u5be9",4,"\u5bef\u5bf1",6,"\u5bfd\u5bfe\u5c00\u5c02\u5c03\u5c05\u5c07\u5c08\u5c0b\u5c0c\u5c0d\u5c0e\u5c10\u5c12\u5c13\u5c17\u5c19\u5c1b\u5c1e\u5c1f\u5c20\u5c21\u5c23\u5c26\u5c28\u5c29\u5c2a\u5c2b\u5c2d\u5c2e\u5c2f\u5c30\u5c32\u5c33\u5c35\u5c36\u5c37\u5c43\u5c44\u5c46\u5c47\u5c4c\u5c4d\u5c52\u5c53\u5c54\u5c56\u5c57\u5c58\u5c5a\u5c5b\u5c5c\u5c5d\u5c5f\u5c62\u5c64\u5c67",6,"\u5c70\u5c72",6,"\u5c7b\u5c7c\u5c7d\u5c7e\u5c80\u5c83",4,"\u5c89\u5c8a\u5c8b\u5c8e\u5c8f\u5c92\u5c93\u5c95\u5c9d",4,"\u5ca4",4],["8d40","\u5caa\u5cae\u5caf\u5cb0\u5cb2\u5cb4\u5cb6\u5cb9\u5cba\u5cbb\u5cbc\u5cbe\u5cc0\u5cc2\u5cc3\u5cc5",5,"\u5ccc",5,"\u5cd3",5,"\u5cda",6,"\u5ce2\u5ce3\u5ce7\u5ce9\u5ceb\u5cec\u5cee\u5cef\u5cf1",9,"\u5cfc",4],["8d80","\u5d01\u5d04\u5d05\u5d08",5,"\u5d0f",4,"\u5d15\u5d17\u5d18\u5d19\u5d1a\u5d1c\u5d1d\u5d1f",4,"\u5d25\u5d28\u5d2a\u5d2b\u5d2c\u5d2f",4,"\u5d35",7,"\u5d3f",7,"\u5d48\u5d49\u5d4d",10,"\u5d59\u5d5a\u5d5c\u5d5e",10,"\u5d6a\u5d6d\u5d6e\u5d70\u5d71\u5d72\u5d73\u5d75",12,"\u5d83",21,"\u5d9a\u5d9b\u5d9c\u5d9e\u5d9f\u5da0"],["8e40","\u5da1",21,"\u5db8",12,"\u5dc6",6,"\u5dce",12,"\u5ddc\u5ddf\u5de0\u5de3\u5de4\u5dea\u5dec\u5ded"],["8e80","\u5df0\u5df5\u5df6\u5df8",4,"\u5dff\u5e00\u5e04\u5e07\u5e09\u5e0a\u5e0b\u5e0d\u5e0e\u5e12\u5e13\u5e17\u5e1e",7,"\u5e28",4,"\u5e2f\u5e30\u5e32",4,"\u5e39\u5e3a\u5e3e\u5e3f\u5e40\u5e41\u5e43\u5e46",5,"\u5e4d",6,"\u5e56",4,"\u5e5c\u5e5d\u5e5f\u5e60\u5e63",14,"\u5e75\u5e77\u5e79\u5e7e\u5e81\u5e82\u5e83\u5e85\u5e88\u5e89\u5e8c\u5e8d\u5e8e\u5e92\u5e98\u5e9b\u5e9d\u5ea1\u5ea2\u5ea3\u5ea4\u5ea8",4,"\u5eae",4,"\u5eb4\u5eba\u5ebb\u5ebc\u5ebd\u5ebf",6],["8f40","\u5ec6\u5ec7\u5ec8\u5ecb",5,"\u5ed4\u5ed5\u5ed7\u5ed8\u5ed9\u5eda\u5edc",11,"\u5ee9\u5eeb",8,"\u5ef5\u5ef8\u5ef9\u5efb\u5efc\u5efd\u5f05\u5f06\u5f07\u5f09\u5f0c\u5f0d\u5f0e\u5f10\u5f12\u5f14\u5f16\u5f19\u5f1a\u5f1c\u5f1d\u5f1e\u5f21\u5f22\u5f23\u5f24"],["8f80","\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f32",6,"\u5f3b\u5f3d\u5f3e\u5f3f\u5f41",14,"\u5f51\u5f54\u5f59\u5f5a\u5f5b\u5f5c\u5f5e\u5f5f\u5f60\u5f63\u5f65\u5f67\u5f68\u5f6b\u5f6e\u5f6f\u5f72\u5f74\u5f75\u5f76\u5f78\u5f7a\u5f7d\u5f7e\u5f7f\u5f83\u5f86\u5f8d\u5f8e\u5f8f\u5f91\u5f93\u5f94\u5f96\u5f9a\u5f9b\u5f9d\u5f9e\u5f9f\u5fa0\u5fa2",5,"\u5fa9\u5fab\u5fac\u5faf",5,"\u5fb6\u5fb8\u5fb9\u5fba\u5fbb\u5fbe",4,"\u5fc7\u5fc8\u5fca\u5fcb\u5fce\u5fd3\u5fd4\u5fd5\u5fda\u5fdb\u5fdc\u5fde\u5fdf\u5fe2\u5fe3\u5fe5\u5fe6\u5fe8\u5fe9\u5fec\u5fef\u5ff0\u5ff2\u5ff3\u5ff4\u5ff6\u5ff7\u5ff9\u5ffa\u5ffc\u6007"],["9040","\u6008\u6009\u600b\u600c\u6010\u6011\u6013\u6017\u6018\u601a\u601e\u601f\u6022\u6023\u6024\u602c\u602d\u602e\u6030",4,"\u6036",4,"\u603d\u603e\u6040\u6044",6,"\u604c\u604e\u604f\u6051\u6053\u6054\u6056\u6057\u6058\u605b\u605c\u605e\u605f\u6060\u6061\u6065\u6066\u606e\u6071\u6072\u6074\u6075\u6077\u607e\u6080"],["9080","\u6081\u6082\u6085\u6086\u6087\u6088\u608a\u608b\u608e\u608f\u6090\u6091\u6093\u6095\u6097\u6098\u6099\u609c\u609e\u60a1\u60a2\u60a4\u60a5\u60a7\u60a9\u60aa\u60ae\u60b0\u60b3\u60b5\u60b6\u60b7\u60b9\u60ba\u60bd",7,"\u60c7\u60c8\u60c9\u60cc",4,"\u60d2\u60d3\u60d4\u60d6\u60d7\u60d9\u60db\u60de\u60e1",4,"\u60ea\u60f1\u60f2\u60f5\u60f7\u60f8\u60fb",4,"\u6102\u6103\u6104\u6105\u6107\u610a\u610b\u610c\u6110",4,"\u6116\u6117\u6118\u6119\u611b\u611c\u611d\u611e\u6121\u6122\u6125\u6128\u6129\u612a\u612c",18,"\u6140",6],["9140","\u6147\u6149\u614b\u614d\u614f\u6150\u6152\u6153\u6154\u6156",6,"\u615e\u615f\u6160\u6161\u6163\u6164\u6165\u6166\u6169",6,"\u6171\u6172\u6173\u6174\u6176\u6178",18,"\u618c\u618d\u618f",4,"\u6195"],["9180","\u6196",6,"\u619e",8,"\u61aa\u61ab\u61ad",9,"\u61b8",5,"\u61bf\u61c0\u61c1\u61c3",4,"\u61c9\u61cc",4,"\u61d3\u61d5",16,"\u61e7",13,"\u61f6",8,"\u6200",5,"\u6207\u6209\u6213\u6214\u6219\u621c\u621d\u621e\u6220\u6223\u6226\u6227\u6228\u6229\u622b\u622d\u622f\u6230\u6231\u6232\u6235\u6236\u6238",4,"\u6242\u6244\u6245\u6246\u624a"],["9240","\u624f\u6250\u6255\u6256\u6257\u6259\u625a\u625c",6,"\u6264\u6265\u6268\u6271\u6272\u6274\u6275\u6277\u6278\u627a\u627b\u627d\u6281\u6282\u6283\u6285\u6286\u6287\u6288\u628b",5,"\u6294\u6299\u629c\u629d\u629e\u62a3\u62a6\u62a7\u62a9\u62aa\u62ad\u62ae\u62af\u62b0\u62b2\u62b3\u62b4\u62b6\u62b7\u62b8\u62ba\u62be\u62c0\u62c1"],["9280","\u62c3\u62cb\u62cf\u62d1\u62d5\u62dd\u62de\u62e0\u62e1\u62e4\u62ea\u62eb\u62f0\u62f2\u62f5\u62f8\u62f9\u62fa\u62fb\u6300\u6303\u6304\u6305\u6306\u630a\u630b\u630c\u630d\u630f\u6310\u6312\u6313\u6314\u6315\u6317\u6318\u6319\u631c\u6326\u6327\u6329\u632c\u632d\u632e\u6330\u6331\u6333",5,"\u633b\u633c\u633e\u633f\u6340\u6341\u6344\u6347\u6348\u634a\u6351\u6352\u6353\u6354\u6356",7,"\u6360\u6364\u6365\u6366\u6368\u636a\u636b\u636c\u636f\u6370\u6372\u6373\u6374\u6375\u6378\u6379\u637c\u637d\u637e\u637f\u6381\u6383\u6384\u6385\u6386\u638b\u638d\u6391\u6393\u6394\u6395\u6397\u6399",6,"\u63a1\u63a4\u63a6\u63ab\u63af\u63b1\u63b2\u63b5\u63b6\u63b9\u63bb\u63bd\u63bf\u63c0"],["9340","\u63c1\u63c2\u63c3\u63c5\u63c7\u63c8\u63ca\u63cb\u63cc\u63d1\u63d3\u63d4\u63d5\u63d7",6,"\u63df\u63e2\u63e4",4,"\u63eb\u63ec\u63ee\u63ef\u63f0\u63f1\u63f3\u63f5\u63f7\u63f9\u63fa\u63fb\u63fc\u63fe\u6403\u6404\u6406",4,"\u640d\u640e\u6411\u6412\u6415",5,"\u641d\u641f\u6422\u6423\u6424"],["9380","\u6425\u6427\u6428\u6429\u642b\u642e",5,"\u6435",4,"\u643b\u643c\u643e\u6440\u6442\u6443\u6449\u644b",6,"\u6453\u6455\u6456\u6457\u6459",4,"\u645f",7,"\u6468\u646a\u646b\u646c\u646e",9,"\u647b",6,"\u6483\u6486\u6488",8,"\u6493\u6494\u6497\u6498\u649a\u649b\u649c\u649d\u649f",4,"\u64a5\u64a6\u64a7\u64a8\u64aa\u64ab\u64af\u64b1\u64b2\u64b3\u64b4\u64b6\u64b9\u64bb\u64bd\u64be\u64bf\u64c1\u64c3\u64c4\u64c6",6,"\u64cf\u64d1\u64d3\u64d4\u64d5\u64d6\u64d9\u64da"],["9440","\u64db\u64dc\u64dd\u64df\u64e0\u64e1\u64e3\u64e5\u64e7",24,"\u6501",7,"\u650a",7,"\u6513",4,"\u6519",8],["9480","\u6522\u6523\u6524\u6526",4,"\u652c\u652d\u6530\u6531\u6532\u6533\u6537\u653a\u653c\u653d\u6540",4,"\u6546\u6547\u654a\u654b\u654d\u654e\u6550\u6552\u6553\u6554\u6557\u6558\u655a\u655c\u655f\u6560\u6561\u6564\u6565\u6567\u6568\u6569\u656a\u656d\u656e\u656f\u6571\u6573\u6575\u6576\u6578",14,"\u6588\u6589\u658a\u658d\u658e\u658f\u6592\u6594\u6595\u6596\u6598\u659a\u659d\u659e\u65a0\u65a2\u65a3\u65a6\u65a8\u65aa\u65ac\u65ae\u65b1",7,"\u65ba\u65bb\u65be\u65bf\u65c0\u65c2\u65c7\u65c8\u65c9\u65ca\u65cd\u65d0\u65d1\u65d3\u65d4\u65d5\u65d8",7,"\u65e1\u65e3\u65e4\u65ea\u65eb"],["9540","\u65f2\u65f3\u65f4\u65f5\u65f8\u65f9\u65fb",4,"\u6601\u6604\u6605\u6607\u6608\u6609\u660b\u660d\u6610\u6611\u6612\u6616\u6617\u6618\u661a\u661b\u661c\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6632\u6633\u6637",4,"\u663d\u663f\u6640\u6642\u6644",6,"\u664d\u664e\u6650\u6651\u6658"],["9580","\u6659\u665b\u665c\u665d\u665e\u6660\u6662\u6663\u6665\u6667\u6669",4,"\u6671\u6672\u6673\u6675\u6678\u6679\u667b\u667c\u667d\u667f\u6680\u6681\u6683\u6685\u6686\u6688\u6689\u668a\u668b\u668d\u668e\u668f\u6690\u6692\u6693\u6694\u6695\u6698",4,"\u669e",8,"\u66a9",4,"\u66af",4,"\u66b5\u66b6\u66b7\u66b8\u66ba\u66bb\u66bc\u66bd\u66bf",25,"\u66da\u66de",7,"\u66e7\u66e8\u66ea",5,"\u66f1\u66f5\u66f6\u66f8\u66fa\u66fb\u66fd\u6701\u6702\u6703"],["9640","\u6704\u6705\u6706\u6707\u670c\u670e\u670f\u6711\u6712\u6713\u6716\u6718\u6719\u671a\u671c\u671e\u6720",5,"\u6727\u6729\u672e\u6730\u6732\u6733\u6736\u6737\u6738\u6739\u673b\u673c\u673e\u673f\u6741\u6744\u6745\u6747\u674a\u674b\u674d\u6752\u6754\u6755\u6757",4,"\u675d\u6762\u6763\u6764\u6766\u6767\u676b\u676c\u676e\u6771\u6774\u6776"],["9680","\u6778\u6779\u677a\u677b\u677d\u6780\u6782\u6783\u6785\u6786\u6788\u678a\u678c\u678d\u678e\u678f\u6791\u6792\u6793\u6794\u6796\u6799\u679b\u679f\u67a0\u67a1\u67a4\u67a6\u67a9\u67ac\u67ae\u67b1\u67b2\u67b4\u67b9",7,"\u67c2\u67c5",9,"\u67d5\u67d6\u67d7\u67db\u67df\u67e1\u67e3\u67e4\u67e6\u67e7\u67e8\u67ea\u67eb\u67ed\u67ee\u67f2\u67f5",7,"\u67fe\u6801\u6802\u6803\u6804\u6806\u680d\u6810\u6812\u6814\u6815\u6818",4,"\u681e\u681f\u6820\u6822",6,"\u682b",6,"\u6834\u6835\u6836\u683a\u683b\u683f\u6847\u684b\u684d\u684f\u6852\u6856",5],["9740","\u685c\u685d\u685e\u685f\u686a\u686c",7,"\u6875\u6878",8,"\u6882\u6884\u6887",7,"\u6890\u6891\u6892\u6894\u6895\u6896\u6898",9,"\u68a3\u68a4\u68a5\u68a9\u68aa\u68ab\u68ac\u68ae\u68b1\u68b2\u68b4\u68b6\u68b7\u68b8"],["9780","\u68b9",6,"\u68c1\u68c3",5,"\u68ca\u68cc\u68ce\u68cf\u68d0\u68d1\u68d3\u68d4\u68d6\u68d7\u68d9\u68db",4,"\u68e1\u68e2\u68e4",9,"\u68ef\u68f2\u68f3\u68f4\u68f6\u68f7\u68f8\u68fb\u68fd\u68fe\u68ff\u6900\u6902\u6903\u6904\u6906",4,"\u690c\u690f\u6911\u6913",11,"\u6921\u6922\u6923\u6925",7,"\u692e\u692f\u6931\u6932\u6933\u6935\u6936\u6937\u6938\u693a\u693b\u693c\u693e\u6940\u6941\u6943",16,"\u6955\u6956\u6958\u6959\u695b\u695c\u695f"],["9840","\u6961\u6962\u6964\u6965\u6967\u6968\u6969\u696a\u696c\u696d\u696f\u6970\u6972",4,"\u697a\u697b\u697d\u697e\u697f\u6981\u6983\u6985\u698a\u698b\u698c\u698e",5,"\u6996\u6997\u6999\u699a\u699d",9,"\u69a9\u69aa\u69ac\u69ae\u69af\u69b0\u69b2\u69b3\u69b5\u69b6\u69b8\u69b9\u69ba\u69bc\u69bd"],["9880","\u69be\u69bf\u69c0\u69c2",7,"\u69cb\u69cd\u69cf\u69d1\u69d2\u69d3\u69d5",5,"\u69dc\u69dd\u69de\u69e1",11,"\u69ee\u69ef\u69f0\u69f1\u69f3",9,"\u69fe\u6a00",9,"\u6a0b",11,"\u6a19",5,"\u6a20\u6a22",5,"\u6a29\u6a2b\u6a2c\u6a2d\u6a2e\u6a30\u6a32\u6a33\u6a34\u6a36",6,"\u6a3f",4,"\u6a45\u6a46\u6a48",7,"\u6a51",6,"\u6a5a"],["9940","\u6a5c",4,"\u6a62\u6a63\u6a64\u6a66",10,"\u6a72",6,"\u6a7a\u6a7b\u6a7d\u6a7e\u6a7f\u6a81\u6a82\u6a83\u6a85",8,"\u6a8f\u6a92",4,"\u6a98",7,"\u6aa1",5],["9980","\u6aa7\u6aa8\u6aaa\u6aad",114,"\u6b25\u6b26\u6b28",6],["9a40","\u6b2f\u6b30\u6b31\u6b33\u6b34\u6b35\u6b36\u6b38\u6b3b\u6b3c\u6b3d\u6b3f\u6b40\u6b41\u6b42\u6b44\u6b45\u6b48\u6b4a\u6b4b\u6b4d",11,"\u6b5a",7,"\u6b68\u6b69\u6b6b",13,"\u6b7a\u6b7d\u6b7e\u6b7f\u6b80\u6b85\u6b88"],["9a80","\u6b8c\u6b8e\u6b8f\u6b90\u6b91\u6b94\u6b95\u6b97\u6b98\u6b99\u6b9c",4,"\u6ba2",7,"\u6bab",7,"\u6bb6\u6bb8",6,"\u6bc0\u6bc3\u6bc4\u6bc6",4,"\u6bcc\u6bce\u6bd0\u6bd1\u6bd8\u6bda\u6bdc",4,"\u6be2",7,"\u6bec\u6bed\u6bee\u6bf0\u6bf1\u6bf2\u6bf4\u6bf6\u6bf7\u6bf8\u6bfa\u6bfb\u6bfc\u6bfe",6,"\u6c08",4,"\u6c0e\u6c12\u6c17\u6c1c\u6c1d\u6c1e\u6c20\u6c23\u6c25\u6c2b\u6c2c\u6c2d\u6c31\u6c33\u6c36\u6c37\u6c39\u6c3a\u6c3b\u6c3c\u6c3e\u6c3f\u6c43\u6c44\u6c45\u6c48\u6c4b",4,"\u6c51\u6c52\u6c53\u6c56\u6c58"],["9b40","\u6c59\u6c5a\u6c62\u6c63\u6c65\u6c66\u6c67\u6c6b",4,"\u6c71\u6c73\u6c75\u6c77\u6c78\u6c7a\u6c7b\u6c7c\u6c7f\u6c80\u6c84\u6c87\u6c8a\u6c8b\u6c8d\u6c8e\u6c91\u6c92\u6c95\u6c96\u6c97\u6c98\u6c9a\u6c9c\u6c9d\u6c9e\u6ca0\u6ca2\u6ca8\u6cac\u6caf\u6cb0\u6cb4\u6cb5\u6cb6\u6cb7\u6cba\u6cc0\u6cc1\u6cc2\u6cc3\u6cc6\u6cc7\u6cc8\u6ccb\u6ccd\u6cce\u6ccf\u6cd1\u6cd2\u6cd8"],["9b80","\u6cd9\u6cda\u6cdc\u6cdd\u6cdf\u6ce4\u6ce6\u6ce7\u6ce9\u6cec\u6ced\u6cf2\u6cf4\u6cf9\u6cff\u6d00\u6d02\u6d03\u6d05\u6d06\u6d08\u6d09\u6d0a\u6d0d\u6d0f\u6d10\u6d11\u6d13\u6d14\u6d15\u6d16\u6d18\u6d1c\u6d1d\u6d1f",5,"\u6d26\u6d28\u6d29\u6d2c\u6d2d\u6d2f\u6d30\u6d34\u6d36\u6d37\u6d38\u6d3a\u6d3f\u6d40\u6d42\u6d44\u6d49\u6d4c\u6d50\u6d55\u6d56\u6d57\u6d58\u6d5b\u6d5d\u6d5f\u6d61\u6d62\u6d64\u6d65\u6d67\u6d68\u6d6b\u6d6c\u6d6d\u6d70\u6d71\u6d72\u6d73\u6d75\u6d76\u6d79\u6d7a\u6d7b\u6d7d",4,"\u6d83\u6d84\u6d86\u6d87\u6d8a\u6d8b\u6d8d\u6d8f\u6d90\u6d92\u6d96",4,"\u6d9c\u6da2\u6da5\u6dac\u6dad\u6db0\u6db1\u6db3\u6db4\u6db6\u6db7\u6db9",5,"\u6dc1\u6dc2\u6dc3\u6dc8\u6dc9\u6dca"],["9c40","\u6dcd\u6dce\u6dcf\u6dd0\u6dd2\u6dd3\u6dd4\u6dd5\u6dd7\u6dda\u6ddb\u6ddc\u6ddf\u6de2\u6de3\u6de5\u6de7\u6de8\u6de9\u6dea\u6ded\u6def\u6df0\u6df2\u6df4\u6df5\u6df6\u6df8\u6dfa\u6dfd",7,"\u6e06\u6e07\u6e08\u6e09\u6e0b\u6e0f\u6e12\u6e13\u6e15\u6e18\u6e19\u6e1b\u6e1c\u6e1e\u6e1f\u6e22\u6e26\u6e27\u6e28\u6e2a\u6e2c\u6e2e\u6e30\u6e31\u6e33\u6e35"],["9c80","\u6e36\u6e37\u6e39\u6e3b",7,"\u6e45",7,"\u6e4f\u6e50\u6e51\u6e52\u6e55\u6e57\u6e59\u6e5a\u6e5c\u6e5d\u6e5e\u6e60",10,"\u6e6c\u6e6d\u6e6f",14,"\u6e80\u6e81\u6e82\u6e84\u6e87\u6e88\u6e8a",4,"\u6e91",6,"\u6e99\u6e9a\u6e9b\u6e9d\u6e9e\u6ea0\u6ea1\u6ea3\u6ea4\u6ea6\u6ea8\u6ea9\u6eab\u6eac\u6ead\u6eae\u6eb0\u6eb3\u6eb5\u6eb8\u6eb9\u6ebc\u6ebe\u6ebf\u6ec0\u6ec3\u6ec4\u6ec5\u6ec6\u6ec8\u6ec9\u6eca\u6ecc\u6ecd\u6ece\u6ed0\u6ed2\u6ed6\u6ed8\u6ed9\u6edb\u6edc\u6edd\u6ee3\u6ee7\u6eea",5],["9d40","\u6ef0\u6ef1\u6ef2\u6ef3\u6ef5\u6ef6\u6ef7\u6ef8\u6efa",7,"\u6f03\u6f04\u6f05\u6f07\u6f08\u6f0a",4,"\u6f10\u6f11\u6f12\u6f16",9,"\u6f21\u6f22\u6f23\u6f25\u6f26\u6f27\u6f28\u6f2c\u6f2e\u6f30\u6f32\u6f34\u6f35\u6f37",6,"\u6f3f\u6f40\u6f41\u6f42"],["9d80","\u6f43\u6f44\u6f45\u6f48\u6f49\u6f4a\u6f4c\u6f4e",9,"\u6f59\u6f5a\u6f5b\u6f5d\u6f5f\u6f60\u6f61\u6f63\u6f64\u6f65\u6f67",5,"\u6f6f\u6f70\u6f71\u6f73\u6f75\u6f76\u6f77\u6f79\u6f7b\u6f7d",6,"\u6f85\u6f86\u6f87\u6f8a\u6f8b\u6f8f",12,"\u6f9d\u6f9e\u6f9f\u6fa0\u6fa2",4,"\u6fa8",10,"\u6fb4\u6fb5\u6fb7\u6fb8\u6fba",5,"\u6fc1\u6fc3",5,"\u6fca",6,"\u6fd3",10,"\u6fdf\u6fe2\u6fe3\u6fe4\u6fe5"],["9e40","\u6fe6",7,"\u6ff0",32,"\u7012",7,"\u701c",6,"\u7024",6],["9e80","\u702b",9,"\u7036\u7037\u7038\u703a",17,"\u704d\u704e\u7050",13,"\u705f",11,"\u706e\u7071\u7072\u7073\u7074\u7077\u7079\u707a\u707b\u707d\u7081\u7082\u7083\u7084\u7086\u7087\u7088\u708b\u708c\u708d\u708f\u7090\u7091\u7093\u7097\u7098\u709a\u709b\u709e",12,"\u70b0\u70b2\u70b4\u70b5\u70b6\u70ba\u70be\u70bf\u70c4\u70c5\u70c6\u70c7\u70c9\u70cb",12,"\u70da"],["9f40","\u70dc\u70dd\u70de\u70e0\u70e1\u70e2\u70e3\u70e5\u70ea\u70ee\u70f0",6,"\u70f8\u70fa\u70fb\u70fc\u70fe",10,"\u710b",4,"\u7111\u7112\u7114\u7117\u711b",10,"\u7127",7,"\u7132\u7133\u7134"],["9f80","\u7135\u7137",13,"\u7146\u7147\u7148\u7149\u714b\u714d\u714f",12,"\u715d\u715f",4,"\u7165\u7169",4,"\u716f\u7170\u7171\u7174\u7175\u7176\u7177\u7179\u717b\u717c\u717e",5,"\u7185",4,"\u718b\u718c\u718d\u718e\u7190\u7191\u7192\u7193\u7195\u7196\u7197\u719a",4,"\u71a1",6,"\u71a9\u71aa\u71ab\u71ad",5,"\u71b4\u71b6\u71b7\u71b8\u71ba",8,"\u71c4",9,"\u71cf",4],["a040","\u71d6",9,"\u71e1\u71e2\u71e3\u71e4\u71e6\u71e8",5,"\u71ef",9,"\u71fa",11,"\u7207",19],["a080","\u721b\u721c\u721e",9,"\u7229\u722b\u722d\u722e\u722f\u7232\u7233\u7234\u723a\u723c\u723e\u7240",6,"\u7249\u724a\u724b\u724e\u724f\u7250\u7251\u7253\u7254\u7255\u7257\u7258\u725a\u725c\u725e\u7260\u7263\u7264\u7265\u7268\u726a\u726b\u726c\u726d\u7270\u7271\u7273\u7274\u7276\u7277\u7278\u727b\u727c\u727d\u7282\u7283\u7285",4,"\u728c\u728e\u7290\u7291\u7293",11,"\u72a0",11,"\u72ae\u72b1\u72b2\u72b3\u72b5\u72ba",6,"\u72c5\u72c6\u72c7\u72c9\u72ca\u72cb\u72cc\u72cf\u72d1\u72d3\u72d4\u72d5\u72d6\u72d8\u72da\u72db"],["a1a1","\u3000\u3001\u3002\xb7\u02c9\u02c7\xa8\u3003\u3005\u2014\uff5e\u2016\u2026\u2018\u2019\u201c\u201d\u3014\u3015\u3008",7,"\u3016\u3017\u3010\u3011\xb1\xd7\xf7\u2236\u2227\u2228\u2211\u220f\u222a\u2229\u2208\u2237\u221a\u22a5\u2225\u2220\u2312\u2299\u222b\u222e\u2261\u224c\u2248\u223d\u221d\u2260\u226e\u226f\u2264\u2265\u221e\u2235\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uff04\xa4\uffe0\uffe1\u2030\xa7\u2116\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u203b\u2192\u2190\u2191\u2193\u3013"],["a2a1","\u2170",9],["a2b1","\u2488",19,"\u2474",19,"\u2460",9],["a2e5","\u3220",9],["a2f1","\u2160",11],["a3a1","\uff01\uff02\uff03\uffe5\uff05",88,"\uffe3"],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a6e0","\ufe35\ufe36\ufe39\ufe3a\ufe3f\ufe40\ufe3d\ufe3e\ufe41\ufe42\ufe43\ufe44"],["a6ee","\ufe3b\ufe3c\ufe37\ufe38\ufe31"],["a6f4","\ufe33\ufe34"],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a840","\u02ca\u02cb\u02d9\u2013\u2015\u2025\u2035\u2105\u2109\u2196\u2197\u2198\u2199\u2215\u221f\u2223\u2252\u2266\u2267\u22bf\u2550",35,"\u2581",6],["a880","\u2588",7,"\u2593\u2594\u2595\u25bc\u25bd\u25e2\u25e3\u25e4\u25e5\u2609\u2295\u3012\u301d\u301e"],["a8a1","\u0101\xe1\u01ce\xe0\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da\u01dc\xfc\xea\u0251"],["a8bd","\u0144\u0148"],["a8c0","\u0261"],["a8c5","\u3105",36],["a940","\u3021",8,"\u32a3\u338e\u338f\u339c\u339d\u339e\u33a1\u33c4\u33ce\u33d1\u33d2\u33d5\ufe30\uffe2\uffe4"],["a959","\u2121\u3231"],["a95c","\u2010"],["a960","\u30fc\u309b\u309c\u30fd\u30fe\u3006\u309d\u309e\ufe49",9,"\ufe54\ufe55\ufe56\ufe57\ufe59",8],["a980","\ufe62",4,"\ufe68\ufe69\ufe6a\ufe6b"],["a996","\u3007"],["a9a4","\u2500",75],["aa40","\u72dc\u72dd\u72df\u72e2",5,"\u72ea\u72eb\u72f5\u72f6\u72f9\u72fd\u72fe\u72ff\u7300\u7302\u7304",5,"\u730b\u730c\u730d\u730f\u7310\u7311\u7312\u7314\u7318\u7319\u731a\u731f\u7320\u7323\u7324\u7326\u7327\u7328\u732d\u732f\u7330\u7332\u7333\u7335\u7336\u733a\u733b\u733c\u733d\u7340",8],["aa80","\u7349\u734a\u734b\u734c\u734e\u734f\u7351\u7353\u7354\u7355\u7356\u7358",7,"\u7361",10,"\u736e\u7370\u7371"],["ab40","\u7372",11,"\u737f",4,"\u7385\u7386\u7388\u738a\u738c\u738d\u738f\u7390\u7392\u7393\u7394\u7395\u7397\u7398\u7399\u739a\u739c\u739d\u739e\u73a0\u73a1\u73a3",5,"\u73aa\u73ac\u73ad\u73b1\u73b4\u73b5\u73b6\u73b8\u73b9\u73bc\u73bd\u73be\u73bf\u73c1\u73c3",4],["ab80","\u73cb\u73cc\u73ce\u73d2",6,"\u73da\u73db\u73dc\u73dd\u73df\u73e1\u73e2\u73e3\u73e4\u73e6\u73e8\u73ea\u73eb\u73ec\u73ee\u73ef\u73f0\u73f1\u73f3",4],["ac40","\u73f8",10,"\u7404\u7407\u7408\u740b\u740c\u740d\u740e\u7411",8,"\u741c",5,"\u7423\u7424\u7427\u7429\u742b\u742d\u742f\u7431\u7432\u7437",4,"\u743d\u743e\u743f\u7440\u7442",11],["ac80","\u744e",6,"\u7456\u7458\u745d\u7460",12,"\u746e\u746f\u7471",4,"\u7478\u7479\u747a"],["ad40","\u747b\u747c\u747d\u747f\u7482\u7484\u7485\u7486\u7488\u7489\u748a\u748c\u748d\u748f\u7491",10,"\u749d\u749f",7,"\u74aa",15,"\u74bb",12],["ad80","\u74c8",9,"\u74d3",8,"\u74dd\u74df\u74e1\u74e5\u74e7",6,"\u74f0\u74f1\u74f2"],["ae40","\u74f3\u74f5\u74f8",6,"\u7500\u7501\u7502\u7503\u7505",7,"\u750e\u7510\u7512\u7514\u7515\u7516\u7517\u751b\u751d\u751e\u7520",4,"\u7526\u7527\u752a\u752e\u7534\u7536\u7539\u753c\u753d\u753f\u7541\u7542\u7543\u7544\u7546\u7547\u7549\u754a\u754d\u7550\u7551\u7552\u7553\u7555\u7556\u7557\u7558"],["ae80","\u755d",7,"\u7567\u7568\u7569\u756b",6,"\u7573\u7575\u7576\u7577\u757a",4,"\u7580\u7581\u7582\u7584\u7585\u7587"],["af40","\u7588\u7589\u758a\u758c\u758d\u758e\u7590\u7593\u7595\u7598\u759b\u759c\u759e\u75a2\u75a6",4,"\u75ad\u75b6\u75b7\u75ba\u75bb\u75bf\u75c0\u75c1\u75c6\u75cb\u75cc\u75ce\u75cf\u75d0\u75d1\u75d3\u75d7\u75d9\u75da\u75dc\u75dd\u75df\u75e0\u75e1\u75e5\u75e9\u75ec\u75ed\u75ee\u75ef\u75f2\u75f3\u75f5\u75f6\u75f7\u75f8\u75fa\u75fb\u75fd\u75fe\u7602\u7604\u7606\u7607"],["af80","\u7608\u7609\u760b\u760d\u760e\u760f\u7611\u7612\u7613\u7614\u7616\u761a\u761c\u761d\u761e\u7621\u7623\u7627\u7628\u762c\u762e\u762f\u7631\u7632\u7636\u7637\u7639\u763a\u763b\u763d\u7641\u7642\u7644"],["b040","\u7645",6,"\u764e",5,"\u7655\u7657",4,"\u765d\u765f\u7660\u7661\u7662\u7664",6,"\u766c\u766d\u766e\u7670",7,"\u7679\u767a\u767c\u767f\u7680\u7681\u7683\u7685\u7689\u768a\u768c\u768d\u768f\u7690\u7692\u7694\u7695\u7697\u7698\u769a\u769b"],["b080","\u769c",7,"\u76a5",8,"\u76af\u76b0\u76b3\u76b5",9,"\u76c0\u76c1\u76c3\u554a\u963f\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u978d\u6c28\u5b89\u4ffa\u6309\u6697\u5cb8\u80fa\u6848\u80ae\u6602\u76ce\u51f9\u6556\u71ac\u7ff1\u8884\u50b2\u5965\u61ca\u6fb3\u82ad\u634c\u6252\u53ed\u5427\u7b06\u516b\u75a4\u5df4\u62d4\u8dcb\u9776\u628a\u8019\u575d\u9738\u7f62\u7238\u767d\u67cf\u767e\u6446\u4f70\u8d25\u62dc\u7a17\u6591\u73ed\u642c\u6273\u822c\u9881\u677f\u7248\u626e\u62cc\u4f34\u74e3\u534a\u529e\u7eca\u90a6\u5e2e\u6886\u699c\u8180\u7ed1\u68d2\u78c5\u868c\u9551\u508d\u8c24\u82de\u80de\u5305\u8912\u5265"],["b140","\u76c4\u76c7\u76c9\u76cb\u76cc\u76d3\u76d5\u76d9\u76da\u76dc\u76dd\u76de\u76e0",4,"\u76e6",7,"\u76f0\u76f3\u76f5\u76f6\u76f7\u76fa\u76fb\u76fd\u76ff\u7700\u7702\u7703\u7705\u7706\u770a\u770c\u770e",10,"\u771b\u771c\u771d\u771e\u7721\u7723\u7724\u7725\u7727\u772a\u772b"],["b180","\u772c\u772e\u7730",4,"\u7739\u773b\u773d\u773e\u773f\u7742\u7744\u7745\u7746\u7748",7,"\u7752",7,"\u775c\u8584\u96f9\u4fdd\u5821\u9971\u5b9d\u62b1\u62a5\u66b4\u8c79\u9c8d\u7206\u676f\u7891\u60b2\u5351\u5317\u8f88\u80cc\u8d1d\u94a1\u500d\u72c8\u5907\u60eb\u7119\u88ab\u5954\u82ef\u672c\u7b28\u5d29\u7ef7\u752d\u6cf5\u8e66\u8ff8\u903c\u9f3b\u6bd4\u9119\u7b14\u5f7c\u78a7\u84d6\u853d\u6bd5\u6bd9\u6bd6\u5e01\u5e87\u75f9\u95ed\u655d\u5f0a\u5fc5\u8f9f\u58c1\u81c2\u907f\u965b\u97ad\u8fb9\u7f16\u8d2c\u6241\u4fbf\u53d8\u535e\u8fa8\u8fa9\u8fab\u904d\u6807\u5f6a\u8198\u8868\u9cd6\u618b\u522b\u762a\u5f6c\u658c\u6fd2\u6ee8\u5bbe\u6448\u5175\u51b0\u67c4\u4e19\u79c9\u997c\u70b3"],["b240","\u775d\u775e\u775f\u7760\u7764\u7767\u7769\u776a\u776d",11,"\u777a\u777b\u777c\u7781\u7782\u7783\u7786",5,"\u778f\u7790\u7793",11,"\u77a1\u77a3\u77a4\u77a6\u77a8\u77ab\u77ad\u77ae\u77af\u77b1\u77b2\u77b4\u77b6",4],["b280","\u77bc\u77be\u77c0",12,"\u77ce",8,"\u77d8\u77d9\u77da\u77dd",4,"\u77e4\u75c5\u5e76\u73bb\u83e0\u64ad\u62e8\u94b5\u6ce2\u535a\u52c3\u640f\u94c2\u7b94\u4f2f\u5e1b\u8236\u8116\u818a\u6e24\u6cca\u9a73\u6355\u535c\u54fa\u8865\u57e0\u4e0d\u5e03\u6b65\u7c3f\u90e8\u6016\u64e6\u731c\u88c1\u6750\u624d\u8d22\u776c\u8e29\u91c7\u5f69\u83dc\u8521\u9910\u53c2\u8695\u6b8b\u60ed\u60e8\u707f\u82cd\u8231\u4ed3\u6ca7\u85cf\u64cd\u7cd9\u69fd\u66f9\u8349\u5395\u7b56\u4fa7\u518c\u6d4b\u5c42\u8e6d\u63d2\u53c9\u832c\u8336\u67e5\u78b4\u643d\u5bdf\u5c94\u5dee\u8be7\u62c6\u67f4\u8c7a\u6400\u63ba\u8749\u998b\u8c17\u7f20\u94f2\u4ea7\u9610\u98a4\u660c\u7316"],["b340","\u77e6\u77e8\u77ea\u77ef\u77f0\u77f1\u77f2\u77f4\u77f5\u77f7\u77f9\u77fa\u77fb\u77fc\u7803",5,"\u780a\u780b\u780e\u780f\u7810\u7813\u7815\u7819\u781b\u781e\u7820\u7821\u7822\u7824\u7828\u782a\u782b\u782e\u782f\u7831\u7832\u7833\u7835\u7836\u783d\u783f\u7841\u7842\u7843\u7844\u7846\u7848\u7849\u784a\u784b\u784d\u784f\u7851\u7853\u7854\u7858\u7859\u785a"],["b380","\u785b\u785c\u785e",11,"\u786f",7,"\u7878\u7879\u787a\u787b\u787d",6,"\u573a\u5c1d\u5e38\u957f\u507f\u80a0\u5382\u655e\u7545\u5531\u5021\u8d85\u6284\u949e\u671d\u5632\u6f6e\u5de2\u5435\u7092\u8f66\u626f\u64a4\u63a3\u5f7b\u6f88\u90f4\u81e3\u8fb0\u5c18\u6668\u5ff1\u6c89\u9648\u8d81\u886c\u6491\u79f0\u57ce\u6a59\u6210\u5448\u4e58\u7a0b\u60e9\u6f84\u8bda\u627f\u901e\u9a8b\u79e4\u5403\u75f4\u6301\u5319\u6c60\u8fdf\u5f1b\u9a70\u803b\u9f7f\u4f88\u5c3a\u8d64\u7fc5\u65a5\u70bd\u5145\u51b2\u866b\u5d07\u5ba0\u62bd\u916c\u7574\u8e0c\u7a20\u6101\u7b79\u4ec7\u7ef8\u7785\u4e11\u81ed\u521d\u51fa\u6a71\u53a8\u8e87\u9504\u96cf\u6ec1\u9664\u695a"],["b440","\u7884\u7885\u7886\u7888\u788a\u788b\u788f\u7890\u7892\u7894\u7895\u7896\u7899\u789d\u789e\u78a0\u78a2\u78a4\u78a6\u78a8",7,"\u78b5\u78b6\u78b7\u78b8\u78ba\u78bb\u78bc\u78bd\u78bf\u78c0\u78c2\u78c3\u78c4\u78c6\u78c7\u78c8\u78cc\u78cd\u78ce\u78cf\u78d1\u78d2\u78d3\u78d6\u78d7\u78d8\u78da",9],["b480","\u78e4\u78e5\u78e6\u78e7\u78e9\u78ea\u78eb\u78ed",4,"\u78f3\u78f5\u78f6\u78f8\u78f9\u78fb",5,"\u7902\u7903\u7904\u7906",6,"\u7840\u50a8\u77d7\u6410\u89e6\u5904\u63e3\u5ddd\u7a7f\u693d\u4f20\u8239\u5598\u4e32\u75ae\u7a97\u5e62\u5e8a\u95ef\u521b\u5439\u708a\u6376\u9524\u5782\u6625\u693f\u9187\u5507\u6df3\u7eaf\u8822\u6233\u7ef0\u75b5\u8328\u78c1\u96cc\u8f9e\u6148\u74f7\u8bcd\u6b64\u523a\u8d50\u6b21\u806a\u8471\u56f1\u5306\u4ece\u4e1b\u51d1\u7c97\u918b\u7c07\u4fc3\u8e7f\u7be1\u7a9c\u6467\u5d14\u50ac\u8106\u7601\u7cb9\u6dec\u7fe0\u6751\u5b58\u5bf8\u78cb\u64ae\u6413\u63aa\u632b\u9519\u642d\u8fbe\u7b54\u7629\u6253\u5927\u5446\u6b79\u50a3\u6234\u5e26\u6b86\u4ee3\u8d37\u888b\u5f85\u902e"],["b540","\u790d",5,"\u7914",9,"\u791f",4,"\u7925",14,"\u7935",4,"\u793d\u793f\u7942\u7943\u7944\u7945\u7947\u794a",8,"\u7954\u7955\u7958\u7959\u7961\u7963"],["b580","\u7964\u7966\u7969\u796a\u796b\u796c\u796e\u7970",6,"\u7979\u797b",4,"\u7982\u7983\u7986\u7987\u7988\u7989\u798b\u798c\u798d\u798e\u7990\u7991\u7992\u6020\u803d\u62c5\u4e39\u5355\u90f8\u63b8\u80c6\u65e6\u6c2e\u4f46\u60ee\u6de1\u8bde\u5f39\u86cb\u5f53\u6321\u515a\u8361\u6863\u5200\u6363\u8e48\u5012\u5c9b\u7977\u5bfc\u5230\u7a3b\u60bc\u9053\u76d7\u5fb7\u5f97\u7684\u8e6c\u706f\u767b\u7b49\u77aa\u51f3\u9093\u5824\u4f4e\u6ef4\u8fea\u654c\u7b1b\u72c4\u6da4\u7fdf\u5ae1\u62b5\u5e95\u5730\u8482\u7b2c\u5e1d\u5f1f\u9012\u7f14\u98a0\u6382\u6ec7\u7898\u70b9\u5178\u975b\u57ab\u7535\u4f43\u7538\u5e97\u60e6\u5960\u6dc0\u6bbf\u7889\u53fc\u96d5\u51cb\u5201\u6389\u540a\u9493\u8c03\u8dcc\u7239\u789f\u8776\u8fed\u8c0d\u53e0"],["b640","\u7993",6,"\u799b",11,"\u79a8",10,"\u79b4",4,"\u79bc\u79bf\u79c2\u79c4\u79c5\u79c7\u79c8\u79ca\u79cc\u79ce\u79cf\u79d0\u79d3\u79d4\u79d6\u79d7\u79d9",5,"\u79e0\u79e1\u79e2\u79e5\u79e8\u79ea"],["b680","\u79ec\u79ee\u79f1",6,"\u79f9\u79fa\u79fc\u79fe\u79ff\u7a01\u7a04\u7a05\u7a07\u7a08\u7a09\u7a0a\u7a0c\u7a0f",4,"\u7a15\u7a16\u7a18\u7a19\u7a1b\u7a1c\u4e01\u76ef\u53ee\u9489\u9876\u9f0e\u952d\u5b9a\u8ba2\u4e22\u4e1c\u51ac\u8463\u61c2\u52a8\u680b\u4f97\u606b\u51bb\u6d1e\u515c\u6296\u6597\u9661\u8c46\u9017\u75d8\u90fd\u7763\u6bd2\u728a\u72ec\u8bfb\u5835\u7779\u8d4c\u675c\u9540\u809a\u5ea6\u6e21\u5992\u7aef\u77ed\u953b\u6bb5\u65ad\u7f0e\u5806\u5151\u961f\u5bf9\u58a9\u5428\u8e72\u6566\u987f\u56e4\u949d\u76fe\u9041\u6387\u54c6\u591a\u593a\u579b\u8eb2\u6735\u8dfa\u8235\u5241\u60f0\u5815\u86fe\u5ce8\u9e45\u4fc4\u989d\u8bb9\u5a25\u6076\u5384\u627c\u904f\u9102\u997f\u6069\u800c\u513f\u8033\u5c14\u9975\u6d31\u4e8c"],["b740","\u7a1d\u7a1f\u7a21\u7a22\u7a24",14,"\u7a34\u7a35\u7a36\u7a38\u7a3a\u7a3e\u7a40",5,"\u7a47",9,"\u7a52",4,"\u7a58",16],["b780","\u7a69",6,"\u7a71\u7a72\u7a73\u7a75\u7a7b\u7a7c\u7a7d\u7a7e\u7a82\u7a85\u7a87\u7a89\u7a8a\u7a8b\u7a8c\u7a8e\u7a8f\u7a90\u7a93\u7a94\u7a99\u7a9a\u7a9b\u7a9e\u7aa1\u7aa2\u8d30\u53d1\u7f5a\u7b4f\u4f10\u4e4f\u9600\u6cd5\u73d0\u85e9\u5e06\u756a\u7ffb\u6a0a\u77fe\u9492\u7e41\u51e1\u70e6\u53cd\u8fd4\u8303\u8d29\u72af\u996d\u6cdb\u574a\u82b3\u65b9\u80aa\u623f\u9632\u59a8\u4eff\u8bbf\u7eba\u653e\u83f2\u975e\u5561\u98de\u80a5\u532a\u8bfd\u5420\u80ba\u5e9f\u6cb8\u8d39\u82ac\u915a\u5429\u6c1b\u5206\u7eb7\u575f\u711a\u6c7e\u7c89\u594b\u4efd\u5fff\u6124\u7caa\u4e30\u5c01\u67ab\u8702\u5cf0\u950b\u98ce\u75af\u70fd\u9022\u51af\u7f1d\u8bbd\u5949\u51e4\u4f5b\u5426\u592b\u6577\u80a4\u5b75\u6276\u62c2\u8f90\u5e45\u6c1f\u7b26\u4f0f\u4fd8\u670d"],["b840","\u7aa3\u7aa4\u7aa7\u7aa9\u7aaa\u7aab\u7aae",4,"\u7ab4",10,"\u7ac0",10,"\u7acc",9,"\u7ad7\u7ad8\u7ada\u7adb\u7adc\u7add\u7ae1\u7ae2\u7ae4\u7ae7",5,"\u7aee\u7af0\u7af1\u7af2\u7af3"],["b880","\u7af4",4,"\u7afb\u7afc\u7afe\u7b00\u7b01\u7b02\u7b05\u7b07\u7b09\u7b0c\u7b0d\u7b0e\u7b10\u7b12\u7b13\u7b16\u7b17\u7b18\u7b1a\u7b1c\u7b1d\u7b1f\u7b21\u7b22\u7b23\u7b27\u7b29\u7b2d\u6d6e\u6daa\u798f\u88b1\u5f17\u752b\u629a\u8f85\u4fef\u91dc\u65a7\u812f\u8151\u5e9c\u8150\u8d74\u526f\u8986\u8d4b\u590d\u5085\u4ed8\u961c\u7236\u8179\u8d1f\u5bcc\u8ba3\u9644\u5987\u7f1a\u5490\u5676\u560e\u8be5\u6539\u6982\u9499\u76d6\u6e89\u5e72\u7518\u6746\u67d1\u7aff\u809d\u8d76\u611f\u79c6\u6562\u8d63\u5188\u521a\u94a2\u7f38\u809b\u7eb2\u5c97\u6e2f\u6760\u7bd9\u768b\u9ad8\u818f\u7f94\u7cd5\u641e\u9550\u7a3f\u544a\u54e5\u6b4c\u6401\u6208\u9e3d\u80f3\u7599\u5272\u9769\u845b\u683c\u86e4\u9601\u9694\u94ec\u4e2a\u5404\u7ed9\u6839\u8ddf\u8015\u66f4\u5e9a\u7fb9"],["b940","\u7b2f\u7b30\u7b32\u7b34\u7b35\u7b36\u7b37\u7b39\u7b3b\u7b3d\u7b3f",5,"\u7b46\u7b48\u7b4a\u7b4d\u7b4e\u7b53\u7b55\u7b57\u7b59\u7b5c\u7b5e\u7b5f\u7b61\u7b63",10,"\u7b6f\u7b70\u7b73\u7b74\u7b76\u7b78\u7b7a\u7b7c\u7b7d\u7b7f\u7b81\u7b82\u7b83\u7b84\u7b86",6,"\u7b8e\u7b8f"],["b980","\u7b91\u7b92\u7b93\u7b96\u7b98\u7b99\u7b9a\u7b9b\u7b9e\u7b9f\u7ba0\u7ba3\u7ba4\u7ba5\u7bae\u7baf\u7bb0\u7bb2\u7bb3\u7bb5\u7bb6\u7bb7\u7bb9",7,"\u7bc2\u7bc3\u7bc4\u57c2\u803f\u6897\u5de5\u653b\u529f\u606d\u9f9a\u4f9b\u8eac\u516c\u5bab\u5f13\u5de9\u6c5e\u62f1\u8d21\u5171\u94a9\u52fe\u6c9f\u82df\u72d7\u57a2\u6784\u8d2d\u591f\u8f9c\u83c7\u5495\u7b8d\u4f30\u6cbd\u5b64\u59d1\u9f13\u53e4\u86ca\u9aa8\u8c37\u80a1\u6545\u987e\u56fa\u96c7\u522e\u74dc\u5250\u5be1\u6302\u8902\u4e56\u62d0\u602a\u68fa\u5173\u5b98\u51a0\u89c2\u7ba1\u9986\u7f50\u60ef\u704c\u8d2f\u5149\u5e7f\u901b\u7470\u89c4\u572d\u7845\u5f52\u9f9f\u95fa\u8f68\u9b3c\u8be1\u7678\u6842\u67dc\u8dea\u8d35\u523d\u8f8a\u6eda\u68cd\u9505\u90ed\u56fd\u679c\u88f9\u8fc7\u54c8"],["ba40","\u7bc5\u7bc8\u7bc9\u7bca\u7bcb\u7bcd\u7bce\u7bcf\u7bd0\u7bd2\u7bd4",4,"\u7bdb\u7bdc\u7bde\u7bdf\u7be0\u7be2\u7be3\u7be4\u7be7\u7be8\u7be9\u7beb\u7bec\u7bed\u7bef\u7bf0\u7bf2",4,"\u7bf8\u7bf9\u7bfa\u7bfb\u7bfd\u7bff",7,"\u7c08\u7c09\u7c0a\u7c0d\u7c0e\u7c10",5,"\u7c17\u7c18\u7c19"],["ba80","\u7c1a",4,"\u7c20",5,"\u7c28\u7c29\u7c2b",12,"\u7c39",5,"\u7c42\u9ab8\u5b69\u6d77\u6c26\u4ea5\u5bb3\u9a87\u9163\u61a8\u90af\u97e9\u542b\u6db5\u5bd2\u51fd\u558a\u7f55\u7ff0\u64bc\u634d\u65f1\u61be\u608d\u710a\u6c57\u6c49\u592f\u676d\u822a\u58d5\u568e\u8c6a\u6beb\u90dd\u597d\u8017\u53f7\u6d69\u5475\u559d\u8377\u83cf\u6838\u79be\u548c\u4f55\u5408\u76d2\u8c89\u9602\u6cb3\u6db8\u8d6b\u8910\u9e64\u8d3a\u563f\u9ed1\u75d5\u5f88\u72e0\u6068\u54fc\u4ea8\u6a2a\u8861\u6052\u8f70\u54c4\u70d8\u8679\u9e3f\u6d2a\u5b8f\u5f18\u7ea2\u5589\u4faf\u7334\u543c\u539a\u5019\u540e\u547c\u4e4e\u5ffd\u745a\u58f6\u846b\u80e1\u8774\u72d0\u7cca\u6e56"],["bb40","\u7c43",9,"\u7c4e",36,"\u7c75",5,"\u7c7e",9],["bb80","\u7c88\u7c8a",6,"\u7c93\u7c94\u7c96\u7c99\u7c9a\u7c9b\u7ca0\u7ca1\u7ca3\u7ca6\u7ca7\u7ca8\u7ca9\u7cab\u7cac\u7cad\u7caf\u7cb0\u7cb4",4,"\u7cba\u7cbb\u5f27\u864e\u552c\u62a4\u4e92\u6caa\u6237\u82b1\u54d7\u534e\u733e\u6ed1\u753b\u5212\u5316\u8bdd\u69d0\u5f8a\u6000\u6dee\u574f\u6b22\u73af\u6853\u8fd8\u7f13\u6362\u60a3\u5524\u75ea\u8c62\u7115\u6da3\u5ba6\u5e7b\u8352\u614c\u9ec4\u78fa\u8757\u7c27\u7687\u51f0\u60f6\u714c\u6643\u5e4c\u604d\u8c0e\u7070\u6325\u8f89\u5fbd\u6062\u86d4\u56de\u6bc1\u6094\u6167\u5349\u60e0\u6666\u8d3f\u79fd\u4f1a\u70e9\u6c47\u8bb3\u8bf2\u7ed8\u8364\u660f\u5a5a\u9b42\u6d51\u6df7\u8c41\u6d3b\u4f19\u706b\u83b7\u6216\u60d1\u970d\u8d27\u7978\u51fb\u573e\u57fa\u673a\u7578\u7a3d\u79ef\u7b95"],["bc40","\u7cbf\u7cc0\u7cc2\u7cc3\u7cc4\u7cc6\u7cc9\u7ccb\u7cce",6,"\u7cd8\u7cda\u7cdb\u7cdd\u7cde\u7ce1",6,"\u7ce9",5,"\u7cf0",7,"\u7cf9\u7cfa\u7cfc",13,"\u7d0b",5],["bc80","\u7d11",14,"\u7d21\u7d23\u7d24\u7d25\u7d26\u7d28\u7d29\u7d2a\u7d2c\u7d2d\u7d2e\u7d30",6,"\u808c\u9965\u8ff9\u6fc0\u8ba5\u9e21\u59ec\u7ee9\u7f09\u5409\u6781\u68d8\u8f91\u7c4d\u96c6\u53ca\u6025\u75be\u6c72\u5373\u5ac9\u7ea7\u6324\u51e0\u810a\u5df1\u84df\u6280\u5180\u5b63\u4f0e\u796d\u5242\u60b8\u6d4e\u5bc4\u5bc2\u8ba1\u8bb0\u65e2\u5fcc\u9645\u5993\u7ee7\u7eaa\u5609\u67b7\u5939\u4f73\u5bb6\u52a0\u835a\u988a\u8d3e\u7532\u94be\u5047\u7a3c\u4ef7\u67b6\u9a7e\u5ac1\u6b7c\u76d1\u575a\u5c16\u7b3a\u95f4\u714e\u517c\u80a9\u8270\u5978\u7f04\u8327\u68c0\u67ec\u78b1\u7877\u62e3\u6361\u7b80\u4fed\u526a\u51cf\u8350\u69db\u9274\u8df5\u8d31\u89c1\u952e\u7bad\u4ef6"],["bd40","\u7d37",54,"\u7d6f",7],["bd80","\u7d78",32,"\u5065\u8230\u5251\u996f\u6e10\u6e85\u6da7\u5efa\u50f5\u59dc\u5c06\u6d46\u6c5f\u7586\u848b\u6868\u5956\u8bb2\u5320\u9171\u964d\u8549\u6912\u7901\u7126\u80f6\u4ea4\u90ca\u6d47\u9a84\u5a07\u56bc\u6405\u94f0\u77eb\u4fa5\u811a\u72e1\u89d2\u997a\u7f34\u7ede\u527f\u6559\u9175\u8f7f\u8f83\u53eb\u7a96\u63ed\u63a5\u7686\u79f8\u8857\u9636\u622a\u52ab\u8282\u6854\u6770\u6377\u776b\u7aed\u6d01\u7ed3\u89e3\u59d0\u6212\u85c9\u82a5\u754c\u501f\u4ecb\u75a5\u8beb\u5c4a\u5dfe\u7b4b\u65a4\u91d1\u4eca\u6d25\u895f\u7d27\u9526\u4ec5\u8c28\u8fdb\u9773\u664b\u7981\u8fd1\u70ec\u6d78"],["be40","\u7d99",12,"\u7da7",6,"\u7daf",42],["be80","\u7dda",32,"\u5c3d\u52b2\u8346\u5162\u830e\u775b\u6676\u9cb8\u4eac\u60ca\u7cbe\u7cb3\u7ecf\u4e95\u8b66\u666f\u9888\u9759\u5883\u656c\u955c\u5f84\u75c9\u9756\u7adf\u7ade\u51c0\u70af\u7a98\u63ea\u7a76\u7ea0\u7396\u97ed\u4e45\u7078\u4e5d\u9152\u53a9\u6551\u65e7\u81fc\u8205\u548e\u5c31\u759a\u97a0\u62d8\u72d9\u75bd\u5c45\u9a79\u83ca\u5c40\u5480\u77e9\u4e3e\u6cae\u805a\u62d2\u636e\u5de8\u5177\u8ddd\u8e1e\u952f\u4ff1\u53e5\u60e7\u70ac\u5267\u6350\u9e43\u5a1f\u5026\u7737\u5377\u7ee2\u6485\u652b\u6289\u6398\u5014\u7235\u89c9\u51b3\u8bc0\u7edd\u5747\u83cc\u94a7\u519b\u541b\u5cfb"],["bf40","\u7dfb",62],["bf80","\u7e3a\u7e3c",4,"\u7e42",4,"\u7e48",21,"\u4fca\u7ae3\u6d5a\u90e1\u9a8f\u5580\u5496\u5361\u54af\u5f00\u63e9\u6977\u51ef\u6168\u520a\u582a\u52d8\u574e\u780d\u770b\u5eb7\u6177\u7ce0\u625b\u6297\u4ea2\u7095\u8003\u62f7\u70e4\u9760\u5777\u82db\u67ef\u68f5\u78d5\u9897\u79d1\u58f3\u54b3\u53ef\u6e34\u514b\u523b\u5ba2\u8bfe\u80af\u5543\u57a6\u6073\u5751\u542d\u7a7a\u6050\u5b54\u63a7\u62a0\u53e3\u6263\u5bc7\u67af\u54ed\u7a9f\u82e6\u9177\u5e93\u88e4\u5938\u57ae\u630e\u8de8\u80ef\u5757\u7b77\u4fa9\u5feb\u5bbd\u6b3e\u5321\u7b50\u72c2\u6846\u77ff\u7736\u65f7\u51b5\u4e8f\u76d4\u5cbf\u7aa5\u8475\u594e\u9b41\u5080"],["c040","\u7e5e",35,"\u7e83",23,"\u7e9c\u7e9d\u7e9e"],["c080","\u7eae\u7eb4\u7ebb\u7ebc\u7ed6\u7ee4\u7eec\u7ef9\u7f0a\u7f10\u7f1e\u7f37\u7f39\u7f3b",6,"\u7f43\u7f46",9,"\u7f52\u7f53\u9988\u6127\u6e83\u5764\u6606\u6346\u56f0\u62ec\u6269\u5ed3\u9614\u5783\u62c9\u5587\u8721\u814a\u8fa3\u5566\u83b1\u6765\u8d56\u84dd\u5a6a\u680f\u62e6\u7bee\u9611\u5170\u6f9c\u8c30\u63fd\u89c8\u61d2\u7f06\u70c2\u6ee5\u7405\u6994\u72fc\u5eca\u90ce\u6717\u6d6a\u635e\u52b3\u7262\u8001\u4f6c\u59e5\u916a\u70d9\u6d9d\u52d2\u4e50\u96f7\u956d\u857e\u78ca\u7d2f\u5121\u5792\u64c2\u808b\u7c7b\u6cea\u68f1\u695e\u51b7\u5398\u68a8\u7281\u9ece\u7bf1\u72f8\u79bb\u6f13\u7406\u674e\u91cc\u9ca4\u793c\u8389\u8354\u540f\u6817\u4e3d\u5389\u52b1\u783e\u5386\u5229\u5088\u4f8b\u4fd0"],["c140","\u7f56\u7f59\u7f5b\u7f5c\u7f5d\u7f5e\u7f60\u7f63",4,"\u7f6b\u7f6c\u7f6d\u7f6f\u7f70\u7f73\u7f75\u7f76\u7f77\u7f78\u7f7a\u7f7b\u7f7c\u7f7d\u7f7f\u7f80\u7f82",7,"\u7f8b\u7f8d\u7f8f",4,"\u7f95",4,"\u7f9b\u7f9c\u7fa0\u7fa2\u7fa3\u7fa5\u7fa6\u7fa8",6,"\u7fb1"],["c180","\u7fb3",4,"\u7fba\u7fbb\u7fbe\u7fc0\u7fc2\u7fc3\u7fc4\u7fc6\u7fc7\u7fc8\u7fc9\u7fcb\u7fcd\u7fcf",4,"\u7fd6\u7fd7\u7fd9",5,"\u7fe2\u7fe3\u75e2\u7acb\u7c92\u6ca5\u96b6\u529b\u7483\u54e9\u4fe9\u8054\u83b2\u8fde\u9570\u5ec9\u601c\u6d9f\u5e18\u655b\u8138\u94fe\u604b\u70bc\u7ec3\u7cae\u51c9\u6881\u7cb1\u826f\u4e24\u8f86\u91cf\u667e\u4eae\u8c05\u64a9\u804a\u50da\u7597\u71ce\u5be5\u8fbd\u6f66\u4e86\u6482\u9563\u5ed6\u6599\u5217\u88c2\u70c8\u52a3\u730e\u7433\u6797\u78f7\u9716\u4e34\u90bb\u9cde\u6dcb\u51db\u8d41\u541d\u62ce\u73b2\u83f1\u96f6\u9f84\u94c3\u4f36\u7f9a\u51cc\u7075\u9675\u5cad\u9886\u53e6\u4ee4\u6e9c\u7409\u69b4\u786b\u998f\u7559\u5218\u7624\u6d41\u67f3\u516d\u9f99\u804b\u5499\u7b3c\u7abf"],["c240","\u7fe4\u7fe7\u7fe8\u7fea\u7feb\u7fec\u7fed\u7fef\u7ff2\u7ff4",6,"\u7ffd\u7ffe\u7fff\u8002\u8007\u8008\u8009\u800a\u800e\u800f\u8011\u8013\u801a\u801b\u801d\u801e\u801f\u8021\u8023\u8024\u802b",5,"\u8032\u8034\u8039\u803a\u803c\u803e\u8040\u8041\u8044\u8045\u8047\u8048\u8049\u804e\u804f\u8050\u8051\u8053\u8055\u8056\u8057"],["c280","\u8059\u805b",13,"\u806b",5,"\u8072",11,"\u9686\u5784\u62e2\u9647\u697c\u5a04\u6402\u7bd3\u6f0f\u964b\u82a6\u5362\u9885\u5e90\u7089\u63b3\u5364\u864f\u9c81\u9e93\u788c\u9732\u8def\u8d42\u9e7f\u6f5e\u7984\u5f55\u9646\u622e\u9a74\u5415\u94dd\u4fa3\u65c5\u5c65\u5c61\u7f15\u8651\u6c2f\u5f8b\u7387\u6ee4\u7eff\u5ce6\u631b\u5b6a\u6ee6\u5375\u4e71\u63a0\u7565\u62a1\u8f6e\u4f26\u4ed1\u6ca6\u7eb6\u8bba\u841d\u87ba\u7f57\u903b\u9523\u7ba9\u9aa1\u88f8\u843d\u6d1b\u9a86\u7edc\u5988\u9ebb\u739b\u7801\u8682\u9a6c\u9a82\u561b\u5417\u57cb\u4e70\u9ea6\u5356\u8fc8\u8109\u7792\u9992\u86ee\u6ee1\u8513\u66fc\u6162\u6f2b"],["c340","\u807e\u8081\u8082\u8085\u8088\u808a\u808d",5,"\u8094\u8095\u8097\u8099\u809e\u80a3\u80a6\u80a7\u80a8\u80ac\u80b0\u80b3\u80b5\u80b6\u80b8\u80b9\u80bb\u80c5\u80c7",4,"\u80cf",6,"\u80d8\u80df\u80e0\u80e2\u80e3\u80e6\u80ee\u80f5\u80f7\u80f9\u80fb\u80fe\u80ff\u8100\u8101\u8103\u8104\u8105\u8107\u8108\u810b"],["c380","\u810c\u8115\u8117\u8119\u811b\u811c\u811d\u811f",12,"\u812d\u812e\u8130\u8133\u8134\u8135\u8137\u8139",4,"\u813f\u8c29\u8292\u832b\u76f2\u6c13\u5fd9\u83bd\u732b\u8305\u951a\u6bdb\u77db\u94c6\u536f\u8302\u5192\u5e3d\u8c8c\u8d38\u4e48\u73ab\u679a\u6885\u9176\u9709\u7164\u6ca1\u7709\u5a92\u9541\u6bcf\u7f8e\u6627\u5bd0\u59b9\u5a9a\u95e8\u95f7\u4eec\u840c\u8499\u6aac\u76df\u9530\u731b\u68a6\u5b5f\u772f\u919a\u9761\u7cdc\u8ff7\u8c1c\u5f25\u7c73\u79d8\u89c5\u6ccc\u871c\u5bc6\u5e42\u68c9\u7720\u7ef5\u5195\u514d\u52c9\u5a29\u7f05\u9762\u82d7\u63cf\u7784\u85d0\u79d2\u6e3a\u5e99\u5999\u8511\u706d\u6c11\u62bf\u76bf\u654f\u60af\u95fd\u660e\u879f\u9e23\u94ed\u540d\u547d\u8c2c\u6478"],["c440","\u8140",5,"\u8147\u8149\u814d\u814e\u814f\u8152\u8156\u8157\u8158\u815b",4,"\u8161\u8162\u8163\u8164\u8166\u8168\u816a\u816b\u816c\u816f\u8172\u8173\u8175\u8176\u8177\u8178\u8181\u8183",4,"\u8189\u818b\u818c\u818d\u818e\u8190\u8192",5,"\u8199\u819a\u819e",4,"\u81a4\u81a5"],["c480","\u81a7\u81a9\u81ab",7,"\u81b4",5,"\u81bc\u81bd\u81be\u81bf\u81c4\u81c5\u81c7\u81c8\u81c9\u81cb\u81cd",6,"\u6479\u8611\u6a21\u819c\u78e8\u6469\u9b54\u62b9\u672b\u83ab\u58a8\u9ed8\u6cab\u6f20\u5bde\u964c\u8c0b\u725f\u67d0\u62c7\u7261\u4ea9\u59c6\u6bcd\u5893\u66ae\u5e55\u52df\u6155\u6728\u76ee\u7766\u7267\u7a46\u62ff\u54ea\u5450\u94a0\u90a3\u5a1c\u7eb3\u6c16\u4e43\u5976\u8010\u5948\u5357\u7537\u96be\u56ca\u6320\u8111\u607c\u95f9\u6dd6\u5462\u9981\u5185\u5ae9\u80fd\u59ae\u9713\u502a\u6ce5\u5c3c\u62df\u4f60\u533f\u817b\u9006\u6eba\u852b\u62c8\u5e74\u78be\u64b5\u637b\u5ff5\u5a18\u917f\u9e1f\u5c3f\u634f\u8042\u5b7d\u556e\u954a\u954d\u6d85\u60a8\u67e0\u72de\u51dd\u5b81"],["c540","\u81d4",14,"\u81e4\u81e5\u81e6\u81e8\u81e9\u81eb\u81ee",4,"\u81f5",5,"\u81fd\u81ff\u8203\u8207",4,"\u820e\u820f\u8211\u8213\u8215",5,"\u821d\u8220\u8224\u8225\u8226\u8227\u8229\u822e\u8232\u823a\u823c\u823d\u823f"],["c580","\u8240\u8241\u8242\u8243\u8245\u8246\u8248\u824a\u824c\u824d\u824e\u8250",7,"\u8259\u825b\u825c\u825d\u825e\u8260",7,"\u8269\u62e7\u6cde\u725b\u626d\u94ae\u7ebd\u8113\u6d53\u519c\u5f04\u5974\u52aa\u6012\u5973\u6696\u8650\u759f\u632a\u61e6\u7cef\u8bfa\u54e6\u6b27\u9e25\u6bb4\u85d5\u5455\u5076\u6ca4\u556a\u8db4\u722c\u5e15\u6015\u7436\u62cd\u6392\u724c\u5f98\u6e43\u6d3e\u6500\u6f58\u76d8\u78d0\u76fc\u7554\u5224\u53db\u4e53\u5e9e\u65c1\u802a\u80d6\u629b\u5486\u5228\u70ae\u888d\u8dd1\u6ce1\u5478\u80da\u57f9\u88f4\u8d54\u966a\u914d\u4f69\u6c9b\u55b7\u76c6\u7830\u62a8\u70f9\u6f8e\u5f6d\u84ec\u68da\u787c\u7bf7\u81a8\u670b\u9e4f\u6367\u78b0\u576f\u7812\u9739\u6279\u62ab\u5288\u7435\u6bd7"],["c640","\u826a\u826b\u826c\u826d\u8271\u8275\u8276\u8277\u8278\u827b\u827c\u8280\u8281\u8283\u8285\u8286\u8287\u8289\u828c\u8290\u8293\u8294\u8295\u8296\u829a\u829b\u829e\u82a0\u82a2\u82a3\u82a7\u82b2\u82b5\u82b6\u82ba\u82bb\u82bc\u82bf\u82c0\u82c2\u82c3\u82c5\u82c6\u82c9\u82d0\u82d6\u82d9\u82da\u82dd\u82e2\u82e7\u82e8\u82e9\u82ea\u82ec\u82ed\u82ee\u82f0\u82f2\u82f3\u82f5\u82f6\u82f8"],["c680","\u82fa\u82fc",4,"\u830a\u830b\u830d\u8310\u8312\u8313\u8316\u8318\u8319\u831d",9,"\u8329\u832a\u832e\u8330\u8332\u8337\u833b\u833d\u5564\u813e\u75b2\u76ae\u5339\u75de\u50fb\u5c41\u8b6c\u7bc7\u504f\u7247\u9a97\u98d8\u6f02\u74e2\u7968\u6487\u77a5\u62fc\u9891\u8d2b\u54c1\u8058\u4e52\u576a\u82f9\u840d\u5e73\u51ed\u74f6\u8bc4\u5c4f\u5761\u6cfc\u9887\u5a46\u7834\u9b44\u8feb\u7c95\u5256\u6251\u94fa\u4ec6\u8386\u8461\u83e9\u84b2\u57d4\u6734\u5703\u666e\u6d66\u8c31\u66dd\u7011\u671f\u6b3a\u6816\u621a\u59bb\u4e03\u51c4\u6f06\u67d2\u6c8f\u5176\u68cb\u5947\u6b67\u7566\u5d0e\u8110\u9f50\u65d7\u7948\u7941\u9a91\u8d77\u5c82\u4e5e\u4f01\u542f\u5951\u780c\u5668\u6c14\u8fc4\u5f03\u6c7d\u6ce3\u8bab\u6390"],["c740","\u833e\u833f\u8341\u8342\u8344\u8345\u8348\u834a",4,"\u8353\u8355",4,"\u835d\u8362\u8370",6,"\u8379\u837a\u837e",6,"\u8387\u8388\u838a\u838b\u838c\u838d\u838f\u8390\u8391\u8394\u8395\u8396\u8397\u8399\u839a\u839d\u839f\u83a1",6,"\u83ac\u83ad\u83ae"],["c780","\u83af\u83b5\u83bb\u83be\u83bf\u83c2\u83c3\u83c4\u83c6\u83c8\u83c9\u83cb\u83cd\u83ce\u83d0\u83d1\u83d2\u83d3\u83d5\u83d7\u83d9\u83da\u83db\u83de\u83e2\u83e3\u83e4\u83e6\u83e7\u83e8\u83eb\u83ec\u83ed\u6070\u6d3d\u7275\u6266\u948e\u94c5\u5343\u8fc1\u7b7e\u4edf\u8c26\u4e7e\u9ed4\u94b1\u94b3\u524d\u6f5c\u9063\u6d45\u8c34\u5811\u5d4c\u6b20\u6b49\u67aa\u545b\u8154\u7f8c\u5899\u8537\u5f3a\u62a2\u6a47\u9539\u6572\u6084\u6865\u77a7\u4e54\u4fa8\u5de7\u9798\u64ac\u7fd8\u5ced\u4fcf\u7a8d\u5207\u8304\u4e14\u602f\u7a83\u94a6\u4fb5\u4eb2\u79e6\u7434\u52e4\u82b9\u64d2\u79bd\u5bdd\u6c81\u9752\u8f7b\u6c22\u503e\u537f\u6e05\u64ce\u6674\u6c30\u60c5\u9877\u8bf7\u5e86\u743c\u7a77\u79cb\u4e18\u90b1\u7403\u6c42\u56da\u914b\u6cc5\u8d8b\u533a\u86c6\u66f2\u8eaf\u5c48\u9a71\u6e20"],["c840","\u83ee\u83ef\u83f3",4,"\u83fa\u83fb\u83fc\u83fe\u83ff\u8400\u8402\u8405\u8407\u8408\u8409\u840a\u8410\u8412",5,"\u8419\u841a\u841b\u841e",5,"\u8429",7,"\u8432",5,"\u8439\u843a\u843b\u843e",7,"\u8447\u8448\u8449"],["c880","\u844a",6,"\u8452",4,"\u8458\u845d\u845e\u845f\u8460\u8462\u8464",4,"\u846a\u846e\u846f\u8470\u8472\u8474\u8477\u8479\u847b\u847c\u53d6\u5a36\u9f8b\u8da3\u53bb\u5708\u98a7\u6743\u919b\u6cc9\u5168\u75ca\u62f3\u72ac\u5238\u529d\u7f3a\u7094\u7638\u5374\u9e4a\u69b7\u786e\u96c0\u88d9\u7fa4\u7136\u71c3\u5189\u67d3\u74e4\u58e4\u6518\u56b7\u8ba9\u9976\u6270\u7ed5\u60f9\u70ed\u58ec\u4ec1\u4eba\u5fcd\u97e7\u4efb\u8ba4\u5203\u598a\u7eab\u6254\u4ecd\u65e5\u620e\u8338\u84c9\u8363\u878d\u7194\u6eb6\u5bb9\u7ed2\u5197\u63c9\u67d4\u8089\u8339\u8815\u5112\u5b7a\u5982\u8fb1\u4e73\u6c5d\u5165\u8925\u8f6f\u962e\u854a\u745e\u9510\u95f0\u6da6\u82e5\u5f31\u6492\u6d12\u8428\u816e\u9cc3\u585e\u8d5b\u4e09\u53c1"],["c940","\u847d",4,"\u8483\u8484\u8485\u8486\u848a\u848d\u848f",7,"\u8498\u849a\u849b\u849d\u849e\u849f\u84a0\u84a2",12,"\u84b0\u84b1\u84b3\u84b5\u84b6\u84b7\u84bb\u84bc\u84be\u84c0\u84c2\u84c3\u84c5\u84c6\u84c7\u84c8\u84cb\u84cc\u84ce\u84cf\u84d2\u84d4\u84d5\u84d7"],["c980","\u84d8",4,"\u84de\u84e1\u84e2\u84e4\u84e7",4,"\u84ed\u84ee\u84ef\u84f1",10,"\u84fd\u84fe\u8500\u8501\u8502\u4f1e\u6563\u6851\u55d3\u4e27\u6414\u9a9a\u626b\u5ac2\u745f\u8272\u6da9\u68ee\u50e7\u838e\u7802\u6740\u5239\u6c99\u7eb1\u50bb\u5565\u715e\u7b5b\u6652\u73ca\u82eb\u6749\u5c71\u5220\u717d\u886b\u95ea\u9655\u64c5\u8d61\u81b3\u5584\u6c55\u6247\u7f2e\u5892\u4f24\u5546\u8d4f\u664c\u4e0a\u5c1a\u88f3\u68a2\u634e\u7a0d\u70e7\u828d\u52fa\u97f6\u5c11\u54e8\u90b5\u7ecd\u5962\u8d4a\u86c7\u820c\u820d\u8d66\u6444\u5c04\u6151\u6d89\u793e\u8bbe\u7837\u7533\u547b\u4f38\u8eab\u6df1\u5a20\u7ec5\u795e\u6c88\u5ba1\u5a76\u751a\u80be\u614e\u6e17\u58f0\u751f\u7525\u7272\u5347\u7ef3"],["ca40","\u8503",8,"\u850d\u850e\u850f\u8510\u8512\u8514\u8515\u8516\u8518\u8519\u851b\u851c\u851d\u851e\u8520\u8522",8,"\u852d",9,"\u853e",4,"\u8544\u8545\u8546\u8547\u854b",10],["ca80","\u8557\u8558\u855a\u855b\u855c\u855d\u855f",4,"\u8565\u8566\u8567\u8569",8,"\u8573\u8575\u8576\u8577\u8578\u857c\u857d\u857f\u8580\u8581\u7701\u76db\u5269\u80dc\u5723\u5e08\u5931\u72ee\u65bd\u6e7f\u8bd7\u5c38\u8671\u5341\u77f3\u62fe\u65f6\u4ec0\u98df\u8680\u5b9e\u8bc6\u53f2\u77e2\u4f7f\u5c4e\u9a76\u59cb\u5f0f\u793a\u58eb\u4e16\u67ff\u4e8b\u62ed\u8a93\u901d\u52bf\u662f\u55dc\u566c\u9002\u4ed5\u4f8d\u91ca\u9970\u6c0f\u5e02\u6043\u5ba4\u89c6\u8bd5\u6536\u624b\u9996\u5b88\u5bff\u6388\u552e\u53d7\u7626\u517d\u852c\u67a2\u68b3\u6b8a\u6292\u8f93\u53d4\u8212\u6dd1\u758f\u4e66\u8d4e\u5b70\u719f\u85af\u6691\u66d9\u7f72\u8700\u9ecd\u9f20\u5c5e\u672f\u8ff0\u6811\u675f\u620d\u7ad6\u5885\u5eb6\u6570\u6f31"],["cb40","\u8582\u8583\u8586\u8588",6,"\u8590",10,"\u859d",6,"\u85a5\u85a6\u85a7\u85a9\u85ab\u85ac\u85ad\u85b1",5,"\u85b8\u85ba",6,"\u85c2",6,"\u85ca",4,"\u85d1\u85d2"],["cb80","\u85d4\u85d6",5,"\u85dd",6,"\u85e5\u85e6\u85e7\u85e8\u85ea",14,"\u6055\u5237\u800d\u6454\u8870\u7529\u5e05\u6813\u62f4\u971c\u53cc\u723d\u8c01\u6c34\u7761\u7a0e\u542e\u77ac\u987a\u821c\u8bf4\u7855\u6714\u70c1\u65af\u6495\u5636\u601d\u79c1\u53f8\u4e1d\u6b7b\u8086\u5bfa\u55e3\u56db\u4f3a\u4f3c\u9972\u5df3\u677e\u8038\u6002\u9882\u9001\u5b8b\u8bbc\u8bf5\u641c\u8258\u64de\u55fd\u82cf\u9165\u4fd7\u7d20\u901f\u7c9f\u50f3\u5851\u6eaf\u5bbf\u8bc9\u8083\u9178\u849c\u7b97\u867d\u968b\u968f\u7ee5\u9ad3\u788e\u5c81\u7a57\u9042\u96a7\u795f\u5b59\u635f\u7b0b\u84d1\u68ad\u5506\u7f29\u7410\u7d22\u9501\u6240\u584c\u4ed6\u5b83\u5979\u5854"],["cc40","\u85f9\u85fa\u85fc\u85fd\u85fe\u8600",4,"\u8606",10,"\u8612\u8613\u8614\u8615\u8617",15,"\u8628\u862a",13,"\u8639\u863a\u863b\u863d\u863e\u863f\u8640"],["cc80","\u8641",11,"\u8652\u8653\u8655",4,"\u865b\u865c\u865d\u865f\u8660\u8661\u8663",7,"\u736d\u631e\u8e4b\u8e0f\u80ce\u82d4\u62ac\u53f0\u6cf0\u915e\u592a\u6001\u6c70\u574d\u644a\u8d2a\u762b\u6ee9\u575b\u6a80\u75f0\u6f6d\u8c2d\u8c08\u5766\u6bef\u8892\u78b3\u63a2\u53f9\u70ad\u6c64\u5858\u642a\u5802\u68e0\u819b\u5510\u7cd6\u5018\u8eba\u6dcc\u8d9f\u70eb\u638f\u6d9b\u6ed4\u7ee6\u8404\u6843\u9003\u6dd8\u9676\u8ba8\u5957\u7279\u85e4\u817e\u75bc\u8a8a\u68af\u5254\u8e22\u9511\u63d0\u9898\u8e44\u557c\u4f53\u66ff\u568f\u60d5\u6d95\u5243\u5c49\u5929\u6dfb\u586b\u7530\u751c\u606c\u8214\u8146\u6311\u6761\u8fe2\u773a\u8df3\u8d34\u94c1\u5e16\u5385\u542c\u70c3"],["cd40","\u866d\u866f\u8670\u8672",6,"\u8683",6,"\u868e",4,"\u8694\u8696",5,"\u869e",4,"\u86a5\u86a6\u86ab\u86ad\u86ae\u86b2\u86b3\u86b7\u86b8\u86b9\u86bb",4,"\u86c1\u86c2\u86c3\u86c5\u86c8\u86cc\u86cd\u86d2\u86d3\u86d5\u86d6\u86d7\u86da\u86dc"],["cd80","\u86dd\u86e0\u86e1\u86e2\u86e3\u86e5\u86e6\u86e7\u86e8\u86ea\u86eb\u86ec\u86ef\u86f5\u86f6\u86f7\u86fa\u86fb\u86fc\u86fd\u86ff\u8701\u8704\u8705\u8706\u870b\u870c\u870e\u870f\u8710\u8711\u8714\u8716\u6c40\u5ef7\u505c\u4ead\u5ead\u633a\u8247\u901a\u6850\u916e\u77b3\u540c\u94dc\u5f64\u7ae5\u6876\u6345\u7b52\u7edf\u75db\u5077\u6295\u5934\u900f\u51f8\u79c3\u7a81\u56fe\u5f92\u9014\u6d82\u5c60\u571f\u5410\u5154\u6e4d\u56e2\u63a8\u9893\u817f\u8715\u892a\u9000\u541e\u5c6f\u81c0\u62d6\u6258\u8131\u9e35\u9640\u9a6e\u9a7c\u692d\u59a5\u62d3\u553e\u6316\u54c7\u86d9\u6d3c\u5a03\u74e6\u889c\u6b6a\u5916\u8c4c\u5f2f\u6e7e\u73a9\u987d\u4e38\u70f7\u5b8c\u7897\u633d\u665a\u7696\u60cb\u5b9b\u5a49\u4e07\u8155\u6c6a\u738b\u4ea1\u6789\u7f51\u5f80\u65fa\u671b\u5fd8\u5984\u5a01"],["ce40","\u8719\u871b\u871d\u871f\u8720\u8724\u8726\u8727\u8728\u872a\u872b\u872c\u872d\u872f\u8730\u8732\u8733\u8735\u8736\u8738\u8739\u873a\u873c\u873d\u8740",6,"\u874a\u874b\u874d\u874f\u8750\u8751\u8752\u8754\u8755\u8756\u8758\u875a",5,"\u8761\u8762\u8766",7,"\u876f\u8771\u8772\u8773\u8775"],["ce80","\u8777\u8778\u8779\u877a\u877f\u8780\u8781\u8784\u8786\u8787\u8789\u878a\u878c\u878e",4,"\u8794\u8795\u8796\u8798",6,"\u87a0",4,"\u5dcd\u5fae\u5371\u97e6\u8fdd\u6845\u56f4\u552f\u60df\u4e3a\u6f4d\u7ef4\u82c7\u840e\u59d4\u4f1f\u4f2a\u5c3e\u7eac\u672a\u851a\u5473\u754f\u80c3\u5582\u9b4f\u4f4d\u6e2d\u8c13\u5c09\u6170\u536b\u761f\u6e29\u868a\u6587\u95fb\u7eb9\u543b\u7a33\u7d0a\u95ee\u55e1\u7fc1\u74ee\u631d\u8717\u6da1\u7a9d\u6211\u65a1\u5367\u63e1\u6c83\u5deb\u545c\u94a8\u4e4c\u6c61\u8bec\u5c4b\u65e0\u829c\u68a7\u543e\u5434\u6bcb\u6b66\u4e94\u6342\u5348\u821e\u4f0d\u4fae\u575e\u620a\u96fe\u6664\u7269\u52ff\u52a1\u609f\u8bef\u6614\u7199\u6790\u897f\u7852\u77fd\u6670\u563b\u5438\u9521\u727a"],["cf40","\u87a5\u87a6\u87a7\u87a9\u87aa\u87ae\u87b0\u87b1\u87b2\u87b4\u87b6\u87b7\u87b8\u87b9\u87bb\u87bc\u87be\u87bf\u87c1",4,"\u87c7\u87c8\u87c9\u87cc",4,"\u87d4",6,"\u87dc\u87dd\u87de\u87df\u87e1\u87e2\u87e3\u87e4\u87e6\u87e7\u87e8\u87e9\u87eb\u87ec\u87ed\u87ef",9],["cf80","\u87fa\u87fb\u87fc\u87fd\u87ff\u8800\u8801\u8802\u8804",5,"\u880b",7,"\u8814\u8817\u8818\u8819\u881a\u881c",4,"\u8823\u7a00\u606f\u5e0c\u6089\u819d\u5915\u60dc\u7184\u70ef\u6eaa\u6c50\u7280\u6a84\u88ad\u5e2d\u4e60\u5ab3\u559c\u94e3\u6d17\u7cfb\u9699\u620f\u7ec6\u778e\u867e\u5323\u971e\u8f96\u6687\u5ce1\u4fa0\u72ed\u4e0b\u53a6\u590f\u5413\u6380\u9528\u5148\u4ed9\u9c9c\u7ea4\u54b8\u8d24\u8854\u8237\u95f2\u6d8e\u5f26\u5acc\u663e\u9669\u73b0\u732e\u53bf\u817a\u9985\u7fa1\u5baa\u9677\u9650\u7ebf\u76f8\u53a2\u9576\u9999\u7bb1\u8944\u6e58\u4e61\u7fd4\u7965\u8be6\u60f3\u54cd\u4eab\u9879\u5df7\u6a61\u50cf\u5411\u8c61\u8427\u785d\u9704\u524a\u54ee\u56a3\u9500\u6d88\u5bb5\u6dc6\u6653"],["d040","\u8824",13,"\u8833",5,"\u883a\u883b\u883d\u883e\u883f\u8841\u8842\u8843\u8846",5,"\u884e",5,"\u8855\u8856\u8858\u885a",6,"\u8866\u8867\u886a\u886d\u886f\u8871\u8873\u8874\u8875\u8876\u8878\u8879\u887a"],["d080","\u887b\u887c\u8880\u8883\u8886\u8887\u8889\u888a\u888c\u888e\u888f\u8890\u8891\u8893\u8894\u8895\u8897",4,"\u889d",4,"\u88a3\u88a5",5,"\u5c0f\u5b5d\u6821\u8096\u5578\u7b11\u6548\u6954\u4e9b\u6b47\u874e\u978b\u534f\u631f\u643a\u90aa\u659c\u80c1\u8c10\u5199\u68b0\u5378\u87f9\u61c8\u6cc4\u6cfb\u8c22\u5c51\u85aa\u82af\u950c\u6b23\u8f9b\u65b0\u5ffb\u5fc3\u4fe1\u8845\u661f\u8165\u7329\u60fa\u5174\u5211\u578b\u5f62\u90a2\u884c\u9192\u5e78\u674f\u6027\u59d3\u5144\u51f6\u80f8\u5308\u6c79\u96c4\u718a\u4f11\u4fee\u7f9e\u673d\u55c5\u9508\u79c0\u8896\u7ee3\u589f\u620c\u9700\u865a\u5618\u987b\u5f90\u8bb8\u84c4\u9157\u53d9\u65ed\u5e8f\u755c\u6064\u7d6e\u5a7f\u7eea\u7eed\u8f69\u55a7\u5ba3\u60ac\u65cb\u7384"],["d140","\u88ac\u88ae\u88af\u88b0\u88b2",4,"\u88b8\u88b9\u88ba\u88bb\u88bd\u88be\u88bf\u88c0\u88c3\u88c4\u88c7\u88c8\u88ca\u88cb\u88cc\u88cd\u88cf\u88d0\u88d1\u88d3\u88d6\u88d7\u88da",4,"\u88e0\u88e1\u88e6\u88e7\u88e9",6,"\u88f2\u88f5\u88f6\u88f7\u88fa\u88fb\u88fd\u88ff\u8900\u8901\u8903",5],["d180","\u8909\u890b",4,"\u8911\u8914",4,"\u891c",4,"\u8922\u8923\u8924\u8926\u8927\u8928\u8929\u892c\u892d\u892e\u892f\u8931\u8932\u8933\u8935\u8937\u9009\u7663\u7729\u7eda\u9774\u859b\u5b66\u7a74\u96ea\u8840\u52cb\u718f\u5faa\u65ec\u8be2\u5bfb\u9a6f\u5de1\u6b89\u6c5b\u8bad\u8baf\u900a\u8fc5\u538b\u62bc\u9e26\u9e2d\u5440\u4e2b\u82bd\u7259\u869c\u5d16\u8859\u6daf\u96c5\u54d1\u4e9a\u8bb6\u7109\u54bd\u9609\u70df\u6df9\u76d0\u4e25\u7814\u8712\u5ca9\u5ef6\u8a00\u989c\u960e\u708e\u6cbf\u5944\u63a9\u773c\u884d\u6f14\u8273\u5830\u71d5\u538c\u781a\u96c1\u5501\u5f66\u7130\u5bb4\u8c1a\u9a8c\u6b83\u592e\u9e2f\u79e7\u6768\u626c\u4f6f\u75a1\u7f8a\u6d0b\u9633\u6c27\u4ef0\u75d2\u517b\u6837\u6f3e\u9080\u8170\u5996\u7476"],["d240","\u8938",8,"\u8942\u8943\u8945",24,"\u8960",5,"\u8967",19,"\u897c"],["d280","\u897d\u897e\u8980\u8982\u8984\u8985\u8987",26,"\u6447\u5c27\u9065\u7a91\u8c23\u59da\u54ac\u8200\u836f\u8981\u8000\u6930\u564e\u8036\u7237\u91ce\u51b6\u4e5f\u9875\u6396\u4e1a\u53f6\u66f3\u814b\u591c\u6db2\u4e00\u58f9\u533b\u63d6\u94f1\u4f9d\u4f0a\u8863\u9890\u5937\u9057\u79fb\u4eea\u80f0\u7591\u6c82\u5b9c\u59e8\u5f5d\u6905\u8681\u501a\u5df2\u4e59\u77e3\u4ee5\u827a\u6291\u6613\u9091\u5c79\u4ebf\u5f79\u81c6\u9038\u8084\u75ab\u4ea6\u88d4\u610f\u6bc5\u5fc6\u4e49\u76ca\u6ea2\u8be3\u8bae\u8c0a\u8bd1\u5f02\u7ffc\u7fcc\u7ece\u8335\u836b\u56e0\u6bb7\u97f3\u9634\u59fb\u541f\u94f6\u6deb\u5bc5\u996e\u5c39\u5f15\u9690"],["d340","\u89a2",30,"\u89c3\u89cd\u89d3\u89d4\u89d5\u89d7\u89d8\u89d9\u89db\u89dd\u89df\u89e0\u89e1\u89e2\u89e4\u89e7\u89e8\u89e9\u89ea\u89ec\u89ed\u89ee\u89f0\u89f1\u89f2\u89f4",6],["d380","\u89fb",4,"\u8a01",5,"\u8a08",21,"\u5370\u82f1\u6a31\u5a74\u9e70\u5e94\u7f28\u83b9\u8424\u8425\u8367\u8747\u8fce\u8d62\u76c8\u5f71\u9896\u786c\u6620\u54df\u62e5\u4f63\u81c3\u75c8\u5eb8\u96cd\u8e0a\u86f9\u548f\u6cf3\u6d8c\u6c38\u607f\u52c7\u7528\u5e7d\u4f18\u60a0\u5fe7\u5c24\u7531\u90ae\u94c0\u72b9\u6cb9\u6e38\u9149\u6709\u53cb\u53f3\u4f51\u91c9\u8bf1\u53c8\u5e7c\u8fc2\u6de4\u4e8e\u76c2\u6986\u865e\u611a\u8206\u4f59\u4fde\u903e\u9c7c\u6109\u6e1d\u6e14\u9685\u4e88\u5a31\u96e8\u4e0e\u5c7f\u79b9\u5b87\u8bed\u7fbd\u7389\u57df\u828b\u90c1\u5401\u9047\u55bb\u5cea\u5fa1\u6108\u6b32\u72f1\u80b2\u8a89"],["d440","\u8a1e",31,"\u8a3f",8,"\u8a49",21],["d480","\u8a5f",25,"\u8a7a",6,"\u6d74\u5bd3\u88d5\u9884\u8c6b\u9a6d\u9e33\u6e0a\u51a4\u5143\u57a3\u8881\u539f\u63f4\u8f95\u56ed\u5458\u5706\u733f\u6e90\u7f18\u8fdc\u82d1\u613f\u6028\u9662\u66f0\u7ea6\u8d8a\u8dc3\u94a5\u5cb3\u7ca4\u6708\u60a6\u9605\u8018\u4e91\u90e7\u5300\u9668\u5141\u8fd0\u8574\u915d\u6655\u97f5\u5b55\u531d\u7838\u6742\u683d\u54c9\u707e\u5bb0\u8f7d\u518d\u5728\u54b1\u6512\u6682\u8d5e\u8d43\u810f\u846c\u906d\u7cdf\u51ff\u85fb\u67a3\u65e9\u6fa1\u86a4\u8e81\u566a\u9020\u7682\u7076\u71e5\u8d23\u62e9\u5219\u6cfd\u8d3c\u600e\u589e\u618e\u66fe\u8d60\u624e\u55b3\u6e23\u672d\u8f67"],["d540","\u8a81",7,"\u8a8b",7,"\u8a94",46],["d580","\u8ac3",32,"\u94e1\u95f8\u7728\u6805\u69a8\u548b\u4e4d\u70b8\u8bc8\u6458\u658b\u5b85\u7a84\u503a\u5be8\u77bb\u6be1\u8a79\u7c98\u6cbe\u76cf\u65a9\u8f97\u5d2d\u5c55\u8638\u6808\u5360\u6218\u7ad9\u6e5b\u7efd\u6a1f\u7ae0\u5f70\u6f33\u5f20\u638c\u6da8\u6756\u4e08\u5e10\u8d26\u4ed7\u80c0\u7634\u969c\u62db\u662d\u627e\u6cbc\u8d75\u7167\u7f69\u5146\u8087\u53ec\u906e\u6298\u54f2\u86f0\u8f99\u8005\u9517\u8517\u8fd9\u6d59\u73cd\u659f\u771f\u7504\u7827\u81fb\u8d1e\u9488\u4fa6\u6795\u75b9\u8bca\u9707\u632f\u9547\u9635\u84b8\u6323\u7741\u5f81\u72f0\u4e89\u6014\u6574\u62ef\u6b63\u653f"],["d640","\u8ae4",34,"\u8b08",27],["d680","\u8b24\u8b25\u8b27",30,"\u5e27\u75c7\u90d1\u8bc1\u829d\u679d\u652f\u5431\u8718\u77e5\u80a2\u8102\u6c41\u4e4b\u7ec7\u804c\u76f4\u690d\u6b96\u6267\u503c\u4f84\u5740\u6307\u6b62\u8dbe\u53ea\u65e8\u7eb8\u5fd7\u631a\u63b7\u81f3\u81f4\u7f6e\u5e1c\u5cd9\u5236\u667a\u79e9\u7a1a\u8d28\u7099\u75d4\u6ede\u6cbb\u7a92\u4e2d\u76c5\u5fe0\u949f\u8877\u7ec8\u79cd\u80bf\u91cd\u4ef2\u4f17\u821f\u5468\u5dde\u6d32\u8bcc\u7ca5\u8f74\u8098\u5e1a\u5492\u76b1\u5b99\u663c\u9aa4\u73e0\u682a\u86db\u6731\u732a\u8bf8\u8bdb\u9010\u7af9\u70db\u716e\u62c4\u77a9\u5631\u4e3b\u8457\u67f1\u52a9\u86c0\u8d2e\u94f8\u7b51"],["d740","\u8b46",31,"\u8b67",4,"\u8b6d",25],["d780","\u8b87",24,"\u8bac\u8bb1\u8bbb\u8bc7\u8bd0\u8bea\u8c09\u8c1e\u4f4f\u6ce8\u795d\u9a7b\u6293\u722a\u62fd\u4e13\u7816\u8f6c\u64b0\u8d5a\u7bc6\u6869\u5e84\u88c5\u5986\u649e\u58ee\u72b6\u690e\u9525\u8ffd\u8d58\u5760\u7f00\u8c06\u51c6\u6349\u62d9\u5353\u684c\u7422\u8301\u914c\u5544\u7740\u707c\u6d4a\u5179\u54a8\u8d44\u59ff\u6ecb\u6dc4\u5b5c\u7d2b\u4ed4\u7c7d\u6ed3\u5b50\u81ea\u6e0d\u5b57\u9b03\u68d5\u8e2a\u5b97\u7efc\u603b\u7eb5\u90b9\u8d70\u594f\u63cd\u79df\u8db3\u5352\u65cf\u7956\u8bc5\u963b\u7ec4\u94bb\u7e82\u5634\u9189\u6700\u7f6a\u5c0a\u9075\u6628\u5de6\u4f50\u67de\u505a\u4f5c\u5750\u5ea7"],["d840","\u8c38",8,"\u8c42\u8c43\u8c44\u8c45\u8c48\u8c4a\u8c4b\u8c4d",7,"\u8c56\u8c57\u8c58\u8c59\u8c5b",5,"\u8c63",6,"\u8c6c",6,"\u8c74\u8c75\u8c76\u8c77\u8c7b",6,"\u8c83\u8c84\u8c86\u8c87"],["d880","\u8c88\u8c8b\u8c8d",6,"\u8c95\u8c96\u8c97\u8c99",20,"\u4e8d\u4e0c\u5140\u4e10\u5eff\u5345\u4e15\u4e98\u4e1e\u9b32\u5b6c\u5669\u4e28\u79ba\u4e3f\u5315\u4e47\u592d\u723b\u536e\u6c10\u56df\u80e4\u9997\u6bd3\u777e\u9f17\u4e36\u4e9f\u9f10\u4e5c\u4e69\u4e93\u8288\u5b5b\u556c\u560f\u4ec4\u538d\u539d\u53a3\u53a5\u53ae\u9765\u8d5d\u531a\u53f5\u5326\u532e\u533e\u8d5c\u5366\u5363\u5202\u5208\u520e\u522d\u5233\u523f\u5240\u524c\u525e\u5261\u525c\u84af\u527d\u5282\u5281\u5290\u5293\u5182\u7f54\u4ebb\u4ec3\u4ec9\u4ec2\u4ee8\u4ee1\u4eeb\u4ede\u4f1b\u4ef3\u4f22\u4f64\u4ef5\u4f25\u4f27\u4f09\u4f2b\u4f5e\u4f67\u6538\u4f5a\u4f5d"],["d940","\u8cae",62],["d980","\u8ced",32,"\u4f5f\u4f57\u4f32\u4f3d\u4f76\u4f74\u4f91\u4f89\u4f83\u4f8f\u4f7e\u4f7b\u4faa\u4f7c\u4fac\u4f94\u4fe6\u4fe8\u4fea\u4fc5\u4fda\u4fe3\u4fdc\u4fd1\u4fdf\u4ff8\u5029\u504c\u4ff3\u502c\u500f\u502e\u502d\u4ffe\u501c\u500c\u5025\u5028\u507e\u5043\u5055\u5048\u504e\u506c\u507b\u50a5\u50a7\u50a9\u50ba\u50d6\u5106\u50ed\u50ec\u50e6\u50ee\u5107\u510b\u4edd\u6c3d\u4f58\u4f65\u4fce\u9fa0\u6c46\u7c74\u516e\u5dfd\u9ec9\u9998\u5181\u5914\u52f9\u530d\u8a07\u5310\u51eb\u5919\u5155\u4ea0\u5156\u4eb3\u886e\u88a4\u4eb5\u8114\u88d2\u7980\u5b34\u8803\u7fb8\u51ab\u51b1\u51bd\u51bc"],["da40","\u8d0e",14,"\u8d20\u8d51\u8d52\u8d57\u8d5f\u8d65\u8d68\u8d69\u8d6a\u8d6c\u8d6e\u8d6f\u8d71\u8d72\u8d78",8,"\u8d82\u8d83\u8d86\u8d87\u8d88\u8d89\u8d8c",4,"\u8d92\u8d93\u8d95",9,"\u8da0\u8da1"],["da80","\u8da2\u8da4",12,"\u8db2\u8db6\u8db7\u8db9\u8dbb\u8dbd\u8dc0\u8dc1\u8dc2\u8dc5\u8dc7\u8dc8\u8dc9\u8dca\u8dcd\u8dd0\u8dd2\u8dd3\u8dd4\u51c7\u5196\u51a2\u51a5\u8ba0\u8ba6\u8ba7\u8baa\u8bb4\u8bb5\u8bb7\u8bc2\u8bc3\u8bcb\u8bcf\u8bce\u8bd2\u8bd3\u8bd4\u8bd6\u8bd8\u8bd9\u8bdc\u8bdf\u8be0\u8be4\u8be8\u8be9\u8bee\u8bf0\u8bf3\u8bf6\u8bf9\u8bfc\u8bff\u8c00\u8c02\u8c04\u8c07\u8c0c\u8c0f\u8c11\u8c12\u8c14\u8c15\u8c16\u8c19\u8c1b\u8c18\u8c1d\u8c1f\u8c20\u8c21\u8c25\u8c27\u8c2a\u8c2b\u8c2e\u8c2f\u8c32\u8c33\u8c35\u8c36\u5369\u537a\u961d\u9622\u9621\u9631\u962a\u963d\u963c\u9642\u9649\u9654\u965f\u9667\u966c\u9672\u9674\u9688\u968d\u9697\u96b0\u9097\u909b\u909d\u9099\u90ac\u90a1\u90b4\u90b3\u90b6\u90ba"],["db40","\u8dd5\u8dd8\u8dd9\u8ddc\u8de0\u8de1\u8de2\u8de5\u8de6\u8de7\u8de9\u8ded\u8dee\u8df0\u8df1\u8df2\u8df4\u8df6\u8dfc\u8dfe",6,"\u8e06\u8e07\u8e08\u8e0b\u8e0d\u8e0e\u8e10\u8e11\u8e12\u8e13\u8e15",7,"\u8e20\u8e21\u8e24",4,"\u8e2b\u8e2d\u8e30\u8e32\u8e33\u8e34\u8e36\u8e37\u8e38\u8e3b\u8e3c\u8e3e"],["db80","\u8e3f\u8e43\u8e45\u8e46\u8e4c",4,"\u8e53",5,"\u8e5a",11,"\u8e67\u8e68\u8e6a\u8e6b\u8e6e\u8e71\u90b8\u90b0\u90cf\u90c5\u90be\u90d0\u90c4\u90c7\u90d3\u90e6\u90e2\u90dc\u90d7\u90db\u90eb\u90ef\u90fe\u9104\u9122\u911e\u9123\u9131\u912f\u9139\u9143\u9146\u520d\u5942\u52a2\u52ac\u52ad\u52be\u54ff\u52d0\u52d6\u52f0\u53df\u71ee\u77cd\u5ef4\u51f5\u51fc\u9b2f\u53b6\u5f01\u755a\u5def\u574c\u57a9\u57a1\u587e\u58bc\u58c5\u58d1\u5729\u572c\u572a\u5733\u5739\u572e\u572f\u575c\u573b\u5742\u5769\u5785\u576b\u5786\u577c\u577b\u5768\u576d\u5776\u5773\u57ad\u57a4\u578c\u57b2\u57cf\u57a7\u57b4\u5793\u57a0\u57d5\u57d8\u57da\u57d9\u57d2\u57b8\u57f4\u57ef\u57f8\u57e4\u57dd"],["dc40","\u8e73\u8e75\u8e77",4,"\u8e7d\u8e7e\u8e80\u8e82\u8e83\u8e84\u8e86\u8e88",6,"\u8e91\u8e92\u8e93\u8e95",6,"\u8e9d\u8e9f",11,"\u8ead\u8eae\u8eb0\u8eb1\u8eb3",6,"\u8ebb",7],["dc80","\u8ec3",10,"\u8ecf",21,"\u580b\u580d\u57fd\u57ed\u5800\u581e\u5819\u5844\u5820\u5865\u586c\u5881\u5889\u589a\u5880\u99a8\u9f19\u61ff\u8279\u827d\u827f\u828f\u828a\u82a8\u8284\u828e\u8291\u8297\u8299\u82ab\u82b8\u82be\u82b0\u82c8\u82ca\u82e3\u8298\u82b7\u82ae\u82cb\u82cc\u82c1\u82a9\u82b4\u82a1\u82aa\u829f\u82c4\u82ce\u82a4\u82e1\u8309\u82f7\u82e4\u830f\u8307\u82dc\u82f4\u82d2\u82d8\u830c\u82fb\u82d3\u8311\u831a\u8306\u8314\u8315\u82e0\u82d5\u831c\u8351\u835b\u835c\u8308\u8392\u833c\u8334\u8331\u839b\u835e\u832f\u834f\u8347\u8343\u835f\u8340\u8317\u8360\u832d\u833a\u8333\u8366\u8365"],["dd40","\u8ee5",62],["dd80","\u8f24",32,"\u8368\u831b\u8369\u836c\u836a\u836d\u836e\u83b0\u8378\u83b3\u83b4\u83a0\u83aa\u8393\u839c\u8385\u837c\u83b6\u83a9\u837d\u83b8\u837b\u8398\u839e\u83a8\u83ba\u83bc\u83c1\u8401\u83e5\u83d8\u5807\u8418\u840b\u83dd\u83fd\u83d6\u841c\u8438\u8411\u8406\u83d4\u83df\u840f\u8403\u83f8\u83f9\u83ea\u83c5\u83c0\u8426\u83f0\u83e1\u845c\u8451\u845a\u8459\u8473\u8487\u8488\u847a\u8489\u8478\u843c\u8446\u8469\u8476\u848c\u848e\u8431\u846d\u84c1\u84cd\u84d0\u84e6\u84bd\u84d3\u84ca\u84bf\u84ba\u84e0\u84a1\u84b9\u84b4\u8497\u84e5\u84e3\u850c\u750d\u8538\u84f0\u8539\u851f\u853a"],["de40","\u8f45",32,"\u8f6a\u8f80\u8f8c\u8f92\u8f9d\u8fa0\u8fa1\u8fa2\u8fa4\u8fa5\u8fa6\u8fa7\u8faa\u8fac\u8fad\u8fae\u8faf\u8fb2\u8fb3\u8fb4\u8fb5\u8fb7\u8fb8\u8fba\u8fbb\u8fbc\u8fbf\u8fc0\u8fc3\u8fc6"],["de80","\u8fc9",4,"\u8fcf\u8fd2\u8fd6\u8fd7\u8fda\u8fe0\u8fe1\u8fe3\u8fe7\u8fec\u8fef\u8ff1\u8ff2\u8ff4\u8ff5\u8ff6\u8ffa\u8ffb\u8ffc\u8ffe\u8fff\u9007\u9008\u900c\u900e\u9013\u9015\u9018\u8556\u853b\u84ff\u84fc\u8559\u8548\u8568\u8564\u855e\u857a\u77a2\u8543\u8572\u857b\u85a4\u85a8\u8587\u858f\u8579\u85ae\u859c\u8585\u85b9\u85b7\u85b0\u85d3\u85c1\u85dc\u85ff\u8627\u8605\u8629\u8616\u863c\u5efe\u5f08\u593c\u5941\u8037\u5955\u595a\u5958\u530f\u5c22\u5c25\u5c2c\u5c34\u624c\u626a\u629f\u62bb\u62ca\u62da\u62d7\u62ee\u6322\u62f6\u6339\u634b\u6343\u63ad\u63f6\u6371\u637a\u638e\u63b4\u636d\u63ac\u638a\u6369\u63ae\u63bc\u63f2\u63f8\u63e0\u63ff\u63c4\u63de\u63ce\u6452\u63c6\u63be\u6445\u6441\u640b\u641b\u6420\u640c\u6426\u6421\u645e\u6484\u646d\u6496"],["df40","\u9019\u901c\u9023\u9024\u9025\u9027",5,"\u9030",4,"\u9037\u9039\u903a\u903d\u903f\u9040\u9043\u9045\u9046\u9048",4,"\u904e\u9054\u9055\u9056\u9059\u905a\u905c",5,"\u9064\u9066\u9067\u9069\u906a\u906b\u906c\u906f",4,"\u9076",6,"\u907e\u9081"],["df80","\u9084\u9085\u9086\u9087\u9089\u908a\u908c",4,"\u9092\u9094\u9096\u9098\u909a\u909c\u909e\u909f\u90a0\u90a4\u90a5\u90a7\u90a8\u90a9\u90ab\u90ad\u90b2\u90b7\u90bc\u90bd\u90bf\u90c0\u647a\u64b7\u64b8\u6499\u64ba\u64c0\u64d0\u64d7\u64e4\u64e2\u6509\u6525\u652e\u5f0b\u5fd2\u7519\u5f11\u535f\u53f1\u53fd\u53e9\u53e8\u53fb\u5412\u5416\u5406\u544b\u5452\u5453\u5454\u5456\u5443\u5421\u5457\u5459\u5423\u5432\u5482\u5494\u5477\u5471\u5464\u549a\u549b\u5484\u5476\u5466\u549d\u54d0\u54ad\u54c2\u54b4\u54d2\u54a7\u54a6\u54d3\u54d4\u5472\u54a3\u54d5\u54bb\u54bf\u54cc\u54d9\u54da\u54dc\u54a9\u54aa\u54a4\u54dd\u54cf\u54de\u551b\u54e7\u5520\u54fd\u5514\u54f3\u5522\u5523\u550f\u5511\u5527\u552a\u5567\u558f\u55b5\u5549\u556d\u5541\u5555\u553f\u5550\u553c"],["e040","\u90c2\u90c3\u90c6\u90c8\u90c9\u90cb\u90cc\u90cd\u90d2\u90d4\u90d5\u90d6\u90d8\u90d9\u90da\u90de\u90df\u90e0\u90e3\u90e4\u90e5\u90e9\u90ea\u90ec\u90ee\u90f0\u90f1\u90f2\u90f3\u90f5\u90f6\u90f7\u90f9\u90fa\u90fb\u90fc\u90ff\u9100\u9101\u9103\u9105",19,"\u911a\u911b\u911c"],["e080","\u911d\u911f\u9120\u9121\u9124",10,"\u9130\u9132",6,"\u913a",8,"\u9144\u5537\u5556\u5575\u5576\u5577\u5533\u5530\u555c\u558b\u55d2\u5583\u55b1\u55b9\u5588\u5581\u559f\u557e\u55d6\u5591\u557b\u55df\u55bd\u55be\u5594\u5599\u55ea\u55f7\u55c9\u561f\u55d1\u55eb\u55ec\u55d4\u55e6\u55dd\u55c4\u55ef\u55e5\u55f2\u55f3\u55cc\u55cd\u55e8\u55f5\u55e4\u8f94\u561e\u5608\u560c\u5601\u5624\u5623\u55fe\u5600\u5627\u562d\u5658\u5639\u5657\u562c\u564d\u5662\u5659\u565c\u564c\u5654\u5686\u5664\u5671\u566b\u567b\u567c\u5685\u5693\u56af\u56d4\u56d7\u56dd\u56e1\u56f5\u56eb\u56f9\u56ff\u5704\u570a\u5709\u571c\u5e0f\u5e19\u5e14\u5e11\u5e31\u5e3b\u5e3c"],["e140","\u9145\u9147\u9148\u9151\u9153\u9154\u9155\u9156\u9158\u9159\u915b\u915c\u915f\u9160\u9166\u9167\u9168\u916b\u916d\u9173\u917a\u917b\u917c\u9180",4,"\u9186\u9188\u918a\u918e\u918f\u9193",6,"\u919c",5,"\u91a4",5,"\u91ab\u91ac\u91b0\u91b1\u91b2\u91b3\u91b6\u91b7\u91b8\u91b9\u91bb"],["e180","\u91bc",10,"\u91c8\u91cb\u91d0\u91d2",9,"\u91dd",8,"\u5e37\u5e44\u5e54\u5e5b\u5e5e\u5e61\u5c8c\u5c7a\u5c8d\u5c90\u5c96\u5c88\u5c98\u5c99\u5c91\u5c9a\u5c9c\u5cb5\u5ca2\u5cbd\u5cac\u5cab\u5cb1\u5ca3\u5cc1\u5cb7\u5cc4\u5cd2\u5ce4\u5ccb\u5ce5\u5d02\u5d03\u5d27\u5d26\u5d2e\u5d24\u5d1e\u5d06\u5d1b\u5d58\u5d3e\u5d34\u5d3d\u5d6c\u5d5b\u5d6f\u5d5d\u5d6b\u5d4b\u5d4a\u5d69\u5d74\u5d82\u5d99\u5d9d\u8c73\u5db7\u5dc5\u5f73\u5f77\u5f82\u5f87\u5f89\u5f8c\u5f95\u5f99\u5f9c\u5fa8\u5fad\u5fb5\u5fbc\u8862\u5f61\u72ad\u72b0\u72b4\u72b7\u72b8\u72c3\u72c1\u72ce\u72cd\u72d2\u72e8\u72ef\u72e9\u72f2\u72f4\u72f7\u7301\u72f3\u7303\u72fa"],["e240","\u91e6",62],["e280","\u9225",32,"\u72fb\u7317\u7313\u7321\u730a\u731e\u731d\u7315\u7322\u7339\u7325\u732c\u7338\u7331\u7350\u734d\u7357\u7360\u736c\u736f\u737e\u821b\u5925\u98e7\u5924\u5902\u9963\u9967",5,"\u9974\u9977\u997d\u9980\u9984\u9987\u998a\u998d\u9990\u9991\u9993\u9994\u9995\u5e80\u5e91\u5e8b\u5e96\u5ea5\u5ea0\u5eb9\u5eb5\u5ebe\u5eb3\u8d53\u5ed2\u5ed1\u5edb\u5ee8\u5eea\u81ba\u5fc4\u5fc9\u5fd6\u5fcf\u6003\u5fee\u6004\u5fe1\u5fe4\u5ffe\u6005\u6006\u5fea\u5fed\u5ff8\u6019\u6035\u6026\u601b\u600f\u600d\u6029\u602b\u600a\u603f\u6021\u6078\u6079\u607b\u607a\u6042"],["e340","\u9246",45,"\u9275",16],["e380","\u9286",7,"\u928f",24,"\u606a\u607d\u6096\u609a\u60ad\u609d\u6083\u6092\u608c\u609b\u60ec\u60bb\u60b1\u60dd\u60d8\u60c6\u60da\u60b4\u6120\u6126\u6115\u6123\u60f4\u6100\u610e\u612b\u614a\u6175\u61ac\u6194\u61a7\u61b7\u61d4\u61f5\u5fdd\u96b3\u95e9\u95eb\u95f1\u95f3\u95f5\u95f6\u95fc\u95fe\u9603\u9604\u9606\u9608\u960a\u960b\u960c\u960d\u960f\u9612\u9615\u9616\u9617\u9619\u961a\u4e2c\u723f\u6215\u6c35\u6c54\u6c5c\u6c4a\u6ca3\u6c85\u6c90\u6c94\u6c8c\u6c68\u6c69\u6c74\u6c76\u6c86\u6ca9\u6cd0\u6cd4\u6cad\u6cf7\u6cf8\u6cf1\u6cd7\u6cb2\u6ce0\u6cd6\u6cfa\u6ceb\u6cee\u6cb1\u6cd3\u6cef\u6cfe"],["e440","\u92a8",5,"\u92af",24,"\u92c9",31],["e480","\u92e9",32,"\u6d39\u6d27\u6d0c\u6d43\u6d48\u6d07\u6d04\u6d19\u6d0e\u6d2b\u6d4d\u6d2e\u6d35\u6d1a\u6d4f\u6d52\u6d54\u6d33\u6d91\u6d6f\u6d9e\u6da0\u6d5e\u6d93\u6d94\u6d5c\u6d60\u6d7c\u6d63\u6e1a\u6dc7\u6dc5\u6dde\u6e0e\u6dbf\u6de0\u6e11\u6de6\u6ddd\u6dd9\u6e16\u6dab\u6e0c\u6dae\u6e2b\u6e6e\u6e4e\u6e6b\u6eb2\u6e5f\u6e86\u6e53\u6e54\u6e32\u6e25\u6e44\u6edf\u6eb1\u6e98\u6ee0\u6f2d\u6ee2\u6ea5\u6ea7\u6ebd\u6ebb\u6eb7\u6ed7\u6eb4\u6ecf\u6e8f\u6ec2\u6e9f\u6f62\u6f46\u6f47\u6f24\u6f15\u6ef9\u6f2f\u6f36\u6f4b\u6f74\u6f2a\u6f09\u6f29\u6f89\u6f8d\u6f8c\u6f78\u6f72\u6f7c\u6f7a\u6fd1"],["e540","\u930a",51,"\u933f",10],["e580","\u934a",31,"\u936b\u6fc9\u6fa7\u6fb9\u6fb6\u6fc2\u6fe1\u6fee\u6fde\u6fe0\u6fef\u701a\u7023\u701b\u7039\u7035\u704f\u705e\u5b80\u5b84\u5b95\u5b93\u5ba5\u5bb8\u752f\u9a9e\u6434\u5be4\u5bee\u8930\u5bf0\u8e47\u8b07\u8fb6\u8fd3\u8fd5\u8fe5\u8fee\u8fe4\u8fe9\u8fe6\u8ff3\u8fe8\u9005\u9004\u900b\u9026\u9011\u900d\u9016\u9021\u9035\u9036\u902d\u902f\u9044\u9051\u9052\u9050\u9068\u9058\u9062\u905b\u66b9\u9074\u907d\u9082\u9088\u9083\u908b\u5f50\u5f57\u5f56\u5f58\u5c3b\u54ab\u5c50\u5c59\u5b71\u5c63\u5c66\u7fbc\u5f2a\u5f29\u5f2d\u8274\u5f3c\u9b3b\u5c6e\u5981\u5983\u598d\u59a9\u59aa\u59a3"],["e640","\u936c",34,"\u9390",27],["e680","\u93ac",29,"\u93cb\u93cc\u93cd\u5997\u59ca\u59ab\u599e\u59a4\u59d2\u59b2\u59af\u59d7\u59be\u5a05\u5a06\u59dd\u5a08\u59e3\u59d8\u59f9\u5a0c\u5a09\u5a32\u5a34\u5a11\u5a23\u5a13\u5a40\u5a67\u5a4a\u5a55\u5a3c\u5a62\u5a75\u80ec\u5aaa\u5a9b\u5a77\u5a7a\u5abe\u5aeb\u5ab2\u5ad2\u5ad4\u5ab8\u5ae0\u5ae3\u5af1\u5ad6\u5ae6\u5ad8\u5adc\u5b09\u5b17\u5b16\u5b32\u5b37\u5b40\u5c15\u5c1c\u5b5a\u5b65\u5b73\u5b51\u5b53\u5b62\u9a75\u9a77\u9a78\u9a7a\u9a7f\u9a7d\u9a80\u9a81\u9a85\u9a88\u9a8a\u9a90\u9a92\u9a93\u9a96\u9a98\u9a9b\u9a9c\u9a9d\u9a9f\u9aa0\u9aa2\u9aa3\u9aa5\u9aa7\u7e9f\u7ea1\u7ea3\u7ea5\u7ea8\u7ea9"],["e740","\u93ce",7,"\u93d7",54],["e780","\u940e",32,"\u7ead\u7eb0\u7ebe\u7ec0\u7ec1\u7ec2\u7ec9\u7ecb\u7ecc\u7ed0\u7ed4\u7ed7\u7edb\u7ee0\u7ee1\u7ee8\u7eeb\u7eee\u7eef\u7ef1\u7ef2\u7f0d\u7ef6\u7efa\u7efb\u7efe\u7f01\u7f02\u7f03\u7f07\u7f08\u7f0b\u7f0c\u7f0f\u7f11\u7f12\u7f17\u7f19\u7f1c\u7f1b\u7f1f\u7f21",6,"\u7f2a\u7f2b\u7f2c\u7f2d\u7f2f",4,"\u7f35\u5e7a\u757f\u5ddb\u753e\u9095\u738e\u7391\u73ae\u73a2\u739f\u73cf\u73c2\u73d1\u73b7\u73b3\u73c0\u73c9\u73c8\u73e5\u73d9\u987c\u740a\u73e9\u73e7\u73de\u73ba\u73f2\u740f\u742a\u745b\u7426\u7425\u7428\u7430\u742e\u742c"],["e840","\u942f",14,"\u943f",43,"\u946c\u946d\u946e\u946f"],["e880","\u9470",20,"\u9491\u9496\u9498\u94c7\u94cf\u94d3\u94d4\u94da\u94e6\u94fb\u951c\u9520\u741b\u741a\u7441\u745c\u7457\u7455\u7459\u7477\u746d\u747e\u749c\u748e\u7480\u7481\u7487\u748b\u749e\u74a8\u74a9\u7490\u74a7\u74d2\u74ba\u97ea\u97eb\u97ec\u674c\u6753\u675e\u6748\u6769\u67a5\u6787\u676a\u6773\u6798\u67a7\u6775\u67a8\u679e\u67ad\u678b\u6777\u677c\u67f0\u6809\u67d8\u680a\u67e9\u67b0\u680c\u67d9\u67b5\u67da\u67b3\u67dd\u6800\u67c3\u67b8\u67e2\u680e\u67c1\u67fd\u6832\u6833\u6860\u6861\u684e\u6862\u6844\u6864\u6883\u681d\u6855\u6866\u6841\u6867\u6840\u683e\u684a\u6849\u6829\u68b5\u688f\u6874\u6877\u6893\u686b\u68c2\u696e\u68fc\u691f\u6920\u68f9"],["e940","\u9527\u9533\u953d\u9543\u9548\u954b\u9555\u955a\u9560\u956e\u9574\u9575\u9577",7,"\u9580",42],["e980","\u95ab",32,"\u6924\u68f0\u690b\u6901\u6957\u68e3\u6910\u6971\u6939\u6960\u6942\u695d\u6984\u696b\u6980\u6998\u6978\u6934\u69cc\u6987\u6988\u69ce\u6989\u6966\u6963\u6979\u699b\u69a7\u69bb\u69ab\u69ad\u69d4\u69b1\u69c1\u69ca\u69df\u6995\u69e0\u698d\u69ff\u6a2f\u69ed\u6a17\u6a18\u6a65\u69f2\u6a44\u6a3e\u6aa0\u6a50\u6a5b\u6a35\u6a8e\u6a79\u6a3d\u6a28\u6a58\u6a7c\u6a91\u6a90\u6aa9\u6a97\u6aab\u7337\u7352\u6b81\u6b82\u6b87\u6b84\u6b92\u6b93\u6b8d\u6b9a\u6b9b\u6ba1\u6baa\u8f6b\u8f6d\u8f71\u8f72\u8f73\u8f75\u8f76\u8f78\u8f77\u8f79\u8f7a\u8f7c\u8f7e\u8f81\u8f82\u8f84\u8f87\u8f8b"],["ea40","\u95cc",27,"\u95ec\u95ff\u9607\u9613\u9618\u961b\u961e\u9620\u9623",6,"\u962b\u962c\u962d\u962f\u9630\u9637\u9638\u9639\u963a\u963e\u9641\u9643\u964a\u964e\u964f\u9651\u9652\u9653\u9656\u9657"],["ea80","\u9658\u9659\u965a\u965c\u965d\u965e\u9660\u9663\u9665\u9666\u966b\u966d",4,"\u9673\u9678",12,"\u9687\u9689\u968a\u8f8d\u8f8e\u8f8f\u8f98\u8f9a\u8ece\u620b\u6217\u621b\u621f\u6222\u6221\u6225\u6224\u622c\u81e7\u74ef\u74f4\u74ff\u750f\u7511\u7513\u6534\u65ee\u65ef\u65f0\u660a\u6619\u6772\u6603\u6615\u6600\u7085\u66f7\u661d\u6634\u6631\u6636\u6635\u8006\u665f\u6654\u6641\u664f\u6656\u6661\u6657\u6677\u6684\u668c\u66a7\u669d\u66be\u66db\u66dc\u66e6\u66e9\u8d32\u8d33\u8d36\u8d3b\u8d3d\u8d40\u8d45\u8d46\u8d48\u8d49\u8d47\u8d4d\u8d55\u8d59\u89c7\u89ca\u89cb\u89cc\u89ce\u89cf\u89d0\u89d1\u726e\u729f\u725d\u7266\u726f\u727e\u727f\u7284\u728b\u728d\u728f\u7292\u6308\u6332\u63b0"],["eb40","\u968c\u968e\u9691\u9692\u9693\u9695\u9696\u969a\u969b\u969d",9,"\u96a8",7,"\u96b1\u96b2\u96b4\u96b5\u96b7\u96b8\u96ba\u96bb\u96bf\u96c2\u96c3\u96c8\u96ca\u96cb\u96d0\u96d1\u96d3\u96d4\u96d6",9,"\u96e1",6,"\u96eb"],["eb80","\u96ec\u96ed\u96ee\u96f0\u96f1\u96f2\u96f4\u96f5\u96f8\u96fa\u96fb\u96fc\u96fd\u96ff\u9702\u9703\u9705\u970a\u970b\u970c\u9710\u9711\u9712\u9714\u9715\u9717",4,"\u971d\u971f\u9720\u643f\u64d8\u8004\u6bea\u6bf3\u6bfd\u6bf5\u6bf9\u6c05\u6c07\u6c06\u6c0d\u6c15\u6c18\u6c19\u6c1a\u6c21\u6c29\u6c24\u6c2a\u6c32\u6535\u6555\u656b\u724d\u7252\u7256\u7230\u8662\u5216\u809f\u809c\u8093\u80bc\u670a\u80bd\u80b1\u80ab\u80ad\u80b4\u80b7\u80e7\u80e8\u80e9\u80ea\u80db\u80c2\u80c4\u80d9\u80cd\u80d7\u6710\u80dd\u80eb\u80f1\u80f4\u80ed\u810d\u810e\u80f2\u80fc\u6715\u8112\u8c5a\u8136\u811e\u812c\u8118\u8132\u8148\u814c\u8153\u8174\u8159\u815a\u8171\u8160\u8169\u817c\u817d\u816d\u8167\u584d\u5ab5\u8188\u8182\u8191\u6ed5\u81a3\u81aa\u81cc\u6726\u81ca\u81bb"],["ec40","\u9721",8,"\u972b\u972c\u972e\u972f\u9731\u9733",4,"\u973a\u973b\u973c\u973d\u973f",18,"\u9754\u9755\u9757\u9758\u975a\u975c\u975d\u975f\u9763\u9764\u9766\u9767\u9768\u976a",7],["ec80","\u9772\u9775\u9777",4,"\u977d",7,"\u9786",4,"\u978c\u978e\u978f\u9790\u9793\u9795\u9796\u9797\u9799",4,"\u81c1\u81a6\u6b24\u6b37\u6b39\u6b43\u6b46\u6b59\u98d1\u98d2\u98d3\u98d5\u98d9\u98da\u6bb3\u5f40\u6bc2\u89f3\u6590\u9f51\u6593\u65bc\u65c6\u65c4\u65c3\u65cc\u65ce\u65d2\u65d6\u7080\u709c\u7096\u709d\u70bb\u70c0\u70b7\u70ab\u70b1\u70e8\u70ca\u7110\u7113\u7116\u712f\u7131\u7173\u715c\u7168\u7145\u7172\u714a\u7178\u717a\u7198\u71b3\u71b5\u71a8\u71a0\u71e0\u71d4\u71e7\u71f9\u721d\u7228\u706c\u7118\u7166\u71b9\u623e\u623d\u6243\u6248\u6249\u793b\u7940\u7946\u7949\u795b\u795c\u7953\u795a\u7962\u7957\u7960\u796f\u7967\u797a\u7985\u798a\u799a\u79a7\u79b3\u5fd1\u5fd0"],["ed40","\u979e\u979f\u97a1\u97a2\u97a4",6,"\u97ac\u97ae\u97b0\u97b1\u97b3\u97b5",46],["ed80","\u97e4\u97e5\u97e8\u97ee",4,"\u97f4\u97f7",23,"\u603c\u605d\u605a\u6067\u6041\u6059\u6063\u60ab\u6106\u610d\u615d\u61a9\u619d\u61cb\u61d1\u6206\u8080\u807f\u6c93\u6cf6\u6dfc\u77f6\u77f8\u7800\u7809\u7817\u7818\u7811\u65ab\u782d\u781c\u781d\u7839\u783a\u783b\u781f\u783c\u7825\u782c\u7823\u7829\u784e\u786d\u7856\u7857\u7826\u7850\u7847\u784c\u786a\u789b\u7893\u789a\u7887\u789c\u78a1\u78a3\u78b2\u78b9\u78a5\u78d4\u78d9\u78c9\u78ec\u78f2\u7905\u78f4\u7913\u7924\u791e\u7934\u9f9b\u9ef9\u9efb\u9efc\u76f1\u7704\u770d\u76f9\u7707\u7708\u771a\u7722\u7719\u772d\u7726\u7735\u7738\u7750\u7751\u7747\u7743\u775a\u7768"],["ee40","\u980f",62],["ee80","\u984e",32,"\u7762\u7765\u777f\u778d\u777d\u7780\u778c\u7791\u779f\u77a0\u77b0\u77b5\u77bd\u753a\u7540\u754e\u754b\u7548\u755b\u7572\u7579\u7583\u7f58\u7f61\u7f5f\u8a48\u7f68\u7f74\u7f71\u7f79\u7f81\u7f7e\u76cd\u76e5\u8832\u9485\u9486\u9487\u948b\u948a\u948c\u948d\u948f\u9490\u9494\u9497\u9495\u949a\u949b\u949c\u94a3\u94a4\u94ab\u94aa\u94ad\u94ac\u94af\u94b0\u94b2\u94b4\u94b6",4,"\u94bc\u94bd\u94bf\u94c4\u94c8",6,"\u94d0\u94d1\u94d2\u94d5\u94d6\u94d7\u94d9\u94d8\u94db\u94de\u94df\u94e0\u94e2\u94e4\u94e5\u94e7\u94e8\u94ea"],["ef40","\u986f",5,"\u988b\u988e\u9892\u9895\u9899\u98a3\u98a8",37,"\u98cf\u98d0\u98d4\u98d6\u98d7\u98db\u98dc\u98dd\u98e0",4],["ef80","\u98e5\u98e6\u98e9",30,"\u94e9\u94eb\u94ee\u94ef\u94f3\u94f4\u94f5\u94f7\u94f9\u94fc\u94fd\u94ff\u9503\u9502\u9506\u9507\u9509\u950a\u950d\u950e\u950f\u9512",4,"\u9518\u951b\u951d\u951e\u951f\u9522\u952a\u952b\u9529\u952c\u9531\u9532\u9534\u9536\u9537\u9538\u953c\u953e\u953f\u9542\u9535\u9544\u9545\u9546\u9549\u954c\u954e\u954f\u9552\u9553\u9554\u9556\u9557\u9558\u9559\u955b\u955e\u955f\u955d\u9561\u9562\u9564",8,"\u956f\u9571\u9572\u9573\u953a\u77e7\u77ec\u96c9\u79d5\u79ed\u79e3\u79eb\u7a06\u5d47\u7a03\u7a02\u7a1e\u7a14"],["f040","\u9908",4,"\u990e\u990f\u9911",28,"\u992f",26],["f080","\u994a",9,"\u9956",12,"\u9964\u9966\u9973\u9978\u9979\u997b\u997e\u9982\u9983\u9989\u7a39\u7a37\u7a51\u9ecf\u99a5\u7a70\u7688\u768e\u7693\u7699\u76a4\u74de\u74e0\u752c\u9e20\u9e22\u9e28",4,"\u9e32\u9e31\u9e36\u9e38\u9e37\u9e39\u9e3a\u9e3e\u9e41\u9e42\u9e44\u9e46\u9e47\u9e48\u9e49\u9e4b\u9e4c\u9e4e\u9e51\u9e55\u9e57\u9e5a\u9e5b\u9e5c\u9e5e\u9e63\u9e66",6,"\u9e71\u9e6d\u9e73\u7592\u7594\u7596\u75a0\u759d\u75ac\u75a3\u75b3\u75b4\u75b8\u75c4\u75b1\u75b0\u75c3\u75c2\u75d6\u75cd\u75e3\u75e8\u75e6\u75e4\u75eb\u75e7\u7603\u75f1\u75fc\u75ff\u7610\u7600\u7605\u760c\u7617\u760a\u7625\u7618\u7615\u7619"],["f140","\u998c\u998e\u999a",10,"\u99a6\u99a7\u99a9",47],["f180","\u99d9",32,"\u761b\u763c\u7622\u7620\u7640\u762d\u7630\u763f\u7635\u7643\u763e\u7633\u764d\u765e\u7654\u765c\u7656\u766b\u766f\u7fca\u7ae6\u7a78\u7a79\u7a80\u7a86\u7a88\u7a95\u7aa6\u7aa0\u7aac\u7aa8\u7aad\u7ab3\u8864\u8869\u8872\u887d\u887f\u8882\u88a2\u88c6\u88b7\u88bc\u88c9\u88e2\u88ce\u88e3\u88e5\u88f1\u891a\u88fc\u88e8\u88fe\u88f0\u8921\u8919\u8913\u891b\u890a\u8934\u892b\u8936\u8941\u8966\u897b\u758b\u80e5\u76b2\u76b4\u77dc\u8012\u8014\u8016\u801c\u8020\u8022\u8025\u8026\u8027\u8029\u8028\u8031\u800b\u8035\u8043\u8046\u804d\u8052\u8069\u8071\u8983\u9878\u9880\u9883"],["f240","\u99fa",62],["f280","\u9a39",32,"\u9889\u988c\u988d\u988f\u9894\u989a\u989b\u989e\u989f\u98a1\u98a2\u98a5\u98a6\u864d\u8654\u866c\u866e\u867f\u867a\u867c\u867b\u86a8\u868d\u868b\u86ac\u869d\u86a7\u86a3\u86aa\u8693\u86a9\u86b6\u86c4\u86b5\u86ce\u86b0\u86ba\u86b1\u86af\u86c9\u86cf\u86b4\u86e9\u86f1\u86f2\u86ed\u86f3\u86d0\u8713\u86de\u86f4\u86df\u86d8\u86d1\u8703\u8707\u86f8\u8708\u870a\u870d\u8709\u8723\u873b\u871e\u8725\u872e\u871a\u873e\u8748\u8734\u8731\u8729\u8737\u873f\u8782\u8722\u877d\u877e\u877b\u8760\u8770\u874c\u876e\u878b\u8753\u8763\u877c\u8764\u8759\u8765\u8793\u87af\u87a8\u87d2"],["f340","\u9a5a",17,"\u9a72\u9a83\u9a89\u9a8d\u9a8e\u9a94\u9a95\u9a99\u9aa6\u9aa9",6,"\u9ab2\u9ab3\u9ab4\u9ab5\u9ab9\u9abb\u9abd\u9abe\u9abf\u9ac3\u9ac4\u9ac6",4,"\u9acd\u9ace\u9acf\u9ad0\u9ad2\u9ad4\u9ad5\u9ad6\u9ad7\u9ad9\u9ada\u9adb\u9adc"],["f380","\u9add\u9ade\u9ae0\u9ae2\u9ae3\u9ae4\u9ae5\u9ae7\u9ae8\u9ae9\u9aea\u9aec\u9aee\u9af0",8,"\u9afa\u9afc",6,"\u9b04\u9b05\u9b06\u87c6\u8788\u8785\u87ad\u8797\u8783\u87ab\u87e5\u87ac\u87b5\u87b3\u87cb\u87d3\u87bd\u87d1\u87c0\u87ca\u87db\u87ea\u87e0\u87ee\u8816\u8813\u87fe\u880a\u881b\u8821\u8839\u883c\u7f36\u7f42\u7f44\u7f45\u8210\u7afa\u7afd\u7b08\u7b03\u7b04\u7b15\u7b0a\u7b2b\u7b0f\u7b47\u7b38\u7b2a\u7b19\u7b2e\u7b31\u7b20\u7b25\u7b24\u7b33\u7b3e\u7b1e\u7b58\u7b5a\u7b45\u7b75\u7b4c\u7b5d\u7b60\u7b6e\u7b7b\u7b62\u7b72\u7b71\u7b90\u7ba6\u7ba7\u7bb8\u7bac\u7b9d\u7ba8\u7b85\u7baa\u7b9c\u7ba2\u7bab\u7bb4\u7bd1\u7bc1\u7bcc\u7bdd\u7bda\u7be5\u7be6\u7bea\u7c0c\u7bfe\u7bfc\u7c0f\u7c16\u7c0b"],["f440","\u9b07\u9b09",5,"\u9b10\u9b11\u9b12\u9b14",10,"\u9b20\u9b21\u9b22\u9b24",10,"\u9b30\u9b31\u9b33",7,"\u9b3d\u9b3e\u9b3f\u9b40\u9b46\u9b4a\u9b4b\u9b4c\u9b4e\u9b50\u9b52\u9b53\u9b55",5],["f480","\u9b5b",32,"\u7c1f\u7c2a\u7c26\u7c38\u7c41\u7c40\u81fe\u8201\u8202\u8204\u81ec\u8844\u8221\u8222\u8223\u822d\u822f\u8228\u822b\u8238\u823b\u8233\u8234\u823e\u8244\u8249\u824b\u824f\u825a\u825f\u8268\u887e\u8885\u8888\u88d8\u88df\u895e\u7f9d\u7f9f\u7fa7\u7faf\u7fb0\u7fb2\u7c7c\u6549\u7c91\u7c9d\u7c9c\u7c9e\u7ca2\u7cb2\u7cbc\u7cbd\u7cc1\u7cc7\u7ccc\u7ccd\u7cc8\u7cc5\u7cd7\u7ce8\u826e\u66a8\u7fbf\u7fce\u7fd5\u7fe5\u7fe1\u7fe6\u7fe9\u7fee\u7ff3\u7cf8\u7d77\u7da6\u7dae\u7e47\u7e9b\u9eb8\u9eb4\u8d73\u8d84\u8d94\u8d91\u8db1\u8d67\u8d6d\u8c47\u8c49\u914a\u9150\u914e\u914f\u9164"],["f540","\u9b7c",62],["f580","\u9bbb",32,"\u9162\u9161\u9170\u9169\u916f\u917d\u917e\u9172\u9174\u9179\u918c\u9185\u9190\u918d\u9191\u91a2\u91a3\u91aa\u91ad\u91ae\u91af\u91b5\u91b4\u91ba\u8c55\u9e7e\u8db8\u8deb\u8e05\u8e59\u8e69\u8db5\u8dbf\u8dbc\u8dba\u8dc4\u8dd6\u8dd7\u8dda\u8dde\u8dce\u8dcf\u8ddb\u8dc6\u8dec\u8df7\u8df8\u8de3\u8df9\u8dfb\u8de4\u8e09\u8dfd\u8e14\u8e1d\u8e1f\u8e2c\u8e2e\u8e23\u8e2f\u8e3a\u8e40\u8e39\u8e35\u8e3d\u8e31\u8e49\u8e41\u8e42\u8e51\u8e52\u8e4a\u8e70\u8e76\u8e7c\u8e6f\u8e74\u8e85\u8e8f\u8e94\u8e90\u8e9c\u8e9e\u8c78\u8c82\u8c8a\u8c85\u8c98\u8c94\u659b\u89d6\u89de\u89da\u89dc"],["f640","\u9bdc",62],["f680","\u9c1b",32,"\u89e5\u89eb\u89ef\u8a3e\u8b26\u9753\u96e9\u96f3\u96ef\u9706\u9701\u9708\u970f\u970e\u972a\u972d\u9730\u973e\u9f80\u9f83\u9f85",5,"\u9f8c\u9efe\u9f0b\u9f0d\u96b9\u96bc\u96bd\u96ce\u96d2\u77bf\u96e0\u928e\u92ae\u92c8\u933e\u936a\u93ca\u938f\u943e\u946b\u9c7f\u9c82\u9c85\u9c86\u9c87\u9c88\u7a23\u9c8b\u9c8e\u9c90\u9c91\u9c92\u9c94\u9c95\u9c9a\u9c9b\u9c9e",5,"\u9ca5",4,"\u9cab\u9cad\u9cae\u9cb0",7,"\u9cba\u9cbb\u9cbc\u9cbd\u9cc4\u9cc5\u9cc6\u9cc7\u9cca\u9ccb"],["f740","\u9c3c",62],["f780","\u9c7b\u9c7d\u9c7e\u9c80\u9c83\u9c84\u9c89\u9c8a\u9c8c\u9c8f\u9c93\u9c96\u9c97\u9c98\u9c99\u9c9d\u9caa\u9cac\u9caf\u9cb9\u9cbe",4,"\u9cc8\u9cc9\u9cd1\u9cd2\u9cda\u9cdb\u9ce0\u9ce1\u9ccc",4,"\u9cd3\u9cd4\u9cd5\u9cd7\u9cd8\u9cd9\u9cdc\u9cdd\u9cdf\u9ce2\u977c\u9785\u9791\u9792\u9794\u97af\u97ab\u97a3\u97b2\u97b4\u9ab1\u9ab0\u9ab7\u9e58\u9ab6\u9aba\u9abc\u9ac1\u9ac0\u9ac5\u9ac2\u9acb\u9acc\u9ad1\u9b45\u9b43\u9b47\u9b49\u9b48\u9b4d\u9b51\u98e8\u990d\u992e\u9955\u9954\u9adf\u9ae1\u9ae6\u9aef\u9aeb\u9afb\u9aed\u9af9\u9b08\u9b0f\u9b13\u9b1f\u9b23\u9ebd\u9ebe\u7e3b\u9e82\u9e87\u9e88\u9e8b\u9e92\u93d6\u9e9d\u9e9f\u9edb\u9edc\u9edd\u9ee0\u9edf\u9ee2\u9ee9\u9ee7\u9ee5\u9eea\u9eef\u9f22\u9f2c\u9f2f\u9f39\u9f37\u9f3d\u9f3e\u9f44"],["f840","\u9ce3",62],["f880","\u9d22",32],["f940","\u9d43",62],["f980","\u9d82",32],["fa40","\u9da3",62],["fa80","\u9de2",32],["fb40","\u9e03",27,"\u9e24\u9e27\u9e2e\u9e30\u9e34\u9e3b\u9e3c\u9e40\u9e4d\u9e50\u9e52\u9e53\u9e54\u9e56\u9e59\u9e5d\u9e5f\u9e60\u9e61\u9e62\u9e65\u9e6e\u9e6f\u9e72\u9e74",9,"\u9e80"],["fb80","\u9e81\u9e83\u9e84\u9e85\u9e86\u9e89\u9e8a\u9e8c",5,"\u9e94",8,"\u9e9e\u9ea0",5,"\u9ea7\u9ea8\u9ea9\u9eaa"],["fc40","\u9eab",8,"\u9eb5\u9eb6\u9eb7\u9eb9\u9eba\u9ebc\u9ebf",4,"\u9ec5\u9ec6\u9ec7\u9ec8\u9eca\u9ecb\u9ecc\u9ed0\u9ed2\u9ed3\u9ed5\u9ed6\u9ed7\u9ed9\u9eda\u9ede\u9ee1\u9ee3\u9ee4\u9ee6\u9ee8\u9eeb\u9eec\u9eed\u9eee\u9ef0",8,"\u9efa\u9efd\u9eff",6],["fc80","\u9f06",4,"\u9f0c\u9f0f\u9f11\u9f12\u9f14\u9f15\u9f16\u9f18\u9f1a",5,"\u9f21\u9f23",8,"\u9f2d\u9f2e\u9f30\u9f31"],["fd40","\u9f32",4,"\u9f38\u9f3a\u9f3c\u9f3f",4,"\u9f45",10,"\u9f52",38],["fd80","\u9f79",5,"\u9f81\u9f82\u9f8d",11,"\u9f9c\u9f9d\u9f9e\u9fa1",4,"\uf92c\uf979\uf995\uf9e7\uf9f1"],["fe40","\ufa0c\ufa0d\ufa0e\ufa0f\ufa11\ufa13\ufa14\ufa18\ufa1f\ufa20\ufa21\ufa23\ufa24\ufa27\ufa28\ufa29"]]')},7348:function(T){"use strict";T.exports=JSON.parse('[["0","\\u0000",127],["8141","\uac02\uac03\uac05\uac06\uac0b",4,"\uac18\uac1e\uac1f\uac21\uac22\uac23\uac25",6,"\uac2e\uac32\uac33\uac34"],["8161","\uac35\uac36\uac37\uac3a\uac3b\uac3d\uac3e\uac3f\uac41",9,"\uac4c\uac4e",5,"\uac55"],["8181","\uac56\uac57\uac59\uac5a\uac5b\uac5d",18,"\uac72\uac73\uac75\uac76\uac79\uac7b",4,"\uac82\uac87\uac88\uac8d\uac8e\uac8f\uac91\uac92\uac93\uac95",6,"\uac9e\uaca2",5,"\uacab\uacad\uacae\uacb1",6,"\uacba\uacbe\uacbf\uacc0\uacc2\uacc3\uacc5\uacc6\uacc7\uacc9\uacca\uaccb\uaccd",7,"\uacd6\uacd8",7,"\uace2\uace3\uace5\uace6\uace9\uaceb\uaced\uacee\uacf2\uacf4\uacf7",4,"\uacfe\uacff\uad01\uad02\uad03\uad05\uad07",4,"\uad0e\uad10\uad12\uad13"],["8241","\uad14\uad15\uad16\uad17\uad19\uad1a\uad1b\uad1d\uad1e\uad1f\uad21",7,"\uad2a\uad2b\uad2e",5],["8261","\uad36\uad37\uad39\uad3a\uad3b\uad3d",6,"\uad46\uad48\uad4a",5,"\uad51\uad52\uad53\uad55\uad56\uad57"],["8281","\uad59",7,"\uad62\uad64",7,"\uad6e\uad6f\uad71\uad72\uad77\uad78\uad79\uad7a\uad7e\uad80\uad83",4,"\uad8a\uad8b\uad8d\uad8e\uad8f\uad91",10,"\uad9e",5,"\uada5",17,"\uadb8",7,"\uadc2\uadc3\uadc5\uadc6\uadc7\uadc9",6,"\uadd2\uadd4",7,"\uaddd\uadde\uaddf\uade1\uade2\uade3\uade5",18],["8341","\uadfa\uadfb\uadfd\uadfe\uae02",5,"\uae0a\uae0c\uae0e",5,"\uae15",7],["8361","\uae1d",18,"\uae32\uae33\uae35\uae36\uae39\uae3b\uae3c"],["8381","\uae3d\uae3e\uae3f\uae42\uae44\uae47\uae48\uae49\uae4b\uae4f\uae51\uae52\uae53\uae55\uae57",4,"\uae5e\uae62\uae63\uae64\uae66\uae67\uae6a\uae6b\uae6d\uae6e\uae6f\uae71",6,"\uae7a\uae7e",5,"\uae86",5,"\uae8d",46,"\uaebf\uaec1\uaec2\uaec3\uaec5",6,"\uaece\uaed2",5,"\uaeda\uaedb\uaedd",8],["8441","\uaee6\uaee7\uaee9\uaeea\uaeec\uaeee",5,"\uaef5\uaef6\uaef7\uaef9\uaefa\uaefb\uaefd",8],["8461","\uaf06\uaf09\uaf0a\uaf0b\uaf0c\uaf0e\uaf0f\uaf11",18],["8481","\uaf24",7,"\uaf2e\uaf2f\uaf31\uaf33\uaf35",6,"\uaf3e\uaf40\uaf44\uaf45\uaf46\uaf47\uaf4a",5,"\uaf51",10,"\uaf5e",5,"\uaf66",18,"\uaf7a",5,"\uaf81\uaf82\uaf83\uaf85\uaf86\uaf87\uaf89",6,"\uaf92\uaf93\uaf94\uaf96",5,"\uaf9d",26,"\uafba\uafbb\uafbd\uafbe"],["8541","\uafbf\uafc1",5,"\uafca\uafcc\uafcf",4,"\uafd5",6,"\uafdd",4],["8561","\uafe2",5,"\uafea",5,"\uaff2\uaff3\uaff5\uaff6\uaff7\uaff9",6,"\ub002\ub003"],["8581","\ub005",6,"\ub00d\ub00e\ub00f\ub011\ub012\ub013\ub015",6,"\ub01e",9,"\ub029",26,"\ub046\ub047\ub049\ub04b\ub04d\ub04f\ub050\ub051\ub052\ub056\ub058\ub05a\ub05b\ub05c\ub05e",29,"\ub07e\ub07f\ub081\ub082\ub083\ub085",6,"\ub08e\ub090\ub092",5,"\ub09b\ub09d\ub09e\ub0a3\ub0a4"],["8641","\ub0a5\ub0a6\ub0a7\ub0aa\ub0b0\ub0b2\ub0b6\ub0b7\ub0b9\ub0ba\ub0bb\ub0bd",6,"\ub0c6\ub0ca",5,"\ub0d2"],["8661","\ub0d3\ub0d5\ub0d6\ub0d7\ub0d9",6,"\ub0e1\ub0e2\ub0e3\ub0e4\ub0e6",10],["8681","\ub0f1",22,"\ub10a\ub10d\ub10e\ub10f\ub111\ub114\ub115\ub116\ub117\ub11a\ub11e",4,"\ub126\ub127\ub129\ub12a\ub12b\ub12d",6,"\ub136\ub13a",5,"\ub142\ub143\ub145\ub146\ub147\ub149",6,"\ub152\ub153\ub156\ub157\ub159\ub15a\ub15b\ub15d\ub15e\ub15f\ub161",22,"\ub17a\ub17b\ub17d\ub17e\ub17f\ub181\ub183",4,"\ub18a\ub18c\ub18e\ub18f\ub190\ub191\ub195\ub196\ub197\ub199\ub19a\ub19b\ub19d"],["8741","\ub19e",9,"\ub1a9",15],["8761","\ub1b9",18,"\ub1cd\ub1ce\ub1cf\ub1d1\ub1d2\ub1d3\ub1d5"],["8781","\ub1d6",5,"\ub1de\ub1e0",7,"\ub1ea\ub1eb\ub1ed\ub1ee\ub1ef\ub1f1",7,"\ub1fa\ub1fc\ub1fe",5,"\ub206\ub207\ub209\ub20a\ub20d",6,"\ub216\ub218\ub21a",5,"\ub221",18,"\ub235",6,"\ub23d",26,"\ub259\ub25a\ub25b\ub25d\ub25e\ub25f\ub261",6,"\ub26a",4],["8841","\ub26f",4,"\ub276",5,"\ub27d",6,"\ub286\ub287\ub288\ub28a",4],["8861","\ub28f\ub292\ub293\ub295\ub296\ub297\ub29b",4,"\ub2a2\ub2a4\ub2a7\ub2a8\ub2a9\ub2ab\ub2ad\ub2ae\ub2af\ub2b1\ub2b2\ub2b3\ub2b5\ub2b6\ub2b7"],["8881","\ub2b8",15,"\ub2ca\ub2cb\ub2cd\ub2ce\ub2cf\ub2d1\ub2d3",4,"\ub2da\ub2dc\ub2de\ub2df\ub2e0\ub2e1\ub2e3\ub2e7\ub2e9\ub2ea\ub2f0\ub2f1\ub2f2\ub2f6\ub2fc\ub2fd\ub2fe\ub302\ub303\ub305\ub306\ub307\ub309",6,"\ub312\ub316",5,"\ub31d",54,"\ub357\ub359\ub35a\ub35d\ub360\ub361\ub362\ub363"],["8941","\ub366\ub368\ub36a\ub36c\ub36d\ub36f\ub372\ub373\ub375\ub376\ub377\ub379",6,"\ub382\ub386",5,"\ub38d"],["8961","\ub38e\ub38f\ub391\ub392\ub393\ub395",10,"\ub3a2",5,"\ub3a9\ub3aa\ub3ab\ub3ad"],["8981","\ub3ae",21,"\ub3c6\ub3c7\ub3c9\ub3ca\ub3cd\ub3cf\ub3d1\ub3d2\ub3d3\ub3d6\ub3d8\ub3da\ub3dc\ub3de\ub3df\ub3e1\ub3e2\ub3e3\ub3e5\ub3e6\ub3e7\ub3e9",18,"\ub3fd",18,"\ub411",6,"\ub419\ub41a\ub41b\ub41d\ub41e\ub41f\ub421",6,"\ub42a\ub42c",7,"\ub435",15],["8a41","\ub445",10,"\ub452\ub453\ub455\ub456\ub457\ub459",6,"\ub462\ub464\ub466"],["8a61","\ub467",4,"\ub46d",18,"\ub481\ub482"],["8a81","\ub483",4,"\ub489",19,"\ub49e",5,"\ub4a5\ub4a6\ub4a7\ub4a9\ub4aa\ub4ab\ub4ad",7,"\ub4b6\ub4b8\ub4ba",5,"\ub4c1\ub4c2\ub4c3\ub4c5\ub4c6\ub4c7\ub4c9",6,"\ub4d1\ub4d2\ub4d3\ub4d4\ub4d6",5,"\ub4de\ub4df\ub4e1\ub4e2\ub4e5\ub4e7",4,"\ub4ee\ub4f0\ub4f2",5,"\ub4f9",26,"\ub516\ub517\ub519\ub51a\ub51d"],["8b41","\ub51e",5,"\ub526\ub52b",4,"\ub532\ub533\ub535\ub536\ub537\ub539",6,"\ub542\ub546"],["8b61","\ub547\ub548\ub549\ub54a\ub54e\ub54f\ub551\ub552\ub553\ub555",6,"\ub55e\ub562",8],["8b81","\ub56b",52,"\ub5a2\ub5a3\ub5a5\ub5a6\ub5a7\ub5a9\ub5ac\ub5ad\ub5ae\ub5af\ub5b2\ub5b6",4,"\ub5be\ub5bf\ub5c1\ub5c2\ub5c3\ub5c5",6,"\ub5ce\ub5d2",5,"\ub5d9",18,"\ub5ed",18],["8c41","\ub600",15,"\ub612\ub613\ub615\ub616\ub617\ub619",4],["8c61","\ub61e",6,"\ub626",5,"\ub62d",6,"\ub635",5],["8c81","\ub63b",12,"\ub649",26,"\ub665\ub666\ub667\ub669",50,"\ub69e\ub69f\ub6a1\ub6a2\ub6a3\ub6a5",5,"\ub6ad\ub6ae\ub6af\ub6b0\ub6b2",16],["8d41","\ub6c3",16,"\ub6d5",8],["8d61","\ub6de",17,"\ub6f1\ub6f2\ub6f3\ub6f5\ub6f6\ub6f7\ub6f9\ub6fa"],["8d81","\ub6fb",4,"\ub702\ub703\ub704\ub706",33,"\ub72a\ub72b\ub72d\ub72e\ub731",6,"\ub73a\ub73c",7,"\ub745\ub746\ub747\ub749\ub74a\ub74b\ub74d",6,"\ub756",9,"\ub761\ub762\ub763\ub765\ub766\ub767\ub769",6,"\ub772\ub774\ub776",5,"\ub77e\ub77f\ub781\ub782\ub783\ub785",6,"\ub78e\ub793\ub794\ub795\ub79a\ub79b\ub79d\ub79e"],["8e41","\ub79f\ub7a1",6,"\ub7aa\ub7ae",5,"\ub7b6\ub7b7\ub7b9",8],["8e61","\ub7c2",4,"\ub7c8\ub7ca",19],["8e81","\ub7de",13,"\ub7ee\ub7ef\ub7f1\ub7f2\ub7f3\ub7f5",6,"\ub7fe\ub802",4,"\ub80a\ub80b\ub80d\ub80e\ub80f\ub811",6,"\ub81a\ub81c\ub81e",5,"\ub826\ub827\ub829\ub82a\ub82b\ub82d",6,"\ub836\ub83a",5,"\ub841\ub842\ub843\ub845",11,"\ub852\ub854",7,"\ub85e\ub85f\ub861\ub862\ub863\ub865",6,"\ub86e\ub870\ub872",5,"\ub879\ub87a\ub87b\ub87d",7],["8f41","\ub885",7,"\ub88e",17],["8f61","\ub8a0",7,"\ub8a9",6,"\ub8b1\ub8b2\ub8b3\ub8b5\ub8b6\ub8b7\ub8b9",4],["8f81","\ub8be\ub8bf\ub8c2\ub8c4\ub8c6",5,"\ub8cd\ub8ce\ub8cf\ub8d1\ub8d2\ub8d3\ub8d5",7,"\ub8de\ub8e0\ub8e2",5,"\ub8ea\ub8eb\ub8ed\ub8ee\ub8ef\ub8f1",6,"\ub8fa\ub8fc\ub8fe",5,"\ub905",18,"\ub919",6,"\ub921",26,"\ub93e\ub93f\ub941\ub942\ub943\ub945",6,"\ub94d\ub94e\ub950\ub952",5],["9041","\ub95a\ub95b\ub95d\ub95e\ub95f\ub961",6,"\ub96a\ub96c\ub96e",5,"\ub976\ub977\ub979\ub97a\ub97b\ub97d"],["9061","\ub97e",5,"\ub986\ub988\ub98b\ub98c\ub98f",15],["9081","\ub99f",12,"\ub9ae\ub9af\ub9b1\ub9b2\ub9b3\ub9b5",6,"\ub9be\ub9c0\ub9c2",5,"\ub9ca\ub9cb\ub9cd\ub9d3",4,"\ub9da\ub9dc\ub9df\ub9e0\ub9e2\ub9e6\ub9e7\ub9e9\ub9ea\ub9eb\ub9ed",6,"\ub9f6\ub9fb",4,"\uba02",5,"\uba09",11,"\uba16",33,"\uba3a\uba3b\uba3d\uba3e\uba3f\uba41\uba43\uba44\uba45\uba46"],["9141","\uba47\uba4a\uba4c\uba4f\uba50\uba51\uba52\uba56\uba57\uba59\uba5a\uba5b\uba5d",6,"\uba66\uba6a",5],["9161","\uba72\uba73\uba75\uba76\uba77\uba79",9,"\uba86\uba88\uba89\uba8a\uba8b\uba8d",5],["9181","\uba93",20,"\ubaaa\ubaad\ubaae\ubaaf\ubab1\ubab3",4,"\ubaba\ubabc\ubabe",5,"\ubac5\ubac6\ubac7\ubac9",14,"\ubada",33,"\ubafd\ubafe\ubaff\ubb01\ubb02\ubb03\ubb05",7,"\ubb0e\ubb10\ubb12",5,"\ubb19\ubb1a\ubb1b\ubb1d\ubb1e\ubb1f\ubb21",6],["9241","\ubb28\ubb2a\ubb2c",7,"\ubb37\ubb39\ubb3a\ubb3f",4,"\ubb46\ubb48\ubb4a\ubb4b\ubb4c\ubb4e\ubb51\ubb52"],["9261","\ubb53\ubb55\ubb56\ubb57\ubb59",7,"\ubb62\ubb64",7,"\ubb6d",4],["9281","\ubb72",21,"\ubb89\ubb8a\ubb8b\ubb8d\ubb8e\ubb8f\ubb91",18,"\ubba5\ubba6\ubba7\ubba9\ubbaa\ubbab\ubbad",6,"\ubbb5\ubbb6\ubbb8",7,"\ubbc1\ubbc2\ubbc3\ubbc5\ubbc6\ubbc7\ubbc9",6,"\ubbd1\ubbd2\ubbd4",35,"\ubbfa\ubbfb\ubbfd\ubbfe\ubc01"],["9341","\ubc03",4,"\ubc0a\ubc0e\ubc10\ubc12\ubc13\ubc19\ubc1a\ubc20\ubc21\ubc22\ubc23\ubc26\ubc28\ubc2a\ubc2b\ubc2c\ubc2e\ubc2f\ubc32\ubc33\ubc35"],["9361","\ubc36\ubc37\ubc39",6,"\ubc42\ubc46\ubc47\ubc48\ubc4a\ubc4b\ubc4e\ubc4f\ubc51",8],["9381","\ubc5a\ubc5b\ubc5c\ubc5e",37,"\ubc86\ubc87\ubc89\ubc8a\ubc8d\ubc8f",4,"\ubc96\ubc98\ubc9b",4,"\ubca2\ubca3\ubca5\ubca6\ubca9",6,"\ubcb2\ubcb6",5,"\ubcbe\ubcbf\ubcc1\ubcc2\ubcc3\ubcc5",7,"\ubcce\ubcd2\ubcd3\ubcd4\ubcd6\ubcd7\ubcd9\ubcda\ubcdb\ubcdd",22,"\ubcf7\ubcf9\ubcfa\ubcfb\ubcfd"],["9441","\ubcfe",5,"\ubd06\ubd08\ubd0a",5,"\ubd11\ubd12\ubd13\ubd15",8],["9461","\ubd1e",5,"\ubd25",6,"\ubd2d",12],["9481","\ubd3a",5,"\ubd41",6,"\ubd4a\ubd4b\ubd4d\ubd4e\ubd4f\ubd51",6,"\ubd5a",9,"\ubd65\ubd66\ubd67\ubd69",22,"\ubd82\ubd83\ubd85\ubd86\ubd8b",4,"\ubd92\ubd94\ubd96\ubd97\ubd98\ubd9b\ubd9d",6,"\ubda5",10,"\ubdb1",6,"\ubdb9",24],["9541","\ubdd2\ubdd3\ubdd6\ubdd7\ubdd9\ubdda\ubddb\ubddd",11,"\ubdea",5,"\ubdf1"],["9561","\ubdf2\ubdf3\ubdf5\ubdf6\ubdf7\ubdf9",6,"\ube01\ube02\ube04\ube06",5,"\ube0e\ube0f\ube11\ube12\ube13"],["9581","\ube15",6,"\ube1e\ube20",35,"\ube46\ube47\ube49\ube4a\ube4b\ube4d\ube4f",4,"\ube56\ube58\ube5c\ube5d\ube5e\ube5f\ube62\ube63\ube65\ube66\ube67\ube69\ube6b",4,"\ube72\ube76",4,"\ube7e\ube7f\ube81\ube82\ube83\ube85",6,"\ube8e\ube92",5,"\ube9a",13,"\ubea9",14],["9641","\ubeb8",23,"\ubed2\ubed3"],["9661","\ubed5\ubed6\ubed9",6,"\ubee1\ubee2\ubee6",5,"\ubeed",8],["9681","\ubef6",10,"\ubf02",5,"\ubf0a",13,"\ubf1a\ubf1e",33,"\ubf42\ubf43\ubf45\ubf46\ubf47\ubf49",6,"\ubf52\ubf53\ubf54\ubf56",44],["9741","\ubf83",16,"\ubf95",8],["9761","\ubf9e",17,"\ubfb1",7],["9781","\ubfb9",11,"\ubfc6",5,"\ubfce\ubfcf\ubfd1\ubfd2\ubfd3\ubfd5",6,"\ubfdd\ubfde\ubfe0\ubfe2",89,"\uc03d\uc03e\uc03f"],["9841","\uc040",16,"\uc052",5,"\uc059\uc05a\uc05b"],["9861","\uc05d\uc05e\uc05f\uc061",6,"\uc06a",15],["9881","\uc07a",21,"\uc092\uc093\uc095\uc096\uc097\uc099",6,"\uc0a2\uc0a4\uc0a6",5,"\uc0ae\uc0b1\uc0b2\uc0b7",4,"\uc0be\uc0c2\uc0c3\uc0c4\uc0c6\uc0c7\uc0ca\uc0cb\uc0cd\uc0ce\uc0cf\uc0d1",6,"\uc0da\uc0de",5,"\uc0e6\uc0e7\uc0e9\uc0ea\uc0eb\uc0ed",6,"\uc0f6\uc0f8\uc0fa",5,"\uc101\uc102\uc103\uc105\uc106\uc107\uc109",6,"\uc111\uc112\uc113\uc114\uc116",5,"\uc121\uc122\uc125\uc128\uc129\uc12a\uc12b\uc12e"],["9941","\uc132\uc133\uc134\uc135\uc137\uc13a\uc13b\uc13d\uc13e\uc13f\uc141",6,"\uc14a\uc14e",5,"\uc156\uc157"],["9961","\uc159\uc15a\uc15b\uc15d",6,"\uc166\uc16a",5,"\uc171\uc172\uc173\uc175\uc176\uc177\uc179\uc17a\uc17b"],["9981","\uc17c",8,"\uc186",5,"\uc18f\uc191\uc192\uc193\uc195\uc197",4,"\uc19e\uc1a0\uc1a2\uc1a3\uc1a4\uc1a6\uc1a7\uc1aa\uc1ab\uc1ad\uc1ae\uc1af\uc1b1",11,"\uc1be",5,"\uc1c5\uc1c6\uc1c7\uc1c9\uc1ca\uc1cb\uc1cd",6,"\uc1d5\uc1d6\uc1d9",6,"\uc1e1\uc1e2\uc1e3\uc1e5\uc1e6\uc1e7\uc1e9",6,"\uc1f2\uc1f4",7,"\uc1fe\uc1ff\uc201\uc202\uc203\uc205",6,"\uc20e\uc210\uc212",5,"\uc21a\uc21b\uc21d\uc21e\uc221\uc222\uc223"],["9a41","\uc224\uc225\uc226\uc227\uc22a\uc22c\uc22e\uc230\uc233\uc235",16],["9a61","\uc246\uc247\uc249",6,"\uc252\uc253\uc255\uc256\uc257\uc259",6,"\uc261\uc262\uc263\uc264\uc266"],["9a81","\uc267",4,"\uc26e\uc26f\uc271\uc272\uc273\uc275",6,"\uc27e\uc280\uc282",5,"\uc28a",5,"\uc291",6,"\uc299\uc29a\uc29c\uc29e",5,"\uc2a6\uc2a7\uc2a9\uc2aa\uc2ab\uc2ae",5,"\uc2b6\uc2b8\uc2ba",33,"\uc2de\uc2df\uc2e1\uc2e2\uc2e5",5,"\uc2ee\uc2f0\uc2f2\uc2f3\uc2f4\uc2f5\uc2f7\uc2fa\uc2fd\uc2fe\uc2ff\uc301",6,"\uc30a\uc30b\uc30e\uc30f"],["9b41","\uc310\uc311\uc312\uc316\uc317\uc319\uc31a\uc31b\uc31d",6,"\uc326\uc327\uc32a",8],["9b61","\uc333",17,"\uc346",7],["9b81","\uc34e",25,"\uc36a\uc36b\uc36d\uc36e\uc36f\uc371\uc373",4,"\uc37a\uc37b\uc37e",5,"\uc385\uc386\uc387\uc389\uc38a\uc38b\uc38d",50,"\uc3c1",22,"\uc3da"],["9c41","\uc3db\uc3dd\uc3de\uc3e1\uc3e3",4,"\uc3ea\uc3eb\uc3ec\uc3ee",5,"\uc3f6\uc3f7\uc3f9",5],["9c61","\uc3ff",8,"\uc409",6,"\uc411",9],["9c81","\uc41b",8,"\uc425",6,"\uc42d\uc42e\uc42f\uc431\uc432\uc433\uc435",6,"\uc43e",9,"\uc449",26,"\uc466\uc467\uc469\uc46a\uc46b\uc46d",6,"\uc476\uc477\uc478\uc47a",5,"\uc481",18,"\uc495",6,"\uc49d",12],["9d41","\uc4aa",13,"\uc4b9\uc4ba\uc4bb\uc4bd",8],["9d61","\uc4c6",25],["9d81","\uc4e0",8,"\uc4ea",5,"\uc4f2\uc4f3\uc4f5\uc4f6\uc4f7\uc4f9\uc4fb\uc4fc\uc4fd\uc4fe\uc502",9,"\uc50d\uc50e\uc50f\uc511\uc512\uc513\uc515",6,"\uc51d",10,"\uc52a\uc52b\uc52d\uc52e\uc52f\uc531",6,"\uc53a\uc53c\uc53e",5,"\uc546\uc547\uc54b\uc54f\uc550\uc551\uc552\uc556\uc55a\uc55b\uc55c\uc55f\uc562\uc563\uc565\uc566\uc567\uc569",6,"\uc572\uc576",5,"\uc57e\uc57f\uc581\uc582\uc583\uc585\uc586\uc588\uc589\uc58a\uc58b\uc58e\uc590\uc592\uc593\uc594"],["9e41","\uc596\uc599\uc59a\uc59b\uc59d\uc59e\uc59f\uc5a1",7,"\uc5aa",9,"\uc5b6"],["9e61","\uc5b7\uc5ba\uc5bf",4,"\uc5cb\uc5cd\uc5cf\uc5d2\uc5d3\uc5d5\uc5d6\uc5d7\uc5d9",6,"\uc5e2\uc5e4\uc5e6\uc5e7"],["9e81","\uc5e8\uc5e9\uc5ea\uc5eb\uc5ef\uc5f1\uc5f2\uc5f3\uc5f5\uc5f8\uc5f9\uc5fa\uc5fb\uc602\uc603\uc604\uc609\uc60a\uc60b\uc60d\uc60e\uc60f\uc611",6,"\uc61a\uc61d",6,"\uc626\uc627\uc629\uc62a\uc62b\uc62f\uc631\uc632\uc636\uc638\uc63a\uc63c\uc63d\uc63e\uc63f\uc642\uc643\uc645\uc646\uc647\uc649",6,"\uc652\uc656",5,"\uc65e\uc65f\uc661",10,"\uc66d\uc66e\uc670\uc672",5,"\uc67a\uc67b\uc67d\uc67e\uc67f\uc681",6,"\uc68a\uc68c\uc68e",5,"\uc696\uc697\uc699\uc69a\uc69b\uc69d",6,"\uc6a6"],["9f41","\uc6a8\uc6aa",5,"\uc6b2\uc6b3\uc6b5\uc6b6\uc6b7\uc6bb",4,"\uc6c2\uc6c4\uc6c6",5,"\uc6ce"],["9f61","\uc6cf\uc6d1\uc6d2\uc6d3\uc6d5",6,"\uc6de\uc6df\uc6e2",5,"\uc6ea\uc6eb\uc6ed\uc6ee\uc6ef\uc6f1\uc6f2"],["9f81","\uc6f3",4,"\uc6fa\uc6fb\uc6fc\uc6fe",5,"\uc706\uc707\uc709\uc70a\uc70b\uc70d",6,"\uc716\uc718\uc71a",5,"\uc722\uc723\uc725\uc726\uc727\uc729",6,"\uc732\uc734\uc736\uc738\uc739\uc73a\uc73b\uc73e\uc73f\uc741\uc742\uc743\uc745",4,"\uc74b\uc74e\uc750\uc759\uc75a\uc75b\uc75d\uc75e\uc75f\uc761",6,"\uc769\uc76a\uc76c",7,"\uc776\uc777\uc779\uc77a\uc77b\uc77f\uc780\uc781\uc782\uc786\uc78b\uc78c\uc78d\uc78f\uc792\uc793\uc795\uc799\uc79b",4,"\uc7a2\uc7a7",4,"\uc7ae\uc7af\uc7b1\uc7b2\uc7b3\uc7b5\uc7b6\uc7b7"],["a041","\uc7b8\uc7b9\uc7ba\uc7bb\uc7be\uc7c2",5,"\uc7ca\uc7cb\uc7cd\uc7cf\uc7d1",6,"\uc7d9\uc7da\uc7db\uc7dc"],["a061","\uc7de",5,"\uc7e5\uc7e6\uc7e7\uc7e9\uc7ea\uc7eb\uc7ed",13],["a081","\uc7fb",4,"\uc802\uc803\uc805\uc806\uc807\uc809\uc80b",4,"\uc812\uc814\uc817",4,"\uc81e\uc81f\uc821\uc822\uc823\uc825",6,"\uc82e\uc830\uc832",5,"\uc839\uc83a\uc83b\uc83d\uc83e\uc83f\uc841",6,"\uc84a\uc84b\uc84e",5,"\uc855",26,"\uc872\uc873\uc875\uc876\uc877\uc879\uc87b",4,"\uc882\uc884\uc888\uc889\uc88a\uc88e",5,"\uc895",7,"\uc89e\uc8a0\uc8a2\uc8a3\uc8a4"],["a141","\uc8a5\uc8a6\uc8a7\uc8a9",18,"\uc8be\uc8bf\uc8c0\uc8c1"],["a161","\uc8c2\uc8c3\uc8c5\uc8c6\uc8c7\uc8c9\uc8ca\uc8cb\uc8cd",6,"\uc8d6\uc8d8\uc8da",5,"\uc8e2\uc8e3\uc8e5"],["a181","\uc8e6",14,"\uc8f6",5,"\uc8fe\uc8ff\uc901\uc902\uc903\uc907",4,"\uc90e\u3000\u3001\u3002\xb7\u2025\u2026\xa8\u3003\xad\u2015\u2225\uff3c\u223c\u2018\u2019\u201c\u201d\u3014\u3015\u3008",9,"\xb1\xd7\xf7\u2260\u2264\u2265\u221e\u2234\xb0\u2032\u2033\u2103\u212b\uffe0\uffe1\uffe5\u2642\u2640\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\xa7\u203b\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u2192\u2190\u2191\u2193\u2194\u3013\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229\u2227\u2228\uffe2"],["a241","\uc910\uc912",5,"\uc919",18],["a261","\uc92d",6,"\uc935",18],["a281","\uc948",7,"\uc952\uc953\uc955\uc956\uc957\uc959",6,"\uc962\uc964",7,"\uc96d\uc96e\uc96f\u21d2\u21d4\u2200\u2203\xb4\uff5e\u02c7\u02d8\u02dd\u02da\u02d9\xb8\u02db\xa1\xbf\u02d0\u222e\u2211\u220f\xa4\u2109\u2030\u25c1\u25c0\u25b7\u25b6\u2664\u2660\u2661\u2665\u2667\u2663\u2299\u25c8\u25a3\u25d0\u25d1\u2592\u25a4\u25a5\u25a8\u25a7\u25a6\u25a9\u2668\u260f\u260e\u261c\u261e\xb6\u2020\u2021\u2195\u2197\u2199\u2196\u2198\u266d\u2669\u266a\u266c\u327f\u321c\u2116\u33c7\u2122\u33c2\u33d8\u2121\u20ac\xae"],["a341","\uc971\uc972\uc973\uc975",6,"\uc97d",10,"\uc98a\uc98b\uc98d\uc98e\uc98f"],["a361","\uc991",6,"\uc99a\uc99c\uc99e",16],["a381","\uc9af",16,"\uc9c2\uc9c3\uc9c5\uc9c6\uc9c9\uc9cb",4,"\uc9d2\uc9d4\uc9d7\uc9d8\uc9db\uff01",58,"\uffe6\uff3d",32,"\uffe3"],["a441","\uc9de\uc9df\uc9e1\uc9e3\uc9e5\uc9e6\uc9e8\uc9e9\uc9ea\uc9eb\uc9ee\uc9f2",5,"\uc9fa\uc9fb\uc9fd\uc9fe\uc9ff\uca01\uca02\uca03\uca04"],["a461","\uca05\uca06\uca07\uca0a\uca0e",5,"\uca15\uca16\uca17\uca19",12],["a481","\uca26\uca27\uca28\uca2a",28,"\u3131",93],["a541","\uca47",4,"\uca4e\uca4f\uca51\uca52\uca53\uca55",6,"\uca5e\uca62",5,"\uca69\uca6a"],["a561","\uca6b",17,"\uca7e",5,"\uca85\uca86"],["a581","\uca87",16,"\uca99",14,"\u2170",9],["a5b0","\u2160",9],["a5c1","\u0391",16,"\u03a3",6],["a5e1","\u03b1",16,"\u03c3",6],["a641","\ucaa8",19,"\ucabe\ucabf\ucac1\ucac2\ucac3\ucac5"],["a661","\ucac6",5,"\ucace\ucad0\ucad2\ucad4\ucad5\ucad6\ucad7\ucada",5,"\ucae1",6],["a681","\ucae8\ucae9\ucaea\ucaeb\ucaed",6,"\ucaf5",18,"\ucb09\ucb0a\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542\u2512\u2511\u251a\u2519\u2516\u2515\u250e\u250d\u251e\u251f\u2521\u2522\u2526\u2527\u2529\u252a\u252d\u252e\u2531\u2532\u2535\u2536\u2539\u253a\u253d\u253e\u2540\u2541\u2543",7],["a741","\ucb0b",4,"\ucb11\ucb12\ucb13\ucb15\ucb16\ucb17\ucb19",6,"\ucb22",7],["a761","\ucb2a",22,"\ucb42\ucb43\ucb44"],["a781","\ucb45\ucb46\ucb47\ucb4a\ucb4b\ucb4d\ucb4e\ucb4f\ucb51",6,"\ucb5a\ucb5b\ucb5c\ucb5e",5,"\ucb65",7,"\u3395\u3396\u3397\u2113\u3398\u33c4\u33a3\u33a4\u33a5\u33a6\u3399",9,"\u33ca\u338d\u338e\u338f\u33cf\u3388\u3389\u33c8\u33a7\u33a8\u33b0",9,"\u3380",4,"\u33ba",5,"\u3390",4,"\u2126\u33c0\u33c1\u338a\u338b\u338c\u33d6\u33c5\u33ad\u33ae\u33af\u33db\u33a9\u33aa\u33ab\u33ac\u33dd\u33d0\u33d3\u33c3\u33c9\u33dc\u33c6"],["a841","\ucb6d",10,"\ucb7a",14],["a861","\ucb89",18,"\ucb9d",6],["a881","\ucba4",19,"\ucbb9",11,"\xc6\xd0\xaa\u0126"],["a8a6","\u0132"],["a8a8","\u013f\u0141\xd8\u0152\xba\xde\u0166\u014a"],["a8b1","\u3260",27,"\u24d0",25,"\u2460",14,"\xbd\u2153\u2154\xbc\xbe\u215b\u215c\u215d\u215e"],["a941","\ucbc5",14,"\ucbd5",10],["a961","\ucbe0\ucbe1\ucbe2\ucbe3\ucbe5\ucbe6\ucbe8\ucbea",18],["a981","\ucbfd",14,"\ucc0e\ucc0f\ucc11\ucc12\ucc13\ucc15",6,"\ucc1e\ucc1f\ucc20\ucc23\ucc24\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0140\u0142\xf8\u0153\xdf\xfe\u0167\u014b\u0149\u3200",27,"\u249c",25,"\u2474",14,"\xb9\xb2\xb3\u2074\u207f\u2081\u2082\u2083\u2084"],["aa41","\ucc25\ucc26\ucc2a\ucc2b\ucc2d\ucc2f\ucc31",6,"\ucc3a\ucc3f",4,"\ucc46\ucc47\ucc49\ucc4a\ucc4b\ucc4d\ucc4e"],["aa61","\ucc4f",4,"\ucc56\ucc5a",5,"\ucc61\ucc62\ucc63\ucc65\ucc67\ucc69",6,"\ucc71\ucc72"],["aa81","\ucc73\ucc74\ucc76",29,"\u3041",82],["ab41","\ucc94\ucc95\ucc96\ucc97\ucc9a\ucc9b\ucc9d\ucc9e\ucc9f\ucca1",6,"\uccaa\uccae",5,"\uccb6\uccb7\uccb9"],["ab61","\uccba\uccbb\uccbd",6,"\uccc6\uccc8\uccca",5,"\uccd1\uccd2\uccd3\uccd5",5],["ab81","\uccdb",8,"\ucce5",6,"\ucced\uccee\uccef\uccf1",12,"\u30a1",85],["ac41","\uccfe\uccff\ucd00\ucd02",5,"\ucd0a\ucd0b\ucd0d\ucd0e\ucd0f\ucd11",6,"\ucd1a\ucd1c\ucd1e\ucd1f\ucd20"],["ac61","\ucd21\ucd22\ucd23\ucd25\ucd26\ucd27\ucd29\ucd2a\ucd2b\ucd2d",11,"\ucd3a",4],["ac81","\ucd3f",28,"\ucd5d\ucd5e\ucd5f\u0410",5,"\u0401\u0416",25],["acd1","\u0430",5,"\u0451\u0436",25],["ad41","\ucd61\ucd62\ucd63\ucd65",6,"\ucd6e\ucd70\ucd72",5,"\ucd79",7],["ad61","\ucd81",6,"\ucd89",10,"\ucd96\ucd97\ucd99\ucd9a\ucd9b\ucd9d\ucd9e\ucd9f"],["ad81","\ucda0\ucda1\ucda2\ucda3\ucda6\ucda8\ucdaa",5,"\ucdb1",18,"\ucdc5"],["ae41","\ucdc6",5,"\ucdcd\ucdce\ucdcf\ucdd1",16],["ae61","\ucde2",5,"\ucde9\ucdea\ucdeb\ucded\ucdee\ucdef\ucdf1",6,"\ucdfa\ucdfc\ucdfe",4],["ae81","\uce03\uce05\uce06\uce07\uce09\uce0a\uce0b\uce0d",6,"\uce15\uce16\uce17\uce18\uce1a",5,"\uce22\uce23\uce25\uce26\uce27\uce29\uce2a\uce2b"],["af41","\uce2c\uce2d\uce2e\uce2f\uce32\uce34\uce36",19],["af61","\uce4a",13,"\uce5a\uce5b\uce5d\uce5e\uce62",5,"\uce6a\uce6c"],["af81","\uce6e",5,"\uce76\uce77\uce79\uce7a\uce7b\uce7d",6,"\uce86\uce88\uce8a",5,"\uce92\uce93\uce95\uce96\uce97\uce99"],["b041","\uce9a",5,"\ucea2\ucea6",5,"\uceae",12],["b061","\ucebb",5,"\ucec2",19],["b081","\uced6",13,"\ucee6\ucee7\ucee9\uceea\uceed",6,"\ucef6\ucefa",5,"\uac00\uac01\uac04\uac07\uac08\uac09\uac0a\uac10",7,"\uac19",4,"\uac20\uac24\uac2c\uac2d\uac2f\uac30\uac31\uac38\uac39\uac3c\uac40\uac4b\uac4d\uac54\uac58\uac5c\uac70\uac71\uac74\uac77\uac78\uac7a\uac80\uac81\uac83\uac84\uac85\uac86\uac89\uac8a\uac8b\uac8c\uac90\uac94\uac9c\uac9d\uac9f\uaca0\uaca1\uaca8\uaca9\uacaa\uacac\uacaf\uacb0\uacb8\uacb9\uacbb\uacbc\uacbd\uacc1\uacc4\uacc8\uaccc\uacd5\uacd7\uace0\uace1\uace4\uace7\uace8\uacea\uacec\uacef\uacf0\uacf1\uacf3\uacf5\uacf6\uacfc\uacfd\uad00\uad04\uad06"],["b141","\ucf02\ucf03\ucf05\ucf06\ucf07\ucf09",6,"\ucf12\ucf14\ucf16",5,"\ucf1d\ucf1e\ucf1f\ucf21\ucf22\ucf23"],["b161","\ucf25",6,"\ucf2e\ucf32",5,"\ucf39",11],["b181","\ucf45",14,"\ucf56\ucf57\ucf59\ucf5a\ucf5b\ucf5d",6,"\ucf66\ucf68\ucf6a\ucf6b\ucf6c\uad0c\uad0d\uad0f\uad11\uad18\uad1c\uad20\uad29\uad2c\uad2d\uad34\uad35\uad38\uad3c\uad44\uad45\uad47\uad49\uad50\uad54\uad58\uad61\uad63\uad6c\uad6d\uad70\uad73\uad74\uad75\uad76\uad7b\uad7c\uad7d\uad7f\uad81\uad82\uad88\uad89\uad8c\uad90\uad9c\uad9d\uada4\uadb7\uadc0\uadc1\uadc4\uadc8\uadd0\uadd1\uadd3\uaddc\uade0\uade4\uadf8\uadf9\uadfc\uadff\uae00\uae01\uae08\uae09\uae0b\uae0d\uae14\uae30\uae31\uae34\uae37\uae38\uae3a\uae40\uae41\uae43\uae45\uae46\uae4a\uae4c\uae4d\uae4e\uae50\uae54\uae56\uae5c\uae5d\uae5f\uae60\uae61\uae65\uae68\uae69\uae6c\uae70\uae78"],["b241","\ucf6d\ucf6e\ucf6f\ucf72\ucf73\ucf75\ucf76\ucf77\ucf79",6,"\ucf81\ucf82\ucf83\ucf84\ucf86",5,"\ucf8d"],["b261","\ucf8e",18,"\ucfa2",5,"\ucfa9"],["b281","\ucfaa",5,"\ucfb1",18,"\ucfc5",6,"\uae79\uae7b\uae7c\uae7d\uae84\uae85\uae8c\uaebc\uaebd\uaebe\uaec0\uaec4\uaecc\uaecd\uaecf\uaed0\uaed1\uaed8\uaed9\uaedc\uaee8\uaeeb\uaeed\uaef4\uaef8\uaefc\uaf07\uaf08\uaf0d\uaf10\uaf2c\uaf2d\uaf30\uaf32\uaf34\uaf3c\uaf3d\uaf3f\uaf41\uaf42\uaf43\uaf48\uaf49\uaf50\uaf5c\uaf5d\uaf64\uaf65\uaf79\uaf80\uaf84\uaf88\uaf90\uaf91\uaf95\uaf9c\uafb8\uafb9\uafbc\uafc0\uafc7\uafc8\uafc9\uafcb\uafcd\uafce\uafd4\uafdc\uafe8\uafe9\uaff0\uaff1\uaff4\uaff8\ub000\ub001\ub004\ub00c\ub010\ub014\ub01c\ub01d\ub028\ub044\ub045\ub048\ub04a\ub04c\ub04e\ub053\ub054\ub055\ub057\ub059"],["b341","\ucfcc",19,"\ucfe2\ucfe3\ucfe5\ucfe6\ucfe7\ucfe9"],["b361","\ucfea",5,"\ucff2\ucff4\ucff6",5,"\ucffd\ucffe\ucfff\ud001\ud002\ud003\ud005",5],["b381","\ud00b",5,"\ud012",5,"\ud019",19,"\ub05d\ub07c\ub07d\ub080\ub084\ub08c\ub08d\ub08f\ub091\ub098\ub099\ub09a\ub09c\ub09f\ub0a0\ub0a1\ub0a2\ub0a8\ub0a9\ub0ab",4,"\ub0b1\ub0b3\ub0b4\ub0b5\ub0b8\ub0bc\ub0c4\ub0c5\ub0c7\ub0c8\ub0c9\ub0d0\ub0d1\ub0d4\ub0d8\ub0e0\ub0e5\ub108\ub109\ub10b\ub10c\ub110\ub112\ub113\ub118\ub119\ub11b\ub11c\ub11d\ub123\ub124\ub125\ub128\ub12c\ub134\ub135\ub137\ub138\ub139\ub140\ub141\ub144\ub148\ub150\ub151\ub154\ub155\ub158\ub15c\ub160\ub178\ub179\ub17c\ub180\ub182\ub188\ub189\ub18b\ub18d\ub192\ub193\ub194\ub198\ub19c\ub1a8\ub1cc\ub1d0\ub1d4\ub1dc\ub1dd"],["b441","\ud02e",5,"\ud036\ud037\ud039\ud03a\ud03b\ud03d",6,"\ud046\ud048\ud04a",5],["b461","\ud051\ud052\ud053\ud055\ud056\ud057\ud059",6,"\ud061",10,"\ud06e\ud06f"],["b481","\ud071\ud072\ud073\ud075",6,"\ud07e\ud07f\ud080\ud082",18,"\ub1df\ub1e8\ub1e9\ub1ec\ub1f0\ub1f9\ub1fb\ub1fd\ub204\ub205\ub208\ub20b\ub20c\ub214\ub215\ub217\ub219\ub220\ub234\ub23c\ub258\ub25c\ub260\ub268\ub269\ub274\ub275\ub27c\ub284\ub285\ub289\ub290\ub291\ub294\ub298\ub299\ub29a\ub2a0\ub2a1\ub2a3\ub2a5\ub2a6\ub2aa\ub2ac\ub2b0\ub2b4\ub2c8\ub2c9\ub2cc\ub2d0\ub2d2\ub2d8\ub2d9\ub2db\ub2dd\ub2e2\ub2e4\ub2e5\ub2e6\ub2e8\ub2eb",4,"\ub2f3\ub2f4\ub2f5\ub2f7",4,"\ub2ff\ub300\ub301\ub304\ub308\ub310\ub311\ub313\ub314\ub315\ub31c\ub354\ub355\ub356\ub358\ub35b\ub35c\ub35e\ub35f\ub364\ub365"],["b541","\ud095",14,"\ud0a6\ud0a7\ud0a9\ud0aa\ud0ab\ud0ad",5],["b561","\ud0b3\ud0b6\ud0b8\ud0ba",5,"\ud0c2\ud0c3\ud0c5\ud0c6\ud0c7\ud0ca",5,"\ud0d2\ud0d6",4],["b581","\ud0db\ud0de\ud0df\ud0e1\ud0e2\ud0e3\ud0e5",6,"\ud0ee\ud0f2",5,"\ud0f9",11,"\ub367\ub369\ub36b\ub36e\ub370\ub371\ub374\ub378\ub380\ub381\ub383\ub384\ub385\ub38c\ub390\ub394\ub3a0\ub3a1\ub3a8\ub3ac\ub3c4\ub3c5\ub3c8\ub3cb\ub3cc\ub3ce\ub3d0\ub3d4\ub3d5\ub3d7\ub3d9\ub3db\ub3dd\ub3e0\ub3e4\ub3e8\ub3fc\ub410\ub418\ub41c\ub420\ub428\ub429\ub42b\ub434\ub450\ub451\ub454\ub458\ub460\ub461\ub463\ub465\ub46c\ub480\ub488\ub49d\ub4a4\ub4a8\ub4ac\ub4b5\ub4b7\ub4b9\ub4c0\ub4c4\ub4c8\ub4d0\ub4d5\ub4dc\ub4dd\ub4e0\ub4e3\ub4e4\ub4e6\ub4ec\ub4ed\ub4ef\ub4f1\ub4f8\ub514\ub515\ub518\ub51b\ub51c\ub524\ub525\ub527\ub528\ub529\ub52a\ub530\ub531\ub534\ub538"],["b641","\ud105",7,"\ud10e",17],["b661","\ud120",15,"\ud132\ud133\ud135\ud136\ud137\ud139\ud13b\ud13c\ud13d\ud13e"],["b681","\ud13f\ud142\ud146",5,"\ud14e\ud14f\ud151\ud152\ud153\ud155",6,"\ud15e\ud160\ud162",5,"\ud169\ud16a\ud16b\ud16d\ub540\ub541\ub543\ub544\ub545\ub54b\ub54c\ub54d\ub550\ub554\ub55c\ub55d\ub55f\ub560\ub561\ub5a0\ub5a1\ub5a4\ub5a8\ub5aa\ub5ab\ub5b0\ub5b1\ub5b3\ub5b4\ub5b5\ub5bb\ub5bc\ub5bd\ub5c0\ub5c4\ub5cc\ub5cd\ub5cf\ub5d0\ub5d1\ub5d8\ub5ec\ub610\ub611\ub614\ub618\ub625\ub62c\ub634\ub648\ub664\ub668\ub69c\ub69d\ub6a0\ub6a4\ub6ab\ub6ac\ub6b1\ub6d4\ub6f0\ub6f4\ub6f8\ub700\ub701\ub705\ub728\ub729\ub72c\ub72f\ub730\ub738\ub739\ub73b\ub744\ub748\ub74c\ub754\ub755\ub760\ub764\ub768\ub770\ub771\ub773\ub775\ub77c\ub77d\ub780\ub784\ub78c\ub78d\ub78f\ub790\ub791\ub792\ub796\ub797"],["b741","\ud16e",13,"\ud17d",6,"\ud185\ud186\ud187\ud189\ud18a"],["b761","\ud18b",20,"\ud1a2\ud1a3\ud1a5\ud1a6\ud1a7"],["b781","\ud1a9",6,"\ud1b2\ud1b4\ud1b6\ud1b7\ud1b8\ud1b9\ud1bb\ud1bd\ud1be\ud1bf\ud1c1",14,"\ub798\ub799\ub79c\ub7a0\ub7a8\ub7a9\ub7ab\ub7ac\ub7ad\ub7b4\ub7b5\ub7b8\ub7c7\ub7c9\ub7ec\ub7ed\ub7f0\ub7f4\ub7fc\ub7fd\ub7ff\ub800\ub801\ub807\ub808\ub809\ub80c\ub810\ub818\ub819\ub81b\ub81d\ub824\ub825\ub828\ub82c\ub834\ub835\ub837\ub838\ub839\ub840\ub844\ub851\ub853\ub85c\ub85d\ub860\ub864\ub86c\ub86d\ub86f\ub871\ub878\ub87c\ub88d\ub8a8\ub8b0\ub8b4\ub8b8\ub8c0\ub8c1\ub8c3\ub8c5\ub8cc\ub8d0\ub8d4\ub8dd\ub8df\ub8e1\ub8e8\ub8e9\ub8ec\ub8f0\ub8f8\ub8f9\ub8fb\ub8fd\ub904\ub918\ub920\ub93c\ub93d\ub940\ub944\ub94c\ub94f\ub951\ub958\ub959\ub95c\ub960\ub968\ub969"],["b841","\ud1d0",7,"\ud1d9",17],["b861","\ud1eb",8,"\ud1f5\ud1f6\ud1f7\ud1f9",13],["b881","\ud208\ud20a",5,"\ud211",24,"\ub96b\ub96d\ub974\ub975\ub978\ub97c\ub984\ub985\ub987\ub989\ub98a\ub98d\ub98e\ub9ac\ub9ad\ub9b0\ub9b4\ub9bc\ub9bd\ub9bf\ub9c1\ub9c8\ub9c9\ub9cc\ub9ce",4,"\ub9d8\ub9d9\ub9db\ub9dd\ub9de\ub9e1\ub9e3\ub9e4\ub9e5\ub9e8\ub9ec\ub9f4\ub9f5\ub9f7\ub9f8\ub9f9\ub9fa\uba00\uba01\uba08\uba15\uba38\uba39\uba3c\uba40\uba42\uba48\uba49\uba4b\uba4d\uba4e\uba53\uba54\uba55\uba58\uba5c\uba64\uba65\uba67\uba68\uba69\uba70\uba71\uba74\uba78\uba83\uba84\uba85\uba87\uba8c\ubaa8\ubaa9\ubaab\ubaac\ubab0\ubab2\ubab8\ubab9\ubabb\ubabd\ubac4\ubac8\ubad8\ubad9\ubafc"],["b941","\ud22a\ud22b\ud22e\ud22f\ud231\ud232\ud233\ud235",6,"\ud23e\ud240\ud242",5,"\ud249\ud24a\ud24b\ud24c"],["b961","\ud24d",14,"\ud25d",6,"\ud265\ud266\ud267\ud268"],["b981","\ud269",22,"\ud282\ud283\ud285\ud286\ud287\ud289\ud28a\ud28b\ud28c\ubb00\ubb04\ubb0d\ubb0f\ubb11\ubb18\ubb1c\ubb20\ubb29\ubb2b\ubb34\ubb35\ubb36\ubb38\ubb3b\ubb3c\ubb3d\ubb3e\ubb44\ubb45\ubb47\ubb49\ubb4d\ubb4f\ubb50\ubb54\ubb58\ubb61\ubb63\ubb6c\ubb88\ubb8c\ubb90\ubba4\ubba8\ubbac\ubbb4\ubbb7\ubbc0\ubbc4\ubbc8\ubbd0\ubbd3\ubbf8\ubbf9\ubbfc\ubbff\ubc00\ubc02\ubc08\ubc09\ubc0b\ubc0c\ubc0d\ubc0f\ubc11\ubc14",4,"\ubc1b",4,"\ubc24\ubc25\ubc27\ubc29\ubc2d\ubc30\ubc31\ubc34\ubc38\ubc40\ubc41\ubc43\ubc44\ubc45\ubc49\ubc4c\ubc4d\ubc50\ubc5d\ubc84\ubc85\ubc88\ubc8b\ubc8c\ubc8e\ubc94\ubc95\ubc97"],["ba41","\ud28d\ud28e\ud28f\ud292\ud293\ud294\ud296",5,"\ud29d\ud29e\ud29f\ud2a1\ud2a2\ud2a3\ud2a5",6,"\ud2ad"],["ba61","\ud2ae\ud2af\ud2b0\ud2b2",5,"\ud2ba\ud2bb\ud2bd\ud2be\ud2c1\ud2c3",4,"\ud2ca\ud2cc",5],["ba81","\ud2d2\ud2d3\ud2d5\ud2d6\ud2d7\ud2d9\ud2da\ud2db\ud2dd",6,"\ud2e6",9,"\ud2f2\ud2f3\ud2f5\ud2f6\ud2f7\ud2f9\ud2fa\ubc99\ubc9a\ubca0\ubca1\ubca4\ubca7\ubca8\ubcb0\ubcb1\ubcb3\ubcb4\ubcb5\ubcbc\ubcbd\ubcc0\ubcc4\ubccd\ubccf\ubcd0\ubcd1\ubcd5\ubcd8\ubcdc\ubcf4\ubcf5\ubcf6\ubcf8\ubcfc\ubd04\ubd05\ubd07\ubd09\ubd10\ubd14\ubd24\ubd2c\ubd40\ubd48\ubd49\ubd4c\ubd50\ubd58\ubd59\ubd64\ubd68\ubd80\ubd81\ubd84\ubd87\ubd88\ubd89\ubd8a\ubd90\ubd91\ubd93\ubd95\ubd99\ubd9a\ubd9c\ubda4\ubdb0\ubdb8\ubdd4\ubdd5\ubdd8\ubddc\ubde9\ubdf0\ubdf4\ubdf8\ube00\ube03\ube05\ube0c\ube0d\ube10\ube14\ube1c\ube1d\ube1f\ube44\ube45\ube48\ube4c\ube4e\ube54\ube55\ube57\ube59\ube5a\ube5b\ube60\ube61\ube64"],["bb41","\ud2fb",4,"\ud302\ud304\ud306",5,"\ud30f\ud311\ud312\ud313\ud315\ud317",4,"\ud31e\ud322\ud323"],["bb61","\ud324\ud326\ud327\ud32a\ud32b\ud32d\ud32e\ud32f\ud331",6,"\ud33a\ud33e",5,"\ud346\ud347\ud348\ud349"],["bb81","\ud34a",31,"\ube68\ube6a\ube70\ube71\ube73\ube74\ube75\ube7b\ube7c\ube7d\ube80\ube84\ube8c\ube8d\ube8f\ube90\ube91\ube98\ube99\ubea8\ubed0\ubed1\ubed4\ubed7\ubed8\ubee0\ubee3\ubee4\ubee5\ubeec\ubf01\ubf08\ubf09\ubf18\ubf19\ubf1b\ubf1c\ubf1d\ubf40\ubf41\ubf44\ubf48\ubf50\ubf51\ubf55\ubf94\ubfb0\ubfc5\ubfcc\ubfcd\ubfd0\ubfd4\ubfdc\ubfdf\ubfe1\uc03c\uc051\uc058\uc05c\uc060\uc068\uc069\uc090\uc091\uc094\uc098\uc0a0\uc0a1\uc0a3\uc0a5\uc0ac\uc0ad\uc0af\uc0b0\uc0b3\uc0b4\uc0b5\uc0b6\uc0bc\uc0bd\uc0bf\uc0c0\uc0c1\uc0c5\uc0c8\uc0c9\uc0cc\uc0d0\uc0d8\uc0d9\uc0db\uc0dc\uc0dd\uc0e4"],["bc41","\ud36a",17,"\ud37e\ud37f\ud381\ud382\ud383\ud385\ud386\ud387"],["bc61","\ud388\ud389\ud38a\ud38b\ud38e\ud392",5,"\ud39a\ud39b\ud39d\ud39e\ud39f\ud3a1",6,"\ud3aa\ud3ac\ud3ae"],["bc81","\ud3af",4,"\ud3b5\ud3b6\ud3b7\ud3b9\ud3ba\ud3bb\ud3bd",6,"\ud3c6\ud3c7\ud3ca",5,"\ud3d1",5,"\uc0e5\uc0e8\uc0ec\uc0f4\uc0f5\uc0f7\uc0f9\uc100\uc104\uc108\uc110\uc115\uc11c",4,"\uc123\uc124\uc126\uc127\uc12c\uc12d\uc12f\uc130\uc131\uc136\uc138\uc139\uc13c\uc140\uc148\uc149\uc14b\uc14c\uc14d\uc154\uc155\uc158\uc15c\uc164\uc165\uc167\uc168\uc169\uc170\uc174\uc178\uc185\uc18c\uc18d\uc18e\uc190\uc194\uc196\uc19c\uc19d\uc19f\uc1a1\uc1a5\uc1a8\uc1a9\uc1ac\uc1b0\uc1bd\uc1c4\uc1c8\uc1cc\uc1d4\uc1d7\uc1d8\uc1e0\uc1e4\uc1e8\uc1f0\uc1f1\uc1f3\uc1fc\uc1fd\uc200\uc204\uc20c\uc20d\uc20f\uc211\uc218\uc219\uc21c\uc21f\uc220\uc228\uc229\uc22b\uc22d"],["bd41","\ud3d7\ud3d9",7,"\ud3e2\ud3e4",7,"\ud3ee\ud3ef\ud3f1\ud3f2\ud3f3\ud3f5\ud3f6\ud3f7"],["bd61","\ud3f8\ud3f9\ud3fa\ud3fb\ud3fe\ud400\ud402",5,"\ud409",13],["bd81","\ud417",5,"\ud41e",25,"\uc22f\uc231\uc232\uc234\uc248\uc250\uc251\uc254\uc258\uc260\uc265\uc26c\uc26d\uc270\uc274\uc27c\uc27d\uc27f\uc281\uc288\uc289\uc290\uc298\uc29b\uc29d\uc2a4\uc2a5\uc2a8\uc2ac\uc2ad\uc2b4\uc2b5\uc2b7\uc2b9\uc2dc\uc2dd\uc2e0\uc2e3\uc2e4\uc2eb\uc2ec\uc2ed\uc2ef\uc2f1\uc2f6\uc2f8\uc2f9\uc2fb\uc2fc\uc300\uc308\uc309\uc30c\uc30d\uc313\uc314\uc315\uc318\uc31c\uc324\uc325\uc328\uc329\uc345\uc368\uc369\uc36c\uc370\uc372\uc378\uc379\uc37c\uc37d\uc384\uc388\uc38c\uc3c0\uc3d8\uc3d9\uc3dc\uc3df\uc3e0\uc3e2\uc3e8\uc3e9\uc3ed\uc3f4\uc3f5\uc3f8\uc408\uc410\uc424\uc42c\uc430"],["be41","\ud438",7,"\ud441\ud442\ud443\ud445",14],["be61","\ud454",7,"\ud45d\ud45e\ud45f\ud461\ud462\ud463\ud465",7,"\ud46e\ud470\ud471\ud472"],["be81","\ud473",4,"\ud47a\ud47b\ud47d\ud47e\ud481\ud483",4,"\ud48a\ud48c\ud48e",5,"\ud495",8,"\uc434\uc43c\uc43d\uc448\uc464\uc465\uc468\uc46c\uc474\uc475\uc479\uc480\uc494\uc49c\uc4b8\uc4bc\uc4e9\uc4f0\uc4f1\uc4f4\uc4f8\uc4fa\uc4ff\uc500\uc501\uc50c\uc510\uc514\uc51c\uc528\uc529\uc52c\uc530\uc538\uc539\uc53b\uc53d\uc544\uc545\uc548\uc549\uc54a\uc54c\uc54d\uc54e\uc553\uc554\uc555\uc557\uc558\uc559\uc55d\uc55e\uc560\uc561\uc564\uc568\uc570\uc571\uc573\uc574\uc575\uc57c\uc57d\uc580\uc584\uc587\uc58c\uc58d\uc58f\uc591\uc595\uc597\uc598\uc59c\uc5a0\uc5a9\uc5b4\uc5b5\uc5b8\uc5b9\uc5bb\uc5bc\uc5bd\uc5be\uc5c4",6,"\uc5cc\uc5ce"],["bf41","\ud49e",10,"\ud4aa",14],["bf61","\ud4b9",18,"\ud4cd\ud4ce\ud4cf\ud4d1\ud4d2\ud4d3\ud4d5"],["bf81","\ud4d6",5,"\ud4dd\ud4de\ud4e0",7,"\ud4e9\ud4ea\ud4eb\ud4ed\ud4ee\ud4ef\ud4f1",6,"\ud4f9\ud4fa\ud4fc\uc5d0\uc5d1\uc5d4\uc5d8\uc5e0\uc5e1\uc5e3\uc5e5\uc5ec\uc5ed\uc5ee\uc5f0\uc5f4\uc5f6\uc5f7\uc5fc",5,"\uc605\uc606\uc607\uc608\uc60c\uc610\uc618\uc619\uc61b\uc61c\uc624\uc625\uc628\uc62c\uc62d\uc62e\uc630\uc633\uc634\uc635\uc637\uc639\uc63b\uc640\uc641\uc644\uc648\uc650\uc651\uc653\uc654\uc655\uc65c\uc65d\uc660\uc66c\uc66f\uc671\uc678\uc679\uc67c\uc680\uc688\uc689\uc68b\uc68d\uc694\uc695\uc698\uc69c\uc6a4\uc6a5\uc6a7\uc6a9\uc6b0\uc6b1\uc6b4\uc6b8\uc6b9\uc6ba\uc6c0\uc6c1\uc6c3\uc6c5\uc6cc\uc6cd\uc6d0\uc6d4\uc6dc\uc6dd\uc6e0\uc6e1\uc6e8"],["c041","\ud4fe",5,"\ud505\ud506\ud507\ud509\ud50a\ud50b\ud50d",6,"\ud516\ud518",5],["c061","\ud51e",25],["c081","\ud538\ud539\ud53a\ud53b\ud53e\ud53f\ud541\ud542\ud543\ud545",6,"\ud54e\ud550\ud552",5,"\ud55a\ud55b\ud55d\ud55e\ud55f\ud561\ud562\ud563\uc6e9\uc6ec\uc6f0\uc6f8\uc6f9\uc6fd\uc704\uc705\uc708\uc70c\uc714\uc715\uc717\uc719\uc720\uc721\uc724\uc728\uc730\uc731\uc733\uc735\uc737\uc73c\uc73d\uc740\uc744\uc74a\uc74c\uc74d\uc74f\uc751",7,"\uc75c\uc760\uc768\uc76b\uc774\uc775\uc778\uc77c\uc77d\uc77e\uc783\uc784\uc785\uc787\uc788\uc789\uc78a\uc78e\uc790\uc791\uc794\uc796\uc797\uc798\uc79a\uc7a0\uc7a1\uc7a3\uc7a4\uc7a5\uc7a6\uc7ac\uc7ad\uc7b0\uc7b4\uc7bc\uc7bd\uc7bf\uc7c0\uc7c1\uc7c8\uc7c9\uc7cc\uc7ce\uc7d0\uc7d8\uc7dd\uc7e4\uc7e8\uc7ec\uc800\uc801\uc804\uc808\uc80a"],["c141","\ud564\ud566\ud567\ud56a\ud56c\ud56e",5,"\ud576\ud577\ud579\ud57a\ud57b\ud57d",6,"\ud586\ud58a\ud58b"],["c161","\ud58c\ud58d\ud58e\ud58f\ud591",19,"\ud5a6\ud5a7"],["c181","\ud5a8",31,"\uc810\uc811\uc813\uc815\uc816\uc81c\uc81d\uc820\uc824\uc82c\uc82d\uc82f\uc831\uc838\uc83c\uc840\uc848\uc849\uc84c\uc84d\uc854\uc870\uc871\uc874\uc878\uc87a\uc880\uc881\uc883\uc885\uc886\uc887\uc88b\uc88c\uc88d\uc894\uc89d\uc89f\uc8a1\uc8a8\uc8bc\uc8bd\uc8c4\uc8c8\uc8cc\uc8d4\uc8d5\uc8d7\uc8d9\uc8e0\uc8e1\uc8e4\uc8f5\uc8fc\uc8fd\uc900\uc904\uc905\uc906\uc90c\uc90d\uc90f\uc911\uc918\uc92c\uc934\uc950\uc951\uc954\uc958\uc960\uc961\uc963\uc96c\uc970\uc974\uc97c\uc988\uc989\uc98c\uc990\uc998\uc999\uc99b\uc99d\uc9c0\uc9c1\uc9c4\uc9c7\uc9c8\uc9ca\uc9d0\uc9d1\uc9d3"],["c241","\ud5ca\ud5cb\ud5cd\ud5ce\ud5cf\ud5d1\ud5d3",4,"\ud5da\ud5dc\ud5de",5,"\ud5e6\ud5e7\ud5e9\ud5ea\ud5eb\ud5ed\ud5ee"],["c261","\ud5ef",4,"\ud5f6\ud5f8\ud5fa",5,"\ud602\ud603\ud605\ud606\ud607\ud609",6,"\ud612"],["c281","\ud616",5,"\ud61d\ud61e\ud61f\ud621\ud622\ud623\ud625",7,"\ud62e",9,"\ud63a\ud63b\uc9d5\uc9d6\uc9d9\uc9da\uc9dc\uc9dd\uc9e0\uc9e2\uc9e4\uc9e7\uc9ec\uc9ed\uc9ef\uc9f0\uc9f1\uc9f8\uc9f9\uc9fc\uca00\uca08\uca09\uca0b\uca0c\uca0d\uca14\uca18\uca29\uca4c\uca4d\uca50\uca54\uca5c\uca5d\uca5f\uca60\uca61\uca68\uca7d\uca84\uca98\ucabc\ucabd\ucac0\ucac4\ucacc\ucacd\ucacf\ucad1\ucad3\ucad8\ucad9\ucae0\ucaec\ucaf4\ucb08\ucb10\ucb14\ucb18\ucb20\ucb21\ucb41\ucb48\ucb49\ucb4c\ucb50\ucb58\ucb59\ucb5d\ucb64\ucb78\ucb79\ucb9c\ucbb8\ucbd4\ucbe4\ucbe7\ucbe9\ucc0c\ucc0d\ucc10\ucc14\ucc1c\ucc1d\ucc21\ucc22\ucc27\ucc28\ucc29\ucc2c\ucc2e\ucc30\ucc38\ucc39\ucc3b"],["c341","\ud63d\ud63e\ud63f\ud641\ud642\ud643\ud644\ud646\ud647\ud64a\ud64c\ud64e\ud64f\ud650\ud652\ud653\ud656\ud657\ud659\ud65a\ud65b\ud65d",4],["c361","\ud662",4,"\ud668\ud66a",5,"\ud672\ud673\ud675",11],["c381","\ud681\ud682\ud684\ud686",5,"\ud68e\ud68f\ud691\ud692\ud693\ud695",7,"\ud69e\ud6a0\ud6a2",5,"\ud6a9\ud6aa\ucc3c\ucc3d\ucc3e\ucc44\ucc45\ucc48\ucc4c\ucc54\ucc55\ucc57\ucc58\ucc59\ucc60\ucc64\ucc66\ucc68\ucc70\ucc75\ucc98\ucc99\ucc9c\ucca0\ucca8\ucca9\uccab\uccac\uccad\uccb4\uccb5\uccb8\uccbc\uccc4\uccc5\uccc7\uccc9\uccd0\uccd4\ucce4\uccec\uccf0\ucd01\ucd08\ucd09\ucd0c\ucd10\ucd18\ucd19\ucd1b\ucd1d\ucd24\ucd28\ucd2c\ucd39\ucd5c\ucd60\ucd64\ucd6c\ucd6d\ucd6f\ucd71\ucd78\ucd88\ucd94\ucd95\ucd98\ucd9c\ucda4\ucda5\ucda7\ucda9\ucdb0\ucdc4\ucdcc\ucdd0\ucde8\ucdec\ucdf0\ucdf8\ucdf9\ucdfb\ucdfd\uce04\uce08\uce0c\uce14\uce19\uce20\uce21\uce24\uce28\uce30\uce31\uce33\uce35"],["c441","\ud6ab\ud6ad\ud6ae\ud6af\ud6b1",7,"\ud6ba\ud6bc",7,"\ud6c6\ud6c7\ud6c9\ud6ca\ud6cb"],["c461","\ud6cd\ud6ce\ud6cf\ud6d0\ud6d2\ud6d3\ud6d5\ud6d6\ud6d8\ud6da",5,"\ud6e1\ud6e2\ud6e3\ud6e5\ud6e6\ud6e7\ud6e9",4],["c481","\ud6ee\ud6ef\ud6f1\ud6f2\ud6f3\ud6f4\ud6f6",5,"\ud6fe\ud6ff\ud701\ud702\ud703\ud705",11,"\ud712\ud713\ud714\uce58\uce59\uce5c\uce5f\uce60\uce61\uce68\uce69\uce6b\uce6d\uce74\uce75\uce78\uce7c\uce84\uce85\uce87\uce89\uce90\uce91\uce94\uce98\ucea0\ucea1\ucea3\ucea4\ucea5\uceac\ucead\ucec1\ucee4\ucee5\ucee8\uceeb\uceec\ucef4\ucef5\ucef7\ucef8\ucef9\ucf00\ucf01\ucf04\ucf08\ucf10\ucf11\ucf13\ucf15\ucf1c\ucf20\ucf24\ucf2c\ucf2d\ucf2f\ucf30\ucf31\ucf38\ucf54\ucf55\ucf58\ucf5c\ucf64\ucf65\ucf67\ucf69\ucf70\ucf71\ucf74\ucf78\ucf80\ucf85\ucf8c\ucfa1\ucfa8\ucfb0\ucfc4\ucfe0\ucfe1\ucfe4\ucfe8\ucff0\ucff1\ucff3\ucff5\ucffc\ud000\ud004\ud011\ud018\ud02d\ud034\ud035\ud038\ud03c"],["c541","\ud715\ud716\ud717\ud71a\ud71b\ud71d\ud71e\ud71f\ud721",6,"\ud72a\ud72c\ud72e",5,"\ud736\ud737\ud739"],["c561","\ud73a\ud73b\ud73d",6,"\ud745\ud746\ud748\ud74a",5,"\ud752\ud753\ud755\ud75a",4],["c581","\ud75f\ud762\ud764\ud766\ud767\ud768\ud76a\ud76b\ud76d\ud76e\ud76f\ud771\ud772\ud773\ud775",6,"\ud77e\ud77f\ud780\ud782",5,"\ud78a\ud78b\ud044\ud045\ud047\ud049\ud050\ud054\ud058\ud060\ud06c\ud06d\ud070\ud074\ud07c\ud07d\ud081\ud0a4\ud0a5\ud0a8\ud0ac\ud0b4\ud0b5\ud0b7\ud0b9\ud0c0\ud0c1\ud0c4\ud0c8\ud0c9\ud0d0\ud0d1\ud0d3\ud0d4\ud0d5\ud0dc\ud0dd\ud0e0\ud0e4\ud0ec\ud0ed\ud0ef\ud0f0\ud0f1\ud0f8\ud10d\ud130\ud131\ud134\ud138\ud13a\ud140\ud141\ud143\ud144\ud145\ud14c\ud14d\ud150\ud154\ud15c\ud15d\ud15f\ud161\ud168\ud16c\ud17c\ud184\ud188\ud1a0\ud1a1\ud1a4\ud1a8\ud1b0\ud1b1\ud1b3\ud1b5\ud1ba\ud1bc\ud1c0\ud1d8\ud1f4\ud1f8\ud207\ud209\ud210\ud22c\ud22d\ud230\ud234\ud23c\ud23d\ud23f\ud241\ud248\ud25c"],["c641","\ud78d\ud78e\ud78f\ud791",6,"\ud79a\ud79c\ud79e",5],["c6a1","\ud264\ud280\ud281\ud284\ud288\ud290\ud291\ud295\ud29c\ud2a0\ud2a4\ud2ac\ud2b1\ud2b8\ud2b9\ud2bc\ud2bf\ud2c0\ud2c2\ud2c8\ud2c9\ud2cb\ud2d4\ud2d8\ud2dc\ud2e4\ud2e5\ud2f0\ud2f1\ud2f4\ud2f8\ud300\ud301\ud303\ud305\ud30c\ud30d\ud30e\ud310\ud314\ud316\ud31c\ud31d\ud31f\ud320\ud321\ud325\ud328\ud329\ud32c\ud330\ud338\ud339\ud33b\ud33c\ud33d\ud344\ud345\ud37c\ud37d\ud380\ud384\ud38c\ud38d\ud38f\ud390\ud391\ud398\ud399\ud39c\ud3a0\ud3a8\ud3a9\ud3ab\ud3ad\ud3b4\ud3b8\ud3bc\ud3c4\ud3c5\ud3c8\ud3c9\ud3d0\ud3d8\ud3e1\ud3e3\ud3ec\ud3ed\ud3f0\ud3f4\ud3fc\ud3fd\ud3ff\ud401"],["c7a1","\ud408\ud41d\ud440\ud444\ud45c\ud460\ud464\ud46d\ud46f\ud478\ud479\ud47c\ud47f\ud480\ud482\ud488\ud489\ud48b\ud48d\ud494\ud4a9\ud4cc\ud4d0\ud4d4\ud4dc\ud4df\ud4e8\ud4ec\ud4f0\ud4f8\ud4fb\ud4fd\ud504\ud508\ud50c\ud514\ud515\ud517\ud53c\ud53d\ud540\ud544\ud54c\ud54d\ud54f\ud551\ud558\ud559\ud55c\ud560\ud565\ud568\ud569\ud56b\ud56d\ud574\ud575\ud578\ud57c\ud584\ud585\ud587\ud588\ud589\ud590\ud5a5\ud5c8\ud5c9\ud5cc\ud5d0\ud5d2\ud5d8\ud5d9\ud5db\ud5dd\ud5e4\ud5e5\ud5e8\ud5ec\ud5f4\ud5f5\ud5f7\ud5f9\ud600\ud601\ud604\ud608\ud610\ud611\ud613\ud614\ud615\ud61c\ud620"],["c8a1","\ud624\ud62d\ud638\ud639\ud63c\ud640\ud645\ud648\ud649\ud64b\ud64d\ud651\ud654\ud655\ud658\ud65c\ud667\ud669\ud670\ud671\ud674\ud683\ud685\ud68c\ud68d\ud690\ud694\ud69d\ud69f\ud6a1\ud6a8\ud6ac\ud6b0\ud6b9\ud6bb\ud6c4\ud6c5\ud6c8\ud6cc\ud6d1\ud6d4\ud6d7\ud6d9\ud6e0\ud6e4\ud6e8\ud6f0\ud6f5\ud6fc\ud6fd\ud700\ud704\ud711\ud718\ud719\ud71c\ud720\ud728\ud729\ud72b\ud72d\ud734\ud735\ud738\ud73c\ud744\ud747\ud749\ud750\ud751\ud754\ud756\ud757\ud758\ud759\ud760\ud761\ud763\ud765\ud769\ud76c\ud770\ud774\ud77c\ud77d\ud781\ud788\ud789\ud78c\ud790\ud798\ud799\ud79b\ud79d"],["caa1","\u4f3d\u4f73\u5047\u50f9\u52a0\u53ef\u5475\u54e5\u5609\u5ac1\u5bb6\u6687\u67b6\u67b7\u67ef\u6b4c\u73c2\u75c2\u7a3c\u82db\u8304\u8857\u8888\u8a36\u8cc8\u8dcf\u8efb\u8fe6\u99d5\u523b\u5374\u5404\u606a\u6164\u6bbc\u73cf\u811a\u89ba\u89d2\u95a3\u4f83\u520a\u58be\u5978\u59e6\u5e72\u5e79\u61c7\u63c0\u6746\u67ec\u687f\u6f97\u764e\u770b\u78f5\u7a08\u7aff\u7c21\u809d\u826e\u8271\u8aeb\u9593\u4e6b\u559d\u66f7\u6e34\u78a3\u7aed\u845b\u8910\u874e\u97a8\u52d8\u574e\u582a\u5d4c\u611f\u61be\u6221\u6562\u67d1\u6a44\u6e1b\u7518\u75b3\u76e3\u77b0\u7d3a\u90af\u9451\u9452\u9f95"],["cba1","\u5323\u5cac\u7532\u80db\u9240\u9598\u525b\u5808\u59dc\u5ca1\u5d17\u5eb7\u5f3a\u5f4a\u6177\u6c5f\u757a\u7586\u7ce0\u7d73\u7db1\u7f8c\u8154\u8221\u8591\u8941\u8b1b\u92fc\u964d\u9c47\u4ecb\u4ef7\u500b\u51f1\u584f\u6137\u613e\u6168\u6539\u69ea\u6f11\u75a5\u7686\u76d6\u7b87\u82a5\u84cb\uf900\u93a7\u958b\u5580\u5ba2\u5751\uf901\u7cb3\u7fb9\u91b5\u5028\u53bb\u5c45\u5de8\u62d2\u636e\u64da\u64e7\u6e20\u70ac\u795b\u8ddd\u8e1e\uf902\u907d\u9245\u92f8\u4e7e\u4ef6\u5065\u5dfe\u5efa\u6106\u6957\u8171\u8654\u8e47\u9375\u9a2b\u4e5e\u5091\u6770\u6840\u5109\u528d\u5292\u6aa2"],["cca1","\u77bc\u9210\u9ed4\u52ab\u602f\u8ff2\u5048\u61a9\u63ed\u64ca\u683c\u6a84\u6fc0\u8188\u89a1\u9694\u5805\u727d\u72ac\u7504\u7d79\u7e6d\u80a9\u898b\u8b74\u9063\u9d51\u6289\u6c7a\u6f54\u7d50\u7f3a\u8a23\u517c\u614a\u7b9d\u8b19\u9257\u938c\u4eac\u4fd3\u501e\u50be\u5106\u52c1\u52cd\u537f\u5770\u5883\u5e9a\u5f91\u6176\u61ac\u64ce\u656c\u666f\u66bb\u66f4\u6897\u6d87\u7085\u70f1\u749f\u74a5\u74ca\u75d9\u786c\u78ec\u7adf\u7af6\u7d45\u7d93\u8015\u803f\u811b\u8396\u8b66\u8f15\u9015\u93e1\u9803\u9838\u9a5a\u9be8\u4fc2\u5553\u583a\u5951\u5b63\u5c46\u60b8\u6212\u6842\u68b0"],["cda1","\u68e8\u6eaa\u754c\u7678\u78ce\u7a3d\u7cfb\u7e6b\u7e7c\u8a08\u8aa1\u8c3f\u968e\u9dc4\u53e4\u53e9\u544a\u5471\u56fa\u59d1\u5b64\u5c3b\u5eab\u62f7\u6537\u6545\u6572\u66a0\u67af\u69c1\u6cbd\u75fc\u7690\u777e\u7a3f\u7f94\u8003\u80a1\u818f\u82e6\u82fd\u83f0\u85c1\u8831\u88b4\u8aa5\uf903\u8f9c\u932e\u96c7\u9867\u9ad8\u9f13\u54ed\u659b\u66f2\u688f\u7a40\u8c37\u9d60\u56f0\u5764\u5d11\u6606\u68b1\u68cd\u6efe\u7428\u889e\u9be4\u6c68\uf904\u9aa8\u4f9b\u516c\u5171\u529f\u5b54\u5de5\u6050\u606d\u62f1\u63a7\u653b\u73d9\u7a7a\u86a3\u8ca2\u978f\u4e32\u5be1\u6208\u679c\u74dc"],["cea1","\u79d1\u83d3\u8a87\u8ab2\u8de8\u904e\u934b\u9846\u5ed3\u69e8\u85ff\u90ed\uf905\u51a0\u5b98\u5bec\u6163\u68fa\u6b3e\u704c\u742f\u74d8\u7ba1\u7f50\u83c5\u89c0\u8cab\u95dc\u9928\u522e\u605d\u62ec\u9002\u4f8a\u5149\u5321\u58d9\u5ee3\u66e0\u6d38\u709a\u72c2\u73d6\u7b50\u80f1\u945b\u5366\u639b\u7f6b\u4e56\u5080\u584a\u58de\u602a\u6127\u62d0\u69d0\u9b41\u5b8f\u7d18\u80b1\u8f5f\u4ea4\u50d1\u54ac\u55ac\u5b0c\u5da0\u5de7\u652a\u654e\u6821\u6a4b\u72e1\u768e\u77ef\u7d5e\u7ff9\u81a0\u854e\u86df\u8f03\u8f4e\u90ca\u9903\u9a55\u9bab\u4e18\u4e45\u4e5d\u4ec7\u4ff1\u5177\u52fe"],["cfa1","\u5340\u53e3\u53e5\u548e\u5614\u5775\u57a2\u5bc7\u5d87\u5ed0\u61fc\u62d8\u6551\u67b8\u67e9\u69cb\u6b50\u6bc6\u6bec\u6c42\u6e9d\u7078\u72d7\u7396\u7403\u77bf\u77e9\u7a76\u7d7f\u8009\u81fc\u8205\u820a\u82df\u8862\u8b33\u8cfc\u8ec0\u9011\u90b1\u9264\u92b6\u99d2\u9a45\u9ce9\u9dd7\u9f9c\u570b\u5c40\u83ca\u97a0\u97ab\u9eb4\u541b\u7a98\u7fa4\u88d9\u8ecd\u90e1\u5800\u5c48\u6398\u7a9f\u5bae\u5f13\u7a79\u7aae\u828e\u8eac\u5026\u5238\u52f8\u5377\u5708\u62f3\u6372\u6b0a\u6dc3\u7737\u53a5\u7357\u8568\u8e76\u95d5\u673a\u6ac3\u6f70\u8a6d\u8ecc\u994b\uf906\u6677\u6b78\u8cb4"],["d0a1","\u9b3c\uf907\u53eb\u572d\u594e\u63c6\u69fb\u73ea\u7845\u7aba\u7ac5\u7cfe\u8475\u898f\u8d73\u9035\u95a8\u52fb\u5747\u7547\u7b60\u83cc\u921e\uf908\u6a58\u514b\u524b\u5287\u621f\u68d8\u6975\u9699\u50c5\u52a4\u52e4\u61c3\u65a4\u6839\u69ff\u747e\u7b4b\u82b9\u83eb\u89b2\u8b39\u8fd1\u9949\uf909\u4eca\u5997\u64d2\u6611\u6a8e\u7434\u7981\u79bd\u82a9\u887e\u887f\u895f\uf90a\u9326\u4f0b\u53ca\u6025\u6271\u6c72\u7d1a\u7d66\u4e98\u5162\u77dc\u80af\u4f01\u4f0e\u5176\u5180\u55dc\u5668\u573b\u57fa\u57fc\u5914\u5947\u5993\u5bc4\u5c90\u5d0e\u5df1\u5e7e\u5fcc\u6280\u65d7\u65e3"],["d1a1","\u671e\u671f\u675e\u68cb\u68c4\u6a5f\u6b3a\u6c23\u6c7d\u6c82\u6dc7\u7398\u7426\u742a\u7482\u74a3\u7578\u757f\u7881\u78ef\u7941\u7947\u7948\u797a\u7b95\u7d00\u7dba\u7f88\u8006\u802d\u808c\u8a18\u8b4f\u8c48\u8d77\u9321\u9324\u98e2\u9951\u9a0e\u9a0f\u9a65\u9e92\u7dca\u4f76\u5409\u62ee\u6854\u91d1\u55ab\u513a\uf90b\uf90c\u5a1c\u61e6\uf90d\u62cf\u62ff\uf90e",5,"\u90a3\uf914",4,"\u8afe\uf919\uf91a\uf91b\uf91c\u6696\uf91d\u7156\uf91e\uf91f\u96e3\uf920\u634f\u637a\u5357\uf921\u678f\u6960\u6e73\uf922\u7537\uf923\uf924\uf925"],["d2a1","\u7d0d\uf926\uf927\u8872\u56ca\u5a18\uf928",4,"\u4e43\uf92d\u5167\u5948\u67f0\u8010\uf92e\u5973\u5e74\u649a\u79ca\u5ff5\u606c\u62c8\u637b\u5be7\u5bd7\u52aa\uf92f\u5974\u5f29\u6012\uf930\uf931\uf932\u7459\uf933",5,"\u99d1\uf939",10,"\u6fc3\uf944\uf945\u81bf\u8fb2\u60f1\uf946\uf947\u8166\uf948\uf949\u5c3f\uf94a",7,"\u5ae9\u8a25\u677b\u7d10\uf952",5,"\u80fd\uf958\uf959\u5c3c\u6ce5\u533f\u6eba\u591a\u8336"],["d3a1","\u4e39\u4eb6\u4f46\u55ae\u5718\u58c7\u5f56\u65b7\u65e6\u6a80\u6bb5\u6e4d\u77ed\u7aef\u7c1e\u7dde\u86cb\u8892\u9132\u935b\u64bb\u6fbe\u737a\u75b8\u9054\u5556\u574d\u61ba\u64d4\u66c7\u6de1\u6e5b\u6f6d\u6fb9\u75f0\u8043\u81bd\u8541\u8983\u8ac7\u8b5a\u931f\u6c93\u7553\u7b54\u8e0f\u905d\u5510\u5802\u5858\u5e62\u6207\u649e\u68e0\u7576\u7cd6\u87b3\u9ee8\u4ee3\u5788\u576e\u5927\u5c0d\u5cb1\u5e36\u5f85\u6234\u64e1\u73b3\u81fa\u888b\u8cb8\u968a\u9edb\u5b85\u5fb7\u60b3\u5012\u5200\u5230\u5716\u5835\u5857\u5c0e\u5c60\u5cf6\u5d8b\u5ea6\u5f92\u60bc\u6311\u6389\u6417\u6843"],["d4a1","\u68f9\u6ac2\u6dd8\u6e21\u6ed4\u6fe4\u71fe\u76dc\u7779\u79b1\u7a3b\u8404\u89a9\u8ced\u8df3\u8e48\u9003\u9014\u9053\u90fd\u934d\u9676\u97dc\u6bd2\u7006\u7258\u72a2\u7368\u7763\u79bf\u7be4\u7e9b\u8b80\u58a9\u60c7\u6566\u65fd\u66be\u6c8c\u711e\u71c9\u8c5a\u9813\u4e6d\u7a81\u4edd\u51ac\u51cd\u52d5\u540c\u61a7\u6771\u6850\u68df\u6d1e\u6f7c\u75bc\u77b3\u7ae5\u80f4\u8463\u9285\u515c\u6597\u675c\u6793\u75d8\u7ac7\u8373\uf95a\u8c46\u9017\u982d\u5c6f\u81c0\u829a\u9041\u906f\u920d\u5f97\u5d9d\u6a59\u71c8\u767b\u7b49\u85e4\u8b04\u9127\u9a30\u5587\u61f6\uf95b\u7669\u7f85"],["d5a1","\u863f\u87ba\u88f8\u908f\uf95c\u6d1b\u70d9\u73de\u7d61\u843d\uf95d\u916a\u99f1\uf95e\u4e82\u5375\u6b04\u6b12\u703e\u721b\u862d\u9e1e\u524c\u8fa3\u5d50\u64e5\u652c\u6b16\u6feb\u7c43\u7e9c\u85cd\u8964\u89bd\u62c9\u81d8\u881f\u5eca\u6717\u6d6a\u72fc\u7405\u746f\u8782\u90de\u4f86\u5d0d\u5fa0\u840a\u51b7\u63a0\u7565\u4eae\u5006\u5169\u51c9\u6881\u6a11\u7cae\u7cb1\u7ce7\u826f\u8ad2\u8f1b\u91cf\u4fb6\u5137\u52f5\u5442\u5eec\u616e\u623e\u65c5\u6ada\u6ffe\u792a\u85dc\u8823\u95ad\u9a62\u9a6a\u9e97\u9ece\u529b\u66c6\u6b77\u701d\u792b\u8f62\u9742\u6190\u6200\u6523\u6f23"],["d6a1","\u7149\u7489\u7df4\u806f\u84ee\u8f26\u9023\u934a\u51bd\u5217\u52a3\u6d0c\u70c8\u88c2\u5ec9\u6582\u6bae\u6fc2\u7c3e\u7375\u4ee4\u4f36\u56f9\uf95f\u5cba\u5dba\u601c\u73b2\u7b2d\u7f9a\u7fce\u8046\u901e\u9234\u96f6\u9748\u9818\u9f61\u4f8b\u6fa7\u79ae\u91b4\u96b7\u52de\uf960\u6488\u64c4\u6ad3\u6f5e\u7018\u7210\u76e7\u8001\u8606\u865c\u8def\u8f05\u9732\u9b6f\u9dfa\u9e75\u788c\u797f\u7da0\u83c9\u9304\u9e7f\u9e93\u8ad6\u58df\u5f04\u6727\u7027\u74cf\u7c60\u807e\u5121\u7028\u7262\u78ca\u8cc2\u8cda\u8cf4\u96f7\u4e86\u50da\u5bee\u5ed6\u6599\u71ce\u7642\u77ad\u804a\u84fc"],["d7a1","\u907c\u9b27\u9f8d\u58d8\u5a41\u5c62\u6a13\u6dda\u6f0f\u763b\u7d2f\u7e37\u851e\u8938\u93e4\u964b\u5289\u65d2\u67f3\u69b4\u6d41\u6e9c\u700f\u7409\u7460\u7559\u7624\u786b\u8b2c\u985e\u516d\u622e\u9678\u4f96\u502b\u5d19\u6dea\u7db8\u8f2a\u5f8b\u6144\u6817\uf961\u9686\u52d2\u808b\u51dc\u51cc\u695e\u7a1c\u7dbe\u83f1\u9675\u4fda\u5229\u5398\u540f\u550e\u5c65\u60a7\u674e\u68a8\u6d6c\u7281\u72f8\u7406\u7483\uf962\u75e2\u7c6c\u7f79\u7fb8\u8389\u88cf\u88e1\u91cc\u91d0\u96e2\u9bc9\u541d\u6f7e\u71d0\u7498\u85fa\u8eaa\u96a3\u9c57\u9e9f\u6797\u6dcb\u7433\u81e8\u9716\u782c"],["d8a1","\u7acb\u7b20\u7c92\u6469\u746a\u75f2\u78bc\u78e8\u99ac\u9b54\u9ebb\u5bde\u5e55\u6f20\u819c\u83ab\u9088\u4e07\u534d\u5a29\u5dd2\u5f4e\u6162\u633d\u6669\u66fc\u6eff\u6f2b\u7063\u779e\u842c\u8513\u883b\u8f13\u9945\u9c3b\u551c\u62b9\u672b\u6cab\u8309\u896a\u977a\u4ea1\u5984\u5fd8\u5fd9\u671b\u7db2\u7f54\u8292\u832b\u83bd\u8f1e\u9099\u57cb\u59b9\u5a92\u5bd0\u6627\u679a\u6885\u6bcf\u7164\u7f75\u8cb7\u8ce3\u9081\u9b45\u8108\u8c8a\u964c\u9a40\u9ea5\u5b5f\u6c13\u731b\u76f2\u76df\u840c\u51aa\u8993\u514d\u5195\u52c9\u68c9\u6c94\u7704\u7720\u7dbf\u7dec\u9762\u9eb5\u6ec5"],["d9a1","\u8511\u51a5\u540d\u547d\u660e\u669d\u6927\u6e9f\u76bf\u7791\u8317\u84c2\u879f\u9169\u9298\u9cf4\u8882\u4fae\u5192\u52df\u59c6\u5e3d\u6155\u6478\u6479\u66ae\u67d0\u6a21\u6bcd\u6bdb\u725f\u7261\u7441\u7738\u77db\u8017\u82bc\u8305\u8b00\u8b28\u8c8c\u6728\u6c90\u7267\u76ee\u7766\u7a46\u9da9\u6b7f\u6c92\u5922\u6726\u8499\u536f\u5893\u5999\u5edf\u63cf\u6634\u6773\u6e3a\u732b\u7ad7\u82d7\u9328\u52d9\u5deb\u61ae\u61cb\u620a\u62c7\u64ab\u65e0\u6959\u6b66\u6bcb\u7121\u73f7\u755d\u7e46\u821e\u8302\u856a\u8aa3\u8cbf\u9727\u9d61\u58a8\u9ed8\u5011\u520e\u543b\u554f\u6587"],["daa1","\u6c76\u7d0a\u7d0b\u805e\u868a\u9580\u96ef\u52ff\u6c95\u7269\u5473\u5a9a\u5c3e\u5d4b\u5f4c\u5fae\u672a\u68b6\u6963\u6e3c\u6e44\u7709\u7c73\u7f8e\u8587\u8b0e\u8ff7\u9761\u9ef4\u5cb7\u60b6\u610d\u61ab\u654f\u65fb\u65fc\u6c11\u6cef\u739f\u73c9\u7de1\u9594\u5bc6\u871c\u8b10\u525d\u535a\u62cd\u640f\u64b2\u6734\u6a38\u6cca\u73c0\u749e\u7b94\u7c95\u7e1b\u818a\u8236\u8584\u8feb\u96f9\u99c1\u4f34\u534a\u53cd\u53db\u62cc\u642c\u6500\u6591\u69c3\u6cee\u6f58\u73ed\u7554\u7622\u76e4\u76fc\u78d0\u78fb\u792c\u7d46\u822c\u87e0\u8fd4\u9812\u98ef\u52c3\u62d4\u64a5\u6e24\u6f51"],["dba1","\u767c\u8dcb\u91b1\u9262\u9aee\u9b43\u5023\u508d\u574a\u59a8\u5c28\u5e47\u5f77\u623f\u653e\u65b9\u65c1\u6609\u678b\u699c\u6ec2\u78c5\u7d21\u80aa\u8180\u822b\u82b3\u84a1\u868c\u8a2a\u8b17\u90a6\u9632\u9f90\u500d\u4ff3\uf963\u57f9\u5f98\u62dc\u6392\u676f\u6e43\u7119\u76c3\u80cc\u80da\u88f4\u88f5\u8919\u8ce0\u8f29\u914d\u966a\u4f2f\u4f70\u5e1b\u67cf\u6822\u767d\u767e\u9b44\u5e61\u6a0a\u7169\u71d4\u756a\uf964\u7e41\u8543\u85e9\u98dc\u4f10\u7b4f\u7f70\u95a5\u51e1\u5e06\u68b5\u6c3e\u6c4e\u6cdb\u72af\u7bc4\u8303\u6cd5\u743a\u50fb\u5288\u58c1\u64d8\u6a97\u74a7\u7656"],["dca1","\u78a7\u8617\u95e2\u9739\uf965\u535e\u5f01\u8b8a\u8fa8\u8faf\u908a\u5225\u77a5\u9c49\u9f08\u4e19\u5002\u5175\u5c5b\u5e77\u661e\u663a\u67c4\u68c5\u70b3\u7501\u75c5\u79c9\u7add\u8f27\u9920\u9a08\u4fdd\u5821\u5831\u5bf6\u666e\u6b65\u6d11\u6e7a\u6f7d\u73e4\u752b\u83e9\u88dc\u8913\u8b5c\u8f14\u4f0f\u50d5\u5310\u535c\u5b93\u5fa9\u670d\u798f\u8179\u832f\u8514\u8907\u8986\u8f39\u8f3b\u99a5\u9c12\u672c\u4e76\u4ff8\u5949\u5c01\u5cef\u5cf0\u6367\u68d2\u70fd\u71a2\u742b\u7e2b\u84ec\u8702\u9022\u92d2\u9cf3\u4e0d\u4ed8\u4fef\u5085\u5256\u526f\u5426\u5490\u57e0\u592b\u5a66"],["dda1","\u5b5a\u5b75\u5bcc\u5e9c\uf966\u6276\u6577\u65a7\u6d6e\u6ea5\u7236\u7b26\u7c3f\u7f36\u8150\u8151\u819a\u8240\u8299\u83a9\u8a03\u8ca0\u8ce6\u8cfb\u8d74\u8dba\u90e8\u91dc\u961c\u9644\u99d9\u9ce7\u5317\u5206\u5429\u5674\u58b3\u5954\u596e\u5fff\u61a4\u626e\u6610\u6c7e\u711a\u76c6\u7c89\u7cde\u7d1b\u82ac\u8cc1\u96f0\uf967\u4f5b\u5f17\u5f7f\u62c2\u5d29\u670b\u68da\u787c\u7e43\u9d6c\u4e15\u5099\u5315\u532a\u5351\u5983\u5a62\u5e87\u60b2\u618a\u6249\u6279\u6590\u6787\u69a7\u6bd4\u6bd6\u6bd7\u6bd8\u6cb8\uf968\u7435\u75fa\u7812\u7891\u79d5\u79d8\u7c83\u7dcb\u7fe1\u80a5"],["dea1","\u813e\u81c2\u83f2\u871a\u88e8\u8ab9\u8b6c\u8cbb\u9119\u975e\u98db\u9f3b\u56ac\u5b2a\u5f6c\u658c\u6ab3\u6baf\u6d5c\u6ff1\u7015\u725d\u73ad\u8ca7\u8cd3\u983b\u6191\u6c37\u8058\u9a01\u4e4d\u4e8b\u4e9b\u4ed5\u4f3a\u4f3c\u4f7f\u4fdf\u50ff\u53f2\u53f8\u5506\u55e3\u56db\u58eb\u5962\u5a11\u5beb\u5bfa\u5c04\u5df3\u5e2b\u5f99\u601d\u6368\u659c\u65af\u67f6\u67fb\u68ad\u6b7b\u6c99\u6cd7\u6e23\u7009\u7345\u7802\u793e\u7940\u7960\u79c1\u7be9\u7d17\u7d72\u8086\u820d\u838e\u84d1\u86c7\u88df\u8a50\u8a5e\u8b1d\u8cdc\u8d66\u8fad\u90aa\u98fc\u99df\u9e9d\u524a\uf969\u6714\uf96a"],["dfa1","\u5098\u522a\u5c71\u6563\u6c55\u73ca\u7523\u759d\u7b97\u849c\u9178\u9730\u4e77\u6492\u6bba\u715e\u85a9\u4e09\uf96b\u6749\u68ee\u6e17\u829f\u8518\u886b\u63f7\u6f81\u9212\u98af\u4e0a\u50b7\u50cf\u511f\u5546\u55aa\u5617\u5b40\u5c19\u5ce0\u5e38\u5e8a\u5ea0\u5ec2\u60f3\u6851\u6a61\u6e58\u723d\u7240\u72c0\u76f8\u7965\u7bb1\u7fd4\u88f3\u89f4\u8a73\u8c61\u8cde\u971c\u585e\u74bd\u8cfd\u55c7\uf96c\u7a61\u7d22\u8272\u7272\u751f\u7525\uf96d\u7b19\u5885\u58fb\u5dbc\u5e8f\u5eb6\u5f90\u6055\u6292\u637f\u654d\u6691\u66d9\u66f8\u6816\u68f2\u7280\u745e\u7b6e\u7d6e\u7dd6\u7f72"],["e0a1","\u80e5\u8212\u85af\u897f\u8a93\u901d\u92e4\u9ecd\u9f20\u5915\u596d\u5e2d\u60dc\u6614\u6673\u6790\u6c50\u6dc5\u6f5f\u77f3\u78a9\u84c6\u91cb\u932b\u4ed9\u50ca\u5148\u5584\u5b0b\u5ba3\u6247\u657e\u65cb\u6e32\u717d\u7401\u7444\u7487\u74bf\u766c\u79aa\u7dda\u7e55\u7fa8\u817a\u81b3\u8239\u861a\u87ec\u8a75\u8de3\u9078\u9291\u9425\u994d\u9bae\u5368\u5c51\u6954\u6cc4\u6d29\u6e2b\u820c\u859b\u893b\u8a2d\u8aaa\u96ea\u9f67\u5261\u66b9\u6bb2\u7e96\u87fe\u8d0d\u9583\u965d\u651d\u6d89\u71ee\uf96e\u57ce\u59d3\u5bac\u6027\u60fa\u6210\u661f\u665f\u7329\u73f9\u76db\u7701\u7b6c"],["e1a1","\u8056\u8072\u8165\u8aa0\u9192\u4e16\u52e2\u6b72\u6d17\u7a05\u7b39\u7d30\uf96f\u8cb0\u53ec\u562f\u5851\u5bb5\u5c0f\u5c11\u5de2\u6240\u6383\u6414\u662d\u68b3\u6cbc\u6d88\u6eaf\u701f\u70a4\u71d2\u7526\u758f\u758e\u7619\u7b11\u7be0\u7c2b\u7d20\u7d39\u852c\u856d\u8607\u8a34\u900d\u9061\u90b5\u92b7\u97f6\u9a37\u4fd7\u5c6c\u675f\u6d91\u7c9f\u7e8c\u8b16\u8d16\u901f\u5b6b\u5dfd\u640d\u84c0\u905c\u98e1\u7387\u5b8b\u609a\u677e\u6dde\u8a1f\u8aa6\u9001\u980c\u5237\uf970\u7051\u788e\u9396\u8870\u91d7\u4fee\u53d7\u55fd\u56da\u5782\u58fd\u5ac2\u5b88\u5cab\u5cc0\u5e25\u6101"],["e2a1","\u620d\u624b\u6388\u641c\u6536\u6578\u6a39\u6b8a\u6c34\u6d19\u6f31\u71e7\u72e9\u7378\u7407\u74b2\u7626\u7761\u79c0\u7a57\u7aea\u7cb9\u7d8f\u7dac\u7e61\u7f9e\u8129\u8331\u8490\u84da\u85ea\u8896\u8ab0\u8b90\u8f38\u9042\u9083\u916c\u9296\u92b9\u968b\u96a7\u96a8\u96d6\u9700\u9808\u9996\u9ad3\u9b1a\u53d4\u587e\u5919\u5b70\u5bbf\u6dd1\u6f5a\u719f\u7421\u74b9\u8085\u83fd\u5de1\u5f87\u5faa\u6042\u65ec\u6812\u696f\u6a53\u6b89\u6d35\u6df3\u73e3\u76fe\u77ac\u7b4d\u7d14\u8123\u821c\u8340\u84f4\u8563\u8a62\u8ac4\u9187\u931e\u9806\u99b4\u620c\u8853\u8ff0\u9265\u5d07\u5d27"],["e3a1","\u5d69\u745f\u819d\u8768\u6fd5\u62fe\u7fd2\u8936\u8972\u4e1e\u4e58\u50e7\u52dd\u5347\u627f\u6607\u7e69\u8805\u965e\u4f8d\u5319\u5636\u59cb\u5aa4\u5c38\u5c4e\u5c4d\u5e02\u5f11\u6043\u65bd\u662f\u6642\u67be\u67f4\u731c\u77e2\u793a\u7fc5\u8494\u84cd\u8996\u8a66\u8a69\u8ae1\u8c55\u8c7a\u57f4\u5bd4\u5f0f\u606f\u62ed\u690d\u6b96\u6e5c\u7184\u7bd2\u8755\u8b58\u8efe\u98df\u98fe\u4f38\u4f81\u4fe1\u547b\u5a20\u5bb8\u613c\u65b0\u6668\u71fc\u7533\u795e\u7d33\u814e\u81e3\u8398\u85aa\u85ce\u8703\u8a0a\u8eab\u8f9b\uf971\u8fc5\u5931\u5ba4\u5be6\u6089\u5be9\u5c0b\u5fc3\u6c81"],["e4a1","\uf972\u6df1\u700b\u751a\u82af\u8af6\u4ec0\u5341\uf973\u96d9\u6c0f\u4e9e\u4fc4\u5152\u555e\u5a25\u5ce8\u6211\u7259\u82bd\u83aa\u86fe\u8859\u8a1d\u963f\u96c5\u9913\u9d09\u9d5d\u580a\u5cb3\u5dbd\u5e44\u60e1\u6115\u63e1\u6a02\u6e25\u9102\u9354\u984e\u9c10\u9f77\u5b89\u5cb8\u6309\u664f\u6848\u773c\u96c1\u978d\u9854\u9b9f\u65a1\u8b01\u8ecb\u95bc\u5535\u5ca9\u5dd6\u5eb5\u6697\u764c\u83f4\u95c7\u58d3\u62bc\u72ce\u9d28\u4ef0\u592e\u600f\u663b\u6b83\u79e7\u9d26\u5393\u54c0\u57c3\u5d16\u611b\u66d6\u6daf\u788d\u827e\u9698\u9744\u5384\u627c\u6396\u6db2\u7e0a\u814b\u984d"],["e5a1","\u6afb\u7f4c\u9daf\u9e1a\u4e5f\u503b\u51b6\u591c\u60f9\u63f6\u6930\u723a\u8036\uf974\u91ce\u5f31\uf975\uf976\u7d04\u82e5\u846f\u84bb\u85e5\u8e8d\uf977\u4f6f\uf978\uf979\u58e4\u5b43\u6059\u63da\u6518\u656d\u6698\uf97a\u694a\u6a23\u6d0b\u7001\u716c\u75d2\u760d\u79b3\u7a70\uf97b\u7f8a\uf97c\u8944\uf97d\u8b93\u91c0\u967d\uf97e\u990a\u5704\u5fa1\u65bc\u6f01\u7600\u79a6\u8a9e\u99ad\u9b5a\u9f6c\u5104\u61b6\u6291\u6a8d\u81c6\u5043\u5830\u5f66\u7109\u8a00\u8afa\u5b7c\u8616\u4ffa\u513c\u56b4\u5944\u63a9\u6df9\u5daa\u696d\u5186\u4e88\u4f59\uf97f\uf980\uf981\u5982\uf982"],["e6a1","\uf983\u6b5f\u6c5d\uf984\u74b5\u7916\uf985\u8207\u8245\u8339\u8f3f\u8f5d\uf986\u9918\uf987\uf988\uf989\u4ea6\uf98a\u57df\u5f79\u6613\uf98b\uf98c\u75ab\u7e79\u8b6f\uf98d\u9006\u9a5b\u56a5\u5827\u59f8\u5a1f\u5bb4\uf98e\u5ef6\uf98f\uf990\u6350\u633b\uf991\u693d\u6c87\u6cbf\u6d8e\u6d93\u6df5\u6f14\uf992\u70df\u7136\u7159\uf993\u71c3\u71d5\uf994\u784f\u786f\uf995\u7b75\u7de3\uf996\u7e2f\uf997\u884d\u8edf\uf998\uf999\uf99a\u925b\uf99b\u9cf6\uf99c\uf99d\uf99e\u6085\u6d85\uf99f\u71b1\uf9a0\uf9a1\u95b1\u53ad\uf9a2\uf9a3\uf9a4\u67d3\uf9a5\u708e\u7130\u7430\u8276\u82d2"],["e7a1","\uf9a6\u95bb\u9ae5\u9e7d\u66c4\uf9a7\u71c1\u8449\uf9a8\uf9a9\u584b\uf9aa\uf9ab\u5db8\u5f71\uf9ac\u6620\u668e\u6979\u69ae\u6c38\u6cf3\u6e36\u6f41\u6fda\u701b\u702f\u7150\u71df\u7370\uf9ad\u745b\uf9ae\u74d4\u76c8\u7a4e\u7e93\uf9af\uf9b0\u82f1\u8a60\u8fce\uf9b1\u9348\uf9b2\u9719\uf9b3\uf9b4\u4e42\u502a\uf9b5\u5208\u53e1\u66f3\u6c6d\u6fca\u730a\u777f\u7a62\u82ae\u85dd\u8602\uf9b6\u88d4\u8a63\u8b7d\u8c6b\uf9b7\u92b3\uf9b8\u9713\u9810\u4e94\u4f0d\u4fc9\u50b2\u5348\u543e\u5433\u55da\u5862\u58ba\u5967\u5a1b\u5be4\u609f\uf9b9\u61ca\u6556\u65ff\u6664\u68a7\u6c5a\u6fb3"],["e8a1","\u70cf\u71ac\u7352\u7b7d\u8708\u8aa4\u9c32\u9f07\u5c4b\u6c83\u7344\u7389\u923a\u6eab\u7465\u761f\u7a69\u7e15\u860a\u5140\u58c5\u64c1\u74ee\u7515\u7670\u7fc1\u9095\u96cd\u9954\u6e26\u74e6\u7aa9\u7aaa\u81e5\u86d9\u8778\u8a1b\u5a49\u5b8c\u5b9b\u68a1\u6900\u6d63\u73a9\u7413\u742c\u7897\u7de9\u7feb\u8118\u8155\u839e\u8c4c\u962e\u9811\u66f0\u5f80\u65fa\u6789\u6c6a\u738b\u502d\u5a03\u6b6a\u77ee\u5916\u5d6c\u5dcd\u7325\u754f\uf9ba\uf9bb\u50e5\u51f9\u582f\u592d\u5996\u59da\u5be5\uf9bc\uf9bd\u5da2\u62d7\u6416\u6493\u64fe\uf9be\u66dc\uf9bf\u6a48\uf9c0\u71ff\u7464\uf9c1"],["e9a1","\u7a88\u7aaf\u7e47\u7e5e\u8000\u8170\uf9c2\u87ef\u8981\u8b20\u9059\uf9c3\u9080\u9952\u617e\u6b32\u6d74\u7e1f\u8925\u8fb1\u4fd1\u50ad\u5197\u52c7\u57c7\u5889\u5bb9\u5eb8\u6142\u6995\u6d8c\u6e67\u6eb6\u7194\u7462\u7528\u752c\u8073\u8338\u84c9\u8e0a\u9394\u93de\uf9c4\u4e8e\u4f51\u5076\u512a\u53c8\u53cb\u53f3\u5b87\u5bd3\u5c24\u611a\u6182\u65f4\u725b\u7397\u7440\u76c2\u7950\u7991\u79b9\u7d06\u7fbd\u828b\u85d5\u865e\u8fc2\u9047\u90f5\u91ea\u9685\u96e8\u96e9\u52d6\u5f67\u65ed\u6631\u682f\u715c\u7a36\u90c1\u980a\u4e91\uf9c5\u6a52\u6b9e\u6f90\u7189\u8018\u82b8\u8553"],["eaa1","\u904b\u9695\u96f2\u97fb\u851a\u9b31\u4e90\u718a\u96c4\u5143\u539f\u54e1\u5713\u5712\u57a3\u5a9b\u5ac4\u5bc3\u6028\u613f\u63f4\u6c85\u6d39\u6e72\u6e90\u7230\u733f\u7457\u82d1\u8881\u8f45\u9060\uf9c6\u9662\u9858\u9d1b\u6708\u8d8a\u925e\u4f4d\u5049\u50de\u5371\u570d\u59d4\u5a01\u5c09\u6170\u6690\u6e2d\u7232\u744b\u7def\u80c3\u840e\u8466\u853f\u875f\u885b\u8918\u8b02\u9055\u97cb\u9b4f\u4e73\u4f91\u5112\u516a\uf9c7\u552f\u55a9\u5b7a\u5ba5\u5e7c\u5e7d\u5ebe\u60a0\u60df\u6108\u6109\u63c4\u6538\u6709\uf9c8\u67d4\u67da\uf9c9\u6961\u6962\u6cb9\u6d27\uf9ca\u6e38\uf9cb"],["eba1","\u6fe1\u7336\u7337\uf9cc\u745c\u7531\uf9cd\u7652\uf9ce\uf9cf\u7dad\u81fe\u8438\u88d5\u8a98\u8adb\u8aed\u8e30\u8e42\u904a\u903e\u907a\u9149\u91c9\u936e\uf9d0\uf9d1\u5809\uf9d2\u6bd3\u8089\u80b2\uf9d3\uf9d4\u5141\u596b\u5c39\uf9d5\uf9d6\u6f64\u73a7\u80e4\u8d07\uf9d7\u9217\u958f\uf9d8\uf9d9\uf9da\uf9db\u807f\u620e\u701c\u7d68\u878d\uf9dc\u57a0\u6069\u6147\u6bb7\u8abe\u9280\u96b1\u4e59\u541f\u6deb\u852d\u9670\u97f3\u98ee\u63d6\u6ce3\u9091\u51dd\u61c9\u81ba\u9df9\u4f9d\u501a\u5100\u5b9c\u610f\u61ff\u64ec\u6905\u6bc5\u7591\u77e3\u7fa9\u8264\u858f\u87fb\u8863\u8abc"],["eca1","\u8b70\u91ab\u4e8c\u4ee5\u4f0a\uf9dd\uf9de\u5937\u59e8\uf9df\u5df2\u5f1b\u5f5b\u6021\uf9e0\uf9e1\uf9e2\uf9e3\u723e\u73e5\uf9e4\u7570\u75cd\uf9e5\u79fb\uf9e6\u800c\u8033\u8084\u82e1\u8351\uf9e7\uf9e8\u8cbd\u8cb3\u9087\uf9e9\uf9ea\u98f4\u990c\uf9eb\uf9ec\u7037\u76ca\u7fca\u7fcc\u7ffc\u8b1a\u4eba\u4ec1\u5203\u5370\uf9ed\u54bd\u56e0\u59fb\u5bc5\u5f15\u5fcd\u6e6e\uf9ee\uf9ef\u7d6a\u8335\uf9f0\u8693\u8a8d\uf9f1\u976d\u9777\uf9f2\uf9f3\u4e00\u4f5a\u4f7e\u58f9\u65e5\u6ea2\u9038\u93b0\u99b9\u4efb\u58ec\u598a\u59d9\u6041\uf9f4\uf9f5\u7a14\uf9f6\u834f\u8cc3\u5165\u5344"],["eda1","\uf9f7\uf9f8\uf9f9\u4ecd\u5269\u5b55\u82bf\u4ed4\u523a\u54a8\u59c9\u59ff\u5b50\u5b57\u5b5c\u6063\u6148\u6ecb\u7099\u716e\u7386\u74f7\u75b5\u78c1\u7d2b\u8005\u81ea\u8328\u8517\u85c9\u8aee\u8cc7\u96cc\u4f5c\u52fa\u56bc\u65ab\u6628\u707c\u70b8\u7235\u7dbd\u828d\u914c\u96c0\u9d72\u5b71\u68e7\u6b98\u6f7a\u76de\u5c91\u66ab\u6f5b\u7bb4\u7c2a\u8836\u96dc\u4e08\u4ed7\u5320\u5834\u58bb\u58ef\u596c\u5c07\u5e33\u5e84\u5f35\u638c\u66b2\u6756\u6a1f\u6aa3\u6b0c\u6f3f\u7246\uf9fa\u7350\u748b\u7ae0\u7ca7\u8178\u81df\u81e7\u838a\u846c\u8523\u8594\u85cf\u88dd\u8d13\u91ac\u9577"],["eea1","\u969c\u518d\u54c9\u5728\u5bb0\u624d\u6750\u683d\u6893\u6e3d\u6ed3\u707d\u7e21\u88c1\u8ca1\u8f09\u9f4b\u9f4e\u722d\u7b8f\u8acd\u931a\u4f47\u4f4e\u5132\u5480\u59d0\u5e95\u62b5\u6775\u696e\u6a17\u6cae\u6e1a\u72d9\u732a\u75bd\u7bb8\u7d35\u82e7\u83f9\u8457\u85f7\u8a5b\u8caf\u8e87\u9019\u90b8\u96ce\u9f5f\u52e3\u540a\u5ae1\u5bc2\u6458\u6575\u6ef4\u72c4\uf9fb\u7684\u7a4d\u7b1b\u7c4d\u7e3e\u7fdf\u837b\u8b2b\u8cca\u8d64\u8de1\u8e5f\u8fea\u8ff9\u9069\u93d1\u4f43\u4f7a\u50b3\u5168\u5178\u524d\u526a\u5861\u587c\u5960\u5c08\u5c55\u5edb\u609b\u6230\u6813\u6bbf\u6c08\u6fb1"],["efa1","\u714e\u7420\u7530\u7538\u7551\u7672\u7b4c\u7b8b\u7bad\u7bc6\u7e8f\u8a6e\u8f3e\u8f49\u923f\u9293\u9322\u942b\u96fb\u985a\u986b\u991e\u5207\u622a\u6298\u6d59\u7664\u7aca\u7bc0\u7d76\u5360\u5cbe\u5e97\u6f38\u70b9\u7c98\u9711\u9b8e\u9ede\u63a5\u647a\u8776\u4e01\u4e95\u4ead\u505c\u5075\u5448\u59c3\u5b9a\u5e40\u5ead\u5ef7\u5f81\u60c5\u633a\u653f\u6574\u65cc\u6676\u6678\u67fe\u6968\u6a89\u6b63\u6c40\u6dc0\u6de8\u6e1f\u6e5e\u701e\u70a1\u738e\u73fd\u753a\u775b\u7887\u798e\u7a0b\u7a7d\u7cbe\u7d8e\u8247\u8a02\u8aea\u8c9e\u912d\u914a\u91d8\u9266\u92cc\u9320\u9706\u9756"],["f0a1","\u975c\u9802\u9f0e\u5236\u5291\u557c\u5824\u5e1d\u5f1f\u608c\u63d0\u68af\u6fdf\u796d\u7b2c\u81cd\u85ba\u88fd\u8af8\u8e44\u918d\u9664\u969b\u973d\u984c\u9f4a\u4fce\u5146\u51cb\u52a9\u5632\u5f14\u5f6b\u63aa\u64cd\u65e9\u6641\u66fa\u66f9\u671d\u689d\u68d7\u69fd\u6f15\u6f6e\u7167\u71e5\u722a\u74aa\u773a\u7956\u795a\u79df\u7a20\u7a95\u7c97\u7cdf\u7d44\u7e70\u8087\u85fb\u86a4\u8a54\u8abf\u8d99\u8e81\u9020\u906d\u91e3\u963b\u96d5\u9ce5\u65cf\u7c07\u8db3\u93c3\u5b58\u5c0a\u5352\u62d9\u731d\u5027\u5b97\u5f9e\u60b0\u616b\u68d5\u6dd9\u742e\u7a2e\u7d42\u7d9c\u7e31\u816b"],["f1a1","\u8e2a\u8e35\u937e\u9418\u4f50\u5750\u5de6\u5ea7\u632b\u7f6a\u4e3b\u4f4f\u4f8f\u505a\u59dd\u80c4\u546a\u5468\u55fe\u594f\u5b99\u5dde\u5eda\u665d\u6731\u67f1\u682a\u6ce8\u6d32\u6e4a\u6f8d\u70b7\u73e0\u7587\u7c4c\u7d02\u7d2c\u7da2\u821f\u86db\u8a3b\u8a85\u8d70\u8e8a\u8f33\u9031\u914e\u9152\u9444\u99d0\u7af9\u7ca5\u4fca\u5101\u51c6\u57c8\u5bef\u5cfb\u6659\u6a3d\u6d5a\u6e96\u6fec\u710c\u756f\u7ae3\u8822\u9021\u9075\u96cb\u99ff\u8301\u4e2d\u4ef2\u8846\u91cd\u537d\u6adb\u696b\u6c41\u847a\u589e\u618e\u66fe\u62ef\u70dd\u7511\u75c7\u7e52\u84b8\u8b49\u8d08\u4e4b\u53ea"],["f2a1","\u54ab\u5730\u5740\u5fd7\u6301\u6307\u646f\u652f\u65e8\u667a\u679d\u67b3\u6b62\u6c60\u6c9a\u6f2c\u77e5\u7825\u7949\u7957\u7d19\u80a2\u8102\u81f3\u829d\u82b7\u8718\u8a8c\uf9fc\u8d04\u8dbe\u9072\u76f4\u7a19\u7a37\u7e54\u8077\u5507\u55d4\u5875\u632f\u6422\u6649\u664b\u686d\u699b\u6b84\u6d25\u6eb1\u73cd\u7468\u74a1\u755b\u75b9\u76e1\u771e\u778b\u79e6\u7e09\u7e1d\u81fb\u852f\u8897\u8a3a\u8cd1\u8eeb\u8fb0\u9032\u93ad\u9663\u9673\u9707\u4f84\u53f1\u59ea\u5ac9\u5e19\u684e\u74c6\u75be\u79e9\u7a92\u81a3\u86ed\u8cea\u8dcc\u8fed\u659f\u6715\uf9fd\u57f7\u6f57\u7ddd\u8f2f"],["f3a1","\u93f6\u96c6\u5fb5\u61f2\u6f84\u4e14\u4f98\u501f\u53c9\u55df\u5d6f\u5dee\u6b21\u6b64\u78cb\u7b9a\uf9fe\u8e49\u8eca\u906e\u6349\u643e\u7740\u7a84\u932f\u947f\u9f6a\u64b0\u6faf\u71e6\u74a8\u74da\u7ac4\u7c12\u7e82\u7cb2\u7e98\u8b9a\u8d0a\u947d\u9910\u994c\u5239\u5bdf\u64e6\u672d\u7d2e\u50ed\u53c3\u5879\u6158\u6159\u61fa\u65ac\u7ad9\u8b92\u8b96\u5009\u5021\u5275\u5531\u5a3c\u5ee0\u5f70\u6134\u655e\u660c\u6636\u66a2\u69cd\u6ec4\u6f32\u7316\u7621\u7a93\u8139\u8259\u83d6\u84bc\u50b5\u57f0\u5bc0\u5be8\u5f69\u63a1\u7826\u7db5\u83dc\u8521\u91c7\u91f5\u518a\u67f5\u7b56"],["f4a1","\u8cac\u51c4\u59bb\u60bd\u8655\u501c\uf9ff\u5254\u5c3a\u617d\u621a\u62d3\u64f2\u65a5\u6ecc\u7620\u810a\u8e60\u965f\u96bb\u4edf\u5343\u5598\u5929\u5ddd\u64c5\u6cc9\u6dfa\u7394\u7a7f\u821b\u85a6\u8ce4\u8e10\u9077\u91e7\u95e1\u9621\u97c6\u51f8\u54f2\u5586\u5fb9\u64a4\u6f88\u7db4\u8f1f\u8f4d\u9435\u50c9\u5c16\u6cbe\u6dfb\u751b\u77bb\u7c3d\u7c64\u8a79\u8ac2\u581e\u59be\u5e16\u6377\u7252\u758a\u776b\u8adc\u8cbc\u8f12\u5ef3\u6674\u6df8\u807d\u83c1\u8acb\u9751\u9bd6\ufa00\u5243\u66ff\u6d95\u6eef\u7de0\u8ae6\u902e\u905e\u9ad4\u521d\u527f\u54e8\u6194\u6284\u62db\u68a2"],["f5a1","\u6912\u695a\u6a35\u7092\u7126\u785d\u7901\u790e\u79d2\u7a0d\u8096\u8278\u82d5\u8349\u8549\u8c82\u8d85\u9162\u918b\u91ae\u4fc3\u56d1\u71ed\u77d7\u8700\u89f8\u5bf8\u5fd6\u6751\u90a8\u53e2\u585a\u5bf5\u60a4\u6181\u6460\u7e3d\u8070\u8525\u9283\u64ae\u50ac\u5d14\u6700\u589c\u62bd\u63a8\u690e\u6978\u6a1e\u6e6b\u76ba\u79cb\u82bb\u8429\u8acf\u8da8\u8ffd\u9112\u914b\u919c\u9310\u9318\u939a\u96db\u9a36\u9c0d\u4e11\u755c\u795d\u7afa\u7b51\u7bc9\u7e2e\u84c4\u8e59\u8e74\u8ef8\u9010\u6625\u693f\u7443\u51fa\u672e\u9edc\u5145\u5fe0\u6c96\u87f2\u885d\u8877\u60b4\u81b5\u8403"],["f6a1","\u8d05\u53d6\u5439\u5634\u5a36\u5c31\u708a\u7fe0\u805a\u8106\u81ed\u8da3\u9189\u9a5f\u9df2\u5074\u4ec4\u53a0\u60fb\u6e2c\u5c64\u4f88\u5024\u55e4\u5cd9\u5e5f\u6065\u6894\u6cbb\u6dc4\u71be\u75d4\u75f4\u7661\u7a1a\u7a49\u7dc7\u7dfb\u7f6e\u81f4\u86a9\u8f1c\u96c9\u99b3\u9f52\u5247\u52c5\u98ed\u89aa\u4e03\u67d2\u6f06\u4fb5\u5be2\u6795\u6c88\u6d78\u741b\u7827\u91dd\u937c\u87c4\u79e4\u7a31\u5feb\u4ed6\u54a4\u553e\u58ae\u59a5\u60f0\u6253\u62d6\u6736\u6955\u8235\u9640\u99b1\u99dd\u502c\u5353\u5544\u577c\ufa01\u6258\ufa02\u64e2\u666b\u67dd\u6fc1\u6fef\u7422\u7438\u8a17"],["f7a1","\u9438\u5451\u5606\u5766\u5f48\u619a\u6b4e\u7058\u70ad\u7dbb\u8a95\u596a\u812b\u63a2\u7708\u803d\u8caa\u5854\u642d\u69bb\u5b95\u5e11\u6e6f\ufa03\u8569\u514c\u53f0\u592a\u6020\u614b\u6b86\u6c70\u6cf0\u7b1e\u80ce\u82d4\u8dc6\u90b0\u98b1\ufa04\u64c7\u6fa4\u6491\u6504\u514e\u5410\u571f\u8a0e\u615f\u6876\ufa05\u75db\u7b52\u7d71\u901a\u5806\u69cc\u817f\u892a\u9000\u9839\u5078\u5957\u59ac\u6295\u900f\u9b2a\u615d\u7279\u95d6\u5761\u5a46\u5df4\u628a\u64ad\u64fa\u6777\u6ce2\u6d3e\u722c\u7436\u7834\u7f77\u82ad\u8ddb\u9817\u5224\u5742\u677f\u7248\u74e3\u8ca9\u8fa6\u9211"],["f8a1","\u962a\u516b\u53ed\u634c\u4f69\u5504\u6096\u6557\u6c9b\u6d7f\u724c\u72fd\u7a17\u8987\u8c9d\u5f6d\u6f8e\u70f9\u81a8\u610e\u4fbf\u504f\u6241\u7247\u7bc7\u7de8\u7fe9\u904d\u97ad\u9a19\u8cb6\u576a\u5e73\u67b0\u840d\u8a55\u5420\u5b16\u5e63\u5ee2\u5f0a\u6583\u80ba\u853d\u9589\u965b\u4f48\u5305\u530d\u530f\u5486\u54fa\u5703\u5e03\u6016\u629b\u62b1\u6355\ufa06\u6ce1\u6d66\u75b1\u7832\u80de\u812f\u82de\u8461\u84b2\u888d\u8912\u900b\u92ea\u98fd\u9b91\u5e45\u66b4\u66dd\u7011\u7206\ufa07\u4ff5\u527d\u5f6a\u6153\u6753\u6a19\u6f02\u74e2\u7968\u8868\u8c79\u98c7\u98c4\u9a43"],["f9a1","\u54c1\u7a1f\u6953\u8af7\u8c4a\u98a8\u99ae\u5f7c\u62ab\u75b2\u76ae\u88ab\u907f\u9642\u5339\u5f3c\u5fc5\u6ccc\u73cc\u7562\u758b\u7b46\u82fe\u999d\u4e4f\u903c\u4e0b\u4f55\u53a6\u590f\u5ec8\u6630\u6cb3\u7455\u8377\u8766\u8cc0\u9050\u971e\u9c15\u58d1\u5b78\u8650\u8b14\u9db4\u5bd2\u6068\u608d\u65f1\u6c57\u6f22\u6fa3\u701a\u7f55\u7ff0\u9591\u9592\u9650\u97d3\u5272\u8f44\u51fd\u542b\u54b8\u5563\u558a\u6abb\u6db5\u7dd8\u8266\u929c\u9677\u9e79\u5408\u54c8\u76d2\u86e4\u95a4\u95d4\u965c\u4ea2\u4f09\u59ee\u5ae6\u5df7\u6052\u6297\u676d\u6841\u6c86\u6e2f\u7f38\u809b\u822a"],["faa1","\ufa08\ufa09\u9805\u4ea5\u5055\u54b3\u5793\u595a\u5b69\u5bb3\u61c8\u6977\u6d77\u7023\u87f9\u89e3\u8a72\u8ae7\u9082\u99ed\u9ab8\u52be\u6838\u5016\u5e78\u674f\u8347\u884c\u4eab\u5411\u56ae\u73e6\u9115\u97ff\u9909\u9957\u9999\u5653\u589f\u865b\u8a31\u61b2\u6af6\u737b\u8ed2\u6b47\u96aa\u9a57\u5955\u7200\u8d6b\u9769\u4fd4\u5cf4\u5f26\u61f8\u665b\u6ceb\u70ab\u7384\u73b9\u73fe\u7729\u774d\u7d43\u7d62\u7e23\u8237\u8852\ufa0a\u8ce2\u9249\u986f\u5b51\u7a74\u8840\u9801\u5acc\u4fe0\u5354\u593e\u5cfd\u633e\u6d79\u72f9\u8105\u8107\u83a2\u92cf\u9830\u4ea8\u5144\u5211\u578b"],["fba1","\u5f62\u6cc2\u6ece\u7005\u7050\u70af\u7192\u73e9\u7469\u834a\u87a2\u8861\u9008\u90a2\u93a3\u99a8\u516e\u5f57\u60e0\u6167\u66b3\u8559\u8e4a\u91af\u978b\u4e4e\u4e92\u547c\u58d5\u58fa\u597d\u5cb5\u5f27\u6236\u6248\u660a\u6667\u6beb\u6d69\u6dcf\u6e56\u6ef8\u6f94\u6fe0\u6fe9\u705d\u72d0\u7425\u745a\u74e0\u7693\u795c\u7cca\u7e1e\u80e1\u82a6\u846b\u84bf\u864e\u865f\u8774\u8b77\u8c6a\u93ac\u9800\u9865\u60d1\u6216\u9177\u5a5a\u660f\u6df7\u6e3e\u743f\u9b42\u5ffd\u60da\u7b0f\u54c4\u5f18\u6c5e\u6cd3\u6d2a\u70d8\u7d05\u8679\u8a0c\u9d3b\u5316\u548c\u5b05\u6a3a\u706b\u7575"],["fca1","\u798d\u79be\u82b1\u83ef\u8a71\u8b41\u8ca8\u9774\ufa0b\u64f4\u652b\u78ba\u78bb\u7a6b\u4e38\u559a\u5950\u5ba6\u5e7b\u60a3\u63db\u6b61\u6665\u6853\u6e19\u7165\u74b0\u7d08\u9084\u9a69\u9c25\u6d3b\u6ed1\u733e\u8c41\u95ca\u51f0\u5e4c\u5fa8\u604d\u60f6\u6130\u614c\u6643\u6644\u69a5\u6cc1\u6e5f\u6ec9\u6f62\u714c\u749c\u7687\u7bc1\u7c27\u8352\u8757\u9051\u968d\u9ec3\u532f\u56de\u5efb\u5f8a\u6062\u6094\u61f7\u6666\u6703\u6a9c\u6dee\u6fae\u7070\u736a\u7e6a\u81be\u8334\u86d4\u8aa8\u8cc4\u5283\u7372\u5b96\u6a6b\u9404\u54ee\u5686\u5b5d\u6548\u6585\u66c9\u689f\u6d8d\u6dc6"],["fda1","\u723b\u80b4\u9175\u9a4d\u4faf\u5019\u539a\u540e\u543c\u5589\u55c5\u5e3f\u5f8c\u673d\u7166\u73dd\u9005\u52db\u52f3\u5864\u58ce\u7104\u718f\u71fb\u85b0\u8a13\u6688\u85a8\u55a7\u6684\u714a\u8431\u5349\u5599\u6bc1\u5f59\u5fbd\u63ee\u6689\u7147\u8af1\u8f1d\u9ebe\u4f11\u643a\u70cb\u7566\u8667\u6064\u8b4e\u9df8\u5147\u51f6\u5308\u6d36\u80f8\u9ed1\u6615\u6b23\u7098\u75d5\u5403\u5c79\u7d07\u8a16\u6b20\u6b3d\u6b46\u5438\u6070\u6d3d\u7fd5\u8208\u50d6\u51de\u559c\u566b\u56cd\u59ec\u5b09\u5e0c\u6199\u6198\u6231\u665e\u66e6\u7199\u71b9\u71ba\u72a7\u79a7\u7a00\u7fb2\u8a70"]]')},4284:function(T){"use strict";T.exports=JSON.parse('[["0","\\u0000",127],["a140","\u3000\uff0c\u3001\u3002\uff0e\u2027\uff1b\uff1a\uff1f\uff01\ufe30\u2026\u2025\ufe50\ufe51\ufe52\xb7\ufe54\ufe55\ufe56\ufe57\uff5c\u2013\ufe31\u2014\ufe33\u2574\ufe34\ufe4f\uff08\uff09\ufe35\ufe36\uff5b\uff5d\ufe37\ufe38\u3014\u3015\ufe39\ufe3a\u3010\u3011\ufe3b\ufe3c\u300a\u300b\ufe3d\ufe3e\u3008\u3009\ufe3f\ufe40\u300c\u300d\ufe41\ufe42\u300e\u300f\ufe43\ufe44\ufe59\ufe5a"],["a1a1","\ufe5b\ufe5c\ufe5d\ufe5e\u2018\u2019\u201c\u201d\u301d\u301e\u2035\u2032\uff03\uff06\uff0a\u203b\xa7\u3003\u25cb\u25cf\u25b3\u25b2\u25ce\u2606\u2605\u25c7\u25c6\u25a1\u25a0\u25bd\u25bc\u32a3\u2105\xaf\uffe3\uff3f\u02cd\ufe49\ufe4a\ufe4d\ufe4e\ufe4b\ufe4c\ufe5f\ufe60\ufe61\uff0b\uff0d\xd7\xf7\xb1\u221a\uff1c\uff1e\uff1d\u2266\u2267\u2260\u221e\u2252\u2261\ufe62",4,"\uff5e\u2229\u222a\u22a5\u2220\u221f\u22bf\u33d2\u33d1\u222b\u222e\u2235\u2234\u2640\u2642\u2295\u2299\u2191\u2193\u2190\u2192\u2196\u2197\u2199\u2198\u2225\u2223\uff0f"],["a240","\uff3c\u2215\ufe68\uff04\uffe5\u3012\uffe0\uffe1\uff05\uff20\u2103\u2109\ufe69\ufe6a\ufe6b\u33d5\u339c\u339d\u339e\u33ce\u33a1\u338e\u338f\u33c4\xb0\u5159\u515b\u515e\u515d\u5161\u5163\u55e7\u74e9\u7cce\u2581",7,"\u258f\u258e\u258d\u258c\u258b\u258a\u2589\u253c\u2534\u252c\u2524\u251c\u2594\u2500\u2502\u2595\u250c\u2510\u2514\u2518\u256d"],["a2a1","\u256e\u2570\u256f\u2550\u255e\u256a\u2561\u25e2\u25e3\u25e5\u25e4\u2571\u2572\u2573\uff10",9,"\u2160",9,"\u3021",8,"\u5341\u5344\u5345\uff21",25,"\uff41",21],["a340","\uff57\uff58\uff59\uff5a\u0391",16,"\u03a3",6,"\u03b1",16,"\u03c3",6,"\u3105",10],["a3a1","\u3110",25,"\u02d9\u02c9\u02ca\u02c7\u02cb"],["a3e1","\u20ac"],["a440","\u4e00\u4e59\u4e01\u4e03\u4e43\u4e5d\u4e86\u4e8c\u4eba\u513f\u5165\u516b\u51e0\u5200\u5201\u529b\u5315\u5341\u535c\u53c8\u4e09\u4e0b\u4e08\u4e0a\u4e2b\u4e38\u51e1\u4e45\u4e48\u4e5f\u4e5e\u4e8e\u4ea1\u5140\u5203\u52fa\u5343\u53c9\u53e3\u571f\u58eb\u5915\u5927\u5973\u5b50\u5b51\u5b53\u5bf8\u5c0f\u5c22\u5c38\u5c71\u5ddd\u5de5\u5df1\u5df2\u5df3\u5dfe\u5e72\u5efe\u5f0b\u5f13\u624d"],["a4a1","\u4e11\u4e10\u4e0d\u4e2d\u4e30\u4e39\u4e4b\u5c39\u4e88\u4e91\u4e95\u4e92\u4e94\u4ea2\u4ec1\u4ec0\u4ec3\u4ec6\u4ec7\u4ecd\u4eca\u4ecb\u4ec4\u5143\u5141\u5167\u516d\u516e\u516c\u5197\u51f6\u5206\u5207\u5208\u52fb\u52fe\u52ff\u5316\u5339\u5348\u5347\u5345\u535e\u5384\u53cb\u53ca\u53cd\u58ec\u5929\u592b\u592a\u592d\u5b54\u5c11\u5c24\u5c3a\u5c6f\u5df4\u5e7b\u5eff\u5f14\u5f15\u5fc3\u6208\u6236\u624b\u624e\u652f\u6587\u6597\u65a4\u65b9\u65e5\u66f0\u6708\u6728\u6b20\u6b62\u6b79\u6bcb\u6bd4\u6bdb\u6c0f\u6c34\u706b\u722a\u7236\u723b\u7247\u7259\u725b\u72ac\u738b\u4e19"],["a540","\u4e16\u4e15\u4e14\u4e18\u4e3b\u4e4d\u4e4f\u4e4e\u4ee5\u4ed8\u4ed4\u4ed5\u4ed6\u4ed7\u4ee3\u4ee4\u4ed9\u4ede\u5145\u5144\u5189\u518a\u51ac\u51f9\u51fa\u51f8\u520a\u52a0\u529f\u5305\u5306\u5317\u531d\u4edf\u534a\u5349\u5361\u5360\u536f\u536e\u53bb\u53ef\u53e4\u53f3\u53ec\u53ee\u53e9\u53e8\u53fc\u53f8\u53f5\u53eb\u53e6\u53ea\u53f2\u53f1\u53f0\u53e5\u53ed\u53fb\u56db\u56da\u5916"],["a5a1","\u592e\u5931\u5974\u5976\u5b55\u5b83\u5c3c\u5de8\u5de7\u5de6\u5e02\u5e03\u5e73\u5e7c\u5f01\u5f18\u5f17\u5fc5\u620a\u6253\u6254\u6252\u6251\u65a5\u65e6\u672e\u672c\u672a\u672b\u672d\u6b63\u6bcd\u6c11\u6c10\u6c38\u6c41\u6c40\u6c3e\u72af\u7384\u7389\u74dc\u74e6\u7518\u751f\u7528\u7529\u7530\u7531\u7532\u7533\u758b\u767d\u76ae\u76bf\u76ee\u77db\u77e2\u77f3\u793a\u79be\u7a74\u7acb\u4e1e\u4e1f\u4e52\u4e53\u4e69\u4e99\u4ea4\u4ea6\u4ea5\u4eff\u4f09\u4f19\u4f0a\u4f15\u4f0d\u4f10\u4f11\u4f0f\u4ef2\u4ef6\u4efb\u4ef0\u4ef3\u4efd\u4f01\u4f0b\u5149\u5147\u5146\u5148\u5168"],["a640","\u5171\u518d\u51b0\u5217\u5211\u5212\u520e\u5216\u52a3\u5308\u5321\u5320\u5370\u5371\u5409\u540f\u540c\u540a\u5410\u5401\u540b\u5404\u5411\u540d\u5408\u5403\u540e\u5406\u5412\u56e0\u56de\u56dd\u5733\u5730\u5728\u572d\u572c\u572f\u5729\u5919\u591a\u5937\u5938\u5984\u5978\u5983\u597d\u5979\u5982\u5981\u5b57\u5b58\u5b87\u5b88\u5b85\u5b89\u5bfa\u5c16\u5c79\u5dde\u5e06\u5e76\u5e74"],["a6a1","\u5f0f\u5f1b\u5fd9\u5fd6\u620e\u620c\u620d\u6210\u6263\u625b\u6258\u6536\u65e9\u65e8\u65ec\u65ed\u66f2\u66f3\u6709\u673d\u6734\u6731\u6735\u6b21\u6b64\u6b7b\u6c16\u6c5d\u6c57\u6c59\u6c5f\u6c60\u6c50\u6c55\u6c61\u6c5b\u6c4d\u6c4e\u7070\u725f\u725d\u767e\u7af9\u7c73\u7cf8\u7f36\u7f8a\u7fbd\u8001\u8003\u800c\u8012\u8033\u807f\u8089\u808b\u808c\u81e3\u81ea\u81f3\u81fc\u820c\u821b\u821f\u826e\u8272\u827e\u866b\u8840\u884c\u8863\u897f\u9621\u4e32\u4ea8\u4f4d\u4f4f\u4f47\u4f57\u4f5e\u4f34\u4f5b\u4f55\u4f30\u4f50\u4f51\u4f3d\u4f3a\u4f38\u4f43\u4f54\u4f3c\u4f46\u4f63"],["a740","\u4f5c\u4f60\u4f2f\u4f4e\u4f36\u4f59\u4f5d\u4f48\u4f5a\u514c\u514b\u514d\u5175\u51b6\u51b7\u5225\u5224\u5229\u522a\u5228\u52ab\u52a9\u52aa\u52ac\u5323\u5373\u5375\u541d\u542d\u541e\u543e\u5426\u544e\u5427\u5446\u5443\u5433\u5448\u5442\u541b\u5429\u544a\u5439\u543b\u5438\u542e\u5435\u5436\u5420\u543c\u5440\u5431\u542b\u541f\u542c\u56ea\u56f0\u56e4\u56eb\u574a\u5751\u5740\u574d"],["a7a1","\u5747\u574e\u573e\u5750\u574f\u573b\u58ef\u593e\u599d\u5992\u59a8\u599e\u59a3\u5999\u5996\u598d\u59a4\u5993\u598a\u59a5\u5b5d\u5b5c\u5b5a\u5b5b\u5b8c\u5b8b\u5b8f\u5c2c\u5c40\u5c41\u5c3f\u5c3e\u5c90\u5c91\u5c94\u5c8c\u5deb\u5e0c\u5e8f\u5e87\u5e8a\u5ef7\u5f04\u5f1f\u5f64\u5f62\u5f77\u5f79\u5fd8\u5fcc\u5fd7\u5fcd\u5ff1\u5feb\u5ff8\u5fea\u6212\u6211\u6284\u6297\u6296\u6280\u6276\u6289\u626d\u628a\u627c\u627e\u6279\u6273\u6292\u626f\u6298\u626e\u6295\u6293\u6291\u6286\u6539\u653b\u6538\u65f1\u66f4\u675f\u674e\u674f\u6750\u6751\u675c\u6756\u675e\u6749\u6746\u6760"],["a840","\u6753\u6757\u6b65\u6bcf\u6c42\u6c5e\u6c99\u6c81\u6c88\u6c89\u6c85\u6c9b\u6c6a\u6c7a\u6c90\u6c70\u6c8c\u6c68\u6c96\u6c92\u6c7d\u6c83\u6c72\u6c7e\u6c74\u6c86\u6c76\u6c8d\u6c94\u6c98\u6c82\u7076\u707c\u707d\u7078\u7262\u7261\u7260\u72c4\u72c2\u7396\u752c\u752b\u7537\u7538\u7682\u76ef\u77e3\u79c1\u79c0\u79bf\u7a76\u7cfb\u7f55\u8096\u8093\u809d\u8098\u809b\u809a\u80b2\u826f\u8292"],["a8a1","\u828b\u828d\u898b\u89d2\u8a00\u8c37\u8c46\u8c55\u8c9d\u8d64\u8d70\u8db3\u8eab\u8eca\u8f9b\u8fb0\u8fc2\u8fc6\u8fc5\u8fc4\u5de1\u9091\u90a2\u90aa\u90a6\u90a3\u9149\u91c6\u91cc\u9632\u962e\u9631\u962a\u962c\u4e26\u4e56\u4e73\u4e8b\u4e9b\u4e9e\u4eab\u4eac\u4f6f\u4f9d\u4f8d\u4f73\u4f7f\u4f6c\u4f9b\u4f8b\u4f86\u4f83\u4f70\u4f75\u4f88\u4f69\u4f7b\u4f96\u4f7e\u4f8f\u4f91\u4f7a\u5154\u5152\u5155\u5169\u5177\u5176\u5178\u51bd\u51fd\u523b\u5238\u5237\u523a\u5230\u522e\u5236\u5241\u52be\u52bb\u5352\u5354\u5353\u5351\u5366\u5377\u5378\u5379\u53d6\u53d4\u53d7\u5473\u5475"],["a940","\u5496\u5478\u5495\u5480\u547b\u5477\u5484\u5492\u5486\u547c\u5490\u5471\u5476\u548c\u549a\u5462\u5468\u548b\u547d\u548e\u56fa\u5783\u5777\u576a\u5769\u5761\u5766\u5764\u577c\u591c\u5949\u5947\u5948\u5944\u5954\u59be\u59bb\u59d4\u59b9\u59ae\u59d1\u59c6\u59d0\u59cd\u59cb\u59d3\u59ca\u59af\u59b3\u59d2\u59c5\u5b5f\u5b64\u5b63\u5b97\u5b9a\u5b98\u5b9c\u5b99\u5b9b\u5c1a\u5c48\u5c45"],["a9a1","\u5c46\u5cb7\u5ca1\u5cb8\u5ca9\u5cab\u5cb1\u5cb3\u5e18\u5e1a\u5e16\u5e15\u5e1b\u5e11\u5e78\u5e9a\u5e97\u5e9c\u5e95\u5e96\u5ef6\u5f26\u5f27\u5f29\u5f80\u5f81\u5f7f\u5f7c\u5fdd\u5fe0\u5ffd\u5ff5\u5fff\u600f\u6014\u602f\u6035\u6016\u602a\u6015\u6021\u6027\u6029\u602b\u601b\u6216\u6215\u623f\u623e\u6240\u627f\u62c9\u62cc\u62c4\u62bf\u62c2\u62b9\u62d2\u62db\u62ab\u62d3\u62d4\u62cb\u62c8\u62a8\u62bd\u62bc\u62d0\u62d9\u62c7\u62cd\u62b5\u62da\u62b1\u62d8\u62d6\u62d7\u62c6\u62ac\u62ce\u653e\u65a7\u65bc\u65fa\u6614\u6613\u660c\u6606\u6602\u660e\u6600\u660f\u6615\u660a"],["aa40","\u6607\u670d\u670b\u676d\u678b\u6795\u6771\u679c\u6773\u6777\u6787\u679d\u6797\u676f\u6770\u677f\u6789\u677e\u6790\u6775\u679a\u6793\u677c\u676a\u6772\u6b23\u6b66\u6b67\u6b7f\u6c13\u6c1b\u6ce3\u6ce8\u6cf3\u6cb1\u6ccc\u6ce5\u6cb3\u6cbd\u6cbe\u6cbc\u6ce2\u6cab\u6cd5\u6cd3\u6cb8\u6cc4\u6cb9\u6cc1\u6cae\u6cd7\u6cc5\u6cf1\u6cbf\u6cbb\u6ce1\u6cdb\u6cca\u6cac\u6cef\u6cdc\u6cd6\u6ce0"],["aaa1","\u7095\u708e\u7092\u708a\u7099\u722c\u722d\u7238\u7248\u7267\u7269\u72c0\u72ce\u72d9\u72d7\u72d0\u73a9\u73a8\u739f\u73ab\u73a5\u753d\u759d\u7599\u759a\u7684\u76c2\u76f2\u76f4\u77e5\u77fd\u793e\u7940\u7941\u79c9\u79c8\u7a7a\u7a79\u7afa\u7cfe\u7f54\u7f8c\u7f8b\u8005\u80ba\u80a5\u80a2\u80b1\u80a1\u80ab\u80a9\u80b4\u80aa\u80af\u81e5\u81fe\u820d\u82b3\u829d\u8299\u82ad\u82bd\u829f\u82b9\u82b1\u82ac\u82a5\u82af\u82b8\u82a3\u82b0\u82be\u82b7\u864e\u8671\u521d\u8868\u8ecb\u8fce\u8fd4\u8fd1\u90b5\u90b8\u90b1\u90b6\u91c7\u91d1\u9577\u9580\u961c\u9640\u963f\u963b\u9644"],["ab40","\u9642\u96b9\u96e8\u9752\u975e\u4e9f\u4ead\u4eae\u4fe1\u4fb5\u4faf\u4fbf\u4fe0\u4fd1\u4fcf\u4fdd\u4fc3\u4fb6\u4fd8\u4fdf\u4fca\u4fd7\u4fae\u4fd0\u4fc4\u4fc2\u4fda\u4fce\u4fde\u4fb7\u5157\u5192\u5191\u51a0\u524e\u5243\u524a\u524d\u524c\u524b\u5247\u52c7\u52c9\u52c3\u52c1\u530d\u5357\u537b\u539a\u53db\u54ac\u54c0\u54a8\u54ce\u54c9\u54b8\u54a6\u54b3\u54c7\u54c2\u54bd\u54aa\u54c1"],["aba1","\u54c4\u54c8\u54af\u54ab\u54b1\u54bb\u54a9\u54a7\u54bf\u56ff\u5782\u578b\u57a0\u57a3\u57a2\u57ce\u57ae\u5793\u5955\u5951\u594f\u594e\u5950\u59dc\u59d8\u59ff\u59e3\u59e8\u5a03\u59e5\u59ea\u59da\u59e6\u5a01\u59fb\u5b69\u5ba3\u5ba6\u5ba4\u5ba2\u5ba5\u5c01\u5c4e\u5c4f\u5c4d\u5c4b\u5cd9\u5cd2\u5df7\u5e1d\u5e25\u5e1f\u5e7d\u5ea0\u5ea6\u5efa\u5f08\u5f2d\u5f65\u5f88\u5f85\u5f8a\u5f8b\u5f87\u5f8c\u5f89\u6012\u601d\u6020\u6025\u600e\u6028\u604d\u6070\u6068\u6062\u6046\u6043\u606c\u606b\u606a\u6064\u6241\u62dc\u6316\u6309\u62fc\u62ed\u6301\u62ee\u62fd\u6307\u62f1\u62f7"],["ac40","\u62ef\u62ec\u62fe\u62f4\u6311\u6302\u653f\u6545\u65ab\u65bd\u65e2\u6625\u662d\u6620\u6627\u662f\u661f\u6628\u6631\u6624\u66f7\u67ff\u67d3\u67f1\u67d4\u67d0\u67ec\u67b6\u67af\u67f5\u67e9\u67ef\u67c4\u67d1\u67b4\u67da\u67e5\u67b8\u67cf\u67de\u67f3\u67b0\u67d9\u67e2\u67dd\u67d2\u6b6a\u6b83\u6b86\u6bb5\u6bd2\u6bd7\u6c1f\u6cc9\u6d0b\u6d32\u6d2a\u6d41\u6d25\u6d0c\u6d31\u6d1e\u6d17"],["aca1","\u6d3b\u6d3d\u6d3e\u6d36\u6d1b\u6cf5\u6d39\u6d27\u6d38\u6d29\u6d2e\u6d35\u6d0e\u6d2b\u70ab\u70ba\u70b3\u70ac\u70af\u70ad\u70b8\u70ae\u70a4\u7230\u7272\u726f\u7274\u72e9\u72e0\u72e1\u73b7\u73ca\u73bb\u73b2\u73cd\u73c0\u73b3\u751a\u752d\u754f\u754c\u754e\u754b\u75ab\u75a4\u75a5\u75a2\u75a3\u7678\u7686\u7687\u7688\u76c8\u76c6\u76c3\u76c5\u7701\u76f9\u76f8\u7709\u770b\u76fe\u76fc\u7707\u77dc\u7802\u7814\u780c\u780d\u7946\u7949\u7948\u7947\u79b9\u79ba\u79d1\u79d2\u79cb\u7a7f\u7a81\u7aff\u7afd\u7c7d\u7d02\u7d05\u7d00\u7d09\u7d07\u7d04\u7d06\u7f38\u7f8e\u7fbf\u8004"],["ad40","\u8010\u800d\u8011\u8036\u80d6\u80e5\u80da\u80c3\u80c4\u80cc\u80e1\u80db\u80ce\u80de\u80e4\u80dd\u81f4\u8222\u82e7\u8303\u8305\u82e3\u82db\u82e6\u8304\u82e5\u8302\u8309\u82d2\u82d7\u82f1\u8301\u82dc\u82d4\u82d1\u82de\u82d3\u82df\u82ef\u8306\u8650\u8679\u867b\u867a\u884d\u886b\u8981\u89d4\u8a08\u8a02\u8a03\u8c9e\u8ca0\u8d74\u8d73\u8db4\u8ecd\u8ecc\u8ff0\u8fe6\u8fe2\u8fea\u8fe5"],["ada1","\u8fed\u8feb\u8fe4\u8fe8\u90ca\u90ce\u90c1\u90c3\u914b\u914a\u91cd\u9582\u9650\u964b\u964c\u964d\u9762\u9769\u97cb\u97ed\u97f3\u9801\u98a8\u98db\u98df\u9996\u9999\u4e58\u4eb3\u500c\u500d\u5023\u4fef\u5026\u5025\u4ff8\u5029\u5016\u5006\u503c\u501f\u501a\u5012\u5011\u4ffa\u5000\u5014\u5028\u4ff1\u5021\u500b\u5019\u5018\u4ff3\u4fee\u502d\u502a\u4ffe\u502b\u5009\u517c\u51a4\u51a5\u51a2\u51cd\u51cc\u51c6\u51cb\u5256\u525c\u5254\u525b\u525d\u532a\u537f\u539f\u539d\u53df\u54e8\u5510\u5501\u5537\u54fc\u54e5\u54f2\u5506\u54fa\u5514\u54e9\u54ed\u54e1\u5509\u54ee\u54ea"],["ae40","\u54e6\u5527\u5507\u54fd\u550f\u5703\u5704\u57c2\u57d4\u57cb\u57c3\u5809\u590f\u5957\u5958\u595a\u5a11\u5a18\u5a1c\u5a1f\u5a1b\u5a13\u59ec\u5a20\u5a23\u5a29\u5a25\u5a0c\u5a09\u5b6b\u5c58\u5bb0\u5bb3\u5bb6\u5bb4\u5bae\u5bb5\u5bb9\u5bb8\u5c04\u5c51\u5c55\u5c50\u5ced\u5cfd\u5cfb\u5cea\u5ce8\u5cf0\u5cf6\u5d01\u5cf4\u5dee\u5e2d\u5e2b\u5eab\u5ead\u5ea7\u5f31\u5f92\u5f91\u5f90\u6059"],["aea1","\u6063\u6065\u6050\u6055\u606d\u6069\u606f\u6084\u609f\u609a\u608d\u6094\u608c\u6085\u6096\u6247\u62f3\u6308\u62ff\u634e\u633e\u632f\u6355\u6342\u6346\u634f\u6349\u633a\u6350\u633d\u632a\u632b\u6328\u634d\u634c\u6548\u6549\u6599\u65c1\u65c5\u6642\u6649\u664f\u6643\u6652\u664c\u6645\u6641\u66f8\u6714\u6715\u6717\u6821\u6838\u6848\u6846\u6853\u6839\u6842\u6854\u6829\u68b3\u6817\u684c\u6851\u683d\u67f4\u6850\u6840\u683c\u6843\u682a\u6845\u6813\u6818\u6841\u6b8a\u6b89\u6bb7\u6c23\u6c27\u6c28\u6c26\u6c24\u6cf0\u6d6a\u6d95\u6d88\u6d87\u6d66\u6d78\u6d77\u6d59\u6d93"],["af40","\u6d6c\u6d89\u6d6e\u6d5a\u6d74\u6d69\u6d8c\u6d8a\u6d79\u6d85\u6d65\u6d94\u70ca\u70d8\u70e4\u70d9\u70c8\u70cf\u7239\u7279\u72fc\u72f9\u72fd\u72f8\u72f7\u7386\u73ed\u7409\u73ee\u73e0\u73ea\u73de\u7554\u755d\u755c\u755a\u7559\u75be\u75c5\u75c7\u75b2\u75b3\u75bd\u75bc\u75b9\u75c2\u75b8\u768b\u76b0\u76ca\u76cd\u76ce\u7729\u771f\u7720\u7728\u77e9\u7830\u7827\u7838\u781d\u7834\u7837"],["afa1","\u7825\u782d\u7820\u781f\u7832\u7955\u7950\u7960\u795f\u7956\u795e\u795d\u7957\u795a\u79e4\u79e3\u79e7\u79df\u79e6\u79e9\u79d8\u7a84\u7a88\u7ad9\u7b06\u7b11\u7c89\u7d21\u7d17\u7d0b\u7d0a\u7d20\u7d22\u7d14\u7d10\u7d15\u7d1a\u7d1c\u7d0d\u7d19\u7d1b\u7f3a\u7f5f\u7f94\u7fc5\u7fc1\u8006\u8018\u8015\u8019\u8017\u803d\u803f\u80f1\u8102\u80f0\u8105\u80ed\u80f4\u8106\u80f8\u80f3\u8108\u80fd\u810a\u80fc\u80ef\u81ed\u81ec\u8200\u8210\u822a\u822b\u8228\u822c\u82bb\u832b\u8352\u8354\u834a\u8338\u8350\u8349\u8335\u8334\u834f\u8332\u8339\u8336\u8317\u8340\u8331\u8328\u8343"],["b040","\u8654\u868a\u86aa\u8693\u86a4\u86a9\u868c\u86a3\u869c\u8870\u8877\u8881\u8882\u887d\u8879\u8a18\u8a10\u8a0e\u8a0c\u8a15\u8a0a\u8a17\u8a13\u8a16\u8a0f\u8a11\u8c48\u8c7a\u8c79\u8ca1\u8ca2\u8d77\u8eac\u8ed2\u8ed4\u8ecf\u8fb1\u9001\u9006\u8ff7\u9000\u8ffa\u8ff4\u9003\u8ffd\u9005\u8ff8\u9095\u90e1\u90dd\u90e2\u9152\u914d\u914c\u91d8\u91dd\u91d7\u91dc\u91d9\u9583\u9662\u9663\u9661"],["b0a1","\u965b\u965d\u9664\u9658\u965e\u96bb\u98e2\u99ac\u9aa8\u9ad8\u9b25\u9b32\u9b3c\u4e7e\u507a\u507d\u505c\u5047\u5043\u504c\u505a\u5049\u5065\u5076\u504e\u5055\u5075\u5074\u5077\u504f\u500f\u506f\u506d\u515c\u5195\u51f0\u526a\u526f\u52d2\u52d9\u52d8\u52d5\u5310\u530f\u5319\u533f\u5340\u533e\u53c3\u66fc\u5546\u556a\u5566\u5544\u555e\u5561\u5543\u554a\u5531\u5556\u554f\u5555\u552f\u5564\u5538\u552e\u555c\u552c\u5563\u5533\u5541\u5557\u5708\u570b\u5709\u57df\u5805\u580a\u5806\u57e0\u57e4\u57fa\u5802\u5835\u57f7\u57f9\u5920\u5962\u5a36\u5a41\u5a49\u5a66\u5a6a\u5a40"],["b140","\u5a3c\u5a62\u5a5a\u5a46\u5a4a\u5b70\u5bc7\u5bc5\u5bc4\u5bc2\u5bbf\u5bc6\u5c09\u5c08\u5c07\u5c60\u5c5c\u5c5d\u5d07\u5d06\u5d0e\u5d1b\u5d16\u5d22\u5d11\u5d29\u5d14\u5d19\u5d24\u5d27\u5d17\u5de2\u5e38\u5e36\u5e33\u5e37\u5eb7\u5eb8\u5eb6\u5eb5\u5ebe\u5f35\u5f37\u5f57\u5f6c\u5f69\u5f6b\u5f97\u5f99\u5f9e\u5f98\u5fa1\u5fa0\u5f9c\u607f\u60a3\u6089\u60a0\u60a8\u60cb\u60b4\u60e6\u60bd"],["b1a1","\u60c5\u60bb\u60b5\u60dc\u60bc\u60d8\u60d5\u60c6\u60df\u60b8\u60da\u60c7\u621a\u621b\u6248\u63a0\u63a7\u6372\u6396\u63a2\u63a5\u6377\u6367\u6398\u63aa\u6371\u63a9\u6389\u6383\u639b\u636b\u63a8\u6384\u6388\u6399\u63a1\u63ac\u6392\u638f\u6380\u637b\u6369\u6368\u637a\u655d\u6556\u6551\u6559\u6557\u555f\u654f\u6558\u6555\u6554\u659c\u659b\u65ac\u65cf\u65cb\u65cc\u65ce\u665d\u665a\u6664\u6668\u6666\u665e\u66f9\u52d7\u671b\u6881\u68af\u68a2\u6893\u68b5\u687f\u6876\u68b1\u68a7\u6897\u68b0\u6883\u68c4\u68ad\u6886\u6885\u6894\u689d\u68a8\u689f\u68a1\u6882\u6b32\u6bba"],["b240","\u6beb\u6bec\u6c2b\u6d8e\u6dbc\u6df3\u6dd9\u6db2\u6de1\u6dcc\u6de4\u6dfb\u6dfa\u6e05\u6dc7\u6dcb\u6daf\u6dd1\u6dae\u6dde\u6df9\u6db8\u6df7\u6df5\u6dc5\u6dd2\u6e1a\u6db5\u6dda\u6deb\u6dd8\u6dea\u6df1\u6dee\u6de8\u6dc6\u6dc4\u6daa\u6dec\u6dbf\u6de6\u70f9\u7109\u710a\u70fd\u70ef\u723d\u727d\u7281\u731c\u731b\u7316\u7313\u7319\u7387\u7405\u740a\u7403\u7406\u73fe\u740d\u74e0\u74f6"],["b2a1","\u74f7\u751c\u7522\u7565\u7566\u7562\u7570\u758f\u75d4\u75d5\u75b5\u75ca\u75cd\u768e\u76d4\u76d2\u76db\u7737\u773e\u773c\u7736\u7738\u773a\u786b\u7843\u784e\u7965\u7968\u796d\u79fb\u7a92\u7a95\u7b20\u7b28\u7b1b\u7b2c\u7b26\u7b19\u7b1e\u7b2e\u7c92\u7c97\u7c95\u7d46\u7d43\u7d71\u7d2e\u7d39\u7d3c\u7d40\u7d30\u7d33\u7d44\u7d2f\u7d42\u7d32\u7d31\u7f3d\u7f9e\u7f9a\u7fcc\u7fce\u7fd2\u801c\u804a\u8046\u812f\u8116\u8123\u812b\u8129\u8130\u8124\u8202\u8235\u8237\u8236\u8239\u838e\u839e\u8398\u8378\u83a2\u8396\u83bd\u83ab\u8392\u838a\u8393\u8389\u83a0\u8377\u837b\u837c"],["b340","\u8386\u83a7\u8655\u5f6a\u86c7\u86c0\u86b6\u86c4\u86b5\u86c6\u86cb\u86b1\u86af\u86c9\u8853\u889e\u8888\u88ab\u8892\u8896\u888d\u888b\u8993\u898f\u8a2a\u8a1d\u8a23\u8a25\u8a31\u8a2d\u8a1f\u8a1b\u8a22\u8c49\u8c5a\u8ca9\u8cac\u8cab\u8ca8\u8caa\u8ca7\u8d67\u8d66\u8dbe\u8dba\u8edb\u8edf\u9019\u900d\u901a\u9017\u9023\u901f\u901d\u9010\u9015\u901e\u9020\u900f\u9022\u9016\u901b\u9014"],["b3a1","\u90e8\u90ed\u90fd\u9157\u91ce\u91f5\u91e6\u91e3\u91e7\u91ed\u91e9\u9589\u966a\u9675\u9673\u9678\u9670\u9674\u9676\u9677\u966c\u96c0\u96ea\u96e9\u7ae0\u7adf\u9802\u9803\u9b5a\u9ce5\u9e75\u9e7f\u9ea5\u9ebb\u50a2\u508d\u5085\u5099\u5091\u5080\u5096\u5098\u509a\u6700\u51f1\u5272\u5274\u5275\u5269\u52de\u52dd\u52db\u535a\u53a5\u557b\u5580\u55a7\u557c\u558a\u559d\u5598\u5582\u559c\u55aa\u5594\u5587\u558b\u5583\u55b3\u55ae\u559f\u553e\u55b2\u559a\u55bb\u55ac\u55b1\u557e\u5589\u55ab\u5599\u570d\u582f\u582a\u5834\u5824\u5830\u5831\u5821\u581d\u5820\u58f9\u58fa\u5960"],["b440","\u5a77\u5a9a\u5a7f\u5a92\u5a9b\u5aa7\u5b73\u5b71\u5bd2\u5bcc\u5bd3\u5bd0\u5c0a\u5c0b\u5c31\u5d4c\u5d50\u5d34\u5d47\u5dfd\u5e45\u5e3d\u5e40\u5e43\u5e7e\u5eca\u5ec1\u5ec2\u5ec4\u5f3c\u5f6d\u5fa9\u5faa\u5fa8\u60d1\u60e1\u60b2\u60b6\u60e0\u611c\u6123\u60fa\u6115\u60f0\u60fb\u60f4\u6168\u60f1\u610e\u60f6\u6109\u6100\u6112\u621f\u6249\u63a3\u638c\u63cf\u63c0\u63e9\u63c9\u63c6\u63cd"],["b4a1","\u63d2\u63e3\u63d0\u63e1\u63d6\u63ed\u63ee\u6376\u63f4\u63ea\u63db\u6452\u63da\u63f9\u655e\u6566\u6562\u6563\u6591\u6590\u65af\u666e\u6670\u6674\u6676\u666f\u6691\u667a\u667e\u6677\u66fe\u66ff\u671f\u671d\u68fa\u68d5\u68e0\u68d8\u68d7\u6905\u68df\u68f5\u68ee\u68e7\u68f9\u68d2\u68f2\u68e3\u68cb\u68cd\u690d\u6912\u690e\u68c9\u68da\u696e\u68fb\u6b3e\u6b3a\u6b3d\u6b98\u6b96\u6bbc\u6bef\u6c2e\u6c2f\u6c2c\u6e2f\u6e38\u6e54\u6e21\u6e32\u6e67\u6e4a\u6e20\u6e25\u6e23\u6e1b\u6e5b\u6e58\u6e24\u6e56\u6e6e\u6e2d\u6e26\u6e6f\u6e34\u6e4d\u6e3a\u6e2c\u6e43\u6e1d\u6e3e\u6ecb"],["b540","\u6e89\u6e19\u6e4e\u6e63\u6e44\u6e72\u6e69\u6e5f\u7119\u711a\u7126\u7130\u7121\u7136\u716e\u711c\u724c\u7284\u7280\u7336\u7325\u7334\u7329\u743a\u742a\u7433\u7422\u7425\u7435\u7436\u7434\u742f\u741b\u7426\u7428\u7525\u7526\u756b\u756a\u75e2\u75db\u75e3\u75d9\u75d8\u75de\u75e0\u767b\u767c\u7696\u7693\u76b4\u76dc\u774f\u77ed\u785d\u786c\u786f\u7a0d\u7a08\u7a0b\u7a05\u7a00\u7a98"],["b5a1","\u7a97\u7a96\u7ae5\u7ae3\u7b49\u7b56\u7b46\u7b50\u7b52\u7b54\u7b4d\u7b4b\u7b4f\u7b51\u7c9f\u7ca5\u7d5e\u7d50\u7d68\u7d55\u7d2b\u7d6e\u7d72\u7d61\u7d66\u7d62\u7d70\u7d73\u5584\u7fd4\u7fd5\u800b\u8052\u8085\u8155\u8154\u814b\u8151\u814e\u8139\u8146\u813e\u814c\u8153\u8174\u8212\u821c\u83e9\u8403\u83f8\u840d\u83e0\u83c5\u840b\u83c1\u83ef\u83f1\u83f4\u8457\u840a\u83f0\u840c\u83cc\u83fd\u83f2\u83ca\u8438\u840e\u8404\u83dc\u8407\u83d4\u83df\u865b\u86df\u86d9\u86ed\u86d4\u86db\u86e4\u86d0\u86de\u8857\u88c1\u88c2\u88b1\u8983\u8996\u8a3b\u8a60\u8a55\u8a5e\u8a3c\u8a41"],["b640","\u8a54\u8a5b\u8a50\u8a46\u8a34\u8a3a\u8a36\u8a56\u8c61\u8c82\u8caf\u8cbc\u8cb3\u8cbd\u8cc1\u8cbb\u8cc0\u8cb4\u8cb7\u8cb6\u8cbf\u8cb8\u8d8a\u8d85\u8d81\u8dce\u8ddd\u8dcb\u8dda\u8dd1\u8dcc\u8ddb\u8dc6\u8efb\u8ef8\u8efc\u8f9c\u902e\u9035\u9031\u9038\u9032\u9036\u9102\u90f5\u9109\u90fe\u9163\u9165\u91cf\u9214\u9215\u9223\u9209\u921e\u920d\u9210\u9207\u9211\u9594\u958f\u958b\u9591"],["b6a1","\u9593\u9592\u958e\u968a\u968e\u968b\u967d\u9685\u9686\u968d\u9672\u9684\u96c1\u96c5\u96c4\u96c6\u96c7\u96ef\u96f2\u97cc\u9805\u9806\u9808\u98e7\u98ea\u98ef\u98e9\u98f2\u98ed\u99ae\u99ad\u9ec3\u9ecd\u9ed1\u4e82\u50ad\u50b5\u50b2\u50b3\u50c5\u50be\u50ac\u50b7\u50bb\u50af\u50c7\u527f\u5277\u527d\u52df\u52e6\u52e4\u52e2\u52e3\u532f\u55df\u55e8\u55d3\u55e6\u55ce\u55dc\u55c7\u55d1\u55e3\u55e4\u55ef\u55da\u55e1\u55c5\u55c6\u55e5\u55c9\u5712\u5713\u585e\u5851\u5858\u5857\u585a\u5854\u586b\u584c\u586d\u584a\u5862\u5852\u584b\u5967\u5ac1\u5ac9\u5acc\u5abe\u5abd\u5abc"],["b740","\u5ab3\u5ac2\u5ab2\u5d69\u5d6f\u5e4c\u5e79\u5ec9\u5ec8\u5f12\u5f59\u5fac\u5fae\u611a\u610f\u6148\u611f\u60f3\u611b\u60f9\u6101\u6108\u614e\u614c\u6144\u614d\u613e\u6134\u6127\u610d\u6106\u6137\u6221\u6222\u6413\u643e\u641e\u642a\u642d\u643d\u642c\u640f\u641c\u6414\u640d\u6436\u6416\u6417\u6406\u656c\u659f\u65b0\u6697\u6689\u6687\u6688\u6696\u6684\u6698\u668d\u6703\u6994\u696d"],["b7a1","\u695a\u6977\u6960\u6954\u6975\u6930\u6982\u694a\u6968\u696b\u695e\u6953\u6979\u6986\u695d\u6963\u695b\u6b47\u6b72\u6bc0\u6bbf\u6bd3\u6bfd\u6ea2\u6eaf\u6ed3\u6eb6\u6ec2\u6e90\u6e9d\u6ec7\u6ec5\u6ea5\u6e98\u6ebc\u6eba\u6eab\u6ed1\u6e96\u6e9c\u6ec4\u6ed4\u6eaa\u6ea7\u6eb4\u714e\u7159\u7169\u7164\u7149\u7167\u715c\u716c\u7166\u714c\u7165\u715e\u7146\u7168\u7156\u723a\u7252\u7337\u7345\u733f\u733e\u746f\u745a\u7455\u745f\u745e\u7441\u743f\u7459\u745b\u745c\u7576\u7578\u7600\u75f0\u7601\u75f2\u75f1\u75fa\u75ff\u75f4\u75f3\u76de\u76df\u775b\u776b\u7766\u775e\u7763"],["b840","\u7779\u776a\u776c\u775c\u7765\u7768\u7762\u77ee\u788e\u78b0\u7897\u7898\u788c\u7889\u787c\u7891\u7893\u787f\u797a\u797f\u7981\u842c\u79bd\u7a1c\u7a1a\u7a20\u7a14\u7a1f\u7a1e\u7a9f\u7aa0\u7b77\u7bc0\u7b60\u7b6e\u7b67\u7cb1\u7cb3\u7cb5\u7d93\u7d79\u7d91\u7d81\u7d8f\u7d5b\u7f6e\u7f69\u7f6a\u7f72\u7fa9\u7fa8\u7fa4\u8056\u8058\u8086\u8084\u8171\u8170\u8178\u8165\u816e\u8173\u816b"],["b8a1","\u8179\u817a\u8166\u8205\u8247\u8482\u8477\u843d\u8431\u8475\u8466\u846b\u8449\u846c\u845b\u843c\u8435\u8461\u8463\u8469\u846d\u8446\u865e\u865c\u865f\u86f9\u8713\u8708\u8707\u8700\u86fe\u86fb\u8702\u8703\u8706\u870a\u8859\u88df\u88d4\u88d9\u88dc\u88d8\u88dd\u88e1\u88ca\u88d5\u88d2\u899c\u89e3\u8a6b\u8a72\u8a73\u8a66\u8a69\u8a70\u8a87\u8a7c\u8a63\u8aa0\u8a71\u8a85\u8a6d\u8a62\u8a6e\u8a6c\u8a79\u8a7b\u8a3e\u8a68\u8c62\u8c8a\u8c89\u8cca\u8cc7\u8cc8\u8cc4\u8cb2\u8cc3\u8cc2\u8cc5\u8de1\u8ddf\u8de8\u8def\u8df3\u8dfa\u8dea\u8de4\u8de6\u8eb2\u8f03\u8f09\u8efe\u8f0a"],["b940","\u8f9f\u8fb2\u904b\u904a\u9053\u9042\u9054\u903c\u9055\u9050\u9047\u904f\u904e\u904d\u9051\u903e\u9041\u9112\u9117\u916c\u916a\u9169\u91c9\u9237\u9257\u9238\u923d\u9240\u923e\u925b\u924b\u9264\u9251\u9234\u9249\u924d\u9245\u9239\u923f\u925a\u9598\u9698\u9694\u9695\u96cd\u96cb\u96c9\u96ca\u96f7\u96fb\u96f9\u96f6\u9756\u9774\u9776\u9810\u9811\u9813\u980a\u9812\u980c\u98fc\u98f4"],["b9a1","\u98fd\u98fe\u99b3\u99b1\u99b4\u9ae1\u9ce9\u9e82\u9f0e\u9f13\u9f20\u50e7\u50ee\u50e5\u50d6\u50ed\u50da\u50d5\u50cf\u50d1\u50f1\u50ce\u50e9\u5162\u51f3\u5283\u5282\u5331\u53ad\u55fe\u5600\u561b\u5617\u55fd\u5614\u5606\u5609\u560d\u560e\u55f7\u5616\u561f\u5608\u5610\u55f6\u5718\u5716\u5875\u587e\u5883\u5893\u588a\u5879\u5885\u587d\u58fd\u5925\u5922\u5924\u596a\u5969\u5ae1\u5ae6\u5ae9\u5ad7\u5ad6\u5ad8\u5ae3\u5b75\u5bde\u5be7\u5be1\u5be5\u5be6\u5be8\u5be2\u5be4\u5bdf\u5c0d\u5c62\u5d84\u5d87\u5e5b\u5e63\u5e55\u5e57\u5e54\u5ed3\u5ed6\u5f0a\u5f46\u5f70\u5fb9\u6147"],["ba40","\u613f\u614b\u6177\u6162\u6163\u615f\u615a\u6158\u6175\u622a\u6487\u6458\u6454\u64a4\u6478\u645f\u647a\u6451\u6467\u6434\u646d\u647b\u6572\u65a1\u65d7\u65d6\u66a2\u66a8\u669d\u699c\u69a8\u6995\u69c1\u69ae\u69d3\u69cb\u699b\u69b7\u69bb\u69ab\u69b4\u69d0\u69cd\u69ad\u69cc\u69a6\u69c3\u69a3\u6b49\u6b4c\u6c33\u6f33\u6f14\u6efe\u6f13\u6ef4\u6f29\u6f3e\u6f20\u6f2c\u6f0f\u6f02\u6f22"],["baa1","\u6eff\u6eef\u6f06\u6f31\u6f38\u6f32\u6f23\u6f15\u6f2b\u6f2f\u6f88\u6f2a\u6eec\u6f01\u6ef2\u6ecc\u6ef7\u7194\u7199\u717d\u718a\u7184\u7192\u723e\u7292\u7296\u7344\u7350\u7464\u7463\u746a\u7470\u746d\u7504\u7591\u7627\u760d\u760b\u7609\u7613\u76e1\u76e3\u7784\u777d\u777f\u7761\u78c1\u789f\u78a7\u78b3\u78a9\u78a3\u798e\u798f\u798d\u7a2e\u7a31\u7aaa\u7aa9\u7aed\u7aef\u7ba1\u7b95\u7b8b\u7b75\u7b97\u7b9d\u7b94\u7b8f\u7bb8\u7b87\u7b84\u7cb9\u7cbd\u7cbe\u7dbb\u7db0\u7d9c\u7dbd\u7dbe\u7da0\u7dca\u7db4\u7db2\u7db1\u7dba\u7da2\u7dbf\u7db5\u7db8\u7dad\u7dd2\u7dc7\u7dac"],["bb40","\u7f70\u7fe0\u7fe1\u7fdf\u805e\u805a\u8087\u8150\u8180\u818f\u8188\u818a\u817f\u8182\u81e7\u81fa\u8207\u8214\u821e\u824b\u84c9\u84bf\u84c6\u84c4\u8499\u849e\u84b2\u849c\u84cb\u84b8\u84c0\u84d3\u8490\u84bc\u84d1\u84ca\u873f\u871c\u873b\u8722\u8725\u8734\u8718\u8755\u8737\u8729\u88f3\u8902\u88f4\u88f9\u88f8\u88fd\u88e8\u891a\u88ef\u8aa6\u8a8c\u8a9e\u8aa3\u8a8d\u8aa1\u8a93\u8aa4"],["bba1","\u8aaa\u8aa5\u8aa8\u8a98\u8a91\u8a9a\u8aa7\u8c6a\u8c8d\u8c8c\u8cd3\u8cd1\u8cd2\u8d6b\u8d99\u8d95\u8dfc\u8f14\u8f12\u8f15\u8f13\u8fa3\u9060\u9058\u905c\u9063\u9059\u905e\u9062\u905d\u905b\u9119\u9118\u911e\u9175\u9178\u9177\u9174\u9278\u9280\u9285\u9298\u9296\u927b\u9293\u929c\u92a8\u927c\u9291\u95a1\u95a8\u95a9\u95a3\u95a5\u95a4\u9699\u969c\u969b\u96cc\u96d2\u9700\u977c\u9785\u97f6\u9817\u9818\u98af\u98b1\u9903\u9905\u990c\u9909\u99c1\u9aaf\u9ab0\u9ae6\u9b41\u9b42\u9cf4\u9cf6\u9cf3\u9ebc\u9f3b\u9f4a\u5104\u5100\u50fb\u50f5\u50f9\u5102\u5108\u5109\u5105\u51dc"],["bc40","\u5287\u5288\u5289\u528d\u528a\u52f0\u53b2\u562e\u563b\u5639\u5632\u563f\u5634\u5629\u5653\u564e\u5657\u5674\u5636\u562f\u5630\u5880\u589f\u589e\u58b3\u589c\u58ae\u58a9\u58a6\u596d\u5b09\u5afb\u5b0b\u5af5\u5b0c\u5b08\u5bee\u5bec\u5be9\u5beb\u5c64\u5c65\u5d9d\u5d94\u5e62\u5e5f\u5e61\u5ee2\u5eda\u5edf\u5edd\u5ee3\u5ee0\u5f48\u5f71\u5fb7\u5fb5\u6176\u6167\u616e\u615d\u6155\u6182"],["bca1","\u617c\u6170\u616b\u617e\u61a7\u6190\u61ab\u618e\u61ac\u619a\u61a4\u6194\u61ae\u622e\u6469\u646f\u6479\u649e\u64b2\u6488\u6490\u64b0\u64a5\u6493\u6495\u64a9\u6492\u64ae\u64ad\u64ab\u649a\u64ac\u6499\u64a2\u64b3\u6575\u6577\u6578\u66ae\u66ab\u66b4\u66b1\u6a23\u6a1f\u69e8\u6a01\u6a1e\u6a19\u69fd\u6a21\u6a13\u6a0a\u69f3\u6a02\u6a05\u69ed\u6a11\u6b50\u6b4e\u6ba4\u6bc5\u6bc6\u6f3f\u6f7c\u6f84\u6f51\u6f66\u6f54\u6f86\u6f6d\u6f5b\u6f78\u6f6e\u6f8e\u6f7a\u6f70\u6f64\u6f97\u6f58\u6ed5\u6f6f\u6f60\u6f5f\u719f\u71ac\u71b1\u71a8\u7256\u729b\u734e\u7357\u7469\u748b\u7483"],["bd40","\u747e\u7480\u757f\u7620\u7629\u761f\u7624\u7626\u7621\u7622\u769a\u76ba\u76e4\u778e\u7787\u778c\u7791\u778b\u78cb\u78c5\u78ba\u78ca\u78be\u78d5\u78bc\u78d0\u7a3f\u7a3c\u7a40\u7a3d\u7a37\u7a3b\u7aaf\u7aae\u7bad\u7bb1\u7bc4\u7bb4\u7bc6\u7bc7\u7bc1\u7ba0\u7bcc\u7cca\u7de0\u7df4\u7def\u7dfb\u7dd8\u7dec\u7ddd\u7de8\u7de3\u7dda\u7dde\u7de9\u7d9e\u7dd9\u7df2\u7df9\u7f75\u7f77\u7faf"],["bda1","\u7fe9\u8026\u819b\u819c\u819d\u81a0\u819a\u8198\u8517\u853d\u851a\u84ee\u852c\u852d\u8513\u8511\u8523\u8521\u8514\u84ec\u8525\u84ff\u8506\u8782\u8774\u8776\u8760\u8766\u8778\u8768\u8759\u8757\u874c\u8753\u885b\u885d\u8910\u8907\u8912\u8913\u8915\u890a\u8abc\u8ad2\u8ac7\u8ac4\u8a95\u8acb\u8af8\u8ab2\u8ac9\u8ac2\u8abf\u8ab0\u8ad6\u8acd\u8ab6\u8ab9\u8adb\u8c4c\u8c4e\u8c6c\u8ce0\u8cde\u8ce6\u8ce4\u8cec\u8ced\u8ce2\u8ce3\u8cdc\u8cea\u8ce1\u8d6d\u8d9f\u8da3\u8e2b\u8e10\u8e1d\u8e22\u8e0f\u8e29\u8e1f\u8e21\u8e1e\u8eba\u8f1d\u8f1b\u8f1f\u8f29\u8f26\u8f2a\u8f1c\u8f1e"],["be40","\u8f25\u9069\u906e\u9068\u906d\u9077\u9130\u912d\u9127\u9131\u9187\u9189\u918b\u9183\u92c5\u92bb\u92b7\u92ea\u92ac\u92e4\u92c1\u92b3\u92bc\u92d2\u92c7\u92f0\u92b2\u95ad\u95b1\u9704\u9706\u9707\u9709\u9760\u978d\u978b\u978f\u9821\u982b\u981c\u98b3\u990a\u9913\u9912\u9918\u99dd\u99d0\u99df\u99db\u99d1\u99d5\u99d2\u99d9\u9ab7\u9aee\u9aef\u9b27\u9b45\u9b44\u9b77\u9b6f\u9d06\u9d09"],["bea1","\u9d03\u9ea9\u9ebe\u9ece\u58a8\u9f52\u5112\u5118\u5114\u5110\u5115\u5180\u51aa\u51dd\u5291\u5293\u52f3\u5659\u566b\u5679\u5669\u5664\u5678\u566a\u5668\u5665\u5671\u566f\u566c\u5662\u5676\u58c1\u58be\u58c7\u58c5\u596e\u5b1d\u5b34\u5b78\u5bf0\u5c0e\u5f4a\u61b2\u6191\u61a9\u618a\u61cd\u61b6\u61be\u61ca\u61c8\u6230\u64c5\u64c1\u64cb\u64bb\u64bc\u64da\u64c4\u64c7\u64c2\u64cd\u64bf\u64d2\u64d4\u64be\u6574\u66c6\u66c9\u66b9\u66c4\u66c7\u66b8\u6a3d\u6a38\u6a3a\u6a59\u6a6b\u6a58\u6a39\u6a44\u6a62\u6a61\u6a4b\u6a47\u6a35\u6a5f\u6a48\u6b59\u6b77\u6c05\u6fc2\u6fb1\u6fa1"],["bf40","\u6fc3\u6fa4\u6fc1\u6fa7\u6fb3\u6fc0\u6fb9\u6fb6\u6fa6\u6fa0\u6fb4\u71be\u71c9\u71d0\u71d2\u71c8\u71d5\u71b9\u71ce\u71d9\u71dc\u71c3\u71c4\u7368\u749c\u74a3\u7498\u749f\u749e\u74e2\u750c\u750d\u7634\u7638\u763a\u76e7\u76e5\u77a0\u779e\u779f\u77a5\u78e8\u78da\u78ec\u78e7\u79a6\u7a4d\u7a4e\u7a46\u7a4c\u7a4b\u7aba\u7bd9\u7c11\u7bc9\u7be4\u7bdb\u7be1\u7be9\u7be6\u7cd5\u7cd6\u7e0a"],["bfa1","\u7e11\u7e08\u7e1b\u7e23\u7e1e\u7e1d\u7e09\u7e10\u7f79\u7fb2\u7ff0\u7ff1\u7fee\u8028\u81b3\u81a9\u81a8\u81fb\u8208\u8258\u8259\u854a\u8559\u8548\u8568\u8569\u8543\u8549\u856d\u856a\u855e\u8783\u879f\u879e\u87a2\u878d\u8861\u892a\u8932\u8925\u892b\u8921\u89aa\u89a6\u8ae6\u8afa\u8aeb\u8af1\u8b00\u8adc\u8ae7\u8aee\u8afe\u8b01\u8b02\u8af7\u8aed\u8af3\u8af6\u8afc\u8c6b\u8c6d\u8c93\u8cf4\u8e44\u8e31\u8e34\u8e42\u8e39\u8e35\u8f3b\u8f2f\u8f38\u8f33\u8fa8\u8fa6\u9075\u9074\u9078\u9072\u907c\u907a\u9134\u9192\u9320\u9336\u92f8\u9333\u932f\u9322\u92fc\u932b\u9304\u931a"],["c040","\u9310\u9326\u9321\u9315\u932e\u9319\u95bb\u96a7\u96a8\u96aa\u96d5\u970e\u9711\u9716\u970d\u9713\u970f\u975b\u975c\u9766\u9798\u9830\u9838\u983b\u9837\u982d\u9839\u9824\u9910\u9928\u991e\u991b\u9921\u991a\u99ed\u99e2\u99f1\u9ab8\u9abc\u9afb\u9aed\u9b28\u9b91\u9d15\u9d23\u9d26\u9d28\u9d12\u9d1b\u9ed8\u9ed4\u9f8d\u9f9c\u512a\u511f\u5121\u5132\u52f5\u568e\u5680\u5690\u5685\u5687"],["c0a1","\u568f\u58d5\u58d3\u58d1\u58ce\u5b30\u5b2a\u5b24\u5b7a\u5c37\u5c68\u5dbc\u5dba\u5dbd\u5db8\u5e6b\u5f4c\u5fbd\u61c9\u61c2\u61c7\u61e6\u61cb\u6232\u6234\u64ce\u64ca\u64d8\u64e0\u64f0\u64e6\u64ec\u64f1\u64e2\u64ed\u6582\u6583\u66d9\u66d6\u6a80\u6a94\u6a84\u6aa2\u6a9c\u6adb\u6aa3\u6a7e\u6a97\u6a90\u6aa0\u6b5c\u6bae\u6bda\u6c08\u6fd8\u6ff1\u6fdf\u6fe0\u6fdb\u6fe4\u6feb\u6fef\u6f80\u6fec\u6fe1\u6fe9\u6fd5\u6fee\u6ff0\u71e7\u71df\u71ee\u71e6\u71e5\u71ed\u71ec\u71f4\u71e0\u7235\u7246\u7370\u7372\u74a9\u74b0\u74a6\u74a8\u7646\u7642\u764c\u76ea\u77b3\u77aa\u77b0\u77ac"],["c140","\u77a7\u77ad\u77ef\u78f7\u78fa\u78f4\u78ef\u7901\u79a7\u79aa\u7a57\u7abf\u7c07\u7c0d\u7bfe\u7bf7\u7c0c\u7be0\u7ce0\u7cdc\u7cde\u7ce2\u7cdf\u7cd9\u7cdd\u7e2e\u7e3e\u7e46\u7e37\u7e32\u7e43\u7e2b\u7e3d\u7e31\u7e45\u7e41\u7e34\u7e39\u7e48\u7e35\u7e3f\u7e2f\u7f44\u7ff3\u7ffc\u8071\u8072\u8070\u806f\u8073\u81c6\u81c3\u81ba\u81c2\u81c0\u81bf\u81bd\u81c9\u81be\u81e8\u8209\u8271\u85aa"],["c1a1","\u8584\u857e\u859c\u8591\u8594\u85af\u859b\u8587\u85a8\u858a\u8667\u87c0\u87d1\u87b3\u87d2\u87c6\u87ab\u87bb\u87ba\u87c8\u87cb\u893b\u8936\u8944\u8938\u893d\u89ac\u8b0e\u8b17\u8b19\u8b1b\u8b0a\u8b20\u8b1d\u8b04\u8b10\u8c41\u8c3f\u8c73\u8cfa\u8cfd\u8cfc\u8cf8\u8cfb\u8da8\u8e49\u8e4b\u8e48\u8e4a\u8f44\u8f3e\u8f42\u8f45\u8f3f\u907f\u907d\u9084\u9081\u9082\u9080\u9139\u91a3\u919e\u919c\u934d\u9382\u9328\u9375\u934a\u9365\u934b\u9318\u937e\u936c\u935b\u9370\u935a\u9354\u95ca\u95cb\u95cc\u95c8\u95c6\u96b1\u96b8\u96d6\u971c\u971e\u97a0\u97d3\u9846\u98b6\u9935\u9a01"],["c240","\u99ff\u9bae\u9bab\u9baa\u9bad\u9d3b\u9d3f\u9e8b\u9ecf\u9ede\u9edc\u9edd\u9edb\u9f3e\u9f4b\u53e2\u5695\u56ae\u58d9\u58d8\u5b38\u5f5d\u61e3\u6233\u64f4\u64f2\u64fe\u6506\u64fa\u64fb\u64f7\u65b7\u66dc\u6726\u6ab3\u6aac\u6ac3\u6abb\u6ab8\u6ac2\u6aae\u6aaf\u6b5f\u6b78\u6baf\u7009\u700b\u6ffe\u7006\u6ffa\u7011\u700f\u71fb\u71fc\u71fe\u71f8\u7377\u7375\u74a7\u74bf\u7515\u7656\u7658"],["c2a1","\u7652\u77bd\u77bf\u77bb\u77bc\u790e\u79ae\u7a61\u7a62\u7a60\u7ac4\u7ac5\u7c2b\u7c27\u7c2a\u7c1e\u7c23\u7c21\u7ce7\u7e54\u7e55\u7e5e\u7e5a\u7e61\u7e52\u7e59\u7f48\u7ff9\u7ffb\u8077\u8076\u81cd\u81cf\u820a\u85cf\u85a9\u85cd\u85d0\u85c9\u85b0\u85ba\u85b9\u85a6\u87ef\u87ec\u87f2\u87e0\u8986\u89b2\u89f4\u8b28\u8b39\u8b2c\u8b2b\u8c50\u8d05\u8e59\u8e63\u8e66\u8e64\u8e5f\u8e55\u8ec0\u8f49\u8f4d\u9087\u9083\u9088\u91ab\u91ac\u91d0\u9394\u938a\u9396\u93a2\u93b3\u93ae\u93ac\u93b0\u9398\u939a\u9397\u95d4\u95d6\u95d0\u95d5\u96e2\u96dc\u96d9\u96db\u96de\u9724\u97a3\u97a6"],["c340","\u97ad\u97f9\u984d\u984f\u984c\u984e\u9853\u98ba\u993e\u993f\u993d\u992e\u99a5\u9a0e\u9ac1\u9b03\u9b06\u9b4f\u9b4e\u9b4d\u9bca\u9bc9\u9bfd\u9bc8\u9bc0\u9d51\u9d5d\u9d60\u9ee0\u9f15\u9f2c\u5133\u56a5\u58de\u58df\u58e2\u5bf5\u9f90\u5eec\u61f2\u61f7\u61f6\u61f5\u6500\u650f\u66e0\u66dd\u6ae5\u6add\u6ada\u6ad3\u701b\u701f\u7028\u701a\u701d\u7015\u7018\u7206\u720d\u7258\u72a2\u7378"],["c3a1","\u737a\u74bd\u74ca\u74e3\u7587\u7586\u765f\u7661\u77c7\u7919\u79b1\u7a6b\u7a69\u7c3e\u7c3f\u7c38\u7c3d\u7c37\u7c40\u7e6b\u7e6d\u7e79\u7e69\u7e6a\u7f85\u7e73\u7fb6\u7fb9\u7fb8\u81d8\u85e9\u85dd\u85ea\u85d5\u85e4\u85e5\u85f7\u87fb\u8805\u880d\u87f9\u87fe\u8960\u895f\u8956\u895e\u8b41\u8b5c\u8b58\u8b49\u8b5a\u8b4e\u8b4f\u8b46\u8b59\u8d08\u8d0a\u8e7c\u8e72\u8e87\u8e76\u8e6c\u8e7a\u8e74\u8f54\u8f4e\u8fad\u908a\u908b\u91b1\u91ae\u93e1\u93d1\u93df\u93c3\u93c8\u93dc\u93dd\u93d6\u93e2\u93cd\u93d8\u93e4\u93d7\u93e8\u95dc\u96b4\u96e3\u972a\u9727\u9761\u97dc\u97fb\u985e"],["c440","\u9858\u985b\u98bc\u9945\u9949\u9a16\u9a19\u9b0d\u9be8\u9be7\u9bd6\u9bdb\u9d89\u9d61\u9d72\u9d6a\u9d6c\u9e92\u9e97\u9e93\u9eb4\u52f8\u56a8\u56b7\u56b6\u56b4\u56bc\u58e4\u5b40\u5b43\u5b7d\u5bf6\u5dc9\u61f8\u61fa\u6518\u6514\u6519\u66e6\u6727\u6aec\u703e\u7030\u7032\u7210\u737b\u74cf\u7662\u7665\u7926\u792a\u792c\u792b\u7ac7\u7af6\u7c4c\u7c43\u7c4d\u7cef\u7cf0\u8fae\u7e7d\u7e7c"],["c4a1","\u7e82\u7f4c\u8000\u81da\u8266\u85fb\u85f9\u8611\u85fa\u8606\u860b\u8607\u860a\u8814\u8815\u8964\u89ba\u89f8\u8b70\u8b6c\u8b66\u8b6f\u8b5f\u8b6b\u8d0f\u8d0d\u8e89\u8e81\u8e85\u8e82\u91b4\u91cb\u9418\u9403\u93fd\u95e1\u9730\u98c4\u9952\u9951\u99a8\u9a2b\u9a30\u9a37\u9a35\u9c13\u9c0d\u9e79\u9eb5\u9ee8\u9f2f\u9f5f\u9f63\u9f61\u5137\u5138\u56c1\u56c0\u56c2\u5914\u5c6c\u5dcd\u61fc\u61fe\u651d\u651c\u6595\u66e9\u6afb\u6b04\u6afa\u6bb2\u704c\u721b\u72a7\u74d6\u74d4\u7669\u77d3\u7c50\u7e8f\u7e8c\u7fbc\u8617\u862d\u861a\u8823\u8822\u8821\u881f\u896a\u896c\u89bd\u8b74"],["c540","\u8b77\u8b7d\u8d13\u8e8a\u8e8d\u8e8b\u8f5f\u8faf\u91ba\u942e\u9433\u9435\u943a\u9438\u9432\u942b\u95e2\u9738\u9739\u9732\u97ff\u9867\u9865\u9957\u9a45\u9a43\u9a40\u9a3e\u9acf\u9b54\u9b51\u9c2d\u9c25\u9daf\u9db4\u9dc2\u9db8\u9e9d\u9eef\u9f19\u9f5c\u9f66\u9f67\u513c\u513b\u56c8\u56ca\u56c9\u5b7f\u5dd4\u5dd2\u5f4e\u61ff\u6524\u6b0a\u6b61\u7051\u7058\u7380\u74e4\u758a\u766e\u766c"],["c5a1","\u79b3\u7c60\u7c5f\u807e\u807d\u81df\u8972\u896f\u89fc\u8b80\u8d16\u8d17\u8e91\u8e93\u8f61\u9148\u9444\u9451\u9452\u973d\u973e\u97c3\u97c1\u986b\u9955\u9a55\u9a4d\u9ad2\u9b1a\u9c49\u9c31\u9c3e\u9c3b\u9dd3\u9dd7\u9f34\u9f6c\u9f6a\u9f94\u56cc\u5dd6\u6200\u6523\u652b\u652a\u66ec\u6b10\u74da\u7aca\u7c64\u7c63\u7c65\u7e93\u7e96\u7e94\u81e2\u8638\u863f\u8831\u8b8a\u9090\u908f\u9463\u9460\u9464\u9768\u986f\u995c\u9a5a\u9a5b\u9a57\u9ad3\u9ad4\u9ad1\u9c54\u9c57\u9c56\u9de5\u9e9f\u9ef4\u56d1\u58e9\u652c\u705e\u7671\u7672\u77d7\u7f50\u7f88\u8836\u8839\u8862\u8b93\u8b92"],["c640","\u8b96\u8277\u8d1b\u91c0\u946a\u9742\u9748\u9744\u97c6\u9870\u9a5f\u9b22\u9b58\u9c5f\u9df9\u9dfa\u9e7c\u9e7d\u9f07\u9f77\u9f72\u5ef3\u6b16\u7063\u7c6c\u7c6e\u883b\u89c0\u8ea1\u91c1\u9472\u9470\u9871\u995e\u9ad6\u9b23\u9ecc\u7064\u77da\u8b9a\u9477\u97c9\u9a62\u9a65\u7e9c\u8b9c\u8eaa\u91c5\u947d\u947e\u947c\u9c77\u9c78\u9ef7\u8c54\u947f\u9e1a\u7228\u9a6a\u9b31\u9e1b\u9e1e\u7c72"],["c940","\u4e42\u4e5c\u51f5\u531a\u5382\u4e07\u4e0c\u4e47\u4e8d\u56d7\ufa0c\u5c6e\u5f73\u4e0f\u5187\u4e0e\u4e2e\u4e93\u4ec2\u4ec9\u4ec8\u5198\u52fc\u536c\u53b9\u5720\u5903\u592c\u5c10\u5dff\u65e1\u6bb3\u6bcc\u6c14\u723f\u4e31\u4e3c\u4ee8\u4edc\u4ee9\u4ee1\u4edd\u4eda\u520c\u531c\u534c\u5722\u5723\u5917\u592f\u5b81\u5b84\u5c12\u5c3b\u5c74\u5c73\u5e04\u5e80\u5e82\u5fc9\u6209\u6250\u6c15"],["c9a1","\u6c36\u6c43\u6c3f\u6c3b\u72ae\u72b0\u738a\u79b8\u808a\u961e\u4f0e\u4f18\u4f2c\u4ef5\u4f14\u4ef1\u4f00\u4ef7\u4f08\u4f1d\u4f02\u4f05\u4f22\u4f13\u4f04\u4ef4\u4f12\u51b1\u5213\u5209\u5210\u52a6\u5322\u531f\u534d\u538a\u5407\u56e1\u56df\u572e\u572a\u5734\u593c\u5980\u597c\u5985\u597b\u597e\u5977\u597f\u5b56\u5c15\u5c25\u5c7c\u5c7a\u5c7b\u5c7e\u5ddf\u5e75\u5e84\u5f02\u5f1a\u5f74\u5fd5\u5fd4\u5fcf\u625c\u625e\u6264\u6261\u6266\u6262\u6259\u6260\u625a\u6265\u65ef\u65ee\u673e\u6739\u6738\u673b\u673a\u673f\u673c\u6733\u6c18\u6c46\u6c52\u6c5c\u6c4f\u6c4a\u6c54\u6c4b"],["ca40","\u6c4c\u7071\u725e\u72b4\u72b5\u738e\u752a\u767f\u7a75\u7f51\u8278\u827c\u8280\u827d\u827f\u864d\u897e\u9099\u9097\u9098\u909b\u9094\u9622\u9624\u9620\u9623\u4f56\u4f3b\u4f62\u4f49\u4f53\u4f64\u4f3e\u4f67\u4f52\u4f5f\u4f41\u4f58\u4f2d\u4f33\u4f3f\u4f61\u518f\u51b9\u521c\u521e\u5221\u52ad\u52ae\u5309\u5363\u5372\u538e\u538f\u5430\u5437\u542a\u5454\u5445\u5419\u541c\u5425\u5418"],["caa1","\u543d\u544f\u5441\u5428\u5424\u5447\u56ee\u56e7\u56e5\u5741\u5745\u574c\u5749\u574b\u5752\u5906\u5940\u59a6\u5998\u59a0\u5997\u598e\u59a2\u5990\u598f\u59a7\u59a1\u5b8e\u5b92\u5c28\u5c2a\u5c8d\u5c8f\u5c88\u5c8b\u5c89\u5c92\u5c8a\u5c86\u5c93\u5c95\u5de0\u5e0a\u5e0e\u5e8b\u5e89\u5e8c\u5e88\u5e8d\u5f05\u5f1d\u5f78\u5f76\u5fd2\u5fd1\u5fd0\u5fed\u5fe8\u5fee\u5ff3\u5fe1\u5fe4\u5fe3\u5ffa\u5fef\u5ff7\u5ffb\u6000\u5ff4\u623a\u6283\u628c\u628e\u628f\u6294\u6287\u6271\u627b\u627a\u6270\u6281\u6288\u6277\u627d\u6272\u6274\u6537\u65f0\u65f4\u65f3\u65f2\u65f5\u6745\u6747"],["cb40","\u6759\u6755\u674c\u6748\u675d\u674d\u675a\u674b\u6bd0\u6c19\u6c1a\u6c78\u6c67\u6c6b\u6c84\u6c8b\u6c8f\u6c71\u6c6f\u6c69\u6c9a\u6c6d\u6c87\u6c95\u6c9c\u6c66\u6c73\u6c65\u6c7b\u6c8e\u7074\u707a\u7263\u72bf\u72bd\u72c3\u72c6\u72c1\u72ba\u72c5\u7395\u7397\u7393\u7394\u7392\u753a\u7539\u7594\u7595\u7681\u793d\u8034\u8095\u8099\u8090\u8092\u809c\u8290\u828f\u8285\u828e\u8291\u8293"],["cba1","\u828a\u8283\u8284\u8c78\u8fc9\u8fbf\u909f\u90a1\u90a5\u909e\u90a7\u90a0\u9630\u9628\u962f\u962d\u4e33\u4f98\u4f7c\u4f85\u4f7d\u4f80\u4f87\u4f76\u4f74\u4f89\u4f84\u4f77\u4f4c\u4f97\u4f6a\u4f9a\u4f79\u4f81\u4f78\u4f90\u4f9c\u4f94\u4f9e\u4f92\u4f82\u4f95\u4f6b\u4f6e\u519e\u51bc\u51be\u5235\u5232\u5233\u5246\u5231\u52bc\u530a\u530b\u533c\u5392\u5394\u5487\u547f\u5481\u5491\u5482\u5488\u546b\u547a\u547e\u5465\u546c\u5474\u5466\u548d\u546f\u5461\u5460\u5498\u5463\u5467\u5464\u56f7\u56f9\u576f\u5772\u576d\u576b\u5771\u5770\u5776\u5780\u5775\u577b\u5773\u5774\u5762"],["cc40","\u5768\u577d\u590c\u5945\u59b5\u59ba\u59cf\u59ce\u59b2\u59cc\u59c1\u59b6\u59bc\u59c3\u59d6\u59b1\u59bd\u59c0\u59c8\u59b4\u59c7\u5b62\u5b65\u5b93\u5b95\u5c44\u5c47\u5cae\u5ca4\u5ca0\u5cb5\u5caf\u5ca8\u5cac\u5c9f\u5ca3\u5cad\u5ca2\u5caa\u5ca7\u5c9d\u5ca5\u5cb6\u5cb0\u5ca6\u5e17\u5e14\u5e19\u5f28\u5f22\u5f23\u5f24\u5f54\u5f82\u5f7e\u5f7d\u5fde\u5fe5\u602d\u6026\u6019\u6032\u600b"],["cca1","\u6034\u600a\u6017\u6033\u601a\u601e\u602c\u6022\u600d\u6010\u602e\u6013\u6011\u600c\u6009\u601c\u6214\u623d\u62ad\u62b4\u62d1\u62be\u62aa\u62b6\u62ca\u62ae\u62b3\u62af\u62bb\u62a9\u62b0\u62b8\u653d\u65a8\u65bb\u6609\u65fc\u6604\u6612\u6608\u65fb\u6603\u660b\u660d\u6605\u65fd\u6611\u6610\u66f6\u670a\u6785\u676c\u678e\u6792\u6776\u677b\u6798\u6786\u6784\u6774\u678d\u678c\u677a\u679f\u6791\u6799\u6783\u677d\u6781\u6778\u6779\u6794\u6b25\u6b80\u6b7e\u6bde\u6c1d\u6c93\u6cec\u6ceb\u6cee\u6cd9\u6cb6\u6cd4\u6cad\u6ce7\u6cb7\u6cd0\u6cc2\u6cba\u6cc3\u6cc6\u6ced\u6cf2"],["cd40","\u6cd2\u6cdd\u6cb4\u6c8a\u6c9d\u6c80\u6cde\u6cc0\u6d30\u6ccd\u6cc7\u6cb0\u6cf9\u6ccf\u6ce9\u6cd1\u7094\u7098\u7085\u7093\u7086\u7084\u7091\u7096\u7082\u709a\u7083\u726a\u72d6\u72cb\u72d8\u72c9\u72dc\u72d2\u72d4\u72da\u72cc\u72d1\u73a4\u73a1\u73ad\u73a6\u73a2\u73a0\u73ac\u739d\u74dd\u74e8\u753f\u7540\u753e\u758c\u7598\u76af\u76f3\u76f1\u76f0\u76f5\u77f8\u77fc\u77f9\u77fb\u77fa"],["cda1","\u77f7\u7942\u793f\u79c5\u7a78\u7a7b\u7afb\u7c75\u7cfd\u8035\u808f\u80ae\u80a3\u80b8\u80b5\u80ad\u8220\u82a0\u82c0\u82ab\u829a\u8298\u829b\u82b5\u82a7\u82ae\u82bc\u829e\u82ba\u82b4\u82a8\u82a1\u82a9\u82c2\u82a4\u82c3\u82b6\u82a2\u8670\u866f\u866d\u866e\u8c56\u8fd2\u8fcb\u8fd3\u8fcd\u8fd6\u8fd5\u8fd7\u90b2\u90b4\u90af\u90b3\u90b0\u9639\u963d\u963c\u963a\u9643\u4fcd\u4fc5\u4fd3\u4fb2\u4fc9\u4fcb\u4fc1\u4fd4\u4fdc\u4fd9\u4fbb\u4fb3\u4fdb\u4fc7\u4fd6\u4fba\u4fc0\u4fb9\u4fec\u5244\u5249\u52c0\u52c2\u533d\u537c\u5397\u5396\u5399\u5398\u54ba\u54a1\u54ad\u54a5\u54cf"],["ce40","\u54c3\u830d\u54b7\u54ae\u54d6\u54b6\u54c5\u54c6\u54a0\u5470\u54bc\u54a2\u54be\u5472\u54de\u54b0\u57b5\u579e\u579f\u57a4\u578c\u5797\u579d\u579b\u5794\u5798\u578f\u5799\u57a5\u579a\u5795\u58f4\u590d\u5953\u59e1\u59de\u59ee\u5a00\u59f1\u59dd\u59fa\u59fd\u59fc\u59f6\u59e4\u59f2\u59f7\u59db\u59e9\u59f3\u59f5\u59e0\u59fe\u59f4\u59ed\u5ba8\u5c4c\u5cd0\u5cd8\u5ccc\u5cd7\u5ccb\u5cdb"],["cea1","\u5cde\u5cda\u5cc9\u5cc7\u5cca\u5cd6\u5cd3\u5cd4\u5ccf\u5cc8\u5cc6\u5cce\u5cdf\u5cf8\u5df9\u5e21\u5e22\u5e23\u5e20\u5e24\u5eb0\u5ea4\u5ea2\u5e9b\u5ea3\u5ea5\u5f07\u5f2e\u5f56\u5f86\u6037\u6039\u6054\u6072\u605e\u6045\u6053\u6047\u6049\u605b\u604c\u6040\u6042\u605f\u6024\u6044\u6058\u6066\u606e\u6242\u6243\u62cf\u630d\u630b\u62f5\u630e\u6303\u62eb\u62f9\u630f\u630c\u62f8\u62f6\u6300\u6313\u6314\u62fa\u6315\u62fb\u62f0\u6541\u6543\u65aa\u65bf\u6636\u6621\u6632\u6635\u661c\u6626\u6622\u6633\u662b\u663a\u661d\u6634\u6639\u662e\u670f\u6710\u67c1\u67f2\u67c8\u67ba"],["cf40","\u67dc\u67bb\u67f8\u67d8\u67c0\u67b7\u67c5\u67eb\u67e4\u67df\u67b5\u67cd\u67b3\u67f7\u67f6\u67ee\u67e3\u67c2\u67b9\u67ce\u67e7\u67f0\u67b2\u67fc\u67c6\u67ed\u67cc\u67ae\u67e6\u67db\u67fa\u67c9\u67ca\u67c3\u67ea\u67cb\u6b28\u6b82\u6b84\u6bb6\u6bd6\u6bd8\u6be0\u6c20\u6c21\u6d28\u6d34\u6d2d\u6d1f\u6d3c\u6d3f\u6d12\u6d0a\u6cda\u6d33\u6d04\u6d19\u6d3a\u6d1a\u6d11\u6d00\u6d1d\u6d42"],["cfa1","\u6d01\u6d18\u6d37\u6d03\u6d0f\u6d40\u6d07\u6d20\u6d2c\u6d08\u6d22\u6d09\u6d10\u70b7\u709f\u70be\u70b1\u70b0\u70a1\u70b4\u70b5\u70a9\u7241\u7249\u724a\u726c\u7270\u7273\u726e\u72ca\u72e4\u72e8\u72eb\u72df\u72ea\u72e6\u72e3\u7385\u73cc\u73c2\u73c8\u73c5\u73b9\u73b6\u73b5\u73b4\u73eb\u73bf\u73c7\u73be\u73c3\u73c6\u73b8\u73cb\u74ec\u74ee\u752e\u7547\u7548\u75a7\u75aa\u7679\u76c4\u7708\u7703\u7704\u7705\u770a\u76f7\u76fb\u76fa\u77e7\u77e8\u7806\u7811\u7812\u7805\u7810\u780f\u780e\u7809\u7803\u7813\u794a\u794c\u794b\u7945\u7944\u79d5\u79cd\u79cf\u79d6\u79ce\u7a80"],["d040","\u7a7e\u7ad1\u7b00\u7b01\u7c7a\u7c78\u7c79\u7c7f\u7c80\u7c81\u7d03\u7d08\u7d01\u7f58\u7f91\u7f8d\u7fbe\u8007\u800e\u800f\u8014\u8037\u80d8\u80c7\u80e0\u80d1\u80c8\u80c2\u80d0\u80c5\u80e3\u80d9\u80dc\u80ca\u80d5\u80c9\u80cf\u80d7\u80e6\u80cd\u81ff\u8221\u8294\u82d9\u82fe\u82f9\u8307\u82e8\u8300\u82d5\u833a\u82eb\u82d6\u82f4\u82ec\u82e1\u82f2\u82f5\u830c\u82fb\u82f6\u82f0\u82ea"],["d0a1","\u82e4\u82e0\u82fa\u82f3\u82ed\u8677\u8674\u867c\u8673\u8841\u884e\u8867\u886a\u8869\u89d3\u8a04\u8a07\u8d72\u8fe3\u8fe1\u8fee\u8fe0\u90f1\u90bd\u90bf\u90d5\u90c5\u90be\u90c7\u90cb\u90c8\u91d4\u91d3\u9654\u964f\u9651\u9653\u964a\u964e\u501e\u5005\u5007\u5013\u5022\u5030\u501b\u4ff5\u4ff4\u5033\u5037\u502c\u4ff6\u4ff7\u5017\u501c\u5020\u5027\u5035\u502f\u5031\u500e\u515a\u5194\u5193\u51ca\u51c4\u51c5\u51c8\u51ce\u5261\u525a\u5252\u525e\u525f\u5255\u5262\u52cd\u530e\u539e\u5526\u54e2\u5517\u5512\u54e7\u54f3\u54e4\u551a\u54ff\u5504\u5508\u54eb\u5511\u5505\u54f1"],["d140","\u550a\u54fb\u54f7\u54f8\u54e0\u550e\u5503\u550b\u5701\u5702\u57cc\u5832\u57d5\u57d2\u57ba\u57c6\u57bd\u57bc\u57b8\u57b6\u57bf\u57c7\u57d0\u57b9\u57c1\u590e\u594a\u5a19\u5a16\u5a2d\u5a2e\u5a15\u5a0f\u5a17\u5a0a\u5a1e\u5a33\u5b6c\u5ba7\u5bad\u5bac\u5c03\u5c56\u5c54\u5cec\u5cff\u5cee\u5cf1\u5cf7\u5d00\u5cf9\u5e29\u5e28\u5ea8\u5eae\u5eaa\u5eac\u5f33\u5f30\u5f67\u605d\u605a\u6067"],["d1a1","\u6041\u60a2\u6088\u6080\u6092\u6081\u609d\u6083\u6095\u609b\u6097\u6087\u609c\u608e\u6219\u6246\u62f2\u6310\u6356\u632c\u6344\u6345\u6336\u6343\u63e4\u6339\u634b\u634a\u633c\u6329\u6341\u6334\u6358\u6354\u6359\u632d\u6347\u6333\u635a\u6351\u6338\u6357\u6340\u6348\u654a\u6546\u65c6\u65c3\u65c4\u65c2\u664a\u665f\u6647\u6651\u6712\u6713\u681f\u681a\u6849\u6832\u6833\u683b\u684b\u684f\u6816\u6831\u681c\u6835\u682b\u682d\u682f\u684e\u6844\u6834\u681d\u6812\u6814\u6826\u6828\u682e\u684d\u683a\u6825\u6820\u6b2c\u6b2f\u6b2d\u6b31\u6b34\u6b6d\u8082\u6b88\u6be6\u6be4"],["d240","\u6be8\u6be3\u6be2\u6be7\u6c25\u6d7a\u6d63\u6d64\u6d76\u6d0d\u6d61\u6d92\u6d58\u6d62\u6d6d\u6d6f\u6d91\u6d8d\u6def\u6d7f\u6d86\u6d5e\u6d67\u6d60\u6d97\u6d70\u6d7c\u6d5f\u6d82\u6d98\u6d2f\u6d68\u6d8b\u6d7e\u6d80\u6d84\u6d16\u6d83\u6d7b\u6d7d\u6d75\u6d90\u70dc\u70d3\u70d1\u70dd\u70cb\u7f39\u70e2\u70d7\u70d2\u70de\u70e0\u70d4\u70cd\u70c5\u70c6\u70c7\u70da\u70ce\u70e1\u7242\u7278"],["d2a1","\u7277\u7276\u7300\u72fa\u72f4\u72fe\u72f6\u72f3\u72fb\u7301\u73d3\u73d9\u73e5\u73d6\u73bc\u73e7\u73e3\u73e9\u73dc\u73d2\u73db\u73d4\u73dd\u73da\u73d7\u73d8\u73e8\u74de\u74df\u74f4\u74f5\u7521\u755b\u755f\u75b0\u75c1\u75bb\u75c4\u75c0\u75bf\u75b6\u75ba\u768a\u76c9\u771d\u771b\u7710\u7713\u7712\u7723\u7711\u7715\u7719\u771a\u7722\u7727\u7823\u782c\u7822\u7835\u782f\u7828\u782e\u782b\u7821\u7829\u7833\u782a\u7831\u7954\u795b\u794f\u795c\u7953\u7952\u7951\u79eb\u79ec\u79e0\u79ee\u79ed\u79ea\u79dc\u79de\u79dd\u7a86\u7a89\u7a85\u7a8b\u7a8c\u7a8a\u7a87\u7ad8\u7b10"],["d340","\u7b04\u7b13\u7b05\u7b0f\u7b08\u7b0a\u7b0e\u7b09\u7b12\u7c84\u7c91\u7c8a\u7c8c\u7c88\u7c8d\u7c85\u7d1e\u7d1d\u7d11\u7d0e\u7d18\u7d16\u7d13\u7d1f\u7d12\u7d0f\u7d0c\u7f5c\u7f61\u7f5e\u7f60\u7f5d\u7f5b\u7f96\u7f92\u7fc3\u7fc2\u7fc0\u8016\u803e\u8039\u80fa\u80f2\u80f9\u80f5\u8101\u80fb\u8100\u8201\u822f\u8225\u8333\u832d\u8344\u8319\u8351\u8325\u8356\u833f\u8341\u8326\u831c\u8322"],["d3a1","\u8342\u834e\u831b\u832a\u8308\u833c\u834d\u8316\u8324\u8320\u8337\u832f\u8329\u8347\u8345\u834c\u8353\u831e\u832c\u834b\u8327\u8348\u8653\u8652\u86a2\u86a8\u8696\u868d\u8691\u869e\u8687\u8697\u8686\u868b\u869a\u8685\u86a5\u8699\u86a1\u86a7\u8695\u8698\u868e\u869d\u8690\u8694\u8843\u8844\u886d\u8875\u8876\u8872\u8880\u8871\u887f\u886f\u8883\u887e\u8874\u887c\u8a12\u8c47\u8c57\u8c7b\u8ca4\u8ca3\u8d76\u8d78\u8db5\u8db7\u8db6\u8ed1\u8ed3\u8ffe\u8ff5\u9002\u8fff\u8ffb\u9004\u8ffc\u8ff6\u90d6\u90e0\u90d9\u90da\u90e3\u90df\u90e5\u90d8\u90db\u90d7\u90dc\u90e4\u9150"],["d440","\u914e\u914f\u91d5\u91e2\u91da\u965c\u965f\u96bc\u98e3\u9adf\u9b2f\u4e7f\u5070\u506a\u5061\u505e\u5060\u5053\u504b\u505d\u5072\u5048\u504d\u5041\u505b\u504a\u5062\u5015\u5045\u505f\u5069\u506b\u5063\u5064\u5046\u5040\u506e\u5073\u5057\u5051\u51d0\u526b\u526d\u526c\u526e\u52d6\u52d3\u532d\u539c\u5575\u5576\u553c\u554d\u5550\u5534\u552a\u5551\u5562\u5536\u5535\u5530\u5552\u5545"],["d4a1","\u550c\u5532\u5565\u554e\u5539\u5548\u552d\u553b\u5540\u554b\u570a\u5707\u57fb\u5814\u57e2\u57f6\u57dc\u57f4\u5800\u57ed\u57fd\u5808\u57f8\u580b\u57f3\u57cf\u5807\u57ee\u57e3\u57f2\u57e5\u57ec\u57e1\u580e\u57fc\u5810\u57e7\u5801\u580c\u57f1\u57e9\u57f0\u580d\u5804\u595c\u5a60\u5a58\u5a55\u5a67\u5a5e\u5a38\u5a35\u5a6d\u5a50\u5a5f\u5a65\u5a6c\u5a53\u5a64\u5a57\u5a43\u5a5d\u5a52\u5a44\u5a5b\u5a48\u5a8e\u5a3e\u5a4d\u5a39\u5a4c\u5a70\u5a69\u5a47\u5a51\u5a56\u5a42\u5a5c\u5b72\u5b6e\u5bc1\u5bc0\u5c59\u5d1e\u5d0b\u5d1d\u5d1a\u5d20\u5d0c\u5d28\u5d0d\u5d26\u5d25\u5d0f"],["d540","\u5d30\u5d12\u5d23\u5d1f\u5d2e\u5e3e\u5e34\u5eb1\u5eb4\u5eb9\u5eb2\u5eb3\u5f36\u5f38\u5f9b\u5f96\u5f9f\u608a\u6090\u6086\u60be\u60b0\u60ba\u60d3\u60d4\u60cf\u60e4\u60d9\u60dd\u60c8\u60b1\u60db\u60b7\u60ca\u60bf\u60c3\u60cd\u60c0\u6332\u6365\u638a\u6382\u637d\u63bd\u639e\u63ad\u639d\u6397\u63ab\u638e\u636f\u6387\u6390\u636e\u63af\u6375\u639c\u636d\u63ae\u637c\u63a4\u633b\u639f"],["d5a1","\u6378\u6385\u6381\u6391\u638d\u6370\u6553\u65cd\u6665\u6661\u665b\u6659\u665c\u6662\u6718\u6879\u6887\u6890\u689c\u686d\u686e\u68ae\u68ab\u6956\u686f\u68a3\u68ac\u68a9\u6875\u6874\u68b2\u688f\u6877\u6892\u687c\u686b\u6872\u68aa\u6880\u6871\u687e\u689b\u6896\u688b\u68a0\u6889\u68a4\u6878\u687b\u6891\u688c\u688a\u687d\u6b36\u6b33\u6b37\u6b38\u6b91\u6b8f\u6b8d\u6b8e\u6b8c\u6c2a\u6dc0\u6dab\u6db4\u6db3\u6e74\u6dac\u6de9\u6de2\u6db7\u6df6\u6dd4\u6e00\u6dc8\u6de0\u6ddf\u6dd6\u6dbe\u6de5\u6ddc\u6ddd\u6ddb\u6df4\u6dca\u6dbd\u6ded\u6df0\u6dba\u6dd5\u6dc2\u6dcf\u6dc9"],["d640","\u6dd0\u6df2\u6dd3\u6dfd\u6dd7\u6dcd\u6de3\u6dbb\u70fa\u710d\u70f7\u7117\u70f4\u710c\u70f0\u7104\u70f3\u7110\u70fc\u70ff\u7106\u7113\u7100\u70f8\u70f6\u710b\u7102\u710e\u727e\u727b\u727c\u727f\u731d\u7317\u7307\u7311\u7318\u730a\u7308\u72ff\u730f\u731e\u7388\u73f6\u73f8\u73f5\u7404\u7401\u73fd\u7407\u7400\u73fa\u73fc\u73ff\u740c\u740b\u73f4\u7408\u7564\u7563\u75ce\u75d2\u75cf"],["d6a1","\u75cb\u75cc\u75d1\u75d0\u768f\u7689\u76d3\u7739\u772f\u772d\u7731\u7732\u7734\u7733\u773d\u7725\u773b\u7735\u7848\u7852\u7849\u784d\u784a\u784c\u7826\u7845\u7850\u7964\u7967\u7969\u796a\u7963\u796b\u7961\u79bb\u79fa\u79f8\u79f6\u79f7\u7a8f\u7a94\u7a90\u7b35\u7b47\u7b34\u7b25\u7b30\u7b22\u7b24\u7b33\u7b18\u7b2a\u7b1d\u7b31\u7b2b\u7b2d\u7b2f\u7b32\u7b38\u7b1a\u7b23\u7c94\u7c98\u7c96\u7ca3\u7d35\u7d3d\u7d38\u7d36\u7d3a\u7d45\u7d2c\u7d29\u7d41\u7d47\u7d3e\u7d3f\u7d4a\u7d3b\u7d28\u7f63\u7f95\u7f9c\u7f9d\u7f9b\u7fca\u7fcb\u7fcd\u7fd0\u7fd1\u7fc7\u7fcf\u7fc9\u801f"],["d740","\u801e\u801b\u8047\u8043\u8048\u8118\u8125\u8119\u811b\u812d\u811f\u812c\u811e\u8121\u8115\u8127\u811d\u8122\u8211\u8238\u8233\u823a\u8234\u8232\u8274\u8390\u83a3\u83a8\u838d\u837a\u8373\u83a4\u8374\u838f\u8381\u8395\u8399\u8375\u8394\u83a9\u837d\u8383\u838c\u839d\u839b\u83aa\u838b\u837e\u83a5\u83af\u8388\u8397\u83b0\u837f\u83a6\u8387\u83ae\u8376\u839a\u8659\u8656\u86bf\u86b7"],["d7a1","\u86c2\u86c1\u86c5\u86ba\u86b0\u86c8\u86b9\u86b3\u86b8\u86cc\u86b4\u86bb\u86bc\u86c3\u86bd\u86be\u8852\u8889\u8895\u88a8\u88a2\u88aa\u889a\u8891\u88a1\u889f\u8898\u88a7\u8899\u889b\u8897\u88a4\u88ac\u888c\u8893\u888e\u8982\u89d6\u89d9\u89d5\u8a30\u8a27\u8a2c\u8a1e\u8c39\u8c3b\u8c5c\u8c5d\u8c7d\u8ca5\u8d7d\u8d7b\u8d79\u8dbc\u8dc2\u8db9\u8dbf\u8dc1\u8ed8\u8ede\u8edd\u8edc\u8ed7\u8ee0\u8ee1\u9024\u900b\u9011\u901c\u900c\u9021\u90ef\u90ea\u90f0\u90f4\u90f2\u90f3\u90d4\u90eb\u90ec\u90e9\u9156\u9158\u915a\u9153\u9155\u91ec\u91f4\u91f1\u91f3\u91f8\u91e4\u91f9\u91ea"],["d840","\u91eb\u91f7\u91e8\u91ee\u957a\u9586\u9588\u967c\u966d\u966b\u9671\u966f\u96bf\u976a\u9804\u98e5\u9997\u509b\u5095\u5094\u509e\u508b\u50a3\u5083\u508c\u508e\u509d\u5068\u509c\u5092\u5082\u5087\u515f\u51d4\u5312\u5311\u53a4\u53a7\u5591\u55a8\u55a5\u55ad\u5577\u5645\u55a2\u5593\u5588\u558f\u55b5\u5581\u55a3\u5592\u55a4\u557d\u558c\u55a6\u557f\u5595\u55a1\u558e\u570c\u5829\u5837"],["d8a1","\u5819\u581e\u5827\u5823\u5828\u57f5\u5848\u5825\u581c\u581b\u5833\u583f\u5836\u582e\u5839\u5838\u582d\u582c\u583b\u5961\u5aaf\u5a94\u5a9f\u5a7a\u5aa2\u5a9e\u5a78\u5aa6\u5a7c\u5aa5\u5aac\u5a95\u5aae\u5a37\u5a84\u5a8a\u5a97\u5a83\u5a8b\u5aa9\u5a7b\u5a7d\u5a8c\u5a9c\u5a8f\u5a93\u5a9d\u5bea\u5bcd\u5bcb\u5bd4\u5bd1\u5bca\u5bce\u5c0c\u5c30\u5d37\u5d43\u5d6b\u5d41\u5d4b\u5d3f\u5d35\u5d51\u5d4e\u5d55\u5d33\u5d3a\u5d52\u5d3d\u5d31\u5d59\u5d42\u5d39\u5d49\u5d38\u5d3c\u5d32\u5d36\u5d40\u5d45\u5e44\u5e41\u5f58\u5fa6\u5fa5\u5fab\u60c9\u60b9\u60cc\u60e2\u60ce\u60c4\u6114"],["d940","\u60f2\u610a\u6116\u6105\u60f5\u6113\u60f8\u60fc\u60fe\u60c1\u6103\u6118\u611d\u6110\u60ff\u6104\u610b\u624a\u6394\u63b1\u63b0\u63ce\u63e5\u63e8\u63ef\u63c3\u649d\u63f3\u63ca\u63e0\u63f6\u63d5\u63f2\u63f5\u6461\u63df\u63be\u63dd\u63dc\u63c4\u63d8\u63d3\u63c2\u63c7\u63cc\u63cb\u63c8\u63f0\u63d7\u63d9\u6532\u6567\u656a\u6564\u655c\u6568\u6565\u658c\u659d\u659e\u65ae\u65d0\u65d2"],["d9a1","\u667c\u666c\u667b\u6680\u6671\u6679\u666a\u6672\u6701\u690c\u68d3\u6904\u68dc\u692a\u68ec\u68ea\u68f1\u690f\u68d6\u68f7\u68eb\u68e4\u68f6\u6913\u6910\u68f3\u68e1\u6907\u68cc\u6908\u6970\u68b4\u6911\u68ef\u68c6\u6914\u68f8\u68d0\u68fd\u68fc\u68e8\u690b\u690a\u6917\u68ce\u68c8\u68dd\u68de\u68e6\u68f4\u68d1\u6906\u68d4\u68e9\u6915\u6925\u68c7\u6b39\u6b3b\u6b3f\u6b3c\u6b94\u6b97\u6b99\u6b95\u6bbd\u6bf0\u6bf2\u6bf3\u6c30\u6dfc\u6e46\u6e47\u6e1f\u6e49\u6e88\u6e3c\u6e3d\u6e45\u6e62\u6e2b\u6e3f\u6e41\u6e5d\u6e73\u6e1c\u6e33\u6e4b\u6e40\u6e51\u6e3b\u6e03\u6e2e\u6e5e"],["da40","\u6e68\u6e5c\u6e61\u6e31\u6e28\u6e60\u6e71\u6e6b\u6e39\u6e22\u6e30\u6e53\u6e65\u6e27\u6e78\u6e64\u6e77\u6e55\u6e79\u6e52\u6e66\u6e35\u6e36\u6e5a\u7120\u711e\u712f\u70fb\u712e\u7131\u7123\u7125\u7122\u7132\u711f\u7128\u713a\u711b\u724b\u725a\u7288\u7289\u7286\u7285\u728b\u7312\u730b\u7330\u7322\u7331\u7333\u7327\u7332\u732d\u7326\u7323\u7335\u730c\u742e\u742c\u7430\u742b\u7416"],["daa1","\u741a\u7421\u742d\u7431\u7424\u7423\u741d\u7429\u7420\u7432\u74fb\u752f\u756f\u756c\u75e7\u75da\u75e1\u75e6\u75dd\u75df\u75e4\u75d7\u7695\u7692\u76da\u7746\u7747\u7744\u774d\u7745\u774a\u774e\u774b\u774c\u77de\u77ec\u7860\u7864\u7865\u785c\u786d\u7871\u786a\u786e\u7870\u7869\u7868\u785e\u7862\u7974\u7973\u7972\u7970\u7a02\u7a0a\u7a03\u7a0c\u7a04\u7a99\u7ae6\u7ae4\u7b4a\u7b3b\u7b44\u7b48\u7b4c\u7b4e\u7b40\u7b58\u7b45\u7ca2\u7c9e\u7ca8\u7ca1\u7d58\u7d6f\u7d63\u7d53\u7d56\u7d67\u7d6a\u7d4f\u7d6d\u7d5c\u7d6b\u7d52\u7d54\u7d69\u7d51\u7d5f\u7d4e\u7f3e\u7f3f\u7f65"],["db40","\u7f66\u7fa2\u7fa0\u7fa1\u7fd7\u8051\u804f\u8050\u80fe\u80d4\u8143\u814a\u8152\u814f\u8147\u813d\u814d\u813a\u81e6\u81ee\u81f7\u81f8\u81f9\u8204\u823c\u823d\u823f\u8275\u833b\u83cf\u83f9\u8423\u83c0\u83e8\u8412\u83e7\u83e4\u83fc\u83f6\u8410\u83c6\u83c8\u83eb\u83e3\u83bf\u8401\u83dd\u83e5\u83d8\u83ff\u83e1\u83cb\u83ce\u83d6\u83f5\u83c9\u8409\u840f\u83de\u8411\u8406\u83c2\u83f3"],["dba1","\u83d5\u83fa\u83c7\u83d1\u83ea\u8413\u83c3\u83ec\u83ee\u83c4\u83fb\u83d7\u83e2\u841b\u83db\u83fe\u86d8\u86e2\u86e6\u86d3\u86e3\u86da\u86ea\u86dd\u86eb\u86dc\u86ec\u86e9\u86d7\u86e8\u86d1\u8848\u8856\u8855\u88ba\u88d7\u88b9\u88b8\u88c0\u88be\u88b6\u88bc\u88b7\u88bd\u88b2\u8901\u88c9\u8995\u8998\u8997\u89dd\u89da\u89db\u8a4e\u8a4d\u8a39\u8a59\u8a40\u8a57\u8a58\u8a44\u8a45\u8a52\u8a48\u8a51\u8a4a\u8a4c\u8a4f\u8c5f\u8c81\u8c80\u8cba\u8cbe\u8cb0\u8cb9\u8cb5\u8d84\u8d80\u8d89\u8dd8\u8dd3\u8dcd\u8dc7\u8dd6\u8ddc\u8dcf\u8dd5\u8dd9\u8dc8\u8dd7\u8dc5\u8eef\u8ef7\u8efa"],["dc40","\u8ef9\u8ee6\u8eee\u8ee5\u8ef5\u8ee7\u8ee8\u8ef6\u8eeb\u8ef1\u8eec\u8ef4\u8ee9\u902d\u9034\u902f\u9106\u912c\u9104\u90ff\u90fc\u9108\u90f9\u90fb\u9101\u9100\u9107\u9105\u9103\u9161\u9164\u915f\u9162\u9160\u9201\u920a\u9225\u9203\u921a\u9226\u920f\u920c\u9200\u9212\u91ff\u91fd\u9206\u9204\u9227\u9202\u921c\u9224\u9219\u9217\u9205\u9216\u957b\u958d\u958c\u9590\u9687\u967e\u9688"],["dca1","\u9689\u9683\u9680\u96c2\u96c8\u96c3\u96f1\u96f0\u976c\u9770\u976e\u9807\u98a9\u98eb\u9ce6\u9ef9\u4e83\u4e84\u4eb6\u50bd\u50bf\u50c6\u50ae\u50c4\u50ca\u50b4\u50c8\u50c2\u50b0\u50c1\u50ba\u50b1\u50cb\u50c9\u50b6\u50b8\u51d7\u527a\u5278\u527b\u527c\u55c3\u55db\u55cc\u55d0\u55cb\u55ca\u55dd\u55c0\u55d4\u55c4\u55e9\u55bf\u55d2\u558d\u55cf\u55d5\u55e2\u55d6\u55c8\u55f2\u55cd\u55d9\u55c2\u5714\u5853\u5868\u5864\u584f\u584d\u5849\u586f\u5855\u584e\u585d\u5859\u5865\u585b\u583d\u5863\u5871\u58fc\u5ac7\u5ac4\u5acb\u5aba\u5ab8\u5ab1\u5ab5\u5ab0\u5abf\u5ac8\u5abb\u5ac6"],["dd40","\u5ab7\u5ac0\u5aca\u5ab4\u5ab6\u5acd\u5ab9\u5a90\u5bd6\u5bd8\u5bd9\u5c1f\u5c33\u5d71\u5d63\u5d4a\u5d65\u5d72\u5d6c\u5d5e\u5d68\u5d67\u5d62\u5df0\u5e4f\u5e4e\u5e4a\u5e4d\u5e4b\u5ec5\u5ecc\u5ec6\u5ecb\u5ec7\u5f40\u5faf\u5fad\u60f7\u6149\u614a\u612b\u6145\u6136\u6132\u612e\u6146\u612f\u614f\u6129\u6140\u6220\u9168\u6223\u6225\u6224\u63c5\u63f1\u63eb\u6410\u6412\u6409\u6420\u6424"],["dda1","\u6433\u6443\u641f\u6415\u6418\u6439\u6437\u6422\u6423\u640c\u6426\u6430\u6428\u6441\u6435\u642f\u640a\u641a\u6440\u6425\u6427\u640b\u63e7\u641b\u642e\u6421\u640e\u656f\u6592\u65d3\u6686\u668c\u6695\u6690\u668b\u668a\u6699\u6694\u6678\u6720\u6966\u695f\u6938\u694e\u6962\u6971\u693f\u6945\u696a\u6939\u6942\u6957\u6959\u697a\u6948\u6949\u6935\u696c\u6933\u693d\u6965\u68f0\u6978\u6934\u6969\u6940\u696f\u6944\u6976\u6958\u6941\u6974\u694c\u693b\u694b\u6937\u695c\u694f\u6951\u6932\u6952\u692f\u697b\u693c\u6b46\u6b45\u6b43\u6b42\u6b48\u6b41\u6b9b\ufa0d\u6bfb\u6bfc"],["de40","\u6bf9\u6bf7\u6bf8\u6e9b\u6ed6\u6ec8\u6e8f\u6ec0\u6e9f\u6e93\u6e94\u6ea0\u6eb1\u6eb9\u6ec6\u6ed2\u6ebd\u6ec1\u6e9e\u6ec9\u6eb7\u6eb0\u6ecd\u6ea6\u6ecf\u6eb2\u6ebe\u6ec3\u6edc\u6ed8\u6e99\u6e92\u6e8e\u6e8d\u6ea4\u6ea1\u6ebf\u6eb3\u6ed0\u6eca\u6e97\u6eae\u6ea3\u7147\u7154\u7152\u7163\u7160\u7141\u715d\u7162\u7172\u7178\u716a\u7161\u7142\u7158\u7143\u714b\u7170\u715f\u7150\u7153"],["dea1","\u7144\u714d\u715a\u724f\u728d\u728c\u7291\u7290\u728e\u733c\u7342\u733b\u733a\u7340\u734a\u7349\u7444\u744a\u744b\u7452\u7451\u7457\u7440\u744f\u7450\u744e\u7442\u7446\u744d\u7454\u74e1\u74ff\u74fe\u74fd\u751d\u7579\u7577\u6983\u75ef\u760f\u7603\u75f7\u75fe\u75fc\u75f9\u75f8\u7610\u75fb\u75f6\u75ed\u75f5\u75fd\u7699\u76b5\u76dd\u7755\u775f\u7760\u7752\u7756\u775a\u7769\u7767\u7754\u7759\u776d\u77e0\u7887\u789a\u7894\u788f\u7884\u7895\u7885\u7886\u78a1\u7883\u7879\u7899\u7880\u7896\u787b\u797c\u7982\u797d\u7979\u7a11\u7a18\u7a19\u7a12\u7a17\u7a15\u7a22\u7a13"],["df40","\u7a1b\u7a10\u7aa3\u7aa2\u7a9e\u7aeb\u7b66\u7b64\u7b6d\u7b74\u7b69\u7b72\u7b65\u7b73\u7b71\u7b70\u7b61\u7b78\u7b76\u7b63\u7cb2\u7cb4\u7caf\u7d88\u7d86\u7d80\u7d8d\u7d7f\u7d85\u7d7a\u7d8e\u7d7b\u7d83\u7d7c\u7d8c\u7d94\u7d84\u7d7d\u7d92\u7f6d\u7f6b\u7f67\u7f68\u7f6c\u7fa6\u7fa5\u7fa7\u7fdb\u7fdc\u8021\u8164\u8160\u8177\u815c\u8169\u815b\u8162\u8172\u6721\u815e\u8176\u8167\u816f"],["dfa1","\u8144\u8161\u821d\u8249\u8244\u8240\u8242\u8245\u84f1\u843f\u8456\u8476\u8479\u848f\u848d\u8465\u8451\u8440\u8486\u8467\u8430\u844d\u847d\u845a\u8459\u8474\u8473\u845d\u8507\u845e\u8437\u843a\u8434\u847a\u8443\u8478\u8432\u8445\u8429\u83d9\u844b\u842f\u8442\u842d\u845f\u8470\u8439\u844e\u844c\u8452\u846f\u84c5\u848e\u843b\u8447\u8436\u8433\u8468\u847e\u8444\u842b\u8460\u8454\u846e\u8450\u870b\u8704\u86f7\u870c\u86fa\u86d6\u86f5\u874d\u86f8\u870e\u8709\u8701\u86f6\u870d\u8705\u88d6\u88cb\u88cd\u88ce\u88de\u88db\u88da\u88cc\u88d0\u8985\u899b\u89df\u89e5\u89e4"],["e040","\u89e1\u89e0\u89e2\u89dc\u89e6\u8a76\u8a86\u8a7f\u8a61\u8a3f\u8a77\u8a82\u8a84\u8a75\u8a83\u8a81\u8a74\u8a7a\u8c3c\u8c4b\u8c4a\u8c65\u8c64\u8c66\u8c86\u8c84\u8c85\u8ccc\u8d68\u8d69\u8d91\u8d8c\u8d8e\u8d8f\u8d8d\u8d93\u8d94\u8d90\u8d92\u8df0\u8de0\u8dec\u8df1\u8dee\u8dd0\u8de9\u8de3\u8de2\u8de7\u8df2\u8deb\u8df4\u8f06\u8eff\u8f01\u8f00\u8f05\u8f07\u8f08\u8f02\u8f0b\u9052\u903f"],["e0a1","\u9044\u9049\u903d\u9110\u910d\u910f\u9111\u9116\u9114\u910b\u910e\u916e\u916f\u9248\u9252\u9230\u923a\u9266\u9233\u9265\u925e\u9283\u922e\u924a\u9246\u926d\u926c\u924f\u9260\u9267\u926f\u9236\u9261\u9270\u9231\u9254\u9263\u9250\u9272\u924e\u9253\u924c\u9256\u9232\u959f\u959c\u959e\u959b\u9692\u9693\u9691\u9697\u96ce\u96fa\u96fd\u96f8\u96f5\u9773\u9777\u9778\u9772\u980f\u980d\u980e\u98ac\u98f6\u98f9\u99af\u99b2\u99b0\u99b5\u9aad\u9aab\u9b5b\u9cea\u9ced\u9ce7\u9e80\u9efd\u50e6\u50d4\u50d7\u50e8\u50f3\u50db\u50ea\u50dd\u50e4\u50d3\u50ec\u50f0\u50ef\u50e3\u50e0"],["e140","\u51d8\u5280\u5281\u52e9\u52eb\u5330\u53ac\u5627\u5615\u560c\u5612\u55fc\u560f\u561c\u5601\u5613\u5602\u55fa\u561d\u5604\u55ff\u55f9\u5889\u587c\u5890\u5898\u5886\u5881\u587f\u5874\u588b\u587a\u5887\u5891\u588e\u5876\u5882\u5888\u587b\u5894\u588f\u58fe\u596b\u5adc\u5aee\u5ae5\u5ad5\u5aea\u5ada\u5aed\u5aeb\u5af3\u5ae2\u5ae0\u5adb\u5aec\u5ade\u5add\u5ad9\u5ae8\u5adf\u5b77\u5be0"],["e1a1","\u5be3\u5c63\u5d82\u5d80\u5d7d\u5d86\u5d7a\u5d81\u5d77\u5d8a\u5d89\u5d88\u5d7e\u5d7c\u5d8d\u5d79\u5d7f\u5e58\u5e59\u5e53\u5ed8\u5ed1\u5ed7\u5ece\u5edc\u5ed5\u5ed9\u5ed2\u5ed4\u5f44\u5f43\u5f6f\u5fb6\u612c\u6128\u6141\u615e\u6171\u6173\u6152\u6153\u6172\u616c\u6180\u6174\u6154\u617a\u615b\u6165\u613b\u616a\u6161\u6156\u6229\u6227\u622b\u642b\u644d\u645b\u645d\u6474\u6476\u6472\u6473\u647d\u6475\u6466\u64a6\u644e\u6482\u645e\u645c\u644b\u6453\u6460\u6450\u647f\u643f\u646c\u646b\u6459\u6465\u6477\u6573\u65a0\u66a1\u66a0\u669f\u6705\u6704\u6722\u69b1\u69b6\u69c9"],["e240","\u69a0\u69ce\u6996\u69b0\u69ac\u69bc\u6991\u6999\u698e\u69a7\u698d\u69a9\u69be\u69af\u69bf\u69c4\u69bd\u69a4\u69d4\u69b9\u69ca\u699a\u69cf\u69b3\u6993\u69aa\u69a1\u699e\u69d9\u6997\u6990\u69c2\u69b5\u69a5\u69c6\u6b4a\u6b4d\u6b4b\u6b9e\u6b9f\u6ba0\u6bc3\u6bc4\u6bfe\u6ece\u6ef5\u6ef1\u6f03\u6f25\u6ef8\u6f37\u6efb\u6f2e\u6f09\u6f4e\u6f19\u6f1a\u6f27\u6f18\u6f3b\u6f12\u6eed\u6f0a"],["e2a1","\u6f36\u6f73\u6ef9\u6eee\u6f2d\u6f40\u6f30\u6f3c\u6f35\u6eeb\u6f07\u6f0e\u6f43\u6f05\u6efd\u6ef6\u6f39\u6f1c\u6efc\u6f3a\u6f1f\u6f0d\u6f1e\u6f08\u6f21\u7187\u7190\u7189\u7180\u7185\u7182\u718f\u717b\u7186\u7181\u7197\u7244\u7253\u7297\u7295\u7293\u7343\u734d\u7351\u734c\u7462\u7473\u7471\u7475\u7472\u7467\u746e\u7500\u7502\u7503\u757d\u7590\u7616\u7608\u760c\u7615\u7611\u760a\u7614\u76b8\u7781\u777c\u7785\u7782\u776e\u7780\u776f\u777e\u7783\u78b2\u78aa\u78b4\u78ad\u78a8\u787e\u78ab\u789e\u78a5\u78a0\u78ac\u78a2\u78a4\u7998\u798a\u798b\u7996\u7995\u7994\u7993"],["e340","\u7997\u7988\u7992\u7990\u7a2b\u7a4a\u7a30\u7a2f\u7a28\u7a26\u7aa8\u7aab\u7aac\u7aee\u7b88\u7b9c\u7b8a\u7b91\u7b90\u7b96\u7b8d\u7b8c\u7b9b\u7b8e\u7b85\u7b98\u5284\u7b99\u7ba4\u7b82\u7cbb\u7cbf\u7cbc\u7cba\u7da7\u7db7\u7dc2\u7da3\u7daa\u7dc1\u7dc0\u7dc5\u7d9d\u7dce\u7dc4\u7dc6\u7dcb\u7dcc\u7daf\u7db9\u7d96\u7dbc\u7d9f\u7da6\u7dae\u7da9\u7da1\u7dc9\u7f73\u7fe2\u7fe3\u7fe5\u7fde"],["e3a1","\u8024\u805d\u805c\u8189\u8186\u8183\u8187\u818d\u818c\u818b\u8215\u8497\u84a4\u84a1\u849f\u84ba\u84ce\u84c2\u84ac\u84ae\u84ab\u84b9\u84b4\u84c1\u84cd\u84aa\u849a\u84b1\u84d0\u849d\u84a7\u84bb\u84a2\u8494\u84c7\u84cc\u849b\u84a9\u84af\u84a8\u84d6\u8498\u84b6\u84cf\u84a0\u84d7\u84d4\u84d2\u84db\u84b0\u8491\u8661\u8733\u8723\u8728\u876b\u8740\u872e\u871e\u8721\u8719\u871b\u8743\u872c\u8741\u873e\u8746\u8720\u8732\u872a\u872d\u873c\u8712\u873a\u8731\u8735\u8742\u8726\u8727\u8738\u8724\u871a\u8730\u8711\u88f7\u88e7\u88f1\u88f2\u88fa\u88fe\u88ee\u88fc\u88f6\u88fb"],["e440","\u88f0\u88ec\u88eb\u899d\u89a1\u899f\u899e\u89e9\u89eb\u89e8\u8aab\u8a99\u8a8b\u8a92\u8a8f\u8a96\u8c3d\u8c68\u8c69\u8cd5\u8ccf\u8cd7\u8d96\u8e09\u8e02\u8dff\u8e0d\u8dfd\u8e0a\u8e03\u8e07\u8e06\u8e05\u8dfe\u8e00\u8e04\u8f10\u8f11\u8f0e\u8f0d\u9123\u911c\u9120\u9122\u911f\u911d\u911a\u9124\u9121\u911b\u917a\u9172\u9179\u9173\u92a5\u92a4\u9276\u929b\u927a\u92a0\u9294\u92aa\u928d"],["e4a1","\u92a6\u929a\u92ab\u9279\u9297\u927f\u92a3\u92ee\u928e\u9282\u9295\u92a2\u927d\u9288\u92a1\u928a\u9286\u928c\u9299\u92a7\u927e\u9287\u92a9\u929d\u928b\u922d\u969e\u96a1\u96ff\u9758\u977d\u977a\u977e\u9783\u9780\u9782\u977b\u9784\u9781\u977f\u97ce\u97cd\u9816\u98ad\u98ae\u9902\u9900\u9907\u999d\u999c\u99c3\u99b9\u99bb\u99ba\u99c2\u99bd\u99c7\u9ab1\u9ae3\u9ae7\u9b3e\u9b3f\u9b60\u9b61\u9b5f\u9cf1\u9cf2\u9cf5\u9ea7\u50ff\u5103\u5130\u50f8\u5106\u5107\u50f6\u50fe\u510b\u510c\u50fd\u510a\u528b\u528c\u52f1\u52ef\u5648\u5642\u564c\u5635\u5641\u564a\u5649\u5646\u5658"],["e540","\u565a\u5640\u5633\u563d\u562c\u563e\u5638\u562a\u563a\u571a\u58ab\u589d\u58b1\u58a0\u58a3\u58af\u58ac\u58a5\u58a1\u58ff\u5aff\u5af4\u5afd\u5af7\u5af6\u5b03\u5af8\u5b02\u5af9\u5b01\u5b07\u5b05\u5b0f\u5c67\u5d99\u5d97\u5d9f\u5d92\u5da2\u5d93\u5d95\u5da0\u5d9c\u5da1\u5d9a\u5d9e\u5e69\u5e5d\u5e60\u5e5c\u7df3\u5edb\u5ede\u5ee1\u5f49\u5fb2\u618b\u6183\u6179\u61b1\u61b0\u61a2\u6189"],["e5a1","\u619b\u6193\u61af\u61ad\u619f\u6192\u61aa\u61a1\u618d\u6166\u61b3\u622d\u646e\u6470\u6496\u64a0\u6485\u6497\u649c\u648f\u648b\u648a\u648c\u64a3\u649f\u6468\u64b1\u6498\u6576\u657a\u6579\u657b\u65b2\u65b3\u66b5\u66b0\u66a9\u66b2\u66b7\u66aa\u66af\u6a00\u6a06\u6a17\u69e5\u69f8\u6a15\u69f1\u69e4\u6a20\u69ff\u69ec\u69e2\u6a1b\u6a1d\u69fe\u6a27\u69f2\u69ee\u6a14\u69f7\u69e7\u6a40\u6a08\u69e6\u69fb\u6a0d\u69fc\u69eb\u6a09\u6a04\u6a18\u6a25\u6a0f\u69f6\u6a26\u6a07\u69f4\u6a16\u6b51\u6ba5\u6ba3\u6ba2\u6ba6\u6c01\u6c00\u6bff\u6c02\u6f41\u6f26\u6f7e\u6f87\u6fc6\u6f92"],["e640","\u6f8d\u6f89\u6f8c\u6f62\u6f4f\u6f85\u6f5a\u6f96\u6f76\u6f6c\u6f82\u6f55\u6f72\u6f52\u6f50\u6f57\u6f94\u6f93\u6f5d\u6f00\u6f61\u6f6b\u6f7d\u6f67\u6f90\u6f53\u6f8b\u6f69\u6f7f\u6f95\u6f63\u6f77\u6f6a\u6f7b\u71b2\u71af\u719b\u71b0\u71a0\u719a\u71a9\u71b5\u719d\u71a5\u719e\u71a4\u71a1\u71aa\u719c\u71a7\u71b3\u7298\u729a\u7358\u7352\u735e\u735f\u7360\u735d\u735b\u7361\u735a\u7359"],["e6a1","\u7362\u7487\u7489\u748a\u7486\u7481\u747d\u7485\u7488\u747c\u7479\u7508\u7507\u757e\u7625\u761e\u7619\u761d\u761c\u7623\u761a\u7628\u761b\u769c\u769d\u769e\u769b\u778d\u778f\u7789\u7788\u78cd\u78bb\u78cf\u78cc\u78d1\u78ce\u78d4\u78c8\u78c3\u78c4\u78c9\u799a\u79a1\u79a0\u799c\u79a2\u799b\u6b76\u7a39\u7ab2\u7ab4\u7ab3\u7bb7\u7bcb\u7bbe\u7bac\u7bce\u7baf\u7bb9\u7bca\u7bb5\u7cc5\u7cc8\u7ccc\u7ccb\u7df7\u7ddb\u7dea\u7de7\u7dd7\u7de1\u7e03\u7dfa\u7de6\u7df6\u7df1\u7df0\u7dee\u7ddf\u7f76\u7fac\u7fb0\u7fad\u7fed\u7feb\u7fea\u7fec\u7fe6\u7fe8\u8064\u8067\u81a3\u819f"],["e740","\u819e\u8195\u81a2\u8199\u8197\u8216\u824f\u8253\u8252\u8250\u824e\u8251\u8524\u853b\u850f\u8500\u8529\u850e\u8509\u850d\u851f\u850a\u8527\u851c\u84fb\u852b\u84fa\u8508\u850c\u84f4\u852a\u84f2\u8515\u84f7\u84eb\u84f3\u84fc\u8512\u84ea\u84e9\u8516\u84fe\u8528\u851d\u852e\u8502\u84fd\u851e\u84f6\u8531\u8526\u84e7\u84e8\u84f0\u84ef\u84f9\u8518\u8520\u8530\u850b\u8519\u852f\u8662"],["e7a1","\u8756\u8763\u8764\u8777\u87e1\u8773\u8758\u8754\u875b\u8752\u8761\u875a\u8751\u875e\u876d\u876a\u8750\u874e\u875f\u875d\u876f\u876c\u877a\u876e\u875c\u8765\u874f\u877b\u8775\u8762\u8767\u8769\u885a\u8905\u890c\u8914\u890b\u8917\u8918\u8919\u8906\u8916\u8911\u890e\u8909\u89a2\u89a4\u89a3\u89ed\u89f0\u89ec\u8acf\u8ac6\u8ab8\u8ad3\u8ad1\u8ad4\u8ad5\u8abb\u8ad7\u8abe\u8ac0\u8ac5\u8ad8\u8ac3\u8aba\u8abd\u8ad9\u8c3e\u8c4d\u8c8f\u8ce5\u8cdf\u8cd9\u8ce8\u8cda\u8cdd\u8ce7\u8da0\u8d9c\u8da1\u8d9b\u8e20\u8e23\u8e25\u8e24\u8e2e\u8e15\u8e1b\u8e16\u8e11\u8e19\u8e26\u8e27"],["e840","\u8e14\u8e12\u8e18\u8e13\u8e1c\u8e17\u8e1a\u8f2c\u8f24\u8f18\u8f1a\u8f20\u8f23\u8f16\u8f17\u9073\u9070\u906f\u9067\u906b\u912f\u912b\u9129\u912a\u9132\u9126\u912e\u9185\u9186\u918a\u9181\u9182\u9184\u9180\u92d0\u92c3\u92c4\u92c0\u92d9\u92b6\u92cf\u92f1\u92df\u92d8\u92e9\u92d7\u92dd\u92cc\u92ef\u92c2\u92e8\u92ca\u92c8\u92ce\u92e6\u92cd\u92d5\u92c9\u92e0\u92de\u92e7\u92d1\u92d3"],["e8a1","\u92b5\u92e1\u92c6\u92b4\u957c\u95ac\u95ab\u95ae\u95b0\u96a4\u96a2\u96d3\u9705\u9708\u9702\u975a\u978a\u978e\u9788\u97d0\u97cf\u981e\u981d\u9826\u9829\u9828\u9820\u981b\u9827\u98b2\u9908\u98fa\u9911\u9914\u9916\u9917\u9915\u99dc\u99cd\u99cf\u99d3\u99d4\u99ce\u99c9\u99d6\u99d8\u99cb\u99d7\u99cc\u9ab3\u9aec\u9aeb\u9af3\u9af2\u9af1\u9b46\u9b43\u9b67\u9b74\u9b71\u9b66\u9b76\u9b75\u9b70\u9b68\u9b64\u9b6c\u9cfc\u9cfa\u9cfd\u9cff\u9cf7\u9d07\u9d00\u9cf9\u9cfb\u9d08\u9d05\u9d04\u9e83\u9ed3\u9f0f\u9f10\u511c\u5113\u5117\u511a\u5111\u51de\u5334\u53e1\u5670\u5660\u566e"],["e940","\u5673\u5666\u5663\u566d\u5672\u565e\u5677\u571c\u571b\u58c8\u58bd\u58c9\u58bf\u58ba\u58c2\u58bc\u58c6\u5b17\u5b19\u5b1b\u5b21\u5b14\u5b13\u5b10\u5b16\u5b28\u5b1a\u5b20\u5b1e\u5bef\u5dac\u5db1\u5da9\u5da7\u5db5\u5db0\u5dae\u5daa\u5da8\u5db2\u5dad\u5daf\u5db4\u5e67\u5e68\u5e66\u5e6f\u5ee9\u5ee7\u5ee6\u5ee8\u5ee5\u5f4b\u5fbc\u619d\u61a8\u6196\u61c5\u61b4\u61c6\u61c1\u61cc\u61ba"],["e9a1","\u61bf\u61b8\u618c\u64d7\u64d6\u64d0\u64cf\u64c9\u64bd\u6489\u64c3\u64db\u64f3\u64d9\u6533\u657f\u657c\u65a2\u66c8\u66be\u66c0\u66ca\u66cb\u66cf\u66bd\u66bb\u66ba\u66cc\u6723\u6a34\u6a66\u6a49\u6a67\u6a32\u6a68\u6a3e\u6a5d\u6a6d\u6a76\u6a5b\u6a51\u6a28\u6a5a\u6a3b\u6a3f\u6a41\u6a6a\u6a64\u6a50\u6a4f\u6a54\u6a6f\u6a69\u6a60\u6a3c\u6a5e\u6a56\u6a55\u6a4d\u6a4e\u6a46\u6b55\u6b54\u6b56\u6ba7\u6baa\u6bab\u6bc8\u6bc7\u6c04\u6c03\u6c06\u6fad\u6fcb\u6fa3\u6fc7\u6fbc\u6fce\u6fc8\u6f5e\u6fc4\u6fbd\u6f9e\u6fca\u6fa8\u7004\u6fa5\u6fae\u6fba\u6fac\u6faa\u6fcf\u6fbf\u6fb8"],["ea40","\u6fa2\u6fc9\u6fab\u6fcd\u6faf\u6fb2\u6fb0\u71c5\u71c2\u71bf\u71b8\u71d6\u71c0\u71c1\u71cb\u71d4\u71ca\u71c7\u71cf\u71bd\u71d8\u71bc\u71c6\u71da\u71db\u729d\u729e\u7369\u7366\u7367\u736c\u7365\u736b\u736a\u747f\u749a\u74a0\u7494\u7492\u7495\u74a1\u750b\u7580\u762f\u762d\u7631\u763d\u7633\u763c\u7635\u7632\u7630\u76bb\u76e6\u779a\u779d\u77a1\u779c\u779b\u77a2\u77a3\u7795\u7799"],["eaa1","\u7797\u78dd\u78e9\u78e5\u78ea\u78de\u78e3\u78db\u78e1\u78e2\u78ed\u78df\u78e0\u79a4\u7a44\u7a48\u7a47\u7ab6\u7ab8\u7ab5\u7ab1\u7ab7\u7bde\u7be3\u7be7\u7bdd\u7bd5\u7be5\u7bda\u7be8\u7bf9\u7bd4\u7bea\u7be2\u7bdc\u7beb\u7bd8\u7bdf\u7cd2\u7cd4\u7cd7\u7cd0\u7cd1\u7e12\u7e21\u7e17\u7e0c\u7e1f\u7e20\u7e13\u7e0e\u7e1c\u7e15\u7e1a\u7e22\u7e0b\u7e0f\u7e16\u7e0d\u7e14\u7e25\u7e24\u7f43\u7f7b\u7f7c\u7f7a\u7fb1\u7fef\u802a\u8029\u806c\u81b1\u81a6\u81ae\u81b9\u81b5\u81ab\u81b0\u81ac\u81b4\u81b2\u81b7\u81a7\u81f2\u8255\u8256\u8257\u8556\u8545\u856b\u854d\u8553\u8561\u8558"],["eb40","\u8540\u8546\u8564\u8541\u8562\u8544\u8551\u8547\u8563\u853e\u855b\u8571\u854e\u856e\u8575\u8555\u8567\u8560\u858c\u8566\u855d\u8554\u8565\u856c\u8663\u8665\u8664\u879b\u878f\u8797\u8793\u8792\u8788\u8781\u8796\u8798\u8779\u8787\u87a3\u8785\u8790\u8791\u879d\u8784\u8794\u879c\u879a\u8789\u891e\u8926\u8930\u892d\u892e\u8927\u8931\u8922\u8929\u8923\u892f\u892c\u891f\u89f1\u8ae0"],["eba1","\u8ae2\u8af2\u8af4\u8af5\u8add\u8b14\u8ae4\u8adf\u8af0\u8ac8\u8ade\u8ae1\u8ae8\u8aff\u8aef\u8afb\u8c91\u8c92\u8c90\u8cf5\u8cee\u8cf1\u8cf0\u8cf3\u8d6c\u8d6e\u8da5\u8da7\u8e33\u8e3e\u8e38\u8e40\u8e45\u8e36\u8e3c\u8e3d\u8e41\u8e30\u8e3f\u8ebd\u8f36\u8f2e\u8f35\u8f32\u8f39\u8f37\u8f34\u9076\u9079\u907b\u9086\u90fa\u9133\u9135\u9136\u9193\u9190\u9191\u918d\u918f\u9327\u931e\u9308\u931f\u9306\u930f\u937a\u9338\u933c\u931b\u9323\u9312\u9301\u9346\u932d\u930e\u930d\u92cb\u931d\u92fa\u9325\u9313\u92f9\u92f7\u9334\u9302\u9324\u92ff\u9329\u9339\u9335\u932a\u9314\u930c"],["ec40","\u930b\u92fe\u9309\u9300\u92fb\u9316\u95bc\u95cd\u95be\u95b9\u95ba\u95b6\u95bf\u95b5\u95bd\u96a9\u96d4\u970b\u9712\u9710\u9799\u9797\u9794\u97f0\u97f8\u9835\u982f\u9832\u9924\u991f\u9927\u9929\u999e\u99ee\u99ec\u99e5\u99e4\u99f0\u99e3\u99ea\u99e9\u99e7\u9ab9\u9abf\u9ab4\u9abb\u9af6\u9afa\u9af9\u9af7\u9b33\u9b80\u9b85\u9b87\u9b7c\u9b7e\u9b7b\u9b82\u9b93\u9b92\u9b90\u9b7a\u9b95"],["eca1","\u9b7d\u9b88\u9d25\u9d17\u9d20\u9d1e\u9d14\u9d29\u9d1d\u9d18\u9d22\u9d10\u9d19\u9d1f\u9e88\u9e86\u9e87\u9eae\u9ead\u9ed5\u9ed6\u9efa\u9f12\u9f3d\u5126\u5125\u5122\u5124\u5120\u5129\u52f4\u5693\u568c\u568d\u5686\u5684\u5683\u567e\u5682\u567f\u5681\u58d6\u58d4\u58cf\u58d2\u5b2d\u5b25\u5b32\u5b23\u5b2c\u5b27\u5b26\u5b2f\u5b2e\u5b7b\u5bf1\u5bf2\u5db7\u5e6c\u5e6a\u5fbe\u5fbb\u61c3\u61b5\u61bc\u61e7\u61e0\u61e5\u61e4\u61e8\u61de\u64ef\u64e9\u64e3\u64eb\u64e4\u64e8\u6581\u6580\u65b6\u65da\u66d2\u6a8d\u6a96\u6a81\u6aa5\u6a89\u6a9f\u6a9b\u6aa1\u6a9e\u6a87\u6a93\u6a8e"],["ed40","\u6a95\u6a83\u6aa8\u6aa4\u6a91\u6a7f\u6aa6\u6a9a\u6a85\u6a8c\u6a92\u6b5b\u6bad\u6c09\u6fcc\u6fa9\u6ff4\u6fd4\u6fe3\u6fdc\u6fed\u6fe7\u6fe6\u6fde\u6ff2\u6fdd\u6fe2\u6fe8\u71e1\u71f1\u71e8\u71f2\u71e4\u71f0\u71e2\u7373\u736e\u736f\u7497\u74b2\u74ab\u7490\u74aa\u74ad\u74b1\u74a5\u74af\u7510\u7511\u7512\u750f\u7584\u7643\u7648\u7649\u7647\u76a4\u76e9\u77b5\u77ab\u77b2\u77b7\u77b6"],["eda1","\u77b4\u77b1\u77a8\u77f0\u78f3\u78fd\u7902\u78fb\u78fc\u78f2\u7905\u78f9\u78fe\u7904\u79ab\u79a8\u7a5c\u7a5b\u7a56\u7a58\u7a54\u7a5a\u7abe\u7ac0\u7ac1\u7c05\u7c0f\u7bf2\u7c00\u7bff\u7bfb\u7c0e\u7bf4\u7c0b\u7bf3\u7c02\u7c09\u7c03\u7c01\u7bf8\u7bfd\u7c06\u7bf0\u7bf1\u7c10\u7c0a\u7ce8\u7e2d\u7e3c\u7e42\u7e33\u9848\u7e38\u7e2a\u7e49\u7e40\u7e47\u7e29\u7e4c\u7e30\u7e3b\u7e36\u7e44\u7e3a\u7f45\u7f7f\u7f7e\u7f7d\u7ff4\u7ff2\u802c\u81bb\u81c4\u81cc\u81ca\u81c5\u81c7\u81bc\u81e9\u825b\u825a\u825c\u8583\u8580\u858f\u85a7\u8595\u85a0\u858b\u85a3\u857b\u85a4\u859a\u859e"],["ee40","\u8577\u857c\u8589\u85a1\u857a\u8578\u8557\u858e\u8596\u8586\u858d\u8599\u859d\u8581\u85a2\u8582\u8588\u8585\u8579\u8576\u8598\u8590\u859f\u8668\u87be\u87aa\u87ad\u87c5\u87b0\u87ac\u87b9\u87b5\u87bc\u87ae\u87c9\u87c3\u87c2\u87cc\u87b7\u87af\u87c4\u87ca\u87b4\u87b6\u87bf\u87b8\u87bd\u87de\u87b2\u8935\u8933\u893c\u893e\u8941\u8952\u8937\u8942\u89ad\u89af\u89ae\u89f2\u89f3\u8b1e"],["eea1","\u8b18\u8b16\u8b11\u8b05\u8b0b\u8b22\u8b0f\u8b12\u8b15\u8b07\u8b0d\u8b08\u8b06\u8b1c\u8b13\u8b1a\u8c4f\u8c70\u8c72\u8c71\u8c6f\u8c95\u8c94\u8cf9\u8d6f\u8e4e\u8e4d\u8e53\u8e50\u8e4c\u8e47\u8f43\u8f40\u9085\u907e\u9138\u919a\u91a2\u919b\u9199\u919f\u91a1\u919d\u91a0\u93a1\u9383\u93af\u9364\u9356\u9347\u937c\u9358\u935c\u9376\u9349\u9350\u9351\u9360\u936d\u938f\u934c\u936a\u9379\u9357\u9355\u9352\u934f\u9371\u9377\u937b\u9361\u935e\u9363\u9367\u9380\u934e\u9359\u95c7\u95c0\u95c9\u95c3\u95c5\u95b7\u96ae\u96b0\u96ac\u9720\u971f\u9718\u971d\u9719\u979a\u97a1\u979c"],["ef40","\u979e\u979d\u97d5\u97d4\u97f1\u9841\u9844\u984a\u9849\u9845\u9843\u9925\u992b\u992c\u992a\u9933\u9932\u992f\u992d\u9931\u9930\u9998\u99a3\u99a1\u9a02\u99fa\u99f4\u99f7\u99f9\u99f8\u99f6\u99fb\u99fd\u99fe\u99fc\u9a03\u9abe\u9afe\u9afd\u9b01\u9afc\u9b48\u9b9a\u9ba8\u9b9e\u9b9b\u9ba6\u9ba1\u9ba5\u9ba4\u9b86\u9ba2\u9ba0\u9baf\u9d33\u9d41\u9d67\u9d36\u9d2e\u9d2f\u9d31\u9d38\u9d30"],["efa1","\u9d45\u9d42\u9d43\u9d3e\u9d37\u9d40\u9d3d\u7ff5\u9d2d\u9e8a\u9e89\u9e8d\u9eb0\u9ec8\u9eda\u9efb\u9eff\u9f24\u9f23\u9f22\u9f54\u9fa0\u5131\u512d\u512e\u5698\u569c\u5697\u569a\u569d\u5699\u5970\u5b3c\u5c69\u5c6a\u5dc0\u5e6d\u5e6e\u61d8\u61df\u61ed\u61ee\u61f1\u61ea\u61f0\u61eb\u61d6\u61e9\u64ff\u6504\u64fd\u64f8\u6501\u6503\u64fc\u6594\u65db\u66da\u66db\u66d8\u6ac5\u6ab9\u6abd\u6ae1\u6ac6\u6aba\u6ab6\u6ab7\u6ac7\u6ab4\u6aad\u6b5e\u6bc9\u6c0b\u7007\u700c\u700d\u7001\u7005\u7014\u700e\u6fff\u7000\u6ffb\u7026\u6ffc\u6ff7\u700a\u7201\u71ff\u71f9\u7203\u71fd\u7376"],["f040","\u74b8\u74c0\u74b5\u74c1\u74be\u74b6\u74bb\u74c2\u7514\u7513\u765c\u7664\u7659\u7650\u7653\u7657\u765a\u76a6\u76bd\u76ec\u77c2\u77ba\u78ff\u790c\u7913\u7914\u7909\u7910\u7912\u7911\u79ad\u79ac\u7a5f\u7c1c\u7c29\u7c19\u7c20\u7c1f\u7c2d\u7c1d\u7c26\u7c28\u7c22\u7c25\u7c30\u7e5c\u7e50\u7e56\u7e63\u7e58\u7e62\u7e5f\u7e51\u7e60\u7e57\u7e53\u7fb5\u7fb3\u7ff7\u7ff8\u8075\u81d1\u81d2"],["f0a1","\u81d0\u825f\u825e\u85b4\u85c6\u85c0\u85c3\u85c2\u85b3\u85b5\u85bd\u85c7\u85c4\u85bf\u85cb\u85ce\u85c8\u85c5\u85b1\u85b6\u85d2\u8624\u85b8\u85b7\u85be\u8669\u87e7\u87e6\u87e2\u87db\u87eb\u87ea\u87e5\u87df\u87f3\u87e4\u87d4\u87dc\u87d3\u87ed\u87d8\u87e3\u87a4\u87d7\u87d9\u8801\u87f4\u87e8\u87dd\u8953\u894b\u894f\u894c\u8946\u8950\u8951\u8949\u8b2a\u8b27\u8b23\u8b33\u8b30\u8b35\u8b47\u8b2f\u8b3c\u8b3e\u8b31\u8b25\u8b37\u8b26\u8b36\u8b2e\u8b24\u8b3b\u8b3d\u8b3a\u8c42\u8c75\u8c99\u8c98\u8c97\u8cfe\u8d04\u8d02\u8d00\u8e5c\u8e62\u8e60\u8e57\u8e56\u8e5e\u8e65\u8e67"],["f140","\u8e5b\u8e5a\u8e61\u8e5d\u8e69\u8e54\u8f46\u8f47\u8f48\u8f4b\u9128\u913a\u913b\u913e\u91a8\u91a5\u91a7\u91af\u91aa\u93b5\u938c\u9392\u93b7\u939b\u939d\u9389\u93a7\u938e\u93aa\u939e\u93a6\u9395\u9388\u9399\u939f\u938d\u93b1\u9391\u93b2\u93a4\u93a8\u93b4\u93a3\u93a5\u95d2\u95d3\u95d1\u96b3\u96d7\u96da\u5dc2\u96df\u96d8\u96dd\u9723\u9722\u9725\u97ac\u97ae\u97a8\u97ab\u97a4\u97aa"],["f1a1","\u97a2\u97a5\u97d7\u97d9\u97d6\u97d8\u97fa\u9850\u9851\u9852\u98b8\u9941\u993c\u993a\u9a0f\u9a0b\u9a09\u9a0d\u9a04\u9a11\u9a0a\u9a05\u9a07\u9a06\u9ac0\u9adc\u9b08\u9b04\u9b05\u9b29\u9b35\u9b4a\u9b4c\u9b4b\u9bc7\u9bc6\u9bc3\u9bbf\u9bc1\u9bb5\u9bb8\u9bd3\u9bb6\u9bc4\u9bb9\u9bbd\u9d5c\u9d53\u9d4f\u9d4a\u9d5b\u9d4b\u9d59\u9d56\u9d4c\u9d57\u9d52\u9d54\u9d5f\u9d58\u9d5a\u9e8e\u9e8c\u9edf\u9f01\u9f00\u9f16\u9f25\u9f2b\u9f2a\u9f29\u9f28\u9f4c\u9f55\u5134\u5135\u5296\u52f7\u53b4\u56ab\u56ad\u56a6\u56a7\u56aa\u56ac\u58da\u58dd\u58db\u5912\u5b3d\u5b3e\u5b3f\u5dc3\u5e70"],["f240","\u5fbf\u61fb\u6507\u6510\u650d\u6509\u650c\u650e\u6584\u65de\u65dd\u66de\u6ae7\u6ae0\u6acc\u6ad1\u6ad9\u6acb\u6adf\u6adc\u6ad0\u6aeb\u6acf\u6acd\u6ade\u6b60\u6bb0\u6c0c\u7019\u7027\u7020\u7016\u702b\u7021\u7022\u7023\u7029\u7017\u7024\u701c\u702a\u720c\u720a\u7207\u7202\u7205\u72a5\u72a6\u72a4\u72a3\u72a1\u74cb\u74c5\u74b7\u74c3\u7516\u7660\u77c9\u77ca\u77c4\u77f1\u791d\u791b"],["f2a1","\u7921\u791c\u7917\u791e\u79b0\u7a67\u7a68\u7c33\u7c3c\u7c39\u7c2c\u7c3b\u7cec\u7cea\u7e76\u7e75\u7e78\u7e70\u7e77\u7e6f\u7e7a\u7e72\u7e74\u7e68\u7f4b\u7f4a\u7f83\u7f86\u7fb7\u7ffd\u7ffe\u8078\u81d7\u81d5\u8264\u8261\u8263\u85eb\u85f1\u85ed\u85d9\u85e1\u85e8\u85da\u85d7\u85ec\u85f2\u85f8\u85d8\u85df\u85e3\u85dc\u85d1\u85f0\u85e6\u85ef\u85de\u85e2\u8800\u87fa\u8803\u87f6\u87f7\u8809\u880c\u880b\u8806\u87fc\u8808\u87ff\u880a\u8802\u8962\u895a\u895b\u8957\u8961\u895c\u8958\u895d\u8959\u8988\u89b7\u89b6\u89f6\u8b50\u8b48\u8b4a\u8b40\u8b53\u8b56\u8b54\u8b4b\u8b55"],["f340","\u8b51\u8b42\u8b52\u8b57\u8c43\u8c77\u8c76\u8c9a\u8d06\u8d07\u8d09\u8dac\u8daa\u8dad\u8dab\u8e6d\u8e78\u8e73\u8e6a\u8e6f\u8e7b\u8ec2\u8f52\u8f51\u8f4f\u8f50\u8f53\u8fb4\u9140\u913f\u91b0\u91ad\u93de\u93c7\u93cf\u93c2\u93da\u93d0\u93f9\u93ec\u93cc\u93d9\u93a9\u93e6\u93ca\u93d4\u93ee\u93e3\u93d5\u93c4\u93ce\u93c0\u93d2\u93e7\u957d\u95da\u95db\u96e1\u9729\u972b\u972c\u9728\u9726"],["f3a1","\u97b3\u97b7\u97b6\u97dd\u97de\u97df\u985c\u9859\u985d\u9857\u98bf\u98bd\u98bb\u98be\u9948\u9947\u9943\u99a6\u99a7\u9a1a\u9a15\u9a25\u9a1d\u9a24\u9a1b\u9a22\u9a20\u9a27\u9a23\u9a1e\u9a1c\u9a14\u9ac2\u9b0b\u9b0a\u9b0e\u9b0c\u9b37\u9bea\u9beb\u9be0\u9bde\u9be4\u9be6\u9be2\u9bf0\u9bd4\u9bd7\u9bec\u9bdc\u9bd9\u9be5\u9bd5\u9be1\u9bda\u9d77\u9d81\u9d8a\u9d84\u9d88\u9d71\u9d80\u9d78\u9d86\u9d8b\u9d8c\u9d7d\u9d6b\u9d74\u9d75\u9d70\u9d69\u9d85\u9d73\u9d7b\u9d82\u9d6f\u9d79\u9d7f\u9d87\u9d68\u9e94\u9e91\u9ec0\u9efc\u9f2d\u9f40\u9f41\u9f4d\u9f56\u9f57\u9f58\u5337\u56b2"],["f440","\u56b5\u56b3\u58e3\u5b45\u5dc6\u5dc7\u5eee\u5eef\u5fc0\u5fc1\u61f9\u6517\u6516\u6515\u6513\u65df\u66e8\u66e3\u66e4\u6af3\u6af0\u6aea\u6ae8\u6af9\u6af1\u6aee\u6aef\u703c\u7035\u702f\u7037\u7034\u7031\u7042\u7038\u703f\u703a\u7039\u7040\u703b\u7033\u7041\u7213\u7214\u72a8\u737d\u737c\u74ba\u76ab\u76aa\u76be\u76ed\u77cc\u77ce\u77cf\u77cd\u77f2\u7925\u7923\u7927\u7928\u7924\u7929"],["f4a1","\u79b2\u7a6e\u7a6c\u7a6d\u7af7\u7c49\u7c48\u7c4a\u7c47\u7c45\u7cee\u7e7b\u7e7e\u7e81\u7e80\u7fba\u7fff\u8079\u81db\u81d9\u820b\u8268\u8269\u8622\u85ff\u8601\u85fe\u861b\u8600\u85f6\u8604\u8609\u8605\u860c\u85fd\u8819\u8810\u8811\u8817\u8813\u8816\u8963\u8966\u89b9\u89f7\u8b60\u8b6a\u8b5d\u8b68\u8b63\u8b65\u8b67\u8b6d\u8dae\u8e86\u8e88\u8e84\u8f59\u8f56\u8f57\u8f55\u8f58\u8f5a\u908d\u9143\u9141\u91b7\u91b5\u91b2\u91b3\u940b\u9413\u93fb\u9420\u940f\u9414\u93fe\u9415\u9410\u9428\u9419\u940d\u93f5\u9400\u93f7\u9407\u940e\u9416\u9412\u93fa\u9409\u93f8\u940a\u93ff"],["f540","\u93fc\u940c\u93f6\u9411\u9406\u95de\u95e0\u95df\u972e\u972f\u97b9\u97bb\u97fd\u97fe\u9860\u9862\u9863\u985f\u98c1\u98c2\u9950\u994e\u9959\u994c\u994b\u9953\u9a32\u9a34\u9a31\u9a2c\u9a2a\u9a36\u9a29\u9a2e\u9a38\u9a2d\u9ac7\u9aca\u9ac6\u9b10\u9b12\u9b11\u9c0b\u9c08\u9bf7\u9c05\u9c12\u9bf8\u9c40\u9c07\u9c0e\u9c06\u9c17\u9c14\u9c09\u9d9f\u9d99\u9da4\u9d9d\u9d92\u9d98\u9d90\u9d9b"],["f5a1","\u9da0\u9d94\u9d9c\u9daa\u9d97\u9da1\u9d9a\u9da2\u9da8\u9d9e\u9da3\u9dbf\u9da9\u9d96\u9da6\u9da7\u9e99\u9e9b\u9e9a\u9ee5\u9ee4\u9ee7\u9ee6\u9f30\u9f2e\u9f5b\u9f60\u9f5e\u9f5d\u9f59\u9f91\u513a\u5139\u5298\u5297\u56c3\u56bd\u56be\u5b48\u5b47\u5dcb\u5dcf\u5ef1\u61fd\u651b\u6b02\u6afc\u6b03\u6af8\u6b00\u7043\u7044\u704a\u7048\u7049\u7045\u7046\u721d\u721a\u7219\u737e\u7517\u766a\u77d0\u792d\u7931\u792f\u7c54\u7c53\u7cf2\u7e8a\u7e87\u7e88\u7e8b\u7e86\u7e8d\u7f4d\u7fbb\u8030\u81dd\u8618\u862a\u8626\u861f\u8623\u861c\u8619\u8627\u862e\u8621\u8620\u8629\u861e\u8625"],["f640","\u8829\u881d\u881b\u8820\u8824\u881c\u882b\u884a\u896d\u8969\u896e\u896b\u89fa\u8b79\u8b78\u8b45\u8b7a\u8b7b\u8d10\u8d14\u8daf\u8e8e\u8e8c\u8f5e\u8f5b\u8f5d\u9146\u9144\u9145\u91b9\u943f\u943b\u9436\u9429\u943d\u943c\u9430\u9439\u942a\u9437\u942c\u9440\u9431\u95e5\u95e4\u95e3\u9735\u973a\u97bf\u97e1\u9864\u98c9\u98c6\u98c0\u9958\u9956\u9a39\u9a3d\u9a46\u9a44\u9a42\u9a41\u9a3a"],["f6a1","\u9a3f\u9acd\u9b15\u9b17\u9b18\u9b16\u9b3a\u9b52\u9c2b\u9c1d\u9c1c\u9c2c\u9c23\u9c28\u9c29\u9c24\u9c21\u9db7\u9db6\u9dbc\u9dc1\u9dc7\u9dca\u9dcf\u9dbe\u9dc5\u9dc3\u9dbb\u9db5\u9dce\u9db9\u9dba\u9dac\u9dc8\u9db1\u9dad\u9dcc\u9db3\u9dcd\u9db2\u9e7a\u9e9c\u9eeb\u9eee\u9eed\u9f1b\u9f18\u9f1a\u9f31\u9f4e\u9f65\u9f64\u9f92\u4eb9\u56c6\u56c5\u56cb\u5971\u5b4b\u5b4c\u5dd5\u5dd1\u5ef2\u6521\u6520\u6526\u6522\u6b0b\u6b08\u6b09\u6c0d\u7055\u7056\u7057\u7052\u721e\u721f\u72a9\u737f\u74d8\u74d5\u74d9\u74d7\u766d\u76ad\u7935\u79b4\u7a70\u7a71\u7c57\u7c5c\u7c59\u7c5b\u7c5a"],["f740","\u7cf4\u7cf1\u7e91\u7f4f\u7f87\u81de\u826b\u8634\u8635\u8633\u862c\u8632\u8636\u882c\u8828\u8826\u882a\u8825\u8971\u89bf\u89be\u89fb\u8b7e\u8b84\u8b82\u8b86\u8b85\u8b7f\u8d15\u8e95\u8e94\u8e9a\u8e92\u8e90\u8e96\u8e97\u8f60\u8f62\u9147\u944c\u9450\u944a\u944b\u944f\u9447\u9445\u9448\u9449\u9446\u973f\u97e3\u986a\u9869\u98cb\u9954\u995b\u9a4e\u9a53\u9a54\u9a4c\u9a4f\u9a48\u9a4a"],["f7a1","\u9a49\u9a52\u9a50\u9ad0\u9b19\u9b2b\u9b3b\u9b56\u9b55\u9c46\u9c48\u9c3f\u9c44\u9c39\u9c33\u9c41\u9c3c\u9c37\u9c34\u9c32\u9c3d\u9c36\u9ddb\u9dd2\u9dde\u9dda\u9dcb\u9dd0\u9ddc\u9dd1\u9ddf\u9de9\u9dd9\u9dd8\u9dd6\u9df5\u9dd5\u9ddd\u9eb6\u9ef0\u9f35\u9f33\u9f32\u9f42\u9f6b\u9f95\u9fa2\u513d\u5299\u58e8\u58e7\u5972\u5b4d\u5dd8\u882f\u5f4f\u6201\u6203\u6204\u6529\u6525\u6596\u66eb\u6b11\u6b12\u6b0f\u6bca\u705b\u705a\u7222\u7382\u7381\u7383\u7670\u77d4\u7c67\u7c66\u7e95\u826c\u863a\u8640\u8639\u863c\u8631\u863b\u863e\u8830\u8832\u882e\u8833\u8976\u8974\u8973\u89fe"],["f840","\u8b8c\u8b8e\u8b8b\u8b88\u8c45\u8d19\u8e98\u8f64\u8f63\u91bc\u9462\u9455\u945d\u9457\u945e\u97c4\u97c5\u9800\u9a56\u9a59\u9b1e\u9b1f\u9b20\u9c52\u9c58\u9c50\u9c4a\u9c4d\u9c4b\u9c55\u9c59\u9c4c\u9c4e\u9dfb\u9df7\u9def\u9de3\u9deb\u9df8\u9de4\u9df6\u9de1\u9dee\u9de6\u9df2\u9df0\u9de2\u9dec\u9df4\u9df3\u9de8\u9ded\u9ec2\u9ed0\u9ef2\u9ef3\u9f06\u9f1c\u9f38\u9f37\u9f36\u9f43\u9f4f"],["f8a1","\u9f71\u9f70\u9f6e\u9f6f\u56d3\u56cd\u5b4e\u5c6d\u652d\u66ed\u66ee\u6b13\u705f\u7061\u705d\u7060\u7223\u74db\u74e5\u77d5\u7938\u79b7\u79b6\u7c6a\u7e97\u7f89\u826d\u8643\u8838\u8837\u8835\u884b\u8b94\u8b95\u8e9e\u8e9f\u8ea0\u8e9d\u91be\u91bd\u91c2\u946b\u9468\u9469\u96e5\u9746\u9743\u9747\u97c7\u97e5\u9a5e\u9ad5\u9b59\u9c63\u9c67\u9c66\u9c62\u9c5e\u9c60\u9e02\u9dfe\u9e07\u9e03\u9e06\u9e05\u9e00\u9e01\u9e09\u9dff\u9dfd\u9e04\u9ea0\u9f1e\u9f46\u9f74\u9f75\u9f76\u56d4\u652e\u65b8\u6b18\u6b19\u6b17\u6b1a\u7062\u7226\u72aa\u77d8\u77d9\u7939\u7c69\u7c6b\u7cf6\u7e9a"],["f940","\u7e98\u7e9b\u7e99\u81e0\u81e1\u8646\u8647\u8648\u8979\u897a\u897c\u897b\u89ff\u8b98\u8b99\u8ea5\u8ea4\u8ea3\u946e\u946d\u946f\u9471\u9473\u9749\u9872\u995f\u9c68\u9c6e\u9c6d\u9e0b\u9e0d\u9e10\u9e0f\u9e12\u9e11\u9ea1\u9ef5\u9f09\u9f47\u9f78\u9f7b\u9f7a\u9f79\u571e\u7066\u7c6f\u883c\u8db2\u8ea6\u91c3\u9474\u9478\u9476\u9475\u9a60\u9c74\u9c73\u9c71\u9c75\u9e14\u9e13\u9ef6\u9f0a"],["f9a1","\u9fa4\u7068\u7065\u7cf7\u866a\u883e\u883d\u883f\u8b9e\u8c9c\u8ea9\u8ec9\u974b\u9873\u9874\u98cc\u9961\u99ab\u9a64\u9a66\u9a67\u9b24\u9e15\u9e17\u9f48\u6207\u6b1e\u7227\u864c\u8ea8\u9482\u9480\u9481\u9a69\u9a68\u9b2e\u9e19\u7229\u864b\u8b9f\u9483\u9c79\u9eb7\u7675\u9a6b\u9c7a\u9e1d\u7069\u706a\u9ea4\u9f7e\u9f49\u9f98\u7881\u92b9\u88cf\u58bb\u6052\u7ca7\u5afa\u2554\u2566\u2557\u2560\u256c\u2563\u255a\u2569\u255d\u2552\u2564\u2555\u255e\u256a\u2561\u2558\u2567\u255b\u2553\u2565\u2556\u255f\u256b\u2562\u2559\u2568\u255c\u2551\u2550\u256d\u256e\u2570\u256f\u2593"]]')},5633:function(T){"use strict";T.exports=JSON.parse('[["0","\\u0000",127],["8ea1","\uff61",62],["a1a1","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7"],["a2a1","\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["a2ba","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["a2ca","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["a2dc","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["a2f2","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["a2fe","\u25ef"],["a3b0","\uff10",9],["a3c1","\uff21",25],["a3e1","\uff41",25],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a8a1","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["ada1","\u2460",19,"\u2160",9],["adc0","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["addf","\u337b\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["b0a1","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["b1a1","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc"],["b2a1","\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["b3a1","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431"],["b4a1","\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["b5a1","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac"],["b6a1","\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["b7a1","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372"],["b8a1","\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["b9a1","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc"],["baa1","\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["bba1","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642"],["bca1","\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["bda1","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f"],["bea1","\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["bfa1","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe"],["c0a1","\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["c1a1","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e"],["c2a1","\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["c3a1","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5"],["c4a1","\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["c5a1","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230"],["c6a1","\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["c7a1","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6"],["c8a1","\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["c9a1","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d"],["caa1","\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["cba1","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80"],["cca1","\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["cda1","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483"],["cea1","\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["cfa1","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["d0a1","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["d1a1","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8"],["d2a1","\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["d3a1","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709"],["d4a1","\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["d5a1","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53"],["d6a1","\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["d7a1","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a"],["d8a1","\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["d9a1","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc"],["daa1","\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["dba1","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd"],["dca1","\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["dda1","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe"],["dea1","\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["dfa1","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc"],["e0a1","\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e1a1","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670"],["e2a1","\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e3a1","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50"],["e4a1","\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e5a1","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a"],["e6a1","\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e7a1","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9"],["e8a1","\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e9a1","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759"],["eaa1","\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["eba1","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b"],["eca1","\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["eda1","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8"],["eea1","\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["efa1","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e"],["f0a1","\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["f1a1","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7"],["f2a1","\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["f3a1","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0"],["f4a1","\u582f\u69c7\u9059\u7464\u51dc\u7199"],["f9a1","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7"],["faa1","\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["fba1","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da"],["fca1","\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["fcf1","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["8fa2af","\u02d8\u02c7\xb8\u02d9\u02dd\xaf\u02db\u02da\uff5e\u0384\u0385"],["8fa2c2","\xa1\xa6\xbf"],["8fa2eb","\xba\xaa\xa9\xae\u2122\xa4\u2116"],["8fa6e1","\u0386\u0388\u0389\u038a\u03aa"],["8fa6e7","\u038c"],["8fa6e9","\u038e\u03ab"],["8fa6ec","\u038f"],["8fa6f1","\u03ac\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03c2\u03cd\u03cb\u03b0\u03ce"],["8fa7c2","\u0402",10,"\u040e\u040f"],["8fa7f2","\u0452",10,"\u045e\u045f"],["8fa9a1","\xc6\u0110"],["8fa9a4","\u0126"],["8fa9a6","\u0132"],["8fa9a8","\u0141\u013f"],["8fa9ab","\u014a\xd8\u0152"],["8fa9af","\u0166\xde"],["8fa9c1","\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0142\u0140\u0149\u014b\xf8\u0153\xdf\u0167\xfe"],["8faaa1","\xc1\xc0\xc4\xc2\u0102\u01cd\u0100\u0104\xc5\xc3\u0106\u0108\u010c\xc7\u010a\u010e\xc9\xc8\xcb\xca\u011a\u0116\u0112\u0118"],["8faaba","\u011c\u011e\u0122\u0120\u0124\xcd\xcc\xcf\xce\u01cf\u0130\u012a\u012e\u0128\u0134\u0136\u0139\u013d\u013b\u0143\u0147\u0145\xd1\xd3\xd2\xd6\xd4\u01d1\u0150\u014c\xd5\u0154\u0158\u0156\u015a\u015c\u0160\u015e\u0164\u0162\xda\xd9\xdc\xdb\u016c\u01d3\u0170\u016a\u0172\u016e\u0168\u01d7\u01db\u01d9\u01d5\u0174\xdd\u0178\u0176\u0179\u017d\u017b"],["8faba1","\xe1\xe0\xe4\xe2\u0103\u01ce\u0101\u0105\xe5\xe3\u0107\u0109\u010d\xe7\u010b\u010f\xe9\xe8\xeb\xea\u011b\u0117\u0113\u0119\u01f5\u011d\u011f"],["8fabbd","\u0121\u0125\xed\xec\xef\xee\u01d0"],["8fabc5","\u012b\u012f\u0129\u0135\u0137\u013a\u013e\u013c\u0144\u0148\u0146\xf1\xf3\xf2\xf6\xf4\u01d2\u0151\u014d\xf5\u0155\u0159\u0157\u015b\u015d\u0161\u015f\u0165\u0163\xfa\xf9\xfc\xfb\u016d\u01d4\u0171\u016b\u0173\u016f\u0169\u01d8\u01dc\u01da\u01d6\u0175\xfd\xff\u0177\u017a\u017e\u017c"],["8fb0a1","\u4e02\u4e04\u4e05\u4e0c\u4e12\u4e1f\u4e23\u4e24\u4e28\u4e2b\u4e2e\u4e2f\u4e30\u4e35\u4e40\u4e41\u4e44\u4e47\u4e51\u4e5a\u4e5c\u4e63\u4e68\u4e69\u4e74\u4e75\u4e79\u4e7f\u4e8d\u4e96\u4e97\u4e9d\u4eaf\u4eb9\u4ec3\u4ed0\u4eda\u4edb\u4ee0\u4ee1\u4ee2\u4ee8\u4eef\u4ef1\u4ef3\u4ef5\u4efd\u4efe\u4eff\u4f00\u4f02\u4f03\u4f08\u4f0b\u4f0c\u4f12\u4f15\u4f16\u4f17\u4f19\u4f2e\u4f31\u4f60\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e\u4f40\u4f42\u4f48\u4f49\u4f4b\u4f4c\u4f52\u4f54\u4f56\u4f58\u4f5f\u4f63\u4f6a\u4f6c\u4f6e\u4f71\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f7e\u4f81\u4f82\u4f84"],["8fb1a1","\u4f85\u4f89\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f94\u4f97\u4f99\u4f9a\u4f9e\u4f9f\u4fb2\u4fb7\u4fb9\u4fbb\u4fbc\u4fbd\u4fbe\u4fc0\u4fc1\u4fc5\u4fc6\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fcf\u4fd2\u4fdc\u4fe0\u4fe2\u4ff0\u4ff2\u4ffc\u4ffd\u4fff\u5000\u5001\u5004\u5007\u500a\u500c\u500e\u5010\u5013\u5017\u5018\u501b\u501c\u501d\u501e\u5022\u5027\u502e\u5030\u5032\u5033\u5035\u5040\u5041\u5042\u5045\u5046\u504a\u504c\u504e\u5051\u5052\u5053\u5057\u5059\u505f\u5060\u5062\u5063\u5066\u5067\u506a\u506d\u5070\u5071\u503b\u5081\u5083\u5084\u5086\u508a\u508e\u508f\u5090"],["8fb2a1","\u5092\u5093\u5094\u5096\u509b\u509c\u509e",4,"\u50aa\u50af\u50b0\u50b9\u50ba\u50bd\u50c0\u50c3\u50c4\u50c7\u50cc\u50ce\u50d0\u50d3\u50d4\u50d8\u50dc\u50dd\u50df\u50e2\u50e4\u50e6\u50e8\u50e9\u50ef\u50f1\u50f6\u50fa\u50fe\u5103\u5106\u5107\u5108\u510b\u510c\u510d\u510e\u50f2\u5110\u5117\u5119\u511b\u511c\u511d\u511e\u5123\u5127\u5128\u512c\u512d\u512f\u5131\u5133\u5134\u5135\u5138\u5139\u5142\u514a\u514f\u5153\u5155\u5157\u5158\u515f\u5164\u5166\u517e\u5183\u5184\u518b\u518e\u5198\u519d\u51a1\u51a3\u51ad\u51b8\u51ba\u51bc\u51be\u51bf\u51c2"],["8fb3a1","\u51c8\u51cf\u51d1\u51d2\u51d3\u51d5\u51d8\u51de\u51e2\u51e5\u51ee\u51f2\u51f3\u51f4\u51f7\u5201\u5202\u5205\u5212\u5213\u5215\u5216\u5218\u5222\u5228\u5231\u5232\u5235\u523c\u5245\u5249\u5255\u5257\u5258\u525a\u525c\u525f\u5260\u5261\u5266\u526e\u5277\u5278\u5279\u5280\u5282\u5285\u528a\u528c\u5293\u5295\u5296\u5297\u5298\u529a\u529c\u52a4\u52a5\u52a6\u52a7\u52af\u52b0\u52b6\u52b7\u52b8\u52ba\u52bb\u52bd\u52c0\u52c4\u52c6\u52c8\u52cc\u52cf\u52d1\u52d4\u52d6\u52db\u52dc\u52e1\u52e5\u52e8\u52e9\u52ea\u52ec\u52f0\u52f1\u52f4\u52f6\u52f7\u5300\u5303\u530a\u530b"],["8fb4a1","\u530c\u5311\u5313\u5318\u531b\u531c\u531e\u531f\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u5330\u5332\u5335\u533c\u533d\u533e\u5342\u534c\u534b\u5359\u535b\u5361\u5363\u5365\u536c\u536d\u5372\u5379\u537e\u5383\u5387\u5388\u538e\u5393\u5394\u5399\u539d\u53a1\u53a4\u53aa\u53ab\u53af\u53b2\u53b4\u53b5\u53b7\u53b8\u53ba\u53bd\u53c0\u53c5\u53cf\u53d2\u53d3\u53d5\u53da\u53dd\u53de\u53e0\u53e6\u53e7\u53f5\u5402\u5413\u541a\u5421\u5427\u5428\u542a\u542f\u5431\u5434\u5435\u5443\u5444\u5447\u544d\u544f\u545e\u5462\u5464\u5466\u5467\u5469\u546b\u546d\u546e\u5474\u547f"],["8fb5a1","\u5481\u5483\u5485\u5488\u5489\u548d\u5491\u5495\u5496\u549c\u549f\u54a1\u54a6\u54a7\u54a9\u54aa\u54ad\u54ae\u54b1\u54b7\u54b9\u54ba\u54bb\u54bf\u54c6\u54ca\u54cd\u54ce\u54e0\u54ea\u54ec\u54ef\u54f6\u54fc\u54fe\u54ff\u5500\u5501\u5505\u5508\u5509\u550c\u550d\u550e\u5515\u552a\u552b\u5532\u5535\u5536\u553b\u553c\u553d\u5541\u5547\u5549\u554a\u554d\u5550\u5551\u5558\u555a\u555b\u555e\u5560\u5561\u5564\u5566\u557f\u5581\u5582\u5586\u5588\u558e\u558f\u5591\u5592\u5593\u5594\u5597\u55a3\u55a4\u55ad\u55b2\u55bf\u55c1\u55c3\u55c6\u55c9\u55cb\u55cc\u55ce\u55d1\u55d2"],["8fb6a1","\u55d3\u55d7\u55d8\u55db\u55de\u55e2\u55e9\u55f6\u55ff\u5605\u5608\u560a\u560d",5,"\u5619\u562c\u5630\u5633\u5635\u5637\u5639\u563b\u563c\u563d\u563f\u5640\u5641\u5643\u5644\u5646\u5649\u564b\u564d\u564f\u5654\u565e\u5660\u5661\u5662\u5663\u5666\u5669\u566d\u566f\u5671\u5672\u5675\u5684\u5685\u5688\u568b\u568c\u5695\u5699\u569a\u569d\u569e\u569f\u56a6\u56a7\u56a8\u56a9\u56ab\u56ac\u56ad\u56b1\u56b3\u56b7\u56be\u56c5\u56c9\u56ca\u56cb\u56cf\u56d0\u56cc\u56cd\u56d9\u56dc\u56dd\u56df\u56e1\u56e4",4,"\u56f1\u56eb\u56ed"],["8fb7a1","\u56f6\u56f7\u5701\u5702\u5707\u570a\u570c\u5711\u5715\u571a\u571b\u571d\u5720\u5722\u5723\u5724\u5725\u5729\u572a\u572c\u572e\u572f\u5733\u5734\u573d\u573e\u573f\u5745\u5746\u574c\u574d\u5752\u5762\u5765\u5767\u5768\u576b\u576d",4,"\u5773\u5774\u5775\u5777\u5779\u577a\u577b\u577c\u577e\u5781\u5783\u578c\u5794\u5797\u5799\u579a\u579c\u579d\u579e\u579f\u57a1\u5795\u57a7\u57a8\u57a9\u57ac\u57b8\u57bd\u57c7\u57c8\u57cc\u57cf\u57d5\u57dd\u57de\u57e4\u57e6\u57e7\u57e9\u57ed\u57f0\u57f5\u57f6\u57f8\u57fd\u57fe\u57ff\u5803\u5804\u5808\u5809\u57e1"],["8fb8a1","\u580c\u580d\u581b\u581e\u581f\u5820\u5826\u5827\u582d\u5832\u5839\u583f\u5849\u584c\u584d\u584f\u5850\u5855\u585f\u5861\u5864\u5867\u5868\u5878\u587c\u587f\u5880\u5881\u5887\u5888\u5889\u588a\u588c\u588d\u588f\u5890\u5894\u5896\u589d\u58a0\u58a1\u58a2\u58a6\u58a9\u58b1\u58b2\u58c4\u58bc\u58c2\u58c8\u58cd\u58ce\u58d0\u58d2\u58d4\u58d6\u58da\u58dd\u58e1\u58e2\u58e9\u58f3\u5905\u5906\u590b\u590c\u5912\u5913\u5914\u8641\u591d\u5921\u5923\u5924\u5928\u592f\u5930\u5933\u5935\u5936\u593f\u5943\u5946\u5952\u5953\u5959\u595b\u595d\u595e\u595f\u5961\u5963\u596b\u596d"],["8fb9a1","\u596f\u5972\u5975\u5976\u5979\u597b\u597c\u598b\u598c\u598e\u5992\u5995\u5997\u599f\u59a4\u59a7\u59ad\u59ae\u59af\u59b0\u59b3\u59b7\u59ba\u59bc\u59c1\u59c3\u59c4\u59c8\u59ca\u59cd\u59d2\u59dd\u59de\u59df\u59e3\u59e4\u59e7\u59ee\u59ef\u59f1\u59f2\u59f4\u59f7\u5a00\u5a04\u5a0c\u5a0d\u5a0e\u5a12\u5a13\u5a1e\u5a23\u5a24\u5a27\u5a28\u5a2a\u5a2d\u5a30\u5a44\u5a45\u5a47\u5a48\u5a4c\u5a50\u5a55\u5a5e\u5a63\u5a65\u5a67\u5a6d\u5a77\u5a7a\u5a7b\u5a7e\u5a8b\u5a90\u5a93\u5a96\u5a99\u5a9c\u5a9e\u5a9f\u5aa0\u5aa2\u5aa7\u5aac\u5ab1\u5ab2\u5ab3\u5ab5\u5ab8\u5aba\u5abb\u5abf"],["8fbaa1","\u5ac4\u5ac6\u5ac8\u5acf\u5ada\u5adc\u5ae0\u5ae5\u5aea\u5aee\u5af5\u5af6\u5afd\u5b00\u5b01\u5b08\u5b17\u5b34\u5b19\u5b1b\u5b1d\u5b21\u5b25\u5b2d\u5b38\u5b41\u5b4b\u5b4c\u5b52\u5b56\u5b5e\u5b68\u5b6e\u5b6f\u5b7c\u5b7d\u5b7e\u5b7f\u5b81\u5b84\u5b86\u5b8a\u5b8e\u5b90\u5b91\u5b93\u5b94\u5b96\u5ba8\u5ba9\u5bac\u5bad\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbc\u5bc0\u5bc1\u5bcd\u5bcf\u5bd6",4,"\u5be0\u5bef\u5bf1\u5bf4\u5bfd\u5c0c\u5c17\u5c1e\u5c1f\u5c23\u5c26\u5c29\u5c2b\u5c2c\u5c2e\u5c30\u5c32\u5c35\u5c36\u5c59\u5c5a\u5c5c\u5c62\u5c63\u5c67\u5c68\u5c69"],["8fbba1","\u5c6d\u5c70\u5c74\u5c75\u5c7a\u5c7b\u5c7c\u5c7d\u5c87\u5c88\u5c8a\u5c8f\u5c92\u5c9d\u5c9f\u5ca0\u5ca2\u5ca3\u5ca6\u5caa\u5cb2\u5cb4\u5cb5\u5cba\u5cc9\u5ccb\u5cd2\u5cdd\u5cd7\u5cee\u5cf1\u5cf2\u5cf4\u5d01\u5d06\u5d0d\u5d12\u5d2b\u5d23\u5d24\u5d26\u5d27\u5d31\u5d34\u5d39\u5d3d\u5d3f\u5d42\u5d43\u5d46\u5d48\u5d55\u5d51\u5d59\u5d4a\u5d5f\u5d60\u5d61\u5d62\u5d64\u5d6a\u5d6d\u5d70\u5d79\u5d7a\u5d7e\u5d7f\u5d81\u5d83\u5d88\u5d8a\u5d92\u5d93\u5d94\u5d95\u5d99\u5d9b\u5d9f\u5da0\u5da7\u5dab\u5db0\u5db4\u5db8\u5db9\u5dc3\u5dc7\u5dcb\u5dd0\u5dce\u5dd8\u5dd9\u5de0\u5de4"],["8fbca1","\u5de9\u5df8\u5df9\u5e00\u5e07\u5e0d\u5e12\u5e14\u5e15\u5e18\u5e1f\u5e20\u5e2e\u5e28\u5e32\u5e35\u5e3e\u5e4b\u5e50\u5e49\u5e51\u5e56\u5e58\u5e5b\u5e5c\u5e5e\u5e68\u5e6a",4,"\u5e70\u5e80\u5e8b\u5e8e\u5ea2\u5ea4\u5ea5\u5ea8\u5eaa\u5eac\u5eb1\u5eb3\u5ebd\u5ebe\u5ebf\u5ec6\u5ecc\u5ecb\u5ece\u5ed1\u5ed2\u5ed4\u5ed5\u5edc\u5ede\u5ee5\u5eeb\u5f02\u5f06\u5f07\u5f08\u5f0e\u5f19\u5f1c\u5f1d\u5f21\u5f22\u5f23\u5f24\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f34\u5f36\u5f3b\u5f3d\u5f3f\u5f40\u5f44\u5f45\u5f47\u5f4d\u5f50\u5f54\u5f58\u5f5b\u5f60\u5f63\u5f64\u5f67"],["8fbda1","\u5f6f\u5f72\u5f74\u5f75\u5f78\u5f7a\u5f7d\u5f7e\u5f89\u5f8d\u5f8f\u5f96\u5f9c\u5f9d\u5fa2\u5fa7\u5fab\u5fa4\u5fac\u5faf\u5fb0\u5fb1\u5fb8\u5fc4\u5fc7\u5fc8\u5fc9\u5fcb\u5fd0",4,"\u5fde\u5fe1\u5fe2\u5fe8\u5fe9\u5fea\u5fec\u5fed\u5fee\u5fef\u5ff2\u5ff3\u5ff6\u5ffa\u5ffc\u6007\u600a\u600d\u6013\u6014\u6017\u6018\u601a\u601f\u6024\u602d\u6033\u6035\u6040\u6047\u6048\u6049\u604c\u6051\u6054\u6056\u6057\u605d\u6061\u6067\u6071\u607e\u607f\u6082\u6086\u6088\u608a\u608e\u6091\u6093\u6095\u6098\u609d\u609e\u60a2\u60a4\u60a5\u60a8\u60b0\u60b1\u60b7"],["8fbea1","\u60bb\u60be\u60c2\u60c4\u60c8\u60c9\u60ca\u60cb\u60ce\u60cf\u60d4\u60d5\u60d9\u60db\u60dd\u60de\u60e2\u60e5\u60f2\u60f5\u60f8\u60fc\u60fd\u6102\u6107\u610a\u610c\u6110",4,"\u6116\u6117\u6119\u611c\u611e\u6122\u612a\u612b\u6130\u6131\u6135\u6136\u6137\u6139\u6141\u6145\u6146\u6149\u615e\u6160\u616c\u6172\u6178\u617b\u617c\u617f\u6180\u6181\u6183\u6184\u618b\u618d\u6192\u6193\u6197\u6198\u619c\u619d\u619f\u61a0\u61a5\u61a8\u61aa\u61ad\u61b8\u61b9\u61bc\u61c0\u61c1\u61c2\u61ce\u61cf\u61d5\u61dc\u61dd\u61de\u61df\u61e1\u61e2\u61e7\u61e9\u61e5"],["8fbfa1","\u61ec\u61ed\u61ef\u6201\u6203\u6204\u6207\u6213\u6215\u621c\u6220\u6222\u6223\u6227\u6229\u622b\u6239\u623d\u6242\u6243\u6244\u6246\u624c\u6250\u6251\u6252\u6254\u6256\u625a\u625c\u6264\u626d\u626f\u6273\u627a\u627d\u628d\u628e\u628f\u6290\u62a6\u62a8\u62b3\u62b6\u62b7\u62ba\u62be\u62bf\u62c4\u62ce\u62d5\u62d6\u62da\u62ea\u62f2\u62f4\u62fc\u62fd\u6303\u6304\u630a\u630b\u630d\u6310\u6313\u6316\u6318\u6329\u632a\u632d\u6335\u6336\u6339\u633c\u6341\u6342\u6343\u6344\u6346\u634a\u634b\u634e\u6352\u6353\u6354\u6358\u635b\u6365\u6366\u636c\u636d\u6371\u6374\u6375"],["8fc0a1","\u6378\u637c\u637d\u637f\u6382\u6384\u6387\u638a\u6390\u6394\u6395\u6399\u639a\u639e\u63a4\u63a6\u63ad\u63ae\u63af\u63bd\u63c1\u63c5\u63c8\u63ce\u63d1\u63d3\u63d4\u63d5\u63dc\u63e0\u63e5\u63ea\u63ec\u63f2\u63f3\u63f5\u63f8\u63f9\u6409\u640a\u6410\u6412\u6414\u6418\u641e\u6420\u6422\u6424\u6425\u6429\u642a\u642f\u6430\u6435\u643d\u643f\u644b\u644f\u6451\u6452\u6453\u6454\u645a\u645b\u645c\u645d\u645f\u6460\u6461\u6463\u646d\u6473\u6474\u647b\u647d\u6485\u6487\u648f\u6490\u6491\u6498\u6499\u649b\u649d\u649f\u64a1\u64a3\u64a6\u64a8\u64ac\u64b3\u64bd\u64be\u64bf"],["8fc1a1","\u64c4\u64c9\u64ca\u64cb\u64cc\u64ce\u64d0\u64d1\u64d5\u64d7\u64e4\u64e5\u64e9\u64ea\u64ed\u64f0\u64f5\u64f7\u64fb\u64ff\u6501\u6504\u6508\u6509\u650a\u650f\u6513\u6514\u6516\u6519\u651b\u651e\u651f\u6522\u6526\u6529\u652e\u6531\u653a\u653c\u653d\u6543\u6547\u6549\u6550\u6552\u6554\u655f\u6560\u6567\u656b\u657a\u657d\u6581\u6585\u658a\u6592\u6595\u6598\u659d\u65a0\u65a3\u65a6\u65ae\u65b2\u65b3\u65b4\u65bf\u65c2\u65c8\u65c9\u65ce\u65d0\u65d4\u65d6\u65d8\u65df\u65f0\u65f2\u65f4\u65f5\u65f9\u65fe\u65ff\u6600\u6604\u6608\u6609\u660d\u6611\u6612\u6615\u6616\u661d"],["8fc2a1","\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6631\u6633\u6639\u6637\u6640\u6645\u6646\u664a\u664c\u6651\u664e\u6657\u6658\u6659\u665b\u665c\u6660\u6661\u66fb\u666a\u666b\u666c\u667e\u6673\u6675\u667f\u6677\u6678\u6679\u667b\u6680\u667c\u668b\u668c\u668d\u6690\u6692\u6699\u669a\u669b\u669c\u669f\u66a0\u66a4\u66ad\u66b1\u66b2\u66b5\u66bb\u66bf\u66c0\u66c2\u66c3\u66c8\u66cc\u66ce\u66cf\u66d4\u66db\u66df\u66e8\u66eb\u66ec\u66ee\u66fa\u6705\u6707\u670e\u6713\u6719\u671c\u6720\u6722\u6733\u673e\u6745\u6747\u6748\u674c\u6754\u6755\u675d"],["8fc3a1","\u6766\u676c\u676e\u6774\u6776\u677b\u6781\u6784\u678e\u678f\u6791\u6793\u6796\u6798\u6799\u679b\u67b0\u67b1\u67b2\u67b5\u67bb\u67bc\u67bd\u67f9\u67c0\u67c2\u67c3\u67c5\u67c8\u67c9\u67d2\u67d7\u67d9\u67dc\u67e1\u67e6\u67f0\u67f2\u67f6\u67f7\u6852\u6814\u6819\u681d\u681f\u6828\u6827\u682c\u682d\u682f\u6830\u6831\u6833\u683b\u683f\u6844\u6845\u684a\u684c\u6855\u6857\u6858\u685b\u686b\u686e",4,"\u6875\u6879\u687a\u687b\u687c\u6882\u6884\u6886\u6888\u6896\u6898\u689a\u689c\u68a1\u68a3\u68a5\u68a9\u68aa\u68ae\u68b2\u68bb\u68c5\u68c8\u68cc\u68cf"],["8fc4a1","\u68d0\u68d1\u68d3\u68d6\u68d9\u68dc\u68dd\u68e5\u68e8\u68ea\u68eb\u68ec\u68ed\u68f0\u68f1\u68f5\u68f6\u68fb\u68fc\u68fd\u6906\u6909\u690a\u6910\u6911\u6913\u6916\u6917\u6931\u6933\u6935\u6938\u693b\u6942\u6945\u6949\u694e\u6957\u695b\u6963\u6964\u6965\u6966\u6968\u6969\u696c\u6970\u6971\u6972\u697a\u697b\u697f\u6980\u698d\u6992\u6996\u6998\u69a1\u69a5\u69a6\u69a8\u69ab\u69ad\u69af\u69b7\u69b8\u69ba\u69bc\u69c5\u69c8\u69d1\u69d6\u69d7\u69e2\u69e5\u69ee\u69ef\u69f1\u69f3\u69f5\u69fe\u6a00\u6a01\u6a03\u6a0f\u6a11\u6a15\u6a1a\u6a1d\u6a20\u6a24\u6a28\u6a30\u6a32"],["8fc5a1","\u6a34\u6a37\u6a3b\u6a3e\u6a3f\u6a45\u6a46\u6a49\u6a4a\u6a4e\u6a50\u6a51\u6a52\u6a55\u6a56\u6a5b\u6a64\u6a67\u6a6a\u6a71\u6a73\u6a7e\u6a81\u6a83\u6a86\u6a87\u6a89\u6a8b\u6a91\u6a9b\u6a9d\u6a9e\u6a9f\u6aa5\u6aab\u6aaf\u6ab0\u6ab1\u6ab4\u6abd\u6abe\u6abf\u6ac6\u6ac9\u6ac8\u6acc\u6ad0\u6ad4\u6ad5\u6ad6\u6adc\u6add\u6ae4\u6ae7\u6aec\u6af0\u6af1\u6af2\u6afc\u6afd\u6b02\u6b03\u6b06\u6b07\u6b09\u6b0f\u6b10\u6b11\u6b17\u6b1b\u6b1e\u6b24\u6b28\u6b2b\u6b2c\u6b2f\u6b35\u6b36\u6b3b\u6b3f\u6b46\u6b4a\u6b4d\u6b52\u6b56\u6b58\u6b5d\u6b60\u6b67\u6b6b\u6b6e\u6b70\u6b75\u6b7d"],["8fc6a1","\u6b7e\u6b82\u6b85\u6b97\u6b9b\u6b9f\u6ba0\u6ba2\u6ba3\u6ba8\u6ba9\u6bac\u6bad\u6bae\u6bb0\u6bb8\u6bb9\u6bbd\u6bbe\u6bc3\u6bc4\u6bc9\u6bcc\u6bd6\u6bda\u6be1\u6be3\u6be6\u6be7\u6bee\u6bf1\u6bf7\u6bf9\u6bff\u6c02\u6c04\u6c05\u6c09\u6c0d\u6c0e\u6c10\u6c12\u6c19\u6c1f\u6c26\u6c27\u6c28\u6c2c\u6c2e\u6c33\u6c35\u6c36\u6c3a\u6c3b\u6c3f\u6c4a\u6c4b\u6c4d\u6c4f\u6c52\u6c54\u6c59\u6c5b\u6c5c\u6c6b\u6c6d\u6c6f\u6c74\u6c76\u6c78\u6c79\u6c7b\u6c85\u6c86\u6c87\u6c89\u6c94\u6c95\u6c97\u6c98\u6c9c\u6c9f\u6cb0\u6cb2\u6cb4\u6cc2\u6cc6\u6ccd\u6ccf\u6cd0\u6cd1\u6cd2\u6cd4\u6cd6"],["8fc7a1","\u6cda\u6cdc\u6ce0\u6ce7\u6ce9\u6ceb\u6cec\u6cee\u6cf2\u6cf4\u6d04\u6d07\u6d0a\u6d0e\u6d0f\u6d11\u6d13\u6d1a\u6d26\u6d27\u6d28\u6c67\u6d2e\u6d2f\u6d31\u6d39\u6d3c\u6d3f\u6d57\u6d5e\u6d5f\u6d61\u6d65\u6d67\u6d6f\u6d70\u6d7c\u6d82\u6d87\u6d91\u6d92\u6d94\u6d96\u6d97\u6d98\u6daa\u6dac\u6db4\u6db7\u6db9\u6dbd\u6dbf\u6dc4\u6dc8\u6dca\u6dce\u6dcf\u6dd6\u6ddb\u6ddd\u6ddf\u6de0\u6de2\u6de5\u6de9\u6def\u6df0\u6df4\u6df6\u6dfc\u6e00\u6e04\u6e1e\u6e22\u6e27\u6e32\u6e36\u6e39\u6e3b\u6e3c\u6e44\u6e45\u6e48\u6e49\u6e4b\u6e4f\u6e51\u6e52\u6e53\u6e54\u6e57\u6e5c\u6e5d\u6e5e"],["8fc8a1","\u6e62\u6e63\u6e68\u6e73\u6e7b\u6e7d\u6e8d\u6e93\u6e99\u6ea0\u6ea7\u6ead\u6eae\u6eb1\u6eb3\u6ebb\u6ebf\u6ec0\u6ec1\u6ec3\u6ec7\u6ec8\u6eca\u6ecd\u6ece\u6ecf\u6eeb\u6eed\u6eee\u6ef9\u6efb\u6efd\u6f04\u6f08\u6f0a\u6f0c\u6f0d\u6f16\u6f18\u6f1a\u6f1b\u6f26\u6f29\u6f2a\u6f2f\u6f30\u6f33\u6f36\u6f3b\u6f3c\u6f2d\u6f4f\u6f51\u6f52\u6f53\u6f57\u6f59\u6f5a\u6f5d\u6f5e\u6f61\u6f62\u6f68\u6f6c\u6f7d\u6f7e\u6f83\u6f87\u6f88\u6f8b\u6f8c\u6f8d\u6f90\u6f92\u6f93\u6f94\u6f96\u6f9a\u6f9f\u6fa0\u6fa5\u6fa6\u6fa7\u6fa8\u6fae\u6faf\u6fb0\u6fb5\u6fb6\u6fbc\u6fc5\u6fc7\u6fc8\u6fca"],["8fc9a1","\u6fda\u6fde\u6fe8\u6fe9\u6ff0\u6ff5\u6ff9\u6ffc\u6ffd\u7000\u7005\u7006\u7007\u700d\u7017\u7020\u7023\u702f\u7034\u7037\u7039\u703c\u7043\u7044\u7048\u7049\u704a\u704b\u7054\u7055\u705d\u705e\u704e\u7064\u7065\u706c\u706e\u7075\u7076\u707e\u7081\u7085\u7086\u7094",4,"\u709b\u70a4\u70ab\u70b0\u70b1\u70b4\u70b7\u70ca\u70d1\u70d3\u70d4\u70d5\u70d6\u70d8\u70dc\u70e4\u70fa\u7103",4,"\u710b\u710c\u710f\u711e\u7120\u712b\u712d\u712f\u7130\u7131\u7138\u7141\u7145\u7146\u7147\u714a\u714b\u7150\u7152\u7157\u715a\u715c\u715e\u7160"],["8fcaa1","\u7168\u7179\u7180\u7185\u7187\u718c\u7192\u719a\u719b\u71a0\u71a2\u71af\u71b0\u71b2\u71b3\u71ba\u71bf\u71c0\u71c1\u71c4\u71cb\u71cc\u71d3\u71d6\u71d9\u71da\u71dc\u71f8\u71fe\u7200\u7207\u7208\u7209\u7213\u7217\u721a\u721d\u721f\u7224\u722b\u722f\u7234\u7238\u7239\u7241\u7242\u7243\u7245\u724e\u724f\u7250\u7253\u7255\u7256\u725a\u725c\u725e\u7260\u7263\u7268\u726b\u726e\u726f\u7271\u7277\u7278\u727b\u727c\u727f\u7284\u7289\u728d\u728e\u7293\u729b\u72a8\u72ad\u72ae\u72b1\u72b4\u72be\u72c1\u72c7\u72c9\u72cc\u72d5\u72d6\u72d8\u72df\u72e5\u72f3\u72f4\u72fa\u72fb"],["8fcba1","\u72fe\u7302\u7304\u7305\u7307\u730b\u730d\u7312\u7313\u7318\u7319\u731e\u7322\u7324\u7327\u7328\u732c\u7331\u7332\u7335\u733a\u733b\u733d\u7343\u734d\u7350\u7352\u7356\u7358\u735d\u735e\u735f\u7360\u7366\u7367\u7369\u736b\u736c\u736e\u736f\u7371\u7377\u7379\u737c\u7380\u7381\u7383\u7385\u7386\u738e\u7390\u7393\u7395\u7397\u7398\u739c\u739e\u739f\u73a0\u73a2\u73a5\u73a6\u73aa\u73ab\u73ad\u73b5\u73b7\u73b9\u73bc\u73bd\u73bf\u73c5\u73c6\u73c9\u73cb\u73cc\u73cf\u73d2\u73d3\u73d6\u73d9\u73dd\u73e1\u73e3\u73e6\u73e7\u73e9\u73f4\u73f5\u73f7\u73f9\u73fa\u73fb\u73fd"],["8fcca1","\u73ff\u7400\u7401\u7404\u7407\u740a\u7411\u741a\u741b\u7424\u7426\u7428",9,"\u7439\u7440\u7443\u7444\u7446\u7447\u744b\u744d\u7451\u7452\u7457\u745d\u7462\u7466\u7467\u7468\u746b\u746d\u746e\u7471\u7472\u7480\u7481\u7485\u7486\u7487\u7489\u748f\u7490\u7491\u7492\u7498\u7499\u749a\u749c\u749f\u74a0\u74a1\u74a3\u74a6\u74a8\u74a9\u74aa\u74ab\u74ae\u74af\u74b1\u74b2\u74b5\u74b9\u74bb\u74bf\u74c8\u74c9\u74cc\u74d0\u74d3\u74d8\u74da\u74db\u74de\u74df\u74e4\u74e8\u74ea\u74eb\u74ef\u74f4\u74fa\u74fb\u74fc\u74ff\u7506"],["8fcda1","\u7512\u7516\u7517\u7520\u7521\u7524\u7527\u7529\u752a\u752f\u7536\u7539\u753d\u753e\u753f\u7540\u7543\u7547\u7548\u754e\u7550\u7552\u7557\u755e\u755f\u7561\u756f\u7571\u7579",5,"\u7581\u7585\u7590\u7592\u7593\u7595\u7599\u759c\u75a2\u75a4\u75b4\u75ba\u75bf\u75c0\u75c1\u75c4\u75c6\u75cc\u75ce\u75cf\u75d7\u75dc\u75df\u75e0\u75e1\u75e4\u75e7\u75ec\u75ee\u75ef\u75f1\u75f9\u7600\u7602\u7603\u7604\u7607\u7608\u760a\u760c\u760f\u7612\u7613\u7615\u7616\u7619\u761b\u761c\u761d\u761e\u7623\u7625\u7626\u7629\u762d\u7632\u7633\u7635\u7638\u7639"],["8fcea1","\u763a\u763c\u764a\u7640\u7641\u7643\u7644\u7645\u7649\u764b\u7655\u7659\u765f\u7664\u7665\u766d\u766e\u766f\u7671\u7674\u7681\u7685\u768c\u768d\u7695\u769b\u769c\u769d\u769f\u76a0\u76a2",6,"\u76aa\u76ad\u76bd\u76c1\u76c5\u76c9\u76cb\u76cc\u76ce\u76d4\u76d9\u76e0\u76e6\u76e8\u76ec\u76f0\u76f1\u76f6\u76f9\u76fc\u7700\u7706\u770a\u770e\u7712\u7714\u7715\u7717\u7719\u771a\u771c\u7722\u7728\u772d\u772e\u772f\u7734\u7735\u7736\u7739\u773d\u773e\u7742\u7745\u7746\u774a\u774d\u774e\u774f\u7752\u7756\u7757\u775c\u775e\u775f\u7760\u7762"],["8fcfa1","\u7764\u7767\u776a\u776c\u7770\u7772\u7773\u7774\u777a\u777d\u7780\u7784\u778c\u778d\u7794\u7795\u7796\u779a\u779f\u77a2\u77a7\u77aa\u77ae\u77af\u77b1\u77b5\u77be\u77c3\u77c9\u77d1\u77d2\u77d5\u77d9\u77de\u77df\u77e0\u77e4\u77e6\u77ea\u77ec\u77f0\u77f1\u77f4\u77f8\u77fb\u7805\u7806\u7809\u780d\u780e\u7811\u781d\u7821\u7822\u7823\u782d\u782e\u7830\u7835\u7837\u7843\u7844\u7847\u7848\u784c\u784e\u7852\u785c\u785e\u7860\u7861\u7863\u7864\u7868\u786a\u786e\u787a\u787e\u788a\u788f\u7894\u7898\u78a1\u789d\u789e\u789f\u78a4\u78a8\u78ac\u78ad\u78b0\u78b1\u78b2\u78b3"],["8fd0a1","\u78bb\u78bd\u78bf\u78c7\u78c8\u78c9\u78cc\u78ce\u78d2\u78d3\u78d5\u78d6\u78e4\u78db\u78df\u78e0\u78e1\u78e6\u78ea\u78f2\u78f3\u7900\u78f6\u78f7\u78fa\u78fb\u78ff\u7906\u790c\u7910\u791a\u791c\u791e\u791f\u7920\u7925\u7927\u7929\u792d\u7931\u7934\u7935\u793b\u793d\u793f\u7944\u7945\u7946\u794a\u794b\u794f\u7951\u7954\u7958\u795b\u795c\u7967\u7969\u796b\u7972\u7979\u797b\u797c\u797e\u798b\u798c\u7991\u7993\u7994\u7995\u7996\u7998\u799b\u799c\u79a1\u79a8\u79a9\u79ab\u79af\u79b1\u79b4\u79b8\u79bb\u79c2\u79c4\u79c7\u79c8\u79ca\u79cf\u79d4\u79d6\u79da\u79dd\u79de"],["8fd1a1","\u79e0\u79e2\u79e5\u79ea\u79eb\u79ed\u79f1\u79f8\u79fc\u7a02\u7a03\u7a07\u7a09\u7a0a\u7a0c\u7a11\u7a15\u7a1b\u7a1e\u7a21\u7a27\u7a2b\u7a2d\u7a2f\u7a30\u7a34\u7a35\u7a38\u7a39\u7a3a\u7a44\u7a45\u7a47\u7a48\u7a4c\u7a55\u7a56\u7a59\u7a5c\u7a5d\u7a5f\u7a60\u7a65\u7a67\u7a6a\u7a6d\u7a75\u7a78\u7a7e\u7a80\u7a82\u7a85\u7a86\u7a8a\u7a8b\u7a90\u7a91\u7a94\u7a9e\u7aa0\u7aa3\u7aac\u7ab3\u7ab5\u7ab9\u7abb\u7abc\u7ac6\u7ac9\u7acc\u7ace\u7ad1\u7adb\u7ae8\u7ae9\u7aeb\u7aec\u7af1\u7af4\u7afb\u7afd\u7afe\u7b07\u7b14\u7b1f\u7b23\u7b27\u7b29\u7b2a\u7b2b\u7b2d\u7b2e\u7b2f\u7b30"],["8fd2a1","\u7b31\u7b34\u7b3d\u7b3f\u7b40\u7b41\u7b47\u7b4e\u7b55\u7b60\u7b64\u7b66\u7b69\u7b6a\u7b6d\u7b6f\u7b72\u7b73\u7b77\u7b84\u7b89\u7b8e\u7b90\u7b91\u7b96\u7b9b\u7b9e\u7ba0\u7ba5\u7bac\u7baf\u7bb0\u7bb2\u7bb5\u7bb6\u7bba\u7bbb\u7bbc\u7bbd\u7bc2\u7bc5\u7bc8\u7bca\u7bd4\u7bd6\u7bd7\u7bd9\u7bda\u7bdb\u7be8\u7bea\u7bf2\u7bf4\u7bf5\u7bf8\u7bf9\u7bfa\u7bfc\u7bfe\u7c01\u7c02\u7c03\u7c04\u7c06\u7c09\u7c0b\u7c0c\u7c0e\u7c0f\u7c19\u7c1b\u7c20\u7c25\u7c26\u7c28\u7c2c\u7c31\u7c33\u7c34\u7c36\u7c39\u7c3a\u7c46\u7c4a\u7c55\u7c51\u7c52\u7c53\u7c59",5],["8fd3a1","\u7c61\u7c63\u7c67\u7c69\u7c6d\u7c6e\u7c70\u7c72\u7c79\u7c7c\u7c7d\u7c86\u7c87\u7c8f\u7c94\u7c9e\u7ca0\u7ca6\u7cb0\u7cb6\u7cb7\u7cba\u7cbb\u7cbc\u7cbf\u7cc4\u7cc7\u7cc8\u7cc9\u7ccd\u7ccf\u7cd3\u7cd4\u7cd5\u7cd7\u7cd9\u7cda\u7cdd\u7ce6\u7ce9\u7ceb\u7cf5\u7d03\u7d07\u7d08\u7d09\u7d0f\u7d11\u7d12\u7d13\u7d16\u7d1d\u7d1e\u7d23\u7d26\u7d2a\u7d2d\u7d31\u7d3c\u7d3d\u7d3e\u7d40\u7d41\u7d47\u7d48\u7d4d\u7d51\u7d53\u7d57\u7d59\u7d5a\u7d5c\u7d5d\u7d65\u7d67\u7d6a\u7d70\u7d78\u7d7a\u7d7b\u7d7f\u7d81\u7d82\u7d83\u7d85\u7d86\u7d88\u7d8b\u7d8c\u7d8d\u7d91\u7d96\u7d97\u7d9d"],["8fd4a1","\u7d9e\u7da6\u7da7\u7daa\u7db3\u7db6\u7db7\u7db9\u7dc2",4,"\u7dcc\u7dcd\u7dce\u7dd7\u7dd9\u7e00\u7de2\u7de5\u7de6\u7dea\u7deb\u7ded\u7df1\u7df5\u7df6\u7df9\u7dfa\u7e08\u7e10\u7e11\u7e15\u7e17\u7e1c\u7e1d\u7e20\u7e27\u7e28\u7e2c\u7e2d\u7e2f\u7e33\u7e36\u7e3f\u7e44\u7e45\u7e47\u7e4e\u7e50\u7e52\u7e58\u7e5f\u7e61\u7e62\u7e65\u7e6b\u7e6e\u7e6f\u7e73\u7e78\u7e7e\u7e81\u7e86\u7e87\u7e8a\u7e8d\u7e91\u7e95\u7e98\u7e9a\u7e9d\u7e9e\u7f3c\u7f3b\u7f3d\u7f3e\u7f3f\u7f43\u7f44\u7f47\u7f4f\u7f52\u7f53\u7f5b\u7f5c\u7f5d\u7f61\u7f63\u7f64\u7f65\u7f66\u7f6d"],["8fd5a1","\u7f71\u7f7d\u7f7e\u7f7f\u7f80\u7f8b\u7f8d\u7f8f\u7f90\u7f91\u7f96\u7f97\u7f9c\u7fa1\u7fa2\u7fa6\u7faa\u7fad\u7fb4\u7fbc\u7fbf\u7fc0\u7fc3\u7fc8\u7fce\u7fcf\u7fdb\u7fdf\u7fe3\u7fe5\u7fe8\u7fec\u7fee\u7fef\u7ff2\u7ffa\u7ffd\u7ffe\u7fff\u8007\u8008\u800a\u800d\u800e\u800f\u8011\u8013\u8014\u8016\u801d\u801e\u801f\u8020\u8024\u8026\u802c\u802e\u8030\u8034\u8035\u8037\u8039\u803a\u803c\u803e\u8040\u8044\u8060\u8064\u8066\u806d\u8071\u8075\u8081\u8088\u808e\u809c\u809e\u80a6\u80a7\u80ab\u80b8\u80b9\u80c8\u80cd\u80cf\u80d2\u80d4\u80d5\u80d7\u80d8\u80e0\u80ed\u80ee"],["8fd6a1","\u80f0\u80f2\u80f3\u80f6\u80f9\u80fa\u80fe\u8103\u810b\u8116\u8117\u8118\u811c\u811e\u8120\u8124\u8127\u812c\u8130\u8135\u813a\u813c\u8145\u8147\u814a\u814c\u8152\u8157\u8160\u8161\u8167\u8168\u8169\u816d\u816f\u8177\u8181\u8190\u8184\u8185\u8186\u818b\u818e\u8196\u8198\u819b\u819e\u81a2\u81ae\u81b2\u81b4\u81bb\u81cb\u81c3\u81c5\u81ca\u81ce\u81cf\u81d5\u81d7\u81db\u81dd\u81de\u81e1\u81e4\u81eb\u81ec\u81f0\u81f1\u81f2\u81f5\u81f6\u81f8\u81f9\u81fd\u81ff\u8200\u8203\u820f\u8213\u8214\u8219\u821a\u821d\u8221\u8222\u8228\u8232\u8234\u823a\u8243\u8244\u8245\u8246"],["8fd7a1","\u824b\u824e\u824f\u8251\u8256\u825c\u8260\u8263\u8267\u826d\u8274\u827b\u827d\u827f\u8280\u8281\u8283\u8284\u8287\u8289\u828a\u828e\u8291\u8294\u8296\u8298\u829a\u829b\u82a0\u82a1\u82a3\u82a4\u82a7\u82a8\u82a9\u82aa\u82ae\u82b0\u82b2\u82b4\u82b7\u82ba\u82bc\u82be\u82bf\u82c6\u82d0\u82d5\u82da\u82e0\u82e2\u82e4\u82e8\u82ea\u82ed\u82ef\u82f6\u82f7\u82fd\u82fe\u8300\u8301\u8307\u8308\u830a\u830b\u8354\u831b\u831d\u831e\u831f\u8321\u8322\u832c\u832d\u832e\u8330\u8333\u8337\u833a\u833c\u833d\u8342\u8343\u8344\u8347\u834d\u834e\u8351\u8355\u8356\u8357\u8370\u8378"],["8fd8a1","\u837d\u837f\u8380\u8382\u8384\u8386\u838d\u8392\u8394\u8395\u8398\u8399\u839b\u839c\u839d\u83a6\u83a7\u83a9\u83ac\u83be\u83bf\u83c0\u83c7\u83c9\u83cf\u83d0\u83d1\u83d4\u83dd\u8353\u83e8\u83ea\u83f6\u83f8\u83f9\u83fc\u8401\u8406\u840a\u840f\u8411\u8415\u8419\u83ad\u842f\u8439\u8445\u8447\u8448\u844a\u844d\u844f\u8451\u8452\u8456\u8458\u8459\u845a\u845c\u8460\u8464\u8465\u8467\u846a\u8470\u8473\u8474\u8476\u8478\u847c\u847d\u8481\u8485\u8492\u8493\u8495\u849e\u84a6\u84a8\u84a9\u84aa\u84af\u84b1\u84b4\u84ba\u84bd\u84be\u84c0\u84c2\u84c7\u84c8\u84cc\u84cf\u84d3"],["8fd9a1","\u84dc\u84e7\u84ea\u84ef\u84f0\u84f1\u84f2\u84f7\u8532\u84fa\u84fb\u84fd\u8502\u8503\u8507\u850c\u850e\u8510\u851c\u851e\u8522\u8523\u8524\u8525\u8527\u852a\u852b\u852f\u8533\u8534\u8536\u853f\u8546\u854f",4,"\u8556\u8559\u855c",6,"\u8564\u856b\u856f\u8579\u857a\u857b\u857d\u857f\u8581\u8585\u8586\u8589\u858b\u858c\u858f\u8593\u8598\u859d\u859f\u85a0\u85a2\u85a5\u85a7\u85b4\u85b6\u85b7\u85b8\u85bc\u85bd\u85be\u85bf\u85c2\u85c7\u85ca\u85cb\u85ce\u85ad\u85d8\u85da\u85df\u85e0\u85e6\u85e8\u85ed\u85f3\u85f6\u85fc"],["8fdaa1","\u85ff\u8600\u8604\u8605\u860d\u860e\u8610\u8611\u8612\u8618\u8619\u861b\u861e\u8621\u8627\u8629\u8636\u8638\u863a\u863c\u863d\u8640\u8642\u8646\u8652\u8653\u8656\u8657\u8658\u8659\u865d\u8660",4,"\u8669\u866c\u866f\u8675\u8676\u8677\u867a\u868d\u8691\u8696\u8698\u869a\u869c\u86a1\u86a6\u86a7\u86a8\u86ad\u86b1\u86b3\u86b4\u86b5\u86b7\u86b8\u86b9\u86bf\u86c0\u86c1\u86c3\u86c5\u86d1\u86d2\u86d5\u86d7\u86da\u86dc\u86e0\u86e3\u86e5\u86e7\u8688\u86fa\u86fc\u86fd\u8704\u8705\u8707\u870b\u870e\u870f\u8710\u8713\u8714\u8719\u871e\u871f\u8721\u8723"],["8fdba1","\u8728\u872e\u872f\u8731\u8732\u8739\u873a\u873c\u873d\u873e\u8740\u8743\u8745\u874d\u8758\u875d\u8761\u8764\u8765\u876f\u8771\u8772\u877b\u8783",6,"\u878b\u878c\u8790\u8793\u8795\u8797\u8798\u8799\u879e\u87a0\u87a3\u87a7\u87ac\u87ad\u87ae\u87b1\u87b5\u87be\u87bf\u87c1\u87c8\u87c9\u87ca\u87ce\u87d5\u87d6\u87d9\u87da\u87dc\u87df\u87e2\u87e3\u87e4\u87ea\u87eb\u87ed\u87f1\u87f3\u87f8\u87fa\u87ff\u8801\u8803\u8806\u8809\u880a\u880b\u8810\u8819\u8812\u8813\u8814\u8818\u881a\u881b\u881c\u881e\u881f\u8828\u882d\u882e\u8830\u8832\u8835"],["8fdca1","\u883a\u883c\u8841\u8843\u8845\u8848\u8849\u884a\u884b\u884e\u8851\u8855\u8856\u8858\u885a\u885c\u885f\u8860\u8864\u8869\u8871\u8879\u887b\u8880\u8898\u889a\u889b\u889c\u889f\u88a0\u88a8\u88aa\u88ba\u88bd\u88be\u88c0\u88ca",4,"\u88d1\u88d2\u88d3\u88db\u88de\u88e7\u88ef\u88f0\u88f1\u88f5\u88f7\u8901\u8906\u890d\u890e\u890f\u8915\u8916\u8918\u8919\u891a\u891c\u8920\u8926\u8927\u8928\u8930\u8931\u8932\u8935\u8939\u893a\u893e\u8940\u8942\u8945\u8946\u8949\u894f\u8952\u8957\u895a\u895b\u895c\u8961\u8962\u8963\u896b\u896e\u8970\u8973\u8975\u897a"],["8fdda1","\u897b\u897c\u897d\u8989\u898d\u8990\u8994\u8995\u899b\u899c\u899f\u89a0\u89a5\u89b0\u89b4\u89b5\u89b6\u89b7\u89bc\u89d4",4,"\u89e5\u89e9\u89eb\u89ed\u89f1\u89f3\u89f6\u89f9\u89fd\u89ff\u8a04\u8a05\u8a07\u8a0f\u8a11\u8a12\u8a14\u8a15\u8a1e\u8a20\u8a22\u8a24\u8a26\u8a2b\u8a2c\u8a2f\u8a35\u8a37\u8a3d\u8a3e\u8a40\u8a43\u8a45\u8a47\u8a49\u8a4d\u8a4e\u8a53\u8a56\u8a57\u8a58\u8a5c\u8a5d\u8a61\u8a65\u8a67\u8a75\u8a76\u8a77\u8a79\u8a7a\u8a7b\u8a7e\u8a7f\u8a80\u8a83\u8a86\u8a8b\u8a8f\u8a90\u8a92\u8a96\u8a97\u8a99\u8a9f\u8aa7\u8aa9\u8aae\u8aaf\u8ab3"],["8fdea1","\u8ab6\u8ab7\u8abb\u8abe\u8ac3\u8ac6\u8ac8\u8ac9\u8aca\u8ad1\u8ad3\u8ad4\u8ad5\u8ad7\u8add\u8adf\u8aec\u8af0\u8af4\u8af5\u8af6\u8afc\u8aff\u8b05\u8b06\u8b0b\u8b11\u8b1c\u8b1e\u8b1f\u8b0a\u8b2d\u8b30\u8b37\u8b3c\u8b42",4,"\u8b48\u8b52\u8b53\u8b54\u8b59\u8b4d\u8b5e\u8b63\u8b6d\u8b76\u8b78\u8b79\u8b7c\u8b7e\u8b81\u8b84\u8b85\u8b8b\u8b8d\u8b8f\u8b94\u8b95\u8b9c\u8b9e\u8b9f\u8c38\u8c39\u8c3d\u8c3e\u8c45\u8c47\u8c49\u8c4b\u8c4f\u8c51\u8c53\u8c54\u8c57\u8c58\u8c5b\u8c5d\u8c59\u8c63\u8c64\u8c66\u8c68\u8c69\u8c6d\u8c73\u8c75\u8c76\u8c7b\u8c7e\u8c86"],["8fdfa1","\u8c87\u8c8b\u8c90\u8c92\u8c93\u8c99\u8c9b\u8c9c\u8ca4\u8cb9\u8cba\u8cc5\u8cc6\u8cc9\u8ccb\u8ccf\u8cd6\u8cd5\u8cd9\u8cdd\u8ce1\u8ce8\u8cec\u8cef\u8cf0\u8cf2\u8cf5\u8cf7\u8cf8\u8cfe\u8cff\u8d01\u8d03\u8d09\u8d12\u8d17\u8d1b\u8d65\u8d69\u8d6c\u8d6e\u8d7f\u8d82\u8d84\u8d88\u8d8d\u8d90\u8d91\u8d95\u8d9e\u8d9f\u8da0\u8da6\u8dab\u8dac\u8daf\u8db2\u8db5\u8db7\u8db9\u8dbb\u8dc0\u8dc5\u8dc6\u8dc7\u8dc8\u8dca\u8dce\u8dd1\u8dd4\u8dd5\u8dd7\u8dd9\u8de4\u8de5\u8de7\u8dec\u8df0\u8dbc\u8df1\u8df2\u8df4\u8dfd\u8e01\u8e04\u8e05\u8e06\u8e0b\u8e11\u8e14\u8e16\u8e20\u8e21\u8e22"],["8fe0a1","\u8e23\u8e26\u8e27\u8e31\u8e33\u8e36\u8e37\u8e38\u8e39\u8e3d\u8e40\u8e41\u8e4b\u8e4d\u8e4e\u8e4f\u8e54\u8e5b\u8e5c\u8e5d\u8e5e\u8e61\u8e62\u8e69\u8e6c\u8e6d\u8e6f\u8e70\u8e71\u8e79\u8e7a\u8e7b\u8e82\u8e83\u8e89\u8e90\u8e92\u8e95\u8e9a\u8e9b\u8e9d\u8e9e\u8ea2\u8ea7\u8ea9\u8ead\u8eae\u8eb3\u8eb5\u8eba\u8ebb\u8ec0\u8ec1\u8ec3\u8ec4\u8ec7\u8ecf\u8ed1\u8ed4\u8edc\u8ee8\u8eee\u8ef0\u8ef1\u8ef7\u8ef9\u8efa\u8eed\u8f00\u8f02\u8f07\u8f08\u8f0f\u8f10\u8f16\u8f17\u8f18\u8f1e\u8f20\u8f21\u8f23\u8f25\u8f27\u8f28\u8f2c\u8f2d\u8f2e\u8f34\u8f35\u8f36\u8f37\u8f3a\u8f40\u8f41"],["8fe1a1","\u8f43\u8f47\u8f4f\u8f51",4,"\u8f58\u8f5d\u8f5e\u8f65\u8f9d\u8fa0\u8fa1\u8fa4\u8fa5\u8fa6\u8fb5\u8fb6\u8fb8\u8fbe\u8fc0\u8fc1\u8fc6\u8fca\u8fcb\u8fcd\u8fd0\u8fd2\u8fd3\u8fd5\u8fe0\u8fe3\u8fe4\u8fe8\u8fee\u8ff1\u8ff5\u8ff6\u8ffb\u8ffe\u9002\u9004\u9008\u900c\u9018\u901b\u9028\u9029\u902f\u902a\u902c\u902d\u9033\u9034\u9037\u903f\u9043\u9044\u904c\u905b\u905d\u9062\u9066\u9067\u906c\u9070\u9074\u9079\u9085\u9088\u908b\u908c\u908e\u9090\u9095\u9097\u9098\u9099\u909b\u90a0\u90a1\u90a2\u90a5\u90b0\u90b2\u90b3\u90b4\u90b6\u90bd\u90cc\u90be\u90c3"],["8fe2a1","\u90c4\u90c5\u90c7\u90c8\u90d5\u90d7\u90d8\u90d9\u90dc\u90dd\u90df\u90e5\u90d2\u90f6\u90eb\u90ef\u90f0\u90f4\u90fe\u90ff\u9100\u9104\u9105\u9106\u9108\u910d\u9110\u9114\u9116\u9117\u9118\u911a\u911c\u911e\u9120\u9125\u9122\u9123\u9127\u9129\u912e\u912f\u9131\u9134\u9136\u9137\u9139\u913a\u913c\u913d\u9143\u9147\u9148\u914f\u9153\u9157\u9159\u915a\u915b\u9161\u9164\u9167\u916d\u9174\u9179\u917a\u917b\u9181\u9183\u9185\u9186\u918a\u918e\u9191\u9193\u9194\u9195\u9198\u919e\u91a1\u91a6\u91a8\u91ac\u91ad\u91ae\u91b0\u91b1\u91b2\u91b3\u91b6\u91bb\u91bc\u91bd\u91bf"],["8fe3a1","\u91c2\u91c3\u91c5\u91d3\u91d4\u91d7\u91d9\u91da\u91de\u91e4\u91e5\u91e9\u91ea\u91ec",5,"\u91f7\u91f9\u91fb\u91fd\u9200\u9201\u9204\u9205\u9206\u9207\u9209\u920a\u920c\u9210\u9212\u9213\u9216\u9218\u921c\u921d\u9223\u9224\u9225\u9226\u9228\u922e\u922f\u9230\u9233\u9235\u9236\u9238\u9239\u923a\u923c\u923e\u9240\u9242\u9243\u9246\u9247\u924a\u924d\u924e\u924f\u9251\u9258\u9259\u925c\u925d\u9260\u9261\u9265\u9267\u9268\u9269\u926e\u926f\u9270\u9275",4,"\u927b\u927c\u927d\u927f\u9288\u9289\u928a\u928d\u928e\u9292\u9297"],["8fe4a1","\u9299\u929f\u92a0\u92a4\u92a5\u92a7\u92a8\u92ab\u92af\u92b2\u92b6\u92b8\u92ba\u92bb\u92bc\u92bd\u92bf",4,"\u92c5\u92c6\u92c7\u92c8\u92cb\u92cc\u92cd\u92ce\u92d0\u92d3\u92d5\u92d7\u92d8\u92d9\u92dc\u92dd\u92df\u92e0\u92e1\u92e3\u92e5\u92e7\u92e8\u92ec\u92ee\u92f0\u92f9\u92fb\u92ff\u9300\u9302\u9308\u930d\u9311\u9314\u9315\u931c\u931d\u931e\u931f\u9321\u9324\u9325\u9327\u9329\u932a\u9333\u9334\u9336\u9337\u9347\u9348\u9349\u9350\u9351\u9352\u9355\u9357\u9358\u935a\u935e\u9364\u9365\u9367\u9369\u936a\u936d\u936f\u9370\u9371\u9373\u9374\u9376"],["8fe5a1","\u937a\u937d\u937f\u9380\u9381\u9382\u9388\u938a\u938b\u938d\u938f\u9392\u9395\u9398\u939b\u939e\u93a1\u93a3\u93a4\u93a6\u93a8\u93ab\u93b4\u93b5\u93b6\u93ba\u93a9\u93c1\u93c4\u93c5\u93c6\u93c7\u93c9",4,"\u93d3\u93d9\u93dc\u93de\u93df\u93e2\u93e6\u93e7\u93f9\u93f7\u93f8\u93fa\u93fb\u93fd\u9401\u9402\u9404\u9408\u9409\u940d\u940e\u940f\u9415\u9416\u9417\u941f\u942e\u942f\u9431\u9432\u9433\u9434\u943b\u943f\u943d\u9443\u9445\u9448\u944a\u944c\u9455\u9459\u945c\u945f\u9461\u9463\u9468\u946b\u946d\u946e\u946f\u9471\u9472\u9484\u9483\u9578\u9579"],["8fe6a1","\u957e\u9584\u9588\u958c\u958d\u958e\u959d\u959e\u959f\u95a1\u95a6\u95a9\u95ab\u95ac\u95b4\u95b6\u95ba\u95bd\u95bf\u95c6\u95c8\u95c9\u95cb\u95d0\u95d1\u95d2\u95d3\u95d9\u95da\u95dd\u95de\u95df\u95e0\u95e4\u95e6\u961d\u961e\u9622\u9624\u9625\u9626\u962c\u9631\u9633\u9637\u9638\u9639\u963a\u963c\u963d\u9641\u9652\u9654\u9656\u9657\u9658\u9661\u966e\u9674\u967b\u967c\u967e\u967f\u9681\u9682\u9683\u9684\u9689\u9691\u9696\u969a\u969d\u969f\u96a4\u96a5\u96a6\u96a9\u96ae\u96af\u96b3\u96ba\u96ca\u96d2\u5db2\u96d8\u96da\u96dd\u96de\u96df\u96e9\u96ef\u96f1\u96fa\u9702"],["8fe7a1","\u9703\u9705\u9709\u971a\u971b\u971d\u9721\u9722\u9723\u9728\u9731\u9733\u9741\u9743\u974a\u974e\u974f\u9755\u9757\u9758\u975a\u975b\u9763\u9767\u976a\u976e\u9773\u9776\u9777\u9778\u977b\u977d\u977f\u9780\u9789\u9795\u9796\u9797\u9799\u979a\u979e\u979f\u97a2\u97ac\u97ae\u97b1\u97b2\u97b5\u97b6\u97b8\u97b9\u97ba\u97bc\u97be\u97bf\u97c1\u97c4\u97c5\u97c7\u97c9\u97ca\u97cc\u97cd\u97ce\u97d0\u97d1\u97d4\u97d7\u97d8\u97d9\u97dd\u97de\u97e0\u97db\u97e1\u97e4\u97ef\u97f1\u97f4\u97f7\u97f8\u97fa\u9807\u980a\u9819\u980d\u980e\u9814\u9816\u981c\u981e\u9820\u9823\u9826"],["8fe8a1","\u982b\u982e\u982f\u9830\u9832\u9833\u9835\u9825\u983e\u9844\u9847\u984a\u9851\u9852\u9853\u9856\u9857\u9859\u985a\u9862\u9863\u9865\u9866\u986a\u986c\u98ab\u98ad\u98ae\u98b0\u98b4\u98b7\u98b8\u98ba\u98bb\u98bf\u98c2\u98c5\u98c8\u98cc\u98e1\u98e3\u98e5\u98e6\u98e7\u98ea\u98f3\u98f6\u9902\u9907\u9908\u9911\u9915\u9916\u9917\u991a\u991b\u991c\u991f\u9922\u9926\u9927\u992b\u9931",4,"\u9939\u993a\u993b\u993c\u9940\u9941\u9946\u9947\u9948\u994d\u994e\u9954\u9958\u9959\u995b\u995c\u995e\u995f\u9960\u999b\u999d\u999f\u99a6\u99b0\u99b1\u99b2\u99b5"],["8fe9a1","\u99b9\u99ba\u99bd\u99bf\u99c3\u99c9\u99d3\u99d4\u99d9\u99da\u99dc\u99de\u99e7\u99ea\u99eb\u99ec\u99f0\u99f4\u99f5\u99f9\u99fd\u99fe\u9a02\u9a03\u9a04\u9a0b\u9a0c\u9a10\u9a11\u9a16\u9a1e\u9a20\u9a22\u9a23\u9a24\u9a27\u9a2d\u9a2e\u9a33\u9a35\u9a36\u9a38\u9a47\u9a41\u9a44\u9a4a\u9a4b\u9a4c\u9a4e\u9a51\u9a54\u9a56\u9a5d\u9aaa\u9aac\u9aae\u9aaf\u9ab2\u9ab4\u9ab5\u9ab6\u9ab9\u9abb\u9abe\u9abf\u9ac1\u9ac3\u9ac6\u9ac8\u9ace\u9ad0\u9ad2\u9ad5\u9ad6\u9ad7\u9adb\u9adc\u9ae0\u9ae4\u9ae5\u9ae7\u9ae9\u9aec\u9af2\u9af3\u9af5\u9af9\u9afa\u9afd\u9aff",4],["8feaa1","\u9b04\u9b05\u9b08\u9b09\u9b0b\u9b0c\u9b0d\u9b0e\u9b10\u9b12\u9b16\u9b19\u9b1b\u9b1c\u9b20\u9b26\u9b2b\u9b2d\u9b33\u9b34\u9b35\u9b37\u9b39\u9b3a\u9b3d\u9b48\u9b4b\u9b4c\u9b55\u9b56\u9b57\u9b5b\u9b5e\u9b61\u9b63\u9b65\u9b66\u9b68\u9b6a",4,"\u9b73\u9b75\u9b77\u9b78\u9b79\u9b7f\u9b80\u9b84\u9b85\u9b86\u9b87\u9b89\u9b8a\u9b8b\u9b8d\u9b8f\u9b90\u9b94\u9b9a\u9b9d\u9b9e\u9ba6\u9ba7\u9ba9\u9bac\u9bb0\u9bb1\u9bb2\u9bb7\u9bb8\u9bbb\u9bbc\u9bbe\u9bbf\u9bc1\u9bc7\u9bc8\u9bce\u9bd0\u9bd7\u9bd8\u9bdd\u9bdf\u9be5\u9be7\u9bea\u9beb\u9bef\u9bf3\u9bf7\u9bf8"],["8feba1","\u9bf9\u9bfa\u9bfd\u9bff\u9c00\u9c02\u9c0b\u9c0f\u9c11\u9c16\u9c18\u9c19\u9c1a\u9c1c\u9c1e\u9c22\u9c23\u9c26",4,"\u9c31\u9c35\u9c36\u9c37\u9c3d\u9c41\u9c43\u9c44\u9c45\u9c49\u9c4a\u9c4e\u9c4f\u9c50\u9c53\u9c54\u9c56\u9c58\u9c5b\u9c5d\u9c5e\u9c5f\u9c63\u9c69\u9c6a\u9c5c\u9c6b\u9c68\u9c6e\u9c70\u9c72\u9c75\u9c77\u9c7b\u9ce6\u9cf2\u9cf7\u9cf9\u9d0b\u9d02\u9d11\u9d17\u9d18\u9d1c\u9d1d\u9d1e\u9d2f\u9d30\u9d32\u9d33\u9d34\u9d3a\u9d3c\u9d45\u9d3d\u9d42\u9d43\u9d47\u9d4a\u9d53\u9d54\u9d5f\u9d63\u9d62\u9d65\u9d69\u9d6a\u9d6b\u9d70\u9d76\u9d77\u9d7b"],["8feca1","\u9d7c\u9d7e\u9d83\u9d84\u9d86\u9d8a\u9d8d\u9d8e\u9d92\u9d93\u9d95\u9d96\u9d97\u9d98\u9da1\u9daa\u9dac\u9dae\u9db1\u9db5\u9db9\u9dbc\u9dbf\u9dc3\u9dc7\u9dc9\u9dca\u9dd4\u9dd5\u9dd6\u9dd7\u9dda\u9dde\u9ddf\u9de0\u9de5\u9de7\u9de9\u9deb\u9dee\u9df0\u9df3\u9df4\u9dfe\u9e0a\u9e02\u9e07\u9e0e\u9e10\u9e11\u9e12\u9e15\u9e16\u9e19\u9e1c\u9e1d\u9e7a\u9e7b\u9e7c\u9e80\u9e82\u9e83\u9e84\u9e85\u9e87\u9e8e\u9e8f\u9e96\u9e98\u9e9b\u9e9e\u9ea4\u9ea8\u9eac\u9eae\u9eaf\u9eb0\u9eb3\u9eb4\u9eb5\u9ec6\u9ec8\u9ecb\u9ed5\u9edf\u9ee4\u9ee7\u9eec\u9eed\u9eee\u9ef0\u9ef1\u9ef2\u9ef5"],["8feda1","\u9ef8\u9eff\u9f02\u9f03\u9f09\u9f0f\u9f10\u9f11\u9f12\u9f14\u9f16\u9f17\u9f19\u9f1a\u9f1b\u9f1f\u9f22\u9f26\u9f2a\u9f2b\u9f2f\u9f31\u9f32\u9f34\u9f37\u9f39\u9f3a\u9f3c\u9f3d\u9f3f\u9f41\u9f43",4,"\u9f53\u9f55\u9f56\u9f57\u9f58\u9f5a\u9f5d\u9f5e\u9f68\u9f69\u9f6d",4,"\u9f73\u9f75\u9f7a\u9f7d\u9f8f\u9f90\u9f91\u9f92\u9f94\u9f96\u9f97\u9f9e\u9fa1\u9fa2\u9fa3\u9fa5"]]')},6258:function(T){"use strict";T.exports=JSON.parse('{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}')},4346:function(T){"use strict";T.exports=JSON.parse('[["a140","\ue4c6",62],["a180","\ue505",32],["a240","\ue526",62],["a280","\ue565",32],["a2ab","\ue766",5],["a2e3","\u20ac\ue76d"],["a2ef","\ue76e\ue76f"],["a2fd","\ue770\ue771"],["a340","\ue586",62],["a380","\ue5c5",31,"\u3000"],["a440","\ue5e6",62],["a480","\ue625",32],["a4f4","\ue772",10],["a540","\ue646",62],["a580","\ue685",32],["a5f7","\ue77d",7],["a640","\ue6a6",62],["a680","\ue6e5",32],["a6b9","\ue785",7],["a6d9","\ue78d",6],["a6ec","\ue794\ue795"],["a6f3","\ue796"],["a6f6","\ue797",8],["a740","\ue706",62],["a780","\ue745",32],["a7c2","\ue7a0",14],["a7f2","\ue7af",12],["a896","\ue7bc",10],["a8bc","\u1e3f"],["a8bf","\u01f9"],["a8c1","\ue7c9\ue7ca\ue7cb\ue7cc"],["a8ea","\ue7cd",20],["a958","\ue7e2"],["a95b","\ue7e3"],["a95d","\ue7e4\ue7e5\ue7e6"],["a989","\u303e\u2ff0",11],["a997","\ue7f4",12],["a9f0","\ue801",14],["aaa1","\ue000",93],["aba1","\ue05e",93],["aca1","\ue0bc",93],["ada1","\ue11a",93],["aea1","\ue178",93],["afa1","\ue1d6",93],["d7fa","\ue810",4],["f8a1","\ue234",93],["f9a1","\ue292",93],["faa1","\ue2f0",93],["fba1","\ue34e",93],["fca1","\ue3ac",93],["fda1","\ue40a",93],["fe50","\u2e81\ue816\ue817\ue818\u2e84\u3473\u3447\u2e88\u2e8b\ue81e\u359e\u361a\u360e\u2e8c\u2e97\u396e\u3918\ue826\u39cf\u39df\u3a73\u39d0\ue82b\ue82c\u3b4e\u3c6e\u3ce0\u2ea7\ue831\ue832\u2eaa\u4056\u415f\u2eae\u4337\u2eb3\u2eb6\u2eb7\ue83b\u43b1\u43ac\u2ebb\u43dd\u44d6\u4661\u464c\ue843"],["fe80","\u4723\u4729\u477c\u478d\u2eca\u4947\u497a\u497d\u4982\u4983\u4985\u4986\u499f\u499b\u49b7\u49b6\ue854\ue855\u4ca3\u4c9f\u4ca0\u4ca1\u4c77\u4ca2\u4d13",6,"\u4dae\ue864\ue468",93],["8135f437","\ue7c7"]]')},7014:function(T){"use strict";T.exports=JSON.parse('[["0","\\u0000",128],["a1","\uff61",62],["8140","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7"],["8180","\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["81b8","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["81c8","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["81da","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["81f0","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["81fc","\u25ef"],["824f","\uff10",9],["8260","\uff21",25],["8281","\uff41",25],["829f","\u3041",82],["8340","\u30a1",62],["8380","\u30e0",22],["839f","\u0391",16,"\u03a3",6],["83bf","\u03b1",16,"\u03c3",6],["8440","\u0410",5,"\u0401\u0416",25],["8470","\u0430",5,"\u0451\u0436",7],["8480","\u043e",17],["849f","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["8740","\u2460",19,"\u2160",9],["875f","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["877e","\u337b"],["8780","\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["889f","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["8940","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186"],["8980","\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["8a40","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b"],["8a80","\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["8b40","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551"],["8b80","\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["8c40","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8"],["8c80","\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["8d40","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d"],["8d80","\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["8e40","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62"],["8e80","\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["8f40","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3"],["8f80","\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["9040","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8"],["9080","\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["9140","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb"],["9180","\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["9240","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4"],["9280","\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["9340","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac"],["9380","\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["9440","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885"],["9480","\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["9540","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577"],["9580","\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["9640","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6"],["9680","\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["9740","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32"],["9780","\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["9840","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["989f","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["9940","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed"],["9980","\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["9a40","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638"],["9a80","\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["9b40","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80"],["9b80","\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["9c40","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060"],["9c80","\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["9d40","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b"],["9d80","\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["9e40","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e"],["9e80","\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["9f40","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef"],["9f80","\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["e040","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd"],["e080","\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e140","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff"],["e180","\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e240","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0"],["e280","\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e340","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37"],["e380","\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e440","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264"],["e480","\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e540","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec"],["e580","\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["e640","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7"],["e680","\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["e740","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c"],["e780","\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["e840","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599"],["e880","\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["e940","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43"],["e980","\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["ea40","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef"],["ea80","\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0\u582f\u69c7\u9059\u7464\u51dc\u7199"],["ed40","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f"],["ed80","\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["ee40","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559"],["ee80","\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["eeef","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["f040","\ue000",62],["f080","\ue03f",124],["f140","\ue0bc",62],["f180","\ue0fb",124],["f240","\ue178",62],["f280","\ue1b7",124],["f340","\ue234",62],["f380","\ue273",124],["f440","\ue2f0",62],["f480","\ue32f",124],["f540","\ue3ac",62],["f580","\ue3eb",124],["f640","\ue468",62],["f680","\ue4a7",124],["f740","\ue524",62],["f780","\ue563",124],["f840","\ue5e0",62],["f880","\ue61f",124],["f940","\ue69c"],["fa40","\u2170",9,"\u2160",9,"\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u2235\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a"],["fa80","\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f"],["fb40","\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19"],["fb80","\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9"],["fc40","\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"]]')}},Pt={};function gt(T){var A=Pt[T];if(void 0!==A)return A.exports;var n=Pt[T]={id:T,loaded:!1,exports:{}};return Gr[T].call(n.exports,n,n.exports,gt),n.loaded=!0,n.exports}return gt.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(T){if("object"==typeof window)return window}}(),gt.nmd=function(T){return T.paths=[],T.children||(T.children=[]),T},gt(2536)}()},8493:function(){this.I=this.I||{},this.I.vfs={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqWLoiAAAdT4AAACWEdQT1PInCKzAAHXUAAAZfhHU1VChRYO9AACPUgAABX2T1MvMpeDsUwAAAGYAAAAYGNtYXDOyFo6AAAWdAAABoJjdnQgO/gmfQAAL1AAAAD+ZnBnbagFhDIAABz4AAAPhmdhc3AACAAZAAHU7AAAAAxnbHlmJ9ZJigAAOpAAAZd6aGVhZAakHScAAAEcAAAANmhoZWEMnBKaAAABVAAAACRobXR4O9/cTQAAAfgAABR8bG9jYY3Y7xYAADBQAAAKQG1heHAIzxDGAAABeAAAACBuYW1lOSJt4gAB0gwAAALAcG9zdP9hAGQAAdTMAAAAIHByZXB5WM7TAAAsgAAAAs4AAQAAAAMBSDPLHDFfDzz1ABsIAAAAAADE8BEuAAAAAN8Gv2v6N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFHwABAAAFHwCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAAQAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA5YAZAAAAAAAAAAAAfcAAAH3AAACAABEAnwAyQTHAFIEXABJBa8AugTUADkBWwCsAqgAbQK0/5ADWABrBGcATAGH/48CJQAaAgwANAM0/5AEXABqBFwA+gRcABgEXAA1BFwABQRcAHIEXABtBFwAnQRcAEAEXACUAesAKQGu/5sD8gBCBEIAcAQPADsDqwClBvgAQQUQ/68E1gA7BQ0AcAUYADsEaQA7BEoAOwVJAHQFiQA7AhwASQRIAAcE3gA7BC4AOwbGADsFiQA7BVcAcwTlADsFVwBrBMgAOwScACkEoQCpBQgAYwTxAKUG4gDDBN3/1ASpAKgEpv/sAg8AAAMwAMACD/97Az4ATwOA/4ECZgDQBDkAMQRcAB8EEABGBGAARwQdAEUCswB1BFwAAwRGACAB4wAvAdv/EwPvACAB4wAvBs4AHgRJACAEbQBGBFz/1wRpAEYCoQAgBAEALgKKAEMERwBbA8IAbgXVAIAD2v/FA6z/qgPa/+4CoAA3AeUAIgKg/40FRwBpAeX/8QQ/AFAEg//zBYkAEgQUAEMB3f/4BML/2gM/ANoGGQBeA3kAwwOuAFYETACBBhoAXQOPAPgC5gDoBCYAJgLiAF0C4gBvAm8A1QRm/+YDzAB4AgcApQHt/8gC4gDgA4gAvwOtABEFuQC6Bg8AtQYTAJ4Drf/RB0H/gwQkACgFVwAgBJYAOQSdAB8GjgATBI0AXARvAEQEZgA6BHn/4ASjAEYFcAA2AewALwRSAC4ELgAjAhkAJAVgADUEZgAlB2YAVQcMAEcB7QA0BV0AUgKl/0cFVQBmBHAAQwVlAGMEzQBbAfX/CQQYAD8DpwEYA3MBKAOZAPgDUQEHAeMBDgKZAQECGv+uA6kA3gLlAMMCSP/pAAD9agAA/eoAAP0LAAD99AAA/NsAAPy6Af4BIwPtAPQCEQClBFEARAV5/7IFSABnBRf/xARvAAwFiQBEBG//2wWPAFYFXgCFBSkACgRjAEgEmf/xA+QAhQRmAEUEMAApBAUAigRmACUEawB1AoQAhARN/7gDzgBABKAAYARm/90ELQBKBGUASAQMAIcEPABoBXgAQAVvAE4GZABnBH4AUgQiAGcGGABoBdIAogU8AHMIUP/NCGMARAZRALQFiABCBO4ANgXW/4wHC/+rBJwAJQWJAEQFf//LBOEAlAX+AFsFrQBBBVAAywdNAEIHhABCBeMAigbAAEQE3gA2BTwAdgb6AEkE8f/pBEsARwRwADEDQgAuBK//jQXy/6cD8QAgBHsAMAQyADAEfP/IBcEAMQR6ADAEewAwA7sAYAWhAEkEmgAwBDkAeQZHADAGbAAlBNEAVgYQADEENwAxBC0AMgZWADEEQv+/BEYAIAQtAE4Glf/DBq8AMARwACAEewAwBtMAbgX9AE8ENgAvBvUASgXLAC0Erv+6BCb/ogbWAFsF3gBPBp4AJgW1ACoIwABJB5UALwQE/80Dvf/JBUgAZwRpAEME5ACtA+UAhQVIAGcEZgBDBssAdAX1AFIG0wBuBf0ATwUKAGkEJwBMBNgAQAAA/OcAAP0KAAD+FgAA/jsAAPo3AAD6TgXlAEQE0QAwBDYALwT0ADsEZ//XBEIANQN2ACUEwABEA+cAJQdx/6sGOv+nBXkARASeADAE4wA2BFwALgZaALwFWgB2BdsAOwS+ADAHkwA7BYgAJQf8AEIGvwAlBcEAawSvAFwE+//UBBT/xQb2AKwFNABXBZoAywR9AHkFRgDKBEkAlAVGABwGAACIBJoABATjADYEOQAuBdr/ywTT/8gFhwBEBGYAJQXtADsE0AAwByEAOwYYADEFXQBSBIQAPASE//0Env/5A5n/6QUQ/9QEKf/FBNEALgZiADEGsABIBiYArQUEAGgEKQCwA+kAoAeG/+AGRP/aB74APAZvACME0QBlA/4ATQWCAJsE+gB9BTwAaAXe/8sE1//IAwkA8wP/AAAH9AAAA/8AAAf0AAACrgAAAgQAAAFcAAAEZgAAAikAAAGfAAABAgAAANUAAAAAAAACLQAaAi0AGgUiAKYGGQCYA4r/XgGOALABjgCJAYz/lwGOANICyAC4AtAAlQKt/5QESAB3BG3/9gKeAKEDsQA4BTsAOAF0AFIHbwCWAlUAXQJVAAQDh//wAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgNHAH4C4v/cAuIALQLi/6sC4v+8AuL/sgLi/9gC4v/eAuL/8ALi/8kC4v/4BIP/8wYlAAoGXwA5CD8AOwW+AAkF/AAfBFwAUQWtAEMEAwBKBFIACwUf//IFJv/lBbsAzAOxAEsH+wA1BNsA6wTxAH8GAQC2BqwAkgalAJAGQwC+BG0ATQVkACQEi/+tBHAAqwSgAEEH+wBLAf3/FQRfADMEQgBwA/z/0wQZABgD6QBCAkQAdwJ8AHEB9f/kBNcAdQRNAFkEaAB1BqAAdQagAHUEyAB1BmgAKAAAAAAH9f+rCDUAXALY/+oC2ABsAtgAHAPxAGkD8QAnA/EAcAPwAEsD8QBKA/H/9wPxABcD8f/9A/EAvQPxAEYEA//dBAsAdQQz/7cF5gCUBEYAeQRbAEIEBwBuBAAAEgQpAB0EmABGBDsAHgSYAEwEvQAeBdQAHgOZAB4ENAAeA7L/9gHaACsEvgAeBIgATAOvAB4EAAASBBQABgOFABkDkwAeBEb/sASYAEwERv+wA27/0wSqAB4D0v/WBT4AUgTwAH0EzQAOBUkAbQRaAEgHCv/DBxgAHgVKAG4EqQAeBDkAIAT9/4kF3f+vBB8AEgTGACAELQAfBJz/xAQAAFoFAQAeBEgAVgYgAB4GeQAeBPYAUQXNACAELgAgBFoAIAZFAB4EZP/gA/P/+gYY/68EVwAfBOMAHwUPAGoFlwBQBEcAdQSE/7cGMQBtBEgAVQRIAB4FmAAuBKYAQAQfABIEnABGBBQAAAPGAB8H5AAeBIf/3gLY//sC2P/xAtgAFwLYAB0C2AAvAtgACALYADcDewCTAqABCwPIAB4EGv+ZBJ8ASAUjAEQE/QBEA/UAJgUVAEQD8AAmBF0AHgRaAEgEMAAeBGP/pgHvAPwDiQESAAD9KgPSANMD1gAiA/AAzgPXAM0DkwAeA4QBEgODARMC4gCPAuIAZALiAIoC4gCQAuIAogLiAHsC4gCqBVgAgAWDAIEFaABEBbMAgwW2AIMDuAC8BF8AOQQ3/4EEqv/TBEn/1QQOACsDiQEUAYb/vgZxAEwElgA+Ae3/DwRm/6wEZv/jBGb/uARmACwEZgBWBGYAJARmAGYEZgAbBGYAQARmAQ0CAP8JAf//CQH2AC8B9v94AfYALwQwAB4E2gBkBAEAYgRcAB8EEwBEBHAAQwRpACMEfABCBGv/1wR5AEIEHQBGBFwANQRO/78DaACpBLEALAOZ/+kGCv+aA9oAHgSY//QEvQAeBL0AHgH3AAACJQAaBTYALwU2AC8EZAA+BKEAqQKK//QFEP+vBRD/rwUQ/68FEP+vBRD/rwUQ/68FEP+vBQ0AcARpADsEaQA7BGkAOwRpADsCHABJAhwASQIcAEkCHABJBYkAOwVXAHMFVwBzBVcAcwVXAHMFVwBzBQgAYwUIAGMFCABjBQgAYwSpAKgEOQAxBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEOQAxBBAARgQdAEUEHQBFBB0ARQQdAEUB7AAvAewALwHsAC8B7AAvBEkAIARtAEYEbQBGBG0ARgRtAEYEbQBGBEcAWwRHAFsERwBbBEcAWwOs/6oDrP+qBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBQ0AcAQQAEYFDQBwBBAARgUNAHAEEABGBQ0AcAQQAEYFGAA7BPYARwRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUFSQB0BFwAAwVJAHQEXAADBUkAdARcAAMFSQB0BFwAAwWJADsERgAgAhwASQHsABECHABJAewALgIcAEkB7AAvAhz/iwHj/20CHABJBmQASQO+AC8ESAAHAfX/CQTeADsD7wAgBC4AOwHjAC8ELgA7AeP/ogQuADsCeQAvBC4AOwK/AC8FiQA7BEkAIAWJADsESQAgBYkAOwRJACAESQAgBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBMgAOwKhACAEyAA7AqH/nwTIADsCoQAgBJwAKQQBAC4EnAApBAEALgScACkEAQAuBJwAKQQBAC4EnAApBAEALgShAKkCigBDBKEAqQKKAEMEoQCpArIAQwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwbiAMMF1QCABKkAqAOs/6oEqQCoBKb/7APa/+4Epv/sA9r/7gSm/+wD2v/uB0H/gwaOABMFVwAgBGYAOgRd/68EXf+vBAcAbgRj/6YEY/+mBGP/pgRj/6YEY/+mBGP/pgRj/6YEWgBIA8gAHgPIAB4DyAAeA8gAHgHaACsB2gArAdoAKwHaACsEvQAeBJgATASYAEwEmABMBJgATASYAEwEWwBCBFsAQgRbAEIEWwBCBAsAdQRj/6YEY/+mBGP/pgRaAEgEWgBIBFoASARaAEgEXQAeA8gAHgPIAB4DyAAeA8gAHgPIAB4EiABMBIgATASIAEwEiABMBL4AHgHaAA4B2gArAdoAKwHk/4IB2gArA7L/9gQ0AB4DmQAeA5kAHgOZAB4DmQAeBL0AHgS9AB4EvQAeBJgATASYAEwEmABMBCkAHQQpAB0EKQAdBAAAEgQAABIEAAASBAAAEgQHAG4EBwBuBAcAbgRbAEIEWwBCBFsAQgRbAEIEWwBCBFsAQgXmAJQECwB1BAsAdQQD/90EA//dBAP/3QUQ/68EzQADBe0AEQKAABcFawBrBQ3/7QU9AB4ChAAgBRD/rwTWADsEaQA7BKb/7AWJADsCHABJBN4AOwbGADsFiQA7BVcAcwTlADsEoQCpBKkAqATd/9QCHABJBKkAqARjAEgEMAApBGYAJQKEAIQEPABoBFIALgRtAEYEZv/mA8IAbgRO/78ChABlBDwAaARtAEYEPABoBmQAZwRpADsEUQBEBJwAKQIcAEkCHABJBEgABwT9AEQE3gA7BOEAlAUQ/68E1gA7BFEARARpADsFiQBEBsYAOwWJADsFVwBzBYkARATlADsFDQBwBKEAqQTd/9QEOQAxBB0ARQR7ADAEbQBGBFz/1wQQAEYDrP+qA9r/xQQdAEUDQgAuBAEALgHjAC8B7AAvAdv/EwQyADADrP+qBuIAwwXVAIAG4gDDBdUAgAbiAMMF1QCABKkAqAOs/6oBWwCsAnwAyQQAAEQB9f8JAY4AiQbGADsGzgAeBRD/rwQ5ADEEaQA7BYkARAQdAEUEewAwBV4AhQVvAE4E5ACtA+UAhQgZAEYJAwBzBJwAJQPxACAFDQBwBBAARgSpAKgD5ACFAhwASQcL/6sF8v+nAhwASQUQ/68EOQAxBRD/rwQ5ADEHQf+DBo4AEwRpADsEHQBFBV0AUgQYAD8EGAA/Bwv/qwXy/6cEnAAlA/EAIAWJAEQEewAwBYkARAR7ADAFVwBzBG0ARgVIAGcEaQBDBUgAZwRpAEMFPAB2BC0AMgThAJQDrP+qBOEAlAOs/6oE4QCUA6z/qgVQAMsEOQB5BsAARAYQADEEYABHBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQIcAEkB7AAvAhwADQHj//AFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFCABjBEcAWwUIAGMERwBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwSpAKgDrP+qBKkAqAOs/6oEqQCoA6z/qgR+AAAEoQCpA7sAYAVQAMsEOQB5BFEARANCAC4GAACIBJoABARGACAE3gAsBN4ALARRABEDQv/nBREAWAQJADoEqQCoA+QAXgTd/9QD2v/FBDAAKQRK/9cGGQCYBFwAGARcADUEXAAFBFwAcgRwAIEEhABUBHAAlASEAH4FSQB0BFwAAwWJADsESQAgBRD/rwQ5ADEEaQA7BB0ARQIc/+AB7P+NBVcAcwRtAEYEyAA7AqEAIAUIAGMERwBbBIb/sQTWADsEXAAfBRgAOwRgAEcFGAA7BGAARwWJADsERgAgBN4AOwPvACAE3gA7A+8AIAQuADsB4//wBsYAOwbOAB4FiQA7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AAD//wAr/+0FcQSNBCYB8wAAAAcB8gHaAAD///+aAAAGAAYABiYChAAAAQcAdQKXAAAAC7YGGQ8BAU1WACs0AP////T/xgSjBh4GJgKGAAABBwB1AYIAHgALtgMwEQEBW1YAKzQA//8AEv38A+sEngYmAekAAAAHAcoA4v6e//8AlAAABikGHgYmAeUAAAEHAEQBpQAeAAu2BBgKAQFrVgArNAD//wCUAAAGKQYeBiYB5QAAAQcAdQIxAB4AC7YEFgoBAWtWACs0AP//AJQAAAYpBeYGJgHlAAABBwBqAXEAHgANtwUEHwoBAYRWACs0NAD//wB1AAAEZQYeBiYB4wAAAAcARACwAB7///+v/k4EiwWwBiYAJQAAAQcApAFmAAAAC7YDDgUBATlWACs0AP//ADH+TgPHBFAGJgBFAAABBwCkALQAAAALtgI7MQAATVYAKzQA//8AO/5YBLEFsAYmACkAAAEHAKQBJwAKAAu2BBACAABDVgArNAD//wBF/k4D2gRRBiYASQAAAQcApAD+AAAAC7YBLAAAAE1WACs0AP///6b+TgPjBI0GJgJDAAAABwCkAQsAAP//AB7+VgPwBI0GJgI4AAAABwCkANcACP////D+qgGfBDoGJgCNAAABBwCtAzYACgAOtAEHAgEBuP9/sFYAKzQAAAAAAA8AugADAAEECQAAAF4AAAADAAEECQABAAwAXgADAAEECQACAAwAagADAAEECQADABoAdgADAAEECQAEABoAdgADAAEECQAFACYAkAADAAEECQAGABoAtgADAAEECQAHAEAA0AADAAEECQAIAAwBEAADAAEECQAJACYBHAADAAEECQALABQBQgADAAEECQAMABQBQgADAAEECQANAFwBVgADAAEECQAOAFQBsgADAAEECQAZAAwAXgBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8ASQB0AGEAbABpAGMAUgBvAGIAbwB0AG8AIABJAHQAYQBsAGkAYwBWAGUAcgBzAGkAbwBuACAAMwAuADAAMAA1ADsAIAAyADAAMgAyAFIAbwBiAG8AdABvAC0ASQB0AGEAbABp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As//8wLR//MC0//zAuH/8wLj//MC5f/zAuf/8wMJ//MDC//zAw3/8wM+//MDm//zA6j/8wPO//MD0f/zA/7/8wQB//MEHP/zBB7/8wQg//MEW//zBF3/8wRf//MEYf/zBGP/8wRl//MEZ//zBGn/8wRr//MEbf/zBG//8wRx//MEsP/zBMn/8wBAAEf/7ABI/+wASf/sAEv/7ABV/+wAlP/sAJn/7AC7/+wAyP/sAMn/7AD3/+wBA//sAR7/7AEi/+wBQv/sAWD/7AFh/+wBa//sArL/7AKz/+wCtP/sArX/7AK2/+wCzv/sAtD/7ALS/+wC1P/sAtb/7ALY/+wC2v/sAtz/7ALe/+wC4P/sAuL/7ALk/+wC5v/sAuj/7AOv/+wD1f/sA9n/7APc/+wD9//sA/3/7AQC/+wEEP/sBBL/7AQT/+wEH//sBC7/7ARI/+wESv/sBEz/7ARO/+wEUP/sBFL/7ARU/+wEVv/sBGr/7ARs/+wEbv/sBHL/7ASt/+wEuv/sBLz/7ABAACf/5gAr/+YAM//mADX/5gCD/+YAk//mAJj/5gCz/+YAuP/CAMQAEADT/+YBCP/mARf/5gEb/+YBHf/mAR//5gEh/+YBQf/mAWr/5gJV/+YCVv/mAlj/5gJZ/+YCl//mAqH/5gKi/+YCo//mAqT/5gKl/+YCzf/mAs//5gLR/+YC0//mAuH/5gLj/+YC5f/mAuf/5gMJ/+YDC//mAw3/5gM+/+YDm//mA6j/5gPO/+YD0f/mA/7/5gQB/+YEHP/mBB7/5gQg/+YEW//mBF3/5gRf/+YEYf/mBGP/5gRl/+YEZ//mBGn/5gRr/+YEbf/mBG//5gRx/+YEsP/mBMn/5gBHABAAAAASAAAAR//nAEj/5wBJ/+cAS//nAFX/5wCU/+cAmf/nALv/5wDEAA8AyP/nAMn/5wD3/+cBA//nAR7/5wEi/+cBQv/nAWD/5wFh/+cBa//nAYYAAAGKAAABjgAAAY8AAAKy/+cCs//nArT/5wK1/+cCtv/nAs7/5wLQ/+cC0v/nAtT/5wLW/+cC2P/nAtr/5wLc/+cC3v/nAuD/5wLi/+cC5P/nAub/5wLo/+cDr//nA9X/5wPZ/+cD3P/nA/f/5wP9/+cEAv/nBBD/5wQS/+cEE//nBB//5wQu/+cESP/nBEr/5wRM/+cETv/nBFD/5wRS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/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wL2/vgDCv/rAwz/6wMO/+sDHwAUAyEAFAMjABQDJv/qAyj/6gMq/+oDLP/qAy7/6gMw/+oDNP/oA0P/wANE/8ADRf/AA0b/wANH/8ADSP/AA0n/wANe/8ADX//AA2D/wAOX/1YDn/9WA6//6wOz/+oDtf/rA7f/6AO6/+oDu//rA7z/6gPD/vgDx/9WA9IAFAPU/94D1f/rA9f/6wPZ/+sD2v/oA9z/6wPj/+gD6//oA/P/VgP0/94D9//rA/z/6AP9/+sEAv/rBAT/6AQJ/1YECv/eBAv/VgQM/94EEP/rBBL/6wQT/+sEHf/rBB//6wQh/+sEJf/oBCf/6AQp/+gELv/rBC//VgQw/94EMf9WBDL/3gQz/1YENP/eBDX/VgQ2/94EN/9WBDj/3gQ5/1YEOv/eBDv/VgQ8/94EPf9WBD7/3gQ//1YEQP/eBEH/VgRC/94EQ/9WBET/3gRF/1YERv/eBEj/6wRK/+sETP/rBE7/6wRQ/+sEUv/rBFT/6wRW/+sEXP/rBF7/6wRg/+sEYv/rBGT/6wRm/+sEaP/rBGr/6wRs/+sEbv/rBHD/6wRy/+sEdP/qBHb/6gR4/+oEev/qBHz/6gR+/+oEgP/qBIL/6ASE/+gEhv/oBIgAFASq/1YEq//eBK3/6wSx/+sEtf/qBLr/6wS8/+sE0AAUBNT/6ATW/+gE3P/ABOP/wAT7/8AAAgCgAAQABAAAAAYABgABAAsADAACABMAEwAEACUAKgAFACwALQALAC8ANgANADgAOAAVADoAPwAWAEUARgAcAEkASgAeAEwATAAgAE8ATwAhAFEAVAAiAFYAVgAmAFgAWAAnAFoAXQAoAF8AXwAsAIoAigAtAJYAlgAuAJ0AnQAvALEAtQAwALcAuQA1ALsAuwA4AL0AvgA5AMAAwQA7AMMAxQA9AMcAzgBAANIA0gBIANQA3gBJAOAA7wBUAPEA8QBkAPYA+ABlAPsA/ABoAP4BAABqAQMBBQBtAQoBCgBwAQ0BDQBxARgBGgByASIBIgB1AS4BMAB2ATMBNQB5ATcBNwB8ATkBOQB9ATsBOwB+AUMBRAB/AVQBVACBAVYBVgCCAVgBWACDAVwBXgCEAYQBhQCHAYcBiQCJAegB6ACMAeoB6wCNAe0B7QCPAfAB8ACQAfsB/QCRAkACQACUAkMCQwCVAlUCVQCWAlcCWACXAosCjACZAo4CjgCbApACpQCcAqoCsQCyArMCtgC6ArsCwAC+AsUCzQDEAs8CzwDNAtEC0QDOAtMC0wDPAtUC1QDQAtcC4ADRAukC6wDbAu0C7QDeAu8C7wDfAvEC8QDgAvMC8wDhAvgC+ADiAvoC+gDjAvwC/ADkAv4C/gDlAwADAADmAwIDDgDnAxADEAD0AxIDEgD1AxQDFAD2Ax8DHwD3AyEDIQD4AyMDIwD5AzEDMQD6AzMDNgD7AzgDOAD/AzoDOgEAA0ADSQEBA1QDWAELA14DYAEQA2UDZQETA3cDegEUA34DgAEYA4kDiQEbA5cDnAEcA58DrgEiA7EDsQEyA7UDtQEzA7cDtwE0A7sDuwE1A74DvwE2A8EDwgE4A8QDygE6A8wDzgFBA9AD1QFEA9cD2AFKA9oD3QFMA+MD5AFQA+YD5gFSA+gD6AFTA+oD7QFUA/AD9QFYA/cD9wFeA/sD/AFfBAEEAQFhBAMEDAFiBA8EEAFsBBIEFQFuBBwEHQFyBCEEIQF0BCMEKQF1BC8EVwF8BFkEWQGlBFsEaAGmBHAEcAG0BIEEhgG1BIgEiAG7BIwEjQG8BJAEkAG+BJIEkwG/BJUElQHBBJcElwHCBKgErAHDBK4ErgHIBLAEsQHJBLMEswHLBLcEuQHMBLsEuwHPBL0EvwHQBMEEwQHTBMMEwwHUBMUEywHVBM0EzQHcBNAE0AHdBNME1wHeBNkE2QHjBNsE3AHkBOAE4AHmBOME4wHnBO4E7gHoBPsE+wHpBQIFAgHqBQYFBgHrAAIAmgAGAAYAAAALAAsAAQAQABAAAgASABIAAwAlACkABAAsADQACQA4AD4AEgBFAEcAGQBJAEkAHABMAEwAHQBRAFQAHgBWAFYAIgBaAFoAIwBcAF4AJACKAIoAJwCWAJYAKACxALQAKQC9AL0ALQDBAMEALgDHAMcALwDUANUAMADXANcAMgDaANoAMwDcAN4ANADgAOYANwDsAOwAPgDuAO4APwD3APcAQAD8APwAQQD+AP8AQgEEAQUARAEKAQoARgENAQ0ARwEYARoASAEuATAASwEzATUATgE3ATcAUQE5ATkAUgE7ATsAUwFDAUQAVAFUAVQAVgFWAVYAVwFYAVgAWAFcAV4AWQGEAYoAXAGOAY8AYwHoAegAZQHtAe0AZgHwAfEAZwH7Af0AaQIPAg8AbAIeAiAAbQJAAkAAcAJDAkMAcQJVAlUAcgJXAlgAcwKLAowAdQKOAo4AdwKQArYAeAK7AsAAnwLFAtUApQLXAuAAtgLpAusAwALtAu0AwwLvAu8AxALxAvEAxQLzAvMAxgL2AvYAxwL4AvgAyAL6AvoAyQL8AvwAygL+Av4AywMAAwAAzAMCAw4AzQMQAxAA2gMSAxIA2wMUAxQA3AMfAx8A3QMhAyEA3gMjAyMA3wMlAyUA4AMnAycA4QMpAykA4gMrAysA4wMtAy0A5AMvAy8A5QMxAzEA5gMzAzsA5wNAA0kA8ANUA1gA+gNeA2AA/wNlA2UBAgN2A3oBAwN+A4ABCAOJA4kBCwOXA5wBDAOfA64BEgOxA7EBIgO1A7UBIwO3A7cBJAO7A7sBJQO+A78BJgPBA8oBKAPMA84BMgPQA9UBNQPXA90BOwPjA+QBQgPmA+YBRAPoA+gBRQPqA+0BRgPwA/UBSgP3A/cBUAP7A/wBUQQBBAwBUwQPBBABXwQSBBUBYQQcBB0BZQQhBCEBZwQjBCkBaAQvBFcBbwRZBFkBmARbBGgBmQRwBHABpwRzBHMBqAR1BHUBqQSBBIYBqgSIBIgBsASMBI0BsQSQBJABswSSBJMBtASVBJUBtgSXBJcBtwSoBKwBuASuBK4BvQSwBLEBvgSzBLMBwAS3BLkBwQS7BLsBxAS9BL8BxQTBBMEByATDBMMByQTFBMsBygTNBM0B0QTQBNAB0gTSBNcB0wTZBNwB2QTgBOAB3QTjBOMB3gTpBOkB3wTuBO4B4AT5BPkB4QT7BPsB4gUCBQIB4wUGBQYB5AACAXQABgAGAA8ACwALAA8AEAAQABoAEgASABoAJQAlAAIAJgAmACQAJwAnABAAKAAoAAEAKQApAAQALgAuAAgALwAvAA0AMAAwABcAMwAzAAEANAA0ACUAOAA4ABIAOQA5AAgAOgA6ABwAOwA7ABgAPAA8ABEAPQA9AAwAPgA+ABkARQBFAAMARgBGAA4ARwBHABMASQBJAAUATABMAAkAUQBSAAkAUwBTAAYAVABUAA4AVgBWABsAWgBaAAcAXABcABUAXQBdAAcAXgBeAB8AigCKAA4AlgCWAAEAsQCxABYAsgCyAAIAswCzAAEAtAC0AAIAvQC9AAcAwQDBAAkAxwDHAA4A1ADVACAA2gDaABEA3gDeACEA5ADkACAA5gDmACAA7ADsACIA7gDuABUA9wD3AA4A/AD8ACMA/gD+ACMA/wD/AA4BBAEFACMBCgEKACMBDQENAAIBGAEYAAYBGQEZABwBGgEaAAcBLgEuAA4BLwEvABYBMAEwACIBMwEzABEBNAE0ABUBNQE1AA0BNwE3AA0BOQE5AA0BQwFDABEBRAFEABUBWAFYAAEBXAFcACIBXQFdABEBXgFeABUBhAGFAA8BhgGGABoBhwGJAA8BigGKABoBjgGPABoB6AHoAB0B7QHtAAoB8AHwAB4B8QHxABQB+wH7AAsB/AH8AAoB/QH9AAsCDwIPABQCHgIgABQCQAJAAAoCQwJDAAsCVQJVABACVwJYAAECiwKMAAECjgKOABICkAKWAAIClwKXABACmAKbAAQCoQKlAAECpgKpAAgCqgKqAAwCqwKxAAMCsgKyABMCswK2AAUCuwK7AAkCvALAAAYCxQLGAAcCxwLHAAICyALIAAMCyQLJAAICygLKAAMCywLLAAICzALMAAMCzQLNABACzgLOABMCzwLPABAC0ALQABMC0QLRABAC0gLSABMC0wLTABAC1ALUABMC1QLVAAEC1wLXAAQC2ALYAAUC2QLZAAQC2gLaAAUC2wLbAAQC3ALcAAUC3QLdAAQC3gLeAAUC3wLfAAQC4ALgAAUC6gLqAAkC9gL2AAgC+AL4AA0C+gL6ABcC/AL8ABcC/gL+ABcDAAMAABcDAwMDAAkDBQMFAAkDBwMIAAkDCQMJAAEDCgMKAAYDCwMLAAEDDAMMAAYDDQMNAAEDDgMOAAYDEAMQABsDEgMSABsDFAMUABsDHwMfABIDIQMhABIDIwMjABIDJQMlAAgDJwMnAAgDKQMpAAgDKwMrAAgDLQMtAAgDLwMvAAgDMQMxABgDMwMzAAwDNAM0AAcDNQM1AAwDNgM2ABkDNwM3AB8DOAM4ABkDOQM5AB8DOgM6ABkDOwM7AB8DQANBAAoDQgNCAB0DQwNJAAsDVANYAAoDXgNgAAsDZQNlAAoDdgN2ABQDdwN6AB4DfgOAAAoDiQOJAB0DlwOXAAIDmAOYAAQDmwObAAEDnAOcAAwDnwOfAAIDoAOgACQDoQOhAAQDogOiABkDpQOlAA0DqAOoAAEDqQOpACUDqgOqABIDqwOr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AAIAAQAAAAAAAAAeACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbABsAAAAPAA8AGAAPAA8ADwAYAAAAAAAAABgAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAZACQAAAAOABUAHAAAAAUAAAAFAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAACgAFAAoAAAAAAAAAAAAAAAAAFQAFAAAAAAAVAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAUAEgAZABUAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgACAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAgAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAgACAAIACwALAAsACwAMAAYABgAGAAYABgAGAAYAAQABAAEAAQABAAAAAAAAAAAAAwAHAAcABwAHAAcACAAIAAgACAAJAAkABAAGAAQABgAEAAYAAgABAAIAAQACAAEAAgABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAIAAQACAAEAAgABAAIAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAMAAgAHAAIABwACAAcAAAAAAAAAAAAAAAAAFAARABQAEQAUABEAFAARABQAEQANAAAADQAAAA0AAAALAAgACwAIAAsACAALAAgACwAIAAsACAAWAAAADAAJAAwAFwAdABcAHQAXAB0AAAAAAAIAAAAAAAAAAAAKAAoACgAKAAoACgAKAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAA4ADgAOAA4AEgAKAAoACgAFAAUABQAFAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAHAAcABwAHAAAABUAAAAOAA4ADgAOAA4ADgAkABIAEgAAAAAAAAAEAAAAAAAAAAIADAAAAAAABAAAAAAAFwAAAAAAAAAAAAAAAgAAAAAADAAQAAAADAABAAAAAwAAAAgAAAAHAAAACQAAAAAACAAHAAgAAAAAAAAAAAAAAAAAIwAAAAAAHwAEAAAAAAAAAAAAAAAAAAIAAAAAAAIADQAQAAYAAQADAAcAAwABAAkAEwABAAMAEQAAAAAAAAADAAkAFgAAABYAAAAWAAAADAAJAA8ADwAAAAAADwAAAAMABAAGAAAAAAABAAMAAAAAABoACQABAAIAAAAAAAIAAQAMAAkAAAAQABMAAAAEAAYABAAGAAAAAAAAAAEAAAABAAEAEAATAAAAAAAAAAMAAAADAAIABwACAAEAAgAHAAAAAAAfAAkAHwAJAB8ACQAgACIAAAADAAEABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAIABwACAAcAAgAHAAIABwACAAcAAgAHAAIABwACAAEAAgABAAIAAQACAAcAAgABAAsACAALAAgAAAAIAAAACAAAAAgAAAAIAAAACAAMAAkADAAJAAwACQAAAA0AAAAgACIAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMABAAGAAAAAQAAAAAAAgAHAAAAAAAAAAgAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAwACAAAAAAAAAAAAFAARAA0AAAALABoACQAaAAkAFgAAABcAHQAAAAoAAAAAAAAABQASAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAA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BOgB/QH+Af8E7QIAAgAE7gTvAgECAgIDAgoE/AT9AgsCDAINAg4CDwIQBQAFAQUDBQYFDwISAhMCFAIVAhYCFwIYAhkCGgIbAgQCBQIGAgcCCAIJAksCHQIeAh8CIAUJAiECIwIkAiUCJwIpAocDQgNDA0QDRQNGA0cDSANJA0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQOTA14DXwNgA2EDYgNjA2QDZQNmA2cDaANpA2oDawNsA20DbgNvA3ADcQNyA3MFEAN1A3YDdwN4A3kDegN7A3wDfQN+A38DgAOBA4IDgwOEA4UDhgUTA4cDiAOKA4kDiwOMA40DjgOPA5ADkQOSA5QDlQOWBREFEgTcBN0E3gTfBOkE7ATqBOsE8ATxBPIE4AThBOIE+wT+BP8FAgUEBQUCEQUHBPME9AT1BPYE9wT4BPkE+gUUBRUFFgUXBQgFCgULAigFDQIqBQ4FDAImAhwCIgUcBR0AAgcAAPoB9wKCAeEB4AHfAd4B3QHcAdsB2gHZAdgCQwJCAkECQAI4AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AHrAeoB6QHoAecB5gHlAeQB4wHiAfgB+QKEAoYChQKHAoMCiAJiAfoB+wH8Af0B/gH/AgACAQICAgMCBAIFAgYCBwIIAgkCCgILAgwCDQIOAhACEQUPAhICEwIUAhUCFgIXAhgCGQIaAhsCSwIdAh4CHwIgBQkCIQIjAiQCJQImAicCKAIpAisCLAIuAi0DQANBA0IDQwNEA0UDRgNHA0gDSQNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0BRADdQN2A3cDeAN5A3oDewN8A30DfgN/A4ADgQOCA4MDhAOFA4YFEwOHA4gDigOJA4sDjAONA44DjwOQA5EDkgOTA5QDlQOWBREFEgTcBN0E3gTfBOAE4QTiBOME5ATlBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgCDwT5BPoE+wT8BP0E/gT/BQAFAQUCBQMFBAUFBQYFBwUUBRUFFgUXBQgFCgULBQ0CKgUOBQwCHAIiBRwFHQABAAEBewABAAEASwABAAEAuwABAAEANgABAAEAEwABAAIDGQMaAAIG5AbYAAIG5gbYAAEG7gABBvAAAQbyAAIAAQAUAB0AAAABAAIALwBPAAEAAwBJAEsCegACAAAAAQbeAAEABgLLAswC3QLeA2ADaQABAAYATQBOAvID3wPhBFoAAgADAZQBlAAAAdUB1wABAi8CNQAEAAIAAgCoAKwAAQEkAScAAQABAAwAJwAoACsAMwA1AEYARwBIAEsAUwBUAFUAAgACABQAHQAAAmUCbgAKAAIABgBNAE0ABgBOAE4ABALyAvIABQPfA98AAwPhA+EAAgRaBFoAAQACAAQAFAAdAAACdgJ2AAoCgQKBAAsEngSlAAwAAgAGABoAGgAAABwAHAABAloCXwACAmMCYwAIAmUCbgAJAnUCdQATAAEAFAAaABwCWgJbAlwCXQJeAl8CYwJ1AnYCgQSeBJ8EoAShBKIEowSkBKUAAQXeAAEF4AABBeIAAQXkAAEF5gABBegAAQXqAAEF7AABBe4AAQXwAAEF8gABBfQAAQX2AAEF+AABBfoAAgX8BgIAAgYCBggAAgYIBg4AAgYOBhQAAgYUBhoAAgYaBiAAAgYgBiYAAgYmBiwAAgYsBjIAAgYyBjgAAgY4Bj4AAwY+BkQGSgADBkgGTgZUAAMGUgZYBl4AAwZcBmIGaAADBmYGbAZyAAMGcAZ2BnwAAwZ6BoAGhgADBoQGigaQAAQGjgaUBpoGoAAEBpwGogaoBq4ABQaqBrAGtga8BsIABQa8BsIGyAbOBtQABQbOBtQG2gbgBuYABQbgBuYG7AbyBvgABQbyBvgG/gcEBwoABQcEBwoHEAcWBxwABQcWBxwHIgcoBy4ABQcoBy4HNAc6B0AABQc6B0AHRgdMB1IABgdMB1IHWAdeB2QHagAGB2IHaAduB3QHegeAAAYHeAd+B4QHigeQB5YABgeOB5QHmgegB6YHrAAGB6QHqgewB7YHvAfCAAYHugfAB8YHzAfSB9gABgfQB9YH3AfiB+gH7gAHCC4H5gfsB/IH+Af+CAQABwgmB/oIAAgGCAwIEggYAAEA6wAKAEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAVQBWAFcAWABZAFoAWwBcAF0AXgCFAIYAhwCJAIoAiwCNAJAAkgCUALsAvAC9AL4AvwDAAMEAwgDDAMQAxQDGAMcAyADJAMoAywDMAM0AzgDqAOsA7ADtAO4A7wDwAPEA8gDzAPQA9QD2APcA+AD5APoA+wD8AP0A/gD/AQABAQECAQMBBAEFAQYBBwEwATQBNgE4AToBPAFCAUQBRgFKAU0BWgKNAo8CqwKsAq0CrgKvArACsQKyArMCtAK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLIAsoCzALOAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvUC9wL5AvsC/QL/AwEDAwMFAwcDCgMMAw4DEAMSAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM3AzkDOwM9Az8DrwOwA7EDsgO0A7UDtgO3A7gDuQO6A7sDvAO9A9QD1QPWA9cD2APZA9oD2wPcA90D3gPfA+AD4QPiA+MD5QPnA+kD6wQABAIEBAQSBBkEHwQlBI8EkASUBJgFGQUbAAEA+gAIAAoAFAAVABYAFwAYABkAGgAbABwAHQAlACYAJwAoACkAKgArACwALQAuAC8AMAAxADIAMwA0ADUANgA3ADgAOQA6ADsAPAA9AD4AZQBnAIEAgwCEAIwAjwCRAJMAsQCyALMAtAC1ALYAtwC4ALkAugDSANMA1ADVANYA1wDYANkA2gDbANwA3QDeAN8A4ADhAOIA4wDkAOUA5gDnAOgA6QEvATMBNQE3ATkBOwFBAUMBRQFJAUsBTAFYAVkBpwGtAbIBtQKLAowCjgKQApECkgKTApQClQKWApcCmAKZApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgLHAskCywLNAs8C0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9AL2AvgC+gL8Av4DAAMCAwQDBgMJAwsDDQMPAxEDEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNgM4AzoDPAM+A5cDmAOZA5oDmwOcA50DnwOgA6EDogOjA6QDpQOmA6cDqAOpA6oDqwOsA60DrgO+A78DwAPBA8IDwwPEA8UDxgPHA8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA+QD5gPoA+oD/wQBBAMEGAQeBCQEjgSTBJcFGAUaAcwAAgBNAc0AAgBQAc4AAwBKAE0BzwADAEoAUAABAAEASgHLAAIASgHRAAIAWAHQAAIAWAABAAMASgBXAJUAAAABAAEAAQABAAAAAwS3AAIArQLNAAIAqQS9AAIArQTKAAIAqQS4AAIArQLOAAIAqQSnAAIAqQS+AAIArQRaAAIArQTLAAIAqQM8AAIAqQM+AAIAqQM9AAIAqQM/AAIAqQS2AAIAqQS7AAIBygS5AAIArQSmAAIAqQLnAAIBygPxAAIAqQTFAAIArQMfAAIBygTQAAIArQTVAAIArQTTAAIAqgM2AAIAqQTZAAIArQS8AAIBygS6AAIArQPyAAIAqQTGAAIArQMgAAIBygTRAAIArQTWAAIArQTUAAIAqgM3AAIAqQTaAAIArQS/AAIAqQL4AAIBygTBAAIArQL6AAIAqQL8AAIBygTDAAIArQMVAAIAqQMbAAIBygTOAAIArQPmAAIAqQTXAAIArQPkAAIAqATAAAIAqQL5AAIBygTCAAIArQL7AAIAqQL9AAIBygTEAAIArQMWAAIAqQMcAAIBygTPAAIArQPnAAIAqQTYAAIArQPlAAIAqAMPAAIAqQMRAAIBygTMAAIArQSyAAIArAMQAAIAqQMSAAIBygTNAAIArQSzAAIArAMCAAIAqQMEAAIBygTHAAIArQSoAAIAqAKgAAIAqgKqAAIAqQSBAAIArQPqAAIAqASDAAIAqwSFAAIAqgMDAAIAqQMFAAIBygTIAAIArQSpAAIAqAK7AAIAqgLFAAIAqQSCAAIArQPrAAIAqASEAAIAqwSGAAIAqgK4AAIAqQK3AAIAqARYAAIAqwLsAAIAqgSvAAIArARpAAIAqQRxAAIArQRrAAIAqARtAAIAqwRvAAIAqgRqAAIAqQRyAAIArQRsAAIAqARuAAIAqwRwAAIAqgR3AAIAqQR/AAIArQR5AAIAqAR7AAIAqwR9AAIAqgR4AAIAqQSAAAIArQR6AAIAqAR8AAIAqwR+AAIAqgKRAAIAqQQvAAIArQKQAAIAqAQxAAIAqwKTAAIAqgSqAAIArAKZAAIAqQRHAAIArQKYAAIAqARJAAIAqwRLAAIAqgSsAAIArAKdAAIAqQRZAAIArQKcAAIAqARXAAIAqwLrAAIAqgSuAAIArAKsAAIAqQQwAAIArQKrAAIAqAQyAAIAqwKuAAIAqgSrAAIArAK0AAIAqQRIAAIArQKzAAIAqARKAAIAqwRMAAIAqgStAAIArAK9AAIAqQRcAAIArQK8AAIAqAReAAIAqwK/AAIAqgSxAAIArALCAAIAqQR0AAIArQLBAAIAqAR2AAIAqwMmAAIAqgS1AAIArAKiAAIAqQRbAAIArQKhAAIAqARdAAIAqwKkAAIAqgSwAAIArAKnAAIAqQRzAAIArQKmAAIAqAR1AAIAqwMlAAIAqgS0AAIArATJAAMAqgCpBNIAAwCqAKkAAgARACUAKQAAACsALQAFAC8ANAAIADYAOwAOAD0APgAUAEUASQAWAEsATQAbAE8AVAAeAFYAWwAkAF0AXgAqAIEAgQAsAIMAgwAtAIYAhgAuAIkAiQAvAI0AjQAwAJgAmwAxANAA0AA1AAA=","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqWLoiAAAb9IAAACWEdQT1Pk1zcKAAHBoAAAZixHU1VChRYO9AACJ8wAABX2T1MvMpfnsYsAAAGYAAAAYGNtYXDOyFo6AAAWdAAABoJjdnQgO/gmfQAAL1AAAAD+ZnBnbagFhDIAABz4AAAPhmdhc3AACAAZAAG/PAAAAAxnbHlmoVpeAgAAOpAAAYGiaGVhZAatHSkAAAEcAAAANmhoZWEK9grYAAABVAAAACRobXR4JpFVzgAAAfgAABR8bG9jYSpiho0AADBQAAAKQG1heHAIzxDGAAABeAAAACBuYW1lQlx1PgABvDQAAALmcG9zdP9tAGQAAb8cAAAAIHByZXB5WM7TAAAsgAAAAs4AAQAAAAMBSOm9QH9fDzz1ABkIAAAAAADE8BEuAAAAAN8Gv236Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQABAAAAAAAAAAAAAAAAAAAFHwABAAAFHwCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAQAAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA4wAZAAAAAAAAAAAAf0AAAH9AAACHgCMAo4AYATTAFYEjABkBeQAZAUhAFUBVwBSAsUAgQLMACcDjAAcBHEAQgHKACICuABQAjkAhgMfAAEEjABoBIwAqgSMAFIEjABOBIwANwSMAH8EjABzBIwARASMAGcEjABdAhwAfwHrADMEEgA+BIAAjwQoAH4D5AA7By0AWwVOABEFDQCUBTkAZgU5AJQEhQCUBGgAlAVzAGsFrQCUAkQApQRyAC8FDgCUBFIAlAb/AJQFrQCUBYMAZQUbAJQFgwBgBQkAlATYAEsE4AAtBTwAgAUqABEHCwAvBQ0AJgTjAAgE0wBQAiwAhQNVABICLAALA24ANgOVAAICkAA4BFAAVgR/AH0ELQBOBIIAUARJAFEC0wArBIkAUgRyAHoCCgB8AgL/qwQsAH0CCgCMBvgAfAR0AHoEigBOBH8AfQSHAFAC1AB9BB4ASQKqAAoEcwB3A/gAFgXwACMEBgAfA+sADAQGAFECqwA4Af0ArwKrABwFTQB1Ah8AhQSCAGcEtQBfBZ4AXARAAA0B+ACJBPkAXAOSAGMGSQBaA5AAjgPjAFcEawB/BkoAWQPaAJ0DDwCBBEoAXAL1AD0C9QA3ApQAbwTBAJMD6gBJAkQAkAITAGwC9QCCA6cAeQPjAF4FygBfBiIAUwZcAGYD5QBGB37//ARCAEwFgQBpBM8AlQTrAIoGwgBIBKQAaASRAEMEhgBOBJEAgQTsAFAFsAAfAhcAkASaAI0EZAAgAlIAIAWXAJAEhgB9B7AAZQc+AFkCBwCJBY0AVQLQ/94FkQBbBJ0ATQWjAIAE5gB3AiX/rgQ5AFcD3gCQA6oAbgPaAJ0DfgB1AgoAgQKqAHgCTAApA84AdwMoAEsCcwCJAAD8kwAA/WIAAPx0AAD9OgAA/AgAAP0eAmsAzQQ7AG4CRACQBHQAmQXCABoFegBcBTUAIASMAGoFrgCZBIwARwX5AEwFsQBGBVkAbASEAFYEyACXBA0AHgSGAFEEZQBiBA8AWQSGAH0EpwB2AqUAowRoABUEGgBnBPwAMASGAIAEMwBQBI4AUAQqADwEXQB/BdEARgXMAFIGlABlBLQAeASH/+EGeQArBf0AJAVTAGcIgQAtCIwAmQZRAC0FpQCPBQcAkAX9ACYHqQAVBNsASQWmAJIFqAAsBQsAMgZfAE4F+ACOBYUAkQeaAJUH+gCVBiEAFQbwAJkFAgCQBUgAYwdiAKEE6AAXBIAAWgSLAI8DWwCDBPIAJwaHACAEFwBOBJIAhARsAI8ElAAgBgIAjwSRAIQEkgCEA/oAIwXUAFMEzwCEBGUAYAaNAIQG8QB9BSEAIAZvAI8EaQCPBDkAUAaCAJIEcAAuBHL/1wQ5AFIG1gAdBuQAhASG/+gEkgCEB1gAiAZqAHIEaP/hBygAmAYCAIYFFgAaBGMACwdLAKwGPQCaBuUAfgXdAIEJKgClB+4AkAQgACgD9QAyBXoAYASIAE0FGAAQBA0AHgV6AGAEhgBOB1QAiAZWAHUHWACIBmoAcgUQAGcERwBdBPsAcAAA/HAAAPx1AAD9gQAA/aYAAPomAAD6UQYgAJIFEwCEBGj/4QUQAJQEhgB9BGsAjwOjAH0E6gCZBCQAfQgjABUG4AAgBckAmQT7AI8FLgCRBKwAjQaUADQFoAA8BiAAlAUHAIQH3QCUBa0AfQhJAJcG7wB9BjcAZwUEAGAFOQAmBEEAHwcoACkFbwAnBfIAkQTcAGAFcACBBHQAdQWFAIkGGwAKBMT/ywUgAJEEeACNBh8ALAUUACAFrQCZBIYAfQYqAJQFEQCEB3UAlAZ0AI8FjQBVBKMAWwSkAF0EwwAsA6oAJAVpACYEcQAfBPkATwbzAGgG2wBfBlEAPQUoAC8EgwBKBEgAcwe8AEIGpAA/B/UAlAaeAHQFBgBcBC8AVQWoACEFHQBEBU4AfQZGACwFOwAgAxsAZAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACtwBQArcAUAUjAJwGKgB7A5oACAG/AGUBugA3Ac4ANQGjAEsDCwBtAxMAQwMAADUEWwA/BJoAXQLMAIoD/QCNBaoAjQHPAF4HrgBQAnQAbAJpAFUDmQArAvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwNcAGcC9QBMAvUAggL1AD0C9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHBLUAYgZuACMGvwCZCJUAlAY7ACMGmwB9BIwAXAXqACMELQAqBJsAJAViAE8FfgArBeQAbgPjAEUIKQCQBQgAbwUUAJYGNwBcBt4AVgbQAF4GrABcBJMAYQWKAKYE3gA/BIAAnASdADsIUgBhAjL/pwSRAGUEgACPBBIAPQQoAH0EDgAlAlEAnAKOAGQB6QBHBRkAKwStABoEvQArBygAKwcoACsFDwArBrcASQAAAAAIMABZCDUAXAL1AD0C9QCCAvUATAQdAE8EHQBXBB0AOAQdAF8EHQBmBB0AMwQdAD0EHQBDBB0AmAQdAFgEKwBBBD4ABgRcABMGCQAnBHkACASIAGkEPwAlBDcAPwRkAHUEvQBNBGsAdgS9AE4E3AB2BgUAdgO3AHYEXgB2A9YAJgH+AIYE3QB2BKcAVgPIAHYENwA/BGgAOgOlAAoDvAB2BHkACAS9AE4EeQAIA50ARgTZAHYEHgBEBaYATwVYAE8E4ABeBZIAIwSAAE8HVgAkB1gAdgWZACUE2AB2BHIAdgVeACcGRQAbBEYAQwTiAHYEXQB2BMsAJARMAB8FYgB2BI0AQwaEAHYHDgB2BWEACQYWAHYEZwB2BIAAPQaPAHYEhABCBCgACwajABsEoAB2BQ0AdgV0ACEF+ABOBFYABgTEABMGlwAjBI0AQwSNAHYGAAAOBM4ATQRHAEMEvQBOBGgAOgP0AEUILQB2BPQAKAL1ADcC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDtgCNAq4AmAPgAHYEOgAMBLYAVgVBAJkFKACZBDAAgQU1AJkEKACBBHoAdgSAAE8EYAB2BJoACAH+AJADoQB1AAD8ngP3AHoD+v9RBAsAeQP6AHkDvAB2A50AdQOdAHUC9QBMAvUANgL1AFAC9QBOAvUANwL1AEsC9QBHBXMAaQWeAGkFfwCZBdkAaQXaAGkEKACWBIIAawRYAA8EuwA0BGsAZwQuAEIDoQB2AboAYgaYAE4ErwBuAgz/pwSMADgEjABoBIwALASMAGIEjABfBIwANASMAGwEjABZBIwAZwSMAOYCJv+uAiX/rgIXAJACF//6AhcAkARgAHYE5gBgBDAAOQSIAH0EPgBPBJUATgSRAE4EnQBJBJIAfQSaAE4ESQBRBIkAUARZADQDrQBhBQwAXwPEAAUGRv/sBAcAdgS9AE4FDgA0BNwAdgH9AAACuABQBVcAFwVXABcEkP/1BOAALQKq/+sFTgARBU4AEQVOABEFTgARBU4AEQVOABEFTgARBTkAZgSFAJQEhQCUBIUAlASFAJQCRP/LAkQApQJE/8oCRP++Ba0AlAWDAGUFgwBlBYMAZQWDAGUFgwBlBTwAgAU8AIAFPACABTwAgATjAAgEUABWBFAAVgRQAFYEUABWBFAAVgRQAFYEUABWBC0ATgRJAFEESQBRBEkAUQRJAFECF/+1AhcAkAIX/7MCF/+oBHQAegSKAE4EigBOBIoATgSKAE4EigBOBHMAdwRzAHcEcwB3BHMAdwPrAAwD6wAMBU4AEQRQAFYFTgARBFAAVgVOABEEUABWBTkAZgQtAE4FOQBmBC0ATgU5AGYELQBOBTkAZgQtAE4FOQCUBRgAUASFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEFcwBrBIkAUgVzAGsEiQBSBXMAawSJAFIFcwBrBIkAUgWtAJQEcgB6AkT/tAIX/50CRP/RAhf/uwJE/90CF//GAkQAGAIK//8CRACfBrUApQQLAHwEcgAvAiX/rgUOAJQELAB9BFIAlAIKAIwEUgCUAgoAWQRSAJQCoACMBFIAlALmAIwFrQCUBHQAegWtAJQEdAB6Ba0AlAR0AHoEdP+jBYMAZQSKAE4FgwBlBIoATgWDAGUEigBOBQkAlALUAH0FCQCUAtQAUgUJAJQC1AA3BNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTgAC0CqgAKBOAALQKqAAoE4AAtAtIACgU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwcLAC8F8AAjBOMACAPrAAwE4wAIBNMAUAQGAFEE0wBQBAYAUQTTAFAEBgBRB37//AbCAEgFgQBpBIYATgR6/6UEev+lBD8AJQSaAAgEmgAIBJoACASaAAgEmgAIBJoACASaAAgEgABPA+AAdgPgAHYD4AB2A+AAdgH+/6kB/gCGAf7/pwH+/5wE3AB2BL0ATgS9AE4EvQBOBL0ATgS9AE4EiABpBIgAaQSIAGkEiABpBD4ABgSaAAgEmgAIBJoACASAAE8EgABPBIAATwSAAE8EegBhA+AAdgPgAHYD4AB2A+AAdgPgAHYEpwBWBKcAVgSnAFYEpwBWBN0AdgH+/5EB/v+vAf7/ugH+ABcB/gB9A9YAJgReAHYDtwB2A7cAdgO3AHYDtwB2BNwAdgTcAHYE3AB2BL0ATgS9AE4EvQBOBGQAdQRkAHUEZAB1BDcAPwQ3AD8ENwA/BDcAPwQ/ACUEPwAlBD8AJQSIAGkEiABpBIgAaQSIAGkEiABpBIgAaQYJACcEPgAGBD4ABgQrAEEEKwBBBCsAQQVOABEE6f9CBhH/SgKo/04Fl/+0BUf/QQVt/8ICpf+FBU4AEQUNAJQEhQCUBNMAUAWtAJQCRAClBQ4AlAb/AJQFrQCUBYMAZQUbAJQE4AAtBOMACAUNACYCRP++BOMACASEAFYEZQBiBIYAfQKlAKMEXQB/BJoAjQSKAE4EwQCTA/gAFgRZADQCpf/DBF0AfwSKAE4EXQB/BpQAZQSFAJQEdACZBNgASwJEAKUCRP++BHIALwUoAJkFDgCUBQsAMgVOABEFDQCUBHQAmQSFAJQFpgCSBv8AlAWtAJQFgwBlBa4AmQUbAJQFOQBmBOAALQUNACYEUABWBEkAUQSSAIQEigBOBH8AfQQtAE4D6wAMBAYAHwRJAFEDWwCDBB4ASQIKAHwCF/+oAgL/qwRsAI8D6wAMBwsALwXwACMHCwAv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FgoBAWtWACs0AP//ACcAAAXlBesGJgHlAAABBwBqATsAHgANtwUEHwoBAYRWACs0NAD//wAGAAAEOAYeBiYB4wAAAAcARACKAB7//wAR/lcFPwWwBiYAJQAAAQcApAGAAAMAC7YDDgUBATlWACs0AP//AFb+XAP5BE4GJgBFAAABBwCkALQACAALtgI7MQAATVYAKzQA//8AlP5eBE0FsAYmACkAAAEHAKQBQgAKAAu2BBACAABDVgArNAD//wBR/lQECgROBiYASQAAAQcApAEFAAAAC7YBLAAAAE1WACs0AP//AAj+VASRBI0GJgJDAAAABwCkASIAAP//AHb+XAO2BI0GJgI4AAAABwCkAPEACP//AHj+oQGLBDoGJgCNAAABBwCtA1oACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAA4AeAADAAEECQADABoAXgADAAEECQAEABoAXgADAAEECQAFACYAhgADAAEECQAGABoArAADAAEECQAHAEAAxgADAAEECQAIAAwBBgADAAEECQAJACYBEgADAAEECQALABQBOAADAAEECQAMABQBOAADAAEECQANAFwBTAADAAEECQAOAFQBqAADAAEECQAQAAwB/AADAAEECQARAAwCCAADAAEECQAZAAwB/ABDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAwADUAOwAgADIAMAAyADIAUgBvAGIAbwB0AG8ALQBNAGUAZABpAHUAbQBSAG8AYgBvAHQAbwAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEcAbwBvAGcAbABlAC4ARwBvAG8AZwBsAGUAQwBoAHIAaQBzAHQAaQBhAG4AIABSAG8AYgBlAHIAdABzAG8AbgBHAG8AbwBnAGwAZQAuAGMAbwBtAEwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAQQBwAGEAYwBoAGUAIABMAGkAYwBlAG4AcwBlACwAIABWAGUAcgBzAGkAbwBuACAAMgAuADAAaAB0AHQAcAA6AC8ALwB3AHcAdwAuAGEAcABhAGMAaABlAC4AbwByAGcALwBsAGkAYwBlAG4AcwBlAHMALwBMAEkAQwBFAE4AUwBFAC0AMgAuADAAUgBvAGIAbwB0AG8ATQBlAGQAaQB1AG0AAAADAAAAAAAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAcsB0QACAeIB9gABAfoB+gABAgMCAwABAgUCBQABAgwCDgABAhACEQABAhMCEwABAhcCFwABAhkCGwABAiECIQABAiYCKAABAioCKgABAjgCOAABAjsCOwABAj0CPQABAkACQwABAm8CcwABAoMCiAABAosC8wABAvYDtQABA7cDtwABA7kDwwABA8UDzgABA9AD6wABA+8D7wABA/ED+AABA/oD/AABA/8EAwABBAUEkAABBJMElAABBJYElwABBJkEnAABBKYFAgABBQQFDgABBREFHgABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAeABAACgACAC4ANgACY3BzcAA6a2VybgBAAARERkxUADhjeXJsADhncmVrADhsYXRuADgAAQAAAAEAIgACAAgAAgAuBBAAAAABAAAAAAABAAEADgAAAAEPAgAFACQASAAA//8AAgAAAAEAAUuMAAQAAAHsE9wRBBEEF7QQ5hdaEVQRkhJkEXZH7hKkEqQVxBG2EqQSpBJkEsYgkBlQH8YRpBHMFwAY3hHiFO4SghIsEUAp5BEiJsIRXhFeEw4SLBGEGHgSRhH4EQoSRhU0EiwSZBnGHwAXWhJkF1olxCfEIwodmBDsEkYRLD54EV438iTSKMYSEhDyEPhBYhD+FHYUChpIOeQtpjRCLFgSpDDqPBYXACFeEqQSpBV6EqQSpBKkMpQa0hKkE7IeOhx0GBYj7B0GEUoiNBEKEzQ2GERgEiwUsCsaG1wS6BIsG+YTXhaqFEAS6BdaEw4RpBJGE4gSLB8AEUoXABEKFcQVxBXEEqQXABEKEqQSpBJkEUoXABEKEQQvSBEEEQQRBBEcFg4WXBEWETYREBEWERARaBEQEZISZBJkEmQSZB/GF1oXWhdaF1oXWhdaF1oRkhF2EXYRdhF2EqQSpBKkEqQSpBJkEmQSZBJkEmQY3hKCEoISghKCEoISghKCEUARQBFAEUARXhMOEw4TDhMOEw4SRhJGF1oSghdaEoIXWhKCEZIRkhGSEZISZBF2EUARdhFAEXYRQBF2EUARdhFAEqQRXhKkEqQSpBKkEqQVxBG2EbYRthG2EqQRXhKkEV4SpBFeEV4SZBMOEmQTDhJkEw4RhBGEEYQfxh/GH8YRzBjeEkYY3hHiEeIR4hEWERYRHBEQERAREBEQERAREBEQERYRFhEWERYRFhEQERAREBEWETYRNhE2ETYRFhEWERYRHBdaEXYSpBKkEmQY3hdaEVQRdhHiEqQSpBXEEqQSpBJkEsYfxhjeFwASpBjeEV4TDhJGEw4Rdh8AEqQSpBXEFcQVehdaEVQfABF2EqQSpBJkEsYRkh/GFwASghFAEw4SLBJGEQoRQBFKEkYRzBHMEcwY3hJGEQQRBBEEEqQRXhdaEoIRdhFAEaQSRhGSGN4SRhKkFwARChKkF1oSghdaEoIRdhFAEUARQBcAEQoSZBMOEw4SLBV6EkYVehJGFXoSRhdaEoIXWhKCF1oSghdaEoIXWhKCF1oSghdaEoIXWhKCF1oSghdaEoIXWhKCF1oSghF2EUARdhFAEXYRQBF2EUARdhFAEXYRQBF2EUARdhFAEqQSpBJkEw4SZBMOEmQTDhJkEw4SZBMOEmQTDhJkEw4TDhje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BGX/8wRn//MEaf/zBGv/8wRt//MEb//zBHH/8wSw//MEyf/zAEAAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sALv/7ADI/+wAyf/sAPf/7AED/+wBHv/sASL/7AFC/+wBYP/sAWH/7AFr/+wCsv/sArP/7AK0/+wCtf/sArb/7ALO/+wC0P/sAtL/7ALU/+wC1v/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sA6//7APV/+wD2f/sA9z/7AP3/+wD/f/sBAL/7AQQ/+wEEv/sBBP/7AQf/+wELv/sBEj/7ARK/+wETP/sBE7/7ARQ/+wEUv/sBFT/7ARW/+wEav/sBGz/7ARu/+wEcv/sBK3/7AS6/+wEvP/sAEAAJ//mACv/5gAz/+YANf/mAIP/5gCT/+YAmP/mALP/5gC4/8IAxAAQANP/5gEI/+YBF//mARv/5gEd/+YBH//mASH/5gFB/+YBav/mAlX/5gJW/+YCWP/mAln/5gKX/+YCof/mAqL/5gKj/+YCpP/mAqX/5gLN/+YCz//mAtH/5gLT/+YC4f/mAuP/5gLl/+YC5//mAwn/5gML/+YDDf/mAz7/5gOb/+YDqP/mA87/5gPR/+YD/v/mBAH/5gQc/+YEHv/mBCD/5gRb/+YEXf/mBF//5gRh/+YEY//mBGX/5gRn/+YEaf/mBGv/5gRt/+YEb//mBHH/5gSw/+YEyf/mAEcAEAAEABIABABH/+cASP/nAEn/5wBL/+cAVf/nAJT/5wCZ/+cAu//nAMQADwDI/+cAyf/nAPf/5wED/+cBHv/nASL/5wFC/+cBYP/nAWH/5wFr/+cBhgAEAYoABAGOAAQBjwAEArL/5wKz/+cCtP/nArX/5wK2/+cCzv/nAtD/5wLS/+cC1P/nAtb/5wLY/+cC2v/nAtz/5wLe/+cC4P/nAuL/5wLk/+cC5v/nAuj/5wOv/+cD1f/nA9n/5wPc/+cD9//nA/3/5wQC/+cEEP/nBBL/5wQT/+cEH//nBC7/5wRI/+cESv/nBEz/5wRO/+cEUP/nBFL/5wRU/+cEVv/nBGr/5wRs/+cEbv/nBHL/5wSt/+cEuv/nBLz/5wBNAAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oALv/6ADI/+gAyf/oAPf/6AED/+gBHv/oASL/6AFC/+gBYP/oAWH/6AFr/+gBhAAQAYUAEAGHABABiAAQAYkAEAKy/+gCs//oArT/6AK1/+gCtv/oAs7/6ALQ/+gC0v/oAtT/6ALW/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gDr//oA9X/6APZ/+gD3P/oA+wAEAPtABAD8AAQA/f/6AP9/+gEAv/oBBD/6AQS/+gEE//oBB//6AQu/+gESP/oBEr/6ARM/+gETv/oBFD/6ARS/+gEVP/oBFb/6ARq/+gEbP/oBG7/6ARy/+gErf/oBLr/6AS8/+gATwBHAAEASAABAEkAAQBLAAEAVQABAJQAAQCZAAEAuwABAMgAAQDJAAEA7QArAPIAFAD2/+MA9wABAPn/8AD8/+YA/v/1AQMAAQEEABQBHgABASIAAQE6/9MBQgABAUj/8AFK/98BUQAUAWAAAQFhAAEBawABAW3/4wFwABQCsgABArMAAQK0AAECtQABArYAAQLOAAEC0AABAtIAAQLUAAEC1gABAtgAAQLaAAEC3AABAt4AAQLgAAEC4gABAuQAAQLmAAEC6AABA68AAQPVAAED2QABA9wAAQP3AAED/QABBAIAAQQQAAEEEgABBBMAAQQfAAEEK//wBC4AAQRIAAEESgABBEwAAQROAAEEUAABBFIAAQRUAAEEVgABBGoAAQRsAAEEbgABBHIAAQSL//AErQABBLoAAQS8AAEAUwA4/74AUf/1AFL/9QBU//UAWv/vAF3/7wC9/+8Awf/1ANL/vgDW/74A5v/JAOz/9QDw//UA8f/1APP/9QD0//UA9f/1APb/3wD4//UA+v/1APv/9QD+//UBAP/1AQX/9QEJ/+0BGv/vASD/6wEr//UBNv/1ATn/vgE6/98BPP/1AT7/9QFF/74BTP/pAVP/9QFV//UBV//1AVz/9QFj//UBbf/gArv/9QLF/+8Cxv/vAwP/9QMF//UDB//1Awj/9QMf/74DIf++AyP/vgM0/+8Dsf/1A7f/7wPS/74D1v/1A9j/9QPa/+8D3f/1A+L/9QPj/+8D6//vA/L/9QP4//UD/P/vBAT/7wQZ//UEG//1BCX/7wQn/+8EKf/vBC3/9QSC/+8EhP/vBIb/7wSI/74Ejf/1BKn/9QTG//UEyP/1BND/vgTU/+8E1v/vAGgAOP8zADr/yAA8//AAPf+sAFH/7wBS/+8AVP/vAMH/7wDS/zMA1P/1ANb/MwDa//AA3f/1AN7/6wDh/+YA5v/CAOz/7wDw/+8A8f/vAPP/7wD0/+8A9f/vAPb/zgD4/+8A+v/vAPv/7wD+/+8BAP/vAQX/7wEZ/8gBK//vATP/8AE2/+8BOf8zATr/zQE8/+8BPv/vAUP/8AFF/zMBR//mAUn/5gFM/98BUP/1AVP/7wFV/+8BV//vAVz/7wFd//ABYv/QAWT/6wFm//UBbP+fAW3/0AFv//UCqv+sArv/7wMD/+8DBf/vAwf/7wMI/+8DH/8zAyH/MwMj/zMDM/+sAzX/rAOc/6wDq/+sA6z/8AOu/6wDsf/vA8b/6wPS/zMD0//wA9b/7wPY/+8D3f/vA+L/7wPq/6wD8v/vA/j/7wP7/8gEA/+sBAb/8AQU//AEGf/vBBv/7wQk/+sEJv/rBCj/6wQq/+YELf/vBIH/rASD/6wEhf+sBIj/MwSK/+YEjf/vBJf/rASp/+8Exv/vBMj/7wTQ/zME0//IBNX/yABoAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAC7/7QAyP+0AMn/tAD3/7QBA/+0ARj/egEe/7QBIv+0AUL/tAFg/7QBYf+0AWv/tAHR/2QCsv+0ArP/tAK0/7QCtf+0Arb/tAK8/3oCvf96Ar7/egK//3oCwP96As7/tALQ/7QC0v+0AtT/tALW/7QC2P+0Atr/tALc/7QC3v+0AuD/tALi/7QC5P+0Aub/tALo/7QDCv96Awz/egMO/3oDFv9kAxj/ZAMa/2QDHP9kAx7/ZAOv/7QDtf96A7v/egPV/7QD1/96A9n/tAPc/7QD3v9kA/f/tAP9/7QEAv+0BBD/tAQS/7QEE/+0BB3/egQf/7QEIf96BC7/tARI/7QESv+0BEz/tARO/7QEUP+0BFL/tARU/7QEVv+0BFz/egRe/3oEYP96BGL/egRk/3oEZv96BGj/egRq/7QEbP+0BG7/tARw/3oEcv+0BK3/tASx/3oEuv+0BLz/tAS+ABQEwAAUBMIAFATP/2QAagA4/+YAOv/nADz/8gA9/+cAUf/xAFL/8QBU//EAXP/xAMH/8QDS/+YA1v/mANr/8gDe/+4A4f/oAOb/5gDs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ASL/3AEr/+EBNv/hATz/4QE+/+EBQv/cAVP/4QFV/+EBV//hAVz/4QFg/9wBYf/cAWv/3AKy/9wCs//cArT/3AK1/9wCtv/cArv/4QK8/9YCvf/WAr7/1gK//9YCwP/WAsH/3QLC/90Cw//dAsT/3QLF/+ECxv/hAs7/3ALQ/9wC0v/cAtT/3ALW/9wC2P/cAtr/3ALc/9wC3v/cAuD/3ALi/9wC5P/cAub/3ALo/9wDA//hAwX/4QMH/+EDCP/hAwr/1gMM/9YDDv/WAyb/3QMo/90DKv/dAyz/3QMu/90DMP/dAzT/4QOv/9wDsf/hA7P/3QO1/9YDt//hA7r/3QO7/9YDvP/dA9X/3APW/+ED1//WA9j/4QPZ/9wD2v/hA9z/3APd/+ED4v/hA+P/4QPr/+ED8v/hA/f/3AP4/+ED/P/hA/3/3AQC/9wEBP/hBBD/3AQS/9wEE//cBBn/4QQb/+EEHf/WBB//3AQh/9YEJf/hBCf/4QQp/+EELf/hBC7/3ARI/9wESv/cBEz/3ARO/9wEUP/cBFL/3ARU/9wEVv/cBFz/1gRe/9YEYP/WBGL/1gRk/9YEZv/WBGj/1gRq/9wEbP/cBG7/3ARw/9YEcv/cBHT/3QR2/90EeP/dBHr/3QR8/90Efv/dBID/3QSC/+EEhP/hBIb/4QSN/+EEqf/hBK3/3ASx/9YEtf/dBLr/3AS8/9wExv/hBMj/4QTU/+EE1v/hAL8ABgAMAAsADABH/+gASP/oAEn/6ABKAAwAS//oAFP/6gBV/+gAWgALAF0ACwCU/+gAmf/oALv/6AC9AAsAvv/0AMT/1wDGAAsAyP/oAMn/6ADKAAwA9//oAQP/6AEY/+oBGgALAR7/6AEi/+gBQv/oAWD/6AFh/+gBa//oAYQADAGFAAwBhwAMAYgADAGJAAwB4wANAeYADQHoAA4B6f/1Aev/7AHt/+0B9f/sAfv/vwH8/+0B/f+/AgQADgIF/+0CCAAOAiAADgIh/+0CIgANAiQADgIq/+0CQf/uAkP/vwKy/+gCs//oArT/6AK1/+gCtv/oArz/6gK9/+oCvv/qAr//6gLA/+oCxQALAsYACwLO/+gC0P/oAtL/6ALU/+gC1v/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAwr/6gMM/+oDDv/qAzQACwND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/8ADSf/AA17/wANf/8ADYP/AA5f/TgOf/04Dr//rA7P/6gO1/+sDt//oA7r/6gO7/+sDvP/qA8P/DQPH/04D0gAUA9T/3gPV/+sD1//rA9n/6wPa/+gD3P/rA+P/6APr/+gD8/9OA/T/3gP3/+sD/P/oA/3/6wQC/+sEBP/oBAn/TgQK/94EC/9OBAz/3gQQ/+sEEv/rBBP/6wQd/+sEH//rBCH/6wQl/+gEJ//oBCn/6AQu/+sEL/9OBDD/3gQx/04EMv/eBDP/TgQ0/94ENf9OBDb/3gQ3/04EOP/eBDn/TgQ6/94EO/9OBDz/3gQ9/04EPv/eBD//TgRA/94EQf9OBEL/3gRD/04ERP/eBEX/TgRG/94ESP/rBEr/6wRM/+sETv/rBFD/6wRS/+sEVP/rBFb/6wRc/+sEXv/rBGD/6wRi/+sEZP/rBGb/6wRo/+sEav/rBGz/6wRu/+sEcP/rBHL/6wR0/+oEdv/qBHj/6gR6/+oEfP/qBH7/6gSA/+oEgv/oBIT/6ASG/+gEiAAUBKr/TgSr/94Erf/rBLH/6wS1/+oEuv/rBLz/6wTQABQE1P/oBNb/6ATc/8AE4//ABPv/wAACAKAABAAEAAAABgAGAAEACwAMAAIAEwATAAQAJQAqAAUALAAtAAsALwA2AA0AOAA4ABUAOgA/ABYARQBGABwASQBKAB4ATABMACAATwBPACEAUQBUACIAVgBWACYAWABYACcAWgBdACgAXwBfACwAigCKAC0AlgCWAC4AnQCdAC8AsQC1ADAAtwC5ADUAuwC7ADgAvQC+ADkAwADBADsAwwDFAD0AxwDOAEAA0gDSAEgA1ADeAEkA4ADvAFQA8QDxAGQA9gD4AGUA+wD8AGgA/gEAAGoBAwEFAG0BCgEKAHABDQENAHEBGAEaAHIBIgEiAHUBLgEwAHYBMwE1AHkBNwE3AHwBOQE5AH0BOwE7AH4BQwFEAH8BVAFUAIEBVgFWAIIBWAFYAIMBXAFeAIQBhAGFAIcBhwGJAIkB6AHoAIwB6gHrAI0B7QHtAI8B8AHwAJAB+wH9AJECQAJAAJQCQwJDAJUCVQJVAJYCVwJYAJcCiwKMAJkCjgKOAJsCkAKlAJwCqgKxALICswK2ALoCuwLAAL4CxQLNAMQCzwLPAM0C0QLRAM4C0wLTAM8C1QLVANAC1wLgANEC6QLrANsC7QLtAN4C7wLvAN8C8QLxAOAC8wLzAOEC+AL4AOIC+gL6AOMC/AL8AOQC/gL+AOUDAAMAAOYDAgMOAOcDEAMQAPQDEgMSAPUDFAMUAPYDHwMfAPcDIQMhAPgDIwMjAPkDMQMxAPoDMwM2APsDOAM4AP8DOgM6AQADQANJAQEDVANYAQsDXgNgARADZQNlARMDdwN6ARQDfgOAARgDiQOJARsDlwOcARwDnwOuASIDsQOxATIDtQO1ATMDtwO3ATQDuwO7ATUDvgO/ATYDwQPCATgDxAPKAToDzAPOAUED0APVAUQD1wPYAUoD2gPdAUwD4wPkAVAD5gPmAVID6APoAVMD6gPtAVQD8AP1AVgD9wP3AV4D+wP8AV8EAQQBAWEEAwQMAWIEDwQQAWwEEgQVAW4EHAQdAXIEIQQhAXQEIwQpAXUELwRXAXwEWQRZAaUEWwRoAaYEcARwAbQEgQSGAbUEiASIAbsEjASNAbwEkASQAb4EkgSTAb8ElQSVAcEElwSXAcIEqASsAcMErgSuAcgEsASxAckEswSzAcsEtwS5AcwEuwS7Ac8EvQS/AdAEwQTBAdMEwwTDAdQExQTLAdUEzQTNAdwE0ATQAd0E0wTXAd4E2QTZAeME2wTcAeQE4ATgAeYE4wTjAecE7gTuAegE+wT7AekFAgUCAeoFBgUGAesAAgCaAAYABgAAAAsACwABABAAEAACABIAEgADACUAKQAEACwANAAJADgAPgASAEUARwAZAEkASQAcAEwATAAdAFEAVAAeAFYAVgAiAFoAWgAjAFwAXgAkAIoAigAnAJYAlgAoALEAtAApAL0AvQAtAMEAwQAuAMcAxwAvANQA1QAwANcA1wAyANoA2gAzANwA3gA0AOAA5gA3AOwA7AA+AO4A7gA/APcA9wBAAPwA/ABBAP4A/wBCAQQBBQBEAQoBCgBGAQ0BDQBHARgBGgBIAS4BMABLATMBNQBOATcBNwBRATkBOQBSATsBOwBTAUMBRABUAVQBVABWAVYBVgBXAVgBWABYAVwBXgBZAYQBigBcAY4BjwBjAegB6ABlAe0B7QBmAfAB8QBnAfsB/QBpAg8CDwBsAh4CIABtAkACQABwAkMCQwBxAlUCVQByAlcCWABzAosCjAB1Ao4CjgB3ApACtgB4ArsCwACfAsUC1QClAtcC4AC2AukC6wDAAu0C7QDDAu8C7wDEAvEC8QDFAvMC8wDGAvYC9gDHAvgC+ADIAvoC+gDJAvwC/ADKAv4C/gDLAwADAADMAwIDDgDNAxADEADaAxIDEgDbAxQDFADcAx8DHwDdAyEDIQDeAyMDIwDfAyUDJQDgAycDJwDhAykDKQDiAysDKwDjAy0DLQDkAy8DLwDlAzEDMQDmAzMDOwDnA0ADSQDwA1QDWAD6A14DYAD/A2UDZQECA3YDegEDA34DgAEIA4kDiQELA5cDnAEMA58DrgESA7EDsQEiA7UDtQEjA7cDtwEkA7sDuwElA74DvwEmA8EDygEoA8wDzgEyA9AD1QE1A9cD3QE7A+MD5AFCA+YD5gFEA+gD6AFFA+oD7QFGA/AD9QFKA/cD9wFQA/sD/AFRBAEEDAFTBA8EEAFfBBIEFQFhBBwEHQFlBCEEIQFnBCMEKQFoBC8EVwFvBFkEWQGYBFsEaAGZBHAEcAGnBHMEcwGoBHUEdQGpBIEEhgGqBIgEiAGwBIwEjQGxBJAEkAGzBJIEkwG0BJUElQG2BJcElwG3BKgErAG4BK4ErgG9BLAEsQG+BLMEswHABLcEuQHBBLsEuwHEBL0EvwHFBMEEwQHIBMMEwwHJBMUEywHKBM0EzQHRBNAE0AHSBNIE1wHTBNkE3AHZBOAE4AHdBOME4wHeBOkE6QHfBO4E7gHgBPkE+QHhBPsE+wHiBQIFAgHjBQYFBgHkAAIBdAAGAAYADwALAAsADwAQABAAGgASABIAGgAlACUAAgAmACYAJAAnACcAEAAoACgAAQApACkABAAuAC4ACAAvAC8ADQAwADAAFwAzADMAAQA0ADQAJQA4ADgAEgA5ADkACAA6ADoAHAA7ADsAGAA8ADwAEQA9AD0ADAA+AD4AGQBFAEUAAwBGAEYADgBHAEcAEwBJAEkABQBMAEwACQBRAFIACQBTAFMABgBUAFQADgBWAFYAGwBaAFoABwBcAFwAFQBdAF0ABwBeAF4AHwCKAIoADgCWAJYAAQCxALEAFgCyALIAAgCzALMAAQC0ALQAAgC9AL0ABwDBAMEACQDHAMcADgDUANUAIADaANoAEQDeAN4AIQDkAOQAIADmAOYAIADsAOwAIgDuAO4AFQD3APcADgD8APwAIwD+AP4AIwD/AP8ADgEEAQUAIwEKAQoAIwENAQ0AAgEYARgABgEZARkAHAEaARoABwEuAS4ADgEvAS8AFgEwATAAIgEzATMAEQE0ATQAFQE1ATUADQE3ATcADQE5ATkADQFDAUMAEQFEAUQAFQFYAVgAAQFcAVwAIgFdAV0AEQFeAV4AFQGEAYUADwGGAYYAGgGHAYkADwGKAYoAGgGOAY8AGgHoAegAHQHtAe0ACgHwAfAAHgHxAfEAFAH7AfsACwH8AfwACgH9Af0ACwIPAg8AFAIeAiAAFAJAAkAACgJDAkMACwJVAlUAEAJXAlgAAQKLAowAAQKOAo4AEgKQApYAAgKXApcAEAKYApsABAKhAqUAAQKmAqkACAKqAqoADAKrArEAAwKyArIAEwKzArYABQK7ArsACQK8AsAABgLFAsYABwLHAscAAgLIAsgAAwLJAskAAgLKAsoAAwLLAssAAgLMAswAAwLNAs0AEALOAs4AEwLPAs8AEALQAtAAEwLRAtEAEALSAtIAEwLTAtMAEALUAtQAEwLVAtUAAQLXAtcABALYAtgABQLZAtkABALaAtoABQLbAtsABALcAtwABQLdAt0ABALeAt4ABQLfAt8ABALgAuAABQLqAuoACQL2AvYACAL4AvgADQL6AvoAFwL8AvwAFwL+Av4AFwMAAwAAFwMDAwMACQMFAwUACQMHAwgACQMJAwkAAQMKAwoABgMLAwsAAQMMAwwABgMNAw0AAQMOAw4ABgMQAxAAGwMSAxIAGwMUAxQAGwMfAx8AEgMhAyEAEgMjAyMAEgMlAyUACAMnAycACAMpAykACAMrAysACAMtAy0ACAMvAy8ACAMxAzEAGAMzAzMADAM0AzQABwM1AzUADAM2AzYAGQM3AzcAHwM4AzgAGQM5AzkAHwM6AzoAGQM7AzsAHwNAA0EACgNCA0IAHQNDA0kACwNUA1gACgNeA2AACwNlA2UACgN2A3YAFAN3A3oAHgN+A4AACgOJA4kAHQOXA5cAAgOYA5gABAObA5sAAQOcA5wADAOfA58AAgOgA6AAJAOhA6EABAOiA6IAGQOlA6UADQOoA6gAAQOpA6kAJQOqA6oAEgOrA6sADAOsA6wAEQOuA64ADAOxA7EACQO1A7UABgO3A7cABwO7A7sABgO+A74ABAO/A78AFgPDA8MACAPEA8UADQPGA8YAIQPHA8cAAgPIA8gAJAPJA8kAFgPKA8oABAPOA84AAQPQA9AAJQPRA9EAEAPSA9IAEgPTA9MAEQPUA9QAAwPVA9UABQPXA9cABgPYA9gADgPZA9kAEwPaA9oABwPbA9sAFQPcA9wABQPdA90AIgPjA+MABwPkA+QAGAPmA+YAGAPoA+gAGAPqA+oADAPrA+sABwPsA+0ADwPwA/AADwPyA/IACQPzA/MAAgP0A/QAAwP1A/UABAP3A/cABQP7A/sAHAP8A/wABwQBBAEAEAQCBAIAEwQDBAMADAQEBAQABwQGBAYAEQQHBAcAFQQJBAkAAgQKBAoAAwQLBAsAAgQMBAwAAwQPBA8ABAQQBBAABQQSBBMABQQUBBQAEQQVBBUAFQQcBBwAAQQdBB0ABgQhBCEABgQjBCMADgQkBCQAIQQlBCUABwQmBCYAIQQnBCcABwQoBCgAIQQpBCkABwQvBC8AAgQwBDAAAwQxBDEAAgQyBDIAAwQzBDMAAgQ0BDQAAwQ1BDUAAgQ2BDYAAwQ3BDcAAgQ4BDgAAwQ5BDkAAgQ6BDoAAwQ7BDsAAgQ8BDwAAwQ9BD0AAgQ+BD4AAwQ/BD8AAgRABEAAAwRBBEEAAgRCBEIAAwRDBEMAAgREBEQAAwRFBEUAAgRGBEYAAwRHBEcABARIBEgABQRJBEkABARKBEoABQRLBEsABARMBEwABQRNBE0ABAROBE4ABQRPBE8ABARQBFAABQRRBFEABARSBFIABQRTBFMABARUBFQABQRVBFUABARWBFYABQRbBFsAAQRcBFwABgRdBF0AAQReBF4ABgRfBF8AAQRgBGAABgRhBGEAAQRiBGIABgRjBGMAAQRkBGQABgRlBGUAAQRmBGYABgRnBGcAAQRoBGgABgRwBHAABgRzBHMACAR1BHUACASBBIEADASCBIIABwSDBIMADASEBIQABwSFBIUADASGBIYABwSIBIgAEgSMBIwAFgSNBI0AIgSQBJAACQSSBJIAIASTBJMAFgSVBJUADQSXBJcADASpBKkACQSqBKoAAgSrBKsAAwSsBKwABASwBLAAAQSxBLEABgSzBLMAGwS3BLcAJAS4BLgADgS5BLkAAQS7BLsAAQS+BL4ACQS/BL8ADQTBBMEADQTDBMMAFwTGBMYACQTIBMgACQTJBMkAAQTKBMoAJQTLBMsADgTNBM0AGwTQBNAAEgTSBNIACATTBNMAHATUBNQABwTVBNUAHATWBNYABwTXBNcAGATZBNkAGQTaBNoAHwTbBNsAAQTcBNwACwTgBOAACgTjBOMACwTpBOkAFATuBO4AHQT5BPkAFAT7BPsACwUCBQIACgUGBQYAHQABAAYFBgAPAAAAAAAAAAAADwAAAAAAAAAAABgAGwAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAACAAAAAAAAAAIAAAAAACMAAAAAAAAAAAACAAAAAgAAABQADQALABoAFgAQAAwAFwAAAAAAAAAAAAAAAAAGAAAAAQABAAEAAAABAAAAAAAAAAAAAAADAAMABwADAAEAAAARAAAACAAJAAAAEwAJAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAEAAAAAAAAAAgABAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAgAEAAAAAAAAAAAAAAAAAAEAAAAJAAAAAAAAAAMAAAAAAAAAAAAAAAAAAQABAAAACAAAAAAAAAAAAAAAAAANAAIAHgAAAA0AAAAAAAAAEAAAAAAAHgAfAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAABMAAAADAAMAIQADAAMAAwAAAAEAAwAiAAMAAwAAAAAAAwAAAAMAAAAAAAEAIQADAAAAAAACAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAACAAcAGgAJAAIAAAACAAEAAgAAAAIAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAABAAEwAAAAMAAAAAAA0AAAAAAAMAAAADAAAAAAACAAEAEAATAA0AAAAgACIAAAAAAAAAAAAAAAAAAAAeACEAAAADAAAAAwAAAAMAAAAAAAAAAAADABAAEwAAAAEAAQAAAAAAAAAAAB4AAAAAAAAAAgABAAAAAAAAAB4AIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAGwAAAA8ADwAYAA8ADwAPABgAAAAAAAAAGAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASABkAJAAAAA4AFQAcAAAABQAAAAUAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAKAAUACgAAAAAAAAAAAAAAAAAVAAUAAAAAABUAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAABUABQASABkAFQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAAAAAAAABAAEAAQABAAEAAQABAACAAAAAAAAAAAAAAAAAAAAAAAAAAIAAgACAAIAAgALAAsACwALAAwABgAGAAYABgAGAAYABgABAAEAAQABAAEAAAAAAAAAAAADAAcABwAHAAcABwAIAAgACAAIAAkACQAEAAYABAAGAAQABgACAAEAAgABAAIAAQACAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAgABAAIAAQACAAEAAgABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAwACAAcAAgAHAAIABwAAAAAAAAAAAAAAAAAUABEAFAARABQAEQAUABEAFAARAA0AAAANAAAADQAAAAsACAALAAgACwAIAAsACAALAAgACwAIABYAAAAMAAkADAAXAB0AFwAdABcAHQAAAAAAAgAAAAAAAAAAAAoACgAKAAoACgAKAAoABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUADgAOAA4ADgASAAoACgAKAAUABQAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAcABwAHAAcAAAAFQAAAA4ADgAOAA4ADgAOACQAEgASAAAAAAAAAAQAAAAAAAAAAgAMAAAAAAAEAAAAAAAXAAAAAAAAAAAAAAACAAAAAAAMABAAAAAMAAEAAAADAAAACAAAAAcAAAAJAAAAAAAIAAcACAAAAAAAAAAAAAAAAAAjAAAAAAAfAAQAAAAAAAAAAAAAAAAAAgAAAAAAAgANABAABgABAAMABwADAAEACQATAAEAAwARAAAAAAAAAAMACQAWAAAAFgAAABYAAAAMAAkADwAPAAAAAAAPAAAAAwAEAAYAAAAAAAEAAwAAAAAAGgAJAAEAAgAAAAAAAgABAAwACQAAABAAEwAAAAQABgAEAAYAAAAAAAAAAQAAAAEAAQAQABMAAAAAAAAAAwAAAAMAAgAHAAIAAQACAAcAAAAAAB8ACQAfAAkAHwAJACAAIgAAAAMAAQAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAgAHAAIABwACAAcAAgAHAAIABwACAAcAAgAHAAIAAQACAAEAAgABAAIABwACAAEACwAIAAsACAAAAAgAAAAIAAAACAAAAAgAAAAIAAwACQAMAAkADAAJAAAADQAAACAAIgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAEAAYAAAABAAAAAAACAAcAAAAAAAAACAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAIAAAAAAAAAAAAUABEADQAAAAsAGgAJABoACQAWAAAAFwAdAAAACgAAAAAAAAAFABIAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASABkAAAASAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAUAAAAAAAUAFQAZAAAAAAAFABIAAQAAAAoAZAAkAARERkxUAP5jeXJsAP5ncmVrAP5sYXRuAQIAHwEWAR4BJgEuATYBPgE+AUYBTgFWAV4BZgFuAXYBfgGGAY4BlgGeAaYBrgG2Ab4BxgHOAdYB3gHWAd4B5gHuABtjMnNjAbZjY21wAkBkbGlnAbxkbm9tAcJmcmFjAlBsaWdhAchsaWdhAlpsaWdhAkhsbnVtAc5sb2NsAdRsb2NsAdpsb2NsAeBsb2NsAeZudW1yAexvbnVtAfJwbnVtAfhzbWNwAf5zczAxAgRzczAyAgpzczAzAhBzczA0AhZzczA1AhxzczA2AiJzczA3AihzdWJzAi5zdXBzAjR0bnVtAjoBwgAAA8YAB0FaRSAD9kNSVCAD9kZSQSAEJk1PTCAEWE5BViAEilJPTSAEvFRSSyAD9gABAAAAAQcOAAEAAAABBSoABgAAAAECSgABAAAAAQIMAAQAAAABBKAAAQAAAAEBlgABAAAAAQIGAAEAAAABAYwABAAAAAEBqAAEAAAAAQGoAAQAAAABAbwAAQAAAAEBcgABAAAAAQFwAAEAAAABAW4AAQAAAAEBiAABAAAAAQGKAAEAAAABAkIAAQAAAAEBkAABAAAAAQJQAAEAAAABAnYAAQAAAAECnAABAAAAAQLCAAEAAAABASwABgAAAAEBkAABAAAAAQG0AAEAAAABAcYAAQAAAAEB2AABAAAAAQEKAAAAAQAAAAAAAQALAAAAAQAbAAAAAQAKAAAAAQAWAAAAAQAIAAAAAQAFAAAAAQAHAAAAAQAGAAAAAQAcAAAAAQATAAAAAQAUAAAAAQABAAAAAQAMAAAAAQANAAAAAQAOAAAAAQAPAAAAAQAQAAAAAQARAAAAAQASAAAAAQAeAAAAAQAdAAAAAQAVAAAAAgACAAQAAAACAAkACgAAAAMAFwAYABoAAAAEAAkACgAJAAoAAP//ABQAAAABAAIAAwAEAAgADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAEHaAACAAEHRAABAAEHRAHuAAEHRAF/AAEHRAIFAAEHRAGBAAEHZAGJAAEOOgABB0YAAQ4yAAEHRAACB1gAAgI8Aj0AAgdOAAICPgI/AAEOLgADBy4HMgc2AAIHQAADAn4CfwJ/AAIHVgAGAnECbwJyAnMCcAUeAAIHNAAGBRgFGQUaBRsFHAUdAAMAAQdCAAEG/gAAAAEAAAAZAAIHIAcIB4IHRgAHAAAHDAcMBwwHDAcMBwwAAgbSAAoB1wHWAdUCLwIwAjECMgIzAjQCNQACBrgACgJOAHoAcwB0Ak8CUAJRAlICUwJUAAIGngAKAZUAegBzAHQBlgGXAZgBmQGaAZsAAgbuAAwCVQJXAlYCWAJZAncCeAJ5AnoCewJ8An0AAgckABQCagJuAmgCZQJnAmYCawJpAm0CbAJfAloCWwJcAl0CXgAaABwCYwJ1AAIGvgAUBKUCgQSeBJ8EoAShBKICdgSjBKQCXAJeAl0CWwJfAnUAGgJjABwCWgACBwwAFAJrAm0CbgJoAmUCZwJmAmkCbAJqABsAFQAWABcAGAAZABoAHAAdABQAAga2ABQEogSjAoEEngSfBKAEoQJ2BKQAFwAZABgAFgAbABQAGgAdABwAFQSlAAD//wAVAAAAAQACAAMABAAHAAgADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAVAAAAAQACAAMABAAFAAgADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAWAAAAAQACAAMABAAGAAgACQANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAP//ABYAAAABAAIAAwAEAAYACAAKAA0ADgAPABAAEQASABMAFAAVABYAFwAYABkAGgAA//8AFgAAAAEAAgADAAQABgAIAAsADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAWAAAAAQACAAMABAAGAAgADAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAQ+SADYG8gW0BbgF8AcABfYFvAcOBjIGOgX8BoYHVAXABnIGQgYCB2QGCAZKBpIGDgccBcQFyAYUByoFzAXQBdQGUgZaBhoGngc4BdgGfAZiBiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCggJDAkICQQJAAjgB9gH1AfQB8wHyAfEB8AHvAe4B7QHsAesB6gHpAegB5wHmAeUB5AHjAeICdAKEA0EChgKFA0AB8wKDAogCYgTjBOQB+gH7BOUE5gTnAfwE6AH9Af4B/wTtAgACAATuBO8CAQICAgMCCgT8BP0CCwIMAg0CDgIPAhAFAAUBBQMFBgUPAhICEwIUAhUCFgIXAhgCGQIaAhsCBAIFAgYCBwIIAgkCSwIdAh4CHwIgBQkCIQIjAiQCJQInAikChwNCA0MDRANFA0YDRwNIA0kDSgNLA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA5MDXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwUQA3UDdgN3A3gDeQN6A3sDfAN9A34DfwOAA4EDggODA4QDhQOGBRMDhwOIA4oDiQOLA4wDjQOOA48DkAORA5IDlAOVA5YFEQUSBNwE3QTeBN8E6QTsBOoE6wTwBPEE8gTgBOEE4gT7BP4E/wUCBQQFBQIRBQcE8wT0BPUE9gT3BPgE+QT6BRQFFQUWBRcFCAUKBQsCKAUNAioFDgUMAiYCHAIiBRwFHQACBwAA+gH3AoIB4QHgAd8B3gHdAdwB2wHaAdkB2AJDAkICQQJAAjgB9gH1AfQB8wHyAfEB8AHvAe4B7QHsAesB6gHpAegB5wHmAeUB5AHjAeIB+AH5AoQChgKFAocCgwKIAmIB+gH7AfwB/QH+Af8CAAIBAgICAwIEAgUCBgIHAggCCQIKAgsCDAINAg4CEAIRBQ8CEgITAhQCFQIWAhcCGAIZAhoCGwJLAh0CHgIfAiAFCQIhAiMCJAIlAiYCJwIoAikCKwIsAi4CLQNAA0EDQgNDA0QDRQNGA0cDSANJA0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QFEAN1A3YDdwN4A3kDegN7A3wDfQN+A38DgAOBA4IDgwOEA4UDhgUTA4cDiAOKA4kDiwOMA40DjgOPA5ADkQOSA5MDlAOVA5YFEQUSBNwE3QTeBN8E4AThBOIE4wTkBOUE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AIPBPkE+gT7BPwE/QT+BP8FAAUBBQIFAwUEBQUFBgUHBRQFFQUWBRcFCAUKBQsFDQIqBQ4FDAIcAiIFHAUdAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMZAxoAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwJ6AAIAAAABBt4AAQAGAssCzALdAt4DYANpAAEABgBNAE4C8gPfA+EEWgACAAMBlAGUAAAB1QHXAAECLwI1AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACZQJuAAoAAgAGAE0ATQAGAE4ATgAEAvIC8gAFA98D3wADA+ED4QACBFoEWgABAAIABAAUAB0AAAJ2AnYACgKBAoEACwSeBKUADAACAAYAGgAaAAAAHAAcAAECWgJfAAICYwJjAAgCZQJuAAkCdQJ1ABMAAQAUABoAHAJaAlsCXAJdAl4CXwJjAnUCdgKBBJ4EnwSgBKEEogSjBKQEpQABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaAo0CjwKrAqwCrQKuAq8CsAKxArICswK0ArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAsgCygLMAs4C0ALSAtQC1gLYAtoC3ALeAuAC4gLkAuYC6ALqAuwC7gLwAvIC9QL3AvkC+wL9Av8DAQMDAwUDBwMKAwwDDgMQAxIDFAMWAxgDGgMcAx4DIAMiAyQDJgMoAyoDLAMuAzADMgM0AzcDOQM7Az0DPwOvA7ADsQOyA7QDtQO2A7cDuAO5A7oDuwO8A70D1APVA9YD1wPYA9kD2gPbA9wD3QPeA98D4APhA+ID4wPlA+cD6QPrBAAEAgQEBBIEGQQfBCUEjwSQBJQEmAUZBRsAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGnAa0BsgG1AosCjAKOApACkQKSApMClAKVApYClwKYApkCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAscCyQLLAs0CzwLRAtMC1QLXAtkC2wLdAt8C4QLjAuUC5wLpAusC7QLvAvEC8wL0AvYC+AL6AvwC/gMAAwIDBAMGAwkDCwMNAw8DEQMTAxUDFwMZAxsDHQMfAyEDIwMlAycDKQMrAy0DLwMxAzMDNQM2AzgDOgM8Az4DlwOYA5kDmgObA5wDnQOfA6ADoQOiA6MDpAOlA6YDpwOoA6kDqgOrA6wDrQOuA74DvwPAA8EDwgPDA8QDxQPGA8cDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD5APmA+gD6gP/BAEEAwQYBB4EJASOBJMElwUYBRoBzAACAE0BzQACAFABzgADAEoATQHPAAMASgBQAAEAAQBKAcsAAgBKAdEAAgBYAdAAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBLcAAgCtAs0AAgCpBL0AAgCtBMoAAgCpBLgAAgCtAs4AAgCpBKcAAgCpBL4AAgCtBFoAAgCtBMsAAgCpAzwAAgCpAz4AAgCpAz0AAgCpAz8AAgCpBLYAAgCpBLsAAgHKBLkAAgCtBKYAAgCpAucAAgHKA/EAAgCpBMUAAgCtAx8AAgHKBNAAAgCtBNUAAgCtBNMAAgCqAzYAAgCpBNkAAgCtBLwAAgHKBLoAAgCtA/IAAgCpBMYAAgCtAyAAAgHKBNEAAgCtBNYAAgCtBNQAAgCqAzcAAgCpBNoAAgCtBL8AAgCpAvgAAgHKBMEAAgCtAvoAAgCpAvwAAgHKBMMAAgCtAxUAAgCpAxsAAgHKBM4AAgCtA+YAAgCpBNcAAgCtA+QAAgCoBMAAAgCpAvkAAgHKBMIAAgCtAvsAAgCpAv0AAgHKBMQAAgCtAxYAAgCpAxwAAgHKBM8AAgCtA+cAAgCpBNgAAgCtA+UAAgCoAw8AAgCpAxEAAgHKBMwAAgCtBLIAAgCsAxAAAgCpAxIAAgHKBM0AAgCtBLMAAgCsAwIAAgCpAwQAAgHKBMcAAgCtBKgAAgCoAqAAAgCqAqoAAgCpBIEAAgCtA+oAAgCoBIMAAgCrBIUAAgCqAwMAAgCpAwUAAgHKBMgAAgCtBKkAAgCoArsAAgCqAsUAAgCpBIIAAgCtA+sAAgCoBIQAAgCrBIYAAgCqArgAAgCpArcAAgCoBFgAAgCrAuwAAgCqBK8AAgCsBGkAAgCpBHEAAgCtBGsAAgCoBG0AAgCrBG8AAgCqBGoAAgCpBHIAAgCtBGwAAgCoBG4AAgCrBHAAAgCqBHcAAgCpBH8AAgCtBHkAAgCoBHsAAgCrBH0AAgCqBHgAAgCpBIAAAgCtBHoAAgCoBHwAAgCrBH4AAgCqApEAAgCpBC8AAgCtApAAAgCoBDEAAgCrApMAAgCqBKoAAgCsApkAAgCpBEcAAgCtApgAAgCoBEkAAgCrBEsAAgCqBKwAAgCsAp0AAgCpBFkAAgCtApwAAgCoBFcAAgCrAusAAgCqBK4AAgCsAqwAAgCpBDAAAgCtAqsAAgCoBDIAAgCrAq4AAgCqBKsAAgCsArQAAgCpBEgAAgCtArMAAgCoBEoAAgCrBEwAAgCqBK0AAgCsAr0AAgCpBFwAAgCtArwAAgCoBF4AAgCrAr8AAgCqBLEAAgCsAsIAAgCpBHQAAgCtAsEAAgCoBHYAAgCrAyYAAgCqBLUAAgCsAqIAAgCpBFsAAgCtAqEAAgCoBF0AAgCrAqQAAgCqBLAAAgCsAqcAAgCpBHMAAgCtAqYAAgCoBHUAAgCrAyUAAgCqBLQAAgCsBMkAAwCqAKkE0gADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-MediumItalic.ttf":"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BGoAWwRqAAkF0gA7BKkAMgQmAA4EnAA0BEYABwPWAB4H7wAJBM7/2gLe//UC3v/zAt4ACwLeABYC3gAlAt4ABQLeADQDmQCRApoBCAPCAAkEGv+HBJIAOwUZACsFAAArBBAAFAUNACsECQAUBFcACQReADkEPwAJBHb/mgHvAOgDhQEEAAD9JwPZANwD2wAWA+wA3APcANsDnwAJA4EBBAOBAQUC6ACJAugAZgLoAH4C6ACJAugAmALoAHgC6ACnBUoAbAVzAGsFVQArBawAbgWuAG0ECQCrBF8AHAQ3/4EEl//RBEn/2AQOADEDhQEFAa3/uAZmADsEiwBFAfz/AARz/6kEc//ZBHP/yQRzABMEcwBMBHMAIgRzAFcEcwAxBHMANwRzAPgCH/8EAh//BAIRACMCEf98AhEAIwQ/AAkEwQBMBBAAVgRmABAEHgA2BHIANwRuAC0EegAyBG//yAR3ADYEKAA6BGYALgQ4/58DmwCrBOYAJAOn/+8GFf9+A+gACQSZ/9sE5wAiBLYACQH4AAACowBABS8AIAUvACAEbgArBLoAnQKW/+UFJf+jBSX/owUl/6MFJf+jBSX/owUl/6MFJf+jBREAXwRjACYEYwAmBGMAJgRjACYCMgA3AjIANwIyADcCMgA3BYEAJgVZAGIFWQBiBVkAYgVZAGIFWQBiBRQAWAUUAFgFFABYBRQAWAS9AKEELwAcBC8AHAQvABwELwAcBC8AHAQvABwELwAcBA0ANwQoADoEKAA6BCgAOgQoADoCBwAjAgcAIwIHACMCBwAjBFIADQRnADgEZwA4BGcAOARnADgEZwA4BFEASgRRAEoEUQBKBFEASgPN/7wDzf+8BSX/owQvABwFJf+jBC8AHAUl/6MELwAcBREAXwQNADcFEQBfBA0ANwURAF8EDQA3BREAXwQNADcFEQAmBPUAOARjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoFSQBmBGb/+QVJAGYEZv/5BUkAZgRm//kFSQBmBGb/+QWBACYEUAANAjIANwIHABMCMgA3AgcAIwIyADcCBwAjAjL/jgH6/3UCMgA3BoIANwPsACAETwAEAhX/BATnACYEDAARBDEAJgH6ACAEMQAmAfr/pgQxACYCkAAgBDEAJgLWACAFgQAmBFIADQWBACYEUgANBYEAJgRSAA0EUgANBVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BOIAJgK+ABEE4gAmAr7/nwTiACYCvgARBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS6AJ0ClgA/BLoAnQKWAD8EugCdAr4APwUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgbVALUFwgB5BL0AoQPN/7wEvQChBK7/5QPo/+YErv/lA+j/5gSu/+UD6P/mB0X/jQaOAA4FVwAWBGMAKgRX/5YEV/+WBB4AYwR2/5oEdv+aBHb/mgR2/5oEdv+aBHb/mgR2/5oEXgA5A8IACQPCAAkDwgAJA8IACQHvABoB7wAaAe8AGgHvABoEtgAJBJkAOwSZADsEmQA7BJkAOwSZADsEZgA4BGYAOARmADgEZgA4BB4AbAR2/5oEdv+aBHb/mgReADkEXgA5BF4AOQReADkEVwAJA8IACQPCAAkDwgAJA8IACQPCAAkEgwA/BIMAPwSDAD8EgwA/BLcACQHvAA4B7wAaAe8AGgH5/5cB7wAaA7n/8wQ8AAkDmwAJA5sACQObAAkDmwAJBLYACQS2AAkEtgAJBJkAOwSZADsEmQA7BEMACQRDAAkEQwAJBBYADwQWAA8EFgAPBBYADwQeAGMEHgBjBB4AYwRmADgEZgA4BGYAOARmADgEZgA4BGYAOAXaAIsEHgBsBB4AbAQL/9YEC//WBAv/1gUl/6MEx/+6BeX/wgKW/8YFbQAmBSH/uAVEAB4CkAAJBSX/owTmACYEYwAmBK7/5QWBACYCMgA3BOcAJgbJACYFgQAmBVkAYgT0ACYEugCdBL0AoQTm/8ACMgA3BL0AoQRhADsEQwAoBGMAEQKQAGYEPABXBHcAIQRnADgEnf/eA9oAZAQ4/58CkABEBDwAVwRnADgEPABXBmEAUgRjACYEUgArBLQAJgIyADcCMgA3BE8ABAUAACsE5wAmBOQAmQUl/6ME5gAmBFIAKwRjACYFegAlBskAJgWBACYFWQBiBYIAKwT0ACYFEQBfBLoAnQTm/8AELwAcBCgAOgRvABcEZwA4BF3/yAQNADcDzf+8A+j/ugQoADoDQQAWA/8AGwH6ACACBwAjAfL/AgRKACIDzf+8BtUAtQXCAHkG1QC1BcIAeQbVALUFwgB5BL0AoQPN/7wBTACRAnoAnQQbADMCFf8EAa0AjQbJACYGwwAPBSX/owQvABwEYwAmBXoAJQQoADoEbwAXBYUAdgWfAD8E8QCoA+4AdQg0ADgJJgBiBLYAHwP4ABcFEQBfBA0ANwS9AKED7QB1AjIANwdu/6QGVf+wAjIANwUl/6MELwAcBSX/owQvABwHRf+NBo4ADgRjACYEKAA6BWIASwQZADQEGQA0B27/pAZV/7AEtgAfA/gAFwV6ACUEbwAXBXoAJQRvABcFWQBiBGcAOAVQAGEEZQA0BVAAYQRlADQFIABIBBkAIATkAJkDzf+8BOQAmQPN/7wE5ACZA83/vAVaAMQEQwBtBsUALAZIACMEXwA4BSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgIyADcCBwAjAjL//wH6/+MFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFFABYBFEASgUUAFgEUQBKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgS9AKEDzf+8BL0AoQPN/7wEvQChA83/vAR9//QEugCdA9sAVAVaAMQEQwBtBFIAKwNBABYF7ABVBKD/8gRQAA0E2wAkBNsAJARSAAADQf/HBRQAPwQkACgEvQChA+0AUgTm/8AD6P+6BEMAKARG/8IGBAB8BGkADQRpACYEaQANBGkAWAR9AHEEkQBLBH0AjASRAHMFSQBmBGb/+QWBACYEUgANBSX/owQvABwEYwAmBCgAOgIy/88CB/+ABVkAYgRnADgE4gAmAr4ADAUUAFgEUQBKBMj/hQTmACYEXQAQBREAJgRfADgFEQAmBF8AOAWBACYEUAANBOcAJgQMABEE5wAmBAwAEQQxACYB+v/jBskAJgbDAA8FgQAm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AGQAaQB1AG0AIABJAHQAYQBsAGkAYwBWAGUAcgBzAGkAbwBuACAAMwAuADAAMAA1ADsAIAAyADAAMgAyAFIAbwBiAG8AdABvAC0ATQBlAGQAaQB1AG0ASQB0AGEAbABpAGMAUgBvAGIAbwB0AG8AIABpAHMAIABhACAAdAByAGEAZABlAG0AYQByAGsAIABvAGYAIABHAG8AbwBnAGwAZQAuAEcAbwBvAGcAbABlAEMAaAByAGkAcwB0AGkAYQBuACAAUgBvAGIAZQByAHQAcwBvAG4ARwBvAG8AZwBsAGUALgBjAG8AbQBMAGkAYwBlAG4AcwBlAGQAIAB1AG4AZABlAHIAIAB0AGgAZQAgAEEAcABhAGMAaABlACAATABpAGMAZQBuAHMAZQAsACAAVgBlAHIAcwBpAG8AbgAgADIALgAwAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBhAHAAYQBjAGgAZQAuAG8AcgBnAC8AbABpAGMAZQBuAHMAZQBzAC8ATABJAEMARQBOAFMARQAtADIALgAwAFIAbwBiAG8AdABvAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAAAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAcsB0QACAeIB9gABAfoB+gABAgMCAwABAgUCBQABAgwCDgABAhACEQABAhMCEwABAhcCFwABAhkCGwABAiECIQABAiYCKAABAioCKgABAjgCOAABAjsCOwABAj0CPQABAkACQwABAm8CcwABAoMCiAABAosC8wABAvYDtQABA7cDtwABA7kDwwABA8UDzgABA9AD6wABA+8D7wABA/ED+AABA/oD/AABA/8EAwABBAUEkAABBJMElAABBJYElwABBJkEnAABBKYFAgABBQQFDgABBREFHgABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAeABAACgACAC4ANgACY3BzcAA6a2VybgBAAARERkxUADhjeXJsADhncmVrADhsYXRuADgAAQAAAAEAIgACAAgAAgAuBBAAAAABAAAAAAABAAEADgAAAAEPAgAFACQASAAA//8AAgAAAAEAAUuMAAQAAAHsE9wRBBEEF7QQ5hdaEVQRkhJkEXZH7hKkEqQVxBG2EqQSpBJkEsYgkBlQH8YRpBHMFwAY3hHiFO4SghIsEUAp5BEiJsIRXhFeEw4SLBGEGHgSRhH4EQoSRhU0EiwSZBnGHwAXWhJkF1olxCfEIwodmBDsEkYRLD54EV438iTSKMYSEhDyEPhBYhD+FHYUChpIOeQtpjRCLFgSpDDqPBYXACFeEqQSpBV6EqQSpBKkMpQa0hKkE7IeOhx0GBYj7B0GEUoiNBEKEzQ2GERgEiwUsCsaG1wS6BIsG+YTXhaqFEAS6BdaEw4RpBJGE4gSLB8AEUoXABEKFcQVxBXEEqQXABEKEqQSpBJkEUoXABEKEQQvSBEEEQQRBBEcFg4WXBEWETYREBEWERARaBEQEZISZBJkEmQSZB/GF1oXWhdaF1oXWhdaF1oRkhF2EXYRdhF2EqQSpBKkEqQSpBJkEmQSZBJkEmQY3hKCEoISghKCEoISghKCEUARQBFAEUARXhMOEw4TDhMOEw4SRhJGF1oSghdaEoIXWhKCEZIRkhGSEZISZBF2EUARdhFAEXYRQBF2EUARdhFAEqQRXhKkEqQSpBKkEqQVxBG2EbYRthG2EqQRXhKkEV4SpBFeEV4SZBMOEmQTDhJkEw4RhBGEEYQfxh/GH8YRzBjeEkYY3hHiEeIR4hEWERYRHBEQERAREBEQERAREBEQERYRFhEWERYRFhEQERAREBEWETYRNhE2ETYRFhEWERYRHBdaEXYSpBKkEmQY3hdaEVQRdhHiEqQSpBXEEqQSpBJkEsYfxhjeFwASpBjeEV4TDhJGEw4Rdh8AEqQSpBXEFcQVehdaEVQfABF2EqQSpBJkEsYRkh/GFwASghFAEw4SLBJGEQoRQBFKEkYRzBHMEcwY3hJGEQQRBBEEEqQRXhdaEoIRdhFAEaQSRhGSGN4SRhKkFwARChKkF1oSghdaEoIRdhFAEUARQBcAEQoSZBMOEw4SLBV6EkYVehJGFXoSRhdaEoIXWhKCF1oSghdaEoIXWhKCF1oSghdaEoIXWhKCF1oSghdaEoIXWhKCF1oSghF2EUARdhFAEXYRQBF2EUARdhFAEXYRQBF2EUARdhFAEqQSpBJkEw4SZBMOEmQTDhJkEw4SZBMOEmQTDhJkEw4TDhjeEkYY3hJGGN4SRh/GHwARShFeE7IfABXEGN4SpBFeF1oSghF2EqQSZBMOEYQRVBIsEmQSZBKkEV4VxBXEEbYSpBFeEqQRXhJkEsYSLBGEH8YRpBJGEaQSRhHMEeISZBEQERYREBEcERARFhEcAAJLbgAEAABPDlfKACYAJQAAAAAAAAAAABIAAAAAAAAAAAAAAAAAAP/k/+MAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAD/5AAR/+UAAAAAAAAAAAAAAAD/6wAAAAAAAAAAAAD/7QAA/9X/0AAAAAD/6gAAAAAAAAAAAAAAAP/p/5P/9f/qAAAAAAAA/+EAAAAAAAAAAAAAAAAAAAAA//H/7gAA//UAAP/0//X/zgAA/+//jf+C//H/iAAAAAD/xAAAAAD/x//GAAAAAAAA/60AAAAAAAwAEQAA/8kAEv+sAAD/3QAAAAAAAAAAAAAAAAAAAAAAAP/xAAAAAAAAAAAAAP/PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7QAAAAAAAAAAAAD/7f/v/+YAAAAAAAAAFAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+0AAAAAAAAAAAAAAAAAAAAAAAD/8wAAAAAAAAAAAAD/8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/xAAAAAAAAAAAAAP+KAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAD/8AAAAAAAAP/wAAAAAAAAAAD/8wAAAAAAAAAA//H/8QAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAA/38AAAAAAAAAAAAAAAAAAAAA/9cAAAAAAAAAAAAAAAAAAP/qAAAAAAAAAAAAAP/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+oAAAAA/+4AAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAAAAAAAAAAAAAAAAAA/+wAAAAAAAD/vwAAAAD/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/2AAA/7//4//Y/43/y/+7/7//2f/s/6v/oAASABEAAAAAAA3/xgAA/+n/8P/zABEAAP8m/+8AEv+nAAD/4gAAAAAAAAAAAAD/oP/zAAD/5v/h//EAAP/nAAD/5f/p/9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/5sAAAAAAAAAAAAAAAD/owAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9QAAAAAAAAAAAAD/4wAAAAAAAP/xAAAAAAAAAAAAAAAAAAAAAAAA//EAAAAAAAD/8gAAAAAAAAAA/8UAAP/s/4gAAP/O/7gAAAAAAAAAAAAAAAAAAP+vAAD/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/m/+cAAAAA/+cAAP/r/+v/4QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7/qgAAAAAAEQAAAAAAEf/RAAAAAAAA/6H/5P+a/6L/uf97/3X/rP+0/68AAAAQABAAAAAAAAD/mwAA/7P/8P/xAA8AAP8X/+0AEP8J/7z/xP/LAAAAAP9+/3z/Gf/xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+wAAAAAAAAAAAAA/+UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/Sv+9/z//OgAA/z//UP9e/2wAAAAAAAcABwAAAAAAAP9AAAD/av/RAAAABQAA/mEAAAAH/kkAAP+G/5IAAAAA/w//DAAAAAAAAAAA/78AAAAT//IAAAAA/9//fwAT/9X/Av8H/+EAAAAAAAD/awAAAAD/a/+DAAAAAAAA/0YAAAAAAAAAAAAAAAAAAAAAAAD/qwAA/+EAAAAA/9X/5//f/+H/7QAA/8sAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAP9+AAAAAP/EAAAAAAAAAAAAAAAAAAAAAAAAAAD/6//mAAAADf/sAAD/6//t/+UADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/LAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+0AAAAAAAAAAP/c/+YAAAASAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAP9zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/1P/zAAD/tf/Z/9L/0v/k//X/tAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/yMAAAAA/68AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7wAAAAAAAAAAAAAAAAAAAAD/7AAAAAAAAP+0AAAAAP+7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/VAAD/8AAAAAAAAAAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/rf8zAAD/wP/2AAAAAP/JAAAAAAAAAAAAAAAA/8gAAAAAAAD/+f/r/+cAAAAAAAAAAAAA/73/6f+h/6UAAP+c/70AAAAAAAAAAAASABIAAAAAAAD/0gAAAAAAAAAAAAAAAP5xAAAAAP9sAAAAAP/KAAAAAP+7/+kAAAAAAAD/7AAAAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/zgAAAAAAAAAAAAD/eQAAAAAAAP/xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/dAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/J/+UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6AAAAAAAAAAA//MAAAAAAAAAAAAAAAD/8wAAAAD/ZwAA//X/8wAAAA//rAAAAAAAAAAAAAD/2gAAAAAAAAAAAAAAAP/i/p8AAAAAAAAAAAAA/6gAAAAA/8cAAP8+AAAAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGnAa0BsgG1AosCjAKOApACkQKSApMClAKVApYClwKYApkCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAscCyQLLAs0CzwLRAtMC1QLXAtkC2wLdAt8C4QLjAuUC5wLpAusC7QLvAvEC8wL0AvYC+AL6AvwC/gMAAwIDBAMGAwkDCwMNAw8DEQMTAxUDFwMZAxsDHQMfAyEDIwMlAycDKQMrAy0DLwMxAzMDNQM2AzgDOgM8Az4DlwOYA5kDmgObA5wDnQOfA6ADoQOiA6MDpAOlA6YDpwOoA6kDqgOrA6wDrQOuA74DvwPAA8EDwgPDA8QDxQPGA8cDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD5APmA+gD6gP/BAEEAwQYBB4EJASOBJMElwUYBRoAAQAT/xcAAQDEAA4AAQD2/80AAQDKABMAAQD2/9wAAQBbAAsAAQEc//EAAQHm/8cAAQHm//EAAQHmAA0AAgD2/8gBhf+nAAIAyv/0APb/2AACAeb/twHr//AAAgD2//UBhf+2AAIA7f+lARz/7gACAREACwFs/+YAAgD2/8gBhf+hAAMB5f/1Aeb/7gOR//UAAwBK/+4AW//qAeb/8AADAEoAEQBYADIAWwARAAQADf/mAEH/9ABh/+8BTf/tAAQADQAUAEEAEQBW/+IAYQATAAUAW/+zAeb/eQHr//EB9f/xAkH/8wAFAA0ADwBBAAwAVv/rAGEADgJB/+kABQBb/+UAuP/LAM3/5AH1/+sCQf/tAAYAEP+EABL/hAGG/4QBiv+EAY7/hAGP/4QABgDK/+oA7f/uAPb/ugD+//kBOv/sAW3/7AAGAMr/6gDt/+4A9v++AP7/+QE6/+wBbf/sAAcASgANAL7/+QDGAAsAx//qAMoADADt/8gBHP/xAAcAgf/fALX/8wC3//AAxP/qANn/3wDm/+ABbP/gAAgA9v/wAP7/+gEJ//EBIP/zATr/8QFj//MBZf/tAW3/3gAIANkAFQDtABUBSf/kAUr/5QFM/+QBYv/jAWT/4gFs/+QACABYAA4Agf9WAL7/+QDE/8QAx//aANn/cQDt/54BX//cAAkA9v+dAP7/6wEJ/9MBIP/bATr/PgFK/7oBY//wAWX/8gFt/1AACQDK/+oA7f+4APb/5wEJ//ABIP/xATr/6wFj//UBbf/sAYX/pAAKAAb/9QAL//UBhP/1AYX/9QGH//UBiP/1AYn/9QPs//UD7f/1A/D/9QAKAAb/1gAL/9YBhP/WAYX/1gGH/9YBiP/WAYn/1gPs/9YD7f/WA/D/1gAKAAb/6gAL/+oBhP/qAYX/6gGH/+oBiP/qAYn/6gPs/+oD7f/qA/D/6gAKAOb/wwD2/88A/v/wATr/zgFJ/+cBTP/fAWL/0QFk/+wBbP+gAW3/0QALADj/0QDS/9EA1v/RATn/0QFF/9EDH//RAyH/0QMj/9ED0v/RBIj/0QTQ/9EADQBc//IAXv/yAO7/8gE0//IBRP/yAV7/8gM3//IDOf/yAzv/8gPb//IEB//yBBX/8gTa//IADQD2/5oA+f/WAP7/8gEJ/9MBIP/bATr/PgFI/9YBSv+6AWP/8AFl//IBbf9QBCv/1gSL/9YADgBc/+0AXv/tAO7/7QD2/7IBNP/tAUT/7QFe/+0DN//tAzn/7QM7/+0D2//tBAf/7QQV/+0E2v/tAA8A7QAUAPIAEAD2//AA+f/wAP7/+gEBABABBAAQATr/7AFI//ABSv/iAVEAEAFt//ABcAAQBCv/8ASL//AAEQAu/+4AOf/uAqb/7gKn/+4CqP/uAqn/7gL2/+4DJf/uAyf/7gMp/+4DK//uAy3/7gMv/+4Dw//uBHP/7gR1/+4E0v/uABEALv/sADn/7AKm/+wCp//sAqj/7AKp/+wC9v/sAyX/7AMn/+wDKf/sAyv/7AMt/+wDL//sA8P/7ARz/+wEdf/sBNL/7AASANn/rgDmABIA6//gAO3/rQDv/9YA/f/fAQH/0gEH/+ABHP/OAS7/3QEw/+IBOP/gAUD/4AFK/+kBTf/aAV//vQFp/98BbAARABIAW//BALj/xQDK/7QA6v/XAPb/uQD+/+kBCf+yARz/0gEg/8gBOv+gAUr/xQFY/+QBY//MAWX/zAFt/8sBbv/vAfX/5gJB/+gAEwHj/+4B5f/1Aeb/8QHo//ICBP/yAgj/8gIg//ICIv/uAiT/8gNd/+4Dif/yA5H/9QOS/+4Dk//uBOH/7gTv/+4E8v/uBQb/8gUL/+4AEwHj/+UB5f/xAeb/6wHo/+kCBP/pAgj/6QIg/+kCIv/lAiT/6QNd/+UDif/pA5H/8QOS/+UDk//lBOH/5QTv/+UE8v/lBQb/6QUL/+UAFQBc/+0A7v/tAPb/oQD5/9EA/v/vAQn/0wEg/9sBNP/tATr/PgFE/+0BSP/RAUr/ugFe/+0BY//wAWX/8gFt/1AD2//tBAf/7QQV/+0EK//RBIv/0QAWALj/1AC+//YAwv/tAMQAEQDK/+AAzP/nAM3/5QDO/+4A2QASAOr/6QD2/9cBOv/XAUr/0wFM/9YBTf/FAVj/5wFiAA0BZAAMAW3/1gFu//IB6//pAkH/6QAWACP/vABY/+8AW//fAJr/7gC4/+UAuf/RAMQAEQDK/8gA2QATAOb/xQD2/8oBOv+UAUn/WAFK/38BTP+lAU3/3QFY//IBYv+LAWT/ygFs/3ABbf+iAeb/zQAYADoAFAA7ABkAPQAWARkAFAKqABYDMQAZAzMAFgM1ABYDnAAWA6sAFgOuABYD5AAZA+YAGQPoABkD6gAWA/sAFAQDABYEgQAWBIMAFgSFABYElwAWBNMAFATVABQE1wAZABgAOP/rAD3/8wDS/+sA1v/rATn/6wFF/+sCqv/zAx//6wMh/+sDI//rAzP/8wM1//MDnP/zA6v/8wOu//MD0v/rA+r/8wQD//MEgf/zBIP/8wSF//MEiP/rBJf/8wTQ/+sAGQBT/+gBGP/oAYUACQK8/+gCvf/oAr7/6AK//+gCwP/oAwr/6AMM/+gDDv/oA7X/6AO7/+gD1//oBB3/6AQh/+gEXP/oBF7/6ARg/+gEYv/oBGT/6ARm/+gEaP/oBHD/6ASx/+gAHAAK/+IADQAUAA7/zwBBABIASv/qAFb/2ABY/+oAYQATAG3/rgB8/80Agf+gAIb/wQCJ/8AAuP/QALz/6gC+//UAv//GAMAADQDC/+kAw//WAMb/6ADH/7oAyv/pAMz/ywDN/9oAzv/HAY3/0wJB/80AHQA4/7sAOv/tAD3/0ADS/7sA1v+7ARn/7QE5/7sBRf+7Aqr/0AMf/7sDIf+7AyP/uwMz/9ADNf/QA5z/0AOr/9ADrv/QA9L/uwPq/9AD+//tBAP/0ASB/9AEg//QBIX/0ASI/7sEl//QBND/uwTT/+0E1f/tACAABv/yAAv/8gBa//MAXf/zAL3/8wD2//UBGv/zAYT/8gGF//IBh//yAYj/8gGJ//ICxf/zAsb/8wM0//MDt//zA9r/8wPj//MD6//zA+z/8gPt//ID8P/yA/z/8wQE//MEJf/zBCf/8wQp//MEgv/zBIT/8wSG//ME1P/zBNb/8wAiAFr/9ABc//IAXf/0AF7/8wC9//QA7v/yARr/9AE0//IBRP/yAV7/8gLF//QCxv/0AzT/9AM3//MDOf/zAzv/8wO3//QD2v/0A9v/8gPj//QD6//0A/z/9AQE//QEB//yBBX/8gQl//QEJ//0BCn/9ASC//QEhP/0BIb/9ATU//QE1v/0BNr/8wAiAAb/wAAL/8AAOv/IAN7/6wDh/+cA5v/DAPb/zgD+//ABGf/IATr/zQFH/+cBSf/nAUz/3wFi/9EBZP/sAWz/oAFt/9ABhP/AAYX/wAGH/8ABiP/AAYn/wAPG/+sD7P/AA+3/wAPw/8AD+//IBCT/6wQm/+sEKP/rBCr/5wSK/+cE0//IBNX/yAAiAFr/0gBd/9IAvf/SAPb/pQD5/+EA/v/6AQn/0wEa/9IBIP/bATr/TQFI/+EBSv+7AWP/+AFl//MBbf9fAsX/0gLG/9IDNP/SA7f/0gPa/9ID4//SA+v/0gP8/9IEBP/SBCX/0gQn/9IEKf/SBCv/4QSC/9IEhP/SBIb/0gSL/+EE1P/SBNb/0gAjAFr/9ABc//AAXf/0AL3/9ADt/+8A7v/wAPL/8wD+//kBBP/zARr/9AE0//ABRP/wAVH/8wFe//ABcP/zAsX/9ALG//QDNP/0A7f/9APa//QD2//wA+P/9APr//QD/P/0BAT/9AQH//AEFf/wBCX/9AQn//QEKf/0BIL/9ASE//QEhv/0BNT/9ATW//QAJAA4/+IAPP/kANL/4gDU/+QA1v/iANn/4QDa/+QA3f/kAN7/6QDt/+QA8v/rAQT/6wEz/+QBOf/iAUP/5AFF/+IBUP/kAVH/6wFd/+QBZv/kAW//5AFw/+sDH//iAyH/4gMj/+IDrP/kA8b/6QPS/+ID0//kBAb/5AQU/+QEJP/pBCb/6QQo/+kEiP/iBND/4gAkAAb/8gAL//IAWv/1AF3/9QC9//UA9v/0AP7//AEJ//UBGv/1ATr/9QFt//UBhP/yAYX/8gGH//IBiP/yAYn/8gLF//UCxv/1AzT/9QO3//UD2v/1A+P/9QPr//UD7P/yA+3/8gPw//ID/P/1BAT/9QQl//UEJ//1BCn/9QSC//UEhP/1BIb/9QTU//UE1v/1ACgAEP8tABL/LQAl/80Asv/NALT/zQDH//IBDf/NAYb/LQGK/y0Bjv8tAY//LQKQ/80Ckf/NApL/zQKT/80ClP/NApX/zQKW/80Cx//NAsn/zQLL/80Dl//NA5//zQPH/80D8//NBAn/zQQL/80EL//NBDH/zQQz/80ENf/NBDf/zQQ5/80EO//NBD3/zQQ//80EQf/NBEP/zQRF/80Eqv/NADEAOP/jADz/5QA9/+QA0v/jANT/5QDW/+MA2f/iANr/5QDd/+UA3v/pAPL/6gEE/+oBM//lATn/4wFD/+UBRf/jAVD/5QFR/+oBXf/lAWb/5QFs/+QBb//lAXD/6gKq/+QDH//jAyH/4wMj/+MDM//kAzX/5AOc/+QDq//kA6z/5QOu/+QDxv/pA9L/4wPT/+UD6v/kBAP/5AQG/+UEFP/lBCT/6QQm/+kEKP/pBIH/5ASD/+QEhf/kBIj/4wSX/+QE0P/jADEAVv9zAFv/kgBt/i8AfP6pAIH+tgCG/z4Aif9LALj/ZwC+/7kAv/8PAMP+9ADG/ysAx/7xAMr/UgDM/vkAzf8DAM7+7ADZ/1gA5gAFAOr/vQDr/0kA7f7+AO//EwD2/2gA/f8OAP7/RgD//xMBAf8HAQIAEgEH/w4BCf8RARz/HQEg/6wBLv8VATD/PAE4/w4BOv9qAUD/SQFK/wwBTP8/AU3+8QFY/8ABX/7vAWP/MQFl/18Baf8KAWwABQFt/zABbv/VADIABP/RAFb/uQBb/8sAbf76AHz/QgCB/0kAhv+ZAIn/oQC4/7IAvv/dAL//fgDD/24Axv+OAMf/bADK/6UAzP9xAM3/dwDO/2kA2f+pAOYADwDq/+QA6/+gAO3/dADv/4AA9v+yAP3/fQD+/54A//+AAQH/eQECAA8BB/99AQn/fwEc/4YBIP/aAS7/gQEw/5gBOP99ATr/swFA/6ABSv98AUz/mgFN/2wBWP/mAV//awFj/5IBZf+tAWn/ewFsAA8Bbf+RAW7/8gAzADj/2QA6/+QAO//sAD3/3QDS/9kA1v/ZARn/5AE5/9kBRf/ZAfsADgH9AA4CQwAOAqr/3QMf/9kDIf/ZAyP/2QMx/+wDM//dAzX/3QNDAA4DRAAOA0UADgNGAA4DRwAOA0gADgNJAA4DXgAOA18ADgNgAA4DnP/dA6v/3QOu/90D0v/ZA+T/7APm/+wD6P/sA+r/3QP7/+QEA//dBIH/3QSD/90Ehf/dBIj/2QSX/90E0P/ZBNP/5ATV/+QE1//sBNwADgTjAA4E+wAOADUAG//yADj/8QA6//QAPP/0AD3/8ADS//EA1P/1ANb/8QDa//QA3f/1AN7/8wDm//EBGf/0ATP/9AE5//EBQ//0AUX/8QFQ//UBXf/0AWL/8gFk//IBZv/1AWz/8gFv//UCqv/wAx//8QMh//EDI//xAzP/8AM1//ADnP/wA6v/8AOs//QDrv/wA8b/8wPS//ED0//0A+r/8AP7//QEA//wBAb/9AQU//QEJP/zBCb/8wQo//MEgf/wBIP/8ASF//AEiP/xBJf/8ATQ//EE0//0BNX/9AA1AFH/+QBS//kAVP/5AMH/+QDs//kA7QAUAPD/+QDx//kA8//5APT/+QD1//kA9v/tAPj/+QD5/+0A+v/5APv/+QD8/9sA/v/5AQD/+QEF//kBK//5ATb/+QE6/+0BPP/5AT7/+QFI/+0BSv/tAVP/+QFV//kBV//5AVz/+QFt/+0Cu//5AwP/+QMF//kDB//5Awj/+QOx//kD1v/5A9j/+QPd//kD4v/5A/L/+QP4//kEGf/5BBv/+QQr/+0ELf/5BIv/7QSN//kEqf/5BMb/+QTI//kAOAAl/+QAPP/SAD3/0wCy/+QAtP/kAMT/4gDa/9IBDf/kATP/0gFD/9IBXf/SApD/5AKR/+QCkv/kApP/5AKU/+QClf/kApb/5AKq/9MCx//kAsn/5ALL/+QDM//TAzX/0wOX/+QDnP/TA5//5AOr/9MDrP/SA67/0wPH/+QD0//SA+r/0wPz/+QEA//TBAb/0gQJ/+QEC//kBBT/0gQv/+QEMf/kBDP/5AQ1/+QEN//kBDn/5AQ7/+QEPf/kBD//5ARB/+QEQ//kBEX/5ASB/9MEg//TBIX/0wSX/9MEqv/kADkAUf/vAFL/7wBU/+8AXP/wAMH/7wDs/+8A7f/uAO7/8ADw/+8A8f/vAPP/7wD0/+8A9f/vAPb/7gD4/+8A+v/vAPv/7wD+/+8BAP/vAQX/7wEJ//QBIP/xASv/7wE0//ABNv/vATr/7wE8/+8BPv/vAUT/8AFT/+8BVf/vAVf/7wFc/+8BXv/wAW3/7wK7/+8DA//vAwX/7wMH/+8DCP/vA7H/7wPW/+8D2P/vA9v/8APd/+8D4v/vA/L/7wP4/+8EB//wBBX/8AQZ/+8EG//vBC3/7wSN/+8Eqf/vBMb/7wTI/+8APAAG/8MAC//DAEr/8QBZ//cAWv/bAF3/2wCb//cAvf/bAML/9QDEAAoAxv/zAMr/cgDL//cBGv/bAYT/wwGF/8MBh//DAYj/wwGJ/8MCwf/3AsL/9wLD//cCxP/3AsX/2wLG/9sDJv/3Ayj/9wMq//cDLP/3Ay7/9wMw//cDNP/bA7P/9wO3/9sDuv/3A7z/9wPa/9sD4//bA+v/2wPs/8MD7f/DA/D/wwP8/9sEBP/bBCX/2wQn/9sEKf/bBHT/9wR2//cEeP/3BHr/9wR8//cEfv/3BID/9wSC/9sEhP/bBIb/2wS1//cE1P/bBNb/2wA/ACf/8wAr//MAM//zADX/8wCD//MAk//zAJj/8wCz//MAxAANANP/8wEI//MBF//zARv/8wEd//MBH//zASH/8wFB//MBav/zAlX/8wJW//MCWP/zAln/8wKX//MCof/zAqL/8wKj//MCpP/zAqX/8wLN//MCz//zAtH/8wLT//MC4f/zAuP/8wLl//MC5//zAwn/8wML//MDDf/zAz7/8wOb//MDqP/zA87/8wPR//MD/v/zBAH/8wQc//MEHv/zBCD/8wRb//MEXf/zBF//8wRh//MEY//zBGX/8wRn//MEaf/zBGv/8wRt//MEb//zBHH/8wSw//MEyf/zAEAAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sALv/7ADI/+wAyf/sAPf/7AED/+wBHv/sASL/7AFC/+wBYP/sAWH/7AFr/+wCsv/sArP/7AK0/+wCtf/sArb/7ALO/+wC0P/sAtL/7ALU/+wC1v/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sA6//7APV/+wD2f/sA9z/7AP3/+wD/f/sBAL/7AQQ/+wEEv/sBBP/7AQf/+wELv/sBEj/7ARK/+wETP/sBE7/7ARQ/+wEUv/sBFT/7ARW/+wEav/sBGz/7ARu/+wEcv/sBK3/7AS6/+wEvP/sAEAAJ//mACv/5gAz/+YANf/mAIP/5gCT/+YAmP/mALP/5gC4/8IAxAAQANP/5gEI/+YBF//mARv/5gEd/+YBH//mASH/5gFB/+YBav/mAlX/5gJW/+YCWP/mAln/5gKX/+YCof/mAqL/5gKj/+YCpP/mAqX/5gLN/+YCz//mAtH/5gLT/+YC4f/mAuP/5gLl/+YC5//mAwn/5gML/+YDDf/mAz7/5gOb/+YDqP/mA87/5gPR/+YD/v/mBAH/5gQc/+YEHv/mBCD/5gRb/+YEXf/mBF//5gRh/+YEY//mBGX/5gRn/+YEaf/mBGv/5gRt/+YEb//mBHH/5gSw/+YEyf/mAEcAEAAEABIABABH/+cASP/nAEn/5wBL/+cAVf/nAJT/5wCZ/+cAu//nAMQADwDI/+cAyf/nAPf/5wED/+cBHv/nASL/5wFC/+cBYP/nAWH/5wFr/+cBhgAEAYoABAGOAAQBjwAEArL/5wKz/+cCtP/nArX/5wK2/+cCzv/nAtD/5wLS/+cC1P/nAtb/5wLY/+cC2v/nAtz/5wLe/+cC4P/nAuL/5wLk/+cC5v/nAuj/5wOv/+cD1f/nA9n/5wPc/+cD9//nA/3/5wQC/+cEEP/nBBL/5wQT/+cEH//nBC7/5wRI/+cESv/nBEz/5wRO/+cEUP/nBFL/5wRU/+cEVv/nBGr/5wRs/+cEbv/nBHL/5wSt/+cEuv/nBLz/5wBNAAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oALv/6ADI/+gAyf/oAPf/6AED/+gBHv/oASL/6AFC/+gBYP/oAWH/6AFr/+gBhAAQAYUAEAGHABABiAAQAYkAEAKy/+gCs//oArT/6AK1/+gCtv/oAs7/6ALQ/+gC0v/oAtT/6ALW/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gDr//oA9X/6APZ/+gD3P/oA+wAEAPtABAD8AAQA/f/6AP9/+gEAv/oBBD/6AQS/+gEE//oBB//6AQu/+gESP/oBEr/6ARM/+gETv/oBFD/6ARS/+gEVP/oBFb/6ARq/+gEbP/oBG7/6ARy/+gErf/oBLr/6AS8/+gATwBHAAEASAABAEkAAQBLAAEAVQABAJQAAQCZAAEAuwABAMgAAQDJAAEA7QArAPIAFAD2/+MA9wABAPn/8AD8/+YA/v/1AQMAAQEEABQBHgABASIAAQE6/9MBQgABAUj/8AFK/98BUQAUAWAAAQFhAAEBawABAW3/4wFwABQCsgABArMAAQK0AAECtQABArYAAQLOAAEC0AABAtIAAQLUAAEC1gABAtgAAQLaAAEC3AABAt4AAQLgAAEC4gABAuQAAQLmAAEC6AABA68AAQPVAAED2QABA9wAAQP3AAED/QABBAIAAQQQAAEEEgABBBMAAQQfAAEEK//wBC4AAQRIAAEESgABBEwAAQROAAEEUAABBFIAAQRUAAEEVgABBGoAAQRsAAEEbgABBHIAAQSL//AErQABBLoAAQS8AAEAUwA4/74AUf/1AFL/9QBU//UAWv/vAF3/7wC9/+8Awf/1ANL/vgDW/74A5v/JAOz/9QDw//UA8f/1APP/9QD0//UA9f/1APb/3wD4//UA+v/1APv/9QD+//UBAP/1AQX/9QEJ/+0BGv/vASD/6wEr//UBNv/1ATn/vgE6/98BPP/1AT7/9QFF/74BTP/pAVP/9QFV//UBV//1AVz/9QFj//UBbf/gArv/9QLF/+8Cxv/vAwP/9QMF//UDB//1Awj/9QMf/74DIf++AyP/vgM0/+8Dsf/1A7f/7wPS/74D1v/1A9j/9QPa/+8D3f/1A+L/9QPj/+8D6//vA/L/9QP4//UD/P/vBAT/7wQZ//UEG//1BCX/7wQn/+8EKf/vBC3/9QSC/+8EhP/vBIb/7wSI/74Ejf/1BKn/9QTG//UEyP/1BND/vgTU/+8E1v/vAGgAOP8zADr/yAA8//AAPf+sAFH/7wBS/+8AVP/vAMH/7wDS/zMA1P/1ANb/MwDa//AA3f/1AN7/6wDh/+YA5v/CAOz/7wDw/+8A8f/vAPP/7wD0/+8A9f/vAPb/zgD4/+8A+v/vAPv/7wD+/+8BAP/vAQX/7wEZ/8gBK//vATP/8AE2/+8BOf8zATr/zQE8/+8BPv/vAUP/8AFF/zMBR//mAUn/5gFM/98BUP/1AVP/7wFV/+8BV//vAVz/7wFd//ABYv/QAWT/6wFm//UBbP+fAW3/0AFv//UCqv+sArv/7wMD/+8DBf/vAwf/7wMI/+8DH/8zAyH/MwMj/zMDM/+sAzX/rAOc/6wDq/+sA6z/8AOu/6wDsf/vA8b/6wPS/zMD0//wA9b/7wPY/+8D3f/vA+L/7wPq/6wD8v/vA/j/7wP7/8gEA/+sBAb/8AQU//AEGf/vBBv/7wQk/+sEJv/rBCj/6wQq/+YELf/vBIH/rASD/6wEhf+sBIj/MwSK/+YEjf/vBJf/rASp/+8Exv/vBMj/7wTQ/zME0//IBNX/yABoAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAC7/7QAyP+0AMn/tAD3/7QBA/+0ARj/egEe/7QBIv+0AUL/tAFg/7QBYf+0AWv/tAHR/2QCsv+0ArP/tAK0/7QCtf+0Arb/tAK8/3oCvf96Ar7/egK//3oCwP96As7/tALQ/7QC0v+0AtT/tALW/7QC2P+0Atr/tALc/7QC3v+0AuD/tALi/7QC5P+0Aub/tALo/7QDCv96Awz/egMO/3oDFv9kAxj/ZAMa/2QDHP9kAx7/ZAOv/7QDtf96A7v/egPV/7QD1/96A9n/tAPc/7QD3v9kA/f/tAP9/7QEAv+0BBD/tAQS/7QEE/+0BB3/egQf/7QEIf96BC7/tARI/7QESv+0BEz/tARO/7QEUP+0BFL/tARU/7QEVv+0BFz/egRe/3oEYP96BGL/egRk/3oEZv96BGj/egRq/7QEbP+0BG7/tARw/3oEcv+0BK3/tASx/3oEuv+0BLz/tAS+ABQEwAAUBMIAFATP/2QAagA4/+YAOv/nADz/8gA9/+cAUf/xAFL/8QBU//EAXP/xAMH/8QDS/+YA1v/mANr/8gDe/+4A4f/oAOb/5gDs//EA7v/xAPD/8QDx//EA8//xAPT/8QD1//EA9v/QAPj/8QD6//EA+//xAP7/8QEA//EBBf/xARn/5wEr//EBM//yATT/8QE2//EBOf/mATr/zgE8//EBPv/xAUP/8gFE//EBRf/mAUf/6AFJ/+gBU//xAVX/8QFX//EBXP/xAV3/8gFe//EBYv/nAWT/7QFs/+YBbf/QAqr/5wK7//EDA//xAwX/8QMH//EDCP/xAx//5gMh/+YDI//mAzP/5wM1/+cDnP/nA6v/5wOs//IDrv/nA7H/8QPG/+4D0v/mA9P/8gPW//ED2P/xA9v/8QPd//ED4v/xA+r/5wPy//ED+P/xA/v/5wQD/+cEBv/yBAf/8QQU//IEFf/xBBn/8QQb//EEJP/uBCb/7gQo/+4EKv/oBC3/8QSB/+cEg//nBIX/5wSI/+YEiv/oBI3/8QSX/+cEqf/xBMb/8QTI//EE0P/mBNP/5wTV/+cAawAlAA8AOP/mADr/5gA8AA4APf/mALIADwC0AA8A0v/mANQADgDW/+YA2QATANoADgDdAA4A3gALAOH/5QDm/+YA5//0AO0AEgDyAA8A9v/nAPn/6AD+//cBBAAPAQ0ADwEZ/+YBMwAOATn/5gE6/+cBQwAOAUX/5gFH/+UBSP/oAUn/5QFK/+gBTP/kAVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwKQAA8CkQAPApIADwKTAA8ClAAPApUADwKWAA8Cqv/mAscADwLJAA8CywAPAx//5gMh/+YDI//mAzP/5gM1/+YDlwAPA5z/5gOfAA8Dq//mA6wADgOu/+YDxgALA8cADwPS/+YD0wAOA+r/5gPzAA8D+//mBAP/5gQGAA4ECQAPBAsADwQUAA4EJAALBCYACwQoAAsEKv/lBCv/6AQvAA8EMQAPBDMADwQ1AA8ENwAPBDkADwQ7AA8EPQAPBD8ADwRBAA8EQwAPBEUADwSB/+YEg//mBIX/5gSI/+YEiv/lBIv/6ASX/+YEqgAPBND/5gTT/+YE1f/mAHUABv+6AAv/ugA4/zMAOv/HADz/8QA9/6sAUf/uAFL/7gBU/+4AXP/XAMH/7gDS/zMA1v8zANr/8QDe/+sA4f/lAOb/wwDs/+4A7v/XAPD/7gDx/+4A8//uAPT/7gD1/+4A9v/MAPj/7gD6/+4A+//uAP7/7gEA/+4BBf/uARn/xwEr/+4BM//xATT/1wE2/+4BOf8zATr/yQE8/+4BPv/uAUP/8QFE/9cBRf8zAUf/5QFJ/+UBTP/fAVP/7gFV/+4BV//uAVz/7gFd//EBXv/XAWL/0AFk/+sBbP+gAW3/zQGE/7oBhf+6AYf/ugGI/7oBif+6Aqr/qwK7/+4DA//uAwX/7gMH/+4DCP/uAx//MwMh/zMDI/8zAzP/qwM1/6sDnP+rA6v/qwOs//EDrv+rA7H/7gPG/+sD0v8zA9P/8QPW/+4D2P/uA9v/1wPd/+4D4v/uA+r/qwPs/7oD7f+6A/D/ugPy/+4D+P/uA/v/xwQD/6sEBv/xBAf/1wQU//EEFf/XBBn/7gQb/+4EJP/rBCb/6wQo/+sEKv/lBC3/7gSB/6sEg/+rBIX/qwSI/zMEiv/lBI3/7gSX/6sEqf/uBMb/7gTI/+4E0P8zBNP/xwTV/8cAdgBH//AASP/wAEn/8ABL//AAU//eAFX/8ACU//AAmf/wALv/8ADI//AAyf/wAPf/8AED//ABGP/eARz/6wEe//ABIv/wAUL/8AFg//ABYf/wAWv/8AHr/+sB7f/rAfX/6QH8/+sCBf/rAiH/6wIq/+sCQf/rArL/8AKz//ACtP/wArX/8AK2//ACvP/eAr3/3gK+/94Cv//eAsD/3gLO//AC0P/wAtL/8ALU//AC1v/wAtj/8ALa//AC3P/wAt7/8ALg//AC4v/wAuT/8ALm//AC6P/wAwr/3gMM/94DDv/eA0r/6wNU/+sDVf/rA1b/6wNX/+sDWP/rA2H/6wNi/+sDY//rA2T/6wNr/+sDbP/rA23/6wNu/+sDfv/rA3//6wOA/+sDr//wA7X/3gO7/94D1f/wA9f/3gPZ//AD3P/wA/f/8AP9//AEAv/wBBD/8AQS//AEE//wBB3/3gQf//AEIf/eBC7/8ARI//AESv/wBEz/8ARO//AEUP/wBFL/8ARU//AEVv/wBFz/3gRe/94EYP/eBGL/3gRk/94EZv/eBGj/3gRq//AEbP/wBG7/8ARw/94Ecv/wBK3/8ASx/94Euv/wBLz/8ATg/+sFAv/rBQX/6wUK/+sAfAAG/9oAC//aAEf/8ABI//AASf/wAEv/8ABV//AAWf/vAFr/3ABd/9wAlP/wAJn/8ACb/+8Au//wAL3/3ADC/+wAxAAPAMb/6gDI//AAyf/wAMr/yADL/+8AzP/nAPf/8AED//ABGv/cAR7/8AEi//ABQv/wAWD/8AFh//ABa//wAYT/2gGF/9oBh//aAYj/2gGJ/9oCsv/wArP/8AK0//ACtf/wArb/8ALB/+8Cwv/vAsP/7wLE/+8Cxf/cAsb/3ALO//AC0P/wAtL/8ALU//AC1v/wAtj/8ALa//AC3P/wAt7/8ALg//AC4v/wAuT/8ALm//AC6P/wAyb/7wMo/+8DKv/vAyz/7wMu/+8DMP/vAzT/3AOv//ADs//vA7f/3AO6/+8DvP/vA9X/8APZ//AD2v/cA9z/8APj/9wD6//cA+z/2gPt/9oD8P/aA/f/8AP8/9wD/f/wBAL/8AQE/9wEEP/wBBL/8AQT//AEH//wBCX/3AQn/9wEKf/cBC7/8ARI//AESv/wBEz/8ARO//AEUP/wBFL/8ARU//AEVv/wBGr/8ARs//AEbv/wBHL/8AR0/+8Edv/vBHj/7wR6/+8EfP/vBH7/7wSA/+8Egv/cBIT/3ASG/9wErf/wBLX/7wS6//AEvP/wBNT/3ATW/9wAjAAG/8oAC//KADj/0gA6/9QAPP/0AD3/0wBR/+IAUv/iAFT/4gBa/+YAXP/vAF3/5gC9/+YAwf/iANL/0gDW/9IA2v/0AN7/7QDh/+EA5v/UAOz/4gDu/+8A8P/iAPH/4gDz/+IA9P/iAPX/4gD2/8kA+P/iAPr/4gD7/+IA/v/RAQD/4gEF/+IBCf/lARn/1AEa/+YBIP/jASv/4gEz//QBNP/vATb/4gE5/9IBOv/EATz/4gE+/+IBQ//0AUT/7wFF/9IBR//hAUn/4QFT/+IBVf/iAVf/4gFc/+IBXf/0AV7/7wFi/9QBY//1AWT/5wFs/6oBbf/JAYT/ygGF/8oBh//KAYj/ygGJ/8oCqv/TArv/4gLF/+YCxv/mAwP/4gMF/+IDB//iAwj/4gMf/9IDIf/SAyP/0gMz/9MDNP/mAzX/0wOc/9MDq//TA6z/9AOu/9MDsf/iA7f/5gPG/+0D0v/SA9P/9APW/+ID2P/iA9r/5gPb/+8D3f/iA+L/4gPj/+YD6v/TA+v/5gPs/8oD7f/KA/D/ygPy/+ID+P/iA/v/1AP8/+YEA//TBAT/5gQG//QEB//vBBT/9AQV/+8EGf/iBBv/4gQk/+0EJf/mBCb/7QQn/+YEKP/tBCn/5gQq/+EELf/iBIH/0wSC/+YEg//TBIT/5gSF/9MEhv/mBIj/0gSK/+EEjf/iBJf/0wSp/+IExv/iBMj/4gTQ/9IE0//UBNT/5gTV/9QE1v/mAJgAJQAQACf/6AAr/+gAM//oADX/6AA4/+AAOv/gAD3/3wCD/+gAk//oAJj/6ACyABAAs//oALQAEADS/+AA0//oANQAEADW/+AA2QAUAN0AEADh/+EA5v/gAO0AEwDyABAA+f/gAQQAEAEI/+gBDQAQARf/6AEZ/+ABG//oAR3/6AEf/+gBIf/oATn/4AFB/+gBRf/gAUf/4QFI/+ABSf/hAUr/4AFN/+EBUAAQAVEAEAFY/+kBYv/fAWT/3gFmABABav/oAWz/3wFu//IBbwAQAXAAEAJV/+gCVv/oAlj/6AJZ/+gCkAAQApEAEAKSABACkwAQApQAEAKVABAClgAQApf/6AKh/+gCov/oAqP/6AKk/+gCpf/oAqr/3wLHABACyQAQAssAEALN/+gCz//oAtH/6ALT/+gC4f/oAuP/6ALl/+gC5//oAwn/6AML/+gDDf/oAx//4AMh/+ADI//gAzP/3wM1/98DPv/oA5cAEAOb/+gDnP/fA58AEAOo/+gDq//fA67/3wPHABADzv/oA9H/6APS/+AD6v/fA/MAEAP7/+AD/v/oBAH/6AQD/98ECQAQBAsAEAQc/+gEHv/oBCD/6AQq/+EEK//gBC8AEAQxABAEMwAQBDUAEAQ3ABAEOQAQBDsAEAQ9ABAEPwAQBEEAEARDABAERQAQBFv/6ARd/+gEX//oBGH/6ARj/+gEZf/oBGf/6ARp/+gEa//oBG3/6ARv/+gEcf/oBIH/3wSD/98Ehf/fBIj/4ASK/+EEi//gBJf/3wSqABAEsP/oBMn/6ATQ/+AE0//gBNX/4AC6AEf/3ABI/9wASf/cAEv/3ABR/+EAUv/hAFP/1gBU/+EAVf/cAFn/3QBa/+EAXf/hAJT/3ACZ/9wAm//dALv/3AC9/+EAvv/1AL//5gDB/+EAwv/rAMP/6QDF//AAxv/nAMj/3ADJ/9wAyv/jAMv/3QDM/84Azf/UAM7/2wDs/+EA8P/hAPH/4QDz/+EA9P/hAPX/4QD3/9wA+P/hAPr/4QD7/+EA/v/hAQD/4QED/9wBBf/hARj/1gEa/+EBHv/cASL/3AEr/+EBNv/hATz/4QE+/+EBQv/cAVP/4QFV/+EBV//hAVz/4QFg/9wBYf/cAWv/3AKy/9wCs//cArT/3AK1/9wCtv/cArv/4QK8/9YCvf/WAr7/1gK//9YCwP/WAsH/3QLC/90Cw//dAsT/3QLF/+ECxv/hAs7/3ALQ/9wC0v/cAtT/3ALW/9wC2P/cAtr/3ALc/9wC3v/cAuD/3ALi/9wC5P/cAub/3ALo/9wDA//hAwX/4QMH/+EDCP/hAwr/1gMM/9YDDv/WAyb/3QMo/90DKv/dAyz/3QMu/90DMP/dAzT/4QOv/9wDsf/hA7P/3QO1/9YDt//hA7r/3QO7/9YDvP/dA9X/3APW/+ED1//WA9j/4QPZ/9wD2v/hA9z/3APd/+ED4v/hA+P/4QPr/+ED8v/hA/f/3AP4/+ED/P/hA/3/3AQC/9wEBP/hBBD/3AQS/9wEE//cBBn/4QQb/+EEHf/WBB//3AQh/9YEJf/hBCf/4QQp/+EELf/hBC7/3ARI/9wESv/cBEz/3ARO/9wEUP/cBFL/3ARU/9wEVv/cBFz/1gRe/9YEYP/WBGL/1gRk/9YEZv/WBGj/1gRq/9wEbP/cBG7/3ARw/9YEcv/cBHT/3QR2/90EeP/dBHr/3QR8/90Efv/dBID/3QSC/+EEhP/hBIb/4QSN/+EEqf/hBK3/3ASx/9YEtf/dBLr/3AS8/9wExv/hBMj/4QTU/+EE1v/hAL8ABgAMAAsADABH/+gASP/oAEn/6ABKAAwAS//oAFP/6gBV/+gAWgALAF0ACwCU/+gAmf/oALv/6AC9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/8AB/f/AAkP/wAKQ/04Ckf9OApL/TgKT/04ClP9OApX/TgKW/04Cq//eAqz/3gKt/94Crv/eAq//3gKw/94Csf/eArL/6wKz/+sCtP/rArX/6wK2/+sCvP/rAr3/6wK+/+sCv//rAsD/6wLB/+oCwv/qAsP/6gLE/+oCxf/oAsb/6ALH/04CyP/eAsn/TgLK/94Cy/9OAsz/3gLO/+sC0P/rAtL/6wLU/+sC1v/rAtj/6wLa/+sC3P/rAt7/6wLg/+sC4v/rAuT/6wLm/+sC6P/rAvb/DQMK/+sDDP/rAw7/6wMfABQDIQAUAyMAFAMm/+oDKP/qAyr/6gMs/+oDLv/qAzD/6gM0/+gDQ//AA0T/wANF/8ADRv/AA0f/wANI/8ADSf/AA17/wANf/8ADYP/AA5f/TgOf/04Dr//rA7P/6gO1/+sDt//oA7r/6gO7/+sDvP/qA8P/DQPH/04D0gAUA9T/3gPV/+sD1//rA9n/6wPa/+gD3P/rA+P/6APr/+gD8/9OA/T/3gP3/+sD/P/oA/3/6wQC/+sEBP/oBAn/TgQK/94EC/9OBAz/3gQQ/+sEEv/rBBP/6wQd/+sEH//rBCH/6wQl/+gEJ//oBCn/6AQu/+sEL/9OBDD/3gQx/04EMv/eBDP/TgQ0/94ENf9OBDb/3gQ3/04EOP/eBDn/TgQ6/94EO/9OBDz/3gQ9/04EPv/eBD//TgRA/94EQf9OBEL/3gRD/04ERP/eBEX/TgRG/94ESP/rBEr/6wRM/+sETv/rBFD/6wRS/+sEVP/rBFb/6wRc/+sEXv/rBGD/6wRi/+sEZP/rBGb/6wRo/+sEav/rBGz/6wRu/+sEcP/rBHL/6wR0/+oEdv/qBHj/6gR6/+oEfP/qBH7/6gSA/+oEgv/oBIT/6ASG/+gEiAAUBKr/TgSr/94Erf/rBLH/6wS1/+oEuv/rBLz/6wTQABQE1P/oBNb/6ATc/8AE4//ABPv/wAACAKAABAAEAAAABgAGAAEACwAMAAIAEwATAAQAJQAqAAUALAAtAAsALwA2AA0AOAA4ABUAOgA/ABYARQBGABwASQBKAB4ATABMACAATwBPACEAUQBUACIAVgBWACYAWABYACcAWgBdACgAXwBfACwAigCKAC0AlgCWAC4AnQCdAC8AsQC1ADAAtwC5ADUAuwC7ADgAvQC+ADkAwADBADsAwwDFAD0AxwDOAEAA0gDSAEgA1ADeAEkA4ADvAFQA8QDxAGQA9gD4AGUA+wD8AGgA/gEAAGoBAwEFAG0BCgEKAHABDQENAHEBGAEaAHIBIgEiAHUBLgEwAHYBMwE1AHkBNwE3AHwBOQE5AH0BOwE7AH4BQwFEAH8BVAFUAIEBVgFWAIIBWAFYAIMBXAFeAIQBhAGFAIcBhwGJAIkB6AHoAIwB6gHrAI0B7QHtAI8B8AHwAJAB+wH9AJECQAJAAJQCQwJDAJUCVQJVAJYCVwJYAJcCiwKMAJkCjgKOAJsCkAKlAJwCqgKxALICswK2ALoCuwLAAL4CxQLNAMQCzwLPAM0C0QLRAM4C0wLTAM8C1QLVANAC1wLgANEC6QLrANsC7QLtAN4C7wLvAN8C8QLxAOAC8wLzAOEC+AL4AOIC+gL6AOMC/AL8AOQC/gL+AOUDAAMAAOYDAgMOAOcDEAMQAPQDEgMSAPUDFAMUAPYDHwMfAPcDIQMhAPgDIwMjAPkDMQMxAPoDMwM2APsDOAM4AP8DOgM6AQADQANJAQEDVANYAQsDXgNgARADZQNlARMDdwN6ARQDfgOAARgDiQOJARsDlwOcARwDnwOuASIDsQOxATIDtQO1ATMDtwO3ATQDuwO7ATUDvgO/ATYDwQPCATgDxAPKAToDzAPOAUED0APVAUQD1wPYAUoD2gPdAUwD4wPkAVAD5gPmAVID6APoAVMD6gPtAVQD8AP1AVgD9wP3AV4D+wP8AV8EAQQBAWEEAwQMAWIEDwQQAWwEEgQVAW4EHAQdAXIEIQQhAXQEIwQpAXUELwRXAXwEWQRZAaUEWwRoAaYEcARwAbQEgQSGAbUEiASIAbsEjASNAbwEkASQAb4EkgSTAb8ElQSVAcEElwSXAcIEqASsAcMErgSuAcgEsASxAckEswSzAcsEtwS5AcwEuwS7Ac8EvQS/AdAEwQTBAdMEwwTDAdQExQTLAdUEzQTNAdwE0ATQAd0E0wTXAd4E2QTZAeME2wTcAeQE4ATgAeYE4wTjAecE7gTuAegE+wT7AekFAgUCAeoFBgUGAesAAgCaAAYABgAAAAsACwABABAAEAACABIAEgADACUAKQAEACwANAAJADgAPgASAEUARwAZAEkASQAcAEwATAAdAFEAVAAeAFYAVgAiAFoAWgAjAFwAXgAkAIoAigAnAJYAlgAoALEAtAApAL0AvQAtAMEAwQAuAMcAxwAvANQA1QAwANcA1wAyANoA2gAzANwA3gA0AOAA5gA3AOwA7AA+AO4A7gA/APcA9wBAAPwA/ABBAP4A/wBCAQQBBQBEAQoBCgBGAQ0BDQBHARgBGgBIAS4BMABLATMBNQBOATcBNwBRATkBOQBSATsBOwBTAUMBRABUAVQBVABWAVYBVgBXAVgBWABYAVwBXgBZAYQBigBcAY4BjwBjAegB6ABlAe0B7QBmAfAB8QBnAfsB/QBpAg8CDwBsAh4CIABtAkACQABwAkMCQwBxAlUCVQByAlcCWABzAosCjAB1Ao4CjgB3ApACtgB4ArsCwACfAsUC1QClAtcC4AC2AukC6wDAAu0C7QDDAu8C7wDEAvEC8QDFAvMC8wDGAvYC9gDHAvgC+ADIAvoC+gDJAvwC/ADKAv4C/gDLAwADAADMAwIDDgDNAxADEADaAxIDEgDbAxQDFADcAx8DHwDdAyEDIQDeAyMDIwDfAyUDJQDgAycDJwDhAykDKQDiAysDKwDjAy0DLQDkAy8DLwDlAzEDMQDmAzMDOwDnA0ADSQDwA1QDWAD6A14DYAD/A2UDZQECA3YDegEDA34DgAEIA4kDiQELA5cDnAEMA58DrgESA7EDsQEiA7UDtQEjA7cDtwEkA7sDuwElA74DvwEmA8EDygEoA8wDzgEyA9AD1QE1A9cD3QE7A+MD5AFCA+YD5gFEA+gD6AFFA+oD7QFGA/AD9QFKA/cD9wFQA/sD/AFRBAEEDAFTBA8EEAFfBBIEFQFhBBwEHQFlBCEEIQFnBCMEKQFoBC8EVwFvBFkEWQGYBFsEaAGZBHAEcAGnBHMEcwGoBHUEdQGpBIEEhgGqBIgEiAGwBIwEjQGxBJAEkAGzBJIEkwG0BJUElQG2BJcElwG3BKgErAG4BK4ErgG9BLAEsQG+BLMEswHABLcEuQHBBLsEuwHEBL0EvwHFBMEEwQHIBMMEwwHJBMUEywHKBM0EzQHRBNAE0AHSBNIE1wHTBNkE3AHZBOAE4AHdBOME4wHeBOkE6QHfBO4E7gHgBPkE+QHhBPsE+wHiBQIFAgHjBQYFBgHkAAIBdAAGAAYADwALAAsADwAQABAAGgASABIAGgAlACUAAgAmACYAJAAnACcAEAAoACgAAQApACkABAAuAC4ACAAv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AAAABAAAAAAAAAAAAAAAAAAAAAAAAAACAAcAGgAJAAIAAAACAAEAAgAAAAIAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAABAAEwAAAAMAAAAAAA0AAAAAAAMAAAADAAAAAAACAAEAEAATAA0AAAAgACIAAAAAAAAAAAAAAAAAAAAeACEAAAADAAAAAwAAAAMAAAAAAAAAAAADABAAEwAAAAEAAQAAAAAAAAAAAB4AAAAAAAAAAgABAAAAAAAAAB4AIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAGwAAAA8ADwAYAA8ADwAPABgAAAAAAAAAGAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASABkAJAAAAA4AFQAcAAAABQAAAAUAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAKAAUACgAAAAAAAAAAAAAAAAAVAAUAAAAAABUAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAABUABQASABkAFQAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAAAAAAAAABAAEAAQABAAEAAQABAACAAAAAAAAAAAAAAAAAAAAAAAAAAIAAgACAAIAAgALAAsACwALAAwABgAGAAYABgAGAAYABgABAAEAAQABAAEAAAAAAAAAAAADAAcABwAHAAcABwAIAAgACAAIAAkACQAEAAYABAAGAAQABgACAAEAAgABAAIAAQACAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAgABAAIAAQACAAEAAgABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAwACAAcAAgAHAAIABwAAAAAAAAAAAAAAAAAUABEAFAARABQAEQAUABEAFAARAA0AAAANAAAADQAAAAsACAALAAgACwAIAAsACAALAAgACwAIABYAAAAMAAkADAAXAB0AFwAdABcAHQAAAAAAAgAAAAAAAAAAAAoACgAKAAoACgAKAAoABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUADgAOAA4ADgASAAoACgAKAAUABQAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAcABwAHAAcAAAAFQAAAA4ADgAOAA4ADgAOACQAEgASAAAAAAAAAAQAAAAAAAAAAgAMAAAAAAAEAAAAAAAXAAAAAAAAAAAAAAACAAAAAAAMABAAAAAMAAEAAAADAAAACAAAAAcAAAAJAAAAAAAIAAcACAAAAAAAAAAAAAAAAAAjAAAAAAAfAAQAAAAAAAAAAAAAAAAAAgAAAAAAAgANABAABgABAAMABwADAAEACQATAAEAAwARAAAAAAAAAAMACQAWAAAAFgAAABYAAAAMAAkADwAPAAAAAAAPAAAAAwAEAAYAAAAAAAEAAwAAAAAAGgAJAAEAAgAAAAAAAgABAAwACQAAABAAEwAAAAQABgAEAAYAAAAAAAAAAQAAAAEAAQAQABMAAAAAAAAAAwAAAAMAAgAHAAIAAQACAAcAAAAAAB8ACQAfAAkAHwAJACAAIgAAAAMAAQAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAEAAYABAAGAAQABgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAgAHAAIABwACAAcAAgAHAAIABwACAAcAAgAHAAIAAQACAAEAAgABAAIABwACAAEACwAIAAsACAAAAAgAAAAIAAAACAAAAAgAAAAIAAwACQAMAAkADAAJAAAADQAAACAAIgAAAAMAAAAA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BjIGOgX8BoYHVAXABnIGQgYCB2QGCAZKBpIGDgccBcQFyAYUByoFzAXQBdQGUgZaBhoGngc4BdgGfAZiBiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCggJDAkICQQJAAjgB9gH1AfQB8wHyAfEB8AHvAe4B7QHsAesB6gHpAegB5wHmAeUB5AHjAeICdAKEA0EChgKFA0AB8wKDAogCYgTjBOQB+gH7BOUE5gTnAfwE6AH9Af4B/wTtAgACAATuBO8CAQICAgMCCgT8BP0CCwIMAg0CDgIPAhAFAAUBBQMFBgUPAhICEwIUAhUCFgIXAhgCGQIaAhsCBAIFAgYCBwIIAgkCSwIdAh4CHwIgBQkCIQIjAiQCJQInAikChwNCA0MDRANFA0YDRwNIA0kDSgNLA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA5MDXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwUQA3UDdgN3A3gDeQN6A3sDfAN9A34DfwOAA4EDggODA4QDhQOGBRMDhwOIA4oDiQOLA4wDjQOOA48DkAORA5IDlAOVA5YFEQUSBNwE3QTeBN8E6QTsBOoE6wTwBPEE8gTgBOEE4gT7BP4E/wUCBQQFBQIRBQcE8wT0BPUE9gT3BPgE+QT6BRQFFQUWBRcFCAUKBQsCKAUNAioFDgUMAiYCHAIiBRwFHQACBwAA+gH3AoIB4QHgAd8B3gHdAdwB2wHaAdkB2AJDAkICQQJAAjgB9gH1AfQB8wHyAfEB8AHvAe4B7QHsAesB6gHpAegB5wHmAeUB5AHjAeIB+AH5AoQChgKFAocCgwKIAmIB+gH7AfwB/QH+Af8CAAIBAgICAwIEAgUCBgIHAggCCQIKAgsCDAINAg4CEAIRBQ8CEgITAhQCFQIWAhcCGAIZAhoCGwJLAh0CHgIfAiAFCQIhAiMCJAIlAiYCJwIoAikCKwIsAi4CLQNAA0EDQgNDA0QDRQNGA0cDSANJA0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QFEAN1A3YDdwN4A3kDegN7A3wDfQN+A38DgAOBA4IDgwOEA4UDhgUTA4cDiAOKA4kDiwOMA40DjgOPA5ADkQOSA5MDlAOVA5YFEQUSBNwE3QTeBN8E4AThBOIE4wTkBOUE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AIPBPkE+gT7BPwE/QT+BP8FAAUBBQIFAwUEBQUFBgUHBRQFFQUWBRcFCAUKBQsFDQIqBQ4FDAIcAiIFHAUdAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMZAxoAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwJ6AAIAAAABBt4AAQAGAssCzALdAt4DYANpAAEABgBNAE4C8gPfA+EEWgACAAMBlAGUAAAB1QHXAAECLwI1AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACZQJuAAoAAgAGAE0ATQAGAE4ATgAEAvIC8gAFA98D3wADA+ED4QACBFoEWgABAAIABAAUAB0AAAJ2AnYACgKBAoEACwSeBKUADAACAAYAGgAaAAAAHAAcAAECWgJfAAICYwJjAAgCZQJuAAkCdQJ1ABMAAQAUABoAHAJaAlsCXAJdAl4CXwJjAnUCdgKBBJ4EnwSgBKEEogSjBKQEpQABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaAo0CjwKrAqwCrQKuAq8CsAKxArICswK0ArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAsgCygLMAs4C0ALSAtQC1gLYAtoC3ALeAuAC4gLkAuYC6ALqAuwC7gLwAvIC9QL3AvkC+wL9Av8DAQMDAwUDBwMKAwwDDgMQAxIDFAMWAxgDGgMcAx4DIAMiAyQDJgMoAyoDLAMuAzADMgM0AzcDOQM7Az0DPwOvA7ADsQOyA7QDtQO2A7cDuAO5A7oDuwO8A70D1APVA9YD1wPYA9kD2gPbA9wD3QPeA98D4APhA+ID4wPlA+cD6QPrBAAEAgQEBBIEGQQfBCUEjwSQBJQEmAUZBRsAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGnAa0BsgG1AosCjAKOApACkQKSApMClAKVApYClwKYApkCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAscCyQLLAs0CzwLRAtMC1QLXAtkC2wLdAt8C4QLjAuUC5wLpAusC7QLvAvEC8wL0AvYC+AL6AvwC/gMAAwIDBAMGAwkDCwMNAw8DEQMTAxUDFwMZAxsDHQMfAyEDIwMlAycDKQMrAy0DLwMxAzMDNQM2AzgDOgM8Az4DlwOYA5kDmgObA5wDnQOfA6ADoQOiA6MDpAOlA6YDpwOoA6kDqgOrA6wDrQOuA74DvwPAA8EDwgPDA8QDxQPGA8cDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD5APmA+gD6gP/BAEEAwQYBB4EJASOBJMElwUYBRoBzAACAE0BzQACAFABzgADAEoATQHPAAMASgBQAAEAAQBKAcsAAgBKAdEAAgBYAdAAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBLcAAgCtAs0AAgCpBL0AAgCtBMoAAgCpBLgAAgCtAs4AAgCpBKcAAgCpBL4AAgCtBFoAAgCtBMsAAgCpAzwAAgCpAz4AAgCpAz0AAgCpAz8AAgCpBLYAAgCpBLsAAgHKBLkAAgCtBKYAAgCpAucAAgHKA/EAAgCpBMUAAgCtAx8AAgHKBNAAAgCtBNUAAgCtBNMAAgCqAzYAAgCpBNkAAgCtBLwAAgHKBLoAAgCtA/IAAgCpBMYAAgCtAyAAAgHKBNEAAgCtBNYAAgCtBNQAAgCqAzcAAgCpBNoAAgCtBL8AAgCpAvgAAgHKBMEAAgCtAvoAAgCpAvwAAgHKBMMAAgCtAxUAAgCpAxsAAgHKBM4AAgCtA+YAAgCpBNcAAgCtA+QAAgCoBMAAAgCpAvkAAgHKBMIAAgCtAvsAAgCpAv0AAgHKBMQAAgCtAxYAAgCpAxwAAgHKBM8AAgCtA+cAAgCpBNgAAgCtA+UAAgCoAw8AAgCpAxEAAgHKBMwAAgCtBLIAAgCsAxAAAgCpAxIAAgHKBM0AAgCtBLMAAgCsAwIAAgCpAwQAAgHKBMcAAgCtBKgAAgCoAqAAAgCqAqoAAgCpBIEAAgCtA+oAAgCoBIMAAgCrBIUAAgCqAwMAAgCpAwUAAgHKBMgAAgCtBKkAAgCoArsAAgCqAsUAAgCpBIIAAgCtA+sAAgCoBIQAAgCrBIYAAgCqArgAAgCpArcAAgCoBFgAAgCrAuwAAgCqBK8AAgCsBGkAAgCpBHEAAgCtBGsAAgCoBG0AAgCrBG8AAgCqBGoAAgCpBHIAAgCtBGwAAgCoBG4AAgCrBHAAAgCqBHcAAgCpBH8AAgCtBHkAAgCoBHsAAgCrBH0AAgCqBHgAAgCpBIAAAgCtBHoAAgCoBHwAAgCrBH4AAgCqApEAAgCpBC8AAgCtApAAAgCoBDEAAgCrApMAAgCqBKoAAgCsApkAAgCpBEcAAgCtApgAAgCoBEkAAgCrBEsAAgCqBKwAAgCsAp0AAgCpBFkAAgCtApwAAgCoBFcAAgCrAusAAgCqBK4AAgCsAqwAAgCpBDAAAgCtAqsAAgCoBDIAAgCrAq4AAgCqBKsAAgCsArQAAgCpBEgAAgCtArMAAgCoBEoAAgCrBEwAAgCqBK0AAgCsAr0AAgCpBFwAAgCtArwAAgCoBF4AAgCrAr8AAgCqBLEAAgCsAsIAAgCpBHQAAgCtAsEAAgCoBHYAAgCrAyYAAgCqBLUAAgCsAqIAAgCpBFsAAgCtAqEAAgCoBF0AAgCrAqQAAgCqBLAAAgCsAqcAAgCpBHMAAgCtAqYAAgCoBHUAAgCrAyUAAgCqBLQAAgCsBMkAAwCqAKkE0gADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqWLoiAAAb8IAAACWEdQT1PInCKzAAHBYAAAZfhHU1VChRYO9AACJ1gAABX2T1MvMpeDsYsAAAGYAAAAYGNtYXDOyFo6AAAWdAAABoJjdnQgO/gmfQAAL1AAAAD+ZnBnbagFhDIAABz4AAAPhmdhc3AACAAZAAG+/AAAAAxnbHlmnLrJSwAAOpAAAYGgaGVhZAZzHSoAAAEcAAAANmhoZWEKugrAAAABVAAAACRobXR45eWbKgAAAfgAABR8bG9jYQ+pa9gAADBQAAAKQG1heHAIzxDGAAABeAAAACBuYW1lOEJpvQABvDAAAAKqcG9zdP9tAGQAAb7cAAAAIHByZXB5WM7TAAAsgAAAAs4AAQAAAAMBSPgkVmdfDzz1ABsIAAAAAADE8BEuAAAAAN8Gv276Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQABAAAAAAAAAAAAAAAAAAAFHwABAAAFHwCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAQAAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA4wAZAAAAAAAAAAAAfwAAAH8AAACEAChApAAiQTtAHcEfwBuBdwAaQT6AGYBZgBoAr0AhgLJACcDcgAcBIoATgGTAB0CNgAmAhwAkANNABMEfwBzBH8AqwR/AF4EfwBfBH8ANQR/AJoEfwCFBH8ATgR/AHEEfwBkAfAAhQGxACkEEQBIBGQAmAQvAIcDyABLBy8AbQU4AB0E/ACpBTUAeAVAAKkEjACpBGwAqQVzAHoFtQCpAi0AtwRqADUFBQCpBE8AqQb8AKkFtQCpBYEAdwUMAKkFgQBuBO4AqQTAAFEExgAyBTAAjAUYAB0HGQA9BQQAOgTOAA8EywBXAh8AkwNJACkCHwAKA1gAQAOcAAQCeQA5BFoAbQR+AIwEMABdBIMAXwQ+AF0CyAA9BH4AYQRoAI0B8gCOAer/vgQOAI0B8gCcBwQAiwRrAI0EkABcBH4AjASMAF8CtgCNBCEAXwKeAAkEaQCJA+AAIQYDACsD+AAqA8kAFgP4AFkCtQBAAfQAsAK1ABQFcQCDAfQAiwRhAGkEpwBbBbUAaQQ0AA8B7ACUBOgAWwNZAGUGSQBcA5QAkwPBAGUEbgB/BkoAWwOrAI8C/QCDBEcAYQLvAEIC7wA/AoIAewSJAJsD6gBEAhcAlAH8AHQC7wB7A6QAewPAAGcF3ABVBjUAUAY5AHADygBEB3r/8QRFAFkFgQB3BLoApwTCAIwGwgBPBLEAfgSSAEcEiQBcBJwAlQTIAF8FmwAeAfsAnAR0AJsETwAjAioAIwWLAKIEiQCSB6EAaQdEAGEB/AChBYcAXgK6/+MFfwBmBJMAXAWQAIwE8wCJAgT/tAQ4AGMDxACqA44AjgOrAI8DawCCAfIAjgKuAHkCKwAyA8YAewL8AF8CWgB/AAD8pwAA/W4AAPyKAAD9XQAA/CcAAP04Ag4AuAQMAHICFwCUBHMAsgWkACAFcgBnBT8AMgSSAHgFtQCyBJIARgW7AE4FiQBaBVIAcgSGAGQEvQChBAMALwSJAGEEUQBkBCUAbQSJAJIEjwB7ApgAwwRvACYD7ABmBMUAKQSJAJIETgBlBIgAYQQsAFEEXgCQBaMAWAWaAGAGlwB6BKIAegRD/9oGSABLBgAAKwVlAHsIkgAyCKUAsgaDAD4FtACwBQsAowYEADMHQwAbBMAAUAW1ALIFqgAwBQgATQYtAFQF2gCvBXoAlweHALAHwACwBhIAEQbrALIFBQCjBWUAlAcnALcFGABaBG0AYgSTAJ4DXACbBNQALgYhABYEEABYBJ4AnQRTAJ0EoAAsBe8AngSdAJ0EngCdA9kAKAXOAGQEvgCdBFoAaAZ5AJ0GnwCSBPcAHgY2AJ4EWACeBE4AZAaIAJ4EZAAvBGj/5wROAGcGyQAnBuQAnQSJ//0EngCdBwkAnAYsAIEEV//bBywAuAX5AJoE0wAoBEcADwcMAMoGDAC9BtIAkwXiAJcJBQC3B9EAnAQkAFAD2wBMBXIAZwSMAFwFCwAWBAQALwVyAGcEiQBcBwEAnAYkAH4HCQCcBiwAgQUyAHYESABkBP4AdAAA/GYAAPxwAAD9ZQAA/aQAAPoaAAD6KwYJALIE7QCdBFf/2wUbAKkEigCMBGQAogORAJIE2wCyBAYAkgeiABsGYQAWBZoAsgS4AJ0FCgCkBH4AmwaMAEUFhAA/Bf8AqQTZAJ0HzwCpBbQAkggxALAG9ACSBe8AcQTUAG4FGAA6BCoAKgctADQFXQAfBbwAlwSWAGgFcACXBGsAhAVwAIkGMAA/BL7/3QUKAKQEWgCbBf4AMATvACwFswCyBIkAkgYSAKkE7ACdB08AqQY+AJ4FhwBeBKgAaASoAGoEuAA5A6sAOgUuADoEQAAqBPcAVwaVAFoG5QBkBlcANgUsADEESgBTBAgAeQfCAEUGdgA/B/sAqgaiAJAE9wB2BB4AZgWuACQFIQBGBWUAlwYCADAE8wAsAyEAcAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACNAAmAjQAJgVAAKIGPwCQA6YADQGaAGEBmgAwAZgAJAGaAE8C1ABpAtwAPALCACQEagBGBJAAVwKzAIsDxACUBVoAlAF/AFIHqgBEAmcAbAJnAFoDowA8Au8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgNhAHoC7wBRAu8AewLvAEIC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKBKcAWwZWAB8GkQCnCHYAqQXrAB8GKwCMBH8AXwXaAB8EIwArBHQAIQVIAF0FTwAfBegAewPOAGgIOgCiBQEAaAUYAJgGJgBUBtcAZQbPAGQGagBaBJAAagWPAKkErwBGBJMAqATFAD8IOgBjAg3/rwSCAGUEZACYBBEAPQQvAIQECAAsAkwAtQKQAG8CBABdBPMAPQRvACAEiwA9BtQAPQbUAD0E7gA9BpsAXwAAAAAINABbCDUAXALvAEIC7wB7Au8AUQQQAFYEEABhBBAAQgQPAHIEEACBBBAAMQQQAE8EEABPBBAAmQQQAGMEIwBIBCsADgRUACcGFQAxBGgAFAR9AHUEJwApBCAARARKAIoEvABaBF0AiwS8AGAE4wCLBgIAiwO1AIsEVQCLA88ALAHpAJgE5ACLBKwAZAPMAIsEIABEBDQAMQOhAA4DrwCLBGgAFAS8AGAEaAAUA4kAPgTPAIsD8ABABWcAYQUXAGEE8wB2BXMAJwR8AGEHQgAoB1AAiwV0ACkEzgCLBFoAiwUlAC4GCwAfBEAASATsAIsETgCMBMEAKAQgACMFKQCLBGoAPQZRAIsGrACLBR0ACQXxAIsETwCLBHwASwZ3AIsEhwBQBBIACwZIAB8EeQCMBQoAjAU3ACQFwwBgBF8ADgSoACcGYgAnBGoAPQRqAIsFxAACBMsAXgRAAEgEvABgBDQAMQPkAEMIIgCLBKsAKALvAD8C7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDlwCPArUAnwPmAIsEOgAfBMQAZAVMALIFJACyBBQAkwU9ALIEDwCTBIAAiwR8AGEEUQCLBIYAFAH+AJ8DpQCCAAD8owPwAG8D9P9dBA8AaQP1AGkDrwCLA6AAggOfAIIC7wBRAu8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKBYIAfgWvAH4FkwCyBeAAfgXjAH4D1QCgBIIAgwRYAA8EzwA+BGsAZQQuAEoDpQCEAZIAaAakAGAEugCCAfz/tgR/ADsEfwBzBH8AIgR/AHYEfwB2BH8ANgR/AH4EfwBeBH8AcQR/APQCBv+0AgT/tAH7AJwB+//5AfsAnARRAIsFAAB4BCEAOwR+AIwEMwBdBJMAWwSMAFsEnwBaBI4AjAScAFsEPgBdBH4AYQRwAFoDeQBXBNYAaAO1AAEGOgAJA/kAiwS8AGAE4wAwBOMAiwH8AAACNgAmBV4AJQVeACUEhgABBMYAMgKe//QFOAAdBTgAHQU4AB0FOAAdBTgAHQU4AB0FOAAdBTUAeASMAKkEjACpBIwAqQSMAKkCLf/fAi0AsQIt/+oCLf/VBbUAqQWBAHcFgQB3BYEAdwWBAHcFgQB3BTAAjAUwAIwFMACMBTAAjATOAA8EWgBtBFoAbQRaAG0EWgBtBFoAbQRaAG0EWgBtBDAAXQQ+AF0EPgBdBD4AXQQ+AF0B+//EAfsAlgH7/88B+/+6BGsAjQSQAFwEkABcBJAAXASQAFwEkABcBGkAiQRpAIkEaQCJBGkAiQPJABYDyQAWBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTUAeAQwAF0FNQB4BDAAXQU1AHgEMABdBTUAeAQwAF0FQACpBRkAXwSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0FcwB6BH4AYQVzAHoEfgBhBXMAegR+AGEFcwB6BH4AYQW1AKkEaACNAi3/tgH7/5sCLf/NAfv/sgIt/+wB+//RAi0AFwHy//oCLQCqBpcAtwPcAI4EagA1AgT/tAUFAKkEDgCNBE8AogHyAJMETwCpAfIAVgRPAKkCiACcBE8AqQLOAJwFtQCpBGsAjQW1AKkEawCNBbUAqQRrAI0Ea/+7BYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBO4AqQK2AI0E7gCpArYAUwTuAKkCtgBkBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTGADICngAJBMYAMgKeAAkExgAyAsYACQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQcZAD0GAwArBM4ADwPJABYEzgAPBMsAVwP4AFkEywBXA/gAWQTLAFcD+ABZB3r/8QbCAE8FgQB3BIkAXASA/70EgP+9BCcAKQSGABQEhgAUBIYAFASGABQEhgAUBIYAFASGABQEfABhA+YAiwPmAIsD5gCLA+YAiwHp/7wB6QCOAen/xwHp/7IE4wCLBLwAYAS8AGAEvABgBLwAYAS8AGAEfQB1BH0AdQR9AHUEfQB1BCsADgSGABQEhgAUBIYAFAR8AGEEfABhBHwAYQR8AGEEgACLA+YAiwPmAIsD5gCLA+YAiwPmAIsErABkBKwAZASsAGQErABkBOQAiwHp/5MB6f+qAen/yQHpAAUB6QCHA88ALARVAIsDtQCDA7UAiwO1AIsDtQCLBOMAiwTjAIsE4wCLBLwAYAS8AGAEvABgBEoAigRKAIoESgCKBCAARAQgAEQEIABEBCAARAQnACkEJwApBCcAKQR9AHUEfQB1BH0AdQR9AHUEfQB1BH0AdQYVADEEKwAOBCsADgQjAEgEIwBIBCMASAU4AB0E8P+MBhn/mgKR/6AFlf/6BTL/dgVm//wCmP+bBTgAHQT8AKkEjACpBMsAVwW1AKkCLQC3BQUAqQb8AKkFtQCpBYEAdwUMAKkExgAyBM4ADwUEADoCLf/VBM4ADwSGAGQEUQBkBIkAkgKYAMMEXgCQBHQAmwSQAFwEiQCbA+AAIQRwAFoCmP/kBF4AkASQAFwEXgCQBpcAegSMAKkEcwCyBMAAUQItALcCLf/VBGoANQUkALIFBQCpBQgATQU4AB0E/ACpBHMAsgSMAKkFtQCyBvwAqQW1AKkFgQB3BbUAsgUMAKkFNQB4BMYAMgUEADoEWgBtBD4AXQSeAJ0EkABcBH4AjAQwAF0DyQAWA/gAKgQ+AF0DXACbBCEAXwHyAI4B+/+6Aer/vgRTAJ0DyQAWBxkAPQYDACsHGQA9BgMAKwcZAD0GAwArBM4ADwPJABYBZgBoApAAiQQgAKECBP+0AZoAMAb8AKkHBACLBTgAHQRaAG0EjACpBbUAsgQ+AF0EngCdBYkAWgWaAGAFCwAWBAT/+whZAFwJSgB3BMAAUAQQAFgFNQB4BDAAXQTOAA8EAwAvAi0AtwdDABsGIQAWAi0AtwU4AB0EWgBtBTgAHQRaAG0Hev/xBsIATwSMAKkEPgBdBYcAXgQ4AGMEOABjB0MAGwYhABYEwABQBBAAWAW1ALIEngCdBbUAsgSeAJ0FgQB3BJAAXAVyAGcEjABcBXIAZwSMAFwFZQCUBE4AZAUIAE0DyQAWBQgATQPJABYFCABNA8kAFgV6AJcEWgBoBusAsgY2AJ4EgwBfBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRa/8kFOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjP/uBD7/uASMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQItALcB+wCcAi0ApAHyAIYFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwFgQBGBJD/wgWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFMACMBGkAiQUwAIwEaQCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQTOAA8DyQAWBM4ADwPJABYEzgAPA8kAFgShAF8ExgAyA9kAKAV6AJcEWgBoBHMAsgNcAJsGMAA/BL7/3QRoAI0FBf/UBQX/1ARzAAMDXP/9BTgACwQo/9MEzgAPBAMALwUEADoD+AAqBFEAZARsABIGPwCQBH8AXgR/AF8EfwA1BH8AmgSTAJkEpwCFBJMAZASnAIcFcwB6BH4AYQW1AKkEawCNBTgAHQRaADoEjABfBD4AKQIt/wsB+/7wBYEAdwSQADME7gBWArb/jAUwAIwEaQArBKf/OAT8AKkEfgCMBUAAqQSDAF8FQACpBIMAXwW1AKkEaACNBQUAqQQOAI0FBQCpBA4AjQRPAKkB8gCGBvwAqQcEAIsFtQCp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GRwfkhGaEcIWzBiqEdgUuhJ4EiIRNimwEVQmjhFUEVQTBBIiEXoYRBI8Ee4RChI8FQASIhJaGZIezBcmEloXJiWQJ5Ai1h1kEOwSPBEiPkQRVDe+JJ4okhIIEPIQ+EEuEP4UQhPWGhQ5sC1yNA4sJBKaMLY74hbMISoSmhKaFUYSmhKaEpoyYBqeEpoTfh4GHEAX4iO4HNIRQCIAEQoTVDXkRCwSIhR8KuYbKBLeEiIbshMqFnYUDBLeFyYTBBGaEjwTVBIiHswRQBbMEQoVkBWQFZASmhbMEQoSmhKaEloRQBbMEQoRBC8UEQQRBBEEERwV2hYoERYRLBEQERYREBFeERARiBJaEloSWhJaH5IXJhcmFyYXJhcmFyYXJhGIEWwRbBFsEWwSmhKaEpoSmhKaEloSWhJaEloSWhiqEngSeBJ4EngSeBJ4EngRNhE2ETYRNhFUEwQTBBMEEwQTBBI8EjwXJhJ4FyYSeBcmEngRiBGIEYgRiBJaEWwRNhFsETYRbBE2EWwRNhFsETYSmhFUEpoSmhKaEpoSmhWQEawRrBGsEawSmhFUEpoRVBKaEVQRVBJaEwQSWhMEEloTBBF6EXoReh+SH5IfkhHCGKoSPBiqEdgR2BHYERYRFhEcERAREBEQERAREBEQERARFhEWERYRFhEWERAREBEQERYRLBEsESwRLBEWERYRFhEcFyYRbBKaEpoSWhiqFyYRShFsEdgSmhKaFZASmhKaEloSvB+SGKoWzBKaGKoRVBMEEjwTBBFsHswSmhKaFZAVkBVGFyYRSh7MEWwSmhKaEloSvBGIH5IWzBJ4ETYTBBIiEjwRChE2EUASPBHCEcIRwhiqEjwRBBEEEQQSmhFUFyYSeBFsETYRmhI8EYgYqhI8EpoWzBEKEpoXJhJ4FyYSeBFsETYRNhE2FswRChJaEwQTBBIiFUYSPBVGEjwVRhI8FyYSeBcmEngXJhJ4FyYSeBcmEngXJhJ4FyYSeBcmEngXJhJ4FyYSeBcmEngXJhJ4EWwRNhFsETYRbBE2EWwRNhFsETYRbBE2EWwRNhFsETYSmhKaEloTBBJaEwQSWhMEEloTBBJaEwQSWhMEEloTBBMEGKoSPBiqEjwYqhI8H5IezBFAEVQTfh7MFZAYqhKaEVQXJhJ4EWwSmhJaEwQRehFKEiISWhJaEpoRVBWQFZARrBKa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/+wCtP/sArX/7AK2/+wCzv/sAtD/7ALS/+wC1P/sAtb/7ALY/+wC2v/sAtz/7ALe/+wC4P/sAuL/7ALk/+wC5v/sAuj/7AOv/+wD1f/sA9n/7APc/+wD9//sA/3/7AQC/+wEEP/sBBL/7AQT/+wEH//sBC7/7ARI/+wESv/sBEz/7ARO/+wEUP/sBFL/7ARU/+wEVv/sBGr/7ARs/+wEbv/sBHL/7ASt/+wEuv/sBLz/7ABAACf/5gAr/+YAM//mADX/5gCD/+YAk//mAJj/5gCz/+YAuP/CAMQAEADT/+YBCP/mARf/5gEb/+YBHf/mAR//5gEh/+YBQf/mAWr/5gJV/+YCVv/mAlj/5gJZ/+YCl//mAqH/5gKi/+YCo//mAqT/5gKl/+YCzf/mAs//5gLR/+YC0//mAuH/5gLj/+YC5f/mAuf/5gMJ/+YDC//mAw3/5gM+/+YDm//mA6j/5gPO/+YD0f/mA/7/5gQB/+YEHP/mBB7/5gQg/+YEW//mBF3/5gRf/+YEYf/mBGP/5gRl/+YEZ//mBGn/5gRr/+YEbf/mBG//5gRx/+YEsP/mBMn/5gBHABAAAAASAAAAR//nAEj/5wBJ/+cAS//nAFX/5wCU/+cAmf/nALv/5wDEAA8AyP/nAMn/5wD3/+cBA//nAR7/5wEi/+cBQv/nAWD/5wFh/+cBa//nAYYAAAGKAAABjgAAAY8AAAKy/+cCs//nArT/5wK1/+cCtv/nAs7/5wLQ/+cC0v/nAtT/5wLW/+cC2P/nAtr/5wLc/+cC3v/nAuD/5wLi/+cC5P/nAub/5wLo/+cDr//nA9X/5wPZ/+cD3P/nA/f/5wP9/+cEAv/nBBD/5wQS/+cEE//nBB//5wQu/+cESP/nBEr/5wRM/+cETv/nBFD/5wRS/+cEVP/nBFb/5wRq/+cEbP/nBG7/5wRy/+cErf/nBLr/5wS8/+cATQAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AC7/+gAyP/oAMn/6AD3/+gBA//oAR7/6AEi/+gBQv/oAWD/6AFh/+gBa//oAYQAEAGFABABhwAQAYgAEAGJABACsv/oArP/6AK0/+gCtf/oArb/6ALO/+gC0P/oAtL/6ALU/+gC1v/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/o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A9z/sAPjAAsD6wALA+wADQPtAA0D8AANA/T/8AP3/7AD/AALA/3/sAQC/7AEBAALBAr/8AQM//AEEP+wBBL/sAQT/7AEHf/WBB//sAQh/9YEJQALBCcACwQpAAsELv+wBDD/8AQy//AENP/wBDb/8AQ4//AEOv/wBDz/8AQ+//AEQP/wBEL/8ARE//AERv/wBEj/sARK/7AETP+wBE7/sARQ/7AEUv+wBFT/sARW/7AEXP/WBF7/1gRg/9YEYv/WBGT/1gRm/9YEaP/WBGr/sARs/7AEbv+wBHD/1gRy/7AEggALBIQACwSGAAsEq//wBK3/sASx/9YEuv+wBLz/sATUAAsE1gALBNz/vwTg/+0E4QANBOP/vwTvAA0E8gANBPv/vwUC/+0FBf/tBQYADgUK/+0FCwANAOcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgC0/1YAu//rAL3/6ADI/+sAyf/rAMv/6gDSABQA1gAUAPf/6wED/+sBDf9WARj/6wEa/+gBHv/rASL/6wE5ABQBQv/rAUUAFAFg/+sBYf/rAWv/6wGG/xYBiv8WAY7/FgGP/xYB+//AAf3/wAJD/8ACkP9WApH/VgKS/1YCk/9WApT/VgKV/1YClv9WAqv/3gKs/94Crf/eAq7/3gKv/94CsP/eArH/3gKy/+sCs//rArT/6wK1/+sCtv/rArz/6wK9/+sCvv/rAr//6wLA/+sCwf/qAsL/6gLD/+oCxP/qAsX/6ALG/+gCx/9WAsj/3gLJ/1YCyv/eAsv/VgLM/94Czv/rAtD/6wLS/+sC1P/rAtb/6wLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wL2/vgDCv/rAwz/6wMO/+sDHwAUAyEAFAMjABQDJv/qAyj/6gMq/+oDLP/qAy7/6gMw/+oDNP/oA0P/wANE/8ADRf/AA0b/wANH/8ADSP/AA0n/wANe/8ADX//AA2D/wAOX/1YDn/9WA6//6wOz/+oDtf/rA7f/6AO6/+oDu//rA7z/6gPD/vgDx/9WA9IAFAPU/94D1f/rA9f/6wPZ/+sD2v/oA9z/6wPj/+gD6//oA/P/VgP0/94D9//rA/z/6AP9/+sEAv/rBAT/6AQJ/1YECv/eBAv/VgQM/94EEP/rBBL/6wQT/+sEHf/rBB//6wQh/+sEJf/oBCf/6AQp/+gELv/rBC//VgQw/94EMf9WBDL/3gQz/1YENP/eBDX/VgQ2/94EN/9WBDj/3gQ5/1YEOv/eBDv/VgQ8/94EPf9WBD7/3gQ//1YEQP/eBEH/VgRC/94EQ/9WBET/3gRF/1YERv/eBEj/6wRK/+sETP/rBE7/6wRQ/+sEUv/rBFT/6wRW/+sEXP/rBF7/6wRg/+sEYv/rBGT/6wRm/+sEaP/rBGr/6wRs/+sEbv/rBHD/6wRy/+sEdP/qBHb/6gR4/+oEev/qBHz/6gR+/+oEgP/qBIL/6ASE/+gEhv/oBIgAFASq/1YEq//eBK3/6wSx/+sEtf/qBLr/6wS8/+sE0AAUBNT/6ATW/+gE3P/ABOP/wAT7/8AAAgCgAAQABAAAAAYABgABAAsADAACABMAEwAEACUAKgAFACwALQALAC8ANgANADgAOAAVADoAPwAWAEUARgAcAEkASgAeAEwATAAgAE8ATwAhAFEAVAAiAFYAVgAmAFgAWAAnAFoAXQAoAF8AXwAsAIoAigAtAJYAlgAuAJ0AnQAvALEAtQAwALcAuQA1ALsAuwA4AL0AvgA5AMAAwQA7AMMAxQA9AMcAzgBAANIA0gBIANQA3gBJAOAA7wBUAPEA8QBkAPYA+ABlAPsA/ABoAP4BAABqAQMBBQBtAQoBCgBwAQ0BDQBxARgBGgByASIBIgB1AS4BMAB2ATMBNQB5ATcBNwB8ATkBOQB9ATsBOwB+AUMBRAB/AVQBVACBAVYBVgCCAVgBWACDAVwBXgCEAYQBhQCHAYcBiQCJAegB6ACMAeoB6wCNAe0B7QCPAfAB8ACQAfsB/QCRAkACQACUAkMCQwCVAlUCVQCWAlcCWACXAosCjACZAo4CjgCbApACpQCcAqoCsQCyArMCtgC6ArsCwAC+AsUCzQDEAs8CzwDNAtEC0QDOAtMC0wDPAtUC1QDQAtcC4ADRAukC6wDbAu0C7QDeAu8C7wDfAvEC8QDgAvMC8wDhAvgC+ADiAvoC+gDjAvwC/ADkAv4C/gDlAwADAADmAwIDDgDnAxADEAD0AxIDEgD1AxQDFAD2Ax8DHwD3AyEDIQD4AyMDIwD5AzEDMQD6AzMDNgD7AzgDOAD/AzoDOgEAA0ADSQEBA1QDWAELA14DYAEQA2UDZQETA3cDegEUA34DgAEYA4kDiQEbA5cDnAEcA58DrgEiA7EDsQEyA7UDtQEzA7cDtwE0A7sDuwE1A74DvwE2A8EDwgE4A8QDygE6A8wDzgFBA9AD1QFEA9cD2AFKA9oD3QFMA+MD5AFQA+YD5gFSA+gD6AFTA+oD7QFUA/AD9QFYA/cD9wFeA/sD/AFfBAEEAQFhBAMEDAFiBA8EEAFsBBIEFQFuBBwEHQFyBCEEIQF0BCMEKQF1BC8EVwF8BFkEWQGlBFsEaAGmBHAEcAG0BIEEhgG1BIgEiAG7BIwEjQG8BJAEkAG+BJIEkwG/BJUElQHBBJcElwHCBKgErAHDBK4ErgHIBLAEsQHJBLMEswHLBLcEuQHMBLsEuwHPBL0EvwHQBMEEwQHTBMMEwwHUBMUEywHVBM0EzQHcBNAE0AHdBNME1wHeBNkE2QHjBNsE3AHkBOAE4AHmBOME4wHnBO4E7gHoBPsE+wHpBQIFAgHqBQYFBgHrAAIAmgAGAAYAAAALAAsAAQAQABAAAgASABIAAwAlACkABAAsADQACQA4AD4AEgBFAEcAGQBJAEkAHABMAEwAHQBRAFQAHgBWAFYAIgBaAFoAIwBcAF4AJACKAIoAJwCWAJYAKACxALQAKQC9AL0ALQDBAMEALgDHAMcALwDUANUAMADXANcAMgDaANoAMwDcAN4ANADgAOYANwDsAOwAPgDuAO4APwD3APcAQAD8APwAQQD+AP8AQgEEAQUARAEKAQoARgENAQ0ARwEYARoASAEuATAASwEzATUATgE3ATcAUQE5ATkAUgE7ATsAUwFDAUQAVAFUAVQAVgFWAVYAVwFYAVgAWAFcAV4AWQGEAYoAXAGOAY8AYwHoAegAZQHtAe0AZgHwAfEAZwH7Af0AaQIPAg8AbAIeAiAAbQJAAkAAcAJDAkMAcQJVAlUAcgJXAlgAcwKLAowAdQKOAo4AdwKQArYAeAK7AsAAnwLFAtUApQLXAuAAtgLpAusAwALtAu0AwwLvAu8AxALxAvEAxQLzAvMAxgL2AvYAxwL4AvgAyAL6AvoAyQL8AvwAygL+Av4AywMAAwAAzAMCAw4AzQMQAxAA2gMSAxIA2wMUAxQA3AMfAx8A3QMhAyEA3gMjAyMA3wMlAyUA4AMnAycA4QMp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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAgAAAAAAAAACAAAAAAAjAAAAAAAAAAAAAgAAAAIAAAAUAA0ACwAaABYAEAAMABcAAAAAAAAAAAAAAAAABgAAAAEAAQABAAAAAQAAAAAAAAAAAAAAAwADAAcAAwABAAAAEQAAAAgACQAAABMACQAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgABAAAAAAAAAAIAAQAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAIABAAAAAAAAAAAAAAAAAABAAAACQAAAAAAAAADAAAAAAAAAAAAAAAAAAEAAQAAAAgAAAAAAAAAAAAAAAAADQACAB4AAAANAAAAAAAAABAAAAAAAB4AHwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAATAAAAAwADACEAAwADAAMAAAABAAMAIgADAAMAAAAAAAMAAAADAAAAAAABACEAAwAAAAAAAgAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAgAHABoACQACAAAAAgABAAIAAAACAAEAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAQABMAAAADAAAAAAANAAAAAAADAAAAAwAAAAAAAgABABAAEwANAAAAIAAiAAAAAAAAAAAAAAAAAAAAHgAhAAAAAwAAAAMAAAADAAAAAAAAAAAAAwAQABMAAAABAAEAAAAAAAAAAAAeAAAAAAAAAAIAAQAAAAAAAAAeACEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbABsAAAAPAA8AGAAPAA8ADwAYAAAAAAAAABgAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAZACQAAAAOABUAHAAAAAUAAAAFAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAACgAFAAoAAAAAAAAAAAAAAAAAFQAFAAAAAAAVAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVAAUAEgAZABUAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgACAAAAAgACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAgAAAAAAAAAAAAAAAAAAAAAAAAACAAIAAgACAAIACwALAAsACwAMAAYABgAGAAYABgAGAAYAAQABAAEAAQABAAAAAAAAAAAAAwAHAAcABwAHAAcACAAIAAgACAAJAAkABAAGAAQABgAEAAYAAgABAAIAAQACAAEAAgABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAIAAQACAAEAAgABAAIAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAMAAgAHAAIABwACAAcAAAAAAAAAAAAAAAAAFAARABQAEQAUABEAFAARABQAEQANAAAADQAAAA0AAAALAAgACwAIAAsACAALAAgACwAIAAsACAAWAAAADAAJAAwAFwAdABcAHQAXAB0AAAAAAAIAAAAAAAAAAAAKAAoACgAKAAoACgAKAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAA4ADgAOAA4AEgAKAAoACgAFAAUABQAFAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAHAAcABwAHAAAABUAAAAOAA4ADgAOAA4ADgAkABIAEgAAAAAAAAAE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"}}}]); \ No newline at end of file diff --git a/frontend/636.2c7ab7c33992b609.js b/frontend/636.2c7ab7c33992b609.js new file mode 100644 index 00000000..4b2bd5d0 --- /dev/null +++ b/frontend/636.2c7ab7c33992b609.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[636],{1636:(dC,Qe,x)=>{x.r(Qe),x.d(Qe,{LNDModule:()=>mC});var m=x(9808),v=x(1402),mt=x(8878),e=x(5e3),d=x(7093),D=x(5899);function dt(n,a){1&n&&e._UZ(0,"mat-progress-bar",3)}let Ee=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof v.OD:this.loading=!0;break;case i instanceof v.m2:case i instanceof v.gk:case i instanceof v.Q3:this.loading=!1}})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lnd-root"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["outlet","outlet"],["color","primary","mode","indeterminate"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,dt,1,0,"mat-progress-bar",1),e._UZ(2,"router-outlet",null,2),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",i.loading))},directives:[d.xw,d.yH,d.Wh,m.O5,D.pW,v.lC],styles:[""],data:{animation:[mt.g]}}),n})();var p=x(7579),h=x(2722),Y=x(9300),Ye=x(3396),b=x(2687),l=x(7731),y=x(6529),U=x(5043),F=x(5620),X=x(6642),I=x(62),M=x(9546),he=x(3954),Z=x(9224),k=x(7423),ve=x(2181),ae=x(5245),q=x(3322),K=x(7238);const Be=function(n){return{backgroundColor:n}};function _t(n,a){if(1&n&&e._UZ(0,"span",8),2&n){const t=e.oxw();e.Q6J("ngStyle",e.VKq(1,Be,null==t.information?null:t.information.color))}}function ht(n,a){if(1&n&&(e.TgZ(0,"div")(1,"h4",1),e._uU(2,"Color"),e.qZA(),e.TgZ(3,"div",2),e._UZ(4,"span",9),e._uU(5),e.ALo(6,"uppercase"),e.qZA()()),2&n){const t=e.oxw();e.xp6(4),e.Q6J("ngStyle",e.VKq(4,Be,null==t.information?null:t.information.color)),e.xp6(1),e.hij(" ",e.lcZ(6,2,null==t.information?null:t.information.color)," ")}}function gt(n,a){1&n&&e._UZ(0,"span",10)}function ft(n,a){1&n&&e._UZ(0,"span",11)}function Ct(n,a){if(1&n&&(e.TgZ(0,"span",2),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t)}}let He=(()=>{class n{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain)+" "+this.commonService.titleCase(t.network))}))}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[e.TTD],decls:19,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","dot green mr-1","matTooltip","Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","dot red mr-1","matTooltip","Not Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"],["matTooltip","Synced to Chain","matTooltipPosition","right",1,"dot","green","mr-1"],["matTooltip","Not Synced to Chain","matTooltipPosition","right",1,"dot","red","mr-1"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div")(2,"h4",1),e._uU(3,"Alias"),e.qZA(),e.TgZ(4,"div",2),e._uU(5),e.YNc(6,_t,1,3,"span",3),e.qZA()(),e.YNc(7,ht,7,6,"div",4),e.TgZ(8,"div")(9,"h4",1),e._uU(10,"Implementation"),e.qZA(),e.TgZ(11,"div",2),e._uU(12),e.qZA()(),e.TgZ(13,"div")(14,"h4",1),e._uU(15,"Chain"),e.qZA(),e.YNc(16,gt,1,0,"span",5),e.YNc(17,ft,1,0,"span",6),e.YNc(18,Ct,2,1,"span",7),e.qZA()()),2&t&&(e.xp6(5),e.hij(" ",null==i.information?null:i.information.alias," "),e.xp6(1),e.Q6J("ngIf",!i.showColorFieldSeparately),e.xp6(1),e.Q6J("ngIf",i.showColorFieldSeparately),e.xp6(5),e.Oqu(null!=i.information&&i.information.lnImplementation||null!=i.information&&i.information.version?(null==i.information?null:i.information.lnImplementation)+" "+(null==i.information?null:i.information.version):""),e.xp6(4),e.Q6J("ngIf",null==i.information?null:i.information.synced_to_chain),e.xp6(1),e.Q6J("ngIf",!(null!=i.information&&i.information.synced_to_chain)),e.xp6(1),e.Q6J("ngForOf",i.chains))},directives:[d.xw,d.yH,d.Wh,m.O5,m.PC,q.Zl,K.gM,m.sg],pipes:[m.gd],styles:[""]}),n})();function xt(n,a){if(1&n&&(e.TgZ(0,"div",2)(1,"div")(2,"h4",3),e._uU(3,"Lightning"),e.qZA(),e.TgZ(4,"div",4),e._uU(5),e.ALo(6,"number"),e.qZA(),e._UZ(7,"mat-progress-bar",5),e.qZA(),e.TgZ(8,"div")(9,"h4",3),e._uU(10,"On-chain"),e.qZA(),e.TgZ(11,"div",4),e._uU(12),e.ALo(13,"number"),e.qZA(),e._UZ(14,"mat-progress-bar",5),e.qZA(),e.TgZ(15,"div")(16,"h4",3),e._uU(17,"Total"),e.qZA(),e.TgZ(18,"div",4),e._uU(19),e.ALo(20,"number"),e.qZA()()()),2&n){const t=e.oxw();e.xp6(5),e.hij("",e.lcZ(6,5,null==t.balances?null:t.balances.lightning)," Sats"),e.xp6(2),e.s9C("value",(null==t.balances?null:t.balances.lightning)/(null==t.balances?null:t.balances.total)*100),e.xp6(5),e.hij("",e.lcZ(13,7,null==t.balances?null:t.balances.onchain)," Sats"),e.xp6(2),e.s9C("value",(null==t.balances?null:t.balances.onchain)/(null==t.balances?null:t.balances.total)*100),e.xp6(5),e.hij("",e.lcZ(20,9,null==t.balances?null:t.balances.total)," Sats")}}function yt(n,a){if(1&n&&(e.TgZ(0,"div",6)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Tt=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,i){if(1&t&&(e.YNc(0,xt,21,11,"div",0),e.YNc(1,yt,3,1,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf"," "===i.errorMessage)("ngIfElse",o)}},directives:[m.O5,d.xw,d.yH,d.Wh,D.pW],pipes:[m.JJ],styles:[""]}),n})();var T=x(7322),j=x(4834),H=x(8129);const bt=function(){return["../connections/channels/open"]},vt=function(n){return{filter:n}};function Zt(n,a){if(1&n&&(e.TgZ(0,"div",19)(1,"a",20),e._uU(2),e.ALo(3,"slice"),e.qZA(),e.TgZ(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e._uU(7,"Local:"),e.qZA(),e._uU(8),e.ALo(9,"number"),e.qZA(),e.TgZ(10,"mat-hint",22),e._UZ(11,"fa-icon",23),e._uU(12),e.ALo(13,"number"),e.qZA(),e.TgZ(14,"mat-hint",24)(15,"strong",8),e._uU(16,"Remote:"),e.qZA(),e._uU(17),e.ALo(18,"number"),e.qZA()(),e._UZ(19,"mat-progress-bar",25),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(3);e.xp6(1),e.s9C("matTooltip",t.remote_alias||t.remote_pubkey),e.s9C("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Q6J("routerLink",e.DdM(21,bt))("state",e.VKq(22,vt,t.chan_id)),e.xp6(1),e.AsE(" ",e.Dn7(3,11,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.xp6(6),e.hij("",e.lcZ(9,15,t.local_balance||0)," Sats"),e.xp6(3),e.Q6J("icon",i.faBalanceScale),e.xp6(1),e.hij(" (",e.lcZ(13,17,t.balancedness||0),") "),e.xp6(5),e.hij("",e.lcZ(18,19,t.remote_balance||0)," Sats"),e.xp6(2),e.s9C("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function At(n,a){if(1&n&&(e.TgZ(0,"div",17),e.YNc(1,Zt,20,24,"div",18),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",t.allChannels)}}function St(n,a){if(1&n&&(e.TgZ(0,"div",3)(1,"div",4)(2,"span",5),e._uU(3,"Total Capacity"),e.qZA(),e.TgZ(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e._uU(7,"Local:"),e.qZA(),e._uU(8),e.ALo(9,"number"),e.qZA(),e.TgZ(10,"mat-hint",9),e._UZ(11,"fa-icon",10),e._uU(12),e.ALo(13,"number"),e.qZA(),e.TgZ(14,"mat-hint",11)(15,"strong",8),e._uU(16,"Remote:"),e.qZA(),e._uU(17),e.ALo(18,"number"),e.qZA()(),e._UZ(19,"mat-progress-bar",12),e.qZA(),e.TgZ(20,"div",13),e._UZ(21,"mat-divider",14),e.qZA(),e.TgZ(22,"div",15),e.YNc(23,At,2,1,"div",16),e.qZA()()),2&n){const t=e.oxw(),i=e.MAs(2);e.xp6(8),e.hij("",e.lcZ(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0)," Sats"),e.xp6(3),e.Q6J("icon",t.faBalanceScale),e.xp6(1),e.hij(" (",e.lcZ(13,9,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),e.xp6(5),e.hij("",e.lcZ(18,11,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0)," Sats"),e.xp6(2),e.s9C("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),e.xp6(4),e.Q6J("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",i)}}function wt(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",26),e._uU(1," No channels available. "),e.TgZ(2,"button",27),e.NdJ("click",function(){return e.CHM(t),e.oxw().goToChannels()}),e._uU(3,"Open Channel"),e.qZA()()}}function Lt(n,a){if(1&n&&(e.TgZ(0,"div",28)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Ft=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=b.DL8,this.faDumbbell=b.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,i){if(1&t&&(e.YNc(0,St,24,13,"div",0),e.YNc(1,wt,4,0,"ng-template",null,1,e.W1O),e.YNc(3,Lt,3,1,"ng-template",null,2,e.W1O)),2&t){const o=e.MAs(4);e.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[m.O5,d.xw,d.Wh,d.yH,T.bx,M.BN,K.gM,D.pW,j.d,H.$V,m.sg,v.yS,k.lW],pipes:[m.JJ,m.OU],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}),n})();function qt(n,a){if(1&n&&(e.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e._uU(4,"Daily"),e.qZA(),e.TgZ(5,"div",5),e._uU(6),e.ALo(7,"number"),e.qZA()(),e.TgZ(8,"div")(9,"h4",4),e._uU(10,"Weekly"),e.qZA(),e.TgZ(11,"div",5),e._uU(12),e.ALo(13,"number"),e.qZA()(),e.TgZ(14,"div")(15,"h4",4),e._uU(16,"Monthly"),e.qZA(),e.TgZ(17,"div",5),e._uU(18),e.ALo(19,"number"),e.qZA()(),e.TgZ(20,"div",6),e._UZ(21,"h4",7)(22,"span",5),e.qZA()(),e.TgZ(23,"div",3)(24,"div")(25,"h4",4),e._uU(26,"Transactions"),e.qZA(),e.TgZ(27,"div",5),e._uU(28),e.ALo(29,"number"),e.qZA()(),e.TgZ(30,"div")(31,"h4",4),e._uU(32,"Transactions"),e.qZA(),e.TgZ(33,"div",5),e._uU(34),e.ALo(35,"number"),e.qZA()(),e.TgZ(36,"div")(37,"h4",4),e._uU(38,"Transactions"),e.qZA(),e.TgZ(39,"div",5),e._uU(40),e.ALo(41,"number"),e.qZA()(),e.TgZ(42,"div",6),e._UZ(43,"h4",7)(44,"span",5),e.qZA()()()),2&n){const t=e.oxw();e.xp6(6),e.hij("",e.lcZ(7,6,null==t.fees?null:t.fees.day_fee_sum)," Sats"),e.xp6(6),e.hij("",e.lcZ(13,8,null==t.fees?null:t.fees.week_fee_sum)," Sats"),e.xp6(6),e.hij("",e.lcZ(19,10,null==t.fees?null:t.fees.month_fee_sum)," Sats"),e.xp6(10),e.Oqu(e.lcZ(29,12,null==t.fees?null:t.fees.daily_tx_count)),e.xp6(6),e.Oqu(e.lcZ(35,14,null==t.fees?null:t.fees.weekly_tx_count)),e.xp6(6),e.Oqu(e.lcZ(41,16,null==t.fees?null:t.fees.monthly_tx_count))}}function Nt(n,a){if(1&n&&(e.TgZ(0,"div",8)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Ve=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees.month_fee_sum){this.totalFees=[{name:"Monthly",value:this.fees.month_fee_sum},{name:"Weekly",value:this.fees.week_fee_sum||0},{name:"Daily ",value:this.fees.day_fee_sum||0}];const t=Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10),i=Math.pow(10,t-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/i)*i/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[e.TTD],decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"],[1,"dashboard-info-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,i){if(1&t&&(e.YNc(0,qt,45,18,"div",0),e.YNc(1,Nt,3,1,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[m.O5,d.xw,d.yH,d.Wh],pipes:[m.JJ],styles:[""]}),n})();function kt(n,a){if(1&n&&(e.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e._uU(4,"Active"),e.qZA(),e.TgZ(5,"div",5),e._UZ(6,"span",6),e._uU(7),e.ALo(8,"number"),e.qZA()(),e.TgZ(9,"div")(10,"h4",4),e._uU(11,"Pending"),e.qZA(),e.TgZ(12,"div",5),e._UZ(13,"span",7),e._uU(14),e.ALo(15,"number"),e.qZA()(),e.TgZ(16,"div")(17,"h4",4),e._uU(18,"Inactive"),e.qZA(),e.TgZ(19,"div",5),e._UZ(20,"span",8),e._uU(21),e.ALo(22,"number"),e.qZA()(),e.TgZ(23,"div")(24,"h4",4),e._uU(25,"Closing"),e.qZA(),e.TgZ(26,"div",5),e._UZ(27,"span",9),e._uU(28),e.ALo(29,"number"),e.qZA()()(),e.TgZ(30,"div",3)(31,"div")(32,"h4",4),e._uU(33,"Capacity"),e.qZA(),e.TgZ(34,"div",5),e._uU(35),e.ALo(36,"number"),e.qZA()(),e.TgZ(37,"div")(38,"h4",4),e._uU(39,"Capacity"),e.qZA(),e.TgZ(40,"div",5),e._uU(41),e.ALo(42,"number"),e.qZA()(),e.TgZ(43,"div")(44,"h4",4),e._uU(45,"Capacity"),e.qZA(),e.TgZ(46,"div",5),e._uU(47),e.ALo(48,"number"),e.qZA()(),e.TgZ(49,"div")(50,"h4",4),e._uU(51,"Capacity"),e.qZA(),e.TgZ(52,"div",5),e._uU(53),e.ALo(54,"number"),e.qZA()()()()),2&n){const t=e.oxw();e.xp6(7),e.Oqu(e.lcZ(8,8,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.num_channels)||0)),e.xp6(7),e.Oqu(e.lcZ(15,10,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.num_channels)||0)),e.xp6(7),e.Oqu(e.lcZ(22,12,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.num_channels)||0)),e.xp6(7),e.Oqu(e.lcZ(29,14,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.num_channels)||0)),e.xp6(7),e.hij("",e.lcZ(36,16,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),e.xp6(6),e.hij("",e.lcZ(42,18,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),e.xp6(6),e.hij("",e.lcZ(48,20,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats"),e.xp6(6),e.hij("",e.lcZ(54,22,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.capacity)||0)," Sats")}}function Ut(n,a){if(1&n&&(e.TgZ(0,"div",10)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Ge=(()=>{class n{constructor(){this.channelsStatus={}}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],[1,"dot","tiny-dot","red"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,i){if(1&t&&(e.YNc(0,kt,55,24,"div",0),e.YNc(1,Ut,3,1,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf"," "===i.errorMessage)("ngIfElse",o)}},directives:[m.O5,d.xw,d.yH,d.Wh],pipes:[m.JJ],styles:[""]}),n})();var ze=x(2615),L=x(7861),We=x(9107);function Ot(n,a){if(1&n&&(e.TgZ(0,"mat-hint",19)(1,"strong",20),e._uU(2,"Capacity: "),e.qZA(),e._uU(3),e.ALo(4,"number"),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(3),e.hij("",e.lcZ(4,1,t.remote_balance||0)," Sats")}}function It(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",24),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2).$implicit;return e.oxw(3).onLoopOut(o)}),e._uU(1,"Loop Out"),e.qZA()}}function Pt(n,a){if(1&n&&(e.TgZ(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e._uU(3,"Capacity: "),e.qZA(),e._uU(4),e.ALo(5,"number"),e.qZA(),e.YNc(6,It,2,0,"button",23),e.qZA()),2&n){const t=e.oxw().$implicit,i=e.oxw(3);e.xp6(4),e.hij("",e.lcZ(5,2,t.local_balance||0)," Sats"),e.xp6(2),e.Q6J("ngIf",i.showLoop)}}function Rt(n,a){if(1&n&&e._UZ(0,"mat-progress-bar",25),2&n){const t=e.oxw().$implicit,i=e.oxw(3);e.s9C("value",i.totalLiquidity>0?(+t.remote_balance||0)/i.totalLiquidity*100:0)}}function Mt(n,a){if(1&n&&e._UZ(0,"mat-progress-bar",25),2&n){const t=e.oxw().$implicit,i=e.oxw(3);e.s9C("value",i.totalLiquidity>0?(+t.local_balance||0)/i.totalLiquidity*100:0)}}const Jt=function(){return["../connections/channels/open"]},Dt=function(n){return{filter:n}};function Qt(n,a){if(1&n&&(e.TgZ(0,"div",13)(1,"a",14),e._uU(2),e.ALo(3,"slice"),e.qZA(),e.TgZ(4,"div",15),e.YNc(5,Ot,5,3,"mat-hint",16),e.YNc(6,Pt,7,4,"div",17),e.qZA(),e.YNc(7,Rt,1,1,"mat-progress-bar",18),e.YNc(8,Mt,1,1,"mat-progress-bar",18),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(3);e.xp6(1),e.s9C("matTooltip",t.remote_alias||t.remote_pubkey),e.s9C("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Q6J("routerLink",e.DdM(14,Jt))("state",e.VKq(15,Dt,t.chan_id)),e.xp6(1),e.AsE(" ",e.Dn7(3,10,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.xp6(3),e.Q6J("ngIf","In"===i.direction),e.xp6(1),e.Q6J("ngIf","Out"===i.direction),e.xp6(1),e.Q6J("ngIf","In"===i.direction),e.xp6(1),e.Q6J("ngIf","Out"===i.direction)}}function Et(n,a){if(1&n&&(e.TgZ(0,"div",11),e.YNc(1,Qt,9,17,"div",12),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",t.allChannels)}}const Yt=function(n,a,t){return{"mb-4":n,"mb-2":a,"mb-1":t}};function Bt(n,a){if(1&n&&(e.TgZ(0,"div",3)(1,"div",4)(2,"span",5),e._uU(3,"Total Capacity"),e.qZA(),e.TgZ(4,"mat-hint",6),e._uU(5),e.ALo(6,"number"),e.qZA(),e._UZ(7,"mat-progress-bar",7),e.qZA(),e.TgZ(8,"div",8),e._UZ(9,"mat-divider",9),e.qZA(),e.YNc(10,Et,2,1,"div",10),e.qZA()),2&n){const t=e.oxw(),i=e.MAs(2);e.Q6J("ngClass",e.kEZ(6,Yt,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),e.xp6(5),e.hij("",e.lcZ(6,4,t.totalLiquidity)," Sats"),e.xp6(5),e.Q6J("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",i)}}function Ht(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",28),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).goToChannels()}),e._uU(1,"Open Channel"),e.qZA()}}function Vt(n,a){if(1&n&&(e.TgZ(0,"div",26),e._uU(1," No channels available. "),e.YNc(2,Ht,2,0,"button",27),e.qZA()),2&n){const t=e.oxw();e.xp6(2),e.Q6J("ngIf","Out"===t.direction)}}function Gt(n,a){if(1&n&&(e.TgZ(0,"div",29)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let zt=(()=>{class n{constructor(t,i,o,s){this.router=t,this.loopService=i,this.commonService=o,this.store=s,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!(null==t?void 0:t.swapServerUrl)||""===t.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,h.R)(this.unSubs[1])).subscribe(i=>{this.store.dispatch((0,L.qR)({payload:{minHeight:"56rem",data:{channel:t,minQuote:i[0],maxQuote:i[1],direction:l.$I.LOOP_OUT,component:ze.a}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0),e.Y36(We.W),e.Y36(I.v),e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[3,"perfectScrollbar",4,"ngIf","ngIfElse"],[3,"perfectScrollbar"],["fxLayout","column",4,"ngFor","ngForOf"],["fxLayout","column"],[1,"dashboard-capacity-header","mt-2",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["class","font-size-90 color-primary",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],[1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxFlex","85","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","15","fxLayoutAlign","end start","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","15","fxLayoutAlign","end start","color","primary","mat-button","","aria-label","Loop Out",1,"button-link-dashboard",3,"click"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,i){if(1&t&&(e.YNc(0,Bt,11,10,"div",0),e.YNc(1,Vt,3,1,"ng-template",null,1,e.W1O),e.YNc(3,Gt,3,1,"ng-template",null,2,e.W1O)),2&t){const o=e.MAs(4);e.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[m.O5,d.xw,d.Wh,d.yH,m.mk,q.oO,T.bx,D.pW,j.d,H.$V,m.sg,v.yS,K.gM,k.lW],pipes:[m.JJ,m.OU],styles:[""]}),n})();var J=x(3251),N=x(6087),S=x(4847),c=x(2075),Q=x(8966),A=x(6523),u=x(3075),R=x(7531),ee=x(3390),ne=x(6534),P=x(4107),B=x(508),ge=x(2368);function Wt(n,a){if(1&n&&(e.TgZ(0,"mat-option",28),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(e.lcZ(2,2,t))}}function $t(n,a){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.invoiceError)}}function Xt(n,a){if(1&n&&(e.TgZ(0,"div",29),e._UZ(1,"fa-icon",30),e.YNc(2,$t,2,1,"span",31),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.invoiceError)}}let Kt=(()=>{class n{constructor(t,i,o,s,r,_){this.dialogRef=t,this.data=i,this.store=o,this.decimalPipe=s,this.commonService=r,this.actions=_,this.faExclamationTriangle=b.eHv,this.selNode={},this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.IV,this.timeUnitEnum=l.Qk,this.timeUnits=l.LO,this.selTimeUnit=l.Qk.SECS,this.invoiceError="",this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(t=>t.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===t.payload.action&&(this.invoiceError=t.payload.message,t.payload.status===l.Bn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===l.Bn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="";let i=0;i=this.expiry?this.selTimeUnit!==l.Qk.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,l.Qk.SECS):this.expiry:3600,this.store.dispatch((0,A.Rd)({payload:{uiMessage:l.m6.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:i,is_amp:this.isAmp,pageSize:this.pageSize,openModal:!0}}))}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.isAmp=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.Qk.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[3])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,l.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(F.yh),e.Y36(m.JJ),e.Y36(I.v),e.Y36(X.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-create-invoices"]],decls:44,vars:17,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","placeholder","Memo","tabindex","1","name","memo",3,"ngModel","ngModelChange"],["fxFlex","50","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","2","name","invoiceValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","24","fxLayoutAlign","start end"],["matInput","","placeholder","Expiry","type","number","tabindex","3","name","expiry",3,"ngModel","step","min","ngModelChange"],["tabindex","4","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","49"],["tabindex","4","color","primary","name","private",3,"ngModel","ngModelChange"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["tabindex","5","color","primary","name","amp",3,"ngModel","ngModelChange"],["matTooltip","Atomic multipath payment invoice","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","6","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","7",3,"click"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(t,i){if(1&t){const o=e.EpF();e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Create Invoice"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),e.NdJ("ngModelChange",function(r){return i.memo=r}),e.qZA()(),e.TgZ(13,"mat-form-field",11)(14,"input",12),e.NdJ("ngModelChange",function(r){return i.invoiceValue=r})("keyup",function(){return i.onInvoiceValueChange()}),e.qZA(),e.TgZ(15,"span",13),e._uU(16," Sats "),e.qZA(),e.TgZ(17,"mat-hint"),e._uU(18),e.qZA()(),e.TgZ(19,"mat-form-field",14)(20,"input",15),e.NdJ("ngModelChange",function(r){return i.expiry=r}),e.qZA(),e.TgZ(21,"span",13),e._uU(22),e.ALo(23,"titlecase"),e.qZA()(),e.TgZ(24,"mat-form-field",14)(25,"mat-select",16),e.NdJ("selectionChange",function(r){return i.onTimeUnitChange(r)}),e.YNc(26,Wt,3,4,"mat-option",17),e.qZA()(),e.TgZ(27,"div",18)(28,"div",19)(29,"mat-slide-toggle",20),e.NdJ("ngModelChange",function(r){return i.private=r}),e._uU(30,"Private Routing Hints"),e.qZA(),e.TgZ(31,"mat-icon",21),e._uU(32,"info_outline"),e.qZA()(),e.TgZ(33,"div",19)(34,"mat-slide-toggle",22),e.NdJ("ngModelChange",function(r){return i.isAmp=r}),e._uU(35,"AMP Invoice"),e.qZA(),e.TgZ(36,"mat-icon",23),e._uU(37,"info_outline"),e.qZA()()(),e.YNc(38,Xt,3,2,"div",24),e.TgZ(39,"div",25)(40,"button",26),e.NdJ("click",function(){return i.resetData()}),e._uU(41,"Clear Field"),e.qZA(),e.TgZ(42,"button",27),e.NdJ("click",function(){e.CHM(o);const r=e.MAs(10);return i.onAddInvoice(r)}),e._uU(43,"Create Invoice"),e.qZA()()()()()()}2&t&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(6),e.Q6J("ngModel",i.memo),e.xp6(2),e.Q6J("ngModel",i.invoiceValue)("step",100)("min",1),e.xp6(4),e.Oqu(i.invoiceValueHint),e.xp6(2),e.Q6J("ngModel",i.expiry)("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),e.xp6(2),e.hij("",e.lcZ(23,15,i.selTimeUnit)," "),e.xp6(3),e.Q6J("value",i.selTimeUnit),e.xp6(1),e.Q6J("ngForOf",i.timeUnits),e.xp6(3),e.Q6J("ngModel",i.private),e.xp6(5),e.Q6J("ngModel",i.isAmp),e.xp6(4),e.Q6J("ngIf",""!==i.invoiceError))},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Q.ZT,Z.dn,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,ee.h,u.JJ,u.On,u.wV,u.qQ,ne.q,T.R9,T.bx,P.gD,m.sg,B.ey,ge.Rr,ae.Hw,K.gM,m.O5,M.BN],pipes:[m.rS],styles:[""]}),n})();var jt=x(8627),z=x(9445);function en(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"input",7),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().memo=o}),e.qZA()(),e.TgZ(4,"mat-form-field",8)(5,"input",9),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().invoiceValue=o})("keyup",function(){return e.CHM(t),e.oxw().onInvoiceValueChange()}),e.qZA(),e.TgZ(6,"span",10),e._uU(7," Sats "),e.qZA(),e.TgZ(8,"mat-hint"),e._uU(9),e.qZA()(),e.TgZ(10,"div",11)(11,"button",12),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(12,"Clear Field"),e.qZA(),e.TgZ(13,"button",13),e.NdJ("click",function(){e.CHM(t);const o=e.MAs(1);return e.oxw().onAddInvoice(o)}),e._uU(14,"Create Invoice"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.memo),e.xp6(2),e.Q6J("ngModel",t.invoiceValue)("step",100)("min",1),e.xp6(4),e.Oqu(t.invoiceValueHint)}}function tn(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",14)(1,"button",15),e.NdJ("click",function(){return e.CHM(t),e.oxw().openCreateInvoiceModal()}),e._uU(2,"Create Invoice"),e.qZA()()}}function nn(n,a){if(1&n&&(e.TgZ(0,"mat-option",64),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function an(n,a){1&n&&e._UZ(0,"mat-progress-bar",65)}function on(n,a){1&n&&e._UZ(0,"th",66)}const fe=function(n){return{"mr-0":n}};function sn(n,a){if(1&n&&e._UZ(0,"span",72),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function ln(n,a){if(1&n&&e._UZ(0,"span",73),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function rn(n,a){if(1&n&&e._UZ(0,"span",74),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function cn(n,a){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function un(n,a){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,sn,1,3,"span",68),e.YNc(2,ln,1,3,"span",69),e.YNc(3,rn,1,3,"span",70),e.YNc(4,cn,1,3,"span",71),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf","OPEN"===(null==t?null:t.state)),e.xp6(1),e.Q6J("ngIf","SETTLED"===(null==t?null:t.state)),e.xp6(1),e.Q6J("ngIf","ACCEPTED"===(null==t?null:t.state)),e.xp6(1),e.Q6J("ngIf","CANCELED"===(null==t?null:t.state))}}function pn(n,a){1&n&&e._UZ(0,"th",76)}function mn(n,a){if(1&n&&(e.TgZ(0,"span",79),e._UZ(1,"fa-icon",80),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("icon",t.faEyeSlash)}}function dn(n,a){if(1&n&&(e.TgZ(0,"span",81),e._UZ(1,"fa-icon",80),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("icon",t.faEye)}}function _n(n,a){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,mn,2,1,"span",77),e.YNc(2,dn,2,1,"span",78),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf",t.private),e.xp6(1),e.Q6J("ngIf",!t.private)}}function hn(n,a){1&n&&e._UZ(0,"th",82)}function gn(n,a){if(1&n&&(e.TgZ(0,"span",85),e._UZ(1,"fa-icon",80),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("icon",t.faArrowsTurnToDots)}}function fn(n,a){if(1&n&&(e.TgZ(0,"span",86),e._UZ(1,"fa-icon",80),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("icon",t.faArrowsTurnRight)}}function Cn(n,a){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,gn,2,1,"span",83),e.YNc(2,fn,2,1,"span",84),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf",t.is_keysend),e.xp6(1),e.Q6J("ngIf",!t.is_keysend)}}function xn(n,a){1&n&&e._UZ(0,"th",87)}function yn(n,a){if(1&n&&(e.TgZ(0,"span",90),e._UZ(1,"fa-icon",80),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("icon",t.faMoneyBill1)}}function Tn(n,a){if(1&n&&(e.TgZ(0,"span",91),e._UZ(1,"fa-icon",80),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("icon",t.faBurst)}}function bn(n,a){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,yn,2,1,"span",88),e.YNc(2,Tn,2,1,"span",89),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf",!t.is_amp),e.xp6(1),e.Q6J("ngIf",t.is_amp)}}function vn(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Date Created"),e.qZA())}function Zn(n,a){if(1&n&&(e.TgZ(0,"td",67),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function An(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Date Settled"),e.qZA())}function Sn(n,a){if(1&n&&(e.TgZ(0,"td",67),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(0!=+(null==t?null:t.settle_date)?e.xi3(2,1,1e3*+(null==t?null:t.settle_date),"dd/MMM/y HH:mm"):"-")}}function wn(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Memo"),e.qZA())}const se=function(n){return{width:n}};function Ln(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,se,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.memo)}}function Fn(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Preimage"),e.qZA())}function qn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,se,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.r_preimage)}}function Nn(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Preimage Hash"),e.qZA())}function kn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,se,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.r_hash)}}function Un(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Payment Address"),e.qZA())}function On(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,se,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_addr)}}function In(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Payment Request"),e.qZA())}function Pn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,se,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_request)}}function Rn(n,a){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Description Hash"),e.qZA())}function Mn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,se,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description_hash)}}function Jn(n,a){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Expiry"),e.qZA())}function Dn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.expiry)," ")}}function Qn(n,a){1&n&&(e.TgZ(0,"th",95),e._uU(1,"CLTV Expiry"),e.qZA())}function En(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.cltv_expiry)," ")}}function Yn(n,a){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Add Index"),e.qZA())}function Bn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.add_index)," ")}}function Hn(n,a){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Settle Index"),e.qZA())}function Vn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.settle_index)," ")}}function Gn(n,a){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Amount (Sats)"),e.qZA())}function zn(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.value)," ")}}function Wn(n,a){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Amount Settled (Sats)"),e.qZA())}function $n(n,a){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.amt_paid_sat)," ")}}function Xn(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",97)(1,"div",98)(2,"mat-select",99),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",100),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Kn(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",101)(1,"div",98)(2,"mat-select",102),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",100),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onInvoiceClick(s)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",100),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onRefreshInvoice(s)}),e._uU(7,"Refresh"),e.qZA()()()()}}function jn(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No invoice available."),e.qZA())}function ei(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting invoices..."),e.qZA())}function ti(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function ni(n,a){if(1&n&&(e.TgZ(0,"td",103),e.YNc(1,jn,2,0,"p",104),e.YNc(2,ei,2,0,"p",104),e.YNc(3,ti,2,1,"p",104),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const ii=function(n){return{"display-none":n}};function ai(n,a){if(1&n&&e._UZ(0,"tr",105),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,ii,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function oi(n,a){1&n&&e._UZ(0,"tr",106)}function si(n,a){1&n&&e._UZ(0,"tr",107)}const li=function(){return["all"]},ri=function(n){return{"error-border":n}},ci=function(){return["no_invoice"]};function ui(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",16)(1,"div",17)(2,"div",18),e._UZ(3,"fa-icon",19),e.TgZ(4,"span",20),e._uU(5,"Invoices History"),e.qZA()(),e.TgZ(6,"div",21)(7,"mat-form-field",22)(8,"mat-select",23),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilterBy=o})("selectionChange",function(){e.CHM(t);const o=e.oxw();return o.selFilter="",o.applyFilter()}),e.YNc(9,nn,2,2,"mat-option",24),e.qZA()(),e.TgZ(10,"mat-form-field",22)(11,"input",25),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilter=o})("input",function(){return e.CHM(t),e.oxw().applyFilter()})("keyup",function(){return e.CHM(t),e.oxw().applyFilter()}),e.qZA()()()(),e.TgZ(12,"div",26),e.YNc(13,an,1,0,"mat-progress-bar",27),e.TgZ(14,"table",28,29),e.ynx(16,30),e.YNc(17,on,1,0,"th",31),e.YNc(18,un,5,4,"td",32),e.BQk(),e.ynx(19,33),e.YNc(20,pn,1,0,"th",34),e.YNc(21,_n,3,2,"td",32),e.BQk(),e.ynx(22,35),e.YNc(23,hn,1,0,"th",36),e.YNc(24,Cn,3,2,"td",32),e.BQk(),e.ynx(25,37),e.YNc(26,xn,1,0,"th",38),e.YNc(27,bn,3,2,"td",32),e.BQk(),e.ynx(28,39),e.YNc(29,vn,2,0,"th",40),e.YNc(30,Zn,3,4,"td",32),e.BQk(),e.ynx(31,41),e.YNc(32,An,2,0,"th",40),e.YNc(33,Sn,3,4,"td",32),e.BQk(),e.ynx(34,42),e.YNc(35,wn,2,0,"th",40),e.YNc(36,Ln,4,4,"td",32),e.BQk(),e.ynx(37,43),e.YNc(38,Fn,2,0,"th",40),e.YNc(39,qn,4,4,"td",32),e.BQk(),e.ynx(40,44),e.YNc(41,Nn,2,0,"th",40),e.YNc(42,kn,4,4,"td",32),e.BQk(),e.ynx(43,45),e.YNc(44,Un,2,0,"th",40),e.YNc(45,On,4,4,"td",32),e.BQk(),e.ynx(46,46),e.YNc(47,In,2,0,"th",40),e.YNc(48,Pn,4,4,"td",32),e.BQk(),e.ynx(49,47),e.YNc(50,Rn,2,0,"th",40),e.YNc(51,Mn,4,4,"td",32),e.BQk(),e.ynx(52,48),e.YNc(53,Jn,2,0,"th",49),e.YNc(54,Dn,4,3,"td",32),e.BQk(),e.ynx(55,50),e.YNc(56,Qn,2,0,"th",49),e.YNc(57,En,4,3,"td",32),e.BQk(),e.ynx(58,51),e.YNc(59,Yn,2,0,"th",49),e.YNc(60,Bn,4,3,"td",32),e.BQk(),e.ynx(61,52),e.YNc(62,Hn,2,0,"th",49),e.YNc(63,Vn,4,3,"td",32),e.BQk(),e.ynx(64,53),e.YNc(65,Gn,2,0,"th",49),e.YNc(66,zn,4,3,"td",32),e.BQk(),e.ynx(67,54),e.YNc(68,Wn,2,0,"th",49),e.YNc(69,$n,4,3,"td",32),e.BQk(),e.ynx(70,55),e.YNc(71,Xn,6,0,"th",56),e.YNc(72,Kn,8,0,"td",57),e.BQk(),e.ynx(73,58),e.YNc(74,ni,4,3,"td",59),e.BQk(),e.YNc(75,ai,1,3,"tr",60),e.YNc(76,oi,1,0,"tr",61),e.YNc(77,si,1,0,"tr",62),e.qZA(),e.TgZ(78,"mat-paginator",63),e.NdJ("page",function(o){return e.CHM(t),e.oxw().onPageChange(o)}),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("icon",t.faHistory),e.xp6(5),e.Q6J("ngModel",t.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(14,li).concat(t.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",t.selFilter),e.xp6(2),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.invoices)("ngClass",e.VKq(15,ri,""!==t.errorMessage)),e.xp6(61),e.Q6J("matFooterRowDef",e.DdM(17,ci)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("length",t.totalInvoices)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let $e=(()=>{class n{constructor(t,i,o,s,r,_,g){this.logger=t,this.store=i,this.decimalPipe=o,this.commonService=s,this.datePipe=r,this.actions=_,this.camelCaseWithReplace=g,this.calledFrom="transactions",this.faEye=b.Mdf,this.faEyeSlash=b.Aq,this.faHistory=b.qO$,this.faArrowsTurnToDots=b.Pyt,this.faArrowsTurnRight=b.d63,this.faBurst=b.Vei,this.faMoneyBill1=b.CvI,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.IV,sortBy:"creation_date",sortOrder:l.Pi.DESCENDING},this.selNode={},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new c.by([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ef).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=t.listInvoices.total_invoices||0,this.firstOffset=+(t.listInvoices.first_index_offset||-1),this.lastOffset=+(t.listInvoices.last_index_offset||-1),this.invoicesData=t.listInvoices.invoices||[],this.invoicesData.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[4]),(0,Y.h)(t=>t.type===l.uR.SET_LOOKUP_LND||t.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.uR.SET_LOOKUP_LND&&this.invoicesData.length>0&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(t){const i=this.expiry?this.expiry:3600;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,A.Rd)({payload:{uiMessage:l.m6.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:i,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(t){this.store.dispatch((0,L.qR)({payload:{data:{invoice:t,newlyAdded:!1,component:jt.v}}}))}onRefreshInvoice(t){var i,o;t&&t.r_hash&&this.store.dispatch((0,A.n7)({payload:{openSnackBar:!0,paymentHash:null===(o=null===(i=Buffer.from(t.r_hash.trim(),"hex").toString("base64"))||void 0===i?void 0:i.replace(/\+/g,"-"))||void 0===o?void 0:o.replace(/[/]/g,"_")}}))}updateInvoicesData(t){var i;this.invoicesData=null===(i=this.invoicesData)||void 0===i?void 0:i.map(o=>o.r_hash===t.r_hash?t:o)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,i)=>{var o,s,r;let _="";switch(this.selFilterBy){case"all":_=(t.creation_date?null===(o=this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+(t.settle_date?null===(s=this.datePipe.transform(new Date(1e3*t.settle_date),"dd/MMM/y HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"creation_date":case"settle_date":_=(null===(r=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===r?void 0:r.toLowerCase())||"";break;case"private":_=(null==t?void 0:t.private)?"private":"public";break;case"is_keysend":_=(null==t?void 0:t.is_keysend)?"keysend invoices":"non keysend invoices";break;case"is_amp":_=(null==t?void 0:t.is_amp)?"atomic multi path payment":"non atomic payment";break;default:_=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===_.indexOf(i):_.includes(i)}}loadInvoicesTable(t){var i;this.invoices=new c.by(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.invoices.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.invoices)}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}onPageChange(t){let i=!0,o=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(i=!0,o=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(i=!0,o=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(i=!1,o=0),this.store.dispatch((0,A.WM)({payload:{num_max_invoices:t.pageSize,index_offset:o,reversed:i}}))}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[5])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,l.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,L.qR)({payload:{data:{pageSize:this.pageSize,component:Kt}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(m.JJ),e.Y36(I.v),e.Y36(m.uU),e.Y36(X.eX),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Invoices")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","end start"],["matInput","","placeholder","Memo","tabindex","1","name","memo",3,"ngModel","ngModelChange"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","2","name","invValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","5",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","is_keysend"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend",4,"matHeaderCellDef"],["matColumnDef","is_amp"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP",4,"matHeaderCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","settle_date"],["matColumnDef","memo"],["matColumnDef","r_preimage"],["matColumnDef","r_hash"],["matColumnDef","payment_addr"],["matColumnDef","payment_request"],["matColumnDef","description_hash"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cltv_expiry"],["matColumnDef","add_index"],["matColumnDef","settle_index"],["matColumnDef","value"],["matColumnDef","amt_paid_sat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","6",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"length","pageSize","pageSizeOptions","showFirstLastButtons","page"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot grey","matTooltip","Open","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Canceled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Open","matTooltipPosition","right",1,"dot","grey",3,"ngClass"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Canceled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend"],["class","mr-1","matTooltip","Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Non Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["matTooltip","Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["matTooltip","Non Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP"],["class","mr-1","matTooltip","Non Atomic Payment","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",4,"ngIf"],["matTooltip","Non Atomic Payment","matTooltipPosition","right",1,"mr-1"],["matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","6"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,en,15,5,"form",1),e.YNc(2,tn,3,0,"div",2),e.YNc(3,ui,79,18,"div",3),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf","home"===i.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===i.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===i.calledFrom))},directives:[d.xw,d.yH,d.Wh,m.O5,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,u.JJ,u.On,u.wV,u.qQ,ne.q,T.R9,T.bx,k.lW,M.BN,P.gD,m.sg,B.ey,H.$V,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,K.gM,c.Dz,c.ev,m.PC,q.Zl,P.$L,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.uU,m.JJ],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:1.6rem;width:1.6rem}"]}),n})();var $=x(5698),ie=x(8104),V=x(1125),le=x(1079);const pi=["paymentReq"];function mi(n,a){if(1&n&&(e.TgZ(0,"mat-hint"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.paymentDecodedHint)}}function di(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment request is required."),e.qZA())}function _i(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.paymentDecodedHint)}}function hi(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment amount is required."),e.qZA())}function gi(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",1)(1,"input",29,30),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().paymentAmount=o})("change",function(o){return e.CHM(t),e.oxw().onAmountChange(o)}),e.qZA(),e.TgZ(3,"mat-hint"),e._uU(4,"It is a zero amount invoice, enter amount to be paid."),e.qZA(),e.YNc(5,hi,2,0,"mat-error",11),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.paymentAmount),e.xp6(4),e.Q6J("ngIf",!t.paymentAmount)}}function fi(n,a){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",null==t?null:t.name," ")}}function Ci(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("",null==t.selFeeLimitType?null:t.selFeeLimitType.placeholder," is required.")}}function xi(n,a){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function yi(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Channel not found in the list."),e.qZA())}function Ti(n,a){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.paymentError)}}function bi(n,a){if(1&n&&(e.TgZ(0,"div",32),e._UZ(1,"fa-icon",33),e.YNc(2,Ti,2,1,"span",11),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.paymentError)}}let vi=(()=>{class n{constructor(t,i,o,s,r,_,g){this.dialogRef=t,this.store=i,this.logger=o,this.commonService=s,this.decimalPipe=r,this.actions=_,this.dataService=g,this.faExclamationTriangle=b.eHv,this.selNode={},this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHint="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new u.NI,this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.feeLimitTypes=l.Vc,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(o=>{this.selNode=o}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1])).subscribe(o=>{var s;this.activeChannels=o.channels&&o.channels.length?null===(s=o.channels)||void 0===s?void 0:s.filter(r=>r.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(o)}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(o=>o.type===l.uR.UPDATE_API_CALL_STATUS_LND||o.type===l.uR.SEND_PAYMENT_STATUS_LND)).subscribe(o=>{o.type===l.uR.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),o.type===l.uR.UPDATE_API_CALL_STATUS_LND&&o.payload.status===l.Bn.ERROR&&"SendPayment"===o.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=o.payload.message)});let t="",i="";this.activeChannels=this.activeChannels.sort((o,s)=>(t=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"",i=s.remote_alias?s.remote_alias.toLowerCase():s.chan_id?s.chan_id.toLowerCase():"",ti?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,h.R)(this.unSubs[3])).subscribe(o=>{"string"==typeof o&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){var t;return this.activeChannels&&this.activeChannels.length?null===(t=this.activeChannels)||void 0===t?void 0:t.filter(i=>0===(i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(i.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}onSelectedChannelChanged(){var t;if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const i=this.activeChannels&&this.activeChannels.length?null===(t=this.activeChannels)||void 0===t?void 0:t.filter(o=>{const s=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"";return s.length===this.selectedChannelCtrl.value.length&&0===s.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];i&&i.length>0?(this.selectedChannelCtrl.setValue(i[0]),this.selectedChannelCtrl.setErrors(null)):this.selectedChannelCtrl.setErrors({notfound:!0})}}onSendPayment(){if(this.selectedChannelCtrl.value&&"string"==typeof this.selectedChannelCtrl.value&&this.onSelectedChannelChanged(),!this.paymentRequest||this.zeroAmtInvoice&&(!this.paymentAmount||this.paymentAmount<=0)||"string"==typeof this.selectedChannelCtrl.value)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.onPaymentRequestEntry(this.paymentRequest)}sendPayment(){var t;if(this.selFeeLimitType!==this.feeLimitTypes[0]&&!this.feeLimit)return!0;this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.zeroAmtInvoice=!1,this.store.dispatch((0,A.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}}))):(this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=(null===(t=this.paymentAmount)||void 0===t?void 0:t.toString())||"",this.store.dispatch((0,A.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:this.paymentAmount||0,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}})))}onAmountChange(t){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentAmount=null,this.paymentError="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,$.q)(1)).subscribe({next:i=>{this.paymentDecoded=i,this.selectedChannelCtrl.setValue(null),this.onAdvancedPanelToggle(!0,!0),this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.filteredMinAmtActvChannels=this.filterChannels(),this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"BTC",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[4])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats ("+o.symbol+" "+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHint="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"))},error:i=>{this.logger.error(i),this.paymentDecodedHint="ERROR: "+i.message,this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(t,i){if(t&&!i){const o=this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.remote_alias?this.selectedChannelCtrl.value.remote_alias:this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.chan_id?this.selectedChannelCtrl.value.chan_id:"";this.advancedTitle="Advanced Options | "+this.selFeeLimitType.name+("none"===this.selFeeLimitType.id?"":": "+this.feeLimit)+(""!==o?" | First Outgoing Channel: "+o:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selectedChannelCtrl.setValue(null),this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHint=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(F.yh),e.Y36(U.mQ),e.Y36(I.v),e.Y36(m.JJ),e.Y36(X.eX),e.Y36(ie.D))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(t,i){if(1&t&&e.Gf(pi,5),2&t){let o;e.iGM(o=e.CRH())&&(i.paymentReq=o.first)}},decls:43,vars:21,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["sendPaymentForm","ngForm"],["autoFocus","","matInput","","placeholder","Payment Request","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxFlex","100","fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","30","fxLayoutAlign","start end"],["tabindex","5","Placeholder","Fee Limits",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","26"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModel","placeholder","step","min","disabled","ngModelChange"],["fLmt","ngModel"],["fxFlex","40","fxLayoutAlign","start end"],["type","text","placeholder","First Outgoing Channel","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","id","sendBtn","color","primary","tabindex","3",3,"click"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(t,i){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Send Payment"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",1)(12,"textarea",9,10),e.NdJ("ngModelChange",function(s){return i.onPaymentRequestEntry(s)})("matTextareaAutosize",function(){return!0}),e.qZA(),e.YNc(14,mi,2,1,"mat-hint",11),e.YNc(15,di,2,0,"mat-error",11),e.YNc(16,_i,2,1,"mat-error",11),e.qZA(),e.YNc(17,gi,6,2,"mat-form-field",12),e.TgZ(18,"mat-expansion-panel",13),e.NdJ("closed",function(){return i.onAdvancedPanelToggle(!0,!1)})("opened",function(){return i.onAdvancedPanelToggle(!1,!1)}),e.TgZ(19,"mat-expansion-panel-header")(20,"mat-panel-title")(21,"span"),e._uU(22),e.qZA()()(),e.TgZ(23,"div",14)(24,"mat-form-field",15)(25,"mat-select",16),e.NdJ("valueChange",function(s){return i.selFeeLimitType=s}),e.YNc(26,fi,2,2,"mat-option",17),e.qZA()(),e.TgZ(27,"mat-form-field",18)(28,"input",19,20),e.NdJ("ngModelChange",function(s){return i.feeLimit=s}),e.qZA(),e.YNc(30,Ci,2,1,"mat-error",11),e.qZA(),e.TgZ(31,"mat-form-field",21),e._UZ(32,"input",22),e.TgZ(33,"mat-autocomplete",23,24),e.NdJ("optionSelected",function(){return i.onSelectedChannelChanged()}),e.YNc(35,xi,2,2,"mat-option",17),e.qZA(),e.YNc(36,yi,2,0,"mat-error",11),e.qZA()()(),e.YNc(37,bi,3,2,"div",25),e.TgZ(38,"div",26)(39,"button",27),e.NdJ("click",function(){return i.resetData()}),e._uU(40,"Clear Fields"),e.qZA(),e.TgZ(41,"button",28),e.NdJ("click",function(){return i.onSendPayment()}),e._uU(42,"Send Payment"),e.qZA()()()()()()),2&t){const o=e.MAs(13),s=e.MAs(34);e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(6),e.Q6J("ngModel",i.paymentRequest),e.xp6(2),e.Q6J("ngIf",i.paymentRequest&&""!==i.paymentDecodedHint),e.xp6(1),e.Q6J("ngIf",!i.paymentRequest),e.xp6(1),e.Q6J("ngIf",null==o.errors?null:o.errors.decodeError),e.xp6(1),e.Q6J("ngIf",i.zeroAmtInvoice),e.xp6(5),e.Oqu(i.advancedTitle),e.xp6(3),e.Q6J("value",i.selFeeLimitType),e.xp6(1),e.Q6J("ngForOf",i.feeLimitTypes),e.xp6(2),e.Q6J("ngModel",i.feeLimit)("placeholder",null==i.selFeeLimitType?null:i.selFeeLimitType.placeholder)("step",1)("min",0)("disabled",i.selFeeLimitType===i.feeLimitTypes[0]),e.xp6(2),e.Q6J("ngIf",i.selFeeLimitType!==i.feeLimitTypes[0]&&!i.feeLimit),e.xp6(2),e.Q6J("formControl",i.selectedChannelCtrl)("matAutocomplete",s),e.xp6(1),e.Q6J("displayWith",i.displayFn),e.xp6(2),e.Q6J("ngForOf",i.filteredMinAmtActvChannels),e.xp6(1),e.Q6J("ngIf",null==i.selectedChannelCtrl.errors?null:i.selectedChannelCtrl.errors.notfound),e.xp6(1),e.Q6J("ngIf",""!==i.paymentError)}},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Q.ZT,Z.dn,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,ee.h,u.Q7,u.JJ,u.On,m.O5,T.bx,T.TO,V.ib,V.yz,V.yK,P.gD,m.sg,B.ey,u.wV,u.qQ,ne.q,le.ZL,u.oH,le.XC,M.BN],styles:[""]}),n})();var me=x(3093);const Zi=["sendPaymentForm"];function Ai(n,a){if(1&n&&(e.TgZ(0,"mat-hint"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.paymentDecodedHint)}}function Si(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment request is required."),e.qZA())}function wi(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"textarea",7,8),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().onPaymentRequestEntry(o)})("matTextareaAutosize",function(){return!0}),e.qZA(),e.YNc(5,Ai,2,1,"mat-hint",9),e.YNc(6,Si,2,0,"mat-error",9),e.qZA(),e.TgZ(7,"div",10)(8,"button",11),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(9,"Clear Field"),e.qZA(),e.TgZ(10,"button",12),e.NdJ("click",function(){return e.CHM(t),e.oxw().onSendPayment()}),e._uU(11,"Send Payment"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.paymentRequest),e.xp6(2),e.Q6J("ngIf",t.paymentRequest&&""!==t.paymentDecodedHint),e.xp6(1),e.Q6J("ngIf",!t.paymentRequest)}}function Li(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",13)(1,"button",14),e.NdJ("click",function(){return e.CHM(t),e.oxw().openSendPaymentModal()}),e._uU(2,"Send Payment"),e.qZA()()}}function Fi(n,a){if(1&n&&(e.TgZ(0,"mat-option",69),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function qi(n,a){1&n&&e._UZ(0,"mat-progress-bar",70)}function Ni(n,a){1&n&&e._UZ(0,"th",71)}const re=function(n){return{"mr-0":n}};function ki(n,a){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,re,t.screenSize===t.screenSizeEnum.XS))}}function Ui(n,a){if(1&n&&e._UZ(0,"span",76),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,re,t.screenSize===t.screenSizeEnum.XS))}}function Oi(n,a){if(1&n&&(e.TgZ(0,"td",72),e.YNc(1,ki,1,3,"span",73),e.YNc(2,Ui,1,3,"span",74),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==(null==t?null:t.status))}}function Ii(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Creation Date"),e.qZA())}function Pi(n,a){if(1&n&&(e.TgZ(0,"td",72),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function Ri(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Payment Hash"),e.qZA())}const te=function(n){return{width:n}};function Mi(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_hash)}}function Ji(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Payment Request"),e.qZA())}function Di(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_request)}}function Qi(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Payment Preimage"),e.qZA())}function Ei(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_preimage)}}function Yi(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Description"),e.qZA())}function Bi(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description)}}function Hi(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Description Hash"),e.qZA())}function Vi(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description_hash)}}function Gi(n,a){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Failure Reason"),e.qZA())}function zi(n,a){if(1&n&&(e.TgZ(0,"td",72),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.Dn7(2,1,null==t?null:t.failure_reason,"failure_reason","_")," ")}}function Wi(n,a){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Payment Index"),e.qZA())}function $i(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.payment_index))}}function Xi(n,a){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Fee (Sats)"),e.qZA())}function Ki(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.fee))}}function ji(n,a){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Value (Sats)"),e.qZA())}function ea(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.value))}}function ta(n,a){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Hops"),e.qZA())}function na(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu((null==t||null==t.htlcs[0]||null==t.htlcs[0].route||null==t.htlcs[0].route.hops?null:t.htlcs[0].route.hops.length)||0)}}function ia(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",82)(1,"div",83)(2,"mat-select",84),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",85),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function aa(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",86)(1,"button",87),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onPaymentClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function oa(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No payment available."),e.qZA())}function sa(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting payments..."),e.qZA())}function la(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function ra(n,a){if(1&n&&(e.TgZ(0,"td",88),e.YNc(1,oa,2,0,"p",9),e.YNc(2,sa,2,0,"p",9),e.YNc(3,la,2,1,"p",9),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function ca(n,a){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,re,t.screenSize===t.screenSizeEnum.XS))}}function ua(n,a){if(1&n&&e._UZ(0,"span",76),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,re,t.screenSize===t.screenSizeEnum.XS))}}function pa(n,a){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(5);e.Q6J("ngClass",e.VKq(1,re,t.screenSize===t.screenSizeEnum.XS))}}function ma(n,a){if(1&n&&e._UZ(0,"span",76),2&n){const t=e.oxw(5);e.Q6J("ngClass",e.VKq(1,re,t.screenSize===t.screenSizeEnum.XS))}}function da(n,a){if(1&n&&(e.TgZ(0,"span",89),e.YNc(1,pa,1,3,"span",73),e.YNc(2,ma,1,3,"span",74),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf","SUCCEEDED"===t.status),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==t.status)}}function _a(n,a){if(1&n&&(e.ynx(0),e.YNc(1,da,3,2,"span",90),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function ha(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",89),e.YNc(2,ca,1,3,"span",73),e.YNc(3,ua,1,3,"span",74),e.qZA(),e.YNc(4,_a,2,1,"ng-container",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Q6J("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function ga(n,a){if(1&n&&(e.TgZ(0,"span",89),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,t.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function fa(n,a){if(1&n&&(e.ynx(0),e.YNc(1,ga,3,4,"span",90),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ca(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",89),e._uU(2),e.qZA(),e.YNc(3,fa,2,1,"ng-container",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.hij(" Total Attempts: ",null==t||null==t.htlcs?null:t.htlcs.length," "),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function xa(n,a){if(1&n&&(e.TgZ(0,"span",89),e._uU(1),e.qZA()),2&n){const t=a.index;e.xp6(1),e.hij(" HTLC ",t+1," ")}}function ya(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,xa,2,1,"span",90),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ta(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,ya,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_hash),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function ba(n,a){1&n&&e._UZ(0,"span",89)}function va(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,ba,1,0,"span",90),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Za(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,va,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_request),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Aa(n,a){if(1&n&&(e.TgZ(0,"span",89),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.preimage," ")}}function Sa(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Aa,2,1,"span",90),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function wa(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Sa,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_preimage),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function La(n,a){1&n&&e._UZ(0,"span",89)}function Fa(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,La,1,0,"span",90),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function qa(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Fa,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Na(n,a){1&n&&e._UZ(0,"span",89)}function ka(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Na,1,0,"span",90),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ua(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,ka,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description_hash),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Oa(n,a){1&n&&e._UZ(0,"span",89)}function Ia(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Oa,1,0,"span",90),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Pa(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",89),e._uU(2),e.ALo(3,"camelcaseWithReplace"),e.qZA(),e.YNc(4,Ia,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.hij(" ",e.Dn7(3,2,null==t?null:t.failure_reason,"failure_reason","_")," "),e.xp6(2),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Ra(n,a){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,t.attempt_id)," ")}}function Ma(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Ra,3,3,"span",93),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ja(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,Ma,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,2,null==t?null:t.payment_index)),e.xp6(2),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Da(n,a){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function Qa(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Da,3,4,"span",93),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ea(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,Qa,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.xi3(3,2,null==t?null:t.fee,"1.0-0")),e.xp6(2),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Ya(n,a){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function Ba(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Ya,3,4,"span",93),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ha(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,Ba,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.xi3(3,2,null==t?null:t.value,"1.0-0")),e.xp6(2),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Va(n,a){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,(null==t.route||null==t.route.hops?null:t.route.hops.length)||0,"1.0-0")," ")}}function Ga(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Va,3,4,"span",93),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function za(n,a){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2,"-"),e.qZA(),e.YNc(3,Ga,2,1,"span",9),e.qZA()),2&n){const t=a.$implicit;e.xp6(3),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Wa(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",81)(1,"button",96),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2).$implicit;return e.oxw(2).onHTLCClick(s,r)}),e._uU(2),e.qZA()()}if(2&n){const t=a.index;e.xp6(2),e.hij("View ",t+1,"")}}function $a(n,a){if(1&n&&(e.TgZ(0,"div"),e.YNc(1,Wa,3,1,"div",95),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Xa(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",72)(1,"span",81)(2,"button",94),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return s.is_expanded=!(null!=s&&s.is_expanded)}),e._uU(3),e.qZA()(),e.YNc(4,$a,2,1,"div",9),e.qZA()}if(2&n){const t=a.$implicit;e.xp6(3),e.Oqu(null!=t&&t.is_expanded?"Hide":"Show"),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Ka(n,a){1&n&&e._UZ(0,"tr",97)}const ja=function(n){return{"display-none":n}};function eo(n,a){if(1&n&&e._UZ(0,"tr",98),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,ja,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function to(n,a){1&n&&e._UZ(0,"tr",99)}function no(n,a){1&n&&e._UZ(0,"tr",97)}const io=function(){return["all"]},ao=function(n){return{"error-border":n}},oo=function(){return["no_payment"]};function so(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",15)(1,"div",16)(2,"div",17),e._UZ(3,"fa-icon",18),e.TgZ(4,"span",19),e._uU(5,"Payments History"),e.qZA()(),e.TgZ(6,"div",20)(7,"mat-form-field",21)(8,"mat-select",22),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilterBy=o})("selectionChange",function(){e.CHM(t);const o=e.oxw();return o.selFilter="",o.applyFilter()}),e.YNc(9,Fi,2,2,"mat-option",23),e.qZA()(),e.TgZ(10,"mat-form-field",21)(11,"input",24),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilter=o})("input",function(){return e.CHM(t),e.oxw().applyFilter()})("keyup",function(){return e.CHM(t),e.oxw().applyFilter()}),e.qZA()()()(),e.TgZ(12,"div",25)(13,"div",26),e.YNc(14,qi,1,0,"mat-progress-bar",27),e.TgZ(15,"table",28,29),e.ynx(17,30),e.YNc(18,Ni,1,0,"th",31),e.YNc(19,Oi,3,2,"td",32),e.BQk(),e.ynx(20,33),e.YNc(21,Ii,2,0,"th",34),e.YNc(22,Pi,3,4,"td",32),e.BQk(),e.ynx(23,35),e.YNc(24,Ri,2,0,"th",34),e.YNc(25,Mi,4,4,"td",32),e.BQk(),e.ynx(26,36),e.YNc(27,Ji,2,0,"th",34),e.YNc(28,Di,4,4,"td",32),e.BQk(),e.ynx(29,37),e.YNc(30,Qi,2,0,"th",34),e.YNc(31,Ei,4,4,"td",32),e.BQk(),e.ynx(32,38),e.YNc(33,Yi,2,0,"th",34),e.YNc(34,Bi,4,4,"td",32),e.BQk(),e.ynx(35,39),e.YNc(36,Hi,2,0,"th",34),e.YNc(37,Vi,4,4,"td",32),e.BQk(),e.ynx(38,40),e.YNc(39,Gi,2,0,"th",34),e.YNc(40,zi,3,5,"td",32),e.BQk(),e.ynx(41,41),e.YNc(42,Wi,2,0,"th",42),e.YNc(43,$i,4,3,"td",32),e.BQk(),e.ynx(44,43),e.YNc(45,Xi,2,0,"th",42),e.YNc(46,Ki,4,3,"td",32),e.BQk(),e.ynx(47,44),e.YNc(48,ji,2,0,"th",42),e.YNc(49,ea,4,3,"td",32),e.BQk(),e.ynx(50,45),e.YNc(51,ta,2,0,"th",42),e.YNc(52,na,3,1,"td",32),e.BQk(),e.ynx(53,46),e.YNc(54,ia,6,0,"th",47),e.YNc(55,aa,3,0,"td",48),e.BQk(),e.ynx(56,49),e.YNc(57,ra,4,3,"td",50),e.BQk(),e.ynx(58,51),e.YNc(59,ha,5,3,"td",32),e.BQk(),e.ynx(60,52),e.YNc(61,Ca,4,2,"td",32),e.BQk(),e.ynx(62,53),e.YNc(63,Ta,5,5,"td",32),e.BQk(),e.ynx(64,54),e.YNc(65,Za,5,5,"td",32),e.BQk(),e.ynx(66,55),e.YNc(67,wa,5,5,"td",32),e.BQk(),e.ynx(68,56),e.YNc(69,qa,5,5,"td",32),e.BQk(),e.ynx(70,57),e.YNc(71,Ua,5,5,"td",32),e.BQk(),e.ynx(72,58),e.YNc(73,Pa,5,6,"td",32),e.BQk(),e.ynx(74,59),e.YNc(75,Ja,5,4,"td",32),e.BQk(),e.ynx(76,60),e.YNc(77,Ea,5,5,"td",32),e.BQk(),e.ynx(78,61),e.YNc(79,Ha,5,5,"td",32),e.BQk(),e.ynx(80,62),e.YNc(81,za,4,1,"td",32),e.BQk(),e.ynx(82,63),e.YNc(83,Xa,5,2,"td",32),e.BQk(),e.YNc(84,Ka,1,0,"tr",64),e.YNc(85,eo,1,3,"tr",65),e.YNc(86,to,1,0,"tr",66),e.YNc(87,no,1,0,"tr",67),e.qZA(),e.TgZ(88,"mat-paginator",68),e.NdJ("page",function(o){return e.CHM(t),e.oxw().onPageChange(o)}),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("icon",t.faHistory),e.xp6(5),e.Q6J("ngModel",t.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(16,io).concat(t.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",t.selFilter),e.xp6(3),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.payments)("ngClass",e.VKq(17,ao,""!==t.errorMessage)),e.xp6(69),e.Q6J("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.xp6(1),e.Q6J("matFooterRowDef",e.DdM(19,oo)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("length",t.totalPayments)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Xe=(()=>{class n{constructor(t,i,o,s,r,_,g,f){this.logger=t,this.commonService=i,this.dataService=o,this.store=s,this.rtlEffects=r,this.decimalPipe=_,this.datePipe=g,this.camelCaseWithReplace=f,this.calledFrom="transactions",this.faHistory=b.qO$,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.IV,sortBy:"creation_date",sortOrder:l.Pi.DESCENDING},this.newlyAddedPayment="",this.selNode={},this.information={},this.peers=[],this.payments=new c.by([]),this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHint="",this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.htlcColumns=[],this.displayedColumns.map(s=>this.htlcColumns.push("group_"+s)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.PP).pipe((0,h.R)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(t.listPayments.first_index_offset||-1),this.lastOffset=+(t.listPayments.last_index_offset||-1),this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize)),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize))}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,$.q)(1)).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.timestamp?(this.paymentDecoded.num_satoshis=this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis?(+this.paymentDecoded.num_msat/1e3).toString():"0",this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.payment_hash||"",this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.store.dispatch((0,L.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:l.Gi.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.Gi.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,$.q)(1)).subscribe(i=>{i&&(this.store.dispatch((0,A.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,L.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:l.Gi.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.Gi.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,getInputs:[{placeholder:"Amount (Sats)",inputType:l.Gi.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,$.q)(1)).subscribe(o=>{o&&(this.paymentDecoded.num_satoshis=o[0].inputValue,this.store.dispatch((0,A.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:o[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,L.qR)({payload:{data:{component:vi}}}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHint="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,$.q)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis?this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[6])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats ("+o.symbol+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}onPageChange(t){let i=!0,o=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(i=!0,o=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(i=!0,o=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(i=!1,o=0);const s=t.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(s,s+this.pageSize))}is_group(t,i){return i.htlcs&&i.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(t){const i=this;return new Promise((o,s)=>{const r=i.peers.find(_=>_.pub_key===t.pub_key);r&&r.alias?o("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+i.decimalPipe.transform(t.amt_to_forward)+"
"):i.dataService.getAliasesFromPubkeys(t.pub_key||"",!1).pipe((0,h.R)(i.unSubs[7])).subscribe({next:_=>{var g;return o("
Channel: "+(_.node&&_.node.alias?_.node.alias.padEnd(20):(null===(g=t.pub_key)||void 0===g?void 0:g.substring(0,17))+"...")+"			Amount (Sats): "+i.decimalPipe.transform(t.amt_to_forward)+"
")},error:_=>{var g;return o("
Channel: "+(t.pub_key?(null===(g=t.pub_key)||void 0===g?void 0:g.substring(0,17))+"...":"")+"			Amount (Sats): "+i.decimalPipe.transform(t.amt_to_forward)+"
")}})})}onHTLCClick(t,i){i.payment_request&&""!==i.payment_request.trim()?this.dataService.decodePayment(i.payment_request,!1).pipe((0,$.q)(1)).subscribe({next:o=>{setTimeout(()=>{this.showHTLCView(t,i,o)},0)},error:o=>{this.showHTLCView(t,i)}}):this.showHTLCView(t,i)}showHTLCView(t,i,o){t.route&&t.route.hops&&t.route.hops.length?Promise.all(t.route.hops.map(s=>this.getHopDetails(s))).then(s=>{this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,i,o,s),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}):this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,i,o,[]),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}prepareData(t,i,o,s){var r,_,g;const f=[[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"preimage",value:t.preimage,title:"Preimage",width:100,type:l.Gi.STRING}],[{key:"payment_request",value:i.payment_request,title:"Payment Request",width:100,type:l.Gi.STRING}],[{key:"status",value:t.status,title:"Status",width:33,type:l.Gi.STRING},{key:"attempt_time_ns",value:+(t.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:l.Gi.DATE_TIME},{key:"resolve_time_ns",value:+(t.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:l.Gi.DATE_TIME}],[{key:"total_amt",value:null===(r=t.route)||void 0===r?void 0:r.total_amt,title:"Amount (Sats)",width:33,type:l.Gi.NUMBER},{key:"total_fees",value:null===(_=t.route)||void 0===_?void 0:_.total_fees,title:"Fee (Sats)",width:33,type:l.Gi.NUMBER},{key:"total_time_lock",value:null===(g=t.route)||void 0===g?void 0:g.total_time_lock,title:"Total Time Lock",width:34,type:l.Gi.NUMBER}],[{key:"hops",value:s,title:"Hops",width:100,type:l.Gi.ARRAY}]];return o&&o.description&&""!==o.description&&f.splice(3,0,[{key:"description",value:o.description,title:"Description",width:100,type:l.Gi.STRING}]),f}onPaymentClick(t){var i;if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const o=null===(i=t.htlcs[0].route.hops)||void 0===i?void 0:i.reduce((s,r)=>r.pub_key&&""===s?r.pub_key:s+","+r.pub_key,"");this.dataService.getAliasesFromPubkeys(o,!0).pipe((0,h.R)(this.unSubs[8])).subscribe(s=>{this.showPaymentView(t,null==s?void 0:s.reduce((r,_)=>""===r?_:r+"\n"+_,""))})}else this.showPaymentView(t,"")}showPaymentView(t,i){const o=[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:l.Gi.STRING}],[{key:"payment_request",value:t.payment_request,title:"Payment Request",width:100,type:l.Gi.STRING}],[{key:"status",value:t.status,title:"Status",width:50,type:l.Gi.STRING},{key:"creation_date",value:t.creation_date,title:"Creation Date",width:50,type:l.Gi.DATE_TIME}],[{key:"value_msat",value:t.value_msat,title:"Value (mSats)",width:50,type:l.Gi.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:50,type:l.Gi.NUMBER}],[{key:"path",value:i,title:"Path",width:100,type:l.Gi.STRING}]];t.payment_request&&""!==t.payment_request.trim()?this.dataService.decodePayment(t.payment_request,!1).pipe((0,$.q)(1)).subscribe(s=>{s&&s.description&&""!==s.description&&o.splice(3,0,[{key:"description",value:s.description,title:"Description",width:100,type:l.Gi.STRING}]),setTimeout(()=>{this.openPaymentAlert(o,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(o,!1)}openPaymentAlert(t,i){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Payment Information",message:t,scrollable:i}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,i)=>{var o,s;let r="";switch(this.selFilterBy){case"all":r=(t.creation_date?null===(o=this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"status":case"group_status":r="SUCCEEDED"===(null==t?void 0:t.status)?"succeeded":"failed";break;case"creation_date":r=(null===(s=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===s?void 0:s.toLowerCase())||"";break;case"failure_reason":case"group_failure_reason":r=this.camelCaseWithReplace.transform(t.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":r=t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length?t.htlcs[0].route.hops.length.toString():"0";break;default:r=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===r.indexOf(i):r.includes(i)}}loadPaymentsTable(t){var i;this.payments=new c.by(t?[...t]:[]),this.payments.sortingDataAccessor=(o,s)=>"hops"===s?o.htlcs.length&&o.htlcs[0]&&o.htlcs[0].route&&o.htlcs[0].route.hops&&o.htlcs[0].route.hops.length?o.htlcs[0].route.hops.length:0:o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,this.payments.sort=this.sort,null===(i=this.payments.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),i=null==t?void 0:t.reduce((o,s)=>(s.payment_request&&""!==s.payment_request.trim()&&(o=""===o?s.payment_request:o+","+s.payment_request),o),"");this.dataService.decodePayments(i).pipe((0,h.R)(this.unSubs[9])).subscribe(o=>{let s=0;o.forEach((_,g)=>{if(_){for(;t[g+s].payment_hash!==_.payment_hash;)s+=1;t[g+s].description=_.description}});const r=null==t?void 0:t.reduce((_,g)=>_.concat(g),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(ie.D),e.Y36(F.yh),e.Y36(me.V),e.Y36(m.JJ),e.Y36(m.uU),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(t,i){if(1&t&&(e.Gf(Zi,5),e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.form=o.first),e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Payments")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["sendPaymentForm","ngForm"],["fxFlex","100"],["matInput","","placeholder","Payment Request","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","payment_hash"],["matColumnDef","payment_request"],["matColumnDef","payment_preimage"],["matColumnDef","description"],["matColumnDef","description_hash"],["matColumnDef","failure_reason"],["matColumnDef","payment_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fee"],["matColumnDef","value"],["matColumnDef","hops"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_creation_date"],["matColumnDef","group_payment_hash"],["matColumnDef","group_payment_request"],["matColumnDef","group_payment_preimage"],["matColumnDef","group_description"],["matColumnDef","group_description_hash"],["matColumnDef","group_failure_reason"],["matColumnDef","group_payment_index"],["matColumnDef","group_fee"],["matColumnDef","group_value"],["matColumnDef","group_hops"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"length","pageSize","pageSizeOptions","showFirstLastButtons","page"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Succeeded","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Succeeded","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["fxLayoutAlign","end center",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,wi,12,3,"form",1),e.YNc(2,Li,3,0,"div",2),e.YNc(3,so,89,20,"div",3),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf","home"===i.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===i.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===i.calledFrom))},directives:[d.xw,d.yH,d.Wh,m.O5,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,u.Q7,H.$V,u.JJ,u.On,T.bx,T.TO,k.lW,M.BN,P.gD,m.sg,B.ey,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,K.gM,c.Dz,c.ev,m.PC,q.Zl,P.$L,c.mD,c.yh,c.nj,c.Gk,c.Ke,c.Q2,c.as,c.XQ,N.NW],pipes:[m.uU,z.D3,m.JJ],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-group_actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:10rem;width:10rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{margin-top:.5rem;min-width:9rem;width:9rem}.mat-column-group_status[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_creation_date[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:3rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.4rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:17rem}"]}),n})();function lo(n,a){if(1&n&&(e.TgZ(0,"button",26)(1,"mat-icon"),e._uU(2,"more_vert"),e.qZA()()),2&n){e.oxw();const t=e.MAs(11);e.Q6J("matMenuTriggerFor",t)}}function ro(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){const s=e.CHM(t).index,r=e.oxw().$implicit;return e.oxw(2).onNavigateTo(r.links[s])}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t)}}function co(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){return e.CHM(t),e.oxw(3).onsortChannelsBy()}),e._uU(1),e.qZA()}if(2&n){const t=e.oxw(3);e.xp6(1),e.hij("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function uo(n,a){1&n&&e._UZ(0,"mat-progress-bar",28)}function po(n,a){if(1&n&&e._UZ(0,"rtl-node-info",29),2&n){const t=e.oxw(3);e.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function mo(n,a){if(1&n&&e._UZ(0,"rtl-balances-info",30),2&n){const t=e.oxw(3);e.Q6J("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function _o(n,a){if(1&n&&e._UZ(0,"rtl-channel-capacity-info",31),2&n){const t=e.oxw(3);e.Q6J("sortBy",t.sortField)("channelBalances",t.channelBalances)("allChannels",t.allChannelsCapacity)("errorMessage",t.errorMessages[3])}}function ho(n,a){if(1&n&&e._UZ(0,"rtl-fee-info",32),2&n){const t=e.oxw(3);e.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1])}}function go(n,a){if(1&n&&e._UZ(0,"rtl-channel-status-info",33),2&n){const t=e.oxw(3);e.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function fo(n,a){1&n&&(e.TgZ(0,"h3"),e._uU(1,"Error! Unable to find information!"),e.qZA())}const Ke=function(n){return{"dashboard-card-content":!0,"error-border":n}};function Co(n,a){if(1&n&&(e.TgZ(0,"mat-grid-tile",8)(1,"mat-card",9)(2,"mat-card-header")(3,"mat-card-title",10)(4,"div"),e._UZ(5,"fa-icon",11),e.TgZ(6,"span"),e._uU(7),e.qZA()(),e.TgZ(8,"div"),e.YNc(9,lo,3,1,"button",12),e.TgZ(10,"mat-menu",13,14),e.YNc(12,ro,2,1,"button",15),e.YNc(13,co,2,1,"button",16),e.qZA()()()(),e.TgZ(14,"mat-card-content",17),e.YNc(15,uo,1,0,"mat-progress-bar",18),e.TgZ(16,"div",19),e.YNc(17,po,1,2,"rtl-node-info",20),e.YNc(18,mo,1,2,"rtl-balances-info",21),e.YNc(19,_o,1,4,"rtl-channel-capacity-info",22),e.YNc(20,ho,1,2,"rtl-fee-info",23),e.YNc(21,go,1,2,"rtl-channel-status-info",24),e.YNc(22,fo,2,0,"h3",25),e.qZA()()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(5),e.Q6J("icon",t.icon),e.xp6(2),e.Oqu(t.title),e.xp6(2),e.Q6J("ngIf",t.links[0]),e.xp6(3),e.Q6J("ngForOf",t.goToOptions),e.xp6(1),e.Q6J("ngIf","capacity"===t.id),e.xp6(1),e.s9C("fxFlex","node"===t.id||"balance"===t.id?70:"fee"===t.id||"status"===t.id?78:90),e.Q6J("ngClass",e.VKq(16,Ke,"node"===t.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||"capacity"===t.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||"fee"===t.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR||"status"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR))),e.xp6(1),e.Q6J("ngIf","node"===t.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===t.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED||"status"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","node"),e.xp6(1),e.Q6J("ngSwitchCase","balance"),e.xp6(1),e.Q6J("ngSwitchCase","capacity"),e.xp6(1),e.Q6J("ngSwitchCase","fee"),e.xp6(1),e.Q6J("ngSwitchCase","status")}}function xo(n,a){if(1&n&&(e.TgZ(0,"div",2)(1,"div",3),e._UZ(2,"fa-icon",4),e.TgZ(3,"span",5),e._uU(4),e.qZA()(),e.TgZ(5,"mat-grid-list",6),e.YNc(6,Co,23,18,"mat-grid-tile",7),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Q6J("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),e.xp6(2),e.Oqu(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.xp6(1),e.Q6J("rowHeight",t.operatorCardHeight),e.xp6(1),e.Q6J("ngForOf",t.operatorCards)}}function yo(n,a){if(1&n&&(e.TgZ(0,"button",26)(1,"mat-icon"),e._uU(2,"more_vert"),e.qZA()()),2&n){e.oxw();const t=e.MAs(9);e.Q6J("matMenuTriggerFor",t)}}function To(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){const s=e.CHM(t).index,r=e.oxw(2).$implicit;return e.oxw(2).onNavigateTo(r.links[s])}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t)}}function bo(n,a){if(1&n&&(e.TgZ(0,"mat-card-header")(1,"mat-card-title",10)(2,"div"),e._UZ(3,"fa-icon",11),e.TgZ(4,"span"),e._uU(5),e.qZA()(),e.TgZ(6,"div"),e.YNc(7,yo,3,1,"button",12),e.TgZ(8,"mat-menu",13,42),e.YNc(10,To,2,1,"button",15),e.qZA()()()()),2&n){const t=e.oxw().$implicit;e.xp6(3),e.Q6J("icon",t.icon),e.xp6(2),e.Oqu(t.title),e.xp6(2),e.Q6J("ngIf",t.links[0]),e.xp6(3),e.Q6J("ngForOf",t.goToOptions)}}function vo(n,a){1&n&&e._UZ(0,"mat-progress-bar",28)}function Zo(n,a){if(1&n&&e._UZ(0,"rtl-node-info",43),2&n){const t=e.oxw(3);e.Q6J("information",t.information)}}function Ao(n,a){if(1&n&&e._UZ(0,"rtl-balances-info",30),2&n){const t=e.oxw(3);e.Q6J("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function So(n,a){if(1&n&&e._UZ(0,"rtl-channel-liquidity-info",44),2&n){const t=e.oxw(3);e.Q6J("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function wo(n,a){if(1&n&&e._UZ(0,"rtl-channel-liquidity-info",44),2&n){const t=e.oxw(3);e.Q6J("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function Lo(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){const s=e.CHM(t).index,r=e.oxw(3).$implicit;return e.oxw(2).onNavigateTo(r.links[s])}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t)}}function Fo(n,a){if(1&n&&(e.TgZ(0,"button",26)(1,"mat-icon"),e._uU(2,"more_vert"),e.qZA()(),e.TgZ(3,"mat-menu",13,52),e.YNc(5,Lo,2,1,"button",15),e.qZA()),2&n){const t=e.MAs(4),i=e.oxw(2).$implicit;e.Q6J("matMenuTriggerFor",t),e.xp6(5),e.Q6J("ngForOf",i.goToOptions)}}function qo(n,a){1&n&&(e.TgZ(0,"span",45)(1,"mat-tab-group",46)(2,"mat-tab",47),e._UZ(3,"rtl-lightning-invoices",48),e.qZA(),e.TgZ(4,"mat-tab",49),e._UZ(5,"rtl-lightning-payments",48),e.qZA(),e.TgZ(6,"mat-tab",50),e.YNc(7,Fo,6,2,"ng-template",51),e.qZA()()()),2&n&&(e.xp6(3),e.Q6J("calledFrom","home"),e.xp6(2),e.Q6J("calledFrom","home"),e.xp6(1),e.Q6J("disabled",!0))}function No(n,a){1&n&&(e.TgZ(0,"h3"),e._uU(1,"Error! Unable to find information!"),e.qZA())}const ko=function(n){return{"p-0":n}};function Uo(n,a){if(1&n&&(e.TgZ(0,"mat-grid-tile",8)(1,"mat-card",35),e.YNc(2,bo,11,4,"mat-card-header",36),e.TgZ(3,"mat-card-content",37),e.YNc(4,vo,1,0,"mat-progress-bar",18),e.TgZ(5,"div",38),e.YNc(6,Zo,1,1,"rtl-node-info",39),e.YNc(7,Ao,1,2,"rtl-balances-info",21),e.YNc(8,So,1,4,"rtl-channel-liquidity-info",40),e.YNc(9,wo,1,4,"rtl-channel-liquidity-info",40),e.YNc(10,qo,8,3,"span",41),e.YNc(11,No,2,0,"h3",25),e.qZA()()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(1),e.Q6J("ngClass",e.VKq(13,ko,"transactions"===t.id)),e.xp6(1),e.Q6J("ngIf","transactions"!==t.id),e.xp6(1),e.s9C("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),e.Q6J("ngClass",e.VKq(15,Ke,"node"===t.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),e.xp6(1),e.Q6J("ngIf","node"===t.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","node"),e.xp6(1),e.Q6J("ngSwitchCase","balance"),e.xp6(1),e.Q6J("ngSwitchCase","inboundLiq"),e.xp6(1),e.Q6J("ngSwitchCase","outboundLiq"),e.xp6(1),e.Q6J("ngSwitchCase","transactions")}}function Oo(n,a){if(1&n&&(e.TgZ(0,"div",3),e._UZ(1,"fa-icon",4),e.TgZ(2,"span",5),e._uU(3),e.qZA()(),e.TgZ(4,"mat-grid-list",34),e.YNc(5,Uo,12,17,"mat-grid-tile",7),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faSmile),e.xp6(2),e.hij("Welcome ",t.information.alias,"! Your node is up and running."),e.xp6(1),e.Q6J("rowHeight",t.merchantCardHeight),e.xp6(1),e.Q6J("ngForOf",t.merchantCards)}}let Io=(()=>{class n{constructor(t,i,o,s,r){switch(this.logger=t,this.store=i,this.actions=o,this.commonService=s,this.router=r,this.faSmile=Ye.ctA,this.faFrown=Ye.KfU,this.faAngleDoubleDown=b.Sbq,this.faAngleDoubleUp=b.Vfw,this.faChartPie=b.OS1,this.faBolt=b.BDt,this.faServer=b.xf3,this.faNetworkWired=b.kXW,this.flgChildInfoUpdated=!1,this.userPersonaEnum=l.ol,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.selNode={},this.information={},this.balances={onchain:-1,lightning:-1,total:0},this.allChannels=[],this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="405px",this.merchantCardHeight="65px",this.sortField="Balance Score",this.screenSizeEnum=l.cu,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case l.cu.XS:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:6},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}];break;case l.cu.SM:case l.cu.MD:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}];break;default:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}]}}ngOnInit(){this.store.select(y.bx).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=t.nodeSettings,this.information=t.information}),this.store.select(y.JG).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=t.apiCallStatus,this.apiCallStatusBlockchainBalance.status===l.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=t.blockchainBalance.total_balance&&+t.blockchainBalance.total_balance>=0?+t.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var i,o,s,r,_;this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:null===(i=t.pendingChannelsSummary.open)||void 0===i?void 0:i.num_channels,capacity:null===(o=t.pendingChannelsSummary.open)||void 0===o?void 0:o.limbo_balance},this.channelsStatus.closing={num_channels:((null===(s=t.pendingChannelsSummary.closing)||void 0===s?void 0:s.num_channels)||0)+((null===(r=t.pendingChannelsSummary.force_closing)||void 0===r?void 0:r.num_channels)||0)+((null===(_=t.pendingChannelsSummary.waiting_close)||void 0===_?void 0:_.num_channels)||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{var i,o,s,r,_;this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const g=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,f=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:g,remoteBalance:f,balancedness:+(1-Math.abs((g-f)/(g+f))).toFixed(3)},this.balances.lightning=t.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=(null===(i=t.channelsSummary.active)||void 0===i?void 0:i.num_channels)||0,this.inactiveChannels=(null===(o=t.channelsSummary.inactive)||void 0===o?void 0:o.num_channels)||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=null===(s=t.channels)||void 0===s?void 0:s.filter(C=>!0===C.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(r=this.allChannels)||void 0===r?void 0:r.filter(C=>C.remote_balance&&C.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(_=this.allChannels)||void 0===_?void 0:_.filter(C=>C.local_balance&&C.local_balance>0),"local_balance"))),this.allChannels.forEach(C=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(C.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(C.local_balance||0)}),this.flgChildInfoUpdated=!!(this.balances.lightning>=0&&this.balances.onchain>=0&&this.fees.month_fee_sum&&this.fees.month_fee_sum>=0),this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[5]),(0,Y.h)(t=>t.type===l.uR.FETCH_FEES_LND||t.type===l.uR.SET_FEES_LND)).subscribe(t=>{t.type===l.uR.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),t.type===l.uR.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(t){"inactive"===t?this.router.navigateByUrl("/lnd/connections",{state:{filter:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,i)=>{const o=+(t.local_balance||0)+ +(t.remote_balance||0),s=+(i.local_balance||0)+ +(i.remote_balance||0);return o>s?-1:o{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(X.eX),e.Y36(I.v),e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-home"]],decls:3,vars:2,consts:[["fxLayout","column",4,"ngIf","ngIfElse"],["merchantDashboard",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["menuOperator","matMenu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"ngSwitch"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",3,"perfectScrollbar",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",1,"w-100","dashboard-tabs-group"],["label","Receive"],[3,"calledFrom"],["label","Pay"],[3,"disabled"],["mat-tab-label",""],["menuTransactions","matMenu"]],template:function(t,i){if(1&t&&(e.YNc(0,xo,7,4,"div",0),e.YNc(1,Oo,6,4,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf",(null==i.selNode?null:i.selNode.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},directives:[m.O5,d.xw,d.Wh,M.BN,he.Il,m.sg,he.DX,d.yH,Z.a8,Z.dk,Z.n5,k.lW,ve.p6,ae.Hw,ve.VK,ve.OP,Z.dn,m.mk,q.oO,D.pW,m.RF,m.n9,He,Tt,Ft,Ve,Ge,m.ED,zt,H.$V,J.SP,J.uX,$e,Xe,J.uD],styles:[""]}),n})();var Ze=x(1203),Ae=x(7544);function Po(n,a){if(1&n&&(e.TgZ(0,"span",10),e._uU(1,"Channels"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.activeChannels)}}function Ro(n,a){if(1&n&&(e.TgZ(0,"span",10),e._uU(1,"Peers"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.activePeers)}}let Mo=(()=>{class n{constructor(t,i,o){this.store=t,this.logger=i,this.router=o,this.selNode={},this.activePeers=0,this.activeChannels=0,this.faUsers=b.FVb,this.faChartPie=b.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t instanceof v.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(i=>i.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var i;this.activeChannels=(null===(i=t.channelsSummary.active)||void 0===i?void 0:i.num_channels)||0,this.logger.info(t)}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:t.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:t.blockchainBalance.unconfirmed_balance||0}],this.logger.info(t)})}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh),e.Y36(U.mQ),e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"On-chain Balance"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e._UZ(7,"rtl-currency-unit-converter",5),e.qZA()()(),e.TgZ(8,"div",0),e._UZ(9,"fa-icon",1),e.TgZ(10,"span",2),e._uU(11,"Connections"),e.qZA()(),e.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.NdJ("selectedIndexChange",function(s){return i.activeLink=s})("selectedTabChange",function(s){return i.onSelectedTabChange(s)}),e.TgZ(16,"mat-tab"),e.YNc(17,Po,2,1,"ng-template",8),e.qZA(),e.TgZ(18,"mat-tab"),e.YNc(19,Ro,2,1,"ng-template",8),e.qZA()(),e.TgZ(20,"div",9),e._UZ(21,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faChartPie),e.xp6(6),e.Q6J("values",i.balances),e.xp6(2),e.Q6J("icon",i.faUsers),e.xp6(6),e.Q6J("selectedIndex",i.activeLink))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,Ze.D,J.SP,J.uX,J.uD,Ae.k,d.yH,v.lC],styles:[""]}),n})();var Se=x(8675),je=x(4004),et=x(9843);const Jo=["form"];function Do(n,a){if(1&n&&(e.TgZ(0,"mat-option",38),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function Qo(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Peer alias is required."),e.qZA())}function Eo(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Peer not found in the list."),e.qZA())}function Yo(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",34),e._UZ(1,"input",35),e.TgZ(2,"mat-autocomplete",36,37),e.NdJ("optionSelected",function(){return e.CHM(t),e.oxw().onSelectedPeerChanged()}),e.YNc(4,Do,2,2,"mat-option",24),e.ALo(5,"async"),e.qZA(),e.YNc(6,Qo,2,0,"mat-error",17),e.YNc(7,Eo,2,0,"mat-error",17),e.qZA()}if(2&n){const t=e.MAs(3),i=e.oxw();e.xp6(1),e.Q6J("formControl",i.selectedPeer)("matAutocomplete",t),e.xp6(1),e.Q6J("displayWith",i.displayFn),e.xp6(2),e.Q6J("ngForOf",e.lcZ(5,6,i.filteredPeers)),e.xp6(2),e.Q6J("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),e.xp6(1),e.Q6J("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function Bo(n,a){1&n&&e.GkF(0)}function Ho(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function Vo(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function Go(n,a){if(1&n&&(e.TgZ(0,"mat-option",38),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function zo(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("","1"===t.selTransType?"Target Confirmation Blocks":"Fee"," is required.")}}function Wo(n,a){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.channelConnectionError)}}function $o(n,a){if(1&n&&(e.TgZ(0,"div",39),e._UZ(1,"fa-icon",40),e.YNc(2,Wo,2,1,"span",17),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.channelConnectionError)}}function Xo(n,a){if(1&n&&(e.TgZ(0,"mat-expansion-panel",42)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e._uU(4,"Peer: \xa0"),e.qZA(),e.TgZ(5,"strong",43),e._uU(6),e.qZA()()(),e.TgZ(7,"div",9)(8,"div",44)(9,"div",34)(10,"h4",45),e._uU(11,"Pubkey"),e.qZA(),e.TgZ(12,"span",46),e._uU(13),e.qZA()()(),e._UZ(14,"mat-divider",47),e.TgZ(15,"div",44)(16,"div",48)(17,"h4",45),e._uU(18,"Address"),e.qZA(),e.TgZ(19,"span",49),e._uU(20),e.qZA()(),e.TgZ(21,"div",48)(22,"h4",45),e._uU(23,"Inbound"),e.qZA(),e.TgZ(24,"span",49),e._uU(25),e.qZA()()()()()),2&n){const t=e.oxw(2);e.xp6(6),e.Oqu((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.address)),e.xp6(7),e.Oqu(t.peer.pub_key),e.xp6(7),e.Oqu(null==t.peer?null:t.peer.address),e.xp6(5),e.Oqu(null!=t.peer&&t.peer.inbound?"True":"False")}}function Ko(n,a){if(1&n&&e.YNc(0,Xo,26,4,"mat-expansion-panel",41),2&n){const t=e.oxw();e.Q6J("ngIf",t.peer)}}let tt=(()=>{class n{constructor(t,i,o,s){this.dialogRef=t,this.data=i,this.store=o,this.actions=s,this.selectedPeer=new u.NI,this.selNode={},this.amount=new u.NI,this.faExclamationTriangle=b.eHv,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=l.Dr,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(o=>{this.selNode=o,this.isPrivate=!!(null==o?void 0:o.unannouncedChannels)}),this.actions.pipe((0,h.R)(this.unSubs[1]),(0,Y.h)(o=>o.type===l.uR.UPDATE_API_CALL_STATUS_LND||o.type===l.uR.FETCH_CHANNELS_LND)).subscribe(o=>{o.type===l.uR.UPDATE_API_CALL_STATUS_LND&&o.payload.status===l.Bn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===l.uR.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",i="";this.sortedPeers=this.peers.sort((o,s)=>(t=o.alias?o.alias.toLowerCase():o.pub_key?o.pub_key.toLowerCase():"",i=s.alias?s.alias.toLowerCase():o.pub_key?o.pub_key.toLowerCase():"",ti?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,h.R)(this.unSubs[2]),(0,Se.O)(""),(0,je.U)(o=>"string"==typeof o?o:o.alias?o.alias:o.pub_key),(0,je.U)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(t){var i;return null===(i=this.sortedPeers)||void 0===i?void 0:i.filter(o=>{var s;return 0===(null===(s=o.alias)||void 0===s?void 0:s.toLowerCase().indexOf(t?t.toLowerCase():""))})}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.pub_key:""}onSelectedPeerChanged(){var t;if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.pub_key?this.selectedPeer.value.pub_key:null,"string"==typeof this.selectedPeer.value){const i=null===(t=this.peers)||void 0===t?void 0:t.filter(o=>{var s,r;return(null===(s=o.alias)||void 0===s?void 0:s.length)===this.selectedPeer.value.length&&0===(null===(r=o.alias)||void 0===r?void 0:r.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""))});1===i.length&&i[0].pub_key&&(this.selectedPubkey=i[0].pub_key)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){var t;this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!(null===(t=this.selNode)||void 0===t?void 0:t.unannouncedChannels),this.spendUnconfirmed=!1,this.selTransType="0",this.transTypeValue="",this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||("1"===this.selTransType||"2"===this.selTransType)&&!this.transTypeValue)return!0;this.store.dispatch((0,A.YX)({payload:{selectedPeerPubkey:this.peer&&this.peer.pub_key?this.peer.pub_key:this.selectedPubkey,fundingAmount:this.fundingAmount,private:this.isPrivate,transType:this.selTransType,transTypeValue:this.transTypeValue,spendUnconfirmed:this.spendUnconfirmed}}))}onAdvancedPanelToggle(t){this.advancedTitle=t?"Advanced Options | "+("1"===this.selTransType?"Target Confirmation Blocks: ":"2"===this.selTransType?"Fee (Sats/vByte): ":"Default")+("1"===this.selTransType||"2"===this.selTransType?this.transTypeValue:"")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(F.yh),e.Y36(X.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(t,i){if(1&t&&e.Gf(Jo,7),2&t){let o;e.iGM(o=e.CRH())&&(i.form=o.first)}},decls:55,vars:25,consts:[["fxLayout","row","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["form","ngForm"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","1","required","","name","amnt",3,"ngModel","step","min","max","ngModelChange"],["amt","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModel","ngModelChange"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","49"],["tabindex","3",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","tabindex","4","name","transTpValue",3,"ngModel","required","disabled","placeholder","step","min","ngModelChange"],["transTypeVal","ngModel"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","6","color","primary","name","spendUnconfirmed",3,"ngModel","ngModelChange"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["peerDetailsExpansionBlock",""],["fxFlex","100"],["type","text","placeholder","Peer Alias","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(t,i){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return i.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8),e.NdJ("submit",function(){return i.onOpenChannel()})("reset",function(){return i.resetData()}),e.TgZ(11,"div",9),e.YNc(12,Yo,8,8,"mat-form-field",10),e.qZA(),e.YNc(13,Bo,1,0,"ng-container",11),e.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"input",14,15),e.NdJ("ngModelChange",function(s){return i.fundingAmount=s}),e.qZA(),e.TgZ(19,"mat-hint"),e._uU(20),e.ALo(21,"number"),e.qZA(),e.TgZ(22,"span",16),e._uU(23," Sats "),e.qZA(),e.YNc(24,Ho,2,0,"mat-error",17),e.YNc(25,Vo,2,1,"mat-error",17),e.qZA(),e.TgZ(26,"div",18)(27,"mat-slide-toggle",19),e.NdJ("ngModelChange",function(s){return i.isPrivate=s}),e._uU(28,"Private Channel"),e.qZA()()(),e.TgZ(29,"mat-expansion-panel",20),e.NdJ("closed",function(){return i.onAdvancedPanelToggle(!0)})("opened",function(){return i.onAdvancedPanelToggle(!1)}),e.TgZ(30,"mat-expansion-panel-header")(31,"mat-panel-title")(32,"span"),e._uU(33),e.qZA()()(),e.TgZ(34,"div",21)(35,"div",12)(36,"mat-form-field",22)(37,"mat-select",23),e.NdJ("valueChange",function(s){return i.selTransType=s}),e.YNc(38,Go,2,2,"mat-option",24),e.qZA()(),e.TgZ(39,"mat-form-field",22)(40,"input",25,26),e.NdJ("ngModelChange",function(s){return i.transTypeValue=s}),e.qZA(),e.YNc(42,zo,2,1,"mat-error",17),e.qZA()(),e.TgZ(43,"div",12)(44,"div",27)(45,"mat-slide-toggle",28),e.NdJ("ngModelChange",function(s){return i.spendUnconfirmed=s}),e._uU(46,"Spend Unconfirmed Output"),e.qZA()()()()()(),e.YNc(47,$o,3,2,"div",29),e.TgZ(48,"div",30)(49,"button",31),e._uU(50,"Clear Fields"),e.qZA(),e.TgZ(51,"button",32),e._uU(52,"Open Channel"),e.qZA()()()()()(),e.YNc(53,Ko,1,1,"ng-template",null,33,e.W1O)),2&t){const o=e.MAs(54);e.xp6(5),e.Oqu(i.alertTitle),e.xp6(7),e.Q6J("ngIf",!i.peer&&i.peers&&i.peers.length>0),e.xp6(1),e.Q6J("ngTemplateOutlet",o),e.xp6(4),e.Q6J("ngModel",i.fundingAmount)("step",1e3)("min",1)("max",i.totalBalance),e.xp6(3),e.hij("(Remaining Bal: ",e.lcZ(21,23,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),")"),e.xp6(4),e.Q6J("ngIf",null==i.amount.errors?null:i.amount.errors.required),e.xp6(1),e.Q6J("ngIf",null==i.amount.errors?null:i.amount.errors.max),e.xp6(2),e.Q6J("ngModel",i.isPrivate),e.xp6(6),e.Oqu(i.advancedTitle),e.xp6(4),e.Q6J("value",i.selTransType),e.xp6(1),e.Q6J("ngForOf",i.transTypes),e.xp6(2),e.Q6J("ngModel",i.transTypeValue)("required","0"!==i.selTransType)("disabled","0"===i.selTransType)("placeholder","0"===i.selTransType?"Default":"1"===i.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)")("step",1)("min",0),e.xp6(2),e.Q6J("ngIf","0"!==i.selTransType&&!i.transTypeValue),e.xp6(3),e.Q6J("ngModel",i.spendUnconfirmed),e.xp6(2),e.Q6J("ngIf",""!==i.channelConnectionError)}},directives:[d.xw,d.Wh,d.yH,Z.dk,k.lW,Z.dn,u._Y,u.JL,u.F,m.O5,T.KE,R.Nt,u.Fj,le.ZL,u.Q7,u.JJ,u.oH,le.XC,m.sg,B.ey,T.TO,m.tP,u.wV,u.qQ,u.Fd,ne.q,et.F,u.On,T.bx,T.R9,ge.Rr,V.ib,V.yz,V.yK,P.gD,M.BN,ee.h,j.d],pipes:[m.Ov,m.JJ],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),n})();var ce=x(711),G=x(5615);const jo=["peersForm"],es=["stepper"];function ts(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw();e.Oqu(t.peerFormLabel)}}function ns(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Address is required."),e.qZA())}function is(n,a){if(1&n&&(e.TgZ(0,"div",37),e._UZ(1,"fa-icon",38),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(2),e.Oqu(t.peerConnectionError)}}function as(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw();e.Oqu(t.channelFormLabel)}}function os(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function ss(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount must be a positive number."),e.qZA())}function ls(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function rs(n,a){if(1&n&&(e.TgZ(0,"mat-option",39),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function cs(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("","0"===t.channelFormGroup.controls.selTransType.value?"Default":"1"===t.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"," is required.")}}function us(n,a){if(1&n&&(e.TgZ(0,"div",37),e._UZ(1,"fa-icon",38),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(2),e.Oqu(t.channelConnectionError)}}let ps=(()=>{class n{constructor(t,i,o,s,r,_,g){this.dialogRef=t,this.data=i,this.store=o,this.lndEffects=s,this.formBuilder=r,this.actions=_,this.logger=g,this.faExclamationTriangle=b.eHv,this.selNode={},this.peerAddress="",this.totalBalance=0,this.transTypes=l.Dr,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){var t,i;this.totalBalance=(null===(t=this.data.message)||void 0===t?void 0:t.balance)||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[u.kI.required]],peerAddress:["",[u.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[u.kI.required,u.kI.min(1),u.kI.max(this.totalBalance)]],isPrivate:[!!(null===(i=this.selNode)||void 0===i?void 0:i.unannouncedChannels)],selTransType:[l.Dr[0].id],transTypeValue:[{value:"",disabled:!0}],spendUnconfirmed:[!1],hiddenAmount:["",[u.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(o=>{this.selNode=o,this.channelFormGroup.controls.isPrivate.setValue(!!(null==o?void 0:o.unannouncedChannels))}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,h.R)(this.unSubs[1])).subscribe(o=>{o===l.Dr[0].id?(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.disable(),this.channelFormGroup.controls.transTypeValue.setValidators(null),this.channelFormGroup.controls.transTypeValue.setErrors(null)):(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.enable(),this.channelFormGroup.controls.transTypeValue.setValidators([u.kI.required]))}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(o=>o.type===l.uR.NEWLY_ADDED_PEER_LND||o.type===l.uR.FETCH_PENDING_CHANNELS_LND||o.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(o=>{o.type===l.uR.NEWLY_ADDED_PEER_LND&&(this.logger.info(o.payload),this.flgEditable=!1,this.newlyAddedPeer=o.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),o.type===l.uR.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),o.type===l.uR.UPDATE_API_CALL_STATUS_LND&&o.payload.status===l.Bn.ERROR&&("SaveNewPeer"===o.payload.action||"FetchGraphNode"===o.payload.action?this.peerConnectionError=o.payload.message:"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const t=this.peerFormGroup.controls.peerAddress.value.search("@");let i="",o="";t>-1?(i=this.peerFormGroup.controls.peerAddress.value.substring(0,t),o=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(i,o)):(this.store.dispatch((0,A.dV)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,$.q)(1)).subscribe(s=>{setTimeout(()=>{o=s.node.addresses&&s.node.addresses.length&&s.node.addresses.length>0&&s.node.addresses[0].addr?s.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,o)},0)}))}connectPeerWithParams(t,i){this.store.dispatch((0,A.El)({payload:{pubkey:t,host:i,perm:!1}}))}onOpenChannel(){var t;if(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||"1"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||"2"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value)return!0;this.channelConnectionError="",this.store.dispatch((0,A.YX)({payload:{selectedPeerPubkey:null===(t=this.newlyAddedPeer)||void 0===t?void 0:t.pub_key,fundingAmount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,transType:this.channelFormGroup.controls.selTransType.value,transTypeValue:this.channelFormGroup.controls.transTypeValue.value,spendUnconfirmed:this.channelFormGroup.controls.spendUnconfirmed.value}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){var i,o;switch(t.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(null===(i=this.newlyAddedPeer)||void 0===i?void 0:i.alias):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(null===(o=this.newlyAddedPeer)||void 0===o?void 0:o.alias):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}t.selectedIndex{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(F.yh),e.Y36(ce.l),e.Y36(u.qu),e.Y36(X.eX),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(t,i){if(1&t&&(e.Gf(jo,5),e.Gf(es,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.form=o.first),e.iGM(o=e.CRH())&&(i.stepper=o.first)}},decls:56,vars:24,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Lightning Address (pubkey OR pubkey@ip:port)","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","placeholder","Amount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxFlex","30","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType","placeholder","Transaction Type"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","30"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"placeholder","step","required"],["tabindex","6","color","primary","formControlName","spendUnconfirmed","name","spendUnconfirmed"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[3,"value"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Connect to a new peer"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return i.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),e.NdJ("selectionChange",function(s){return i.stepSelectionChanged(s)}),e.TgZ(12,"mat-step",10)(13,"form",11),e.YNc(14,ts,1,1,"ng-template",12),e.TgZ(15,"mat-form-field",1),e._UZ(16,"input",13),e.YNc(17,ns,2,0,"mat-error",14),e.qZA(),e.YNc(18,is,4,2,"div",15),e.TgZ(19,"div",16)(20,"button",17),e.NdJ("click",function(){return i.onConnectPeer()}),e._uU(21),e.qZA()()()(),e.TgZ(22,"mat-step",10)(23,"form",18),e.YNc(24,as,1,1,"ng-template",19),e.TgZ(25,"div",20)(26,"div",21)(27,"mat-form-field",22),e._UZ(28,"input",23),e.TgZ(29,"mat-hint"),e._uU(30),e.qZA(),e.TgZ(31,"span",24),e._uU(32," Sats "),e.qZA(),e.YNc(33,os,2,0,"mat-error",14),e.YNc(34,ss,2,0,"mat-error",14),e.YNc(35,ls,2,1,"mat-error",14),e.qZA(),e.TgZ(36,"div",25)(37,"mat-slide-toggle",26),e._uU(38,"Private Channel"),e.qZA()()(),e.TgZ(39,"div",27)(40,"mat-form-field",28)(41,"mat-select",29),e.YNc(42,rs,2,2,"mat-option",30),e.qZA()(),e.TgZ(43,"mat-form-field",31),e._UZ(44,"input",32),e.YNc(45,cs,2,1,"mat-error",14),e.qZA(),e.TgZ(46,"div",25)(47,"mat-slide-toggle",33),e._uU(48,"Spend Unconfirmed Output"),e.qZA()()()(),e.YNc(49,us,4,2,"div",15),e.TgZ(50,"div",16)(51,"button",34),e.NdJ("click",function(){return i.onOpenChannel()}),e._uU(52),e.qZA()()()()(),e.TgZ(53,"div",35)(54,"button",36),e._uU(55),e.qZA()()()()()()),2&t&&(e.xp6(10),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",i.peerFormGroup)("editable",i.flgEditable),e.xp6(1),e.Q6J("formGroup",i.peerFormGroup),e.xp6(4),e.Q6J("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),e.xp6(1),e.Q6J("ngIf",""!==i.peerConnectionError),e.xp6(3),e.Oqu(""!==i.peerConnectionError?"Retry":"Add Peer"),e.xp6(1),e.Q6J("stepControl",i.channelFormGroup)("editable",i.flgEditable),e.xp6(1),e.Q6J("formGroup",i.channelFormGroup),e.xp6(5),e.Q6J("step",1e3),e.xp6(2),e.hij("Remaining Bal: ",i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0),""),e.xp6(3),e.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),e.xp6(1),e.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),e.xp6(1),e.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),e.xp6(7),e.Q6J("ngForOf",i.transTypes),e.xp6(2),e.Q6J("placeholder","0"===i.channelFormGroup.controls.selTransType.value?"Default":"1"===i.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)")("step",1)("required","0"!==i.channelFormGroup.controls.selTransType.value),e.xp6(1),e.Q6J("ngIf",null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.required),e.xp6(4),e.Q6J("ngIf",""!==i.channelConnectionError),e.xp6(3),e.Oqu(""!==i.channelConnectionError?"Retry":"Open Channel"),e.xp6(2),e.Q6J("mat-dialog-close",!1),e.xp6(1),e.Oqu(null!=i.newlyAddedPeer&&i.newlyAddedPeer.pub_key?"Do It Later":"Close"))},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Z.dn,G.Vq,G.C0,u._Y,u.JL,u.sg,G.VY,T.KE,R.Nt,u.Fj,ee.h,u.JJ,u.u,u.Q7,m.O5,T.TO,M.BN,u.wV,T.bx,T.R9,ge.Rr,P.gD,m.sg,B.ey,Q.ZT],styles:[""]}),n})();function ms(n,a){if(1&n&&(e.TgZ(0,"mat-option",39),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function ds(n,a){1&n&&e._UZ(0,"mat-progress-bar",40)}function _s(n,a){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Alias"),e.qZA())}const we=function(n){return{width:n}};function hs(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,we,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias)}}function gs(n,a){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Public Key"),e.qZA())}function fs(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,we,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.pub_key)}}function Cs(n,a){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Address"),e.qZA())}function xs(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,we,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.address)}}function ys(n,a){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Sync Type"),e.qZA())}function Ts(n,a){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,null==t?null:t.sync_type,"sync","_"))}}function bs(n,a){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Inbound"),e.qZA())}function vs(n,a){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(null!=t&&t.inbound?"Yes":"No")}}function Zs(n,a){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Bytes Sent"),e.qZA())}function As(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.bytes_sent)," ")}}function Ss(n,a){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Bytes Received"),e.qZA())}function ws(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.bytes_recv)," ")}}function Ls(n,a){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Sats Sent"),e.qZA())}function Fs(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.sat_sent)," ")}}function qs(n,a){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Sats Received"),e.qZA())}function Ns(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.sat_recv)," ")}}function ks(n,a){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Ping Time ("),e.TgZ(2,"span"),e._uU(3,"\xb5"),e.qZA(),e._uU(4,"s)"),e.qZA())}function Us(n,a){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.ping_time)," ")}}function Os(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",47)(1,"div",48)(2,"mat-select",49),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",50),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Is(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",51)(1,"div",48)(2,"mat-select",49),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",50),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onPeerClick(r,o)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",50),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onOpenChannel(s)}),e._uU(7,"Open Channel"),e.qZA(),e.TgZ(8,"mat-option",50),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onPeerDetach(s)}),e._uU(9,"Disconnect"),e.qZA()()()()}}function Ps(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No connected peer."),e.qZA())}function Rs(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting peers..."),e.qZA())}function Ms(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Js(n,a){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,Ps,2,0,"p",53),e.YNc(2,Rs,2,0,"p",53),e.YNc(3,Ms,2,1,"p",53),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Ds=function(n){return{"display-none":n}};function Qs(n,a){if(1&n&&e._UZ(0,"tr",54),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Ds,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function Es(n,a){1&n&&e._UZ(0,"tr",55)}function Ys(n,a){1&n&&e._UZ(0,"tr",56)}const Bs=function(){return["all"]},Hs=function(n){return{"error-border":n}},Vs=function(){return["no_peer"]};let Gs=(()=>{class n{constructor(t,i,o,s,r){this.logger=t,this.store=i,this.rtlEffects=o,this.commonService=s,this.camelCaseWithReplace=r,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.IV,sortBy:"alias",sortOrder:l.Pi.DESCENDING},this.availableBalance=0,this.faUsers=b.FVb,this.displayedColumns=[],this.peersData=[],this.peers=new c.by([]),this.information={},this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers,this.peersData.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Peer Information",showQRName:"Public Key",showQRField:t.pub_key,message:[[{key:"pub_key",value:t.pub_key,title:"Public Key",width:100}],[{key:"address",value:t.address,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:40},{key:"inbound",value:t.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:t.ping_time,title:"Ping Time (\xb5s)",width:30,type:l.Gi.NUMBER}],[{key:"sat_sent",value:t.sat_sent,title:"Satoshis Sent",width:50,type:l.Gi.NUMBER},{key:"sat_recv",value:t.sat_recv,title:"Satoshis Received",width:50,type:l.Gi.NUMBER}],[{key:"bytes_sent",value:t.bytes_sent,title:"Bytes Sent",width:50,type:l.Gi.NUMBER},{key:"bytes_recv",value:t.bytes_recv,title:"Bytes Received",width:50,type:l.Gi.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,L.qR)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:ps}}}))}onOpenChannel(t){this.store.dispatch((0,L.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:tt}}}))}onPeerDetach(t){this.store.dispatch((0,L.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,A.z)({payload:{pubkey:t.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,i)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(t).toLowerCase();break;case"sync_type":o=this.camelCaseWithReplace.transform(t.sync_type||"","sync","_").trim().toLowerCase();break;default:o=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===o.indexOf(i):o.includes(i)}}loadPeersTable(t){var i;this.peers=new c.by(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.peers.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(me.V),e.Y36(I.v),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-peers"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Peers")}])],decls:59,vars:17,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pub_key"],["matColumnDef","address"],["matColumnDef","sync_type"],["matColumnDef","inbound"],["matColumnDef","bytes_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","bytes_recv"],["matColumnDef","sat_sent"],["matColumnDef","sat_recv"],["matColumnDef","ping_time"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return i.onConnectPeer()}),e._uU(3,"Add Peer"),e.qZA()(),e.TgZ(4,"div",3)(5,"div",4)(6,"div",5),e._UZ(7,"fa-icon",6),e.TgZ(8,"span",7),e._uU(9,"Connected Peers"),e.qZA()(),e.TgZ(10,"div",8)(11,"mat-form-field",9)(12,"mat-select",10),e.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),e.YNc(13,ms,2,2,"mat-option",11),e.qZA()(),e.TgZ(14,"mat-form-field",9)(15,"input",12),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(16,"div",13),e.YNc(17,ds,1,0,"mat-progress-bar",14),e.TgZ(18,"table",15,16),e.ynx(20,17),e.YNc(21,_s,2,0,"th",18),e.YNc(22,hs,4,4,"td",19),e.BQk(),e.ynx(23,20),e.YNc(24,gs,2,0,"th",18),e.YNc(25,fs,4,4,"td",19),e.BQk(),e.ynx(26,21),e.YNc(27,Cs,2,0,"th",18),e.YNc(28,xs,4,4,"td",19),e.BQk(),e.ynx(29,22),e.YNc(30,ys,2,0,"th",18),e.YNc(31,Ts,3,5,"td",19),e.BQk(),e.ynx(32,23),e.YNc(33,bs,2,0,"th",18),e.YNc(34,vs,2,1,"td",19),e.BQk(),e.ynx(35,24),e.YNc(36,Zs,2,0,"th",25),e.YNc(37,As,4,3,"td",19),e.BQk(),e.ynx(38,26),e.YNc(39,Ss,2,0,"th",25),e.YNc(40,ws,4,3,"td",19),e.BQk(),e.ynx(41,27),e.YNc(42,Ls,2,0,"th",25),e.YNc(43,Fs,4,3,"td",19),e.BQk(),e.ynx(44,28),e.YNc(45,qs,2,0,"th",25),e.YNc(46,Ns,4,3,"td",19),e.BQk(),e.ynx(47,29),e.YNc(48,ks,5,0,"th",25),e.YNc(49,Us,4,3,"td",19),e.BQk(),e.ynx(50,30),e.YNc(51,Os,6,0,"th",31),e.YNc(52,Is,10,0,"td",32),e.BQk(),e.ynx(53,33),e.YNc(54,Js,4,3,"td",34),e.BQk(),e.YNc(55,Qs,1,3,"tr",35),e.YNc(56,Es,1,0,"tr",36),e.YNc(57,Ys,1,0,"tr",37),e.qZA()(),e._UZ(58,"mat-paginator",38),e.qZA()()),2&t&&(e.xp6(7),e.Q6J("icon",i.faUsers),e.xp6(5),e.Q6J("ngModel",i.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(13,Bs).concat(i.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",i.selFilter),e.xp6(2),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.peers)("ngClass",e.VKq(14,Hs,""!==i.errorMessage)),e.xp6(37),e.Q6J("matFooterRowDef",e.DdM(16,Vs)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.yH,d.Wh,k.lW,M.BN,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,P.$L,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[z.D3,m.JJ],styles:[""]}),n})();function zs(n,a){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Open"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numOpenChannels)}}function Ws(n,a){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Pending"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numPendingChannels)}}function $s(n,a){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Closed"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numClosedChannels)}}function Xs(n,a){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Active HTLCs"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numActiveHTLCs)}}let Ks=(()=>{class n{constructor(t,i,o){this.logger=t,this.store=i,this.router=o,this.numOpenChannels=0,this.numPendingChannels=0,this.numClosedChannels=0,this.numActiveHTLCs=0,this.peers=[],this.information={},this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"closed",name:"Closed"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t instanceof v.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(i=>i.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{var i;this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=null===(i=t.channels)||void 0===i?void 0:i.reduce((o,s)=>o+(s.pending_htlcs&&s.pending_htlcs.length>0?s.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(y.P2).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(i=>{var o;(!i.alias||""===i.alias)&&(i.alias=null===(o=i.pub_key)||void 0===o?void 0:o.substring(0,20))}),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,L.qR)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:tt}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channels-tables"]],decls:16,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"my-2","bordered-box"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return i.onOpenChannel()}),e._uU(3,"Open Channel"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-tab-group",4),e.NdJ("selectedIndexChange",function(s){return i.activeLink=s})("selectedTabChange",function(s){return i.onSelectedTabChange(s)}),e.TgZ(6,"mat-tab"),e.YNc(7,zs,2,1,"ng-template",5),e.qZA(),e.TgZ(8,"mat-tab"),e.YNc(9,Ws,2,1,"ng-template",5),e.qZA(),e.TgZ(10,"mat-tab"),e.YNc(11,$s,2,1,"ng-template",5),e.qZA(),e.TgZ(12,"mat-tab"),e.YNc(13,Xs,2,1,"ng-template",5),e.qZA()(),e.TgZ(14,"div",6),e._UZ(15,"router-outlet"),e.qZA()()()),2&t&&(e.xp6(5),e.Q6J("selectedIndex",i.activeLink))},directives:[d.xw,d.yH,d.Wh,k.lW,J.SP,J.uX,J.uD,Ae.k,v.lC],styles:[""]}),n})();var oe=x(7261),de=x(6895);function js(n,a){if(1&n&&(e.TgZ(0,"div")(1,"div",9)(2,"div",14)(3,"h4",11),e._uU(4,"Commit Fee"),e.qZA(),e.TgZ(5,"span",15),e._uU(6),e.ALo(7,"number"),e.qZA()(),e.TgZ(8,"div",14)(9,"h4",11),e._uU(10,"Commit Weight"),e.qZA(),e.TgZ(11,"span",15),e._uU(12),e.ALo(13,"number"),e.qZA()(),e.TgZ(14,"div",14)(15,"h4",11),e._uU(16,"Fee/KW"),e.qZA(),e.TgZ(17,"span",15),e._uU(18),e.ALo(19,"number"),e.qZA()(),e.TgZ(20,"div",14)(21,"h4",11),e._uU(22,"Static Remote Key"),e.qZA(),e.TgZ(23,"span",15),e._uU(24),e.qZA()()(),e._UZ(25,"mat-divider",13),e.TgZ(26,"div",9)(27,"div",14)(28,"h4",11),e._uU(29),e.qZA(),e.TgZ(30,"span",15),e._uU(31),e.ALo(32,"number"),e.qZA()(),e.TgZ(33,"div",14)(34,"h4",11),e._uU(35),e.qZA(),e.TgZ(36,"span",15),e._uU(37),e.ALo(38,"number"),e.qZA()(),e.TgZ(39,"div",14)(40,"h4",11),e._uU(41,"Unsettled Balance"),e.qZA(),e.TgZ(42,"span",15),e._uU(43),e.ALo(44,"number"),e.qZA()(),e.TgZ(45,"div",14)(46,"h4",11),e._uU(47,"CSV Delay"),e.qZA(),e.TgZ(48,"span",15),e._uU(49),e.ALo(50,"number"),e.qZA()()(),e._UZ(51,"mat-divider",13),e.TgZ(52,"div",9)(53,"div",14)(54,"h4",11),e._uU(55,"Local Reserve (Sats)"),e.qZA(),e.TgZ(56,"span",15),e._uU(57),e.ALo(58,"number"),e.qZA()(),e.TgZ(59,"div",14)(60,"h4",11),e._uU(61,"Remote Reserve (Sats)"),e.qZA(),e.TgZ(62,"span",15),e._uU(63),e.ALo(64,"number"),e.qZA()(),e.TgZ(65,"div",14)(66,"h4",11),e._uU(67,"Lifetime (Seconds)"),e.qZA(),e.TgZ(68,"span",15),e._uU(69),e.ALo(70,"number"),e.qZA()(),e.TgZ(71,"div",14)(72,"h4",11),e._uU(73,"Pending HTLCs"),e.qZA(),e.TgZ(74,"span",15),e._uU(75),e.ALo(76,"number"),e.qZA()()(),e._UZ(77,"mat-divider",13),e.qZA()),2&n){const t=e.oxw();e.xp6(6),e.Oqu(e.lcZ(7,17,t.channel.commit_fee)),e.xp6(6),e.Oqu(e.lcZ(13,19,t.channel.commit_weight)),e.xp6(6),e.Oqu(e.lcZ(19,21,t.channel.fee_per_kw)),e.xp6(6),e.Oqu(t.channel.static_remote_key?"Yes":"No"),e.xp6(1),e.Q6J("inset",!0),e.xp6(4),e.Oqu(t.screenSize===t.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.xp6(2),e.Oqu(e.lcZ(32,23,t.channel.total_satoshis_sent)),e.xp6(4),e.Oqu(t.screenSize===t.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.xp6(2),e.Oqu(e.lcZ(38,25,t.channel.total_satoshis_received)),e.xp6(6),e.Oqu(e.lcZ(44,27,t.channel.unsettled_balance)),e.xp6(6),e.Oqu(e.lcZ(50,29,t.channel.csv_delay)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.lcZ(58,31,t.channel.local_chan_reserve_sat)),e.xp6(6),e.Oqu(e.lcZ(64,33,t.channel.remote_chan_reserve_sat)),e.xp6(6),e.Oqu(e.lcZ(70,35,t.channel.lifetime)),e.xp6(6),e.Oqu(e.lcZ(76,37,null==t.channel||null==t.channel.pending_htlcs?null:t.channel.pending_htlcs.length)),e.xp6(2),e.Q6J("inset",!0)}}function el(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Show Advanced"),e.qZA())}function tl(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Hide Advanced"),e.qZA())}function nl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",23),e.NdJ("copied",function(o){return e.CHM(t),e.oxw().onCopyChanID(o)}),e._uU(1,"Copy Channel ID"),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("payload",t.channel.chan_id)}}function il(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",24),e.NdJ("click",function(){return e.CHM(t),e.oxw().onClose()}),e._uU(1,"OK"),e.qZA()}}const al=function(n){return{"xs-scroll-y":n}};let Le=(()=>{class n{constructor(t,i,o,s,r){this.dialogRef=t,this.data=i,this.logger=o,this.commonService=s,this.snackBar=r,this.faReceipt=b.dLy,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(t){this.snackBar.open("Channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(I.v),e.Y36(oe.ux))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-information"]],decls:94,vars:36,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(t,i){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6,"Channel Information"),e.qZA()(),e.TgZ(7,"button",6),e.NdJ("click",function(){return i.onClose()}),e._uU(8,"X"),e.qZA()(),e.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),e._uU(14,"Channel ID"),e.qZA(),e.TgZ(15,"span",12),e._uU(16),e.qZA()(),e.TgZ(17,"div",10)(18,"h4",11),e._uU(19,"Peer Alias"),e.qZA(),e.TgZ(20,"span",12),e._uU(21),e.qZA()()(),e._UZ(22,"mat-divider",13),e.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),e._uU(26,"Channel Point"),e.qZA(),e.TgZ(27,"span",12),e._uU(28),e.qZA()()(),e._UZ(29,"mat-divider",13),e.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),e._uU(33,"Peer Public Key"),e.qZA(),e.TgZ(34,"span",12),e._uU(35),e.qZA()()(),e._UZ(36,"mat-divider",13),e.TgZ(37,"div",9)(38,"div",14)(39,"h4",11),e._uU(40,"Local Balance"),e.qZA(),e.TgZ(41,"span",15),e._uU(42),e.ALo(43,"number"),e.qZA()(),e.TgZ(44,"div",14)(45,"h4",11),e._uU(46,"Remote Balance"),e.qZA(),e.TgZ(47,"span",15),e._uU(48),e.ALo(49,"number"),e.qZA()(),e.TgZ(50,"div",14)(51,"h4",11),e._uU(52,"Capacity"),e.qZA(),e.TgZ(53,"span",15),e._uU(54),e.ALo(55,"number"),e.qZA()(),e.TgZ(56,"div",14)(57,"h4",11),e._uU(58,"Uptime (Seconds)"),e.qZA(),e.TgZ(59,"span",15),e._uU(60),e.ALo(61,"number"),e.qZA()()(),e._UZ(62,"mat-divider",13),e.TgZ(63,"div",9)(64,"div",14)(65,"h4",11),e._uU(66,"Active"),e.qZA(),e.TgZ(67,"span",15),e._uU(68),e.qZA()(),e.TgZ(69,"div",14)(70,"h4",11),e._uU(71,"Private"),e.qZA(),e.TgZ(72,"span",15),e._uU(73),e.qZA()(),e.TgZ(74,"div",14)(75,"h4",11),e._uU(76,"Initiator"),e.qZA(),e.TgZ(77,"span",15),e._uU(78),e.qZA()(),e.TgZ(79,"div",14)(80,"h4",11),e._uU(81,"Number of Updates"),e.qZA(),e.TgZ(82,"span",15),e._uU(83),e.ALo(84,"number"),e.qZA()()(),e._UZ(85,"mat-divider",13),e.YNc(86,js,78,39,"div",16),e.TgZ(87,"div",17)(88,"button",18),e.NdJ("click",function(){return i.onShowAdvanced()}),e.YNc(89,el,2,0,"p",19),e.YNc(90,tl,2,0,"ng-template",null,20,e.W1O),e.qZA(),e.YNc(92,nl,2,1,"button",21),e.YNc(93,il,2,0,"button",22),e.qZA()()()()()),2&t){const o=e.MAs(91);e.xp6(4),e.Q6J("icon",i.faReceipt),e.xp6(5),e.Q6J("ngClass",e.VKq(34,al,i.screenSize===i.screenSizeEnum.XS)),e.xp6(7),e.Oqu(i.channel.chan_id),e.xp6(5),e.Oqu(i.channel.remote_alias),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(i.channel.channel_point),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(i.channel.remote_pubkey),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.lcZ(43,24,i.channel.local_balance)),e.xp6(6),e.Oqu(e.lcZ(49,26,i.channel.remote_balance)),e.xp6(6),e.Oqu(e.lcZ(55,28,i.channel.capacity)),e.xp6(6),e.Oqu(e.lcZ(61,30,i.channel.uptime)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(i.channel.active?"Yes":"No"),e.xp6(5),e.Oqu(i.channel.private?"Yes":"No"),e.xp6(5),e.Oqu(i.channel.initiator?"Yes":"No"),e.xp6(5),e.Oqu(e.lcZ(84,32,i.channel.num_updates)),e.xp6(2),e.Q6J("inset",!0),e.xp6(1),e.Q6J("ngIf",i.showAdvanced),e.xp6(3),e.Q6J("ngIf",!i.showAdvanced)("ngIfElse",o),e.xp6(3),e.Q6J("ngIf",i.showCopy),e.xp6(1),e.Q6J("ngIf",!i.showCopy)}},directives:[d.xw,d.Wh,d.yH,Z.dk,M.BN,k.lW,Z.dn,m.mk,q.oO,j.d,m.O5,ee.h,de.y],pipes:[m.JJ],styles:[""]}),n})();var Fe=x(9646),qe=x(7772),ol=x(113);function sl(n,a){1&n&&e.GkF(0)}const _e=function(n,a){return{"small-svg":n,"large-svg":a}};function ll(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),e.qZA(),e.kcU(),e.TgZ(41,"div",47)(42,"mat-card-title"),e._uU(43,"Circular rebalancing explained."),e.qZA()(),e.TgZ(44,"div",48)(45,"mat-card-subtitle",49),e._uU(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,_e,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function rl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",50),e._UZ(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55)(7,"path",56)(8,"path",57)(9,"path",58)(10,"path",59)(11,"path",60)(12,"path",61)(13,"path",62)(14,"path",63)(15,"path",64)(16,"path",65)(17,"path",66)(18,"path",67)(19,"path",68)(20,"path",69)(21,"path",70)(22,"path",71)(23,"path",72)(24,"path",73)(25,"path",74)(26,"path",75)(27,"path",76)(28,"path",77)(29,"path",78)(30,"path",79)(31,"path",80)(32,"path",81)(33,"path",51)(34,"path",52)(35,"path",53)(36,"path",54)(37,"path",55)(38,"path",56)(39,"path",57)(40,"path",58)(41,"path",59)(42,"path",82)(43,"path",83)(44,"path",62)(45,"path",84)(46,"path",85)(47,"path",86)(48,"path",66)(49,"path",67)(50,"path",68)(51,"path",69)(52,"path",70)(53,"path",71)(54,"path",72)(55,"path",73)(56,"path",74)(57,"path",75)(58,"path",76)(59,"path",77)(60,"path",78)(61,"path",79)(62,"path",87)(63,"path",81)(64,"path",88),e.TgZ(65,"defs")(66,"linearGradient",89),e._UZ(67,"stop",90)(68,"stop",91)(69,"stop",92),e.qZA(),e.TgZ(70,"linearGradient",93),e._UZ(71,"stop",90)(72,"stop",91)(73,"stop",92),e.qZA(),e.TgZ(74,"linearGradient",94),e._UZ(75,"stop",90)(76,"stop",91)(77,"stop",92),e.qZA(),e.TgZ(78,"linearGradient",95),e._UZ(79,"stop",90)(80,"stop",91)(81,"stop",92),e.qZA(),e.TgZ(82,"linearGradient",96),e._UZ(83,"stop",90)(84,"stop",91)(85,"stop",92),e.qZA(),e.TgZ(86,"linearGradient",97),e._UZ(87,"stop",90)(88,"stop",91)(89,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(90,"div",47)(91,"mat-card-title"),e._uU(92,"Step 1: Unbalanced channel"),e.qZA()(),e.TgZ(93,"div",48)(94,"mat-card-subtitle",49),e._uU(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,_e,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function cl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",98),e._UZ(2,"path",99)(3,"path",100)(4,"path",101)(5,"path",102)(6,"path",103)(7,"path",104)(8,"path",105)(9,"path",106)(10,"path",107)(11,"path",108)(12,"path",109)(13,"path",110)(14,"path",111)(15,"path",112)(16,"path",113)(17,"path",51)(18,"path",114)(19,"path",115)(20,"path",116)(21,"path",117)(22,"path",118)(23,"path",119)(24,"path",120)(25,"path",121)(26,"path",82)(27,"path",83)(28,"path",122)(29,"path",123)(30,"path",124)(31,"path",125)(32,"path",66)(33,"path",126)(34,"path",127)(35,"path",128)(36,"path",129)(37,"path",130)(38,"path",131)(39,"path",73)(40,"path",74)(41,"path",132)(42,"path",76)(43,"path",77)(44,"path",78)(45,"path",79)(46,"path",133)(47,"path",134)(48,"path",135),e.TgZ(49,"defs")(50,"linearGradient",136),e._UZ(51,"stop",90)(52,"stop",91)(53,"stop",92),e.qZA(),e.TgZ(54,"linearGradient",137),e._UZ(55,"stop",90)(56,"stop",91)(57,"stop",92),e.qZA(),e.TgZ(58,"linearGradient",138),e._UZ(59,"stop",90)(60,"stop",91)(61,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(62,"div",47)(63,"mat-card-title"),e._uU(64,"Step 2: Invoice/Payment"),e.qZA()(),e.TgZ(65,"div",48)(66,"mat-card-subtitle",49),e._uU(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,_e,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function ul(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",139),e._UZ(2,"path",140)(3,"path",141)(4,"path",142)(5,"path",143)(6,"path",144)(7,"path",145)(8,"path",146)(9,"path",147)(10,"path",148)(11,"path",149)(12,"path",150)(13,"path",151)(14,"path",152)(15,"path",153)(16,"path",154)(17,"path",155)(18,"path",156)(19,"path",157)(20,"path",158)(21,"path",159)(22,"path",160)(23,"path",161)(24,"path",162)(25,"path",163)(26,"path",162)(27,"path",164)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",169)(33,"path",170)(34,"path",171)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",177)(41,"path",178),e.TgZ(42,"defs")(43,"linearGradient",179),e._UZ(44,"stop",90)(45,"stop",91)(46,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(47,"div",47)(48,"mat-card-title"),e._uU(49,"Step 3: Rebalance amount"),e.qZA()(),e.TgZ(50,"div",48)(51,"mat-card-subtitle",49),e._uU(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,_e,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function pl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",139),e._UZ(2,"path",180)(3,"path",142)(4,"path",181)(5,"path",144)(6,"path",145)(7,"path",182)(8,"path",147)(9,"path",183)(10,"path",184)(11,"path",185)(12,"path",186)(13,"path",187)(14,"path",188)(15,"path",189)(16,"path",190)(17,"path",191)(18,"path",157)(19,"path",192)(20,"path",193)(21,"path",178)(22,"path",159)(23,"path",160)(24,"path",194)(25,"path",162)(26,"path",163)(27,"path",162)(28,"path",164)(29,"path",165)(30,"path",166)(31,"path",167)(32,"path",195)(33,"path",169)(34,"path",196)(35,"path",171)(36,"path",172)(37,"path",173)(38,"path",174)(39,"path",175)(40,"path",197),e.TgZ(41,"defs")(42,"linearGradient",198),e._UZ(43,"stop",90)(44,"stop",91)(45,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(46,"div",47)(47,"mat-card-title"),e._uU(48,"Rebalance successful!"),e.qZA()(),e.TgZ(49,"div",48)(50,"mat-card-subtitle",49),e._uU(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,_e,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let ml=(()=>{class n{constructor(t){this.commonService=t,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.vpe,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(t){2===t.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===t.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z","fill","#444053"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z","fill","#D0D2D5"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z","fill","#3F3D56"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z","fill","#D0D2D5"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z","fill","#D0D2D5"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","#444053"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z","fill","#444053"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z","fill","#6C63FF"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z","fill","#6C63FF"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z","fill","#6C63FF"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z","fill","#6C63FF"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z","fill","#6C63FF"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z","fill","#6C63FF"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z","fill","#6C63FF"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z","fill","#6C63FF"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z","fill","#6C63FF"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z","fill","#6C63FF"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z","fill","#6C63FF"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z","fill","#6C63FF"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z","fill","#6C63FF"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z","fill","#6C63FF"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z","fill","#6C63FF"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z","fill","#E6E6E6"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z","fill","#C4B7FF"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z","fill","#6C63FF"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z","fill","#C4B7FF"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z","fill","#6C63FF"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z","fill","#C4B7FF"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z","fill","#5E4EA5"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z","fill","#5E4EA5"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z","fill","#5E4EA5"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z","fill","#5E4EA5"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z","fill","#4A4A4A"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z","fill","#CBCBCB"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z","fill","#F2F2F2"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z","fill","#3F3D56"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z","fill","#4A4A4A"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z","fill","#4A4A4A"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z","fill","#4A4A4A"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z","fill","#4A4A4A"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z","fill","#4A4A4A"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z","fill","#4A4A4A"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z","fill","#F2F2F2"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z","fill","#4A4A4A"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z","fill","#4A4A4A"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z","fill","#5B5B5B"],["d","M42 75H9V91H42V75Z","fill","#5E4EA5"],["d","M42 42H9V58H42V42Z","fill","#5E4EA5"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z","fill","#4A4A4A"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z","fill","#F1F1F1"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z","fill","#4A4A4A"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z","fill","#D0CDE1"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z","fill","#4A4A4A"],["d","M265 57.3624H357.392V120.307H265V57.3624Z","fill","#CBCBCB"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z","fill","#4A4A4A"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z","fill","#4A4A4A"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z","fill","#4A4A4A"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z","fill","#4A4A4A"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z","fill","#4A4A4A"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z","fill","#4A4A4A"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z","fill","#4A4A4A"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z","fill","#F2F2F2"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z","fill","#4A4A4A"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z","fill","#5B5B5B"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z","fill","#C4B7FF"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z","fill","#6C63FF"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z","fill","#C4B7FF"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z","fill","#6C63FF"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z","fill","#C4B7FF"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z","fill","#5E4EA5"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z","fill","#4A4A4A"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z","fill","#CBCBCB"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z","fill","#F2F2F2"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z","fill","#3F3D56"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z","fill","#4A4A4A"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z","fill","#4A4A4A"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z","fill","#4A4A4A"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z","fill","#5B5B5B"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke","#C4B7FF","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke","#5E4EA5","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7"],["d","M122.399 37H32.25V137.616H122.399V37Z","fill","#E6E6E6"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z","fill","#C4B7FF"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z","fill","#6C63FF"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z","fill","#C4B7FF"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z","fill","#6C63FF"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z","fill","#C4B7FF"],["d","M74.5 112H40.5V128H74.5V112Z","fill","#5E4EA5"],["d","M74.5 79H40.5V95H74.5V79Z","fill","#5E4EA5"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z","fill","#5E4EA5"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z","fill","#5E4EA5"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z","fill","#5E4EA5"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z","fill","#5E4EA5"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z","fill","#5E4EA5"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z","fill","#C4B7FF"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z","fill","#C4B7FF"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z","fill","#F2F2F2"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z","fill","#5B5B5B"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z","fill","#F2F2F2"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z","fill","#CBCBCB"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z","fill","#595959"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z","fill","#F2F2F2"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z","fill","#CBCBCB"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z","fill","#595959"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z","fill","#595959"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z","fill","#CBCBCB"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z","fill","#CBCBCB"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z","fill","#CBCBCB"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z","fill","#595959"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z","fill","#5E4EA5"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke","#5E4EA5","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z","fill","#6C63FF"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z","fill","#C4B7FF"],["d","M76 112H41V128H76V112Z","fill","#5E4EA5"],["d","M70 79H41V95H70V79Z","fill","#5E4EA5"],["d","M70 47H41V63H70V47Z","fill","#5E4EA5"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z","fill","#5E4EA5"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z","fill","#5E4EA5"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z","fill","#5E4EA5"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z","fill","#CBCBCB"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z","fill","#595959"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(t,i){if(1&t&&(e.YNc(0,sl,1,0,"ng-container",0),e.YNc(1,ll,47,5,"ng-template",null,1,e.W1O),e.YNc(3,rl,96,5,"ng-template",null,2,e.W1O),e.YNc(5,cl,68,5,"ng-template",null,3,e.W1O),e.YNc(7,ul,53,5,"ng-template",null,4,e.W1O),e.YNc(9,pl,52,5,"ng-template",null,5,e.W1O)),2&t){const o=e.MAs(2),s=e.MAs(4),r=e.MAs(6),_=e.MAs(8),g=e.MAs(10);e.Q6J("ngTemplateOutlet",1===i.stepNumber?o:2===i.stepNumber?s:3===i.stepNumber?r:4===i.stepNumber?_:g)}},directives:[m.tP,d.xw,d.yH,d.Wh,m.mk,q.oO,Z.n5,Z.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[ol.l]}}),n})();const dl=["stepper"];function _l(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.inputFormLabel)}}function hl(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function gl(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount must be a positive number."),e.qZA())}function fl(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.hij("Amount must be less than or equal to ",null==t.selChannel?null:t.selChannel.local_balance,".")}}function Cl(n,a){if(1&n&&(e.TgZ(0,"mat-option",55),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.AsE("",t.remote_alias," - ",t.chan_id,"")}}function xl(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Receive from Peer is required."),e.qZA())}function yl(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Receive from Peer not found in the list."),e.qZA())}function Tl(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.feeFormLabel)}}function bl(n,a){if(1&n&&(e.TgZ(0,"mat-option",55),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",t.name," ")}}function vl(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.hij("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," is required.")}}function Zl(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.hij("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," must be a positive number.")}}function Al(n,a){1&n&&e._uU(0,"Invoice/Payment")}function Sl(n,a){1&n&&(e.TgZ(0,"mat-icon",56),e._uU(1,"check"),e.qZA())}function wl(n,a){1&n&&e._UZ(0,"mat-progress-bar",57)}function Ll(n,a){if(1&n&&(e.TgZ(0,"mat-icon",56),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(null!=t.paymentStatus&&t.paymentStatus.error?"close":"check")}}function Fl(n,a){1&n&&e._UZ(0,"div",14)}function ql(n,a){1&n&&e._UZ(0,"mat-progress-bar",57)}function Nl(n,a){if(1&n&&(e.TgZ(0,"h4",58),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.paymentStatus&&t.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function kl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",59),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onRestart()}),e._uU(1,"Start Again"),e.qZA()}}function Ul(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e._uU(5),e.qZA()(),e.TgZ(6,"div",10)(7,"button",11),e.NdJ("click",function(){return e.CHM(t),e.oxw().showInfo()}),e._uU(8,"?"),e.qZA(),e.TgZ(9,"button",12),e.NdJ("click",function(){return e.CHM(t),e.oxw().onClose()}),e._uU(10,"X"),e.qZA()()(),e.TgZ(11,"mat-card-content",13)(12,"div",14)(13,"div",15)(14,"div",16),e._UZ(15,"fa-icon",17),e.TgZ(16,"span"),e._uU(17,"Circular Rebalance is a payment you make to *yourselves* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),e.qZA()()(),e.TgZ(18,"div",18)(19,"p",19)(20,"strong"),e._uU(21,"Channel Peer:\xa0"),e.qZA(),e._uU(22),e.ALo(23,"titlecase"),e.qZA(),e.TgZ(24,"p",19)(25,"strong"),e._uU(26,"Channel ID:\xa0"),e.qZA(),e._uU(27),e.qZA()(),e.TgZ(28,"mat-vertical-stepper",20,21),e.NdJ("selectionChange",function(o){return e.CHM(t),e.oxw().stepSelectionChanged(o)}),e.TgZ(30,"mat-step",22)(31,"form",23),e.YNc(32,_l,1,1,"ng-template",24),e.TgZ(33,"div",25)(34,"mat-form-field",26),e._UZ(35,"input",27),e.TgZ(36,"mat-hint"),e._uU(37),e.qZA(),e.TgZ(38,"span",28),e._uU(39,"Sats"),e.qZA(),e.YNc(40,hl,2,0,"mat-error",29),e.YNc(41,gl,2,0,"mat-error",29),e.YNc(42,fl,2,1,"mat-error",29),e.qZA(),e.TgZ(43,"mat-form-field",30)(44,"input",31),e.NdJ("change",function(){return e.CHM(t),e.oxw().onSelectedPeerChanged()}),e.qZA(),e.TgZ(45,"mat-autocomplete",32,33),e.NdJ("optionSelected",function(){return e.CHM(t),e.oxw().onSelectedPeerChanged()}),e.YNc(47,Cl,2,3,"mat-option",34),e.ALo(48,"async"),e.qZA(),e.YNc(49,xl,2,0,"mat-error",29),e.YNc(50,yl,2,0,"mat-error",29),e.qZA()(),e.TgZ(51,"div",35)(52,"button",36),e.NdJ("click",function(){return e.CHM(t),e.oxw().onSelectFee()}),e._uU(53,"Select Fee"),e.qZA()()()(),e.TgZ(54,"mat-step",22)(55,"form",23),e.YNc(56,Tl,1,1,"ng-template",37),e.TgZ(57,"div",25)(58,"div",25)(59,"mat-form-field",30)(60,"mat-select",38),e.YNc(61,bl,2,2,"mat-option",34),e.qZA()(),e.TgZ(62,"mat-form-field",26),e._UZ(63,"input",39),e.YNc(64,vl,2,1,"mat-error",29),e.YNc(65,Zl,2,1,"mat-error",29),e.qZA()()(),e.TgZ(66,"div",35)(67,"button",40),e.NdJ("click",function(){return e.CHM(t),e.oxw().onRebalance()}),e._uU(68,"Rebalance"),e.qZA()()()(),e.TgZ(69,"mat-step",41)(70,"form",23),e.YNc(71,Al,1,0,"ng-template",24),e.TgZ(72,"div",42)(73,"mat-expansion-panel",43)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",44),e._uU(77),e.YNc(78,Sl,2,0,"mat-icon",45),e.qZA()()(),e.TgZ(79,"div",14)(80,"span",46),e._uU(81),e.qZA()()(),e.YNc(82,wl,1,0,"mat-progress-bar",47),e.TgZ(83,"mat-expansion-panel",48)(84,"mat-expansion-panel-header")(85,"mat-panel-title")(86,"span",44),e._uU(87),e.YNc(88,Ll,2,1,"mat-icon",45),e.qZA()()(),e.YNc(89,Fl,1,0,"div",49),e.qZA(),e.YNc(90,ql,1,0,"mat-progress-bar",47),e.qZA(),e.YNc(91,Nl,2,1,"h4",50),e.TgZ(92,"div",51),e.YNc(93,kl,2,0,"button",52),e.qZA()()()(),e.TgZ(94,"div",53)(95,"button",54),e._uU(96,"Close"),e.qZA()()()()()()}if(2&n){const t=e.MAs(46),i=e.oxw(),o=e.MAs(2);e.Q6J("@opacityAnimation",void 0),e.xp6(3),e.Q6J("fxFlex",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM?"83":"91"),e.xp6(2),e.Oqu(i.channel?"Channel "+i.loopDirectionCaption:i.loopDirectionCaption),e.xp6(1),e.Q6J("fxFlex",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM?"17":"9"),e.xp6(9),e.Q6J("icon",i.faInfoCircle),e.xp6(7),e.Oqu(e.lcZ(23,45,i.selChannel.remote_alias)),e.xp6(5),e.Oqu(i.selChannel.chan_id),e.xp6(1),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",i.inputFormGroup)("editable",i.flgEditable),e.xp6(1),e.Q6J("formGroup",i.inputFormGroup),e.xp6(4),e.Q6J("step",100),e.xp6(2),e.AsE("(Local Bal: ",null==i.selChannel?null:i.selChannel.local_balance,", Remaining: ",(null==i.selChannel?null:i.selChannel.local_balance)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.xp6(3),e.Q6J("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),e.xp6(1),e.Q6J("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),e.xp6(1),e.Q6J("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),e.xp6(2),e.Q6J("matAutocomplete",t),e.xp6(1),e.Q6J("displayWith",i.displayFn),e.xp6(2),e.Q6J("ngForOf",e.lcZ(48,47,i.filteredActiveChannels)),e.xp6(2),e.Q6J("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),e.xp6(1),e.Q6J("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.xp6(4),e.Q6J("stepControl",i.feeFormGroup)("editable",i.flgEditable),e.xp6(1),e.Q6J("formGroup",i.feeFormGroup),e.xp6(6),e.Q6J("ngForOf",i.feeLimitTypes),e.xp6(2),e.s9C("placeholder",i.feeFormGroup.controls.selFeeLimitType.value?i.feeFormGroup.controls.selFeeLimitType.value.placeholder:i.feeLimitTypes[0].placeholder),e.Q6J("step",1),e.xp6(1),e.Q6J("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.required),e.xp6(1),e.Q6J("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.min),e.xp6(4),e.Q6J("stepControl",i.statusFormGroup),e.xp6(1),e.Q6J("formGroup",i.statusFormGroup),e.xp6(7),e.Oqu(i.flgInvoiceGenerated?i.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.xp6(1),e.Q6J("ngIf",i.flgInvoiceGenerated),e.xp6(3),e.Oqu(i.paymentRequest),e.xp6(1),e.Q6J("ngIf",!i.flgInvoiceGenerated),e.xp6(1),e.Q6J("expanded",(i.flgInvoiceGenerated||i.flgReusingInvoice)&&i.flgPaymentSent),e.xp6(4),e.Oqu(i.flgInvoiceGenerated||i.flgPaymentSent?i.flgPaymentSent?null!=i.paymentStatus&&i.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.xp6(1),e.Q6J("ngIf",i.flgPaymentSent),e.xp6(1),e.Q6J("ngIf",!i.paymentStatus)("ngIfElse",o),e.xp6(1),e.Q6J("ngIf",i.flgInvoiceGenerated&&!i.flgPaymentSent),e.xp6(1),e.Q6J("ngIf",i.flgInvoiceGenerated&&i.flgPaymentSent),e.xp6(2),e.Q6J("ngIf",i.paymentStatus&&i.paymentStatus.error),e.xp6(2),e.Q6J("mat-dialog-close",!1)}}function Ol(n,a){1&n&&e.GkF(0)}function Il(n,a){if(1&n&&e.YNc(0,Ol,1,0,"ng-container",60),2&n){const t=e.oxw(),i=e.MAs(4),o=e.MAs(6);e.Q6J("ngTemplateOutlet",t.paymentStatus.error?i:o)}}function Pl(n,a){if(1&n&&(e.TgZ(0,"div",14)(1,"span",46),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Error: ",t.paymentStatus.error,"")}}function Rl(n,a){if(1&n&&(e.TgZ(0,"div",14)(1,"div",61)(2,"div",6)(3,"h4",62),e._uU(4,"Payment Hash"),e.qZA(),e.TgZ(5,"span",46),e._uU(6),e.qZA()()(),e._UZ(7,"mat-divider",63),e.TgZ(8,"div",61)(9,"div",64)(10,"h4",62),e._uU(11),e.qZA(),e.TgZ(12,"span",46),e._uU(13),e.qZA()(),e.TgZ(14,"div",64)(15,"h4",62),e._uU(16,"Number of Hops"),e.qZA(),e.TgZ(17,"span",46),e._uU(18),e.qZA()()()()),2&n){const t=e.oxw();e.xp6(6),e.Oqu(t.paymentStatus.payment_hash),e.xp6(5),e.hij("Total Fees (",t.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.xp6(2),e.Oqu(t.paymentStatus.payment_route.total_fees_msat?t.paymentStatus.payment_route.total_fees_msat:t.paymentStatus.payment_route.total_fees?t.paymentStatus.payment_route.total_fees:0),e.xp6(5),e.Oqu(t.paymentStatus&&t.paymentStatus.payment_route&&t.paymentStatus.payment_route.hops&&t.paymentStatus.payment_route.hops.length?t.paymentStatus.payment_route.hops.length:0)}}const Ml=function(n,a){return{"dot-primary":n,"dot-primary-lighter":a}};function Jl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"span",81),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onStepChanged(s)}),e._UZ(1,"p",82),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngClass",e.WLB(1,Ml,i.stepNumber===t,i.stepNumber!==t))}}function Dl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",83),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onStepChanged(4)}),e._uU(1,"Back"),e.qZA()}}function Ql(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",84),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.flgShowInfo=!1,o.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function El(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",85),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.flgShowInfo=!1,o.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function Yl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",86),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.onStepChanged(o.stepNumber-1)}),e._uU(1,"Back"),e.qZA()}}function Bl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",87),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.onStepChanged(o.stepNumber+1)}),e._uU(1,"Next"),e.qZA()}}const Hl=function(){return[1,2,3,4,5]};function Vl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e._UZ(4,"span",9),e.qZA(),e.TgZ(5,"div",69)(6,"button",70),e.NdJ("click",function(){e.CHM(t);const o=e.oxw();return o.flgShowInfo=!1,o.stepNumber=1}),e._uU(7,"X"),e.qZA()()(),e.TgZ(8,"mat-card-content",71)(9,"rtl-channel-rebalance-infographics",72),e.NdJ("stepNumberChange",function(o){return e.CHM(t),e.oxw().stepNumber=o}),e.qZA()(),e.TgZ(10,"div",73),e.YNc(11,Jl,2,4,"span",74),e.qZA(),e.TgZ(12,"div",75),e.YNc(13,Dl,2,0,"button",76),e.YNc(14,Ql,2,0,"button",77),e.YNc(15,El,2,0,"button",78),e.YNc(16,Yl,2,0,"button",79),e.YNc(17,Bl,2,0,"button",80),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@opacityAnimation",void 0),e.xp6(9),e.Q6J("stepNumber",t.stepNumber)("animationDirection",t.animationDirection),e.xp6(2),e.Q6J("ngForOf",e.DdM(9,Hl)),e.xp6(2),e.Q6J("ngIf",5===t.stepNumber),e.xp6(1),e.Q6J("ngIf",5===t.stepNumber),e.xp6(1),e.Q6J("ngIf",t.stepNumber<5),e.xp6(1),e.Q6J("ngIf",t.stepNumber>1&&t.stepNumber<5),e.xp6(1),e.Q6J("ngIf",t.stepNumber<5)}}let Gl=(()=>{class n{constructor(t,i,o,s,r,_,g,f){this.dialogRef=t,this.data=i,this.logger=o,this.store=s,this.actions=r,this.formBuilder=_,this.decimalPipe=g,this.commonService=f,this.faInfoCircle=b.sqG,this.invoices={},this.selChannel={},this.activeChannels=[],this.feeLimitTypes=[],this.queryRoute={},this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1,this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=l.cu,this.animationDirection="forward",this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){var t,i,o,s,r;this.screenSize=this.commonService.getScreenSize();let _="",g="";this.selChannel=(null===(t=this.data.message)||void 0===t?void 0:t.selChannel)||{},this.activeChannels=(null===(o=null===(i=this.data.message)||void 0===i?void 0:i.channels)||void 0===o?void 0:o.filter(f=>f.active&&f.chan_id!==this.selChannel.chan_id&&f.remote_balance&&f.remote_balance>0))||[],this.activeChannels=this.activeChannels.sort((f,w)=>(_=f.remote_alias?f.remote_alias.toLowerCase():f.chan_id?f.chan_id.toLowerCase():"",g=w.remote_alias?w.remote_alias.toLowerCase():f.chan_id?f.chan_id.toLowerCase():"",_g?1:0)),l.Vc.forEach((f,w)=>{w>0&&this.feeLimitTypes.push(f)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[u.kI.required]],rebalanceAmount:["",[u.kI.required,u.kI.min(1),u.kI.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,u.kI.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],u.kI.required],feeLimit:["",[u.kI.required,u.kI.min(0)]],hiddenFeeLimit:["",[u.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.Ef).pipe((0,h.R)(this.unSubs[0])).subscribe(f=>{this.invoices=f.listInvoices,this.logger.info(f)}),this.actions.pipe((0,h.R)(this.unSubs[1]),(0,Y.h)(f=>f.type===l.uR.SET_QUERY_ROUTES_LND||f.type===l.uR.SEND_PAYMENT_STATUS_LND||f.type===l.uR.NEWLY_SAVED_INVOICE_LND)).subscribe(f=>{f.type===l.uR.SET_QUERY_ROUTES_LND&&(this.queryRoute=f.payload),f.type===l.uR.SEND_PAYMENT_STATUS_LND&&(this.logger.info(f.payload),this.flgPaymentSent=!0,this.paymentStatus=f.payload,this.flgEditable=!0),f.type===l.uR.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(f.payload),this.flgInvoiceGenerated=!0,this.sendPayment(f.payload.paymentRequest))}),null===(s=this.inputFormGroup.get("rebalanceAmount"))||void 0===s||s.valueChanges.pipe((0,h.R)(this.unSubs[2]),(0,Se.O)(0)).subscribe(f=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Fe.of)(f?this.filterActiveChannels():this.activeChannels.slice())}),null===(r=this.inputFormGroup.get("selRebalancePeer"))||void 0===r||r.valueChanges.pipe((0,h.R)(this.unSubs[3]),(0,Se.O)("")).subscribe(f=>{"string"==typeof f&&(this.filteredActiveChannels=(0,Fe.of)(this.filterActiveChannels()))})}onSelectFee(){return this.inputFormGroup.controls.selRebalancePeer.value&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value&&this.onSelectedPeerChanged(),this.inputFormGroup.controls.selRebalancePeer.value&&"string"!=typeof this.inputFormGroup.controls.selRebalancePeer.value?!this.inputFormGroup.controls.rebalanceAmount.value||(0===this.stepper.selectedIndex&&(this.inputFormGroup.controls.hiddenAmount.setValue(this.inputFormGroup.controls.rebalanceAmount.value),this.stepper.next()),this.queryRoute=null,this.feeFormGroup.reset(),void this.feeFormGroup.controls.selFeeLimitType.setValue(this.feeLimitTypes[0])):(this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0)}stepSelectionChanged(t){var i;switch(t.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel=this.queryRoute&&this.queryRoute.routes&&this.queryRoute.routes.length>0&&(this.queryRoute.routes[0].total_fees_msat||this.queryRoute.routes[0].hops&&this.queryRoute.routes[0].hops.length)?this.feeFormGroup.controls.selFeeLimitType.value.placeholder+": "+this.decimalPipe.transform(this.feeFormGroup.controls.feeLimit.value?this.feeFormGroup.controls.feeLimit.value:0)+" | Hops: "+(null===(i=this.queryRoute.routes[0].hops)||void 0===i?void 0:i.length):"Select rebalance fee"}t.selectedIndex+this.selChannel.local_balance||!this.feeFormGroup.controls.feeLimit.value||this.feeFormGroup.controls.feeLimit.value<0||!this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey)return!0;this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value),this.stepper.next(),this.flgEditable=!1,this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1;const t=this.findUnsettledInvoice();t?(this.flgReusingInvoice=!0,this.sendPayment(t.payment_request||"")):this.store.dispatch((0,A.Rd)({payload:{uiMessage:l.m6.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:3600,is_amp:!1,pageSize:l.IV,openModal:!1}}))}findUnsettledInvoice(){var t;return null===(t=this.invoices.invoices)||void 0===t?void 0:t.find(i=>(!i.settle_date||0==+i.settle_date)&&i.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==i.state)}sendPayment(t){this.flgInvoiceGenerated=!0,this.paymentRequest=t,this.store.dispatch((0,A.oV)("percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0?{payload:{uiMessage:l.m6.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:"fixed",feeLimit:Math.ceil(+this.feeFormGroup.controls.feeLimit.value*+this.inputFormGroup.controls.rebalanceAmount.value/100),allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}:{payload:{uiMessage:l.m6.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:this.feeFormGroup.controls.selFeeLimitType.value.id,feeLimit:this.feeFormGroup.controls.feeLimit.value,allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}))}filterActiveChannels(){var t;return null===(t=this.activeChannels)||void 0===t?void 0:t.filter(i=>{var o,s;return i.remote_balance&&i.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&i.chan_id!==this.selChannel.chan_id&&(0===(null===(o=i.remote_alias)||void 0===o?void 0:o.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""))||0===(null===(s=i.chan_id)||void 0===s?void 0:s.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))})}onSelectedPeerChanged(){var t;if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const i=null===(t=this.activeChannels)||void 0===t?void 0:t.filter(o=>{var s,r;return(null===(s=o.remote_alias)||void 0===s?void 0:s.length)===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===(null===(r=o.remote_alias)||void 0===r?void 0:r.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""))});i&&i.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(i[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(t){this.animationDirection=t{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(F.yh),e.Y36(X.eX),e.Y36(u.qu),e.Y36(m.JJ),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(t,i){if(1&t&&e.Gf(dl,5),2&t){let o;e.iGM(o=e.CRH())&&(i.stepper=o.first)}},decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","48"],["autoFocus","","matInput","","placeholder","Amount","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxFlex","48","fxLayoutAlign","start end"],["type","text","placeholder","Receive from Peer","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","submit",3,"click"],["matStepLabel","","disabled","true"],["tabindex","6","formControlName","selFeeLimitType","Placeholder","Fee Limits","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"placeholder","step"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start","class","font-bold-500 mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","50"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["tabindex","19","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(t,i){1&t&&(e.YNc(0,Ul,97,49,"div",0),e.YNc(1,Il,1,1,"ng-template",null,1,e.W1O),e.YNc(3,Pl,3,1,"ng-template",null,2,e.W1O),e.YNc(5,Rl,19,4,"ng-template",null,3,e.W1O),e.YNc(7,Vl,18,10,"div",4)),2&t&&(e.Q6J("ngIf",!i.flgShowInfo),e.xp6(7),e.Q6J("ngIf",i.flgShowInfo))},directives:[m.O5,d.xw,d.yH,d.Wh,Z.dk,k.lW,Z.dn,M.BN,G.Vq,G.C0,u._Y,u.JL,u.sg,G.VY,T.KE,R.Nt,u.wV,u.Fj,ee.h,u.JJ,u.u,u.Q7,T.bx,T.R9,T.TO,le.ZL,le.XC,m.sg,B.ey,P.gD,V.ib,V.yz,V.yK,ae.Hw,D.pW,Q.ZT,m.tP,j.d,ml,m.mk,q.oO],pipes:[m.rS,m.Ov],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:60rem;min-height:60rem}"],data:{animation:[qe._]}}),n})();function zl(n,a){if(1&n&&(e.TgZ(0,"div",16)(1,"p",17)(2,"mat-icon",18),e._uU(3,"close"),e.qZA(),e._uU(4),e.qZA()()),2&n){const t=e.oxw();e.xp6(4),e.Oqu(t.errorMsg)}}function Wl(n,a){if(1&n&&(e.TgZ(0,"div",27),e._UZ(1,"fa-icon",28),e.TgZ(2,"span"),e._uU(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.qZA()()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faInfoCircle)}}function $l(n,a){if(1&n&&(e.TgZ(0,"mat-option",29),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Xl(n,a){1&n&&(e.TgZ(0,"mat-form-field",30),e._UZ(1,"input",31),e.qZA())}function Kl(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function jl(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"input",33,34),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).blocks=o}),e.qZA(),e.YNc(3,Kl,2,0,"mat-error",35),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.blocks)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.blocks)}}function er(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function tr(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"input",36,37),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).fees=o}),e.qZA(),e.YNc(3,er,2,0,"mat-error",35),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.fees)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.fees)}}function nr(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",19),e.YNc(1,Wl,4,1,"div",20),e.TgZ(2,"div",21)(3,"mat-form-field",22)(4,"mat-select",23),e.NdJ("valueChange",function(o){return e.CHM(t),e.oxw().selTransType=o}),e.YNc(5,$l,2,2,"mat-option",24),e.qZA()(),e.YNc(6,Xl,2,0,"mat-form-field",25),e.YNc(7,jl,4,4,"mat-form-field",26),e.YNc(8,tr,4,4,"mat-form-field",26),e.qZA()()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",!t.channelToClose.active),e.xp6(3),e.Q6J("value",t.selTransType)("disabled",!t.channelToClose.active),e.xp6(1),e.Q6J("ngForOf",t.transTypes),e.xp6(1),e.Q6J("ngIf","0"===t.selTransType),e.xp6(1),e.Q6J("ngIf","1"===t.selTransType),e.xp6(1),e.Q6J("ngIf","2"===t.selTransType)}}function ir(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",38),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(1,"Clear"),e.qZA()}}function ar(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",39),e.NdJ("click",function(){return e.CHM(t),e.oxw().onCloseChannel()}),e._uU(1),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.channelToClose.active?"Close Channel":"Force Close")}}function or(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"button",40),e.NdJ("click",function(){return e.CHM(t),e.oxw().onClose()}),e._uU(1,"Ok"),e.qZA()}}let sr=(()=>{class n{constructor(t,i,o,s,r){this.dialogRef=t,this.data=i,this.store=o,this.actions=s,this.logger=r,this.transTypes=l.Dr,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=b.eHv,this.faInfoCircle=b.sqG,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.unSubs=[new p.x,new p.x]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t.type===l.uR.UPDATE_API_CALL_STATUS_LND||t.type===l.uR.SET_CHANNELS_LND)).subscribe(t=>{if(t.type===l.uR.SET_CHANNELS_LND){const i=t.payload.find(o=>o.chan_id===this.data.channel.chan_id);i&&i.pending_htlcs&&i.pending_htlcs.length&&i.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.Bn.ERROR&&"FetchAllChannels"===t.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+t.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const t={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(t.targetConf=this.blocks),this.fees&&(t.satPerByte=this.fees),this.store.dispatch((0,A.BL)({payload:t})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(F.yh),e.Y36(X.eX),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-close-channel"]],decls:19,vars:7,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","class","mr-1","tabindex","3","default","",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click",4,"ngIf"],["fxLayoutAlign","start center"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex.gt-sm","48"],["tabindex","1",3,"value","disabled","valueChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48",4,"ngIf"],["fxFlex.gt-sm","48","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],[3,"value"],["fxFlex","48"],["matInput","","placeholder","Default","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","placeholder","Number of Blocks","type","number","name","blocks","required","","tabindex","2",3,"ngModel","step","min","ngModelChange"],["blcks","ngModel"],[4,"ngIf"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","ccfees","required","","tabindex","3",3,"ngModel","step","min","ngModelChange"],["clchfee","ngModel"],["mat-button","","color","primary","type","reset","tabindex","3","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return i.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"div",8)(11,"p",9),e._uU(12),e.qZA(),e.YNc(13,zl,5,1,"div",10),e.YNc(14,nr,9,7,"div",11),e.qZA(),e.TgZ(15,"div",12),e.YNc(16,ir,2,0,"button",13),e.YNc(17,ar,2,1,"button",14),e.YNc(18,or,2,0,"button",15),e.qZA()()()()()),2&t&&(e.xp6(5),e.Oqu(i.channelToClose.active?"Close Channel":"Force Close Channel"),e.xp6(7),e.hij("",i.channelToClose.active?"Closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point):"Force closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point)," "),e.xp6(1),e.Q6J("ngIf",i.flgPendingHtlcs),e.xp6(1),e.Q6J("ngIf",!i.flgPendingHtlcs),e.xp6(2),e.Q6J("ngIf",i.channelToClose.active&&!i.flgPendingHtlcs),e.xp6(1),e.Q6J("ngIf",!i.flgPendingHtlcs),e.xp6(1),e.Q6J("ngIf",i.flgPendingHtlcs))},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Z.dn,u._Y,u.JL,u.F,m.O5,ae.Hw,M.BN,T.KE,P.gD,m.sg,B.ey,R.Nt,u.wV,u.qQ,u.Fj,ne.q,u.Q7,u.JJ,u.On,T.TO],styles:[""]}),n})();function lr(n,a){if(1&n&&(e.TgZ(0,"mat-option",49),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function rr(n,a){1&n&&e._UZ(0,"mat-progress-bar",50)}function cr(n,a){1&n&&e._UZ(0,"th",51)}function ur(n,a){1&n&&e._UZ(0,"span",55)}function pr(n,a){1&n&&e._UZ(0,"span",56)}function mr(n,a){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,ur,1,0,"span",53),e.YNc(2,pr,1,0,"span",54),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf",t.active),e.xp6(1),e.Q6J("ngIf",!t.active)}}function dr(n,a){1&n&&e._UZ(0,"th",57)}function _r(n,a){if(1&n&&(e.TgZ(0,"span",60),e._UZ(1,"fa-icon",61),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faEyeSlash)}}function hr(n,a){if(1&n&&(e.TgZ(0,"span",62),e._UZ(1,"fa-icon",61),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faEye)}}function gr(n,a){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,_r,2,1,"span",58),e.YNc(2,hr,2,1,"span",59),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf",t.private),e.xp6(1),e.Q6J("ngIf",!t.private)}}function fr(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Peer"),e.qZA())}const Ce=function(n){return{width:n}};function Cr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.remote_alias)}}function xr(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Pubkey"),e.qZA())}function yr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.remote_pubkey)}}function Tr(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Channel Point"),e.qZA())}function br(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel_point)}}function vr(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Channel ID"),e.qZA())}function Zr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.chan_id)}}function Ar(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Initiator"),e.qZA())}function Sr(n,a){if(1&n&&(e.TgZ(0,"td",52),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t.initiator?"Yes":"No")}}function wr(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Static Remote Key"),e.qZA())}function Lr(n,a){if(1&n&&(e.TgZ(0,"td",52),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t.static_remote_key?"Yes":"No")}}function Fr(n,a){if(1&n&&(e.TgZ(0,"th",66),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Uptime (",t.timeUnit,")")}}function qr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",t.uptime_str," ")}}function Nr(n,a){if(1&n&&(e.TgZ(0,"th",66),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Lifetime (",t.timeUnit,")")}}function kr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",t.lifetime_str," ")}}function Ur(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Commit Fee (Sats)"),e.qZA())}function Or(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_fee)," ")}}function Ir(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Commit Weight"),e.qZA())}function Pr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_weight)," ")}}function Rr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Fee/KW"),e.qZA())}function Mr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.fee_per_kw)," ")}}function Jr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Updates"),e.qZA())}function Dr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.num_updates)," ")}}function Qr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Unsettled Balance (Sats)"),e.qZA())}function Er(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.unsettled_balance)," ")}}function Yr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Capacity (Sats)"),e.qZA())}function Br(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.capacity)," ")}}function Hr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Local Reserve (Sats)"),e.qZA())}function Vr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_chan_reserve_sat)," ")}}function Gr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Remote Reserve (Sats)"),e.qZA())}function zr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_chan_reserve_sat)," ")}}function Wr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Sats Sent"),e.qZA())}function $r(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.total_satoshis_sent)," ")}}function Xr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Sats Received"),e.qZA())}function Kr(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.total_satoshis_received)," ")}}function jr(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Local Balance (Sats)"),e.qZA())}function ec(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_balance)," ")}}function tc(n,a){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function nc(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_balance)," ")}}function ic(n,a){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Balance Score"),e.qZA())}function ac(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",68)(2,"mat-hint",69),e._uU(3),e.ALo(4,"number"),e.qZA()(),e._UZ(5,"mat-progress-bar",70),e.qZA()),2&n){const t=a.$implicit;e.xp6(3),e.Oqu(e.lcZ(4,2,t.balancedness||0)),e.xp6(2),e.s9C("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function oc(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",71)(1,"div",72)(2,"mat-select",73),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",74),e.NdJ("click",function(){return e.CHM(t),e.oxw().onChannelUpdate("all")}),e._uU(5,"Update Fee Policy"),e.qZA(),e.TgZ(6,"mat-option",74),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(7,"Download CSV"),e.qZA()()()()}}function sc(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-option",74),e.NdJ("click",function(){e.CHM(t);const o=e.oxw().$implicit;return e.oxw().onCircularRebalance(o)}),e._uU(1,"Circular Rebalance"),e.qZA()}}function lc(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-option",74),e.NdJ("click",function(){e.CHM(t);const o=e.oxw().$implicit;return e.oxw().onLoopOut(o)}),e._uU(1,"Loop Out"),e.qZA()}}function rc(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",75)(1,"div",72)(2,"mat-select",76),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",74),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onChannelClick(r,o)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",74),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onViewRemotePolicy(s)}),e._uU(7,"View Remote Fee "),e.qZA(),e.TgZ(8,"mat-option",74),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onChannelUpdate(s)}),e._uU(9,"Update Fee Policy"),e.qZA(),e.YNc(10,sc,2,0,"mat-option",77),e.YNc(11,lc,2,0,"mat-option",77),e.TgZ(12,"mat-option",74),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onChannelClose(s)}),e._uU(13,"Close Channel"),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(10),e.Q6J("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.xp6(1),e.Q6J("ngIf",t.selNode.swapServerUrl)}}function cc(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No peers connected. Add a peer in order to open a channel."),e.qZA())}function uc(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No channel available."),e.qZA())}function pc(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting channels..."),e.qZA())}function mc(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function dc(n,a){if(1&n&&(e.TgZ(0,"td",78),e.YNc(1,cc,2,0,"p",79),e.YNc(2,uc,2,0,"p",79),e.YNc(3,pc,2,0,"p",79),e.YNc(4,mc,2,1,"p",79),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const _c=function(n){return{"display-none":n}};function hc(n,a){if(1&n&&e._UZ(0,"tr",80),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,_c,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function gc(n,a){1&n&&e._UZ(0,"tr",81)}function fc(n,a){1&n&&e._UZ(0,"tr",82)}const Cc=function(){return["all"]},xc=function(n){return{"error-border":n}},yc=function(){return["no_channel"]};let Tc=(()=>{class n{constructor(t,i,o,s,r,_,g,f,w){var C,E,Re,Me,Je,De;this.logger=t,this.store=i,this.lndEffects=o,this.commonService=s,this.rtlEffects=r,this.decimalPipe=_,this.loopService=g,this.router=f,this.camelCaseWithReplace=w,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:l.IV,sortBy:"balancedness",sortOrder:l.Pi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=l.ol,this.selNode={},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new c.by([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.versionsArr=[],this.faEye=b.Mdf,this.faEyeSlash=b.Aq,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize(),this.selFilter=(null===(Re=null===(E=null===(C=this.router.getCurrentNavigation())||void 0===C?void 0:C.extras)||void 0===E?void 0:E.state)||void 0===Re?void 0:Re.filter)?null===(De=null===(Je=null===(Me=this.router.getCurrentNavigation())||void 0===Me?void 0:Me.extras)||void 0===Je?void 0:Je.state)||void 0===De?void 0:De.filter:""}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{var i,o;this.totalBalance=(null===(i=t.blockchainBalance)||void 0===i?void 0:i.total_balance)?+(null===(o=t.blockchainBalance)||void 0===o?void 0:o.total_balance):0}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(t.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){var i;this.store.dispatch((0,A.$A)({payload:{uiMessage:l.m6.GET_REMOTE_POLICY,channelID:(null===(i=t.chan_id)||void 0===i?void 0:i.toString())+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,$.q)(1)).subscribe(o=>{if(!o.fee_base_msat&&!o.fee_rate_milli_msat&&!o.time_lock_delta)return!1;const s=[[{key:"fee_base_msat",value:o.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.Gi.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.Gi.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.Gi.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:o.time_lock_delta,title:"Time Lock Delta",width:25,type:l.Gi.NUMBER}]],r="Remote policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point);setTimeout(()=>{this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:r,message:s}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,L.qR)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:Gl}}}))}onChannelUpdate(t){"all"===t?(this.store.dispatch((0,L.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All Channels",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.Gi.NUMBER,inputValue:1e3,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.Gi.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.Gi.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[6])).subscribe(o=>{o&&this.store.dispatch((0,A.pW)({payload:{baseFeeMsat:o[0].inputValue,feeRate:o[1].inputValue,timeLockDelta:o[2].inputValue,chanPoint:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0,min_htlc_msat:0,max_htlc_msat:0},this.store.dispatch((0,A.$A)({payload:{uiMessage:l.m6.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,$.q)(1)).subscribe(i=>{this.myChanPolicy=i.node1_pub===this.information.identity_pubkey?i.node1_policy:i.node2_pub===this.information.identity_pubkey?i.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const o="Update fee policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point),s=[];setTimeout(()=>{this.store.dispatch((0,L.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:o,noBtnText:"Cancel",yesBtnText:"Update Channel",message:s,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.Gi.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.Gi.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.Gi.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:l.Gi.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:l.Gi.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[7])).subscribe(i=>{if(i){const o={baseFeeMsat:i[0].inputValue,feeRate:i[1].inputValue,timeLockDelta:i[2].inputValue,chanPoint:t.channel_point};i.length>3&&i[3]&&i[4]&&(o.minHtlcMsat=i[3].inputValue,o.maxHtlcMsat=i[4].inputValue),this.store.dispatch((0,A.pW)({payload:o}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,A.UR)()),this.store.dispatch((0,L.qR)({payload:{data:{channel:t,component:sr}}}))}onChannelClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{channel:t,showCopy:!0,component:Le}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,i)=>{let o="";switch(this.selFilterBy){case"all":o=(t.active?"active":"inactive")+(t.chan_id?t.chan_id.toLowerCase():"")+(t.remote_pubkey?t.remote_pubkey.toLowerCase():"")+(t.remote_alias?t.remote_alias.toLowerCase():"")+(t.capacity?t.capacity:"")+(t.local_balance?t.local_balance:"")+(t.remote_balance?t.remote_balance:"")+(t.total_satoshis_sent?t.total_satoshis_sent:"")+(t.total_satoshis_received?t.total_satoshis_received:"")+(t.commit_fee?t.commit_fee:"")+(t.private?"private":"public");break;case"active":o=(null==t?void 0:t.active)?"active":"inactive";break;case"private":o=(null==t?void 0:t.private)?"private":"public";break;default:o=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===o.indexOf(i):o.includes(i)}}loadChannelsTable(t){var i;this.channels=new c.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.channels.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let _=60,g=1,f=0;switch(t.forEach(w=>{w.uptime&&+w.uptime>f&&(f=+w.uptime)}),!0){case f<3600:this.timeUnit="Mins:Secs",_=60,g=1;break;case f>=3600&&f<86400:this.timeUnit="Hrs:Mins",_=3600,g=60;break;case f>=86400&&f<31536e3:this.timeUnit="Days:Hrs",_=86400,g=3600;break;case f>31536e3:this.timeUnit="Yrs:Days",_=31536e3,g=86400;break;default:this.timeUnit="Mins:Secs",_=60,g=1}return t.forEach(w=>{w.uptime_str=w.uptime?this.decimalPipe.transform(Math.floor(+w.uptime/_),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+w.uptime%_/g),"2.0-0"):"---",w.lifetime_str=w.lifetime?this.decimalPipe.transform(Math.floor(+w.lifetime/_),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+w.lifetime%_/g),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,h.R)(this.unSubs[8])).subscribe(i=>{this.store.dispatch((0,L.qR)({payload:{minHeight:"56rem",data:{channel:t,minQuote:i[0],maxQuote:i[1],direction:l.$I.LOOP_OUT,component:ze.a}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(t){return(t/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(ce.l),e.Y36(I.v),e.Y36(me.V),e.Y36(m.JJ),e.Y36(We.W),e.Y36(v.F0),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Channels")}])],decls:91,vars:16,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","initiator"],["matColumnDef","static_remote_key"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","yellow"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"div",2),e.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),e.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),e.YNc(6,lr,2,2,"mat-option",6),e.qZA()(),e.TgZ(7,"mat-form-field",4)(8,"input",7),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(9,"div",8),e.YNc(10,rr,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,cr,1,0,"th",13),e.YNc(15,mr,3,2,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,dr,1,0,"th",16),e.YNc(18,gr,3,2,"td",14),e.BQk(),e.ynx(19,17),e.YNc(20,fr,2,0,"th",18),e.YNc(21,Cr,4,4,"td",14),e.BQk(),e.ynx(22,19),e.YNc(23,xr,2,0,"th",18),e.YNc(24,yr,4,4,"td",14),e.BQk(),e.ynx(25,20),e.YNc(26,Tr,2,0,"th",18),e.YNc(27,br,4,4,"td",14),e.BQk(),e.ynx(28,21),e.YNc(29,vr,2,0,"th",18),e.YNc(30,Zr,4,4,"td",14),e.BQk(),e.ynx(31,22),e.YNc(32,Ar,2,0,"th",18),e.YNc(33,Sr,2,1,"td",14),e.BQk(),e.ynx(34,23),e.YNc(35,wr,2,0,"th",18),e.YNc(36,Lr,2,1,"td",14),e.BQk(),e.ynx(37,24),e.YNc(38,Fr,2,1,"th",25),e.YNc(39,qr,3,1,"td",14),e.BQk(),e.ynx(40,26),e.YNc(41,Nr,2,1,"th",25),e.YNc(42,kr,3,1,"td",14),e.BQk(),e.ynx(43,27),e.YNc(44,Ur,2,0,"th",25),e.YNc(45,Or,4,3,"td",14),e.BQk(),e.ynx(46,28),e.YNc(47,Ir,2,0,"th",25),e.YNc(48,Pr,4,3,"td",14),e.BQk(),e.ynx(49,29),e.YNc(50,Rr,2,0,"th",25),e.YNc(51,Mr,4,3,"td",14),e.BQk(),e.ynx(52,30),e.YNc(53,Jr,2,0,"th",25),e.YNc(54,Dr,4,3,"td",14),e.BQk(),e.ynx(55,31),e.YNc(56,Qr,2,0,"th",25),e.YNc(57,Er,4,3,"td",14),e.BQk(),e.ynx(58,32),e.YNc(59,Yr,2,0,"th",25),e.YNc(60,Br,4,3,"td",14),e.BQk(),e.ynx(61,33),e.YNc(62,Hr,2,0,"th",25),e.YNc(63,Vr,4,3,"td",14),e.BQk(),e.ynx(64,34),e.YNc(65,Gr,2,0,"th",25),e.YNc(66,zr,4,3,"td",14),e.BQk(),e.ynx(67,35),e.YNc(68,Wr,2,0,"th",25),e.YNc(69,$r,4,3,"td",14),e.BQk(),e.ynx(70,36),e.YNc(71,Xr,2,0,"th",25),e.YNc(72,Kr,4,3,"td",14),e.BQk(),e.ynx(73,37),e.YNc(74,jr,2,0,"th",25),e.YNc(75,ec,4,3,"td",14),e.BQk(),e.ynx(76,38),e.YNc(77,tc,2,0,"th",25),e.YNc(78,nc,4,3,"td",14),e.BQk(),e.ynx(79,39),e.YNc(80,ic,2,0,"th",18),e.YNc(81,ac,6,4,"td",14),e.BQk(),e.ynx(82,40),e.YNc(83,oc,8,0,"th",41),e.YNc(84,rc,14,2,"td",42),e.BQk(),e.ynx(85,43),e.YNc(86,dc,5,4,"td",44),e.BQk(),e.YNc(87,hc,1,3,"tr",45),e.YNc(88,gc,1,0,"tr",46),e.YNc(89,fc,1,0,"tr",47),e.qZA()(),e._UZ(90,"mat-paginator",48),e.qZA()),2&t&&(e.xp6(5),e.Q6J("ngModel",i.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(12,Cc).concat(i.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",i.selFilter),e.xp6(2),e.Q6J("ngIf",(null==i.apiCallStatus?null:i.apiCallStatus.status)===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.channels)("ngClass",e.VKq(13,xc,""!==i.errorMessage)),e.xp6(76),e.Q6J("matFooterRowDef",e.DdM(15,yc)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,K.gM,c.Dz,c.ev,M.BN,m.PC,q.Zl,T.bx,P.$L,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.JJ],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}.mat-column-private[_ngcontent-%COMP%]{max-width:1.6rem;width:1.6rem}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}),n})();const bc=["outputIdx"];function vc(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Index for change output is required."),e.qZA())}function Zc(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid index value."),e.qZA())}function Ac(n,a){if(1&n&&(e.TgZ(0,"mat-option",29),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Sc(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function wc(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",17)(1,"input",30,31),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().blocks=o}),e.qZA(),e.YNc(3,Sc,2,0,"mat-error",20),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.blocks)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.blocks)}}function Lc(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function Fc(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",17)(1,"input",32,33),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().fees=o}),e.qZA(),e.YNc(3,Lc,2,0,"mat-error",20),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.fees)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.fees)}}function qc(n,a){if(1&n&&(e.TgZ(0,"div",34),e._UZ(1,"fa-icon",13),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(2),e.Oqu(t.bumpFeeError)}}let Nc=(()=>{class n{constructor(t,i,o,s,r){this.dialogRef=t,this.data=i,this.logger=o,this.dataService=s,this.snackBar=r,this.transTypes=[...l.Dr],this.selTransType="2",this.blocks=null,this.fees=null,this.outputIndex=null,this.faCopy=b.kZ_,this.faInfoCircle=b.sqG,this.faExclamationTriangle=b.eHv,this.bumpFeeError="",this.unSubs=[new p.x,new p.x]}set payReq(t){t&&(this.outputIdx=t)}ngOnInit(){var t,i;this.transTypes=this.transTypes.splice(1),this.bumpFeeChannel=this.data.pendingChannel;const o=(null===(i=null===(t=this.bumpFeeChannel.channel)||void 0===t?void 0:t.channel_point)||void 0===i?void 0:i.split(":"))||[];this.bumpFeeChannel&&this.bumpFeeChannel.channel&&(this.bumpFeeChannel.channel.txid_str=o[0]||(this.bumpFeeChannel.channel&&this.bumpFeeChannel.channel.channel_point?this.bumpFeeChannel.channel.channel_point:""),this.bumpFeeChannel.channel.output_index=+o[1]||null)}onBumpFee(){var t;return this.outputIndex===(null===(t=this.bumpFeeChannel.channel)||void 0===t?void 0:t.output_index)?(this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0):!this.outputIndex&&0!==this.outputIndex||!("1"!==this.selTransType||this.blocks&&0!==this.blocks)||!("2"!==this.selTransType||this.fees&&0!==this.fees)||void this.dataService.bumpFee(this.bumpFeeChannel&&this.bumpFeeChannel.channel&&this.bumpFeeChannel.channel.txid_str?this.bumpFeeChannel.channel.txid_str:"",this.outputIndex,this.blocks||null,this.fees||null).pipe((0,h.R)(this.unSubs[0])).subscribe({next:i=>{this.dialogRef.close(!1)},error:i=>{this.logger.error(i),this.bumpFeeError=i.message?i.message:i}})}onCopyID(t){this.snackBar.open("Transaction ID copied.")}resetData(){this.bumpFeeError="",this.selTransType="2",this.blocks=null,this.fees=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(ie.D),e.Y36(oe.ux))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(t,i){if(1&t&&e.Gf(bc,5),2&t){let o;e.iGM(o=e.CRH())&&(i.payReq=o.first)}},decls:48,vars:15,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["matSuffix","","rtlClipboard","","matTooltip","Copy transaction ID",1,"ml-1",3,"icon","payload","copied"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],[1,"pl-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex.gt-sm","32","fxLayoutAlign","start end"],["matInput","","placeholder","Index for Change Output","type","number","tabindex","1","required","","name","outputIdx",3,"ngModel","step","min","ngModelChange"],["outputIdx","ngModel"],[4,"ngIf"],["fxFlex.gt-sm","32"],["tabindex","2",3,"value","valueChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex.gt-sm","32","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],[3,"value"],["matInput","","placeholder","Number of Blocks","type","number","name","blocks","required","","tabindex","3",3,"ngModel","step","min","ngModelChange"],["blcks","ngModel"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","fees","required","","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fee","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(t,i){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Bump Fee"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return i.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"div",8)(11,"p",9),e._uU(12),e.TgZ(13,"fa-icon",10),e.NdJ("copied",function(s){return i.onCopyID(s)}),e.qZA()(),e.TgZ(14,"div",11)(15,"div",12),e._UZ(16,"fa-icon",13),e.TgZ(17,"span",14),e._uU(18,"Bumping fee on pending open channels is an advanced feature, attempt it only if you are familiar with the functionality of Bitcoin transactions. "),e.TgZ(19,"div"),e._uU(20,"Before attempting fee bump ensure the following:"),e.qZA(),e.TgZ(21,"div",15),e._uU(22,"1: Use a Bitcoin block explorer to ensure that channel opening transaction is not confirmed."),e.qZA(),e.TgZ(23,"div",15),e._uU(24,"2: The channel opening transaction must have a sizable change output, which can be spent further. The fee cannot be bumped without the change output."),e.qZA(),e.TgZ(25,"div",15),e._uU(26,"3: Find the index value of the change output via a block explorer."),e.qZA(),e.TgZ(27,"div",15),e._uU(28,"4: Enter the index value of the change output in the form below and the desired fee rate."),e.qZA(),e.TgZ(29,"div",15),e._uU(30,"5: Upon successful fee bump, use your block explorer to track the child transaction in the mempool, which should be linked with the change output transaction."),e.qZA()()(),e.TgZ(31,"div",16)(32,"mat-form-field",17)(33,"input",18,19),e.NdJ("ngModelChange",function(s){return i.outputIndex=s}),e.qZA(),e.YNc(35,vc,2,0,"mat-error",20),e.YNc(36,Zc,2,0,"mat-error",20),e.qZA(),e.TgZ(37,"mat-form-field",21)(38,"mat-select",22),e.NdJ("valueChange",function(s){return i.selTransType=s})("selectionChange",function(){return i.blocks=null,i.fees=null}),e.YNc(39,Ac,2,2,"mat-option",23),e.qZA()(),e.YNc(40,wc,4,4,"mat-form-field",24),e.YNc(41,Fc,4,4,"mat-form-field",24),e.qZA(),e.YNc(42,qc,4,2,"div",25),e.qZA()(),e.TgZ(43,"div",26)(44,"button",27),e.NdJ("click",function(){return i.resetData()}),e._uU(45,"Clear"),e.qZA(),e.TgZ(46,"button",28),e.NdJ("click",function(){return i.onBumpFee()}),e._uU(47),e.qZA()()()()()()),2&t){const o=e.MAs(34);e.xp6(12),e.hij("Bump fee for channel point: ",null==i.bumpFeeChannel||null==i.bumpFeeChannel.channel?null:i.bumpFeeChannel.channel.channel_point," "),e.xp6(1),e.Q6J("icon",i.faCopy)("payload",null==i.bumpFeeChannel||null==i.bumpFeeChannel.channel?null:i.bumpFeeChannel.channel.txid_str),e.xp6(3),e.Q6J("icon",i.faInfoCircle),e.xp6(17),e.Q6J("ngModel",i.outputIndex)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",null==o.errors?null:o.errors.required),e.xp6(1),e.Q6J("ngIf",null==o.errors?null:o.errors.pendingChannelOutputIndex),e.xp6(2),e.Q6J("value",i.selTransType),e.xp6(1),e.Q6J("ngForOf",i.transTypes),e.xp6(1),e.Q6J("ngIf","1"===i.selTransType),e.xp6(1),e.Q6J("ngIf","2"===i.selTransType),e.xp6(1),e.Q6J("ngIf",""!==i.bumpFeeError),e.xp6(5),e.Oqu(""!==i.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Z.dn,u._Y,u.JL,u.F,M.BN,T.R9,de.y,K.gM,T.KE,R.Nt,u.wV,u.qQ,u.Fj,ne.q,u.Q7,u.JJ,u.On,m.O5,T.TO,P.gD,m.sg,B.ey],styles:[""]}),n})();function kc(n,a){1&n&&e._UZ(0,"mat-progress-bar",41)}function Uc(n,a){1&n&&e._UZ(0,"mat-progress-bar",41)}function Oc(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Peer"),e.qZA())}const W=function(n){return{width:n}};function Ic(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function Pc(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Pubkey"),e.qZA())}function Rc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function Mc(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Channel Point"),e.qZA())}function Jc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function Dc(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Initiator"),e.qZA())}function Qc(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function Ec(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Commitment Type"),e.qZA())}function Yc(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Bc(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Confirmation Height"),e.qZA())}function Hc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.confirmation_height))}}function Vc(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Commit Fee (Sats)"),e.qZA())}function Gc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.commit_fee))}}function zc(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Commit Weight"),e.qZA())}function Wc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.commit_weight))}}function $c(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Fee/KW"),e.qZA())}function Xc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.fee_per_kw))}}function Kc(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Capacity (Sats)"),e.qZA())}function jc(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function e1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Local Balance (Sats)"),e.qZA())}function t1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function n1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function i1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function a1(n,a){1&n&&(e.TgZ(0,"th",48)(1,"div",49),e._uU(2,"Actions"),e.qZA()())}function o1(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",50)(1,"div",49)(2,"mat-select",51),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",52),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onOpenClick(s)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",52),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onBumpFee(s)}),e._uU(7,"Bump Fee"),e.qZA()()()()}}function s1(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function l1(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function r1(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function c1(n,a){if(1&n&&(e.TgZ(0,"td",53),e.YNc(1,s1,2,0,"p",54),e.YNc(2,l1,2,0,"p",54),e.YNc(3,r1,2,1,"p",54),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Ne=function(n){return{"display-none":n}};function u1(n,a){if(1&n&&e._UZ(0,"tr",55),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Ne,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function p1(n,a){1&n&&e._UZ(0,"tr",56)}function m1(n,a){1&n&&e._UZ(0,"tr",57)}function d1(n,a){1&n&&e._UZ(0,"mat-progress-bar",41)}function _1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Closing Tx ID"),e.qZA())}function h1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.closing_txid)}}function g1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Peer"),e.qZA())}function f1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function C1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Pubkey"),e.qZA())}function x1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function y1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Channel Point"),e.qZA())}function T1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function b1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Initiator"),e.qZA())}function v1(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function Z1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Commitment Type"),e.qZA())}function A1(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function S1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Limbo Balance (Sats)"),e.qZA())}function w1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.limbo_balance))}}function L1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Maturity Height"),e.qZA())}function F1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.maturity_height))}}function q1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Blocks till Maturity"),e.qZA())}function N1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.blocks_til_maturity))}}function k1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Recovered Balance (Sats)"),e.qZA())}function U1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.recovered_balance))}}function O1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Capacity (Sats)"),e.qZA())}function I1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function P1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Local Balance (Sats)"),e.qZA())}function R1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function M1(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function J1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function D1(n,a){1&n&&(e.TgZ(0,"th",48)(1,"div",49),e._uU(2,"Actions"),e.qZA()())}function Q1(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",50)(1,"button",58),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onForceClosingClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function E1(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function Y1(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function B1(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function H1(n,a){if(1&n&&(e.TgZ(0,"td",53),e.YNc(1,E1,2,0,"p",54),e.YNc(2,Y1,2,0,"p",54),e.YNc(3,B1,2,1,"p",54),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function V1(n,a){if(1&n&&e._UZ(0,"tr",55),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Ne,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function G1(n,a){1&n&&e._UZ(0,"tr",56)}function z1(n,a){1&n&&e._UZ(0,"tr",57)}function W1(n,a){1&n&&e._UZ(0,"mat-progress-bar",41)}function $1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Closing Tx ID"),e.qZA())}function X1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.closing_txid)}}function K1(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Peer"),e.qZA())}function j1(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function eu(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Pubkey"),e.qZA())}function tu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function nu(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Channel Point"),e.qZA())}function iu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function au(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Initiator"),e.qZA())}function ou(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function su(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Commitment Type"),e.qZA())}function lu(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function ru(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Capacity (Sats)"),e.qZA())}function cu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function uu(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Local Balance (Sats)"),e.qZA())}function pu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function mu(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function du(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function _u(n,a){1&n&&(e.TgZ(0,"th",48)(1,"div",49),e._uU(2,"Actions"),e.qZA()())}function hu(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",50)(1,"button",59),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onClosingClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function gu(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function fu(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function Cu(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function xu(n,a){if(1&n&&(e.TgZ(0,"td",53),e.YNc(1,gu,2,0,"p",54),e.YNc(2,fu,2,0,"p",54),e.YNc(3,Cu,2,1,"p",54),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function yu(n,a){if(1&n&&e._UZ(0,"tr",55),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Ne,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function Tu(n,a){1&n&&e._UZ(0,"tr",56)}function bu(n,a){1&n&&e._UZ(0,"tr",57)}function vu(n,a){1&n&&e._UZ(0,"mat-progress-bar",41)}function Zu(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Closing Tx ID"),e.qZA())}function Au(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.closing_txid)}}function Su(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Peer"),e.qZA())}function wu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function Lu(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Pubkey"),e.qZA())}function Fu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function qu(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Channel Point"),e.qZA())}function Nu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"div",44)(2,"span",45),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,W,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function ku(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Initiator"),e.qZA())}function Uu(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function Ou(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Commitment Type"),e.qZA())}function Iu(n,a){if(1&n&&(e.TgZ(0,"td",43),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Pu(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Limbo Balance (Sats)"),e.qZA())}function Ru(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.limbo_balance))}}function Mu(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Capacity (Sats)"),e.qZA())}function Ju(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function Du(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Local Balance (Sats)"),e.qZA())}function Qu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function Eu(n,a){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function Yu(n,a){if(1&n&&(e.TgZ(0,"td",43)(1,"span",47),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function Bu(n,a){1&n&&(e.TgZ(0,"th",60)(1,"div",49),e._uU(2,"Actions"),e.qZA()())}function Hu(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",50)(1,"button",61),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onWaitClosingClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function Vu(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function Gu(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function zu(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Wu(n,a){if(1&n&&(e.TgZ(0,"td",53),e.YNc(1,Vu,2,0,"p",54),e.YNc(2,Gu,2,0,"p",54),e.YNc(3,zu,2,1,"p",54),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const $u=function(n){return{"py-0":!0,"display-none":n}};function Xu(n,a){if(1&n&&e._UZ(0,"tr",55),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,$u,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function Ku(n,a){1&n&&e._UZ(0,"tr",56)}function ju(n,a){1&n&&e._UZ(0,"tr",57)}const xe=function(n){return{"error-border bordered-box":n,"bordered-box":!0}},ep=function(){return["no_pending_open"]},tp=function(){return["no_pending_force_closing"]},np=function(){return["no_pending_closing"]},ip=function(){return["no_pending_wait_closing"]};let ap=(()=>{class n{constructor(t,i,o){this.logger=t,this.store=i,this.commonService=o,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:l.IV,sortBy:"capacity",sortOrder:l.Pi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:l.IV,sortBy:"limbo_balance",sortOrder:l.Pi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:l.IV,sortBy:"capacity",sortOrder:l.Pi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:l.IV,sortBy:"limbo_balance",sortOrder:l.Pi.DESCENDING},this.selNode={},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new c.by([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new c.by([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new c.by([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new c.by([]),this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{var i,o,s,r,_,g,f,w;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=(null===(i=t.pageSettings.find(C=>C.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(C=>C.tableId===this.openTableSetting.tableId))||(null===(o=l.gK.find(C=>C.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(C=>C.tableId===this.openTableSetting.tableId)),this.displayedOpenColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.openTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.openTableSetting.columnSelection)),this.displayedOpenColumns.push("actions"),this.logger.info(this.displayedOpenColumns),this.forceClosingTableSetting=(null===(s=t.pageSettings.find(C=>C.pageId===this.PAGE_ID))||void 0===s?void 0:s.tables.find(C=>C.tableId===this.forceClosingTableSetting.tableId))||(null===(r=l.gK.find(C=>C.pageId===this.PAGE_ID))||void 0===r?void 0:r.tables.find(C=>C.tableId===this.forceClosingTableSetting.tableId)),this.displayedForceClosingColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelection)),this.displayedForceClosingColumns.push("actions"),this.logger.info(this.displayedForceClosingColumns),this.closingTableSetting=(null===(_=t.pageSettings.find(C=>C.pageId===this.PAGE_ID))||void 0===_?void 0:_.tables.find(C=>C.tableId===this.closingTableSetting.tableId))||(null===(g=l.gK.find(C=>C.pageId===this.PAGE_ID))||void 0===g?void 0:g.tables.find(C=>C.tableId===this.closingTableSetting.tableId)),this.displayedClosingColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.closingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.closingTableSetting.columnSelection)),this.displayedClosingColumns.push("actions"),this.logger.info(this.displayedClosingColumns),this.waitingCloseTableSetting=(null===(f=t.pageSettings.find(C=>C.pageId===this.PAGE_ID))||void 0===f?void 0:f.tables.find(C=>C.tableId===this.waitingCloseTableSetting.tableId))||(null===(w=l.gK.find(C=>C.pageId===this.PAGE_ID))||void 0===w?void 0:w.tables.find(C=>C.tableId===this.waitingCloseTableSetting.tableId)),this.displayedWaitClosingColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelection)),this.displayedWaitClosingColumns.push("actions"),this.logger.info(this.displayedWaitClosingColumns)}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=t.pendingChannels,this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels),this.logger.info(t)})}ngAfterViewInit(){this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels)}onOpenClick(t){const i=JSON.parse(JSON.stringify(t,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,i,o),this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:s.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_node_pub",value:s.remote_node_pub,title:"Peer Node Pubkey",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:s.remote_alias,title:"Peer Alias",width:100,type:l.Gi.STRING}],[{key:"capacity",value:s.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"confirmation_height",value:s.confirmation_height,title:"Confirmation Height",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:s.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:s.remote_balance,title:"Remote Balance",width:25,type:l.Gi.NUMBER}],[{key:"fee_per_kw",value:s.fee_per_kw,title:"Fee/KW",width:25,type:l.Gi.NUMBER},{key:"commit_weight",value:s.commit_weight,title:"Commit Weight",width:25,type:l.Gi.NUMBER},{key:"commit_fee",value:s.commit_fee,title:"Commit Fee",width:50,type:l.Gi.NUMBER}]]}}}))}onBumpFee(t){this.store.dispatch((0,L.qR)({payload:{data:{pendingChannel:t,component:Nc}}}))}onForceClosingClick(t){const i=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,i,o),this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:s.closing_txid,title:"Closing Transaction ID",width:100,type:l.Gi.STRING}],[{key:"channel_point",value:s.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:s.remote_alias,title:"Peer Alias",width:25,type:l.Gi.STRING},{key:"remote_node_pub",value:s.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.Gi.STRING}],[{key:"capacity",value:s.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"limbo_balance",value:s.limbo_balance,title:"Limbo Balance",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:s.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:s.remote_balance,title:"Remote Balance",width:25,type:l.Gi.NUMBER}],[{key:"maturity_height",value:s.maturity_height,title:"Maturity Height",width:25,type:l.Gi.NUMBER},{key:"blocks_til_maturity",value:s.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:l.Gi.NUMBER},{key:"recovered_balance",value:s.recovered_balance,title:"Recovered Balance",width:50,type:l.Gi.NUMBER}]]}}}))}onClosingClick(t){const i=JSON.parse(JSON.stringify(t,["closing_txid"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,i,o),this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:s.closing_txid,title:"Closing Transaction ID",width:50,type:l.Gi.STRING}],[{key:"channel_point",value:s.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:s.remote_alias,title:"Peer Alias",width:25,type:l.Gi.STRING},{key:"remote_node_pub",value:s.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.Gi.STRING}],[{key:"capacity",value:s.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:s.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:s.remote_balance,title:"Remote Balance",width:50,type:l.Gi.NUMBER}]]}}}))}onWaitClosingClick(t){const i=JSON.parse(JSON.stringify(t,["limbo_balance"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s=JSON.parse(JSON.stringify(t.commitments,["local_txid"],2)),r={};Object.assign(r,i,o,s),this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:r.local_txid,title:"Transaction ID",width:100,type:l.Gi.STRING}],[{key:"channel_point",value:r.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:r.remote_alias,title:"Peer Alias",width:25,type:l.Gi.STRING},{key:"remote_node_pub",value:r.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.Gi.STRING}],[{key:"capacity",value:r.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"limbo_balance",value:r.limbo_balance,title:"Limbo Balance",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:r.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:r.remote_balance,title:"Remote Balance",width:25,type:l.Gi.NUMBER}]]}}}))}loadOpenChannelsTable(t){var i;this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new c.by([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.pendingOpenChannels.sort)||void 0===i||i.sort({id:this.openTableSetting.sortBy,start:this.openTableSetting.sortOrder,disableClear:!0}),this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){var i;this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new c.by([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.pendingForceClosingChannels.sort)||void 0===i||i.sort({id:this.forceClosingTableSetting.sortBy,start:this.forceClosingTableSetting.sortOrder,disableClear:!0}),this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){var i;this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new c.by([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.pendingClosingChannels.sort)||void 0===i||i.sort({id:this.closingTableSetting.sortBy,start:this.closingTableSetting.sortOrder,disableClear:!0}),this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){var i;this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new c.by([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.pendingWaitClosingChannels.sort)||void 0===i||i.sort({id:this.waitingCloseTableSetting.sortBy,start:this.waitingCloseTableSetting.sortOrder,disableClear:!0}),this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(t,i){if(1&t&&e.Gf(S.YE,5),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first)}},decls:202,vars:44,consts:[["fxLayout","column",1,"mb-2"],[1,"page-title"],["displayMode","flat",1,"mt-1"],["mode","indeterminate",4,"ngIf"],["fxLayout","column",1,"flat-expansion-panel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_node_pub"],["matColumnDef","channel_point"],["matColumnDef","initiator"],["matColumnDef","commitment_type"],["matColumnDef","confirmation_height"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","capacity"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_pending_open"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-table","","matSort","",3,"dataSource","ngClass"],["matColumnDef","closing_txid"],["matColumnDef","limbo_balance"],["matColumnDef","maturity_height"],["matColumnDef","blocks_til_maturity"],["matColumnDef","recovered_balance"],["matColumnDef","no_pending_force_closing"],["matColumnDef","no_pending_closing"],["mat-header-cell","","fxLayoutAlign","end center",4,"matHeaderCellDef"],["matColumnDef","no_pending_wait_closing"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass"],["mat-header-row",""],["mat-row",""],["mat-stroked-button","","color","primary","type","button","tabindex","2",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","3",1,"table-actions-button",3,"click"],["mat-header-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"span",1),e._uU(2),e.ALo(3,"number"),e.qZA(),e.TgZ(4,"mat-accordion",2),e.YNc(5,kc,1,0,"mat-progress-bar",3),e.TgZ(6,"mat-expansion-panel",4)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e._uU(9),e.qZA()(),e.TgZ(10,"div",5),e.YNc(11,Uc,1,0,"mat-progress-bar",3),e.TgZ(12,"table",6,7),e.ynx(14,8),e.YNc(15,Oc,2,0,"th",9),e.YNc(16,Ic,4,4,"td",10),e.BQk(),e.ynx(17,11),e.YNc(18,Pc,2,0,"th",9),e.YNc(19,Rc,4,4,"td",10),e.BQk(),e.ynx(20,12),e.YNc(21,Mc,2,0,"th",9),e.YNc(22,Jc,4,4,"td",10),e.BQk(),e.ynx(23,13),e.YNc(24,Dc,2,0,"th",9),e.YNc(25,Qc,3,4,"td",10),e.BQk(),e.ynx(26,14),e.YNc(27,Ec,2,0,"th",9),e.YNc(28,Yc,3,5,"td",10),e.BQk(),e.ynx(29,15),e.YNc(30,Bc,2,0,"th",16),e.YNc(31,Hc,4,3,"td",10),e.BQk(),e.ynx(32,17),e.YNc(33,Vc,2,0,"th",16),e.YNc(34,Gc,4,3,"td",10),e.BQk(),e.ynx(35,18),e.YNc(36,zc,2,0,"th",16),e.YNc(37,Wc,4,3,"td",10),e.BQk(),e.ynx(38,19),e.YNc(39,$c,2,0,"th",16),e.YNc(40,Xc,4,3,"td",10),e.BQk(),e.ynx(41,20),e.YNc(42,Kc,2,0,"th",16),e.YNc(43,jc,4,3,"td",10),e.BQk(),e.ynx(44,21),e.YNc(45,e1,2,0,"th",16),e.YNc(46,t1,4,3,"td",10),e.BQk(),e.ynx(47,22),e.YNc(48,n1,2,0,"th",16),e.YNc(49,i1,4,3,"td",10),e.BQk(),e.ynx(50,23),e.YNc(51,a1,3,0,"th",24),e.YNc(52,o1,8,0,"td",25),e.BQk(),e.ynx(53,26),e.YNc(54,c1,4,3,"td",27),e.BQk(),e.YNc(55,u1,1,3,"tr",28),e.YNc(56,p1,1,0,"tr",29),e.YNc(57,m1,1,0,"tr",30),e.qZA()()(),e.YNc(58,d1,1,0,"mat-progress-bar",3),e.TgZ(59,"mat-expansion-panel",4)(60,"mat-expansion-panel-header")(61,"mat-panel-title"),e._uU(62),e.qZA()(),e.TgZ(63,"div",5)(64,"table",31,7),e.ynx(66,32),e.YNc(67,_1,2,0,"th",9),e.YNc(68,h1,4,4,"td",10),e.BQk(),e.ynx(69,8),e.YNc(70,g1,2,0,"th",9),e.YNc(71,f1,4,4,"td",10),e.BQk(),e.ynx(72,11),e.YNc(73,C1,2,0,"th",9),e.YNc(74,x1,4,4,"td",10),e.BQk(),e.ynx(75,12),e.YNc(76,y1,2,0,"th",9),e.YNc(77,T1,4,4,"td",10),e.BQk(),e.ynx(78,13),e.YNc(79,b1,2,0,"th",9),e.YNc(80,v1,3,4,"td",10),e.BQk(),e.ynx(81,14),e.YNc(82,Z1,2,0,"th",9),e.YNc(83,A1,3,5,"td",10),e.BQk(),e.ynx(84,33),e.YNc(85,S1,2,0,"th",16),e.YNc(86,w1,4,3,"td",10),e.BQk(),e.ynx(87,34),e.YNc(88,L1,2,0,"th",16),e.YNc(89,F1,4,3,"td",10),e.BQk(),e.ynx(90,35),e.YNc(91,q1,2,0,"th",16),e.YNc(92,N1,4,3,"td",10),e.BQk(),e.ynx(93,36),e.YNc(94,k1,2,0,"th",16),e.YNc(95,U1,4,3,"td",10),e.BQk(),e.ynx(96,20),e.YNc(97,O1,2,0,"th",16),e.YNc(98,I1,4,3,"td",10),e.BQk(),e.ynx(99,21),e.YNc(100,P1,2,0,"th",16),e.YNc(101,R1,4,3,"td",10),e.BQk(),e.ynx(102,22),e.YNc(103,M1,2,0,"th",16),e.YNc(104,J1,4,3,"td",10),e.BQk(),e.ynx(105,23),e.YNc(106,D1,3,0,"th",24),e.YNc(107,Q1,3,0,"td",25),e.BQk(),e.ynx(108,37),e.YNc(109,H1,4,3,"td",27),e.BQk(),e.YNc(110,V1,1,3,"tr",28),e.YNc(111,G1,1,0,"tr",29),e.YNc(112,z1,1,0,"tr",30),e.qZA()()(),e.YNc(113,W1,1,0,"mat-progress-bar",3),e.TgZ(114,"mat-expansion-panel",4)(115,"mat-expansion-panel-header")(116,"mat-panel-title"),e._uU(117),e.qZA()(),e.TgZ(118,"div",5)(119,"table",31,7),e.ynx(121,32),e.YNc(122,$1,2,0,"th",9),e.YNc(123,X1,4,4,"td",10),e.BQk(),e.ynx(124,8),e.YNc(125,K1,2,0,"th",9),e.YNc(126,j1,4,4,"td",10),e.BQk(),e.ynx(127,11),e.YNc(128,eu,2,0,"th",9),e.YNc(129,tu,4,4,"td",10),e.BQk(),e.ynx(130,12),e.YNc(131,nu,2,0,"th",9),e.YNc(132,iu,4,4,"td",10),e.BQk(),e.ynx(133,13),e.YNc(134,au,2,0,"th",9),e.YNc(135,ou,3,4,"td",10),e.BQk(),e.ynx(136,14),e.YNc(137,su,2,0,"th",9),e.YNc(138,lu,3,5,"td",10),e.BQk(),e.ynx(139,20),e.YNc(140,ru,2,0,"th",16),e.YNc(141,cu,4,3,"td",10),e.BQk(),e.ynx(142,21),e.YNc(143,uu,2,0,"th",16),e.YNc(144,pu,4,3,"td",10),e.BQk(),e.ynx(145,22),e.YNc(146,mu,2,0,"th",16),e.YNc(147,du,4,3,"td",10),e.BQk(),e.ynx(148,23),e.YNc(149,_u,3,0,"th",24),e.YNc(150,hu,3,0,"td",25),e.BQk(),e.ynx(151,38),e.YNc(152,xu,4,3,"td",27),e.BQk(),e.YNc(153,yu,1,3,"tr",28),e.YNc(154,Tu,1,0,"tr",29),e.YNc(155,bu,1,0,"tr",30),e.qZA()()(),e.YNc(156,vu,1,0,"mat-progress-bar",3),e.TgZ(157,"mat-expansion-panel",4)(158,"mat-expansion-panel-header")(159,"mat-panel-title"),e._uU(160),e.qZA()(),e.TgZ(161,"div",5)(162,"table",31,7),e.ynx(164,32),e.YNc(165,Zu,2,0,"th",9),e.YNc(166,Au,4,4,"td",10),e.BQk(),e.ynx(167,8),e.YNc(168,Su,2,0,"th",9),e.YNc(169,wu,4,4,"td",10),e.BQk(),e.ynx(170,11),e.YNc(171,Lu,2,0,"th",9),e.YNc(172,Fu,4,4,"td",10),e.BQk(),e.ynx(173,12),e.YNc(174,qu,2,0,"th",9),e.YNc(175,Nu,4,4,"td",10),e.BQk(),e.ynx(176,13),e.YNc(177,ku,2,0,"th",9),e.YNc(178,Uu,3,4,"td",10),e.BQk(),e.ynx(179,14),e.YNc(180,Ou,2,0,"th",9),e.YNc(181,Iu,3,5,"td",10),e.BQk(),e.ynx(182,33),e.YNc(183,Pu,2,0,"th",16),e.YNc(184,Ru,4,3,"td",10),e.BQk(),e.ynx(185,20),e.YNc(186,Mu,2,0,"th",16),e.YNc(187,Ju,4,3,"td",10),e.BQk(),e.ynx(188,21),e.YNc(189,Du,2,0,"th",16),e.YNc(190,Qu,4,3,"td",10),e.BQk(),e.ynx(191,22),e.YNc(192,Eu,2,0,"th",16),e.YNc(193,Yu,4,3,"td",10),e.BQk(),e.ynx(194,23),e.YNc(195,Bu,3,0,"th",39),e.YNc(196,Hu,3,0,"td",25),e.BQk(),e.ynx(197,40),e.YNc(198,Wu,4,3,"td",27),e.BQk(),e.YNc(199,Xu,1,3,"tr",28),e.YNc(200,Ku,1,0,"tr",29),e.YNc(201,ju,1,0,"tr",30),e.qZA()()()()()),2&t&&(e.xp6(2),e.hij("Total Limbo Balance: ",e.lcZ(3,30,i.pendingChannels.total_limbo_balance)," Sats"),e.xp6(3),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Pending Open (",i.pendingOpenChannelsLength,")"),e.xp6(2),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.pendingOpenChannels)("ngClass",e.VKq(32,xe,""!==i.errorMessage)),e.xp6(43),e.Q6J("matFooterRowDef",e.DdM(34,ep)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedOpenColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedOpenColumns),e.xp6(1),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Pending Force Closing (",i.pendingForceClosingChannelsLength,")"),e.xp6(2),e.Q6J("dataSource",i.pendingForceClosingChannels)("ngClass",e.VKq(35,xe,""!==i.errorMessage)),e.xp6(46),e.Q6J("matFooterRowDef",e.DdM(37,tp)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedForceClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedForceClosingColumns),e.xp6(1),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Pending Closing (",i.pendingClosingChannelsLength,")"),e.xp6(2),e.Q6J("dataSource",i.pendingClosingChannels)("ngClass",e.VKq(38,xe,""!==i.errorMessage)),e.xp6(34),e.Q6J("matFooterRowDef",e.DdM(40,np)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedClosingColumns),e.xp6(1),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Waiting Close (",i.pendingWaitClosingChannelsLength,")"),e.xp6(2),e.Q6J("dataSource",i.pendingWaitClosingChannels)("ngClass",e.VKq(41,xe,""!==i.errorMessage)),e.xp6(37),e.Q6J("matFooterRowDef",e.DdM(43,ip)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedWaitClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedWaitClosingColumns))},directives:[d.xw,V.pp,m.O5,D.pW,V.ib,V.yz,V.yK,d.yH,H.$V,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,d.Wh,P.gD,P.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,k.lW],pipes:[m.JJ,z.D3],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]}),n})();function op(n,a){if(1&n&&(e.TgZ(0,"mat-option",36),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function sp(n,a){1&n&&e._UZ(0,"mat-progress-bar",37)}function lp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Close Type"),e.qZA())}function rp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"mat-icon",41),e._uU(3,"info_outline"),e.qZA(),e._uU(4),e.qZA()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(2),e.Q6J("matTooltip",i.channelClosureType[t.close_type].tooltip),e.xp6(2),e.hij(" ",i.channelClosureType[t.close_type].name," ")}}function cp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Peer"),e.qZA())}const ue=function(n){return{width:n}};function up(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ue,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_alias)}}function pp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Pubkey"),e.qZA())}function mp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ue,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_pubkey)}}function dp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Channel Point"),e.qZA())}function _p(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ue,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function hp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Channel ID"),e.qZA())}function gp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ue,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function fp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Closing Tx Hash"),e.qZA())}function Cp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ue,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.closing_tx_hash)}}function xp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Chain Hash"),e.qZA())}function yp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ue,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chain_hash)}}function Tp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Open Initiator"),e.qZA())}function bp(n,a){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.open_initiator,"initiator_"))}}function vp(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Close Initiator"),e.qZA())}function Zp(n,a){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.close_initiator,"initiator_"))}}function Ap(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Timelocked Balance (Sats)"),e.qZA())}function Sp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.time_locked_balance)," ")}}function wp(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Capacity (Sats)"),e.qZA())}function Lp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.capacity)," ")}}function Fp(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Close Height"),e.qZA())}function qp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.close_height)," ")}}function Np(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Settled Balance (Sats)"),e.qZA())}function kp(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.settled_balance)," ")}}function Up(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",46)(1,"div",47)(2,"mat-select",48),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",49),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Op(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",39)(1,"span",45)(2,"button",50),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onClosedChannelClick(r,o)}),e._uU(3,"View Info"),e.qZA()()()}}function Ip(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No closed channel available."),e.qZA())}function Pp(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting closed channels..."),e.qZA())}function Rp(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Mp(n,a){if(1&n&&(e.TgZ(0,"td",51),e.YNc(1,Ip,2,0,"p",52),e.YNc(2,Pp,2,0,"p",52),e.YNc(3,Rp,2,1,"p",52),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Jp=function(n){return{"display-none":n}};function Dp(n,a){if(1&n&&e._UZ(0,"tr",53),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Jp,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function Qp(n,a){1&n&&e._UZ(0,"tr",54)}function Ep(n,a){1&n&&e._UZ(0,"tr",55)}const Yp=function(){return["all"]},Bp=function(n){return{"error-border":n,"overflow-auto":!0}},Hp=function(){return["no_closed_channel"]};let Vp=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.store=i,this.commonService=o,this.camelCaseWithReplace=s,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:l.IV,sortBy:"close_type",sortOrder:l.Pi.DESCENDING},this.channelClosureType=l.HW,this.faHistory=b.qO$,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new c.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.P2).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=t.closedChannels,this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(t)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.closedChannels.filterPredicate=(t,i)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(t).toLowerCase();break;case"close_type":o=t.close_type&&this.channelClosureType[t.close_type]&&this.channelClosureType[t.close_type].name?this.channelClosureType[t.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":o=this.camelCaseWithReplace.transform(t[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:o=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===o.indexOf(i):o.includes(i)}}onClosedChannelClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[t.close_type].name,title:"Close Type",width:30,type:l.Gi.STRING},{key:"settled_balance",value:t.settled_balance,title:"Settled Balance",width:30,type:l.Gi.NUMBER},{key:"time_locked_balance",value:t.time_locked_balance,title:"Time Locked Balance",width:40,type:l.Gi.NUMBER}],[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:30},{key:"capacity",value:t.capacity,title:"Capacity",width:30,type:l.Gi.NUMBER},{key:"close_height",value:t.close_height,title:"Close Height",width:40,type:l.Gi.NUMBER}],[{key:"remote_alias",value:t.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:t.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:t.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:t.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:l.Gi.STRING}]]}}}))}loadClosedChannelsTable(t){var i;this.closedChannels=new c.by([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.closedChannels.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.closedChannels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.closedChannels)}onDownloadCSV(){this.closedChannels.data&&this.closedChannels.data.length>0&&this.commonService.downloadFile(this.closedChannels.data,"Closed-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(I.v),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Channels")}])],decls:61,vars:16,consts:[["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","close_type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","closing_tx_hash"],["matColumnDef","chain_hash"],["matColumnDef","open_initiator"],["matColumnDef","close_initiator"],["matColumnDef","time_locked_balance"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","capacity"],["matColumnDef","close_height"],["matColumnDef","settled_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_closed_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row","fxLayoutAlign","start center"],[1,"info-icon","info-icon-text",3,"matTooltip"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"div",2),e.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),e.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),e.YNc(6,op,2,2,"mat-option",6),e.qZA()(),e.TgZ(7,"mat-form-field",4)(8,"input",7),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(9,"div",8),e.YNc(10,sp,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,lp,2,0,"th",13),e.YNc(15,rp,5,2,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,cp,2,0,"th",13),e.YNc(18,up,4,4,"td",14),e.BQk(),e.ynx(19,16),e.YNc(20,pp,2,0,"th",13),e.YNc(21,mp,4,4,"td",14),e.BQk(),e.ynx(22,17),e.YNc(23,dp,2,0,"th",13),e.YNc(24,_p,4,4,"td",14),e.BQk(),e.ynx(25,18),e.YNc(26,hp,2,0,"th",13),e.YNc(27,gp,4,4,"td",14),e.BQk(),e.ynx(28,19),e.YNc(29,fp,2,0,"th",13),e.YNc(30,Cp,4,4,"td",14),e.BQk(),e.ynx(31,20),e.YNc(32,xp,2,0,"th",13),e.YNc(33,yp,4,4,"td",14),e.BQk(),e.ynx(34,21),e.YNc(35,Tp,2,0,"th",13),e.YNc(36,bp,3,4,"td",14),e.BQk(),e.ynx(37,22),e.YNc(38,vp,2,0,"th",13),e.YNc(39,Zp,3,4,"td",14),e.BQk(),e.ynx(40,23),e.YNc(41,Ap,2,0,"th",24),e.YNc(42,Sp,4,3,"td",14),e.BQk(),e.ynx(43,25),e.YNc(44,wp,2,0,"th",24),e.YNc(45,Lp,4,3,"td",14),e.BQk(),e.ynx(46,26),e.YNc(47,Fp,2,0,"th",24),e.YNc(48,qp,4,3,"td",14),e.BQk(),e.ynx(49,27),e.YNc(50,Np,2,0,"th",24),e.YNc(51,kp,4,3,"td",14),e.BQk(),e.ynx(52,28),e.YNc(53,Up,6,0,"th",29),e.YNc(54,Op,4,0,"td",14),e.BQk(),e.ynx(55,30),e.YNc(56,Mp,4,3,"td",31),e.BQk(),e.YNc(57,Dp,1,3,"tr",32),e.YNc(58,Qp,1,0,"tr",33),e.YNc(59,Ep,1,0,"tr",34),e.qZA()(),e._UZ(60,"mat-paginator",35),e.qZA()),2&t&&(e.xp6(5),e.Q6J("ngModel",i.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(12,Yp).concat(i.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",i.selFilter),e.xp6(2),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.closedChannels)("ngClass",e.VKq(13,Bp,""!==i.errorMessage)),e.xp6(46),e.Q6J("matFooterRowDef",e.DdM(15,Hp)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,ae.Hw,K.gM,m.PC,q.Zl,P.$L,k.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[z.D3,m.JJ],styles:[""]}),n})();function Gp(n,a){if(1&n&&(e.TgZ(0,"mat-option",33),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function zp(n,a){1&n&&e._UZ(0,"mat-progress-bar",34)}function Wp(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Amount (Sats)"),e.qZA())}function $p(n,a){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.amount)," ")}}function Xp(n,a){if(1&n&&(e.ynx(0),e.YNc(1,$p,3,3,"span",39),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function Kp(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.qZA(),e.YNc(3,Xp,2,1,"ng-container",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.hij(" Active HTLCs: ",null==t||null==t.pending_htlcs?null:t.pending_htlcs.length," "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function jp(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Alias/Incoming"),e.qZA())}function em(n,a){if(1&n&&(e.TgZ(0,"span",37),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function tm(n,a){if(1&n&&(e.ynx(0),e.YNc(1,em,2,1,"span",41),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function nm(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.qZA(),e.YNc(3,tm,2,1,"ng-container",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(null==t?null:t.remote_alias),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function im(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Forwarding Channel"),e.qZA())}function am(n,a){if(1&n&&(e.TgZ(0,"span",37),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.forwarding_channel," ")}}function om(n,a){if(1&n&&(e.ynx(0),e.YNc(1,am,2,1,"span",41),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function sm(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.qZA(),e.YNc(3,om,2,1,"ng-container",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function lm(n,a){1&n&&(e.TgZ(0,"th",42)(1,"span",40),e._uU(2,"HTLC Index"),e.qZA()())}function rm(n,a){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.htlc_index)," ")}}function cm(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,rm,3,3,"span",39),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function um(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,cm,2,1,"span",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function pm(n,a){1&n&&(e.TgZ(0,"th",42)(1,"span",40),e._uU(2,"Forwarding HTLC Index"),e.qZA()())}function mm(n,a){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.forwarding_htlc_index)," ")}}function dm(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,mm,3,3,"span",39),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function _m(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,dm,2,1,"span",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function hm(n,a){1&n&&(e.TgZ(0,"th",42)(1,"span",40),e._uU(2,"Expiration Height"),e.qZA()())}function gm(n,a){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function fm(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,gm,3,4,"span",39),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function Cm(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,fm,2,1,"span",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function xm(n,a){1&n&&(e.TgZ(0,"th",43)(1,"span",40),e._uU(2,"Hash Lock"),e.qZA()())}function ym(n,a){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.hash_lock," ")}}function Tm(n,a){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,ym,2,1,"span",39),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function bm(n,a){if(1&n&&(e.TgZ(0,"td",44)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,Tm,2,1,"span",38),e.qZA()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function vm(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",45)(1,"div",46)(2,"mat-select",47),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",48),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Zm(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",50)(1,"button",53),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2).$implicit;return e.oxw().onHTLCClick(s,r)}),e._uU(2),e.qZA()()}if(2&n){const t=a.index;e.xp6(2),e.hij("View ",t+1,"")}}function Am(n,a){if(1&n&&(e.TgZ(0,"div"),e.YNc(1,Zm,3,1,"div",52),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function Sm(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",49)(1,"span",50)(2,"button",51),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return s.is_expanded=!s.is_expanded}),e._uU(3),e.qZA()(),e.YNc(4,Am,2,1,"div",38),e.qZA()}if(2&n){const t=a.$implicit;e.xp6(3),e.Oqu(t.is_expanded?"Hide":"Show"),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function wm(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No active htlc available."),e.qZA())}function Lm(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting active htlcs..."),e.qZA())}function Fm(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function qm(n,a){if(1&n&&(e.TgZ(0,"td",54),e.YNc(1,wm,2,0,"p",38),e.YNc(2,Lm,2,0,"p",38),e.YNc(3,Fm,2,1,"p",38),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Nm=function(n){return{"display-none":n}};function km(n,a){if(1&n&&e._UZ(0,"tr",55),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Nm,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Um(n,a){1&n&&e._UZ(0,"tr",56)}function Om(n,a){1&n&&e._UZ(0,"tr",57)}const Im=function(){return["all"]},Pm=function(n){return{"error-border":n}},Rm=function(){return["no_channel"]};let Mm=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.commonService=i,this.store=o,this.camelCaseWithReplace=s,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:l.IV,sortBy:"expiration_height",sortOrder:l.Pi.DESCENDING},this.channels=new c.by([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=(null===(i=t.channels)||void 0===i?void 0:i.filter(o=>o.pending_htlcs&&o.pending_htlcs.length>0))||[],this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:i.remote_alias,title:"Alias",width:100,type:l.Gi.STRING}],[{key:"amount",value:t.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER},{key:"incoming",value:t.incoming?"Yes":"No",title:"Incoming",width:50,type:l.Gi.STRING}],[{key:"expiration_height",value:t.expiration_height,title:"Expiration Height",width:50,type:l.Gi.NUMBER},{key:"hash_lock",value:t.hash_lock,title:"Hash Lock",width:50,type:l.Gi.STRING}]]}}}))}onChannelClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{channel:t,showCopy:!0,component:Le}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,i)=>{var o;let s="";return s="all"===this.selFilterBy?(t.remote_alias?t.remote_alias.toLowerCase():"")+(null===(o=t.pending_htlcs)||void 0===o?void 0:o.map(r=>JSON.stringify(r)+(r.incoming?"yes":"no"))):void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),s.includes(i)}}loadHTLCsTable(t){var i;this.channels=new c.by(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,s)=>{var r,_,g,f;switch(s){case"amount":return this.commonService.sortByKey(o.pending_htlcs,s,"number",null===(r=this.sort)||void 0===r?void 0:r.direction),o.pending_htlcs&&o.pending_htlcs.length?o.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(o.pending_htlcs,s,"boolean",null===(_=this.sort)||void 0===_?void 0:_.direction),o.remote_alias?o.remote_alias:o.remote_pubkey?o.remote_pubkey:null;case"expiration_height":return this.commonService.sortByKey(o.pending_htlcs,s,"number",null===(g=this.sort)||void 0===g?void 0:g.direction),o;case"hash_lock":return this.commonService.sortByKey(o.pending_htlcs,s,"number",null===(f=this.sort)||void 0===f?void 0:f.direction),o;default:return o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null}},null===(i=this.channels.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){const t=JSON.parse(JSON.stringify(this.channels.data));return null==t?void 0:t.reduce((o,s)=>o.concat(s.pending_htlcs?s.pending_htlcs:s),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("HTLCs")}])],decls:43,vars:16,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","incoming"],["matColumnDef","forwarding_channel"],["matColumnDef","htlc_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","forwarding_htlc_index"],["matColumnDef","expiration_height"],["matColumnDef","hash_lock"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","",1,"px-2"],["fxLayoutAlign","end center"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["fxLayoutAlign","end center",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"div",2),e.TgZ(3,"div",3)(4,"mat-form-field",4)(5,"mat-select",5),e.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),e.YNc(6,Gp,2,2,"mat-option",6),e.qZA()(),e.TgZ(7,"mat-form-field",4)(8,"input",7),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(9,"div",8),e.YNc(10,zp,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,Wp,2,0,"th",13),e.YNc(15,Kp,4,2,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,jp,2,0,"th",13),e.YNc(18,nm,4,2,"td",14),e.BQk(),e.ynx(19,16),e.YNc(20,im,2,0,"th",13),e.YNc(21,sm,4,2,"td",14),e.BQk(),e.ynx(22,17),e.YNc(23,lm,3,0,"th",18),e.YNc(24,um,4,2,"td",14),e.BQk(),e.ynx(25,19),e.YNc(26,pm,3,0,"th",18),e.YNc(27,_m,4,2,"td",14),e.BQk(),e.ynx(28,20),e.YNc(29,hm,3,0,"th",18),e.YNc(30,Cm,4,2,"td",14),e.BQk(),e.ynx(31,21),e.YNc(32,xm,3,0,"th",22),e.YNc(33,bm,4,2,"td",23),e.BQk(),e.ynx(34,24),e.YNc(35,vm,6,0,"th",25),e.YNc(36,Sm,5,2,"td",26),e.BQk(),e.ynx(37,27),e.YNc(38,qm,4,3,"td",28),e.BQk(),e.YNc(39,km,1,3,"tr",29),e.YNc(40,Um,1,0,"tr",30),e.YNc(41,Om,1,0,"tr",31),e.qZA()(),e._UZ(42,"mat-paginator",32),e.qZA()),2&t&&(e.xp6(5),e.Q6J("ngModel",i.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(12,Im).concat(i.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",i.selFilter),e.xp6(2),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.channels)("ngClass",e.VKq(13,Pm,""!==i.errorMessage)),e.xp6(28),e.Q6J("matFooterRowDef",e.DdM(15,Rm)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,P.$L,k.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.JJ],styles:[".mat-column-amount[_ngcontent-%COMP%], .mat-column-expiration_height[_ngcontent-%COMP%], .mat-column-htlc_index[_ngcontent-%COMP%], .mat-column-forwarding_htlc_index[_ngcontent-%COMP%]{flex:0 0 10%;width:10%}.mat-column-incoming[_ngcontent-%COMP%], .mat-column-hash_lock[_ngcontent-%COMP%], .mat-column-forwarding_channel[_ngcontent-%COMP%]{flex:0 0 15%;width:15%;text-overflow:ellipsis}.mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:3rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:10rem;width:10rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{margin-top:.5rem;min-width:9rem;width:9rem}"]}),n})();function Jm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Wallet password is required."),e.qZA())}let Dm=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,A.xG)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-unlock-wallet"]],decls:12,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","placeholder","Password","name","walletPassword","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","3",3,"click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"input",3),e.NdJ("ngModelChange",function(s){return i.walletPassword=s}),e.qZA(),e.TgZ(4,"mat-hint"),e._uU(5,"Enter Wallet Password"),e.qZA(),e.YNc(6,Jm,2,0,"mat-error",4),e.qZA(),e.TgZ(7,"div",5)(8,"button",6),e.NdJ("click",function(){return i.resetData()}),e._uU(9,"Clear Field"),e.qZA(),e.TgZ(10,"button",7),e.NdJ("click",function(){return i.onUnlockWallet()}),e._uU(11,"Unlock Wallet"),e.qZA()()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",i.walletPassword),e.xp6(3),e.Q6J("ngIf",!i.walletPassword))},directives:[d.xw,u._Y,u.JL,u.F,d.Wh,T.KE,d.yH,R.Nt,u.Fj,ee.h,u.Q7,u.JJ,u.On,T.bx,m.O5,T.TO,k.lW],styles:[""]}),n})();var Qm=x(1555);function Em(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",5),e._uU(3,"Warning: Your connection is unsecure, it's not safe to generate private keys over this connection.Are you sure you want to proceed?"),e.qZA(),e.TgZ(4,"div",6)(5,"button",7),e.NdJ("click",function(){e.CHM(t);const o=e.oxw();return o.proceed=!1,o.warnRes=!0}),e._uU(6,"Do Not Proceed"),e.qZA(),e.TgZ(7,"button",8),e.NdJ("click",function(){e.CHM(t);const o=e.oxw();return o.proceed=!0,o.warnRes=!0}),e._uU(8,"Proceed"),e.qZA()()()()}}function Ym(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",9)(1,"div",10),e._uU(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.qZA(),e.TgZ(3,"div",6)(4,"button",11),e.NdJ("click",function(){return e.CHM(t),e.oxw().warnRes=!1}),e._uU(5,"Go Back"),e.qZA()()()}}function Bm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function Hm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password must be at least 8 characters in length."),e.qZA())}function Vm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Confirm password is required."),e.qZA())}function Gm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Confirm password must be at least 8 characters in length."),e.qZA())}function zm(n,a){1&n&&(e.TgZ(0,"div",41)(1,"mat-icon",42),e._uU(2,"cancel"),e.qZA(),e._uU(3,"Passwords do not match. "),e.qZA())}function Wm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Cipher seed is required."),e.qZA())}function $m(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.qZA())}function Xm(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Passphrase is required."),e.qZA())}function Km(n,a){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"vpn_key"),e.qZA())}function jm(n,a){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"swap_calls"),e.qZA())}function ed(n,a){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"fingerprint"),e.qZA())}function td(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-vertical-stepper",12,13)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16),e._UZ(5,"input",17),e.TgZ(6,"mat-hint"),e._uU(7,"Enter Wallet Password"),e.qZA(),e.YNc(8,Bm,2,0,"mat-error",1),e.YNc(9,Hm,2,0,"mat-error",1),e.qZA(),e.TgZ(10,"mat-form-field",16),e._UZ(11,"input",18),e.TgZ(12,"mat-hint"),e._uU(13,"Confirm Wallet Password"),e.qZA(),e.YNc(14,Vm,2,0,"mat-error",1),e.YNc(15,Gm,2,0,"mat-error",1),e.qZA(),e.YNc(16,zm,4,0,"div",19),e.TgZ(17,"div",20)(18,"button",21),e._uU(19,"Next"),e.qZA()()()(),e.TgZ(20,"mat-step",22)(21,"form",23)(22,"div",24)(23,"mat-slide-toggle",25),e._uU(24,"Existing Cipher"),e.qZA(),e.TgZ(25,"mat-form-field",26),e._UZ(26,"input",27),e.TgZ(27,"mat-hint"),e._uU(28,"Cipher Seed"),e.qZA(),e.YNc(29,Wm,2,0,"mat-error",1),e.YNc(30,$m,2,0,"mat-error",1),e.qZA()(),e.TgZ(31,"div",28)(32,"button",29),e._uU(33,"Back"),e.qZA(),e.TgZ(34,"button",30),e._uU(35,"Next"),e.qZA()()()(),e.TgZ(36,"mat-step",31)(37,"form",23)(38,"div",24)(39,"mat-slide-toggle",32),e._uU(40,"Existing Passphrase"),e.qZA(),e.TgZ(41,"mat-form-field",33),e._UZ(42,"input",34),e.TgZ(43,"mat-hint"),e._uU(44,"Enter Passphrase"),e.qZA(),e.YNc(45,Xm,2,0,"mat-error",1),e.qZA()(),e.TgZ(46,"div",28)(47,"button",35),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(48,"Clear"),e.qZA(),e.TgZ(49,"button",36),e._uU(50,"Back"),e.qZA(),e.TgZ(51,"button",37),e.NdJ("click",function(){return e.CHM(t),e.oxw().onInitWallet()}),e._uU(52,"Initialize Wallet"),e.qZA()()()(),e.YNc(53,Km,2,0,"ng-template",38),e.YNc(54,jm,2,0,"ng-template",39),e.YNc(55,ed,2,0,"ng-template",40),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",t.passwordFormGroup),e.xp6(1),e.Q6J("formGroup",t.passwordFormGroup),e.xp6(5),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.required),e.xp6(1),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.xp6(5),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.xp6(1),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.xp6(1),e.Q6J("ngIf",(null==t.passwordFormGroup.errors?null:t.passwordFormGroup.errors.unmatchedPasswords)&&(t.passwordFormGroup.controls.initWalletPassword.touched||t.passwordFormGroup.controls.initWalletPassword.dirty)&&(t.passwordFormGroup.controls.initWalletConfirmPassword.touched||t.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.xp6(4),e.Q6J("stepControl",t.cipherFormGroup),e.xp6(1),e.Q6J("formGroup",t.cipherFormGroup),e.xp6(2),e.Q6J("labelPosition","before"),e.xp6(6),e.Q6J("ngIf",null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.required),e.xp6(1),e.Q6J("ngIf",!(null!=t.cipherFormGroup.controls.cipherSeed.errors&&t.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.xp6(6),e.Q6J("stepControl",t.passphraseFormGroup),e.xp6(1),e.Q6J("formGroup",t.passphraseFormGroup),e.xp6(2),e.Q6J("labelPosition","before"),e.xp6(6),e.Q6J("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function nd(n,a){if(1&n&&(e.TgZ(0,"span",48),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(t)}}function id(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",43),e._uU(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.qZA(),e.TgZ(4,"div",44),e.YNc(5,nd,2,1,"span",45),e.qZA(),e.TgZ(6,"div",46),e._uU(7,"Wallet initialization is done."),e.qZA(),e.TgZ(8,"div",46),e._uU(9,"The node will be usable only after LND has synced completely with the network."),e.qZA(),e.TgZ(10,"div",46),e._uU(11,"Click continue only after writing down the seed."),e.qZA(),e.TgZ(12,"div",6)(13,"button",47),e.NdJ("click",function(){return e.CHM(t),e.oxw().onGoToHome()}),e._uU(14,"Go To Home"),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(5),e.Q6J("ngForOf",t.genSeedResponse)}}function ad(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",46),e._uU(3,"Something went wrong! Unable to initialize wallet!"),e.qZA(),e.TgZ(4,"div",6)(5,"button",49),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(6,"Restart"),e.qZA()()()()}}function od(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",46),e._uU(3,"Wallet recovery is done."),e.qZA(),e.TgZ(4,"div",46),e._uU(5,"The node will be usable only after LND has synced completely with the network."),e.qZA(),e.TgZ(6,"div",6)(7,"button",50),e.NdJ("click",function(){return e.CHM(t),e.oxw().onGoToHome()}),e._uU(8,"Go To Home"),e.qZA()()()()}}function sd(n){const a=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return a&&t&&a.value!==t.value?{unmatchedPasswords:!0}:null}function ld(n){const a=n.value.toString().trim().split(",")||[];return a&&24!==a.length?{invalidCipher:!0}:null}let rd=(()=>{class n{constructor(t,i,o){this.store=t,this.formBuilder=i,this.lndEffects=o,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[u.kI.required,u.kI.minLength(8)]],initWalletConfirmPassword:["",[u.kI.required,u.kI.minLength(8)]]},{validators:sd}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[ld]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,h.R)(this.unsubs[0])).subscribe(t=>{t?(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.enable()):(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.disable())}),this.passphraseFormGroup.controls.enterPassphrase.valueChanges.pipe((0,h.R)(this.unsubs[1])).subscribe(t=>{t?(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.enable()):(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.disable())}),this.insecureLND=!window.location.protocol.includes("https:"),this.lndEffects.initWalletRes.pipe((0,h.R)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,h.R)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,A.y2)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse}}))})}onInitWallet(){if(this.passwordFormGroup.invalid||this.cipherFormGroup.invalid||this.passphraseFormGroup.invalid)return!0;if(this.cipherFormGroup.controls.existingCipher.value){const t=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,A.y2)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t}}))}else this.store.dispatch((0,A.fu)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,L.tw)()),this.store.dispatch((0,A.sQ)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh),e.Y36(u.qu),e.Y36(ce.l))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(t,i){if(1&t&&e.Gf(G.Vq,5),2&t){let o;e.iGM(o=e.CRH())&&(i.stepper=o.first)}},features:[e._Bn([{provide:Qm.gx,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["fxLayout","column",1,"padding-gap","mb-4"],[4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch",4,"ngIf"],[3,"linear",4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-2"],["fxFlex","100","fxLayoutAlign","start"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","2",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch"],["fxFlex","100",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",3,"click"],[3,"linear"],["stepper",""],["label","Wallet Password","state","password",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-1",3,"formGroup"],["fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","placeholder","Password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","password","placeholder","Confirm Password","name","initWalletConfirmPassword","formControlName","initWalletConfirmPassword","tabindex","6","required",""],["class","validation-error-message",4,"ngIf"],["fxLayout","row",1,"my-2"],["mat-flat-button","","color","primary","tabindex","7","type","submit","matStepperNext",""],["label","Cipher","state","cipher",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start",1,"mt-1",3,"formGroup"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet",3,"labelPosition"],["fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","placeholder","Comma separated array of 24 words cipher seed","name","cipherSeed","formControlName","cipherSeed","tabindex","9","required",""],["fxLayout","row",1,"mb-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","10","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","11","type","submit","matStepperNext","",1,"mt-1"],["label","Passphrase","state","passphrase",3,"stepControl"],["fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet",3,"labelPosition"],["fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","placeholder","Passphrase","name","passphrase","formControlName","passphrase","tabindex","12","required",""],["mat-stroked-button","","color","warn","tabindex","13","type","reset",1,"mr-1","mt-1",3,"click"],["mat-stroked-button","","tabindex","14","color","primary","type","button","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","15","type","submit",1,"mt-1",3,"click"],["matStepperIcon","password"],["matStepperIcon","cipher"],["matStepperIcon","passphrase"],[1,"validation-error-message"],[1,"validation-error-icon","red"],["fxFlex","100","fxLayoutAlign","start",1,"blinker"],["fxFlex","40","fxLayout","row wrap",1,"mt-2"],["fxFlex","25","fxLayoutAlign","start","class","genseed-message",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start",1,"mt-2"],["mat-flat-button","","color","primary","type","submit","tabindex","16",3,"click"],["fxFlex","25","fxLayoutAlign","start",1,"genseed-message"],["mat-stroked-button","","color","primary","tabindex","17","type","reset",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","18",3,"click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,Em,9,0,"div",1),e.YNc(2,Ym,6,0,"div",2),e.YNc(3,td,56,17,"mat-vertical-stepper",3),e.YNc(4,id,15,1,"div",1),e.YNc(5,ad,7,0,"div",1),e.YNc(6,od,9,0,"div",1),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",i.insecureLND&&!i.warnRes),e.xp6(1),e.Q6J("ngIf",i.warnRes&&!i.proceed),e.xp6(1),e.Q6J("ngIf",(!i.insecureLND||i.warnRes&&i.proceed)&&i.genSeedResponse.length<=0&&""===i.initWalletResponse),e.xp6(1),e.Q6J("ngIf",i.genSeedResponse.length>0&&""!==i.initWalletResponse),e.xp6(1),e.Q6J("ngIf",i.genSeedResponse.length>0&&""===i.initWalletResponse),e.xp6(1),e.Q6J("ngIf",i.genSeedResponse.length<=0&&""!==i.initWalletResponse))},directives:[d.xw,m.O5,u._Y,u.JL,u.F,d.Wh,d.yH,k.lW,G.Vq,G.C0,u.sg,T.KE,R.Nt,u.Fj,u.JJ,u.u,u.Q7,T.bx,T.TO,ae.Hw,G.Ic,ge.Rr,G.fd,G.z9,m.sg],styles:[""]}),n})(),cd=(()=>{class n{constructor(){this.faWallet=b.X5K}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-wallet"]],decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["label","Unlock"],["label","Initialize"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Wallet"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group")(8,"mat-tab",5),e._UZ(9,"rtl-unlock-wallet"),e.qZA(),e.TgZ(10,"mat-tab",6),e._UZ(11,"rtl-initialize-wallet"),e.qZA()()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faWallet))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,J.SP,J.uX,Dm,rd],styles:[""]}),n})();var ud=x(1365);function pd(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",11),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let md=(()=>{class n{constructor(t,i,o){this.logger=t,this.store=i,this.router=o,this.faExchangeAlt=b.Ssp,this.faChartPie=b.OS1,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"},{link:"lookuptransactions",name:"Lookup"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1]),(0,ud.M)(this.store.select(y.$k))).subscribe(([i,o])=>{this.currencyUnits=(null==o?void 0:o.currencyUnits)||[],this.balances=(null==o?void 0:o.userPersona)===l.ol.OPERATOR?[{title:"Local Capacity",dataValue:i.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:i.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:i.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:i.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-transactions"]],decls:19,vars:4,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Lightning Balance"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e._UZ(7,"rtl-currency-unit-converter",5),e.qZA()()(),e.TgZ(8,"div",6),e._UZ(9,"fa-icon",1),e.TgZ(10,"span",2),e._uU(11,"Lightning Transactions"),e.qZA()(),e.TgZ(12,"div",7)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",8),e.YNc(16,pd,2,3,"div",9),e.qZA(),e.TgZ(17,"div",10),e._UZ(18,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faChartPie),e.xp6(6),e.Q6J("values",i.balances),e.xp6(2),e.Q6J("icon",i.faExchangeAlt),e.xp6(7),e.Q6J("ngForOf",i.links))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,Ze.D,J.BU,m.sg,J.Nj,v.rH,d.yH,v.lC],styles:[""]}),n})();function dd(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let _d=(()=>{class n{constructor(t){this.router=t,this.faSearch=b.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-graph"]],decls:11,vars:2,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Graph Lookups"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,dd,2,3,"div",6),e.qZA(),e.TgZ(9,"div",7),e._UZ(10,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faSearch),e.xp6(7),e.Q6J("ngForOf",i.links))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,J.BU,m.sg,J.Nj,v.rH,d.yH,v.lC],styles:[""]}),n})();function hd(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Destination pubkey is required."),e.qZA())}function gd(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function fd(n,a){1&n&&e._UZ(0,"mat-progress-bar",39)}function Cd(n,a){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Hop"),e.qZA())}function xd(n,a){if(1&n&&(e.TgZ(0,"td",41),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(null==t?null:t.hop_sequence)}}function yd(n,a){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Peer"),e.qZA())}const ke=function(n){return{width:n}};function Td(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ke,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.pubkey_alias)}}function bd(n,a){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Peer Pubkey"),e.qZA())}function vd(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ke,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.pub_key)}}function Zd(n,a){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Channel ID"),e.qZA())}function Ad(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ke,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function Sd(n,a){1&n&&(e.TgZ(0,"th",40),e._uU(1,"TLV Payload"),e.qZA())}function wd(n,a){if(1&n&&(e.TgZ(0,"td",41),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(null!=t&&t.tlv_payload?"Yes":"No")}}function Ld(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Expiry"),e.qZA())}function Fd(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.expiry))}}function qd(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Capacity (Sats)"),e.qZA())}function Nd(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.chan_capacity))}}function kd(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Amount To Fwd (Sats)"),e.qZA())}function Ud(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.amt_to_forward)," ")}}function Od(n,a){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Fee (mSats)"),e.qZA())}function Id(n,a){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.fee_msat)," ")}}function Pd(n,a){1&n&&(e.TgZ(0,"th",46)(1,"div",47),e._uU(2,"Actions"),e.qZA()())}function Rd(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",48)(1,"button",49),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onHopClick(r,o)}),e._uU(2,"View Info"),e.qZA()()}}function Md(n,a){1&n&&e._UZ(0,"tr",50)}function Jd(n,a){1&n&&e._UZ(0,"tr",51)}const Dd=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}};let Qd=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.store=i,this.lndEffects=o,this.commonService=s,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:l.IV,sortBy:"hop_sequence",sortOrder:l.Pi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new c.by([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=b.FpQ,this.faExclamationTriangle=b.eHv,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i;this.qrHops=new c.by([]),t.routes&&t.routes.length&&t.routes.length>0&&t.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new c.by([...t.routes[0].hops]),this.qrHops.data=t.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.qrHops.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0})})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new c.by([]),this.flgLoading[0]=!0,this.store.dispatch((0,A.WO)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:t.hop_sequence,title:"Sequence",width:33,type:l.Gi.NUMBER},{key:"amt_to_forward",value:t.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:l.Gi.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:34,type:l.Gi.NUMBER}],[{key:"chan_capacity",value:t.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:l.Gi.NUMBER},{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:l.Gi.NUMBER}],[{key:"pubkey_alias",value:t.pubkey_alias,title:"Peer Alias",width:50,type:l.Gi.STRING},{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.Gi.STRING}],[{key:"pub_key",value:t.pub_key,title:"Peer Pubkey",width:100,type:l.Gi.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(ce.l),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(t,i){if(1&t&&e.Gf(S.YE,5),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first)}},decls:60,vars:15,consts:[["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["queryRoutesForm","ngForm"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","69","fxLayoutAlign","start end"],["matInput","","placeholder","Destination Pubkey","name","destinationPubkey","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxFlex","29","fxLayoutAlign","start end"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","type","number","required","",3,"ngModel","step","min","ngModelChange"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","hop_sequence"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pubkey_alias"],["matColumnDef","pub_key"],["matColumnDef","chan_id"],["matColumnDef","tlv_payload"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","chan_capacity"],["matColumnDef","amt_to_forward_msat"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(t,i){if(1&t){const o=e.EpF();e.TgZ(0,"div",0)(1,"form",1,2),e.NdJ("ngSubmit",function(){return e.CHM(o),e.MAs(2).form.valid&&i.onQueryRoutes()}),e.TgZ(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span"),e._uU(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.qZA()(),e.TgZ(7,"mat-form-field",5)(8,"input",6,7),e.NdJ("ngModelChange",function(r){return i.destinationPubkey=r}),e.qZA(),e.YNc(10,hd,2,0,"mat-error",8),e.qZA(),e.TgZ(11,"mat-form-field",9)(12,"input",10),e.NdJ("ngModelChange",function(r){return i.amount=r}),e.qZA(),e.YNc(13,gd,2,0,"mat-error",8),e.qZA(),e.TgZ(14,"div",11)(15,"button",12),e.NdJ("click",function(){return i.resetData()}),e._uU(16,"Clear"),e.qZA(),e.TgZ(17,"button",13),e._uU(18,"Query Route"),e.qZA()()(),e.TgZ(19,"div",14)(20,"div",15),e._UZ(21,"fa-icon",16),e.TgZ(22,"span",17),e._uU(23,"Transaction Route"),e.qZA()()(),e.TgZ(24,"div",18),e.YNc(25,fd,1,0,"mat-progress-bar",19),e.TgZ(26,"table",20,21),e.ynx(28,22),e.YNc(29,Cd,2,0,"th",23),e.YNc(30,xd,2,1,"td",24),e.BQk(),e.ynx(31,25),e.YNc(32,yd,2,0,"th",23),e.YNc(33,Td,4,4,"td",24),e.BQk(),e.ynx(34,26),e.YNc(35,bd,2,0,"th",23),e.YNc(36,vd,4,4,"td",24),e.BQk(),e.ynx(37,27),e.YNc(38,Zd,2,0,"th",23),e.YNc(39,Ad,4,4,"td",24),e.BQk(),e.ynx(40,28),e.YNc(41,Sd,2,0,"th",23),e.YNc(42,wd,2,1,"td",24),e.BQk(),e.ynx(43,29),e.YNc(44,Ld,2,0,"th",30),e.YNc(45,Fd,4,3,"td",24),e.BQk(),e.ynx(46,31),e.YNc(47,qd,2,0,"th",30),e.YNc(48,Nd,4,3,"td",24),e.BQk(),e.ynx(49,32),e.YNc(50,kd,2,0,"th",30),e.YNc(51,Ud,4,3,"td",24),e.BQk(),e.ynx(52,33),e.YNc(53,Od,2,0,"th",30),e.YNc(54,Id,4,3,"td",24),e.BQk(),e.ynx(55,34),e.YNc(56,Pd,3,0,"th",35),e.YNc(57,Rd,3,0,"td",36),e.BQk(),e.YNc(58,Md,1,0,"tr",37),e.YNc(59,Jd,1,0,"tr",38),e.qZA()()()}2&t&&(e.xp6(4),e.Q6J("icon",i.faExclamationTriangle),e.xp6(4),e.Q6J("ngModel",i.destinationPubkey),e.xp6(2),e.Q6J("ngIf",!i.destinationPubkey),e.xp6(2),e.Q6J("ngModel",i.amount)("step",1e3)("min",0),e.xp6(1),e.Q6J("ngIf",!i.amount),e.xp6(8),e.Q6J("icon",i.faRoute),e.xp6(4),e.Q6J("ngIf",!0===i.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",i.qrHops)("ngClass",e.VKq(13,Dd,"error"===i.flgLoading[0])),e.xp6(32),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns))},directives:[d.xw,d.yH,u._Y,u.JL,u.F,d.Wh,M.BN,T.KE,R.Nt,u.Fj,u.Q7,u.JJ,u.On,m.O5,T.TO,u.wV,u.qQ,ne.q,k.lW,H.$V,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,c.as,c.XQ,c.nj,c.Gk],pipes:[m.JJ],styles:[""]}),n})();var pe=x(9814);function Ed(n,a){if(1&n&&(e.TgZ(0,"span",9),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.AsE("",i.nodeFeaturesEnum[t.value.name]||t.value.name,": ",t.value.is_required?"Mandatory":"Optional","")}}function Yd(n,a){1&n&&(e.TgZ(0,"th",26),e._uU(1,"Network"),e.qZA())}function Bd(n,a){if(1&n&&(e.TgZ(0,"td",27),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(null==t?null:t.network)}}function Hd(n,a){1&n&&(e.TgZ(0,"th",26),e._uU(1,"Address"),e.qZA())}function Vd(n,a){if(1&n&&(e.TgZ(0,"td",27),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(null==t?null:t.addr)}}function Gd(n,a){1&n&&(e.TgZ(0,"th",28)(1,"div",29),e._uU(2,"Actions"),e.qZA()())}function zd(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",27)(1,"span",30)(2,"button",31),e.NdJ("copied",function(o){return e.CHM(t),e.oxw(2).onCopyNodeURI(o)}),e._uU(3,"Copy Node URI"),e.qZA()()()}if(2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(2),e.Q6J("payload",i.lookupResult.node.pub_key+"@"+t.addr)}}function Wd(n,a){1&n&&e._UZ(0,"tr",32)}function $d(n,a){1&n&&e._UZ(0,"tr",33)}const Xd=function(n){return{"background-color":n}};function Kd(n,a){if(1&n&&(e.TgZ(0,"div",1),e._UZ(1,"mat-divider",2),e.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),e._uU(5,"Alias"),e.qZA(),e.TgZ(6,"span",6),e._uU(7),e.TgZ(8,"span",7),e._uU(9),e.qZA()()(),e.TgZ(10,"div",8)(11,"h4",5),e._uU(12,"Pub Key"),e.qZA(),e.TgZ(13,"span",9),e._uU(14),e.qZA()()(),e._UZ(15,"mat-divider",10),e.TgZ(16,"div",3)(17,"div",4)(18,"h4",5),e._uU(19,"Last Update"),e.qZA(),e.TgZ(20,"span",6),e._uU(21),e.ALo(22,"date"),e.qZA()(),e.TgZ(23,"div",8)(24,"h4",5),e._uU(25,"Total Capacity (Sats)"),e.qZA(),e.TgZ(26,"span",6),e._uU(27),e.ALo(28,"number"),e.qZA()()(),e._UZ(29,"mat-divider",10),e.TgZ(30,"div",3)(31,"div",4)(32,"h4",5),e._uU(33,"Number of Channels"),e.qZA(),e.TgZ(34,"span",6),e._uU(35),e.ALo(36,"number"),e.qZA()(),e.TgZ(37,"div",11)(38,"h4",5),e._uU(39,"Features"),e.qZA(),e.YNc(40,Ed,2,2,"span",12),e.ALo(41,"keyvalue"),e.qZA()(),e._UZ(42,"mat-divider",10),e.TgZ(43,"div",13)(44,"h4",14),e._uU(45,"Addresses"),e.qZA(),e.TgZ(46,"div",15)(47,"table",16,17),e.ynx(49,18),e.YNc(50,Yd,2,0,"th",19),e.YNc(51,Bd,2,1,"td",20),e.BQk(),e.ynx(52,21),e.YNc(53,Hd,2,0,"th",19),e.YNc(54,Vd,2,1,"td",20),e.BQk(),e.ynx(55,22),e.YNc(56,Gd,3,0,"th",23),e.YNc(57,zd,4,1,"td",20),e.BQk(),e.YNc(58,Wd,1,0,"tr",24),e.YNc(59,$d,1,0,"tr",25),e.qZA()()()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(t.lookupResult.node.alias),e.xp6(1),e.Q6J("ngStyle",e.VKq(24,Xd,null==t.lookupResult.node?null:t.lookupResult.node.color)),e.xp6(1),e.Oqu(null==t.lookupResult.node?null:t.lookupResult.node.color),e.xp6(5),e.Oqu(t.lookupResult.node.pub_key),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.xi3(22,15,1e3*t.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.xp6(6),e.Oqu(e.lcZ(28,18,t.lookupResult.total_capacity)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.lcZ(36,20,t.lookupResult.num_channels)),e.xp6(5),e.Q6J("ngForOf",e.lcZ(41,22,t.lookupResult.node.features)),e.xp6(2),e.Q6J("inset",!0),e.xp6(5),e.Q6J("dataSource",t.lookupResult.node.addresses),e.xp6(11),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}let jd=(()=>{class n{constructor(t,i){this.logger=t,this.snackBar=i,this.nodeFeaturesEnum=l.hZ,this.displayedColumns=["network","addr","actions"]}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(oe.ux))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1",3,"inset"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start",1,"my-1"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["table",""],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1","rtlClipboard","",1,"btn-action-copy",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&e.YNc(0,Kd,60,26,"div",0),2&t&&e.Q6J("ngIf",i.lookupResult)},directives:[m.O5,d.xw,j.d,d.yH,d.Wh,m.PC,q.Zl,m.sg,H.$V,c.BZ,S.YE,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,k.lW,de.y,c.as,c.XQ,c.nj,c.Gk],pipes:[m.uU,m.JJ,m.Nd],styles:["div.bordered-box.table-actions-select.btn-action[_ngcontent-%COMP%]{min-width:13rem;width:13rem;min-height:3.6rem}button.mat-stroked-button.btn-action-copy[_ngcontent-%COMP%]{min-width:13rem;width:13rem}"]}),n})();function e_(n,a){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 1"),e.qZA())}function t_(n,a){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 1 (Your Node)"),e.qZA())}function n_(n,a){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 2"),e.qZA())}function i_(n,a){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 2 (Your Node)"),e.qZA())}function a_(n,a){if(1&n&&(e.TgZ(0,"div",1),e._UZ(1,"mat-divider",2),e.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),e._uU(5,"Channel ID"),e.qZA(),e.TgZ(6,"span",6),e._uU(7),e.qZA()(),e.TgZ(8,"div",7)(9,"h4",5),e._uU(10,"Channel Point"),e.qZA(),e.TgZ(11,"span",6),e._uU(12),e.qZA()()(),e._UZ(13,"mat-divider",8),e.TgZ(14,"div",3)(15,"div",4)(16,"h4",5),e._uU(17,"Last Update"),e.qZA(),e.TgZ(18,"span",6),e._uU(19),e.ALo(20,"date"),e.qZA()(),e.TgZ(21,"div",7)(22,"h4",5),e._uU(23,"Capacity (Sats)"),e.qZA(),e.TgZ(24,"span",6),e._uU(25),e.ALo(26,"number"),e.qZA()()(),e._UZ(27,"mat-divider",8),e.TgZ(28,"div",9)(29,"div",10)(30,"div",11),e.YNc(31,e_,2,0,"h3",12),e.YNc(32,t_,2,0,"h3",12),e.qZA(),e._UZ(33,"mat-divider",8),e.TgZ(34,"div",13)(35,"h4",5),e._uU(36,"Pubkey"),e.qZA(),e.TgZ(37,"span",6),e._uU(38),e.qZA()(),e._UZ(39,"mat-divider",8),e.TgZ(40,"div",14)(41,"h4",5),e._uU(42,"Time Lock Delta"),e.qZA(),e.TgZ(43,"span",6),e._uU(44),e.qZA()(),e._UZ(45,"mat-divider",8),e.TgZ(46,"div",14)(47,"h4",5),e._uU(48,"Min HTLC"),e.qZA(),e.TgZ(49,"span",6),e._uU(50),e.qZA()(),e._UZ(51,"mat-divider",8),e.TgZ(52,"div",14)(53,"h4",5),e._uU(54,"Max HTLC"),e.qZA(),e.TgZ(55,"span",6),e._uU(56),e.qZA()(),e._UZ(57,"mat-divider",8),e.TgZ(58,"div",14)(59,"h4",5),e._uU(60,"Fee Base Msat"),e.qZA(),e.TgZ(61,"span",6),e._uU(62),e.qZA()(),e._UZ(63,"mat-divider",8),e.TgZ(64,"div",14)(65,"h4",5),e._uU(66,"Fee Rate Milli Msat"),e.qZA(),e.TgZ(67,"span",6),e._uU(68),e.qZA()(),e._UZ(69,"mat-divider",8),e.TgZ(70,"div",14)(71,"h4",5),e._uU(72,"Disabled"),e.qZA(),e.TgZ(73,"span",6),e._uU(74),e.qZA()()(),e.TgZ(75,"div",10)(76,"div"),e.YNc(77,n_,2,0,"h3",12),e.YNc(78,i_,2,0,"h3",12),e.qZA(),e._UZ(79,"mat-divider",8),e.TgZ(80,"div",13)(81,"h4",5),e._uU(82,"Pubkey"),e.qZA(),e.TgZ(83,"span",6),e._uU(84),e.qZA()(),e._UZ(85,"mat-divider",8),e.TgZ(86,"div",14)(87,"h4",5),e._uU(88,"Time Lock Delta"),e.qZA(),e.TgZ(89,"span",6),e._uU(90),e.qZA()(),e._UZ(91,"mat-divider",8),e.TgZ(92,"div",14)(93,"h4",5),e._uU(94,"Min HTLC"),e.qZA(),e.TgZ(95,"span",6),e._uU(96),e.qZA()(),e._UZ(97,"mat-divider",8),e.TgZ(98,"div",14)(99,"h4",5),e._uU(100,"Max HTLC"),e.qZA(),e.TgZ(101,"span",6),e._uU(102),e.qZA()(),e._UZ(103,"mat-divider",8),e.TgZ(104,"div",14)(105,"h4",5),e._uU(106,"Fee Base Msat"),e.qZA(),e.TgZ(107,"span",6),e._uU(108),e.qZA()(),e._UZ(109,"mat-divider",8),e.TgZ(110,"div",14)(111,"h4",5),e._uU(112,"Fee Rate Milli Msat"),e.qZA(),e.TgZ(113,"span",6),e._uU(114),e.qZA()(),e._UZ(115,"mat-divider",8),e.TgZ(116,"div",14)(117,"h4",5),e._uU(118,"Disabled"),e.qZA(),e.TgZ(119,"span",6),e._uU(120),e.qZA()()()()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(t.lookupResult.channel_id),e.xp6(5),e.Oqu(t.lookupResult.chan_point),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.xi3(20,39,1e3*t.lookupResult.last_update,"dd/MMM/y HH:mm")),e.xp6(6),e.Oqu(e.lcZ(26,42,t.lookupResult.capacity)),e.xp6(2),e.Q6J("inset",!0),e.xp6(4),e.Q6J("ngIf",!t.node1_match),e.xp6(1),e.Q6J("ngIf",t.node1_match),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(t.lookupResult.node1_pub),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.time_lock_delta),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.min_htlc),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.max_htlc_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_base_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_rate_milli_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null!=t.lookupResult.node1_policy&&t.lookupResult.node1_policy.disabled?"Yes":"No"),e.xp6(3),e.Q6J("ngIf",!t.node2_match),e.xp6(1),e.Q6J("ngIf",t.node2_match),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(t.lookupResult.node2_pub),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.time_lock_delta),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.min_htlc),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.max_htlc_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_base_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_rate_milli_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null!=t.lookupResult.node2_policy&&t.lookupResult.node2_policy.disabled?"Yes":"No")}}let o_=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.lookupResult.node1_pub===t.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===t.identity_pubkey&&(this.node2_match=!0)})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxLayout","column","fxFlex","30","fxLayoutAlign","end start"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start"],[1,"my-1",3,"inset"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start start",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],["fxLayout","column","fxFlex","20"],["fxLayout","column","fxFlex","10"],[1,"page-title","font-bold-500"]],template:function(t,i){1&t&&e.YNc(0,a_,121,44,"div",0),2&t&&e.Q6J("ngIf",i.lookupResult)},directives:[m.O5,d.xw,j.d,d.yH,d.Wh],pipes:[m.uU,m.JJ],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}),n})();function s_(n,a){if(1&n&&(e.TgZ(0,"mat-radio-button",17),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t.id)("checked",i.selectedFieldId===t.id),e.xp6(1),e.hij(" ",t.name," ")}}function l_(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function r_(n,a){1&n&&e._UZ(0,"mat-progress-bar",20)}const c_=function(n){return{"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0}};function u_(n,a){if(1&n&&(e.TgZ(0,"div",18),e.YNc(1,r_,1,0,"mat-progress-bar",19),e._uU(2),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(3,c_,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.xp6(1),e.Q6J("ngIf","Getting lookup details..."===t.errorMessage),e.xp6(1),e.hij(" ",t.errorMessage," ")}}function p_(n,a){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-node-lookup",28),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("lookupResult",t.lookupValue)}}function m_(n,a){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-channel-lookup",28),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("lookupResult",t.lookupValue)}}function d_(n,a){1&n&&(e.TgZ(0,"span",27)(1,"h3"),e._uU(2,"Error! Unable to find details!"),e.qZA()())}function __(n,a){if(1&n&&(e.TgZ(0,"div",21)(1,"div",22)(2,"span",23),e._uU(3),e.qZA()(),e.TgZ(4,"div",24),e.YNc(5,p_,2,1,"span",25),e.YNc(6,m_,2,1,"span",25),e.YNc(7,d_,3,0,"span",26),e.qZA()()),2&n){const t=e.oxw();e.xp6(3),e.hij("",t.lookupFields[t.selectedFieldId].name," Details"),e.xp6(1),e.Q6J("ngSwitch",t.selectedFieldId),e.xp6(1),e.Q6J("ngSwitchCase",0),e.xp6(1),e.Q6J("ngSwitchCase",1)}}const h_=function(n){return{"mt-1":!0,"mt-2":n}};let nt=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.commonService=i,this.store=o,this.actions=s,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Channel ID"}],this.faSearch=b.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t.type===l.uR.SET_LOOKUP_LND||t.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.uR.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&t.payload.hasOwnProperty("node")||1===this.selectedFieldId&&t.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!t.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!t.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&"Lookup"===t.payload.action&&(this.errorMessage="",t.payload.status===l.Bn.ERROR&&(this.errorMessage="object"==typeof t.payload.message?JSON.stringify(t.payload.message):t.payload.message),t.payload.status===l.Bn.INITIATED&&(this.errorMessage=l.m6.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,A.Sf)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,A.$A)({payload:{uiMessage:l.m6.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(X.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lookups"]],decls:19,vars:10,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"placeholder","ngModel","change","ngModelChange"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6),e.NdJ("ngModelChange",function(s){return i.selectedFieldId=s})("change",function(s){return i.onSelectChange(s)}),e.YNc(7,s_,2,3,"mat-radio-button",7),e.qZA()(),e.TgZ(8,"mat-form-field",8)(9,"input",9,10),e.NdJ("change",function(){return i.clearLookupValue()})("ngModelChange",function(s){return i.lookupKey=s}),e.qZA(),e.YNc(11,l_,2,1,"mat-error",11),e.qZA(),e.TgZ(12,"div",12)(13,"button",13),e.NdJ("click",function(){return i.resetData()}),e._uU(14,"Clear"),e.qZA(),e.TgZ(15,"button",14),e.NdJ("click",function(){return i.onLookup()}),e._uU(16,"Lookup"),e.qZA()()(),e.YNc(17,u_,3,5,"div",15),e.YNc(18,__,8,4,"div",16),e.qZA()()()),2&t&&(e.xp6(6),e.Q6J("ngModel",i.selectedFieldId),e.xp6(1),e.Q6J("ngForOf",i.lookupFields),e.xp6(1),e.Q6J("ngClass",e.VKq(8,h_,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.xp6(1),e.Q6J("placeholder",(null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key")("ngModel",i.lookupKey),e.xp6(2),e.Q6J("ngIf",!i.lookupKey),e.xp6(6),e.Q6J("ngIf",""!==i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},directives:[d.xw,d.yH,d.Wh,Z.dn,u._Y,u.JL,u.F,pe.VQ,u.JJ,u.On,m.sg,pe.U0,T.KE,m.mk,q.oO,R.Nt,u.Fj,u.Q7,m.O5,T.TO,k.lW,D.pW,m.RF,m.n9,jd,o_,m.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}),n})();var Ue=x(6856);function g_(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid date format."),e.qZA())}function f_(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid date format."),e.qZA())}function C_(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",27),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let x_=(()=>{class n{constructor(t,i,o){this.logger=t,this.store=i,this.router=o,this.faMapSigns=b.SuH,this.today=new Date(Date.now()),this.lastMonthDay=new Date(this.today.getFullYear(),this.today.getMonth()-1,this.today.getDate()+1,0,0,0),this.yesterday=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate()-1,0,0,0),this.endDate=this.today,this.startDate=this.lastMonthDay,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"},{link:"nonroutingprs",name:"Non Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x]}ngOnInit(){this.onEventsFetch();const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,A.QJ)({payload:{forwarding_events:[]}})),this.endDate||(this.endDate=this.today),this.startDate||(this.startDate=new Date(this.endDate.getFullYear(),this.endDate.getMonth()-1,this.endDate.getDate()+1,0,0,0)),this.store.dispatch((0,A.u0)({payload:{end_time:Math.round(this.endDate.getTime()/1e3).toString(),start_time:Math.round(this.startDate.getTime()/1e3).toString()}}))}resetData(){this.endDate=this.today,this.startDate=this.lastMonthDay}ngOnDestroy(){this.resetData(),this.store.dispatch((0,A.QJ)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing"]],decls:35,vars:15,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"card-content-gap","mt-1"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mb-1",3,"ngSubmit"],["routingForm","ngForm"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","49","fxLayoutAlign","start"],["matInput","","placeholder","Start Date","name","startDate","tabindex","1",3,"matDatepicker","max","ngModel","ngModelChange"],["strtDate","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],["startDatepicker",""],[4,"ngIf"],["matInput","","placeholder","End Date","name","endDate","tabindex","2",3,"matDatepicker","min","max","ngModel","ngModelChange"],["enDate","ngModel"],["endDatepicker",""],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","fxFlex","100"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span",3),e._uU(4,"Routing"),e.qZA()(),e.TgZ(5,"div",4)(6,"mat-card",5)(7,"mat-card-content",6)(8,"form",7,8),e.NdJ("ngSubmit",function(){return i.onEventsFetch()}),e.TgZ(10,"div",9)(11,"mat-form-field",10)(12,"input",11,12),e.NdJ("ngModelChange",function(s){return i.startDate=s}),e.qZA(),e._UZ(14,"mat-datepicker-toggle",13)(15,"mat-datepicker",14,15),e.YNc(17,g_,2,0,"mat-error",16),e.qZA(),e.TgZ(18,"mat-form-field",10)(19,"input",17,18),e.NdJ("ngModelChange",function(s){return i.endDate=s}),e.qZA(),e._UZ(21,"mat-datepicker-toggle",13)(22,"mat-datepicker",14,19),e.YNc(24,f_,2,0,"mat-error",16),e.qZA()(),e.TgZ(25,"div",20)(26,"button",21),e.NdJ("click",function(){return i.resetData()}),e._uU(27,"Clear"),e.qZA(),e.TgZ(28,"button",22),e._uU(29,"Fetch Events"),e.qZA()()(),e.TgZ(30,"div",23)(31,"nav",24),e.YNc(32,C_,2,3,"div",25),e.qZA()(),e.TgZ(33,"div",26),e._UZ(34,"router-outlet"),e.qZA()()()()()),2&t){const o=e.MAs(13),s=e.MAs(16),r=e.MAs(20),_=e.MAs(23);e.xp6(2),e.Q6J("icon",i.faMapSigns),e.xp6(10),e.Q6J("matDatepicker",s)("max",i.today)("ngModel",i.startDate),e.xp6(2),e.Q6J("for",s),e.xp6(1),e.Q6J("startAt",i.startDate),e.xp6(2),e.Q6J("ngIf",o.errors),e.xp6(2),e.Q6J("matDatepicker",_)("min",i.startDate)("max",i.today)("ngModel",i.endDate),e.xp6(2),e.Q6J("for",_),e.xp6(1),e.Q6J("startAt",i.endDate),e.xp6(2),e.Q6J("ngIf",r.errors),e.xp6(8),e.Q6J("ngForOf",i.links)}},directives:[d.xw,d.Wh,M.BN,d.yH,Z.a8,Z.dn,u._Y,u.JL,u.F,T.KE,R.Nt,Ue.hl,et.F,u.Fj,u.JJ,u.On,Ue.nW,T.R9,Ue.Mq,m.O5,T.TO,ne.q,k.lW,J.BU,m.sg,J.Nj,v.rH,v.lC],styles:[""]}),n})();function y_(n,a){if(1&n&&(e.TgZ(0,"div",5),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function T_(n,a){if(1&n&&(e.TgZ(0,"mat-option",13),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}const b_=function(){return["all"]};function v_(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e._UZ(1,"div",7),e.TgZ(2,"div",8)(3,"mat-form-field",9)(4,"mat-select",10),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilterBy=o})("selectionChange",function(){e.CHM(t);const o=e.oxw();return o.selFilter="",o.applyFilter()}),e.YNc(5,T_,2,2,"mat-option",11),e.qZA()(),e.TgZ(6,"mat-form-field",9)(7,"input",12),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilter=o})("input",function(){return e.CHM(t),e.oxw().applyFilter()})("keyup",function(){return e.CHM(t),e.oxw().applyFilter()}),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(4),e.Q6J("ngModel",t.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(3,b_).concat(t.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",t.selFilter)}}function Z_(n,a){1&n&&e._UZ(0,"mat-progress-bar",37)}function A_(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Timestamp"),e.qZA())}function S_(n,a){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function w_(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Inbound Alias"),e.qZA())}const ye=function(n){return{width:n}};function L_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias_in)}}function F_(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Inbound Channel"),e.qZA())}function q_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id_in)}}function N_(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Outbound Alias"),e.qZA())}function k_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias_out)}}function U_(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Outbound Channel"),e.qZA())}function O_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id_out)}}function I_(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Inbound Amount (Sats)"),e.qZA())}function P_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",43),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amt_in))}}function R_(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Outbound Amount (Sats)"),e.qZA())}function M_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",43),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amt_out))}}function J_(n,a){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Fee (mSats)"),e.qZA())}function D_(n,a){if(1&n&&(e.TgZ(0,"td",39)(1,"span",43),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.fee_msat))}}function Q_(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",44)(1,"div",45)(2,"mat-select",46),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",47),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function E_(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",48)(1,"button",49),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw(2).onForwardingEventClick(r,o)}),e._uU(2,"View Info"),e.qZA()()}}function Y_(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No forwarding history available."),e.qZA())}function B_(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting forwarding history..."),e.qZA())}function H_(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function V_(n,a){if(1&n&&(e.TgZ(0,"td",50),e.YNc(1,Y_,2,0,"p",51),e.YNc(2,B_,2,0,"p",51),e.YNc(3,H_,2,1,"p",51),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const G_=function(n){return{"display-none":n}};function z_(n,a){if(1&n&&e._UZ(0,"tr",52),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,G_,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function W_(n,a){1&n&&e._UZ(0,"tr",53)}function $_(n,a){1&n&&e._UZ(0,"tr",54)}const X_=function(){return["no_event"]};function K_(n,a){if(1&n&&(e.TgZ(0,"div",14),e.YNc(1,Z_,1,0,"mat-progress-bar",15),e.TgZ(2,"table",16,17),e.ynx(4,18),e.YNc(5,A_,2,0,"th",19),e.YNc(6,S_,3,4,"td",20),e.BQk(),e.ynx(7,21),e.YNc(8,w_,2,0,"th",19),e.YNc(9,L_,4,4,"td",20),e.BQk(),e.ynx(10,22),e.YNc(11,F_,2,0,"th",19),e.YNc(12,q_,4,4,"td",20),e.BQk(),e.ynx(13,23),e.YNc(14,N_,2,0,"th",19),e.YNc(15,k_,4,4,"td",20),e.BQk(),e.ynx(16,24),e.YNc(17,U_,2,0,"th",19),e.YNc(18,O_,4,4,"td",20),e.BQk(),e.ynx(19,25),e.YNc(20,I_,2,0,"th",26),e.YNc(21,P_,4,3,"td",20),e.BQk(),e.ynx(22,27),e.YNc(23,R_,2,0,"th",26),e.YNc(24,M_,4,3,"td",20),e.BQk(),e.ynx(25,28),e.YNc(26,J_,2,0,"th",26),e.YNc(27,D_,4,3,"td",20),e.BQk(),e.ynx(28,29),e.YNc(29,Q_,6,0,"th",30),e.YNc(30,E_,3,0,"td",31),e.BQk(),e.ynx(31,32),e.YNc(32,V_,4,3,"td",33),e.BQk(),e.YNc(33,z_,1,3,"tr",34),e.YNc(34,W_,1,0,"tr",35),e.YNc(35,$_,1,0,"tr",36),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.forwardingHistoryEvents),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(5,X_)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}function j_(n,a){if(1&n&&e._UZ(0,"mat-paginator",55),2&n){const t=e.oxw();e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let it=(()=>{class n{constructor(t,i,o,s,r){this.logger=t,this.commonService=i,this.store=o,this.datePipe=s,this.camelCaseWithReplace=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.IV,sortBy:"timestamp",sortOrder:l.Pi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new c.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.pageId))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.pageId))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bo).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i;this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,(null===(i=t.apiCallStatus)||void 0===i?void 0:i.status)===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=t.forwardingHistory.forwarding_events||[],this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:l.Bn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,t.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}onForwardingEventClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:t.timestamp,title:"Timestamp",width:25,type:l.Gi.DATE_TIME},{key:"amt_in",value:t.amt_in,title:"Inbound Amount (Sats)",width:25,type:l.Gi.NUMBER},{key:"amt_out",value:t.amt_out,title:"Outbound Amount (Sats)",width:25,type:l.Gi.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:25,type:l.Gi.NUMBER}],[{key:"alias_in",value:t.alias_in,title:"Inbound Peer Alias",width:25,type:l.Gi.STRING},{key:"chan_id_in",value:t.chan_id_in,title:"Inbound Channel ID",width:25,type:l.Gi.STRING},{key:"alias_out",value:t.alias_out,title:"Outbound Peer Alias",width:25,type:l.Gi.STRING},{key:"chan_id_out",value:t.chan_id_out,title:"Outbound Channel ID",width:25,type:l.Gi.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,i)=>{var o,s;let r="";switch(this.selFilterBy){case"all":r=(t.timestamp?null===(o=this.datePipe.transform(new Date(1e3*t.timestamp),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"timestamp":r=(null===(s=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm"))||void 0===s?void 0:s.toLowerCase())||"";break;default:r=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return r.includes(i)}}loadForwardingEventsTable(t){var i;this.forwardingHistoryEvents=new c.by(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.forwardingHistoryEvents.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(m.uU),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Events")}]),e.TTD],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias_in"],["matColumnDef","chan_id_in"],["matColumnDef","alias_out"],["matColumnDef","chan_id_out"],["matColumnDef","amt_in"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_out"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,y_,2,1,"div",1),e.YNc(2,v_,8,4,"div",2),e.YNc(3,K_,36,6,"div",3),e.YNc(4,j_,1,3,"mat-paginator",4),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",""!==i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage))},directives:[d.xw,d.Wh,m.O5,d.yH,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,D.pW,c.BZ,S.YE,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,P.$L,k.lW,c.mD,c.yh,c.Ke,c.Q2,m.mk,q.oO,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.uU,m.JJ],styles:[""]}),n})();const eh=["tableIn"],th=["tableOut"],nh=["paginatorIn"],ih=["paginatorOut"];function ah(n,a){if(1&n&&(e.TgZ(0,"div",3),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function oh(n,a){1&n&&e._UZ(0,"mat-progress-bar",34)}function sh(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Channel ID"),e.qZA())}const Te=function(n){return{width:n}};function lh(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function rh(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Peer Alias"),e.qZA())}function ch(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias)}}function uh(n,a){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Events"),e.qZA())}function ph(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.events))}}function mh(n,a){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Total Amount (Sats)"),e.qZA())}function dh(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_amount))}}function _h(n,a){1&n&&(e.TgZ(0,"th",41)(1,"div",42),e._uU(2,"Actions"),e.qZA()())}function hh(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",43)(1,"button",44),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw(2).onRoutingPeerClick(r,o,"in")}),e._uU(2,"View Info"),e.qZA()()}}function gh(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No incoming routing peer available."),e.qZA())}function fh(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting incoming routing peers..."),e.qZA())}function Ch(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function xh(n,a){if(1&n&&(e.TgZ(0,"td",45),e.YNc(1,gh,2,0,"p",46),e.YNc(2,fh,2,0,"p",46),e.YNc(3,Ch,2,1,"p",46),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const at=function(n){return{"display-none":n}};function yh(n,a){if(1&n&&e._UZ(0,"tr",47),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,at,(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function Th(n,a){1&n&&e._UZ(0,"tr",48)}function bh(n,a){1&n&&e._UZ(0,"tr",49)}function vh(n,a){1&n&&e._UZ(0,"mat-progress-bar",34)}function Zh(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Channel ID"),e.qZA())}function Ah(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function Sh(n,a){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Peer Alias"),e.qZA())}function wh(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Te,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias)}}function Lh(n,a){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Events"),e.qZA())}function Fh(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.events))}}function qh(n,a){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Total Amount (Sats)"),e.qZA())}function Nh(n,a){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_amount))}}function kh(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No outgoing routing peer available."),e.qZA())}function Uh(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting outgoing routing peers..."),e.qZA())}function Oh(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function Ih(n,a){if(1&n&&(e.TgZ(0,"td",45),e.YNc(1,kh,2,0,"p",46),e.YNc(2,Uh,2,0,"p",46),e.YNc(3,Oh,2,1,"p",46),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Ph(n,a){if(1&n&&e._UZ(0,"tr",47),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,at,(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function Rh(n,a){1&n&&e._UZ(0,"tr",48)}function Mh(n,a){1&n&&e._UZ(0,"tr",49)}const Jh=function(n,a){return{"mt-2":n,"mt-1":a}},Dh=function(){return["no_incoming_event"]},Qh=function(n){return{"mt-2":n}},Eh=function(){return["no_outgoing_event"]};function Yh(n,a){if(1&n&&(e.TgZ(0,"div",4)(1,"div",5)(2,"div",6)(3,"div",7),e._uU(4,"Incoming"),e.qZA(),e._UZ(5,"div",8),e.qZA(),e.TgZ(6,"div",9),e.YNc(7,oh,1,0,"mat-progress-bar",10),e.TgZ(8,"table",11,12),e.ynx(10,13),e.YNc(11,sh,2,0,"th",14),e.YNc(12,lh,4,4,"td",15),e.BQk(),e.ynx(13,16),e.YNc(14,rh,2,0,"th",14),e.YNc(15,ch,4,4,"td",15),e.BQk(),e.ynx(16,17),e.YNc(17,uh,2,0,"th",18),e.YNc(18,ph,4,3,"td",15),e.BQk(),e.ynx(19,19),e.YNc(20,mh,2,0,"th",18),e.YNc(21,dh,4,3,"td",15),e.BQk(),e.ynx(22,20),e.YNc(23,_h,3,0,"th",21),e.YNc(24,hh,3,0,"td",22),e.BQk(),e.ynx(25,23),e.YNc(26,xh,4,3,"td",24),e.BQk(),e.YNc(27,yh,1,3,"tr",25),e.YNc(28,Th,1,0,"tr",26),e.YNc(29,bh,1,0,"tr",27),e.qZA()(),e._UZ(30,"mat-paginator",28,29),e.qZA(),e.TgZ(32,"div",5)(33,"div",6)(34,"div",7),e._uU(35,"Outgoing"),e.qZA(),e._UZ(36,"div",8),e.qZA(),e.TgZ(37,"div",9),e.YNc(38,vh,1,0,"mat-progress-bar",10),e.TgZ(39,"table",30,31),e.ynx(41,13),e.YNc(42,Zh,2,0,"th",14),e.YNc(43,Ah,4,4,"td",15),e.BQk(),e.ynx(44,16),e.YNc(45,Sh,2,0,"th",14),e.YNc(46,wh,4,4,"td",15),e.BQk(),e.ynx(47,17),e.YNc(48,Lh,2,0,"th",18),e.YNc(49,Fh,4,3,"td",15),e.BQk(),e.ynx(50,19),e.YNc(51,qh,2,0,"th",18),e.YNc(52,Nh,4,3,"td",15),e.BQk(),e.ynx(53,32),e.YNc(54,Ih,4,3,"td",24),e.BQk(),e.YNc(55,Ph,1,3,"tr",25),e.YNc(56,Rh,1,0,"tr",26),e.YNc(57,Mh,1,0,"tr",27),e.qZA()(),e._UZ(58,"mat-paginator",28,33),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Q6J("ngClass",e.WLB(18,Jh,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),e.xp6(5),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.routingPeersIncoming),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(21,Dh)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),e.xp6(3),e.Q6J("ngClass",e.VKq(22,Qh,t.screenSize!==t.screenSizeEnum.LG)),e.xp6(5),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.routingPeersOutgoing),e.xp6(16),e.Q6J("matFooterRowDef",e.DdM(24,Eh)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Bh=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.commonService=i,this.store=o,this.camelCaseWithReplace=s,this.nodePageDefs=l.hG,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.IV,sortBy:"total_amount",sortOrder:l.Pi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.by([]),this.routingPeersOutgoing=new c.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bo).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,(null===(i=t.apiCallStatus)||void 0===i?void 0:i.status)===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(t,i,o){let s=" Routing Information";s="in"===o?"Incoming"+s:"Outgoing"+s,this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:s,message:[[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.Gi.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:l.Gi.STRING}],[{key:"events",value:t.events,title:"Events",width:50,type:l.Gi.NUMBER},{key:"total_amount",value:t.total_amount,title:"Total Amount (Sats)",width:50,type:l.Gi.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,i)=>{let o="";return o="all"===this.selFilterByIn?JSON.stringify(t).toLowerCase():"string"==typeof t[this.selFilterByIn]?t[this.selFilterByIn].toLowerCase():"boolean"==typeof t[this.selFilterByIn]?t[this.selFilterByIn]?"yes":"no":t[this.selFilterByIn].toString(),o.includes(i)},this.routingPeersOutgoing.filterPredicate=(t,i)=>{var o;let s="";switch(this.selFilterByOut){case"all":s=JSON.stringify(t).toLowerCase();break;case"total_amount":case"total_fee":s=(null===(o=+(t[this.selFilterByOut]||0)/1e3)||void 0===o?void 0:o.toString())||"";break;default:s="string"==typeof t[this.selFilterByOut]?t[this.selFilterByOut].toLowerCase():"boolean"==typeof t[this.selFilterByOut]?t[this.selFilterByOut]?"yes":"no":t[this.selFilterByOut].toString()}return s.includes(i)}}loadRoutingPeersTable(t){if(t.length>0){const i=this.groupRoutingPeers(t);this.routingPeersIncoming=new c.by(i[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.Pi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.by(i[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.Pi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.by([]),this.routingPeersOutgoing=new c.by([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(t){const i=[],o=[];return t.forEach(s=>{const r=i.find(g=>g.chan_id===s.chan_id_in),_=o.find(g=>g.chan_id===s.chan_id_out);r?(r.events++,r.total_amount=+r.total_amount+ +(s.amt_in||0)):i.push({chan_id:s.chan_id_in,alias:s.alias_in,events:1,total_amount:+(s.amt_in||0)}),_?(_.events++,_.total_amount=+_.total_amount+ +(s.amt_out||0)):o.push({chan_id:s.chan_id_out,alias:s.alias_out,events:1,total_amount:+(s.amt_out||0)})}),[this.commonService.sortDescByKey(i,"total_amount"),this.commonService.sortDescByKey(o,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(t,i){if(1&t&&(e.Gf(eh,5,S.YE),e.Gf(th,5,S.YE),e.Gf(nh,5),e.Gf(ih,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sortIn=o.first),e.iGM(o=e.CRH())&&(i.sortOut=o.first),e.iGM(o=e.CRH())&&(i.paginatorIn=o.first),e.iGM(o=e.CRH())&&(i.paginatorOut=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Routing peers")}])],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["tableIn",""],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginatorIn",""],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["tableOut",""],["matColumnDef","no_outgoing_event"],["paginatorOut",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,ah,2,1,"div",1),e.YNc(2,Yh,60,25,"div",2),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",""!==i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage))},directives:[d.xw,d.Wh,m.O5,d.yH,m.mk,q.oO,H.$V,D.pW,c.BZ,S.YE,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,k.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.JJ],styles:[""]}),n})();function Hh(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",7),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let Vh=(()=>{class n{constructor(t){this.router=t,this.faChartBar=b.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-reports"]],decls:10,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Reports"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,Hh,2,3,"div",6),e.qZA(),e._UZ(9,"router-outlet"),e.qZA()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faChartBar),e.xp6(7),e.Q6J("ngForOf",i.links))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,J.BU,m.sg,J.Nj,v.rH,v.lC],styles:[""]}),n})();var ot=x(7671),st=x(1210);function Gh(n,a){1&n&&e._UZ(0,"mat-progress-bar",16)}function zh(n,a){if(1&n&&(e.TgZ(0,"div",17),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=e.oxw();e.Q6J("@fadeIn",t.events.total_fee_msat),e.xp6(1),e.AsE("",e.xi3(2,3,t.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.lcZ(3,6,(null==t.events||null==t.events.forwarding_events?null:t.events.forwarding_events.length)||0)," Events")}}function Wh(n,a){1&n&&(e.TgZ(0,"div",18),e._uU(1,"No routing report for the selected period"),e.qZA())}const $h=function(n){return{"error-border":n}};function Xh(n,a){if(1&n&&(e.TgZ(0,"div",19),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(2,$h,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.xp6(1),e.Oqu(t.errorMessage)}}function Kh(n,a){if(1&n&&(e.TgZ(0,"span")(1,"span",22),e._uU(2),e.ALo(3,"number"),e.qZA(),e.TgZ(4,"span",22),e._uU(5),e.ALo(6,"number"),e.qZA()()),2&n){const t=a.model,i=e.oxw(2);e.xp6(2),e.hij("Events: ",e.lcZ(3,2,(i.selReportBy===i.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),e.xp6(3),e.hij("Fee: ",e.xi3(6,4,(i.selReportBy===i.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function jh(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"ngx-charts-bar-vertical",20),e.NdJ("select",function(o){return e.CHM(t),e.oxw().onChartBarSelected(o)})("mouseup",function(o){return e.CHM(t),e.oxw().onChartMouseUp(o)}),e.YNc(1,Kh,7,7,"ng-template",null,21,e.W1O),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function eg(n,a){if(1&n&&e._UZ(0,"rtl-forwarding-history",23),2&n){const t=e.oxw();e.Q6J("pageId","reports")("tableId","routing")("eventsData",null==t.events?null:t.events.forwarding_events)("selFilter",t.eventFilterValue)}}let tg=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.dataService=i,this.commonService=o,this.store=s,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=l.Xr,this.selReportBy=l.Xr.FEES,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.unSubs=[new p.x,new p.x,new p.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=t.width/10;break;case l.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(t,i){this.errorMessage=l.m6.GET_FORWARDING_HISTORY;const o=Math.round(t.getTime()/1e3).toString(),s=Math.round(i.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",o,s).pipe((0,h.R)(this.unSubs[2])).subscribe({next:r=>{this.errorMessage="",r.forwarding_events&&r.forwarding_events.length?(r.forwarding_events=r.forwarding_events.reverse(),this.events=r,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(t):this.prepareFeeReport(t)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:r=>{this.errorMessage=r}})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===l.op[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){var i,o;const s=Math.round(t.getTime()/1e3),r=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.op[1]){for(let _=0;_<12;_++)r.push({name:l.gg[_].name,value:0,extra:{totalEvents:0}});null===(i=this.events.forwarding_events)||void 0===i||i.map(_=>{const g=new Date(1e3*+(_.timestamp||0)).getMonth();return r[g].value=r[g].value+ +(_.fee_msat||0)/1e3,r[g].extra.totalEvents=r[g].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}else{for(let _=0;_{const g=Math.floor((+(_.timestamp||0)-s)/this.secondsInADay);return r[g].value=r[g].value+ +(_.fee_msat||0)/1e3,r[g].extra.totalEvents=r[g].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}return r}prepareEventsReport(t){var i,o;const s=Math.round(t.getTime()/1e3),r=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.op[1]){for(let _=0;_<12;_++)r.push({name:l.gg[_].name,value:0,extra:{totalFees:0}});null===(i=this.events.forwarding_events)||void 0===i||i.map(_=>{const g=new Date(1e3*+(_.timestamp||0)).getMonth();return r[g].value=r[g].value+1,r[g].extra.totalFees=r[g].extra.totalFees+ +(_.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}else{for(let _=0;_{const g=Math.floor((+(_.timestamp||0)-s)/this.secondsInADay);return r[g].value=r[g].value+1,r[g].extra.totalFees=r[g].extra.totalFees+ +(_.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}return r}onSelectionChange(t){const i=t.selDate.getMonth(),o=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,i,1,0,0,0),this.endDate=new Date(o,i,this.getMonthDays(i,o),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,i){return 1===t&&i%4==0?l.gg[t].days+1:l.gg[t].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(ie.D),e.Y36(I.v),e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(t,i){1&t&&e.NdJ("mouseup",function(s){return i.onChartMouseUp(s)})},decls:20,vars:9,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["mode","indeterminate","class","mt-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x","my-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",3,"ngClass",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],[3,"pageId","tableId","eventsData","selFilter",4,"ngIf"],["mode","indeterminate",1,"mt-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1",3,"ngClass"],[1,"one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),e.NdJ("stepChanged",function(s){return i.onSelectionChange(s)}),e.qZA(),e.TgZ(2,"div",2)(3,"mat-radio-group",3),e.NdJ("ngModelChange",function(s){return i.selReportBy=s})("change",function(){return i.onSelReportByChange()}),e.TgZ(4,"span",4),e._uU(5,"Report By: "),e.qZA(),e.TgZ(6,"mat-radio-button",5),e._uU(7,"Fees"),e.qZA(),e.TgZ(8,"mat-radio-button",6),e._uU(9,"Events"),e.qZA()()(),e.YNc(10,Gh,1,0,"mat-progress-bar",7),e.TgZ(11,"div",8),e.YNc(12,zh,4,8,"div",9),e.YNc(13,Wh,2,0,"div",10),e.YNc(14,Xh,2,4,"div",11),e.TgZ(15,"div",12),e.YNc(16,jh,3,11,"ngx-charts-bar-vertical",13),e.qZA()(),e.TgZ(17,"div",14)(18,"div",12),e.YNc(19,eg,1,4,"rtl-forwarding-history",15),e.qZA()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",i.selReportBy),e.xp6(3),e.s9C("value",i.reportBy.FEES),e.xp6(2),e.s9C("value",i.reportBy.EVENTS),e.xp6(2),e.Q6J("ngIf","Getting Forwarding History..."===i.errorMessage),e.xp6(2),e.Q6J("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.xp6(1),e.Q6J("ngIf",(i.routingReportData.length<=0||i.events.forwarding_events.length<=0)&&""===i.errorMessage),e.xp6(1),e.Q6J("ngIf",""!==i.errorMessage),e.xp6(2),e.Q6J("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.xp6(3),e.Q6J("ngIf",i.events&&(null==i.events?null:i.events.forwarding_events)&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0))},directives:[d.xw,d.Wh,d.yH,ot.D,pe.VQ,u.JJ,u.On,pe.U0,m.O5,D.pW,m.mk,q.oO,st.K$,it],pipes:[m.JJ],styles:[""],data:{animation:[qe.J]}}),n})();var ng=x(9828),ig=x(165);function ag(n,a){1&n&&(e.TgZ(0,"div",11),e._UZ(1,"mat-progress-bar",12),e.TgZ(2,"span"),e._uU(3,"Getting transactions data..."),e.qZA()())}function og(n,a){if(1&n&&(e.TgZ(0,"div",13),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function sg(n,a){if(1&n&&(e.TgZ(0,"div",16),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.AsE(" Paid ",e.xi3(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.lcZ(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function lg(n,a){if(1&n&&(e.TgZ(0,"div",16),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.AsE(" Received ",e.xi3(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.lcZ(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function rg(n,a){if(1&n&&(e.TgZ(0,"div",14),e.YNc(1,sg,4,7,"div",15),e.YNc(2,lg,4,7,"div",15),e.qZA()),2&n){const t=e.oxw();e.Q6J("@fadeIn",t.transactionsReportSummary),e.xp6(1),e.Q6J("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod>0),e.xp6(1),e.Q6J("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function cg(n,a){1&n&&(e.TgZ(0,"div",17),e._uU(1,"No transactions report for the selected period"),e.qZA())}function ug(n,a){if(1&n&&(e.TgZ(0,"span",21),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=a.model;e.xp6(1),e.HOy("",t.name,": ",e.xi3(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",e.lcZ(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function pg(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"ngx-charts-bar-vertical-2d",19),e.NdJ("select",function(o){return e.CHM(t),e.oxw(2).onChartBarSelected(o)})("mouseup",function(o){return e.CHM(t),e.oxw(2).onChartMouseUp(o)}),e.YNc(1,ug,4,9,"ng-template",null,20,e.W1O),e.qZA()}if(2&n){const t=e.oxw(2);e.Q6J("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:8)}}function mg(n,a){if(1&n&&(e.TgZ(0,"div",9),e.YNc(1,pg,3,13,"ngx-charts-bar-vertical-2d",18),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",t.transactionsReportData.length>0&&t.transactionsNonZeroReportData.length>0)}}function dg(n,a){if(1&n&&e._UZ(0,"rtl-transactions-report-table",22),2&n){const t=e.oxw();e.Q6J("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let _g=(()=>{class n{constructor(t,i,o){this.logger=t,this.commonService=i,this.store=o,this.scrollRanges=l.op,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.IV,sortBy:"date",sortOrder:l.Pi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[{date:"",name:"1",series:[{extra:{total:0},name:"Paid",value:0},{extra:{total:0},name:"Received",value:0}]}],this.transactionsNonZeroReportData=[{amount_paid:0,amount_received:0,date:"",num_invoices:0,num_payments:0}],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(ng.AS).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.l5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{t.apiCallStatus.status===l.Bn.UN_INITIATED&&this.store.dispatch((0,A.Jo)()),this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=t.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=t.allLightningTransactions.listInvoicesAll.invoices||[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()),this.logger.info(t)}),this.commonService.containerSizeUpdated.pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=t.width/10;break;case l.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===l.op[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,i){var o,s;const r=Math.round(t.getTime()/1e3),_=Math.round(i.getTime()/1e3),g=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const f=null===(o=this.payments)||void 0===o?void 0:o.filter(C=>"SUCCEEDED"===C.status&&C.creation_date&&C.creation_date>=r&&C.creation_date<_),w=null===(s=this.invoices)||void 0===s?void 0:s.filter(C=>C.settled&&C.creation_date&&+C.creation_date>=r&&+C.creation_date<_);if(this.transactionsReportSummary.paymentsSelectedPeriod=f.length,this.transactionsReportSummary.invoicesSelectedPeriod=w.length,this.reportPeriod===l.op[1]){for(let C=0;C<12;C++)g.push({name:l.gg[C].name,date:new Date(t.getFullYear(),C,1,0,0,0,0),series:[{name:"Paid",value:0,extra:{total:0}},{name:"Received",value:0,extra:{total:0}}]});null==f||f.map(C=>{const E=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),g[E].series[0].value=g[E].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,g[E].series[0].extra.total=g[E].series[0].extra.total+1,this.transactionsReportSummary}),null==w||w.map(C=>{const E=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),g[E].series[1].value=g[E].series[1].value+ +(C.amt_paid_msat||0)/1e3,g[E].series[1].extra.total=g[E].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let C=0;C{const E=Math.floor((+(C.creation_date||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),g[E].series[0].value=g[E].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,g[E].series[0].extra.total=g[E].series[0].extra.total+1,this.transactionsReportSummary}),null==w||w.map(C=>{const E=Math.floor((+(C.creation_date||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),g[E].series[1].value=g[E].series[1].value+ +(C.amt_paid_msat||0)/1e3,g[E].series[1].extra.total=g[E].series[1].extra.total+1,this.transactionsReportSummary})}return g}prepareTableData(){var t;return null===(t=this.transactionsReportData)||void 0===t?void 0:t.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(t){const i=t.selDate.getMonth(),o=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,i,1,0,0,0),this.endDate=new Date(o,i,this.getMonthDays(i,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,i){return 1===t&&i%4==0?l.gg[t].days+1:l.gg[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(t,i){1&t&&e.NdJ("mouseup",function(s){return i.onChartMouseUp(s)})},decls:11,vars:6,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],[3,"stepChanged"],["class","p-2",4,"ngIf"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["class","mt-1",4,"ngIf"],[1,"mt-1"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],[1,"p-2"],["mode","indeterminate"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[1,"two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"rtl-horizontal-scroller",3),e.NdJ("stepChanged",function(s){return i.onSelectionChange(s)}),e.qZA(),e.YNc(4,ag,4,0,"div",4),e.YNc(5,og,2,1,"div",5),e.YNc(6,rg,3,3,"div",6),e.YNc(7,cg,2,0,"div",7),e.YNc(8,mg,2,1,"div",8),e.TgZ(9,"div",9),e.YNc(10,dg,1,5,"rtl-transactions-report-table",10),e.qZA()()()()),2&t&&(e.xp6(4),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.ERROR),e.xp6(1),e.Q6J("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",i.transactionsNonZeroReportData.length<=0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.xp6(2),e.Q6J("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED))},directives:[d.xw,d.Wh,d.yH,ot.D,m.O5,D.pW,st.H5,ig.g],pipes:[m.JJ],styles:[""],data:{animation:[qe.J]}}),n})();const hg=["form"];function gg(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"UTXO Label is required."),e.qZA())}function fg(n,a){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.labelError)}}function Cg(n,a){if(1&n&&(e.TgZ(0,"div",16),e._UZ(1,"fa-icon",17),e.YNc(2,fg,2,1,"span",11),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.labelError)}}let xg=(()=>{class n{constructor(t,i,o,s,r,_){this.dialogRef=t,this.data=i,this.dataService=o,this.store=s,this.snackBar=r,this.commonService=_,this.faExclamationTriangle=b.eHv,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.utxo=this.data.utxo,this.label=this.utxo.label||""}onLabelUTXO(){if(!this.label||""===this.label)return!0;this.labelError="",this.dataService.labelUTXO(this.utxo&&this.utxo.outpoint&&this.utxo.outpoint.txid_bytes?this.utxo.outpoint.txid_bytes:"",this.label,!0).pipe((0,h.R)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,A.mC)()),this.store.dispatch((0,A.Ly)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:t=>{this.labelError=t}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(ie.D),e.Y36(F.yh),e.Y36(oe.ux),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(t,i){if(1&t&&e.Gf(hg,7),2&t){let o;e.iGM(o=e.CRH())&&(i.form=o.first)}},decls:20,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex.gt-sm","100"],["autoFocus","","matInput","","placeholder","UTXO Label","name","label","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Label UTXO"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8),e.NdJ("submit",function(){return i.onLabelUTXO()})("reset",function(){return i.resetData()}),e.TgZ(11,"mat-form-field",9)(12,"input",10),e.NdJ("ngModelChange",function(s){return i.label=s}),e.qZA(),e.YNc(13,gg,2,0,"mat-error",11),e.qZA(),e.YNc(14,Cg,3,2,"div",12),e.TgZ(15,"div",13)(16,"button",14),e._uU(17,"Clear"),e.qZA(),e.TgZ(18,"button",15),e._uU(19,"Label UTXO"),e.qZA()()()()()()),2&t&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(6),e.Q6J("ngModel",i.label),e.xp6(1),e.Q6J("ngIf",!i.label),e.xp6(1),e.Q6J("ngIf",""!==i.labelError))},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Q.ZT,Z.dn,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,ee.h,u.Q7,u.JJ,u.On,m.O5,T.TO,M.BN],styles:[""]}),n})();function yg(n,a){if(1&n&&(e.TgZ(0,"mat-option",34),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function Tg(n,a){1&n&&e._UZ(0,"mat-progress-bar",35)}function bg(n,a){1&n&&e._UZ(0,"th",36)}function vg(n,a){1&n&&(e.TgZ(0,"span",39)(1,"mat-icon",40),e._uU(2,"warning"),e.qZA()())}function Zg(n,a){if(1&n&&(e.TgZ(0,"td",37),e.YNc(1,vg,3,0,"span",38),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(),o=e.MAs(47);e.xp6(1),e.Q6J("ngIf",t.amount_sat0))}}function Gg(n,a){1&n&&e._UZ(0,"tr",56)}function zg(n,a){1&n&&e._UZ(0,"tr",57)}function Wg(n,a){1&n&&e._UZ(0,"mat-icon",40)}const lt=function(){return["all"]},$g=function(n){return{"error-border":n}},Xg=function(){return["no_utxo"]};let Kg=(()=>{class n{constructor(t,i,o,s,r,_,g){this.logger=t,this.commonService=i,this.dataService=o,this.store=s,this.rtlEffects=r,this.decimalPipe=_,this.camelCaseWithReplace=g,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=b.aj4,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:l.IV,sortBy:"tx_id",sortOrder:l.Pi.DESCENDING},this.addressType=l.x$,this.displayedColumns=[],this.listUTXOs=new c.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.T4).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=null===(i=t.utxos)||void 0===i?void 0:i.filter(o=>+(o.amount_sat||0)0&&this.dustUtxos.length>0&&!this.isDustUTXO&&this.displayedColumns.unshift("is_dust"),this.loadUTXOsTable(this.isDustUTXO?this.dustUtxos:this.utxos)),this.logger.info(t)})}ngOnChanges(){!this.isDustUTXO&&this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos),this.isDustUTXO&&this.dustUtxos&&this.dustUtxos.length>0&&this.loadUTXOsTable(this.dustUtxos)}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,i)=>{var o,s,r,_,g;let f="";switch(this.selFilterBy){case"all":f=(t.label?t.label.toLowerCase():"")+((null===(o=t.outpoint)||void 0===o?void 0:o.txid_str)?t.outpoint.txid_str.toLowerCase():"")+((null===(s=t.outpoint)||void 0===s?void 0:s.output_index)?null===(r=t.outpoint)||void 0===r?void 0:r.output_index:"")+((null===(_=t.outpoint)||void 0===_?void 0:_.txid_bytes)?null===(g=t.outpoint)||void 0===g?void 0:g.txid_bytes.toLowerCase():"")+(t.address?t.address.toLowerCase():"")+(t.address_type?this.addressType[t.address_type].name.toLowerCase():"")+(t.amount_sat?t.amount_sat:"")+(t.confirmations?t.confirmations:"");break;case"is_dust":f=((null==t?void 0:t.amount_sat)||0){switch(s){case"is_dust":return+(o.amount_sat||0){var r,_;s&&this.dataService.leaseUTXO((null===(r=t.outpoint)||void 0===r?void 0:r.txid_bytes)||"",(null===(_=t.outpoint)||void 0===_?void 0:_.output_index)||0)})}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(ie.D),e.Y36(F.yh),e.Y36(me.V),e.Y36(m.JJ),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("UTXOs")}]),e.TTD],decls:48,vars:17,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","tx_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","label"],["matColumnDef","address_type"],["matColumnDef","address"],["matColumnDef","amount_sat"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["emptySpace",""],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row","fxLayoutAlign","start center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"mat-form-field",3)(4,"mat-select",4),e.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),e.YNc(5,yg,2,2,"mat-option",5),e.qZA()(),e.TgZ(6,"mat-form-field",3)(7,"input",6),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(8,"div",7)(9,"div",8),e.YNc(10,Tg,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,bg,1,0,"th",13),e.YNc(15,Zg,2,2,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,Ag,2,0,"th",16),e.YNc(18,Sg,4,4,"td",14),e.BQk(),e.ynx(19,17),e.YNc(20,wg,2,0,"th",18),e.YNc(21,Lg,3,1,"td",14),e.BQk(),e.ynx(22,19),e.YNc(23,Fg,2,0,"th",16),e.YNc(24,qg,4,4,"td",14),e.BQk(),e.ynx(25,20),e.YNc(26,Ng,2,0,"th",16),e.YNc(27,kg,3,1,"td",14),e.BQk(),e.ynx(28,21),e.YNc(29,Ug,2,0,"th",16),e.YNc(30,Og,4,4,"td",14),e.BQk(),e.ynx(31,22),e.YNc(32,Ig,2,0,"th",18),e.YNc(33,Pg,4,3,"td",14),e.BQk(),e.ynx(34,23),e.YNc(35,Rg,2,0,"th",18),e.YNc(36,Mg,4,3,"td",14),e.BQk(),e.ynx(37,24),e.YNc(38,Jg,6,0,"th",25),e.YNc(39,Dg,10,0,"td",26),e.BQk(),e.ynx(40,27),e.YNc(41,Bg,4,3,"td",28),e.BQk(),e.YNc(42,Vg,1,3,"tr",29),e.YNc(43,Gg,1,0,"tr",30),e.YNc(44,zg,1,0,"tr",31),e.qZA(),e._UZ(45,"mat-paginator",32),e.qZA()()(),e.YNc(46,Wg,1,0,"ng-template",null,33,e.W1O)),2&t&&(e.xp6(4),e.Q6J("ngModel",i.selFilterBy),e.xp6(1),e.Q6J("ngForOf",i.utxos&&i.utxos.length>0&&i.dustUtxos&&i.dustUtxos.length>0&&!i.isDustUTXO?e.DdM(12,lt).concat(i.displayedColumns.slice(0,-1)):e.DdM(13,lt).concat(i.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",i.selFilter),e.xp6(3),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.listUTXOs)("ngClass",e.VKq(14,$g,""!==i.errorMessage)),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(16,Xg)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.yH,d.Wh,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,K.gM,c.Dz,c.ev,ae.Hw,m.PC,q.Zl,P.$L,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.JJ],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:1.2rem;width:1.2rem}"]}),n})();function jg(n,a){if(1&n&&(e.TgZ(0,"mat-option",32),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function ef(n,a){1&n&&e._UZ(0,"mat-progress-bar",33)}function tf(n,a){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Date/Time"),e.qZA())}function nf(n,a){if(1&n&&(e.TgZ(0,"td",35),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function af(n,a){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Label"),e.qZA())}const Ie=function(n){return{width:n}};function of(n,a){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ie,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.label)}}function sf(n,a){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Block Hash"),e.qZA())}function lf(n,a){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ie,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.block_hash)}}function rf(n,a){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Transaction Hash"),e.qZA())}function cf(n,a){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ie,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.tx_hash)}}function uf(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Amount (Sats)"),e.qZA())}function pf(n,a){if(1&n&&(e.TgZ(0,"span",41),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.amount))}}function mf(n,a){if(1&n&&(e.TgZ(0,"span",42),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.hij("(",e.lcZ(2,1,-1*t.amount),")")}}function df(n,a){if(1&n&&(e.TgZ(0,"td",35),e.YNc(1,pf,3,3,"span",39),e.YNc(2,mf,3,3,"span",40),e.qZA()),2&n){const t=a.$implicit;e.xp6(1),e.Q6J("ngIf",t.amount>0||0===t.amount),e.xp6(1),e.Q6J("ngIf",t.amount<0)}}function _f(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Fees (Sats)"),e.qZA())}function hf(n,a){if(1&n&&(e.TgZ(0,"td",35)(1,"span",41),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_fees))}}function gf(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Block Height"),e.qZA())}function ff(n,a){if(1&n&&(e.TgZ(0,"td",35)(1,"span",41),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.block_height))}}function Cf(n,a){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Confirmations"),e.qZA())}function xf(n,a){if(1&n&&(e.TgZ(0,"td",35)(1,"span",41),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.num_confirmations)," ")}}function yf(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"th",43)(1,"div",44)(2,"mat-select",45),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",46),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Tf(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",47)(1,"button",48),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onTransactionClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function bf(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No transaction available."),e.qZA())}function vf(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting transactions..."),e.qZA())}function Zf(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Af(n,a){if(1&n&&(e.TgZ(0,"td",49),e.YNc(1,bf,2,0,"p",50),e.YNc(2,vf,2,0,"p",50),e.YNc(3,Zf,2,1,"p",50),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Sf=function(n){return{"display-none":n}};function wf(n,a){if(1&n&&e._UZ(0,"tr",51),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Sf,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function Lf(n,a){1&n&&e._UZ(0,"tr",52)}function Ff(n,a){1&n&&e._UZ(0,"tr",53)}const qf=function(){return["all"]},Nf=function(n){return{"error-border":n}},kf=function(){return["no_transaction"]};let Uf=(()=>{class n{constructor(t,i,o,s,r){this.logger=t,this.commonService=i,this.store=o,this.datePipe=s,this.camelCaseWithReplace=r,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:l.IV,sortBy:"time_stamp",sortOrder:l.Pi.DESCENDING},this.faHistory=b.qO$,this.displayedColumns=[],this.listTransactions=new c.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.dx).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.transactions&&t.transactions.length>0&&(this.transactions=t.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(t)})}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}onTransactionClick(t){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:t.block_hash,title:"Block Hash",width:100}],[{key:"tx_hash",value:t.tx_hash,title:"Transaction Hash",width:100}],[{key:"label",value:t.label,title:"Label",width:100,type:l.Gi.STRING}],[{key:"time_stamp",value:t.time_stamp,title:"Date/Time",width:50,type:l.Gi.DATE_TIME},{key:"block_height",value:t.block_height,title:"Block Height",width:50,type:l.Gi.NUMBER}],[{key:"num_confirmations",value:t.num_confirmations,title:"Number of Confirmations",width:34,type:l.Gi.NUMBER},{key:"total_fees",value:t.total_fees,title:"Total Fees (Sats)",width:33,type:l.Gi.NUMBER},{key:"amount",value:t.amount,title:"Amount (Sats)",width:33,type:l.Gi.NUMBER}],[{key:"dest_addresses",value:t.dest_addresses,title:"Destination Addresses",width:100,type:l.Gi.ARRAY}]],scrollable:t.dest_addresses&&t.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.listTransactions.filterPredicate=(t,i)=>{var o,s;let r="";switch(this.selFilterBy){case"all":r=(t.time_stamp?null===(o=this.datePipe.transform(new Date(1e3*t.time_stamp),"dd/MMM/y HH:mm"))||void 0===o?void 0:o.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"time_stamp":r=(null===(s=this.datePipe.transform(new Date(1e3*((null==t?void 0:t.time_stamp)||0)),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase())||"";break;default:r=void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return r.includes(i)}}loadTransactionsTable(t){var i;this.listTransactions=new c.by([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(o,s)=>o[s]&&isNaN(o[s])?o[s].toLocaleLowerCase():o[s]?+o[s]:null,null===(i=this.listTransactions.sort)||void 0===i||i.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(m.uU),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Transactions")}]),e.TTD],decls:46,vars:16,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","time_stamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["matColumnDef","block_hash"],["matColumnDef","tx_hash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_fees"],["matColumnDef","block_height"],["matColumnDef","num_confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"mat-form-field",3)(4,"mat-select",4),e.NdJ("ngModelChange",function(s){return i.selFilterBy=s})("selectionChange",function(){return i.selFilter="",i.applyFilter()}),e.YNc(5,jg,2,2,"mat-option",5),e.qZA()(),e.TgZ(6,"mat-form-field",3)(7,"input",6),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(8,"div",7)(9,"div",8),e.YNc(10,ef,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,tf,2,0,"th",13),e.YNc(15,nf,3,4,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,af,2,0,"th",13),e.YNc(18,of,4,4,"td",14),e.BQk(),e.ynx(19,16),e.YNc(20,sf,2,0,"th",13),e.YNc(21,lf,4,4,"td",14),e.BQk(),e.ynx(22,17),e.YNc(23,rf,2,0,"th",13),e.YNc(24,cf,4,4,"td",14),e.BQk(),e.ynx(25,18),e.YNc(26,uf,2,0,"th",19),e.YNc(27,df,3,2,"td",14),e.BQk(),e.ynx(28,20),e.YNc(29,_f,2,0,"th",19),e.YNc(30,hf,4,3,"td",14),e.BQk(),e.ynx(31,21),e.YNc(32,gf,2,0,"th",19),e.YNc(33,ff,4,3,"td",14),e.BQk(),e.ynx(34,22),e.YNc(35,Cf,2,0,"th",19),e.YNc(36,xf,4,3,"td",14),e.BQk(),e.ynx(37,23),e.YNc(38,yf,6,0,"th",24),e.YNc(39,Tf,3,0,"td",25),e.BQk(),e.ynx(40,26),e.YNc(41,Af,4,3,"td",27),e.BQk(),e.YNc(42,wf,1,3,"tr",28),e.YNc(43,Lf,1,0,"tr",29),e.YNc(44,Ff,1,0,"tr",30),e.qZA(),e._UZ(45,"mat-paginator",31),e.qZA()()()),2&t&&(e.xp6(4),e.Q6J("ngModel",i.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(12,qf).concat(i.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",i.selFilter),e.xp6(3),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.listTransactions)("ngClass",e.VKq(13,Nf,""!==i.errorMessage)),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(15,kf)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.yH,d.Wh,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,P.$L,k.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.uU,m.JJ],styles:[""]}),n})();function Of(n,a){if(1&n&&(e.TgZ(0,"span",5),e._uU(1,"UTXOs"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numUtxos)}}function If(n,a){if(1&n&&(e.TgZ(0,"span",5),e._uU(1,"Transactions"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numTransactions)}}function Pf(n,a){if(1&n&&(e.TgZ(0,"span",5),e._uU(1,"Dust UTXOs"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numDustUtxos)}}let Rf=(()=>{class n{constructor(t,i){this.logger=t,this.store=i,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.vpe,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new p.x,new p.x,new p.x]}ngOnInit(){this.store.dispatch((0,A.mC)()),this.store.dispatch((0,A.Ly)()),this.store.select(y.T4).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i;t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=null===(i=t.utxos)||void 0===i?void 0:i.filter(o=>o.amount_sat&&+o.amount_sat{t.transactions&&t.transactions.length>0&&(this.numTransactions=t.transactions.length),this.logger.info(t)})}onSelectedIndexChanged(t){this.selectedTableIndexChange.emit(t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},decls:11,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box"],[3,"selectedIndex","selectedIndexChange"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO","dustAmount"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"mat-tab-group",1),e.NdJ("selectedIndexChange",function(s){return i.onSelectedIndexChanged(s)}),e.TgZ(2,"mat-tab"),e.YNc(3,Of,2,1,"ng-template",2),e._UZ(4,"rtl-on-chain-utxos",3),e.qZA(),e.TgZ(5,"mat-tab"),e.YNc(6,If,2,1,"ng-template",2),e._UZ(7,"rtl-on-chain-transaction-history",4),e.qZA(),e.TgZ(8,"mat-tab"),e.YNc(9,Pf,2,1,"ng-template",2),e._UZ(10,"rtl-on-chain-utxos",3),e.qZA()()()),2&t&&(e.xp6(1),e.Q6J("selectedIndex",i.selectedTableIndex),e.xp6(3),e.Q6J("isDustUTXO",!1)("dustAmount",i.DUST_AMOUNT),e.xp6(6),e.Q6J("isDustUTXO",!0)("dustAmount",i.DUST_AMOUNT))},directives:[d.xw,d.yH,d.Wh,J.SP,J.uX,J.uD,Ae.k,Kg,Uf],styles:[""]}),n})();const Mf=function(n,a){return[n,a]};function Jf(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",12),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=null==s?null:s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.Q6J("active",i.activeLink===(null==t?null:t.link))("routerLink",e.WLB(3,Mf,null==t?null:t.link,null==i.selectedTable?null:i.selectedTable.name)),e.xp6(1),e.Oqu(null==t?null:t.name)}}let Df=(()=>{class n{constructor(t,i,o){this.store=t,this.router=i,this.activatedRoute=o,this.selNode={},this.faExchangeAlt=b.Ssp,this.faChartPie=b.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"trans"},{id:2,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(i=>i.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link,this.selectedTable=this.tables.find(s=>s.name===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[2])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:i.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:i.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(i=>i.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh),e.Y36(v.F0),e.Y36(v.gz))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain"]],decls:21,vars:5,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndex","selectedTableIndexChange"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"On-chain Balance"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e._UZ(7,"rtl-currency-unit-converter",5),e.qZA()()(),e.TgZ(8,"div",0),e._UZ(9,"fa-icon",1),e.TgZ(10,"span",2),e._uU(11,"On-chain Transactions"),e.qZA()(),e.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",7),e.YNc(16,Jf,2,6,"div",8),e.qZA(),e.TgZ(17,"div",9),e._UZ(18,"router-outlet"),e.qZA(),e.TgZ(19,"div",10)(20,"rtl-utxo-tables",11),e.NdJ("selectedTableIndexChange",function(s){return i.onSelectedTableIndexChanged(s)}),e.qZA()()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faChartPie),e.xp6(6),e.Q6J("values",i.balances),e.xp6(2),e.Q6J("icon",i.faExchangeAlt),e.xp6(7),e.Q6J("ngForOf",i.links),e.xp6(4),e.Q6J("selectedTableIndex",null==i.selectedTable?null:i.selectedTable.id))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,Ze.D,J.BU,m.sg,J.Nj,v.rH,d.yH,v.lC,Rf],styles:[""]}),n})();var Qf=x(9122);function Ef(n,a){if(1&n&&(e.TgZ(0,"mat-option",7),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",t.addressTp," ")}}let Yf=(()=>{class n{constructor(t,i,o){this.store=t,this.lndEffects=i,this.commonService=o,this.addressTypes=[],this.selectedAddressType=l._t[0],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(t.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?l._t:l._t.filter(i=>"4"!==i.addressId)})}onGenerateAddress(){this.store.dispatch((0,A._E)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,$.q)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,L.qR)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:Qf.n}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh),e.Y36(ce.l),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-receive"]],decls:8,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start end"],["fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["placeholder","Address Type","name","address_type","tabindex","1",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],[1,"mt-2"],["mat-flat-button","","color","primary","tabindex","2",1,"top-minus-15px",3,"click"],[3,"value"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-select",3),e.NdJ("ngModelChange",function(s){return i.selectedAddressType=s}),e.YNc(4,Ef,2,2,"mat-option",4),e.qZA()(),e.TgZ(5,"div",5)(6,"button",6),e.NdJ("click",function(){return i.onGenerateAddress()}),e._uU(7,"Generate Address"),e.qZA()()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",i.selectedAddressType),e.xp6(1),e.Q6J("ngForOf",i.addressTypes))},directives:[d.xw,d.Wh,T.KE,d.yH,P.gD,u.JJ,u.On,m.sg,B.ey,k.lW],styles:[""]}),n})();var Bf=x(8012),rt=x(8377);const Hf=["form"],Vf=["formSweepAll"],Gf=["stepper"];function zf(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Bitcoin address is required."),e.qZA())}function Wf(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.amountError)}}function $f(n,a){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(t)}}function Xf(n,a){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Kf(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function jf(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",23)(1,"input",32,33),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).transactionBlocks=o}),e.qZA(),e.YNc(3,Kf,2,0,"mat-error",14),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.transactionBlocks)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.transactionBlocks)}}function e0(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function t0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",23)(1,"input",34,35),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).transactionFees=o}),e.qZA(),e.YNc(3,e0,2,0,"mat-error",14),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.transactionFees)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.transactionFees)}}function n0(n,a){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.sendFundError)}}function i0(n,a){if(1&n&&(e.TgZ(0,"div",36),e._UZ(1,"fa-icon",37),e.YNc(2,n0,2,1,"span",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.sendFundError)}}function a0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"form",9,10),e.NdJ("submit",function(){return e.CHM(t),e.oxw().onSendFunds()})("reset",function(){return e.CHM(t),e.oxw().resetData()}),e.TgZ(2,"mat-form-field",11)(3,"input",12,13),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().transactionAddress=o}),e.qZA(),e.YNc(5,zf,2,0,"mat-error",14),e.qZA(),e.TgZ(6,"mat-form-field",15)(7,"input",16,17),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().transactionAmount=o}),e.qZA(),e.TgZ(9,"span",18),e._uU(10),e.qZA(),e.YNc(11,Wf,2,1,"mat-error",14),e.qZA(),e.TgZ(12,"mat-form-field",19)(13,"mat-select",20),e.NdJ("selectionChange",function(o){return e.CHM(t),e.oxw().onAmountUnitChange(o)}),e.YNc(14,$f,2,2,"mat-option",21),e.qZA()(),e.TgZ(15,"div",22)(16,"mat-form-field",23)(17,"mat-select",24),e.NdJ("valueChange",function(o){return e.CHM(t),e.oxw().selTransType=o}),e.YNc(18,Xf,2,2,"mat-option",21),e.qZA()(),e.YNc(19,jf,4,4,"mat-form-field",25),e.YNc(20,t0,4,4,"mat-form-field",25),e.qZA(),e._UZ(21,"div",26),e.YNc(22,i0,3,2,"div",27),e.TgZ(23,"div",28)(24,"button",29),e._uU(25,"Clear Fields"),e.qZA(),e.TgZ(26,"button",30),e._uU(27,"Send Funds"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.transactionAddress),e.xp6(2),e.Q6J("ngIf",!t.transactionAddress),e.xp6(2),e.Q6J("ngModel",t.transactionAmount)("step",100)("min",0),e.xp6(3),e.hij("",t.selAmountUnit," "),e.xp6(1),e.Q6J("ngIf",!t.transactionAmount),e.xp6(2),e.Q6J("value",t.selAmountUnit),e.xp6(1),e.Q6J("ngForOf",t.amountUnits),e.xp6(3),e.Q6J("value",t.selTransType),e.xp6(1),e.Q6J("ngForOf",t.transTypes),e.xp6(1),e.Q6J("ngIf","1"===t.selTransType),e.xp6(1),e.Q6J("ngIf","2"===t.selTransType),e.xp6(2),e.Q6J("ngIf",""!==t.sendFundError)}}function o0(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw(3);e.Oqu(t.passwordFormLabel)}}function s0(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function l0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"mat-step",42)(1,"form",61),e.YNc(2,o0,1,1,"ng-template",55),e.TgZ(3,"div",0)(4,"mat-form-field",1),e._UZ(5,"input",62),e.YNc(6,s0,2,0,"mat-error",14),e.qZA()(),e.TgZ(7,"div",63)(8,"button",64),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onAuthenticate()}),e._uU(9,"Confirm"),e.qZA()()()()}if(2&n){const t=e.oxw(2);e.Q6J("stepControl",t.passwordFormGroup)("editable",t.flgEditable),e.xp6(1),e.Q6J("formGroup",t.passwordFormGroup),e.xp6(5),e.Q6J("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function r0(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.sendFundFormLabel)}}function c0(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Bitcoin address is required."),e.qZA())}function u0(n,a){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=a.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function p0(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function m0(n,a){if(1&n&&(e.TgZ(0,"mat-form-field",65),e._UZ(1,"input",66),e.YNc(2,p0,2,0,"mat-error",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("step",1)("min",0),e.xp6(1),e.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionBlocks.errors?null:t.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function d0(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function _0(n,a){if(1&n&&(e.TgZ(0,"mat-form-field",65),e._UZ(1,"input",67),e.YNc(2,d0,2,0,"mat-error",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("step",1)("min",0),e.xp6(1),e.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionFees.errors?null:t.sendFundFormGroup.controls.transactionFees.errors.required)}}function h0(n,a){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.confirmFormLabel)}}function g0(n,a){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.sendFundError)}}function f0(n,a){if(1&n&&(e.TgZ(0,"div",36),e._UZ(1,"fa-icon",37),e.YNc(2,g0,2,1,"span",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.sendFundError)}}function C0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",38)(1,"mat-vertical-stepper",39,40),e.NdJ("selectionChange",function(o){return e.CHM(t),e.oxw().stepSelectionChanged(o)}),e.YNc(3,l0,10,4,"mat-step",41),e.TgZ(4,"mat-step",42)(5,"form",43),e.YNc(6,r0,1,1,"ng-template",44),e.TgZ(7,"div",45)(8,"mat-form-field",46),e._UZ(9,"input",47),e.YNc(10,c0,2,0,"mat-error",14),e.qZA(),e.TgZ(11,"mat-form-field",48)(12,"mat-select",49),e.YNc(13,u0,2,2,"mat-option",21),e.qZA()(),e.YNc(14,m0,3,3,"mat-form-field",50),e.YNc(15,_0,3,3,"mat-form-field",50),e.qZA(),e.TgZ(16,"div",51)(17,"button",52),e._uU(18,"Next"),e.qZA()()()(),e.TgZ(19,"mat-step",53)(20,"form",54),e.YNc(21,h0,1,1,"ng-template",55),e.TgZ(22,"div",38)(23,"div",56),e._UZ(24,"fa-icon",57),e.TgZ(25,"span"),e._uU(26,"You are about to sweep all funds from RTL. Are you sure?"),e.qZA()(),e.YNc(27,f0,3,2,"div",27),e.TgZ(28,"div",51)(29,"button",58),e.NdJ("click",function(){return e.CHM(t),e.oxw().onSendFunds()}),e._uU(30,"Sweep All Funds"),e.qZA()()()()()(),e.TgZ(31,"div",59)(32,"button",60),e._uU(33),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("linear",!0),e.xp6(2),e.Q6J("ngIf",!t.appConfig.sso.rtlSSO),e.xp6(1),e.Q6J("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),e.xp6(1),e.Q6J("formGroup",t.sendFundFormGroup),e.xp6(5),e.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),e.xp6(3),e.Q6J("ngForOf",t.transTypes),e.xp6(1),e.Q6J("ngIf","1"===t.sendFundFormGroup.controls.selTransType.value),e.xp6(1),e.Q6J("ngIf","2"===t.sendFundFormGroup.controls.selTransType.value),e.xp6(4),e.Q6J("stepControl",t.confirmFormGroup),e.xp6(1),e.Q6J("formGroup",t.confirmFormGroup),e.xp6(4),e.Q6J("icon",t.faExclamationTriangle),e.xp6(3),e.Q6J("ngIf",""!==t.sendFundError),e.xp6(5),e.Q6J("mat-dialog-close",!1),e.xp6(1),e.Oqu(t.flgValidated?"Close":"Cancel")}}let x0=(()=>{class n{constructor(t,i,o,s,r,_,g,f,w,C){this.dialogRef=t,this.data=i,this.logger=o,this.store=s,this.rtlEffects=r,this.commonService=_,this.decimalPipe=g,this.snackBar=f,this.actions=w,this.formBuilder=C,this.faExclamationTriangle=b.eHv,this.sweepAll=!1,this.selNode={},this.addressTypes=[],this.selectedAddress={},this.blockchainBalance={},this.information={},this.newAddress="",this.transactionAddress="",this.transactionAmount=null,this.transactionFees=null,this.transactionBlocks=null,this.transTypes=[{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],this.selTransType="1",this.fiatConversion=!1,this.amountUnits=l.uA,this.selAmountUnit=l.uA[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.Xz,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x]}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[u.kI.required]],password:["",[u.kI.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",u.kI.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",u.kI.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([u.kI.required]),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators(null),this.sendFundFormGroup.controls.transactionFees.setValue(null)):(this.sendFundFormGroup.controls.transactionBlocks.setValidators(null),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators([u.kI.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(rt.Yj).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.appConfig=t}),this.store.select(rt.dT).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[3]),(0,Y.h)(t=>t.type===l.uR.UPDATE_API_CALL_STATUS_LND||t.type===l.uR.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(t=>{t.type===l.uR.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,L.jW)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.Bn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,L.QO)({payload:Bf(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,$.q)(1)).subscribe(t=>{"ERROR"!==t?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="";const t={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(t.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(t.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(t.fees=this.sendFundFormGroup.controls.transactionFees.value)):(t.address=this.transactionAddress,"1"===this.selTransType&&(t.blocks=this.transactionBlocks),"2"===this.selTransType&&(t.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==l.NT.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?l.NT.OTHER:this.selAmountUnit,l.NT.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,h.R)(this.unSubs[4])).subscribe({next:i=>{var o;this.selAmountUnit=l.NT.SATS,t.amount=+((null===(o=this.decimalPipe.transform(i[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]]))||void 0===o?void 0:o.replace(/,/g,""))||0),this.store.dispatch((0,A.Wi)({payload:t}))},error:i=>{this.transactionAmount=null,this.selAmountUnit=l.NT.SATS,this.amountError="Conversion Error: "+i}}):this.store.dispatch((0,A.Wi)({payload:t}))}get invalidValues(){return this.sweepAll?!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||"1"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionBlocks.value||this.sendFundFormGroup.controls.transactionBlocks.value<=0)||"2"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionFees.value||this.sendFundFormGroup.controls.transactionFees.value<=0):!this.transactionAddress||""===this.transactionAddress||!this.transactionAmount||this.transactionAmount<=0||"1"===this.selTransType&&(!this.transactionBlocks||this.transactionBlocks<=0)||"2"===this.selTransType&&(!this.transactionFees||this.transactionFees<=0)}resetData(){this.sendFundError="",this.selTransType="1",this.transactionAddress="",this.transactionBlocks=null,this.transactionFees=null,this.sweepAll||(this.transactionAmount=null)}stepSelectionChanged(t){switch(this.sendFundError="",t.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+" | "+this.transTypes[this.sendFundFormGroup.controls.selTransType.value-1].name+("2"===this.sendFundFormGroup.controls.selTransType.value?" (Sats/vByte)":"")+": "+("1"===this.sendFundFormGroup.controls.selTransType.value?this.sendFundFormGroup.controls.transactionBlocks.value:this.sendFundFormGroup.controls.transactionFees.value)}t.selectedIndex{var g;this.selAmountUnit=t.value,i.transactionAmount=+((null===(g=i.decimalPipe.transform(_[s],i.currencyUnitFormats[s]))||void 0===g?void 0:g.replace(/,/g,""))||0)},error:_=>{i.transactionAmount=null,this.amountError="Conversion Error: "+_,this.selAmountUnit=o,s=o}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(F.yh),e.Y36(me.V),e.Y36(I.v),e.Y36(m.JJ),e.Y36(oe.ux),e.Y36(X.eX),e.Y36(u.qu))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(t,i){if(1&t&&(e.Gf(Hf,7),e.Gf(Vf,5),e.Gf(Gf,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.form=o.first),e.iGM(o=e.CRH())&&(i.formSweepAll=o.first),e.iGM(o=e.CRH())&&(i.stepper=o.first)}},decls:12,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["sweepAllBlock",""],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex.gt-sm","55"],["autoFocus","","matInput","","placeholder","Bitcoin Address","tabindex","1","name","address","required","",3,"ngModel","ngModelChange"],["address","ngModel"],[4,"ngIf"],["fxFlex.gt-sm","30"],["matInput","","placeholder","Amount","name","amt","type","number","tabindex","2","required","",3,"ngModel","step","min","ngModelChange"],["amnt","ngModel"],["matSuffix",""],["fxFlex.gt-sm","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","60","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","48"],["tabindex","4",3,"value","valueChange"],["fxFlex","48",4,"ngIf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["matInput","","placeholder","Number of Blocks","type","number","name","blcks","required","","tabindex","5",3,"ngModel","step","min","ngModelChange"],["blocks","ngModel"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","chainFees","required","","tabindex","6",3,"ngModel","step","min","ngModelChange"],["fees","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","98","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","placeholder","Bitcoin Address","tabindex","4","name","address","required",""],["fxFlex.gt-sm","25"],["formControlName","selTransType","tabindex","5"],["fxFlex.gt-sm","25","fxLayoutAlign","start end",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","button","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","placeholder","Password","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxFlex.gt-sm","25","fxLayoutAlign","start end"],["matInput","","formControlName","transactionBlocks","placeholder","Number of Blocks","type","number","name","blcks","required","","tabindex","6",3,"step","min"],["matInput","","formControlName","transactionFees","placeholder","Fees (Sats/vByte)","type","number","name","chainFees","required","","tabindex","7",3,"step","min"]],template:function(t,i){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6),e.YNc(9,a0,28,14,"form",7),e.qZA()()(),e.YNc(10,C0,34,15,"ng-template",null,8,e.W1O)),2&t){const o=e.MAs(11);e.xp6(5),e.Oqu(i.sweepAll?"Sweep All Funds":"Send Funds"),e.xp6(1),e.Q6J("mat-dialog-close",!1),e.xp6(3),e.Q6J("ngIf",!i.sweepAll)("ngIfElse",o)}},directives:[d.xw,d.yH,Z.dk,d.Wh,k.lW,Q.ZT,Z.dn,m.O5,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,ee.h,u.Q7,u.JJ,u.On,T.TO,u.wV,u.qQ,ne.q,T.R9,P.gD,m.sg,B.ey,M.BN,G.Vq,G.C0,u.sg,G.VY,u.u,G.Ic],styles:[""]}),n})(),ct=(()=>{class n{constructor(t,i){this.store=t,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new p.x,new p.x]}ngOnInit(){this.activatedRoute.data.pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,L.qR)({payload:{data:{sweepAll:this.sweepAll,component:x0}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(F.yh),e.Y36(v.gz))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return i.openSendFundsModal()}),e._uU(3),e.qZA()()()),2&t&&(e.xp6(3),e.Oqu(i.sweepAll?"Sweep All":"Send Funds"))},directives:[d.xw,d.yH,d.Wh,k.lW],styles:[""]}),n})();function y0(n,a){1&n&&e._UZ(0,"mat-progress-bar",26)}function T0(n,a){if(1&n&&e._UZ(0,"rtl-node-info",27),2&n){const t=e.oxw(3);e.Q6J("information",t.information)("showColorFieldSeparately",!0)}}function b0(n,a){if(1&n&&e._UZ(0,"rtl-channel-status-info",28),2&n){const t=e.oxw(3);e.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function v0(n,a){if(1&n&&e._UZ(0,"rtl-fee-info",29),2&n){const t=e.oxw(3);e.Q6J("fees",t.fees)("errorMessage",t.errorMessages[2])}}const ut=function(n){return{"dashboard-card-content":!0,"error-border":n}};function Z0(n,a){if(1&n&&(e.TgZ(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e._UZ(4,"fa-icon",17),e.TgZ(5,"span"),e._uU(6),e.qZA()()(),e.TgZ(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.YNc(10,y0,1,0,"mat-progress-bar",21),e.TgZ(11,"div",22),e.YNc(12,T0,1,2,"rtl-node-info",23),e.YNc(13,b0,1,2,"rtl-channel-status-info",24),e.YNc(14,v0,1,2,"rtl-fee-info",25),e.qZA()()()()()()),2&n){const t=a.$implicit,i=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(4),e.Q6J("icon",t.icon),e.xp6(2),e.Oqu(t.title),e.xp6(3),e.Q6J("ngClass",e.VKq(10,ut,"node"===t.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR)||"fee"===t.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),e.xp6(1),e.Q6J("ngIf","node"===t.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===t.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)||"fee"===t.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","node"),e.xp6(1),e.Q6J("ngSwitchCase","status"),e.xp6(1),e.Q6J("ngSwitchCase","fee")}}function A0(n,a){if(1&n&&(e.TgZ(0,"mat-grid-list",11),e.YNc(1,Z0,15,12,"mat-grid-tile",12),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngForOf",t.nodeCards)}}function S0(n,a){1&n&&e._UZ(0,"mat-progress-bar",26)}function w0(n,a){1&n&&e.GkF(0)}function L0(n,a){if(1&n&&(e.TgZ(0,"div",33),e.YNc(1,w0,1,0,"ng-container",34),e.qZA()),2&n){const t=e.oxw(2),i=e.MAs(9),o=e.MAs(11);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?i:o)}}function F0(n,a){1&n&&e.GkF(0)}function q0(n,a){if(1&n&&(e.TgZ(0,"div",33),e.YNc(1,F0,1,0,"ng-container",34),e.qZA()),2&n){const t=e.oxw(2),i=e.MAs(9),o=e.MAs(13);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?i:o)}}function N0(n,a){1&n&&e.GkF(0)}function k0(n,a){if(1&n&&(e.TgZ(0,"div",33),e.YNc(1,N0,1,0,"ng-container",34),e.qZA()),2&n){const t=e.oxw(2),i=e.MAs(9),o=e.MAs(15);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?i:o)}}function U0(n,a){if(1&n&&(e.TgZ(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",20),e.YNc(3,S0,1,0,"mat-progress-bar",21),e.TgZ(4,"div",22),e.YNc(5,L0,2,1,"div",32),e.YNc(6,q0,2,1,"div",32),e.YNc(7,k0,2,1,"div",32),e.qZA()()()()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(2),e.Q6J("ngClass",e.VKq(8,ut,i.apiCallStatusNetwork.status===i.apiCallStatusEnum.ERROR)),e.xp6(1),e.Q6J("ngIf",i.apiCallStatusNetwork.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","general"),e.xp6(1),e.Q6J("ngSwitchCase","channels"),e.xp6(1),e.Q6J("ngSwitchCase","degrees")}}function O0(n,a){if(1&n&&(e.TgZ(0,"div",35)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessages[1])}}function I0(n,a){if(1&n&&(e.TgZ(0,"div",36)(1,"div")(2,"h4",37),e._uU(3,"Network Capacity"),e.qZA(),e.TgZ(4,"div",38),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",37),e._uU(9,"Number of Nodes"),e.qZA(),e.TgZ(10,"div",38),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div")(14,"h4",37),e._uU(15,"Number of Channels"),e.qZA(),e.TgZ(16,"span",38),e._uU(17),e.ALo(18,"number"),e.qZA()()()),2&n){const t=e.oxw();e.xp6(5),e.hij("",e.lcZ(6,3,t.networkInfo.total_network_capacity)," Sats"),e.xp6(6),e.Oqu(e.lcZ(12,5,t.networkInfo.num_nodes)),e.xp6(6),e.Oqu(e.lcZ(18,7,t.networkInfo.num_channels))}}function P0(n,a){if(1&n&&(e.TgZ(0,"div",36)(1,"div")(2,"h4",37),e._uU(3,"Max Channel Size"),e.qZA(),e.TgZ(4,"div",38),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",37),e._uU(9,"Avg Channel Size"),e.qZA(),e.TgZ(10,"div",38),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div")(14,"h4",37),e._uU(15,"Min Channel Size"),e.qZA(),e.TgZ(16,"span",38),e._uU(17),e.ALo(18,"number"),e.qZA()()()),2&n){const t=e.oxw();e.xp6(5),e.Oqu(e.lcZ(6,3,t.networkInfo.max_channel_size)),e.xp6(6),e.Oqu(e.lcZ(12,5,t.networkInfo.avg_channel_size)),e.xp6(6),e.Oqu(e.lcZ(18,7,t.networkInfo.min_channel_size))}}function R0(n,a){if(1&n&&(e.TgZ(0,"div",36)(1,"div")(2,"h4",37),e._uU(3,"Max Out Degree"),e.qZA(),e.TgZ(4,"div",38),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",37),e._uU(9,"Avg Out Degree"),e.qZA(),e.TgZ(10,"div",38),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div",39),e._UZ(14,"h4",37)(15,"span",38),e.qZA()()),2&n){const t=e.oxw();e.xp6(5),e.Oqu(e.lcZ(6,2,t.networkInfo.max_out_degree)),e.xp6(6),e.Oqu(e.xi3(12,4,t.networkInfo.avg_out_degree,"1.0-2"))}}const M0=function(n){return{"mt-1":n}};let J0=(()=>{class n{constructor(t,i,o){this.logger=t,this.commonService=i,this.store=o,this.faProjectDiagram=b.TmZ,this.faBolt=b.BDt,this.faServer=b.xf3,this.faNetworkWired=b.kXW,this.selNode={},this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=l.cu,this.userPersonaEnum=l.ol,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.networkCards=[{id:"general",cols:3,rows:1},{id:"channels",cols:3,rows:1},{id:"degrees",cols:3,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:3,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:3,rows:1}]):(this.networkCards=[{id:"general",cols:1,rows:1},{id:"channels",cols:1,rows:1},{id:"degrees",cols:1,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:1,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:1,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:1,rows:1}])}ngOnInit(){this.store.select(y.bx).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=t.nodeSettings,this.information=t.information}),this.store.select(y.N7).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusNetwork=t.apiCallStatus,this.apiCallStatusNetwork.status===l.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=t.networkInfo}),this.store.select(y.JG).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var i,o,s,r,_;this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:null===(i=t.pendingChannelsSummary.open)||void 0===i?void 0:i.num_channels,capacity:null===(o=t.pendingChannelsSummary.open)||void 0===o?void 0:o.limbo_balance},this.channelsStatus.closing={num_channels:((null===(s=t.pendingChannelsSummary.closing)||void 0===s?void 0:s.num_channels)||0)+((null===(r=t.pendingChannelsSummary.force_closing)||void 0===r?void 0:r.num_channels)||0)+((null===(_=t.pendingChannelsSummary.waiting_close)||void 0===_?void 0:_.num_channels)||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.logger.info(t)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-network-info"]],decls:16,vars:6,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","3","rowHeight","330px",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container",3,"ngClass"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","3","rowHeight","250px"],["fxLayout","row",3,"colspan","rowspan",4,"ngFor","ngForOf"],["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["cols","3","rowHeight","330px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxLayout","row",3,"colspan","rowspan"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","h-93"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100"],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,A0,2,1,"mat-grid-list",1),e.TgZ(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span",4),e._uU(5,"Network"),e.qZA()(),e.TgZ(6,"mat-grid-list",5),e.YNc(7,U0,8,10,"mat-grid-tile",6),e.qZA()(),e.YNc(8,O0,3,1,"ng-template",null,7,e.W1O),e.YNc(10,I0,19,9,"ng-template",null,8,e.W1O),e.YNc(12,P0,19,9,"ng-template",null,9,e.W1O),e.YNc(14,R0,16,7,"ng-template",null,10,e.W1O)),2&t&&(e.xp6(1),e.Q6J("ngIf",i.selNode.userPersona!==i.userPersonaEnum.OPERATOR),e.xp6(1),e.Q6J("ngClass",e.VKq(4,M0,i.screenSize!==i.screenSizeEnum.XS)),e.xp6(1),e.Q6J("icon",i.faProjectDiagram),e.xp6(4),e.Q6J("ngForOf",i.networkCards))},directives:[d.xw,d.Wh,m.O5,he.Il,m.sg,he.DX,d.yH,M.BN,Z.a8,Z.dn,m.mk,q.oO,D.pW,m.RF,m.n9,He,Ge,Ve,m.tP],pipes:[m.JJ],styles:[""]}),n})();function D0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let Q0=(()=>{class n{constructor(t){this.router=t,this.faDownload=b.q7m,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x]}ngOnInit(){const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-backup"]],decls:11,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Channels Backup"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,D0,2,3,"div",6),e.qZA(),e.TgZ(9,"div",7),e._UZ(10,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faDownload),e.xp6(7),e.Q6J("ngForOf",i.links))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,J.BU,m.sg,J.Nj,v.rH,d.yH,v.lC],styles:[""]}),n})();function E0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",23)(1,"h4",24),e._uU(2),e.qZA(),e.TgZ(3,"div",25)(4,"button",26),e.NdJ("click",function(){return e.CHM(t),e.oxw().onRestoreChannels({})}),e._uU(5,"Restore All"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function Y0(n,a){if(1&n&&(e.TgZ(0,"div",27)(1,"h4",24),e._uU(2),e.qZA(),e.TgZ(3,"h4",28),e._uU(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function B0(n,a){if(1&n&&(e.TgZ(0,"div",27)(1,"h4",24),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function H0(n,a){1&n&&e._UZ(0,"mat-progress-bar",29)}function V0(n,a){1&n&&(e.TgZ(0,"th",30),e._uU(1,"Channel Point"),e.qZA())}const G0=function(n){return{"max-width":n}};function z0(n,a){if(1&n&&(e.TgZ(0,"td",31)(1,"div",32)(2,"span",33),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,G0,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function W0(n,a){1&n&&(e.TgZ(0,"th",34)(1,"div",35),e._uU(2,"Actions"),e.qZA()())}function $0(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",31)(1,"span",36)(2,"button",37),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onRestoreChannels(s)}),e._uU(3,"Restore"),e.qZA()()()}}function X0(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No singular channel backups available."),e.qZA())}function K0(n,a){if(1&n&&(e.TgZ(0,"td",38),e.YNc(1,X0,2,0,"p",39),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",!t.channels||!t.channels.data||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)}}const j0=function(n){return{"display-none":n}};function e2(n,a){if(1&n&&e._UZ(0,"tr",40),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,j0,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function t2(n,a){1&n&&e._UZ(0,"tr",41)}function n2(n,a){1&n&&e._UZ(0,"tr",42)}const i2=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},a2=function(){return["no_channel"]};let o2=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.store=i,this.lndEffects=o,this.commonService=s,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.selNode={},this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.by([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,A.tb)()),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.allRestoreExists=t.all_restore_exists,this.channelsData=t.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||t&&t.files)&&(this.flgLoading[0]=!1),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(t){this.store.dispatch((0,A.vV)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(t){this.channels=new c.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(i,o)=>(i.channel_point?i.channel_point.toLowerCase():"").includes(o),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(ce.l),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Channels")}])],decls:26,vars:16,consts:[["fxLayout","column",1,"mt-2"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100"],["fxLayout","row",1,"mt-2"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap"],["fxFlex","100",1,"mt-1"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,E0,6,1,"div",1),e.YNc(2,Y0,5,1,"div",2),e.YNc(3,B0,3,1,"div",2),e.TgZ(4,"div",3),e._UZ(5,"div",4),e.TgZ(6,"div",5),e._UZ(7,"div",6),e.TgZ(8,"mat-form-field",6)(9,"input",7),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(10,"div",8),e.YNc(11,H0,1,0,"mat-progress-bar",9),e.TgZ(12,"table",10,11),e.ynx(14,12),e.YNc(15,V0,2,0,"th",13),e.YNc(16,z0,4,4,"td",14),e.BQk(),e.ynx(17,15),e.YNc(18,W0,3,0,"th",16),e.YNc(19,$0,4,0,"td",14),e.BQk(),e.ynx(20,17),e.YNc(21,K0,2,1,"td",18),e.BQk(),e.YNc(22,e2,1,3,"tr",19),e.YNc(23,t2,1,0,"tr",20),e.YNc(24,n2,1,0,"tr",21),e.qZA()(),e._UZ(25,"mat-paginator",22),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",i.allRestoreExists),e.xp6(1),e.Q6J("ngIf",!i.allRestoreExists&&(!i.channels||(null==i.channels||null==i.channels.data?null:i.channels.data.length)<=0)),e.xp6(1),e.Q6J("ngIf",!i.allRestoreExists&&i.channels&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)>0),e.xp6(6),e.Q6J("ngModel",i.selFilter),e.xp6(2),e.Q6J("ngIf",!0===i.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",i.channels)("ngClass",e.VKq(13,i2,"error"===i.flgLoading[0])),e.xp6(10),e.Q6J("matFooterRowDef",e.DdM(15,a2)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,m.O5,d.Wh,d.yH,k.lW,T.KE,R.Nt,u.Fj,u.JJ,u.On,H.$V,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],styles:[""]}),n})();function s2(n,a){1&n&&e._UZ(0,"mat-progress-bar",32)}function l2(n,a){1&n&&(e.TgZ(0,"th",33),e._uU(1,"Channel Point"),e.qZA())}const r2=function(n){return{"max-width":n}};function c2(n,a){if(1&n&&(e.TgZ(0,"td",34)(1,"div",35)(2,"span",36),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,r2,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function u2(n,a){1&n&&(e.TgZ(0,"th",37)(1,"div",38),e._uU(2,"Actions"),e.qZA()())}function p2(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",39)(1,"div",38)(2,"mat-select",40),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",41),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onChannelClick(r,o)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",41),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onBackupChannels(s)}),e._uU(7,"Backup"),e.qZA(),e.TgZ(8,"mat-option",41),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onDownloadBackup(s)}),e._uU(9,"Download Backup"),e.qZA(),e.TgZ(10,"mat-option",41),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onVerifyChannels(s)}),e._uU(11,"Verify"),e.qZA()()()()}}function m2(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"No channel available."),e.qZA())}function d2(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting channels..."),e.qZA())}function _2(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function h2(n,a){if(1&n&&(e.TgZ(0,"td",42),e.YNc(1,m2,2,0,"p",43),e.YNc(2,d2,2,0,"p",43),e.YNc(3,_2,2,1,"p",43),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const g2=function(n){return{"display-none":n}};function f2(n,a){if(1&n&&e._UZ(0,"tr",44),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,g2,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function C2(n,a){1&n&&e._UZ(0,"tr",45)}function x2(n,a){1&n&&e._UZ(0,"tr",46)}const y2=function(n){return{"error-border":n}},T2=function(){return["no_channel"]};let b2=(()=>{class n{constructor(t,i,o,s){this.logger=t,this.store=i,this.actions=o,this.commonService=s,this.faInfoCircle=b.sqG,this.faExclamationTriangle=b.eHv,this.faArchive=b.N2j,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.selNode={},this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.by([]),this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.channels,this.channelsData.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(t=>t.type===l.uR.SET_CHANNELS_LND||t.type===l.pg.SHOW_FILE)).subscribe(t=>{var i;t.type===l.uR.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.pg.SHOW_FILE&&(this.commonService.downloadFile(t.payload,"channel-"+((null===(i=this.selectedChannel)||void 0===i?void 0:i.channel_point)?this.selectedChannel.channel_point:"all"),".bak",".bak"),this.selectedChannel=null)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadBackupTable(this.channelsData)}onBackupChannels(t){this.store.dispatch((0,A.Vv)({payload:{uiMessage:l.m6.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,A.Cp)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}onDownloadBackup(t){this.selectedChannel=t,this.store.dispatch((0,L.dc)({payload:{channelPoint:t.channel_point?t.channel_point:"all"}}))}onChannelClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{channel:t,showCopy:!1,component:Le}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(t){this.channels=new c.by(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(i,o)=>(i.channel_point?i.channel_point.toLowerCase():"").includes(o),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(F.yh),e.Y36(X.eX),e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Channels")}])],decls:44,vars:17,consts:[["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span"),e._uU(5,"Save your backup files in a redundant location."),e.qZA()(),e.TgZ(6,"div",4),e._UZ(7,"fa-icon",3),e.TgZ(8,"span")(9,"strong"),e._uU(10,"Backup Folder Location: "),e.qZA(),e._uU(11),e.qZA()(),e.TgZ(12,"div",5)(13,"button",6),e.NdJ("click",function(){return i.onVerifyChannels({})}),e._uU(14,"Verify All"),e.qZA(),e.TgZ(15,"button",7),e.NdJ("click",function(){return i.onBackupChannels({})}),e._uU(16,"Backup All"),e.qZA(),e.TgZ(17,"button",8),e.NdJ("click",function(){return i.onDownloadBackup({})}),e._uU(18,"Download Backup"),e.qZA()()(),e.TgZ(19,"div",9)(20,"div",10),e._UZ(21,"fa-icon",11),e.TgZ(22,"span",12),e._uU(23,"Backups"),e.qZA()(),e.TgZ(24,"div",13),e._UZ(25,"div",14),e.TgZ(26,"mat-form-field",14)(27,"input",15),e.NdJ("ngModelChange",function(s){return i.selFilter=s})("input",function(){return i.applyFilter()})("keyup",function(){return i.applyFilter()}),e.qZA()()()(),e.TgZ(28,"div",16),e.YNc(29,s2,1,0,"mat-progress-bar",17),e.TgZ(30,"table",18,19),e.ynx(32,20),e.YNc(33,l2,2,0,"th",21),e.YNc(34,c2,4,4,"td",22),e.BQk(),e.ynx(35,23),e.YNc(36,u2,3,0,"th",24),e.YNc(37,p2,12,0,"td",25),e.BQk(),e.ynx(38,26),e.YNc(39,h2,4,3,"td",27),e.BQk(),e.YNc(40,f2,1,3,"tr",28),e.YNc(41,C2,1,0,"tr",29),e.YNc(42,x2,1,0,"tr",30),e.qZA()(),e._UZ(43,"mat-paginator",31),e.qZA()),2&t&&(e.xp6(3),e.Q6J("icon",i.faExclamationTriangle),e.xp6(4),e.Q6J("icon",i.faInfoCircle),e.xp6(4),e.hij("",i.selNode.channelBackupPath,"."),e.xp6(10),e.Q6J("icon",i.faArchive),e.xp6(6),e.Q6J("ngModel",i.selFilter),e.xp6(2),e.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",i.channels)("ngClass",e.VKq(14,y2,""!==i.errorMessage)),e.xp6(10),e.Q6J("matFooterRowDef",e.DdM(16,T2)),e.xp6(1),e.Q6J("matHeaderRowDef",i.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",i.displayedColumns),e.xp6(1),e.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,M.BN,k.lW,T.KE,R.Nt,u.Fj,u.JJ,u.On,H.$V,m.O5,D.pW,c.BZ,S.YE,m.mk,q.oO,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,P.gD,P.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.NW],styles:[""]}),n})();function v2(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=a.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let Z2=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=b.hkK,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new p.x,new p.x]}ngOnInit(){const t=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(i=>i instanceof v.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(v.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-sign-verify-message"]],decls:11,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Sign/Verify Message"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,v2,2,3,"div",6),e.qZA(),e.TgZ(9,"div",7),e._UZ(10,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",i.faUserCheck),e.xp6(7),e.Q6J("ngForOf",i.links))},directives:[d.xw,d.Wh,M.BN,Z.a8,Z.dn,J.BU,m.sg,J.Nj,v.rH,d.yH,v.lC],styles:[""]}),n})();function A2(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Message is required."),e.qZA())}let S2=(()=>{class n{constructor(t,i,o){this.dataService=t,this.snackBar=i,this.logger=o,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new p.x,new p.x]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(ie.D),e.Y36(oe.ux),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-sign"]],decls:20,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to sign","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),e.NdJ("ngModelChange",function(s){return i.message=s})("keyup",function(){return i.onMessageChange()}),e.qZA(),e.YNc(5,A2,2,0,"mat-error",5),e.qZA(),e.TgZ(6,"div",6)(7,"button",7),e.NdJ("click",function(){return i.resetData()}),e._uU(8,"Clear Field"),e.qZA(),e.TgZ(9,"button",8),e.NdJ("click",function(){return i.onSign()}),e._uU(10,"Sign"),e.qZA()(),e._UZ(11,"mat-divider",9),e.TgZ(12,"div",10)(13,"p"),e._uU(14,"Generated Signature"),e.qZA()(),e.TgZ(15,"div",11),e._uU(16),e.qZA(),e.TgZ(17,"div",12)(18,"button",13),e.NdJ("copied",function(s){return i.onCopyField(s)}),e._uU(19,"Copy Signature"),e.qZA()()()()),2&t&&(e.xp6(4),e.Q6J("ngModel",i.message),e.xp6(1),e.Q6J("ngIf",!i.message),e.xp6(6),e.Q6J("inset",!0),e.xp6(5),e.Oqu(i.signature),e.xp6(2),e.Q6J("payload",i.signature))},directives:[d.xw,d.yH,d.Wh,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,ee.h,u.Q7,u.JJ,u.On,m.O5,T.TO,k.lW,j.d,de.y],styles:[""]}),n})();function w2(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Message is required."),e.qZA())}function L2(n,a){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Signature is required."),e.qZA())}function F2(n,a){1&n&&(e.TgZ(0,"p",13)(1,"mat-icon",14),e._uU(2,"close"),e.qZA(),e._uU(3,"Verification failed, please double check message and signature"),e.qZA())}function q2(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Pubkey Used"),e.qZA())}function N2(n,a){if(1&n&&(e.TgZ(0,"div",20)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw(2);e.xp6(2),e.Oqu(null==t.verifyRes?null:t.verifyRes.pubkey)}}function k2(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",21)(1,"button",22),e.NdJ("copied",function(o){return e.CHM(t),e.oxw(2).onCopyField(o)}),e._uU(2,"Copy Pubkey"),e.qZA()()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function U2(n,a){if(1&n&&(e.TgZ(0,"div",15),e._UZ(1,"mat-divider",16),e.TgZ(2,"div",17),e.YNc(3,q2,2,0,"p",5),e.qZA(),e.YNc(4,N2,3,1,"div",18),e.YNc(5,k2,3,1,"div",19),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("inset",!0),e.xp6(2),e.Q6J("ngIf",t.verifyRes.valid),e.xp6(1),e.Q6J("ngIf",t.verifyRes.valid),e.xp6(1),e.Q6J("ngIf",t.verifyRes.valid)}}let O2=(()=>{class n{constructor(t,i,o){this.dataService=t,this.snackBar=i,this.logger=o,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new p.x,new p.x]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(ie.D),e.Y36(oe.ux),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-verify"]],decls:17,vars:6,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to verify","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","placeholder","Signature provided","name","signature","tabindex","2","required","",3,"ngModel","ngModelChange","keyup"],["sign","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only h-4 padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),e.NdJ("ngModelChange",function(s){return i.message=s})("keyup",function(){return i.onChange()}),e.qZA(),e.YNc(5,w2,2,0,"mat-error",5),e.qZA(),e.TgZ(6,"mat-form-field",3)(7,"input",6,7),e.NdJ("ngModelChange",function(s){return i.signature=s})("keyup",function(){return i.onChange()}),e.qZA(),e.YNc(9,L2,2,0,"mat-error",5),e.qZA(),e.YNc(10,F2,4,0,"p",8),e.TgZ(11,"div",9)(12,"button",10),e.NdJ("click",function(){return i.resetData()}),e._uU(13,"Clear Fields"),e.qZA(),e.TgZ(14,"button",11),e.NdJ("click",function(){return i.onVerify()}),e._uU(15,"Verify"),e.qZA()(),e.YNc(16,U2,6,4,"div",12),e.qZA()()),2&t&&(e.xp6(4),e.Q6J("ngModel",i.message),e.xp6(1),e.Q6J("ngIf",!i.message),e.xp6(2),e.Q6J("ngModel",i.signature),e.xp6(2),e.Q6J("ngIf",!i.signature),e.xp6(1),e.Q6J("ngIf",i.showVerifyStatus&&!i.verifyRes.valid),e.xp6(6),e.Q6J("ngIf",i.showVerifyStatus&&i.verifyRes.valid))},directives:[d.xw,d.yH,d.Wh,u._Y,u.JL,u.F,T.KE,R.Nt,u.Fj,ee.h,u.Q7,u.JJ,u.On,m.O5,T.TO,ae.Hw,k.lW,j.d,de.y],styles:[""]}),n})();var I2=x(9442),O=x(1643);function P2(n,a){if(1&n&&(e.TgZ(0,"div",3),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function R2(n,a){if(1&n&&(e.TgZ(0,"mat-option",16),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(3);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}const M2=function(){return["all"]};function J2(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",9)(1,"div",10),e._uU(2,"Non Routing Peers"),e.qZA(),e.TgZ(3,"div",11)(4,"mat-form-field",12)(5,"mat-select",13),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).selFilterBy=o})("selectionChange",function(){e.CHM(t);const o=e.oxw(2);return o.selFilter="",o.applyFilter()}),e.YNc(6,R2,2,2,"mat-option",14),e.qZA()(),e.TgZ(7,"mat-form-field",12)(8,"input",15),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).selFilter=o})("input",function(){return e.CHM(t),e.oxw(2).applyFilter()})("keyup",function(){return e.CHM(t),e.oxw(2).applyFilter()}),e.qZA()()()()}if(2&n){const t=e.oxw(2);e.xp6(5),e.Q6J("ngModel",t.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(3,M2).concat(t.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",t.selFilter)}}function D2(n,a){1&n&&e._UZ(0,"mat-progress-bar",50)}function Q2(n,a){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Channel ID"),e.qZA())}const be=function(n){return{"max-width":n}};function E2(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,be,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function Y2(n,a){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Peer Alias"),e.qZA())}function B2(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,be,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_alias)}}function H2(n,a){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Peer Pubkey"),e.qZA())}function V2(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,be,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_pubkey)}}function G2(n,a){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Channel Point"),e.qZA())}function z2(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=a.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,be,i.screenSize===i.screenSizeEnum.XS?"10rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function W2(n,a){if(1&n&&(e.TgZ(0,"th",55),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.hij("Uptime (",t.timeUnit,")")}}function $2(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",t.uptime_str," ")}}function X2(n,a){if(1&n&&(e.TgZ(0,"th",55),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.hij("Lifetime (",t.timeUnit,")")}}function K2(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",t.lifetime_str," ")}}function j2(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Commit Fee (Sats)"),e.qZA())}function e6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_fee)," ")}}function t6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Commit Weight"),e.qZA())}function n6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_weight)," ")}}function i6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Fee/KW"),e.qZA())}function a6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.fee_per_kw)," ")}}function o6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Updates"),e.qZA())}function s6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.num_updates)," ")}}function l6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Unsettled Balance (Sats)"),e.qZA())}function r6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.unsettled_balance)," ")}}function c6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Capacity (Sats)"),e.qZA())}function u6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.capacity)," ")}}function p6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Local Reserve (Sats)"),e.qZA())}function m6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_chan_reserve_sat)," ")}}function d6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Remote Reserve (Sats)"),e.qZA())}function _6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_chan_reserve_sat)," ")}}function h6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Sats Sent"),e.qZA())}function g6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_satoshis_sent))}}function f6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Sats Received"),e.qZA())}function C6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_satoshis_received))}}function x6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Local Balance (Sats)"),e.qZA())}function y6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.local_balance))}}function T6(n,a){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function b6(n,a){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=a.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.remote_balance))}}function v6(n,a){1&n&&(e.TgZ(0,"th",57)(1,"div",58),e._uU(2,"Actions"),e.qZA()())}function Z6(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"td",59)(1,"button",60),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(3).onManagePeer(s)}),e._uU(2,"Manage"),e.qZA()()}}function A6(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"All peers are routing."),e.qZA())}function S6(n,a){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting non routing peers..."),e.qZA())}function w6(n,a){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(4);e.xp6(1),e.Oqu(t.errorMessage)}}function L6(n,a){if(1&n&&(e.TgZ(0,"td",61),e.YNc(1,A6,2,0,"p",62),e.YNc(2,S6,2,0,"p",62),e.YNc(3,w6,2,1,"p",62),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const F6=function(n){return{"display-none":n}};function q6(n,a){if(1&n&&e._UZ(0,"tr",63),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,F6,(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)>0))}}function N6(n,a){1&n&&e._UZ(0,"tr",64)}function k6(n,a){1&n&&e._UZ(0,"tr",65)}const U6=function(){return["no_non_routing_event"]};function O6(n,a){if(1&n&&(e.TgZ(0,"div",17),e.YNc(1,D2,1,0,"mat-progress-bar",18),e.TgZ(2,"table",19,20),e.ynx(4,21),e.YNc(5,Q2,2,0,"th",22),e.YNc(6,E2,4,4,"td",23),e.BQk(),e.ynx(7,24),e.YNc(8,Y2,2,0,"th",22),e.YNc(9,B2,4,4,"td",23),e.BQk(),e.ynx(10,25),e.YNc(11,H2,2,0,"th",22),e.YNc(12,V2,4,4,"td",23),e.BQk(),e.ynx(13,26),e.YNc(14,G2,2,0,"th",22),e.YNc(15,z2,4,4,"td",23),e.BQk(),e.ynx(16,27),e.YNc(17,W2,2,1,"th",28),e.YNc(18,$2,3,1,"td",23),e.BQk(),e.ynx(19,29),e.YNc(20,X2,2,1,"th",28),e.YNc(21,K2,3,1,"td",23),e.BQk(),e.ynx(22,30),e.YNc(23,j2,2,0,"th",28),e.YNc(24,e6,4,3,"td",23),e.BQk(),e.ynx(25,31),e.YNc(26,t6,2,0,"th",28),e.YNc(27,n6,4,3,"td",23),e.BQk(),e.ynx(28,32),e.YNc(29,i6,2,0,"th",28),e.YNc(30,a6,4,3,"td",23),e.BQk(),e.ynx(31,33),e.YNc(32,o6,2,0,"th",28),e.YNc(33,s6,4,3,"td",23),e.BQk(),e.ynx(34,34),e.YNc(35,l6,2,0,"th",28),e.YNc(36,r6,4,3,"td",23),e.BQk(),e.ynx(37,35),e.YNc(38,c6,2,0,"th",28),e.YNc(39,u6,4,3,"td",23),e.BQk(),e.ynx(40,36),e.YNc(41,p6,2,0,"th",28),e.YNc(42,m6,4,3,"td",23),e.BQk(),e.ynx(43,37),e.YNc(44,d6,2,0,"th",28),e.YNc(45,_6,4,3,"td",23),e.BQk(),e.ynx(46,38),e.YNc(47,h6,2,0,"th",28),e.YNc(48,g6,4,3,"td",23),e.BQk(),e.ynx(49,39),e.YNc(50,f6,2,0,"th",28),e.YNc(51,C6,4,3,"td",23),e.BQk(),e.ynx(52,40),e.YNc(53,x6,2,0,"th",28),e.YNc(54,y6,4,3,"td",23),e.BQk(),e.ynx(55,41),e.YNc(56,T6,2,0,"th",28),e.YNc(57,b6,4,3,"td",23),e.BQk(),e.ynx(58,42),e.YNc(59,v6,3,0,"th",43),e.YNc(60,Z6,3,0,"td",44),e.BQk(),e.ynx(61,45),e.YNc(62,L6,4,3,"td",46),e.BQk(),e.YNc(63,q6,1,3,"tr",47),e.YNc(64,N6,1,0,"tr",48),e.YNc(65,k6,1,0,"tr",49),e.qZA()()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.nonRoutingPeers),e.xp6(61),e.Q6J("matFooterRowDef",e.DdM(5,U6)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}function I6(n,a){if(1&n&&(e.TgZ(0,"div",4),e.YNc(1,J2,9,4,"div",5),e.YNc(2,O6,66,6,"div",6),e._UZ(3,"mat-paginator",7,8),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",""===t.errorMessage),e.xp6(1),e.Q6J("ngIf",""===t.errorMessage),e.xp6(1),e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let P6=(()=>{class n{constructor(t,i,o,s,r,_,g){this.logger=t,this.commonService=i,this.store=o,this.router=s,this.activatedRoute=r,this.decimalPipe=_,this.camelCaseWithReplace=g,this.nodePageDefs=l.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:l.IV,sortBy:"remote_alias",sortOrder:l.Pi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new c.by([]),this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x,new p.x,new p.x,new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.Pr).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var i,o;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=(null===(i=t.pageSettings.find(s=>s.pageId===this.PAGE_ID))||void 0===i?void 0:i.tables.find(s=>s.tableId===this.tableSetting.tableId))||(null===(o=l.gK.find(s=>s.pageId===this.PAGE_ID))||void 0===o?void 0:o.tables.find(s=>s.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bo).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{var i;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,(null===(i=t.apiCallStatus)||void 0===i?void 0:i.status)===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=t.channels,this.logger.info(t)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(t){let _=60,g=1,f=0;switch(t.forEach(w=>{w.uptime&&+w.uptime>f&&(f=+w.uptime)}),!0){case f<3600:this.timeUnit="Mins:Secs",_=60,g=1;break;case f>=3600&&f<86400:this.timeUnit="Hrs:Mins",_=3600,g=60;break;case f>=86400&&f<31536e3:this.timeUnit="Days:Hrs",_=86400,g=3600;break;case f>31536e3:this.timeUnit="Yrs:Days",_=31536e3,g=86400;break;default:this.timeUnit="Mins:Secs",_=60,g=1}return t.forEach(w=>{w.uptime_str=w.uptime?this.decimalPipe.transform(Math.floor(+w.uptime/_),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+w.uptime%_/g),"2.0-0"):"---",w.lifetime_str=w.lifetime?this.decimalPipe.transform(Math.floor(+w.lifetime/_),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+w.lifetime%_/g),"2.0-0"):"---"}),t}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filter:t.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(t,i)=>{let o="";return o="all"===this.selFilterBy?JSON.stringify(t).toLowerCase():void 0===t[this.selFilterBy]?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),o.includes(i)}}loadNonRoutingPeersTable(t){var i,o;if(t.length>0){const s=this.calculateUptime(null===(i=this.activeChannels)||void 0===i?void 0:i.filter(r=>t.findIndex(_=>_.chan_id_in===r.chan_id||_.chan_id_out===r.chan_id)<0));this.nonRoutingPeers=new c.by(s),this.nonRoutingPeers.sort=this.sort,null===(o=this.nonRoutingPeers.sort)||void 0===o||o.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new c.by([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(v.F0),e.Y36(v.gz),e.Y36(m.JJ),e.Y36(z.D3))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(t,i){if(1&t&&(e.Gf(S.YE,5),e.Gf(N.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(i.sort=o.first),e.iGM(o=e.CRH())&&(i.paginator=o.first)}},features:[e._Bn([{provide:N.ye,useValue:(0,l.pt)("Non routing peers")}])],decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginator",""],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_non_routing_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,i){1&t&&(e.TgZ(0,"div",0),e.YNc(1,P2,2,1,"div",1),e.YNc(2,I6,5,5,"div",2),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",""!==i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage))},directives:[d.xw,d.yH,d.Wh,m.O5,T.KE,P.gD,u.JJ,u.On,m.sg,B.ey,R.Nt,u.Fj,H.$V,D.pW,c.BZ,S.YE,c.w1,c.fO,c.ge,S.nU,c.Dz,c.ev,m.PC,q.Zl,k.lW,c.mD,c.yh,c.Ke,c.Q2,m.mk,q.oO,c.as,c.XQ,c.nj,c.Gk,N.NW],pipes:[m.JJ],styles:[""]}),n})(),R6=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new p.x,new p.x]}ngOnInit(){var t;if(this.payment.htlcs&&this.payment.htlcs[0]&&this.payment.htlcs[0].route&&this.payment.htlcs[0].route.hops&&this.payment.htlcs[0].route.hops.length>0){const i=null===(t=this.payment.htlcs[0].route.hops)||void 0===t?void 0:t.reduce((o,s)=>""===o&&s.pub_key?s.pub_key:o+","+s.pub_key,"");this.dataService.getAliasesFromPubkeys(i,!0).pipe((0,h.R)(this.unSubs[0])).subscribe(o=>{this.paths=null==o?void 0:o.reduce((s,r)=>""===s?r:s+"\n"+r,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,$.q)(1)).subscribe(i=>{i&&i.description&&""!==i.description&&(this.payment.description=i.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(ie.D))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},decls:66,vars:20,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","50"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e._uU(4,"Payment Hash"),e.qZA(),e.TgZ(5,"span",4),e._uU(6),e.qZA()(),e._UZ(7,"mat-divider",5),e.TgZ(8,"div",2)(9,"h4",3),e._uU(10,"Payment Preimage"),e.qZA(),e.TgZ(11,"span",4)(12,"div"),e._uU(13),e.qZA()()(),e._UZ(14,"mat-divider",5),e.TgZ(15,"div",2)(16,"h4",3),e._uU(17,"Payment Request"),e.qZA(),e.TgZ(18,"span",4)(19,"div"),e._uU(20),e.qZA()()(),e._UZ(21,"mat-divider",5),e.TgZ(22,"div",2)(23,"h4",3),e._uU(24,"Description"),e.qZA(),e.TgZ(25,"span",4)(26,"div"),e._uU(27),e.qZA()()(),e._UZ(28,"mat-divider",5),e.TgZ(29,"div",6)(30,"div",7)(31,"h4",3),e._uU(32,"Status"),e.qZA(),e.TgZ(33,"span",4)(34,"div"),e._uU(35),e.qZA()()(),e.TgZ(36,"div",7)(37,"h4",3),e._uU(38,"Creation Date"),e.qZA(),e.TgZ(39,"span",4)(40,"div"),e._uU(41),e.qZA()()()(),e._UZ(42,"mat-divider",5),e.TgZ(43,"div",6)(44,"div",7)(45,"h4",3),e._uU(46,"Value (mSats)"),e.qZA(),e.TgZ(47,"span",4)(48,"div"),e._uU(49),e.ALo(50,"number"),e.qZA()()(),e.TgZ(51,"div",7)(52,"h4",3),e._uU(53,"Fee (mSats)"),e.qZA(),e.TgZ(54,"span",4)(55,"div"),e._uU(56),e.ALo(57,"number"),e.qZA()()()(),e._UZ(58,"mat-divider",5),e.TgZ(59,"div",2)(60,"h4",3),e._uU(61,"Path"),e.qZA(),e.TgZ(62,"span",4)(63,"div"),e._uU(64),e.qZA()()(),e._UZ(65,"mat-divider",5),e.qZA()()),2&t&&(e.xp6(6),e.Oqu(null==i.payment?null:i.payment.payment_hash),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==i.payment?null:i.payment.payment_preimage),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==i.payment?null:i.payment.payment_request),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==i.payment?null:i.payment.description),e.xp6(1),e.Q6J("inset",!0),e.xp6(7),e.Oqu(null==i.payment?null:i.payment.status),e.xp6(6),e.Oqu(null==i.payment?null:i.payment.creation_date),e.xp6(1),e.Q6J("inset",!0),e.xp6(7),e.Oqu(e.lcZ(50,16,null==i.payment?null:i.payment.value_msat)),e.xp6(7),e.Oqu(e.lcZ(57,18,null==i.payment?null:i.payment.fee_msat)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(i.paths),e.xp6(1),e.Q6J("inset",!0))},directives:[d.xw,d.yH,d.Wh,Z.dn,j.d],pipes:[m.JJ],styles:[""]}),n})();var M6=x(159);function J6(n,a){if(1&n&&e._UZ(0,"qr-code",22),2&n){const t=e.oxw();e.Q6J("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function D6(n,a){1&n&&(e.TgZ(0,"span",23),e._uU(1,"N/A"),e.qZA())}function Q6(n,a){if(1&n&&e._UZ(0,"qr-code",22),2&n){const t=e.oxw();e.Q6J("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function E6(n,a){1&n&&(e.TgZ(0,"span",24),e._uU(1,"QR Code Not Applicable"),e.qZA())}function Y6(n,a){1&n&&e._UZ(0,"mat-divider",16),2&n&&e.Q6J("inset",!0)}function B6(n,a){1&n&&(e.ynx(0),e._uU(1," (zero amount) "),e.BQk())}const Pe=function(n){return{"mr-0":n}};function H6(n,a){if(1&n&&e._UZ(0,"span",38),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function V6(n,a){if(1&n&&e._UZ(0,"span",39),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function G6(n,a){if(1&n&&e._UZ(0,"span",40),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function z6(n,a){if(1&n&&(e.TgZ(0,"div",27)(1,"div",32)(2,"span",33),e.YNc(3,H6,1,3,"span",34),e.YNc(4,V6,1,3,"span",35),e.YNc(5,G6,1,3,"span",36),e._uU(6),e.qZA(),e.TgZ(7,"span",37),e._uU(8),e.ALo(9,"number"),e.qZA()(),e._UZ(10,"mat-divider",16),e.qZA()),2&n){const t=a.$implicit,i=e.oxw(2);e.xp6(3),e.Q6J("ngIf","SETTLED"===t.state),e.xp6(1),e.Q6J("ngIf","ACCEPTED"===t.state),e.xp6(1),e.Q6J("ngIf","CANCELED"===t.state),e.xp6(1),e.hij(" ",t.chan_id," "),e.xp6(2),e.Oqu(e.xi3(9,6,+t.amt_msat/1e3||0,i.getDecimalFormat(t))),e.xp6(2),e.Q6J("inset",!0)}}function W6(n,a){if(1&n){const t=e.EpF();e.TgZ(0,"div",11)(1,"mat-expansion-panel",25),e.NdJ("opened",function(){return e.CHM(t),e.oxw().flgOpened=!0})("closed",function(){return e.CHM(t),e.oxw().onExpansionClosed()}),e.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e._uU(5,"HTLCs"),e.qZA()()(),e.TgZ(6,"div",27)(7,"div",28)(8,"span",29),e._uU(9,"Channel ID"),e.qZA(),e.TgZ(10,"span",30),e._uU(11,"Amount (Sats)"),e.qZA()(),e._UZ(12,"mat-divider",16),e.YNc(13,z6,11,9,"div",31),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(12),e.Q6J("inset",!0),e.xp6(1),e.Q6J("ngForOf",null==t.invoice?null:t.invoice.htlcs)}}function $6(n,a){1&n&&e._UZ(0,"mat-divider",16),2&n&&e.Q6J("inset",!0)}const pt=function(n){return{"display-none":n}};let X6=(()=>{class n{constructor(t){this.commonService=t,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS&&(this.qrWidth=220)}getDecimalFormat(t){return t.amt_msat<1e3?"1.0-4":"1.0-0"}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(I.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},decls:90,vars:45,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","20",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","80"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,J6,1,3,"qr-code",2),e.YNc(3,D6,2,0,"span",3),e.qZA(),e.TgZ(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.YNc(8,Q6,1,3,"qr-code",2),e.YNc(9,E6,2,0,"span",8),e.qZA(),e.YNc(10,Y6,1,1,"mat-divider",9),e.TgZ(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e._uU(15),e.qZA(),e.TgZ(16,"span",14),e._uU(17),e.ALo(18,"number"),e.YNc(19,B6,2,0,"ng-container",15),e.qZA()(),e.TgZ(20,"div",12)(21,"h4",13),e._uU(22,"Amount Settled"),e.qZA(),e.TgZ(23,"span",14)(24,"div"),e._uU(25),e.ALo(26,"number"),e.qZA()()()(),e._UZ(27,"mat-divider",16),e.TgZ(28,"div",11)(29,"div",12)(30,"h4",13),e._uU(31,"Date Created"),e.qZA(),e.TgZ(32,"span",14),e._uU(33),e.ALo(34,"date"),e.qZA()(),e.TgZ(35,"div",12)(36,"h4",13),e._uU(37,"Date Settled"),e.qZA(),e.TgZ(38,"span",14),e._uU(39),e.ALo(40,"date"),e.qZA()()(),e._UZ(41,"mat-divider",16),e.TgZ(42,"div",11)(43,"div",17)(44,"h4",13),e._uU(45,"Memo"),e.qZA(),e.TgZ(46,"span",14),e._uU(47),e.qZA()()(),e._UZ(48,"mat-divider",16),e.TgZ(49,"div",11)(50,"div",17)(51,"h4",13),e._uU(52,"Payment Request"),e.qZA(),e.TgZ(53,"span",18),e._uU(54),e.qZA()()(),e._UZ(55,"mat-divider",16),e.TgZ(56,"div",11)(57,"div",17)(58,"h4",13),e._uU(59,"Payment Hash"),e.qZA(),e.TgZ(60,"span",18),e._uU(61),e.qZA()()(),e.TgZ(62,"div"),e._UZ(63,"mat-divider",16),e.TgZ(64,"div",11)(65,"div",17)(66,"h4",13),e._uU(67,"Preimage"),e.qZA(),e.TgZ(68,"span",18),e._uU(69),e.qZA()()(),e._UZ(70,"mat-divider",16),e.TgZ(71,"div",11)(72,"div",19)(73,"h4",13),e._uU(74,"State"),e.qZA(),e.TgZ(75,"span",18),e._uU(76),e.qZA()(),e.TgZ(77,"div",20)(78,"h4",13),e._uU(79,"Expiry"),e.qZA(),e.TgZ(80,"span",18),e._uU(81),e.qZA()(),e.TgZ(82,"div",20)(83,"h4",13),e._uU(84,"Private Routing Hints"),e.qZA(),e.TgZ(85,"span",18),e._uU(86),e.qZA()()(),e._UZ(87,"mat-divider",16),e.YNc(88,W6,14,2,"div",21),e.YNc(89,$6,1,1,"mat-divider",9),e.qZA()()()()()()),2&t&&(e.xp6(1),e.Q6J("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.VKq(41,pt,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.xp6(1),e.Q6J("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.xp6(1),e.Q6J("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.xp6(4),e.Q6J("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.VKq(43,pt,i.screenSize!==i.screenSizeEnum.XS&&i.screenSize!==i.screenSizeEnum.SM)),e.xp6(1),e.Q6J("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.xp6(1),e.Q6J("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.xp6(1),e.Q6J("ngIf",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM),e.xp6(5),e.Oqu(i.screenSize===i.screenSizeEnum.XS?"Amount":"Amount Requested"),e.xp6(2),e.hij("",e.lcZ(18,31,(null==i.invoice?null:i.invoice.value)||0)," Sats"),e.xp6(2),e.Q6J("ngIf",!(null!=i.invoice&&i.invoice.value)||"0"===(null==i.invoice?null:i.invoice.value)),e.xp6(6),e.hij("",e.lcZ(26,33,null==i.invoice?null:i.invoice.amt_paid_sat)," Sats"),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.xi3(34,35,1e3*(null==i.invoice?null:i.invoice.creation_date),"dd/MMM/y HH:mm")),e.xp6(6),e.Oqu(0!=+(null==i.invoice?null:i.invoice.settle_date)?e.xi3(40,38,1e3*+(null==i.invoice?null:i.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==i.invoice?null:i.invoice.memo),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu((null==i.invoice?null:i.invoice.payment_request)||"N/A"),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu((null==i.invoice?null:i.invoice.r_hash)||""),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu((null==i.invoice?null:i.invoice.r_preimage)||"-"),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==i.invoice?null:i.invoice.state),e.xp6(5),e.Oqu(null==i.invoice?null:i.invoice.expiry),e.xp6(5),e.Oqu(null!=i.invoice&&i.invoice.private?"Yes":"No"),e.xp6(1),e.Q6J("inset",!0),e.xp6(1),e.Q6J("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0),e.xp6(1),e.Q6J("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0))},directives:[d.xw,d.Wh,d.yH,m.mk,q.oO,m.O5,M6.uU,Z.dn,j.d,H.$V,V.ib,V.yz,V.yK,m.sg,K.gM],pipes:[m.JJ,m.uU],styles:[""]}),n})();function K6(n,a){if(1&n&&(e.TgZ(0,"mat-radio-button",17),e._uU(1),e.qZA()),2&n){const t=a.$implicit,i=e.oxw();e.Q6J("value",t.id)("checked",i.selectedFieldId===t.id),e.xp6(1),e.hij(" ",t.name," ")}}function j6(n,a){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function eC(n,a){1&n&&e._UZ(0,"mat-progress-bar",20)}const tC=function(n){return{"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0}};function nC(n,a){if(1&n&&(e.TgZ(0,"div",18),e.YNc(1,eC,1,0,"mat-progress-bar",19),e._uU(2),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(3,tC,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.xp6(1),e.Q6J("ngIf","Getting lookup details..."===t.errorMessage),e.xp6(1),e.hij(" ",t.errorMessage," ")}}function iC(n,a){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-payment-lookup",28),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("payment",t.lookupValue)}}function aC(n,a){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-invoice-lookup",29),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("invoice",t.lookupValue)}}function oC(n,a){1&n&&(e.TgZ(0,"span",27)(1,"h3"),e._uU(2,"Error! Unable to find details!"),e.qZA()())}function sC(n,a){if(1&n&&(e.TgZ(0,"div",21)(1,"div",22)(2,"span",23),e._uU(3),e.qZA()(),e.TgZ(4,"div",24),e.YNc(5,iC,2,1,"span",25),e.YNc(6,aC,2,1,"span",25),e.YNc(7,oC,3,0,"span",26),e.qZA()()),2&n){const t=e.oxw();e.xp6(3),e.hij("",t.lookupFields[t.selectedFieldId].name," Details"),e.xp6(1),e.Q6J("ngSwitch",t.selectedFieldId),e.xp6(1),e.Q6J("ngSwitchCase",0),e.xp6(1),e.Q6J("ngSwitchCase",1)}}const lC=function(n){return{"mt-1":!0,"mt-2":n}},uC=v.Bz.forChild([{path:"",component:Ee,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Io,canActivate:[O.QM]},{path:"wallet",component:cd,canActivate:[O.a1]},{path:"onchain",component:Df,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:Yf,canActivate:[O.QM]},{path:"send/:selTab",component:ct,data:{sweepAll:!1},canActivate:[O.QM]},{path:"sweep/:selTab",component:ct,data:{sweepAll:!0},canActivate:[O.QM]}]},{path:"connections",component:Mo,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Ks,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Tc,canActivate:[O.QM]},{path:"pending",component:ap,canActivate:[O.QM]},{path:"closed",component:Vp,canActivate:[O.QM]},{path:"activehtlcs",component:Mm,canActivate:[O.QM]}]},{path:"peers",component:Gs,data:{sweepAll:!1},canActivate:[O.QM]}]},{path:"transactions",component:md,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Xe,canActivate:[O.QM]},{path:"invoices",component:$e,canActivate:[O.QM]},{path:"lookuptransactions",component:(()=>{class n{constructor(t,i,o,s){this.logger=t,this.commonService=i,this.store=o,this.actions=s,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Payment",placeholder:"Payment Hash"},{id:1,name:"Invoice",placeholder:"Payment Hash"}],this.faSearch=b.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatusEnum=l.Bn,this.unSubs=[new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t.type===l.uR.SET_LOOKUP_LND)).subscribe(t=>{this.flgSetLookupValue=!t.payload.error,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.errorMessage=t.payload.error?this.commonService.extractErrorMessage(t.payload.error):"",this.logger.info(this.lookupValue)})}onLookup(){var t,i,o,s;if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,A.yZ)({payload:null===(i=null===(t=Buffer.from(this.lookupKey.trim(),"hex").toString("base64"))||void 0===t?void 0:t.replace(/\+/g,"-"))||void 0===i?void 0:i.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,A.n7)({payload:{openSnackBar:!1,paymentHash:null===(s=null===(o=Buffer.from(this.lookupKey.trim(),"hex").toString("base64"))||void 0===o?void 0:o.replace(/\+/g,"-"))||void 0===s?void 0:s.replace(/[/]/g,"_")}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(F.yh),e.Y36(X.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lookup-transactions"]],decls:19,vars:10,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"placeholder","ngModel","change","ngModelChange"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mb-2"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(t,i){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6),e.NdJ("ngModelChange",function(s){return i.selectedFieldId=s})("change",function(s){return i.onSelectChange(s)}),e.YNc(7,K6,2,3,"mat-radio-button",7),e.qZA()(),e.TgZ(8,"mat-form-field",8)(9,"input",9,10),e.NdJ("change",function(){return i.clearLookupValue()})("ngModelChange",function(s){return i.lookupKey=s}),e.qZA(),e.YNc(11,j6,2,1,"mat-error",11),e.qZA(),e.TgZ(12,"div",12)(13,"button",13),e.NdJ("click",function(){return i.resetData()}),e._uU(14,"Clear"),e.qZA(),e.TgZ(15,"button",14),e.NdJ("click",function(){return i.onLookup()}),e._uU(16,"Lookup"),e.qZA()()(),e.YNc(17,nC,3,5,"div",15),e.YNc(18,sC,8,4,"div",16),e.qZA()()()),2&t&&(e.xp6(6),e.Q6J("ngModel",i.selectedFieldId),e.xp6(1),e.Q6J("ngForOf",i.lookupFields),e.xp6(1),e.Q6J("ngClass",e.VKq(8,lC,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.xp6(1),e.Q6J("placeholder",(null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key")("ngModel",i.lookupKey),e.xp6(2),e.Q6J("ngIf",!i.lookupKey),e.xp6(6),e.Q6J("ngIf",""!==i.errorMessage),e.xp6(1),e.Q6J("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},directives:[d.xw,d.yH,d.Wh,Z.dn,u._Y,u.JL,u.F,pe.VQ,u.JJ,u.On,m.sg,pe.U0,T.KE,m.mk,q.oO,R.Nt,u.Fj,u.Q7,m.O5,T.TO,k.lW,D.pW,m.RF,m.n9,R6,X6,m.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}),n})(),canActivate:[O.QM]}]},{path:"messages",component:Z2,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:S2,canActivate:[O.QM]},{path:"verify",component:O2,canActivate:[O.QM]}]},{path:"channelbackup",component:Q0,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:b2,canActivate:[O.QM]},{path:"restore",component:o2,canActivate:[O.QM]}]},{path:"routing",component:x_,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:it,canActivate:[O.QM]},{path:"peers",component:Bh,canActivate:[O.QM]},{path:"nonroutingprs",component:P6,canActivate:[O.QM]}]},{path:"reports",component:Vh,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:tg,canActivate:[O.QM]},{path:"transactions",component:_g,canActivate:[O.QM]}]},{path:"graph",component:_d,canActivate:[O.QM],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:nt,canActivate:[O.QM]},{path:"queryroutes",component:Qd,canActivate:[O.QM]}]},{path:"lookups",component:nt,canActivate:[O.QM]},{path:"network",component:J0,canActivate:[O.QM]},{path:"**",component:I2.w},{path:"rates",redirectTo:"network"}]}]);var pC=x(8750);let mC=(()=>{class n{}return n.\u0275fac=function(t){return new(t||n)},n.\u0275mod=e.oAB({type:n,bootstrap:[Ee]}),n.\u0275inj=e.cJS({providers:[O.QM],imports:[[m.ez,pC.m,uC]]}),n})()}}]); \ No newline at end of file diff --git a/frontend/636.95c8ae357b1ed820.js b/frontend/636.95c8ae357b1ed820.js deleted file mode 100644 index 4357afb0..00000000 --- a/frontend/636.95c8ae357b1ed820.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[636],{1636:(wg,ke,f)=>{f.r(ke),f.d(ke,{LNDModule:()=>Zg});var p=f(9808),b=f(1402),at=f(8878),e=f(5e3),d=f(7093),J=f(5899);function it(n,i){1&n&&e._UZ(0,"mat-progress-bar",3)}let Fe=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof b.OD:this.loading=!0;break;case a instanceof b.m2:case a instanceof b.gk:case a instanceof b.Q3:this.loading=!1}})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lnd-root"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["outlet","outlet"],["color","primary","mode","indeterminate"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,it,1,0,"mat-progress-bar",1),e._UZ(2,"router-outlet",null,2),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",a.loading))},directives:[d.xw,d.yH,d.Wh,p.O5,J.pW,b.lC],styles:[""],data:{animation:[at.g]}}),n})();var m=f(7579),h=f(2722),Y=f(9300),Ne=f(534),v=f(801),l=f(7731),y=f(6529),U=f(5043),L=f(5620),W=f(6642),O=f(62),D=f(9444),ue=f(3954),Z=f(9224),N=f(7423),ge=f(2181),te=f(5245),k=f(3322);const qe=function(n){return{backgroundColor:n}};function ot(n,i){if(1&n&&e._UZ(0,"span",6),2&n){const t=e.oxw();e.Q6J("ngStyle",e.VKq(1,qe,null==t.information?null:t.information.color))}}function st(n,i){if(1&n&&(e.TgZ(0,"div")(1,"h4",1),e._uU(2,"Color"),e.qZA(),e.TgZ(3,"div",2),e._UZ(4,"span",7),e._uU(5),e.ALo(6,"uppercase"),e.qZA()()),2&n){const t=e.oxw();e.xp6(4),e.Q6J("ngStyle",e.VKq(4,qe,null==t.information?null:t.information.color)),e.xp6(1),e.hij(" ",e.lcZ(6,2,null==t.information?null:t.information.color)," ")}}function lt(n,i){if(1&n&&(e.TgZ(0,"span",2),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t)}}let Ue=(()=>{class n{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain)+" "+this.commonService.titleCase(t.network))}))}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[e.TTD],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div")(2,"h4",1),e._uU(3,"Alias"),e.qZA(),e.TgZ(4,"div",2),e._uU(5),e.YNc(6,ot,1,3,"span",3),e.qZA()(),e.YNc(7,st,7,6,"div",4),e.TgZ(8,"div")(9,"h4",1),e._uU(10,"Implementation"),e.qZA(),e.TgZ(11,"div",2),e._uU(12),e.qZA()(),e.TgZ(13,"div")(14,"h4",1),e._uU(15,"Chain"),e.qZA(),e.YNc(16,lt,2,1,"span",5),e.qZA()()),2&t&&(e.xp6(5),e.hij(" ",null==a.information?null:a.information.alias," "),e.xp6(1),e.Q6J("ngIf",!a.showColorFieldSeparately),e.xp6(1),e.Q6J("ngIf",a.showColorFieldSeparately),e.xp6(5),e.Oqu(null!=a.information&&a.information.lnImplementation||null!=a.information&&a.information.version?(null==a.information?null:a.information.lnImplementation)+" "+(null==a.information?null:a.information.version):""),e.xp6(4),e.Q6J("ngForOf",a.chains))},directives:[d.xw,d.yH,d.Wh,p.O5,p.PC,k.Zl,p.sg],pipes:[p.gd],styles:[""]}),n})();function rt(n,i){if(1&n&&(e.TgZ(0,"div",2)(1,"div")(2,"h4",3),e._uU(3,"Lightning"),e.qZA(),e.TgZ(4,"div",4),e._uU(5),e.ALo(6,"number"),e.qZA(),e._UZ(7,"mat-progress-bar",5),e.qZA(),e.TgZ(8,"div")(9,"h4",3),e._uU(10,"On-chain"),e.qZA(),e.TgZ(11,"div",4),e._uU(12),e.ALo(13,"number"),e.qZA(),e._UZ(14,"mat-progress-bar",5),e.qZA(),e.TgZ(15,"div")(16,"h4",3),e._uU(17,"Total"),e.qZA(),e.TgZ(18,"div",4),e._uU(19),e.ALo(20,"number"),e.qZA()()()),2&n){const t=e.oxw();e.xp6(5),e.hij("",e.lcZ(6,5,null==t.balances?null:t.balances.lightning)," Sats"),e.xp6(2),e.s9C("value",(null==t.balances?null:t.balances.lightning)/(null==t.balances?null:t.balances.total)*100),e.xp6(5),e.hij("",e.lcZ(13,7,null==t.balances?null:t.balances.onchain)," Sats"),e.xp6(2),e.s9C("value",(null==t.balances?null:t.balances.onchain)/(null==t.balances?null:t.balances.total)*100),e.xp6(5),e.hij("",e.lcZ(20,9,null==t.balances?null:t.balances.total)," Sats")}}function ct(n,i){if(1&n&&(e.TgZ(0,"div",6)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let ut=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(e.YNc(0,rt,21,11,"div",0),e.YNc(1,ct,3,1,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf"," "===a.errorMessage)("ngIfElse",o)}},directives:[p.O5,d.xw,d.yH,d.Wh,J.pW],pipes:[p.JJ],styles:[""]}),n})();var x=f(7322),j=f(7238),X=f(4834),H=f(8129);const pt=function(){return["../connections/channels/open"]},mt=function(n){return{filter:n}};function dt(n,i){if(1&n&&(e.TgZ(0,"div",19)(1,"a",20),e._uU(2),e.ALo(3,"slice"),e.qZA(),e.TgZ(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e._uU(7,"Local:"),e.qZA(),e._uU(8),e.ALo(9,"number"),e.qZA(),e.TgZ(10,"mat-hint",22),e._UZ(11,"fa-icon",23),e._uU(12),e.ALo(13,"number"),e.qZA(),e.TgZ(14,"mat-hint",24)(15,"strong",8),e._uU(16,"Remote:"),e.qZA(),e._uU(17),e.ALo(18,"number"),e.qZA()(),e._UZ(19,"mat-progress-bar",25),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(3);e.xp6(1),e.s9C("matTooltip",t.remote_alias||t.remote_pubkey),e.s9C("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Q6J("routerLink",e.DdM(21,pt))("state",e.VKq(22,mt,t.chan_id)),e.xp6(1),e.AsE(" ",e.Dn7(3,11,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.xp6(6),e.hij("",e.lcZ(9,15,t.local_balance||0)," Sats"),e.xp6(3),e.Q6J("icon",a.faBalanceScale),e.xp6(1),e.hij(" (",e.lcZ(13,17,t.balancedness||0),") "),e.xp6(5),e.hij("",e.lcZ(18,19,t.remote_balance||0)," Sats"),e.xp6(2),e.s9C("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function _t(n,i){if(1&n&&(e.TgZ(0,"div",17),e.YNc(1,dt,20,24,"div",18),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",t.allChannels)}}function ht(n,i){if(1&n&&(e.TgZ(0,"div",3)(1,"div",4)(2,"span",5),e._uU(3,"Total Capacity"),e.qZA(),e.TgZ(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e._uU(7,"Local:"),e.qZA(),e._uU(8),e.ALo(9,"number"),e.qZA(),e.TgZ(10,"mat-hint",9),e._UZ(11,"fa-icon",10),e._uU(12),e.ALo(13,"number"),e.qZA(),e.TgZ(14,"mat-hint",11)(15,"strong",8),e._uU(16,"Remote:"),e.qZA(),e._uU(17),e.ALo(18,"number"),e.qZA()(),e._UZ(19,"mat-progress-bar",12),e.qZA(),e.TgZ(20,"div",13),e._UZ(21,"mat-divider",14),e.qZA(),e.TgZ(22,"div",15),e.YNc(23,_t,2,1,"div",16),e.qZA()()),2&n){const t=e.oxw(),a=e.MAs(2);e.xp6(8),e.hij("",e.lcZ(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0)," Sats"),e.xp6(3),e.Q6J("icon",t.faBalanceScale),e.xp6(1),e.hij(" (",e.lcZ(13,9,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),e.xp6(5),e.hij("",e.lcZ(18,11,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0)," Sats"),e.xp6(2),e.s9C("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),e.xp6(4),e.Q6J("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function gt(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",26),e._uU(1," No channels available. "),e.TgZ(2,"button",27),e.NdJ("click",function(){return e.CHM(t),e.oxw().goToChannels()}),e._uU(3,"Open Channel"),e.qZA()()}}function ft(n,i){if(1&n&&(e.TgZ(0,"div",28)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Ct=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=v.DL8,this.faDumbbell=v.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(e.YNc(0,ht,24,13,"div",0),e.YNc(1,gt,4,0,"ng-template",null,1,e.W1O),e.YNc(3,ft,3,1,"ng-template",null,2,e.W1O)),2&t){const o=e.MAs(4);e.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",o)}},directives:[p.O5,d.xw,d.Wh,d.yH,x.bx,D.BN,j.gM,J.pW,X.d,H.$V,p.sg,b.yS,N.lW],pipes:[p.JJ,p.OU],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}),n})();function xt(n,i){if(1&n&&(e.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e._uU(4,"Daily"),e.qZA(),e.TgZ(5,"div",5),e._uU(6),e.ALo(7,"number"),e.qZA()(),e.TgZ(8,"div")(9,"h4",4),e._uU(10,"Weekly"),e.qZA(),e.TgZ(11,"div",5),e._uU(12),e.ALo(13,"number"),e.qZA()(),e.TgZ(14,"div")(15,"h4",4),e._uU(16,"Monthly"),e.qZA(),e.TgZ(17,"div",5),e._uU(18),e.ALo(19,"number"),e.qZA()(),e.TgZ(20,"div",6),e._UZ(21,"h4",7)(22,"span",5),e.qZA()(),e.TgZ(23,"div",3)(24,"div")(25,"h4",4),e._uU(26,"Transactions"),e.qZA(),e.TgZ(27,"div",5),e._uU(28),e.ALo(29,"number"),e.qZA()(),e.TgZ(30,"div")(31,"h4",4),e._uU(32,"Transactions"),e.qZA(),e.TgZ(33,"div",5),e._uU(34),e.ALo(35,"number"),e.qZA()(),e.TgZ(36,"div")(37,"h4",4),e._uU(38,"Transactions"),e.qZA(),e.TgZ(39,"div",5),e._uU(40),e.ALo(41,"number"),e.qZA()(),e.TgZ(42,"div",6),e._UZ(43,"h4",7)(44,"span",5),e.qZA()()()),2&n){const t=e.oxw();e.xp6(6),e.hij("",e.lcZ(7,6,null==t.fees?null:t.fees.day_fee_sum)," Sats"),e.xp6(6),e.hij("",e.lcZ(13,8,null==t.fees?null:t.fees.week_fee_sum)," Sats"),e.xp6(6),e.hij("",e.lcZ(19,10,null==t.fees?null:t.fees.month_fee_sum)," Sats"),e.xp6(10),e.Oqu(e.lcZ(29,12,null==t.fees?null:t.fees.daily_tx_count)),e.xp6(6),e.Oqu(e.lcZ(35,14,null==t.fees?null:t.fees.weekly_tx_count)),e.xp6(6),e.Oqu(e.lcZ(41,16,null==t.fees?null:t.fees.monthly_tx_count))}}function yt(n,i){if(1&n&&(e.TgZ(0,"div",8)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Oe=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees.month_fee_sum){this.totalFees=[{name:"Monthly",value:this.fees.month_fee_sum},{name:"Weekly",value:this.fees.week_fee_sum||0},{name:"Daily ",value:this.fees.day_fee_sum||0}];const t=Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10),a=Math.pow(10,t-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/a)*a/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[e.TTD],decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"],[1,"dashboard-info-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(e.YNc(0,xt,45,18,"div",0),e.YNc(1,yt,3,1,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",o)}},directives:[p.O5,d.xw,d.yH,d.Wh],pipes:[p.JJ],styles:[""]}),n})();function Tt(n,i){if(1&n&&(e.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e._uU(4,"Active"),e.qZA(),e.TgZ(5,"div",5),e._UZ(6,"span",6),e._uU(7),e.ALo(8,"number"),e.qZA()(),e.TgZ(9,"div")(10,"h4",4),e._uU(11,"Pending"),e.qZA(),e.TgZ(12,"div",5),e._UZ(13,"span",7),e._uU(14),e.ALo(15,"number"),e.qZA()(),e.TgZ(16,"div")(17,"h4",4),e._uU(18,"Inactive"),e.qZA(),e.TgZ(19,"div",5),e._UZ(20,"span",8),e._uU(21),e.ALo(22,"number"),e.qZA()(),e.TgZ(23,"div")(24,"h4",4),e._uU(25,"Closing"),e.qZA(),e.TgZ(26,"div",5),e._UZ(27,"span",9),e._uU(28),e.ALo(29,"number"),e.qZA()()(),e.TgZ(30,"div",3)(31,"div")(32,"h4",4),e._uU(33,"Capacity"),e.qZA(),e.TgZ(34,"div",5),e._uU(35),e.ALo(36,"number"),e.qZA()(),e.TgZ(37,"div")(38,"h4",4),e._uU(39,"Capacity"),e.qZA(),e.TgZ(40,"div",5),e._uU(41),e.ALo(42,"number"),e.qZA()(),e.TgZ(43,"div")(44,"h4",4),e._uU(45,"Capacity"),e.qZA(),e.TgZ(46,"div",5),e._uU(47),e.ALo(48,"number"),e.qZA()(),e.TgZ(49,"div")(50,"h4",4),e._uU(51,"Capacity"),e.qZA(),e.TgZ(52,"div",5),e._uU(53),e.ALo(54,"number"),e.qZA()()()()),2&n){const t=e.oxw();e.xp6(7),e.Oqu(e.lcZ(8,8,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.num_channels)||0)),e.xp6(7),e.Oqu(e.lcZ(15,10,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.num_channels)||0)),e.xp6(7),e.Oqu(e.lcZ(22,12,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.num_channels)||0)),e.xp6(7),e.Oqu(e.lcZ(29,14,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.num_channels)||0)),e.xp6(7),e.hij("",e.lcZ(36,16,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),e.xp6(6),e.hij("",e.lcZ(42,18,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),e.xp6(6),e.hij("",e.lcZ(48,20,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats"),e.xp6(6),e.hij("",e.lcZ(54,22,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.capacity)||0)," Sats")}}function vt(n,i){if(1&n&&(e.TgZ(0,"div",10)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let Re=(()=>{class n{constructor(){this.channelsStatus={}}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],[1,"dot","tiny-dot","red"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(e.YNc(0,Tt,55,24,"div",0),e.YNc(1,vt,3,1,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf"," "===a.errorMessage)("ngIfElse",o)}},directives:[p.O5,d.xw,d.yH,d.Wh],pipes:[p.JJ],styles:[""]}),n})();var Me=f(2615),S=f(7861),Ie=f(9107);function bt(n,i){if(1&n&&(e.TgZ(0,"mat-hint",19)(1,"strong",20),e._uU(2,"Capacity: "),e.qZA(),e._uU(3),e.ALo(4,"number"),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(3),e.hij("",e.lcZ(4,1,t.remote_balance||0)," Sats")}}function Zt(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",24),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2).$implicit;return e.oxw(3).onLoopOut(o)}),e._uU(1,"Loop Out"),e.qZA()}}function wt(n,i){if(1&n&&(e.TgZ(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e._uU(3,"Capacity: "),e.qZA(),e._uU(4),e.ALo(5,"number"),e.qZA(),e.YNc(6,Zt,2,0,"button",23),e.qZA()),2&n){const t=e.oxw().$implicit,a=e.oxw(3);e.xp6(4),e.hij("",e.lcZ(5,2,t.local_balance||0)," Sats"),e.xp6(2),e.Q6J("ngIf",a.showLoop)}}function At(n,i){if(1&n&&e._UZ(0,"mat-progress-bar",25),2&n){const t=e.oxw().$implicit,a=e.oxw(3);e.s9C("value",a.totalLiquidity>0?(+t.remote_balance||0)/a.totalLiquidity*100:0)}}function St(n,i){if(1&n&&e._UZ(0,"mat-progress-bar",25),2&n){const t=e.oxw().$implicit,a=e.oxw(3);e.s9C("value",a.totalLiquidity>0?(+t.local_balance||0)/a.totalLiquidity*100:0)}}const Lt=function(){return["../connections/channels/open"]},kt=function(n){return{filter:n}};function Ft(n,i){if(1&n&&(e.TgZ(0,"div",13)(1,"a",14),e._uU(2),e.ALo(3,"slice"),e.qZA(),e.TgZ(4,"div",15),e.YNc(5,bt,5,3,"mat-hint",16),e.YNc(6,wt,7,4,"div",17),e.qZA(),e.YNc(7,At,1,1,"mat-progress-bar",18),e.YNc(8,St,1,1,"mat-progress-bar",18),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(3);e.xp6(1),e.s9C("matTooltip",t.remote_alias||t.remote_pubkey),e.s9C("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Q6J("routerLink",e.DdM(14,Lt))("state",e.VKq(15,kt,t.chan_id)),e.xp6(1),e.AsE(" ",e.Dn7(3,10,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.xp6(3),e.Q6J("ngIf","In"===a.direction),e.xp6(1),e.Q6J("ngIf","Out"===a.direction),e.xp6(1),e.Q6J("ngIf","In"===a.direction),e.xp6(1),e.Q6J("ngIf","Out"===a.direction)}}function Nt(n,i){if(1&n&&(e.TgZ(0,"div",11),e.YNc(1,Ft,9,17,"div",12),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",t.allChannels)}}const qt=function(n,i,t){return{"mb-4":n,"mb-2":i,"mb-1":t}};function Ut(n,i){if(1&n&&(e.TgZ(0,"div",3)(1,"div",4)(2,"span",5),e._uU(3,"Total Capacity"),e.qZA(),e.TgZ(4,"mat-hint",6),e._uU(5),e.ALo(6,"number"),e.qZA(),e._UZ(7,"mat-progress-bar",7),e.qZA(),e.TgZ(8,"div",8),e._UZ(9,"mat-divider",9),e.qZA(),e.YNc(10,Nt,2,1,"div",10),e.qZA()),2&n){const t=e.oxw(),a=e.MAs(2);e.Q6J("ngClass",e.kEZ(6,qt,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),e.xp6(5),e.hij("",e.lcZ(6,4,t.totalLiquidity)," Sats"),e.xp6(5),e.Q6J("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function Ot(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",28),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).goToChannels()}),e._uU(1,"Open Channel"),e.qZA()}}function Rt(n,i){if(1&n&&(e.TgZ(0,"div",26),e._uU(1," No channels available. "),e.YNc(2,Ot,2,0,"button",27),e.qZA()),2&n){const t=e.oxw();e.xp6(2),e.Q6J("ngIf","Out"===t.direction)}}function Mt(n,i){if(1&n&&(e.TgZ(0,"div",29)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessage)}}let It=(()=>{class n{constructor(t,a,o,s){this.router=t,this.loopService=a,this.commonService=o,this.store=s,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new m.x,new m.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!(null==t?void 0:t.swapServerUrl)||""===t.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,h.R)(this.unSubs[1])).subscribe(a=>{this.store.dispatch((0,S.qR)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.$I.LOOP_OUT,component:Me.a}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0),e.Y36(Ie.W),e.Y36(O.v),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[3,"perfectScrollbar",4,"ngIf","ngIfElse"],[3,"perfectScrollbar"],["fxLayout","column",4,"ngFor","ngForOf"],["fxLayout","column"],[1,"dashboard-capacity-header","mt-2",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["class","font-size-90 color-primary",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],[1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxFlex","85","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","15","fxLayoutAlign","end start","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","15","fxLayoutAlign","end start","color","primary","mat-button","","aria-label","Loop Out",1,"button-link-dashboard",3,"click"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(t,a){if(1&t&&(e.YNc(0,Ut,11,10,"div",0),e.YNc(1,Rt,3,1,"ng-template",null,1,e.W1O),e.YNc(3,Mt,3,1,"ng-template",null,2,e.W1O)),2&t){const o=e.MAs(4);e.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",o)}},directives:[p.O5,d.xw,d.Wh,d.yH,p.mk,k.oO,x.bx,J.pW,X.d,H.$V,p.sg,b.yS,j.gM,N.lW],pipes:[p.JJ,p.OU],styles:[""]}),n})();var P=f(3251),F=f(6087),A=f(4847),c=f(2075),E=f(8966),w=f(6523),u=f(3075),M=f(7531),$=f(3390),K=f(6534),R=f(4107),B=f(508),pe=f(2368);function Dt(n,i){if(1&n&&(e.TgZ(0,"mat-option",25),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(e.lcZ(2,2,t))}}function Pt(n,i){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.invoiceError)}}function Jt(n,i){if(1&n&&(e.TgZ(0,"div",26),e._UZ(1,"fa-icon",27),e.YNc(2,Pt,2,1,"span",28),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.invoiceError)}}let Et=(()=>{class n{constructor(t,a,o,s,r,_){this.dialogRef=t,this.data=a,this.store=o,this.decimalPipe=s,this.commonService=r,this.actions=_,this.faExclamationTriangle=v.eHv,this.selNode={},this.memo="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.IV,this.timeUnitEnum=l.Qk,this.timeUnits=l.LO,this.selTimeUnit=l.Qk.SECS,this.invoiceError="",this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(t=>t.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===t.payload.action&&(this.invoiceError=t.payload.message,t.payload.status===l.Bn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===l.Bn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="";let a=0;a=this.expiry?this.selTimeUnit!==l.Qk.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,l.Qk.SECS):this.expiry:3600,this.store.dispatch((0,w.Rd)({payload:{uiMessage:l.m6.ADD_INVOICE,memo:this.memo,invoiceValue:this.invoiceValue,private:this.private,expiry:a,pageSize:this.pageSize,openModal:!0}}))}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.Qk.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[3])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,l.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(L.yh),e.Y36(p.JJ),e.Y36(O.v),e.Y36(W.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-create-invoices"]],decls:38,vars:16,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","placeholder","Memo","tabindex","1","name","memo",3,"ngModel","ngModelChange"],["fxFlex","50","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","2","name","invoiceValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","24","fxLayoutAlign","start end"],["matInput","","placeholder","Expiry","type","number","tabindex","3","name","expiry",3,"ngModel","step","min","ngModelChange"],["tabindex","4","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","name","private",3,"ngModel","ngModelChange"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","5","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","6",3,"click"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(t,a){if(1&t){const o=e.EpF();e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Create Invoice"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),e.NdJ("ngModelChange",function(r){return a.memo=r}),e.qZA()(),e.TgZ(13,"mat-form-field",11)(14,"input",12),e.NdJ("ngModelChange",function(r){return a.invoiceValue=r})("keyup",function(){return a.onInvoiceValueChange()}),e.qZA(),e.TgZ(15,"span",13),e._uU(16," Sats "),e.qZA(),e.TgZ(17,"mat-hint"),e._uU(18),e.qZA()(),e.TgZ(19,"mat-form-field",14)(20,"input",15),e.NdJ("ngModelChange",function(r){return a.expiry=r}),e.qZA(),e.TgZ(21,"span",13),e._uU(22),e.ALo(23,"titlecase"),e.qZA()(),e.TgZ(24,"mat-form-field",14)(25,"mat-select",16),e.NdJ("selectionChange",function(r){return a.onTimeUnitChange(r)}),e.YNc(26,Dt,3,4,"mat-option",17),e.qZA()(),e.TgZ(27,"div",18)(28,"mat-slide-toggle",19),e.NdJ("ngModelChange",function(r){return a.private=r}),e._uU(29,"Private Routing Hints"),e.qZA(),e.TgZ(30,"mat-icon",20),e._uU(31,"info_outline"),e.qZA()(),e.YNc(32,Jt,3,2,"div",21),e.TgZ(33,"div",22)(34,"button",23),e.NdJ("click",function(){return a.resetData()}),e._uU(35,"Clear Field"),e.qZA(),e.TgZ(36,"button",24),e.NdJ("click",function(){e.CHM(o);const r=e.MAs(10);return a.onAddInvoice(r)}),e._uU(37,"Create Invoice"),e.qZA()()()()()()}2&t&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(6),e.Q6J("ngModel",a.memo),e.xp6(2),e.Q6J("ngModel",a.invoiceValue)("step",100)("min",1),e.xp6(4),e.Oqu(a.invoiceValueHint),e.xp6(2),e.Q6J("ngModel",a.expiry)("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),e.xp6(2),e.hij(" ",e.lcZ(23,14,a.selTimeUnit)," "),e.xp6(3),e.Q6J("value",a.selTimeUnit),e.xp6(1),e.Q6J("ngForOf",a.timeUnits),e.xp6(2),e.Q6J("ngModel",a.private),e.xp6(4),e.Q6J("ngIf",""!==a.invoiceError))},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,E.ZT,Z.dn,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,$.h,u.JJ,u.On,u.wV,u.qQ,K.q,x.R9,x.bx,R.gD,p.sg,B.ey,pe.Rr,te.Hw,j.gM,p.O5,D.BN],pipes:[p.rS],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();var Qt=f(8627);function Yt(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"input",7),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().memo=o}),e.qZA()(),e.TgZ(4,"mat-form-field",8)(5,"input",9),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().invoiceValue=o})("keyup",function(){return e.CHM(t),e.oxw().onInvoiceValueChange()}),e.qZA(),e.TgZ(6,"span",10),e._uU(7," Sats "),e.qZA(),e.TgZ(8,"mat-hint"),e._uU(9),e.qZA()(),e.TgZ(10,"div",11)(11,"button",12),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(12,"Clear Field"),e.qZA(),e.TgZ(13,"button",13),e.NdJ("click",function(){e.CHM(t);const o=e.MAs(1);return e.oxw().onAddInvoice(o)}),e._uU(14,"Create Invoice"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.memo),e.xp6(2),e.Q6J("ngModel",t.invoiceValue)("step",100)("min",1),e.xp6(4),e.Oqu(t.invoiceValueHint)}}function Ht(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",14)(1,"button",15),e.NdJ("click",function(){return e.CHM(t),e.oxw().openCreateInvoiceModal()}),e._uU(2,"Create Invoice"),e.qZA()()}}function Bt(n,i){1&n&&e._UZ(0,"mat-progress-bar",46)}function Vt(n,i){1&n&&(e.TgZ(0,"th",47),e._uU(1," Date Created "),e.qZA())}const me=function(n){return{"mr-0":n}};function Gt(n,i){if(1&n&&e._UZ(0,"span",53),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,me,t.screenSize===t.screenSizeEnum.XS))}}function zt(n,i){if(1&n&&e._UZ(0,"span",54),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,me,t.screenSize===t.screenSizeEnum.XS))}}function Wt(n,i){if(1&n&&e._UZ(0,"span",55),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,me,t.screenSize===t.screenSizeEnum.XS))}}function Xt(n,i){if(1&n&&e._UZ(0,"span",56),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,me,t.screenSize===t.screenSizeEnum.XS))}}function $t(n,i){if(1&n&&(e.TgZ(0,"td",48),e.YNc(1,Gt,1,3,"span",49),e.YNc(2,zt,1,3,"span",50),e.YNc(3,Wt,1,3,"span",51),e.YNc(4,Xt,1,3,"span",52),e._uU(5),e.ALo(6,"date"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Q6J("ngIf","OPEN"===(null==t?null:t.state)),e.xp6(1),e.Q6J("ngIf","SETTLED"===(null==t?null:t.state)),e.xp6(1),e.Q6J("ngIf","ACCEPTED"===(null==t?null:t.state)),e.xp6(1),e.Q6J("ngIf","CANCELED"===(null==t?null:t.state)),e.xp6(1),e.hij(" ",e.xi3(6,5,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function jt(n,i){1&n&&(e.TgZ(0,"th",57),e._uU(1," Date Settled "),e.qZA())}function Kt(n,i){if(1&n&&(e.TgZ(0,"td",58),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(0!=+(null==t?null:t.settle_date)?e.xi3(2,1,1e3*+(null==t?null:t.settle_date),"dd/MMM/y HH:mm"):"-")}}function en(n,i){1&n&&(e.TgZ(0,"th",47),e._uU(1," Memo "),e.qZA())}const tn=function(n){return{"max-width":n}};function nn(n,i){if(1&n&&(e.TgZ(0,"td",48)(1,"div",59)(2,"span",60),e._uU(3),e.qZA()()()),2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,tn,a.screenSize===a.screenSizeEnum.XS?"10rem":"22rem")),e.xp6(2),e.Oqu(null==t?null:t.memo)}}function an(n,i){1&n&&(e.TgZ(0,"th",61),e._uU(1," Amount (Sats) "),e.qZA())}function on(n,i){if(1&n&&(e.TgZ(0,"td",48)(1,"span",62),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.value)," ")}}function sn(n,i){1&n&&(e.TgZ(0,"th",61),e._uU(1," Amount Settled (Sats) "),e.qZA())}function ln(n,i){if(1&n&&(e.TgZ(0,"td",48)(1,"span",62),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.amt_paid_sat)," ")}}function rn(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",63)(1,"div",64)(2,"mat-select",65),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",66),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}const cn=function(n){return{"pl-3":n}};function un(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",67)(1,"div",68)(2,"mat-select",69),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",66),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onInvoiceClick(s)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",66),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onRefreshInvoice(s)}),e._uU(7,"Refresh"),e.qZA()()()()}if(2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,cn,t.screenSize!==t.screenSizeEnum.XS))}}function pn(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No invoice available."),e.qZA())}function mn(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting invoices..."),e.qZA())}function dn(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function _n(n,i){if(1&n&&(e.TgZ(0,"td",70),e.YNc(1,pn,2,0,"p",71),e.YNc(2,mn,2,0,"p",71),e.YNc(3,dn,2,1,"p",71),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const hn=function(n){return{"display-none":n}};function gn(n,i){if(1&n&&e._UZ(0,"tr",72),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,hn,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function fn(n,i){1&n&&e._UZ(0,"tr",73)}function Cn(n,i){1&n&&e._UZ(0,"tr",74)}const xn=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},yn=function(){return["no_invoice"]};function Tn(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",16)(1,"div",17)(2,"div",18),e._UZ(3,"fa-icon",19),e.TgZ(4,"span",20),e._uU(5,"Invoices History"),e.qZA()(),e.TgZ(6,"mat-form-field",21)(7,"input",22),e.NdJ("keyup",function(){return e.CHM(t),e.oxw().applyFilter()})("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilter=o}),e.qZA()()(),e.TgZ(8,"div",23),e.YNc(9,Bt,1,0,"mat-progress-bar",24),e.TgZ(10,"table",25,26),e.ynx(12,27),e.YNc(13,Vt,2,0,"th",28),e.YNc(14,$t,7,8,"td",29),e.BQk(),e.ynx(15,30),e.YNc(16,jt,2,0,"th",31),e.YNc(17,Kt,3,4,"td",32),e.BQk(),e.ynx(18,33),e.YNc(19,en,2,0,"th",28),e.YNc(20,nn,4,4,"td",29),e.BQk(),e.ynx(21,34),e.YNc(22,an,2,0,"th",35),e.YNc(23,on,4,3,"td",29),e.BQk(),e.ynx(24,36),e.YNc(25,sn,2,0,"th",35),e.YNc(26,ln,4,3,"td",29),e.BQk(),e.ynx(27,37),e.YNc(28,rn,6,0,"th",38),e.YNc(29,un,8,3,"td",39),e.BQk(),e.ynx(30,40),e.YNc(31,_n,4,3,"td",41),e.BQk(),e.YNc(32,gn,1,3,"tr",42),e.YNc(33,fn,1,0,"tr",43),e.YNc(34,Cn,1,0,"tr",44),e.qZA(),e.TgZ(35,"mat-paginator",45),e.NdJ("page",function(o){return e.CHM(t),e.oxw().onPageChange(o)}),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("icon",t.faHistory),e.xp6(4),e.Q6J("ngModel",t.selFilter),e.xp6(2),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.invoices)("ngClass",e.VKq(13,xn,""!==t.errorMessage)),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(15,yn)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("length",t.totalInvoices)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let De=(()=>{class n{constructor(t,a,o,s,r,_){this.logger=t,this.store=a,this.decimalPipe=o,this.commonService=s,this.datePipe=r,this.actions=_,this.calledFrom="transactions",this.faHistory=v.qO$,this.selNode={},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.information={},this.flgSticky=!1,this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["creation_date","value","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["creation_date","settle_date","value","amt_paid_sat","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["creation_date","settle_date","memo","value","actions"]):(this.flgSticky=!0,this.displayedColumns=["creation_date","settle_date","memo","value","amt_paid_sat","actions"])}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.Ef).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=t.listInvoices.total_invoices||0,this.firstOffset=+(t.listInvoices.first_index_offset||-1),this.lastOffset=+(t.listInvoices.last_index_offset||-1),this.invoicesData=t.listInvoices.invoices||[],this.invoicesData.length>0&&this.sort&&this.paginator&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[3]),(0,Y.h)(t=>t.type===l.uR.SET_LOOKUP_LND||t.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.uR.SET_LOOKUP_LND&&this.invoicesData.length>0&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(t){const a=this.expiry?this.expiry:3600;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,w.Rd)({payload:{uiMessage:l.m6.ADD_INVOICE,memo:this.memo,invoiceValue:this.invoiceValue,private:this.private,expiry:a,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(t){this.store.dispatch((0,S.qR)({payload:{data:{invoice:t,newlyAdded:!1,component:Qt.v}}}))}onRefreshInvoice(t){var a,o;t&&t.r_hash&&this.store.dispatch((0,w.n7)({payload:{openSnackBar:!0,paymentHash:null===(o=null===(a=Buffer.from(t.r_hash.trim(),"hex").toString("base64"))||void 0===a?void 0:a.replace(/\+/g,"-"))||void 0===o?void 0:o.replace(/[/]/g,"_")}}))}updateInvoicesData(t){var a;this.invoicesData=null===(a=this.invoicesData)||void 0===a?void 0:a.map(o=>o.r_hash===t.r_hash?t:o)}loadInvoicesTable(t){this.invoices=new c.by(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.invoices.filterPredicate=(a,o)=>{var s,r;return((a.creation_date?null===(s=this.datePipe.transform(new Date(1e3*a.creation_date),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+(a.settle_date?null===(r=this.datePipe.transform(new Date(1e3*a.settle_date),"dd/MMM/YYYY HH:mm"))||void 0===r?void 0:r.toLowerCase():"")+JSON.stringify(a).toLowerCase()).includes(o)},this.applyFilter(),this.logger.info(this.invoices)}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}onPageChange(t){let a=!0,o=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,o=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,o=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,o=0),this.store.dispatch((0,w.WM)({payload:{num_max_invoices:t.pageSize,index_offset:o,reversed:a}}))}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[4])).subscribe({next:t=>{this.invoiceValueHint="= "+t.symbol+this.decimalPipe.transform(t.OTHER,l.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,S.qR)({payload:{data:{pageSize:this.pageSize,component:Et}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(p.JJ),e.Y36(O.v),e.Y36(p.uU),e.Y36(W.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Invoices")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","end start"],["matInput","","placeholder","Memo","tabindex","1","name","memo",3,"ngModel","ngModelChange"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","2","name","invValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","5",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","tabindex","6","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","settle_date"],["mat-header-cell","","mat-sort-header","","class","pl-4",4,"matHeaderCellDef"],["mat-cell","","class","pl-4",4,"matCellDef"],["matColumnDef","memo"],["matColumnDef","value"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_paid_sat"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"length","pageSize","pageSizeOptions","showFirstLastButtons","page"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["class","dot grey","matTooltip","Open","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Open","matTooltipPosition","right",1,"dot","grey",3,"ngClass"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","",1,"pl-4"],["mat-cell","",1,"pl-4"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,Yt,15,5,"form",1),e.YNc(2,Ht,3,0,"div",2),e.YNc(3,Tn,36,16,"div",3),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf","home"===a.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===a.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===a.calledFrom))},directives:[d.xw,d.yH,d.Wh,p.O5,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,u.JJ,u.On,u.wV,u.qQ,K.q,x.R9,x.bx,N.lW,D.BN,H.$V,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,j.gM,p.PC,k.Zl,R.gD,R.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.uU,p.JJ],styles:[".mat-column-memo[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-memo[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();var z=f(5698),ee=f(8104),V=f(1125),ie=f(1079);const vn=["paymentReq"];function bn(n,i){if(1&n&&(e.TgZ(0,"mat-hint"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.paymentDecodedHint)}}function Zn(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment request is required."),e.qZA())}function wn(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.paymentDecodedHint)}}function An(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment amount is required."),e.qZA())}function Sn(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",1)(1,"input",29,30),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().paymentAmount=o})("change",function(o){return e.CHM(t),e.oxw().onAmountChange(o)}),e.qZA(),e.TgZ(3,"mat-hint"),e._uU(4,"It is a zero amount invoice, enter amount to be paid."),e.qZA(),e.YNc(5,An,2,0,"mat-error",11),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.paymentAmount),e.xp6(4),e.Q6J("ngIf",!t.paymentAmount)}}function Ln(n,i){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",null==t?null:t.name," ")}}function kn(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("",null==t.selFeeLimitType?null:t.selFeeLimitType.placeholder," is required.")}}function Fn(n,i){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function Nn(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Channel not found in the list."),e.qZA())}function qn(n,i){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.paymentError)}}function Un(n,i){if(1&n&&(e.TgZ(0,"div",32),e._UZ(1,"fa-icon",33),e.YNc(2,qn,2,1,"span",11),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.paymentError)}}let On=(()=>{class n{constructor(t,a,o,s,r,_,g){this.dialogRef=t,this.store=a,this.logger=o,this.commonService=s,this.decimalPipe=r,this.actions=_,this.dataService=g,this.faExclamationTriangle=v.eHv,this.selNode={},this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHint="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new u.NI,this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.feeLimitTypes=l.Vc,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(o=>{this.selNode=o}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1])).subscribe(o=>{var s;this.activeChannels=o.channels&&o.channels.length?null===(s=o.channels)||void 0===s?void 0:s.filter(r=>r.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(o)}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(o=>o.type===l.uR.UPDATE_API_CALL_STATUS_LND||o.type===l.uR.SEND_PAYMENT_STATUS_LND)).subscribe(o=>{o.type===l.uR.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),o.type===l.uR.UPDATE_API_CALL_STATUS_LND&&o.payload.status===l.Bn.ERROR&&"SendPayment"===o.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=o.payload.message)});let t="",a="";this.activeChannels=this.activeChannels.sort((o,s)=>(t=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"",a=s.remote_alias?s.remote_alias.toLowerCase():s.chan_id?s.chan_id.toLowerCase():"",ta?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,h.R)(this.unSubs[3])).subscribe(o=>{"string"==typeof o&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){var t;return this.activeChannels&&this.activeChannels.length?null===(t=this.activeChannels)||void 0===t?void 0:t.filter(a=>0===(a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(a.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}onSelectedChannelChanged(){var t;if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const a=this.activeChannels&&this.activeChannels.length?null===(t=this.activeChannels)||void 0===t?void 0:t.filter(o=>{const s=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"";return s.length===this.selectedChannelCtrl.value.length&&0===s.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];a&&a.length>0?(this.selectedChannelCtrl.setValue(a[0]),this.selectedChannelCtrl.setErrors(null)):this.selectedChannelCtrl.setErrors({notfound:!0})}}onSendPayment(){if(this.selectedChannelCtrl.value&&"string"==typeof this.selectedChannelCtrl.value&&this.onSelectedChannelChanged(),!this.paymentRequest||this.zeroAmtInvoice&&(!this.paymentAmount||this.paymentAmount<=0)||"string"==typeof this.selectedChannelCtrl.value)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.onPaymentRequestEntry(this.paymentRequest)}sendPayment(){var t;if(this.selFeeLimitType!==this.feeLimitTypes[0]&&!this.feeLimit)return!0;this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.zeroAmtInvoice=!1,this.store.dispatch((0,w.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}}))):(this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=(null===(t=this.paymentAmount)||void 0===t?void 0:t.toString())||"",this.store.dispatch((0,w.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:this.paymentAmount||0,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}})))}onAmountChange(t){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentAmount=null,this.paymentError="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,z.q)(1)).subscribe({next:a=>{this.paymentDecoded=a,this.selectedChannelCtrl.setValue(null),this.onAdvancedPanelToggle(!0,!0),this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.filteredMinAmtActvChannels=this.filterChannels(),this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.zeroAmtInvoice=!1,this.selNode.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"BTC",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[4])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats ("+o.symbol+" "+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHint="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"))},error:a=>{this.logger.error(a),this.paymentDecodedHint="ERROR: "+a.message,this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(t,a){if(t&&!a){const o=this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.remote_alias?this.selectedChannelCtrl.value.remote_alias:this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.chan_id?this.selectedChannelCtrl.value.chan_id:"";this.advancedTitle="Advanced Options | "+this.selFeeLimitType.name+("none"===this.selFeeLimitType.id?"":": "+this.feeLimit)+(""!==o?" | First Outgoing Channel: "+o:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selectedChannelCtrl.setValue(null),this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHint=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(L.yh),e.Y36(U.mQ),e.Y36(O.v),e.Y36(p.JJ),e.Y36(W.eX),e.Y36(ee.D))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(t,a){if(1&t&&e.Gf(vn,5),2&t){let o;e.iGM(o=e.CRH())&&(a.paymentReq=o.first)}},decls:43,vars:21,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["sendPaymentForm","ngForm"],["autoFocus","","matInput","","placeholder","Payment Request","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxFlex","100","fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","30","fxLayoutAlign","start end"],["tabindex","5","Placeholder","Fee Limits",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","26"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModel","placeholder","step","min","disabled","ngModelChange"],["fLmt","ngModel"],["fxFlex","40","fxLayoutAlign","start end"],["type","text","placeholder","First Outgoing Channel","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","id","sendBtn","color","primary","tabindex","3",3,"click"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(t,a){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Send Payment"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",1)(12,"textarea",9,10),e.NdJ("ngModelChange",function(s){return a.onPaymentRequestEntry(s)})("matTextareaAutosize",function(){return!0}),e.qZA(),e.YNc(14,bn,2,1,"mat-hint",11),e.YNc(15,Zn,2,0,"mat-error",11),e.YNc(16,wn,2,1,"mat-error",11),e.qZA(),e.YNc(17,Sn,6,2,"mat-form-field",12),e.TgZ(18,"mat-expansion-panel",13),e.NdJ("closed",function(){return a.onAdvancedPanelToggle(!0,!1)})("opened",function(){return a.onAdvancedPanelToggle(!1,!1)}),e.TgZ(19,"mat-expansion-panel-header")(20,"mat-panel-title")(21,"span"),e._uU(22),e.qZA()()(),e.TgZ(23,"div",14)(24,"mat-form-field",15)(25,"mat-select",16),e.NdJ("valueChange",function(s){return a.selFeeLimitType=s}),e.YNc(26,Ln,2,2,"mat-option",17),e.qZA()(),e.TgZ(27,"mat-form-field",18)(28,"input",19,20),e.NdJ("ngModelChange",function(s){return a.feeLimit=s}),e.qZA(),e.YNc(30,kn,2,1,"mat-error",11),e.qZA(),e.TgZ(31,"mat-form-field",21),e._UZ(32,"input",22),e.TgZ(33,"mat-autocomplete",23,24),e.NdJ("optionSelected",function(){return a.onSelectedChannelChanged()}),e.YNc(35,Fn,2,2,"mat-option",17),e.qZA(),e.YNc(36,Nn,2,0,"mat-error",11),e.qZA()()(),e.YNc(37,Un,3,2,"div",25),e.TgZ(38,"div",26)(39,"button",27),e.NdJ("click",function(){return a.resetData()}),e._uU(40,"Clear Fields"),e.qZA(),e.TgZ(41,"button",28),e.NdJ("click",function(){return a.onSendPayment()}),e._uU(42,"Send Payment"),e.qZA()()()()()()),2&t){const o=e.MAs(13),s=e.MAs(34);e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(6),e.Q6J("ngModel",a.paymentRequest),e.xp6(2),e.Q6J("ngIf",a.paymentRequest&&""!==a.paymentDecodedHint),e.xp6(1),e.Q6J("ngIf",!a.paymentRequest),e.xp6(1),e.Q6J("ngIf",null==o.errors?null:o.errors.decodeError),e.xp6(1),e.Q6J("ngIf",a.zeroAmtInvoice),e.xp6(5),e.Oqu(a.advancedTitle),e.xp6(3),e.Q6J("value",a.selFeeLimitType),e.xp6(1),e.Q6J("ngForOf",a.feeLimitTypes),e.xp6(2),e.Q6J("ngModel",a.feeLimit)("placeholder",null==a.selFeeLimitType?null:a.selFeeLimitType.placeholder)("step",1)("min",0)("disabled",a.selFeeLimitType===a.feeLimitTypes[0]),e.xp6(2),e.Q6J("ngIf",a.selFeeLimitType!==a.feeLimitTypes[0]&&!a.feeLimit),e.xp6(2),e.Q6J("formControl",a.selectedChannelCtrl)("matAutocomplete",s),e.xp6(1),e.Q6J("displayWith",a.displayFn),e.xp6(2),e.Q6J("ngForOf",a.filteredMinAmtActvChannels),e.xp6(1),e.Q6J("ngIf",null==a.selectedChannelCtrl.errors?null:a.selectedChannelCtrl.errors.notfound),e.xp6(1),e.Q6J("ngIf",""!==a.paymentError)}},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,E.ZT,Z.dn,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,$.h,u.Q7,u.JJ,u.On,p.O5,x.bx,x.TO,V.ib,V.yz,V.yK,R.gD,p.sg,B.ey,u.wV,u.qQ,K.q,ie.ZL,u.oH,ie.XC,D.BN],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-payment_hash[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();var le=f(3093),ne=f(711);const Rn=["sendPaymentForm"];function Mn(n,i){if(1&n&&(e.TgZ(0,"mat-hint"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.paymentDecodedHint)}}function In(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment request is required."),e.qZA())}function Dn(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"textarea",7,8),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().onPaymentRequestEntry(o)})("matTextareaAutosize",function(){return!0}),e.qZA(),e.YNc(5,Mn,2,1,"mat-hint",9),e.YNc(6,In,2,0,"mat-error",9),e.qZA(),e.TgZ(7,"div",10)(8,"button",11),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(9,"Clear Field"),e.qZA(),e.TgZ(10,"button",12),e.NdJ("click",function(){return e.CHM(t),e.oxw().onSendPayment()}),e._uU(11,"Send Payment"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.paymentRequest),e.xp6(2),e.Q6J("ngIf",t.paymentRequest&&""!==t.paymentDecodedHint),e.xp6(1),e.Q6J("ngIf",!t.paymentRequest)}}function Pn(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",13)(1,"button",14),e.NdJ("click",function(){return e.CHM(t),e.oxw().openSendPaymentModal()}),e._uU(2,"Send Payment"),e.qZA()()}}function Jn(n,i){1&n&&e._UZ(0,"mat-progress-bar",52)}function En(n,i){1&n&&(e.TgZ(0,"th",53),e._uU(1,"Creation Date"),e.qZA())}const oe=function(n){return{"mr-0":n}};function Qn(n,i){if(1&n&&e._UZ(0,"span",57),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,oe,t.screenSize===t.screenSizeEnum.XS))}}function Yn(n,i){if(1&n&&e._UZ(0,"span",58),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,oe,t.screenSize===t.screenSizeEnum.XS))}}function Hn(n,i){if(1&n&&(e.TgZ(0,"td",54),e.YNc(1,Qn,1,3,"span",55),e.YNc(2,Yn,1,3,"span",56),e._uU(3),e.ALo(4,"date"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Q6J("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.xp6(1),e.hij(" ",e.xi3(4,3,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function Bn(n,i){1&n&&(e.TgZ(0,"th",53),e._uU(1,"Payment Hash"),e.qZA())}const Pe=function(n){return{"max-width":n}};function Vn(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",59)(2,"span",60),e._uU(3),e.qZA()()()),2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Pe,a.screenSize===a.screenSizeEnum.XS?"10rem":"30rem")),e.xp6(2),e.Oqu(null==t?null:t.payment_hash)}}function Gn(n,i){1&n&&(e.TgZ(0,"th",61),e._uU(1,"Fee (Sats)"),e.qZA())}function zn(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",62),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.fee))}}function Wn(n,i){1&n&&(e.TgZ(0,"th",61),e._uU(1,"Value (Sats)"),e.qZA())}function Xn(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",62),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.value))}}function $n(n,i){1&n&&(e.TgZ(0,"th",61),e._uU(1,"#Hops"),e.qZA())}function jn(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",62),e._uU(2),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu((null==t||null==t.htlcs[0]||null==t.htlcs[0].route||null==t.htlcs[0].route.hops?null:t.htlcs[0].route.hops.length)||0)}}function Kn(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",63)(1,"div",64)(2,"mat-select",65),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",66),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function ea(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",67)(1,"button",68),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onPaymentClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function ta(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No payment available."),e.qZA())}function na(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting payments..."),e.qZA())}function aa(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function ia(n,i){if(1&n&&(e.TgZ(0,"td",69),e.YNc(1,ta,2,0,"p",9),e.YNc(2,na,2,0,"p",9),e.YNc(3,aa,2,1,"p",9),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function oa(n,i){if(1&n&&e._UZ(0,"span",57),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,oe,t.screenSize===t.screenSizeEnum.XS))}}function sa(n,i){if(1&n&&e._UZ(0,"span",58),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,oe,t.screenSize===t.screenSizeEnum.XS))}}function la(n,i){if(1&n&&e._UZ(0,"span",57),2&n){const t=e.oxw(5);e.Q6J("ngClass",e.VKq(1,oe,t.screenSize===t.screenSizeEnum.XS))}}function ra(n,i){if(1&n&&e._UZ(0,"span",58),2&n){const t=e.oxw(5);e.Q6J("ngClass",e.VKq(1,oe,t.screenSize===t.screenSizeEnum.XS))}}function ca(n,i){if(1&n&&(e.TgZ(0,"span",72),e.YNc(1,la,1,3,"span",55),e.YNc(2,ra,1,3,"span",56),e._uU(3),e.ALo(4,"date"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Q6J("ngIf","SUCCEEDED"===t.status),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==t.status),e.xp6(1),e.hij(" ",e.xi3(4,3,1e3*t.attempt_time,"dd/MMM/y HH:mm")," ")}}function ua(n,i){if(1&n&&(e.ynx(0),e.YNc(1,ca,5,6,"span",71),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function pa(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",70),e.YNc(2,oa,1,3,"span",55),e.YNc(3,sa,1,3,"span",56),e._uU(4),e.qZA(),e.YNc(5,ua,2,1,"ng-container",9),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.Q6J("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.xp6(1),e.hij(" Total Attempts: ",null==t||null==t.htlcs?null:t.htlcs.length," "),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function ma(n,i){if(1&n&&(e.TgZ(0,"span",70),e._uU(1),e.qZA()),2&n){const t=i.index;e.xp6(1),e.hij(" HTLC ",t+1," ")}}function da(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,ma,2,1,"span",73),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function _a(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",59)(2,"span",60),e._uU(3),e.qZA()(),e.YNc(4,da,2,1,"span",9),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,Pe,a.screenSize===a.screenSizeEnum.XS?"10rem":"30rem")),e.xp6(2),e.Oqu(null==t?null:t.payment_hash),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function ha(n,i){if(1&n&&(e.TgZ(0,"span",74),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function ga(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,ha,3,4,"span",75),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function fa(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",74),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,ga,2,1,"span",9),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.xi3(3,2,null==t?null:t.fee,"1.0-0")),e.xp6(2),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Ca(n,i){if(1&n&&(e.TgZ(0,"span",74),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function xa(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Ca,3,4,"span",75),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function ya(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",74),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,xa,2,1,"span",9),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.xi3(3,2,null==t?null:t.value,"1.0-0")),e.xp6(2),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Ta(n,i){if(1&n&&(e.TgZ(0,"span",74),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,(null==t.route||null==t.route.hops?null:t.route.hops.length)||0,"1.0-0")," ")}}function va(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Ta,3,4,"span",75),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function ba(n,i){if(1&n&&(e.TgZ(0,"td",54)(1,"span",74),e._uU(2,"-"),e.qZA(),e.YNc(3,va,2,1,"span",9),e.qZA()),2&n){const t=i.$implicit;e.xp6(3),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Za(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",62)(1,"button",79),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2).$implicit;return e.oxw(2).onHTLCClick(s,r)}),e._uU(2),e.qZA()()}if(2&n){const t=i.index;e.xp6(2),e.hij("View ",t+1,"")}}function wa(n,i){if(1&n&&(e.TgZ(0,"div"),e.YNc(1,Za,3,1,"div",78),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function Aa(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",76)(1,"span",62)(2,"button",77),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return s.is_expanded=!(null!=s&&s.is_expanded)}),e._uU(3),e.qZA()(),e.YNc(4,wa,2,1,"div",9),e.qZA()}if(2&n){const t=i.$implicit;e.xp6(3),e.Oqu(null!=t&&t.is_expanded?"Hide":"Show"),e.xp6(1),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function Sa(n,i){1&n&&e._UZ(0,"tr",80)}const La=function(n){return{"display-none":n}};function ka(n,i){if(1&n&&e._UZ(0,"tr",81),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,La,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function Fa(n,i){1&n&&e._UZ(0,"tr",82)}function Na(n,i){1&n&&e._UZ(0,"tr",80)}const qa=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},Ua=function(){return["no_payment"]};function Oa(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",15)(1,"div",16)(2,"div",17),e._UZ(3,"fa-icon",18),e.TgZ(4,"span",19),e._uU(5,"Payments History"),e.qZA()(),e.TgZ(6,"mat-form-field",20)(7,"input",21),e.NdJ("keyup",function(){return e.CHM(t),e.oxw().applyFilter()})("ngModelChange",function(o){return e.CHM(t),e.oxw().selFilter=o}),e.qZA()()(),e.TgZ(8,"div",22)(9,"div",23),e.YNc(10,Jn,1,0,"mat-progress-bar",24),e.TgZ(11,"table",25,26),e.ynx(13,27),e.YNc(14,En,2,0,"th",28),e.YNc(15,Hn,5,6,"td",29),e.BQk(),e.ynx(16,30),e.YNc(17,Bn,2,0,"th",28),e.YNc(18,Vn,4,4,"td",29),e.BQk(),e.ynx(19,31),e.YNc(20,Gn,2,0,"th",32),e.YNc(21,zn,4,3,"td",29),e.BQk(),e.ynx(22,33),e.YNc(23,Wn,2,0,"th",32),e.YNc(24,Xn,4,3,"td",29),e.BQk(),e.ynx(25,34),e.YNc(26,$n,2,0,"th",32),e.YNc(27,jn,3,1,"td",29),e.BQk(),e.ynx(28,35),e.YNc(29,Kn,6,0,"th",36),e.YNc(30,ea,3,0,"td",37),e.BQk(),e.ynx(31,38),e.YNc(32,ia,4,3,"td",39),e.BQk(),e.ynx(33,40),e.YNc(34,pa,6,4,"td",29),e.BQk(),e.ynx(35,41),e.YNc(36,_a,5,5,"td",29),e.BQk(),e.ynx(37,42),e.YNc(38,fa,5,5,"td",29),e.BQk(),e.ynx(39,43),e.YNc(40,ya,5,5,"td",29),e.BQk(),e.ynx(41,44),e.YNc(42,ba,4,1,"td",29),e.BQk(),e.ynx(43,45),e.YNc(44,Aa,5,2,"td",46),e.BQk(),e.YNc(45,Sa,1,0,"tr",47),e.YNc(46,ka,1,3,"tr",48),e.YNc(47,Fa,1,0,"tr",49),e.YNc(48,Na,1,0,"tr",50),e.qZA(),e.TgZ(49,"mat-paginator",51),e.NdJ("page",function(o){return e.CHM(t),e.oxw().onPageChange(o)}),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("icon",t.faHistory),e.xp6(4),e.Q6J("ngModel",t.selFilter),e.xp6(3),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.payments)("ngClass",e.VKq(15,qa,""!==t.errorMessage)),e.xp6(34),e.Q6J("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.xp6(1),e.Q6J("matFooterRowDef",e.DdM(17,Ua)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("length",t.totalPayments)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Je=(()=>{class n{constructor(t,a,o,s,r,_,g,C){this.logger=t,this.commonService=a,this.dataService=o,this.store=s,this.rtlEffects=r,this.lndEffects=_,this.decimalPipe=g,this.datePipe=C,this.calledFrom="transactions",this.faHistory=v.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.peers=[],this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHint="",this.flgSticky=!1,this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["creation_date","fee","actions"],this.htlcColumns=["groupTotal","groupFee","groupAction"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["creation_date","fee","value","hops","actions"],this.htlcColumns=["groupTotal","groupFee","groupValue","groupHops","groupAction"]):(this.flgSticky=!0,this.displayedColumns=["creation_date","payment_hash","fee","value","hops","actions"],this.htlcColumns=["groupTotal","groupHash","groupFee","groupValue","groupHops","groupAction"])}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(y.PP).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(t.listPayments.first_index_offset||-1),this.lastOffset=+(t.listPayments.last_index_offset||-1),this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize)),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize))}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,z.q)(1)).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.timestamp?(this.paymentDecoded.num_satoshis=this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis?(+this.paymentDecoded.num_msat/1e3).toString():"0",this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.payment_hash||"",this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.store.dispatch((0,S.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:l.Gi.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.Gi.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,z.q)(1)).subscribe(a=>{a&&(this.store.dispatch((0,w.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,S.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:l.Gi.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.Gi.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,getInputs:[{placeholder:"Amount (Sats)",inputType:l.Gi.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,z.q)(1)).subscribe(o=>{o&&(this.paymentDecoded.num_satoshis=o[0].inputValue,this.store.dispatch((0,w.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:o[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,S.qR)({payload:{data:{component:On}}}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHint="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,z.q)(1)).subscribe(a=>{this.paymentDecoded=a,this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis?this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,h.R)(this.unSubs[5])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats ("+o.symbol+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}onPageChange(t){let a=!0,o=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,o=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,o=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,o=0);const s=t.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(s,s+this.pageSize))}is_group(t,a){return a.htlcs&&a.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(t){const a=this;return null==t?void 0:t.reduce((o,s)=>{const r=a.peers.find(_=>_.pub_key===s.pub_key);return r&&r.alias?o.push("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+a.decimalPipe.transform(s.amt_to_forward)+"
"):a.dataService.getAliasesFromPubkeys(s.pub_key||"",!1).pipe((0,h.R)(a.unSubs[6])).subscribe(_=>{var g;o.push("
Channel: "+(_.node&&_.node.alias?_.node.alias.padEnd(20):(null===(g=s.pub_key)||void 0===g?void 0:g.substring(0,17))+"...")+"			Amount (Sats): "+a.decimalPipe.transform(s.amt_to_forward)+"
")}),o},[])}onHTLCClick(t,a){a.payment_request&&""!==a.payment_request.trim()?this.dataService.decodePayment(a.payment_request,!1).pipe((0,z.q)(1)).subscribe({next:o=>{setTimeout(()=>{this.showHTLCView(t,a,o)},0)},error:o=>{this.showHTLCView(t,a)}}):this.showHTLCView(t,a)}showHTLCView(t,a,o){var s,r,_,g;const C=[[{key:"payment_hash",value:a.payment_hash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"preimage",value:t.preimage,title:"Preimage",width:100,type:l.Gi.STRING}],[{key:"payment_request",value:a.payment_request,title:"Payment Request",width:100,type:l.Gi.STRING}],[{key:"status",value:t.status,title:"Status",width:33,type:l.Gi.STRING},{key:"attempt_time_ns",value:+(t.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:l.Gi.DATE_TIME},{key:"resolve_time_ns",value:+(t.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:l.Gi.DATE_TIME}],[{key:"total_amt",value:null===(s=t.route)||void 0===s?void 0:s.total_amt,title:"Amount (Sats)",width:33,type:l.Gi.NUMBER},{key:"total_fees",value:null===(r=t.route)||void 0===r?void 0:r.total_fees,title:"Fee (Sats)",width:33,type:l.Gi.NUMBER},{key:"total_time_lock",value:null===(_=t.route)||void 0===_?void 0:_.total_time_lock,title:"Total Time Lock",width:34,type:l.Gi.NUMBER}],[{key:"hops",value:this.getHopDetails((null===(g=t.route)||void 0===g?void 0:g.hops)||[]),title:"Hops",width:100,type:l.Gi.ARRAY}]];o&&o.description&&""!==o.description&&C.splice(3,0,[{key:"description",value:o.description,title:"Description",width:100,type:l.Gi.STRING}]),this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"HTLC Information",message:C,scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}onPaymentClick(t){var a;if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const o=null===(a=t.htlcs[0].route.hops)||void 0===a?void 0:a.reduce((s,r)=>r.pub_key&&""===s?r.pub_key:s+","+r.pub_key,"");this.dataService.getAliasesFromPubkeys(o,!0).pipe((0,h.R)(this.unSubs[7])).subscribe(s=>{this.showPaymentView(t,null==s?void 0:s.reduce((r,_)=>""===r?_:r+"\n"+_,""))})}else this.showPaymentView(t,"")}showPaymentView(t,a){const o=[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:l.Gi.STRING}],[{key:"payment_request",value:t.payment_request,title:"Payment Request",width:100,type:l.Gi.STRING}],[{key:"status",value:t.status,title:"Status",width:50,type:l.Gi.STRING},{key:"creation_date",value:t.creation_date,title:"Creation Date",width:50,type:l.Gi.DATE_TIME}],[{key:"value_msat",value:t.value_msat,title:"Value (mSats)",width:50,type:l.Gi.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:50,type:l.Gi.NUMBER}],[{key:"path",value:a,title:"Path",width:100,type:l.Gi.STRING}]];t.payment_request&&""!==t.payment_request.trim()?this.dataService.decodePayment(t.payment_request,!1).pipe((0,z.q)(1)).subscribe(s=>{s&&s.description&&""!==s.description&&o.splice(3,0,[{key:"description",value:s.description,title:"Description",width:100,type:l.Gi.STRING}]),setTimeout(()=>{this.openPaymentAlert(o,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(o,!1)}openPaymentAlert(t,a){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Payment Information",message:t,scrollable:a}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}loadPaymentsTable(t){this.payments=new c.by(t?[...t]:[]),this.payments.sortingDataAccessor=(a,o)=>"hops"===o?a.htlcs.length&&a.htlcs[0]&&a.htlcs[0].route&&a.htlcs[0].route.hops&&a.htlcs[0].route.hops.length?a.htlcs[0].route.hops.length:0:a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.payments.sort=this.sort,this.payments.filterPredicate=(a,o)=>{var s;return((a.creation_date?null===(s=this.datePipe.transform(new Date(1e3*a.creation_date),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(a).toLowerCase()).includes(o)},this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),a=null==t?void 0:t.reduce((o,s)=>(s.payment_request&&""!==s.payment_request.trim()&&(o=""===o?s.payment_request:o+","+s.payment_request),o),"");this.dataService.decodePayments(a).pipe((0,h.R)(this.unSubs[8])).subscribe(o=>{let s=0;o.forEach((_,g)=>{if(_){for(;t[g+s].payment_hash!==_.payment_hash;)s+=1;t[g+s].description=_.description}});const r=null==t?void 0:t.reduce((_,g)=>_.concat(g),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(ee.D),e.Y36(L.yh),e.Y36(le.V),e.Y36(ne.l),e.Y36(p.JJ),e.Y36(p.uU))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(t,a){if(1&t&&(e.Gf(Rn,5),e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.form=o.first),e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Payments")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["sendPaymentForm","ngForm"],["fxFlex","100"],["matInput","","placeholder","Payment Request","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","payment_hash"],["matColumnDef","fee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","hops"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","groupTotal"],["matColumnDef","groupHash"],["matColumnDef","groupFee"],["matColumnDef","groupValue"],["matColumnDef","groupHops"],["matColumnDef","groupAction"],["mat-cell","","class","px-2",4,"matCellDef"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"length","pageSize","pageSizeOptions","showFirstLastButtons","page"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["class","dot green","matTooltip","Succeeded","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Succeeded","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-2"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-2"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span pl-3",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"htlc-row-span","pl-3"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-cell","",1,"px-2"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["fxLayoutAlign","end center",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,Dn,12,3,"form",1),e.YNc(2,Pn,3,0,"div",2),e.YNc(3,Oa,50,18,"div",3),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf","home"===a.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===a.calledFrom),e.xp6(1),e.Q6J("ngIf","transactions"===a.calledFrom))},directives:[d.xw,d.yH,d.Wh,p.O5,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,u.Q7,H.$V,u.JJ,u.On,x.bx,x.TO,N.lW,D.BN,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,j.gM,p.PC,k.Zl,R.gD,R.$L,B.ey,c.mD,c.yh,p.sg,c.nj,c.Gk,c.Ke,c.Q2,c.as,c.XQ,F.NW],pipes:[p.uU,p.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-payment_hash[_ngcontent-%COMP%]{flex:0 0 20%;width:20%}.mat-column-payment_hash[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-groupAction[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-groupAction[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{width:9rem}.mat-column-groupAction[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{margin-top:.5rem;width:9rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mat-column-groupTotal[_ngcontent-%COMP%]{min-width:17rem}"]}),n})();function Ra(n,i){if(1&n&&(e.TgZ(0,"button",26)(1,"mat-icon"),e._uU(2,"more_vert"),e.qZA()()),2&n){e.oxw();const t=e.MAs(11);e.Q6J("matMenuTriggerFor",t)}}function Ma(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){const s=e.CHM(t).index,r=e.oxw().$implicit;return e.oxw(2).onNavigateTo(r.links[s])}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t)}}function Ia(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){return e.CHM(t),e.oxw(3).onsortChannelsBy()}),e._uU(1),e.qZA()}if(2&n){const t=e.oxw(3);e.xp6(1),e.hij("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function Da(n,i){1&n&&e._UZ(0,"mat-progress-bar",28)}function Pa(n,i){if(1&n&&e._UZ(0,"rtl-node-info",29),2&n){const t=e.oxw(3);e.Q6J("information",t.information)("showColorFieldSeparately",!1)}}function Ja(n,i){if(1&n&&e._UZ(0,"rtl-balances-info",30),2&n){const t=e.oxw(3);e.Q6J("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function Ea(n,i){if(1&n&&e._UZ(0,"rtl-channel-capacity-info",31),2&n){const t=e.oxw(3);e.Q6J("sortBy",t.sortField)("channelBalances",t.channelBalances)("allChannels",t.allChannelsCapacity)("errorMessage",t.errorMessages[3])}}function Qa(n,i){if(1&n&&e._UZ(0,"rtl-fee-info",32),2&n){const t=e.oxw(3);e.Q6J("fees",t.fees)("errorMessage",t.errorMessages[1])}}function Ya(n,i){if(1&n&&e._UZ(0,"rtl-channel-status-info",33),2&n){const t=e.oxw(3);e.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function Ha(n,i){1&n&&(e.TgZ(0,"h3"),e._uU(1,"Error! Unable to find information!"),e.qZA())}const Ee=function(n){return{"dashboard-card-content":!0,"error-border":n}};function Ba(n,i){if(1&n&&(e.TgZ(0,"mat-grid-tile",8)(1,"mat-card",9)(2,"mat-card-header")(3,"mat-card-title",10)(4,"div"),e._UZ(5,"fa-icon",11),e.TgZ(6,"span"),e._uU(7),e.qZA()(),e.TgZ(8,"div"),e.YNc(9,Ra,3,1,"button",12),e.TgZ(10,"mat-menu",13,14),e.YNc(12,Ma,2,1,"button",15),e.YNc(13,Ia,2,1,"button",16),e.qZA()()()(),e.TgZ(14,"mat-card-content",17),e.YNc(15,Da,1,0,"mat-progress-bar",18),e.TgZ(16,"div",19),e.YNc(17,Pa,1,2,"rtl-node-info",20),e.YNc(18,Ja,1,2,"rtl-balances-info",21),e.YNc(19,Ea,1,4,"rtl-channel-capacity-info",22),e.YNc(20,Qa,1,2,"rtl-fee-info",23),e.YNc(21,Ya,1,2,"rtl-channel-status-info",24),e.YNc(22,Ha,2,0,"h3",25),e.qZA()()()()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(5),e.Q6J("icon",t.icon),e.xp6(2),e.Oqu(t.title),e.xp6(2),e.Q6J("ngIf",t.links[0]),e.xp6(3),e.Q6J("ngForOf",t.goToOptions),e.xp6(1),e.Q6J("ngIf","capacity"===t.id),e.xp6(1),e.s9C("fxFlex","node"===t.id||"balance"===t.id?70:"fee"===t.id||"status"===t.id?78:90),e.Q6J("ngClass",e.VKq(16,Ee,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR))),e.xp6(1),e.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","node"),e.xp6(1),e.Q6J("ngSwitchCase","balance"),e.xp6(1),e.Q6J("ngSwitchCase","capacity"),e.xp6(1),e.Q6J("ngSwitchCase","fee"),e.xp6(1),e.Q6J("ngSwitchCase","status")}}function Va(n,i){if(1&n&&(e.TgZ(0,"div",2)(1,"div",3),e._UZ(2,"fa-icon",4),e.TgZ(3,"span",5),e._uU(4),e.qZA()(),e.TgZ(5,"mat-grid-list",6),e.YNc(6,Ba,23,18,"mat-grid-tile",7),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Q6J("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),e.xp6(2),e.Oqu(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.xp6(1),e.Q6J("rowHeight",t.operatorCardHeight),e.xp6(1),e.Q6J("ngForOf",t.operatorCards)}}function Ga(n,i){if(1&n&&(e.TgZ(0,"button",26)(1,"mat-icon"),e._uU(2,"more_vert"),e.qZA()()),2&n){e.oxw();const t=e.MAs(9);e.Q6J("matMenuTriggerFor",t)}}function za(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){const s=e.CHM(t).index,r=e.oxw(2).$implicit;return e.oxw(2).onNavigateTo(r.links[s])}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t)}}function Wa(n,i){if(1&n&&(e.TgZ(0,"mat-card-header")(1,"mat-card-title",10)(2,"div"),e._UZ(3,"fa-icon",11),e.TgZ(4,"span"),e._uU(5),e.qZA()(),e.TgZ(6,"div"),e.YNc(7,Ga,3,1,"button",12),e.TgZ(8,"mat-menu",13,42),e.YNc(10,za,2,1,"button",15),e.qZA()()()()),2&n){const t=e.oxw().$implicit;e.xp6(3),e.Q6J("icon",t.icon),e.xp6(2),e.Oqu(t.title),e.xp6(2),e.Q6J("ngIf",t.links[0]),e.xp6(3),e.Q6J("ngForOf",t.goToOptions)}}function Xa(n,i){1&n&&e._UZ(0,"mat-progress-bar",28)}function $a(n,i){if(1&n&&e._UZ(0,"rtl-node-info",43),2&n){const t=e.oxw(3);e.Q6J("information",t.information)}}function ja(n,i){if(1&n&&e._UZ(0,"rtl-balances-info",30),2&n){const t=e.oxw(3);e.Q6J("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function Ka(n,i){if(1&n&&e._UZ(0,"rtl-channel-liquidity-info",44),2&n){const t=e.oxw(3);e.Q6J("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function ei(n,i){if(1&n&&e._UZ(0,"rtl-channel-liquidity-info",44),2&n){const t=e.oxw(3);e.Q6J("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function ti(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){const s=e.CHM(t).index,r=e.oxw(3).$implicit;return e.oxw(2).onNavigateTo(r.links[s])}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t)}}function ni(n,i){if(1&n&&(e.TgZ(0,"button",26)(1,"mat-icon"),e._uU(2,"more_vert"),e.qZA()(),e.TgZ(3,"mat-menu",13,52),e.YNc(5,ti,2,1,"button",15),e.qZA()),2&n){const t=e.MAs(4),a=e.oxw(2).$implicit;e.Q6J("matMenuTriggerFor",t),e.xp6(5),e.Q6J("ngForOf",a.goToOptions)}}function ai(n,i){1&n&&(e.TgZ(0,"span",45)(1,"mat-tab-group",46)(2,"mat-tab",47),e._UZ(3,"rtl-lightning-invoices",48),e.qZA(),e.TgZ(4,"mat-tab",49),e._UZ(5,"rtl-lightning-payments",48),e.qZA(),e.TgZ(6,"mat-tab",50),e.YNc(7,ni,6,2,"ng-template",51),e.qZA()()()),2&n&&(e.xp6(3),e.Q6J("calledFrom","home"),e.xp6(2),e.Q6J("calledFrom","home"),e.xp6(1),e.Q6J("disabled",!0))}function ii(n,i){1&n&&(e.TgZ(0,"h3"),e._uU(1,"Error! Unable to find information!"),e.qZA())}const oi=function(n){return{"p-0":n}};function si(n,i){if(1&n&&(e.TgZ(0,"mat-grid-tile",8)(1,"mat-card",35),e.YNc(2,Wa,11,4,"mat-card-header",36),e.TgZ(3,"mat-card-content",37),e.YNc(4,Xa,1,0,"mat-progress-bar",18),e.TgZ(5,"div",38),e.YNc(6,$a,1,1,"rtl-node-info",39),e.YNc(7,ja,1,2,"rtl-balances-info",21),e.YNc(8,Ka,1,4,"rtl-channel-liquidity-info",40),e.YNc(9,ei,1,4,"rtl-channel-liquidity-info",40),e.YNc(10,ai,8,3,"span",41),e.YNc(11,ii,2,0,"h3",25),e.qZA()()()()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(1),e.Q6J("ngClass",e.VKq(13,oi,"transactions"===t.id)),e.xp6(1),e.Q6J("ngIf","transactions"!==t.id),e.xp6(1),e.s9C("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),e.Q6J("ngClass",e.VKq(15,Ee,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR)),e.xp6(1),e.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","node"),e.xp6(1),e.Q6J("ngSwitchCase","balance"),e.xp6(1),e.Q6J("ngSwitchCase","inboundLiq"),e.xp6(1),e.Q6J("ngSwitchCase","outboundLiq"),e.xp6(1),e.Q6J("ngSwitchCase","transactions")}}function li(n,i){if(1&n&&(e.TgZ(0,"div",3),e._UZ(1,"fa-icon",4),e.TgZ(2,"span",5),e._uU(3),e.qZA()(),e.TgZ(4,"mat-grid-list",34),e.YNc(5,si,12,17,"mat-grid-tile",7),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faSmile),e.xp6(2),e.hij("Welcome ",t.information.alias,"! Your node is up and running."),e.xp6(1),e.Q6J("rowHeight",t.merchantCardHeight),e.xp6(1),e.Q6J("ngForOf",t.merchantCards)}}let ri=(()=>{class n{constructor(t,a,o,s,r){switch(this.logger=t,this.store=a,this.actions=o,this.commonService=s,this.router=r,this.faSmile=Ne.ctA,this.faFrown=Ne.KfU,this.faAngleDoubleDown=v.Sbq,this.faAngleDoubleUp=v.Vfw,this.faChartPie=v.OS1,this.faBolt=v.BDt,this.faServer=v.xf3,this.faNetworkWired=v.kXW,this.flgChildInfoUpdated=!1,this.userPersonaEnum=l.ol,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.selNode={},this.information={},this.balances={onchain:-1,lightning:-1,total:0},this.allChannels=[],this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="405px",this.merchantCardHeight="65px",this.sortField="Balance Score",this.screenSizeEnum=l.cu,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case l.cu.XS:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:6},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}];break;case l.cu.SM:case l.cu.MD:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}];break;default:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}]}}ngOnInit(){this.store.select(y.bx).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=t.nodeSettings,this.information=t.information}),this.store.select(y.JG).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=t.apiCallStatus,this.apiCallStatusBlockchainBalance.status===l.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=t.blockchainBalance.total_balance&&+t.blockchainBalance.total_balance>=0?+t.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var a,o,s,r,_;this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:null===(a=t.pendingChannelsSummary.open)||void 0===a?void 0:a.num_channels,capacity:null===(o=t.pendingChannelsSummary.open)||void 0===o?void 0:o.limbo_balance},this.channelsStatus.closing={num_channels:((null===(s=t.pendingChannelsSummary.closing)||void 0===s?void 0:s.num_channels)||0)+((null===(r=t.pendingChannelsSummary.force_closing)||void 0===r?void 0:r.num_channels)||0)+((null===(_=t.pendingChannelsSummary.waiting_close)||void 0===_?void 0:_.num_channels)||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{var a,o,s,r,_;this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const g=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,C=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:g,remoteBalance:C,balancedness:+(1-Math.abs((g-C)/(g+C))).toFixed(3)},this.balances.lightning=t.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=(null===(a=t.channelsSummary.active)||void 0===a?void 0:a.num_channels)||0,this.inactiveChannels=(null===(o=t.channelsSummary.inactive)||void 0===o?void 0:o.num_channels)||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=null===(s=t.channels)||void 0===s?void 0:s.filter(T=>!0===T.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(r=this.allChannels)||void 0===r?void 0:r.filter(T=>T.remote_balance&&T.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(_=this.allChannels)||void 0===_?void 0:_.filter(T=>T.local_balance&&T.local_balance>0),"local_balance"))),this.allChannels.forEach(T=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(T.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(T.local_balance||0)}),this.flgChildInfoUpdated=!!(this.balances.lightning>=0&&this.balances.onchain>=0&&this.fees.month_fee_sum&&this.fees.month_fee_sum>=0),this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[5]),(0,Y.h)(t=>t.type===l.uR.FETCH_FEES_LND||t.type===l.uR.SET_FEES_LND)).subscribe(t=>{t.type===l.uR.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),t.type===l.uR.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(t){"inactive"===t?this.router.navigateByUrl("/lnd/connections",{state:{filter:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,a)=>{const o=+(t.local_balance||0)+ +(t.remote_balance||0),s=+(a.local_balance||0)+ +(a.remote_balance||0);return o>s?-1:o{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(W.eX),e.Y36(O.v),e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-home"]],decls:3,vars:2,consts:[["fxLayout","column",4,"ngIf","ngIfElse"],["merchantDashboard",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["menuOperator","matMenu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"ngSwitch"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",3,"perfectScrollbar",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",1,"w-100","dashboard-tabs-group"],["label","Receive"],[3,"calledFrom"],["label","Pay"],[3,"disabled"],["mat-tab-label",""],["menuTransactions","matMenu"]],template:function(t,a){if(1&t&&(e.YNc(0,Va,7,4,"div",0),e.YNc(1,li,6,4,"ng-template",null,1,e.W1O)),2&t){const o=e.MAs(2);e.Q6J("ngIf",(null==a.selNode?null:a.selNode.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",o)}},directives:[p.O5,d.xw,d.Wh,D.BN,ue.Il,p.sg,ue.DX,d.yH,Z.a8,Z.dk,Z.n5,N.lW,ge.p6,te.Hw,ge.VK,ge.OP,Z.dn,p.mk,k.oO,J.pW,p.RF,p.n9,Ue,ut,Ct,Oe,Re,p.ED,It,H.$V,P.SP,P.uX,De,Je,P.uD],styles:[""]}),n})();var fe=f(1203),Ce=f(7544);function ci(n,i){if(1&n&&(e.TgZ(0,"span",10),e._uU(1,"Channels"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.activeChannels)}}function ui(n,i){if(1&n&&(e.TgZ(0,"span",10),e._uU(1,"Peers"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.activePeers)}}let pi=(()=>{class n{constructor(t,a,o){this.store=t,this.logger=a,this.router=o,this.selNode={},this.activePeers=0,this.activeChannels=0,this.faUsers=v.FVb,this.faChartPie=v.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t instanceof b.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var a;this.activeChannels=(null===(a=t.channelsSummary.active)||void 0===a?void 0:a.num_channels)||0,this.logger.info(t)}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:t.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:t.blockchainBalance.unconfirmed_balance||0}],this.logger.info(t)})}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh),e.Y36(U.mQ),e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"On-chain Balance"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e._UZ(7,"rtl-currency-unit-converter",5),e.qZA()()(),e.TgZ(8,"div",0),e._UZ(9,"fa-icon",1),e.TgZ(10,"span",2),e._uU(11,"Connections"),e.qZA()(),e.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.NdJ("selectedIndexChange",function(s){return a.activeLink=s})("selectedTabChange",function(s){return a.onSelectedTabChange(s)}),e.TgZ(16,"mat-tab"),e.YNc(17,ci,2,1,"ng-template",8),e.qZA(),e.TgZ(18,"mat-tab"),e.YNc(19,ui,2,1,"ng-template",8),e.qZA()(),e.TgZ(20,"div",9),e._UZ(21,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faChartPie),e.xp6(6),e.Q6J("values",a.balances),e.xp6(2),e.Q6J("icon",a.faUsers),e.xp6(6),e.Q6J("selectedIndex",a.activeLink))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,fe.D,P.SP,P.uX,P.uD,Ce.k,d.yH,b.lC],styles:[""]}),n})();var xe=f(8675),Qe=f(4004),Ye=f(9843);const mi=["form"];function di(n,i){if(1&n&&(e.TgZ(0,"mat-option",38),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function _i(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Peer alias is required."),e.qZA())}function hi(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Peer not found in the list."),e.qZA())}function gi(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",34),e._UZ(1,"input",35),e.TgZ(2,"mat-autocomplete",36,37),e.NdJ("optionSelected",function(){return e.CHM(t),e.oxw().onSelectedPeerChanged()}),e.YNc(4,di,2,2,"mat-option",24),e.ALo(5,"async"),e.qZA(),e.YNc(6,_i,2,0,"mat-error",17),e.YNc(7,hi,2,0,"mat-error",17),e.qZA()}if(2&n){const t=e.MAs(3),a=e.oxw();e.xp6(1),e.Q6J("formControl",a.selectedPeer)("matAutocomplete",t),e.xp6(1),e.Q6J("displayWith",a.displayFn),e.xp6(2),e.Q6J("ngForOf",e.lcZ(5,6,a.filteredPeers)),e.xp6(2),e.Q6J("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.required),e.xp6(1),e.Q6J("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.notfound)}}function fi(n,i){1&n&&e.GkF(0)}function Ci(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function xi(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function yi(n,i){if(1&n&&(e.TgZ(0,"mat-option",38),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Ti(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("","1"===t.selTransType?"Target Confirmation Blocks":"Fee"," is required.")}}function vi(n,i){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.channelConnectionError)}}function bi(n,i){if(1&n&&(e.TgZ(0,"div",39),e._UZ(1,"fa-icon",40),e.YNc(2,vi,2,1,"span",17),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.channelConnectionError)}}function Zi(n,i){if(1&n&&(e.TgZ(0,"mat-expansion-panel",42)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e._uU(4,"Peer: \xa0"),e.qZA(),e.TgZ(5,"strong",43),e._uU(6),e.qZA()()(),e.TgZ(7,"div",9)(8,"div",44)(9,"div",34)(10,"h4",45),e._uU(11,"Pubkey"),e.qZA(),e.TgZ(12,"span",46),e._uU(13),e.qZA()()(),e._UZ(14,"mat-divider",47),e.TgZ(15,"div",44)(16,"div",48)(17,"h4",45),e._uU(18,"Address"),e.qZA(),e.TgZ(19,"span",49),e._uU(20),e.qZA()(),e.TgZ(21,"div",48)(22,"h4",45),e._uU(23,"Inbound"),e.qZA(),e.TgZ(24,"span",49),e._uU(25),e.qZA()()()()()),2&n){const t=e.oxw(2);e.xp6(6),e.Oqu((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.address)),e.xp6(7),e.Oqu(t.peer.pub_key),e.xp6(7),e.Oqu(null==t.peer?null:t.peer.address),e.xp6(5),e.Oqu(null!=t.peer&&t.peer.inbound?"True":"False")}}function wi(n,i){if(1&n&&e.YNc(0,Zi,26,4,"mat-expansion-panel",41),2&n){const t=e.oxw();e.Q6J("ngIf",t.peer)}}let He=(()=>{class n{constructor(t,a,o,s){this.dialogRef=t,this.data=a,this.store=o,this.actions=s,this.selectedPeer=new u.NI,this.amount=new u.NI,this.faExclamationTriangle=v.eHv,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=l.Dr,this.unSubs=[new m.x,new m.x]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(o=>o.type===l.uR.UPDATE_API_CALL_STATUS_LND||o.type===l.uR.FETCH_CHANNELS_LND)).subscribe(o=>{o.type===l.uR.UPDATE_API_CALL_STATUS_LND&&o.payload.status===l.Bn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===l.uR.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",a="";this.sortedPeers=this.peers.sort((o,s)=>(t=o.alias?o.alias.toLowerCase():o.pub_key?o.pub_key.toLowerCase():"",a=s.alias?s.alias.toLowerCase():o.pub_key?o.pub_key.toLowerCase():"",ta?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,h.R)(this.unSubs[1]),(0,xe.O)(""),(0,Qe.U)(o=>"string"==typeof o?o:o.alias?o.alias:o.pub_key),(0,Qe.U)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(t){var a;return null===(a=this.sortedPeers)||void 0===a?void 0:a.filter(o=>{var s;return 0===(null===(s=o.alias)||void 0===s?void 0:s.toLowerCase().indexOf(t?t.toLowerCase():""))})}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.pub_key:""}onSelectedPeerChanged(){var t;if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.pub_key?this.selectedPeer.value.pub_key:null,"string"==typeof this.selectedPeer.value){const a=null===(t=this.peers)||void 0===t?void 0:t.filter(o=>{var s,r;return(null===(s=o.alias)||void 0===s?void 0:s.length)===this.selectedPeer.value.length&&0===(null===(r=o.alias)||void 0===r?void 0:r.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""))});1===a.length&&a[0].pub_key&&(this.selectedPubkey=a[0].pub_key)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!1,this.spendUnconfirmed=!1,this.selTransType="0",this.transTypeValue="",this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||("1"===this.selTransType||"2"===this.selTransType)&&!this.transTypeValue)return!0;this.store.dispatch((0,w.YX)({payload:{selectedPeerPubkey:this.peer&&this.peer.pub_key?this.peer.pub_key:this.selectedPubkey,fundingAmount:this.fundingAmount,private:this.isPrivate,transType:this.selTransType,transTypeValue:this.transTypeValue,spendUnconfirmed:this.spendUnconfirmed}}))}onAdvancedPanelToggle(t){this.advancedTitle=t?"Advanced Options | "+("1"===this.selTransType?"Target Confirmation Blocks: ":"2"===this.selTransType?"Fee (Sats/vByte): ":"Default")+("1"===this.selTransType||"2"===this.selTransType?this.transTypeValue:"")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(L.yh),e.Y36(W.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(t,a){if(1&t&&e.Gf(mi,7),2&t){let o;e.iGM(o=e.CRH())&&(a.form=o.first)}},decls:55,vars:25,consts:[["fxLayout","row","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["form","ngForm"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","1","required","","name","amnt",3,"ngModel","step","min","max","ngModelChange"],["amt","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModel","ngModelChange"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","49"],["tabindex","3",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","tabindex","4","name","transTpValue",3,"ngModel","required","disabled","placeholder","step","min","ngModelChange"],["transTypeVal","ngModel"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","6","color","primary","name","spendUnconfirmed",3,"ngModel","ngModelChange"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["peerDetailsExpansionBlock",""],["fxFlex","100"],["type","text","placeholder","Peer Alias","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(t,a){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return a.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8),e.NdJ("submit",function(){return a.onOpenChannel()})("reset",function(){return a.resetData()}),e.TgZ(11,"div",9),e.YNc(12,gi,8,8,"mat-form-field",10),e.qZA(),e.YNc(13,fi,1,0,"ng-container",11),e.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"input",14,15),e.NdJ("ngModelChange",function(s){return a.fundingAmount=s}),e.qZA(),e.TgZ(19,"mat-hint"),e._uU(20),e.ALo(21,"number"),e.qZA(),e.TgZ(22,"span",16),e._uU(23," Sats "),e.qZA(),e.YNc(24,Ci,2,0,"mat-error",17),e.YNc(25,xi,2,1,"mat-error",17),e.qZA(),e.TgZ(26,"div",18)(27,"mat-slide-toggle",19),e.NdJ("ngModelChange",function(s){return a.isPrivate=s}),e._uU(28,"Private Channel"),e.qZA()()(),e.TgZ(29,"mat-expansion-panel",20),e.NdJ("closed",function(){return a.onAdvancedPanelToggle(!0)})("opened",function(){return a.onAdvancedPanelToggle(!1)}),e.TgZ(30,"mat-expansion-panel-header")(31,"mat-panel-title")(32,"span"),e._uU(33),e.qZA()()(),e.TgZ(34,"div",21)(35,"div",12)(36,"mat-form-field",22)(37,"mat-select",23),e.NdJ("valueChange",function(s){return a.selTransType=s}),e.YNc(38,yi,2,2,"mat-option",24),e.qZA()(),e.TgZ(39,"mat-form-field",22)(40,"input",25,26),e.NdJ("ngModelChange",function(s){return a.transTypeValue=s}),e.qZA(),e.YNc(42,Ti,2,1,"mat-error",17),e.qZA()(),e.TgZ(43,"div",12)(44,"div",27)(45,"mat-slide-toggle",28),e.NdJ("ngModelChange",function(s){return a.spendUnconfirmed=s}),e._uU(46,"Spend Unconfirmed Output"),e.qZA()()()()()(),e.YNc(47,bi,3,2,"div",29),e.TgZ(48,"div",30)(49,"button",31),e._uU(50,"Clear Fields"),e.qZA(),e.TgZ(51,"button",32),e._uU(52,"Open Channel"),e.qZA()()()()()(),e.YNc(53,wi,1,1,"ng-template",null,33,e.W1O)),2&t){const o=e.MAs(54);e.xp6(5),e.Oqu(a.alertTitle),e.xp6(7),e.Q6J("ngIf",!a.peer&&a.peers&&a.peers.length>0),e.xp6(1),e.Q6J("ngTemplateOutlet",o),e.xp6(4),e.Q6J("ngModel",a.fundingAmount)("step",1e3)("min",1)("max",a.totalBalance),e.xp6(3),e.hij("(Remaining Bal: ",e.lcZ(21,23,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),")"),e.xp6(4),e.Q6J("ngIf",null==a.amount.errors?null:a.amount.errors.required),e.xp6(1),e.Q6J("ngIf",null==a.amount.errors?null:a.amount.errors.max),e.xp6(2),e.Q6J("ngModel",a.isPrivate),e.xp6(6),e.Oqu(a.advancedTitle),e.xp6(4),e.Q6J("value",a.selTransType),e.xp6(1),e.Q6J("ngForOf",a.transTypes),e.xp6(2),e.Q6J("ngModel",a.transTypeValue)("required","0"!==a.selTransType)("disabled","0"===a.selTransType)("placeholder","0"===a.selTransType?"Default":"1"===a.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)")("step",1)("min",0),e.xp6(2),e.Q6J("ngIf","0"!==a.selTransType&&!a.transTypeValue),e.xp6(3),e.Q6J("ngModel",a.spendUnconfirmed),e.xp6(2),e.Q6J("ngIf",""!==a.channelConnectionError)}},directives:[d.xw,d.Wh,d.yH,Z.dk,N.lW,Z.dn,u._Y,u.JL,u.F,p.O5,x.KE,M.Nt,u.Fj,ie.ZL,u.Q7,u.JJ,u.oH,ie.XC,p.sg,B.ey,x.TO,p.tP,u.wV,u.qQ,u.Fd,K.q,Ye.F,u.On,x.bx,x.R9,pe.Rr,V.ib,V.yz,V.yK,R.gD,D.BN,$.h,X.d],pipes:[p.Ov,p.JJ],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),n})();var G=f(5615);const Ai=["peersForm"],Si=["stepper"];function Li(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw();e.Oqu(t.peerFormLabel)}}function ki(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Address is required."),e.qZA())}function Fi(n,i){if(1&n&&(e.TgZ(0,"div",37),e._UZ(1,"fa-icon",38),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(2),e.Oqu(t.peerConnectionError)}}function Ni(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw();e.Oqu(t.channelFormLabel)}}function qi(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function Ui(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount must be a positive number."),e.qZA())}function Oi(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Amount must be less than or equal to ",t.totalBalance,".")}}function Ri(n,i){if(1&n&&(e.TgZ(0,"mat-option",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Mi(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("","0"===t.channelFormGroup.controls.selTransType.value?"Default":"1"===t.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"," is required.")}}function Ii(n,i){if(1&n&&(e.TgZ(0,"div",37),e._UZ(1,"fa-icon",38),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(2),e.Oqu(t.channelConnectionError)}}let Di=(()=>{class n{constructor(t,a,o,s,r,_,g){this.dialogRef=t,this.data=a,this.store=o,this.lndEffects=s,this.formBuilder=r,this.actions=_,this.logger=g,this.faExclamationTriangle=v.eHv,this.peerAddress="",this.totalBalance=0,this.transTypes=l.Dr,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.unSubs=[new m.x,new m.x]}ngOnInit(){var t;this.totalBalance=(null===(t=this.data.message)||void 0===t?void 0:t.balance)||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[u.kI.required]],peerAddress:["",[u.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[u.kI.required,u.kI.min(1),u.kI.max(this.totalBalance)]],isPrivate:[!1],selTransType:[l.Dr[0].id],transTypeValue:[{value:"",disabled:!0}],spendUnconfirmed:[!1],hiddenAmount:["",[u.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,h.R)(this.unSubs[0])).subscribe(a=>{a===l.Dr[0].id?(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.disable(),this.channelFormGroup.controls.transTypeValue.setValidators(null),this.channelFormGroup.controls.transTypeValue.setErrors(null)):(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.enable(),this.channelFormGroup.controls.transTypeValue.setValidators([u.kI.required]))}),this.actions.pipe((0,h.R)(this.unSubs[1]),(0,Y.h)(a=>a.type===l.uR.NEWLY_ADDED_PEER_LND||a.type===l.uR.FETCH_PENDING_CHANNELS_LND||a.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(a=>{a.type===l.uR.NEWLY_ADDED_PEER_LND&&(this.logger.info(a.payload),this.flgEditable=!1,this.newlyAddedPeer=a.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),a.type===l.uR.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),a.type===l.uR.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.Bn.ERROR&&("SaveNewPeer"===a.payload.action||"FetchGraphNode"===a.payload.action?this.peerConnectionError=a.payload.message:"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const t=this.peerFormGroup.controls.peerAddress.value.search("@");let a="",o="";t>-1?(a=this.peerFormGroup.controls.peerAddress.value.substring(0,t),o=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(a,o)):(this.store.dispatch((0,w.dV)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,z.q)(1)).subscribe(s=>{setTimeout(()=>{o=s.node.addresses&&s.node.addresses.length&&s.node.addresses.length>0&&s.node.addresses[0].addr?s.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,o)},0)}))}connectPeerWithParams(t,a){this.store.dispatch((0,w.El)({payload:{pubkey:t,host:a,perm:!1}}))}onOpenChannel(){var t;if(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||"1"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||"2"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value)return!0;this.channelConnectionError="",this.store.dispatch((0,w.YX)({payload:{selectedPeerPubkey:null===(t=this.newlyAddedPeer)||void 0===t?void 0:t.pub_key,fundingAmount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,transType:this.channelFormGroup.controls.selTransType.value,transTypeValue:this.channelFormGroup.controls.transTypeValue.value,spendUnconfirmed:this.channelFormGroup.controls.spendUnconfirmed.value}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){var a,o;switch(t.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(null===(a=this.newlyAddedPeer)||void 0===a?void 0:a.alias):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(null===(o=this.newlyAddedPeer)||void 0===o?void 0:o.alias):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}t.selectedIndex{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(L.yh),e.Y36(ne.l),e.Y36(u.qu),e.Y36(W.eX),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(t,a){if(1&t&&(e.Gf(Ai,5),e.Gf(Si,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.form=o.first),e.iGM(o=e.CRH())&&(a.stepper=o.first)}},decls:56,vars:24,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Lightning Address (pubkey OR pubkey@ip:port)","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","placeholder","Amount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxFlex","30","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType","placeholder","Transaction Type"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","30"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"placeholder","step","required"],["tabindex","6","color","primary","formControlName","spendUnconfirmed","name","spendUnconfirmed"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[3,"value"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Connect to a new peer"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return a.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),e.NdJ("selectionChange",function(s){return a.stepSelectionChanged(s)}),e.TgZ(12,"mat-step",10)(13,"form",11),e.YNc(14,Li,1,1,"ng-template",12),e.TgZ(15,"mat-form-field",1),e._UZ(16,"input",13),e.YNc(17,ki,2,0,"mat-error",14),e.qZA(),e.YNc(18,Fi,4,2,"div",15),e.TgZ(19,"div",16)(20,"button",17),e.NdJ("click",function(){return a.onConnectPeer()}),e._uU(21),e.qZA()()()(),e.TgZ(22,"mat-step",10)(23,"form",18),e.YNc(24,Ni,1,1,"ng-template",19),e.TgZ(25,"div",20)(26,"div",21)(27,"mat-form-field",22),e._UZ(28,"input",23),e.TgZ(29,"mat-hint"),e._uU(30),e.qZA(),e.TgZ(31,"span",24),e._uU(32," Sats "),e.qZA(),e.YNc(33,qi,2,0,"mat-error",14),e.YNc(34,Ui,2,0,"mat-error",14),e.YNc(35,Oi,2,1,"mat-error",14),e.qZA(),e.TgZ(36,"div",25)(37,"mat-slide-toggle",26),e._uU(38,"Private Channel"),e.qZA()()(),e.TgZ(39,"div",27)(40,"mat-form-field",28)(41,"mat-select",29),e.YNc(42,Ri,2,2,"mat-option",30),e.qZA()(),e.TgZ(43,"mat-form-field",31),e._UZ(44,"input",32),e.YNc(45,Mi,2,1,"mat-error",14),e.qZA(),e.TgZ(46,"div",25)(47,"mat-slide-toggle",33),e._uU(48,"Spend Unconfirmed Output"),e.qZA()()()(),e.YNc(49,Ii,4,2,"div",15),e.TgZ(50,"div",16)(51,"button",34),e.NdJ("click",function(){return a.onOpenChannel()}),e._uU(52),e.qZA()()()()(),e.TgZ(53,"div",35)(54,"button",36),e._uU(55),e.qZA()()()()()()),2&t&&(e.xp6(10),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",a.peerFormGroup)("editable",a.flgEditable),e.xp6(1),e.Q6J("formGroup",a.peerFormGroup),e.xp6(4),e.Q6J("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),e.xp6(1),e.Q6J("ngIf",""!==a.peerConnectionError),e.xp6(3),e.Oqu(""!==a.peerConnectionError?"Retry":"Add Peer"),e.xp6(1),e.Q6J("stepControl",a.channelFormGroup)("editable",a.flgEditable),e.xp6(1),e.Q6J("formGroup",a.channelFormGroup),e.xp6(5),e.Q6J("step",1e3),e.xp6(2),e.hij("Remaining Bal: ",a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0),""),e.xp6(3),e.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),e.xp6(1),e.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),e.xp6(1),e.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),e.xp6(7),e.Q6J("ngForOf",a.transTypes),e.xp6(2),e.Q6J("placeholder","0"===a.channelFormGroup.controls.selTransType.value?"Default":"1"===a.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)")("step",1)("required","0"!==a.channelFormGroup.controls.selTransType.value),e.xp6(1),e.Q6J("ngIf",null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.required),e.xp6(4),e.Q6J("ngIf",""!==a.channelConnectionError),e.xp6(3),e.Oqu(""!==a.channelConnectionError?"Retry":"Open Channel"),e.xp6(2),e.Q6J("mat-dialog-close",!1),e.xp6(1),e.Oqu(null!=a.newlyAddedPeer&&a.newlyAddedPeer.pub_key?"Do It Later":"Close"))},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,Z.dn,G.Vq,G.C0,u._Y,u.JL,u.sg,G.VY,x.KE,M.Nt,u.Fj,$.h,u.JJ,u.u,u.Q7,p.O5,x.TO,D.BN,u.wV,x.bx,x.R9,pe.Rr,R.gD,p.sg,B.ey,E.ZT],styles:[""]}),n})();function Pi(n,i){1&n&&e._UZ(0,"mat-progress-bar",32)}function Ji(n,i){1&n&&(e.TgZ(0,"th",33),e._uU(1," Alias "),e.qZA())}const Be=function(n){return{"max-width":n}};function Ei(n,i){if(1&n&&(e.TgZ(0,"td",34),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,Be,a.screenSize===a.screenSizeEnum.XS?"12rem":"25rem")),e.xp6(1),e.hij(" ",null==t?null:t.alias," ")}}function Qi(n,i){1&n&&(e.TgZ(0,"th",33),e._uU(1," Public Key "),e.qZA())}function Yi(n,i){if(1&n&&(e.TgZ(0,"td",34),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,Be,a.screenSize===a.screenSizeEnum.XS?"5rem":"35rem")),e.xp6(1),e.hij(" ",null==t?null:t.pub_key," ")}}function Hi(n,i){1&n&&(e.TgZ(0,"th",35),e._uU(1," Sats Sent "),e.qZA())}function Bi(n,i){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.sat_sent)," ")}}function Vi(n,i){1&n&&(e.TgZ(0,"th",35),e._uU(1," Sats Received "),e.qZA())}function Gi(n,i){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.sat_recv)," ")}}function zi(n,i){1&n&&(e.TgZ(0,"th",35),e._uU(1," Ping "),e.qZA())}function Wi(n,i){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.ping_time)," ")}}function Xi(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",38)(1,"div",39)(2,"mat-select",40),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",41),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function $i(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",42)(1,"div",39)(2,"mat-select",40),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",41),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onPeerClick(r,o)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",41),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onOpenChannel(s)}),e._uU(7,"Open Channel"),e.qZA(),e.TgZ(8,"mat-option",41),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onPeerDetach(s)}),e._uU(9,"Disconnect"),e.qZA()()()()}}function ji(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No connected peer."),e.qZA())}function Ki(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting peers..."),e.qZA())}function eo(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function to(n,i){if(1&n&&(e.TgZ(0,"td",43),e.YNc(1,ji,2,0,"p",44),e.YNc(2,Ki,2,0,"p",44),e.YNc(3,eo,2,1,"p",44),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const no=function(n){return{"display-none":n}};function ao(n,i){if(1&n&&e._UZ(0,"tr",45),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,no,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function io(n,i){1&n&&e._UZ(0,"tr",46)}function oo(n,i){1&n&&e._UZ(0,"tr",47)}const so=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},lo=function(){return["no_peer"]};let ro=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.store=a,this.rtlEffects=o,this.commonService=s,this.availableBalance=0,this.faUsers=v.FVb,this.displayedColumns=[],this.peersData=[],this.information={},this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["alias","sat_sent","sat_recv","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","sat_sent","sat_recv","ping_time","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","pub_key","sat_sent","sat_recv","ping_time","actions"])}ngOnInit(){this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers,this.peersData.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Peer Information",showQRName:"Public Key",showQRField:t.pub_key,message:[[{key:"pub_key",value:t.pub_key,title:"Public Key",width:100}],[{key:"address",value:t.address,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:40},{key:"inbound",value:t.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:t.ping_time,title:"Ping Time",width:30,type:l.Gi.NUMBER}],[{key:"sat_sent",value:t.sat_sent,title:"Satoshis Sent",width:50,type:l.Gi.NUMBER},{key:"sat_recv",value:t.sat_recv,title:"Satoshis Received",width:50,type:l.Gi.NUMBER}],[{key:"bytes_sent",value:t.bytes_sent,title:"Bytes Sent",width:50,type:l.Gi.NUMBER},{key:"bytes_recv",value:t.bytes_recv,title:"Bytes Received",width:50,type:l.Gi.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,S.qR)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:Di}}}))}onOpenChannel(t){this.store.dispatch((0,S.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:He}}}))}onPeerDetach(t){this.store.dispatch((0,S.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[3])).subscribe(o=>{o&&this.store.dispatch((0,w.z)({payload:{pubkey:t.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}loadPeersTable(t){this.peers=new c.by(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.peers.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.peers.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(le.V),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-peers"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Peers")}])],decls:40,vars:15,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","pub_key"],["matColumnDef","sat_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","sat_recv"],["matColumnDef","ping_time"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","px-3",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-cell",""],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return a.onConnectPeer()}),e._uU(3,"Add Peer"),e.qZA()(),e.TgZ(4,"div",3)(5,"div",4)(6,"div",5),e._UZ(7,"fa-icon",6),e.TgZ(8,"span",7),e._uU(9,"Connected Peers"),e.qZA()(),e.TgZ(10,"mat-form-field",8)(11,"input",9),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(12,"div",10),e.YNc(13,Pi,1,0,"mat-progress-bar",11),e.TgZ(14,"table",12,13),e.ynx(16,14),e.YNc(17,Ji,2,0,"th",15),e.YNc(18,Ei,2,4,"td",16),e.BQk(),e.ynx(19,17),e.YNc(20,Qi,2,0,"th",15),e.YNc(21,Yi,2,4,"td",16),e.BQk(),e.ynx(22,18),e.YNc(23,Hi,2,0,"th",19),e.YNc(24,Bi,4,3,"td",20),e.BQk(),e.ynx(25,21),e.YNc(26,Vi,2,0,"th",19),e.YNc(27,Gi,4,3,"td",20),e.BQk(),e.ynx(28,22),e.YNc(29,zi,2,0,"th",19),e.YNc(30,Wi,4,3,"td",20),e.BQk(),e.ynx(31,23),e.YNc(32,Xi,6,0,"th",24),e.YNc(33,$i,10,0,"td",25),e.BQk(),e.ynx(34,26),e.YNc(35,to,4,3,"td",27),e.BQk(),e.YNc(36,ao,1,3,"tr",28),e.YNc(37,io,1,0,"tr",29),e.YNc(38,oo,1,0,"tr",30),e.qZA()(),e._UZ(39,"mat-paginator",31),e.qZA()()),2&t&&(e.xp6(7),e.Q6J("icon",a.faUsers),e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(2),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.peers)("ngClass",e.VKq(12,so,""!==a.errorMessage)),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(14,lo)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.yH,d.Wh,N.lW,D.BN,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,R.gD,R.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-alias[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-pub_key[_ngcontent-%COMP%]{flex:1 1 35%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-left:2rem}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem;flex:1 1 10%}.mat-column-sat_sent[_ngcontent-%COMP%], .mat-column-sat_recv[_ngcontent-%COMP%], .mat-column-ping_time[_ngcontent-%COMP%]{flex:1 1 13%;width:13%}"]}),n})();function co(n,i){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Open"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numOpenChannels)}}function uo(n,i){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Pending"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numPendingChannels)}}function po(n,i){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Closed"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numClosedChannels)}}function mo(n,i){if(1&n&&(e.TgZ(0,"span",7),e._uU(1,"Active HTLCs"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numActiveHTLCs)}}let _o=(()=>{class n{constructor(t,a,o){this.logger=t,this.store=a,this.router=o,this.numOpenChannels=0,this.numPendingChannels=0,this.numClosedChannels=0,this.numActiveHTLCs=0,this.peers=[],this.information={},this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"closed",name:"Closed"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t instanceof b.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{var a;this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=null===(a=t.channels)||void 0===a?void 0:a.reduce((o,s)=>o+(s.pending_htlcs&&s.pending_htlcs.length>0?s.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(y.P2).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(a=>{var o;(!a.alias||""===a.alias)&&(a.alias=(null===(o=a.pub_key)||void 0===o?void 0:o.substring(0,15))+"...")}),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,S.qR)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:He}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channels-tables"]],decls:16,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"my-2","bordered-box"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return a.onOpenChannel()}),e._uU(3,"Open Channel"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-tab-group",4),e.NdJ("selectedIndexChange",function(s){return a.activeLink=s})("selectedTabChange",function(s){return a.onSelectedTabChange(s)}),e.TgZ(6,"mat-tab"),e.YNc(7,co,2,1,"ng-template",5),e.qZA(),e.TgZ(8,"mat-tab"),e.YNc(9,uo,2,1,"ng-template",5),e.qZA(),e.TgZ(10,"mat-tab"),e.YNc(11,po,2,1,"ng-template",5),e.qZA(),e.TgZ(12,"mat-tab"),e.YNc(13,mo,2,1,"ng-template",5),e.qZA()(),e.TgZ(14,"div",6),e._UZ(15,"router-outlet"),e.qZA()()()),2&t&&(e.xp6(5),e.Q6J("selectedIndex",a.activeLink))},directives:[d.xw,d.yH,d.Wh,N.lW,P.SP,P.uX,P.uD,Ce.k,b.lC],styles:[""]}),n})();var ae=f(7261),re=f(6895);function ho(n,i){if(1&n&&(e.TgZ(0,"div")(1,"div",9)(2,"div",14)(3,"h4",11),e._uU(4,"Commit Fee"),e.qZA(),e.TgZ(5,"span",15),e._uU(6),e.ALo(7,"number"),e.qZA()(),e.TgZ(8,"div",14)(9,"h4",11),e._uU(10,"Commit Weight"),e.qZA(),e.TgZ(11,"span",15),e._uU(12),e.ALo(13,"number"),e.qZA()(),e.TgZ(14,"div",14)(15,"h4",11),e._uU(16,"Fee/KW"),e.qZA(),e.TgZ(17,"span",15),e._uU(18),e.ALo(19,"number"),e.qZA()(),e.TgZ(20,"div",14)(21,"h4",11),e._uU(22,"Static Remote Key"),e.qZA(),e.TgZ(23,"span",15),e._uU(24),e.qZA()()(),e._UZ(25,"mat-divider",13),e.TgZ(26,"div",9)(27,"div",14)(28,"h4",11),e._uU(29),e.qZA(),e.TgZ(30,"span",15),e._uU(31),e.ALo(32,"number"),e.qZA()(),e.TgZ(33,"div",14)(34,"h4",11),e._uU(35),e.qZA(),e.TgZ(36,"span",15),e._uU(37),e.ALo(38,"number"),e.qZA()(),e.TgZ(39,"div",14)(40,"h4",11),e._uU(41,"Unsettled Balance"),e.qZA(),e.TgZ(42,"span",15),e._uU(43),e.ALo(44,"number"),e.qZA()(),e.TgZ(45,"div",14)(46,"h4",11),e._uU(47,"CSV Delay"),e.qZA(),e.TgZ(48,"span",15),e._uU(49),e.ALo(50,"number"),e.qZA()()(),e._UZ(51,"mat-divider",13),e.TgZ(52,"div",9)(53,"div",14)(54,"h4",11),e._uU(55,"Local Reserve (Sats)"),e.qZA(),e.TgZ(56,"span",15),e._uU(57),e.ALo(58,"number"),e.qZA()(),e.TgZ(59,"div",14)(60,"h4",11),e._uU(61,"Remote Reserve (Sats)"),e.qZA(),e.TgZ(62,"span",15),e._uU(63),e.ALo(64,"number"),e.qZA()(),e.TgZ(65,"div",14)(66,"h4",11),e._uU(67,"Lifetime (Seconds)"),e.qZA(),e.TgZ(68,"span",15),e._uU(69),e.ALo(70,"number"),e.qZA()(),e.TgZ(71,"div",14)(72,"h4",11),e._uU(73,"Pending HTLCs"),e.qZA(),e.TgZ(74,"span",15),e._uU(75),e.ALo(76,"number"),e.qZA()()(),e._UZ(77,"mat-divider",13),e.qZA()),2&n){const t=e.oxw();e.xp6(6),e.Oqu(e.lcZ(7,17,t.channel.commit_fee)),e.xp6(6),e.Oqu(e.lcZ(13,19,t.channel.commit_weight)),e.xp6(6),e.Oqu(e.lcZ(19,21,t.channel.fee_per_kw)),e.xp6(6),e.Oqu(t.channel.static_remote_key?"Yes":"No"),e.xp6(1),e.Q6J("inset",!0),e.xp6(4),e.Oqu(t.screenSize===t.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.xp6(2),e.Oqu(e.lcZ(32,23,t.channel.total_satoshis_sent)),e.xp6(4),e.Oqu(t.screenSize===t.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.xp6(2),e.Oqu(e.lcZ(38,25,t.channel.total_satoshis_received)),e.xp6(6),e.Oqu(e.lcZ(44,27,t.channel.unsettled_balance)),e.xp6(6),e.Oqu(e.lcZ(50,29,t.channel.csv_delay)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.lcZ(58,31,t.channel.local_chan_reserve_sat)),e.xp6(6),e.Oqu(e.lcZ(64,33,t.channel.remote_chan_reserve_sat)),e.xp6(6),e.Oqu(e.lcZ(70,35,t.channel.lifetime)),e.xp6(6),e.Oqu(e.lcZ(76,37,null==t.channel||null==t.channel.pending_htlcs?null:t.channel.pending_htlcs.length)),e.xp6(2),e.Q6J("inset",!0)}}function go(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Show Advanced"),e.qZA())}function fo(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Hide Advanced"),e.qZA())}function Co(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",23),e.NdJ("copied",function(o){return e.CHM(t),e.oxw().onCopyChanID(o)}),e._uU(1,"Copy Channel ID"),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("payload",t.channel.chan_id)}}function xo(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",24),e.NdJ("click",function(){return e.CHM(t),e.oxw().onClose()}),e._uU(1,"OK"),e.qZA()}}const yo=function(n){return{"xs-scroll-y":n}};let ye=(()=>{class n{constructor(t,a,o,s,r){this.dialogRef=t,this.data=a,this.logger=o,this.commonService=s,this.snackBar=r,this.faReceipt=v.dLy,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(t){this.snackBar.open("Channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(U.mQ),e.Y36(O.v),e.Y36(ae.ux))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-information"]],decls:94,vars:36,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(t,a){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6,"Channel Information"),e.qZA()(),e.TgZ(7,"button",6),e.NdJ("click",function(){return a.onClose()}),e._uU(8,"X"),e.qZA()(),e.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),e._uU(14,"Channel ID"),e.qZA(),e.TgZ(15,"span",12),e._uU(16),e.qZA()(),e.TgZ(17,"div",10)(18,"h4",11),e._uU(19,"Peer Alias"),e.qZA(),e.TgZ(20,"span",12),e._uU(21),e.qZA()()(),e._UZ(22,"mat-divider",13),e.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),e._uU(26,"Channel Point"),e.qZA(),e.TgZ(27,"span",12),e._uU(28),e.qZA()()(),e._UZ(29,"mat-divider",13),e.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),e._uU(33,"Peer Public Key"),e.qZA(),e.TgZ(34,"span",12),e._uU(35),e.qZA()()(),e._UZ(36,"mat-divider",13),e.TgZ(37,"div",9)(38,"div",14)(39,"h4",11),e._uU(40,"Local Balance"),e.qZA(),e.TgZ(41,"span",15),e._uU(42),e.ALo(43,"number"),e.qZA()(),e.TgZ(44,"div",14)(45,"h4",11),e._uU(46,"Remote Balance"),e.qZA(),e.TgZ(47,"span",15),e._uU(48),e.ALo(49,"number"),e.qZA()(),e.TgZ(50,"div",14)(51,"h4",11),e._uU(52,"Capacity"),e.qZA(),e.TgZ(53,"span",15),e._uU(54),e.ALo(55,"number"),e.qZA()(),e.TgZ(56,"div",14)(57,"h4",11),e._uU(58,"Uptime (Seconds)"),e.qZA(),e.TgZ(59,"span",15),e._uU(60),e.ALo(61,"number"),e.qZA()()(),e._UZ(62,"mat-divider",13),e.TgZ(63,"div",9)(64,"div",14)(65,"h4",11),e._uU(66,"Active"),e.qZA(),e.TgZ(67,"span",15),e._uU(68),e.qZA()(),e.TgZ(69,"div",14)(70,"h4",11),e._uU(71,"Private"),e.qZA(),e.TgZ(72,"span",15),e._uU(73),e.qZA()(),e.TgZ(74,"div",14)(75,"h4",11),e._uU(76,"Initiator"),e.qZA(),e.TgZ(77,"span",15),e._uU(78),e.qZA()(),e.TgZ(79,"div",14)(80,"h4",11),e._uU(81,"Number of Updates"),e.qZA(),e.TgZ(82,"span",15),e._uU(83),e.ALo(84,"number"),e.qZA()()(),e._UZ(85,"mat-divider",13),e.YNc(86,ho,78,39,"div",16),e.TgZ(87,"div",17)(88,"button",18),e.NdJ("click",function(){return a.onShowAdvanced()}),e.YNc(89,go,2,0,"p",19),e.YNc(90,fo,2,0,"ng-template",null,20,e.W1O),e.qZA(),e.YNc(92,Co,2,1,"button",21),e.YNc(93,xo,2,0,"button",22),e.qZA()()()()()),2&t){const o=e.MAs(91);e.xp6(4),e.Q6J("icon",a.faReceipt),e.xp6(5),e.Q6J("ngClass",e.VKq(34,yo,a.screenSize===a.screenSizeEnum.XS)),e.xp6(7),e.Oqu(a.channel.chan_id),e.xp6(5),e.Oqu(a.channel.remote_alias),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(a.channel.channel_point),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(a.channel.remote_pubkey),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.lcZ(43,24,a.channel.local_balance)),e.xp6(6),e.Oqu(e.lcZ(49,26,a.channel.remote_balance)),e.xp6(6),e.Oqu(e.lcZ(55,28,a.channel.capacity)),e.xp6(6),e.Oqu(e.lcZ(61,30,a.channel.uptime)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(a.channel.active?"Yes":"No"),e.xp6(5),e.Oqu(a.channel.private?"Yes":"No"),e.xp6(5),e.Oqu(a.channel.initiator?"Yes":"No"),e.xp6(5),e.Oqu(e.lcZ(84,32,a.channel.num_updates)),e.xp6(2),e.Q6J("inset",!0),e.xp6(1),e.Q6J("ngIf",a.showAdvanced),e.xp6(3),e.Q6J("ngIf",!a.showAdvanced)("ngIfElse",o),e.xp6(3),e.Q6J("ngIf",a.showCopy),e.xp6(1),e.Q6J("ngIf",!a.showCopy)}},directives:[d.xw,d.Wh,d.yH,Z.dk,D.BN,N.lW,Z.dn,p.mk,k.oO,X.d,p.O5,$.h,re.y],pipes:[p.JJ],styles:[""]}),n})();var Te=f(9646),ve=f(7772),To=f(113);function vo(n,i){1&n&&e.GkF(0)}const ce=function(n,i){return{"small-svg":n,"large-svg":i}};function bo(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),e.qZA(),e.kcU(),e.TgZ(41,"div",47)(42,"mat-card-title"),e._uU(43,"Circular rebalancing explained."),e.qZA()(),e.TgZ(44,"div",48)(45,"mat-card-subtitle",49),e._uU(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,ce,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Zo(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",50),e._UZ(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55)(7,"path",56)(8,"path",57)(9,"path",58)(10,"path",59)(11,"path",60)(12,"path",61)(13,"path",62)(14,"path",63)(15,"path",64)(16,"path",65)(17,"path",66)(18,"path",67)(19,"path",68)(20,"path",69)(21,"path",70)(22,"path",71)(23,"path",72)(24,"path",73)(25,"path",74)(26,"path",75)(27,"path",76)(28,"path",77)(29,"path",78)(30,"path",79)(31,"path",80)(32,"path",81)(33,"path",51)(34,"path",52)(35,"path",53)(36,"path",54)(37,"path",55)(38,"path",56)(39,"path",57)(40,"path",58)(41,"path",59)(42,"path",82)(43,"path",83)(44,"path",62)(45,"path",84)(46,"path",85)(47,"path",86)(48,"path",66)(49,"path",67)(50,"path",68)(51,"path",69)(52,"path",70)(53,"path",71)(54,"path",72)(55,"path",73)(56,"path",74)(57,"path",75)(58,"path",76)(59,"path",77)(60,"path",78)(61,"path",79)(62,"path",87)(63,"path",81)(64,"path",88),e.TgZ(65,"defs")(66,"linearGradient",89),e._UZ(67,"stop",90)(68,"stop",91)(69,"stop",92),e.qZA(),e.TgZ(70,"linearGradient",93),e._UZ(71,"stop",90)(72,"stop",91)(73,"stop",92),e.qZA(),e.TgZ(74,"linearGradient",94),e._UZ(75,"stop",90)(76,"stop",91)(77,"stop",92),e.qZA(),e.TgZ(78,"linearGradient",95),e._UZ(79,"stop",90)(80,"stop",91)(81,"stop",92),e.qZA(),e.TgZ(82,"linearGradient",96),e._UZ(83,"stop",90)(84,"stop",91)(85,"stop",92),e.qZA(),e.TgZ(86,"linearGradient",97),e._UZ(87,"stop",90)(88,"stop",91)(89,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(90,"div",47)(91,"mat-card-title"),e._uU(92,"Step 1: Unbalanced channel"),e.qZA()(),e.TgZ(93,"div",48)(94,"mat-card-subtitle",49),e._uU(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,ce,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function wo(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",98),e._UZ(2,"path",99)(3,"path",100)(4,"path",101)(5,"path",102)(6,"path",103)(7,"path",104)(8,"path",105)(9,"path",106)(10,"path",107)(11,"path",108)(12,"path",109)(13,"path",110)(14,"path",111)(15,"path",112)(16,"path",113)(17,"path",51)(18,"path",114)(19,"path",115)(20,"path",116)(21,"path",117)(22,"path",118)(23,"path",119)(24,"path",120)(25,"path",121)(26,"path",82)(27,"path",83)(28,"path",122)(29,"path",123)(30,"path",124)(31,"path",125)(32,"path",66)(33,"path",126)(34,"path",127)(35,"path",128)(36,"path",129)(37,"path",130)(38,"path",131)(39,"path",73)(40,"path",74)(41,"path",132)(42,"path",76)(43,"path",77)(44,"path",78)(45,"path",79)(46,"path",133)(47,"path",134)(48,"path",135),e.TgZ(49,"defs")(50,"linearGradient",136),e._UZ(51,"stop",90)(52,"stop",91)(53,"stop",92),e.qZA(),e.TgZ(54,"linearGradient",137),e._UZ(55,"stop",90)(56,"stop",91)(57,"stop",92),e.qZA(),e.TgZ(58,"linearGradient",138),e._UZ(59,"stop",90)(60,"stop",91)(61,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(62,"div",47)(63,"mat-card-title"),e._uU(64,"Step 2: Invoice/Payment"),e.qZA()(),e.TgZ(65,"div",48)(66,"mat-card-subtitle",49),e._uU(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,ce,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Ao(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",139),e._UZ(2,"path",140)(3,"path",141)(4,"path",142)(5,"path",143)(6,"path",144)(7,"path",145)(8,"path",146)(9,"path",147)(10,"path",148)(11,"path",149)(12,"path",150)(13,"path",151)(14,"path",152)(15,"path",153)(16,"path",154)(17,"path",155)(18,"path",156)(19,"path",157)(20,"path",158)(21,"path",159)(22,"path",160)(23,"path",161)(24,"path",162)(25,"path",163)(26,"path",162)(27,"path",164)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",169)(33,"path",170)(34,"path",171)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",177)(41,"path",178),e.TgZ(42,"defs")(43,"linearGradient",179),e._UZ(44,"stop",90)(45,"stop",91)(46,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(47,"div",47)(48,"mat-card-title"),e._uU(49,"Step 3: Rebalance amount"),e.qZA()(),e.TgZ(50,"div",48)(51,"mat-card-subtitle",49),e._uU(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,ce,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function So(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(o){return e.CHM(t),e.oxw().onSwipe(o)}),e.O4$(),e.TgZ(1,"svg",139),e._UZ(2,"path",180)(3,"path",142)(4,"path",181)(5,"path",144)(6,"path",145)(7,"path",182)(8,"path",147)(9,"path",183)(10,"path",184)(11,"path",185)(12,"path",186)(13,"path",187)(14,"path",188)(15,"path",189)(16,"path",190)(17,"path",191)(18,"path",157)(19,"path",192)(20,"path",193)(21,"path",178)(22,"path",159)(23,"path",160)(24,"path",194)(25,"path",162)(26,"path",163)(27,"path",162)(28,"path",164)(29,"path",165)(30,"path",166)(31,"path",167)(32,"path",195)(33,"path",169)(34,"path",196)(35,"path",171)(36,"path",172)(37,"path",173)(38,"path",174)(39,"path",175)(40,"path",197),e.TgZ(41,"defs")(42,"linearGradient",198),e._UZ(43,"stop",90)(44,"stop",91)(45,"stop",92),e.qZA()()(),e.kcU(),e.TgZ(46,"div",47)(47,"mat-card-title"),e._uU(48,"Rebalance successful!"),e.qZA()(),e.TgZ(49,"div",48)(50,"mat-card-subtitle",49),e._uU(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@sliderAnimation",t.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,ce,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let Lo=(()=>{class n{constructor(t){this.commonService=t,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.vpe,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(t){2===t.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===t.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z","fill","#444053"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z","fill","#D0D2D5"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z","fill","#3F3D56"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z","fill","#D0D2D5"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z","fill","#D0D2D5"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","#444053"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z","fill","#444053"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z","fill","#6C63FF"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z","fill","#6C63FF"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z","fill","#6C63FF"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z","fill","#6C63FF"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z","fill","#6C63FF"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z","fill","#6C63FF"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z","fill","#6C63FF"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z","fill","#6C63FF"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z","fill","#6C63FF"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z","fill","#6C63FF"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z","fill","#6C63FF"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z","fill","#6C63FF"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z","fill","#6C63FF"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z","fill","#6C63FF"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z","fill","#6C63FF"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke","#C4B7FF","stroke-width","0.8","stroke-dasharray","4 4"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","fill","#5E4EA5","stroke","white","stroke-width","1.6"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z","fill","#E6E6E6"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z","fill","#C4B7FF"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z","fill","#6C63FF"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z","fill","#C4B7FF"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z","fill","#6C63FF"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z","fill","#C4B7FF"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z","fill","#5E4EA5"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z","fill","#5E4EA5"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z","fill","#5E4EA5"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z","fill","#5E4EA5"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z","fill","#4A4A4A"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z","fill","#CBCBCB"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z","fill","#F2F2F2"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z","fill","#3F3D56"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z","fill","#4A4A4A"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z","fill","#4A4A4A"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z","fill","#4A4A4A"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z","fill","#4A4A4A"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z","fill","#4A4A4A"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z","fill","#4A4A4A"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z","fill","#F2F2F2"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z","fill","#4A4A4A"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z","fill","#4A4A4A"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z","fill","#5B5B5B"],["d","M42 75H9V91H42V75Z","fill","#5E4EA5"],["d","M42 42H9V58H42V42Z","fill","#5E4EA5"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z","fill","#4A4A4A"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z","fill","#F1F1F1"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z","fill","#4A4A4A"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z","fill","#D0CDE1"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z","fill","#4A4A4A"],["d","M265 57.3624H357.392V120.307H265V57.3624Z","fill","#CBCBCB"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z","fill","#4A4A4A"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z","fill","#4A4A4A"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z","fill","#4A4A4A"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z","fill","#4A4A4A"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z","fill","#4A4A4A"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z","fill","#4A4A4A"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z","fill","#4A4A4A"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z","fill","#F2F2F2"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z","fill","#4A4A4A"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z","fill","#5B5B5B"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z","fill","#C4B7FF"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z","fill","#6C63FF"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z","fill","#C4B7FF"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z","fill","#6C63FF"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z","fill","#C4B7FF"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z","fill","#5E4EA5"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z","fill","#4A4A4A"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z","fill","#CBCBCB"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z","fill","#F2F2F2"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z","fill","#3F3D56"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z","fill","#4A4A4A"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z","fill","#4A4A4A"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z","fill","#4A4A4A"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z","fill","#5B5B5B"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke","#C4B7FF","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke","#5E4EA5","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7"],["d","M122.399 37H32.25V137.616H122.399V37Z","fill","#E6E6E6"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z","fill","#C4B7FF"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z","fill","#6C63FF"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z","fill","#C4B7FF"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z","fill","#6C63FF"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z","fill","#C4B7FF"],["d","M74.5 112H40.5V128H74.5V112Z","fill","#5E4EA5"],["d","M74.5 79H40.5V95H74.5V79Z","fill","#5E4EA5"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z","fill","#5E4EA5"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z","fill","#5E4EA5"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z","fill","#5E4EA5"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z","fill","#5E4EA5"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z","fill","#5E4EA5"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z","fill","#C4B7FF"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z","fill","#C4B7FF"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z","fill","#F2F2F2"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z","fill","#5B5B5B"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z","fill","#F2F2F2"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z","fill","#CBCBCB"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z","fill","#595959"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z","fill","#F2F2F2"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z","fill","#CBCBCB"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z","fill","#595959"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z","fill","#595959"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z","fill","#CBCBCB"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z","fill","#CBCBCB"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z","fill","#CBCBCB"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z","fill","#595959"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z","fill","#5E4EA5"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke","#5E4EA5","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z","fill","#6C63FF"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z","fill","#C4B7FF"],["d","M76 112H41V128H76V112Z","fill","#5E4EA5"],["d","M70 79H41V95H70V79Z","fill","#5E4EA5"],["d","M70 47H41V63H70V47Z","fill","#5E4EA5"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z","fill","#5E4EA5"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z","fill","#5E4EA5"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z","fill","#5E4EA5"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z","fill","#CBCBCB"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z","fill","#595959"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(t,a){if(1&t&&(e.YNc(0,vo,1,0,"ng-container",0),e.YNc(1,bo,47,5,"ng-template",null,1,e.W1O),e.YNc(3,Zo,96,5,"ng-template",null,2,e.W1O),e.YNc(5,wo,68,5,"ng-template",null,3,e.W1O),e.YNc(7,Ao,53,5,"ng-template",null,4,e.W1O),e.YNc(9,So,52,5,"ng-template",null,5,e.W1O)),2&t){const o=e.MAs(2),s=e.MAs(4),r=e.MAs(6),_=e.MAs(8),g=e.MAs(10);e.Q6J("ngTemplateOutlet",1===a.stepNumber?o:2===a.stepNumber?s:3===a.stepNumber?r:4===a.stepNumber?_:g)}},directives:[p.tP,d.xw,d.yH,d.Wh,p.mk,k.oO,Z.n5,Z.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[To.l]}}),n})();const ko=["stepper"];function Fo(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.inputFormLabel)}}function No(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function qo(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount must be a positive number."),e.qZA())}function Uo(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.hij("Amount must be less than or equal to ",null==t.selChannel?null:t.selChannel.local_balance,".")}}function Oo(n,i){if(1&n&&(e.TgZ(0,"mat-option",55),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.AsE("",t.remote_alias," - ",t.chan_id,"")}}function Ro(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Receive from Peer is required."),e.qZA())}function Mo(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Receive from Peer not found in the list."),e.qZA())}function Io(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.feeFormLabel)}}function Do(n,i){if(1&n&&(e.TgZ(0,"mat-option",55),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",t.name," ")}}function Po(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.hij("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," is required.")}}function Jo(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.hij("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," must be a positive number.")}}function Eo(n,i){1&n&&e._uU(0,"Invoice/Payment")}function Qo(n,i){1&n&&(e.TgZ(0,"mat-icon",56),e._uU(1,"check"),e.qZA())}function Yo(n,i){1&n&&e._UZ(0,"mat-progress-bar",57)}function Ho(n,i){if(1&n&&(e.TgZ(0,"mat-icon",56),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(null!=t.paymentStatus&&t.paymentStatus.error?"close":"check")}}function Bo(n,i){1&n&&e._UZ(0,"div",14)}function Vo(n,i){1&n&&e._UZ(0,"mat-progress-bar",57)}function Go(n,i){if(1&n&&(e.TgZ(0,"h4",58),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.paymentStatus&&t.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function zo(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",59),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onRestart()}),e._uU(1,"Start Again"),e.qZA()}}function Wo(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e._uU(5),e.qZA()(),e.TgZ(6,"div",10)(7,"button",11),e.NdJ("click",function(){return e.CHM(t),e.oxw().showInfo()}),e._uU(8,"?"),e.qZA(),e.TgZ(9,"button",12),e.NdJ("click",function(){return e.CHM(t),e.oxw().onClose()}),e._uU(10,"X"),e.qZA()()(),e.TgZ(11,"mat-card-content",13)(12,"div",14)(13,"div",15)(14,"div",16),e._UZ(15,"fa-icon",17),e.TgZ(16,"span"),e._uU(17,"Circular Rebalance is a payment you make to *yourselves* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),e.qZA()()(),e.TgZ(18,"div",18)(19,"p",19)(20,"strong"),e._uU(21,"Channel Peer:\xa0"),e.qZA(),e._uU(22),e.ALo(23,"titlecase"),e.qZA(),e.TgZ(24,"p",19)(25,"strong"),e._uU(26,"Channel ID:\xa0"),e.qZA(),e._uU(27),e.qZA()(),e.TgZ(28,"mat-vertical-stepper",20,21),e.NdJ("selectionChange",function(o){return e.CHM(t),e.oxw().stepSelectionChanged(o)}),e.TgZ(30,"mat-step",22)(31,"form",23),e.YNc(32,Fo,1,1,"ng-template",24),e.TgZ(33,"div",25)(34,"mat-form-field",26),e._UZ(35,"input",27),e.TgZ(36,"mat-hint"),e._uU(37),e.qZA(),e.TgZ(38,"span",28),e._uU(39,"Sats"),e.qZA(),e.YNc(40,No,2,0,"mat-error",29),e.YNc(41,qo,2,0,"mat-error",29),e.YNc(42,Uo,2,1,"mat-error",29),e.qZA(),e.TgZ(43,"mat-form-field",30)(44,"input",31),e.NdJ("change",function(){return e.CHM(t),e.oxw().onSelectedPeerChanged()}),e.qZA(),e.TgZ(45,"mat-autocomplete",32,33),e.NdJ("optionSelected",function(){return e.CHM(t),e.oxw().onSelectedPeerChanged()}),e.YNc(47,Oo,2,3,"mat-option",34),e.ALo(48,"async"),e.qZA(),e.YNc(49,Ro,2,0,"mat-error",29),e.YNc(50,Mo,2,0,"mat-error",29),e.qZA()(),e.TgZ(51,"div",35)(52,"button",36),e.NdJ("click",function(){return e.CHM(t),e.oxw().onSelectFee()}),e._uU(53,"Select Fee"),e.qZA()()()(),e.TgZ(54,"mat-step",22)(55,"form",23),e.YNc(56,Io,1,1,"ng-template",37),e.TgZ(57,"div",25)(58,"div",25)(59,"mat-form-field",30)(60,"mat-select",38),e.YNc(61,Do,2,2,"mat-option",34),e.qZA()(),e.TgZ(62,"mat-form-field",26),e._UZ(63,"input",39),e.YNc(64,Po,2,1,"mat-error",29),e.YNc(65,Jo,2,1,"mat-error",29),e.qZA()()(),e.TgZ(66,"div",35)(67,"button",40),e.NdJ("click",function(){return e.CHM(t),e.oxw().onRebalance()}),e._uU(68,"Rebalance"),e.qZA()()()(),e.TgZ(69,"mat-step",41)(70,"form",23),e.YNc(71,Eo,1,0,"ng-template",24),e.TgZ(72,"div",42)(73,"mat-expansion-panel",43)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",44),e._uU(77),e.YNc(78,Qo,2,0,"mat-icon",45),e.qZA()()(),e.TgZ(79,"div",14)(80,"span",46),e._uU(81),e.qZA()()(),e.YNc(82,Yo,1,0,"mat-progress-bar",47),e.TgZ(83,"mat-expansion-panel",48)(84,"mat-expansion-panel-header")(85,"mat-panel-title")(86,"span",44),e._uU(87),e.YNc(88,Ho,2,1,"mat-icon",45),e.qZA()()(),e.YNc(89,Bo,1,0,"div",49),e.qZA(),e.YNc(90,Vo,1,0,"mat-progress-bar",47),e.qZA(),e.YNc(91,Go,2,1,"h4",50),e.TgZ(92,"div",51),e.YNc(93,zo,2,0,"button",52),e.qZA()()()(),e.TgZ(94,"div",53)(95,"button",54),e._uU(96,"Close"),e.qZA()()()()()()}if(2&n){const t=e.MAs(46),a=e.oxw(),o=e.MAs(2);e.Q6J("@opacityAnimation",void 0),e.xp6(3),e.Q6J("fxFlex",a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM?"83":"91"),e.xp6(2),e.Oqu(a.channel?"Channel "+a.loopDirectionCaption:a.loopDirectionCaption),e.xp6(1),e.Q6J("fxFlex",a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM?"17":"9"),e.xp6(9),e.Q6J("icon",a.faInfoCircle),e.xp6(7),e.Oqu(e.lcZ(23,45,a.selChannel.remote_alias)),e.xp6(5),e.Oqu(a.selChannel.chan_id),e.xp6(1),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",a.inputFormGroup)("editable",a.flgEditable),e.xp6(1),e.Q6J("formGroup",a.inputFormGroup),e.xp6(4),e.Q6J("step",100),e.xp6(2),e.AsE("(Local Bal: ",null==a.selChannel?null:a.selChannel.local_balance,", Remaining: ",(null==a.selChannel?null:a.selChannel.local_balance)-(a.inputFormGroup.controls.rebalanceAmount.value?a.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.xp6(3),e.Q6J("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.required),e.xp6(1),e.Q6J("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.min),e.xp6(1),e.Q6J("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.max),e.xp6(2),e.Q6J("matAutocomplete",t),e.xp6(1),e.Q6J("displayWith",a.displayFn),e.xp6(2),e.Q6J("ngForOf",e.lcZ(48,47,a.filteredActiveChannels)),e.xp6(2),e.Q6J("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.required),e.xp6(1),e.Q6J("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.xp6(4),e.Q6J("stepControl",a.feeFormGroup)("editable",a.flgEditable),e.xp6(1),e.Q6J("formGroup",a.feeFormGroup),e.xp6(6),e.Q6J("ngForOf",a.feeLimitTypes),e.xp6(2),e.s9C("placeholder",a.feeFormGroup.controls.selFeeLimitType.value?a.feeFormGroup.controls.selFeeLimitType.value.placeholder:a.feeLimitTypes[0].placeholder),e.Q6J("step",1),e.xp6(1),e.Q6J("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.required),e.xp6(1),e.Q6J("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.min),e.xp6(4),e.Q6J("stepControl",a.statusFormGroup),e.xp6(1),e.Q6J("formGroup",a.statusFormGroup),e.xp6(7),e.Oqu(a.flgInvoiceGenerated?a.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.xp6(1),e.Q6J("ngIf",a.flgInvoiceGenerated),e.xp6(3),e.Oqu(a.paymentRequest),e.xp6(1),e.Q6J("ngIf",!a.flgInvoiceGenerated),e.xp6(1),e.Q6J("expanded",(a.flgInvoiceGenerated||a.flgReusingInvoice)&&a.flgPaymentSent),e.xp6(4),e.Oqu(a.flgInvoiceGenerated||a.flgPaymentSent?a.flgPaymentSent?null!=a.paymentStatus&&a.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.xp6(1),e.Q6J("ngIf",a.flgPaymentSent),e.xp6(1),e.Q6J("ngIf",!a.paymentStatus)("ngIfElse",o),e.xp6(1),e.Q6J("ngIf",a.flgInvoiceGenerated&&!a.flgPaymentSent),e.xp6(1),e.Q6J("ngIf",a.flgInvoiceGenerated&&a.flgPaymentSent),e.xp6(2),e.Q6J("ngIf",a.paymentStatus&&a.paymentStatus.error),e.xp6(2),e.Q6J("mat-dialog-close",!1)}}function Xo(n,i){1&n&&e.GkF(0)}function $o(n,i){if(1&n&&e.YNc(0,Xo,1,0,"ng-container",60),2&n){const t=e.oxw(),a=e.MAs(4),o=e.MAs(6);e.Q6J("ngTemplateOutlet",t.paymentStatus.error?a:o)}}function jo(n,i){if(1&n&&(e.TgZ(0,"div",14)(1,"span",46),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Error: ",t.paymentStatus.error,"")}}function Ko(n,i){if(1&n&&(e.TgZ(0,"div",14)(1,"div",61)(2,"div",6)(3,"h4",62),e._uU(4,"Payment Hash"),e.qZA(),e.TgZ(5,"span",46),e._uU(6),e.qZA()()(),e._UZ(7,"mat-divider",63),e.TgZ(8,"div",61)(9,"div",64)(10,"h4",62),e._uU(11),e.qZA(),e.TgZ(12,"span",46),e._uU(13),e.qZA()(),e.TgZ(14,"div",64)(15,"h4",62),e._uU(16,"Number of Hops"),e.qZA(),e.TgZ(17,"span",46),e._uU(18),e.qZA()()()()),2&n){const t=e.oxw();e.xp6(6),e.Oqu(t.paymentStatus.payment_hash),e.xp6(5),e.hij("Total Fees (",t.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.xp6(2),e.Oqu(t.paymentStatus.payment_route.total_fees_msat?t.paymentStatus.payment_route.total_fees_msat:t.paymentStatus.payment_route.total_fees?t.paymentStatus.payment_route.total_fees:0),e.xp6(5),e.Oqu(t.paymentStatus&&t.paymentStatus.payment_route&&t.paymentStatus.payment_route.hops&&t.paymentStatus.payment_route.hops.length?t.paymentStatus.payment_route.hops.length:0)}}const es=function(n,i){return{"dot-primary":n,"dot-primary-lighter":i}};function ts(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"span",81),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(2).onStepChanged(s)}),e._UZ(1,"p",82),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(1),e.Q6J("ngClass",e.WLB(1,es,a.stepNumber===t,a.stepNumber!==t))}}function ns(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",83),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onStepChanged(4)}),e._uU(1,"Back"),e.qZA()}}function as(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",84),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.flgShowInfo=!1,o.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function is(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",85),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.flgShowInfo=!1,o.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function os(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",86),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.onStepChanged(o.stepNumber-1)}),e._uU(1,"Back"),e.qZA()}}function ss(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",87),e.NdJ("click",function(){e.CHM(t);const o=e.oxw(2);return o.onStepChanged(o.stepNumber+1)}),e._uU(1,"Next"),e.qZA()}}const ls=function(){return[1,2,3,4,5]};function rs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e._UZ(4,"span",9),e.qZA(),e.TgZ(5,"div",69)(6,"button",70),e.NdJ("click",function(){e.CHM(t);const o=e.oxw();return o.flgShowInfo=!1,o.stepNumber=1}),e._uU(7,"X"),e.qZA()()(),e.TgZ(8,"mat-card-content",71)(9,"rtl-channel-rebalance-infographics",72),e.NdJ("stepNumberChange",function(o){return e.CHM(t),e.oxw().stepNumber=o}),e.qZA()(),e.TgZ(10,"div",73),e.YNc(11,ts,2,4,"span",74),e.qZA(),e.TgZ(12,"div",75),e.YNc(13,ns,2,0,"button",76),e.YNc(14,as,2,0,"button",77),e.YNc(15,is,2,0,"button",78),e.YNc(16,os,2,0,"button",79),e.YNc(17,ss,2,0,"button",80),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@opacityAnimation",void 0),e.xp6(9),e.Q6J("stepNumber",t.stepNumber)("animationDirection",t.animationDirection),e.xp6(2),e.Q6J("ngForOf",e.DdM(9,ls)),e.xp6(2),e.Q6J("ngIf",5===t.stepNumber),e.xp6(1),e.Q6J("ngIf",5===t.stepNumber),e.xp6(1),e.Q6J("ngIf",t.stepNumber<5),e.xp6(1),e.Q6J("ngIf",t.stepNumber>1&&t.stepNumber<5),e.xp6(1),e.Q6J("ngIf",t.stepNumber<5)}}let cs=(()=>{class n{constructor(t,a,o,s,r,_,g,C){this.dialogRef=t,this.data=a,this.logger=o,this.store=s,this.actions=r,this.formBuilder=_,this.decimalPipe=g,this.commonService=C,this.faInfoCircle=v.sqG,this.invoices={},this.selChannel={},this.activeChannels=[],this.feeLimitTypes=[],this.queryRoute={},this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1,this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=l.cu,this.animationDirection="forward",this.unSubs=[new m.x,new m.x,new m.x,new m.x]}ngOnInit(){var t,a,o,s,r;this.screenSize=this.commonService.getScreenSize();let _="",g="";this.selChannel=(null===(t=this.data.message)||void 0===t?void 0:t.selChannel)||{},this.activeChannels=(null===(o=null===(a=this.data.message)||void 0===a?void 0:a.channels)||void 0===o?void 0:o.filter(C=>C.active&&C.chan_id!==this.selChannel.chan_id&&C.remote_balance&&C.remote_balance>0))||[],this.activeChannels=this.activeChannels.sort((C,I)=>(_=C.remote_alias?C.remote_alias.toLowerCase():C.chan_id?C.chan_id.toLowerCase():"",g=I.remote_alias?I.remote_alias.toLowerCase():C.chan_id?C.chan_id.toLowerCase():"",_g?1:0)),l.Vc.forEach((C,I)=>{I>0&&this.feeLimitTypes.push(C)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[u.kI.required]],rebalanceAmount:["",[u.kI.required,u.kI.min(1),u.kI.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,u.kI.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],u.kI.required],feeLimit:["",[u.kI.required,u.kI.min(0)]],hiddenFeeLimit:["",[u.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.Ef).pipe((0,h.R)(this.unSubs[0])).subscribe(C=>{this.invoices=C.listInvoices,this.logger.info(C)}),this.actions.pipe((0,h.R)(this.unSubs[1]),(0,Y.h)(C=>C.type===l.uR.SET_QUERY_ROUTES_LND||C.type===l.uR.SEND_PAYMENT_STATUS_LND||C.type===l.uR.NEWLY_SAVED_INVOICE_LND)).subscribe(C=>{C.type===l.uR.SET_QUERY_ROUTES_LND&&(this.queryRoute=C.payload),C.type===l.uR.SEND_PAYMENT_STATUS_LND&&(this.logger.info(C.payload),this.flgPaymentSent=!0,this.paymentStatus=C.payload,this.flgEditable=!0),C.type===l.uR.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(C.payload),this.flgInvoiceGenerated=!0,this.sendPayment(C.payload.paymentRequest))}),null===(s=this.inputFormGroup.get("rebalanceAmount"))||void 0===s||s.valueChanges.pipe((0,h.R)(this.unSubs[2]),(0,xe.O)(0)).subscribe(C=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Te.of)(C?this.filterActiveChannels():this.activeChannels.slice())}),null===(r=this.inputFormGroup.get("selRebalancePeer"))||void 0===r||r.valueChanges.pipe((0,h.R)(this.unSubs[3]),(0,xe.O)("")).subscribe(C=>{"string"==typeof C&&(this.filteredActiveChannels=(0,Te.of)(this.filterActiveChannels()))})}onSelectFee(){return this.inputFormGroup.controls.selRebalancePeer.value&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value&&this.onSelectedPeerChanged(),this.inputFormGroup.controls.selRebalancePeer.value&&"string"!=typeof this.inputFormGroup.controls.selRebalancePeer.value?!this.inputFormGroup.controls.rebalanceAmount.value||(0===this.stepper.selectedIndex&&(this.inputFormGroup.controls.hiddenAmount.setValue(this.inputFormGroup.controls.rebalanceAmount.value),this.stepper.next()),this.queryRoute=null,this.feeFormGroup.reset(),void this.feeFormGroup.controls.selFeeLimitType.setValue(this.feeLimitTypes[0])):(this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0)}stepSelectionChanged(t){var a;switch(t.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel=this.queryRoute&&this.queryRoute.routes&&this.queryRoute.routes.length>0&&(this.queryRoute.routes[0].total_fees_msat||this.queryRoute.routes[0].hops&&this.queryRoute.routes[0].hops.length)?this.feeFormGroup.controls.selFeeLimitType.value.placeholder+": "+this.decimalPipe.transform(this.feeFormGroup.controls.feeLimit.value?this.feeFormGroup.controls.feeLimit.value:0)+" | Hops: "+(null===(a=this.queryRoute.routes[0].hops)||void 0===a?void 0:a.length):"Select rebalance fee"}t.selectedIndex+this.selChannel.local_balance||!this.feeFormGroup.controls.feeLimit.value||this.feeFormGroup.controls.feeLimit.value<0||!this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey)return!0;this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value),this.stepper.next(),this.flgEditable=!1,this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1;const t=this.findUnsettledInvoice();t?(this.flgReusingInvoice=!0,this.sendPayment(t.payment_request||"")):this.store.dispatch((0,w.Rd)({payload:{uiMessage:l.m6.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",invoiceValue:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:3600,pageSize:l.IV,openModal:!1}}))}findUnsettledInvoice(){var t;return null===(t=this.invoices.invoices)||void 0===t?void 0:t.find(a=>(!a.settle_date||0==+a.settle_date)&&a.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==a.state)}sendPayment(t){this.flgInvoiceGenerated=!0,this.paymentRequest=t,this.store.dispatch((0,w.oV)("percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0?{payload:{uiMessage:l.m6.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:"fixed",feeLimit:Math.ceil(+this.feeFormGroup.controls.feeLimit.value*+this.inputFormGroup.controls.rebalanceAmount.value/100),allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}:{payload:{uiMessage:l.m6.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:this.feeFormGroup.controls.selFeeLimitType.value.id,feeLimit:this.feeFormGroup.controls.feeLimit.value,allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}))}filterActiveChannels(){var t;return null===(t=this.activeChannels)||void 0===t?void 0:t.filter(a=>{var o,s;return a.remote_balance&&a.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&a.chan_id!==this.selChannel.chan_id&&(0===(null===(o=a.remote_alias)||void 0===o?void 0:o.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""))||0===(null===(s=a.chan_id)||void 0===s?void 0:s.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))})}onSelectedPeerChanged(){var t;if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const a=null===(t=this.activeChannels)||void 0===t?void 0:t.filter(o=>{var s,r;return(null===(s=o.remote_alias)||void 0===s?void 0:s.length)===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===(null===(r=o.remote_alias)||void 0===r?void 0:r.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""))});a&&a.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(a[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(t){this.animationDirection=t{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(U.mQ),e.Y36(L.yh),e.Y36(W.eX),e.Y36(u.qu),e.Y36(p.JJ),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(t,a){if(1&t&&e.Gf(ko,5),2&t){let o;e.iGM(o=e.CRH())&&(a.stepper=o.first)}},decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","48"],["autoFocus","","matInput","","placeholder","Amount","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxFlex","48","fxLayoutAlign","start end"],["type","text","placeholder","Receive from Peer","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","submit",3,"click"],["matStepLabel","","disabled","true"],["tabindex","6","formControlName","selFeeLimitType","Placeholder","Fee Limits","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"placeholder","step"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start","class","font-bold-500 mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","50"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["tabindex","19","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(t,a){1&t&&(e.YNc(0,Wo,97,49,"div",0),e.YNc(1,$o,1,1,"ng-template",null,1,e.W1O),e.YNc(3,jo,3,1,"ng-template",null,2,e.W1O),e.YNc(5,Ko,19,4,"ng-template",null,3,e.W1O),e.YNc(7,rs,18,10,"div",4)),2&t&&(e.Q6J("ngIf",!a.flgShowInfo),e.xp6(7),e.Q6J("ngIf",a.flgShowInfo))},directives:[p.O5,d.xw,d.yH,d.Wh,Z.dk,N.lW,Z.dn,D.BN,G.Vq,G.C0,u._Y,u.JL,u.sg,G.VY,x.KE,M.Nt,u.wV,u.Fj,$.h,u.JJ,u.u,u.Q7,x.bx,x.R9,x.TO,ie.ZL,ie.XC,p.sg,B.ey,R.gD,V.ib,V.yz,V.yK,te.Hw,J.pW,E.ZT,p.tP,X.d,Lo,p.mk,k.oO],pipes:[p.rS,p.Ov],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:60rem;min-height:60rem}"],data:{animation:[ve._]}}),n})();function us(n,i){if(1&n&&(e.TgZ(0,"div",16)(1,"p",17)(2,"mat-icon",18),e._uU(3,"close"),e.qZA(),e._uU(4),e.qZA()()),2&n){const t=e.oxw();e.xp6(4),e.Oqu(t.errorMsg)}}function ps(n,i){if(1&n&&(e.TgZ(0,"div",27),e._UZ(1,"fa-icon",28),e.TgZ(2,"span"),e._uU(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.qZA()()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faInfoCircle)}}function ms(n,i){if(1&n&&(e.TgZ(0,"mat-option",29),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function ds(n,i){1&n&&(e.TgZ(0,"mat-form-field",30),e._UZ(1,"input",31),e.qZA())}function _s(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function hs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"input",33,34),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).blocks=o}),e.qZA(),e.YNc(3,_s,2,0,"mat-error",35),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.blocks)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.blocks)}}function gs(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function fs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"input",36,37),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).fees=o}),e.qZA(),e.YNc(3,gs,2,0,"mat-error",35),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.fees)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.fees)}}function Cs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",19),e.YNc(1,ps,4,1,"div",20),e.TgZ(2,"div",21)(3,"mat-form-field",22)(4,"mat-select",23),e.NdJ("valueChange",function(o){return e.CHM(t),e.oxw().selTransType=o}),e.YNc(5,ms,2,2,"mat-option",24),e.qZA()(),e.YNc(6,ds,2,0,"mat-form-field",25),e.YNc(7,hs,4,4,"mat-form-field",26),e.YNc(8,fs,4,4,"mat-form-field",26),e.qZA()()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",!t.channelToClose.active),e.xp6(3),e.Q6J("value",t.selTransType)("disabled",!t.channelToClose.active),e.xp6(1),e.Q6J("ngForOf",t.transTypes),e.xp6(1),e.Q6J("ngIf","0"===t.selTransType),e.xp6(1),e.Q6J("ngIf","1"===t.selTransType),e.xp6(1),e.Q6J("ngIf","2"===t.selTransType)}}function xs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",38),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(1,"Clear"),e.qZA()}}function ys(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",39),e.NdJ("click",function(){return e.CHM(t),e.oxw().onCloseChannel()}),e._uU(1),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.channelToClose.active?"Close Channel":"Force Close")}}function Ts(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"button",40),e.NdJ("click",function(){return e.CHM(t),e.oxw().onClose()}),e._uU(1,"Ok"),e.qZA()}}let vs=(()=>{class n{constructor(t,a,o,s,r){this.dialogRef=t,this.data=a,this.store=o,this.actions=s,this.logger=r,this.transTypes=l.Dr,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=v.eHv,this.faInfoCircle=v.sqG,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.unSubs=[new m.x,new m.x]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t.type===l.uR.UPDATE_API_CALL_STATUS_LND||t.type===l.uR.SET_CHANNELS_LND)).subscribe(t=>{if(t.type===l.uR.SET_CHANNELS_LND){const a=t.payload.find(o=>o.chan_id===this.data.channel.chan_id);a&&a.pending_htlcs&&a.pending_htlcs.length&&a.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.Bn.ERROR&&"FetchAllChannels"===t.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+t.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const t={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(t.targetConf=this.blocks),this.fees&&(t.satPerByte=this.fees),this.store.dispatch((0,w.BL)({payload:t})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(L.yh),e.Y36(W.eX),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-close-channel"]],decls:19,vars:7,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","class","mr-1","tabindex","3","default","",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click",4,"ngIf"],["fxLayoutAlign","start center"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex.gt-sm","48"],["tabindex","1",3,"value","disabled","valueChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48",4,"ngIf"],["fxFlex.gt-sm","48","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],[3,"value"],["fxFlex","48"],["matInput","","placeholder","Default","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","placeholder","Number of Blocks","type","number","name","blocks","required","","tabindex","2",3,"ngModel","step","min","ngModelChange"],["blcks","ngModel"],[4,"ngIf"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","ccfees","required","","tabindex","3",3,"ngModel","step","min","ngModelChange"],["clchfee","ngModel"],["mat-button","","color","primary","type","reset","tabindex","3","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return a.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"div",8)(11,"p",9),e._uU(12),e.qZA(),e.YNc(13,us,5,1,"div",10),e.YNc(14,Cs,9,7,"div",11),e.qZA(),e.TgZ(15,"div",12),e.YNc(16,xs,2,0,"button",13),e.YNc(17,ys,2,1,"button",14),e.YNc(18,Ts,2,0,"button",15),e.qZA()()()()()),2&t&&(e.xp6(5),e.Oqu(a.channelToClose.active?"Close Channel":"Force Close Channel"),e.xp6(7),e.hij("",a.channelToClose.active?"Closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point):"Force closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point)," "),e.xp6(1),e.Q6J("ngIf",a.flgPendingHtlcs),e.xp6(1),e.Q6J("ngIf",!a.flgPendingHtlcs),e.xp6(2),e.Q6J("ngIf",a.channelToClose.active&&!a.flgPendingHtlcs),e.xp6(1),e.Q6J("ngIf",!a.flgPendingHtlcs),e.xp6(1),e.Q6J("ngIf",a.flgPendingHtlcs))},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,Z.dn,u._Y,u.JL,u.F,p.O5,te.Hw,D.BN,x.KE,R.gD,p.sg,B.ey,M.Nt,u.wV,u.qQ,u.Fj,K.q,u.Q7,u.JJ,u.On,x.TO],styles:[""]}),n})();function bs(n,i){1&n&&e._UZ(0,"mat-progress-bar",30)}function Zs(n,i){1&n&&(e.TgZ(0,"th",31),e._uU(1," Peer "),e.qZA())}function ws(n,i){1&n&&e._UZ(0,"span",39)}function As(n,i){1&n&&e._UZ(0,"span",40)}function Ss(n,i){if(1&n&&(e.TgZ(0,"span",41),e._UZ(1,"fa-icon",42),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faEyeSlash)}}function Ls(n,i){if(1&n&&(e.TgZ(0,"span",43),e._UZ(1,"fa-icon",42),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faEye)}}const ks=function(n){return{"max-width":n}};function Fs(n,i){if(1&n&&(e.TgZ(0,"td",32)(1,"div",33),e.YNc(2,ws,1,0,"span",34),e.YNc(3,As,1,0,"span",35),e.YNc(4,Ss,2,1,"span",36),e.YNc(5,Ls,2,1,"span",37),e.TgZ(6,"span",38),e._uU(7),e.qZA()()()),2&n){const t=i.$implicit,a=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(6,ks,a.screenSize===a.screenSizeEnum.XS?"10rem":a.screenSize===a.screenSizeEnum.MD?"15rem":"22rem")),e.xp6(1),e.Q6J("ngIf",t.active),e.xp6(1),e.Q6J("ngIf",!t.active),e.xp6(1),e.Q6J("ngIf",t.private),e.xp6(1),e.Q6J("ngIf",!t.private),e.xp6(2),e.Oqu(t.remote_alias||t.remote_pubkey)}}function Ns(n,i){if(1&n&&(e.TgZ(0,"th",44),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("Uptime (",t.timeUnit,")")}}function qs(n,i){if(1&n&&(e.TgZ(0,"td",32)(1,"span",45),e._uU(2),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij("",t.uptime_str," ")}}function Us(n,i){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Sats Sent "),e.qZA())}function Os(n,i){if(1&n&&(e.TgZ(0,"td",32)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.total_satoshis_sent)," ")}}function Rs(n,i){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Sats Received "),e.qZA())}function Ms(n,i){if(1&n&&(e.TgZ(0,"td",32)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.total_satoshis_received)," ")}}function Is(n,i){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Local Balance (Sats) "),e.qZA())}function Ds(n,i){if(1&n&&(e.TgZ(0,"td",32)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_balance)," ")}}function Ps(n,i){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Remote Balance (Sats) "),e.qZA())}function Js(n,i){if(1&n&&(e.TgZ(0,"td",32)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_balance)," ")}}function Es(n,i){1&n&&(e.TgZ(0,"th",46),e._uU(1,"Balance Score "),e.qZA())}function Qs(n,i){if(1&n&&(e.TgZ(0,"td",47)(1,"div",48)(2,"mat-hint",49),e._uU(3),e.ALo(4,"number"),e.qZA()(),e._UZ(5,"mat-progress-bar",50),e.qZA()),2&n){const t=i.$implicit;e.xp6(3),e.Oqu(e.lcZ(4,2,t.balancedness||0)),e.xp6(2),e.s9C("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function Ys(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",51)(1,"div",52)(2,"mat-select",53),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",54),e.NdJ("click",function(){return e.CHM(t),e.oxw().onChannelUpdate("all")}),e._uU(5,"Update Fee Policy"),e.qZA(),e.TgZ(6,"mat-option",54),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(7,"Download CSV"),e.qZA()()()()}}function Hs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-option",54),e.NdJ("click",function(){e.CHM(t);const o=e.oxw().$implicit;return e.oxw().onCircularRebalance(o)}),e._uU(1,"Circular Rebalance"),e.qZA()}}function Bs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-option",54),e.NdJ("click",function(){e.CHM(t);const o=e.oxw().$implicit;return e.oxw().onLoopOut(o)}),e._uU(1,"Loop Out"),e.qZA()}}function Vs(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",55)(1,"div",52)(2,"mat-select",56),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",54),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onChannelClick(r,o)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",54),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onViewRemotePolicy(s)}),e._uU(7,"View Remote Fee "),e.qZA(),e.TgZ(8,"mat-option",54),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onChannelUpdate(s)}),e._uU(9,"Update Fee Policy"),e.qZA(),e.YNc(10,Hs,2,0,"mat-option",57),e.YNc(11,Bs,2,0,"mat-option",57),e.TgZ(12,"mat-option",54),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onChannelClose(s)}),e._uU(13,"Close Channel"),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(10),e.Q6J("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.xp6(1),e.Q6J("ngIf",t.selNode.swapServerUrl)}}function Gs(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No peers connected. Add a peer in order to open a channel."),e.qZA())}function zs(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No channel available."),e.qZA())}function Ws(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting channels..."),e.qZA())}function Xs(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function $s(n,i){if(1&n&&(e.TgZ(0,"td",58),e.YNc(1,Gs,2,0,"p",59),e.YNc(2,zs,2,0,"p",59),e.YNc(3,Ws,2,0,"p",59),e.YNc(4,Xs,2,1,"p",59),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}const js=function(n){return{"display-none":n}};function Ks(n,i){if(1&n&&e._UZ(0,"tr",60),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,js,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function el(n,i){1&n&&e._UZ(0,"tr",61)}function tl(n,i){1&n&&e._UZ(0,"tr",62)}const nl=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},al=function(){return["no_channel"]};let il=(()=>{class n{constructor(t,a,o,s,r,_,g,C){var I,T,Q,Ae,Se,Le;this.logger=t,this.store=a,this.lndEffects=o,this.commonService=s,this.rtlEffects=r,this.decimalPipe=_,this.loopService=g,this.router=C,this.timeUnit="mins:secs",this.userPersonaEnum=l.ol,this.selNode={},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.versionsArr=[],this.faEye=v.Mdf,this.faEyeSlash=v.Aq,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["remote_alias","local_balance","remote_balance","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["remote_alias","local_balance","remote_balance","balancedness","actions"]):(this.flgSticky=!0,this.displayedColumns=["remote_alias","uptime","total_satoshis_sent","total_satoshis_received","local_balance","remote_balance","balancedness","actions"]),this.selFilter=(null===(Q=null===(T=null===(I=this.router.getCurrentNavigation())||void 0===I?void 0:I.extras)||void 0===T?void 0:T.state)||void 0===Q?void 0:Q.filter)?null===(Le=null===(Se=null===(Ae=this.router.getCurrentNavigation())||void 0===Ae?void 0:Ae.extras)||void 0===Se?void 0:Se.state)||void 0===Le?void 0:Le.filter:""}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(y.Wi).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var a,o;this.totalBalance=(null===(a=t.blockchainBalance)||void 0===a?void 0:a.total_balance)?+(null===(o=t.blockchainBalance)||void 0===o?void 0:o.total_balance):0}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(t.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){var a;this.store.dispatch((0,w.$A)({payload:{uiMessage:l.m6.GET_REMOTE_POLICY,channelID:(null===(a=t.chan_id)||void 0===a?void 0:a.toString())+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,z.q)(1)).subscribe(o=>{if(!o.fee_base_msat&&!o.fee_rate_milli_msat&&!o.time_lock_delta)return!1;const s=[[{key:"fee_base_msat",value:o.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.Gi.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.Gi.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.Gi.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:o.time_lock_delta,title:"Time Lock Delta",width:25,type:l.Gi.NUMBER}]],r="Remote policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point);setTimeout(()=>{this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:r,message:s}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,S.qR)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:cs}}}))}onChannelUpdate(t){"all"===t?(this.store.dispatch((0,S.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All Channels",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.Gi.NUMBER,inputValue:1e3,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.Gi.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.Gi.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[5])).subscribe(o=>{o&&this.store.dispatch((0,w.pW)({payload:{baseFeeMsat:o[0].inputValue,feeRate:o[1].inputValue,timeLockDelta:o[2].inputValue,chanPoint:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0,min_htlc_msat:0,max_htlc_msat:0},this.store.dispatch((0,w.$A)({payload:{uiMessage:l.m6.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,z.q)(1)).subscribe(a=>{this.myChanPolicy=a.node1_pub===this.information.identity_pubkey?a.node1_policy:a.node2_pub===this.information.identity_pubkey?a.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const o="Update fee policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point),s=[];setTimeout(()=>{this.store.dispatch((0,S.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:o,noBtnText:"Cancel",yesBtnText:"Update Channel",message:s,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.Gi.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.Gi.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.Gi.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:l.Gi.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:l.Gi.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[6])).subscribe(a=>{if(a){const o={baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:t.channel_point};a.length>3&&a[3]&&a[4]&&(o.minHtlcMsat=a[3].inputValue,o.maxHtlcMsat=a[4].inputValue),this.store.dispatch((0,w.pW)({payload:o}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,w.UR)()),this.store.dispatch((0,S.qR)({payload:{data:{channel:t,component:vs}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}onChannelClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{channel:t,showCopy:!0,component:ye}}}))}loadChannelsTable(t){t.sort((a,o)=>a.active===o.active?0:o.active?1:-1),this.channels=new c.by([...t]),this.channels.filterPredicate=(a,o)=>((a.active?"active":"inactive")+(a.chan_id?a.chan_id.toLowerCase():"")+(a.remote_pubkey?a.remote_pubkey.toLowerCase():"")+(a.remote_alias?a.remote_alias.toLowerCase():"")+(a.capacity?a.capacity:"")+(a.local_balance?a.local_balance:"")+(a.remote_balance?a.remote_balance:"")+(a.total_satoshis_sent?a.total_satoshis_sent:"")+(a.total_satoshis_received?a.total_satoshis_received:"")+(a.commit_fee?a.commit_fee:"")+(a.private?"private":"public")).includes(o),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.channels.paginator=this.paginator,this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let _=60,g=1,C=0;switch(t.forEach(I=>{I.uptime&&+I.uptime>C&&(C=+I.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",_=60,g=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",_=3600,g=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",_=86400,g=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",_=31536e3,g=86400;break;default:this.timeUnit="Mins:Secs",_=60,g=1}return t.forEach(I=>{I.uptime_str=I.uptime?this.decimalPipe.transform(Math.floor(+I.uptime/_),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+I.uptime%_/g),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,h.R)(this.unSubs[7])).subscribe(a=>{this.store.dispatch((0,S.qR)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.$I.LOOP_OUT,component:Me.a}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(t){return(t/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(ne.l),e.Y36(O.v),e.Y36(le.V),e.Y36(p.JJ),e.Y36(Ie.W),e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Channels")}])],decls:39,vars:14,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","uptime"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","balancedness"],["mat-header-cell","","mat-sort-header","","class","pl-2",4,"matHeaderCellDef"],["mat-cell","","class","pl-2",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","pl-1",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["class","dot green","matTooltip","Active","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],[1,"ellipsis-child"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","yellow"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","",1,"pl-2"],["mat-cell","",1,"pl-2"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell","",1,"pl-1"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-1"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"div",2),e.TgZ(3,"mat-form-field",3)(4,"input",4),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(5,"div",5),e.YNc(6,bs,1,0,"mat-progress-bar",6),e.TgZ(7,"table",7,8),e.ynx(9,9),e.YNc(10,Zs,2,0,"th",10),e.YNc(11,Fs,8,8,"td",11),e.BQk(),e.ynx(12,12),e.YNc(13,Ns,2,1,"th",13),e.YNc(14,qs,3,1,"td",11),e.BQk(),e.ynx(15,14),e.YNc(16,Us,2,0,"th",13),e.YNc(17,Os,4,3,"td",11),e.BQk(),e.ynx(18,15),e.YNc(19,Rs,2,0,"th",13),e.YNc(20,Ms,4,3,"td",11),e.BQk(),e.ynx(21,16),e.YNc(22,Is,2,0,"th",13),e.YNc(23,Ds,4,3,"td",11),e.BQk(),e.ynx(24,17),e.YNc(25,Ps,2,0,"th",13),e.YNc(26,Js,4,3,"td",11),e.BQk(),e.ynx(27,18),e.YNc(28,Es,2,0,"th",19),e.YNc(29,Qs,6,4,"td",20),e.BQk(),e.ynx(30,21),e.YNc(31,Ys,8,0,"th",22),e.YNc(32,Vs,14,2,"td",23),e.BQk(),e.ynx(33,24),e.YNc(34,$s,5,4,"td",25),e.BQk(),e.YNc(35,Ks,1,3,"tr",26),e.YNc(36,el,1,0,"tr",27),e.YNc(37,tl,1,0,"tr",28),e.qZA()(),e._UZ(38,"mat-paginator",29),e.qZA()),2&t&&(e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(2),e.Q6J("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.channels)("ngClass",e.VKq(11,nl,""!==a.errorMessage)),e.xp6(28),e.Q6J("matFooterRowDef",e.DdM(13,al)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,j.gM,D.BN,x.bx,R.gD,R.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-remote_alias[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-remote_alias[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-balancedness[_ngcontent-%COMP%]{flex:0 0 20%;width:20%}@media only screen and (max-width: 75em){.mat-column-balancedness[_ngcontent-%COMP%]{flex:0 0 35%;width:35%}}@media only screen and (max-width: 56.25em){.mat-column-balancedness[_ngcontent-%COMP%]{flex:0 0 25%;width:25%}}.mat-column-uptime[_ngcontent-%COMP%], .mat-column-local_balance[_ngcontent-%COMP%], .mat-column-remote_balance[_ngcontent-%COMP%], .mat-column-total_satoshis_sent[_ngcontent-%COMP%], .mat-column-total_satoshis_received[_ngcontent-%COMP%]{flex:1 1 10%;width:10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (max-width: 75em){.mat-column-uptime[_ngcontent-%COMP%], .mat-column-local_balance[_ngcontent-%COMP%], .mat-column-remote_balance[_ngcontent-%COMP%], .mat-column-total_satoshis_sent[_ngcontent-%COMP%], .mat-column-total_satoshis_received[_ngcontent-%COMP%]{white-space:unset;flex:1 1 25%;width:25%}}@media only screen and (max-width: 56.25em){.mat-column-uptime[_ngcontent-%COMP%], .mat-column-local_balance[_ngcontent-%COMP%], .mat-column-remote_balance[_ngcontent-%COMP%], .mat-column-total_satoshis_sent[_ngcontent-%COMP%], .mat-column-total_satoshis_received[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}}@media only screen and (max-width: 37.5em){.mat-column-uptime[_ngcontent-%COMP%], .mat-column-local_balance[_ngcontent-%COMP%], .mat-column-remote_balance[_ngcontent-%COMP%], .mat-column-total_satoshis_sent[_ngcontent-%COMP%], .mat-column-total_satoshis_received[_ngcontent-%COMP%]{white-space:unset}}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 100%}@media only screen and (max-width: 56.25em){.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 90%}}@media only screen and (max-width: 37.5em){.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 80%}}"]}),n})();const ol=["outputIdx"];function sl(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Index for change output is required."),e.qZA())}function ll(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid index value."),e.qZA())}function rl(n,i){if(1&n&&(e.TgZ(0,"mat-option",29),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function cl(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function ul(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",17)(1,"input",30,31),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().blocks=o}),e.qZA(),e.YNc(3,cl,2,0,"mat-error",20),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.blocks)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.blocks)}}function pl(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function ml(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",17)(1,"input",32,33),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().fees=o}),e.qZA(),e.YNc(3,pl,2,0,"mat-error",20),e.qZA()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.fees)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.fees)}}function dl(n,i){if(1&n&&(e.TgZ(0,"div",34),e._UZ(1,"fa-icon",13),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(2),e.Oqu(t.bumpFeeError)}}let _l=(()=>{class n{constructor(t,a,o,s,r){this.dialogRef=t,this.data=a,this.logger=o,this.dataService=s,this.snackBar=r,this.transTypes=[...l.Dr],this.selTransType="2",this.blocks=null,this.fees=null,this.outputIndex=null,this.faCopy=v.kZ_,this.faInfoCircle=v.sqG,this.faExclamationTriangle=v.eHv,this.bumpFeeError="",this.unSubs=[new m.x,new m.x]}set payReq(t){t&&(this.outputIdx=t)}ngOnInit(){var t,a;this.transTypes=this.transTypes.splice(1),this.bumpFeeChannel=this.data.pendingChannel;const o=(null===(a=null===(t=this.bumpFeeChannel.channel)||void 0===t?void 0:t.channel_point)||void 0===a?void 0:a.split(":"))||[];this.bumpFeeChannel&&this.bumpFeeChannel.channel&&(this.bumpFeeChannel.channel.txid_str=o[0]||(this.bumpFeeChannel.channel&&this.bumpFeeChannel.channel.channel_point?this.bumpFeeChannel.channel.channel_point:""),this.bumpFeeChannel.channel.output_index=+o[1]||null)}onBumpFee(){var t;return this.outputIndex===(null===(t=this.bumpFeeChannel.channel)||void 0===t?void 0:t.output_index)?(this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0):!this.outputIndex&&0!==this.outputIndex||!("1"!==this.selTransType||this.blocks&&0!==this.blocks)||!("2"!==this.selTransType||this.fees&&0!==this.fees)||void this.dataService.bumpFee(this.bumpFeeChannel&&this.bumpFeeChannel.channel&&this.bumpFeeChannel.channel.txid_str?this.bumpFeeChannel.channel.txid_str:"",this.outputIndex,this.blocks||null,this.fees||null).pipe((0,h.R)(this.unSubs[0])).subscribe({next:a=>{this.dialogRef.close(!1)},error:a=>{this.logger.error(a),this.bumpFeeError=a.message?a.message:a}})}onCopyID(t){this.snackBar.open("Transaction ID copied.")}resetData(){this.bumpFeeError="",this.selTransType="2",this.blocks=null,this.fees=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(U.mQ),e.Y36(ee.D),e.Y36(ae.ux))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(t,a){if(1&t&&e.Gf(ol,5),2&t){let o;e.iGM(o=e.CRH())&&(a.payReq=o.first)}},decls:48,vars:15,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["matSuffix","","rtlClipboard","","matTooltip","Copy transaction ID",1,"ml-1",3,"icon","payload","copied"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],[1,"pl-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex.gt-sm","32","fxLayoutAlign","start end"],["matInput","","placeholder","Index for Change Output","type","number","tabindex","1","required","","name","outputIdx",3,"ngModel","step","min","ngModelChange"],["outputIdx","ngModel"],[4,"ngIf"],["fxFlex.gt-sm","32"],["tabindex","2",3,"value","valueChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex.gt-sm","32","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],[3,"value"],["matInput","","placeholder","Number of Blocks","type","number","name","blocks","required","","tabindex","3",3,"ngModel","step","min","ngModelChange"],["blcks","ngModel"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","fees","required","","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fee","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(t,a){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Bump Fee"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return a.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"div",8)(11,"p",9),e._uU(12),e.TgZ(13,"fa-icon",10),e.NdJ("copied",function(s){return a.onCopyID(s)}),e.qZA()(),e.TgZ(14,"div",11)(15,"div",12),e._UZ(16,"fa-icon",13),e.TgZ(17,"span",14),e._uU(18,"Bumping fee on pending open channels is an advanced feature, attempt it only if you are familiar with the functionality of Bitcoin transactions. "),e.TgZ(19,"div"),e._uU(20,"Before attempting fee bump ensure the following:"),e.qZA(),e.TgZ(21,"div",15),e._uU(22,"1: Use a Bitcoin block explorer to ensure that channel opening transaction is not confirmed."),e.qZA(),e.TgZ(23,"div",15),e._uU(24,"2: The channel opening transaction must have a sizable change output, which can be spent further. The fee cannot be bumped without the change output."),e.qZA(),e.TgZ(25,"div",15),e._uU(26,"3: Find the index value of the change output via a block explorer."),e.qZA(),e.TgZ(27,"div",15),e._uU(28,"4: Enter the index value of the change output in the form below and the desired fee rate."),e.qZA(),e.TgZ(29,"div",15),e._uU(30,"5: Upon successful fee bump, use your block explorer to track the child transaction in the mempool, which should be linked with the change output transaction."),e.qZA()()(),e.TgZ(31,"div",16)(32,"mat-form-field",17)(33,"input",18,19),e.NdJ("ngModelChange",function(s){return a.outputIndex=s}),e.qZA(),e.YNc(35,sl,2,0,"mat-error",20),e.YNc(36,ll,2,0,"mat-error",20),e.qZA(),e.TgZ(37,"mat-form-field",21)(38,"mat-select",22),e.NdJ("valueChange",function(s){return a.selTransType=s})("selectionChange",function(){return a.blocks=null,a.fees=null}),e.YNc(39,rl,2,2,"mat-option",23),e.qZA()(),e.YNc(40,ul,4,4,"mat-form-field",24),e.YNc(41,ml,4,4,"mat-form-field",24),e.qZA(),e.YNc(42,dl,4,2,"div",25),e.qZA()(),e.TgZ(43,"div",26)(44,"button",27),e.NdJ("click",function(){return a.resetData()}),e._uU(45,"Clear"),e.qZA(),e.TgZ(46,"button",28),e.NdJ("click",function(){return a.onBumpFee()}),e._uU(47),e.qZA()()()()()()),2&t){const o=e.MAs(34);e.xp6(12),e.hij("Bump fee for channel point: ",null==a.bumpFeeChannel||null==a.bumpFeeChannel.channel?null:a.bumpFeeChannel.channel.channel_point," "),e.xp6(1),e.Q6J("icon",a.faCopy)("payload",null==a.bumpFeeChannel||null==a.bumpFeeChannel.channel?null:a.bumpFeeChannel.channel.txid_str),e.xp6(3),e.Q6J("icon",a.faInfoCircle),e.xp6(17),e.Q6J("ngModel",a.outputIndex)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",null==o.errors?null:o.errors.required),e.xp6(1),e.Q6J("ngIf",null==o.errors?null:o.errors.pendingChannelOutputIndex),e.xp6(2),e.Q6J("value",a.selTransType),e.xp6(1),e.Q6J("ngForOf",a.transTypes),e.xp6(1),e.Q6J("ngIf","1"===a.selTransType),e.xp6(1),e.Q6J("ngIf","2"===a.selTransType),e.xp6(1),e.Q6J("ngIf",""!==a.bumpFeeError),e.xp6(5),e.Oqu(""!==a.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,Z.dn,u._Y,u.JL,u.F,D.BN,x.R9,re.y,j.gM,x.KE,M.Nt,u.wV,u.qQ,u.Fj,K.q,u.Q7,u.JJ,u.On,p.O5,x.TO,R.gD,p.sg,B.ey],styles:[""]}),n})();function hl(n,i){1&n&&e._UZ(0,"mat-progress-bar",36)}function gl(n,i){1&n&&e._UZ(0,"mat-progress-bar",36)}function fl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",37),e._uU(1," Peer "),e.qZA())}const de=function(n){return{"max-width":n}};function Cl(n,i){if(1&n&&(e.TgZ(0,"mat-cell",38),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,de,a.screenSize===a.screenSizeEnum.XS?"10rem":"30rem")),e.xp6(1),e.Oqu(t.channel.remote_alias)}}function xl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1,"Commit Fee (Sats) "),e.qZA())}function yl(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.commit_fee))}}function Tl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1,"Commit Weight "),e.qZA())}function vl(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.commit_weight))}}function bl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1,"Capacity (Sats)"),e.qZA())}function Zl(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.capacity))}}function wl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",41),e._uU(1,"Actions"),e.qZA())}function Al(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-cell",42)(1,"div",43)(2,"mat-select",44),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",45),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onOpenClick(s)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",45),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onBumpFee(s)}),e._uU(7,"Bump Fee"),e.qZA()()()()}}function Sl(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function Ll(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function kl(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Fl(n,i){if(1&n&&(e.TgZ(0,"td",46),e.YNc(1,Sl,2,0,"p",47),e.YNc(2,Ll,2,0,"p",47),e.YNc(3,kl,2,1,"p",47),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const be=function(n){return{"display-none":n}};function Nl(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,be,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function ql(n,i){1&n&&e._UZ(0,"mat-header-row")}function Ul(n,i){1&n&&e._UZ(0,"mat-row",49)}function Ol(n,i){1&n&&e._UZ(0,"mat-progress-bar",36)}function Rl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",37),e._uU(1," Peer "),e.qZA())}function Ml(n,i){if(1&n&&(e.TgZ(0,"mat-cell",38),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,de,a.screenSize===a.screenSizeEnum.XS?"10rem":"30rem")),e.xp6(1),e.Oqu(t.channel.remote_alias)}}function Il(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1,"Recovered Balance (Sats) "),e.qZA())}function Dl(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.recovered_balance))}}function Pl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1,"Limbo Balance (Sats) "),e.qZA())}function Jl(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.limbo_balance))}}function El(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1,"Capacity (Sats) "),e.qZA())}function Ql(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.capacity))}}function Yl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",50),e._uU(1,"Actions"),e.qZA())}function Hl(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-cell",51)(1,"button",52),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onForceClosingClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function Bl(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function Vl(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function Gl(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function zl(n,i){if(1&n&&(e.TgZ(0,"td",46),e.YNc(1,Bl,2,0,"p",47),e.YNc(2,Vl,2,0,"p",47),e.YNc(3,Gl,2,1,"p",47),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Wl(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,be,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function Xl(n,i){1&n&&e._UZ(0,"mat-header-row")}function $l(n,i){1&n&&e._UZ(0,"mat-row",49)}function jl(n,i){1&n&&e._UZ(0,"mat-progress-bar",36)}function Kl(n,i){1&n&&(e.TgZ(0,"mat-header-cell",53),e._uU(1," Peer "),e.qZA())}function er(n,i){if(1&n&&(e.TgZ(0,"mat-cell",54),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,de,a.screenSize===a.screenSizeEnum.XS?"10rem":"30rem")),e.xp6(1),e.Oqu(t.channel.remote_alias)}}function tr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Local Balance (Sats) "),e.qZA())}function nr(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.local_balance))}}function ar(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Remote Balance (Sats) "),e.qZA())}function ir(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.remote_balance))}}function or(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Capacity (Sats) "),e.qZA())}function sr(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.capacity))}}function lr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",50),e._uU(1,"Actions"),e.qZA())}function rr(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-cell",51)(1,"button",55),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onClosingClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function cr(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function ur(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function pr(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function mr(n,i){if(1&n&&(e.TgZ(0,"td",46),e.YNc(1,cr,2,0,"p",47),e.YNc(2,ur,2,0,"p",47),e.YNc(3,pr,2,1,"p",47),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function dr(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,be,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function _r(n,i){1&n&&e._UZ(0,"mat-header-row")}function hr(n,i){1&n&&e._UZ(0,"mat-row",49)}function gr(n,i){1&n&&e._UZ(0,"mat-progress-bar",36)}function fr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",53),e._uU(1," Peer "),e.qZA())}function Cr(n,i){if(1&n&&(e.TgZ(0,"mat-cell",54),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,de,a.screenSize===a.screenSizeEnum.XS?"10rem":"30rem")),e.xp6(1),e.Oqu(t.channel.remote_alias)}}function xr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Limbo Balance (Sats) "),e.qZA())}function yr(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij("",e.lcZ(2,1,t.limbo_balance)," ")}}function Tr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Local Balance (Sats) "),e.qZA())}function vr(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.local_balance))}}function br(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Remote Balance (Sats) "),e.qZA())}function Zr(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.remote_balance))}}function wr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",39),e._uU(1," Capacity (Sats) "),e.qZA())}function Ar(n,i){if(1&n&&(e.TgZ(0,"mat-cell",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.channel.capacity))}}function Sr(n,i){1&n&&(e.TgZ(0,"mat-header-cell",50),e._uU(1,"Actions"),e.qZA())}function Lr(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-cell",51)(1,"button",56),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onWaitClosingClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function kr(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function Fr(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function Nr(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function qr(n,i){if(1&n&&(e.TgZ(0,"td",46),e.YNc(1,kr,2,0,"p",47),e.YNc(2,Fr,2,0,"p",47),e.YNc(3,Nr,2,1,"p",47),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Ur=function(n){return{"py-0":!0,"display-none":n}};function Or(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Ur,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function Rr(n,i){1&n&&e._UZ(0,"mat-header-row")}function Mr(n,i){1&n&&e._UZ(0,"mat-row",49)}const _e=function(n){return{"error-border bordered-box":n,"bordered-box":!0}},Ir=function(){return["no_pending_open"]},Dr=function(){return["no_pending_force_closing"]},Pr=function(){return["no_pending_closing"]},Jr=function(){return["no_pending_wait_closing"]};let Er=(()=>{class n{constructor(t,a,o){this.logger=t,this.store=a,this.commonService=o,this.selNode={},this.selectedFilter="",this.information={},this.pendingChannels={},this.displayedOpenColumns=["remote_alias","commit_fee","commit_weight","capacity","actions"],this.pendingOpenChannelsLength=0,this.displayedForceClosingColumns=["remote_alias","recovered_balance","limbo_balance","capacity","actions"],this.pendingForceClosingChannelsLength=0,this.displayedClosingColumns=["remote_alias","local_balance","remote_balance","capacity","actions"],this.pendingClosingChannelsLength=0,this.displayedWaitClosingColumns=["remote_alias","limbo_balance","local_balance","remote_balance","actions"],this.pendingWaitClosingChannelsLength=0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.displayedOpenColumns=["remote_alias","actions"],this.displayedForceClosingColumns=["remote_alias","actions"],this.displayedClosingColumns=["remote_alias","actions"],this.displayedWaitClosingColumns=["remote_alias","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.displayedOpenColumns=["remote_alias","commit_fee","actions"],this.displayedForceClosingColumns=["remote_alias","limbo_balance","actions"],this.displayedClosingColumns=["remote_alias","remote_balance","actions"],this.displayedWaitClosingColumns=["remote_alias","limbo_balance","actions"]):(this.displayedOpenColumns=["remote_alias","commit_fee","commit_weight","capacity","actions"],this.displayedForceClosingColumns=["remote_alias","recovered_balance","limbo_balance","capacity","actions"],this.displayedClosingColumns=["remote_alias","local_balance","remote_balance","capacity","actions"],this.displayedWaitClosingColumns=["remote_alias","limbo_balance","local_balance","remote_balance","actions"])}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=t.pendingChannels,this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels),this.logger.info(t)})}ngAfterViewInit(){this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels)}onOpenClick(t){const a=JSON.parse(JSON.stringify(t,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,a,o),this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:s.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_node_pub",value:s.remote_node_pub,title:"Peer Node Pubkey",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:s.remote_alias,title:"Peer Alias",width:100,type:l.Gi.STRING}],[{key:"capacity",value:s.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"confirmation_height",value:s.confirmation_height,title:"Confirmation Height",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:s.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:s.remote_balance,title:"Remote Balance",width:25,type:l.Gi.NUMBER}],[{key:"fee_per_kw",value:s.fee_per_kw,title:"Fee/KW",width:25,type:l.Gi.NUMBER},{key:"commit_weight",value:s.commit_weight,title:"Commit Weight",width:25,type:l.Gi.NUMBER},{key:"commit_fee",value:s.commit_fee,title:"Commit Fee",width:50,type:l.Gi.NUMBER}]]}}}))}onBumpFee(t){this.store.dispatch((0,S.qR)({payload:{data:{pendingChannel:t,component:_l}}}))}onForceClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,a,o),this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:s.closing_txid,title:"Closing Transaction ID",width:100,type:l.Gi.STRING}],[{key:"channel_point",value:s.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:s.remote_alias,title:"Peer Alias",width:25,type:l.Gi.STRING},{key:"remote_node_pub",value:s.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.Gi.STRING}],[{key:"capacity",value:s.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"limbo_balance",value:s.limbo_balance,title:"Limbo Balance",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:s.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:s.remote_balance,title:"Remote Balance",width:25,type:l.Gi.NUMBER}],[{key:"maturity_height",value:s.maturity_height,title:"Maturity Height",width:25,type:l.Gi.NUMBER},{key:"blocks_til_maturity",value:s.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:l.Gi.NUMBER},{key:"recovered_balance",value:s.recovered_balance,title:"Recovered Balance",width:50,type:l.Gi.NUMBER}]]}}}))}onClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,a,o),this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:s.closing_txid,title:"Closing Transaction ID",width:50,type:l.Gi.STRING}],[{key:"channel_point",value:s.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:s.remote_alias,title:"Peer Alias",width:25,type:l.Gi.STRING},{key:"remote_node_pub",value:s.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.Gi.STRING}],[{key:"capacity",value:s.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:s.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:s.remote_balance,title:"Remote Balance",width:50,type:l.Gi.NUMBER}]]}}}))}onWaitClosingClick(t){const a=JSON.parse(JSON.stringify(t,["limbo_balance"],2)),o=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s=JSON.parse(JSON.stringify(t.commitments,["local_txid"],2)),r={};Object.assign(r,a,o,s),this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:r.local_txid,title:"Transaction ID",width:100,type:l.Gi.STRING}],[{key:"channel_point",value:r.channel_point,title:"Channel Point",width:100,type:l.Gi.STRING}],[{key:"remote_alias",value:r.remote_alias,title:"Peer Alias",width:25,type:l.Gi.STRING},{key:"remote_node_pub",value:r.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.Gi.STRING}],[{key:"capacity",value:r.capacity,title:"Capacity",width:25,type:l.Gi.NUMBER},{key:"limbo_balance",value:r.limbo_balance,title:"Limbo Balance",width:25,type:l.Gi.NUMBER},{key:"local_balance",value:r.local_balance,title:"Local Balance",width:25,type:l.Gi.NUMBER},{key:"remote_balance",value:r.remote_balance,title:"Remote Balance",width:25,type:l.Gi.NUMBER}]]}}}))}loadOpenChannelsTable(t){t.sort((a,o)=>a.active===o.active?0:o.active?-1:1),this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new c.by([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.pendingOpenChannels.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){t.sort((a,o)=>a.active===o.active?0:o.active?-1:1),this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new c.by([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.pendingForceClosingChannels.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){t.sort((a,o)=>a.active===o.active?0:o.active?-1:1),this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new c.by([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.pendingClosingChannels.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){t.sort((a,o)=>a.active===o.active?0:o.active?-1:1),this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new c.by([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.pendingWaitClosingChannels.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(t,a){if(1&t&&e.Gf(A.YE,5),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first)}},decls:121,vars:44,consts:[["fxLayout","column",1,"mb-2"],[1,"page-title"],["displayMode","flat",1,"mt-1"],["mode","indeterminate",4,"ngIf"],["fxLayout","column",1,"flat-expansion-panel"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","remote_alias"],["mat-sort-header","",4,"matHeaderCellDef"],[3,"ngStyle",4,"matCellDef"],["matColumnDef","commit_fee"],["fxLayoutAlign","end center","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","commit_weight"],["matColumnDef","capacity"],["matColumnDef","actions"],["fxLayoutAlign","end center","class","pl-3 pr-4",4,"matHeaderCellDef"],["fxLayoutAlign","end center","class","px-3",4,"matCellDef"],["matColumnDef","no_pending_open"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass",4,"matFooterRowDef"],[4,"matHeaderRowDef"],["fxLayoutAlign","stretch stretch",4,"matRowDef","matRowDefColumns"],["mat-table","","matSort","",3,"dataSource","ngClass"],["matColumnDef","recovered_balance"],["matColumnDef","limbo_balance"],["fxLayoutAlign","end center","class","pl-4 pr-3",4,"matHeaderCellDef"],["fxLayoutAlign","end center","class","pl-4",4,"matCellDef"],["matColumnDef","no_pending_force_closing"],["class","pl-2","mat-sort-header","",4,"matHeaderCellDef"],["class","pl-2",3,"ngStyle",4,"matCellDef"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","no_pending_closing"],["matColumnDef","no_pending_wait_closing"],["mode","indeterminate"],["mat-sort-header",""],[3,"ngStyle"],["fxLayoutAlign","end center","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"pl-3","pr-4"],["fxLayoutAlign","end center",1,"px-3"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass"],["fxLayoutAlign","stretch stretch"],["fxLayoutAlign","end center",1,"pl-4","pr-3"],["fxLayoutAlign","end center",1,"pl-4"],["mat-stroked-button","","color","primary","type","button","tabindex","2",3,"click"],["mat-sort-header","",1,"pl-2"],[1,"pl-2",3,"ngStyle"],["mat-stroked-button","","color","primary","type","button","tabindex","3",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"span",1),e._uU(2),e.ALo(3,"number"),e.qZA(),e.TgZ(4,"mat-accordion",2),e.YNc(5,hl,1,0,"mat-progress-bar",3),e.TgZ(6,"mat-expansion-panel",4)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e._uU(9),e.qZA()(),e.TgZ(10,"div",5),e.YNc(11,gl,1,0,"mat-progress-bar",3),e.TgZ(12,"table",6,7),e.ynx(14,8),e.YNc(15,fl,2,0,"mat-header-cell",9),e.YNc(16,Cl,2,4,"mat-cell",10),e.BQk(),e.ynx(17,11),e.YNc(18,xl,2,0,"mat-header-cell",12),e.YNc(19,yl,3,3,"mat-cell",13),e.BQk(),e.ynx(20,14),e.YNc(21,Tl,2,0,"mat-header-cell",12),e.YNc(22,vl,3,3,"mat-cell",13),e.BQk(),e.ynx(23,15),e.YNc(24,bl,2,0,"mat-header-cell",12),e.YNc(25,Zl,3,3,"mat-cell",13),e.BQk(),e.ynx(26,16),e.YNc(27,wl,2,0,"mat-header-cell",17),e.YNc(28,Al,8,0,"mat-cell",18),e.BQk(),e.ynx(29,19),e.YNc(30,Fl,4,3,"td",20),e.BQk(),e.YNc(31,Nl,1,3,"tr",21),e.YNc(32,ql,1,0,"mat-header-row",22),e.YNc(33,Ul,1,0,"mat-row",23),e.qZA()()(),e.YNc(34,Ol,1,0,"mat-progress-bar",3),e.TgZ(35,"mat-expansion-panel",4)(36,"mat-expansion-panel-header")(37,"mat-panel-title"),e._uU(38),e.qZA()(),e.TgZ(39,"div",5)(40,"table",24,7),e.ynx(42,8),e.YNc(43,Rl,2,0,"mat-header-cell",9),e.YNc(44,Ml,2,4,"mat-cell",10),e.BQk(),e.ynx(45,25),e.YNc(46,Il,2,0,"mat-header-cell",12),e.YNc(47,Dl,3,3,"mat-cell",13),e.BQk(),e.ynx(48,26),e.YNc(49,Pl,2,0,"mat-header-cell",12),e.YNc(50,Jl,3,3,"mat-cell",13),e.BQk(),e.ynx(51,15),e.YNc(52,El,2,0,"mat-header-cell",12),e.YNc(53,Ql,3,3,"mat-cell",13),e.BQk(),e.ynx(54,16),e.YNc(55,Yl,2,0,"mat-header-cell",27),e.YNc(56,Hl,3,0,"mat-cell",28),e.BQk(),e.ynx(57,29),e.YNc(58,zl,4,3,"td",20),e.BQk(),e.YNc(59,Wl,1,3,"tr",21),e.YNc(60,Xl,1,0,"mat-header-row",22),e.YNc(61,$l,1,0,"mat-row",23),e.qZA()()(),e.YNc(62,jl,1,0,"mat-progress-bar",3),e.TgZ(63,"mat-expansion-panel",4)(64,"mat-expansion-panel-header")(65,"mat-panel-title"),e._uU(66),e.qZA()(),e.TgZ(67,"div",5)(68,"table",24,7),e.ynx(70,8),e.YNc(71,Kl,2,0,"mat-header-cell",30),e.YNc(72,er,2,4,"mat-cell",31),e.BQk(),e.ynx(73,32),e.YNc(74,tr,2,0,"mat-header-cell",12),e.YNc(75,nr,3,3,"mat-cell",13),e.BQk(),e.ynx(76,33),e.YNc(77,ar,2,0,"mat-header-cell",12),e.YNc(78,ir,3,3,"mat-cell",13),e.BQk(),e.ynx(79,15),e.YNc(80,or,2,0,"mat-header-cell",12),e.YNc(81,sr,3,3,"mat-cell",13),e.BQk(),e.ynx(82,16),e.YNc(83,lr,2,0,"mat-header-cell",27),e.YNc(84,rr,3,0,"mat-cell",28),e.BQk(),e.ynx(85,34),e.YNc(86,mr,4,3,"td",20),e.BQk(),e.YNc(87,dr,1,3,"tr",21),e.YNc(88,_r,1,0,"mat-header-row",22),e.YNc(89,hr,1,0,"mat-row",23),e.qZA()()(),e.YNc(90,gr,1,0,"mat-progress-bar",3),e.TgZ(91,"mat-expansion-panel",4)(92,"mat-expansion-panel-header")(93,"mat-panel-title"),e._uU(94),e.qZA()(),e.TgZ(95,"div",5)(96,"table",24,7),e.ynx(98,8),e.YNc(99,fr,2,0,"mat-header-cell",30),e.YNc(100,Cr,2,4,"mat-cell",31),e.BQk(),e.ynx(101,26),e.YNc(102,xr,2,0,"mat-header-cell",12),e.YNc(103,yr,3,3,"mat-cell",13),e.BQk(),e.ynx(104,32),e.YNc(105,Tr,2,0,"mat-header-cell",12),e.YNc(106,vr,3,3,"mat-cell",13),e.BQk(),e.ynx(107,33),e.YNc(108,br,2,0,"mat-header-cell",12),e.YNc(109,Zr,3,3,"mat-cell",13),e.BQk(),e.ynx(110,15),e.YNc(111,wr,2,0,"mat-header-cell",12),e.YNc(112,Ar,3,3,"mat-cell",13),e.BQk(),e.ynx(113,16),e.YNc(114,Sr,2,0,"mat-header-cell",27),e.YNc(115,Lr,3,0,"mat-cell",28),e.BQk(),e.ynx(116,35),e.YNc(117,qr,4,3,"td",20),e.BQk(),e.YNc(118,Or,1,3,"tr",21),e.YNc(119,Rr,1,0,"mat-header-row",22),e.YNc(120,Mr,1,0,"mat-row",23),e.qZA()()()()()),2&t&&(e.xp6(2),e.hij("Total Limbo Balance: ",e.lcZ(3,30,a.pendingChannels.total_limbo_balance)," Sats"),e.xp6(3),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Pending Open (",a.pendingOpenChannelsLength,")"),e.xp6(2),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.pendingOpenChannels)("ngClass",e.VKq(32,_e,""!==a.errorMessage)),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(34,Ir)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedOpenColumns),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedOpenColumns),e.xp6(1),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Pending Force Closing (",a.pendingForceClosingChannelsLength,")"),e.xp6(2),e.Q6J("dataSource",a.pendingForceClosingChannels)("ngClass",e.VKq(35,_e,""!==a.errorMessage)),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(37,Dr)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedForceClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedForceClosingColumns),e.xp6(1),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Pending Closing (",a.pendingClosingChannelsLength,")"),e.xp6(2),e.Q6J("dataSource",a.pendingClosingChannels)("ngClass",e.VKq(38,_e,""!==a.errorMessage)),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(40,Pr)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedClosingColumns),e.xp6(1),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(4),e.hij("Waiting Close (",a.pendingWaitClosingChannelsLength,")"),e.xp6(2),e.Q6J("dataSource",a.pendingWaitClosingChannels)("ngClass",e.VKq(41,_e,""!==a.errorMessage)),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(43,Jr)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedWaitClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedWaitClosingColumns))},directives:[d.xw,V.pp,p.O5,J.pW,V.ib,V.yz,V.yK,d.Wh,d.yH,H.$V,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,R.gD,R.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,N.lW],pipes:[p.JJ],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]}),n})();function Qr(n,i){1&n&&e._UZ(0,"mat-progress-bar",27)}function Yr(n,i){1&n&&(e.TgZ(0,"th",28),e._uU(1," Close Type "),e.qZA())}function Hr(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"div",30)(2,"mat-icon",31),e._uU(3,"info_outline"),e.qZA(),e._uU(4),e.qZA()()),2&n){const t=i.$implicit,a=e.oxw();e.xp6(2),e.Q6J("matTooltip",a.channelClosureType[t.close_type].tooltip),e.xp6(2),e.hij(" ",a.channelClosureType[t.close_type].name," ")}}function Br(n,i){1&n&&(e.TgZ(0,"th",28),e._uU(1," Peer "),e.qZA())}const Vr=function(n){return{"max-width":n}};function Gr(n,i){if(1&n&&(e.TgZ(0,"td",32),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,Vr,a.screenSize===a.screenSizeEnum.XS?"10rem":"20rem")),e.xp6(1),e.hij(" ",t.remote_alias," ")}}function zr(n,i){1&n&&(e.TgZ(0,"th",33),e._uU(1," Capacity "),e.qZA())}function Wr(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,t.capacity)," ")}}function Xr(n,i){1&n&&(e.TgZ(0,"th",33),e._uU(1," Close Height "),e.qZA())}function $r(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,t.close_height)," ")}}function jr(n,i){1&n&&(e.TgZ(0,"th",33),e._uU(1," Settled Balance "),e.qZA())}function Kr(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"span",34),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,t.settled_balance)," ")}}function ec(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",35)(1,"div",36)(2,"mat-select",37),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",38),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function tc(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",39)(1,"span",34)(2,"button",40),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onClosedChannelClick(r,o)}),e._uU(3,"View Info"),e.qZA()()()}}function nc(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No closed channel available."),e.qZA())}function ac(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting closed channels..."),e.qZA())}function ic(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function oc(n,i){if(1&n&&(e.TgZ(0,"td",41),e.YNc(1,nc,2,0,"p",42),e.YNc(2,ac,2,0,"p",42),e.YNc(3,ic,2,1,"p",42),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const sc=function(n){return{"display-none":n}};function lc(n,i){if(1&n&&e._UZ(0,"tr",43),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,sc,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function rc(n,i){1&n&&e._UZ(0,"tr",44)}function cc(n,i){1&n&&e._UZ(0,"tr",45)}const uc=function(n){return{"error-border":n,"overflow-auto":!0}},pc=function(){return["no_closed_channel"]};let mc=(()=>{class n{constructor(t,a,o){this.logger=t,this.store=a,this.commonService=o,this.channelClosureType=l.HW,this.faHistory=v.qO$,this.displayedColumns=[],this.closedChannelsData=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unsub=[new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["remote_alias","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["close_type","remote_alias","settled_balance","actions"]):(this.flgSticky=!0,this.displayedColumns=["close_type","remote_alias","capacity","close_height","settled_balance","actions"])}ngOnInit(){this.store.select(y.P2).pipe((0,h.R)(this.unsub[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=t.closedChannels,this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(t)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}onClosedChannelClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[t.close_type].name,title:"Close Type",width:30,type:l.Gi.STRING},{key:"settled_balance",value:t.settled_balance,title:"Settled Balance",width:30,type:l.Gi.NUMBER},{key:"time_locked_balance",value:t.time_locked_balance,title:"Time Locked Balance",width:40,type:l.Gi.NUMBER}],[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:30},{key:"capacity",value:t.capacity,title:"Capacity",width:30,type:l.Gi.NUMBER},{key:"close_height",value:t.close_height,title:"Close Height",width:40,type:l.Gi.NUMBER}],[{key:"remote_alias",value:t.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:t.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:t.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:t.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:l.Gi.STRING}]]}}}))}loadClosedChannelsTable(t){this.closedChannels=new c.by([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.closedChannels.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.closedChannels.paginator=this.paginator,this.applyFilter(),this.logger.info(this.closedChannels)}onDownloadCSV(){this.closedChannels.data&&this.closedChannels.data.length>0&&this.commonService.downloadFile(this.closedChannels.data,"Closed-channels")}ngOnDestroy(){this.unsub.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Channels")}])],decls:33,vars:14,consts:[["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","close_type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","capacity"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","close_height"],["matColumnDef","settled_balance"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","class","pl-1",4,"matCellDef"],["matColumnDef","no_closed_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row","fxLayoutAlign","start center"],[1,"info-icon","info-icon-text",3,"matTooltip"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"pl-1"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","",1,"pl-1"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"div",2),e.TgZ(3,"mat-form-field",3)(4,"input",4),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(5,"div",5),e.YNc(6,Qr,1,0,"mat-progress-bar",6),e.TgZ(7,"table",7,8),e.ynx(9,9),e.YNc(10,Yr,2,0,"th",10),e.YNc(11,Hr,5,2,"td",11),e.BQk(),e.ynx(12,12),e.YNc(13,Br,2,0,"th",10),e.YNc(14,Gr,2,4,"td",13),e.BQk(),e.ynx(15,14),e.YNc(16,zr,2,0,"th",15),e.YNc(17,Wr,4,3,"td",11),e.BQk(),e.ynx(18,16),e.YNc(19,Xr,2,0,"th",15),e.YNc(20,$r,4,3,"td",11),e.BQk(),e.ynx(21,17),e.YNc(22,jr,2,0,"th",15),e.YNc(23,Kr,4,3,"td",11),e.BQk(),e.ynx(24,18),e.YNc(25,ec,6,0,"th",19),e.YNc(26,tc,4,0,"td",20),e.BQk(),e.ynx(27,21),e.YNc(28,oc,4,3,"td",22),e.BQk(),e.YNc(29,lc,1,3,"tr",23),e.YNc(30,rc,1,0,"tr",24),e.YNc(31,cc,1,0,"tr",25),e.qZA()(),e._UZ(32,"mat-paginator",26),e.qZA()),2&t&&(e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(2),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.closedChannels)("ngClass",e.VKq(11,uc,""!==a.errorMessage)),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(13,pc)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,te.Hw,j.gM,p.PC,k.Zl,R.gD,R.$L,B.ey,N.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-close_type[_ngcontent-%COMP%]{flex:0 0 16%;min-width:5rem}.mat-column-remote_alias[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function dc(n,i){1&n&&e._UZ(0,"mat-progress-bar",27)}function _c(n,i){1&n&&(e.TgZ(0,"th",28),e._uU(1,"Amount (Sats)"),e.qZA())}function hc(n,i){if(1&n&&(e.TgZ(0,"span",33),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.amount)," ")}}function gc(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,hc,3,3,"span",32),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function fc(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"span",30),e._uU(2),e.qZA(),e.YNc(3,gc,2,1,"span",31),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" Active HTLCs: ",null==t||null==t.pending_htlcs?null:t.pending_htlcs.length," "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function Cc(n,i){1&n&&(e.TgZ(0,"th",28),e._uU(1,"Alias/Incoming"),e.qZA())}function xc(n,i){if(1&n&&(e.TgZ(0,"span",30),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function yc(n,i){if(1&n&&(e.ynx(0),e.YNc(1,xc,2,1,"span",34),e.BQk()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function Tc(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"span",30),e._uU(2),e.qZA(),e.YNc(3,yc,2,1,"ng-container",31),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(null==t?null:t.remote_alias),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function vc(n,i){1&n&&(e.TgZ(0,"th",35)(1,"span",36),e._uU(2,"Expiration Height"),e.qZA()())}function bc(n,i){if(1&n&&(e.TgZ(0,"span",36),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function Zc(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,bc,3,4,"span",37),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function wc(n,i){if(1&n&&(e.TgZ(0,"td",29)(1,"span",36),e._uU(2),e.qZA(),e.YNc(3,Zc,2,1,"span",31),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function Ac(n,i){1&n&&(e.TgZ(0,"th",38)(1,"span",36),e._uU(2,"Hash Lock"),e.qZA()())}function Sc(n,i){if(1&n&&(e.TgZ(0,"span",36),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.hash_lock," ")}}function Lc(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Sc,2,1,"span",37),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function kc(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",36),e._uU(2),e.qZA(),e.YNc(3,Lc,2,1,"span",31),e.qZA()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function Fc(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",40)(1,"div",41)(2,"mat-select",42),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",43),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Nc(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",45)(1,"button",48),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2).$implicit;return e.oxw().onHTLCClick(s,r)}),e._uU(2),e.qZA()()}if(2&n){const t=i.index;e.xp6(2),e.hij("View ",t+1,"")}}function qc(n,i){if(1&n&&(e.TgZ(0,"div"),e.YNc(1,Nc,3,1,"div",47),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.pending_htlcs)}}function Uc(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",44)(1,"span",45)(2,"button",46),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return s.is_expanded=!s.is_expanded}),e._uU(3),e.qZA()(),e.YNc(4,qc,2,1,"div",31),e.qZA()}if(2&n){const t=i.$implicit;e.xp6(3),e.Oqu(t.is_expanded?"Hide":"Show"),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function Oc(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No active htlc available."),e.qZA())}function Rc(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting active htlcs..."),e.qZA())}function Mc(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Ic(n,i){if(1&n&&(e.TgZ(0,"td",49),e.YNc(1,Oc,2,0,"p",31),e.YNc(2,Rc,2,0,"p",31),e.YNc(3,Mc,2,1,"p",31),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Dc=function(n){return{"display-none":n}};function Pc(n,i){if(1&n&&e._UZ(0,"tr",50),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Dc,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Jc(n,i){1&n&&e._UZ(0,"tr",51)}function Ec(n,i){1&n&&e._UZ(0,"tr",52)}const Qc=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},Yc=function(){return["no_channel"]};let Hc=(()=>{class n{constructor(t,a,o){this.logger=t,this.commonService=a,this.store=o,this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["amount","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["amount","incoming","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["amount","incoming","expiration_height","actions"]):(this.flgSticky=!0,this.displayedColumns=["amount","incoming","expiration_height","hash_lock","actions"])}ngOnInit(){this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var a;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=(null===(a=t.channels)||void 0===a?void 0:a.filter(o=>o.pending_htlcs&&o.pending_htlcs.length>0))||[],this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:a.remote_alias,title:"Alias",width:100,type:l.Gi.STRING}],[{key:"amount",value:t.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER},{key:"incoming",value:t.incoming?"Yes":"No",title:"Incoming",width:50,type:l.Gi.STRING}],[{key:"expiration_height",value:t.expiration_height,title:"Expiration Height",width:50,type:l.Gi.NUMBER},{key:"hash_lock",value:t.hash_lock,title:"Hash Lock",width:50,type:l.Gi.STRING}]]}}}))}onChannelClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{channel:t,showCopy:!0,component:ye}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadHTLCsTable(t){this.channels=new c.by(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,o)=>{var s,r,_,g;switch(o){case"amount":return this.commonService.sortByKey(a.pending_htlcs,o,"number",null===(s=this.sort)||void 0===s?void 0:s.direction),a.pending_htlcs&&a.pending_htlcs.length?a.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(a.pending_htlcs,o,"boolean",null===(r=this.sort)||void 0===r?void 0:r.direction),a.remote_alias?a.remote_alias:a.remote_pubkey?a.remote_pubkey:null;case"expiration_height":return this.commonService.sortByKey(a.pending_htlcs,o,"number",null===(_=this.sort)||void 0===_?void 0:_.direction),a;case"hash_lock":return this.commonService.sortByKey(a.pending_htlcs,o,"number",null===(g=this.sort)||void 0===g?void 0:g.direction),a;default:return a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null}},this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,o)=>{var s;return((a.remote_alias?a.remote_alias.toLowerCase():"")+(null===(s=a.pending_htlcs)||void 0===s?void 0:s.map(_=>JSON.stringify(_)+(_.incoming?"yes":"no")))).includes(o)},this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){const t=JSON.parse(JSON.stringify(this.channels.data));return null==t?void 0:t.reduce((o,s)=>o.concat(s.pending_htlcs?s.pending_htlcs:s),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("HTLCs")}])],decls:30,vars:14,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","incoming"],["matColumnDef","expiration_height"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","hash_lock"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","start center","class","htlc-row-span pl-3",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"htlc-row-span","pl-3"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-2"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","",1,"px-2"],["fxLayoutAlign","end center"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["fxLayoutAlign","end center",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"div",2),e.TgZ(3,"mat-form-field",3)(4,"input",4),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(5,"div",5),e.YNc(6,dc,1,0,"mat-progress-bar",6),e.TgZ(7,"table",7,8),e.ynx(9,9),e.YNc(10,_c,2,0,"th",10),e.YNc(11,fc,4,2,"td",11),e.BQk(),e.ynx(12,12),e.YNc(13,Cc,2,0,"th",10),e.YNc(14,Tc,4,2,"td",11),e.BQk(),e.ynx(15,13),e.YNc(16,vc,3,0,"th",14),e.YNc(17,wc,4,2,"td",11),e.BQk(),e.ynx(18,15),e.YNc(19,Ac,3,0,"th",16),e.YNc(20,kc,4,2,"td",17),e.BQk(),e.ynx(21,18),e.YNc(22,Fc,6,0,"th",19),e.YNc(23,Uc,5,2,"td",20),e.BQk(),e.ynx(24,21),e.YNc(25,Ic,4,3,"td",22),e.BQk(),e.YNc(26,Pc,1,3,"tr",23),e.YNc(27,Jc,1,0,"tr",24),e.YNc(28,Ec,1,0,"tr",25),e.qZA()(),e._UZ(29,"mat-paginator",26),e.qZA()),2&t&&(e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(2),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.channels)("ngClass",e.VKq(11,Qc,""!==a.errorMessage)),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(13,Yc)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.sg,R.gD,R.$L,B.ey,N.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-amount[_ngcontent-%COMP%], .mat-column-expiration_height[_ngcontent-%COMP%]{flex:0 0 30%;width:30%}.mat-column-incoming[_ngcontent-%COMP%], .mat-column-hash_lock[_ngcontent-%COMP%]{flex:0 0 25%;width:25%;text-overflow:ellipsis}.htlc-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{width:9rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{margin-top:.5rem;width:9rem}"]}),n})();function Bc(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Wallet password is required."),e.qZA())}let Vc=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,w.xG)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-unlock-wallet"]],decls:12,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","placeholder","Password","name","walletPassword","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","3",3,"click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"input",3),e.NdJ("ngModelChange",function(s){return a.walletPassword=s}),e.qZA(),e.TgZ(4,"mat-hint"),e._uU(5,"Enter Wallet Password"),e.qZA(),e.YNc(6,Bc,2,0,"mat-error",4),e.qZA(),e.TgZ(7,"div",5)(8,"button",6),e.NdJ("click",function(){return a.resetData()}),e._uU(9,"Clear Field"),e.qZA(),e.TgZ(10,"button",7),e.NdJ("click",function(){return a.onUnlockWallet()}),e._uU(11,"Unlock Wallet"),e.qZA()()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",a.walletPassword),e.xp6(3),e.Q6J("ngIf",!a.walletPassword))},directives:[d.xw,u._Y,u.JL,u.F,d.Wh,x.KE,d.yH,M.Nt,u.Fj,$.h,u.Q7,u.JJ,u.On,x.bx,p.O5,x.TO,N.lW],styles:[""]}),n})();var Gc=f(1555);function zc(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",5),e._uU(3,"Warning: Your connection is unsecure, it's not safe to generate private keys over this connection.Are you sure you want to proceed?"),e.qZA(),e.TgZ(4,"div",6)(5,"button",7),e.NdJ("click",function(){e.CHM(t);const o=e.oxw();return o.proceed=!1,o.warnRes=!0}),e._uU(6,"Do Not Proceed"),e.qZA(),e.TgZ(7,"button",8),e.NdJ("click",function(){e.CHM(t);const o=e.oxw();return o.proceed=!0,o.warnRes=!0}),e._uU(8,"Proceed"),e.qZA()()()()}}function Wc(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",9)(1,"div",10),e._uU(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.qZA(),e.TgZ(3,"div",6)(4,"button",11),e.NdJ("click",function(){return e.CHM(t),e.oxw().warnRes=!1}),e._uU(5,"Go Back"),e.qZA()()()}}function Xc(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function $c(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password must be at least 8 characters in length."),e.qZA())}function jc(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Confirm password is required."),e.qZA())}function Kc(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Confirm password must be at least 8 characters in length."),e.qZA())}function e1(n,i){1&n&&(e.TgZ(0,"div",41)(1,"mat-icon",42),e._uU(2,"cancel"),e.qZA(),e._uU(3,"Passwords do not match. "),e.qZA())}function t1(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Cipher seed is required."),e.qZA())}function n1(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.qZA())}function a1(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Passphrase is required."),e.qZA())}function i1(n,i){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"vpn_key"),e.qZA())}function o1(n,i){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"swap_calls"),e.qZA())}function s1(n,i){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"fingerprint"),e.qZA())}function l1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-vertical-stepper",12,13)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16),e._UZ(5,"input",17),e.TgZ(6,"mat-hint"),e._uU(7,"Enter Wallet Password"),e.qZA(),e.YNc(8,Xc,2,0,"mat-error",1),e.YNc(9,$c,2,0,"mat-error",1),e.qZA(),e.TgZ(10,"mat-form-field",16),e._UZ(11,"input",18),e.TgZ(12,"mat-hint"),e._uU(13,"Confirm Wallet Password"),e.qZA(),e.YNc(14,jc,2,0,"mat-error",1),e.YNc(15,Kc,2,0,"mat-error",1),e.qZA(),e.YNc(16,e1,4,0,"div",19),e.TgZ(17,"div",20)(18,"button",21),e._uU(19,"Next"),e.qZA()()()(),e.TgZ(20,"mat-step",22)(21,"form",23)(22,"div",24)(23,"mat-slide-toggle",25),e._uU(24,"Existing Cipher"),e.qZA(),e.TgZ(25,"mat-form-field",26),e._UZ(26,"input",27),e.TgZ(27,"mat-hint"),e._uU(28,"Cipher Seed"),e.qZA(),e.YNc(29,t1,2,0,"mat-error",1),e.YNc(30,n1,2,0,"mat-error",1),e.qZA()(),e.TgZ(31,"div",28)(32,"button",29),e._uU(33,"Back"),e.qZA(),e.TgZ(34,"button",30),e._uU(35,"Next"),e.qZA()()()(),e.TgZ(36,"mat-step",31)(37,"form",23)(38,"div",24)(39,"mat-slide-toggle",32),e._uU(40,"Existing Passphrase"),e.qZA(),e.TgZ(41,"mat-form-field",33),e._UZ(42,"input",34),e.TgZ(43,"mat-hint"),e._uU(44,"Enter Passphrase"),e.qZA(),e.YNc(45,a1,2,0,"mat-error",1),e.qZA()(),e.TgZ(46,"div",28)(47,"button",35),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(48,"Clear"),e.qZA(),e.TgZ(49,"button",36),e._uU(50,"Back"),e.qZA(),e.TgZ(51,"button",37),e.NdJ("click",function(){return e.CHM(t),e.oxw().onInitWallet()}),e._uU(52,"Initialize Wallet"),e.qZA()()()(),e.YNc(53,i1,2,0,"ng-template",38),e.YNc(54,o1,2,0,"ng-template",39),e.YNc(55,s1,2,0,"ng-template",40),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",t.passwordFormGroup),e.xp6(1),e.Q6J("formGroup",t.passwordFormGroup),e.xp6(5),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.required),e.xp6(1),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.xp6(5),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.xp6(1),e.Q6J("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.xp6(1),e.Q6J("ngIf",(null==t.passwordFormGroup.errors?null:t.passwordFormGroup.errors.unmatchedPasswords)&&(t.passwordFormGroup.controls.initWalletPassword.touched||t.passwordFormGroup.controls.initWalletPassword.dirty)&&(t.passwordFormGroup.controls.initWalletConfirmPassword.touched||t.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.xp6(4),e.Q6J("stepControl",t.cipherFormGroup),e.xp6(1),e.Q6J("formGroup",t.cipherFormGroup),e.xp6(2),e.Q6J("labelPosition","before"),e.xp6(6),e.Q6J("ngIf",null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.required),e.xp6(1),e.Q6J("ngIf",!(null!=t.cipherFormGroup.controls.cipherSeed.errors&&t.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.xp6(6),e.Q6J("stepControl",t.passphraseFormGroup),e.xp6(1),e.Q6J("formGroup",t.passphraseFormGroup),e.xp6(2),e.Q6J("labelPosition","before"),e.xp6(6),e.Q6J("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function r1(n,i){if(1&n&&(e.TgZ(0,"span",48),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t)}}function c1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",43),e._uU(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.qZA(),e.TgZ(4,"div",44),e.YNc(5,r1,2,1,"span",45),e.qZA(),e.TgZ(6,"div",46),e._uU(7,"Wallet initialization is done."),e.qZA(),e.TgZ(8,"div",46),e._uU(9,"The node will be usable only after LND has synced completely with the network."),e.qZA(),e.TgZ(10,"div",46),e._uU(11,"Click continue only after writing down the seed."),e.qZA(),e.TgZ(12,"div",6)(13,"button",47),e.NdJ("click",function(){return e.CHM(t),e.oxw().onGoToHome()}),e._uU(14,"Go To Home"),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(5),e.Q6J("ngForOf",t.genSeedResponse)}}function u1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",46),e._uU(3,"Something went wrong! Unable to initialize wallet!"),e.qZA(),e.TgZ(4,"div",6)(5,"button",49),e.NdJ("click",function(){return e.CHM(t),e.oxw().resetData()}),e._uU(6,"Restart"),e.qZA()()()()}}function p1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div")(1,"form",4)(2,"div",46),e._uU(3,"Wallet recovery is done."),e.qZA(),e.TgZ(4,"div",46),e._uU(5,"The node will be usable only after LND has synced completely with the network."),e.qZA(),e.TgZ(6,"div",6)(7,"button",50),e.NdJ("click",function(){return e.CHM(t),e.oxw().onGoToHome()}),e._uU(8,"Go To Home"),e.qZA()()()()}}function m1(n){const i=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return i&&t&&i.value!==t.value?{unmatchedPasswords:!0}:null}function d1(n){const i=n.value.toString().trim().split(",")||[];return i&&24!==i.length?{invalidCipher:!0}:null}let _1=(()=>{class n{constructor(t,a,o){this.store=t,this.formBuilder=a,this.lndEffects=o,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[u.kI.required,u.kI.minLength(8)]],initWalletConfirmPassword:["",[u.kI.required,u.kI.minLength(8)]]},{validators:m1}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[d1]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,h.R)(this.unsubs[0])).subscribe(t=>{t?(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.enable()):(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.disable())}),this.passphraseFormGroup.controls.enterPassphrase.valueChanges.pipe((0,h.R)(this.unsubs[1])).subscribe(t=>{t?(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.enable()):(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.disable())}),this.insecureLND=!window.location.protocol.includes("https:"),this.lndEffects.initWalletRes.pipe((0,h.R)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,h.R)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,w.y2)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse}}))})}onInitWallet(){if(this.passwordFormGroup.invalid||this.cipherFormGroup.invalid||this.passphraseFormGroup.invalid)return!0;if(this.cipherFormGroup.controls.existingCipher.value){const t=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,w.y2)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t}}))}else this.store.dispatch((0,w.fu)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,S.tw)()),this.store.dispatch((0,w.sQ)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh),e.Y36(u.qu),e.Y36(ne.l))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(t,a){if(1&t&&e.Gf(G.Vq,5),2&t){let o;e.iGM(o=e.CRH())&&(a.stepper=o.first)}},features:[e._Bn([{provide:Gc.gx,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["fxLayout","column",1,"padding-gap","mb-4"],[4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch",4,"ngIf"],[3,"linear",4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-2"],["fxFlex","100","fxLayoutAlign","start"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","2",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch"],["fxFlex","100",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",3,"click"],[3,"linear"],["stepper",""],["label","Wallet Password","state","password",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-1",3,"formGroup"],["fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","placeholder","Password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","password","placeholder","Confirm Password","name","initWalletConfirmPassword","formControlName","initWalletConfirmPassword","tabindex","6","required",""],["class","validation-error-message",4,"ngIf"],["fxLayout","row",1,"my-2"],["mat-flat-button","","color","primary","tabindex","7","type","submit","matStepperNext",""],["label","Cipher","state","cipher",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start",1,"mt-1",3,"formGroup"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet",3,"labelPosition"],["fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","placeholder","Comma separated array of 24 words cipher seed","name","cipherSeed","formControlName","cipherSeed","tabindex","9","required",""],["fxLayout","row",1,"mb-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","10","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","11","type","submit","matStepperNext","",1,"mt-1"],["label","Passphrase","state","passphrase",3,"stepControl"],["fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet",3,"labelPosition"],["fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","placeholder","Passphrase","name","passphrase","formControlName","passphrase","tabindex","12","required",""],["mat-stroked-button","","color","warn","tabindex","13","type","reset",1,"mr-1","mt-1",3,"click"],["mat-stroked-button","","tabindex","14","color","primary","type","button","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","15","type","submit",1,"mt-1",3,"click"],["matStepperIcon","password"],["matStepperIcon","cipher"],["matStepperIcon","passphrase"],[1,"validation-error-message"],[1,"validation-error-icon","red"],["fxFlex","100","fxLayoutAlign","start",1,"blinker"],["fxFlex","40","fxLayout","row wrap",1,"mt-2"],["fxFlex","25","fxLayoutAlign","start","class","genseed-message",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start",1,"mt-2"],["mat-flat-button","","color","primary","type","submit","tabindex","16",3,"click"],["fxFlex","25","fxLayoutAlign","start",1,"genseed-message"],["mat-stroked-button","","color","primary","tabindex","17","type","reset",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","18",3,"click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,zc,9,0,"div",1),e.YNc(2,Wc,6,0,"div",2),e.YNc(3,l1,56,17,"mat-vertical-stepper",3),e.YNc(4,c1,15,1,"div",1),e.YNc(5,u1,7,0,"div",1),e.YNc(6,p1,9,0,"div",1),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",a.insecureLND&&!a.warnRes),e.xp6(1),e.Q6J("ngIf",a.warnRes&&!a.proceed),e.xp6(1),e.Q6J("ngIf",(!a.insecureLND||a.warnRes&&a.proceed)&&a.genSeedResponse.length<=0&&""===a.initWalletResponse),e.xp6(1),e.Q6J("ngIf",a.genSeedResponse.length>0&&""!==a.initWalletResponse),e.xp6(1),e.Q6J("ngIf",a.genSeedResponse.length>0&&""===a.initWalletResponse),e.xp6(1),e.Q6J("ngIf",a.genSeedResponse.length<=0&&""!==a.initWalletResponse))},directives:[d.xw,p.O5,u._Y,u.JL,u.F,d.Wh,d.yH,N.lW,G.Vq,G.C0,u.sg,x.KE,M.Nt,u.Fj,u.JJ,u.u,u.Q7,x.bx,x.TO,te.Hw,G.Ic,pe.Rr,G.fd,G.z9,p.sg],styles:[""]}),n})(),h1=(()=>{class n{constructor(){this.faWallet=v.X5K}}return n.\u0275fac=function(t){return new(t||n)},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-wallet"]],decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["label","Unlock"],["label","Initialize"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Wallet"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group")(8,"mat-tab",5),e._UZ(9,"rtl-unlock-wallet"),e.qZA(),e.TgZ(10,"mat-tab",6),e._UZ(11,"rtl-initialize-wallet"),e.qZA()()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faWallet))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,P.SP,P.uX,Vc,_1],styles:[""]}),n})();var g1=f(1365);function f1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",11),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",a.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let C1=(()=>{class n{constructor(t,a,o){this.logger=t,this.store=a,this.router=o,this.faExchangeAlt=v.Ssp,this.faChartPie=v.OS1,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"},{link:"lookuptransactions",name:"Lookup"}],this.activeLink=this.links[0].link,this.unSubs=[new m.x,new m.x,new m.x,new m.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1]),(0,g1.M)(this.store.select(y.$k))).subscribe(([a,o])=>{this.currencyUnits=(null==o?void 0:o.currencyUnits)||[],this.balances=(null==o?void 0:o.userPersona)===l.ol.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-transactions"]],decls:19,vars:4,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Lightning Balance"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e._UZ(7,"rtl-currency-unit-converter",5),e.qZA()()(),e.TgZ(8,"div",6),e._UZ(9,"fa-icon",1),e.TgZ(10,"span",2),e._uU(11,"Lightning Transactions"),e.qZA()(),e.TgZ(12,"div",7)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",8),e.YNc(16,f1,2,3,"div",9),e.qZA(),e.TgZ(17,"div",10),e._UZ(18,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faChartPie),e.xp6(6),e.Q6J("values",a.balances),e.xp6(2),e.Q6J("icon",a.faExchangeAlt),e.xp6(7),e.Q6J("ngForOf",a.links))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,fe.D,P.BU,p.sg,P.Nj,b.rH,d.yH,b.lC],styles:[""]}),n})();function x1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",a.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let y1=(()=>{class n{constructor(t){this.router=t,this.faSearch=v.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new m.x,new m.x,new m.x,new m.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-graph"]],decls:11,vars:2,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Graph Lookups"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,x1,2,3,"div",6),e.qZA(),e.TgZ(9,"div",7),e._UZ(10,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faSearch),e.xp6(7),e.Q6J("ngForOf",a.links))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,P.BU,p.sg,P.Nj,b.rH,d.yH,b.lC],styles:[""]}),n})();function T1(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Destination pubkey is required."),e.qZA())}function v1(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function b1(n,i){1&n&&e._UZ(0,"mat-progress-bar",37)}function Z1(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1," Hop "),e.qZA())}function w1(n,i){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.hop_sequence," ")}}function A1(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1," Peer "),e.qZA())}const S1=function(n){return{"max-width":n}};function L1(n,i){if(1&n&&(e.TgZ(0,"td",40),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,S1,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.hij(" ",null==t?null:t.pubkey_alias," ")}}function k1(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1," Channel "),e.qZA())}function F1(n,i){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.chan_id," ")}}function N1(n,i){1&n&&(e.TgZ(0,"th",41),e._uU(1," Capacity (Sats) "),e.qZA())}function q1(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.chan_capacity),"")}}function U1(n,i){1&n&&(e.TgZ(0,"th",41),e._uU(1," Amount To Fwd (Sats) "),e.qZA())}function O1(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.amt_to_forward)," ")}}function R1(n,i){1&n&&(e.TgZ(0,"th",41),e._uU(1," Fee (mSats) "),e.qZA())}function M1(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.fee_msat)," ")}}function I1(n,i){1&n&&(e.TgZ(0,"th",43)(1,"span",42),e._uU(2,"Actions"),e.qZA()())}function D1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",44)(1,"button",45),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onHopClick(r,o)}),e._uU(2,"View Info"),e.qZA()()}}function P1(n,i){1&n&&e._UZ(0,"tr",46)}function J1(n,i){1&n&&e._UZ(0,"tr",47)}const E1=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}};let Q1=(()=>{class n{constructor(t,a,o){this.store=t,this.lndEffects=a,this.commonService=o,this.destinationPubkey="",this.amount=null,this.flgSticky=!1,this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=v.FpQ,this.faExclamationTriangle=v.eHv,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["pubkey_alias","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["hop_sequence","pubkey_alias","fee_msat","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat","actions"]):(this.flgSticky=!0,this.displayedColumns=["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat","actions"])}ngOnInit(){this.lndEffects.setQueryRoutes.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.qrHops=new c.by([]),t.routes&&t.routes.length&&t.routes.length>0&&t.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new c.by([...t.routes[0].hops]),this.qrHops.data=t.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new c.by([]),this.flgLoading[0]=!0,this.store.dispatch((0,w.WO)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:t.hop_sequence,title:"Sequence",width:33,type:l.Gi.NUMBER},{key:"amt_to_forward",value:t.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:l.Gi.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:34,type:l.Gi.NUMBER}],[{key:"chan_capacity",value:t.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:l.Gi.NUMBER},{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:l.Gi.NUMBER}],[{key:"pubkey_alias",value:t.pubkey_alias,title:"Peer Alias",width:50,type:l.Gi.STRING},{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.Gi.STRING}],[{key:"pub_key",value:t.pub_key,title:"Peer Pubkey",width:100,type:l.Gi.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh),e.Y36(ne.l),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(t,a){if(1&t&&e.Gf(A.YE,5),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first)}},decls:51,vars:16,consts:[["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["queryRoutesForm","ngForm"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","69","fxLayoutAlign","start end"],["matInput","","placeholder","Destination Pubkey","name","destinationPubkey","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxFlex","29","fxLayoutAlign","start end"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","type","number","required","",3,"ngModel","step","min","ngModelChange"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","hop_sequence"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pubkey_alias"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","chan_id"],["matColumnDef","chan_capacity"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_to_forward_msat"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","","class","pl-4 pr-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-4",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"pl-4","pr-3"],["mat-cell","",1,"pl-4"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(t,a){if(1&t){const o=e.EpF();e.TgZ(0,"div",0)(1,"form",1,2),e.NdJ("ngSubmit",function(){return e.CHM(o),e.MAs(2).form.valid&&a.onQueryRoutes()}),e.TgZ(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span"),e._uU(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.qZA()(),e.TgZ(7,"mat-form-field",5)(8,"input",6,7),e.NdJ("ngModelChange",function(r){return a.destinationPubkey=r}),e.qZA(),e.YNc(10,T1,2,0,"mat-error",8),e.qZA(),e.TgZ(11,"mat-form-field",9)(12,"input",10),e.NdJ("ngModelChange",function(r){return a.amount=r}),e.qZA(),e.YNc(13,v1,2,0,"mat-error",8),e.qZA(),e.TgZ(14,"div",11)(15,"button",12),e.NdJ("click",function(){return a.resetData()}),e._uU(16,"Clear"),e.qZA(),e.TgZ(17,"button",13),e._uU(18,"Query Route"),e.qZA()()(),e.TgZ(19,"div",14)(20,"div",15),e._UZ(21,"fa-icon",16),e.TgZ(22,"span",17),e._uU(23,"Transaction Route"),e.qZA()()(),e.TgZ(24,"div",18),e.YNc(25,b1,1,0,"mat-progress-bar",19),e.TgZ(26,"table",20,21),e.ynx(28,22),e.YNc(29,Z1,2,0,"th",23),e.YNc(30,w1,2,1,"td",24),e.BQk(),e.ynx(31,25),e.YNc(32,A1,2,0,"th",23),e.YNc(33,L1,2,4,"td",26),e.BQk(),e.ynx(34,27),e.YNc(35,k1,2,0,"th",23),e.YNc(36,F1,2,1,"td",24),e.BQk(),e.ynx(37,28),e.YNc(38,N1,2,0,"th",29),e.YNc(39,q1,4,3,"td",24),e.BQk(),e.ynx(40,30),e.YNc(41,U1,2,0,"th",29),e.YNc(42,O1,4,3,"td",24),e.BQk(),e.ynx(43,31),e.YNc(44,R1,2,0,"th",29),e.YNc(45,M1,4,3,"td",24),e.BQk(),e.ynx(46,32),e.YNc(47,I1,3,0,"th",33),e.YNc(48,D1,3,0,"td",34),e.BQk(),e.YNc(49,P1,1,0,"tr",35),e.YNc(50,J1,1,0,"tr",36),e.qZA()()()}2&t&&(e.xp6(4),e.Q6J("icon",a.faExclamationTriangle),e.xp6(4),e.Q6J("ngModel",a.destinationPubkey),e.xp6(2),e.Q6J("ngIf",!a.destinationPubkey),e.xp6(2),e.Q6J("ngModel",a.amount)("step",1e3)("min",0),e.xp6(1),e.Q6J("ngIf",!a.amount),e.xp6(8),e.Q6J("icon",a.faRoute),e.xp6(4),e.Q6J("ngIf",!0===a.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",a.qrHops)("ngClass",e.VKq(14,E1,"error"===a.flgLoading[0])),e.xp6(23),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns))},directives:[d.xw,d.yH,u._Y,u.JL,u.F,d.Wh,D.BN,x.KE,M.Nt,u.Fj,u.Q7,u.JJ,u.On,p.O5,x.TO,u.wV,u.qQ,K.q,N.lW,H.$V,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,c.as,c.XQ,c.nj,c.Gk],pipes:[p.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{flex:0 0 5%;width:5%}.mat-column-pubkey_alias[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();var se=f(9814);function Y1(n,i){if(1&n&&(e.TgZ(0,"span",9),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(1),e.AsE("",a.nodeFeaturesEnum[t.value.name]||t.value.name,": ",t.value.is_required?"Mandatory":"Optional","")}}function H1(n,i){1&n&&(e.TgZ(0,"th",27),e._uU(1,"Network"),e.qZA())}function B1(n,i){if(1&n&&(e.TgZ(0,"td",28),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.network," ")}}function V1(n,i){1&n&&(e.TgZ(0,"th",27),e._uU(1,"Address"),e.qZA())}function G1(n,i){if(1&n&&(e.TgZ(0,"td",28),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.addr," ")}}function z1(n,i){1&n&&(e.TgZ(0,"th",29)(1,"span",30),e._uU(2,"Actions"),e.qZA()())}function W1(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",31)(1,"span",30)(2,"button",32),e.NdJ("copied",function(o){return e.CHM(t),e.oxw(2).onCopyNodeURI(o)}),e._uU(3,"Copy Node URI"),e.qZA()()()}if(2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(2),e.Q6J("payload",a.lookupResult.node.pub_key+"@"+t.addr)}}function X1(n,i){1&n&&e._UZ(0,"tr",33)}function $1(n,i){1&n&&e._UZ(0,"tr",34)}const j1=function(n){return{"background-color":n}};function K1(n,i){if(1&n&&(e.TgZ(0,"div",1),e._UZ(1,"mat-divider",2),e.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),e._uU(5,"Alias"),e.qZA(),e.TgZ(6,"span",6),e._uU(7),e.TgZ(8,"span",7),e._uU(9),e.qZA()()(),e.TgZ(10,"div",8)(11,"h4",5),e._uU(12,"Pub Key"),e.qZA(),e.TgZ(13,"span",9),e._uU(14),e.qZA()()(),e._UZ(15,"mat-divider",10),e.TgZ(16,"div",3)(17,"div",4)(18,"h4",5),e._uU(19,"Last Update"),e.qZA(),e.TgZ(20,"span",6),e._uU(21),e.ALo(22,"date"),e.qZA()(),e.TgZ(23,"div",8)(24,"h4",5),e._uU(25,"Total Capacity (Sats)"),e.qZA(),e.TgZ(26,"span",6),e._uU(27),e.ALo(28,"number"),e.qZA()()(),e._UZ(29,"mat-divider",10),e.TgZ(30,"div",3)(31,"div",4)(32,"h4",5),e._uU(33,"Number of Channels"),e.qZA(),e.TgZ(34,"span",6),e._uU(35),e.ALo(36,"number"),e.qZA()(),e.TgZ(37,"div",11)(38,"h4",5),e._uU(39,"Features"),e.qZA(),e.YNc(40,Y1,2,2,"span",12),e.ALo(41,"keyvalue"),e.qZA()(),e._UZ(42,"mat-divider",10),e.TgZ(43,"div",13)(44,"h4",14),e._uU(45,"Addresses"),e.qZA(),e.TgZ(46,"div",15)(47,"table",16,17),e.ynx(49,18),e.YNc(50,H1,2,0,"th",19),e.YNc(51,B1,2,1,"td",20),e.BQk(),e.ynx(52,21),e.YNc(53,V1,2,0,"th",19),e.YNc(54,G1,2,1,"td",20),e.BQk(),e.ynx(55,22),e.YNc(56,z1,3,0,"th",23),e.YNc(57,W1,4,1,"td",24),e.BQk(),e.YNc(58,X1,1,0,"tr",25),e.YNc(59,$1,1,0,"tr",26),e.qZA()()()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(t.lookupResult.node.alias),e.xp6(1),e.Q6J("ngStyle",e.VKq(24,j1,null==t.lookupResult.node?null:t.lookupResult.node.color)),e.xp6(1),e.Oqu(null==t.lookupResult.node?null:t.lookupResult.node.color),e.xp6(5),e.Oqu(t.lookupResult.node.pub_key),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.xi3(22,15,1e3*t.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.xp6(6),e.Oqu(e.lcZ(28,18,t.lookupResult.total_capacity)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.lcZ(36,20,t.lookupResult.num_channels)),e.xp6(5),e.Q6J("ngForOf",e.lcZ(41,22,t.lookupResult.node.features)),e.xp6(2),e.Q6J("inset",!0),e.xp6(5),e.Q6J("dataSource",t.lookupResult.node.addresses),e.xp6(11),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}let eu=(()=>{class n{constructor(t,a){this.logger=t,this.snackBar=a,this.nodeFeaturesEnum=l.hZ,this.displayedColumns=["network","addr","actions"]}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(ae.ux))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1",3,"inset"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start",1,"my-1"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["table",""],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","class","pl-1",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","",1,"pl-1"],["fxLayoutAlign","end center"],["mat-cell","",1,"pl-1"],["mat-stroked-button","","color","primary","type","button","tabindex","1","rtlClipboard","",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&e.YNc(0,K1,60,26,"div",0),2&t&&e.Q6J("ngIf",a.lookupResult)},directives:[p.O5,d.xw,X.d,d.yH,d.Wh,p.PC,k.Zl,p.sg,H.$V,c.BZ,A.YE,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,N.lW,re.y,c.as,c.XQ,c.nj,c.Gk],pipes:[p.uU,p.JJ,p.Nd],styles:[""]}),n})();function tu(n,i){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 1"),e.qZA())}function nu(n,i){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 1 (Your Node)"),e.qZA())}function au(n,i){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 2"),e.qZA())}function iu(n,i){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 2 (Your Node)"),e.qZA())}function ou(n,i){if(1&n&&(e.TgZ(0,"div",1),e._UZ(1,"mat-divider",2),e.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),e._uU(5,"Channel Id"),e.qZA(),e.TgZ(6,"span",6),e._uU(7),e.qZA()(),e.TgZ(8,"div",7)(9,"h4",5),e._uU(10,"Channel Point"),e.qZA(),e.TgZ(11,"span",6),e._uU(12),e.qZA()()(),e._UZ(13,"mat-divider",8),e.TgZ(14,"div",3)(15,"div",4)(16,"h4",5),e._uU(17,"Last Update"),e.qZA(),e.TgZ(18,"span",6),e._uU(19),e.ALo(20,"date"),e.qZA()(),e.TgZ(21,"div",7)(22,"h4",5),e._uU(23,"Capacity (Sats)"),e.qZA(),e.TgZ(24,"span",6),e._uU(25),e.ALo(26,"number"),e.qZA()()(),e._UZ(27,"mat-divider",8),e.TgZ(28,"div",9)(29,"div",10)(30,"div",11),e.YNc(31,tu,2,0,"h3",12),e.YNc(32,nu,2,0,"h3",12),e.qZA(),e._UZ(33,"mat-divider",8),e.TgZ(34,"div",13)(35,"h4",5),e._uU(36,"Pubkey"),e.qZA(),e.TgZ(37,"span",6),e._uU(38),e.qZA()(),e._UZ(39,"mat-divider",8),e.TgZ(40,"div",14)(41,"h4",5),e._uU(42,"Time Lock Delta"),e.qZA(),e.TgZ(43,"span",6),e._uU(44),e.qZA()(),e._UZ(45,"mat-divider",8),e.TgZ(46,"div",14)(47,"h4",5),e._uU(48,"Min HTLC"),e.qZA(),e.TgZ(49,"span",6),e._uU(50),e.qZA()(),e._UZ(51,"mat-divider",8),e.TgZ(52,"div",14)(53,"h4",5),e._uU(54,"Max HTLC"),e.qZA(),e.TgZ(55,"span",6),e._uU(56),e.qZA()(),e._UZ(57,"mat-divider",8),e.TgZ(58,"div",14)(59,"h4",5),e._uU(60,"Fee Base Msat"),e.qZA(),e.TgZ(61,"span",6),e._uU(62),e.qZA()(),e._UZ(63,"mat-divider",8),e.TgZ(64,"div",14)(65,"h4",5),e._uU(66,"Fee Rate Milli Msat"),e.qZA(),e.TgZ(67,"span",6),e._uU(68),e.qZA()(),e._UZ(69,"mat-divider",8),e.TgZ(70,"div",14)(71,"h4",5),e._uU(72,"Disabled"),e.qZA(),e.TgZ(73,"span",6),e._uU(74),e.qZA()()(),e.TgZ(75,"div",10)(76,"div"),e.YNc(77,au,2,0,"h3",12),e.YNc(78,iu,2,0,"h3",12),e.qZA(),e._UZ(79,"mat-divider",8),e.TgZ(80,"div",13)(81,"h4",5),e._uU(82,"Pubkey"),e.qZA(),e.TgZ(83,"span",6),e._uU(84),e.qZA()(),e._UZ(85,"mat-divider",8),e.TgZ(86,"div",14)(87,"h4",5),e._uU(88,"Time Lock Delta"),e.qZA(),e.TgZ(89,"span",6),e._uU(90),e.qZA()(),e._UZ(91,"mat-divider",8),e.TgZ(92,"div",14)(93,"h4",5),e._uU(94,"Min HTLC"),e.qZA(),e.TgZ(95,"span",6),e._uU(96),e.qZA()(),e._UZ(97,"mat-divider",8),e.TgZ(98,"div",14)(99,"h4",5),e._uU(100,"Max HTLC"),e.qZA(),e.TgZ(101,"span",6),e._uU(102),e.qZA()(),e._UZ(103,"mat-divider",8),e.TgZ(104,"div",14)(105,"h4",5),e._uU(106,"Fee Base Msat"),e.qZA(),e.TgZ(107,"span",6),e._uU(108),e.qZA()(),e._UZ(109,"mat-divider",8),e.TgZ(110,"div",14)(111,"h4",5),e._uU(112,"Fee Rate Milli Msat"),e.qZA(),e.TgZ(113,"span",6),e._uU(114),e.qZA()(),e._UZ(115,"mat-divider",8),e.TgZ(116,"div",14)(117,"h4",5),e._uU(118,"Disabled"),e.qZA(),e.TgZ(119,"span",6),e._uU(120),e.qZA()()()()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(t.lookupResult.channel_id),e.xp6(5),e.Oqu(t.lookupResult.chan_point),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.xi3(20,39,1e3*t.lookupResult.last_update,"dd/MMM/y HH:mm")),e.xp6(6),e.Oqu(e.lcZ(26,42,t.lookupResult.capacity)),e.xp6(2),e.Q6J("inset",!0),e.xp6(4),e.Q6J("ngIf",!t.node1_match),e.xp6(1),e.Q6J("ngIf",t.node1_match),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(t.lookupResult.node1_pub),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.time_lock_delta),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.min_htlc),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.max_htlc_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_base_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_rate_milli_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null!=t.lookupResult.node1_policy&&t.lookupResult.node1_policy.disabled?"Yes":"No"),e.xp6(3),e.Q6J("ngIf",!t.node2_match),e.xp6(1),e.Q6J("ngIf",t.node2_match),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(t.lookupResult.node2_pub),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.time_lock_delta),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.min_htlc),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.max_htlc_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_base_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_rate_milli_msat),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Oqu(null!=t.lookupResult.node2_policy&&t.lookupResult.node2_policy.disabled?"Yes":"No")}}let su=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.lookupResult.node1_pub===t.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===t.identity_pubkey&&(this.node2_match=!0)})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxLayout","column","fxFlex","30","fxLayoutAlign","end start"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start"],[1,"my-1",3,"inset"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start start",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],["fxLayout","column","fxFlex","20"],["fxLayout","column","fxFlex","10"],[1,"page-title","font-bold-500"]],template:function(t,a){1&t&&e.YNc(0,ou,121,44,"div",0),2&t&&e.Q6J("ngIf",a.lookupResult)},directives:[p.O5,d.xw,X.d,d.yH,d.Wh],pipes:[p.uU,p.JJ],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}),n})();function lu(n,i){if(1&n&&(e.TgZ(0,"mat-radio-button",17),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("value",t.id)("checked",a.selectedFieldId===t.id),e.xp6(1),e.hij(" ",t.name," ")}}function ru(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function cu(n,i){1&n&&e._UZ(0,"mat-progress-bar",20)}const uu=function(n){return{"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0}};function pu(n,i){if(1&n&&(e.TgZ(0,"div",18),e.YNc(1,cu,1,0,"mat-progress-bar",19),e._uU(2),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(3,uu,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.xp6(1),e.Q6J("ngIf","Getting lookup details..."===t.errorMessage),e.xp6(1),e.hij(" ",t.errorMessage," ")}}function mu(n,i){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-node-lookup",28),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("lookupResult",t.lookupValue)}}function du(n,i){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-channel-lookup",28),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("lookupResult",t.lookupValue)}}function _u(n,i){1&n&&(e.TgZ(0,"span",27)(1,"h3"),e._uU(2,"Error! Unable to find details!"),e.qZA()())}function hu(n,i){if(1&n&&(e.TgZ(0,"div",21)(1,"div",22)(2,"span",23),e._uU(3),e.qZA()(),e.TgZ(4,"div",24),e.YNc(5,mu,2,1,"span",25),e.YNc(6,du,2,1,"span",25),e.YNc(7,_u,3,0,"span",26),e.qZA()()),2&n){const t=e.oxw();e.xp6(3),e.hij("",t.lookupFields[t.selectedFieldId].name," Details"),e.xp6(1),e.Q6J("ngSwitch",t.selectedFieldId),e.xp6(1),e.Q6J("ngSwitchCase",0),e.xp6(1),e.Q6J("ngSwitchCase",1)}}const gu=function(n){return{"mt-1":!0,"mt-2":n}};let Ve=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.commonService=a,this.store=o,this.actions=s,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Channel ID"}],this.faSearch=v.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t.type===l.uR.SET_LOOKUP_LND||t.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.uR.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&t.payload.hasOwnProperty("node")||1===this.selectedFieldId&&t.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!t.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!t.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&"Lookup"===t.payload.action&&(this.errorMessage="",t.payload.status===l.Bn.ERROR&&(this.errorMessage="object"==typeof t.payload.message?JSON.stringify(t.payload.message):t.payload.message),t.payload.status===l.Bn.INITIATED&&(this.errorMessage=l.m6.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,w.Sf)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,w.$A)({payload:{uiMessage:l.m6.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh),e.Y36(W.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lookups"]],decls:19,vars:10,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"placeholder","ngModel","change","ngModelChange"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6),e.NdJ("ngModelChange",function(s){return a.selectedFieldId=s})("change",function(s){return a.onSelectChange(s)}),e.YNc(7,lu,2,3,"mat-radio-button",7),e.qZA()(),e.TgZ(8,"mat-form-field",8)(9,"input",9,10),e.NdJ("change",function(){return a.clearLookupValue()})("ngModelChange",function(s){return a.lookupKey=s}),e.qZA(),e.YNc(11,ru,2,1,"mat-error",11),e.qZA(),e.TgZ(12,"div",12)(13,"button",13),e.NdJ("click",function(){return a.resetData()}),e._uU(14,"Clear"),e.qZA(),e.TgZ(15,"button",14),e.NdJ("click",function(){return a.onLookup()}),e._uU(16,"Lookup"),e.qZA()()(),e.YNc(17,pu,3,5,"div",15),e.YNc(18,hu,8,4,"div",16),e.qZA()()()),2&t&&(e.xp6(6),e.Q6J("ngModel",a.selectedFieldId),e.xp6(1),e.Q6J("ngForOf",a.lookupFields),e.xp6(1),e.Q6J("ngClass",e.VKq(8,gu,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.xp6(1),e.Q6J("placeholder",(null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key")("ngModel",a.lookupKey),e.xp6(2),e.Q6J("ngIf",!a.lookupKey),e.xp6(6),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},directives:[d.xw,d.yH,d.Wh,Z.dn,u._Y,u.JL,u.F,se.VQ,u.JJ,u.On,p.sg,se.U0,x.KE,p.mk,k.oO,M.Nt,u.Fj,u.Q7,p.O5,x.TO,N.lW,J.pW,p.RF,p.n9,eu,su,p.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}.pl-3[_ngcontent-%COMP%]{padding-left:3rem}"]}),n})();var Ze=f(6856);function fu(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid date format."),e.qZA())}function Cu(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid date format."),e.qZA())}function xu(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",27),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",a.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let yu=(()=>{class n{constructor(t,a,o){this.logger=t,this.store=a,this.router=o,this.faMapSigns=v.SuH,this.today=new Date(Date.now()),this.lastMonthDay=new Date(this.today.getFullYear(),this.today.getMonth()-1,this.today.getDate()+1,0,0,0),this.yesterday=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate()-1,0,0,0),this.endDate=this.today,this.startDate=this.lastMonthDay,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"},{link:"nonroutingprs",name:"Non Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new m.x,new m.x,new m.x]}ngOnInit(){this.onEventsFetch();const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,w.QJ)({payload:{forwarding_events:[]}})),this.endDate||(this.endDate=this.today),this.startDate||(this.startDate=new Date(this.endDate.getFullYear(),this.endDate.getMonth()-1,this.endDate.getDate()+1,0,0,0)),this.store.dispatch((0,w.u0)({payload:{end_time:Math.round(this.endDate.getTime()/1e3).toString(),start_time:Math.round(this.startDate.getTime()/1e3).toString()}}))}resetData(){this.endDate=this.today,this.startDate=this.lastMonthDay}ngOnDestroy(){this.resetData(),this.store.dispatch((0,w.QJ)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing"]],decls:35,vars:15,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"card-content-gap","mt-1"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mb-1",3,"ngSubmit"],["routingForm","ngForm"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","49","fxLayoutAlign","start"],["matInput","","placeholder","Start Date","name","startDate","tabindex","1",3,"matDatepicker","max","ngModel","ngModelChange"],["strtDate","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],["startDatepicker",""],[4,"ngIf"],["matInput","","placeholder","End Date","name","endDate","tabindex","2",3,"matDatepicker","min","max","ngModel","ngModelChange"],["enDate","ngModel"],["endDatepicker",""],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","fxFlex","100"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span",3),e._uU(4,"Routing"),e.qZA()(),e.TgZ(5,"div",4)(6,"mat-card",5)(7,"mat-card-content",6)(8,"form",7,8),e.NdJ("ngSubmit",function(){return a.onEventsFetch()}),e.TgZ(10,"div",9)(11,"mat-form-field",10)(12,"input",11,12),e.NdJ("ngModelChange",function(s){return a.startDate=s}),e.qZA(),e._UZ(14,"mat-datepicker-toggle",13)(15,"mat-datepicker",14,15),e.YNc(17,fu,2,0,"mat-error",16),e.qZA(),e.TgZ(18,"mat-form-field",10)(19,"input",17,18),e.NdJ("ngModelChange",function(s){return a.endDate=s}),e.qZA(),e._UZ(21,"mat-datepicker-toggle",13)(22,"mat-datepicker",14,19),e.YNc(24,Cu,2,0,"mat-error",16),e.qZA()(),e.TgZ(25,"div",20)(26,"button",21),e.NdJ("click",function(){return a.resetData()}),e._uU(27,"Clear"),e.qZA(),e.TgZ(28,"button",22),e._uU(29,"Fetch Events"),e.qZA()()(),e.TgZ(30,"div",23)(31,"nav",24),e.YNc(32,xu,2,3,"div",25),e.qZA()(),e.TgZ(33,"div",26),e._UZ(34,"router-outlet"),e.qZA()()()()()),2&t){const o=e.MAs(13),s=e.MAs(16),r=e.MAs(20),_=e.MAs(23);e.xp6(2),e.Q6J("icon",a.faMapSigns),e.xp6(10),e.Q6J("matDatepicker",s)("max",a.today)("ngModel",a.startDate),e.xp6(2),e.Q6J("for",s),e.xp6(1),e.Q6J("startAt",a.startDate),e.xp6(2),e.Q6J("ngIf",o.errors),e.xp6(2),e.Q6J("matDatepicker",_)("min",a.startDate)("max",a.today)("ngModel",a.endDate),e.xp6(2),e.Q6J("for",_),e.xp6(1),e.Q6J("startAt",a.endDate),e.xp6(2),e.Q6J("ngIf",r.errors),e.xp6(8),e.Q6J("ngForOf",a.links)}},directives:[d.xw,d.Wh,D.BN,d.yH,Z.a8,Z.dn,u._Y,u.JL,u.F,x.KE,M.Nt,Ze.hl,Ye.F,u.Fj,u.JJ,u.On,Ze.nW,x.R9,Ze.Mq,p.O5,x.TO,K.q,N.lW,P.BU,p.sg,P.Nj,b.rH,b.lC],styles:[""]}),n})();function Tu(n,i){if(1&n&&(e.TgZ(0,"div",5),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function vu(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e._UZ(1,"div",7),e.TgZ(2,"mat-form-field",8)(3,"input",9),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().filterValue=o})("input",function(){return e.CHM(t),e.oxw().applyFilter()})("keyup",function(){return e.CHM(t),e.oxw().applyFilter()}),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.filterValue)}}function bu(n,i){1&n&&e._UZ(0,"mat-progress-bar",31)}function Zu(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1,"Timestamp"),e.qZA())}function wu(n,i){if(1&n&&(e.TgZ(0,"td",33),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function Au(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1,"Inbound Channel"),e.qZA())}function Su(n,i){if(1&n&&(e.TgZ(0,"td",33),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t.alias_in)}}function Lu(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1,"Outbound Channel"),e.qZA())}function ku(n,i){if(1&n&&(e.TgZ(0,"td",33),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(t.alias_out)}}function Fu(n,i){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Inbound Amount (Sats)"),e.qZA())}function Nu(n,i){if(1&n&&(e.TgZ(0,"td",33)(1,"span",35),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amt_in))}}function qu(n,i){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Outbound Amount (Sats)"),e.qZA())}function Uu(n,i){if(1&n&&(e.TgZ(0,"td",33)(1,"span",35),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amt_out))}}function Ou(n,i){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Fee (mSats)"),e.qZA())}function Ru(n,i){if(1&n&&(e.TgZ(0,"td",33)(1,"span",35),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.fee_msat))}}function Mu(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",36)(1,"div",37)(2,"mat-select",38),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",39),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Iu(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",40)(1,"button",41),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw(2).onForwardingEventClick(r,o)}),e._uU(2,"View Info"),e.qZA()()}}function Du(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No forwarding history available."),e.qZA())}function Pu(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting forwarding history..."),e.qZA())}function Ju(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function Eu(n,i){if(1&n&&(e.TgZ(0,"td",42),e.YNc(1,Du,2,0,"p",43),e.YNc(2,Pu,2,0,"p",43),e.YNc(3,Ju,2,1,"p",43),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Qu=function(n){return{"display-none":n}};function Yu(n,i){if(1&n&&e._UZ(0,"tr",44),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,Qu,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function Hu(n,i){1&n&&e._UZ(0,"tr",45)}function Bu(n,i){1&n&&e._UZ(0,"tr",46)}const Vu=function(){return["no_event"]};function Gu(n,i){if(1&n&&(e.TgZ(0,"div",10),e.YNc(1,bu,1,0,"mat-progress-bar",11),e.TgZ(2,"table",12,13),e.ynx(4,14),e.YNc(5,Zu,2,0,"th",15),e.YNc(6,wu,3,4,"td",16),e.BQk(),e.ynx(7,17),e.YNc(8,Au,2,0,"th",15),e.YNc(9,Su,2,1,"td",16),e.BQk(),e.ynx(10,18),e.YNc(11,Lu,2,0,"th",15),e.YNc(12,ku,2,1,"td",16),e.BQk(),e.ynx(13,19),e.YNc(14,Fu,2,0,"th",20),e.YNc(15,Nu,4,3,"td",16),e.BQk(),e.ynx(16,21),e.YNc(17,qu,2,0,"th",20),e.YNc(18,Uu,4,3,"td",16),e.BQk(),e.ynx(19,22),e.YNc(20,Ou,2,0,"th",20),e.YNc(21,Ru,4,3,"td",16),e.BQk(),e.ynx(22,23),e.YNc(23,Mu,6,0,"th",24),e.YNc(24,Iu,3,0,"td",25),e.BQk(),e.ynx(25,26),e.YNc(26,Eu,4,3,"td",27),e.BQk(),e.YNc(27,Yu,1,3,"tr",28),e.YNc(28,Hu,1,0,"tr",29),e.YNc(29,Bu,1,0,"tr",30),e.qZA()()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.forwardingHistoryEvents),e.xp6(25),e.Q6J("matFooterRowDef",e.DdM(6,Vu)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}function zu(n,i){if(1&n&&e._UZ(0,"mat-paginator",47),2&n){const t=e.oxw();e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Ge=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.commonService=a,this.store=o,this.datePipe=s,this.eventsData=[],this.filterValue="",this.forwardingHistoryData=[],this.displayedColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["timestamp","fee_msat","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["timestamp","amt_in","amt_out","fee_msat","actions"]):(this.flgSticky=!0,this.displayedColumns=["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat","actions"])}ngOnInit(){this.store.select(y.Bo).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var a;this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,(null===(a=t.apiCallStatus)||void 0===a?void 0:a.status)===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=t.forwardingHistory.forwarding_events||[],this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:l.Bn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,t.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),t.filterValue&&!t.filterValue.firstChange&&this.applyFilter()}onForwardingEventClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:t.timestamp,title:"Timestamp",width:25,type:l.Gi.DATE_TIME},{key:"amt_in",value:t.amt_in,title:"Inbound Amount (Sats)",width:25,type:l.Gi.NUMBER},{key:"amt_out",value:t.amt_out,title:"Outbound Amount (Sats)",width:25,type:l.Gi.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:25,type:l.Gi.NUMBER}],[{key:"alias_in",value:t.alias_in,title:"Inbound Peer Alias",width:25,type:l.Gi.STRING},{key:"chan_id_in",value:t.chan_id_in,title:"Inbound Channel ID",width:25,type:l.Gi.STRING},{key:"alias_out",value:t.alias_out,title:"Outbound Peer Alias",width:25,type:l.Gi.STRING},{key:"chan_id_out",value:t.chan_id_out,title:"Outbound Channel ID",width:25,type:l.Gi.STRING}]]}}}))}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new c.by(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.forwardingHistoryEvents.filterPredicate=(a,o)=>{var s;return((a.timestamp?null===(s=this.datePipe.transform(new Date(1e3*a.timestamp),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(a).toLowerCase()).includes(o)},this.forwardingHistoryEvents.paginator=this.paginator,this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.filterValue.trim().toLowerCase())}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh),e.Y36(p.uU))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},inputs:{eventsData:"eventsData",filterValue:"filterValue"},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Events")}]),e.TTD],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias_in"],["matColumnDef","alias_out"],["matColumnDef","amt_in"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_out"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,Tu,2,1,"div",1),e.YNc(2,vu,4,1,"div",2),e.YNc(3,Gu,30,7,"div",3),e.YNc(4,zu,1,3,"mat-paginator",4),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage))},directives:[d.xw,d.Wh,p.O5,d.yH,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,J.pW,c.BZ,A.YE,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,R.gD,R.$L,B.ey,N.lW,c.mD,c.yh,c.Ke,c.Q2,p.mk,k.oO,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.uU,p.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();const Wu=["tableIn"],Xu=["tableOut"],$u=["paginatorIn"],ju=["paginatorOut"];function Ku(n,i){if(1&n&&(e.TgZ(0,"div",3),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function ep(n,i){1&n&&e._UZ(0,"mat-progress-bar",37)}function tp(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Channel ID"),e.qZA())}const he=function(n){return{"max-width":n}};function np(n,i){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("ngStyle",e.VKq(2,he,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(t.chan_id)}}function ap(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Peer Alias"),e.qZA())}function ip(n,i){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("ngStyle",e.VKq(2,he,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(t.alias)}}function op(n,i){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Events"),e.qZA())}function sp(n,i){if(1&n&&(e.TgZ(0,"td",41)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.events))}}function lp(n,i){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Total Amount (Sats)"),e.qZA())}function rp(n,i){if(1&n&&(e.TgZ(0,"td",41)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_amount))}}function cp(n,i){1&n&&(e.TgZ(0,"th",43)(1,"span",42),e._uU(2,"Actions"),e.qZA()())}function up(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",44)(1,"button",45),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw(2).onRoutingPeerClick(r,o,"in")}),e._uU(2,"View Info"),e.qZA()()}}function pp(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No incoming routing peer available."),e.qZA())}function mp(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting incoming routing peers..."),e.qZA())}function dp(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function _p(n,i){if(1&n&&(e.TgZ(0,"td",46),e.YNc(1,pp,2,0,"p",47),e.YNc(2,mp,2,0,"p",47),e.YNc(3,dp,2,1,"p",47),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.RoutingPeersIncoming&&t.RoutingPeersIncoming.data)||(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.RoutingPeersIncoming&&t.RoutingPeersIncoming.data)||(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.RoutingPeersIncoming&&t.RoutingPeersIncoming.data)||(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const ze=function(n){return{"display-none":n}};function hp(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,ze,(null==t.RoutingPeersIncoming||null==t.RoutingPeersIncoming.data?null:t.RoutingPeersIncoming.data.length)>0))}}function gp(n,i){1&n&&e._UZ(0,"tr",49)}function fp(n,i){1&n&&e._UZ(0,"tr",50)}function Cp(n,i){1&n&&e._UZ(0,"mat-progress-bar",37)}function xp(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Channel ID"),e.qZA())}function yp(n,i){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("ngStyle",e.VKq(2,he,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(t.chan_id)}}function Tp(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Peer Alias"),e.qZA())}function vp(n,i){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("ngStyle",e.VKq(2,he,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(t.alias)}}function bp(n,i){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Events"),e.qZA())}function Zp(n,i){if(1&n&&(e.TgZ(0,"td",41)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.events))}}function wp(n,i){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Total Amount (Sats)"),e.qZA())}function Ap(n,i){if(1&n&&(e.TgZ(0,"td",41)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_amount))}}function Sp(n,i){1&n&&(e.TgZ(0,"th",43)(1,"span",42),e._uU(2,"Actions"),e.qZA()())}function Lp(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",51)(1,"button",52),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw(2).onRoutingPeerClick(r,o,"out")}),e._uU(2,"View Info"),e.qZA()()}}function kp(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No outgoing routing peer available."),e.qZA())}function Fp(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting outgoing routing peers..."),e.qZA())}function Np(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.errorMessage)}}function qp(n,i){if(1&n&&(e.TgZ(0,"td",46),e.YNc(1,kp,2,0,"p",47),e.YNc(2,Fp,2,0,"p",47),e.YNc(3,Np,2,1,"p",47),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",(!(null!=t.RoutingPeersOutgoing&&t.RoutingPeersOutgoing.data)||(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.RoutingPeersOutgoing&&t.RoutingPeersOutgoing.data)||(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.RoutingPeersOutgoing&&t.RoutingPeersOutgoing.data)||(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Up(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,ze,(null==t.RoutingPeersOutgoing||null==t.RoutingPeersOutgoing.data?null:t.RoutingPeersOutgoing.data.length)>0))}}function Op(n,i){1&n&&e._UZ(0,"tr",49)}function Rp(n,i){1&n&&e._UZ(0,"tr",50)}const Mp=function(n,i){return{"mt-2":n,"mt-1":i}},Ip=function(){return["no_incoming_event"]},Dp=function(n){return{"mt-2":n}},Pp=function(){return["no_outgoing_event"]};function Jp(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",4)(1,"div",5)(2,"div",6)(3,"div",7),e._uU(4,"Incoming"),e.qZA(),e.TgZ(5,"mat-form-field",8)(6,"input",9),e.NdJ("keyup",function(){return e.CHM(t),e.oxw().applyIncomingFilter()})("ngModelChange",function(o){return e.CHM(t),e.oxw().filterIn=o}),e.qZA()()(),e.TgZ(7,"div",10),e.YNc(8,ep,1,0,"mat-progress-bar",11),e.TgZ(9,"table",12,13),e.ynx(11,14),e.YNc(12,tp,2,0,"th",15),e.YNc(13,np,2,4,"td",16),e.BQk(),e.ynx(14,17),e.YNc(15,ap,2,0,"th",15),e.YNc(16,ip,2,4,"td",16),e.BQk(),e.ynx(17,18),e.YNc(18,op,2,0,"th",19),e.YNc(19,sp,4,3,"td",20),e.BQk(),e.ynx(20,21),e.YNc(21,lp,2,0,"th",19),e.YNc(22,rp,4,3,"td",20),e.BQk(),e.ynx(23,22),e.YNc(24,cp,3,0,"th",23),e.YNc(25,up,3,0,"td",24),e.BQk(),e.ynx(26,25),e.YNc(27,_p,4,3,"td",26),e.BQk(),e.YNc(28,hp,1,3,"tr",27),e.YNc(29,gp,1,0,"tr",28),e.YNc(30,fp,1,0,"tr",29),e.qZA()(),e._UZ(31,"mat-paginator",30,31),e.qZA(),e.TgZ(33,"div",5)(34,"div",6)(35,"div",7),e._uU(36,"Outgoing"),e.qZA(),e.TgZ(37,"mat-form-field",8)(38,"input",9),e.NdJ("keyup",function(){return e.CHM(t),e.oxw().applyOutgoingFilter()})("ngModelChange",function(o){return e.CHM(t),e.oxw().filterOut=o}),e.qZA()()(),e.TgZ(39,"div",10),e.YNc(40,Cp,1,0,"mat-progress-bar",11),e.TgZ(41,"table",32,33),e.ynx(43,14),e.YNc(44,xp,2,0,"th",15),e.YNc(45,yp,2,4,"td",16),e.BQk(),e.ynx(46,17),e.YNc(47,Tp,2,0,"th",15),e.YNc(48,vp,2,4,"td",16),e.BQk(),e.ynx(49,18),e.YNc(50,bp,2,0,"th",19),e.YNc(51,Zp,4,3,"td",20),e.BQk(),e.ynx(52,21),e.YNc(53,wp,2,0,"th",19),e.YNc(54,Ap,4,3,"td",20),e.BQk(),e.ynx(55,22),e.YNc(56,Sp,3,0,"th",23),e.YNc(57,Lp,3,0,"td",34),e.BQk(),e.ynx(58,35),e.YNc(59,qp,4,3,"td",26),e.BQk(),e.YNc(60,Up,1,3,"tr",27),e.YNc(61,Op,1,0,"tr",28),e.YNc(62,Rp,1,0,"tr",29),e.qZA()(),e._UZ(63,"mat-paginator",30,36),e.qZA()()}if(2&n){const t=e.oxw();e.xp6(2),e.Q6J("ngClass",e.WLB(22,Mp,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),e.xp6(4),e.Q6J("ngModel",t.filterIn),e.xp6(2),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.RoutingPeersIncoming),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(25,Ip)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),e.xp6(3),e.Q6J("ngClass",e.VKq(26,Dp,t.screenSize!==t.screenSizeEnum.LG)),e.xp6(4),e.Q6J("ngModel",t.filterOut),e.xp6(2),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.RoutingPeersOutgoing),e.xp6(19),e.Q6J("matFooterRowDef",e.DdM(28,Pp)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns),e.xp6(1),e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Ep=(()=>{class n{constructor(t,a,o){this.logger=t,this.commonService=a,this.store=o,this.routingPeersData=[],this.displayedColumns=[],this.RoutingPeersIncoming=new c.by([]),this.RoutingPeersOutgoing=new c.by([]),this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["chan_id","events","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["chan_id","alias","events","total_amount"]):(this.flgSticky=!0,this.displayedColumns=["chan_id","alias","events","total_amount"])}ngOnInit(){this.store.select(y.Bo).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var a;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,(null===(a=t.apiCallStatus)||void 0===a?void 0:a.status)===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(t,a,o){let s=" Routing Information";s="in"===o?"Incoming"+s:"Outgoing"+s,this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:s,message:[[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.Gi.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:l.Gi.STRING}],[{key:"events",value:t.events,title:"Events",width:50,type:l.Gi.NUMBER},{key:"total_amount",value:t.total_amount,title:"Total Amount (Sats)",width:50,type:l.Gi.NUMBER}]]}}}))}loadRoutingPeersTable(t){if(t.length>0){const a=this.groupRoutingPeers(t);this.RoutingPeersIncoming=new c.by(a[0]),this.RoutingPeersIncoming.sort=this.sortIn,this.RoutingPeersIncoming.filterPredicate=(o,s)=>JSON.stringify(o).toLowerCase().includes(s),this.RoutingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.RoutingPeersIncoming),this.RoutingPeersOutgoing=new c.by(a[1]),this.RoutingPeersOutgoing.sort=this.sortOut,this.RoutingPeersOutgoing.filterPredicate=(o,s)=>JSON.stringify(o).toLowerCase().includes(s),this.RoutingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.RoutingPeersOutgoing)}else this.RoutingPeersIncoming=new c.by([]),this.RoutingPeersOutgoing=new c.by([]);this.applyIncomingFilter(),this.applyOutgoingFilter()}groupRoutingPeers(t){const a=[],o=[];return t.forEach(s=>{const r=a.find(g=>g.chan_id===s.chan_id_in),_=o.find(g=>g.chan_id===s.chan_id_out);r?(r.events++,r.total_amount=+r.total_amount+ +(s.amt_in||0)):a.push({chan_id:s.chan_id_in,alias:s.alias_in,events:1,total_amount:+(s.amt_in||0)}),_?(_.events++,_.total_amount=+_.total_amount+ +(s.amt_out||0)):o.push({chan_id:s.chan_id_out,alias:s.alias_out,events:1,total_amount:+(s.amt_out||0)})}),[this.commonService.sortDescByKey(a,"total_amount"),this.commonService.sortDescByKey(o,"total_amount")]}applyIncomingFilter(){this.RoutingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.RoutingPeersOutgoing.filter=this.filterOut.toLowerCase()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(t,a){if(1&t&&(e.Gf(Wu,5,A.YE),e.Gf(Xu,5,A.YE),e.Gf($u,5),e.Gf(ju,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sortIn=o.first),e.iGM(o=e.CRH())&&(a.sortOut=o.first),e.iGM(o=e.CRH())&&(a.paginatorIn=o.first),e.iGM(o=e.CRH())&&(a.paginatorOut=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Routing peers")}])],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start","class","page-sub-title-container",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start",1,"page-sub-title-container"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["tableIn",""],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","total_amount"],["matColumnDef","actions"],["mat-header-cell","","class","pr-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-2","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginatorIn",""],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["tableOut",""],["mat-cell","","class","pl-2",4,"matCellDef"],["matColumnDef","no_outgoing_event"],["paginatorOut",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-cell",""],["fxLayoutAlign","end center"],["mat-header-cell","",1,"pr-3"],["mat-cell","","fxLayoutAlign","end center",1,"pl-2"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],["mat-cell","",1,"pl-2"],["mat-stroked-button","","color","primary","type","button","tabindex","5",3,"click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,Ku,2,1,"div",1),e.YNc(2,Jp,65,29,"div",2),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage))},directives:[d.xw,d.Wh,p.O5,d.yH,p.mk,k.oO,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,J.pW,c.BZ,A.YE,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,N.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-chan_id[_ngcontent-%COMP%], .mat-column-alias[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function Qp(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",7),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",a.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let Yp=(()=>{class n{constructor(t){this.router=t,this.faChartBar=v.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new m.x,new m.x,new m.x,new m.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-reports"]],decls:10,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Reports"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,Qp,2,3,"div",6),e.qZA(),e._UZ(9,"router-outlet"),e.qZA()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faChartBar),e.xp6(7),e.Q6J("ngForOf",a.links))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,P.BU,p.sg,P.Nj,b.rH,b.lC],styles:[""]}),n})();var We=f(7671),Xe=f(1210);function Hp(n,i){1&n&&e._UZ(0,"mat-progress-bar",16)}function Bp(n,i){if(1&n&&(e.TgZ(0,"div",17),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=e.oxw();e.Q6J("@fadeIn",t.events.total_fee_msat),e.xp6(1),e.AsE("",e.xi3(2,3,t.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.lcZ(3,6,(null==t.events||null==t.events.forwarding_events?null:t.events.forwarding_events.length)||0)," Events")}}function Vp(n,i){1&n&&(e.TgZ(0,"div",18),e._uU(1,"No routing report for the selected period"),e.qZA())}const Gp=function(n){return{"error-border":n}};function zp(n,i){if(1&n&&(e.TgZ(0,"div",19),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(2,Gp,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.xp6(1),e.Oqu(t.errorMessage)}}function Wp(n,i){if(1&n&&(e.TgZ(0,"span")(1,"span",22),e._uU(2),e.ALo(3,"number"),e.qZA(),e.TgZ(4,"span",22),e._uU(5),e.ALo(6,"number"),e.qZA()()),2&n){const t=i.model,a=e.oxw(2);e.xp6(2),e.hij("Events: ",e.lcZ(3,2,(a.selReportBy===a.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),e.xp6(3),e.hij("Fee: ",e.xi3(6,4,(a.selReportBy===a.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function Xp(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"ngx-charts-bar-vertical",20),e.NdJ("select",function(o){return e.CHM(t),e.oxw().onChartBarSelected(o)})("mouseup",function(o){return e.CHM(t),e.oxw().onChartMouseUp(o)}),e.YNc(1,Wp,7,7,"ng-template",null,21,e.W1O),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function $p(n,i){if(1&n&&e._UZ(0,"rtl-forwarding-history",23),2&n){const t=e.oxw();e.Q6J("eventsData",null==t.events?null:t.events.forwarding_events)("filterValue",t.eventFilterValue)}}let jp=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.dataService=a,this.commonService=o,this.store=s,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=l.Xr,this.selReportBy=l.Xr.FEES,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.unSubs=[new m.x,new m.x,new m.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(y.Q5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=t.width/10;break;case l.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(t,a){this.errorMessage=l.m6.GET_FORWARDING_HISTORY;const o=Math.round(t.getTime()/1e3).toString(),s=Math.round(a.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",o,s).pipe((0,h.R)(this.unSubs[2])).subscribe({next:r=>{this.errorMessage="",r.forwarding_events&&r.forwarding_events.length?(r.forwarding_events=r.forwarding_events.reverse(),this.events=r,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(t):this.prepareFeeReport(t)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:r=>{this.errorMessage=r}})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===l.op[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){var a,o;const s=Math.round(t.getTime()/1e3),r=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.op[1]){for(let _=0;_<12;_++)r.push({name:l.gg[_].name,value:0,extra:{totalEvents:0}});null===(a=this.events.forwarding_events)||void 0===a||a.map(_=>{const g=new Date(1e3*+(_.timestamp||0)).getMonth();return r[g].value=r[g].value+ +(_.fee_msat||0)/1e3,r[g].extra.totalEvents=r[g].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}else{for(let _=0;_{const g=Math.floor((+(_.timestamp||0)-s)/this.secondsInADay);return r[g].value=r[g].value+ +(_.fee_msat||0)/1e3,r[g].extra.totalEvents=r[g].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}return r}prepareEventsReport(t){var a,o;const s=Math.round(t.getTime()/1e3),r=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.op[1]){for(let _=0;_<12;_++)r.push({name:l.gg[_].name,value:0,extra:{totalFees:0}});null===(a=this.events.forwarding_events)||void 0===a||a.map(_=>{const g=new Date(1e3*+(_.timestamp||0)).getMonth();return r[g].value=r[g].value+1,r[g].extra.totalFees=r[g].extra.totalFees+ +(_.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}else{for(let _=0;_{const g=Math.floor((+(_.timestamp||0)-s)/this.secondsInADay);return r[g].value=r[g].value+1,r[g].extra.totalFees=r[g].extra.totalFees+ +(_.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(_.fee_msat||0),this.events})}return r}onSelectionChange(t){const a=t.selDate.getMonth(),o=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.gg[t].days+1:l.gg[t].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(ee.D),e.Y36(O.v),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(t,a){1&t&&e.NdJ("mouseup",function(s){return a.onChartMouseUp(s)})},decls:20,vars:9,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["mode","indeterminate","class","mt-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x","my-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",3,"ngClass",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],[3,"eventsData","filterValue",4,"ngIf"],["mode","indeterminate",1,"mt-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1",3,"ngClass"],[1,"one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"eventsData","filterValue"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),e.NdJ("stepChanged",function(s){return a.onSelectionChange(s)}),e.qZA(),e.TgZ(2,"div",2)(3,"mat-radio-group",3),e.NdJ("ngModelChange",function(s){return a.selReportBy=s})("change",function(){return a.onSelReportByChange()}),e.TgZ(4,"span",4),e._uU(5,"Report By: "),e.qZA(),e.TgZ(6,"mat-radio-button",5),e._uU(7,"Fees"),e.qZA(),e.TgZ(8,"mat-radio-button",6),e._uU(9,"Events"),e.qZA()()(),e.YNc(10,Hp,1,0,"mat-progress-bar",7),e.TgZ(11,"div",8),e.YNc(12,Bp,4,8,"div",9),e.YNc(13,Vp,2,0,"div",10),e.YNc(14,zp,2,4,"div",11),e.TgZ(15,"div",12),e.YNc(16,Xp,3,11,"ngx-charts-bar-vertical",13),e.qZA()(),e.TgZ(17,"div",14)(18,"div",12),e.YNc(19,$p,1,2,"rtl-forwarding-history",15),e.qZA()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",a.selReportBy),e.xp6(3),e.s9C("value",a.reportBy.FEES),e.xp6(2),e.s9C("value",a.reportBy.EVENTS),e.xp6(2),e.Q6J("ngIf","Getting Forwarding History..."===a.errorMessage),e.xp6(2),e.Q6J("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.xp6(1),e.Q6J("ngIf",(a.routingReportData.length<=0||a.events.forwarding_events.length<=0)&&""===a.errorMessage),e.xp6(1),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(2),e.Q6J("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.xp6(3),e.Q6J("ngIf",a.events&&(null==a.events?null:a.events.forwarding_events)&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0))},directives:[d.xw,d.Wh,d.yH,We.D,se.VQ,u.JJ,u.On,se.U0,p.O5,J.pW,p.mk,k.oO,Xe.K$,Ge],pipes:[p.JJ],styles:[""],data:{animation:[ve.J]}}),n})();var Kp=f(165);function em(n,i){1&n&&(e.TgZ(0,"div",11),e._UZ(1,"mat-progress-bar",12),e.TgZ(2,"span"),e._uU(3,"Getting transactions data..."),e.qZA()())}function tm(n,i){if(1&n&&(e.TgZ(0,"div",13),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function nm(n,i){if(1&n&&(e.TgZ(0,"div",16),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.AsE(" Paid ",e.xi3(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.lcZ(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function am(n,i){if(1&n&&(e.TgZ(0,"div",16),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.AsE(" Received ",e.xi3(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.lcZ(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function im(n,i){if(1&n&&(e.TgZ(0,"div",14),e.YNc(1,nm,4,7,"div",15),e.YNc(2,am,4,7,"div",15),e.qZA()),2&n){const t=e.oxw();e.Q6J("@fadeIn",t.transactionsReportSummary),e.xp6(1),e.Q6J("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod>0),e.xp6(1),e.Q6J("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function om(n,i){1&n&&(e.TgZ(0,"div",17),e._uU(1,"No transactions report for the selected period"),e.qZA())}function sm(n,i){if(1&n&&(e.TgZ(0,"span",21),e._uU(1),e.ALo(2,"number"),e.ALo(3,"number"),e.qZA()),2&n){const t=i.model;e.xp6(1),e.HOy("",t.name,": ",e.xi3(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",e.lcZ(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function lm(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"ngx-charts-bar-vertical-2d",19),e.NdJ("select",function(o){return e.CHM(t),e.oxw(2).onChartBarSelected(o)})("mouseup",function(o){return e.CHM(t),e.oxw(2).onChartMouseUp(o)}),e.YNc(1,sm,4,9,"ng-template",null,20,e.W1O),e.qZA()}if(2&n){const t=e.oxw(2);e.Q6J("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:8)}}function rm(n,i){if(1&n&&(e.TgZ(0,"div",9),e.YNc(1,lm,3,13,"ngx-charts-bar-vertical-2d",18),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",t.transactionsReportData.length>0&&t.transactionsNonZeroReportData.length>0)}}function cm(n,i){if(1&n&&e._UZ(0,"rtl-transactions-report-table",22),2&n){const t=e.oxw();e.Q6J("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("filterValue",t.transactionFilterValue)}}let um=(()=>{class n{constructor(t,a,o){this.logger=t,this.commonService=a,this.store=o,this.scrollRanges=l.op,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[{date:"",name:"1",series:[{extra:{total:0},name:"Paid",value:0},{extra:{total:0},name:"Received",value:0}]}],this.transactionsNonZeroReportData=[{amount_paid:0,amount_received:0,date:"",num_invoices:0,num_payments:0}],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(y.l5).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{t.apiCallStatus.status===l.Bn.UN_INITIATED&&this.store.dispatch((0,w.Jo)()),this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=t.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=t.allLightningTransactions.listInvoicesAll.invoices||[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()),this.logger.info(t)}),this.commonService.containerSizeUpdated.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=t.width/10;break;case l.cu.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===l.op[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,a){var o,s;const r=Math.round(t.getTime()/1e3),_=Math.round(a.getTime()/1e3),g=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const C=null===(o=this.payments)||void 0===o?void 0:o.filter(T=>"SUCCEEDED"===T.status&&T.creation_date&&T.creation_date>=r&&T.creation_date<_),I=null===(s=this.invoices)||void 0===s?void 0:s.filter(T=>T.settled&&T.creation_date&&+T.creation_date>=r&&+T.creation_date<_);if(this.transactionsReportSummary.paymentsSelectedPeriod=C.length,this.transactionsReportSummary.invoicesSelectedPeriod=I.length,this.reportPeriod===l.op[1]){for(let T=0;T<12;T++)g.push({name:l.gg[T].name,date:new Date(t.getFullYear(),T,1,0,0,0,0),series:[{name:"Paid",value:0,extra:{total:0}},{name:"Received",value:0,extra:{total:0}}]});null==C||C.map(T=>{const Q=new Date(1e3*+(T.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(T.value_msat||0)+ +(T.fee_msat||0),g[Q].series[0].value=g[Q].series[0].value+(+(T.value_msat||0)+ +(T.fee_msat||0))/1e3,g[Q].series[0].extra.total=g[Q].series[0].extra.total+1,this.transactionsReportSummary}),null==I||I.map(T=>{const Q=new Date(1e3*+(T.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(T.amt_paid_msat||0),g[Q].series[1].value=g[Q].series[1].value+ +(T.amt_paid_msat||0)/1e3,g[Q].series[1].extra.total=g[Q].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let T=0;T{const Q=Math.floor((+(T.creation_date||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(T.value_msat||0)+ +(T.fee_msat||0),g[Q].series[0].value=g[Q].series[0].value+(+(T.value_msat||0)+ +(T.fee_msat||0))/1e3,g[Q].series[0].extra.total=g[Q].series[0].extra.total+1,this.transactionsReportSummary}),null==I||I.map(T=>{const Q=Math.floor((+(T.creation_date||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(T.amt_paid_msat||0),g[Q].series[1].value=g[Q].series[1].value+ +(T.amt_paid_msat||0)/1e3,g[Q].series[1].extra.total=g[Q].series[1].extra.total+1,this.transactionsReportSummary})}return g}prepareTableData(){var t;return null===(t=this.transactionsReportData)||void 0===t?void 0:t.reduce((a,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?a.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):a,[])}onSelectionChange(t){const a=t.selDate.getMonth(),o=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.gg[t].days+1:l.gg[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(t,a){1&t&&e.NdJ("mouseup",function(s){return a.onChartMouseUp(s)})},decls:11,vars:6,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],[3,"stepChanged"],["class","p-2",4,"ngIf"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["class","mt-1",4,"ngIf"],[1,"mt-1"],[3,"dataList","dataRange","filterValue",4,"ngIf"],[1,"p-2"],["mode","indeterminate"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[1,"two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"dataList","dataRange","filterValue"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"rtl-horizontal-scroller",3),e.NdJ("stepChanged",function(s){return a.onSelectionChange(s)}),e.qZA(),e.YNc(4,em,4,0,"div",4),e.YNc(5,tm,2,1,"div",5),e.YNc(6,im,3,3,"div",6),e.YNc(7,om,2,0,"div",7),e.YNc(8,rm,2,1,"div",8),e.TgZ(9,"div",9),e.YNc(10,cm,1,3,"rtl-transactions-report-table",10),e.qZA()()()()),2&t&&(e.xp6(4),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.ERROR),e.xp6(1),e.Q6J("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",a.transactionsNonZeroReportData.length<=0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.xp6(2),e.Q6J("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED))},directives:[d.xw,d.Wh,d.yH,We.D,p.O5,J.pW,Xe.H5,Kp.g],pipes:[p.JJ],styles:[""],data:{animation:[ve.J]}}),n})();const pm=["form"];function mm(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"UTXO Label is required."),e.qZA())}function dm(n,i){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.labelError)}}function _m(n,i){if(1&n&&(e.TgZ(0,"div",16),e._UZ(1,"fa-icon",17),e.YNc(2,dm,2,1,"span",11),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.labelError)}}let hm=(()=>{class n{constructor(t,a,o,s,r,_){this.dialogRef=t,this.data=a,this.dataService=o,this.store=s,this.snackBar=r,this.commonService=_,this.faExclamationTriangle=v.eHv,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.utxo=this.data.utxo,this.label=this.utxo.label||""}onLabelUTXO(){if(!this.label||""===this.label)return!0;this.labelError="",this.dataService.labelUTXO(this.utxo&&this.utxo.outpoint&&this.utxo.outpoint.txid_bytes?this.utxo.outpoint.txid_bytes:"",this.label,!0).pipe((0,h.R)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,w.mC)()),this.store.dispatch((0,w.Ly)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:t=>{this.labelError=t}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(ee.D),e.Y36(L.yh),e.Y36(ae.ux),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(t,a){if(1&t&&e.Gf(pm,7),2&t){let o;e.iGM(o=e.CRH())&&(a.form=o.first)}},decls:20,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex.gt-sm","100"],["autoFocus","","matInput","","placeholder","UTXO Label","name","label","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Label UTXO"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8),e.NdJ("submit",function(){return a.onLabelUTXO()})("reset",function(){return a.resetData()}),e.TgZ(11,"mat-form-field",9)(12,"input",10),e.NdJ("ngModelChange",function(s){return a.label=s}),e.qZA(),e.YNc(13,mm,2,0,"mat-error",11),e.qZA(),e.YNc(14,_m,3,2,"div",12),e.TgZ(15,"div",13)(16,"button",14),e._uU(17,"Clear"),e.qZA(),e.TgZ(18,"button",15),e._uU(19,"Label UTXO"),e.qZA()()()()()()),2&t&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(6),e.Q6J("ngModel",a.label),e.xp6(1),e.Q6J("ngIf",!a.label),e.xp6(1),e.Q6J("ngIf",""!==a.labelError))},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,E.ZT,Z.dn,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,$.h,u.Q7,u.JJ,u.On,p.O5,x.TO,D.BN],styles:[""]}),n})();function gm(n,i){1&n&&e._UZ(0,"mat-progress-bar",28)}function fm(n,i){1&n&&(e.TgZ(0,"th",29),e._uU(1," Transaction ID "),e.qZA())}function Cm(n,i){1&n&&(e.TgZ(0,"span",35)(1,"mat-icon",36),e._uU(2,"warning"),e.qZA()())}function xm(n,i){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Cm,3,0,"span",34),e.qZA()),2&n){const t=e.oxw().$implicit;e.oxw();const a=e.MAs(34);e.xp6(1),e.Q6J("ngIf",t.amount_sat<1e3)("ngIfElse",a)}}const $e=function(n){return{"max-width":n}};function ym(n,i){if(1&n&&(e.TgZ(0,"td",30)(1,"span",31),e.YNc(2,xm,2,2,"span",32),e.TgZ(3,"span",33),e._uU(4),e.qZA()()()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(3,$e,a.screenSize===a.screenSizeEnum.XS?"12rem":"25rem")),e.xp6(2),e.Q6J("ngIf",a.utxos.length>0&&a.dustUtxos.length>0&&!a.isDustUTXO),e.xp6(2),e.Oqu(t.outpoint.txid_str)}}function Tm(n,i){1&n&&(e.TgZ(0,"th",37),e._uU(1," Output "),e.qZA())}function vm(n,i){if(1&n&&(e.TgZ(0,"td",38)(1,"span",39),e._uU(2),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(t.outpoint.output_index)}}function bm(n,i){1&n&&(e.TgZ(0,"th",29),e._uU(1," Label "),e.qZA())}function Zm(n,i){if(1&n&&(e.TgZ(0,"td",30),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,$e,a.screenSize===a.screenSizeEnum.XS?"12rem":"25rem")),e.xp6(1),e.hij(" ",null==t?null:t.label," ")}}function wm(n,i){1&n&&(e.TgZ(0,"th",37),e._uU(1," Amount (Sats) "),e.qZA())}function Am(n,i){if(1&n&&(e.TgZ(0,"td",38)(1,"span",39),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amount_sat||0))}}function Sm(n,i){1&n&&(e.TgZ(0,"th",37),e._uU(1," Confirmations "),e.qZA())}function Lm(n,i){if(1&n&&(e.TgZ(0,"td",38)(1,"span",39),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.confirmations||0))}}function km(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",40)(1,"div",41)(2,"mat-select",42),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",43),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Fm(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",44)(1,"div",45)(2,"mat-select",46),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",43),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onUTXOClick(s)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",43),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onLabelUTXO(s)}),e._uU(7,"Label"),e.qZA(),e.TgZ(8,"mat-option",43),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onLeaseUTXO(s)}),e._uU(9,"Lease"),e.qZA()()()()}}function Nm(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No UTXO available."),e.qZA())}function qm(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting UTXOs..."),e.qZA())}function Um(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function Om(n,i){if(1&n&&(e.TgZ(0,"td",47),e.YNc(1,Nm,2,0,"p",32),e.YNc(2,qm,2,0,"p",32),e.YNc(3,Um,2,1,"p",32),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Rm=function(n){return{"display-none":n}};function Mm(n,i){if(1&n&&e._UZ(0,"tr",48),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Rm,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Im(n,i){1&n&&e._UZ(0,"tr",49)}function Dm(n,i){1&n&&e._UZ(0,"tr",50)}function Pm(n,i){1&n&&e._UZ(0,"mat-icon",36)}const Jm=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},Em=function(){return["no_utxo"]};let Qm=(()=>{class n{constructor(t,a,o,s,r,_){this.logger=t,this.commonService=a,this.dataService=o,this.store=s,this.rtlEffects=r,this.decimalPipe=_,this.isDustUTXO=!1,this.addressType=l.x$,this.faMoneyBillWave=v.aj4,this.displayedColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["amount_sat","confirmations","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["tx_id","output","amount_sat","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["tx_id","output","label","amount_sat","confirmations","actions"]):(this.flgSticky=!0,this.displayedColumns=["tx_id","output","label","amount_sat","confirmations","actions"])}ngOnInit(){this.store.select(y.T4).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var a;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=null===(a=t.utxos)||void 0===a?void 0:a.filter(o=>+(o.amount_sat||0)<1e3),this.utxos=t.utxos,this.loadUTXOsTable(this.isDustUTXO?this.dustUtxos:this.utxos)),this.logger.info(t)})}ngOnChanges(){!this.isDustUTXO&&this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos),this.isDustUTXO&&this.dustUtxos&&this.dustUtxos.length>0&&this.loadUTXOsTable(this.dustUtxos)}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}onUTXOClick(t){var a,o;const s=[[{key:"txid",value:null===(a=t.outpoint)||void 0===a?void 0:a.txid_str,title:"Transaction ID",width:100,type:l.Gi.STRING}],[{key:"label",value:t.label,title:"Label",width:100,type:l.Gi.STRING}],[{key:"output_index",value:null===(o=t.outpoint)||void 0===o?void 0:o.output_index,title:"Output Index",width:34,type:l.Gi.NUMBER},{key:"amount_sat",value:t.amount_sat,title:"Amount (Sats)",width:33,type:l.Gi.NUMBER},{key:"confirmations",value:t.confirmations,title:"Confirmations",width:33,type:l.Gi.NUMBER}],[{key:"address_type",value:t.address_type?this.addressType[t.address_type].name:"",title:"Address Type",width:34},{key:"address",value:t.address,title:"Address",width:66}],[{key:"pk_script",value:t.pk_script,title:"PK Script",width:100,type:l.Gi.STRING}]];this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"UTXO Information",message:s}}}))}loadUTXOsTable(t){this.listUTXOs=new c.by([...t]),this.listUTXOs.filterPredicate=(a,o)=>{var s,r,_,g,C;return((a.label?a.label.toLowerCase():"")+((null===(s=a.outpoint)||void 0===s?void 0:s.txid_str)?a.outpoint.txid_str.toLowerCase():"")+((null===(r=a.outpoint)||void 0===r?void 0:r.output_index)?null===(_=a.outpoint)||void 0===_?void 0:_.output_index:"")+((null===(g=a.outpoint)||void 0===g?void 0:g.txid_bytes)?null===(C=a.outpoint)||void 0===C?void 0:C.txid_bytes.toLowerCase():"")+(a.address?a.address.toLowerCase():"")+(a.address_type?a.address_type.toLowerCase():"")+(a.amount_sat?a.amount_sat:"")+(a.confirmations?a.confirmations:"")+(a.pk_script?a.pk_script.toLowerCase():"")).includes(o)},this.listUTXOs.sortingDataAccessor=(a,o)=>{switch(o){case"tx_id":return a.outpoint.txid_str.toLocaleLowerCase();case"output":return+a.outpoint.output_index;default:return a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null}},this.listUTXOs.sort=this.sort,this.listUTXOs.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.listUTXOs.paginator=this.paginator,this.applyFilter(),this.logger.info(this.listUTXOs)}onLabelUTXO(t){this.store.dispatch((0,S.qR)({payload:{data:{utxo:t,component:hm}}}))}onLeaseUTXO(t){var a;const o=[[{key:"txid_str",value:null===(a=t.outpoint)||void 0===a?void 0:a.txid_str,title:"Transaction ID",width:100}],[{key:"amount_sat",value:this.decimalPipe.transform(t.amount_sat),title:"Amount (Sats)",width:100}]];t.label&&o.splice(1,0,[{key:"label",value:t.label,title:"Label",width:100}]),this.store.dispatch((0,S.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Lease UTXO",informationMessage:"The UTXO will be leased for 10 minutes.",message:o,noBtnText:"Cancel",yesBtnText:"Lease UTXO"}}})),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[0])).subscribe(s=>{var r,_;s&&this.dataService.leaseUTXO((null===(r=t.outpoint)||void 0===r?void 0:r.txid_bytes)||"",(null===(_=t.outpoint)||void 0===_?void 0:_.output_index)||0)})}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(ee.D),e.Y36(L.yh),e.Y36(le.V),e.Y36(p.JJ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},inputs:{isDustUTXO:"isDustUTXO"},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("UTXOs")}]),e.TTD],decls:35,vars:14,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","tx_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["matColumnDef","amount_sat"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","pl-3",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["emptySpace",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["fxLayout","row"],[4,"ngIf"],[1,"ellipsis-child"],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-cell",""],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"input",3),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(4,"div",4)(5,"div",5),e.YNc(6,gm,1,0,"mat-progress-bar",6),e.TgZ(7,"table",7,8),e.ynx(9,9),e.YNc(10,fm,2,0,"th",10),e.YNc(11,ym,5,5,"td",11),e.BQk(),e.ynx(12,12),e.YNc(13,Tm,2,0,"th",13),e.YNc(14,vm,3,1,"td",14),e.BQk(),e.ynx(15,15),e.YNc(16,bm,2,0,"th",10),e.YNc(17,Zm,2,4,"td",11),e.BQk(),e.ynx(18,16),e.YNc(19,wm,2,0,"th",13),e.YNc(20,Am,4,3,"td",14),e.BQk(),e.ynx(21,17),e.YNc(22,Sm,2,0,"th",13),e.YNc(23,Lm,4,3,"td",14),e.BQk(),e.ynx(24,18),e.YNc(25,km,6,0,"th",19),e.YNc(26,Fm,10,0,"td",20),e.BQk(),e.ynx(27,21),e.YNc(28,Om,4,3,"td",22),e.BQk(),e.YNc(29,Mm,1,3,"tr",23),e.YNc(30,Im,1,0,"tr",24),e.YNc(31,Dm,1,0,"tr",25),e.qZA(),e._UZ(32,"mat-paginator",26),e.qZA()()(),e.YNc(33,Pm,1,0,"ng-template",null,27,e.W1O)),2&t&&(e.xp6(3),e.Q6J("ngModel",a.selFilter),e.xp6(3),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.listUTXOs)("ngClass",e.VKq(11,Jm,""!==a.errorMessage)),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(13,Em)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.yH,d.Wh,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,j.gM,te.Hw,R.gD,R.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-label[_ngcontent-%COMP%]{padding-left:1rem;flex:1 1 15%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-tx_id[_ngcontent-%COMP%]{flex:1 1 15%}.mat-column-tx_id[_ngcontent-%COMP%] .ellipsis-child[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();function Ym(n,i){1&n&&e._UZ(0,"mat-progress-bar",28)}function Hm(n,i){1&n&&(e.TgZ(0,"th",29),e._uU(1," Date/Time "),e.qZA())}function Bm(n,i){if(1&n&&(e.TgZ(0,"td",30),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function Vm(n,i){1&n&&(e.TgZ(0,"th",29),e._uU(1," Label "),e.qZA())}const Gm=function(n){return{"max-width":n}};function zm(n,i){if(1&n&&(e.TgZ(0,"td",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,Gm,a.screenSize===a.screenSizeEnum.XS?"12rem":"25rem")),e.xp6(1),e.hij(" ",null==t?null:t.label," ")}}function Wm(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1," Amount (Sats) "),e.qZA())}function Xm(n,i){if(1&n&&(e.TgZ(0,"span",35),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Oqu(e.lcZ(2,1,t.amount))}}function $m(n,i){if(1&n&&(e.TgZ(0,"span",36),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.hij("(",e.lcZ(2,1,-1*t.amount),")")}}function jm(n,i){if(1&n&&(e.TgZ(0,"td",30),e.YNc(1,Xm,3,3,"span",33),e.YNc(2,$m,3,3,"span",34),e.qZA()),2&n){const t=i.$implicit;e.xp6(1),e.Q6J("ngIf",t.amount>0||0===t.amount),e.xp6(1),e.Q6J("ngIf",t.amount<0)}}function Km(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1," Fees (Sats) "),e.qZA())}function ed(n,i){if(1&n&&(e.TgZ(0,"td",30)(1,"span",35),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_fees))}}function td(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1," Block Height "),e.qZA())}function nd(n,i){if(1&n&&(e.TgZ(0,"td",30)(1,"span",35),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.block_height))}}function ad(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1," Confirmations "),e.qZA())}function id(n,i){if(1&n&&(e.TgZ(0,"td",30)(1,"span",35),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.num_confirmations)," ")}}function od(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"th",37)(1,"div",38)(2,"mat-select",39),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",40),e.NdJ("click",function(){return e.CHM(t),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function sd(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",41)(1,"button",42),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onTransactionClick(s)}),e._uU(2,"View Info"),e.qZA()()}}function ld(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No transaction available."),e.qZA())}function rd(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting transactions..."),e.qZA())}function cd(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function ud(n,i){if(1&n&&(e.TgZ(0,"td",43),e.YNc(1,ld,2,0,"p",44),e.YNc(2,rd,2,0,"p",44),e.YNc(3,cd,2,1,"p",44),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const pd=function(n){return{"display-none":n}};function md(n,i){if(1&n&&e._UZ(0,"tr",45),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,pd,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function dd(n,i){1&n&&e._UZ(0,"tr",46)}function _d(n,i){1&n&&e._UZ(0,"tr",47)}const hd=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},gd=function(){return["no_transaction"]};let fd=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.commonService=a,this.store=o,this.datePipe=s,this.faHistory=v.qO$,this.displayedColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["time_stamp","amount","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["time_stamp","amount","num_confirmations","total_fees","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["time_stamp","label","amount","total_fees","num_confirmations","actions"]):(this.flgSticky=!0,this.displayedColumns=["time_stamp","label","amount","total_fees","block_height","num_confirmations","actions"])}ngOnInit(){this.store.select(y.dx).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.transactions&&t.transactions.length>0&&(this.transactions=t.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(t)})}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}onTransactionClick(t){this.store.dispatch((0,S.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:t.block_hash,title:"Block Hash",width:100}],[{key:"tx_hash",value:t.tx_hash,title:"Transaction Hash",width:100}],[{key:"label",value:t.label,title:"Label",width:100,type:l.Gi.STRING}],[{key:"time_stamp",value:t.time_stamp,title:"Date/Time",width:50,type:l.Gi.DATE_TIME},{key:"block_height",value:t.block_height,title:"Block Height",width:50,type:l.Gi.NUMBER}],[{key:"num_confirmations",value:t.num_confirmations,title:"Number of Confirmations",width:34,type:l.Gi.NUMBER},{key:"total_fees",value:t.total_fees,title:"Total Fees (Sats)",width:33,type:l.Gi.NUMBER},{key:"amount",value:t.amount,title:"Amount (Sats)",width:33,type:l.Gi.NUMBER}],[{key:"dest_addresses",value:t.dest_addresses,title:"Destination Addresses",width:100,type:l.Gi.ARRAY}]],scrollable:t.dest_addresses&&t.dest_addresses.length>5}}}))}loadTransactionsTable(t){this.listTransactions=new c.by([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.listTransactions.filterPredicate=(a,o)=>{var s;return((a.time_stamp?null===(s=this.datePipe.transform(new Date(1e3*a.time_stamp),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(a).toLowerCase()).includes(o)},this.listTransactions.paginator=this.paginator,this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh),e.Y36(p.uU))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Transactions")}]),e.TTD],decls:36,vars:14,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","time_stamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_fees"],["matColumnDef","block_height"],["matColumnDef","num_confirmations"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"input",3),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(4,"div",4)(5,"div",5),e.YNc(6,Ym,1,0,"mat-progress-bar",6),e.TgZ(7,"table",7,8),e.ynx(9,9),e.YNc(10,Hm,2,0,"th",10),e.YNc(11,Bm,3,4,"td",11),e.BQk(),e.ynx(12,12),e.YNc(13,Vm,2,0,"th",10),e.YNc(14,zm,2,4,"td",13),e.BQk(),e.ynx(15,14),e.YNc(16,Wm,2,0,"th",15),e.YNc(17,jm,3,2,"td",11),e.BQk(),e.ynx(18,16),e.YNc(19,Km,2,0,"th",15),e.YNc(20,ed,4,3,"td",11),e.BQk(),e.ynx(21,17),e.YNc(22,td,2,0,"th",15),e.YNc(23,nd,4,3,"td",11),e.BQk(),e.ynx(24,18),e.YNc(25,ad,2,0,"th",15),e.YNc(26,id,4,3,"td",11),e.BQk(),e.ynx(27,19),e.YNc(28,od,6,0,"th",20),e.YNc(29,sd,3,0,"td",21),e.BQk(),e.ynx(30,22),e.YNc(31,ud,4,3,"td",23),e.BQk(),e.YNc(32,md,1,3,"tr",24),e.YNc(33,dd,1,0,"tr",25),e.YNc(34,_d,1,0,"tr",26),e.qZA(),e._UZ(35,"mat-paginator",27),e.qZA()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",a.selFilter),e.xp6(3),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.listTransactions)("ngClass",e.VKq(11,hd,""!==a.errorMessage)),e.xp6(25),e.Q6J("matFooterRowDef",e.DdM(13,gd)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.yH,d.Wh,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,R.gD,R.$L,B.ey,N.lW,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.uU,p.JJ],styles:[".mat-column-label[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();function Cd(n,i){if(1&n&&(e.TgZ(0,"span",5),e._uU(1,"UTXOs"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numUtxos)}}function xd(n,i){if(1&n&&(e.TgZ(0,"span",5),e._uU(1,"Transactions"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numTransactions)}}function yd(n,i){if(1&n&&(e.TgZ(0,"span",5),e._uU(1,"Dust UTXOs"),e.qZA()),2&n){const t=e.oxw();e.s9C("matBadge",t.numDustUtxos)}}let Td=(()=>{class n{constructor(t,a){this.logger=t,this.store=a,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.vpe,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new m.x,new m.x,new m.x]}ngOnInit(){this.store.dispatch((0,w.mC)()),this.store.dispatch((0,w.Ly)()),this.store.select(y.T4).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var a;t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=null===(a=t.utxos)||void 0===a?void 0:a.filter(o=>o.amount_sat&&+o.amount_sat<1e3).length),this.logger.info(t)}),this.store.select(y.dx).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{t.transactions&&t.transactions.length>0&&(this.numTransactions=t.transactions.length),this.logger.info(t)})}onSelectedIndexChanged(t){this.selectedTableIndexChange.emit(t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},decls:11,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box"],[3,"selectedIndex","selectedIndexChange"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"mat-tab-group",1),e.NdJ("selectedIndexChange",function(s){return a.onSelectedIndexChanged(s)}),e.TgZ(2,"mat-tab"),e.YNc(3,Cd,2,1,"ng-template",2),e._UZ(4,"rtl-on-chain-utxos",3),e.qZA(),e.TgZ(5,"mat-tab"),e.YNc(6,xd,2,1,"ng-template",2),e._UZ(7,"rtl-on-chain-transaction-history",4),e.qZA(),e.TgZ(8,"mat-tab"),e.YNc(9,yd,2,1,"ng-template",2),e._UZ(10,"rtl-on-chain-utxos",3),e.qZA()()()),2&t&&(e.xp6(1),e.Q6J("selectedIndex",a.selectedTableIndex),e.xp6(3),e.Q6J("isDustUTXO",!1),e.xp6(6),e.Q6J("isDustUTXO",!0))},directives:[d.xw,d.yH,d.Wh,P.SP,P.uX,P.uD,Ce.k,Qm,fd],styles:[""]}),n})();const vd=function(n,i){return[n,i]};function bd(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",12),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=null==s?null:s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.Q6J("active",a.activeLink===(null==t?null:t.link))("routerLink",e.WLB(3,vd,null==t?null:t.link,null==a.selectedTable?null:a.selectedTable.name)),e.xp6(1),e.Oqu(null==t?null:t.name)}}let Zd=(()=>{class n{constructor(t,a,o){this.store=t,this.router=a,this.activatedRoute=o,this.selNode={},this.faExchangeAlt=v.Ssp,this.faChartPie=v.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"trans"},{id:2,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new m.x,new m.x,new m.x,new m.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(a=>a.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link,this.selectedTable=this.tables.find(s=>s.name===a.urlAfterRedirects.substring(a.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(y.qU).pipe((0,h.R)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:a.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:a.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(a=>a.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh),e.Y36(b.F0),e.Y36(b.gz))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain"]],decls:21,vars:5,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndex","selectedTableIndexChange"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"On-chain Balance"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e._UZ(7,"rtl-currency-unit-converter",5),e.qZA()()(),e.TgZ(8,"div",0),e._UZ(9,"fa-icon",1),e.TgZ(10,"span",2),e._uU(11,"On-chain Transactions"),e.qZA()(),e.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",7),e.YNc(16,bd,2,6,"div",8),e.qZA(),e.TgZ(17,"div",9),e._UZ(18,"router-outlet"),e.qZA(),e.TgZ(19,"div",10)(20,"rtl-utxo-tables",11),e.NdJ("selectedTableIndexChange",function(s){return a.onSelectedTableIndexChanged(s)}),e.qZA()()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faChartPie),e.xp6(6),e.Q6J("values",a.balances),e.xp6(2),e.Q6J("icon",a.faExchangeAlt),e.xp6(7),e.Q6J("ngForOf",a.links),e.xp6(4),e.Q6J("selectedTableIndex",null==a.selectedTable?null:a.selectedTable.id))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,fe.D,P.BU,p.sg,P.Nj,b.rH,d.yH,b.lC,Td],styles:[""]}),n})();var wd=f(9122);function Ad(n,i){if(1&n&&(e.TgZ(0,"mat-option",7),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",t.addressTp," ")}}let Sd=(()=>{class n{constructor(t,a){this.store=t,this.lndEffects=a,this.addressTypes=l._t,this.selectedAddressType=l._t[0],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,w._E)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,z.q)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,S.qR)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:wd.n}}}))},0)})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh),e.Y36(ne.l))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-receive"]],decls:8,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start end"],["fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["placeholder","Address Type","name","address_type","tabindex","1",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],[1,"mt-2"],["mat-flat-button","","color","primary","tabindex","2",1,"top-minus-15px",3,"click"],[3,"value"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-select",3),e.NdJ("ngModelChange",function(s){return a.selectedAddressType=s}),e.YNc(4,Ad,2,2,"mat-option",4),e.qZA()(),e.TgZ(5,"div",5)(6,"button",6),e.NdJ("click",function(){return a.onGenerateAddress()}),e._uU(7,"Generate Address"),e.qZA()()()()),2&t&&(e.xp6(3),e.Q6J("ngModel",a.selectedAddressType),e.xp6(1),e.Q6J("ngForOf",a.addressTypes))},directives:[d.xw,d.Wh,x.KE,d.yH,R.gD,u.JJ,u.On,p.sg,B.ey,N.lW],styles:[""]}),n})();var Ld=f(8012),je=f(8377);const kd=["form"],Fd=["formSweepAll"],Nd=["stepper"];function qd(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Bitcoin address is required."),e.qZA())}function Ud(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.amountError)}}function Od(n,i){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(t)}}function Rd(n,i){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Md(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function Id(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",23)(1,"input",32,33),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).transactionBlocks=o}),e.qZA(),e.YNc(3,Md,2,0,"mat-error",14),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.transactionBlocks)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.transactionBlocks)}}function Dd(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function Pd(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",23)(1,"input",34,35),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw(2).transactionFees=o}),e.qZA(),e.YNc(3,Dd,2,0,"mat-error",14),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngModel",t.transactionFees)("step",1)("min",0),e.xp6(2),e.Q6J("ngIf",!t.transactionFees)}}function Jd(n,i){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.sendFundError)}}function Ed(n,i){if(1&n&&(e.TgZ(0,"div",36),e._UZ(1,"fa-icon",37),e.YNc(2,Jd,2,1,"span",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.sendFundError)}}function Qd(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"form",9,10),e.NdJ("submit",function(){return e.CHM(t),e.oxw().onSendFunds()})("reset",function(){return e.CHM(t),e.oxw().resetData()}),e.TgZ(2,"mat-form-field",11)(3,"input",12,13),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().transactionAddress=o}),e.qZA(),e.YNc(5,qd,2,0,"mat-error",14),e.qZA(),e.TgZ(6,"mat-form-field",15)(7,"input",16,17),e.NdJ("ngModelChange",function(o){return e.CHM(t),e.oxw().transactionAmount=o}),e.qZA(),e.TgZ(9,"span",18),e._uU(10),e.qZA(),e.YNc(11,Ud,2,1,"mat-error",14),e.qZA(),e.TgZ(12,"mat-form-field",19)(13,"mat-select",20),e.NdJ("selectionChange",function(o){return e.CHM(t),e.oxw().onAmountUnitChange(o)}),e.YNc(14,Od,2,2,"mat-option",21),e.qZA()(),e.TgZ(15,"div",22)(16,"mat-form-field",23)(17,"mat-select",24),e.NdJ("valueChange",function(o){return e.CHM(t),e.oxw().selTransType=o}),e.YNc(18,Rd,2,2,"mat-option",21),e.qZA()(),e.YNc(19,Id,4,4,"mat-form-field",25),e.YNc(20,Pd,4,4,"mat-form-field",25),e.qZA(),e._UZ(21,"div",26),e.YNc(22,Ed,3,2,"div",27),e.TgZ(23,"div",28)(24,"button",29),e._uU(25,"Clear Fields"),e.qZA(),e.TgZ(26,"button",30),e._uU(27,"Send Funds"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.transactionAddress),e.xp6(2),e.Q6J("ngIf",!t.transactionAddress),e.xp6(2),e.Q6J("ngModel",t.transactionAmount)("step",100)("min",0),e.xp6(3),e.hij(" ",t.selAmountUnit," "),e.xp6(1),e.Q6J("ngIf",!t.transactionAmount),e.xp6(2),e.Q6J("value",t.selAmountUnit),e.xp6(1),e.Q6J("ngForOf",t.amountUnits),e.xp6(3),e.Q6J("value",t.selTransType),e.xp6(1),e.Q6J("ngForOf",t.transTypes),e.xp6(1),e.Q6J("ngIf","1"===t.selTransType),e.xp6(1),e.Q6J("ngIf","2"===t.selTransType),e.xp6(2),e.Q6J("ngIf",""!==t.sendFundError)}}function Yd(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw(3);e.Oqu(t.passwordFormLabel)}}function Hd(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function Bd(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"mat-step",42)(1,"form",61),e.YNc(2,Yd,1,1,"ng-template",55),e.TgZ(3,"div",0)(4,"mat-form-field",1),e._UZ(5,"input",62),e.YNc(6,Hd,2,0,"mat-error",14),e.qZA()(),e.TgZ(7,"div",63)(8,"button",64),e.NdJ("click",function(){return e.CHM(t),e.oxw(2).onAuthenticate()}),e._uU(9,"Confirm"),e.qZA()()()()}if(2&n){const t=e.oxw(2);e.Q6J("stepControl",t.passwordFormGroup)("editable",t.flgEditable),e.xp6(1),e.Q6J("formGroup",t.passwordFormGroup),e.xp6(5),e.Q6J("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function Vd(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.sendFundFormLabel)}}function Gd(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Bitcoin address is required."),e.qZA())}function zd(n,i){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Wd(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function Xd(n,i){if(1&n&&(e.TgZ(0,"mat-form-field",65),e._UZ(1,"input",66),e.YNc(2,Wd,2,0,"mat-error",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("step",1)("min",0),e.xp6(1),e.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionBlocks.errors?null:t.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function $d(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function jd(n,i){if(1&n&&(e.TgZ(0,"mat-form-field",65),e._UZ(1,"input",67),e.YNc(2,$d,2,0,"mat-error",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("step",1)("min",0),e.xp6(1),e.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionFees.errors?null:t.sendFundFormGroup.controls.transactionFees.errors.required)}}function Kd(n,i){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.confirmFormLabel)}}function e_(n,i){if(1&n&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Oqu(t.sendFundError)}}function t_(n,i){if(1&n&&(e.TgZ(0,"div",36),e._UZ(1,"fa-icon",37),e.YNc(2,e_,2,1,"span",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("icon",t.faExclamationTriangle),e.xp6(1),e.Q6J("ngIf",""!==t.sendFundError)}}function n_(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",38)(1,"mat-vertical-stepper",39,40),e.NdJ("selectionChange",function(o){return e.CHM(t),e.oxw().stepSelectionChanged(o)}),e.YNc(3,Bd,10,4,"mat-step",41),e.TgZ(4,"mat-step",42)(5,"form",43),e.YNc(6,Vd,1,1,"ng-template",44),e.TgZ(7,"div",45)(8,"mat-form-field",46),e._UZ(9,"input",47),e.YNc(10,Gd,2,0,"mat-error",14),e.qZA(),e.TgZ(11,"mat-form-field",48)(12,"mat-select",49),e.YNc(13,zd,2,2,"mat-option",21),e.qZA()(),e.YNc(14,Xd,3,3,"mat-form-field",50),e.YNc(15,jd,3,3,"mat-form-field",50),e.qZA(),e.TgZ(16,"div",51)(17,"button",52),e._uU(18,"Next"),e.qZA()()()(),e.TgZ(19,"mat-step",53)(20,"form",54),e.YNc(21,Kd,1,1,"ng-template",55),e.TgZ(22,"div",38)(23,"div",56),e._UZ(24,"fa-icon",57),e.TgZ(25,"span"),e._uU(26,"You are about to sweep all funds from RTL. Are you sure?"),e.qZA()(),e.YNc(27,t_,3,2,"div",27),e.TgZ(28,"div",51)(29,"button",58),e.NdJ("click",function(){return e.CHM(t),e.oxw().onSendFunds()}),e._uU(30,"Sweep All Funds"),e.qZA()()()()()(),e.TgZ(31,"div",59)(32,"button",60),e._uU(33),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("linear",!0),e.xp6(2),e.Q6J("ngIf",!t.appConfig.sso.rtlSSO),e.xp6(1),e.Q6J("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),e.xp6(1),e.Q6J("formGroup",t.sendFundFormGroup),e.xp6(5),e.Q6J("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),e.xp6(3),e.Q6J("ngForOf",t.transTypes),e.xp6(1),e.Q6J("ngIf","1"===t.sendFundFormGroup.controls.selTransType.value),e.xp6(1),e.Q6J("ngIf","2"===t.sendFundFormGroup.controls.selTransType.value),e.xp6(4),e.Q6J("stepControl",t.confirmFormGroup),e.xp6(1),e.Q6J("formGroup",t.confirmFormGroup),e.xp6(4),e.Q6J("icon",t.faExclamationTriangle),e.xp6(3),e.Q6J("ngIf",""!==t.sendFundError),e.xp6(5),e.Q6J("mat-dialog-close",!1),e.xp6(1),e.Oqu(t.flgValidated?"Close":"Cancel")}}let a_=(()=>{class n{constructor(t,a,o,s,r,_,g,C,I,T){this.dialogRef=t,this.data=a,this.logger=o,this.store=s,this.rtlEffects=r,this.commonService=_,this.decimalPipe=g,this.snackBar=C,this.actions=I,this.formBuilder=T,this.faExclamationTriangle=v.eHv,this.sweepAll=!1,this.selNode={},this.addressTypes=[],this.selectedAddress={},this.blockchainBalance={},this.information={},this.newAddress="",this.transactionAddress="",this.transactionAmount=null,this.transactionFees=null,this.transactionBlocks=null,this.transTypes=[{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],this.selTransType="1",this.fiatConversion=!1,this.amountUnits=l.uA,this.selAmountUnit=l.uA[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.Xz,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x]}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[u.kI.required]],password:["",[u.kI.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",u.kI.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",u.kI.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([u.kI.required]),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators(null),this.sendFundFormGroup.controls.transactionFees.setValue(null)):(this.sendFundFormGroup.controls.transactionBlocks.setValidators(null),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators([u.kI.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(je.Yj).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.appConfig=t}),this.store.select(je.dT).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[3]),(0,Y.h)(t=>t.type===l.uR.UPDATE_API_CALL_STATUS_LND||t.type===l.uR.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(t=>{t.type===l.uR.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,S.jW)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===l.uR.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.Bn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,S.QO)({payload:Ld(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,z.q)(1)).subscribe(t=>{"ERROR"!==t?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="";const t={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(t.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(t.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(t.fees=this.sendFundFormGroup.controls.transactionFees.value)):(t.address=this.transactionAddress,"1"===this.selTransType&&(t.blocks=this.transactionBlocks),"2"===this.selTransType&&(t.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==l.NT.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?l.NT.OTHER:this.selAmountUnit,l.NT.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,h.R)(this.unSubs[4])).subscribe({next:a=>{var o;this.selAmountUnit=l.NT.SATS,t.amount=+((null===(o=this.decimalPipe.transform(a[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]]))||void 0===o?void 0:o.replace(/,/g,""))||0),this.store.dispatch((0,w.Wi)({payload:t}))},error:a=>{this.transactionAmount=null,this.selAmountUnit=l.NT.SATS,this.amountError="Conversion Error: "+a}}):this.store.dispatch((0,w.Wi)({payload:t}))}get invalidValues(){return this.sweepAll?!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||"1"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionBlocks.value||this.sendFundFormGroup.controls.transactionBlocks.value<=0)||"2"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionFees.value||this.sendFundFormGroup.controls.transactionFees.value<=0):!this.transactionAddress||""===this.transactionAddress||!this.transactionAmount||this.transactionAmount<=0||"1"===this.selTransType&&(!this.transactionBlocks||this.transactionBlocks<=0)||"2"===this.selTransType&&(!this.transactionFees||this.transactionFees<=0)}resetData(){this.sendFundError="",this.selTransType="1",this.transactionAddress="",this.transactionBlocks=null,this.transactionFees=null,this.sweepAll||(this.transactionAmount=null)}stepSelectionChanged(t){switch(this.sendFundError="",t.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+" | "+this.transTypes[this.sendFundFormGroup.controls.selTransType.value-1].name+("2"===this.sendFundFormGroup.controls.selTransType.value?" (Sats/vByte)":"")+": "+("1"===this.sendFundFormGroup.controls.selTransType.value?this.sendFundFormGroup.controls.transactionBlocks.value:this.sendFundFormGroup.controls.transactionFees.value)}t.selectedIndex{var g;this.selAmountUnit=t.value,a.transactionAmount=+((null===(g=a.decimalPipe.transform(_[s],a.currencyUnitFormats[s]))||void 0===g?void 0:g.replace(/,/g,""))||0)},error:_=>{a.transactionAmount=null,this.amountError="Conversion Error: "+_,this.selAmountUnit=o,s=o}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(E.so),e.Y36(E.WI),e.Y36(U.mQ),e.Y36(L.yh),e.Y36(le.V),e.Y36(O.v),e.Y36(p.JJ),e.Y36(ae.ux),e.Y36(W.eX),e.Y36(u.qu))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(t,a){if(1&t&&(e.Gf(kd,7),e.Gf(Fd,5),e.Gf(Nd,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.form=o.first),e.iGM(o=e.CRH())&&(a.formSweepAll=o.first),e.iGM(o=e.CRH())&&(a.stepper=o.first)}},decls:12,vars:4,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["sweepAllBlock",""],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex.gt-sm","55"],["autoFocus","","matInput","","placeholder","Bitcoin Address","tabindex","1","name","address","required","",3,"ngModel","ngModelChange"],["address","ngModel"],[4,"ngIf"],["fxFlex.gt-sm","30"],["matInput","","placeholder","Amount","name","amt","type","number","tabindex","2","required","",3,"ngModel","step","min","ngModelChange"],["amnt","ngModel"],["matSuffix",""],["fxFlex.gt-sm","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","60","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","48"],["tabindex","4",3,"value","valueChange"],["fxFlex","48",4,"ngIf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["matInput","","placeholder","Number of Blocks","type","number","name","blcks","required","","tabindex","5",3,"ngModel","step","min","ngModelChange"],["blocks","ngModel"],["matInput","","placeholder","Fees (Sats/vByte)","type","number","name","chainFees","required","","tabindex","6",3,"ngModel","step","min","ngModelChange"],["fees","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","98","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","placeholder","Bitcoin Address","tabindex","4","name","address","required",""],["fxFlex.gt-sm","25"],["formControlName","selTransType","tabindex","5"],["fxFlex.gt-sm","25","fxLayoutAlign","start end",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","button","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","placeholder","Password","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxFlex.gt-sm","25","fxLayoutAlign","start end"],["matInput","","formControlName","transactionBlocks","placeholder","Number of Blocks","type","number","name","blcks","required","","tabindex","6",3,"step","min"],["matInput","","formControlName","transactionFees","placeholder","Fees (Sats/vByte)","type","number","name","chainFees","required","","tabindex","7",3,"step","min"]],template:function(t,a){if(1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6),e.YNc(9,Qd,28,14,"form",7),e.qZA()()(),e.YNc(10,n_,34,15,"ng-template",null,8,e.W1O)),2&t){const o=e.MAs(11);e.xp6(5),e.Oqu(a.sweepAll?"Sweep All Funds":"Send Funds"),e.xp6(1),e.Q6J("mat-dialog-close",!1),e.xp6(3),e.Q6J("ngIf",!a.sweepAll)("ngIfElse",o)}},directives:[d.xw,d.yH,Z.dk,d.Wh,N.lW,E.ZT,Z.dn,p.O5,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,$.h,u.Q7,u.JJ,u.On,x.TO,u.wV,u.qQ,K.q,x.R9,R.gD,p.sg,B.ey,D.BN,G.Vq,G.C0,u.sg,G.VY,u.u,G.Ic],styles:[""]}),n})(),Ke=(()=>{class n{constructor(t,a){this.store=t,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new m.x,new m.x]}ngOnInit(){this.activatedRoute.data.pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,S.qR)({payload:{data:{sweepAll:this.sweepAll,component:a_}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(L.yh),e.Y36(b.gz))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return a.openSendFundsModal()}),e._uU(3),e.qZA()()()),2&t&&(e.xp6(3),e.Oqu(a.sweepAll?"Sweep All":"Send Funds"))},directives:[d.xw,d.yH,d.Wh,N.lW],styles:[""]}),n})();function i_(n,i){1&n&&e._UZ(0,"mat-progress-bar",26)}function o_(n,i){if(1&n&&e._UZ(0,"rtl-node-info",27),2&n){const t=e.oxw(3);e.Q6J("information",t.information)("showColorFieldSeparately",!0)}}function s_(n,i){if(1&n&&e._UZ(0,"rtl-channel-status-info",28),2&n){const t=e.oxw(3);e.Q6J("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function l_(n,i){if(1&n&&e._UZ(0,"rtl-fee-info",29),2&n){const t=e.oxw(3);e.Q6J("fees",t.fees)("errorMessage",t.errorMessages[2])}}const et=function(n){return{"dashboard-card-content":!0,"error-border":n}};function r_(n,i){if(1&n&&(e.TgZ(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e._UZ(4,"fa-icon",17),e.TgZ(5,"span"),e._uU(6),e.qZA()()(),e.TgZ(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.YNc(10,i_,1,0,"mat-progress-bar",21),e.TgZ(11,"div",22),e.YNc(12,o_,1,2,"rtl-node-info",23),e.YNc(13,s_,1,2,"rtl-channel-status-info",24),e.YNc(14,l_,1,2,"rtl-fee-info",25),e.qZA()()()()()()),2&n){const t=i.$implicit,a=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(4),e.Q6J("icon",t.icon),e.xp6(2),e.Oqu(t.title),e.xp6(3),e.Q6J("ngClass",e.VKq(10,et,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR)),e.xp6(1),e.Q6J("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","node"),e.xp6(1),e.Q6J("ngSwitchCase","status"),e.xp6(1),e.Q6J("ngSwitchCase","fee")}}function c_(n,i){if(1&n&&(e.TgZ(0,"mat-grid-list",11),e.YNc(1,r_,15,12,"mat-grid-tile",12),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngForOf",t.nodeCards)}}function u_(n,i){1&n&&e._UZ(0,"mat-progress-bar",26)}function p_(n,i){1&n&&e.GkF(0)}function m_(n,i){if(1&n&&(e.TgZ(0,"div",33),e.YNc(1,p_,1,0,"ng-container",34),e.qZA()),2&n){const t=e.oxw(2),a=e.MAs(9),o=e.MAs(11);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:o)}}function d_(n,i){1&n&&e.GkF(0)}function __(n,i){if(1&n&&(e.TgZ(0,"div",33),e.YNc(1,d_,1,0,"ng-container",34),e.qZA()),2&n){const t=e.oxw(2),a=e.MAs(9),o=e.MAs(13);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:o)}}function h_(n,i){1&n&&e.GkF(0)}function g_(n,i){if(1&n&&(e.TgZ(0,"div",33),e.YNc(1,h_,1,0,"ng-container",34),e.qZA()),2&n){const t=e.oxw(2),a=e.MAs(9),o=e.MAs(15);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:o)}}function f_(n,i){if(1&n&&(e.TgZ(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",20),e.YNc(3,u_,1,0,"mat-progress-bar",21),e.TgZ(4,"div",22),e.YNc(5,m_,2,1,"div",32),e.YNc(6,__,2,1,"div",32),e.YNc(7,g_,2,1,"div",32),e.qZA()()()()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(2),e.Q6J("ngClass",e.VKq(8,et,a.apiCallStatusNetwork.status===a.apiCallStatusEnum.ERROR)),e.xp6(1),e.Q6J("ngIf",a.apiCallStatusNetwork.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngSwitch",t.id),e.xp6(1),e.Q6J("ngSwitchCase","general"),e.xp6(1),e.Q6J("ngSwitchCase","channels"),e.xp6(1),e.Q6J("ngSwitchCase","degrees")}}function C_(n,i){if(1&n&&(e.TgZ(0,"div",35)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessages[1])}}function x_(n,i){if(1&n&&(e.TgZ(0,"div",36)(1,"div")(2,"h4",37),e._uU(3,"Network Capacity"),e.qZA(),e.TgZ(4,"div",38),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",37),e._uU(9,"Number of Nodes"),e.qZA(),e.TgZ(10,"div",38),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div")(14,"h4",37),e._uU(15,"Number of Channels"),e.qZA(),e.TgZ(16,"span",38),e._uU(17),e.ALo(18,"number"),e.qZA()()()),2&n){const t=e.oxw();e.xp6(5),e.hij("",e.lcZ(6,3,t.networkInfo.total_network_capacity)," Sats"),e.xp6(6),e.Oqu(e.lcZ(12,5,t.networkInfo.num_nodes)),e.xp6(6),e.Oqu(e.lcZ(18,7,t.networkInfo.num_channels))}}function y_(n,i){if(1&n&&(e.TgZ(0,"div",36)(1,"div")(2,"h4",37),e._uU(3,"Max Channel Size"),e.qZA(),e.TgZ(4,"div",38),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",37),e._uU(9,"Avg Channel Size"),e.qZA(),e.TgZ(10,"div",38),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div")(14,"h4",37),e._uU(15,"Min Channel Size"),e.qZA(),e.TgZ(16,"span",38),e._uU(17),e.ALo(18,"number"),e.qZA()()()),2&n){const t=e.oxw();e.xp6(5),e.Oqu(e.lcZ(6,3,t.networkInfo.max_channel_size)),e.xp6(6),e.Oqu(e.lcZ(12,5,t.networkInfo.avg_channel_size)),e.xp6(6),e.Oqu(e.lcZ(18,7,t.networkInfo.min_channel_size))}}function T_(n,i){if(1&n&&(e.TgZ(0,"div",36)(1,"div")(2,"h4",37),e._uU(3,"Max Out Degree"),e.qZA(),e.TgZ(4,"div",38),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",37),e._uU(9,"Avg Out Degree"),e.qZA(),e.TgZ(10,"div",38),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div",39),e._UZ(14,"h4",37)(15,"span",38),e.qZA()()),2&n){const t=e.oxw();e.xp6(5),e.Oqu(e.lcZ(6,2,t.networkInfo.max_out_degree)),e.xp6(6),e.Oqu(e.xi3(12,4,t.networkInfo.avg_out_degree,"1.0-2"))}}const v_=function(n){return{"mt-1":n}};let b_=(()=>{class n{constructor(t,a,o){this.logger=t,this.commonService=a,this.store=o,this.faProjectDiagram=v.TmZ,this.faBolt=v.BDt,this.faServer=v.xf3,this.faNetworkWired=v.kXW,this.selNode={},this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=l.cu,this.userPersonaEnum=l.ol,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.networkCards=[{id:"general",cols:3,rows:1},{id:"channels",cols:3,rows:1},{id:"degrees",cols:3,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:3,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:3,rows:1}]):(this.networkCards=[{id:"general",cols:1,rows:1},{id:"channels",cols:1,rows:1},{id:"degrees",cols:1,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:1,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:1,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:1,rows:1}])}ngOnInit(){this.store.select(y.bx).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=t.nodeSettings,this.information=t.information}),this.store.select(y.N7).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusNetwork=t.apiCallStatus,this.apiCallStatusNetwork.status===l.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=t.networkInfo}),this.store.select(y.JG).pipe((0,h.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.ni).pipe((0,h.R)(this.unSubs[3])).subscribe(t=>{var a,o,s,r,_;this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:null===(a=t.pendingChannelsSummary.open)||void 0===a?void 0:a.num_channels,capacity:null===(o=t.pendingChannelsSummary.open)||void 0===o?void 0:o.limbo_balance},this.channelsStatus.closing={num_channels:((null===(s=t.pendingChannelsSummary.closing)||void 0===s?void 0:s.num_channels)||0)+((null===(r=t.pendingChannelsSummary.force_closing)||void 0===r?void 0:r.num_channels)||0)+((null===(_=t.pendingChannelsSummary.waiting_close)||void 0===_?void 0:_.num_channels)||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.logger.info(t)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-network-info"]],decls:16,vars:6,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","3","rowHeight","330px",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container",3,"ngClass"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","3","rowHeight","250px"],["fxLayout","row",3,"colspan","rowspan",4,"ngFor","ngForOf"],["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["cols","3","rowHeight","330px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxLayout","row",3,"colspan","rowspan"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","h-93"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100"],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,c_,2,1,"mat-grid-list",1),e.TgZ(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span",4),e._uU(5,"Network"),e.qZA()(),e.TgZ(6,"mat-grid-list",5),e.YNc(7,f_,8,10,"mat-grid-tile",6),e.qZA()(),e.YNc(8,C_,3,1,"ng-template",null,7,e.W1O),e.YNc(10,x_,19,9,"ng-template",null,8,e.W1O),e.YNc(12,y_,19,9,"ng-template",null,9,e.W1O),e.YNc(14,T_,16,7,"ng-template",null,10,e.W1O)),2&t&&(e.xp6(1),e.Q6J("ngIf",a.selNode.userPersona!==a.userPersonaEnum.OPERATOR),e.xp6(1),e.Q6J("ngClass",e.VKq(4,v_,a.screenSize!==a.screenSizeEnum.XS)),e.xp6(1),e.Q6J("icon",a.faProjectDiagram),e.xp6(4),e.Q6J("ngForOf",a.networkCards))},directives:[d.xw,d.Wh,p.O5,ue.Il,p.sg,ue.DX,d.yH,D.BN,Z.a8,Z.dn,p.mk,k.oO,J.pW,p.RF,p.n9,Ue,Re,Oe,p.tP],pipes:[p.JJ],styles:[""]}),n})();function Z_(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",a.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let w_=(()=>{class n{constructor(t){this.router=t,this.faDownload=v.q7m,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new m.x,new m.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-backup"]],decls:11,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Channels Backup"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,Z_,2,3,"div",6),e.qZA(),e.TgZ(9,"div",7),e._UZ(10,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faDownload),e.xp6(7),e.Q6J("ngForOf",a.links))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,P.BU,p.sg,P.Nj,b.rH,d.yH,b.lC],styles:[""]}),n})();function A_(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",23)(1,"h4",24),e._uU(2),e.qZA(),e.TgZ(3,"div",25)(4,"button",26),e.NdJ("click",function(){return e.CHM(t),e.oxw().onRestoreChannels({})}),e._uU(5,"Restore All"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function S_(n,i){if(1&n&&(e.TgZ(0,"div",27)(1,"h4",24),e._uU(2),e.qZA(),e.TgZ(3,"h4",28),e._uU(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function L_(n,i){if(1&n&&(e.TgZ(0,"div",27)(1,"h4",24),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function k_(n,i){1&n&&e._UZ(0,"mat-progress-bar",29)}function F_(n,i){1&n&&(e.TgZ(0,"th",30),e._uU(1," Channel Point "),e.qZA())}const N_=function(n){return{"max-width":n}};function q_(n,i){if(1&n&&(e.TgZ(0,"td",31),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,N_,a.screenSize===a.screenSizeEnum.XS?"10rem":"45rem")),e.xp6(1),e.Oqu(null==t?null:t.channel_point)}}function U_(n,i){1&n&&(e.TgZ(0,"th",32)(1,"span",33),e._uU(2,"Actions"),e.qZA()())}function O_(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",34)(1,"span",33)(2,"button",35),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onRestoreChannels(s)}),e._uU(3,"Restore"),e.qZA()()()}}function R_(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No singular channel backups available."),e.qZA())}function M_(n,i){if(1&n&&(e.TgZ(0,"td",36),e.YNc(1,R_,2,0,"p",37),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",!t.channels||!t.channels.data||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)}}const I_=function(n){return{"display-none":n}};function D_(n,i){if(1&n&&e._UZ(0,"tr",38),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,I_,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function P_(n,i){1&n&&e._UZ(0,"tr",39)}function J_(n,i){1&n&&e._UZ(0,"tr",40)}const E_=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},Q_=function(){return["no_channel"]};let Y_=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.store=a,this.lndEffects=o,this.commonService=s,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.selNode={},this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.allRestoreExists=!1,this.flgLoading=[!0],this.flgSticky=!1,this.selFilter="",this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,w.tb)()),this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.allRestoreExists=t.all_restore_exists,this.channelsData=t.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||t&&t.files)&&(this.flgLoading[0]=!1),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(t){this.store.dispatch((0,w.vV)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(t){this.channels=new c.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.channels.filterPredicate=(a,o)=>JSON.stringify(a).toLowerCase().includes(o),this.channels.paginator=this.paginator,this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(ne.l),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Channels")}])],decls:24,vars:17,consts:[["fxLayout","column",1,"mt-2"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pr-3",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100"],["fxLayout","row",1,"mt-2"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap"],["fxFlex","100",1,"mt-1"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","",1,"pr-3"],["fxLayoutAlign","end center"],["mat-cell",""],["mat-stroked-button","","color","primary","type","button","tabindex","1",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,A_,6,1,"div",1),e.YNc(2,S_,5,1,"div",2),e.YNc(3,L_,3,1,"div",2),e.TgZ(4,"div",3),e._UZ(5,"div",4),e.TgZ(6,"mat-form-field",5)(7,"input",6),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(8,"div",7),e.YNc(9,k_,1,0,"mat-progress-bar",8),e.TgZ(10,"table",9,10),e.ynx(12,11),e.YNc(13,F_,2,0,"th",12),e.YNc(14,q_,2,4,"td",13),e.BQk(),e.ynx(15,14),e.YNc(16,U_,3,0,"th",15),e.YNc(17,O_,4,0,"td",16),e.BQk(),e.ynx(18,17),e.YNc(19,M_,2,1,"td",18),e.BQk(),e.YNc(20,D_,1,3,"tr",19),e.YNc(21,P_,1,0,"tr",20),e.YNc(22,J_,1,0,"tr",21),e.qZA()(),e._UZ(23,"mat-paginator",22),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",a.allRestoreExists),e.xp6(1),e.Q6J("ngIf",!a.allRestoreExists&&(!a.channels||(null==a.channels||null==a.channels.data?null:a.channels.data.length)<=0)),e.xp6(1),e.Q6J("ngIf",!a.allRestoreExists&&a.channels&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)>0),e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(2),e.Q6J("ngIf",!0===a.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",a.channels)("ngClass",e.VKq(14,E_,"error"===a.flgLoading[0])),e.xp6(10),e.Q6J("matFooterRowDef",e.DdM(16,Q_)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,p.O5,d.Wh,d.yH,N.lW,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function H_(n,i){1&n&&e._UZ(0,"mat-progress-bar",31)}function B_(n,i){1&n&&(e.TgZ(0,"th",32),e._uU(1," Channel Point "),e.qZA())}const V_=function(n){return{"max-width":n}};function G_(n,i){if(1&n&&(e.TgZ(0,"td",33),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("ngStyle",e.VKq(2,V_,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(null==t?null:t.channel_point)}}function z_(n,i){1&n&&(e.TgZ(0,"th",34)(1,"span",35),e._uU(2,"Actions"),e.qZA()())}function W_(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",36)(1,"div",37)(2,"mat-select",38),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",39),e.NdJ("click",function(o){const r=e.CHM(t).$implicit;return e.oxw().onChannelClick(r,o)}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",39),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onBackupChannels(s)}),e._uU(7,"Backup"),e.qZA(),e.TgZ(8,"mat-option",39),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onDownloadBackup(s)}),e._uU(9,"Download Backup"),e.qZA(),e.TgZ(10,"mat-option",39),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().onVerifyChannels(s)}),e._uU(11,"Verify"),e.qZA()()()()}}function X_(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"No channel available."),e.qZA())}function $_(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting channels..."),e.qZA())}function j_(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Oqu(t.errorMessage)}}function K_(n,i){if(1&n&&(e.TgZ(0,"td",40),e.YNc(1,X_,2,0,"p",41),e.YNc(2,$_,2,0,"p",41),e.YNc(3,j_,2,1,"p",41),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const eh=function(n){return{"display-none":n}};function th(n,i){if(1&n&&e._UZ(0,"tr",42),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,eh,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function nh(n,i){1&n&&e._UZ(0,"tr",43)}function ah(n,i){1&n&&e._UZ(0,"tr",44)}const ih=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},oh=function(){return["no_channel"]};let sh=(()=>{class n{constructor(t,a,o,s){this.logger=t,this.store=a,this.actions=o,this.commonService=s,this.faInfoCircle=v.sqG,this.faExclamationTriangle=v.eHv,this.faArchive=v.N2j,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.selNode={},this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.flgSticky=!1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$k).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.channels,this.channelsData.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,h.R)(this.unSubs[2]),(0,Y.h)(t=>t.type===l.uR.SET_CHANNELS_LND||t.type===l.pg.SHOW_FILE)).subscribe(t=>{var a;t.type===l.uR.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.pg.SHOW_FILE&&(this.commonService.downloadFile(t.payload,"channel-"+((null===(a=this.selectedChannel)||void 0===a?void 0:a.channel_point)?this.selectedChannel.channel_point:"all"),".bak",".bak"),this.selectedChannel=null)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadBackupTable(this.channelsData)}onBackupChannels(t){this.store.dispatch((0,w.Vv)({payload:{uiMessage:l.m6.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,w.Cp)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}onDownloadBackup(t){this.selectedChannel=t,this.store.dispatch((0,S.dc)({payload:{channelPoint:t.channel_point?t.channel_point:"all"}}))}onChannelClick(t,a){this.store.dispatch((0,S.qR)({payload:{data:{channel:t,showCopy:!1,component:ye}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(t){this.channels=new c.by(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,o)=>((a.active?"active":"inactive")+(a.channel_point?a.channel_point.toLowerCase():"")+(a.chan_id?a.chan_id.toLowerCase():"")+(a.remote_pubkey?a.remote_pubkey.toLowerCase():"")+(a.remote_alias?a.remote_alias.toLowerCase():"")+(a.capacity?a.capacity:"")+(a.local_balance?a.local_balance:"")+(a.remote_balance?a.remote_balance:"")+(a.total_satoshis_sent?a.total_satoshis_sent:"")+(a.total_satoshis_received?a.total_satoshis_received:"")+(a.commit_fee?a.commit_fee:"")+(a.private?"private":"public")).includes(o),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(L.yh),e.Y36(W.eX),e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Channels")}])],decls:42,vars:18,consts:[["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pr-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","",1,"pr-3"],["fxLayoutAlign","end center"],["mat-cell","","fxLayoutAlign","end center"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span"),e._uU(5,"Save your backup files in a redundant location."),e.qZA()(),e.TgZ(6,"div",4),e._UZ(7,"fa-icon",3),e.TgZ(8,"span")(9,"strong"),e._uU(10,"Backup Folder Location: "),e.qZA(),e._uU(11),e.qZA()(),e.TgZ(12,"div",5)(13,"button",6),e.NdJ("click",function(){return a.onVerifyChannels({})}),e._uU(14,"Verify All"),e.qZA(),e.TgZ(15,"button",7),e.NdJ("click",function(){return a.onBackupChannels({})}),e._uU(16,"Backup All"),e.qZA(),e.TgZ(17,"button",8),e.NdJ("click",function(){return a.onDownloadBackup({})}),e._uU(18,"Download Backup"),e.qZA()()(),e.TgZ(19,"div",9)(20,"div",10),e._UZ(21,"fa-icon",11),e.TgZ(22,"span",12),e._uU(23,"Backups"),e.qZA()(),e.TgZ(24,"mat-form-field",13)(25,"input",14),e.NdJ("keyup",function(){return a.applyFilter()})("ngModelChange",function(s){return a.selFilter=s}),e.qZA()()(),e.TgZ(26,"div",15),e.YNc(27,H_,1,0,"mat-progress-bar",16),e.TgZ(28,"table",17,18),e.ynx(30,19),e.YNc(31,B_,2,0,"th",20),e.YNc(32,G_,2,4,"td",21),e.BQk(),e.ynx(33,22),e.YNc(34,z_,3,0,"th",23),e.YNc(35,W_,12,0,"td",24),e.BQk(),e.ynx(36,25),e.YNc(37,K_,4,3,"td",26),e.BQk(),e.YNc(38,th,1,3,"tr",27),e.YNc(39,nh,1,0,"tr",28),e.YNc(40,ah,1,0,"tr",29),e.qZA()(),e._UZ(41,"mat-paginator",30),e.qZA()),2&t&&(e.xp6(3),e.Q6J("icon",a.faExclamationTriangle),e.xp6(4),e.Q6J("icon",a.faInfoCircle),e.xp6(4),e.hij("",a.selNode.channelBackupPath,"."),e.xp6(10),e.Q6J("icon",a.faArchive),e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(2),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",a.channels)("ngClass",e.VKq(15,ih,""!==a.errorMessage)),e.xp6(10),e.Q6J("matFooterRowDef",e.DdM(17,oh)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns)("matHeaderRowDefSticky",a.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns),e.xp6(1),e.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},directives:[d.xw,d.Wh,d.yH,D.BN,N.lW,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,p.O5,J.pW,c.BZ,A.YE,p.mk,k.oO,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,R.gD,R.$L,B.ey,c.mD,c.yh,c.Ke,c.Q2,c.as,c.XQ,c.nj,c.Gk,F.NW],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 70%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function lh(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw().activeLink=s.link}),e._uU(1),e.qZA()}if(2&n){const t=i.$implicit,a=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",a.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let rh=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=v.hkK,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new m.x,new m.x]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(a=>a instanceof b.Av)).subscribe({next:a=>{const o=this.links.find(s=>a.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(b.F0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-sign-verify-message"]],decls:11,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Sign/Verify Message"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,lh,2,3,"div",6),e.qZA(),e.TgZ(9,"div",7),e._UZ(10,"router-outlet"),e.qZA()()()()),2&t&&(e.xp6(1),e.Q6J("icon",a.faUserCheck),e.xp6(7),e.Q6J("ngForOf",a.links))},directives:[d.xw,d.Wh,D.BN,Z.a8,Z.dn,P.BU,p.sg,P.Nj,b.rH,d.yH,b.lC],styles:[""]}),n})();function ch(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Message is required."),e.qZA())}let uh=(()=>{class n{constructor(t,a,o){this.dataService=t,this.snackBar=a,this.logger=o,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new m.x,new m.x]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(ee.D),e.Y36(ae.ux),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-sign"]],decls:20,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to sign","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),e.NdJ("ngModelChange",function(s){return a.message=s})("keyup",function(){return a.onMessageChange()}),e.qZA(),e.YNc(5,ch,2,0,"mat-error",5),e.qZA(),e.TgZ(6,"div",6)(7,"button",7),e.NdJ("click",function(){return a.resetData()}),e._uU(8,"Clear Field"),e.qZA(),e.TgZ(9,"button",8),e.NdJ("click",function(){return a.onSign()}),e._uU(10,"Sign"),e.qZA()(),e._UZ(11,"mat-divider",9),e.TgZ(12,"div",10)(13,"p"),e._uU(14,"Generated Signature"),e.qZA()(),e.TgZ(15,"div",11),e._uU(16),e.qZA(),e.TgZ(17,"div",12)(18,"button",13),e.NdJ("copied",function(s){return a.onCopyField(s)}),e._uU(19,"Copy Signature"),e.qZA()()()()),2&t&&(e.xp6(4),e.Q6J("ngModel",a.message),e.xp6(1),e.Q6J("ngIf",!a.message),e.xp6(6),e.Q6J("inset",!0),e.xp6(5),e.Oqu(a.signature),e.xp6(2),e.Q6J("payload",a.signature))},directives:[d.xw,d.yH,d.Wh,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,$.h,u.Q7,u.JJ,u.On,p.O5,x.TO,N.lW,X.d,re.y],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function ph(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Message is required."),e.qZA())}function mh(n,i){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Signature is required."),e.qZA())}function dh(n,i){1&n&&(e.TgZ(0,"p",13)(1,"mat-icon",14),e._uU(2,"close"),e.qZA(),e._uU(3,"Verification failed, please double check message and signature"),e.qZA())}function _h(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Pubkey Used"),e.qZA())}function hh(n,i){if(1&n&&(e.TgZ(0,"div",20)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw(2);e.xp6(2),e.Oqu(null==t.verifyRes?null:t.verifyRes.pubkey)}}function gh(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",21)(1,"button",22),e.NdJ("copied",function(o){return e.CHM(t),e.oxw(2).onCopyField(o)}),e._uU(2,"Copy Pubkey"),e.qZA()()}if(2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function fh(n,i){if(1&n&&(e.TgZ(0,"div",15),e._UZ(1,"mat-divider",16),e.TgZ(2,"div",17),e.YNc(3,_h,2,0,"p",5),e.qZA(),e.YNc(4,hh,3,1,"div",18),e.YNc(5,gh,3,1,"div",19),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("inset",!0),e.xp6(2),e.Q6J("ngIf",t.verifyRes.valid),e.xp6(1),e.Q6J("ngIf",t.verifyRes.valid),e.xp6(1),e.Q6J("ngIf",t.verifyRes.valid)}}let Ch=(()=>{class n{constructor(t,a,o){this.dataService=t,this.snackBar=a,this.logger=o,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new m.x,new m.x]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(ee.D),e.Y36(ae.ux),e.Y36(U.mQ))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-verify"]],decls:17,vars:6,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","placeholder","Message to verify","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","placeholder","Signature provided","name","signature","tabindex","2","required","",3,"ngModel","ngModelChange","keyup"],["sign","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only h-4 padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","h-4","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"payload","copied"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"textarea",4),e.NdJ("ngModelChange",function(s){return a.message=s})("keyup",function(){return a.onChange()}),e.qZA(),e.YNc(5,ph,2,0,"mat-error",5),e.qZA(),e.TgZ(6,"mat-form-field",3)(7,"input",6,7),e.NdJ("ngModelChange",function(s){return a.signature=s})("keyup",function(){return a.onChange()}),e.qZA(),e.YNc(9,mh,2,0,"mat-error",5),e.qZA(),e.YNc(10,dh,4,0,"p",8),e.TgZ(11,"div",9)(12,"button",10),e.NdJ("click",function(){return a.resetData()}),e._uU(13,"Clear Fields"),e.qZA(),e.TgZ(14,"button",11),e.NdJ("click",function(){return a.onVerify()}),e._uU(15,"Verify"),e.qZA()(),e.YNc(16,fh,6,4,"div",12),e.qZA()()),2&t&&(e.xp6(4),e.Q6J("ngModel",a.message),e.xp6(1),e.Q6J("ngIf",!a.message),e.xp6(2),e.Q6J("ngModel",a.signature),e.xp6(2),e.Q6J("ngIf",!a.signature),e.xp6(1),e.Q6J("ngIf",a.showVerifyStatus&&!a.verifyRes.valid),e.xp6(6),e.Q6J("ngIf",a.showVerifyStatus&&a.verifyRes.valid))},directives:[d.xw,d.yH,d.Wh,u._Y,u.JL,u.F,x.KE,M.Nt,u.Fj,$.h,u.Q7,u.JJ,u.On,p.O5,x.TO,te.Hw,N.lW,X.d,re.y],styles:[".mat-column-channel_point[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();var xh=f(9442),q=f(1643);function yh(n,i){if(1&n&&(e.TgZ(0,"div",3),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Oqu(t.errorMessage)}}function Th(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",9)(1,"div",10),e._uU(2,"Non Routing Peers"),e.qZA(),e.TgZ(3,"mat-form-field",11)(4,"input",12),e.NdJ("keyup",function(){return e.CHM(t),e.oxw(2).applyFilter()})("ngModelChange",function(o){return e.CHM(t),e.oxw(2).filter=o}),e.qZA()()()}if(2&n){const t=e.oxw(2);e.xp6(4),e.Q6J("ngModel",t.filter)}}function vh(n,i){1&n&&e._UZ(0,"mat-progress-bar",35)}function bh(n,i){1&n&&(e.TgZ(0,"th",36),e._uU(1,"Channel ID"),e.qZA())}const tt=function(n){return{"max-width":n}};function Zh(n,i){if(1&n&&(e.TgZ(0,"td",37),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(3);e.Q6J("ngStyle",e.VKq(2,tt,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(t.chan_id)}}function wh(n,i){1&n&&(e.TgZ(0,"th",36),e._uU(1,"Peer Alias"),e.qZA())}function Ah(n,i){if(1&n&&(e.TgZ(0,"td",37),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(3);e.Q6J("ngStyle",e.VKq(2,tt,a.screenSize===a.screenSizeEnum.XS?"10rem":"28rem")),e.xp6(1),e.Oqu(t.remote_alias)}}function Sh(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Sats Sent"),e.qZA())}function Lh(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_satoshis_sent))}}function kh(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Sats Received"),e.qZA())}function Fh(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_satoshis_received))}}function Nh(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Local Balance (Sats)"),e.qZA())}function qh(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.local_balance))}}function Uh(n,i){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function Oh(n,i){if(1&n&&(e.TgZ(0,"td",39)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=i.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.remote_balance))}}function Rh(n,i){1&n&&(e.TgZ(0,"th",41)(1,"span",40),e._uU(2,"Actions"),e.qZA()())}function Mh(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"td",42)(1,"button",43),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.oxw(3).onManagePeer(s)}),e._uU(2,"Manage"),e.qZA()()}}function Ih(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"All peers are routing."),e.qZA())}function Dh(n,i){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting non routing peers..."),e.qZA())}function Ph(n,i){if(1&n&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&n){const t=e.oxw(4);e.xp6(1),e.Oqu(t.errorMessage)}}function Jh(n,i){if(1&n&&(e.TgZ(0,"td",44),e.YNc(1,Ih,2,0,"p",45),e.YNc(2,Dh,2,0,"p",45),e.YNc(3,Ph,2,1,"p",45),e.qZA()),2&n){const t=e.oxw(3);e.xp6(1),e.Q6J("ngIf",(!(null!=t.NonRoutingPeers&&t.NonRoutingPeers.data)||(null==t.NonRoutingPeers||null==t.NonRoutingPeers.data?null:t.NonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.NonRoutingPeers&&t.NonRoutingPeers.data)||(null==t.NonRoutingPeers||null==t.NonRoutingPeers.data?null:t.NonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("ngIf",(!(null!=t.NonRoutingPeers&&t.NonRoutingPeers.data)||(null==t.NonRoutingPeers||null==t.NonRoutingPeers.data?null:t.NonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}const Eh=function(n){return{"display-none":n}};function Qh(n,i){if(1&n&&e._UZ(0,"tr",46),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Eh,(null==t.NonRoutingPeers||null==t.NonRoutingPeers.data?null:t.NonRoutingPeers.data.length)>0))}}function Yh(n,i){1&n&&e._UZ(0,"tr",47)}function Hh(n,i){1&n&&e._UZ(0,"tr",48)}const Bh=function(){return["no_non_routing_event"]};function Vh(n,i){if(1&n&&(e.TgZ(0,"div",13),e.YNc(1,vh,1,0,"mat-progress-bar",14),e.TgZ(2,"table",15,16),e.ynx(4,17),e.YNc(5,bh,2,0,"th",18),e.YNc(6,Zh,2,4,"td",19),e.BQk(),e.ynx(7,20),e.YNc(8,wh,2,0,"th",18),e.YNc(9,Ah,2,4,"td",19),e.BQk(),e.ynx(10,21),e.YNc(11,Sh,2,0,"th",22),e.YNc(12,Lh,4,3,"td",23),e.BQk(),e.ynx(13,24),e.YNc(14,kh,2,0,"th",22),e.YNc(15,Fh,4,3,"td",23),e.BQk(),e.ynx(16,25),e.YNc(17,Nh,2,0,"th",22),e.YNc(18,qh,4,3,"td",23),e.BQk(),e.ynx(19,26),e.YNc(20,Uh,2,0,"th",22),e.YNc(21,Oh,4,3,"td",23),e.BQk(),e.ynx(22,27),e.YNc(23,Rh,3,0,"th",28),e.YNc(24,Mh,3,0,"td",29),e.BQk(),e.ynx(25,30),e.YNc(26,Jh,4,3,"td",31),e.BQk(),e.YNc(27,Qh,1,3,"tr",32),e.YNc(28,Yh,1,0,"tr",33),e.YNc(29,Hh,1,0,"tr",34),e.qZA()()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("dataSource",t.NonRoutingPeers),e.xp6(25),e.Q6J("matFooterRowDef",e.DdM(6,Bh)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns)("matHeaderRowDefSticky",t.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}function Gh(n,i){if(1&n&&(e.TgZ(0,"div",4),e.YNc(1,Th,5,1,"div",5),e.YNc(2,Vh,30,7,"div",6),e._UZ(3,"mat-paginator",7,8),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngIf",""===t.errorMessage),e.xp6(1),e.Q6J("ngIf",""===t.errorMessage),e.xp6(1),e.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let zh=(()=>{class n{constructor(t,a,o,s,r){this.logger=t,this.commonService=a,this.store=o,this.router=s,this.activatedRoute=r,this.routingPeersData=[],this.displayedColumns=[],this.NonRoutingPeers=new c.by([]),this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.filter="",this.activeChannels=[],this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x,new m.x,new m.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["remote_alias","local_balance","remote_balance","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["chan_id","remote_alias","local_balance","remote_balance","actions"]):(this.flgSticky=!0,this.displayedColumns=["chan_id","remote_alias","total_satoshis_received","total_satoshis_sent","local_balance","remote_balance","actions"])}ngOnInit(){this.store.select(y.Bo).pipe((0,h.R)(this.unSubs[0])).subscribe(t=>{var a;this.errorMessage="",this.apiCallStatus=t.apiCallStatus,(null===(a=t.apiCallStatus)||void 0===a?void 0:a.status)===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sort&&this.paginator&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)}),this.store.select(y.ZW).pipe((0,h.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=t.channels,this.logger.info(t)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filter:t.chan_id}})}loadNonRoutingPeersTable(t){var a;if(t.length>0){const o=null===(a=this.activeChannels)||void 0===a?void 0:a.filter(s=>t.findIndex(r=>r.chan_id_in===s.chan_id||r.chan_id_out===s.chan_id)<0);this.NonRoutingPeers=new c.by(o),this.NonRoutingPeers.sort=this.sort,this.NonRoutingPeers.filterPredicate=(s,r)=>JSON.stringify(s).toLowerCase().includes(r),this.NonRoutingPeers.paginator=this.paginator,this.logger.info(this.NonRoutingPeers)}else this.NonRoutingPeers=new c.by([]);this.applyFilter()}applyFilter(){this.NonRoutingPeers.filter=this.filter.toLowerCase()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh),e.Y36(b.F0),e.Y36(b.gz))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(t,a){if(1&t&&(e.Gf(A.YE,5),e.Gf(F.NW,5)),2&t){let o;e.iGM(o=e.CRH())&&(a.sort=o.first),e.iGM(o=e.CRH())&&(a.paginator=o.first)}},features:[e._Bn([{provide:F.ye,useValue:(0,l.pt)("Non routing peers")}])],decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginator",""],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","total_satoshis_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","","class","pr-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-2","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_non_routing_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-cell",""],["fxLayoutAlign","end center"],["mat-header-cell","",1,"pr-3"],["mat-cell","","fxLayoutAlign","end center",1,"pl-2"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(t,a){1&t&&(e.TgZ(0,"div",0),e.YNc(1,yh,2,1,"div",1),e.YNc(2,Gh,5,5,"div",2),e.qZA()),2&t&&(e.xp6(1),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage))},directives:[d.xw,d.yH,d.Wh,p.O5,x.KE,M.Nt,u.Fj,u.JJ,u.On,H.$V,J.pW,c.BZ,A.YE,c.w1,c.fO,c.ge,A.nU,c.Dz,c.ev,p.PC,k.Zl,N.lW,c.mD,c.yh,c.Ke,c.Q2,p.mk,k.oO,c.as,c.XQ,c.nj,c.Gk,F.NW],pipes:[p.JJ],styles:[".mat-column-chan_id[_ngcontent-%COMP%], .mat-column-alias[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})(),Wh=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new m.x,new m.x]}ngOnInit(){var t;if(this.payment.htlcs&&this.payment.htlcs[0]&&this.payment.htlcs[0].route&&this.payment.htlcs[0].route.hops&&this.payment.htlcs[0].route.hops.length>0){const a=null===(t=this.payment.htlcs[0].route.hops)||void 0===t?void 0:t.reduce((o,s)=>""===o&&s.pub_key?s.pub_key:o+","+s.pub_key,"");this.dataService.getAliasesFromPubkeys(a,!0).pipe((0,h.R)(this.unSubs[0])).subscribe(o=>{this.paths=null==o?void 0:o.reduce((s,r)=>""===s?r:s+"\n"+r,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,z.q)(1)).subscribe(a=>{a&&a.description&&""!==a.description&&(this.payment.description=a.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(ee.D))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},decls:66,vars:20,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","50"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e._uU(4,"Payment Hash"),e.qZA(),e.TgZ(5,"span",4),e._uU(6),e.qZA()(),e._UZ(7,"mat-divider",5),e.TgZ(8,"div",2)(9,"h4",3),e._uU(10,"Payment Preimage"),e.qZA(),e.TgZ(11,"span",4)(12,"div"),e._uU(13),e.qZA()()(),e._UZ(14,"mat-divider",5),e.TgZ(15,"div",2)(16,"h4",3),e._uU(17,"Payment Request"),e.qZA(),e.TgZ(18,"span",4)(19,"div"),e._uU(20),e.qZA()()(),e._UZ(21,"mat-divider",5),e.TgZ(22,"div",2)(23,"h4",3),e._uU(24,"Description"),e.qZA(),e.TgZ(25,"span",4)(26,"div"),e._uU(27),e.qZA()()(),e._UZ(28,"mat-divider",5),e.TgZ(29,"div",6)(30,"div",7)(31,"h4",3),e._uU(32,"Status"),e.qZA(),e.TgZ(33,"span",4)(34,"div"),e._uU(35),e.qZA()()(),e.TgZ(36,"div",7)(37,"h4",3),e._uU(38,"Creation Date"),e.qZA(),e.TgZ(39,"span",4)(40,"div"),e._uU(41),e.qZA()()()(),e._UZ(42,"mat-divider",5),e.TgZ(43,"div",6)(44,"div",7)(45,"h4",3),e._uU(46,"Value (mSats)"),e.qZA(),e.TgZ(47,"span",4)(48,"div"),e._uU(49),e.ALo(50,"number"),e.qZA()()(),e.TgZ(51,"div",7)(52,"h4",3),e._uU(53,"Fee (mSats)"),e.qZA(),e.TgZ(54,"span",4)(55,"div"),e._uU(56),e.ALo(57,"number"),e.qZA()()()(),e._UZ(58,"mat-divider",5),e.TgZ(59,"div",2)(60,"h4",3),e._uU(61,"Path"),e.qZA(),e.TgZ(62,"span",4)(63,"div"),e._uU(64),e.qZA()()(),e._UZ(65,"mat-divider",5),e.qZA()()),2&t&&(e.xp6(6),e.Oqu(null==a.payment?null:a.payment.payment_hash),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==a.payment?null:a.payment.payment_preimage),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==a.payment?null:a.payment.payment_request),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==a.payment?null:a.payment.description),e.xp6(1),e.Q6J("inset",!0),e.xp6(7),e.Oqu(null==a.payment?null:a.payment.status),e.xp6(6),e.Oqu(null==a.payment?null:a.payment.creation_date),e.xp6(1),e.Q6J("inset",!0),e.xp6(7),e.Oqu(e.lcZ(50,16,null==a.payment?null:a.payment.value_msat)),e.xp6(7),e.Oqu(e.lcZ(57,18,null==a.payment?null:a.payment.fee_msat)),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(a.paths),e.xp6(1),e.Q6J("inset",!0))},directives:[d.xw,d.yH,d.Wh,Z.dn,X.d],pipes:[p.JJ],styles:[""]}),n})();var Xh=f(159);function $h(n,i){if(1&n&&e._UZ(0,"qr-code",22),2&n){const t=e.oxw();e.Q6J("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function jh(n,i){1&n&&(e.TgZ(0,"span",23),e._uU(1,"N/A"),e.qZA())}function Kh(n,i){if(1&n&&e._UZ(0,"qr-code",22),2&n){const t=e.oxw();e.Q6J("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function eg(n,i){1&n&&(e.TgZ(0,"span",24),e._uU(1,"QR Code Not Applicable"),e.qZA())}function tg(n,i){1&n&&e._UZ(0,"mat-divider",16),2&n&&e.Q6J("inset",!0)}function ng(n,i){1&n&&(e.ynx(0),e._uU(1," (zero amount) "),e.BQk())}const we=function(n){return{"mr-0":n}};function ag(n,i){if(1&n&&e._UZ(0,"span",38),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,we,t.screenSize===t.screenSizeEnum.XS))}}function ig(n,i){if(1&n&&e._UZ(0,"span",39),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,we,t.screenSize===t.screenSizeEnum.XS))}}function og(n,i){if(1&n&&e._UZ(0,"span",40),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,we,t.screenSize===t.screenSizeEnum.XS))}}function sg(n,i){if(1&n&&(e.TgZ(0,"div",27)(1,"div",32)(2,"span",33),e.YNc(3,ag,1,3,"span",34),e.YNc(4,ig,1,3,"span",35),e.YNc(5,og,1,3,"span",36),e._uU(6),e.qZA(),e.TgZ(7,"span",37),e._uU(8),e.ALo(9,"number"),e.qZA()(),e._UZ(10,"mat-divider",16),e.qZA()),2&n){const t=i.$implicit,a=e.oxw(2);e.xp6(3),e.Q6J("ngIf","SETTLED"===t.state),e.xp6(1),e.Q6J("ngIf","ACCEPTED"===t.state),e.xp6(1),e.Q6J("ngIf","CANCELED"===t.state),e.xp6(1),e.hij(" ",t.chan_id," "),e.xp6(2),e.Oqu(e.xi3(9,6,+t.amt_msat/1e3||0,a.getDecimalFormat(t))),e.xp6(2),e.Q6J("inset",!0)}}function lg(n,i){if(1&n){const t=e.EpF();e.TgZ(0,"div",11)(1,"mat-expansion-panel",25),e.NdJ("opened",function(){return e.CHM(t),e.oxw().flgOpened=!0})("closed",function(){return e.CHM(t),e.oxw().onExpansionClosed()}),e.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e._uU(5,"HTLCs"),e.qZA()()(),e.TgZ(6,"div",27)(7,"div",28)(8,"span",29),e._uU(9,"Channel ID"),e.qZA(),e.TgZ(10,"span",30),e._uU(11,"Amount (Sats)"),e.qZA()(),e._UZ(12,"mat-divider",16),e.YNc(13,sg,11,9,"div",31),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(12),e.Q6J("inset",!0),e.xp6(1),e.Q6J("ngForOf",null==t.invoice?null:t.invoice.htlcs)}}function rg(n,i){1&n&&e._UZ(0,"mat-divider",16),2&n&&e.Q6J("inset",!0)}const nt=function(n){return{"display-none":n}};let cg=(()=>{class n{constructor(t){this.commonService=t,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS&&(this.qrWidth=220)}getDecimalFormat(t){return t.amt_msat<1e3?"1.0-4":"1.0-0"}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(O.v))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},decls:90,vars:45,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","20",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","80"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,$h,1,3,"qr-code",2),e.YNc(3,jh,2,0,"span",3),e.qZA(),e.TgZ(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.YNc(8,Kh,1,3,"qr-code",2),e.YNc(9,eg,2,0,"span",8),e.qZA(),e.YNc(10,tg,1,1,"mat-divider",9),e.TgZ(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e._uU(15),e.qZA(),e.TgZ(16,"span",14),e._uU(17),e.ALo(18,"number"),e.YNc(19,ng,2,0,"ng-container",15),e.qZA()(),e.TgZ(20,"div",12)(21,"h4",13),e._uU(22,"Amount Settled"),e.qZA(),e.TgZ(23,"span",14)(24,"div"),e._uU(25),e.ALo(26,"number"),e.qZA()()()(),e._UZ(27,"mat-divider",16),e.TgZ(28,"div",11)(29,"div",12)(30,"h4",13),e._uU(31,"Date Created"),e.qZA(),e.TgZ(32,"span",14),e._uU(33),e.ALo(34,"date"),e.qZA()(),e.TgZ(35,"div",12)(36,"h4",13),e._uU(37,"Date Settled"),e.qZA(),e.TgZ(38,"span",14),e._uU(39),e.ALo(40,"date"),e.qZA()()(),e._UZ(41,"mat-divider",16),e.TgZ(42,"div",11)(43,"div",17)(44,"h4",13),e._uU(45,"Memo"),e.qZA(),e.TgZ(46,"span",14),e._uU(47),e.qZA()()(),e._UZ(48,"mat-divider",16),e.TgZ(49,"div",11)(50,"div",17)(51,"h4",13),e._uU(52,"Payment Request"),e.qZA(),e.TgZ(53,"span",18),e._uU(54),e.qZA()()(),e._UZ(55,"mat-divider",16),e.TgZ(56,"div",11)(57,"div",17)(58,"h4",13),e._uU(59,"Payment Hash"),e.qZA(),e.TgZ(60,"span",18),e._uU(61),e.qZA()()(),e.TgZ(62,"div"),e._UZ(63,"mat-divider",16),e.TgZ(64,"div",11)(65,"div",17)(66,"h4",13),e._uU(67,"Preimage"),e.qZA(),e.TgZ(68,"span",18),e._uU(69),e.qZA()()(),e._UZ(70,"mat-divider",16),e.TgZ(71,"div",11)(72,"div",19)(73,"h4",13),e._uU(74,"State"),e.qZA(),e.TgZ(75,"span",18),e._uU(76),e.qZA()(),e.TgZ(77,"div",20)(78,"h4",13),e._uU(79,"Expiry"),e.qZA(),e.TgZ(80,"span",18),e._uU(81),e.qZA()(),e.TgZ(82,"div",20)(83,"h4",13),e._uU(84,"Private Routing Hints"),e.qZA(),e.TgZ(85,"span",18),e._uU(86),e.qZA()()(),e._UZ(87,"mat-divider",16),e.YNc(88,lg,14,2,"div",21),e.YNc(89,rg,1,1,"mat-divider",9),e.qZA()()()()()()),2&t&&(e.xp6(1),e.Q6J("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.VKq(41,nt,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.xp6(1),e.Q6J("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.xp6(1),e.Q6J("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.xp6(4),e.Q6J("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.VKq(43,nt,a.screenSize!==a.screenSizeEnum.XS&&a.screenSize!==a.screenSizeEnum.SM)),e.xp6(1),e.Q6J("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.xp6(1),e.Q6J("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.xp6(1),e.Q6J("ngIf",a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM),e.xp6(5),e.Oqu(a.screenSize===a.screenSizeEnum.XS?"Amount":"Amount Requested"),e.xp6(2),e.hij("",e.lcZ(18,31,(null==a.invoice?null:a.invoice.value)||0)," Sats"),e.xp6(2),e.Q6J("ngIf",!(null!=a.invoice&&a.invoice.value)||"0"===(null==a.invoice?null:a.invoice.value)),e.xp6(6),e.hij("",e.lcZ(26,33,null==a.invoice?null:a.invoice.amt_paid_sat)," Sats"),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(e.xi3(34,35,1e3*(null==a.invoice?null:a.invoice.creation_date),"dd/MMM/y HH:mm")),e.xp6(6),e.Oqu(0!=+(null==a.invoice?null:a.invoice.settle_date)?e.xi3(40,38,1e3*+(null==a.invoice?null:a.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==a.invoice?null:a.invoice.memo),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu((null==a.invoice?null:a.invoice.payment_request)||"N/A"),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu((null==a.invoice?null:a.invoice.r_hash)||""),e.xp6(2),e.Q6J("inset",!0),e.xp6(6),e.Oqu((null==a.invoice?null:a.invoice.r_preimage)||"-"),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Oqu(null==a.invoice?null:a.invoice.state),e.xp6(5),e.Oqu(null==a.invoice?null:a.invoice.expiry),e.xp6(5),e.Oqu(null!=a.invoice&&a.invoice.private?"Yes":"No"),e.xp6(1),e.Q6J("inset",!0),e.xp6(1),e.Q6J("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0),e.xp6(1),e.Q6J("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0))},directives:[d.xw,d.Wh,d.yH,p.mk,k.oO,p.O5,Xh.uU,Z.dn,X.d,H.$V,V.ib,V.yz,V.yK,p.sg,j.gM],pipes:[p.JJ,p.uU],styles:[""]}),n})();function ug(n,i){if(1&n&&(e.TgZ(0,"mat-radio-button",17),e._uU(1),e.qZA()),2&n){const t=i.$implicit,a=e.oxw();e.Q6J("value",t.id)("checked",a.selectedFieldId===t.id),e.xp6(1),e.hij(" ",t.name," ")}}function pg(n,i){if(1&n&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.hij("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function mg(n,i){1&n&&e._UZ(0,"mat-progress-bar",20)}const dg=function(n){return{"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0}};function _g(n,i){if(1&n&&(e.TgZ(0,"div",18),e.YNc(1,mg,1,0,"mat-progress-bar",19),e._uU(2),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(3,dg,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.xp6(1),e.Q6J("ngIf","Getting lookup details..."===t.errorMessage),e.xp6(1),e.hij(" ",t.errorMessage," ")}}function hg(n,i){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-payment-lookup",28),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("payment",t.lookupValue)}}function gg(n,i){if(1&n&&(e.TgZ(0,"span",27),e._UZ(1,"rtl-invoice-lookup",29),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("invoice",t.lookupValue)}}function fg(n,i){1&n&&(e.TgZ(0,"span",27)(1,"h3"),e._uU(2,"Error! Unable to find details!"),e.qZA()())}function Cg(n,i){if(1&n&&(e.TgZ(0,"div",21)(1,"div",22)(2,"span",23),e._uU(3),e.qZA()(),e.TgZ(4,"div",24),e.YNc(5,hg,2,1,"span",25),e.YNc(6,gg,2,1,"span",25),e.YNc(7,fg,3,0,"span",26),e.qZA()()),2&n){const t=e.oxw();e.xp6(3),e.hij("",t.lookupFields[t.selectedFieldId].name," Details"),e.xp6(1),e.Q6J("ngSwitch",t.selectedFieldId),e.xp6(1),e.Q6J("ngSwitchCase",0),e.xp6(1),e.Q6J("ngSwitchCase",1)}}const xg=function(n){return{"mt-1":!0,"mt-2":n}},vg=b.Bz.forChild([{path:"",component:Fe,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ri,canActivate:[q.QM]},{path:"wallet",component:h1,canActivate:[q.a1]},{path:"onchain",component:Zd,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:Sd,canActivate:[q.QM]},{path:"send/:selTab",component:Ke,data:{sweepAll:!1},canActivate:[q.QM]},{path:"sweep/:selTab",component:Ke,data:{sweepAll:!0},canActivate:[q.QM]}]},{path:"connections",component:pi,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:_o,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:il,canActivate:[q.QM]},{path:"pending",component:Er,canActivate:[q.QM]},{path:"closed",component:mc,canActivate:[q.QM]},{path:"activehtlcs",component:Hc,canActivate:[q.QM]}]},{path:"peers",component:ro,data:{sweepAll:!1},canActivate:[q.QM]}]},{path:"transactions",component:C1,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Je,canActivate:[q.QM]},{path:"invoices",component:De,canActivate:[q.QM]},{path:"lookuptransactions",component:(()=>{class n{constructor(t,a,o,s){this.logger=t,this.commonService=a,this.store=o,this.actions=s,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Payment",placeholder:"Payment Hash"},{id:1,name:"Invoice",placeholder:"Payment Hash"}],this.faSearch=v.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatusEnum=l.Bn,this.unSubs=[new m.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,h.R)(this.unSubs[0]),(0,Y.h)(t=>t.type===l.uR.SET_LOOKUP_LND)).subscribe(t=>{this.flgSetLookupValue=!t.payload.error,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.errorMessage=t.payload.error?this.commonService.extractErrorMessage(t.payload.error):"",this.logger.info(this.lookupValue)})}onLookup(){var t,a,o,s;if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,w.yZ)({payload:null===(a=null===(t=Buffer.from(this.lookupKey.trim(),"hex").toString("base64"))||void 0===t?void 0:t.replace(/\+/g,"-"))||void 0===a?void 0:a.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,w.n7)({payload:{openSnackBar:!1,paymentHash:null===(s=null===(o=Buffer.from(this.lookupKey.trim(),"hex").toString("base64"))||void 0===o?void 0:o.replace(/\+/g,"-"))||void 0===s?void 0:s.replace(/[/]/g,"_")}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}}return n.\u0275fac=function(t){return new(t||n)(e.Y36(U.mQ),e.Y36(O.v),e.Y36(L.yh),e.Y36(W.eX))},n.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lookup-transactions"]],decls:19,vars:10,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"placeholder","ngModel","change","ngModelChange"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mb-2"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(t,a){1&t&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6),e.NdJ("ngModelChange",function(s){return a.selectedFieldId=s})("change",function(s){return a.onSelectChange(s)}),e.YNc(7,ug,2,3,"mat-radio-button",7),e.qZA()(),e.TgZ(8,"mat-form-field",8)(9,"input",9,10),e.NdJ("change",function(){return a.clearLookupValue()})("ngModelChange",function(s){return a.lookupKey=s}),e.qZA(),e.YNc(11,pg,2,1,"mat-error",11),e.qZA(),e.TgZ(12,"div",12)(13,"button",13),e.NdJ("click",function(){return a.resetData()}),e._uU(14,"Clear"),e.qZA(),e.TgZ(15,"button",14),e.NdJ("click",function(){return a.onLookup()}),e._uU(16,"Lookup"),e.qZA()()(),e.YNc(17,_g,3,5,"div",15),e.YNc(18,Cg,8,4,"div",16),e.qZA()()()),2&t&&(e.xp6(6),e.Q6J("ngModel",a.selectedFieldId),e.xp6(1),e.Q6J("ngForOf",a.lookupFields),e.xp6(1),e.Q6J("ngClass",e.VKq(8,xg,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.xp6(1),e.Q6J("placeholder",(null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key")("ngModel",a.lookupKey),e.xp6(2),e.Q6J("ngIf",!a.lookupKey),e.xp6(6),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},directives:[d.xw,d.yH,d.Wh,Z.dn,u._Y,u.JL,u.F,se.VQ,u.JJ,u.On,p.sg,se.U0,x.KE,p.mk,k.oO,M.Nt,u.Fj,u.Q7,p.O5,x.TO,N.lW,J.pW,p.RF,p.n9,Wh,cg,p.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}.pl-3[_ngcontent-%COMP%]{padding-left:3rem}"]}),n})(),canActivate:[q.QM]}]},{path:"messages",component:rh,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:uh,canActivate:[q.QM]},{path:"verify",component:Ch,canActivate:[q.QM]}]},{path:"channelbackup",component:w_,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:sh,canActivate:[q.QM]},{path:"restore",component:Y_,canActivate:[q.QM]}]},{path:"routing",component:yu,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ge,canActivate:[q.QM]},{path:"peers",component:Ep,canActivate:[q.QM]},{path:"nonroutingprs",component:zh,canActivate:[q.QM]}]},{path:"reports",component:Yp,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:jp,canActivate:[q.QM]},{path:"transactions",component:um,canActivate:[q.QM]}]},{path:"graph",component:y1,canActivate:[q.QM],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Ve,canActivate:[q.QM]},{path:"queryroutes",component:Q1,canActivate:[q.QM]}]},{path:"lookups",component:Ve,canActivate:[q.QM]},{path:"network",component:b_,canActivate:[q.QM]},{path:"**",component:xh.w},{path:"rates",redirectTo:"network"}]}]);var bg=f(8750);let Zg=(()=>{class n{}return n.\u0275fac=function(t){return new(t||n)},n.\u0275mod=e.oAB({type:n,bootstrap:[Fe]}),n.\u0275inj=e.cJS({providers:[q.QM],imports:[[p.ez,bg.m,vg]]}),n})()}}]); \ No newline at end of file diff --git a/frontend/893.9a615c46b89a5a79.js b/frontend/893.9a615c46b89a5a79.js deleted file mode 100644 index 588e0551..00000000 --- a/frontend/893.9a615c46b89a5a79.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[893],{534:(q,b,r)=>{r.d(b,{KfU:()=>l2,ctA:()=>k2});var l2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M143.9 398.6C131.4 394.1 124.9 380.3 129.4 367.9C146.9 319.4 198.9 288 256 288C313.1 288 365.1 319.4 382.6 367.9C387.1 380.3 380.6 394.1 368.1 398.6C355.7 403.1 341.9 396.6 337.4 384.1C328.2 358.5 297.2 336 256 336C214.8 336 183.8 358.5 174.6 384.1C170.1 396.6 156.3 403.1 143.9 398.6V398.6zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"]},k2={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M256 352C293.2 352 319.2 334.5 334.4 318.1C343.3 308.4 358.5 307.7 368.3 316.7C378 325.7 378.6 340.9 369.6 350.6C347.7 374.5 309.7 400 256 400C202.3 400 164.3 374.5 142.4 350.6C133.4 340.9 133.1 325.7 143.7 316.7C153.5 307.7 168.7 308.4 177.6 318.1C192.8 334.5 218.8 352 256 352zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z"]}},1203:(q,b,r)=>{r.d(b,{D:()=>k});var a=r(7579),H=r(2722),m=r(7731),C=r(8377),c=r(5e3),e=r(62),R=r(5620),g=r(3251),_=r(9808),V=r(7093),x=r(5245),A=r(7238);function y(u,z){if(1&u&&(c.TgZ(0,"mat-icon",9),c._uU(1,"info_outline"),c.qZA()),2&u){const M=c.oxw().$implicit;c.Q6J("matTooltip",M.tooltip)}}function w(u,z){if(1&u&&(c.TgZ(0,"span",10),c._uU(1),c.ALo(2,"number"),c.qZA()),2&u){const M=c.oxw().$implicit;c.xp6(1),c.hij(" ",c.lcZ(2,1,M.dataValue)," ")}}function N(u,z){if(1&u&&(c.TgZ(0,"span",10),c._uU(1),c.ALo(2,"number"),c.qZA()),2&u){const M=c.oxw().$implicit,o=c.oxw(2);c.xp6(1),c.hij(" ",c.xi3(2,1,M[o.currencyUnitEnum.BTC],o.currencyUnitFormats.BTC)," ")}}function O(u,z){if(1&u&&(c.TgZ(0,"span",10),c._uU(1),c.ALo(2,"number"),c.qZA()),2&u){const M=c.oxw().$implicit,o=c.oxw(2);c.xp6(1),c.hij(" ",c.xi3(2,1,M[o.currencyUnitEnum.OTHER],o.currencyUnitFormats.OTHER)," ")}}function F(u,z){if(1&u&&(c.TgZ(0,"div",5)(1,"div",6),c._uU(2),c.YNc(3,y,2,1,"mat-icon",7),c.qZA(),c.YNc(4,w,3,3,"span",8),c.YNc(5,N,3,4,"span",8),c.YNc(6,O,3,4,"span",8),c.qZA()),2&u){const M=z.$implicit,o=c.oxw().$implicit,p=c.oxw();c.xp6(2),c.hij(" ",M.title," "),c.xp6(1),c.Q6J("ngIf",M.tooltip),c.xp6(1),c.Q6J("ngIf",o===p.currencyUnitEnum.SATS),c.xp6(1),c.Q6J("ngIf",o===p.currencyUnitEnum.BTC),c.xp6(1),c.Q6J("ngIf",p.fiatConversion&&o!==p.currencyUnitEnum.SATS&&o!==p.currencyUnitEnum.BTC&&""===p.conversionErrorMsg)}}function D(u,z){if(1&u&&(c.TgZ(0,"div",11)(1,"div",12),c._uU(2),c.qZA()()),2&u){const M=c.oxw(2);c.xp6(2),c.Oqu(M.conversionErrorMsg)}}function T(u,z){if(1&u&&(c.TgZ(0,"mat-tab",1)(1,"div",2),c.YNc(2,F,7,5,"div",3),c.qZA(),c.YNc(3,D,3,1,"div",4),c.qZA()),2&u){const M=z.$implicit,o=c.oxw();c.s9C("label",M),c.xp6(2),c.Q6J("ngForOf",o.values),c.xp6(1),c.Q6J("ngIf",o.fiatConversion&&M!==o.currencyUnitEnum.SATS&&M!==o.currencyUnitEnum.BTC&&""!==o.conversionErrorMsg)}}let k=(()=>{class u{constructor(M,o){this.commonService=M,this.store=o,this.values=[],this.currencyUnitEnum=m.NT,this.currencyUnitFormats=m.Xz,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new a.x,new a.x,new a.x]}ngOnInit(){this.store.select(C.dT).pipe((0,H.R)(this.unSubs[0])).subscribe(M=>{this.fiatConversion=M.settings.fiatConversion,this.currencyUnits=M.settings.currencyUnits,this.fiatConversion||this.currencyUnits.splice(2,1),this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues(this.values)})}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues(this.values)}getCurrencyValues(M){M.forEach(o=>{o.dataValue>0?(this.commonService.convertCurrency(o.dataValue,m.NT.SATS,m.NT.BTC,"",!0).pipe((0,H.R)(this.unSubs[1])).subscribe(p=>{o[m.NT.BTC]=p.BTC}),this.commonService.convertCurrency(o.dataValue,m.NT.SATS,m.NT.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,H.R)(this.unSubs[2])).subscribe({next:p=>{o[m.NT.OTHER]=p.OTHER},error:p=>{this.conversionErrorMsg="Conversion Error: "+p}})):(o[m.NT.BTC]=o.dataValue,""===this.conversionErrorMsg&&(o[m.NT.OTHER]=o.dataValue))})}ngOnDestroy(){this.unSubs.forEach(M=>{M.next(null),M.complete()})}}return u.\u0275fac=function(M){return new(M||u)(c.Y36(e.v),c.Y36(R.yh))},u.\u0275cmp=c.Xpm({type:u,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},features:[c.TTD],decls:2,vars:1,consts:[[3,"label",4,"ngFor","ngForOf"],[3,"label"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","center start","class","cc-data-block",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","class","p-1 error-border mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center start",1,"cc-data-block"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"cc-data-title"],["matTooltipPosition","below","class","info-icon",3,"matTooltip",4,"ngIf"],["class","cc-data-value",4,"ngIf"],["matTooltipPosition","below",1,"info-icon",3,"matTooltip"],[1,"cc-data-value"],["fxLayout","row","fxFlex","100",1,"p-1","error-border","mt-1"],[1,"cc-data-block"]],template:function(M,o){1&M&&(c.TgZ(0,"mat-tab-group"),c.YNc(1,T,4,3,"mat-tab",0),c.qZA()),2&M&&(c.xp6(1),c.Q6J("ngForOf",o.currencyUnits))},directives:[g.SP,_.sg,g.uX,V.xw,V.yH,V.Wh,_.O5,x.Hw,A.gM],pipes:[_.JJ],styles:[""]}),u})()},9122:(q,b,r)=>{r.d(b,{n:()=>M});var a=r(8966),H=r(801),m=r(7731),C=r(5e3),c=r(5043),e=r(62),R=r(7261),g=r(7093),_=r(9808),V=r(3322),x=r(159),A=r(9224),y=r(9444),w=r(7423),N=r(4834),O=r(3390),F=r(6895);const D=function(o){return{"display-none":o}};function T(o,p){if(1&o&&(C.TgZ(0,"div",20),C._UZ(1,"qr-code",21),C.qZA()),2&o){const h=C.oxw();C.Q6J("ngClass",C.VKq(4,D,h.screenSize===h.screenSizeEnum.XS||h.screenSize===h.screenSizeEnum.SM)),C.xp6(1),C.Q6J("value",h.address)("size",h.qrWidth)("errorCorrectionLevel","L")}}function k(o,p){if(1&o&&(C.TgZ(0,"div",22),C._UZ(1,"qr-code",21),C.qZA()),2&o){const h=C.oxw();C.Q6J("ngClass",C.VKq(4,D,h.screenSize!==h.screenSizeEnum.XS&&h.screenSize!==h.screenSizeEnum.SM)),C.xp6(1),C.Q6J("value",h.address)("size",h.qrWidth)("errorCorrectionLevel","L")}}function u(o,p){if(1&o&&(C.TgZ(0,"div",13)(1,"div",14)(2,"h4",15),C._uU(3,"Address Type"),C.qZA(),C.TgZ(4,"span",23),C._uU(5),C.qZA()()()),2&o){const h=C.oxw();C.xp6(5),C.Oqu(h.addressType)}}function z(o,p){1&o&&C._UZ(0,"mat-divider",17)}let M=(()=>{class o{constructor(h,v,E,P,U){this.dialogRef=h,this.data=v,this.logger=E,this.commonService=P,this.snackBar=U,this.faReceipt=H.dLy,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=m.cu}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(h){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+h)}}return o.\u0275fac=function(h){return new(h||o)(C.Y36(a.so),C.Y36(a.WI),C.Y36(c.mQ),C.Y36(e.v),C.Y36(R.ux))},o.\u0275cmp=C.Xpm({type:o,selectors:[["rtl-on-chain-generated-address"]],decls:25,vars:8,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","2","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-1"],["autoFocus","","mat-button","","color","primary","tabindex","1","type","submit","rtlClipboard","",3,"payload","copied"],["fxFlex","35","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[3,"value","size","errorCorrectionLevel"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(h,v){1&h&&(C.TgZ(0,"div",0),C.YNc(1,T,2,6,"div",1),C.TgZ(2,"div",2)(3,"mat-card-header",3)(4,"div",4),C._UZ(5,"fa-icon",5),C.TgZ(6,"span",6),C._uU(7),C.qZA()(),C.TgZ(8,"button",7),C.NdJ("click",function(){return v.onClose()}),C._uU(9,"X"),C.qZA()(),C.TgZ(10,"mat-card-content",8)(11,"div",9),C.YNc(12,k,2,6,"div",10),C.YNc(13,u,6,1,"div",11),C.YNc(14,z,1,0,"mat-divider",12),C.TgZ(15,"div",13)(16,"div",14)(17,"h4",15),C._uU(18,"Address"),C.qZA(),C.TgZ(19,"span",16),C._uU(20),C.qZA()()(),C._UZ(21,"mat-divider",17),C.TgZ(22,"div",18)(23,"button",19),C.NdJ("copied",function(P){return v.onCopyAddress(P)}),C._uU(24,"Copy Address"),C.qZA()()()()()()),2&h&&(C.xp6(1),C.Q6J("ngIf",v.address),C.xp6(4),C.Q6J("icon",v.faReceipt),C.xp6(2),C.Oqu(v.screenSize===v.screenSizeEnum.XS?"Address":"Generated Address"),C.xp6(5),C.Q6J("ngIf",v.address),C.xp6(1),C.Q6J("ngIf",""!==v.addressType),C.xp6(1),C.Q6J("ngIf",""!==v.addressType),C.xp6(6),C.Oqu(v.address),C.xp6(3),C.Q6J("payload",v.address))},directives:[g.xw,g.Wh,_.O5,g.yH,_.mk,V.oO,x.uU,A.dk,y.BN,w.lW,A.dn,N.d,O.h,F.y],styles:[""]}),o})()},7671:(q,b,r)=>{r.d(b,{D:()=>Z});var a=r(5e3),H=r(113),m=r(7731),C=r(5043),c=r(7093),e=r(7423),R=r(5245),g=r(9808),_=r(4107),V=r(3075),x=r(508),A=r(7322);let y=(()=>{class l extends x.LF{format(n,f){return"MMM YYYY"===f?m.gg[n.getMonth()].name+", "+n.getFullYear():"YYYY"===f?n.getFullYear().toString():n.getDate()+"/"+m.gg[n.getMonth()].name+"/"+n.getFullYear()}}return l.\u0275fac=function(){let L;return function(f){return(L||(L=a.n5z(l)))(f||l)}}(),l.\u0275prov=a.Yz7({token:l,factory:l.\u0275fac}),l})();const w={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},N={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let O=(()=>{class l{}return l.\u0275fac=function(n){return new(n||l)},l.\u0275dir=a.lG2({type:l,selectors:[["","monthlyDate",""]],features:[a._Bn([{provide:x._A,useClass:y},{provide:x.sG,useValue:w}])]}),l})(),F=(()=>{class l{}return l.\u0275fac=function(n){return new(n||l)},l.\u0275dir=a.lG2({type:l,selectors:[["","yearlyDate",""]],features:[a._Bn([{provide:x._A,useClass:y},{provide:x.sG,useValue:N}])]}),l})();var D=r(7531),T=r(6856),k=r(6534),u=r(9843);const z=["monthlyDatepicker"],M=["yearlyDatepicker"],o=function(){return{animationDirection:"forward"}};function p(l,L){if(1&l&&a.GkF(0,9),2&l){a.oxw();const n=a.MAs(19);a.Q6J("ngTemplateOutlet",n)("ngTemplateOutletContext",a.DdM(2,o))}}const h=function(){return{animationDirection:"backward"}};function v(l,L){if(1&l&&a.GkF(0,9),2&l){a.oxw();const n=a.MAs(19);a.Q6J("ngTemplateOutlet",n)("ngTemplateOutletContext",a.DdM(2,h))}}const E=function(){return{animationDirection:""}};function P(l,L){if(1&l&&a.GkF(0,9),2&l){a.oxw();const n=a.MAs(19);a.Q6J("ngTemplateOutlet",n)("ngTemplateOutletContext",a.DdM(2,E))}}function U(l,L){if(1&l&&(a.TgZ(0,"mat-option",17),a._uU(1),a.ALo(2,"titlecase"),a.qZA()),2&l){const n=L.$implicit;a.Q6J("value",n),a.xp6(1),a.hij(" ",a.lcZ(2,2,n)," ")}}function I(l,L){if(1&l){const n=a.EpF();a.TgZ(0,"mat-form-field",18)(1,"input",19,20),a.NdJ("ngModelChange",function(t){return a.CHM(n),a.oxw(2).selectedValue=t}),a.qZA(),a._UZ(3,"mat-datepicker-toggle",21),a.TgZ(4,"mat-datepicker",22,23),a.NdJ("monthSelected",function(t){return a.CHM(n),a.oxw(2).onMonthSelected(t)})("dateSelected",function(t){return a.CHM(n),a.oxw(2).onMonthSelected(t)}),a.qZA()()}if(2&l){const n=a.MAs(5),f=a.oxw(2);a.xp6(1),a.Q6J("matDatepicker",n)("min",f.first)("max",f.last)("ngModel",f.selectedValue),a.xp6(2),a.Q6J("for",n),a.xp6(1),a.Q6J("startAt",f.selectedValue)}}function B(l,L){if(1&l){const n=a.EpF();a.TgZ(0,"mat-form-field",24)(1,"input",25,26),a.NdJ("ngModelChange",function(t){return a.CHM(n),a.oxw(2).selectedValue=t}),a.qZA(),a._UZ(3,"mat-datepicker-toggle",21),a.TgZ(4,"mat-datepicker",27,28),a.NdJ("yearSelected",function(t){return a.CHM(n),a.oxw(2).onYearSelected(t)})("monthSelected",function(t){return a.CHM(n),a.oxw(2).onYearSelected(t)})("dateSelected",function(t){return a.CHM(n),a.oxw(2).onYearSelected(t)}),a.qZA()()}if(2&l){const n=a.MAs(5),f=a.oxw(2);a.xp6(1),a.Q6J("matDatepicker",n)("min",f.first)("max",f.last)("ngModel",f.selectedValue),a.xp6(2),a.Q6J("for",n),a.xp6(1),a.Q6J("startAt",f.selectedValue)}}function W(l,L){if(1&l){const n=a.EpF();a.TgZ(0,"div",10)(1,"div",11)(2,"mat-select",12),a.NdJ("ngModelChange",function(t){return a.CHM(n),a.oxw().selScrollRange=t})("selectionChange",function(t){return a.CHM(n),a.oxw().onRangeChanged(t)}),a.YNc(3,U,3,4,"mat-option",13),a.qZA()(),a.TgZ(4,"div",14),a.YNc(5,I,6,6,"mat-form-field",15),a.YNc(6,B,6,6,"mat-form-field",16),a.qZA()()}if(2&l){const n=a.oxw();a.Q6J("@sliderAnimation",n.animationDirection),a.xp6(2),a.Q6J("ngModel",n.selScrollRange),a.xp6(1),a.Q6J("ngForOf",n.scrollRanges),a.xp6(2),a.Q6J("ngIf",n.selScrollRange===n.scrollRanges[0]),a.xp6(1),a.Q6J("ngIf",n.selScrollRange===n.scrollRanges[1])}}let Z=(()=>{class l{constructor(n){this.logger=n,this.scrollRanges=m.op,this.selScrollRange=this.scrollRanges[0],this.today=new Date(Date.now()),this.first=new Date(2018,0,1,0,0,0),this.last=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate(),0,0,0),this.disablePrev=!1,this.disableNext=!0,this.animationDirection="",this.selectedValue=this.last,this.stepChanged=new a.vpe}onRangeChanged(n){this.selScrollRange=n.value,this.onStepChange("LAST")}onMonthSelected(n){this.selectedValue=n,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(n){this.selectedValue=n,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(n){switch(this.logger.info(n),n){case"FIRST":this.animationDirection="backward",this.selectedValue!==this.first&&(this.selectedValue=this.first,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange}));break;case"PREVIOUS":this.selectedValue=this.selScrollRange===m.op[1]?new Date(this.selectedValue.getFullYear()-1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()-1,1,0,0,0),this.animationDirection="backward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"NEXT":this.selectedValue=this.selScrollRange===m.op[1]?new Date(this.selectedValue.getFullYear()+1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()+1,1,0,0,0),this.animationDirection="forward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"LAST":this.animationDirection="forward",this.selectedValue=this.last,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;default:this.animationDirection="",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange})}this.disablePrev=this.selScrollRange===m.op[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===m.op[1]?this.selectedValue.getFullYear()>=this.last.getFullYear():this.selectedValue.getFullYear()>=this.last.getFullYear()&&this.selectedValue.getMonth()>=this.last.getMonth(),this.logger.info(this.disablePrev),this.logger.info(this.disableNext),setTimeout(()=>{this.animationDirection=""},800)}onChartMouseUp(n){"monthlyDate"===n.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===n.srcElement.name&&this.yearlyDatepicker.open()}}return l.\u0275fac=function(n){return new(n||l)(a.Y36(C.mQ))},l.\u0275cmp=a.Xpm({type:l,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(n,f){if(1&n&&(a.Gf(z,5),a.Gf(M,5)),2&n){let t;a.iGM(t=a.CRH())&&(f.monthlyDatepicker=t.first),a.iGM(t=a.CRH())&&(f.yearlyDatepicker=t.first)}},hostBindings:function(n,f){1&n&&a.NdJ("click",function(s){return f.onChartMouseUp(s)})},outputs:{stepChanged:"stepChanged"},decls:20,vars:5,consts:[["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","22"],["mat-icon-button","","color","primary","type","button","tabindex","1",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button","tabindex","2",3,"disabled","click"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","22"],["mat-icon-button","","color","primary","type","button","tabindex","5",1,"pr-4",3,"disabled","click"],["mat-icon-button","","color","primary","type","button","tabindex","6",3,"click"],["controlsPanel",""],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","56"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["fxFlex","80","fxFlex.gt-md","30","name","selScrlRange","placeholder","Range","tabindex","3",1,"font-bold-700",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","tabindex","4","readonly","",3,"matDatepicker","min","max","ngModel","ngModelChange"],["monthlyDt","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"startAt","monthSelected","dateSelected"],["monthlyDatepicker",""],["yearlyDate","","fxFlex","80","fxFlex.gt-md","30","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","tabindex","4","readonly","",3,"matDatepicker","min","max","ngModel","ngModelChange"],["yearlyDt","ngModel"],["startView","multi-year",3,"startAt","yearSelected","monthSelected","dateSelected"],["yearlyDatepicker",""]],template:function(n,f){1&n&&(a.TgZ(0,"div",0)(1,"div",1)(2,"button",2),a.NdJ("click",function(){return f.onStepChange("FIRST")}),a.TgZ(3,"mat-icon"),a._uU(4,"skip_previous"),a.qZA()(),a.TgZ(5,"button",3),a.NdJ("click",function(){return f.onStepChange("PREVIOUS")}),a.TgZ(6,"mat-icon"),a._uU(7,"navigate_before"),a.qZA()()(),a.YNc(8,p,1,3,"ng-container",4),a.YNc(9,v,1,3,"ng-container",4),a.YNc(10,P,1,3,"ng-container",4),a.TgZ(11,"div",5)(12,"button",6),a.NdJ("click",function(){return f.onStepChange("NEXT")}),a.TgZ(13,"mat-icon"),a._uU(14,"navigate_next"),a.qZA()(),a.TgZ(15,"button",7),a.NdJ("click",function(){return f.onStepChange("LAST")}),a.TgZ(16,"mat-icon"),a._uU(17,"skip_next"),a.qZA()()()(),a.YNc(18,W,7,5,"ng-template",null,8,a.W1O)),2&n&&(a.xp6(5),a.Q6J("disabled",f.disablePrev),a.xp6(3),a.Q6J("ngIf","forward"===f.animationDirection),a.xp6(1),a.Q6J("ngIf","backward"===f.animationDirection),a.xp6(1),a.Q6J("ngIf",""===f.animationDirection),a.xp6(2),a.Q6J("disabled",f.disableNext))},directives:[c.xw,c.Wh,c.yH,e.lW,R.Hw,g.O5,g.tP,_.gD,V.JJ,V.On,g.sg,x.ey,A.KE,O,D.Nt,T.hl,k.q,u.F,V.Fj,T.nW,A.R9,T.Mq,F],pipes:[g.rS],styles:[""],data:{animation:[H.l]}}),l})()},165:(q,b,r)=>{r.d(b,{g:()=>f});var a=r(6087),H=r(4847),m=r(2075),C=r(7731),c=r(7861),e=r(5e3),R=r(62),g=r(5620),_=r(9808),V=r(7093),x=r(7322),A=r(7531),y=r(3075),w=r(8129),N=r(4107),O=r(508),F=r(7423),D=r(3322);function T(t,s){1&t&&(e.TgZ(0,"th",27),e._uU(1,"Date"),e.qZA())}function k(t,s){if(1&t&&(e.TgZ(0,"td",28),e._uU(1),e.ALo(2,"date"),e.qZA()),2&t){const i=s.$implicit,d=e.oxw();e.xp6(1),e.Oqu(e.xi3(2,1,null==i?null:i.date,d.dataRange===d.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function u(t,s){1&t&&(e.TgZ(0,"th",29),e._uU(1,"Amount Paid (Sats)"),e.qZA())}function z(t,s){if(1&t&&(e.TgZ(0,"td",28)(1,"span",30),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&t){const i=s.$implicit;e.xp6(2),e.Oqu(e.xi3(3,1,null==i?null:i.amount_paid,"1.0-2"))}}function M(t,s){1&t&&(e.TgZ(0,"th",29),e._uU(1,"# Payments"),e.qZA())}function o(t,s){if(1&t&&(e.TgZ(0,"td",28)(1,"span",30),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&t){const i=s.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==i?null:i.num_payments))}}function p(t,s){1&t&&(e.TgZ(0,"th",29),e._uU(1,"Amount Received (Sats)"),e.qZA())}function h(t,s){if(1&t&&(e.TgZ(0,"td",28)(1,"span",30),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&t){const i=s.$implicit;e.xp6(2),e.Oqu(e.xi3(3,1,null==i?null:i.amount_received,"1.0-2"))}}function v(t,s){1&t&&(e.TgZ(0,"th",29),e._uU(1,"# Invoices"),e.qZA())}function E(t,s){if(1&t&&(e.TgZ(0,"td",28)(1,"span",30),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&t){const i=s.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==i?null:i.num_invoices))}}function P(t,s){if(1&t){const i=e.EpF();e.TgZ(0,"th",31)(1,"div",32)(2,"mat-select",33),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",34),e.NdJ("click",function(){return e.CHM(i),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function U(t,s){if(1&t){const i=e.EpF();e.TgZ(0,"td",35)(1,"button",36),e.NdJ("click",function(){const Y=e.CHM(i).$implicit;return e.oxw().onTransactionClick(Y)}),e._uU(2,"View Info"),e.qZA()()}}function I(t,s){1&t&&(e.TgZ(0,"p"),e._uU(1,"No transaction available."),e.qZA())}function B(t,s){if(1&t&&(e.TgZ(0,"td",37),e.YNc(1,I,2,0,"p",38),e.qZA()),2&t){const i=e.oxw();e.xp6(1),e.Q6J("ngIf",!(null!=i.transactions&&i.transactions.data)||(null==i.transactions||null==i.transactions.data?null:i.transactions.data.length)<1)}}const W=function(t){return{"display-none":t}};function Z(t,s){if(1&t&&e._UZ(0,"tr",39),2&t){const i=e.oxw();e.Q6J("ngClass",e.VKq(1,W,(null==i.transactions?null:i.transactions.data)&&(null==i.transactions||null==i.transactions.data?null:i.transactions.data.length)>0))}}function l(t,s){1&t&&e._UZ(0,"tr",40)}function L(t,s){1&t&&e._UZ(0,"tr",41)}const n=function(){return["no_transaction"]};let f=(()=>{class t{constructor(i,d,S){this.commonService=i,this.store=d,this.datePipe=S,this.dataRange=C.op[0],this.dataList=[],this.filterValue="",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=C.op,this.displayedColumns=[],this.flgSticky=!1,this.pageSize=C.IV,this.pageSizeOptions=C.TJ,this.screenSize="",this.screenSizeEnum=C.cu,this.screenSize=this.commonService.getScreenSize(),this.screenSize===C.cu.XS||this.screenSize===C.cu.SM?(this.flgSticky=!1,this.displayedColumns=["date","amount_paid","amount_received","actions"]):this.screenSize===C.cu.MD?(this.flgSticky=!1,this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices","actions"]):(this.flgSticky=!0,this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices","actions"])}ngOnInit(){this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){this.setTableWidgets()}ngOnChanges(i){i.dataList&&!i.dataList.firstChange&&this.loadTransactionsTable(this.dataList),i.filterValue&&!i.filterValue.firstChange&&this.applyFilter()}onTransactionClick(i){const d=[[{key:"date",value:this.datePipe.transform(i.date,this.dataRange===C.op[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:C.Gi.DATE}],[{key:"amount_paid",value:Math.round(i.amount_paid),title:"Amount Paid (Sats)",width:50,type:C.Gi.NUMBER},{key:"num_payments",value:i.num_payments,title:"# Payments",width:50,type:C.Gi.NUMBER}],[{key:"amount_received",value:Math.round(i.amount_received),title:"Amount Received (Sats)",width:50,type:C.Gi.NUMBER},{key:"num_invoices",value:i.num_invoices,title:"# Invoices",width:50,type:C.Gi.NUMBER}]];this.store.dispatch((0,c.qR)({payload:{data:{type:C.n_.INFORMATION,alertTitle:"Transaction Summary",message:d}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.filterValue.trim().toLowerCase())}loadTransactionsTable(i){this.transactions=new m.by(i?[...i]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sortingDataAccessor=(i,d)=>i[d]&&isNaN(i[d])?i[d].toLocaleLowerCase():i[d]?+i[d]:null,this.transactions.sort=this.sort,this.transactions.filterPredicate=(i,d)=>((i.date?(this.datePipe.transform(i.date,"dd/MMM")+"/"+i.date.getFullYear()).toLowerCase():"")+JSON.stringify(i).toLowerCase()).includes(d),this.transactions.paginator=this.paginator)}onDownloadCSV(){this.transactions.data&&this.transactions.data.length>0&&this.commonService.downloadFile(this.dataList,"Transactions-report-"+this.dataRange.toLowerCase())}}return t.\u0275fac=function(i){return new(i||t)(e.Y36(R.v),e.Y36(g.yh),e.Y36(_.uU))},t.\u0275cmp=e.Xpm({type:t,selectors:[["rtl-transactions-report-table"]],viewQuery:function(i,d){if(1&i&&(e.Gf(H.YE,5),e.Gf(a.NW,5)),2&i){let S;e.iGM(S=e.CRH())&&(d.sort=S.first),e.iGM(S=e.CRH())&&(d.paginator=S.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",filterValue:"filterValue"},features:[e._Bn([{provide:a.ye,useValue:(0,C.pt)("Transactions")}]),e.TTD],decls:34,vars:10,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount_paid"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","num_payments"],["matColumnDef","amount_received"],["matColumnDef","num_invoices"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,d){1&i&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"div",3),e.TgZ(4,"mat-form-field",4)(5,"input",5),e.NdJ("ngModelChange",function(Y){return d.filterValue=Y})("input",function(){return d.applyFilter()})("keyup",function(){return d.applyFilter()}),e.qZA()()(),e.TgZ(6,"div",6)(7,"div",7)(8,"table",8,9),e.ynx(10,10),e.YNc(11,T,2,0,"th",11),e.YNc(12,k,3,4,"td",12),e.BQk(),e.ynx(13,13),e.YNc(14,u,2,0,"th",14),e.YNc(15,z,4,4,"td",12),e.BQk(),e.ynx(16,15),e.YNc(17,M,2,0,"th",14),e.YNc(18,o,4,3,"td",12),e.BQk(),e.ynx(19,16),e.YNc(20,p,2,0,"th",14),e.YNc(21,h,4,4,"td",12),e.BQk(),e.ynx(22,17),e.YNc(23,v,2,0,"th",14),e.YNc(24,E,4,3,"td",12),e.BQk(),e.ynx(25,18),e.YNc(26,P,6,0,"th",19),e.YNc(27,U,3,0,"td",20),e.BQk(),e.ynx(28,21),e.YNc(29,B,2,1,"td",22),e.BQk(),e.YNc(30,Z,1,3,"tr",23),e.YNc(31,l,1,0,"tr",24),e.YNc(32,L,1,0,"tr",25),e.qZA(),e._UZ(33,"mat-paginator",26),e.qZA()()()()),2&i&&(e.xp6(5),e.Q6J("ngModel",d.filterValue),e.xp6(3),e.Q6J("dataSource",d.transactions),e.xp6(22),e.Q6J("matFooterRowDef",e.DdM(9,n)),e.xp6(1),e.Q6J("matHeaderRowDef",d.displayedColumns)("matHeaderRowDefSticky",d.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",d.displayedColumns),e.xp6(1),e.Q6J("pageSize",d.pageSize)("pageSizeOptions",d.pageSizeOptions)("showFirstLastButtons",d.screenSize!==d.screenSizeEnum.XS))},directives:[V.xw,V.yH,V.Wh,x.KE,A.Nt,y.Fj,y.JJ,y.On,w.$V,m.BZ,H.YE,m.w1,m.fO,m.ge,H.nU,m.Dz,m.ev,N.gD,N.$L,O.ey,F.lW,m.mD,m.yh,_.O5,m.Ke,m.Q2,_.mk,D.oO,m.as,m.XQ,m.nj,m.Gk,a.NW],pipes:[_.uU,_.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),t})()}}]); \ No newline at end of file diff --git a/frontend/924.1c1eb885f1f101d2.js b/frontend/924.1c1eb885f1f101d2.js deleted file mode 100644 index 9193587b..00000000 --- a/frontend/924.1c1eb885f1f101d2.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[924],{7924:(Bc,pt,f)=>{f.r(pt),f.d(pt,{ECLModule:()=>Hc});var u=f(9808),x=f(1402),Dt=f(8878),t=f(5e3),p=f(7093),J=f(5899);function Ut(n,a){1&n&&t._UZ(0,"mat-progress-bar",3)}let mt=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof x.OD:this.loading=!0;break;case i instanceof x.m2:case i instanceof x.gk:case i instanceof x.Q3:this.loading=!1}})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-root"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["outlet","outlet"],["color","primary","mode","indeterminate"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Ut,1,0,"mat-progress-bar",1),t._UZ(2,"router-outlet",null,2),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf",i.loading))},directives:[p.xw,p.yH,p.Wh,u.O5,J.pW,x.lC],styles:[""],data:{animation:[Dt.g]}}),n})();var d=f(7579),_=f(2722),it=f(1365),dt=f(534),L=f(801),l=f(7731),C=f(2501),R=f(5043),w=f(5620),N=f(62),q=f(9444),ht=f(3954),b=f(9224),F=f(7423),at=f(2181),_t=f(5245),E=f(3322);const ft=function(n){return{backgroundColor:n}};function Mt(n,a){if(1&n&&t._UZ(0,"span",6),2&n){const e=t.oxw();t.Q6J("ngStyle",t.VKq(1,ft,null==e.information?null:e.information.color))}}function Jt(n,a){if(1&n&&(t.TgZ(0,"div")(1,"h4",1),t._uU(2,"Color"),t.qZA(),t.TgZ(3,"div",2),t._UZ(4,"span",7),t._uU(5),t.ALo(6,"uppercase"),t.qZA()()),2&n){const e=t.oxw();t.xp6(4),t.Q6J("ngStyle",t.VKq(4,ft,null==e.information?null:e.information.color)),t.xp6(1),t.hij(" ",t.lcZ(6,2,null==e.information?null:e.information.color)," ")}}function Qt(n,a){if(1&n&&(t.TgZ(0,"span",2),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}let Yt=(()=>{class n{constructor(e){this.commonService=e,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(N.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[t.TTD],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div")(2,"h4",1),t._uU(3,"Alias"),t.qZA(),t.TgZ(4,"div",2),t._uU(5),t.YNc(6,Mt,1,3,"span",3),t.qZA()(),t.YNc(7,Jt,7,6,"div",4),t.TgZ(8,"div")(9,"h4",1),t._uU(10,"Implementation"),t.qZA(),t.TgZ(11,"div",2),t._uU(12),t.qZA()(),t.TgZ(13,"div")(14,"h4",1),t._uU(15,"Chain"),t.qZA(),t.YNc(16,Qt,2,1,"span",5),t.qZA()()),2&e&&(t.xp6(5),t.hij(" ",null==i.information?null:i.information.alias," "),t.xp6(1),t.Q6J("ngIf",!i.showColorFieldSeparately),t.xp6(1),t.Q6J("ngIf",i.showColorFieldSeparately),t.xp6(5),t.Oqu(null!=i.information&&i.information.lnImplementation||null!=i.information&&i.information.version?(null==i.information?null:i.information.lnImplementation)+" "+(null==i.information?null:i.information.version):""),t.xp6(4),t.Q6J("ngForOf",i.chains))},directives:[p.xw,p.yH,p.Wh,u.O5,u.PC,E.Zl,u.sg],pipes:[u.gd],styles:[""]}),n})();function Ht(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div")(2,"h4",3),t._uU(3,"Lightning"),t.qZA(),t.TgZ(4,"div",4),t._uU(5),t.ALo(6,"number"),t.qZA(),t._UZ(7,"mat-progress-bar",5),t.qZA(),t.TgZ(8,"div")(9,"h4",3),t._uU(10,"On-chain"),t.qZA(),t.TgZ(11,"div",4),t._uU(12),t.ALo(13,"number"),t.qZA(),t._UZ(14,"mat-progress-bar",5),t.qZA(),t.TgZ(15,"div")(16,"h4",3),t._uU(17,"Total"),t.qZA(),t.TgZ(18,"div",4),t._uU(19),t.ALo(20,"number"),t.qZA()()()),2&n){const e=t.oxw();t.xp6(5),t.hij("",t.lcZ(6,5,e.balances.lightning)," Sats"),t.xp6(2),t.s9C("value",e.balances.lightning/e.balances.total*100),t.xp6(5),t.hij("",t.lcZ(13,7,e.balances.onchain)," Sats"),t.xp6(2),t.s9C("value",e.balances.onchain/e.balances.total*100),t.xp6(5),t.hij("",t.lcZ(20,9,e.balances.total)," Sats")}}function Bt(n,a){if(1&n&&(t.TgZ(0,"div",6)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let zt=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,Ht,21,11,"div",0),t.YNc(1,Bt,3,1,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,p.xw,p.yH,p.Wh,J.pW],pipes:[u.JJ],styles:[""]}),n})();var y=f(7322),X=f(7238),$=f(4834),H=f(8129);const Vt=function(){return["../connections/channels/open"]},Gt=function(n){return{filter:n}};function Xt(n,a){if(1&n&&(t.TgZ(0,"div",19)(1,"a",20),t._uU(2),t.ALo(3,"slice"),t.qZA(),t.TgZ(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t._uU(7,"Local:"),t.qZA(),t._uU(8),t.ALo(9,"number"),t.qZA(),t.TgZ(10,"mat-hint",22),t._UZ(11,"fa-icon",23),t._uU(12),t.ALo(13,"number"),t.qZA(),t.TgZ(14,"mat-hint",24)(15,"strong",8),t._uU(16,"Remote:"),t.qZA(),t._uU(17),t.ALo(18,"number"),t.qZA()(),t._UZ(19,"mat-progress-bar",25),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(3);t.xp6(1),t.s9C("matTooltip",e.alias||e.shortChannelId),t.s9C("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Q6J("routerLink",t.DdM(23,Vt))("state",t.VKq(24,Gt,e.channelId)),t.xp6(1),t.AsE(" ",t.Dn7(3,11,(null==e?null:e.alias)||(null==e?null:e.shortChannelId),0,24),"",((null==e?null:e.alias)||(null==e?null:e.shortChannelId)).length>25?"...":""," "),t.xp6(6),t.hij("",t.xi3(9,15,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.xp6(3),t.Q6J("icon",i.faBalanceScale),t.xp6(1),t.hij(" (",t.lcZ(13,18,(null==e?null:e.balancedness)||0),") "),t.xp6(5),t.hij("",t.xi3(18,20,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.xp6(2),t.s9C("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function $t(n,a){if(1&n&&(t.TgZ(0,"div",17),t.YNc(1,Xt,20,26,"div",18),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.allChannels)}}function Wt(n,a){if(1&n&&(t.TgZ(0,"div",3)(1,"div",4)(2,"span",5),t._uU(3,"Total Capacity"),t.qZA(),t.TgZ(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t._uU(7,"Local:"),t.qZA(),t._uU(8),t.ALo(9,"number"),t.qZA(),t.TgZ(10,"mat-hint",9),t._UZ(11,"fa-icon",10),t._uU(12),t.ALo(13,"number"),t.qZA(),t.TgZ(14,"mat-hint",11)(15,"strong",8),t._uU(16,"Remote:"),t.qZA(),t._uU(17),t.ALo(18,"number"),t.qZA()(),t._UZ(19,"mat-progress-bar",12),t.qZA(),t.TgZ(20,"div",13),t._UZ(21,"mat-divider",14),t.qZA(),t.TgZ(22,"div",15),t.YNc(23,$t,2,1,"div",16),t.qZA()()),2&n){const e=t.oxw(),i=t.MAs(2);t.xp6(8),t.hij("",t.xi3(9,7,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.xp6(3),t.Q6J("icon",e.faBalanceScale),t.xp6(1),t.hij(" (",t.lcZ(13,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.xp6(5),t.hij("",t.xi3(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.xp6(2),t.s9C("value",null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0),t.xp6(4),t.Q6J("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",i)}}function Kt(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",26),t._uU(1," No channels available. "),t.TgZ(2,"button",27),t.NdJ("click",function(){return t.CHM(e),t.oxw().goToChannels()}),t._uU(3,"Open Channel"),t.qZA()()}}function jt(n,a){if(1&n&&(t.TgZ(0,"div",28)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let te=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=L.DL8,this.faDumbbell=L.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,Wt,24,15,"div",0),t.YNc(1,Kt,4,0,"ng-template",null,1,t.W1O),t.YNc(3,jt,3,1,"ng-template",null,2,t.W1O)),2&e){const o=t.MAs(4);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,p.xw,p.Wh,p.yH,y.bx,q.BN,X.gM,J.pW,$.d,H.$V,u.sg,x.yS,F.lW],pipes:[u.JJ,u.OU],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}),n})();function ee(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t._uU(4,"Daily"),t.qZA(),t.TgZ(5,"div",5),t._uU(6),t.ALo(7,"number"),t.qZA()(),t.TgZ(8,"div")(9,"h4",4),t._uU(10,"Weekly"),t.qZA(),t.TgZ(11,"div",5),t._uU(12),t.ALo(13,"number"),t.qZA()(),t.TgZ(14,"div")(15,"h4",4),t._uU(16,"Monthly"),t.qZA(),t.TgZ(17,"div",5),t._uU(18),t.ALo(19,"number"),t.qZA()()(),t.TgZ(20,"div",3)(21,"div")(22,"h4",4),t._uU(23,"Transactions"),t.qZA(),t.TgZ(24,"div",5),t._uU(25),t.ALo(26,"number"),t.qZA()(),t.TgZ(27,"div")(28,"h4",4),t._uU(29,"Transactions"),t.qZA(),t.TgZ(30,"div",5),t._uU(31),t.ALo(32,"number"),t.qZA()(),t.TgZ(33,"div")(34,"h4",4),t._uU(35,"Transactions"),t.qZA(),t.TgZ(36,"div",5),t._uU(37),t.ALo(38,"number"),t.qZA()()()()),2&n){const e=t.oxw();t.xp6(6),t.hij("",t.lcZ(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.xp6(6),t.hij("",t.lcZ(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.xp6(6),t.hij("",t.lcZ(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.xp6(7),t.Oqu(t.lcZ(26,12,null==e.fees?null:e.fees.daily_txs)),t.xp6(6),t.Oqu(t.lcZ(32,14,null==e.fees?null:e.fees.weekly_txs)),t.xp6(6),t.Oqu(t.lcZ(38,16,null==e.fees?null:e.fees.monthly_txs))}}function ne(n,a){if(1&n&&(t.TgZ(0,"div",6)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let ie=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){var e;if(null===(e=this.fees)||void 0===e?void 0:e.monthly_fee){this.totalFees=[{name:"Monthly",value:this.fees.monthly_fee},{name:"Weekly",value:this.fees.weekly_fee||0},{name:"Daily ",value:this.fees.daily_fee||0}];const i=Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10),o=Math.pow(10,i-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/o)*o/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[t.TTD],decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,ee,39,18,"div",0),t.YNc(1,ne,3,1,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,p.xw,p.yH,p.Wh],pipes:[u.JJ],styles:[""]}),n})();function ae(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t._uU(4,"Active"),t.qZA(),t.TgZ(5,"div",5),t._UZ(6,"span",6),t._uU(7),t.ALo(8,"number"),t.qZA()(),t.TgZ(9,"div")(10,"h4",4),t._uU(11,"Pending"),t.qZA(),t.TgZ(12,"div",5),t._UZ(13,"span",7),t._uU(14),t.ALo(15,"number"),t.qZA()(),t.TgZ(16,"div")(17,"h4",4),t._uU(18,"Inactive"),t.qZA(),t.TgZ(19,"div",5),t._UZ(20,"span",8),t._uU(21),t.ALo(22,"number"),t.qZA()()(),t.TgZ(23,"div",3)(24,"div")(25,"h4",4),t._uU(26,"Capacity"),t.qZA(),t.TgZ(27,"div",5),t._uU(28),t.ALo(29,"number"),t.qZA()(),t.TgZ(30,"div")(31,"h4",4),t._uU(32,"Capacity"),t.qZA(),t.TgZ(33,"div",5),t._uU(34),t.ALo(35,"number"),t.qZA()(),t.TgZ(36,"div")(37,"h4",4),t._uU(38,"Capacity"),t.qZA(),t.TgZ(39,"div",5),t._uU(40),t.ALo(41,"number"),t.qZA()()()()),2&n){const e=t.oxw();t.xp6(7),t.Oqu(t.lcZ(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.xp6(7),t.Oqu(t.lcZ(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.xp6(7),t.Oqu(t.lcZ(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.xp6(7),t.hij("",t.lcZ(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.xp6(6),t.hij("",t.lcZ(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.xp6(6),t.hij("",t.lcZ(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function oe(n,a){if(1&n&&(t.TgZ(0,"div",9)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let se=(()=>{class n{constructor(){this.channelsStatus={}}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,ae,42,18,"div",0),t.YNc(1,oe,3,1,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,p.xw,p.yH,p.Wh],pipes:[u.JJ],styles:[""]}),n})();function le(n,a){if(1&n&&(t.TgZ(0,"mat-hint",19)(1,"strong",20),t._uU(2,"Capacity: "),t.qZA(),t._uU(3),t.ALo(4,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(3),t.hij("",t.xi3(4,1,e.toRemote||0,"1.0-0")," Sats")}}function re(n,a){if(1&n&&(t.TgZ(0,"mat-hint",19)(1,"strong",20),t._uU(2,"Capacity: "),t.qZA(),t._uU(3),t.ALo(4,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(3),t.hij("",t.xi3(4,1,e.toLocal||0,"1.0-0")," Sats")}}function ce(n,a){if(1&n&&t._UZ(0,"mat-progress-bar",21),2&n){const e=t.oxw().$implicit,i=t.oxw(3);t.s9C("value",i.totalLiquidity>0?(+e.toRemote||0)/i.totalLiquidity*100:0)}}function ue(n,a){if(1&n&&t._UZ(0,"mat-progress-bar",21),2&n){const e=t.oxw().$implicit,i=t.oxw(3);t.s9C("value",i.totalLiquidity>0?(+e.toLocal||0)/i.totalLiquidity*100:0)}}const pe=function(){return["../connections/channels/open"]},me=function(n){return{filter:n}};function de(n,a){if(1&n&&(t.TgZ(0,"div",14)(1,"a",15),t._uU(2),t.ALo(3,"slice"),t.qZA(),t.TgZ(4,"div",16),t.YNc(5,le,5,4,"mat-hint",17),t.YNc(6,re,5,4,"mat-hint",17),t.qZA(),t.YNc(7,ce,1,1,"mat-progress-bar",18),t.YNc(8,ue,1,1,"mat-progress-bar",18),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(3);t.xp6(1),t.s9C("matTooltip",e.alias||e.shortChannelId),t.s9C("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Q6J("routerLink",t.DdM(14,pe))("state",t.VKq(15,me,e.channelId)),t.xp6(1),t.AsE(" ",t.Dn7(3,10,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.xp6(3),t.Q6J("ngIf","In"===i.direction),t.xp6(1),t.Q6J("ngIf","Out"===i.direction),t.xp6(1),t.Q6J("ngIf","In"===i.direction),t.xp6(1),t.Q6J("ngIf","Out"===i.direction)}}function he(n,a){if(1&n&&(t.TgZ(0,"div",12),t.YNc(1,de,9,17,"div",13),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.allChannels)}}const _e=function(n,a,e){return{"mb-4":n,"mb-2":a,"mb-1":e}};function fe(n,a){if(1&n&&(t.TgZ(0,"div",3)(1,"div",4)(2,"span",5),t._uU(3,"Total Capacity"),t.qZA(),t.TgZ(4,"mat-hint",6),t._uU(5),t.ALo(6,"number"),t.qZA(),t._UZ(7,"mat-progress-bar",7),t.qZA(),t.TgZ(8,"div",8),t._UZ(9,"mat-divider",9),t.qZA(),t.TgZ(10,"div",10),t.YNc(11,he,2,1,"div",11),t.qZA()()),2&n){const e=t.oxw(),i=t.MAs(2);t.Q6J("ngClass",t.kEZ(7,_e,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),t.xp6(5),t.hij("",t.xi3(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.xp6(6),t.Q6J("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",i)}}function ge(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",24),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).goToChannels()}),t._uU(1,"Open Channel"),t.qZA()}}function Ce(n,a){if(1&n&&(t.TgZ(0,"div",22),t._uU(1," No channels available. "),t.YNc(2,ge,2,0,"button",23),t.qZA()),2&n){const e=t.oxw();t.xp6(2),t.Q6J("ngIf","Out"===e.direction)}}function xe(n,a){if(1&n&&(t.TgZ(0,"div",25)(1,"p"),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Oqu(e.errorMessage)}}let ye=(()=>{class n{constructor(e,i){this.router=e,this.commonService=i,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0),t.Y36(N.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","9","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(e,i){if(1&e&&(t.YNc(0,fe,12,11,"div",0),t.YNc(1,Ce,3,1,"ng-template",null,1,t.W1O),t.YNc(3,xe,3,1,"ng-template",null,2,t.W1O)),2&e){const o=t.MAs(4);t.Q6J("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},directives:[u.O5,p.xw,p.Wh,p.yH,u.mk,E.oO,y.bx,J.pW,$.d,H.$V,u.sg,x.yS,X.gM,F.lW],pipes:[u.JJ,u.OU],styles:[""]}),n})();var P=f(3251),Q=f(9300),S=f(6087),A=f(4847),r=f(2075),U=f(8966),k=f(2994),G=f(6642),m=f(3075),M=f(7531),W=f(3390),K=f(6534),D=f(4107),B=f(508);function ve(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Description is required."),t.qZA())}function Le(n,a){if(1&n&&(t.TgZ(0,"mat-option",25),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=a.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(t.lcZ(2,2,e))}}function Te(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.invoiceError)}}function be(n,a){if(1&n&&(t.TgZ(0,"div",26),t._UZ(1,"fa-icon",27),t.YNc(2,Te,2,1,"span",11),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.invoiceError)}}let Ae=(()=>{class n{constructor(e,i,o,s,c,h){this.dialogRef=e,this.data=i,this.store=o,this.decimalPipe=s,this.commonService=c,this.actions=h,this.faExclamationTriangle=L.eHv,this.selNode={},this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.IV,this.timeUnitEnum=l.Qk,this.timeUnits=l.LO,this.selTimeUnit=l.Qk.SECS,this.invoiceError="",this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(C.pg).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,_.R)(this.unSubs[2]),(0,Q.h)(e=>e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===e.payload.action&&(e.payload.status===l.Bn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===l.Bn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){if(this.invoiceError="",!this.description)return!0;let i=this.expiry?this.expiry:3600;this.expiry&&this.selTimeUnit!==l.Qk.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.Qk.SECS));let o=null;o=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.Z$)({payload:o}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.Qk.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:e=>{this.invoiceValueHint="= "+e.symbol+this.decimalPipe.transform(e.OTHER,l.Xz.OTHER)+" "+e.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onTimeUnitChange(e){this.expiry&&this.selTimeUnit!==e.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,e.value)),this.selTimeUnit=e.value}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(U.WI),t.Y36(w.yh),t.Y36(u.JJ),t.Y36(N.v),t.Y36(G.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-create-invoices"]],decls:35,vars:16,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","placeholder","Description","tabindex","2","name","description","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxFlex","40"],["matInput","","placeholder","Amount","type","number","tabindex","3","name","invValue",3,"ngModel","step","min","ngModelChange","keyup"],["matSuffix",""],["fxFlex","30"],["matInput","","placeholder","Expiry","type","number","name","exp","tabindex","4",3,"ngModel","step","min","ngModelChange"],["fxFlex","26"],["tabindex","5","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){if(1&e){const o=t.EpF();t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Create Invoice"),t.qZA()(),t.TgZ(6,"button",5),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",9)(12,"input",10),t.NdJ("ngModelChange",function(c){return i.description=c}),t.qZA(),t.YNc(13,ve,2,0,"mat-error",11),t.qZA(),t.TgZ(14,"div",12)(15,"mat-form-field",13)(16,"input",14),t.NdJ("ngModelChange",function(c){return i.invoiceValue=c})("keyup",function(){return i.onInvoiceValueChange()}),t.qZA(),t.TgZ(17,"span",15),t._uU(18," Sats "),t.qZA(),t.TgZ(19,"mat-hint"),t._uU(20),t.qZA()(),t.TgZ(21,"mat-form-field",16)(22,"input",17),t.NdJ("ngModelChange",function(c){return i.expiry=c}),t.qZA(),t.TgZ(23,"span",15),t._uU(24),t.ALo(25,"titlecase"),t.qZA()(),t.TgZ(26,"mat-form-field",18)(27,"mat-select",19),t.NdJ("selectionChange",function(c){return i.onTimeUnitChange(c)}),t.YNc(28,Le,3,4,"mat-option",20),t.qZA()()(),t.YNc(29,be,3,2,"div",21),t.TgZ(30,"div",22)(31,"button",23),t.NdJ("click",function(){return i.resetData()}),t._uU(32,"Clear Field"),t.qZA(),t.TgZ(33,"button",24),t.NdJ("click",function(){t.CHM(o);const c=t.MAs(10);return i.onAddInvoice(c)}),t._uU(34,"Create Invoice"),t.qZA()()()()()()}2&e&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(6),t.Q6J("ngModel",i.description),t.xp6(1),t.Q6J("ngIf",!i.description),t.xp6(3),t.Q6J("ngModel",i.invoiceValue)("step",100)("min",1),t.xp6(4),t.Oqu(i.invoiceValueHint),t.xp6(2),t.Q6J("ngModel",i.expiry)("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),t.xp6(2),t.hij(" ",t.lcZ(25,14,i.selTimeUnit)," "),t.xp6(3),t.Q6J("value",i.selTimeUnit),t.xp6(1),t.Q6J("ngForOf",i.timeUnits),t.xp6(1),t.Q6J("ngIf",""!==i.invoiceError))},directives:[p.xw,p.yH,b.dk,p.Wh,F.lW,U.ZT,b.dn,m._Y,m.JL,m.F,y.KE,M.Nt,m.Fj,W.h,m.Q7,m.JJ,m.On,u.O5,y.TO,m.wV,m.qQ,K.q,y.R9,y.bx,D.gD,u.sg,B.ey,q.BN],pipes:[u.rS],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();var Se=f(7766),Z=f(7861);function Ze(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Description is required."),t.qZA())}function we(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"input",7),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().description=o}),t.qZA(),t.YNc(4,Ze,2,0,"mat-error",8),t.qZA(),t.TgZ(5,"mat-form-field",9)(6,"input",10,11),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().invoiceValue=o})("keyup",function(){return t.CHM(e),t.oxw().onInvoiceValueChange()}),t.qZA(),t.TgZ(8,"span",12),t._uU(9," Sats "),t.qZA(),t.TgZ(10,"mat-hint"),t._uU(11),t.qZA()(),t.TgZ(12,"div",13)(13,"button",14),t.NdJ("click",function(){return t.CHM(e),t.oxw().resetData()}),t._uU(14,"Clear Field"),t.qZA(),t.TgZ(15,"button",15),t.NdJ("click",function(){t.CHM(e);const o=t.MAs(1);return t.oxw().onAddInvoice(o)}),t._uU(16,"Create Invoice"),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("ngModel",e.description),t.xp6(1),t.Q6J("ngIf",!e.description),t.xp6(2),t.Q6J("ngModel",e.invoiceValue)("step",100)("min",1),t.xp6(5),t.Oqu(e.invoiceValueHint)}}function Ee(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",16)(1,"button",17),t.NdJ("click",function(){return t.CHM(e),t.oxw().openCreateInvoiceModal()}),t._uU(2,"Create Invoice"),t.qZA()()}}function Ie(n,a){1&n&&t._UZ(0,"mat-progress-bar",47)}function Oe(n,a){1&n&&(t.TgZ(0,"th",48),t._uU(1," Date Created "),t.qZA())}const ot=function(n){return{"mr-0":n}};function Fe(n,a){if(1&n&&t._UZ(0,"span",53),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,ot,e.screenSize===e.screenSizeEnum.XS))}}function qe(n,a){if(1&n&&t._UZ(0,"span",54),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,ot,e.screenSize===e.screenSizeEnum.XS))}}function Re(n,a){if(1&n&&t._UZ(0,"span",55),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,ot,e.screenSize===e.screenSizeEnum.XS))}}function Ne(n,a){if(1&n&&(t.TgZ(0,"td",49),t.YNc(1,Fe,1,3,"span",50),t.YNc(2,qe,1,3,"span",51),t.YNc(3,Re,1,3,"span",52),t._uU(4),t.ALo(5,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf","received"===e.status),t.xp6(1),t.Q6J("ngIf","unpaid"===e.status),t.xp6(1),t.Q6J("ngIf",!e.status||"expired"===e.status||"unknown"===e.status),t.xp6(1),t.hij(" ",t.xi3(5,4,1e3*e.timestamp,"dd/MMM/y HH:mm")," ")}}function ke(n,a){1&n&&(t.TgZ(0,"th",48),t._uU(1," Date Settled "),t.qZA())}function Pe(n,a){if(1&n&&(t.TgZ(0,"td",49),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*e.receivedAt,"dd/MMM/y HH:mm")||"-")}}function De(n,a){1&n&&(t.TgZ(0,"th",48),t._uU(1," Description "),t.qZA())}const Ue=function(n){return{"max-width":n}};function Me(n,a){if(1&n&&(t.TgZ(0,"td",49)(1,"div",56)(2,"span",57),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ue,i.screenSize===i.screenSizeEnum.XS?"10rem":"32rem")),t.xp6(2),t.Oqu(e.description)}}function Je(n,a){1&n&&(t.TgZ(0,"th",58),t._uU(1," Amount (Sats) "),t.qZA())}function Qe(n,a){if(1&n&&(t.TgZ(0,"td",59)(1,"span",60),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",e.amount?t.xi3(3,1,e.amount,"1.0-0"):"-","")}}function Ye(n,a){1&n&&(t.TgZ(0,"th",58),t._uU(1," Amount Settled (Sats) "),t.qZA())}function He(n,a){if(1&n&&(t.TgZ(0,"td",59)(1,"span",60),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",e.amountSettled?t.xi3(3,1,e.amountSettled,"1.0-0"):"-","")}}function Be(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",61)(1,"div",62)(2,"mat-select",63),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",64),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}const ze=function(n){return{"px-3":n}};function Ve(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",65)(1,"div",66)(2,"mat-select",67),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",64),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onInvoiceClick(s)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",64),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onRefreshInvoice(s)}),t._uU(7,"Refresh"),t.qZA()()()()}if(2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,ze,e.screenSize!==e.screenSizeEnum.XS))}}function Ge(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No invoice available."),t.qZA())}function Xe(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting invoices..."),t.qZA())}function $e(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function We(n,a){if(1&n&&(t.TgZ(0,"td",68),t.YNc(1,Ge,2,0,"p",8),t.YNc(2,Xe,2,0,"p",8),t.YNc(3,$e,2,1,"p",8),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Ke=function(n){return{"display-none":n}};function je(n,a){if(1&n&&t._UZ(0,"tr",69),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Ke,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function tn(n,a){1&n&&t._UZ(0,"tr",70)}function en(n,a){1&n&&t._UZ(0,"tr",71)}const nn=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},an=function(){return["no_invoice"]};function on(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",18)(1,"div",19)(2,"div",20),t._UZ(3,"fa-icon",21),t.TgZ(4,"span",22),t._uU(5,"Invoices History"),t.qZA()(),t.TgZ(6,"mat-form-field",23)(7,"input",24),t.NdJ("keyup",function(){return t.CHM(e),t.oxw().applyFilter()})("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilter=o}),t.qZA()()(),t.TgZ(8,"div",25),t.YNc(9,Ie,1,0,"mat-progress-bar",26),t.TgZ(10,"table",27,28),t.ynx(12,29),t.YNc(13,Oe,2,0,"th",30),t.YNc(14,Ne,6,7,"td",31),t.BQk(),t.ynx(15,32),t.YNc(16,ke,2,0,"th",30),t.YNc(17,Pe,3,4,"td",31),t.BQk(),t.ynx(18,33),t.YNc(19,De,2,0,"th",30),t.YNc(20,Me,4,4,"td",31),t.BQk(),t.ynx(21,34),t.YNc(22,Je,2,0,"th",35),t.YNc(23,Qe,4,4,"td",36),t.BQk(),t.ynx(24,37),t.YNc(25,Ye,2,0,"th",35),t.YNc(26,He,4,4,"td",36),t.BQk(),t.ynx(27,38),t.YNc(28,Be,6,0,"th",39),t.YNc(29,Ve,8,3,"td",40),t.BQk(),t.ynx(30,41),t.YNc(31,We,4,3,"td",42),t.BQk(),t.YNc(32,je,1,3,"tr",43),t.YNc(33,tn,1,0,"tr",44),t.YNc(34,en,1,0,"tr",45),t.qZA()(),t._UZ(35,"mat-paginator",46),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("icon",e.faHistory),t.xp6(4),t.Q6J("ngModel",e.selFilter),t.xp6(2),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.invoices)("ngClass",t.VKq(12,nn,""!==e.errorMessage)),t.xp6(22),t.Q6J("matFooterRowDef",t.DdM(14,an)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns)("matHeaderRowDefSticky",e.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let gt=(()=>{class n{constructor(e,i,o,s,c,h){this.logger=e,this.store=i,this.decimalPipe=o,this.commonService=s,this.datePipe=c,this.actions=h,this.calledFrom="transactions",this.faHistory=L.qO$,this.selNode={},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoiceJSONArr=[],this.information={},this.flgSticky=!1,this.selFilter="",this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["timestamp","amount","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["timestamp","amount","amountSettled","actions"]):(this.flgSticky=!0,this.displayedColumns=["timestamp","receivedAt","description","amount","amountSettled","actions"])}ngOnInit(){this.store.select(C.pg).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.Ef).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=e.invoices&&e.invoices.length>0?e.invoices:[],this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,_.R)(this.unSubs[3]),(0,Q.h)(e=>e.type===l.lr.SET_LOOKUP_ECL||e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.lr.SET_LOOKUP_ECL&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.invoiceJSONArr.length>0&&this.sort&&this.paginator&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,Z.qR)({payload:{data:{pageSize:this.pageSize,component:Ae}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:3600;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let o=null;o=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.Z$)({payload:o})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,Z.qR)({payload:{data:{invoice:e,newlyAdded:!1,component:Se.R}}}))}onRefreshInvoice(e){this.store.dispatch((0,k.n7)({payload:e.paymentHash}))}updateInvoicesData(e){var i;this.invoiceJSONArr=null===(i=this.invoiceJSONArr)||void 0===i?void 0:i.map(o=>o.paymentHash===e.paymentHash?e:o)}loadInvoicesTable(e){this.invoices=new r.by(e?[...e]:[]),this.invoices.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.invoices.sort=this.sort,this.invoices.filterPredicate=(i,o)=>{var s;return((i.timestamp?null===(s=this.datePipe.transform(new Date(1e3*i.timestamp),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(i).toLowerCase()).includes(o)},this.invoices.paginator=this.paginator,this.applyFilter()}resetData(){this.description="",this.invoiceValue=null,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[4])).subscribe({next:e=>{this.invoiceValueHint="= "+e.symbol+this.decimalPipe.transform(e.OTHER,l.Xz.OTHER)+" "+e.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(u.JJ),t.Y36(N.v),t.Y36(u.uU),t.Y36(G.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Invoices")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["addInvoiceForm","ngForm"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","placeholder","Description","tabindex","2","name","description","required","true",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxFlex","100","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","3","name","invValue",3,"ngModel","step","min","ngModelChange","keyup"],["invcVal","ngModel"],["matSuffix",""],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","receivedAt"],["matColumnDef","description"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pr-3",4,"matHeaderCellDef"],["mat-cell","","class","pr-3",4,"matCellDef"],["matColumnDef","amountSettled"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["class","dot green","matTooltip","Received","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired/Unknown","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Received","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired/Unknown","matTooltipPosition","right",1,"dot","red",3,"ngClass"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pr-3"],["mat-cell","",1,"pr-3"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",3,"ngClass"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,we,17,6,"form",1),t.YNc(2,Ee,3,0,"div",2),t.YNc(3,on,36,15,"div",3),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf","home"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom))},directives:[p.xw,p.yH,p.Wh,u.O5,m._Y,m.JL,m.F,y.KE,M.Nt,m.Fj,m.Q7,m.JJ,m.On,y.TO,m.wV,m.qQ,K.q,y.R9,y.bx,F.lW,q.BN,H.$V,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,X.gM,u.PC,E.Zl,D.gD,D.$L,B.ey,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[u.uU,u.JJ],styles:[".mat-column-description[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-description[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();var V=f(5698),st=f(3289),Ct=f(8104);const sn=["paymentReq"];function ln(n,a){if(1&n&&(t.TgZ(0,"mat-hint"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.paymentDecodedHint)}}function rn(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment request is required."),t.qZA())}function cn(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.paymentDecodedHint)}}function un(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment amount is required."),t.qZA())}function pn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-form-field",1)(1,"input",17,18),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().paymentAmount=o})("change",function(o){return t.CHM(e),t.oxw().onAmountChange(o)}),t.qZA(),t.TgZ(3,"mat-hint"),t._uU(4,"It is a zero amount invoice, enter amount to be paid."),t.qZA(),t.YNc(5,un,2,0,"mat-error",11),t.qZA()}if(2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngModel",e.paymentAmount),t.xp6(4),t.Q6J("ngIf",!e.paymentAmount)}}function mn(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.paymentError)}}function dn(n,a){if(1&n&&(t.TgZ(0,"div",19),t._UZ(1,"fa-icon",20),t.YNc(2,mn,2,1,"span",11),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.paymentError)}}let hn=(()=>{class n{constructor(e,i,o,s,c,h,g,T){this.dialogRef=e,this.store=i,this.eclEffects=o,this.logger=s,this.commonService=c,this.decimalPipe=h,this.actions=g,this.dataService=T,this.faExclamationTriangle=L.eHv,this.selNode={},this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.feeLimitTypes=l.Vc,this.paymentError="",this.unSubs=[new d.x,new d.x,new d.x,new d.x]}ngOnInit(){this.store.select(C.pg).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(e=>e.type===l.lr.UPDATE_API_CALL_STATUS_ECL||e.type===l.lr.SEND_PAYMENT_STATUS_ECL)).subscribe(e=>{e.type===l.lr.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&"SendPayment"===e.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=e.payload.message)})}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():(this.paymentAmount=null,this.paymentError="",this.paymentDecodedHint="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,V.q)(1)).subscribe({next:e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[2])).subscribe({next:i=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+i.symbol+this.decimalPipe.transform(i.OTHER?i.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description)},error:e=>{this.logger.error(e),this.paymentDecodedHint="ERROR: "+(e.message?e.message:"string"==typeof e?e:JSON.stringify(e)),this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,k.oV)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(e){this.paymentRequest=e&&"string"==typeof e?e.trim():e,this.paymentError="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,V.q)(1)).subscribe({next:i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+o.symbol+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description)},error:i=>{this.logger.error(i),this.paymentDecodedHint="ERROR: "+(i.message?i.message:"string"==typeof i?i:JSON.stringify(i)),this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(e){delete this.paymentDecoded.amount,this.paymentDecoded.amount=e}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHint="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(w.yh),t.Y36(st.o),t.Y36(R.mQ),t.Y36(N.v),t.Y36(u.JJ),t.Y36(G.eX),t.Y36(Ct.D))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(e,i){if(1&e&&t.Gf(sn,5),2&e){let o;t.iGM(o=t.CRH())&&(i.paymentReq=o.first)}},decls:24,vars:7,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["sendPaymentForm","ngForm"],["autoFocus","","matInput","","placeholder","Payment Request","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","3",3,"click"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){if(1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Send Payment"),t.qZA()(),t.TgZ(6,"button",5),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8)(11,"mat-form-field",1)(12,"textarea",9,10),t.NdJ("ngModelChange",function(s){return i.onPaymentRequestEntry(s)})("matTextareaAutosize",function(){return!0}),t.qZA(),t.YNc(14,ln,2,1,"mat-hint",11),t.YNc(15,rn,2,0,"mat-error",11),t.YNc(16,cn,2,1,"mat-error",11),t.qZA(),t.YNc(17,pn,6,2,"mat-form-field",12),t.YNc(18,dn,3,2,"div",13),t.TgZ(19,"div",14)(20,"button",15),t.NdJ("click",function(){return i.resetData()}),t._uU(21,"Clear Fields"),t.qZA(),t.TgZ(22,"button",16),t.NdJ("click",function(){return i.onSendPayment()}),t._uU(23,"Send Payment"),t.qZA()()()()()()),2&e){const o=t.MAs(13);t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(6),t.Q6J("ngModel",i.paymentRequest),t.xp6(2),t.Q6J("ngIf",i.paymentRequest&&""!==i.paymentDecodedHint),t.xp6(1),t.Q6J("ngIf",!i.paymentRequest),t.xp6(1),t.Q6J("ngIf",null==o.errors?null:o.errors.decodeError),t.xp6(1),t.Q6J("ngIf",i.zeroAmtInvoice),t.xp6(1),t.Q6J("ngIf",""!==i.paymentError)}},directives:[p.xw,p.yH,b.dk,p.Wh,F.lW,U.ZT,b.dn,m._Y,m.JL,m.F,y.KE,M.Nt,m.Fj,W.h,m.Q7,m.JJ,m.On,u.O5,y.bx,y.TO,q.BN],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-payment_hash[_ngcontent-%COMP%]{flex:1 1 20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();var z=f(1125);const _n=["scrollContainer"];function fn(n,a){if(1&n&&(t.TgZ(0,"div",9)(1,"div",1)(2,"h4",11),t._uU(3,"Description"),t.qZA(),t.TgZ(4,"span",12),t._uU(5),t.qZA()()()),2&n){const e=t.oxw();t.xp6(5),t.Oqu(e.description)}}function gn(n,a){1&n&&t._UZ(0,"mat-divider",14)}function Cn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-expansion-panel",23),t.NdJ("opened",function(){return t.CHM(e),t.oxw().onExpansionOpen(!0)})("closed",function(){return t.CHM(e),t.oxw().onExpansionOpen(!1)}),t.TgZ(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t._uU(4),t.qZA(),t.TgZ(5,"h4",25),t._uU(6),t.ALo(7,"number"),t.qZA()()(),t.TgZ(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t._uU(12,"Fees (mSats)"),t.qZA(),t.TgZ(13,"span",12),t._uU(14),t.ALo(15,"number"),t.qZA()(),t.TgZ(16,"div",26)(17,"h4",11),t._uU(18,"Date/Time"),t.qZA(),t.TgZ(19,"span",12),t._uU(20),t.ALo(21,"date"),t.qZA()()(),t._UZ(22,"mat-divider",14),t.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),t._uU(26,"ID"),t.qZA(),t.TgZ(27,"span",27),t._uU(28),t.qZA()()(),t._UZ(29,"mat-divider",14),t.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),t._uU(33,"To Channel"),t.qZA(),t.TgZ(34,"span",27),t._uU(35),t.qZA()()()()()}if(2&n){const e=a.$implicit,i=a.index,o=t.oxw();t.Q6J("expanded",o.expansionOpen),t.xp6(4),t.hij("Part ",i+1,""),t.xp6(2),t.hij("",t.lcZ(7,7,e.amount)," (Sats)"),t.xp6(8),t.Oqu(t.lcZ(15,9,e.feesPaid)),t.xp6(6),t.Oqu(t.xi3(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.xp6(8),t.Oqu(e.id),t.xp6(7),t.Oqu(e.toChannelAlias)}}let xn=(()=>{class n{constructor(e,i){this.dialogRef=e,this.data=i,this.description=null,this.shouldScroll=!0,this.expansionOpen=!0}ngOnInit(){this.payment=this.data.payment,this.data.sentPaymentInfo.length>0&&this.data.sentPaymentInfo[0].paymentRequest&&this.data.sentPaymentInfo[0].paymentRequest.description&&""!==this.data.sentPaymentInfo[0].paymentRequest.description&&(this.description=this.data.sentPaymentInfo[0].paymentRequest.description)}ngAfterViewChecked(){this.shouldScroll=this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+62.6}onExpansionOpen(e){this.expansionOpen=e}onClose(){this.dialogRef.close(!1)}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(U.WI))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(e,i){if(1&e&&t.Gf(_n,5),2&e){let o;t.iGM(o=t.CRH())&&(i.scrollContainer=o.first)}},decls:66,vars:15,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["scrollContainer",""],["fxLayout","column"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],["fxFlex","70"],[1,"w-100","my-1"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["class","flat-expansion-panel my-1",3,"expanded","opened","closed",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],[1,"flat-expansion-panel","my-1",3,"expanded","opened","closed"],["fxFlex","30","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","70","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Payment Information"),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return i.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6,7)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t._uU(14,"Amount (Sats)"),t.qZA(),t.TgZ(15,"span",12),t._uU(16),t.ALo(17,"number"),t.qZA()(),t.TgZ(18,"div",13)(19,"h4",11),t._uU(20,"Date/Time"),t.qZA(),t.TgZ(21,"span",12),t._uU(22),t.ALo(23,"date"),t.qZA()()(),t._UZ(24,"mat-divider",14),t.TgZ(25,"div",9)(26,"div",1)(27,"h4",11),t._uU(28,"ID"),t.qZA(),t.TgZ(29,"span",12),t._uU(30),t.qZA()()(),t._UZ(31,"mat-divider",14),t.TgZ(32,"div",9)(33,"div",1)(34,"h4",11),t._uU(35,"Payment Hash"),t.qZA(),t.TgZ(36,"span",12),t._uU(37),t.qZA()()(),t._UZ(38,"mat-divider",14),t.TgZ(39,"div",9)(40,"div",1)(41,"h4",11),t._uU(42,"Payment Preimage"),t.qZA(),t.TgZ(43,"span",12),t._uU(44),t.qZA()()(),t._UZ(45,"mat-divider",14),t.TgZ(46,"div",9)(47,"div",1)(48,"h4",11),t._uU(49,"Recipient Node"),t.qZA(),t.TgZ(50,"span",12),t._uU(51),t.qZA()()(),t._UZ(52,"mat-divider",14),t.YNc(53,fn,6,1,"div",15),t.YNc(54,gn,1,0,"mat-divider",16),t.TgZ(55,"div",9)(56,"div",1)(57,"mat-accordion"),t.YNc(58,Cn,36,14,"mat-expansion-panel",17),t.qZA()()()()(),t.TgZ(59,"div",18)(60,"button",19),t.NdJ("click",function(){return i.onScrollDown()}),t.TgZ(61,"mat-icon",20),t._uU(62,"arrow_downward"),t.qZA()()(),t.TgZ(63,"div",21)(64,"button",22),t._uU(65,"OK"),t.qZA()()()()),2&e&&(t.xp6(16),t.Oqu(t.lcZ(17,10,i.payment.recipientAmount)),t.xp6(6),t.Oqu(t.xi3(23,12,i.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.xp6(8),t.Oqu(i.payment.id),t.xp6(7),t.Oqu(i.payment.paymentHash),t.xp6(7),t.Oqu(i.payment.paymentPreimage),t.xp6(7),t.Oqu(i.payment.recipientNodeAlias),t.xp6(2),t.Q6J("ngIf",i.description),t.xp6(1),t.Q6J("ngIf",i.description),t.xp6(4),t.Q6J("ngForOf",i.payment.parts),t.xp6(6),t.Q6J("mat-dialog-close",!1))},directives:[p.xw,p.Wh,p.yH,b.dk,F.lW,b.dn,H.$V,$.d,u.O5,z.pp,u.sg,z.ib,z.yz,z.yK,_t.Hw,U.ZT],pipes:[u.JJ,u.uU],styles:[""]}),n})();var tt=f(3093);const yn=["sendPaymentForm"];function vn(n,a){if(1&n&&(t.TgZ(0,"mat-hint"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.paymentDecodedHint)}}function Ln(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment request is required."),t.qZA())}function Tn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"textarea",7,8),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().onPaymentRequestEntry(o)})("matTextareaAutosize",function(){return!0}),t.qZA(),t.YNc(5,vn,2,1,"mat-hint",9),t.YNc(6,Ln,2,0,"mat-error",9),t.qZA(),t.TgZ(7,"div",10)(8,"button",11),t.NdJ("click",function(){return t.CHM(e),t.oxw().resetData()}),t._uU(9,"Clear Field"),t.qZA(),t.TgZ(10,"button",12),t.NdJ("click",function(){return t.CHM(e),t.oxw().onSendPayment()}),t._uU(11,"Send Payment"),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("ngModel",e.paymentRequest),t.xp6(2),t.Q6J("ngIf",e.paymentRequest&&""!==e.paymentDecodedHint),t.xp6(1),t.Q6J("ngIf",!e.paymentRequest)}}function bn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",13)(1,"button",12),t.NdJ("click",function(){return t.CHM(e),t.oxw().openSendPaymentModal()}),t._uU(2,"Send Payment"),t.qZA()()}}function An(n,a){1&n&&t._UZ(0,"mat-progress-bar",49)}function Sn(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Date/Time"),t.qZA())}function Zn(n,a){if(1&n&&(t.TgZ(0,"td",51),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function wn(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"ID"),t.qZA())}const j=function(n){return{"max-width":n}};function En(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"div",52)(2,"span",53),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"10rem":"22rem")),t.xp6(2),t.Oqu(e.id)}}function In(n,a){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Destination"),t.qZA())}function On(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"div",52)(2,"span",53),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"10rem":"22rem")),t.xp6(2),t.Oqu(e.recipientNodeAlias)}}function Fn(n,a){1&n&&(t.TgZ(0,"th",54),t._uU(1,"Amount (Sats)"),t.qZA())}function qn(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"span",55),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.recipientAmount))}}function Rn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",56)(1,"div",57)(2,"mat-select",58),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",59),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Nn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",60)(1,"button",61),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onPaymentClick(s)}),t._uU(2,"View Info"),t.qZA()()}}function kn(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No payment available."),t.qZA())}function Pn(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting payments..."),t.qZA())}function Dn(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function Un(n,a){if(1&n&&(t.TgZ(0,"td",62),t.YNc(1,kn,2,0,"p",9),t.YNc(2,Pn,2,0,"p",9),t.YNc(3,Dn,2,1,"p",9),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Mn(n,a){if(1&n&&(t.TgZ(0,"span",65),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function Jn(n,a){if(1&n&&(t.ynx(0),t.YNc(1,Mn,3,4,"span",64),t.BQk()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Qn(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"span",63),t._uU(2),t.qZA(),t.YNc(3,Jn,2,1,"ng-container",9),t.qZA()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" Total Attempts: ",null==e||null==e.parts?null:e.parts.length," "),t.xp6(1),t.Q6J("ngIf",e.is_expanded)}}function Yn(n,a){if(1&n&&(t.TgZ(0,"span",63)(1,"span",66)(2,"span",53),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"10rem":"22rem")),t.xp6(2),t.Oqu(e.id)}}function Hn(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Yn,4,4,"span",67),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Bn(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"div",66)(2,"span",53),t._uU(3),t.qZA()(),t.YNc(4,Hn,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"10rem":"22rem")),t.xp6(2),t.Oqu(e.id),t.xp6(1),t.Q6J("ngIf",e.is_expanded)}}function zn(n,a){if(1&n&&(t.TgZ(0,"span",63)(1,"span",66)(2,"span",53),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"10rem":"22rem")),t.xp6(2),t.Oqu(e.toChannelAlias)}}function Vn(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,zn,4,4,"span",67),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Gn(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"div",66)(2,"span",53),t._uU(3),t.qZA()(),t.YNc(4,Vn,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"10rem":"22rem")),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeAlias),t.xp6(1),t.Q6J("ngIf",e.is_expanded)}}function Xn(n,a){if(1&n&&(t.TgZ(0,"span",68),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,e.amount,"1.0-0")," ")}}function $n(n,a){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Xn,3,4,"span",69),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function Wn(n,a){if(1&n&&(t.TgZ(0,"td",51)(1,"span",68),t._uU(2),t.ALo(3,"number"),t.qZA(),t.YNc(4,$n,2,1,"span",9),t.qZA()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.xi3(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.xp6(2),t.Q6J("ngIf",e.is_expanded)}}function Kn(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",71)(1,"button",74),t.NdJ("click",function(){const s=t.CHM(e).$implicit,c=t.oxw(2).$implicit;return t.oxw(2).onPartClick(s,c)}),t._uU(2),t.qZA()()}if(2&n){const e=a.index;t.xp6(2),t.hij("View ",e+1,"")}}function jn(n,a){if(1&n&&(t.TgZ(0,"div"),t.YNc(1,Kn,3,1,"div",73),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Q6J("ngForOf",null==e?null:e.parts)}}function ti(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",70)(1,"span",71)(2,"button",72),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return s.is_expanded=!s.is_expanded}),t._uU(3),t.qZA()(),t.YNc(4,jn,2,1,"div",9),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(3),t.Oqu(e.is_expanded?"Hide":"Show"),t.xp6(1),t.Q6J("ngIf",e.is_expanded)}}function ei(n,a){1&n&&t._UZ(0,"tr",75)}const ni=function(n){return{"display-none":n}};function ii(n,a){if(1&n&&t._UZ(0,"tr",76),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,ni,(null==e.payments?null:e.payments.data)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function ai(n,a){1&n&&t._UZ(0,"tr",77)}function oi(n,a){1&n&&t._UZ(0,"tr",75)}const si=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},li=function(){return["no_payment"]};function ri(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",14)(1,"div",15)(2,"div",16),t._UZ(3,"fa-icon",17),t.TgZ(4,"span",18),t._uU(5,"Payments History"),t.qZA()(),t.TgZ(6,"mat-form-field",19)(7,"input",20),t.NdJ("keyup",function(){return t.CHM(e),t.oxw().applyFilter()})("ngModelChange",function(o){return t.CHM(e),t.oxw().selFilter=o}),t.qZA()()(),t.TgZ(8,"div",21)(9,"div",22),t.YNc(10,An,1,0,"mat-progress-bar",23),t.TgZ(11,"table",24,25),t.ynx(13,26),t.YNc(14,Sn,2,0,"th",27),t.YNc(15,Zn,3,4,"td",28),t.BQk(),t.ynx(16,29),t.YNc(17,wn,2,0,"th",27),t.YNc(18,En,4,4,"td",28),t.BQk(),t.ynx(19,30),t.YNc(20,In,2,0,"th",27),t.YNc(21,On,4,4,"td",28),t.BQk(),t.ynx(22,31),t.YNc(23,Fn,2,0,"th",32),t.YNc(24,qn,4,3,"td",28),t.BQk(),t.ynx(25,33),t.YNc(26,Rn,6,0,"th",34),t.YNc(27,Nn,3,0,"td",35),t.BQk(),t.ynx(28,36),t.YNc(29,Un,4,3,"td",37),t.BQk(),t.ynx(30,38),t.YNc(31,Qn,4,2,"td",28),t.BQk(),t.ynx(32,39),t.YNc(33,Bn,5,5,"td",28),t.BQk(),t.ynx(34,40),t.YNc(35,Gn,5,5,"td",28),t.BQk(),t.ynx(36,41),t.YNc(37,Wn,5,5,"td",28),t.BQk(),t.ynx(38,42),t.YNc(39,ti,5,2,"td",43),t.BQk(),t.YNc(40,ei,1,0,"tr",44),t.YNc(41,ii,1,3,"tr",45),t.YNc(42,ai,1,0,"tr",46),t.YNc(43,oi,1,0,"tr",47),t.qZA()()(),t._UZ(44,"mat-paginator",48),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("icon",e.faHistory),t.xp6(4),t.Q6J("ngModel",e.selFilter),t.xp6(3),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.payments)("ngClass",t.VKq(14,si,""!==e.errorMessage)),t.xp6(29),t.Q6J("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.xp6(1),t.Q6J("matFooterRowDef",t.DdM(16,li)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns)("matHeaderRowDefSticky",e.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let xt=(()=>{class n{constructor(e,i,o,s,c,h,g){this.logger=e,this.commonService=i,this.store=o,this.rtlEffects=s,this.decimalPipe=c,this.dataService=h,this.datePipe=g,this.calledFrom="transactions",this.faHistory=L.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHint="",this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["firstPartTimestamp","actions"],this.partColumns=["groupTotal","groupAction"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["firstPartTimestamp","recipientAmount","actions"],this.partColumns=["groupTotal","groupAmount","groupAction"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["firstPartTimestamp","id","recipientAmount","actions"],this.partColumns=["groupTotal","groupId","groupAmount","groupAction"]):(this.flgSticky=!0,this.displayedColumns=["firstPartTimestamp","id","recipientNodeAlias","recipientAmount","actions"],this.partColumns=["groupTotal","groupId","groupChannelAlias","groupAmount","groupAction"])}ngOnInit(){this.store.select(C.pg).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=e.payments&&e.payments.sent&&e.payments.sent.length>0?e.payments.sent:[],this.paymentJSONArr.length>0&&this.sort&&this.paginator&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}loadPaymentsTable(e){this.payments=new r.by(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,o)=>{var s,c,h,g;switch(o){case"firstPartTimestamp":return this.commonService.sortByKey(i.parts,"timestamp","number",null===(s=this.sort)||void 0===s?void 0:s.direction),i.firstPartTimestamp;case"id":return this.commonService.sortByKey(i.parts,"id","string",null===(c=this.sort)||void 0===c?void 0:c.direction),i.id;case"recipientNodeAlias":return this.commonService.sortByKey(i.parts,"toChannelAlias","string",null===(h=this.sort)||void 0===h?void 0:h.direction),i.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(i.parts,"amount","number",null===(g=this.sort)||void 0===g?void 0:g.direction),i.recipientAmount;default:return i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null}},this.payments.filterPredicate=(i,o)=>{var s;return((i.firstPartTimestamp?null===(s=this.datePipe.transform(new Date(i.firstPartTimestamp),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(i).toLowerCase()).includes(o)},this.payments.paginator=this.paginator,this.applyFilter()}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,V.q)(1)).subscribe(e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp?(this.paymentDecoded.amount||(this.paymentDecoded.amount=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.paymentHash||"",this.paymentDecoded.amount&&0!==this.paymentDecoded.amount?(this.store.dispatch((0,Z.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:l.Gi.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.Gi.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,V.q)(1)).subscribe(i=>{i&&(this.store.dispatch((0,k.oV)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,Z.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:l.Gi.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.Gi.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:l.Gi.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,V.q)(1)).subscribe(o=>{o&&(this.paymentDecoded.amount=o[0].inputValue,this.store.dispatch((0,k.oV)({payload:{invoice:this.paymentRequest,amountMsat:1e3*o[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHint="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,V.q)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.amount?this.selNode&&this.selNode.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.NT.SATS,l.NT.OTHER,this.selNode.currencyUnits&&this.selNode.currencyUnits.length>2?this.selNode.currencyUnits[2]:"",this.selNode.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+o.symbol+this.decimalPipe.transform(o.OTHER?o.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}openSendPaymentModal(){this.store.dispatch((0,Z.qR)({payload:{data:{component:hn}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(e,i){return i.parts&&i.parts.length>1}onPaymentClick(e){e.paymentHash&&""!==e.paymentHash.trim()?this.dataService.decodePayments(e.paymentHash).pipe((0,V.q)(1)).subscribe({next:i=>{setTimeout(()=>{this.showPaymentView(e,i.length&&i.length>0?i[0]:[])},0)},error:i=>{this.showPaymentView(e,[])}}):this.showPaymentView(e,[])}showPaymentView(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{sentPaymentInfo:i,payment:e,component:xn}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,V.q)(1)).subscribe({next:o=>{setTimeout(()=>{this.showPartView(e,i,o.length&&o.length>0?o[0]:[])},0)},error:o=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,o){const s=[[{key:"paymentHash",value:i.paymentHash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"paymentPreimage",value:i.paymentPreimage,title:"Payment Preimage",width:100,type:l.Gi.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"Channel",width:100,type:l.Gi.STRING}],[{key:"id",value:e.id,title:"Part ID",width:50,type:l.Gi.STRING},{key:"timestamp",value:e.timestamp,title:"Time",width:50,type:l.Gi.DATE_TIME}],[{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER},{key:"feesPaid",value:e.feesPaid,title:"Fee (Sats)",width:50,type:l.Gi.NUMBER}]];o&&o.length>0&&o[0].paymentRequest&&o[0].paymentRequest.description&&""!==o[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:o[0].paymentRequest.description,title:"Description",width:100,type:l.Gi.STRING}]),this.store.dispatch((0,Z.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Payment Part Information",message:s}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=null==e?void 0:e.reduce((o,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(o=""===o?s.paymentHash:o+","+s.paymentHash),o),"");this.dataService.decodePayments(i).pipe((0,_.R)(this.unSubs[4])).subscribe(o=>{o.forEach((c,h)=>{c.length>0&&c[0].paymentRequest&&c[0].paymentRequest.description&&""!==c[0].paymentRequest.description&&(e[h].description=c[0].paymentRequest.description)});const s=null==e?void 0:e.reduce((c,h)=>c.concat(h),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh),t.Y36(tt.V),t.Y36(u.JJ),t.Y36(Ct.D),t.Y36(u.uU))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(e,i){if(1&e&&(t.Gf(yn,5),t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first),t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Payments")}])],decls:4,vars:3,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["sendPaymentForm","ngForm"],["fxFlex","100"],["matInput","","placeholder","Payment Request","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30","fxLayoutAlign","start end"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","firstPartTimestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","recipientNodeAlias"],["matColumnDef","recipientAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","groupTotal"],["matColumnDef","groupId"],["matColumnDef","groupChannelAlias"],["matColumnDef","groupAmount"],["matColumnDef","groupAction"],["mat-cell","","class","px-3",4,"matCellDef"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"part-row-span"],["fxLayoutAlign","start center","class","part-row-span pl-3",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"part-row-span","pl-3"],["fxLayoutAlign","start center",1,"ellipsis-parent","part-row-span",3,"ngStyle"],["fxLayoutAlign","start center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-row-span"],["fxLayoutAlign","end center","class","part-row-span",4,"ngFor","ngForOf"],["mat-cell","",1,"px-3"],["fxLayoutAlign","end start"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["fxLayoutAlign","end start",4,"ngFor","ngForOf"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-part-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Tn,12,3,"form",1),t.YNc(2,bn,3,0,"div",2),t.YNc(3,ri,45,17,"div",3),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf","home"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===i.calledFrom))},directives:[p.xw,p.yH,p.Wh,u.O5,m._Y,m.JL,m.F,y.KE,M.Nt,m.Fj,m.Q7,H.$V,m.JJ,m.On,y.bx,y.TO,F.lW,q.BN,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,u.PC,E.Zl,D.gD,D.$L,B.ey,r.mD,r.yh,u.sg,r.nj,r.Gk,r.Ke,r.Q2,r.as,r.XQ,S.NW],pipes:[u.uU,u.JJ],styles:[".mat-column-id[_ngcontent-%COMP%], .mat-column-recipientNodeAlias[_ngcontent-%COMP%], .mat-column-groupId[_ngcontent-%COMP%], .mat-column-groupChannelAlias[_ngcontent-%COMP%]{padding:0 1rem;flex:0 0 25%;width:25%}.mat-column-id[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%], .mat-column-recipientNodeAlias[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%], .mat-column-groupId[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%], .mat-column-groupChannelAlias[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-actions[_ngcontent-%COMP%], .mat-column-groupAction[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-groupAction[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{width:9rem}.mat-column-groupAction[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{margin-top:.5rem;width:9rem}.part-row-span[_ngcontent-%COMP%]{min-height:4.2rem;place-content:center flex-start;align-items:center}.mat-column-groupTotal[_ngcontent-%COMP%]{min-width:15rem}"]}),n})();function ci(n,a){if(1&n&&(t.TgZ(0,"button",26)(1,"mat-icon"),t._uU(2,"more_vert"),t.qZA()()),2&n){t.oxw();const e=t.MAs(11);t.Q6J("matMenuTriggerFor",e)}}function ui(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,c=t.oxw().$implicit;return t.oxw(2).onNavigateTo(c.links[s])}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function pi(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){return t.CHM(e),t.oxw(3).onsortChannelsBy()}),t._uU(1),t.qZA()}if(2&n){const e=t.oxw(3);t.xp6(1),t.hij("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function mi(n,a){1&n&&t._UZ(0,"mat-progress-bar",28)}function di(n,a){if(1&n&&t._UZ(0,"rtl-ecl-node-info",29),2&n){const e=t.oxw(3);t.Q6J("information",e.information)("showColorFieldSeparately",!1)}}function hi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-balances-info",30),2&n){const e=t.oxw(3);t.Q6J("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function _i(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-capacity-info",31),2&n){const e=t.oxw(3);t.Q6J("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function fi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-fee-info",32),2&n){const e=t.oxw(3);t.Q6J("fees",e.fees)("errorMessage",e.errorMessages[1])}}function gi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-status-info",33),2&n){const e=t.oxw(3);t.Q6J("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function Ci(n,a){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find information!"),t.qZA())}const yt=function(n){return{"dashboard-card-content":!0,"error-border":n}};function xi(n,a){if(1&n&&(t.TgZ(0,"mat-grid-tile",8)(1,"mat-card",9)(2,"mat-card-header")(3,"mat-card-title",10)(4,"div"),t._UZ(5,"fa-icon",11),t.TgZ(6,"span"),t._uU(7),t.qZA()(),t.TgZ(8,"div"),t.YNc(9,ci,3,1,"button",12),t.TgZ(10,"mat-menu",13,14),t.YNc(12,ui,2,1,"button",15),t.YNc(13,pi,2,1,"button",16),t.qZA()()()(),t.TgZ(14,"mat-card-content",17),t.YNc(15,mi,1,0,"mat-progress-bar",18),t.TgZ(16,"div",19),t.YNc(17,di,1,2,"rtl-ecl-node-info",20),t.YNc(18,hi,1,2,"rtl-ecl-balances-info",21),t.YNc(19,_i,1,4,"rtl-ecl-channel-capacity-info",22),t.YNc(20,fi,1,2,"rtl-ecl-fee-info",23),t.YNc(21,gi,1,2,"rtl-ecl-channel-status-info",24),t.YNc(22,Ci,2,0,"h3",25),t.qZA()()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("colspan",e.cols)("rowspan",e.rows),t.xp6(5),t.Q6J("icon",e.icon),t.xp6(2),t.Oqu(e.title),t.xp6(2),t.Q6J("ngIf",e.links[0]),t.xp6(3),t.Q6J("ngForOf",e.goToOptions),t.xp6(1),t.Q6J("ngIf","capacity"===e.id),t.xp6(1),t.s9C("fxFlex","capacity"===e.id?90:70),t.Q6J("ngClass",t.VKq(16,yt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),t.xp6(1),t.Q6J("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngSwitch",e.id),t.xp6(1),t.Q6J("ngSwitchCase","node"),t.xp6(1),t.Q6J("ngSwitchCase","balance"),t.xp6(1),t.Q6J("ngSwitchCase","capacity"),t.xp6(1),t.Q6J("ngSwitchCase","fee"),t.xp6(1),t.Q6J("ngSwitchCase","status")}}function yi(n,a){if(1&n&&(t.TgZ(0,"div",2)(1,"div",3),t._UZ(2,"fa-icon",4),t.TgZ(3,"span",5),t._uU(4),t.qZA()(),t.TgZ(5,"mat-grid-list",6),t.YNc(6,xi,23,18,"mat-grid-tile",7),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.Q6J("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.xp6(2),t.Oqu(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),t.xp6(1),t.Q6J("rowHeight",e.operatorCardHeight),t.xp6(1),t.Q6J("ngForOf",e.operatorCards)}}function vi(n,a){if(1&n&&(t.TgZ(0,"button",26)(1,"mat-icon"),t._uU(2,"more_vert"),t.qZA()()),2&n){t.oxw();const e=t.MAs(9);t.Q6J("matMenuTriggerFor",e)}}function Li(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,c=t.oxw(2).$implicit;return t.oxw(2).onNavigateTo(c.links[s])}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function Ti(n,a){if(1&n&&(t.TgZ(0,"mat-card-header")(1,"mat-card-title",10)(2,"div"),t._UZ(3,"fa-icon",11),t.TgZ(4,"span"),t._uU(5),t.qZA()(),t.TgZ(6,"div"),t.YNc(7,vi,3,1,"button",12),t.TgZ(8,"mat-menu",13,42),t.YNc(10,Li,2,1,"button",15),t.qZA()()()()),2&n){const e=t.oxw().$implicit;t.xp6(3),t.Q6J("icon",e.icon),t.xp6(2),t.Oqu(e.title),t.xp6(2),t.Q6J("ngIf",e.links[0]),t.xp6(3),t.Q6J("ngForOf",e.goToOptions)}}function bi(n,a){1&n&&t._UZ(0,"mat-progress-bar",28)}function Ai(n,a){if(1&n&&t._UZ(0,"rtl-ecl-node-info",43),2&n){const e=t.oxw(3);t.Q6J("information",e.information)}}function Si(n,a){if(1&n&&t._UZ(0,"rtl-ecl-balances-info",30),2&n){const e=t.oxw(3);t.Q6J("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Zi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-liquidity-info",44),2&n){const e=t.oxw(3);t.Q6J("direction","In")("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function wi(n,a){if(1&n&&t._UZ(0,"rtl-ecl-channel-liquidity-info",44),2&n){const e=t.oxw(3);t.Q6J("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function Ei(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,c=t.oxw(3).$implicit;return t.oxw(2).onNavigateTo(c.links[s])}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e)}}function Ii(n,a){if(1&n&&(t.TgZ(0,"button",26)(1,"mat-icon"),t._uU(2,"more_vert"),t.qZA()(),t.TgZ(3,"mat-menu",13,53),t.YNc(5,Ei,2,1,"button",15),t.qZA()),2&n){const e=t.MAs(4),i=t.oxw(2).$implicit;t.Q6J("matMenuTriggerFor",e),t.xp6(5),t.Q6J("ngForOf",i.goToOptions)}}function Oi(n,a){1&n&&(t.TgZ(0,"span",45)(1,"mat-tab-group",46)(2,"mat-tab",47),t._UZ(3,"rtl-ecl-lightning-invoices",48),t.qZA(),t.TgZ(4,"mat-tab",49),t._UZ(5,"rtl-ecl-lightning-payments",50),t.qZA(),t.TgZ(6,"mat-tab",51),t.YNc(7,Ii,6,2,"ng-template",52),t.qZA()()()),2&n&&(t.xp6(3),t.Q6J("calledFrom","home"),t.xp6(2),t.Q6J("calledFrom","home"),t.xp6(1),t.Q6J("disabled",!0))}function Fi(n,a){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find information!"),t.qZA())}const qi=function(n){return{"p-0":n}};function Ri(n,a){if(1&n&&(t.TgZ(0,"mat-grid-tile",8)(1,"mat-card",36),t.YNc(2,Ti,11,4,"mat-card-header",37),t.TgZ(3,"mat-card-content",38),t.YNc(4,bi,1,0,"mat-progress-bar",18),t.TgZ(5,"div",19),t.YNc(6,Ai,1,1,"rtl-ecl-node-info",39),t.YNc(7,Si,1,2,"rtl-ecl-balances-info",21),t.YNc(8,Zi,1,4,"rtl-ecl-channel-liquidity-info",40),t.YNc(9,wi,1,4,"rtl-ecl-channel-liquidity-info",40),t.YNc(10,Oi,8,3,"span",41),t.YNc(11,Fi,2,0,"h3",25),t.qZA()()()()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("colspan",e.cols)("rowspan",e.rows),t.xp6(1),t.Q6J("ngClass",t.VKq(13,qi,"transactions"===e.id)),t.xp6(1),t.Q6J("ngIf","transactions"!==e.id),t.xp6(1),t.s9C("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),t.Q6J("ngClass",t.VKq(15,yt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR)),t.xp6(1),t.Q6J("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngSwitch",e.id),t.xp6(1),t.Q6J("ngSwitchCase","node"),t.xp6(1),t.Q6J("ngSwitchCase","balance"),t.xp6(1),t.Q6J("ngSwitchCase","inboundLiq"),t.xp6(1),t.Q6J("ngSwitchCase","outboundLiq"),t.xp6(1),t.Q6J("ngSwitchCase","transactions")}}function Ni(n,a){if(1&n&&(t.TgZ(0,"div",34),t._UZ(1,"fa-icon",4),t.TgZ(2,"span",5),t._uU(3),t.qZA()(),t.TgZ(4,"mat-grid-list",35),t.YNc(5,Ri,12,17,"mat-grid-tile",7),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faSmile),t.xp6(2),t.hij("Welcome ",e.information.alias,"! Your node is up and running."),t.xp6(1),t.Q6J("rowHeight",e.merchantCardHeight),t.xp6(1),t.Q6J("ngForOf",e.merchantCards)}}let ki=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.store=i,this.commonService=o,this.router=s,this.faSmile=dt.ctA,this.faFrown=dt.KfU,this.faAngleDoubleDown=L.Sbq,this.faAngleDoubleUp=L.Vfw,this.faChartPie=L.OS1,this.faBolt=L.BDt,this.faServer=L.xf3,this.faNetworkWired=L.kXW,this.userPersonaEnum=l.ol,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.selNode={},this.information={},this.channels=[],this.onchainBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="405px",this.merchantCardHeight="65px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:l.Bn.COMPLETED},this.apiCallStatusFees={status:l.Bn.COMPLETED},this.apiCallStatusOCBal={status:l.Bn.COMPLETED},this.apiCallStatusAllChannels={status:l.Bn.COMPLETED},this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(C.pg).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.T$).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apiCallStatus,this.apiCallStatusNodeInfo.status===l.Bn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=e.information}),this.store.select(C.JG).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusFees=e.apiCallStatus,this.apiCallStatusFees.status===l.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=e.fees}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[3]),(0,it.M)(this.store.select(C.kY))).subscribe(([e,i])=>{var o,s;this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=e.apiCallStatus,this.apiCallStatusOCBal=i.apiCallStatus,this.apiCallStatusAllChannels.status===l.Bn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===l.Bn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=e.activeChannels,this.onchainBalance=i.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=e.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const c=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,h=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:c,remoteBalance:h,balancedness:+(1-Math.abs((c-h)/(c+h))).toFixed(3)},this.channelsStatus=e.channelsStatus,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(o=this.channels)||void 0===o?void 0:o.filter(T=>(T.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(null===(s=this.channels)||void 0===s?void 0:s.filter(T=>(T.toLocal||0)>0),"toLocal"))),this.channels.forEach(T=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(T.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(T.toLocal||0)}),this.logger.info(e)})}onNavigateTo(e){this.router.navigateByUrl("/ecl/"+e)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((e,i)=>{const o=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return o>s?-1:o{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(N.v),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-home"]],decls:3,vars:2,consts:[["fxLayout","column",4,"ngIf","ngIfElse"],["merchantDashboard",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["menuOperator","matMenu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column",1,"w-100","dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[3,"disabled"],["mat-tab-label",""],["menuTransactions","matMenu"]],template:function(e,i){if(1&e&&(t.YNc(0,yi,7,4,"div",0),t.YNc(1,Ni,6,4,"ng-template",null,1,t.W1O)),2&e){const o=t.MAs(2);t.Q6J("ngIf",(null==i.selNode?null:i.selNode.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},directives:[u.O5,p.xw,p.Wh,q.BN,ht.Il,u.sg,ht.DX,p.yH,b.a8,b.dk,b.n5,F.lW,at.p6,_t.Hw,at.VK,at.OP,b.dn,u.mk,E.oO,J.pW,u.RF,u.n9,Yt,zt,te,ie,se,u.ED,ye,P.SP,P.uX,gt,xt,P.uD],styles:[""]}),n})();var Pi=f(8377);const Di=["form"];function Ui(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Bitcoin address is required."),t.qZA())}function Mi(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.amountError)}}function Ji(n,a){if(1&n&&(t.TgZ(0,"mat-option",29),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(e)}}function Qi(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Target Confirmation Blocks is required."),t.qZA())}function Yi(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.sendFundError)}}function Hi(n,a){if(1&n&&(t.TgZ(0,"div",30),t._UZ(1,"fa-icon",31),t.YNc(2,Yi,2,1,"span",12),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.sendFundError)}}let vt=(()=>{class n{constructor(e,i,o,s,c,h){this.dialogRef=e,this.logger=i,this.store=o,this.commonService=s,this.decimalPipe=c,this.actions=h,this.faExclamationTriangle=L.eHv,this.selNode={},this.addressTypes=[],this.selectedAddress=l._t[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=l.uA,this.selAmountUnit=l.uA[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.Xz,this.amountError="Amount is Required.",this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x]}ngOnInit(){this.store.select(Pi.dT).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(e=>e.type===l.lr.UPDATE_API_CALL_STATUS_ECL||e.type===l.lr.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(e=>{e.type===l.lr.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,Z.jW)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&"SendOnchainFunds"===e.payload.action&&(this.sendFundError=e.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==l.NT.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?l.NT.OTHER:this.selAmountUnit,l.NT.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,_.R)(this.unSubs[2])).subscribe({next:e=>{this.transaction.amount=parseInt(e[l.NT.SATS]),this.selAmountUnit=l.NT.SATS,this.store.dispatch((0,k.Iy)({payload:this.transaction}))},error:e=>{this.selAmountUnit=l.NT.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,k.Iy)({payload:this.transaction}))}get invalidValues(){return!this.transaction.address||""===this.transaction.address||!this.transaction.amount||this.transaction.amount<=0||!this.transaction.blocks||this.transaction.blocks<=0}resetData(){this.sendFundError="",this.transaction={}}onAmountUnitChange(e){const i=this,o=this.selAmountUnit===this.amountUnits[2]?l.NT.OTHER:this.selAmountUnit;let s=e.value===this.amountUnits[2]?l.NT.OTHER:e.value;this.transaction.amount&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(this.transaction.amount,o,s,this.amountUnits[2],this.fiatConversion).pipe((0,_.R)(this.unSubs[3])).subscribe({next:c=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(c[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:c=>{this.amountError="Conversion Error: "+c,this.selAmountUnit=o,s=o}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(R.mQ),t.Y36(w.yh),t.Y36(N.v),t.Y36(u.JJ),t.Y36(G.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(e,i){if(1&e&&t.Gf(Di,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:36,vars:15,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"overflow-x-hidden",3,"submit","reset"],["form","ngForm"],["fxFlex","55"],["matInput","","autoFocus","","placeholder","Bitcoin Address","tabindex","1","name","addr","required","",3,"ngModel","ngModelChange"],["addrs","ngModel"],[4,"ngIf"],["fxFlex","30"],["matInput","","placeholder","Amount","name","amt","type","number","tabindex","2","required","",3,"ngModel","step","min","ngModelChange"],["amnt","ngModel"],["matSuffix",""],["fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["matInput","","placeholder","Target Confirmation Blocks","type","number","name","blocks","tabindex","8","required","true",3,"ngModel","step","min","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Send Payment"),t.qZA()(),t.TgZ(6,"button",5),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8),t.NdJ("submit",function(){return i.onSendFunds()})("reset",function(){return i.resetData()}),t.TgZ(11,"mat-form-field",9)(12,"input",10,11),t.NdJ("ngModelChange",function(s){return i.transaction.address=s}),t.qZA(),t.YNc(14,Ui,2,0,"mat-error",12),t.qZA(),t.TgZ(15,"mat-form-field",13)(16,"input",14,15),t.NdJ("ngModelChange",function(s){return i.transaction.amount=s}),t.qZA(),t.TgZ(18,"span",16),t._uU(19),t.qZA(),t.YNc(20,Mi,2,1,"mat-error",12),t.qZA(),t.TgZ(21,"mat-form-field",17)(22,"mat-select",18),t.NdJ("selectionChange",function(s){return i.onAmountUnitChange(s)}),t.YNc(23,Ji,2,2,"mat-option",19),t.qZA()(),t.TgZ(24,"div",20)(25,"mat-form-field",21)(26,"input",22,23),t.NdJ("ngModelChange",function(s){return i.transaction.blocks=s}),t.qZA(),t.YNc(28,Qi,2,0,"mat-error",12),t.qZA()(),t._UZ(29,"div",24),t.YNc(30,Hi,3,2,"div",25),t.TgZ(31,"div",26)(32,"button",27),t._uU(33,"Clear Fields"),t.qZA(),t.TgZ(34,"button",28),t._uU(35,"Send Funds"),t.qZA()()()()()()),2&e&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(6),t.Q6J("ngModel",i.transaction.address),t.xp6(2),t.Q6J("ngIf",!i.transaction.address),t.xp6(2),t.Q6J("ngModel",i.transaction.amount)("step",100)("min",0),t.xp6(3),t.hij(" ",i.selAmountUnit," "),t.xp6(1),t.Q6J("ngIf",!i.transaction.amount),t.xp6(2),t.Q6J("value",i.selAmountUnit),t.xp6(1),t.Q6J("ngForOf",i.amountUnits),t.xp6(3),t.Q6J("ngModel",i.transaction.blocks)("step",1)("min",0),t.xp6(2),t.Q6J("ngIf",!i.transaction.blocks),t.xp6(2),t.Q6J("ngIf",""!==i.sendFundError))},directives:[p.xw,p.yH,b.dk,p.Wh,F.lW,U.ZT,b.dn,m._Y,m.JL,m.F,y.KE,M.Nt,m.Fj,W.h,m.Q7,m.JJ,m.On,u.O5,y.TO,m.wV,m.qQ,K.q,y.R9,D.gD,u.sg,B.ey,q.BN],styles:[""]}),n})();var lt=f(1203);function Bi(n,a){1&n&&t._UZ(0,"mat-progress-bar",31)}function zi(n,a){1&n&&(t.TgZ(0,"th",32),t._uU(1," Date/Time "),t.qZA())}function Vi(n,a){if(1&n&&(t.TgZ(0,"td",33),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*e.timestamp,"dd/MMM/y HH:mm"))}}function Gi(n,a){1&n&&(t.TgZ(0,"th",34),t._uU(1," Amount (Sats) "),t.qZA())}function Xi(n,a){if(1&n&&(t.TgZ(0,"span",37),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.Oqu(t.lcZ(2,1,e.amount))}}function $i(n,a){if(1&n&&(t.TgZ(0,"span",38),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=t.oxw().$implicit;t.xp6(1),t.hij("(",t.lcZ(2,1,-1*e.amount),")")}}function Wi(n,a){if(1&n&&(t.TgZ(0,"td",33),t.YNc(1,Xi,3,3,"span",35),t.YNc(2,$i,3,3,"span",36),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf",e.amount>0||0===e.amount),t.xp6(1),t.Q6J("ngIf",e.amount<0)}}function Ki(n,a){1&n&&(t.TgZ(0,"th",34),t._uU(1," Fees (Sats) "),t.qZA())}function ji(n,a){if(1&n&&(t.TgZ(0,"td",33)(1,"span",37),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.fees))}}function ta(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1," Confirmations "),t.qZA())}function ea(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",37),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.lcZ(3,1,null==e?null:e.confirmations)," ")}}function na(n,a){1&n&&(t.TgZ(0,"th",32),t._uU(1," Address "),t.qZA())}function ia(n,a){if(1&n&&(t.TgZ(0,"td",33),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(e.address)}}function aa(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",41)(1,"div",42)(2,"mat-select",43),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",44),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function oa(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",45)(1,"button",46),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onTransactionClick(c,o)}),t._uU(2,"View Info"),t.qZA()()}}function sa(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No transaction available."),t.qZA())}function la(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting transactions..."),t.qZA())}function ra(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function ca(n,a){if(1&n&&(t.TgZ(0,"td",47),t.YNc(1,sa,2,0,"p",48),t.YNc(2,la,2,0,"p",48),t.YNc(3,ra,2,1,"p",48),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const ua=function(n){return{"display-none":n}};function pa(n,a){if(1&n&&t._UZ(0,"tr",49),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,ua,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function ma(n,a){1&n&&t._UZ(0,"tr",50)}function da(n,a){1&n&&t._UZ(0,"tr",51)}const ha=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},_a=function(){return["no_transaction"]};let fa=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.commonService=i,this.store=o,this.datePipe=s,this.faHistory=L.qO$,this.displayedColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unsub=[new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["timestamp","amount","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["timestamp","amount","confirmations","fees","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["timestamp","amount","fees","confirmations","address","actions"]):(this.flgSticky=!0,this.displayedColumns=["timestamp","amount","fees","confirmations","address","actions"])}ngOnInit(){this.store.dispatch((0,k.mC)()),this.store.select(C.dx).pipe((0,_.R)(this.unsub[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.transactions&&this.loadTransactionsTable(e.transactions),this.logger.info(e)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}onTransactionClick(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:e.blockHash,title:"Block Hash",width:100}],[{key:"txid",value:e.txid,title:"Transaction ID",width:100}],[{key:"timestamp",value:e.timestamp,title:"Date/Time",width:50,type:l.Gi.DATE_TIME},{key:"confirmations",value:e.confirmations,title:"Number of Confirmations",width:50,type:l.Gi.NUMBER}],[{key:"fees",value:e.fees,title:"Fees (Sats)",width:50,type:l.Gi.NUMBER},{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100,type:l.Gi.STRING}]]}}}))}loadTransactionsTable(e){this.listTransactions=new r.by([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.listTransactions.filterPredicate=(i,o)=>{var s;return((i.timestamp?null===(s=this.datePipe.transform(new Date(1e3*i.timestamp),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(i).toLowerCase()).includes(o)},this.listTransactions.paginator=this.paginator,this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unsub.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh),t.Y36(u.uU))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Transactions")}])],decls:37,vars:15,consts:[["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fees"],["matColumnDef","confirmations"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pr-2",4,"matHeaderCellDef"],["mat-cell","","class","pr-2",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pr-2"],["mat-cell","",1,"pr-2"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"div",2),t._UZ(3,"fa-icon",3),t.TgZ(4,"span",4),t._uU(5,"Transaction History"),t.qZA()(),t.TgZ(6,"mat-form-field",5)(7,"input",6),t.NdJ("keyup",function(){return i.applyFilter()})("ngModelChange",function(s){return i.selFilter=s}),t.qZA()()(),t.TgZ(8,"div",7)(9,"div",8),t.YNc(10,Bi,1,0,"mat-progress-bar",9),t.TgZ(11,"table",10,11),t.ynx(13,12),t.YNc(14,zi,2,0,"th",13),t.YNc(15,Vi,3,4,"td",14),t.BQk(),t.ynx(16,15),t.YNc(17,Gi,2,0,"th",16),t.YNc(18,Wi,3,2,"td",14),t.BQk(),t.ynx(19,17),t.YNc(20,Ki,2,0,"th",16),t.YNc(21,ji,4,3,"td",14),t.BQk(),t.ynx(22,18),t.YNc(23,ta,2,0,"th",19),t.YNc(24,ea,4,3,"td",20),t.BQk(),t.ynx(25,21),t.YNc(26,na,2,0,"th",13),t.YNc(27,ia,2,1,"td",14),t.BQk(),t.ynx(28,22),t.YNc(29,aa,6,0,"th",23),t.YNc(30,oa,3,0,"td",24),t.BQk(),t.ynx(31,25),t.YNc(32,ca,4,3,"td",26),t.BQk(),t.YNc(33,pa,1,3,"tr",27),t.YNc(34,ma,1,0,"tr",28),t.YNc(35,da,1,0,"tr",29),t.qZA(),t._UZ(36,"mat-paginator",30),t.qZA()()()),2&e&&(t.xp6(3),t.Q6J("icon",i.faHistory),t.xp6(4),t.Q6J("ngModel",i.selFilter),t.xp6(3),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.listTransactions)("ngClass",t.VKq(12,ha,""!==i.errorMessage)),t.xp6(22),t.Q6J("matFooterRowDef",t.DdM(14,_a)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns)("matHeaderRowDefSticky",i.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[p.xw,p.Wh,p.yH,q.BN,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,u.O5,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,D.gD,D.$L,B.ey,F.lW,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[u.uU,u.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();function ga(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let Ca=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.selNode={},this.faExchangeAlt=L.Ssp,this.faChartPie=L.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"}],this.activeLink=this.links[0].link,this.unSubs=[new d.x,new d.x,new d.x,new d.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(C.pg).pipe((0,_.R)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[2])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.onchainBalance.total||0},{title:"Confirmed",dataValue:i.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:i.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,Z.qR)({payload:{data:{component:vt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain"]],decls:21,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large","mt-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"On-chain Balance"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t._UZ(7,"rtl-currency-unit-converter",5),t.qZA()()(),t.TgZ(8,"div",0),t._UZ(9,"fa-icon",1),t.TgZ(10,"span",2),t._uU(11,"On-chain Transactions"),t.qZA()(),t.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",7),t.YNc(16,ga,2,3,"div",8),t.qZA(),t.TgZ(17,"div",9),t._UZ(18,"router-outlet"),t.qZA(),t.TgZ(19,"div",10),t._UZ(20,"rtl-ecl-on-chain-transaction-history",11),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartPie),t.xp6(6),t.Q6J("values",i.balances),t.xp6(2),t.Q6J("icon",i.faExchangeAlt),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[p.xw,p.Wh,q.BN,b.a8,b.dn,lt.D,P.BU,u.sg,P.Nj,x.rH,p.yH,x.lC,fa],styles:[""]}),n})();var Lt=f(7544);function xa(n,a){if(1&n&&(t.TgZ(0,"span",10),t._uU(1,"Channels"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.activeChannels)}}function ya(n,a){if(1&n&&(t.TgZ(0,"span",10),t._uU(1,"Peers"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.activePeers)}}let va=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=L.FVb,this.faChartPie=L.OS1,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new d.x,new d.x,new d.x,new d.x]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(e=>e instanceof x.Av)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.activeChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.balances=[{title:"Total Balance",dataValue:e.onchainBalance.total||0},{title:"Confirmed",dataValue:e.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:e.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"On-chain Balance"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t._UZ(7,"rtl-currency-unit-converter",5),t.qZA()()(),t.TgZ(8,"div",0),t._UZ(9,"fa-icon",1),t.TgZ(10,"span",2),t._uU(11,"Connections"),t.qZA()(),t.TgZ(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.NdJ("selectedIndexChange",function(s){return i.activeLink=s})("selectedTabChange",function(s){return i.onSelectedTabChange(s)}),t.TgZ(16,"mat-tab"),t.YNc(17,xa,2,1,"ng-template",8),t.qZA(),t.TgZ(18,"mat-tab"),t.YNc(19,ya,2,1,"ng-template",8),t.qZA()(),t.TgZ(20,"div",9),t._UZ(21,"router-outlet"),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartPie),t.xp6(6),t.Q6J("values",i.balances),t.xp6(2),t.Q6J("icon",i.faUsers),t.xp6(6),t.Q6J("selectedIndex",i.activeLink))},directives:[p.xw,p.Wh,q.BN,b.a8,b.dn,lt.D,P.SP,P.uX,P.uD,Lt.k,p.yH,x.lC],styles:[""]}),n})();function La(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let Ta=(()=>{class n{constructor(e,i,o){this.logger=e,this.store=i,this.router=o,this.faExchangeAlt=L.Ssp,this.faChartPie=L.OS1,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new d.x,new d.x,new d.x,new d.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1]),(0,it.M)(this.store.select(C.pg))).subscribe(([i,o])=>{this.currencyUnits=(null==o?void 0:o.currencyUnits)||[],this.balances=o&&o.userPersona===l.ol.OPERATOR?[{title:"Local Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-transactions"]],decls:19,vars:4,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Lightning Balance"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t._UZ(7,"rtl-currency-unit-converter",5),t.qZA()()(),t.TgZ(8,"div",6),t._UZ(9,"fa-icon",1),t.TgZ(10,"span",2),t._uU(11,"Lightning Transactions"),t.qZA()(),t.TgZ(12,"div",7)(13,"mat-card")(14,"mat-card-content",4)(15,"nav",8),t.YNc(16,La,2,3,"div",9),t.qZA(),t.TgZ(17,"div",10),t._UZ(18,"router-outlet"),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartPie),t.xp6(6),t.Q6J("values",i.balances),t.xp6(2),t.Q6J("icon",i.faExchangeAlt),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[p.xw,p.Wh,q.BN,b.a8,b.dn,lt.D,P.BU,u.sg,P.Nj,x.rH,p.yH,x.lC],styles:[""]}),n})();function ba(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let Aa=(()=>{class n{constructor(e){this.router=e,this.faMapSigns=L.SuH,this.events=[],this.flgLoading=[!0],this.errorMessage="",this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new d.x,new d.x,new d.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing"]],decls:13,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","fxFlex","100"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span",3),t._uU(4,"Routing"),t.qZA()(),t.TgZ(5,"div",4)(6,"mat-card",5)(7,"mat-card-content",6)(8,"div",7)(9,"nav",8),t.YNc(10,ba,2,3,"div",9),t.qZA()(),t.TgZ(11,"div",10),t._UZ(12,"router-outlet"),t.qZA()()()()()),2&e&&(t.xp6(2),t.Q6J("icon",i.faMapSigns),t.xp6(8),t.Q6J("ngForOf",i.links))},directives:[p.xw,p.Wh,q.BN,p.yH,b.a8,b.dn,P.BU,u.sg,P.Nj,x.rH,x.lC],styles:[""]}),n})();var et=f(9814),Tt=f(7261),bt=f(6895);function Sa(n,a){if(1&n&&(t.TgZ(0,"span",9)(1,"div"),t._uU(2),t.ALo(3,"titlecase"),t.qZA()()),2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(2),t.AsE("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.lcZ(3,2,e.value),"")}}function Za(n,a){1&n&&(t.TgZ(0,"th",24),t._uU(1,"Address"),t.qZA())}function wa(n,a){if(1&n&&(t.TgZ(0,"td",25),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",e," ")}}function Ea(n,a){1&n&&(t.TgZ(0,"th",26)(1,"span",27),t._uU(2,"Actions"),t.qZA()())}function Ia(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",28)(1,"span",27)(2,"button",29),t.NdJ("copied",function(o){return t.CHM(e),t.oxw(2).onCopyNodeURI(o)}),t._uU(3,"Copy Node URI"),t.qZA()()()}if(2&n){const e=a.$implicit,i=t.oxw(2);t.xp6(2),t.Q6J("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function Oa(n,a){1&n&&t._UZ(0,"tr",30)}function Fa(n,a){1&n&&t._UZ(0,"tr",31)}const qa=function(n){return{"background-color":n}};function Ra(n,a){if(1&n&&(t.TgZ(0,"div",1),t._UZ(1,"mat-divider",2),t.TgZ(2,"div",3)(3,"div",4)(4,"h4",5),t._uU(5,"Alias"),t.qZA(),t.TgZ(6,"span",6),t._uU(7),t.TgZ(8,"span",7),t._uU(9),t.qZA()()(),t.TgZ(10,"div",8)(11,"h4",5),t._uU(12,"Pub Key"),t.qZA(),t.TgZ(13,"span",9),t._uU(14),t.qZA()()(),t._UZ(15,"mat-divider",2),t.TgZ(16,"div",3)(17,"div",4)(18,"h4",5),t._uU(19,"Date/Time"),t.qZA(),t.TgZ(20,"span",6),t._uU(21),t.ALo(22,"date"),t.qZA()(),t.TgZ(23,"div",8)(24,"h4",5),t._uU(25,"Features"),t.qZA(),t.YNc(26,Sa,4,4,"span",10),t.ALo(27,"keyvalue"),t.qZA()(),t._UZ(28,"mat-divider",2),t.TgZ(29,"div",3)(30,"div",11)(31,"h4",5),t._uU(32,"Signature"),t.qZA(),t.TgZ(33,"span",6),t._uU(34),t.qZA()()(),t._UZ(35,"mat-divider",2),t.TgZ(36,"div",1)(37,"h4",12),t._uU(38,"Addresses"),t.qZA(),t.TgZ(39,"div",13)(40,"table",14,15),t.ynx(42,16),t.YNc(43,Za,2,0,"th",17),t.YNc(44,wa,2,1,"td",18),t.BQk(),t.ynx(45,19),t.YNc(46,Ea,3,0,"th",20),t.YNc(47,Ia,4,1,"td",21),t.BQk(),t.YNc(48,Oa,1,0,"tr",22),t.YNc(49,Fa,1,0,"tr",23),t.qZA()()()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(null==e.lookupResult?null:e.lookupResult.alias),t.xp6(1),t.Q6J("ngStyle",t.VKq(19,qa,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.xp6(1),t.Oqu(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.xp6(5),t.Oqu(null==e.lookupResult?null:e.lookupResult.nodeId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.xi3(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.xp6(5),t.Q6J("ngForOf",t.lcZ(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.xp6(2),t.Q6J("inset",!0),t.xp6(6),t.Oqu(null==e.lookupResult?null:e.lookupResult.signature),t.xp6(1),t.Q6J("inset",!0),t.xp6(5),t.Q6J("dataSource",e.addresses),t.xp6(8),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns)}}let Na=(()=>{class n{constructor(e,i){this.logger=e,this.snackBar=i,this.lookupResult={},this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.H_}ngOnInit(){this.addresses=new r.by(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(Tt.ux))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(e,i){if(1&e&&t.Gf(A.YE,5),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column",4,"ngIf"],["fxLayout","column"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxFlex","100"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","address"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","class","pl-1",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","",1,"pl-1"],["fxLayoutAlign","end center"],["mat-cell","",1,"pl-1"],["mat-stroked-button","","color","primary","type","button","tabindex","1","rtlClipboard","",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&t.YNc(0,Ra,50,21,"div",0),2&e&&t.Q6J("ngIf",i.lookupResult)},directives:[u.O5,p.xw,$.d,p.yH,p.Wh,u.PC,E.Zl,u.sg,H.$V,r.BZ,A.YE,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,F.lW,bt.y,r.as,r.XQ,r.nj,r.Gk],pipes:[u.uU,u.Nd,u.rS],styles:[""]}),n})();const ka=["form"];function Pa(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function Da(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function Ua(n,a){if(1&n&&(t.TgZ(0,"div"),t._UZ(1,"rtl-ecl-node-lookup",25),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Q6J("lookupResult",e.nodeLookupValue)}}function Ma(n,a){if(1&n&&(t.TgZ(0,"span",23),t.YNc(1,Ua,2,1,"div",24),t.qZA()),2&n){const e=t.oxw(2),i=t.MAs(21);t.xp6(1),t.Q6J("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function Ja(n,a){1&n&&(t.TgZ(0,"span",23)(1,"h3"),t._uU(2,"Error! Unable to find details!"),t.qZA()())}function Qa(n,a){if(1&n&&(t.TgZ(0,"div",17)(1,"div",18)(2,"span",19),t._uU(3),t.qZA()(),t.TgZ(4,"div",20),t.YNc(5,Ma,2,2,"span",21),t.YNc(6,Ja,3,0,"span",22),t.qZA()()),2&n){const e=t.oxw();t.xp6(3),t.hij("",e.lookupFields[e.selectedFieldId].name," Details"),t.xp6(1),t.Q6J("ngSwitch",e.selectedFieldId),t.xp6(1),t.Q6J("ngSwitchCase",0)}}function Ya(n,a){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find details!"),t.qZA())}const Ha=function(n){return{"mt-1":!0,"mt-2":n}};let Ba=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.commonService=i,this.store=o,this.actions=s,this.lookupKeyCtrl=new m.NI,this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Node ID"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=L.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new d.x,new d.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(e=>e.type===l.lr.SET_LOOKUP_ECL||e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{if(e.type===l.lr.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=e.payload[0]?JSON.parse(JSON.stringify(e.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(e.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&"Lookup"===e.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1})}onLookup(){return this.lookupKeyCtrl.value?this.lookupKeyCtrl.value&&(this.lookupKeyCtrl.value.includes("@")||this.lookupKeyCtrl.value.includes(","))?(this.lookupKeyCtrl.setErrors({invalid:!0}),!0):void(0===(this.selectedFieldId||(this.selectedFieldId=0),this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.selectedFieldId)&&this.store.dispatch((0,k.Sf)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(e){this.resetData(),this.selectedFieldId=e.value}resetData(){this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.lookupKeyCtrl.setValue(""),this.lookupKeyCtrl.setErrors(null),this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh),t.Y36(G.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(e,i){if(1&e&&t.Gf(ka,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:22,vars:9,consts:[["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["form","ngForm"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl","placeholder"],["key",""],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["errorBlock",""],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100",4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-content",2)(3,"form",3,4)(5,"div",5)(6,"mat-radio-group",6)(7,"mat-radio-button",7),t._uU(8,"Node"),t.qZA()()(),t.TgZ(9,"mat-form-field",8),t._UZ(10,"input",9,10),t.YNc(12,Pa,2,1,"mat-error",11),t.YNc(13,Da,2,1,"mat-error",11),t.qZA(),t.TgZ(14,"div",12)(15,"button",13),t.NdJ("click",function(){return i.resetData()}),t._uU(16,"Clear"),t.qZA(),t.TgZ(17,"button",14),t.NdJ("click",function(){return i.onLookup()}),t._uU(18,"Lookup"),t.qZA()()(),t.YNc(19,Qa,7,3,"div",15),t.qZA()()(),t.YNc(20,Ya,2,0,"ng-template",null,16,t.W1O)),2&e&&(t.xp6(7),t.Q6J("value",0),t.xp6(2),t.Q6J("ngClass",t.VKq(7,Ha,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),t.xp6(1),t.Q6J("formControl",i.lookupKeyCtrl)("placeholder",(null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),t.xp6(2),t.Q6J("ngIf",null==i.lookupKeyCtrl.errors?null:i.lookupKeyCtrl.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.lookupKeyCtrl.errors?null:i.lookupKeyCtrl.errors.invalid),t.xp6(6),t.Q6J("ngIf",i.flgSetLookupValue))},directives:[p.xw,p.yH,p.Wh,b.dn,m._Y,m.JL,m.F,et.VQ,et.U0,y.KE,u.mk,E.oO,M.Nt,m.Fj,m.Q7,m.JJ,m.oH,u.O5,y.TO,F.lW,u.RF,u.n9,Na,u.ED],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}.pl-3[_ngcontent-%COMP%]{padding-left:3rem}"]}),n})();var za=f(9122);let Va=(()=>{class n{constructor(e,i){this.store=e,this.eclEffects=i,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,k._E)()),this.eclEffects.setNewAddress.pipe((0,V.q)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,Z.qR)({payload:{data:{address:this.newAddress,addressType:"",component:za.n}}}))},0)})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(st.o))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-receive"]],decls:4,vars:0,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return i.onGenerateAddress()}),t._uU(3,"Generate Address"),t.qZA()()())},directives:[p.xw,p.yH,p.Wh,F.lW],styles:[""]}),n})(),Ga=(()=>{class n{constructor(e,i){this.store=e,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new d.x,new d.x]}ngOnInit(){this.activatedRoute.data.pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,Z.qR)({payload:{data:{sweepAll:this.sweepAll,component:vt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(x.gz))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return i.openSendFundsModal()}),t._uU(3),t.qZA()()()),2&e&&(t.xp6(3),t.Oqu(i.sweepAll?"Sweep All":"Send Funds"))},directives:[p.xw,p.yH,p.Wh,F.lW],styles:[""]}),n})();var Xa=f(8675),At=f(4004),St=f(1079),$a=f(9843),Zt=f(2368);const Wa=["form"];function Ka(n,a){if(1&n&&(t.TgZ(0,"mat-option",34),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function ja(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Peer alias is required."),t.qZA())}function to(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Peer not found in the list."),t.qZA())}function eo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-form-field",1)(1,"input",30),t.NdJ("change",function(){return t.CHM(e),t.oxw().onSelectedPeerChanged()}),t.qZA(),t.TgZ(2,"mat-autocomplete",31,32),t.NdJ("optionSelected",function(){return t.CHM(e),t.oxw().onSelectedPeerChanged()}),t.YNc(4,Ka,2,2,"mat-option",33),t.ALo(5,"async"),t.qZA(),t.YNc(6,ja,2,0,"mat-error",17),t.YNc(7,to,2,0,"mat-error",17),t.qZA()}if(2&n){const e=t.MAs(3),i=t.oxw();t.xp6(1),t.Q6J("formControl",i.selectedPeer)("matAutocomplete",e),t.xp6(1),t.Q6J("displayWith",i.displayFn),t.xp6(2),t.Q6J("ngForOf",t.lcZ(5,6,i.filteredPeers)),t.xp6(2),t.Q6J("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function no(n,a){1&n&&t.GkF(0)}function io(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function ao(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("Amount must be less than or equal to ",e.totalBalance,".")}}function oo(n,a){if(1&n&&(t.TgZ(0,"span"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.channelConnectionError)}}function so(n,a){if(1&n&&(t.TgZ(0,"div",35),t._UZ(1,"fa-icon",36),t.YNc(2,oo,2,1,"span",17),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(1),t.Q6J("ngIf",""!==e.channelConnectionError)}}function lo(n,a){if(1&n&&(t.TgZ(0,"mat-expansion-panel",38)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t._uU(4,"Peer: \xa0"),t.qZA(),t.TgZ(5,"strong",39),t._uU(6),t.qZA()()(),t.TgZ(7,"div",9)(8,"div",0)(9,"div",1)(10,"h4",40),t._uU(11,"Pubkey"),t.qZA(),t.TgZ(12,"span",41),t._uU(13),t.qZA()()(),t._UZ(14,"mat-divider",42),t.TgZ(15,"div",0)(16,"div",43)(17,"h4",40),t._uU(18,"Address"),t.qZA(),t.TgZ(19,"span",44),t._uU(20),t.qZA()(),t.TgZ(21,"div",43)(22,"h4",40),t._uU(23,"State"),t.qZA(),t.TgZ(24,"span",44),t._uU(25),t.ALo(26,"titlecase"),t.qZA()()()()()),2&n){const e=t.oxw(2);t.xp6(6),t.Oqu((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.xp6(7),t.Oqu(e.peer.nodeId),t.xp6(7),t.Oqu(null==e.peer?null:e.peer.address),t.xp6(5),t.Oqu(t.lcZ(26,4,null==e.peer?null:e.peer.state))}}function ro(n,a){if(1&n&&t.YNc(0,lo,27,6,"mat-expansion-panel",37),2&n){const e=t.oxw();t.Q6J("ngIf",e.peer)}}let wt=(()=>{class n{constructor(e,i,o,s){this.dialogRef=e,this.data=i,this.store=o,this.actions=s,this.selectedPeer=new m.NI,this.faExclamationTriangle=L.eHv,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.unSubs=[new d.x,new d.x]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.actions.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(o=>o.type===l.lr.UPDATE_API_CALL_STATUS_ECL||o.type===l.lr.FETCH_CHANNELS_ECL)).subscribe(o=>{o.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&o.payload.status===l.Bn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===l.lr.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((o,s)=>(e=o.alias?o.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,_.R)(this.unSubs[1]),(0,Xa.O)(""),(0,At.U)(o=>"string"==typeof o?o:o.alias?o.alias:o.nodeId),(0,At.U)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(e){var i;return null===(i=this.sortedPeers)||void 0===i?void 0:i.filter(o=>{var s;return 0===(null===(s=o.alias)||void 0===s?void 0:s.toLowerCase().indexOf(e?e.toLowerCase():""))})}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.nodeId:""}onSelectedPeerChanged(){var e;if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const i=null===(e=this.peers)||void 0===e?void 0:e.filter(o=>{var s,c;return(null===(s=o.alias)||void 0===s?void 0:s.length)===this.selectedPeer.value.length&&0===(null===(c=o.alias)||void 0===c?void 0:c.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""))});1===i.length&&i[0].nodeId&&(this.selectedPubkey=i[0].nodeId)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.feeRate=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!1,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(e){this.advancedTitle=e&&this.feeRate&&this.feeRate>0?"Advanced Options | Fee (Sats/vByte): "+this.feeRate:"Advanced Options"}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0)return!0;const e={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(e.feeRate=this.feeRate),this.store.dispatch((0,k.YX)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(U.WI),t.Y36(w.yh),t.Y36(G.eX))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(e,i){if(1&e&&t.Gf(Wa,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:48,vars:18,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["form","ngForm"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","70","fxLayoutAlign","start end"],["matInput","","placeholder","Amount","type","number","tabindex","1","required","","name","amount",3,"ngModel","step","min","max","ngModelChange"],["amount","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModel","ngModelChange"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["matInput","","placeholder","Fee (Sats/vByte)","type","number","name","fee","tabindex","7",3,"ngModel","step","min","ngModelChange"],["fee","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["peerDetailsExpansionBlock",""],["type","text","placeholder","Peer Alias","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(e,i){if(1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return i.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8),t.NdJ("submit",function(){return i.onOpenChannel()})("reset",function(){return i.resetData()}),t.TgZ(11,"div",9),t.YNc(12,eo,8,8,"mat-form-field",10),t.qZA(),t.YNc(13,no,1,0,"ng-container",11),t.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"input",14,15),t.NdJ("ngModelChange",function(s){return i.fundingAmount=s}),t.qZA(),t.TgZ(19,"mat-hint"),t._uU(20),t.ALo(21,"number"),t.qZA(),t.TgZ(22,"span",16),t._uU(23," Sats "),t.qZA(),t.YNc(24,io,2,0,"mat-error",17),t.YNc(25,ao,2,1,"mat-error",17),t.qZA(),t.TgZ(26,"div",18)(27,"mat-slide-toggle",19),t.NdJ("ngModelChange",function(s){return i.isPrivate=s}),t._uU(28,"Private Channel"),t.qZA()()(),t.TgZ(29,"mat-expansion-panel",20),t.NdJ("closed",function(){return i.onAdvancedPanelToggle(!0)})("opened",function(){return i.onAdvancedPanelToggle(!1)}),t.TgZ(30,"mat-expansion-panel-header")(31,"mat-panel-title")(32,"span"),t._uU(33),t.qZA()()(),t.TgZ(34,"div",21)(35,"div",12)(36,"div",22)(37,"mat-form-field",1)(38,"input",23,24),t.NdJ("ngModelChange",function(s){return i.feeRate=s}),t.qZA()()()()()()(),t.YNc(40,so,3,2,"div",25),t.TgZ(41,"div",26)(42,"button",27),t._uU(43,"Clear Fields"),t.qZA(),t.TgZ(44,"button",28),t._uU(45,"Open Channel"),t.qZA()()()()()(),t.YNc(46,ro,1,1,"ng-template",null,29,t.W1O)),2&e){const o=t.MAs(18),s=t.MAs(47);t.xp6(5),t.Oqu(i.alertTitle),t.xp6(7),t.Q6J("ngIf",!i.peer&&i.peers&&i.peers.length>0),t.xp6(1),t.Q6J("ngTemplateOutlet",s),t.xp6(4),t.Q6J("ngModel",i.fundingAmount)("step",1e3)("min",1)("max",i.totalBalance),t.xp6(3),t.hij("Remaining Bal: ",t.lcZ(21,16,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),""),t.xp6(4),t.Q6J("ngIf",null==o.errors?null:o.errors.required),t.xp6(1),t.Q6J("ngIf",null==o.errors?null:o.errors.max),t.xp6(2),t.Q6J("ngModel",i.isPrivate),t.xp6(6),t.Oqu(i.advancedTitle),t.xp6(5),t.Q6J("ngModel",i.feeRate)("step",1)("min",0),t.xp6(2),t.Q6J("ngIf",""!==i.channelConnectionError)}},directives:[p.xw,p.yH,b.dk,p.Wh,F.lW,b.dn,m._Y,m.JL,m.F,u.O5,y.KE,M.Nt,m.Fj,St.ZL,m.Q7,m.JJ,m.oH,St.XC,u.sg,B.ey,y.TO,u.tP,m.wV,m.qQ,m.Fd,K.q,$a.F,m.On,y.bx,y.R9,Zt.Rr,z.ib,z.yz,z.yK,q.BN,W.h,$.d],pipes:[u.Ov,u.JJ,u.rS],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}),n})();function co(n,a){if(1&n&&(t.TgZ(0,"span",7),t._uU(1,"Open"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.numOfOpenChannels)}}function uo(n,a){if(1&n&&(t.TgZ(0,"span",7),t._uU(1,"Pending"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.numOfPendingChannels)}}function po(n,a){if(1&n&&(t.TgZ(0,"span",7),t._uU(1,"Inactive"),t.qZA()),2&n){const e=t.oxw();t.s9C("matBadge",e.numOfInactiveChannels)}}let mo=(()=>{class n{constructor(e,i,o){this.logger=e,this.store=i,this.router=o,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,this.selNode={},this.information={},this.peers=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"inactive",name:"Inactive"}],this.activeLink=0,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x,new d.x]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(e=>e instanceof x.Av)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.numOfOpenChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0,this.numOfPendingChannels=e.channelsStatus&&e.channelsStatus.pending&&e.channelsStatus.pending.channels?e.channelsStatus.pending.channels:0,this.numOfInactiveChannels=e.channelsStatus&&e.channelsStatus.inactive&&e.channelsStatus.inactive.channels?e.channelsStatus.inactive.channels:0,this.logger.info(e)}),this.store.select(C.pg).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,Z.qR)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:wt}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channels-tables"]],decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"my-2","bordered-box"],[3,"selectedIndex","selectedIndexChange","selectedTabChange"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return i.onOpenChannel()}),t._uU(3,"Open Channel"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-tab-group",4),t.NdJ("selectedIndexChange",function(s){return i.activeLink=s})("selectedTabChange",function(s){return i.onSelectedTabChange(s)}),t.TgZ(6,"mat-tab"),t.YNc(7,co,2,1,"ng-template",5),t.qZA(),t.TgZ(8,"mat-tab"),t.YNc(9,uo,2,1,"ng-template",5),t.qZA(),t.TgZ(10,"mat-tab"),t.YNc(11,po,2,1,"ng-template",5),t.qZA()(),t.TgZ(12,"div",6),t._UZ(13,"router-outlet"),t.qZA()()()),2&e&&(t.xp6(5),t.Q6J("selectedIndex",i.activeLink))},directives:[p.xw,p.yH,p.Wh,F.lW,P.SP,P.uX,P.uD,Lt.k,x.lC],styles:[""]}),n})();function ho(n,a){if(1&n&&(t.TgZ(0,"div",11)(1,"h4",12),t._uU(2,"Short Channel ID"),t.qZA(),t.TgZ(3,"span",13),t._uU(4),t.qZA()()),2&n){const e=t.oxw();t.xp6(4),t.Oqu(e.channel.shortChannelId)}}function _o(n,a){if(1&n&&(t.TgZ(0,"div",11)(1,"h4",12),t._uU(2,"State"),t.qZA(),t.TgZ(3,"span",15),t._uU(4),t.ALo(5,"titlecase"),t.qZA()()),2&n){const e=t.oxw();t.xp6(4),t.Oqu(t.lcZ(5,1,e.channel.state))}}function fo(n,a){if(1&n&&(t.TgZ(0,"div")(1,"div",9)(2,"div",11)(3,"h4",12),t._uU(4,"Local Balance (Sats)"),t.qZA(),t.TgZ(5,"span",15),t._uU(6),t.ALo(7,"number"),t.qZA()(),t.TgZ(8,"div",11)(9,"h4",12),t._uU(10,"Remote Balance (Sats)"),t.qZA(),t.TgZ(11,"span",15),t._uU(12),t.ALo(13,"number"),t.qZA()()(),t._UZ(14,"mat-divider",14),t.TgZ(15,"div",9)(16,"div",11)(17,"h4",12),t._uU(18,"Base Fee (mSats)"),t.qZA(),t.TgZ(19,"span",15),t._uU(20),t.ALo(21,"number"),t.qZA()(),t.TgZ(22,"div",11)(23,"h4",12),t._uU(24,"Fee Rate (mili mSats)"),t.qZA(),t.TgZ(25,"span",15),t._uU(26),t.ALo(27,"number"),t.qZA()()(),t._UZ(28,"mat-divider",14),t.qZA()),2&n){const e=t.oxw();t.xp6(6),t.Oqu(t.lcZ(7,6,e.channel.toLocal)),t.xp6(6),t.Oqu(t.lcZ(13,8,e.channel.toRemote)),t.xp6(2),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.lcZ(21,10,e.channel.feeBaseMsat)),t.xp6(6),t.Oqu(t.lcZ(27,12,e.channel.feeProportionalMillionths)),t.xp6(2),t.Q6J("inset",!0)}}function go(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Show Advanced"),t.qZA())}function Co(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Hide Advanced"),t.qZA())}function xo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",21),t.NdJ("click",function(){return t.CHM(e),t.oxw().onShowAdvanced()}),t.YNc(1,go,2,0,"p",22),t.YNc(2,Co,2,0,"ng-template",null,23,t.W1O),t.qZA()}if(2&n){const e=t.MAs(3),i=t.oxw();t.xp6(1),t.Q6J("ngIf",!i.showAdvanced)("ngIfElse",e)}}function yo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",24),t.NdJ("copied",function(o){return t.CHM(e),t.oxw().onCopyChanID(o)}),t._uU(1,"Copy Short Channel ID"),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("payload",e.channel.shortChannelId)}}function vo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"button",25),t.NdJ("copied",function(o){return t.CHM(e),t.oxw().onCopyChanID(o)}),t._uU(1,"Copy Channel ID"),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("payload",e.channel.channelId)}}const Lo=function(n){return{"xs-scroll-y":n}},To=function(n,a){return{"mt-2":n,"mt-1":a}};let rt=(()=>{class n{constructor(e,i,o,s,c){this.dialogRef=e,this.data=i,this.logger=o,this.commonService=s,this.snackBar=c,this.faReceipt=L.dLy,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.channel=this.data.channel,this.channelsType=this.data.channelsType||"",this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(e){this.snackBar.open("open"===this.channelsType?"Short channel ID "+e+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+e)}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(U.WI),t.Y36(R.mQ),t.Y36(N.v),t.Y36(Tt.ux))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-information"]],decls:64,vars:28,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50",4,"ngIf"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3),t._UZ(4,"fa-icon",4),t.TgZ(5,"span",5),t._uU(6,"Channel Information"),t.qZA()(),t.TgZ(7,"button",6),t.NdJ("click",function(){return i.onClose()}),t._uU(8,"X"),t.qZA()(),t.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9),t.YNc(12,ho,5,1,"div",10),t.TgZ(13,"div",11)(14,"h4",12),t._uU(15,"Peer Alias"),t.qZA(),t.TgZ(16,"span",13),t._uU(17),t.qZA()(),t.YNc(18,_o,6,3,"div",10),t.qZA(),t._UZ(19,"mat-divider",14),t.TgZ(20,"div",9)(21,"div",1)(22,"h4",12),t._uU(23,"Channel ID"),t.qZA(),t.TgZ(24,"span",13),t._uU(25),t.qZA()()(),t._UZ(26,"mat-divider",14),t.TgZ(27,"div",9)(28,"div",1)(29,"h4",12),t._uU(30,"Peer Public Key"),t.qZA(),t.TgZ(31,"span",13),t._uU(32),t.qZA()()(),t._UZ(33,"mat-divider",14),t.TgZ(34,"div",9)(35,"div",11)(36,"h4",12),t._uU(37,"Private"),t.qZA(),t.TgZ(38,"span",15),t._uU(39),t.qZA()(),t.TgZ(40,"div",11)(41,"h4",12),t._uU(42,"Funder"),t.qZA(),t.TgZ(43,"span",15),t._uU(44),t.qZA()()(),t._UZ(45,"mat-divider",14),t.TgZ(46,"div",9)(47,"div",11)(48,"h4",12),t._uU(49,"State"),t.qZA(),t.TgZ(50,"span",15),t._uU(51),t.ALo(52,"titlecase"),t.qZA()(),t.TgZ(53,"div",11)(54,"h4",12),t._uU(55,"Buried"),t.qZA(),t.TgZ(56,"span",15),t._uU(57),t.qZA()()(),t._UZ(58,"mat-divider",14),t.YNc(59,fo,29,14,"div",16),t.TgZ(60,"div",17),t.YNc(61,xo,4,2,"button",18),t.YNc(62,yo,2,1,"button",19),t.YNc(63,vo,2,1,"button",20),t.qZA()()()()()),2&e&&(t.xp6(4),t.Q6J("icon",i.faReceipt),t.xp6(5),t.Q6J("ngClass",t.VKq(23,Lo,i.screenSize===i.screenSizeEnum.XS)),t.xp6(3),t.Q6J("ngIf","open"===i.channelsType),t.xp6(5),t.Oqu(i.channel.alias),t.xp6(1),t.Q6J("ngIf","open"!==i.channelsType),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(i.channel.channelId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(i.channel.nodeId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(0===i.channel.channelFlags?"Yes":"No"),t.xp6(5),t.Oqu(i.channel.isFunder?"Yes":"No"),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.lcZ(52,21,i.channel.state)),t.xp6(6),t.Oqu(i.channel.buried?"Yes":"No"),t.xp6(1),t.Q6J("inset",!0),t.xp6(1),t.Q6J("ngIf",i.showAdvanced&&"open"===i.channelsType),t.xp6(1),t.Q6J("ngClass",t.WLB(25,To,!i.showAdvanced,i.showAdvanced)),t.xp6(1),t.Q6J("ngIf","open"===i.channelsType),t.xp6(1),t.Q6J("ngIf","open"===i.channelsType),t.xp6(1),t.Q6J("ngIf","open"!==i.channelsType))},directives:[p.xw,p.Wh,p.yH,b.dk,q.BN,F.lW,b.dn,u.mk,E.oO,u.O5,$.d,W.h,bt.y],pipes:[u.rS,u.JJ],styles:[""]}),n})();function bo(n,a){1&n&&t._UZ(0,"mat-progress-bar",30)}function Ao(n,a){1&n&&(t.TgZ(0,"th",31),t._uU(1," Short Channel ID "),t.qZA())}function So(n,a){if(1&n&&(t.TgZ(0,"span",37),t._UZ(1,"fa-icon",38),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function Zo(n,a){if(1&n&&(t.TgZ(0,"span",39),t._UZ(1,"fa-icon",38),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}const Et=function(n){return{"max-width":n}};function wo(n,a){if(1&n&&(t.TgZ(0,"td",32)(1,"div",33),t.YNc(2,So,2,1,"span",34),t.YNc(3,Zo,2,1,"span",35),t.TgZ(4,"span",36),t._uU(5),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(4,Et,i.screenSize===i.screenSizeEnum.XS?"12rem":"22rem")),t.xp6(1),t.Q6J("ngIf",0===e.channelFlags),t.xp6(1),t.Q6J("ngIf",0!==e.channelFlags),t.xp6(2),t.Oqu(null==e?null:e.shortChannelId)}}function Eo(n,a){1&n&&(t.TgZ(0,"th",31),t._uU(1," Alias "),t.qZA())}function Io(n,a){if(1&n&&(t.TgZ(0,"td",32)(1,"div",33)(2,"span",36),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Et,i.screenSize===i.screenSizeEnum.XS?"12rem":"22rem")),t.xp6(2),t.Oqu(e.alias)}}function Oo(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," Base Fee (mSats) "),t.qZA())}function Fo(n,a){if(1&n&&(t.TgZ(0,"td",32)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function qo(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," Fee Rate (mili mSats) "),t.qZA())}function Ro(n,a){if(1&n&&(t.TgZ(0,"td",32)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function No(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," Local Balance (Sats) "),t.qZA())}function ko(n,a){if(1&n&&(t.TgZ(0,"td",32)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Po(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," Remote Balance (Sats) "),t.qZA())}function Do(n,a){if(1&n&&(t.TgZ(0,"td",32)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Uo(n,a){1&n&&(t.TgZ(0,"th",42),t._uU(1,"Balance Score "),t.qZA())}function Mo(n,a){if(1&n&&(t.TgZ(0,"td",43)(1,"div",44)(2,"mat-hint",45),t._uU(3),t.ALo(4,"number"),t.qZA()(),t._UZ(5,"mat-progress-bar",46),t.qZA()),2&n){const e=a.$implicit;t.xp6(3),t.Oqu(t.lcZ(4,2,(null==e?null:e.balancedness)||0)),t.xp6(2),t.s9C("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function Jo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",47)(1,"div",48)(2,"mat-select",49),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",50),t.NdJ("click",function(){return t.CHM(e),t.oxw().onChannelUpdate("all")}),t._uU(5,"Update Fee Policy"),t.qZA(),t.TgZ(6,"mat-option",50),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(7,"Download CSV"),t.qZA()()()()}}function Qo(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",51)(1,"div",52)(2,"mat-select",53),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",50),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onChannelClick(c,o)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",50),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelUpdate(s)}),t._uU(7,"Update Fee Policy"),t.qZA(),t.TgZ(8,"mat-option",50),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelClose(s,!1)}),t._uU(9,"Close Channel"),t.qZA(),t.TgZ(10,"mat-option",50),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelClose(s,!0)}),t._uU(11,"Force Close"),t.qZA()()()()}}function Yo(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No peers connected. Add a peer in order to open a channel."),t.qZA())}function Ho(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No channel available."),t.qZA())}function Bo(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting channels..."),t.qZA())}function zo(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function Vo(n,a){if(1&n&&(t.TgZ(0,"td",54),t.YNc(1,Yo,2,0,"p",55),t.YNc(2,Ho,2,0,"p",55),t.YNc(3,Bo,2,0,"p",55),t.YNc(4,zo,2,1,"p",55),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Go=function(n){return{"display-none":n}};function Xo(n,a){if(1&n&&t._UZ(0,"tr",56),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Go,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function $o(n,a){1&n&&t._UZ(0,"tr",57)}function Wo(n,a){1&n&&t._UZ(0,"tr",58)}const Ko=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},jo=function(){return["no_peer"]};let ts=(()=>{class n{constructor(e,i,o,s,c){var h,g,T,Y,v,O;this.logger=e,this.store=i,this.rtlEffects=o,this.commonService=s,this.router=c,this.faEye=L.Mdf,this.faEyeSlash=L.Aq,this.totalBalance=0,this.displayedColumns=[],this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.vn,this.selFilter="",this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","toLocal","toRemote","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["shortChannelId","alias","toLocal","toRemote","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","actions"]):(this.flgSticky=!0,this.displayedColumns=["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness","actions"]),this.selFilter=(null===(T=null===(g=null===(h=this.router.getCurrentNavigation())||void 0===h?void 0:h.extras)||void 0===g?void 0:g.state)||void 0===T?void 0:T.filter)?null===(O=null===(v=null===(Y=this.router.getCurrentNavigation())||void 0===Y?void 0:Y.extras)||void 0===v?void 0:v.state)||void 0===O?void 0:O.filter:""}ngOnInit(){this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=e.activeChannels,this.activeChannels.length>0&&this.sort&&this.paginator&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels.length>0&&this.sort&&this.paginator&&this.loadChannelsTable()}onChannelUpdate(e){"all"!==e&&"NORMAL"!==e.state||(this.store.dispatch((0,Z.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"all"===e?"Update fee policy for all channels":"Update fee policy for Channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:"number",inputValue:e&&void 0!==e.feeBaseMsat?e.feeBaseMsat:1e3,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:"number",inputValue:e&&void 0!==e.feeProportionalMillionths?e.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[4])).subscribe(s=>{if(s){const c=s[0].inputValue,h=s[1].inputValue;let g=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let T="";"all"===e?(this.activeChannels.forEach(Y=>{T=T+","+Y.nodeId}),T=T.substring(1),g={baseFeeMsat:c,feeRate:h,nodeIds:T}):g={baseFeeMsat:c,feeRate:h,nodeId:e.nodeId}}else{let T="";"all"===e?(this.activeChannels.forEach(Y=>{T=T+","+Y.channelId}),T=T.substring(1),g={baseFeeMsat:c,feeRate:h,channelIds:T}):g={baseFeeMsat:c,feeRate:h,channelId:e.channelId}}this.store.dispatch((0,k.pW)({payload:g}))}}),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e,i){this.store.dispatch((0,Z.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[5])).subscribe(h=>{h&&this.store.dispatch((0,k.BL)({payload:{channelId:e.channelId,force:i}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}onChannelClick(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{channel:e,channelsType:"open",component:rt}}}))}loadChannelsTable(){this.activeChannels.sort((e,i)=>e.alias===i.alias?0:i.alias?1:-1),this.channels=new r.by([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.channels.filterPredicate=(e,i)=>JSON.stringify(e).toLowerCase().includes(i),this.channels.paginator=this.paginator,this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"ActiveChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(tt.V),t.Y36(N.v),t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Channels")}])],decls:39,vars:14,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","shortChannelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["mat-header-cell","","mat-sort-header","","class","pl-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","pl-1",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],[1,"ellipsis-child"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","",1,"pl-3"],["mat-cell","",1,"pl-3"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell","",1,"pl-1"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-1"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"div",2),t.TgZ(3,"mat-form-field",3)(4,"input",4),t.NdJ("keyup",function(){return i.applyFilter()})("ngModelChange",function(s){return i.selFilter=s}),t.qZA()()(),t.TgZ(5,"div",5),t.YNc(6,bo,1,0,"mat-progress-bar",6),t.TgZ(7,"table",7,8),t.ynx(9,9),t.YNc(10,Ao,2,0,"th",10),t.YNc(11,wo,6,6,"td",11),t.BQk(),t.ynx(12,12),t.YNc(13,Eo,2,0,"th",10),t.YNc(14,Io,4,4,"td",11),t.BQk(),t.ynx(15,13),t.YNc(16,Oo,2,0,"th",14),t.YNc(17,Fo,4,4,"td",11),t.BQk(),t.ynx(18,15),t.YNc(19,qo,2,0,"th",14),t.YNc(20,Ro,4,4,"td",11),t.BQk(),t.ynx(21,16),t.YNc(22,No,2,0,"th",14),t.YNc(23,ko,4,4,"td",11),t.BQk(),t.ynx(24,17),t.YNc(25,Po,2,0,"th",14),t.YNc(26,Do,4,4,"td",11),t.BQk(),t.ynx(27,18),t.YNc(28,Uo,2,0,"th",19),t.YNc(29,Mo,6,4,"td",20),t.BQk(),t.ynx(30,21),t.YNc(31,Jo,8,0,"th",22),t.YNc(32,Qo,12,0,"td",23),t.BQk(),t.ynx(33,24),t.YNc(34,Vo,5,4,"td",25),t.BQk(),t.YNc(35,Xo,1,3,"tr",26),t.YNc(36,$o,1,0,"tr",27),t.YNc(37,Wo,1,0,"tr",28),t.qZA()(),t._UZ(38,"mat-paginator",29),t.qZA()),2&e&&(t.xp6(4),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.channels)("ngClass",t.VKq(11,Ko,""!==i.errorMessage)),t.xp6(28),t.Q6J("matFooterRowDef",t.DdM(13,jo)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns)("matHeaderRowDefSticky",i.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[p.xw,p.Wh,p.yH,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,u.O5,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,u.PC,E.Zl,X.gM,q.BN,y.bx,D.gD,D.$L,B.ey,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[u.JJ],styles:[".mat-column-shortChannelId[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-shortChannelId[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-alias[_ngcontent-%COMP%]{padding-left:1rem;flex:0 0 15%;width:15%}.mat-column-alias[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;flex:0 0 17%;width:17%}.mat-column-state[_ngcontent-%COMP%], .mat-column-feeBaseMsat[_ngcontent-%COMP%], .mat-column-feeProportionalMillionths[_ngcontent-%COMP%], .mat-column-toLocal[_ngcontent-%COMP%], .mat-column-toRemote[_ngcontent-%COMP%]{flex:1 1 10%;width:10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (max-width: 56.25em){.mat-column-state[_ngcontent-%COMP%], .mat-column-feeBaseMsat[_ngcontent-%COMP%], .mat-column-feeProportionalMillionths[_ngcontent-%COMP%], .mat-column-toLocal[_ngcontent-%COMP%], .mat-column-toRemote[_ngcontent-%COMP%]{white-space:unset;flex:1 1 20%;width:20%}}@media only screen and (max-width: 37.5em){.mat-column-state[_ngcontent-%COMP%], .mat-column-feeBaseMsat[_ngcontent-%COMP%], .mat-column-feeProportionalMillionths[_ngcontent-%COMP%], .mat-column-toLocal[_ngcontent-%COMP%], .mat-column-toRemote[_ngcontent-%COMP%]{white-space:unset}}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 100%}@media only screen and (max-width: 56.25em){.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 90%}}@media only screen and (max-width: 37.5em){.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 80%}}"]}),n})();function es(n,a){1&n&&t._UZ(0,"mat-progress-bar",25)}function ns(n,a){1&n&&(t.TgZ(0,"th",26),t._uU(1," State "),t.qZA())}function is(n,a){if(1&n&&(t.TgZ(0,"td",27),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",t.lcZ(2,1,null==e?null:e.state),"")}}function as(n,a){1&n&&(t.TgZ(0,"th",26),t._uU(1," Alias "),t.qZA())}function os(n,a){if(1&n&&(t.TgZ(0,"td",27),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.alias)}}function ss(n,a){1&n&&(t.TgZ(0,"th",28),t._uU(1," Local Balance (Sats) "),t.qZA())}function ls(n,a){if(1&n&&(t.TgZ(0,"td",27)(1,"span",29),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function rs(n,a){1&n&&(t.TgZ(0,"th",28),t._uU(1," Remote Balance (Sats) "),t.qZA())}function cs(n,a){if(1&n&&(t.TgZ(0,"td",27)(1,"span",29),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function us(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",30)(1,"div",31)(2,"mat-select",32),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",33),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function ps(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",34)(1,"button",35),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onChannelClick(c,o)}),t._uU(2,"View Info"),t.qZA()()}}function ms(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No pending channel available."),t.qZA())}function ds(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting pending channels..."),t.qZA())}function hs(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function _s(n,a){if(1&n&&(t.TgZ(0,"td",36),t.YNc(1,ms,2,0,"p",37),t.YNc(2,ds,2,0,"p",37),t.YNc(3,hs,2,1,"p",37),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const fs=function(n){return{"display-none":n}};function gs(n,a){if(1&n&&t._UZ(0,"tr",38),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,fs,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Cs(n,a){1&n&&t._UZ(0,"tr",39)}function xs(n,a){1&n&&t._UZ(0,"tr",40)}const ys=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},vs=function(){return["no_channel"]};let Ls=(()=>{class n{constructor(e,i,o){this.logger=e,this.store=i,this.commonService=o,this.totalBalance=0,this.displayedColumns=[],this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.vn,this.selFilter="",this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["state","alias","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["state","alias","toLocal","toRemote","actions"]):(this.flgSticky=!0,this.displayedColumns=["state","alias","toLocal","toRemote","actions"])}ngOnInit(){this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=e.pendingChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[4])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}onChannelClick(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{channel:e,channelsType:"pending",component:rt}}}))}loadChannelsTable(){this.pendingChannels.sort((e,i)=>e.alias===i.alias?0:i.alias?1:-1),this.channels=new r.by([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.channels.filterPredicate=(e,i)=>JSON.stringify(e).toLowerCase().includes(i),this.channels.paginator=this.paginator,this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"PendingChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(N.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Channels")}])],decls:30,vars:14,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","class","pl-1","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"pl-1"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-1"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"div",2),t.TgZ(3,"mat-form-field",3)(4,"input",4),t.NdJ("keyup",function(){return i.applyFilter()})("ngModelChange",function(s){return i.selFilter=s}),t.qZA()()(),t.TgZ(5,"div",5),t.YNc(6,es,1,0,"mat-progress-bar",6),t.TgZ(7,"table",7,8),t.ynx(9,9),t.YNc(10,ns,2,0,"th",10),t.YNc(11,is,3,3,"td",11),t.BQk(),t.ynx(12,12),t.YNc(13,as,2,0,"th",10),t.YNc(14,os,2,1,"td",11),t.BQk(),t.ynx(15,13),t.YNc(16,ss,2,0,"th",14),t.YNc(17,ls,4,4,"td",11),t.BQk(),t.ynx(18,15),t.YNc(19,rs,2,0,"th",14),t.YNc(20,cs,4,4,"td",11),t.BQk(),t.ynx(21,16),t.YNc(22,us,6,0,"th",17),t.YNc(23,ps,3,0,"td",18),t.BQk(),t.ynx(24,19),t.YNc(25,_s,4,3,"td",20),t.BQk(),t.YNc(26,gs,1,3,"tr",21),t.YNc(27,Cs,1,0,"tr",22),t.YNc(28,xs,1,0,"tr",23),t.qZA()(),t._UZ(29,"mat-paginator",24),t.qZA()),2&e&&(t.xp6(4),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.channels)("ngClass",t.VKq(11,ys,""!==i.errorMessage)),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(13,vs)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns)("matHeaderRowDefSticky",i.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[p.xw,p.Wh,p.yH,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,u.O5,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,D.gD,D.$L,B.ey,F.lW,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[u.rS,u.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();var ct=f(5615);const Ts=["peersForm"],bs=["stepper"];function As(n,a){if(1&n&&t._uU(0),2&n){const e=t.oxw();t.Oqu(e.peerFormLabel)}}function Ss(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Address is required."),t.qZA())}function Zs(n,a){if(1&n&&(t.TgZ(0,"div",33),t._UZ(1,"fa-icon",34),t.TgZ(2,"span"),t._uU(3),t.qZA()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(2),t.Oqu(e.peerConnectionError)}}function ws(n,a){if(1&n&&t._uU(0),2&n){const e=t.oxw();t.Oqu(e.channelFormLabel)}}function Es(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function Is(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount must be a positive number."),t.qZA())}function Os(n,a){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.hij("Amount must be less than or equal to ",e.totalBalance,".")}}function Fs(n,a){if(1&n&&(t.TgZ(0,"div",33),t._UZ(1,"fa-icon",34),t.TgZ(2,"span"),t._uU(3),t.qZA()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("icon",e.faExclamationTriangle),t.xp6(2),t.Oqu(e.channelConnectionError)}}let qs=(()=>{class n{constructor(e,i,o,s,c,h){this.dialogRef=e,this.data=i,this.store=o,this.formBuilder=s,this.actions=c,this.logger=h,this.faExclamationTriangle=L.eHv,this.peerAddress="",this.totalBalance=0,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.unSubs=[new d.x,new d.x]}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.nodeId&&this.data.message.peer.address?this.data.message.peer.nodeId+"@"+this.data.message.peer.address:this.data.message.peer&&this.data.message.peer.nodeId&&!this.data.message.peer.address?this.data.message.peer.nodeId:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[m.kI.required]],peerAddress:[this.peerAddress,[m.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[m.kI.required,m.kI.min(1),m.kI.max(this.totalBalance)]],isPrivate:[!1],feeRate:[null],hiddenAmount:["",[m.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.actions.pipe((0,_.R)(this.unSubs[1]),(0,Q.h)(e=>e.type===l.lr.NEWLY_ADDED_PEER_ECL||e.type===l.lr.FETCH_CHANNELS_ECL||e.type===l.lr.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.lr.NEWLY_ADDED_PEER_ECL&&(this.logger.info(e.payload),this.flgEditable=!1,this.newlyAddedPeer=e.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),e.type===l.lr.FETCH_CHANNELS_ECL&&this.dialogRef.close(),e.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.Bn.ERROR&&("SaveNewPeer"===e.payload.action?this.peerConnectionError=e.payload.message:"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,k.El)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){var e;if(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0)return!0;this.channelConnectionError="",this.store.dispatch((0,k.YX)({payload:{nodeId:null===(e=this.newlyAddedPeer)||void 0===e?void 0:e.nodeId,amount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,feeRate:this.channelFormGroup.controls.feeRate.value}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(e){var i,o,s,c;switch(e.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(i=this.newlyAddedPeer)||void 0===i?void 0:i.alias)?this.newlyAddedPeer.alias:null===(o=this.newlyAddedPeer)||void 0===o?void 0:o.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+((null===(s=this.newlyAddedPeer)||void 0===s?void 0:s.alias)?this.newlyAddedPeer.alias:null===(c=this.newlyAddedPeer)||void 0===c?void 0:c.nodeId):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}e.selectedIndex{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(U.so),t.Y36(U.WI),t.Y36(w.yh),t.Y36(m.qu),t.Y36(G.eX),t.Y36(R.mQ))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(e,i){if(1&e&&(t.Gf(Ts,5),t.Gf(bs,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first),t.iGM(o=t.CRH())&&(i.stepper=o.first)}},decls:50,vars:20,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Lightning Address (pubkey OR pubkey@ip:port)","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxFlex","60","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","placeholder","Amount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["matInput","","formControlName","feeRate","placeholder","Fee (Sats/vByte)","type","number","name","feeRate","tabindex","7",3,"step","min"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Connect to a new peer"),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return i.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),t.NdJ("selectionChange",function(s){return i.stepSelectionChanged(s)}),t.TgZ(12,"mat-step",10)(13,"form",11),t.YNc(14,As,1,1,"ng-template",12),t.TgZ(15,"mat-form-field",1),t._UZ(16,"input",13),t.YNc(17,Ss,2,0,"mat-error",14),t.qZA(),t.YNc(18,Zs,4,2,"div",15),t.TgZ(19,"div",16)(20,"button",17),t.NdJ("click",function(){return i.onConnectPeer()}),t._uU(21),t.qZA()()()(),t.TgZ(22,"mat-step",10)(23,"form",18),t.YNc(24,ws,1,1,"ng-template",19),t.TgZ(25,"div",20)(26,"div",21)(27,"mat-form-field",22),t._UZ(28,"input",23),t.TgZ(29,"mat-hint"),t._uU(30),t.qZA(),t.TgZ(31,"span",24),t._uU(32," Sats "),t.qZA(),t.YNc(33,Es,2,0,"mat-error",14),t.YNc(34,Is,2,0,"mat-error",14),t.YNc(35,Os,2,1,"mat-error",14),t.qZA(),t.TgZ(36,"div",25)(37,"mat-slide-toggle",26),t._uU(38,"Private Channel"),t.qZA()()(),t.TgZ(39,"div",27)(40,"div",28)(41,"mat-form-field",1),t._UZ(42,"input",29),t.qZA()()()(),t.YNc(43,Fs,4,2,"div",15),t.TgZ(44,"div",16)(45,"button",30),t.NdJ("click",function(){return i.onOpenChannel()}),t._uU(46),t.qZA()()()()(),t.TgZ(47,"div",31)(48,"button",32),t.NdJ("click",function(){return i.onClose()}),t._uU(49),t.qZA()()()()()()),2&e&&(t.xp6(10),t.Q6J("linear",!0),t.xp6(2),t.Q6J("stepControl",i.peerFormGroup)("editable",i.flgEditable),t.xp6(1),t.Q6J("formGroup",i.peerFormGroup),t.xp6(4),t.Q6J("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),t.xp6(1),t.Q6J("ngIf",""!==i.peerConnectionError),t.xp6(3),t.Oqu(""!==i.peerConnectionError?"Retry":"Add Peer"),t.xp6(1),t.Q6J("stepControl",i.channelFormGroup)("editable",i.flgEditable),t.xp6(1),t.Q6J("formGroup",i.channelFormGroup),t.xp6(5),t.Q6J("step",1e3),t.xp6(2),t.hij("Remaining Bal: ",i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0),""),t.xp6(3),t.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),t.xp6(1),t.Q6J("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),t.xp6(7),t.Q6J("step",1)("min",0),t.xp6(1),t.Q6J("ngIf",""!==i.channelConnectionError),t.xp6(3),t.Oqu(""!==i.channelConnectionError?"Retry":"Open Channel"),t.xp6(3),t.Oqu(null!=i.newlyAddedPeer&&i.newlyAddedPeer.nodeId?"Do It Later":"Close"))},directives:[p.xw,p.yH,b.dk,p.Wh,F.lW,b.dn,ct.Vq,ct.C0,m._Y,m.JL,m.sg,ct.VY,y.KE,M.Nt,m.Fj,W.h,m.JJ,m.u,m.Q7,u.O5,y.TO,q.BN,m.wV,y.bx,y.R9,Zt.Rr,m.qQ,K.q],styles:[""]}),n})();function Rs(n,a){1&n&&t._UZ(0,"mat-progress-bar",37)}function Ns(n,a){1&n&&(t.TgZ(0,"th",38),t._uU(1," ID "),t.qZA())}const ut=function(n){return{"max-width":n}};function ks(n,a){if(1&n&&(t.TgZ(0,"td",39),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("ngStyle",t.VKq(2,ut,i.screenSize===i.screenSizeEnum.XS?"10rem":"30rem")),t.xp6(1),t.hij(" ",null==e?null:e.nodeId," ")}}function Ps(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," Alias "),t.qZA())}const It=function(n){return{"mr-0":n}};function Ds(n,a){if(1&n&&t._UZ(0,"span",44),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,It,e.screenSize===e.screenSizeEnum.XS))}}function Us(n,a){if(1&n&&t._UZ(0,"span",45),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,It,e.screenSize===e.screenSizeEnum.XS))}}function Ms(n,a){if(1&n&&(t.TgZ(0,"td",41),t.YNc(1,Ds,1,3,"span",42),t.YNc(2,Us,1,3,"span",43),t._uU(3),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("ngStyle",t.VKq(4,ut,i.screenSize===i.screenSizeEnum.XS?"10rem":"25rem")),t.xp6(1),t.Q6J("ngIf","CONNECTED"===e.state),t.xp6(1),t.Q6J("ngIf","DISCONNECTED"===e.state),t.xp6(1),t.hij(" ",null==e?null:e.alias," ")}}function Js(n,a){1&n&&(t.TgZ(0,"th",38),t._uU(1," State "),t.qZA())}function Qs(n,a){if(1&n&&(t.TgZ(0,"td",46),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",null==e?null:e.state," ")}}function Ys(n,a){1&n&&(t.TgZ(0,"th",38),t._uU(1," Network Address "),t.qZA())}function Hs(n,a){if(1&n&&(t.TgZ(0,"td",39),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw();t.Q6J("ngStyle",t.VKq(2,ut,i.screenSize===i.screenSizeEnum.XS?"10rem":"20rem")),t.xp6(1),t.hij(" ",null==e?null:e.address," ")}}function Bs(n,a){1&n&&(t.TgZ(0,"th",47),t._uU(1," Channels "),t.qZA())}function zs(n,a){if(1&n&&(t.TgZ(0,"td",48),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",null==e?null:e.channels," ")}}function Vs(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",49)(1,"div",50)(2,"mat-select",51),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",52),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Gs(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-option",52),t.NdJ("click",function(){t.CHM(e);const o=t.oxw().$implicit;return t.oxw().onPeerDetach(o)}),t._uU(1,"Disconnect"),t.qZA()}}function Xs(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"mat-option",52),t.NdJ("click",function(){t.CHM(e);const o=t.oxw().$implicit;return t.oxw().onConnectPeer(o)}),t._uU(1,"Reconnect"),t.qZA()}}function $s(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",53)(1,"div",50)(2,"mat-select",51),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",52),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onPeerClick(c,o)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",52),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onOpenChannel(s)}),t._uU(7,"Open Channel"),t.qZA(),t.YNc(8,Gs,2,0,"mat-option",54),t.YNc(9,Xs,2,0,"mat-option",54),t.qZA()()()}if(2&n){const e=a.$implicit;t.xp6(8),t.Q6J("ngIf","CONNECTED"===e.state),t.xp6(1),t.Q6J("ngIf","DISCONNECTED"===e.state)}}function Ws(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No connected peer."),t.qZA())}function Ks(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting peers..."),t.qZA())}function js(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function tl(n,a){if(1&n&&(t.TgZ(0,"td",55),t.YNc(1,Ws,2,0,"p",56),t.YNc(2,Ks,2,0,"p",56),t.YNc(3,js,2,1,"p",56),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const el=function(n){return{"display-none":n}};function nl(n,a){if(1&n&&t._UZ(0,"tr",57),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,el,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function il(n,a){1&n&&t._UZ(0,"tr",58)}function al(n,a){1&n&&t._UZ(0,"tr",59)}const ol=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},sl=function(){return["no_peer"]};let ll=(()=>{class n{constructor(e,i,o,s,c){this.logger=e,this.store=i,this.rtlEffects=o,this.actions=s,this.commonService=c,this.faUsers=L.FVb,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.information={},this.availableBalance=0,this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["alias","nodeId","address","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","nodeId","address","channels","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","nodeId","address","channels","actions"])}ngOnInit(){this.store.select(C.yD).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=e.peers,this.loadPeersTable(this.peersData),this.logger.info(e)}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,_.R)(this.unSubs[3]),(0,Q.h)(e=>e.type===l.lr.SET_PEERS_ECL)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,i){const o=[[{key:"nodeId",value:e.nodeId,title:"Public Key",width:100}],[{key:"address",value:e.address,title:"Address",width:50},{key:"alias",value:e.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(e.state||""),title:"State",width:50},{key:"channels",value:e.channels,title:"Channels",width:50}]];this.store.dispatch((0,Z.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Peer Information",showQRName:"Public Key",showQRField:e.nodeId,message:o}}}))}onConnectPeer(e){this.store.dispatch((0,Z.qR)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:qs}}}))}onOpenChannel(e){this.store.dispatch((0,Z.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:wt}}}))}onPeerDetach(e){this.store.dispatch(e&&e.channels&&e.channels>0?(0,Z.qR)({payload:{data:{type:l.n_.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,Z.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[4])).subscribe(i=>{i&&this.store.dispatch((0,k.GD)({payload:{nodeId:e.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}loadPeersTable(e){this.peers=new r.by(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.peers.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o),this.peers.paginator=this.paginator,this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(tt.V),t.Y36(G.eX),t.Y36(N.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Peers")}])],decls:42,vars:15,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["peersForm","ngForm"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30"],["fxLayout","row","fxLayoutAlign","start start"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","nodeId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3",3,"ngStyle",4,"matCellDef"],["matColumnDef","state"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","channels"],["mat-header-cell","","class","px-2","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","","class","px-2",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center","class","px-3",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","",1,"px-3"],["mat-cell","",1,"px-3",3,"ngStyle"],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-cell",""],["mat-header-cell","","mat-sort-header","",1,"px-2"],["mat-cell","",1,"px-2"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"form",1,2)(3,"button",3),t.NdJ("click",function(){return i.onConnectPeer({})}),t._uU(4,"Add Peer"),t.qZA()(),t.TgZ(5,"div",4)(6,"div",5)(7,"div",6),t._UZ(8,"fa-icon",7),t.TgZ(9,"span",8),t._uU(10,"Peers"),t.qZA()(),t.TgZ(11,"mat-form-field",9)(12,"div",10)(13,"input",11),t.NdJ("keyup",function(){return i.applyFilter()})("ngModelChange",function(s){return i.selFilter=s}),t.qZA()()()(),t.TgZ(14,"div",12),t.YNc(15,Rs,1,0,"mat-progress-bar",13),t.TgZ(16,"table",14,15),t.ynx(18,16),t.YNc(19,Ns,2,0,"th",17),t.YNc(20,ks,2,4,"td",18),t.BQk(),t.ynx(21,19),t.YNc(22,Ps,2,0,"th",20),t.YNc(23,Ms,4,6,"td",21),t.BQk(),t.ynx(24,22),t.YNc(25,Js,2,0,"th",17),t.YNc(26,Qs,2,1,"td",23),t.BQk(),t.ynx(27,24),t.YNc(28,Ys,2,0,"th",17),t.YNc(29,Hs,2,4,"td",18),t.BQk(),t.ynx(30,25),t.YNc(31,Bs,2,0,"th",26),t.YNc(32,zs,2,1,"td",27),t.BQk(),t.ynx(33,28),t.YNc(34,Vs,6,0,"th",29),t.YNc(35,$s,10,2,"td",30),t.BQk(),t.ynx(36,31),t.YNc(37,tl,4,3,"td",32),t.BQk(),t.YNc(38,nl,1,3,"tr",33),t.YNc(39,il,1,0,"tr",34),t.YNc(40,al,1,0,"tr",35),t.qZA()(),t._UZ(41,"mat-paginator",36),t.qZA()()),2&e&&(t.xp6(8),t.Q6J("icon",i.faUsers),t.xp6(5),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.peers)("ngClass",t.VKq(12,ol,""!==i.errorMessage)),t.xp6(22),t.Q6J("matFooterRowDef",t.DdM(14,sl)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns)("matHeaderRowDefSticky",i.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[p.xw,p.yH,p.Wh,m._Y,m.JL,m.F,F.lW,q.BN,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,u.O5,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,u.PC,E.Zl,X.gM,D.gD,D.$L,B.ey,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],styles:[".mat-column-alias[_ngcontent-%COMP%]{flex:1 1 10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-nodeId[_ngcontent-%COMP%]{flex:1 1 10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.mat-column-address[_ngcontent-%COMP%]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();const rl=["queryRoutesForm"];function cl(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Destination Node ID is required."),t.qZA())}function ul(n,a){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function pl(n,a){1&n&&t._UZ(0,"mat-progress-bar",21)}function ml(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," Alias "),t.qZA())}function dl(n,a){if(1&n&&(t.TgZ(0,"td",41),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",null==e?null:e.alias," ")}}function hl(n,a){1&n&&(t.TgZ(0,"th",40),t._uU(1," ID "),t.qZA())}function _l(n,a){if(1&n&&(t.TgZ(0,"td",41),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.hij(" ",null==e?null:e.nodeId," ")}}function fl(n,a){1&n&&(t.TgZ(0,"th",42)(1,"span",43),t._uU(2,"Actions"),t.qZA()())}function gl(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",44)(1,"button",45),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw(2).onHopClick(s)}),t._uU(2,"View Info"),t.qZA()()}}function Cl(n,a){1&n&&t._UZ(0,"tr",46)}function xl(n,a){1&n&&t._UZ(0,"tr",47)}const yl=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}};function vl(n,a){if(1&n&&(t.TgZ(0,"div",22)(1,"mat-expansion-panel",23)(2,"mat-expansion-panel-header")(3,"mat-panel-title",24)(4,"span",25),t._uU(5),t.qZA(),t.TgZ(6,"span",26),t._uU(7),t.ALo(8,"number"),t.qZA()()(),t.TgZ(9,"mat-panel-description",27)(10,"div",28)(11,"table",29,30),t.ynx(13,31),t.YNc(14,ml,2,0,"th",32),t.YNc(15,dl,2,1,"td",33),t.BQk(),t.ynx(16,34),t.YNc(17,hl,2,0,"th",32),t.YNc(18,_l,2,1,"td",33),t.BQk(),t.ynx(19,35),t.YNc(20,fl,3,0,"th",36),t.YNc(21,gl,3,0,"td",37),t.BQk(),t.YNc(22,Cl,1,0,"tr",38),t.YNc(23,xl,1,0,"tr",39),t.qZA()()()()()),2&n){const e=a.$implicit,i=a.index,o=t.oxw();t.xp6(5),t.hij("Route ",i+1,""),t.xp6(2),t.Oqu(t.lcZ(8,7,e.amount/1e3)),t.xp6(4),t.Q6J("dataSource",o.qrHops[i])("ngClass",t.VKq(9,yl,"error"===o.flgLoading[0])),t.xp6(11),t.Q6J("matHeaderRowDef",o.displayedColumns)("matHeaderRowDefSticky",o.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",o.displayedColumns)}}let Ll=(()=>{class n{constructor(e,i,o){this.store=e,this.eclEffects=i,this.commonService=o,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.flgSticky=!1,this.flgLoading=[!1],this.faRoute=L.FpQ,this.faExclamationTriangle=L.eHv,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","actions"]):this.screenSize===l.cu.SM||this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","nodeId","actions"]):(this.flgSticky=!0,this.displayedColumns=["alias","nodeId","actions"])}ngOnInit(){this.qrHops[0]=new r.by([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,o)=>{this.qrHops[o]=new r.by([...i.nodeIds])})):(this.flgLoading[0]="error",this.allQRoutes=[],this.qrHops=[])})}onQueryRoutes(){if(!this.nodeId||!this.amount)return!0;this.qrHops=[],this.flgLoading[0]=!0,this.store.dispatch((0,k.WO)({payload:{nodeId:this.nodeId,amount:1e3*this.amount}}))}resetData(){this.allQRoutes=[],this.nodeId="",this.amount=0,this.flgLoading[0]=!1,this.qrHops=[],this.form.resetForm()}onHopClick(e){this.store.dispatch((0,Z.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:e.alias,title:"Alias",width:100,type:l.Gi.STRING}],[{key:"nodeId",value:e.nodeId,title:"Node ID",width:100,type:l.Gi.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(w.yh),t.Y36(st.o),t.Y36(N.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(e,i){if(1&e&&t.Gf(rl,7),2&e){let o;t.iGM(o=t.CRH())&&(i.form=o.first)}},decls:28,vars:10,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["queryRoutesForm","ngForm"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","69","fxLayoutAlign","start end"],["matInput","","placeholder","Destination Node ID","name","nodeId","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxFlex","29","fxLayoutAlign","start end"],["matInput","","placeholder","Amount (Sats)","name","amount","tabindex","2","type","number","required","",3,"ngModel","step","min","ngModelChange"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["mode","indeterminate"],["fxFlex","100"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","row","fxLayoutAlign","space-between start"],["fxFlex","50","fxLayoutAlign","start start"],["fxFlex","50","fxLayoutAlign","end end"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"table-container","mb-2",3,"perfectScrollbar"],["mat-table","",3,"dataSource","ngClass"],["table[i]",""],["matColumnDef","alias"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeId"],["matColumnDef","actions"],["mat-header-cell","","class","pl-4 pr-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-4",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["mat-header-cell","",1,"pl-4","pr-3"],["fxLayoutAlign","end center"],["mat-cell","",1,"pl-4"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(e,i){if(1&e){const o=t.EpF();t.TgZ(0,"div",0)(1,"form",1,2),t.NdJ("ngSubmit",function(){return t.CHM(o),t.MAs(2).form.valid&&i.onQueryRoutes()}),t.TgZ(3,"div",3),t._UZ(4,"fa-icon",4),t.TgZ(5,"span"),t._uU(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.qZA()(),t.TgZ(7,"mat-form-field",5)(8,"input",6,7),t.NdJ("ngModelChange",function(c){return i.nodeId=c}),t.qZA(),t.YNc(10,cl,2,0,"mat-error",8),t.qZA(),t.TgZ(11,"mat-form-field",9)(12,"input",10),t.NdJ("ngModelChange",function(c){return i.amount=c}),t.qZA(),t.YNc(13,ul,2,0,"mat-error",8),t.qZA(),t.TgZ(14,"div",11)(15,"button",12),t.NdJ("click",function(){return i.resetData()}),t._uU(16,"Clear"),t.qZA(),t.TgZ(17,"button",13),t._uU(18,"Query Route"),t.qZA()()(),t.TgZ(19,"div",14)(20,"div",15),t._UZ(21,"fa-icon",16),t.TgZ(22,"span",17),t._uU(23,"Transaction Route"),t.qZA()()(),t.YNc(24,pl,1,0,"mat-progress-bar",18),t.TgZ(25,"div",19)(26,"div",0),t.YNc(27,vl,24,11,"div",20),t.qZA()()()}2&e&&(t.xp6(4),t.Q6J("icon",i.faExclamationTriangle),t.xp6(4),t.Q6J("ngModel",i.nodeId),t.xp6(2),t.Q6J("ngIf",!i.nodeId),t.xp6(2),t.Q6J("ngModel",i.amount)("step",1e3)("min",0),t.xp6(1),t.Q6J("ngIf",!i.amount),t.xp6(8),t.Q6J("icon",i.faRoute),t.xp6(3),t.Q6J("ngIf",!0===i.flgLoading[0]),t.xp6(3),t.Q6J("ngForOf",i.allQRoutes))},directives:[p.xw,p.yH,m._Y,m.JL,m.F,p.Wh,q.BN,y.KE,M.Nt,m.Fj,m.Q7,m.JJ,m.On,u.O5,y.TO,m.wV,m.qQ,K.q,F.lW,J.pW,u.sg,z.ib,z.yz,z.yK,z.u4,H.$V,r.BZ,u.mk,E.oO,r.w1,r.fO,r.ge,r.Dz,r.ev,r.as,r.XQ,r.nj,r.Gk],pipes:[u.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{flex:0 0 5%;width:5%}.mat-column-pubkey_alias[_ngcontent-%COMP%]{flex:1 1 25%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function Tl(n,a){1&n&&t._UZ(0,"mat-progress-bar",29)}function bl(n,a){1&n&&(t.TgZ(0,"th",30),t._uU(1," State "),t.qZA())}function Al(n,a){if(1&n&&(t.TgZ(0,"span",36),t._UZ(1,"fa-icon",37),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function Sl(n,a){if(1&n&&(t.TgZ(0,"span",38),t._UZ(1,"fa-icon",37),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}const Ot=function(n){return{"max-width":n}};function Zl(n,a){if(1&n&&(t.TgZ(0,"td",31)(1,"div",32),t.YNc(2,Al,2,1,"span",33),t.YNc(3,Sl,2,1,"span",34),t.TgZ(4,"span",35),t._uU(5),t.ALo(6,"titlecase"),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(6,Ot,i.screenSize===i.screenSizeEnum.XS?"10rem":"20rem")),t.xp6(1),t.Q6J("ngIf",0===e.channelFlags),t.xp6(1),t.Q6J("ngIf",0!==e.channelFlags),t.xp6(2),t.Oqu(t.lcZ(6,4,null==e?null:e.state))}}function wl(n,a){1&n&&(t.TgZ(0,"th",30),t._uU(1," Short Channel ID "),t.qZA())}function El(n,a){if(1&n&&(t.TgZ(0,"td",31),t._uU(1),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Oqu(null==e?null:e.shortChannelId)}}function Il(n,a){1&n&&(t.TgZ(0,"th",30),t._uU(1," Alias "),t.qZA())}function Ol(n,a){if(1&n&&(t.TgZ(0,"td",31)(1,"div",32)(2,"span",35),t._uU(3),t.qZA()()()),2&n){const e=a.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ot,i.screenSize===i.screenSizeEnum.XS?"10rem":"20rem")),t.xp6(2),t.Oqu(e.alias)}}function Fl(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1," Local Balance (Sats) "),t.qZA())}function ql(n,a){if(1&n&&(t.TgZ(0,"td",31)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Rl(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1," Remote Balance (Sats) "),t.qZA())}function Nl(n,a){if(1&n&&(t.TgZ(0,"td",31)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function kl(n,a){1&n&&(t.TgZ(0,"th",41),t._uU(1,"Balance Score "),t.qZA())}function Pl(n,a){if(1&n&&(t.TgZ(0,"td",42)(1,"div",43)(2,"mat-hint",44),t._uU(3),t.ALo(4,"number"),t.qZA()(),t._UZ(5,"mat-progress-bar",45),t.qZA()),2&n){const e=a.$implicit;t.xp6(3),t.Oqu(t.lcZ(4,2,(null==e?null:e.balancedness)||0)),t.xp6(2),t.s9C("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function Dl(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",46)(1,"div",47)(2,"mat-select",48),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",49),t.NdJ("click",function(){return t.CHM(e),t.oxw().onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Ul(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",50)(1,"div",51)(2,"mat-select",52),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",49),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw().onChannelClick(c,o)}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",49),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().onChannelClose(s,!0)}),t._uU(7,"Force Close"),t.qZA()()()()}}function Ml(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No inactive channel available."),t.qZA())}function Jl(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting inactive channels..."),t.qZA())}function Ql(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.errorMessage)}}function Yl(n,a){if(1&n&&(t.TgZ(0,"td",53),t.YNc(1,Ml,2,0,"p",54),t.YNc(2,Jl,2,0,"p",54),t.YNc(3,Ql,2,1,"p",54),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Hl=function(n){return{"display-none":n}};function Bl(n,a){if(1&n&&t._UZ(0,"tr",55),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Hl,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function zl(n,a){1&n&&t._UZ(0,"tr",56)}function Vl(n,a){1&n&&t._UZ(0,"tr",57)}const Gl=function(n){return{"overflow-auto error-border":n,"overflow-auto":!0}},Xl=function(){return["no_channel"]};let $l=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.store=i,this.rtlEffects=o,this.commonService=s,this.faEye=L.Mdf,this.faEyeSlash=L.Aq,this.totalBalance=0,this.displayedColumns=[],this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.vn,this.selFilter="",this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS||this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["state","alias","toLocal","toRemote","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["state","shortChannelId","alias","toLocal","toRemote","actions"]):(this.flgSticky=!0,this.displayedColumns=["state","shortChannelId","alias","toLocal","toRemote","balancedness","actions"])}ngOnInit(){this.store.select(C.Xz).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=e.inactiveChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.yD).pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.Bo).pipe((0,_.R)(this.unSubs[2])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.kY).pipe((0,_.R)(this.unSubs[3])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(e,i){this.store.dispatch((0,Z.c1)({payload:{data:{type:l.n_.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,_.R)(this.unSubs[4])).subscribe(h=>{h&&this.store.dispatch((0,k.BL)({payload:{channelId:e.channelId||"",force:i}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}onChannelClick(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{channel:e,channelsType:"inactive",component:rt}}}))}loadChannelsTable(){this.inactiveChannels.sort((e,i)=>e.alias===i.alias?0:i.alias?1:-1),this.channels=new r.by([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.channels.filterPredicate=(e,i)=>JSON.stringify(e).toLowerCase().includes(i),this.channels.paginator=this.paginator,this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"InactiveChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(w.yh),t.Y36(tt.V),t.Y36(N.v))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Channels")}])],decls:36,vars:14,consts:[["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","shortChannelId"],["matColumnDef","alias"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["mat-header-cell","","mat-sort-header","","class","pl-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","pl-1",4,"matHeaderCellDef"],["mat-cell","","class","pl-1","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],[1,"ellipsis-child"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","",1,"pl-3"],["mat-cell","",1,"pl-3"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell","",1,"pl-1"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-1"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"div",2),t.TgZ(3,"mat-form-field",3)(4,"input",4),t.NdJ("keyup",function(){return i.applyFilter()})("ngModelChange",function(s){return i.selFilter=s}),t.qZA()()(),t.TgZ(5,"div",5),t.YNc(6,Tl,1,0,"mat-progress-bar",6),t.TgZ(7,"table",7,8),t.ynx(9,9),t.YNc(10,bl,2,0,"th",10),t.YNc(11,Zl,7,8,"td",11),t.BQk(),t.ynx(12,12),t.YNc(13,wl,2,0,"th",10),t.YNc(14,El,2,1,"td",11),t.BQk(),t.ynx(15,13),t.YNc(16,Il,2,0,"th",10),t.YNc(17,Ol,4,4,"td",11),t.BQk(),t.ynx(18,14),t.YNc(19,Fl,2,0,"th",15),t.YNc(20,ql,4,4,"td",11),t.BQk(),t.ynx(21,16),t.YNc(22,Rl,2,0,"th",15),t.YNc(23,Nl,4,4,"td",11),t.BQk(),t.ynx(24,17),t.YNc(25,kl,2,0,"th",18),t.YNc(26,Pl,6,4,"td",19),t.BQk(),t.ynx(27,20),t.YNc(28,Dl,6,0,"th",21),t.YNc(29,Ul,8,0,"td",22),t.BQk(),t.ynx(30,23),t.YNc(31,Yl,4,3,"td",24),t.BQk(),t.YNc(32,Bl,1,3,"tr",25),t.YNc(33,zl,1,0,"tr",26),t.YNc(34,Vl,1,0,"tr",27),t.qZA()(),t._UZ(35,"mat-paginator",28),t.qZA()),2&e&&(t.xp6(4),t.Q6J("ngModel",i.selFilter),t.xp6(2),t.Q6J("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",i.channels)("ngClass",t.VKq(11,Gl,""!==i.errorMessage)),t.xp6(25),t.Q6J("matFooterRowDef",t.DdM(13,Xl)),t.xp6(1),t.Q6J("matHeaderRowDef",i.displayedColumns)("matHeaderRowDefSticky",i.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",i.displayedColumns),t.xp6(1),t.Q6J("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},directives:[p.xw,p.Wh,p.yH,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,u.O5,J.pW,r.BZ,A.YE,u.mk,E.oO,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,u.PC,E.Zl,X.gM,q.BN,y.bx,D.gD,D.$L,B.ey,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[u.rS,u.JJ],styles:[".mat-column-state[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-state[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-alias[_ngcontent-%COMP%]{flex:0 0 15%;width:15%}.mat-column-alias[_ngcontent-%COMP%] .ellipsis-parent[_ngcontent-%COMP%]{display:flex}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;flex:0 0 20%;width:20%}.mat-column-shortChannelId[_ngcontent-%COMP%], .mat-column-toLocal[_ngcontent-%COMP%], .mat-column-toRemote[_ngcontent-%COMP%]{flex:1 1 15%;width:15%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media only screen and (max-width: 37.5em){.mat-column-shortChannelId[_ngcontent-%COMP%], .mat-column-toLocal[_ngcontent-%COMP%], .mat-column-toRemote[_ngcontent-%COMP%]{white-space:unset}}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 100%}@media only screen and (max-width: 37.5em){.mat-column-actions[_ngcontent-%COMP%] .bordered-box.table-actions-select[_ngcontent-%COMP%]{flex:0 0 80%}}"]}),n})(),Wl=(()=>{class n{transform(e,i){var o,s;return null===(s=null===(o=null==e?void 0:e.replace(/(?:^\w|[A-Z]|\b\w)/g,(c,h)=>c.toUpperCase()))||void 0===o?void 0:o.replace(/\s+/g,""))||void 0===s?void 0:s.replace(/-/g," ")}}return n.\u0275fac=function(e){return new(e||n)},n.\u0275pipe=t.Yjl({name:"camelcase",type:n,pure:!0}),n})();function Kl(n,a){if(1&n&&(t.TgZ(0,"div",5),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.errorMessage)}}function jl(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",6),t._UZ(1,"div",7),t.TgZ(2,"mat-form-field",8)(3,"input",9),t.NdJ("ngModelChange",function(o){return t.CHM(e),t.oxw().filterValue=o})("input",function(){return t.CHM(e),t.oxw().applyFilter()})("keyup",function(){return t.CHM(e),t.oxw().applyFilter()}),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("ngModel",e.filterValue)}}function tr(n,a){1&n&&t._UZ(0,"mat-progress-bar",32)}function er(n,a){1&n&&(t.TgZ(0,"th",33),t._uU(1,"Date/Time"),t.qZA())}const nr=function(n){return{"ml-0":n}};function ir(n,a){if(1&n&&(t._UZ(0,"span",36),t.ALo(1,"camelcase")),2&n){const e=t.oxw().$implicit,i=t.oxw(2);t.s9C("matTooltip",t.lcZ(1,2,null==e?null:e.type)),t.Q6J("ngClass",t.VKq(4,nr,i.screenSize===i.screenSizeEnum.XS))}}function ar(n,a){if(1&n&&(t.TgZ(0,"td",34),t.YNc(1,ir,2,6,"span",35),t._uU(2),t.ALo(3,"date"),t.qZA()),2&n){const e=a.$implicit;t.xp6(1),t.Q6J("ngIf","payment-relayed"!==(null==e?null:e.type)),t.xp6(1),t.hij(" ",t.xi3(3,2,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function or(n,a){1&n&&(t.TgZ(0,"th",33),t._uU(1,"In Channel"),t.qZA())}const Ft=function(n){return{"max-width":n}};function sr(n,a){if(1&n&&(t.TgZ(0,"td",37),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("ngStyle",t.VKq(2,Ft,i.screenSize===i.screenSizeEnum.XS?"10rem":"20rem")),t.xp6(1),t.Oqu(null==e?null:e.fromChannelAlias)}}function lr(n,a){1&n&&(t.TgZ(0,"th",33),t._uU(1,"Out Channel"),t.qZA())}function rr(n,a){if(1&n&&(t.TgZ(0,"td",37),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("ngStyle",t.VKq(2,Ft,i.screenSize===i.screenSizeEnum.XS?"10rem":"20rem")),t.xp6(1),t.Oqu(null==e?null:e.toChannelAlias)}}function cr(n,a){1&n&&(t.TgZ(0,"th",38),t._uU(1,"Amount In (Sats)"),t.qZA())}function ur(n,a){if(1&n&&(t.TgZ(0,"td",34)(1,"span",39),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.amountIn))}}function pr(n,a){1&n&&(t.TgZ(0,"th",38),t._uU(1,"Amount Out (Sats)"),t.qZA())}function mr(n,a){if(1&n&&(t.TgZ(0,"td",34)(1,"span",39),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.amountOut))}}function dr(n,a){1&n&&(t.TgZ(0,"th",38),t._uU(1,"Fee Earned (Sats)"),t.qZA())}function hr(n,a){if(1&n&&(t.TgZ(0,"td",34)(1,"span",39),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function _r(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"th",40)(1,"div",41)(2,"mat-select",42),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",43),t.NdJ("click",function(){return t.CHM(e),t.oxw(2).onDownloadCSV()}),t._uU(5,"Download CSV"),t.qZA()()()()}}function fr(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"td",44)(1,"button",45),t.NdJ("click",function(o){const c=t.CHM(e).$implicit;return t.oxw(2).onForwardingEventClick(c,o)}),t._uU(2,"View Info"),t.qZA()()}}function gr(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No forwarding history available."),t.qZA())}function Cr(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting forwarding history..."),t.qZA())}function xr(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function yr(n,a){if(1&n&&(t.TgZ(0,"td",46),t.YNc(1,gr,2,0,"p",47),t.YNc(2,Cr,2,0,"p",47),t.YNc(3,xr,2,1,"p",47),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const vr=function(n){return{"display-none":n}};function Lr(n,a){if(1&n&&t._UZ(0,"tr",48),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,vr,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function Tr(n,a){1&n&&t._UZ(0,"tr",49)}function br(n,a){1&n&&t._UZ(0,"tr",50)}const Ar=function(){return["no_event"]};function Sr(n,a){if(1&n&&(t.TgZ(0,"div",10),t.YNc(1,tr,1,0,"mat-progress-bar",11),t.TgZ(2,"table",12,13),t.ynx(4,14),t.YNc(5,er,2,0,"th",15),t.YNc(6,ar,4,5,"td",16),t.BQk(),t.ynx(7,17),t.YNc(8,or,2,0,"th",15),t.YNc(9,sr,2,4,"td",18),t.BQk(),t.ynx(10,19),t.YNc(11,lr,2,0,"th",15),t.YNc(12,rr,2,4,"td",18),t.BQk(),t.ynx(13,20),t.YNc(14,cr,2,0,"th",21),t.YNc(15,ur,4,3,"td",16),t.BQk(),t.ynx(16,22),t.YNc(17,pr,2,0,"th",21),t.YNc(18,mr,4,3,"td",16),t.BQk(),t.ynx(19,23),t.YNc(20,dr,2,0,"th",21),t.YNc(21,hr,4,3,"td",16),t.BQk(),t.ynx(22,24),t.YNc(23,_r,6,0,"th",25),t.YNc(24,fr,3,0,"td",26),t.BQk(),t.ynx(25,27),t.YNc(26,yr,4,3,"td",28),t.BQk(),t.YNc(27,Lr,1,3,"tr",29),t.YNc(28,Tr,1,0,"tr",30),t.YNc(29,br,1,0,"tr",31),t.qZA()()),2&n){const e=t.oxw();t.xp6(1),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.forwardingHistoryEvents),t.xp6(25),t.Q6J("matFooterRowDef",t.DdM(6,Ar)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns)("matHeaderRowDefSticky",e.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns)}}function Zr(n,a){if(1&n&&t._UZ(0,"mat-paginator",51),2&n){const e=t.oxw();t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let qt=(()=>{class n{constructor(e,i,o,s){this.logger=e,this.commonService=i,this.store=o,this.datePipe=s,this.eventsData=[],this.filterValue="",this.displayedColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["timestamp","amountIn","actions"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["timestamp","amountIn","fee","actions"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["timestamp","amountIn","amountOut","fee","actions"]):(this.flgSticky=!0,this.displayedColumns=["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee","actions"])}ngOnInit(){this.store.select(C.PP).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{0===this.eventsData.length&&(this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.eventsData.length>0&&this.sort&&this.paginator&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData))})}ngAfterViewInit(){this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:l.Bn.COMPLETED,action:"FetchPayments"},this.eventsData=e.eventsData.currentValue,e.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),e.filterValue&&!e.filterValue.firstChange&&this.applyFilter()}onForwardingEventClick(e,i){const o=[[{key:"paymentHash",value:e.paymentHash,title:"Payment Hash",width:100,type:l.Gi.STRING}],[{key:"timestamp",value:Math.round((e.timestamp||0)/1e3),title:"Date/Time",width:50,type:l.Gi.DATE_TIME},{key:"fee",value:(e.amountIn||0)-(e.amountOut||0),title:"Fee Earned (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"amountIn",value:e.amountIn,title:"Amount In (Sats)",width:50,type:l.Gi.NUMBER},{key:"amountOut",value:e.amountOut,title:"Amount Out (Sats)",width:50,type:l.Gi.NUMBER}],[{key:"fromChannelAlias",value:e.fromChannelAlias,title:"From Channel Alias",width:50,type:l.Gi.STRING},{key:"fromShortChannelId",value:e.fromShortChannelId,title:"From Short Channel ID",width:50,type:l.Gi.STRING}],[{key:"fromChannelId",value:e.fromChannelId,title:"From Channel Id",width:100,type:l.Gi.STRING}],[{key:"toChannelAlias",value:e.toChannelAlias,title:"To Channel Alias",width:50,type:l.Gi.STRING},{key:"toShortChannelId",value:e.toShortChannelId,title:"To Short Channel ID",width:50,type:l.Gi.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"To Channel Id",width:100,type:l.Gi.STRING}]];"payment-relayed"!==e.type&&(null==o||o.unshift([{key:"type",value:this.commonService.camelCase(e.type),title:"Relay Type",width:100,type:l.Gi.STRING}])),this.store.dispatch((0,Z.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"Event Information",message:o}}}))}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new r.by([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,o)=>"fee"===o?i.amountIn-i.amountOut:i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.forwardingHistoryEvents.filterPredicate=(i,o)=>{var s;return((i.timestamp?null===(s=this.datePipe.transform(new Date(i.timestamp),"dd/MMM/YYYY HH:mm"))||void 0===s?void 0:s.toLowerCase():"")+JSON.stringify(i).toLowerCase()).includes(o)},this.forwardingHistoryEvents.paginator=this.paginator,this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.filterValue.trim().toLowerCase())}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh),t.Y36(u.uU))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(e,i){if(1&e&&(t.Gf(A.YE,5),t.Gf(S.NW,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sort=o.first),t.iGM(o=t.CRH())&&(i.paginator=o.first)}},inputs:{eventsData:"eventsData",filterValue:"filterValue"},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Events")}]),t.TTD],decls:5,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex","30"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"dataSource"],["table",""],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","fromChannelAlias"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","toChannelAlias"],["matColumnDef","amountIn"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountOut"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","px-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["class","dot yellow","matTooltipPosition","right",3,"matTooltip","ngClass",4,"ngIf"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip","ngClass"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"px-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Kl,2,1,"div",1),t.YNc(2,jl,4,1,"div",2),t.YNc(3,Sr,30,7,"div",3),t.YNc(4,Zr,1,3,"mat-paginator",4),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf",""!==i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage))},directives:[p.xw,p.Wh,u.O5,p.yH,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,J.pW,r.BZ,A.YE,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,X.gM,u.mk,E.oO,u.PC,E.Zl,D.gD,D.$L,B.ey,F.lW,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[Wl,u.uU,u.JJ],styles:[".mat-column-fromAlias[_ngcontent-%COMP%]{padding-left:2rem;flex:1 1 20%;width:20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-toAlias[_ngcontent-%COMP%]{padding-left:1rem;flex:1 1 20%;width:20%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),n})();const wr=["tableIn"],Er=["tableOut"],Ir=["paginatorIn"],Or=["paginatorOut"];function Fr(n,a){if(1&n&&(t.TgZ(0,"div",3),t._uU(1),t.qZA()),2&n){const e=t.oxw();t.xp6(1),t.Oqu(e.errorMessage)}}function qr(n,a){1&n&&t._UZ(0,"mat-progress-bar",36)}function Rr(n,a){1&n&&(t.TgZ(0,"th",37),t._uU(1,"Channel ID"),t.qZA())}const nt=function(n){return{"max-width":n}};function Nr(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("ngStyle",t.VKq(2,nt,i.screenSize===i.screenSizeEnum.XS?"5rem":"10rem")),t.xp6(1),t.Oqu(e.channelId)}}function kr(n,a){1&n&&(t.TgZ(0,"th",37),t._uU(1,"Peer Alias"),t.qZA())}function Pr(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("ngStyle",t.VKq(2,nt,i.screenSize===i.screenSizeEnum.XS?"5rem":"10rem")),t.xp6(1),t.Oqu(e.alias)}}function Dr(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Events"),t.qZA())}function Ur(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.events))}}function Mr(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Amount (Sats)"),t.qZA())}function Jr(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalAmount))}}function Qr(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Fee (Sats)"),t.qZA())}function Yr(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalFee))}}function Hr(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No incoming routing peer available."),t.qZA())}function Br(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting incoming routing peers..."),t.qZA())}function zr(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function Vr(n,a){if(1&n&&(t.TgZ(0,"td",42),t.YNc(1,Hr,2,0,"p",43),t.YNc(2,Br,2,0,"p",43),t.YNc(3,zr,2,1,"p",43),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.RoutingPeersIncoming&&e.RoutingPeersIncoming.data)||(null==e.RoutingPeersIncoming||null==e.RoutingPeersIncoming.data?null:e.RoutingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.RoutingPeersIncoming&&e.RoutingPeersIncoming.data)||(null==e.RoutingPeersIncoming||null==e.RoutingPeersIncoming.data?null:e.RoutingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.RoutingPeersIncoming&&e.RoutingPeersIncoming.data)||(null==e.RoutingPeersIncoming||null==e.RoutingPeersIncoming.data?null:e.RoutingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}const Rt=function(n){return{"display-none":n}};function Gr(n,a){if(1&n&&t._UZ(0,"tr",44),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Rt,(null==e.RoutingPeersIncoming?null:e.RoutingPeersIncoming.data)&&(null==e.RoutingPeersIncoming||null==e.RoutingPeersIncoming.data?null:e.RoutingPeersIncoming.data.length)>0))}}function Xr(n,a){1&n&&t._UZ(0,"tr",45)}function $r(n,a){1&n&&t._UZ(0,"tr",46)}function Wr(n,a){1&n&&t._UZ(0,"mat-progress-bar",36)}function Kr(n,a){1&n&&(t.TgZ(0,"th",37),t._uU(1,"Channel ID"),t.qZA())}function jr(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("ngStyle",t.VKq(2,nt,i.screenSize===i.screenSizeEnum.XS?"5rem":"10rem")),t.xp6(1),t.Oqu(e.channelId)}}function tc(n,a){1&n&&(t.TgZ(0,"th",37),t._uU(1,"Peer Alias"),t.qZA())}function ec(n,a){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=a.$implicit,i=t.oxw(2);t.Q6J("ngStyle",t.VKq(2,nt,i.screenSize===i.screenSizeEnum.XS?"5rem":"10rem")),t.xp6(1),t.Oqu(e.alias)}}function nc(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Events"),t.qZA())}function ic(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.events))}}function ac(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Amount (Sats)"),t.qZA())}function oc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalAmount))}}function sc(n,a){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Fee (Sats)"),t.qZA())}function lc(n,a){if(1&n&&(t.TgZ(0,"td",40)(1,"span",41),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=a.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalFee))}}function rc(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"No outgoing routing peer available."),t.qZA())}function cc(n,a){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting outgoing routing peers..."),t.qZA())}function uc(n,a){if(1&n&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&n){const e=t.oxw(3);t.xp6(1),t.Oqu(e.errorMessage)}}function pc(n,a){if(1&n&&(t.TgZ(0,"td",42),t.YNc(1,rc,2,0,"p",43),t.YNc(2,cc,2,0,"p",43),t.YNc(3,uc,2,1,"p",43),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngIf",(!(null!=e.RoutingPeersOutgoing&&e.RoutingPeersOutgoing.data)||(null==e.RoutingPeersOutgoing||null==e.RoutingPeersOutgoing.data?null:e.RoutingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.RoutingPeersOutgoing&&e.RoutingPeersOutgoing.data)||(null==e.RoutingPeersOutgoing||null==e.RoutingPeersOutgoing.data?null:e.RoutingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("ngIf",(!(null!=e.RoutingPeersOutgoing&&e.RoutingPeersOutgoing.data)||(null==e.RoutingPeersOutgoing||null==e.RoutingPeersOutgoing.data?null:e.RoutingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function mc(n,a){if(1&n&&t._UZ(0,"tr",44),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Rt,(null==e.RoutingPeersOutgoing?null:e.RoutingPeersOutgoing.data)&&(null==e.RoutingPeersOutgoing||null==e.RoutingPeersOutgoing.data?null:e.RoutingPeersOutgoing.data.length)>0))}}function dc(n,a){1&n&&t._UZ(0,"tr",45)}function hc(n,a){1&n&&t._UZ(0,"tr",46)}const _c=function(n,a){return{"mt-2":n,"mt-1":a}},fc=function(){return["no_incoming_event"]},gc=function(n){return{"mt-2":n}},Cc=function(){return["no_outgoing_event"]};function xc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",4)(1,"div",5)(2,"div",6)(3,"div",7),t._uU(4,"Incoming"),t.qZA(),t.TgZ(5,"mat-form-field",8)(6,"input",9),t.NdJ("keyup",function(){return t.CHM(e),t.oxw().applyIncomingFilter()})("ngModelChange",function(o){return t.CHM(e),t.oxw().filterIn=o}),t.qZA()()(),t.TgZ(7,"div",10),t.YNc(8,qr,1,0,"mat-progress-bar",11),t.TgZ(9,"table",12,13),t.ynx(11,14),t.YNc(12,Rr,2,0,"th",15),t.YNc(13,Nr,2,4,"td",16),t.BQk(),t.ynx(14,17),t.YNc(15,kr,2,0,"th",15),t.YNc(16,Pr,2,4,"td",16),t.BQk(),t.ynx(17,18),t.YNc(18,Dr,2,0,"th",19),t.YNc(19,Ur,4,3,"td",20),t.BQk(),t.ynx(20,21),t.YNc(21,Mr,2,0,"th",19),t.YNc(22,Jr,4,3,"td",20),t.BQk(),t.ynx(23,22),t.YNc(24,Qr,2,0,"th",19),t.YNc(25,Yr,4,3,"td",20),t.BQk(),t.ynx(26,23),t.YNc(27,Vr,4,3,"td",24),t.BQk(),t.YNc(28,Gr,1,3,"tr",25),t.YNc(29,Xr,1,0,"tr",26),t.YNc(30,$r,1,0,"tr",27),t.qZA()(),t._UZ(31,"mat-paginator",28,29),t.qZA(),t.TgZ(33,"div",30)(34,"div",6)(35,"div",7),t._uU(36,"Outgoing"),t.qZA(),t.TgZ(37,"mat-form-field",8)(38,"input",9),t.NdJ("keyup",function(){return t.CHM(e),t.oxw().applyOutgoingFilter()})("ngModelChange",function(o){return t.CHM(e),t.oxw().filterOut=o}),t.qZA()()(),t.TgZ(39,"div",31),t.YNc(40,Wr,1,0,"mat-progress-bar",11),t.TgZ(41,"table",32,33),t.ynx(43,14),t.YNc(44,Kr,2,0,"th",15),t.YNc(45,jr,2,4,"td",16),t.BQk(),t.ynx(46,17),t.YNc(47,tc,2,0,"th",15),t.YNc(48,ec,2,4,"td",16),t.BQk(),t.ynx(49,18),t.YNc(50,nc,2,0,"th",19),t.YNc(51,ic,4,3,"td",20),t.BQk(),t.ynx(52,21),t.YNc(53,ac,2,0,"th",19),t.YNc(54,oc,4,3,"td",20),t.BQk(),t.ynx(55,22),t.YNc(56,sc,2,0,"th",19),t.YNc(57,lc,4,3,"td",20),t.BQk(),t.ynx(58,34),t.YNc(59,pc,4,3,"td",24),t.BQk(),t.YNc(60,mc,1,3,"tr",25),t.YNc(61,dc,1,0,"tr",26),t.YNc(62,hc,1,0,"tr",27),t.qZA(),t._UZ(63,"mat-paginator",28,35),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(2),t.Q6J("ngClass",t.WLB(22,_c,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.xp6(4),t.Q6J("ngModel",e.filterIn),t.xp6(2),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.RoutingPeersIncoming),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(25,fc)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns)("matHeaderRowDefSticky",e.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),t.xp6(3),t.Q6J("ngClass",t.VKq(26,gc,e.screenSize!==e.screenSizeEnum.LG)),t.xp6(4),t.Q6J("ngModel",e.filterOut),t.xp6(2),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("dataSource",e.RoutingPeersOutgoing),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(28,Cc)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns)("matHeaderRowDefSticky",e.flgSticky),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns),t.xp6(1),t.Q6J("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let yc=(()=>{class n{constructor(e,i,o){this.logger=e,this.commonService=i,this.store=o,this.routingPeersData=[],this.displayedColumns=[],this.flgSticky=!1,this.pageSize=l.IV,this.pageSizeOptions=l.TJ,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new d.x,new d.x,new d.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS?(this.flgSticky=!1,this.displayedColumns=["alias","totalFee"]):this.screenSize===l.cu.SM?(this.flgSticky=!1,this.displayedColumns=["alias","events","totalFee"]):this.screenSize===l.cu.MD?(this.flgSticky=!1,this.displayedColumns=["alias","events","totalAmount","totalFee"]):(this.flgSticky=!0,this.displayedColumns=["channelId","alias","events","totalAmount","totalFee"])}ngOnInit(){this.store.select(C.PP).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(e)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData)}loadRoutingPeersTable(e){if(e.length>0){const i=this.groupRoutingPeers(e);this.RoutingPeersIncoming=new r.by(i[0]),this.RoutingPeersIncoming.sort=this.sortIn,this.RoutingPeersIncoming.filterPredicate=(o,s)=>JSON.stringify(o).toLowerCase().includes(s),this.RoutingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.RoutingPeersIncoming),this.RoutingPeersOutgoing=new r.by(i[1]),this.RoutingPeersOutgoing.sort=this.sortOut,this.RoutingPeersOutgoing.filterPredicate=(o,s)=>JSON.stringify(o).toLowerCase().includes(s),this.RoutingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.RoutingPeersOutgoing)}else this.RoutingPeersIncoming=new r.by([]),this.RoutingPeersOutgoing=new r.by([]);this.applyIncomingFilter(),this.applyOutgoingFilter()}groupRoutingPeers(e){const i=[],o=[];return e.forEach(s=>{const c=i.find(g=>g.channelId===s.fromChannelId),h=o.find(g=>g.channelId===s.toChannelId);c?(c.events++,c.totalAmount=+c.totalAmount+ +s.amountIn,c.totalFee=s.amountIn-s.amountOut+ +c.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),h?(h.events++,h.totalAmount=+h.totalAmount+ +s.amountOut,h.totalFee=s.amountIn-s.amountOut+ +h.totalFee):o.push({channelId:s.toChannelId,alias:s.toChannelAlias,events:1,totalAmount:+s.amountOut,totalFee:s.amountIn-s.amountOut})}),[this.commonService.sortDescByKey(i,"totalFee"),this.commonService.sortDescByKey(o,"totalFee")]}applyIncomingFilter(){this.RoutingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.RoutingPeersOutgoing.filter=this.filterOut.toLowerCase()}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(e,i){if(1&e&&(t.Gf(wr,5,A.YE),t.Gf(Er,5,A.YE),t.Gf(Ir,5),t.Gf(Or,5)),2&e){let o;t.iGM(o=t.CRH())&&(i.sortIn=o.first),t.iGM(o=t.CRH())&&(i.sortOut=o.first),t.iGM(o=t.CRH())&&(i.paginatorIn=o.first),t.iGM(o=t.CRH())&&(i.paginatorOut=o.first)}},features:[t._Bn([{provide:S.ye,useValue:(0,l.pt)("Peers")}])],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["tableIn",""],["matColumnDef","channelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","totalAmount"],["matColumnDef","totalFee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["paginatorIn",""],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch",1,"mb-4"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["tableOut",""],["matColumnDef","no_outgoing_event"],["paginatorOut",""],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-cell",""],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t.YNc(1,Fr,2,1,"div",1),t.YNc(2,xc,65,29,"div",2),t.qZA()),2&e&&(t.xp6(1),t.Q6J("ngIf",""!==i.errorMessage),t.xp6(1),t.Q6J("ngIf",""===i.errorMessage))},directives:[p.xw,p.Wh,u.O5,p.yH,u.mk,E.oO,y.KE,M.Nt,m.Fj,m.JJ,m.On,H.$V,J.pW,r.BZ,A.YE,r.w1,r.fO,r.ge,A.nU,r.Dz,r.ev,u.PC,E.Zl,r.mD,r.yh,r.Ke,r.Q2,r.as,r.XQ,r.nj,r.Gk,S.NW],pipes:[u.JJ],styles:[".mat-column-channelId[_ngcontent-%COMP%], .mat-column-alias[_ngcontent-%COMP%]{flex:1 1 10%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]}),n})();function vc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",7),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let Lc=(()=>{class n{constructor(e){this.router=e,this.faChartBar=L.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new d.x,new d.x,new d.x,new d.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-reports"]],decls:10,vars:2,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Reports"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),t.YNc(8,vc,2,3,"div",6),t.qZA(),t._UZ(9,"router-outlet"),t.qZA()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faChartBar),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[p.xw,p.Wh,q.BN,b.a8,b.dn,P.BU,u.sg,P.Nj,x.rH,x.lC],styles:[""]}),n})();var Nt=f(7772),kt=f(7671),Pt=f(1210);function Tc(n,a){if(1&n&&(t.TgZ(0,"div",13),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=t.oxw();t.Q6J("@fadeIn",e.totalFeeSat),t.xp6(1),t.AsE("",t.xi3(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.lcZ(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function bc(n,a){1&n&&(t.TgZ(0,"div",14),t._uU(1,"No routing report for the selected period"),t.qZA())}function Ac(n,a){if(1&n&&(t.TgZ(0,"span")(1,"span",17),t._uU(2),t.ALo(3,"number"),t.qZA(),t.TgZ(4,"span",17),t._uU(5),t.ALo(6,"number"),t.qZA()()),2&n){const e=a.model,i=t.oxw(2);t.xp6(2),t.hij("Events: ",t.lcZ(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),t.xp6(3),t.hij("Fee: ",t.xi3(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function Sc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"ngx-charts-bar-vertical",15),t.NdJ("select",function(o){return t.CHM(e),t.oxw().onChartBarSelected(o)})("mouseup",function(o){return t.CHM(e),t.oxw().onChartMouseUp(o)}),t.YNc(1,Ac,7,7,"ng-template",null,16,t.W1O),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function Zc(n,a){if(1&n&&t._UZ(0,"rtl-ecl-forwarding-history",18),2&n){const e=t.oxw();t.Q6J("eventsData",e.filteredEventsBySelectedPeriod)("filterValue",e.eventFilterValue)}}let wc=(()=>{class n{constructor(e,i,o){this.logger=e,this.commonService=i,this.store=o,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=l.Xr,this.selReportBy=l.Xr.FEES,this.totalFeeSat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new d.x,new d.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[0])).subscribe(e=>{this.events=e.payments&&e.payments.relayed?e.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(e)}),this.commonService.containerSizeUpdated.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=e.width/10;break;case l.cu.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(e,i){const o=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()+" To "+i.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(c=>{Math.floor((c.timestamp||0)/1e3)>=o&&Math.floor((c.timestamp||0)/1e3)0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===l.op[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){var i,o;const s=Math.round(e.getTime()/1e3),c=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.op[1]){for(let h=0;h<12;h++)c.push({name:l.gg[h].name,value:0,extra:{totalEvents:0}});null===(i=this.filteredEventsBySelectedPeriod)||void 0===i||i.map(h=>{const g=new Date(h.timestamp||0).getMonth();return c[g].value=c[g].value+((h.amountIn||0)-(h.amountOut||0)),c[g].extra.totalEvents=c[g].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let h=0;h{const g=Math.floor((Math.floor((h.timestamp||0)/1e3)-s)/this.secondsInADay);return c[g].value=c[g].value+((h.amountIn||0)-(h.amountOut||0)),c[g].extra.totalEvents=c[g].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),c}prepareEventsReport(e){var i,o;const s=Math.round(e.getTime()/1e3),c=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.op[1]){for(let h=0;h<12;h++)c.push({name:l.gg[h].name,value:0,extra:{totalFees:0}});null===(i=this.filteredEventsBySelectedPeriod)||void 0===i||i.map(h=>{const g=new Date(h.timestamp||0).getMonth();return c[g].value=c[g].value+1,c[g].extra.totalFees=c[g].extra.totalFees+((h.amountIn||0)-(h.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let h=0;h{const g=Math.floor((Math.floor((h.timestamp||0)/1e3)-s)/this.secondsInADay);return c[g].value=c[g].value+1,c[g].extra.totalFees=c[g].extra.totalFees+((h.amountIn||0)-(h.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((h.amountIn||0)-(h.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),c}onSelectionChange(e){const i=e.selDate.getMonth(),o=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,i,1,0,0,0),this.endDate=new Date(o,i,this.getMonthDays(i,o),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.gg[e].days+1:l.gg[e].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(e,i){1&e&&t.NdJ("mouseup",function(s){return i.onChartMouseUp(s)})},decls:17,vars:7,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModel","ngModelChange","change"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],[3,"eventsData","filterValue",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"eventsData","filterValue"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),t.NdJ("stepChanged",function(s){return i.onSelectionChange(s)}),t.qZA(),t.TgZ(2,"div",2)(3,"mat-radio-group",3),t.NdJ("ngModelChange",function(s){return i.selReportBy=s})("change",function(){return i.onSelReportByChange()}),t.TgZ(4,"span",4),t._uU(5,"Report By: "),t.qZA(),t.TgZ(6,"mat-radio-button",5),t._uU(7,"Fees"),t.qZA(),t.TgZ(8,"mat-radio-button",6),t._uU(9,"Events"),t.qZA()()(),t.TgZ(10,"div",7),t.YNc(11,Tc,4,8,"div",8),t.YNc(12,bc,2,0,"div",9),t.TgZ(13,"div",10),t.YNc(14,Sc,3,11,"ngx-charts-bar-vertical",11),t.qZA(),t.TgZ(15,"div",10),t.YNc(16,Zc,1,2,"rtl-ecl-forwarding-history",12),t.qZA()()()),2&e&&(t.xp6(3),t.Q6J("ngModel",i.selReportBy),t.xp6(3),t.s9C("value",i.reportBy.FEES),t.xp6(2),t.s9C("value",i.reportBy.EVENTS),t.xp6(3),t.Q6J("ngIf",i.routingReportData.length>0&&i.filteredEventsBySelectedPeriod.length>0),t.xp6(1),t.Q6J("ngIf",i.routingReportData.length<=0||i.filteredEventsBySelectedPeriod.length<=0),t.xp6(2),t.Q6J("ngIf",i.routingReportData.length>0&&i.filteredEventsBySelectedPeriod.length>0),t.xp6(2),t.Q6J("ngIf",i.filteredEventsBySelectedPeriod.length>0))},directives:[p.xw,p.Wh,p.yH,kt.D,et.VQ,m.JJ,m.On,et.U0,u.O5,Pt.K$,qt],pipes:[u.JJ],styles:[""],data:{animation:[Nt.J]}}),n})();var Ec=f(165);function Ic(n,a){if(1&n&&(t.TgZ(0,"div",10),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.AsE(" Paid ",t.xi3(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.lcZ(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Oc(n,a){if(1&n&&(t.TgZ(0,"div",10),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.AsE(" Received ",t.xi3(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.lcZ(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Fc(n,a){if(1&n&&(t.TgZ(0,"div",8),t.YNc(1,Ic,4,7,"div",9),t.YNc(2,Oc,4,7,"div",9),t.qZA()),2&n){const e=t.oxw();t.Q6J("@fadeIn",e.transactionsReportSummary),t.xp6(1),t.Q6J("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.xp6(1),t.Q6J("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function qc(n,a){1&n&&(t.TgZ(0,"div",11),t._uU(1,"No transactions report for the selected period"),t.qZA())}function Rc(n,a){if(1&n&&(t.TgZ(0,"span",14),t._uU(1),t.ALo(2,"number"),t.ALo(3,"number"),t.qZA()),2&n){const e=a.model;t.xp6(1),t.HOy("",e.name,": ",t.xi3(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.lcZ(3,7,(null==e.extra?null:e.extra.total)||0),"")}}function Nc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"ngx-charts-bar-vertical-2d",12),t.NdJ("select",function(o){return t.CHM(e),t.oxw().onChartBarSelected(o)})("mouseup",function(o){return t.CHM(e),t.oxw().onChartMouseUp(o)}),t.YNc(1,Rc,4,9,"ng-template",null,13,t.W1O),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:8)}}function kc(n,a){if(1&n&&t._UZ(0,"rtl-transactions-report-table",15),2&n){const e=t.oxw();t.Q6J("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("filterValue",e.transactionFilterValue)}}let Pc=(()=>{class n{constructor(e,i,o){this.logger=e,this.commonService=i,this.store=o,this.scrollRanges=l.op,this.reportPeriod=l.op[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new d.x,new d.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(C.PP).pipe((0,_.R)(this.unSubs[0]),(0,it.M)(this.store.select(C.Ef))).subscribe(([e,i])=>{this.payments=e.payments.sent?e.payments.sent:[],this.invoices=i.invoices?i.invoices:[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData())}),this.commonService.containerSizeUpdated.pipe((0,_.R)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.cu.MD:this.screenPaddingX=e.width/10;break;case l.cu.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(e){"svg"===e.srcElement.tagName&&e.srcElement.classList.length>0&&"ngx-charts"===e.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(e){this.transactionFilterValue=this.reportPeriod===l.op[1]?e.series.toString()+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+l.gg[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,i){var o,s;const c=Math.round(e.getTime()/1e3),h=Math.round(i.getTime()/1e3),g=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const T=null===(o=this.payments)||void 0===o?void 0:o.filter(v=>v.firstPartTimestamp&&Math.floor(v.firstPartTimestamp/1e3)>=c&&Math.floor(v.firstPartTimestamp/1e3)"received"===v.status&&v.timestamp&&v.timestamp>=c&&v.timestamp{const O=new Date(v.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(v.recipientAmount||0),g[O].series[0].value=g[O].series[0].value+v.recipientAmount,g[O].series[0].extra.total=g[O].series[0].extra.total+1,this.transactionsReportSummary}),null==Y||Y.map(v=>{const O=new Date(1e3*(v.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(v.amountSettled||0),g[O].series[1].value=g[O].series[1].value+v.amountSettled,g[O].series[1].extra.total=g[O].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let v=0;v{const O=Math.floor((Math.floor((v.firstPartTimestamp||0)/1e3)-c)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(v.recipientAmount||0),g[O].series[0].value=g[O].series[0].value+v.recipientAmount,g[O].series[0].extra.total=g[O].series[0].extra.total+1,this.transactionsReportSummary}),null==Y||Y.map(v=>{const O=Math.floor(((v.timestamp||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(v.amountSettled||0),g[O].series[1].value=g[O].series[1].value+v.amountSettled,g[O].series[1].extra.total=g[O].series[1].extra.total+1,this.transactionsReportSummary})}return g}prepareTableData(){var e;return null===(e=this.transactionsReportData)||void 0===e?void 0:e.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(e){const i=e.selDate.getMonth(),o=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,i,1,0,0,0),this.endDate=new Date(o,i,this.getMonthDays(i,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.gg[e].days+1:l.gg[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(R.mQ),t.Y36(N.v),t.Y36(w.yh))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(e,i){1&e&&t.NdJ("mouseup",function(s){return i.onChartMouseUp(s)})},decls:9,vars:4,consts:[["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"dataList","dataRange","filterValue",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup"],["tooltipTemplate",""],[1,"tooltip-label"],[3,"dataList","dataRange","filterValue"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),t.NdJ("stepChanged",function(s){return i.onSelectionChange(s)}),t.qZA(),t.TgZ(2,"div",2),t.YNc(3,Fc,3,3,"div",3),t.YNc(4,qc,2,0,"div",4),t.TgZ(5,"div",5),t.YNc(6,Nc,3,13,"ngx-charts-bar-vertical-2d",6),t.qZA(),t.TgZ(7,"div",5),t.YNc(8,kc,1,3,"rtl-transactions-report-table",7),t.qZA()()()),2&e&&(t.xp6(3),t.Q6J("ngIf",i.transactionsNonZeroReportData.length>0),t.xp6(1),t.Q6J("ngIf",i.transactionsNonZeroReportData.length<=0),t.xp6(2),t.Q6J("ngIf",i.transactionsNonZeroReportData.length>0),t.xp6(2),t.Q6J("ngIf",i.transactionsNonZeroReportData.length>0))},directives:[p.xw,p.Wh,p.yH,kt.D,u.O5,Pt.H5,Ec.g],pipes:[u.JJ],styles:[""],data:{animation:[Nt.J]}}),n})();var I=f(1643),Dc=f(9442);function Uc(n,a){if(1&n){const e=t.EpF();t.TgZ(0,"div",8),t.NdJ("click",function(){const s=t.CHM(e).$implicit;return t.oxw().activeLink=s.link}),t._uU(1),t.qZA()}if(2&n){const e=a.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}const Qc=x.Bz.forChild([{path:"",component:mt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ki,canActivate:[I.fY]},{path:"onchain",component:Ca,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:Va,canActivate:[I.fY]},{path:"send",component:Ga,canActivate:[I.fY]}]},{path:"connections",component:va,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:mo,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:ts,canActivate:[I.fY]},{path:"pending",component:Ls,canActivate:[I.fY]},{path:"inactive",component:$l,canActivate:[I.fY]}]},{path:"peers",component:ll,data:{sweepAll:!1},canActivate:[I.fY]}]},{path:"transactions",component:Ta,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:xt,canActivate:[I.fY]},{path:"invoices",component:gt,canActivate:[I.fY]}]},{path:"routing",component:Aa,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:qt,canActivate:[I.fY]},{path:"peers",component:yc,canActivate:[I.fY]}]},{path:"reports",component:Lc,canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:wc,canActivate:[I.fY]},{path:"transactions",component:Pc,canActivate:[I.fY]}]},{path:"graph",component:(()=>{class n{constructor(e){this.router=e,this.faSearch=L.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new d.x,new d.x,new d.x,new d.x]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,_.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof x.Av)).subscribe({next:i=>{const o=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}}return n.\u0275fac=function(e){return new(e||n)(t.Y36(x.F0))},n.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-graph"]],decls:11,vars:2,consts:[["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(e,i){1&e&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Graph Lookups"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),t.YNc(8,Uc,2,3,"div",6),t.qZA(),t.TgZ(9,"div",7),t._UZ(10,"router-outlet"),t.qZA()()()()),2&e&&(t.xp6(1),t.Q6J("icon",i.faSearch),t.xp6(7),t.Q6J("ngForOf",i.links))},directives:[p.xw,p.Wh,q.BN,b.a8,b.dn,P.BU,u.sg,P.Nj,x.rH,p.yH,x.lC],styles:[""]}),n})(),canActivate:[I.fY],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Ba,canActivate:[I.fY]},{path:"queryroutes",component:Ll,canActivate:[I.fY]}]},{path:"**",component:Dc.w}]}]);var Yc=f(8750);let Hc=(()=>{class n{}return n.\u0275fac=function(e){return new(e||n)},n.\u0275mod=t.oAB({type:n,bootstrap:[mt]}),n.\u0275inj=t.cJS({providers:[I.fY],imports:[[u.ez,Yc.m,Qc]]}),n})()}}]); \ No newline at end of file diff --git a/frontend/assets/images/favicon-dark/site.webmanifest b/frontend/assets/images/favicon-dark/site.webmanifest index b20abb7c..ff2b9d17 100644 --- a/frontend/assets/images/favicon-dark/site.webmanifest +++ b/frontend/assets/images/favicon-dark/site.webmanifest @@ -3,12 +3,12 @@ "short_name": "", "icons": [ { - "src": "/android-chrome-192x192.png", + "src": "/rtl/assets/images/favicon-dark/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-512x512.png", + "src": "/rtl/assets/images/favicon-dark/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } diff --git a/frontend/assets/images/favicon-light/site.webmanifest b/frontend/assets/images/favicon-light/site.webmanifest index b20abb7c..5ca3c0ce 100644 --- a/frontend/assets/images/favicon-light/site.webmanifest +++ b/frontend/assets/images/favicon-light/site.webmanifest @@ -3,12 +3,12 @@ "short_name": "", "icons": [ { - "src": "/android-chrome-192x192.png", + "src": "/rtl/assets/images/favicon-light/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-512x512.png", + "src": "/rtl/assets/images/favicon-light/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } diff --git a/frontend/index.html b/frontend/index.html index 33b3e7d9..59b3de98 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -10,9 +10,9 @@ - + - + \ No newline at end of file diff --git a/frontend/main.41600bb9f8f7e3c5.js b/frontend/main.41600bb9f8f7e3c5.js new file mode 100644 index 00000000..fbf7af76 --- /dev/null +++ b/frontend/main.41600bb9f8f7e3c5.js @@ -0,0 +1 @@ +var ES=Object.defineProperty,TS=Object.defineProperties,AS=Object.getOwnPropertyDescriptors,J9=Object.getOwnPropertySymbols,LS=Object.prototype.hasOwnProperty,DS=Object.prototype.propertyIsEnumerable,X9=(Be,K,p)=>K in Be?ES(Be,K,{enumerable:!0,configurable:!0,writable:!0,value:p}):Be[K]=p,to=(Be,K)=>{for(var p in K||(K={}))LS.call(K,p)&&X9(Be,p,K[p]);if(J9)for(var p of J9(K))DS.call(K,p)&&X9(Be,p,K[p]);return Be},$9=(Be,K)=>TS(Be,AS(K));(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[179],{429:(Be,K,p)=>{"use strict";p.d(K,{$A:()=>X,$W:()=>ue,BL:()=>V,CN:()=>h,CX:()=>L,EG:()=>E,EK:()=>x,El:()=>re,HI:()=>r,HJ:()=>S,I8:()=>k,JK:()=>tt,Lu:()=>B,Ly:()=>ce,Ni:()=>f,Nr:()=>Ve,OG:()=>N,QJ:()=>Ee,RX:()=>D,Rd:()=>Me,SN:()=>w,Sf:()=>H,TM:()=>c,UH:()=>Te,UR:()=>I,VD:()=>W,WM:()=>j,WO:()=>v,Wi:()=>Oe,X3:()=>q,YP:()=>J,YX:()=>_,Z8:()=>ie,ZH:()=>Q,Zu:()=>Ce,_9:()=>Zt,_E:()=>ae,aL:()=>Ie,as:()=>y,cQ:()=>i,d7:()=>di,dh:()=>fe,e9:()=>Yt,eF:()=>R,eM:()=>xe,en:()=>ui,g3:()=>Z,g6:()=>ut,i9:()=>ft,kL:()=>T,n7:()=>he,oV:()=>u,oo:()=>a,pW:()=>n,pd:()=>d,u0:()=>Pe,uT:()=>Dt,v_:()=>be,wD:()=>C,xH:()=>M,xS:()=>Y,yl:()=>te,z:()=>_e});var t=p(5620),e=p(7731);const f=(0,t.PH)(e.AB.UPDATE_API_CALL_STATUS_CLN,(0,t.Ky)()),M=(0,t.PH)(e.AB.RESET_CLN_STORE,(0,t.Ky)()),a=(0,t.PH)(e.AB.SET_CHILD_NODE_SETTINGS_CLN,(0,t.Ky)()),C=(0,t.PH)(e.AB.FETCH_PAGE_SETTINGS_CLN),d=(0,t.PH)(e.AB.SET_PAGE_SETTINGS_CLN,(0,t.Ky)()),R=(0,t.PH)(e.AB.SAVE_PAGE_SETTINGS_CLN,(0,t.Ky)()),h=(0,t.PH)(e.AB.FETCH_INFO_CLN,(0,t.Ky)()),L=(0,t.PH)(e.AB.SET_INFO_CLN,(0,t.Ky)()),w=(0,t.PH)(e.AB.FETCH_FEES_CLN),D=(0,t.PH)(e.AB.SET_FEES_CLN,(0,t.Ky)()),S=(0,t.PH)(e.AB.FETCH_FEE_RATES_CLN,(0,t.Ky)()),k=(0,t.PH)(e.AB.SET_FEE_RATES_CLN,(0,t.Ky)()),E=(0,t.PH)(e.AB.FETCH_BALANCE_CLN),B=(0,t.PH)(e.AB.SET_BALANCE_CLN,(0,t.Ky)()),Z=(0,t.PH)(e.AB.FETCH_LOCAL_REMOTE_BALANCE_CLN),Y=(0,t.PH)(e.AB.SET_LOCAL_REMOTE_BALANCE_CLN,(0,t.Ky)()),ae=(0,t.PH)(e.AB.GET_NEW_ADDRESS_CLN,(0,t.Ky)()),ue=((0,t.PH)(e.AB.SET_NEW_ADDRESS_CLN,(0,t.Ky)()),(0,t.PH)(e.AB.FETCH_PEERS_CLN)),ie=(0,t.PH)(e.AB.SET_PEERS_CLN,(0,t.Ky)()),re=(0,t.PH)(e.AB.SAVE_NEW_PEER_CLN,(0,t.Ky)()),q=((0,t.PH)(e.AB.NEWLY_ADDED_PEER_CLN,(0,t.Ky)()),(0,t.PH)(e.AB.ADD_PEER_CLN,(0,t.Ky)())),_e=(0,t.PH)(e.AB.DETACH_PEER_CLN,(0,t.Ky)()),x=(0,t.PH)(e.AB.REMOVE_PEER_CLN,(0,t.Ky)()),i=(0,t.PH)(e.AB.FETCH_PAYMENTS_CLN),r=(0,t.PH)(e.AB.SET_PAYMENTS_CLN,(0,t.Ky)()),u=(0,t.PH)(e.AB.SEND_PAYMENT_CLN,(0,t.Ky)()),c=(0,t.PH)(e.AB.SEND_PAYMENT_STATUS_CLN,(0,t.Ky)()),v=(0,t.PH)(e.AB.GET_QUERY_ROUTES_CLN,(0,t.Ky)()),T=(0,t.PH)(e.AB.SET_QUERY_ROUTES_CLN,(0,t.Ky)()),I=(0,t.PH)(e.AB.FETCH_CHANNELS_CLN),y=(0,t.PH)(e.AB.SET_CHANNELS_CLN,(0,t.Ky)()),n=(0,t.PH)(e.AB.UPDATE_CHANNEL_CLN,(0,t.Ky)()),_=(0,t.PH)(e.AB.SAVE_NEW_CHANNEL_CLN,(0,t.Ky)()),V=(0,t.PH)(e.AB.CLOSE_CHANNEL_CLN,(0,t.Ky)()),N=(0,t.PH)(e.AB.REMOVE_CHANNEL_CLN,(0,t.Ky)()),H=(0,t.PH)(e.AB.PEER_LOOKUP_CLN,(0,t.Ky)()),X=(0,t.PH)(e.AB.CHANNEL_LOOKUP_CLN,(0,t.Ky)()),he=(0,t.PH)(e.AB.INVOICE_LOOKUP_CLN,(0,t.Ky)()),be=(0,t.PH)(e.AB.SET_LOOKUP_CLN,(0,t.Ky)()),Pe=(0,t.PH)(e.AB.GET_FORWARDING_HISTORY_CLN,(0,t.Ky)()),Ee=(0,t.PH)(e.AB.SET_FORWARDING_HISTORY_CLN,(0,t.Ky)()),j=(0,t.PH)(e.AB.FETCH_INVOICES_CLN,(0,t.Ky)()),Ve=(0,t.PH)(e.AB.SET_INVOICES_CLN,(0,t.Ky)()),Me=(0,t.PH)(e.AB.SAVE_NEW_INVOICE_CLN,(0,t.Ky)()),J=(0,t.PH)(e.AB.ADD_INVOICE_CLN,(0,t.Ky)()),Ie=(0,t.PH)(e.AB.UPDATE_INVOICE_CLN,(0,t.Ky)()),ut=(0,t.PH)(e.AB.DELETE_EXPIRED_INVOICE_CLN,(0,t.Ky)()),Oe=(0,t.PH)(e.AB.SET_CHANNEL_TRANSACTION_CLN,(0,t.Ky)()),ce=((0,t.PH)(e.AB.SET_CHANNEL_TRANSACTION_RES_CLN,(0,t.Ky)()),(0,t.PH)(e.AB.FETCH_UTXOS_CLN)),Te=(0,t.PH)(e.AB.SET_UTXOS_CLN,(0,t.Ky)()),xe=(0,t.PH)(e.AB.FETCH_OFFER_INVOICE_CLN,(0,t.Ky)()),W=(0,t.PH)(e.AB.SET_OFFER_INVOICE_CLN,(0,t.Ky)()),te=(0,t.PH)(e.AB.FETCH_OFFERS_CLN),Ce=(0,t.PH)(e.AB.SET_OFFERS_CLN,(0,t.Ky)()),fe=(0,t.PH)(e.AB.SAVE_NEW_OFFER_CLN,(0,t.Ky)()),Q=(0,t.PH)(e.AB.ADD_OFFER_CLN,(0,t.Ky)()),ft=(0,t.PH)(e.AB.DISABLE_OFFER_CLN,(0,t.Ky)()),tt=(0,t.PH)(e.AB.UPDATE_OFFER_CLN,(0,t.Ky)()),Dt=(0,t.PH)(e.AB.FETCH_OFFER_BOOKMARKS_CLN),di=(0,t.PH)(e.AB.SET_OFFER_BOOKMARKS_CLN,(0,t.Ky)()),Yt=(0,t.PH)(e.AB.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,t.Ky)()),Zt=(0,t.PH)(e.AB.DELETE_OFFER_BOOKMARK_CLN,(0,t.Ky)()),ui=(0,t.PH)(e.AB.REMOVE_OFFER_BOOKMARK_CLN,(0,t.Ky)())},4947:(Be,K,p)=>{"use strict";p.d(K,{J:()=>q});var t=p(6642),e=p(7579),f=p(9646),M=p(5577),a=p(2722),C=p(4004),d=p(262),R=p(2340),h=p(1786),L=p(5566),w=p(7731),D=p(7861),S=p(429),k=p(9828),E=p(1462),B=p(5e3),Z=p(8138),Y=p(5620),ae=p(5986),ee=p(62),ue=p(5043),ie=p(1402),re=p(7998),ge=p(9808);let q=(()=>{class _e{constructor(i,r,u,c,v,T,I,y,n){this.actions=i,this.httpClient=r,this.store=u,this.sessionService=c,this.commonService=v,this.logger=T,this.router=I,this.wsService=y,this.location=n,this.CHILD_API_URL=R.T5+"/cln",this.flgInitialized=!1,this.unSubs=[new e.x,new e.x,new e.x],this.infoFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_INFO_CLN),(0,M.z)(_=>(this.flgInitialized=!1,this.store.dispatch((0,D.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,S.Ni)({payload:{action:"FetchInfo",status:w.Bn.INITIATED}})),this.store.dispatch((0,D.ac)({payload:w.m6.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+R.NZ.GETINFO_API).pipe((0,a.R)(this.actions.pipe((0,t.l4)(w.pg.SET_SELECTED_NODE))),(0,C.U)(V=>(this.logger.info(V),V.chains&&V.chains.length&&V.chains[0]&&"object"==typeof V.chains[0]&&V.chains[0].hasOwnProperty("chain")&&(null==V?void 0:V.chains[0].chain)&&(null==V?void 0:V.chains[0].chain.toLowerCase().indexOf("bitcoin"))<0&&(null==V?void 0:V.chains[0].chain.toLowerCase().indexOf("liquid"))<0?(this.store.dispatch((0,S.Ni)({payload:{action:"FetchInfo",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.GET_NODE_INFO})),this.store.dispatch((0,D.ts)()),setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{type:w.n_.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:w.pg.LOGOUT}):(this.initializeRemainingData(V,_.payload.loadPage),this.store.dispatch((0,S.Ni)({payload:{action:"FetchInfo",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.GET_NODE_INFO})),{type:w.AB.SET_INFO_CLN,payload:V||{}}))),(0,d.K)(V=>{const N=this.commonService.extractErrorCode(V),H="ETIMEDOUT"===N?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(V);return this.router.navigate(["/error"],{state:{errorCode:N,errorMessage:H}}),this.handleErrorWithoutAlert("FetchInfo",w.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:N,error:H}),(0,f.of)({type:w.pg.VOID})})))))),this.fetchFeesCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_FEES_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchFees",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.FEES_API))),(0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchFees",status:w.Bn.COMPLETED}})),{type:w.AB.SET_FEES_CLN,payload:_||{}})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchFees",w.m6.NO_SPINNER,"Fetching Fees Failed.",_),(0,f.of)({type:w.pg.VOID}))))),this.fetchFeeRatesCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_FEE_RATES_CLN),(0,M.z)(_=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchFeeRates"+_.payload,status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.NETWORK_API+"/feeRates/"+_.payload).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"FetchFeeRates"+_.payload,status:w.Bn.COMPLETED}})),{type:w.AB.SET_FEE_RATES_CLN,payload:V||{}})),(0,d.K)(V=>(this.handleErrorWithoutAlert("FetchFeeRates"+_.payload,w.m6.NO_SPINNER,"Fetching Fee Rates Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.fetchBalanceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_BALANCE_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchBalance",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.BALANCE_API))),(0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchBalance",status:w.Bn.COMPLETED}})),{type:w.AB.SET_BALANCE_CLN,payload:_||{}})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchBalance",w.m6.NO_SPINNER,"Fetching Balances Failed.",_),(0,f.of)({type:w.pg.VOID}))))),this.fetchLocalRemoteBalanceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_LOCAL_REMOTE_BALANCE_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchLocalRemoteBalance",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.CHANNELS_API+"/localRemoteBalance"))),(0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchLocalRemoteBalance",status:w.Bn.COMPLETED}})),{type:w.AB.SET_LOCAL_REMOTE_BALANCE_CLN,payload:_||{}})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchLocalRemoteBalance",w.m6.NO_SPINNER,"Fetching Balances Failed.",_),(0,f.of)({type:w.pg.VOID}))))),this.getNewAddressCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.GET_NEW_ADDRESS_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+R.NZ.ON_CHAIN_API+"?type="+_.payload.addressCode).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,D.uO)({payload:w.m6.GENERATE_NEW_ADDRESS})),{type:w.AB.SET_NEW_ADDRESS_CLN,payload:V&&V.address?V.address:{}})),(0,d.K)(V=>(this.handleErrorWithAlert("GenerateNewAddress",w.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+R.NZ.ON_CHAIN_API+"?type="+_.payload.addressId,V),(0,f.of)({type:w.pg.VOID})))))))),this.setNewAddressCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_NEW_ADDRESS_CLN),(0,C.U)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.peersFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_PEERS_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchPeers",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.PEERS_API).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchPeers",status:w.Bn.COMPLETED}})),{type:w.AB.SET_PEERS_CLN,payload:_||[]})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchPeers",w.m6.NO_SPINNER,"Fetching Peers Failed.",_),(0,f.of)({type:w.pg.VOID})))))))),this.saveNewPeerCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_PEER_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.CONNECT_PEER})),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewPeer",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.PEERS_API,{id:_.payload.id}).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewPeer",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.CONNECT_PEER})),this.store.dispatch((0,S.Z8)({payload:V||[]})),{type:w.AB.NEWLY_ADDED_PEER_CLN,payload:{peer:V.find(N=>0===_.payload.id.indexOf(N.id?N.id:""))}})),(0,d.K)(V=>(this.handleErrorWithoutAlert("SaveNewPeer",w.m6.CONNECT_PEER,"Peer Connection Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.detachPeerCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DETACH_PEER_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.PEERS_API+"/"+_.payload.id+"?force="+_.payload.force).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,D.uO)({payload:w.m6.DISCONNECT_PEER})),this.store.dispatch((0,D.jW)({payload:"Peer Disconnected Successfully!"})),{type:w.AB.REMOVE_PEER_CLN,payload:{id:_.payload.id}})),(0,d.K)(V=>(this.handleErrorWithAlert("PeerDisconnect",w.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+R.NZ.PEERS_API+"/"+_.payload.id,V),(0,f.of)({type:w.pg.VOID})))))))),this.channelsFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_CHANNELS_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchChannels",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.CHANNELS_API+"/listChannels"))),(0,C.U)(_=>{this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchChannels",status:w.Bn.COMPLETED}}));const V={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return _.forEach(N=>{"CHANNELD_NORMAL"===N.state?N.connected?V.activeChannels.push(N):V.inactiveChannels.push(N):V.pendingChannels.push(N)}),{type:w.AB.SET_CHANNELS_CLN,payload:V}}),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchChannels",w.m6.NO_SPINNER,"Fetching Channels Failed.",_),(0,f.of)({type:w.pg.VOID}))))),this.openNewChannelCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_CHANNEL_CLN),(0,M.z)(_=>{this.store.dispatch((0,D.ac)({payload:w.m6.OPEN_CHANNEL})),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewChannel",status:w.Bn.INITIATED}}));const V={id:_.payload.peerId,satoshis:_.payload.satoshis,feeRate:_.payload.feeRate,announce:_.payload.announce};return _.payload.minconf&&(V.minconf=_.payload.minconf),_.payload.utxos&&(V.utxos=_.payload.utxos),_.payload.requestAmount&&(V.request_amt=_.payload.requestAmount),_.payload.compactLease&&(V.compact_lease=_.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+R.NZ.CHANNELS_API,V).pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewChannel",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.OPEN_CHANNEL})),this.store.dispatch((0,D.jW)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,S.EG)()),this.store.dispatch((0,S.Ly)()),{type:w.AB.FETCH_CHANNELS_CLN})),(0,d.K)(N=>(this.handleErrorWithoutAlert("SaveNewChannel",w.m6.OPEN_CHANNEL,"Opening Channel Failed.",N),(0,f.of)({type:w.pg.VOID}))))}))),this.updateChannelCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.UPDATE_CHANNEL_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+R.NZ.CHANNELS_API+"/setChannelFee",{id:_.payload.channelId,base:_.payload.baseFeeMsat,ppm:_.payload.feeRate}).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,D.uO)({payload:w.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,D.jW)("all"===_.payload.channelId?{payload:{message:"All Channels Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}}:{payload:{message:"Channel Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}})),{type:w.AB.FETCH_CHANNELS_CLN})),(0,d.K)(V=>(this.handleErrorWithAlert("UpdateChannel",w.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+R.NZ.CHANNELS_API,V),(0,f.of)({type:w.pg.VOID})))))))),this.closeChannelCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.CLOSE_CHANNEL_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:_.payload.force?w.m6.FORCE_CLOSE_CHANNEL:w.m6.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.CHANNELS_API+"/"+_.payload.channelId+(_.payload.force?"?force="+_.payload.force:"")).pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,D.uO)({payload:_.payload.force?w.m6.FORCE_CLOSE_CHANNEL:w.m6.CLOSE_CHANNEL})),this.store.dispatch((0,S.UR)()),this.store.dispatch((0,S.g3)()),this.store.dispatch((0,D.jW)({payload:"Channel Closed Successfully!"})),{type:w.AB.REMOVE_CHANNEL_CLN,payload:_.payload})),(0,d.K)(N=>(this.handleErrorWithAlert("CloseChannel",_.payload.force?w.m6.FORCE_CLOSE_CHANNEL:w.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+R.NZ.CHANNELS_API,N),(0,f.of)({type:w.pg.VOID})))))))),this.paymentsFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_PAYMENTS_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchPayments",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.PAYMENTS_API))),(0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchPayments",status:w.Bn.COMPLETED}})),{type:w.AB.SET_PAYMENTS_CLN,payload:_||[]})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchPayments",w.m6.NO_SPINNER,"Fetching Payments Failed.",_),(0,f.of)({type:w.pg.VOID}))))),this.fetchOfferInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_OFFER_INVOICE_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.FETCH_INVOICE})),this.store.dispatch((0,S.Ni)({payload:{action:"FetchOfferInvoice",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.OFFERS_API+"/fetchOfferInvoice",_.payload).pipe((0,C.U)(V=>{this.logger.info(V),setTimeout(()=>{this.store.dispatch((0,S.Ni)({payload:{action:"FetchOfferInvoice",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.FETCH_INVOICE})),this.store.dispatch((0,S.VD)({payload:V||{}}))},500)}),(0,d.K)(V=>(this.handleErrorWithoutAlert("FetchOfferInvoice",w.m6.FETCH_INVOICE,"Offer Invoice Fetch Failed",V),(0,f.of)({type:w.pg.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_OFFER_INVOICE_CLN),(0,C.U)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.sendPaymentCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SEND_PAYMENT_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:_.payload.uiMessage})),this.store.dispatch((0,S.Ni)({payload:{action:"SendPayment",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.PAYMENTS_API,_.payload).pipe((0,C.U)(V=>{this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"SendPayment",status:w.Bn.COMPLETED}}));let N="Payment Sent Successfully!";V.saveToDBError&&(N="Payment Sent Successfully but Offer Saving to Database Failed."),V.saveToDBResponse&&"NA"!==V.saveToDBResponse&&(this.store.dispatch((0,S.e9)({payload:V.saveToDBResponse})),N="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,S.UR)()),this.store.dispatch((0,S.EG)()),this.store.dispatch((0,S.cQ)()),this.store.dispatch((0,D.uO)({payload:_.payload.uiMessage})),this.store.dispatch((0,D.jW)({payload:N})),this.store.dispatch((0,S.TM)({payload:V.paymentResponse}))},1e3)}),(0,d.K)(V=>(this.logger.error("Error: "+JSON.stringify(V)),_.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",_.payload.uiMessage,"Send Payment Failed.",V):this.handleErrorWithAlert("SendPayment",_.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+R.NZ.PAYMENTS_API,V),(0,f.of)({type:w.pg.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.GET_QUERY_ROUTES_CLN),(0,M.z)(_=>(this.store.dispatch((0,S.Ni)({payload:{action:"GetQueryRoutes",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.NETWORK_API+"/getRoute/"+_.payload.destPubkey+"/"+_.payload.amount).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"GetQueryRoutes",status:w.Bn.COMPLETED}})),{type:w.AB.SET_QUERY_ROUTES_CLN,payload:V})),(0,d.K)(V=>(this.store.dispatch((0,S.kL)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",w.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+R.NZ.NETWORK_API+"/getRoute/"+_.payload.destPubkey+"/"+_.payload.amount,V),(0,f.of)({type:w.pg.VOID})))))))),this.setQueryRoutesCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_QUERY_ROUTES_CLN),(0,C.U)(_=>_.payload)),{dispatch:!1}),this.peerLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.PEER_LOOKUP_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.SEARCHING_NODE})),this.store.dispatch((0,S.Ni)({payload:{action:"Lookup",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.NETWORK_API+"/listNode/"+_.payload).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"Lookup",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.SEARCHING_NODE})),{type:w.AB.SET_LOOKUP_CLN,payload:V})),(0,d.K)(V=>(this.handleErrorWithAlert("Lookup",w.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+R.NZ.NETWORK_API+"/listNode/"+_.payload,V),(0,f.of)({type:w.pg.VOID})))))))),this.channelLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.CHANNEL_LOOKUP_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:_.payload.uiMessage})),this.store.dispatch((0,S.Ni)({payload:{action:"Lookup",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.NETWORK_API+"/listChannel/"+_.payload.shortChannelID).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"Lookup",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:_.payload.uiMessage})),{type:w.AB.SET_LOOKUP_CLN,payload:V})),(0,d.K)(V=>(_.payload.showError?this.handleErrorWithAlert("Lookup",_.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+R.NZ.NETWORK_API+"/listChannel/"+_.payload.shortChannelID,V):this.store.dispatch((0,D.uO)({payload:_.payload.uiMessage})),this.store.dispatch((0,S.v_)({payload:[]})),(0,f.of)({type:w.pg.VOID})))))))),this.invoiceLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.INVOICE_LOOKUP_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.SEARCHING_INVOICE})),this.store.dispatch((0,S.Ni)({payload:{action:"Lookup",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.INVOICES_API+"?label="+_.payload).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"Lookup",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.SEARCHING_INVOICE})),V.invoices&&V.invoices.length&&V.invoices.length>0&&this.store.dispatch((0,S.aL)({payload:V.invoices[0]})),{type:w.AB.SET_LOOKUP_CLN,payload:V.invoices&&V.invoices.length&&V.invoices.length>0?V.invoices[0]:V})),(0,d.K)(V=>(this.handleErrorWithoutAlert("Lookup",w.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",V),this.store.dispatch((0,D.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,f.of)({type:w.pg.VOID})))))))),this.setLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_LOOKUP_CLN),(0,C.U)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.GET_FORWARDING_HISTORY_CLN),(0,M.z)(_=>{const V=_.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,S.Ni)({payload:{action:"FetchForwardingHistory"+V,status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.CHANNELS_API+"/listForwards?status="+_.payload.status).pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,S.Ni)({payload:{action:"FetchForwardingHistory"+V,status:w.Bn.COMPLETED}})),_.payload.status===w.OO.FAILED?this.store.dispatch((0,S.QJ)({payload:{status:w.OO.FAILED,totalForwards:N.length,listForwards:N}})):_.payload.status===w.OO.LOCAL_FAILED?this.store.dispatch((0,S.QJ)({payload:{status:w.OO.LOCAL_FAILED,totalForwards:N.length,listForwards:N}})):_.payload.status===w.OO.SETTLED&&this.store.dispatch((0,S.QJ)({payload:{status:w.OO.SETTLED,totalForwards:N.length,listForwards:N}})),{type:w.pg.VOID})),(0,d.K)(N=>(this.handleErrorWithAlert("FetchForwardingHistory"+V,w.m6.NO_SPINNER,"Get "+_.payload.status+" Forwarding History Failed",this.CHILD_API_URL+R.NZ.CHANNELS_API+"/listForwards?status="+_.payload.status,N),(0,f.of)({type:w.pg.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DELETE_EXPIRED_INVOICE_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.DELETE_INVOICE})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.INVOICES_API+(_.payload?"?maxexpiry="+_.payload:"")).pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,D.uO)({payload:w.m6.DELETE_INVOICE})),this.store.dispatch((0,D.jW)({payload:"Invoices Deleted Successfully!"})),{type:w.AB.FETCH_INVOICES_CLN,payload:{num_max_invoices:1e6,reversed:!0}})),(0,d.K)(N=>(this.handleErrorWithAlert("DeleteInvoices",w.m6.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+R.NZ.INVOICES_API,N),(0,f.of)({type:w.pg.VOID})))))))),this.saveNewInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_INVOICE_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.ADD_INVOICE})),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewInvoice",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.INVOICES_API,{label:_.payload.label,amount:_.payload.amount,description:_.payload.description,expiry:_.payload.expiry,private:_.payload.private}).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewInvoice",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.ADD_INVOICE})),V.msatoshi=_.payload.amount,V.label=_.payload.label,V.expires_at=Math.round((new Date).getTime()/1e3+_.payload.expiry),V.description=_.payload.description,V.status="unpaid",setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{invoice:V,newlyAdded:!0,component:L.y}}}))},200),{type:w.AB.ADD_INVOICE_CLN,payload:V})),(0,d.K)(V=>(this.handleErrorWithoutAlert("SaveNewInvoice",w.m6.ADD_INVOICE,"Add Invoice Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.saveNewOfferCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_OFFER_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.CREATE_OFFER})),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewOffer",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.OFFERS_API,{amount:_.payload.amount,description:_.payload.description,vendor:_.payload.vendor}).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"SaveNewOffer",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{offer:V,newlyAdded:!0,component:E.k}}}))},100),{type:w.AB.ADD_OFFER_CLN,payload:V})),(0,d.K)(V=>(this.handleErrorWithoutAlert("SaveNewOffer",w.m6.CREATE_OFFER,"Create Offer Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.invoicesFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_INVOICES_CLN),(0,M.z)(_=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchInvoices",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.INVOICES_API+"?num_max_invoices="+(_.payload.num_max_invoices?_.payload.num_max_invoices:1e6)+"&index_offset="+(_.payload.index_offset?_.payload.index_offset:0)+"&reversed="+(!_.payload.reversed||_.payload.reversed)).pipe((0,C.U)(X=>(this.logger.info(X),this.store.dispatch((0,S.Ni)({payload:{action:"FetchInvoices",status:w.Bn.COMPLETED}})),{type:w.AB.SET_INVOICES_CLN,payload:X})),(0,d.K)(X=>(this.handleErrorWithoutAlert("FetchInvoices",w.m6.NO_SPINNER,"Fetching Invoices Failed.",X),(0,f.of)({type:w.pg.VOID})))))))),this.offersFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_OFFERS_CLN),(0,M.z)(_=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchOffers",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.OFFERS_API).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"FetchOffers",status:w.Bn.COMPLETED}})),{type:w.AB.SET_OFFERS_CLN,payload:V.offers?V.offers:[]})),(0,d.K)(V=>(this.handleErrorWithoutAlert("FetchOffers",w.m6.NO_SPINNER,"Fetching Offers Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.offersDisableCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DISABLE_OFFER_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.DISABLE_OFFER})),this.store.dispatch((0,S.Ni)({payload:{action:"DisableOffer",status:w.Bn.INITIATED}})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.OFFERS_API+"/"+_.payload.offer_id).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"DisableOffer",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.DISABLE_OFFER})),this.store.dispatch((0,D.jW)({payload:"Offer Disabled Successfully!"})),{type:w.AB.UPDATE_OFFER_CLN,payload:{offer:V}})),(0,d.K)(V=>(this.handleErrorWithoutAlert("DisableOffer",w.m6.DISABLE_OFFER,"Disabling Offer Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.offerBookmarksFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_OFFER_BOOKMARKS_CLN),(0,M.z)(_=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchOfferBookmarks",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.OFFERS_API+"/offerbookmarks").pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"FetchOfferBookmarks",status:w.Bn.COMPLETED}})),{type:w.AB.SET_OFFER_BOOKMARKS_CLN,payload:V||[]})),(0,d.K)(V=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",w.m6.NO_SPINNER,"Fetching Offer Bookmarks Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.peidOffersDeleteCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DELETE_OFFER_BOOKMARK_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,S.Ni)({payload:{action:"DeleteOfferBookmark",status:w.Bn.INITIATED}})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.OFFERS_API+"/offerbookmark/"+_.payload.bolt12).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"DeleteOfferBookmark",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,D.jW)({payload:"Offer Bookmark Deleted Successfully!"})),{type:w.AB.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:_.payload.bolt12}})),(0,d.K)(V=>(this.handleErrorWithAlert("DeleteOfferBookmark",w.m6.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+R.NZ.OFFERS_API+"/offerbookmark/"+_.payload.bolt12,V),(0,f.of)({type:w.pg.VOID})))))))),this.SetChannelTransactionCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_CHANNEL_TRANSACTION_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.SEND_FUNDS})),this.store.dispatch((0,S.Ni)({payload:{action:"SetChannelTransaction",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.ON_CHAIN_API,_.payload).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"SetChannelTransaction",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.SEND_FUNDS})),this.store.dispatch((0,S.EG)()),this.store.dispatch((0,S.Ly)()),{type:w.AB.SET_CHANNEL_TRANSACTION_RES_CLN,payload:V})),(0,d.K)(V=>(this.handleErrorWithoutAlert("SetChannelTransaction",w.m6.SEND_FUNDS,"Sending Fund Failed.",V),(0,f.of)({type:w.pg.VOID})))))))),this.utxosFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_UTXOS_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchUTXOs",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.ON_CHAIN_API+"/utxos"))),(0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchUTXOs",status:w.Bn.COMPLETED}})),{type:w.AB.SET_UTXOS_CLN,payload:_.outputs||[]})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchUTXOs",w.m6.NO_SPINNER,"Fetching UTXOs Failed.",_),(0,f.of)({type:w.pg.VOID}))))),this.pageSettingsFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_PAGE_SETTINGS_CLN),(0,M.z)(()=>(this.store.dispatch((0,S.Ni)({payload:{action:"FetchPageSettings",status:w.Bn.INITIATED}})),this.httpClient.get(R.NZ.PAGE_SETTINGS_API).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.Ni)({payload:{action:"FetchPageSettings",status:w.Bn.COMPLETED}})),{type:w.AB.SET_PAGE_SETTINGS_CLN,payload:_||[]})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchPageSettings",w.m6.NO_SPINNER,"Fetching Page Settings Failed.",_),(0,f.of)({type:w.pg.VOID})))))))),this.savePageSettingsCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_PAGE_SETTINGS_CLN),(0,M.z)(_=>(this.store.dispatch((0,D.ac)({payload:w.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,S.Ni)({payload:{action:"SavePageSettings",status:w.Bn.INITIATED}})),this.httpClient.post(R.NZ.PAGE_SETTINGS_API,_.payload).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.Ni)({payload:{action:"SavePageSettings",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,D.jW)({payload:"Page Layout Updated Successfully!"})),{type:w.AB.SET_PAGE_SETTINGS_CLN,payload:V||[]})),(0,d.K)(V=>(this.handleErrorWithAlert("SavePageSettings",w.m6.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",R.NZ.PAGE_SETTINGS_API,V),(0,f.of)({type:w.pg.VOID})))))))),this.store.select(k.yA).pipe((0,a.R)(this.unSubs[0])).subscribe(_=>{_.FetchInfo.status!==w.Bn.COMPLETED&&_.FetchInfo.status!==w.Bn.ERROR||_.FetchFees.status!==w.Bn.COMPLETED&&_.FetchFees.status!==w.Bn.ERROR||_.FetchChannels.status!==w.Bn.COMPLETED&&_.FetchChannels.status!==w.Bn.ERROR||_.FetchBalance.status!==w.Bn.COMPLETED&&_.FetchBalance.status!==w.Bn.ERROR||_.FetchLocalRemoteBalance.status!==w.Bn.COMPLETED&&_.FetchLocalRemoteBalance.status!==w.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,D.uO)({payload:w.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,a.R)(this.unSubs[1])).subscribe(_=>{if(this.logger.info("Received new message from the service: "+JSON.stringify(_)),_)switch(_.event){case w.nM.INVOICE:this.logger.info(_),_&&_.data&&_.data.label&&this.store.dispatch((0,S.aL)({payload:_.data}));break;case w.nM.SEND_PAYMENT:case w.nM.BLOCK_HEIGHT:this.logger.info(_);break;default:this.logger.info("Received Event from WS: "+JSON.stringify(_))}})}initializeRemainingData(i,r){this.sessionService.setItem("clUnlocked","true");const u={identity_pubkey:i.id,alias:i.alias,testnet:"testnet"===i.network.toLowerCase(),chains:i.chains,uris:i.uris,version:i.version,api_version:i.api_version,numberOfPendingChannels:i.num_pending_channels};this.store.dispatch((0,D.ac)({payload:w.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,D._V)({payload:u}));let c=this.location.path();c.includes("/lnd/")?c=null==c?void 0:c.replace("/lnd/","/cln/"):c.includes("/ecl/")&&(c=null==c?void 0:c.replace("/ecl/","/cln/")),(c.includes("/login")||c.includes("/error")||""===c||"HOME"===r||c.includes("?access-key="))&&(c="/cln/home"),this.router.navigate([c]),this.store.dispatch((0,S.wD)()),this.store.dispatch((0,S.WM)({payload:{num_max_invoices:1e6,index_offset:0,reversed:!0}})),this.store.dispatch((0,S.SN)()),this.store.dispatch((0,S.UR)()),this.store.dispatch((0,S.EG)()),this.store.dispatch((0,S.g3)()),this.store.dispatch((0,S.HJ)({payload:"perkw"})),this.store.dispatch((0,S.HJ)({payload:"perkb"})),this.store.dispatch((0,S.$W)()),this.store.dispatch((0,S.Ly)()),this.store.dispatch((0,S.cQ)())}handleErrorWithoutAlert(i,r,u,c){if(this.logger.error("ERROR IN: "+i+"\n"+JSON.stringify(c)),401===c.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.ts)()),this.store.dispatch((0,D.kS)()),this.store.dispatch((0,D.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,D.uO)({payload:r}));const v=this.commonService.extractErrorMessage(c,u);this.store.dispatch((0,S.Ni)({payload:{action:i,status:w.Bn.ERROR,statusCode:c.status.toString(),message:v}}))}}handleErrorWithAlert(i,r,u,c,v){if(this.logger.error(v),401===v.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.ts)()),this.store.dispatch((0,D.kS)()),this.store.dispatch((0,D.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,D.uO)({payload:r}));const T=this.commonService.extractErrorMessage(v);this.store.dispatch((0,D.qR)({payload:{data:{type:"ERROR",alertTitle:u,message:{code:v.status,message:T,URL:c},component:h.H}}})),this.store.dispatch((0,S.Ni)({payload:{action:i,status:w.Bn.ERROR,statusCode:v.status.toString(),message:T,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}}return _e.\u0275fac=function(i){return new(i||_e)(B.LFG(t.eX),B.LFG(Z.eN),B.LFG(Y.yh),B.LFG(ae.m),B.LFG(ee.v),B.LFG(ue.mQ),B.LFG(ie.F0),B.LFG(re.d),B.LFG(ge.Ye))},_e.\u0275prov=B.Yz7({token:_e,factory:_e.\u0275fac}),_e})()},9828:(Be,K,p)=>{"use strict";p.d(K,{AS:()=>M,Ao:()=>re,Bo:()=>Y,EQ:()=>_e,Hz:()=>ge,JG:()=>L,OL:()=>ue,PP:()=>R,Rn:()=>B,T4:()=>k,Wi:()=>h,Wj:()=>Z,Y_:()=>q,ZW:()=>E,ey:()=>a,gc:()=>S,hx:()=>D,jK:()=>ie,lK:()=>ee,lw:()=>f,xQ:()=>ae,yA:()=>d,zm:()=>w});var t=p(5620);const e=(0,t.ZF)("cln"),f=(0,t.P1)(e,i=>i.nodeSettings),M=(0,t.P1)(e,i=>({pageSettings:i.pageSettings,apiCallStatus:i.apisCallStatus.FetchPageSettings})),a=(0,t.P1)(e,i=>i.information),d=((0,t.P1)(e,i=>i.apisCallStatus.FetchInfo),(0,t.P1)(e,i=>i.apisCallStatus)),R=(0,t.P1)(e,i=>({payments:i.payments,apiCallStatus:i.apisCallStatus.FetchPayments})),h=(0,t.P1)(e,i=>({peers:i.peers,apiCallStatus:i.apisCallStatus.FetchPeers})),L=(0,t.P1)(e,i=>({fees:i.fees,apiCallStatus:i.apisCallStatus.FetchFees})),w=(0,t.P1)(e,i=>({feeRatesPerKB:i.feeRatesPerKB,apiCallStatus:i.apisCallStatus.FetchFeeRatesperkb})),D=(0,t.P1)(e,i=>({feeRatesPerKW:i.feeRatesPerKW,apiCallStatus:i.apisCallStatus.FetchFeeRatesperkw})),S=(0,t.P1)(e,i=>({listInvoices:i.invoices,apiCallStatus:i.apisCallStatus.FetchInvoices})),k=(0,t.P1)(e,i=>({utxos:i.utxos,apiCallStatus:i.apisCallStatus.FetchUTXOs})),E=(0,t.P1)(e,i=>({activeChannels:i.activeChannels,pendingChannels:i.pendingChannels,inactiveChannels:i.inactiveChannels,apiCallStatus:i.apisCallStatus.FetchChannels})),B=(0,t.P1)(e,i=>({balance:i.balance,apiCallStatus:i.apisCallStatus.FetchBalance})),Z=(0,t.P1)(e,i=>({localRemoteBalance:i.localRemoteBalance,apiCallStatus:i.apisCallStatus.FetchLocalRemoteBalance})),Y=(0,t.P1)(e,i=>({forwardingHistory:i.forwardingHistory,apiCallStatus:i.apisCallStatus.FetchForwardingHistoryS})),ae=(0,t.P1)(e,i=>({failedForwardingHistory:i.failedForwardingHistory,apiCallStatus:i.apisCallStatus.FetchForwardingHistoryF})),ee=(0,t.P1)(e,i=>({localFailedForwardingHistory:i.localFailedForwardingHistory,apiCallStatus:i.apisCallStatus.FetchForwardingHistoryL})),ue=(0,t.P1)(e,i=>({information:i.information,nodeSettings:i.nodeSettings,balance:i.balance})),ie=(0,t.P1)(e,i=>({information:i.information,balance:i.balance,numPeers:i.peers.length})),re=(0,t.P1)(e,i=>({information:i.information,balance:i.balance})),ge=(0,t.P1)(e,i=>({information:i.information,nodeSettings:i.nodeSettings,apisCallStatus:[i.apisCallStatus.FetchInfo,i.apisCallStatus.FetchForwardingHistoryS]})),q=(0,t.P1)(e,i=>({offers:i.offers,apiCallStatus:i.apisCallStatus.FetchOffers})),_e=(0,t.P1)(e,i=>({offersBookmarks:i.offersBookmarks,apiCallStatus:i.apisCallStatus.FetchOfferBookmarks}))},5566:(Be,K,p)=>{"use strict";p.d(K,{y:()=>ut});var t=p(8966),e=p(2687),f=p(7579),M=p(2722),a=p(7731),C=p(9828),d=p(5e3),R=p(5043),h=p(62),L=p(7261),w=p(5620),D=p(7093),S=p(9808),k=p(3322),E=p(159),B=p(9224),Z=p(9546),Y=p(7238),ae=p(7423),ee=p(4834),ue=p(773),ie=p(3390),re=p(6895);function ge(Oe,we){if(1&Oe&&d._UZ(0,"qr-code",33),2&Oe){const ce=d.oxw();d.Q6J("value",(null==ce.invoice?null:ce.invoice.bolt11)||(null==ce.invoice?null:ce.invoice.bolt12))("size",ce.qrWidth)("errorCorrectionLevel","L")}}function q(Oe,we){1&Oe&&(d.TgZ(0,"span",34),d._uU(1,"N/A"),d.qZA())}const _e=function(Oe){return{"mr-0":Oe}};function x(Oe,we){if(1&Oe&&d._UZ(0,"span",35),2&Oe){const ce=d.oxw();d.Q6J("ngClass",d.VKq(1,_e,ce.screenSize===ce.screenSizeEnum.XS))}}function i(Oe,we){if(1&Oe&&d._UZ(0,"span",36),2&Oe){const ce=d.oxw();d.Q6J("ngClass",d.VKq(1,_e,ce.screenSize===ce.screenSizeEnum.XS))}}function r(Oe,we){if(1&Oe&&d._UZ(0,"span",37),2&Oe){const ce=d.oxw();d.Q6J("ngClass",d.VKq(1,_e,ce.screenSize===ce.screenSizeEnum.XS))}}function u(Oe,we){if(1&Oe&&d._UZ(0,"qr-code",33),2&Oe){const ce=d.oxw();d.Q6J("value",(null==ce.invoice?null:ce.invoice.bolt11)||(null==ce.invoice?null:ce.invoice.bolt12))("size",ce.qrWidth)("errorCorrectionLevel","L")}}function c(Oe,we){1&Oe&&(d.TgZ(0,"span",38),d._uU(1,"QR Code Not Applicable"),d.qZA())}function v(Oe,we){1&Oe&&d._UZ(0,"mat-divider",39),2&Oe&&d.Q6J("inset",!0)}function T(Oe,we){if(1&Oe&&(d.TgZ(0,"div",19)(1,"div",40),d._UZ(2,"fa-icon",41),d.TgZ(3,"span"),d._uU(4),d.qZA()()()),2&Oe){const ce=d.oxw();d.xp6(2),d.Q6J("icon",ce.faExclamationTriangle),d.xp6(2),d.Oqu(null==ce.invoice?null:ce.invoice.warning_capacity)}}function I(Oe,we){1&Oe&&(d.ynx(0),d._uU(1," (zero amount) "),d.BQk())}function y(Oe,we){1&Oe&&d._UZ(0,"span",47)}const n=function(){return[]};function _(Oe,we){if(1&Oe&&(d.TgZ(0,"div",43)(1,"div",44)(2,"span",45),d._uU(3),d.ALo(4,"number"),d.qZA(),d.YNc(5,y,1,0,"span",46),d.qZA()()),2&Oe){const ce=d.oxw(2);d.xp6(3),d.hij("",d.lcZ(4,2,(null==ce.invoice?null:ce.invoice.msatoshi_received)/1e3)," Sats"),d.xp6(2),d.Q6J("ngForOf",d.DdM(4,n).constructor(35))}}function V(Oe,we){if(1&Oe&&(d.TgZ(0,"div"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&Oe){const ce=d.oxw(2);d.xp6(1),d.hij("",d.lcZ(2,1,(null==ce.invoice?null:ce.invoice.msatoshi_received)/1e3)," Sats")}}function N(Oe,we){if(1&Oe&&(d.ynx(0),d.YNc(1,_,6,5,"div",42),d.YNc(2,V,3,3,"div",23),d.BQk()),2&Oe){const ce=d.oxw();d.xp6(1),d.Q6J("ngIf",ce.flgInvoicePaid),d.xp6(1),d.Q6J("ngIf",!ce.flgInvoicePaid)}}function H(Oe,we){1&Oe&&(d.TgZ(0,"span"),d._uU(1,"-"),d.qZA())}function X(Oe,we){1&Oe&&d._UZ(0,"mat-spinner",49),2&Oe&&d.Q6J("diameter",20)}function he(Oe,we){if(1&Oe&&(d.ynx(0),d.YNc(1,H,2,0,"span",23),d.YNc(2,X,1,1,"mat-spinner",48),d.BQk()),2&Oe){const ce=d.oxw();d.xp6(1),d.Q6J("ngIf","unpaid"!==(null==ce.invoice?null:ce.invoice.status)||!ce.flgVersionCompatible),d.xp6(1),d.Q6J("ngIf","unpaid"===(null==ce.invoice?null:ce.invoice.status)&&ce.flgVersionCompatible)}}function be(Oe,we){if(1&Oe&&(d.TgZ(0,"div"),d._UZ(1,"mat-divider",25),d.TgZ(2,"div",19)(3,"div",26)(4,"h4",21),d._uU(5,"Payment Hash"),d.qZA(),d.TgZ(6,"span",24),d._uU(7),d.qZA()()(),d._UZ(8,"mat-divider",25),d.TgZ(9,"div",19)(10,"div",26)(11,"h4",21),d._uU(12,"Label"),d.qZA(),d.TgZ(13,"span",24),d._uU(14),d.qZA()()(),d._UZ(15,"mat-divider",25),d.qZA()),2&Oe){const ce=d.oxw();d.xp6(7),d.Oqu(null==ce.invoice?null:ce.invoice.payment_hash),d.xp6(7),d.Oqu(null==ce.invoice?null:ce.invoice.label)}}function Pe(Oe,we){1&Oe&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function Ee(Oe,we){1&Oe&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function j(Oe,we){if(1&Oe){const ce=d.EpF();d.TgZ(0,"button",50),d.NdJ("copied",function(xe){return d.CHM(ce),d.oxw().onCopyPayment(xe)}),d._uU(1,"Copy Invoice"),d.qZA()}if(2&Oe){const ce=d.oxw();d.Q6J("payload",(null==ce.invoice?null:ce.invoice.bolt11)||(null==ce.invoice?null:ce.invoice.bolt12))}}function Ve(Oe,we){if(1&Oe){const ce=d.EpF();d.TgZ(0,"button",51),d.NdJ("click",function(){return d.CHM(ce),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const Me=function(Oe){return{"display-none":Oe}},J=function(Oe){return{"xs-scroll-y":Oe}},Ie=function(Oe,we){return{"mt-2":Oe,"mt-1":we}};let ut=(()=>{class Oe{constructor(ce,Te,xe,W,te,Ce){this.dialogRef=ce,this.data=Te,this.logger=xe,this.commonService=W,this.snackBar=te,this.store=Ce,this.faReceipt=e.dLy,this.faExclamationTriangle=e.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(C.ey).pipe((0,M.R)(this.unSubs[0])).subscribe(ce=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ce.api_version,"0.6.0")}),this.store.select(C.gc).pipe((0,M.R)(this.unSubs[1])).subscribe(ce=>{const Te=this.invoice.status,xe=ce.listInvoices.invoices||[],W=(null==xe?void 0:xe.find(te=>te.payment_hash===this.invoice.payment_hash))||null;W&&(this.invoice=W),Te!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ce)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ce){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ce)}ngOnDestroy(){this.unSubs.forEach(ce=>{ce.next(null),ce.complete()})}}return Oe.\u0275fac=function(ce){return new(ce||Oe)(d.Y36(t.so),d.Y36(t.WI),d.Y36(R.mQ),d.Y36(h.v),d.Y36(L.ux),d.Y36(w.yh))},Oe.\u0275cmp=d.Xpm({type:Oe,selectors:[["rtl-cln-invoice-information"]],decls:72,vars:49,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","dot green ml-1","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow ml-1","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red ml-1","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green","ml-1",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow","ml-1",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red","ml-1",3,"ngClass"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(ce,Te){if(1&ce&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,ge,1,3,"qr-code",2),d.YNc(3,q,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.YNc(10,x,1,3,"span",9),d.YNc(11,i,1,3,"span",10),d.YNc(12,r,1,3,"span",11),d.qZA()(),d.TgZ(13,"button",12),d.NdJ("click",function(){return Te.onClose()}),d._uU(14,"X"),d.qZA()(),d.TgZ(15,"mat-card-content",13)(16,"div",14)(17,"div",15),d.YNc(18,u,1,3,"qr-code",2),d.YNc(19,c,2,0,"span",16),d.qZA(),d.YNc(20,v,1,1,"mat-divider",17),d.YNc(21,T,5,2,"div",18),d.TgZ(22,"div",19)(23,"div",20)(24,"h4",21),d._uU(25),d.qZA(),d.TgZ(26,"span",22),d._uU(27),d.ALo(28,"number"),d.YNc(29,I,2,0,"ng-container",23),d.qZA()(),d.TgZ(30,"div",20)(31,"h4",21),d._uU(32,"Amount Received"),d.qZA(),d.TgZ(33,"span",24),d.YNc(34,N,3,2,"ng-container",23),d.YNc(35,he,3,2,"ng-container",23),d.qZA()()(),d._UZ(36,"mat-divider",25),d.TgZ(37,"div",19)(38,"div",20)(39,"h4",21),d._uU(40,"Date Expiry"),d.qZA(),d.TgZ(41,"span",22),d._uU(42),d.ALo(43,"date"),d.qZA()(),d.TgZ(44,"div",20)(45,"h4",21),d._uU(46,"Date Settled"),d.qZA(),d.TgZ(47,"span",22),d._uU(48),d.ALo(49,"date"),d.qZA()()(),d._UZ(50,"mat-divider",25),d.TgZ(51,"div",19)(52,"div",26)(53,"h4",21),d._uU(54,"Description"),d.qZA(),d.TgZ(55,"span",22),d._uU(56),d.qZA()()(),d._UZ(57,"mat-divider",25),d.TgZ(58,"div",19)(59,"div",26)(60,"h4",21),d._uU(61),d.qZA(),d.TgZ(62,"span",24),d._uU(63),d.qZA()()(),d.YNc(64,be,16,2,"div",23),d.TgZ(65,"div",27)(66,"button",28),d.NdJ("click",function(){return Te.onShowAdvanced()}),d.YNc(67,Pe,2,0,"p",29),d.YNc(68,Ee,2,0,"ng-template",null,30,d.W1O),d.qZA(),d.YNc(70,j,2,1,"button",31),d.YNc(71,Ve,2,0,"button",32),d.qZA()()()()()),2&ce){const xe=d.MAs(69);d.xp6(1),d.Q6J("fxLayoutAlign",null!=Te.invoice&&Te.invoice.bolt11&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||null!=Te.invoice&&Te.invoice.bolt12&&""!==(null==Te.invoice?null:Te.invoice.bolt12)?"center start":"center center")("ngClass",d.VKq(40,Me,Te.screenSize===Te.screenSizeEnum.XS||Te.screenSize===Te.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Te.invoice?null:Te.invoice.bolt11)&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)&&""!==(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.bolt11||null!=Te.invoice&&Te.invoice.bolt12)),d.xp6(4),d.Q6J("icon",Te.faReceipt),d.xp6(2),d.hij(" ",Te.screenSize===Te.screenSizeEnum.XS?Te.newlyAdded?"Created":"Invoice":Te.newlyAdded?"Invoice Created":"Invoice Information"," "),d.xp6(1),d.Q6J("ngIf","paid"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(1),d.Q6J("ngIf","unpaid"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(1),d.Q6J("ngIf","expired"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(3),d.Q6J("ngClass",d.VKq(42,J,Te.screenSize===Te.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=Te.invoice&&Te.invoice.bolt11&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||null!=Te.invoice&&Te.invoice.bolt12&&""!==(null==Te.invoice?null:Te.invoice.bolt12)?"center start":"center center")("ngClass",d.VKq(44,Me,Te.screenSize!==Te.screenSizeEnum.XS&&Te.screenSize!==Te.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Te.invoice?null:Te.invoice.bolt11)&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)&&""!==(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.bolt11||null!=Te.invoice&&Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",Te.screenSize===Te.screenSizeEnum.XS||Te.screenSize===Te.screenSizeEnum.SM),d.xp6(1),d.Q6J("ngIf",null==Te.invoice?null:Te.invoice.warning_capacity),d.xp6(4),d.Oqu(Te.screenSize===Te.screenSizeEnum.XS?"Amount":"Amount Requested"),d.xp6(2),d.hij(" ",d.lcZ(28,32,(null==Te.invoice?null:Te.invoice.msatoshi)/1e3||0)," Sats"),d.xp6(2),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.msatoshi)||"0"===(null==Te.invoice?null:Te.invoice.msatoshi)),d.xp6(5),d.Q6J("ngIf","paid"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(1),d.Q6J("ngIf","paid"!==(null==Te.invoice?null:Te.invoice.status)),d.xp6(7),d.Oqu(d.xi3(43,34,1e3*(null==Te.invoice?null:Te.invoice.expires_at),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(d.xi3(49,37,1e3*(null==Te.invoice?null:Te.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),d.xp6(8),d.Oqu((null==Te.invoice?null:Te.invoice.description)||"-"),d.xp6(5),d.hij("",null!=Te.invoice&&Te.invoice.bolt12?"Bolt12":null!=Te.invoice&&Te.invoice.bolt11&&!Te.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),d.xp6(2),d.Oqu((null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",Te.showAdvanced),d.xp6(1),d.Q6J("ngClass",d.WLB(46,Ie,!Te.showAdvanced,Te.showAdvanced)),d.xp6(2),d.Q6J("ngIf",!Te.showAdvanced)("ngIfElse",xe),d.xp6(3),d.Q6J("ngIf",(null==Te.invoice?null:Te.invoice.bolt11)&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)&&""!==(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.bolt11||null!=Te.invoice&&Te.invoice.bolt12))}},directives:[D.xw,D.Wh,D.yH,S.mk,k.oO,S.O5,E.uU,B.dk,Z.BN,Y.gM,ae.lW,B.dn,ee.d,S.sg,ue.Ou,ie.h,re.y],pipes:[S.JJ,S.uU],styles:[""]}),Oe})()},1462:(Be,K,p)=>{"use strict";p.d(K,{k:()=>H});var t=p(8966),e=p(2687),f=p(7579),M=p(2722),a=p(7731),C=p(9828),d=p(5e3),R=p(5043),h=p(62),L=p(7261),w=p(5620),D=p(8104),S=p(7093),k=p(9808),E=p(3322),B=p(159),Z=p(9224),Y=p(9546),ae=p(7423),ee=p(4834),ue=p(3390),ie=p(6895);function re(X,he){if(1&X&&d._UZ(0,"qr-code",28),2&X){const be=d.oxw();d.Q6J("value",null==be.offer?null:be.offer.bolt12)("size",be.qrWidth)("errorCorrectionLevel","L")}}function ge(X,he){1&X&&(d.TgZ(0,"span",29),d._uU(1,"N/A"),d.qZA())}function q(X,he){if(1&X&&d._UZ(0,"qr-code",28),2&X){const be=d.oxw();d.Q6J("value",null==be.offer?null:be.offer.bolt12)("size",be.qrWidth)("errorCorrectionLevel","L")}}function _e(X,he){1&X&&(d.TgZ(0,"span",30),d._uU(1,"QR Code Not Applicable"),d.qZA())}function x(X,he){1&X&&d._UZ(0,"mat-divider",31),2&X&&d.Q6J("inset",!0)}function i(X,he){1&X&&d._UZ(0,"mat-divider",19)}function r(X,he){if(1&X&&(d.TgZ(0,"div",15)(1,"div",16)(2,"h4",17),d._uU(3,"Used"),d.qZA(),d.TgZ(4,"span",18),d._uU(5),d.qZA()(),d.TgZ(6,"div",16)(7,"h4",17),d._uU(8,"Single Use"),d.qZA(),d.TgZ(9,"span",18),d._uU(10),d.qZA()()()),2&X){const be=d.oxw(2);d.xp6(5),d.hij(" ",null!=be.offer&&be.offer.used?null!=be.offer&&be.offer.used?"Yes":"No":"N/K"," "),d.xp6(5),d.hij(" ",null!=be.offer&&be.offer.single_use?null!=be.offer&&be.offer.single_use?"Yes":"No":"N/K"," ")}}function u(X,he){1&X&&d._UZ(0,"mat-divider",19)}function c(X,he){if(1&X&&(d.TgZ(0,"div",15)(1,"div",20)(2,"h4",17),d._uU(3,"Vendor"),d.qZA(),d.TgZ(4,"span",34),d._uU(5),d.qZA()()()),2&X){const be=d.oxw(2);d.xp6(5),d.Oqu((null==be.offerDecoded?null:be.offerDecoded.vendor)||(null==be.offerDecoded?null:be.offerDecoded.issuer))}}function v(X,he){if(1&X&&(d.TgZ(0,"div"),d.YNc(1,i,1,0,"mat-divider",32),d.YNc(2,r,11,2,"div",33),d.YNc(3,u,1,0,"mat-divider",32),d.YNc(4,c,6,1,"div",33),d._UZ(5,"mat-divider",19),d.TgZ(6,"div",15)(7,"div",20)(8,"h4",17),d._uU(9,"Offer ID"),d.qZA(),d.TgZ(10,"span",18),d._uU(11),d.qZA()()(),d._UZ(12,"mat-divider",19),d.qZA()),2&X){const be=d.oxw();d.xp6(1),d.Q6J("ngIf",(null==be.offer?null:be.offer.used)||(null==be.offer?null:be.offer.single_use)),d.xp6(1),d.Q6J("ngIf",(null==be.offer?null:be.offer.used)||(null==be.offer?null:be.offer.single_use)),d.xp6(1),d.Q6J("ngIf",(null==be.offerDecoded?null:be.offerDecoded.vendor)||(null==be.offerDecoded?null:be.offerDecoded.issuer)),d.xp6(1),d.Q6J("ngIf",(null==be.offerDecoded?null:be.offerDecoded.vendor)||(null==be.offerDecoded?null:be.offerDecoded.issuer)),d.xp6(7),d.Oqu(be.offerDecoded.offer_id)}}function T(X,he){1&X&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function I(X,he){1&X&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function y(X,he){if(1&X){const be=d.EpF();d.TgZ(0,"button",35),d.NdJ("copied",function(Ee){return d.CHM(be),d.oxw().onCopyOffer(Ee)}),d._uU(1,"Copy Offer"),d.qZA()}if(2&X){const be=d.oxw();d.Q6J("payload",null==be.offer?null:be.offer.bolt12)}}function n(X,he){if(1&X){const be=d.EpF();d.TgZ(0,"button",36),d.NdJ("click",function(){return d.CHM(be),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const _=function(X){return{"display-none":X}},V=function(X){return{"xs-scroll-y":X}},N=function(X,he){return{"mt-2":X,"mt-1":he}};let H=(()=>{class X{constructor(be,Pe,Ee,j,Ve,Me,J){this.dialogRef=be,this.data=Pe,this.logger=Ee,this.commonService=j,this.snackBar=Ve,this.store=Me,this.dataService=J,this.faReceipt=e.dLy,this.faExclamationTriangle=e.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgOfferPaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(C.ey).pipe((0,M.R)(this.unSubs[0])).subscribe(be=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(be.api_version,"0.6.0")}),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,M.R)(this.unSubs[1])).subscribe(be=>{var Pe;this.offerDecoded=be,this.offerDecoded.offer_id&&!this.offerDecoded.amount_msat?(this.offerDecoded.amount_msat="0msat",this.offerDecoded.amount=0):this.offerDecoded.amount=this.offerDecoded.amount?+this.offerDecoded.amount:this.offerDecoded.amount_msat?+(null===(Pe=this.offerDecoded.amount_msat)||void 0===Pe?void 0:Pe.slice(0,-4)):null})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(be){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+be)}ngOnDestroy(){this.unSubs.forEach(be=>{be.next(null),be.complete()})}}return X.\u0275fac=function(be){return new(be||X)(d.Y36(t.so),d.Y36(t.WI),d.Y36(R.mQ),d.Y36(h.v),d.Y36(L.ux),d.Y36(w.yh),d.Y36(D.D))},X.\u0275cmp=d.Xpm({type:X,selectors:[["rtl-cln-offer-information"]],decls:52,vars:33,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(be,Pe){if(1&be&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,re,1,3,"qr-code",2),d.YNc(3,ge,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.qZA()(),d.TgZ(10,"button",9),d.NdJ("click",function(){return Pe.onClose()}),d._uU(11,"X"),d.qZA()(),d.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),d.YNc(15,q,1,3,"qr-code",2),d.YNc(16,_e,2,0,"span",13),d.qZA(),d.YNc(17,x,1,1,"mat-divider",14),d.TgZ(18,"div",15)(19,"div",16)(20,"h4",17),d._uU(21,"Amount Requested (Sats)"),d.qZA(),d.TgZ(22,"span",18),d._uU(23),d.ALo(24,"number"),d.qZA()(),d.TgZ(25,"div",16)(26,"h4",17),d._uU(27,"Active"),d.qZA(),d.TgZ(28,"span",18),d._uU(29),d.qZA()()(),d._UZ(30,"mat-divider",19),d.TgZ(31,"div",15)(32,"div",20)(33,"h4",17),d._uU(34,"Description"),d.qZA(),d.TgZ(35,"span",18),d._uU(36),d.qZA()()(),d._UZ(37,"mat-divider",19),d.TgZ(38,"div",15)(39,"div",20)(40,"h4",17),d._uU(41,"Offer Request"),d.qZA(),d.TgZ(42,"span",18),d._uU(43),d.qZA()()(),d.YNc(44,v,13,5,"div",21),d.TgZ(45,"div",22)(46,"button",23),d.NdJ("click",function(){return Pe.onShowAdvanced()}),d.YNc(47,T,2,0,"p",24),d.YNc(48,I,2,0,"ng-template",null,25,d.W1O),d.qZA(),d.YNc(50,y,2,1,"button",26),d.YNc(51,n,2,0,"button",27),d.qZA()()()()()),2&be){const Ee=d.MAs(49);d.xp6(1),d.Q6J("fxLayoutAlign",null!=Pe.offer&&Pe.offer.bolt12&&""!==(null==Pe.offer?null:Pe.offer.bolt12)?"center start":"center center")("ngClass",d.VKq(24,_,Pe.screenSize===Pe.screenSizeEnum.XS||Pe.screenSize===Pe.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Pe.offer?null:Pe.offer.bolt12)&&""!==(null==Pe.offer?null:Pe.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Pe.offer&&Pe.offer.bolt12)||""===(null==Pe.offer?null:Pe.offer.bolt12)),d.xp6(4),d.Q6J("icon",Pe.faReceipt),d.xp6(2),d.Oqu(Pe.screenSize===Pe.screenSizeEnum.XS?Pe.newlyAdded?"Created":"Offer":Pe.newlyAdded?"Offer Created":"Offer Information"),d.xp6(3),d.Q6J("ngClass",d.VKq(26,V,Pe.screenSize===Pe.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=Pe.offer&&Pe.offer.bolt12&&""!==(null==Pe.offer?null:Pe.offer.bolt12)?"center start":"center center")("ngClass",d.VKq(28,_,Pe.screenSize!==Pe.screenSizeEnum.XS&&Pe.screenSize!==Pe.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Pe.offer?null:Pe.offer.bolt12)&&""!==(null==Pe.offer?null:Pe.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Pe.offer&&Pe.offer.bolt12)||""===(null==Pe.offer?null:Pe.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",Pe.screenSize===Pe.screenSizeEnum.XS||Pe.screenSize===Pe.screenSizeEnum.SM),d.xp6(6),d.hij(" ",null!=Pe.offerDecoded&&Pe.offerDecoded.amount_msat&&0!==(null==Pe.offerDecoded?null:Pe.offerDecoded.amount)?d.lcZ(24,22,(null==Pe.offerDecoded?null:Pe.offerDecoded.amount)/1e3):"Open Offer"," "),d.xp6(6),d.hij(" ",null!=Pe.offer&&Pe.offer.active?null!=Pe.offer&&Pe.offer.active?"Active":"Inactive":"N/K"," "),d.xp6(7),d.hij(" ",null==Pe.offerDecoded?null:Pe.offerDecoded.description," "),d.xp6(7),d.Oqu(null==Pe.offer?null:Pe.offer.bolt12),d.xp6(1),d.Q6J("ngIf",Pe.showAdvanced),d.xp6(1),d.Q6J("ngClass",d.WLB(30,N,!Pe.showAdvanced,Pe.showAdvanced)),d.xp6(2),d.Q6J("ngIf",!Pe.showAdvanced)("ngIfElse",Ee),d.xp6(3),d.Q6J("ngIf",(null==Pe.offer?null:Pe.offer.bolt12)&&""!==(null==Pe.offer?null:Pe.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Pe.offer&&Pe.offer.bolt12)||""===(null==Pe.offer?null:Pe.offer.bolt12))}},directives:[S.xw,S.Wh,S.yH,k.mk,E.oO,k.O5,B.uU,Z.dk,Y.BN,ae.lW,Z.dn,ee.d,ue.h,ie.y],pipes:[k.JJ],styles:[""]}),X})()},2994:(Be,K,p)=>{"use strict";p.d(K,{$W:()=>ue,BL:()=>v,Bw:()=>Y,CX:()=>L,DJ:()=>Oe,EK:()=>x,El:()=>re,Fd:()=>M,GD:()=>_e,HG:()=>ee,HI:()=>y,Iy:()=>he,Lf:()=>X,Nr:()=>Ee,OG:()=>T,On:()=>ae,QZ:()=>f,RX:()=>D,SN:()=>w,Sf:()=>J,TM:()=>N,TW:()=>E,UR:()=>S,WM:()=>Pe,WO:()=>n,YP:()=>Ve,YX:()=>u,Z$:()=>j,Z8:()=>ie,Zr:()=>a,_E:()=>i,aL:()=>Me,cQ:()=>I,eF:()=>R,eN:()=>k,i:()=>B,iL:()=>Z,iz:()=>h,kL:()=>_,mC:()=>H,n7:()=>Ie,oV:()=>V,pW:()=>c,pd:()=>d,ti:()=>we,wD:()=>C});var t=p(5620),e=p(7731);const f=(0,t.PH)(e.lr.UPDATE_API_CALL_STATUS_ECL,(0,t.Ky)()),M=(0,t.PH)(e.lr.RESET_ECL_STORE,(0,t.Ky)()),a=(0,t.PH)(e.lr.SET_CHILD_NODE_SETTINGS_ECL,(0,t.Ky)()),C=(0,t.PH)(e.lr.FETCH_PAGE_SETTINGS_ECL),d=(0,t.PH)(e.lr.SET_PAGE_SETTINGS_ECL,(0,t.Ky)()),R=(0,t.PH)(e.lr.SAVE_PAGE_SETTINGS_ECL,(0,t.Ky)()),h=(0,t.PH)(e.lr.FETCH_INFO_ECL,(0,t.Ky)()),L=(0,t.PH)(e.lr.SET_INFO_ECL,(0,t.Ky)()),w=(0,t.PH)(e.lr.FETCH_FEES_ECL),D=(0,t.PH)(e.lr.SET_FEES_ECL,(0,t.Ky)()),S=(0,t.PH)(e.lr.FETCH_CHANNELS_ECL,(0,t.Ky)()),k=(0,t.PH)(e.lr.SET_ACTIVE_CHANNELS_ECL,(0,t.Ky)()),E=(0,t.PH)(e.lr.SET_PENDING_CHANNELS_ECL,(0,t.Ky)()),B=(0,t.PH)(e.lr.SET_INACTIVE_CHANNELS_ECL,(0,t.Ky)()),Z=(0,t.PH)(e.lr.FETCH_ONCHAIN_BALANCE_ECL),Y=(0,t.PH)(e.lr.SET_ONCHAIN_BALANCE_ECL,(0,t.Ky)()),ae=(0,t.PH)(e.lr.SET_LIGHTNING_BALANCE_ECL,(0,t.Ky)()),ee=(0,t.PH)(e.lr.SET_CHANNELS_STATUS_ECL,(0,t.Ky)()),ue=(0,t.PH)(e.lr.FETCH_PEERS_ECL),ie=(0,t.PH)(e.lr.SET_PEERS_ECL,(0,t.Ky)()),re=(0,t.PH)(e.lr.SAVE_NEW_PEER_ECL,(0,t.Ky)()),_e=((0,t.PH)(e.lr.NEWLY_ADDED_PEER_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.ADD_PEER_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.DETACH_PEER_ECL,(0,t.Ky)())),x=(0,t.PH)(e.lr.REMOVE_PEER_ECL,(0,t.Ky)()),i=(0,t.PH)(e.lr.GET_NEW_ADDRESS_ECL),u=((0,t.PH)(e.lr.SET_NEW_ADDRESS_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.SAVE_NEW_CHANNEL_ECL,(0,t.Ky)())),c=(0,t.PH)(e.lr.UPDATE_CHANNEL_ECL,(0,t.Ky)()),v=(0,t.PH)(e.lr.CLOSE_CHANNEL_ECL,(0,t.Ky)()),T=(0,t.PH)(e.lr.REMOVE_CHANNEL_ECL,(0,t.Ky)()),I=(0,t.PH)(e.lr.FETCH_PAYMENTS_ECL),y=(0,t.PH)(e.lr.SET_PAYMENTS_ECL,(0,t.Ky)()),n=(0,t.PH)(e.lr.GET_QUERY_ROUTES_ECL,(0,t.Ky)()),_=(0,t.PH)(e.lr.SET_QUERY_ROUTES_ECL,(0,t.Ky)()),V=(0,t.PH)(e.lr.SEND_PAYMENT_ECL,(0,t.Ky)()),N=(0,t.PH)(e.lr.SEND_PAYMENT_STATUS_ECL,(0,t.Ky)()),H=(0,t.PH)(e.lr.FETCH_TRANSACTIONS_ECL),X=(0,t.PH)(e.lr.SET_TRANSACTIONS_ECL,(0,t.Ky)()),he=(0,t.PH)(e.lr.SEND_ONCHAIN_FUNDS_ECL,(0,t.Ky)()),Pe=((0,t.PH)(e.lr.SEND_ONCHAIN_FUNDS_RES_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.FETCH_INVOICES_ECL)),Ee=(0,t.PH)(e.lr.SET_INVOICES_ECL,(0,t.Ky)()),j=(0,t.PH)(e.lr.CREATE_INVOICE_ECL,(0,t.Ky)()),Ve=(0,t.PH)(e.lr.ADD_INVOICE_ECL,(0,t.Ky)()),Me=(0,t.PH)(e.lr.UPDATE_INVOICE_ECL,(0,t.Ky)()),J=(0,t.PH)(e.lr.PEER_LOOKUP_ECL,(0,t.Ky)()),Ie=(0,t.PH)(e.lr.INVOICE_LOOKUP_ECL,(0,t.Ky)()),Oe=((0,t.PH)(e.lr.SET_LOOKUP_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.UPDATE_CHANNEL_STATE_ECL,(0,t.Ky)())),we=(0,t.PH)(e.lr.UPDATE_RELAYED_PAYMENT_ECL,(0,t.Ky)())},3289:(Be,K,p)=>{"use strict";p.d(K,{o:()=>ge});var t=p(6642),e=p(7579),f=p(9646),M=p(5577),a=p(2722),C=p(4004),d=p(262),R=p(2340),h=p(1786),L=p(7731),w=p(7861),D=p(7766),S=p(2994),k=p(2501),E=p(5e3),B=p(8138),Z=p(5620),Y=p(5986),ae=p(62),ee=p(5043),ue=p(1402),ie=p(7998),re=p(9808);let ge=(()=>{class q{constructor(x,i,r,u,c,v,T,I,y){this.actions=x,this.httpClient=i,this.store=r,this.sessionService=u,this.commonService=c,this.logger=v,this.router=T,this.wsService=I,this.location=y,this.CHILD_API_URL=R.T5+"/ecl",this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new e.x,new e.x,new e.x],this.infoFetchECL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_INFO_ECL),(0,M.z)(n=>(this.flgInitialized=!1,this.store.dispatch((0,w.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,w.ac)({payload:L.m6.GET_NODE_INFO})),this.store.dispatch((0,S.QZ)({payload:{action:"FetchInfo",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.GETINFO_API).pipe((0,a.R)(this.actions.pipe((0,t.l4)(L.pg.SET_SELECTED_NODE))),(0,C.U)(_=>(this.logger.info(_),this.initializeRemainingData(_,n.payload.loadPage),this.store.dispatch((0,S.QZ)({payload:{action:"FetchInfo",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.GET_NODE_INFO})),{type:L.lr.SET_INFO_ECL,payload:_||{}})),(0,d.K)(_=>{const V=this.commonService.extractErrorCode(_),N=503===V?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(_);return this.router.navigate(["/error"],{state:{errorCode:V,errorMessage:N}}),this.handleErrorWithoutAlert("FetchInfo",L.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:V,error:N}),(0,f.of)({type:L.pg.VOID})})))))),this.fetchFees=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_FEES_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchFees",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.FEES_API+"/fees").pipe((0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchFees",status:L.Bn.COMPLETED}})),{type:L.lr.SET_FEES_ECL,payload:n||{}})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchFees",L.m6.NO_SPINNER,"Fetching Fees Failed.",n),(0,f.of)({type:L.pg.VOID})))))))),this.fetchPayments=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_PAYMENTS_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchPayments",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.FEES_API+"/payments").pipe((0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchPayments",status:L.Bn.COMPLETED}})),{type:L.lr.SET_PAYMENTS_ECL,payload:n||{}})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchPayments",L.m6.NO_SPINNER,"Fetching Payments Failed.",n),(0,f.of)({type:L.pg.VOID})))))))),this.channelsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_CHANNELS_ECL),(0,M.z)(n=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchChannels",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.CHANNELS_API).pipe((0,C.U)(_=>(this.logger.info(_),this.rawChannelsList=_,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,S.QZ)({payload:{action:"FetchChannels",status:L.Bn.COMPLETED}})),n.payload&&n.payload.fetchPayments&&this.store.dispatch((0,S.cQ)()),{type:L.pg.VOID})),(0,d.K)(_=>(this.handleErrorWithoutAlert("FetchChannels",L.m6.NO_SPINNER,"Fetching Channels Failed.",_),(0,f.of)({type:L.pg.VOID})))))))),this.fetchOnchainBalance=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_ONCHAIN_BALANCE_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchOnchainBalance",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.ON_CHAIN_API+"/balance"))),(0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchOnchainBalance",status:L.Bn.COMPLETED}})),{type:L.lr.SET_ONCHAIN_BALANCE_ECL,payload:n||{}})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchOnchainBalance",L.m6.NO_SPINNER,"Fetching Onchain Balances Failed.",n),(0,f.of)({type:L.pg.VOID}))))),this.peersFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_PEERS_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchPeers",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.PEERS_API).pipe((0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchPeers",status:L.Bn.COMPLETED}})),{type:L.lr.SET_PEERS_ECL,payload:n||[]})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchPeers",L.m6.NO_SPINNER,"Fetching Peers Failed.",n),(0,f.of)({type:L.pg.VOID})))))))),this.getNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.GET_NEW_ADDRESS_ECL),(0,M.z)(()=>(this.store.dispatch((0,w.ac)({payload:L.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+R.NZ.ON_CHAIN_API).pipe((0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,w.uO)({payload:L.m6.GENERATE_NEW_ADDRESS})),{type:L.lr.SET_NEW_ADDRESS_ECL,payload:n})),(0,d.K)(n=>(this.handleErrorWithAlert("GetNewAddress",L.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+R.NZ.ON_CHAIN_API,n),(0,f.of)({type:L.pg.VOID})))))))),this.setNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SET_NEW_ADDRESS_ECL),(0,C.U)(n=>(this.logger.info(n.payload),n.payload))),{dispatch:!1}),this.saveNewPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SAVE_NEW_PEER_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.CONNECT_PEER})),this.store.dispatch((0,S.QZ)({payload:{action:"SaveNewPeer",status:L.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.PEERS_API+(n.payload.id.includes("@")?"?uri=":"?nodeId=")+n.payload.id,{}).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.QZ)({payload:{action:"SaveNewPeer",status:L.Bn.COMPLETED}})),_=_||[],this.store.dispatch((0,w.uO)({payload:L.m6.CONNECT_PEER})),this.store.dispatch((0,S.Z8)({payload:_})),{type:L.lr.NEWLY_ADDED_PEER_ECL,payload:{peer:_.find(V=>V.nodeId===(n.payload.id.includes("@")?n.payload.id.substring(0,n.payload.id.indexOf("@")):n.payload.id))}})),(0,d.K)(_=>(this.handleErrorWithoutAlert("SaveNewPeer",L.m6.CONNECT_PEER,"Peer Connection Failed.",_),(0,f.of)({type:L.pg.VOID})))))))),this.detachPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.DETACH_PEER_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.PEERS_API+"/"+n.payload.nodeId).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,w.uO)({payload:L.m6.DISCONNECT_PEER})),this.store.dispatch((0,w.jW)({payload:"Disconnecting Peer!"})),{type:L.lr.REMOVE_PEER_ECL,payload:{nodeId:n.payload.nodeId}})),(0,d.K)(_=>(this.handleErrorWithAlert("DisconnectPeer",L.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+R.NZ.PEERS_API+"/"+n.payload.nodeId,_),(0,f.of)({type:L.pg.VOID})))))))),this.openNewChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SAVE_NEW_CHANNEL_ECL),(0,M.z)(n=>{this.store.dispatch((0,w.ac)({payload:L.m6.OPEN_CHANNEL})),this.store.dispatch((0,S.QZ)({payload:{action:"SaveNewChannel",status:L.Bn.INITIATED}}));const _={nodeId:n.payload.nodeId,fundingSatoshis:n.payload.amount,announceChannel:!n.payload.private};return n.payload.feeRate&&n.payload.feeRate>0&&(_.fundingFeerateSatByte=n.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+R.NZ.CHANNELS_API,_).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,S.QZ)({payload:{action:"SaveNewChannel",status:L.Bn.COMPLETED}})),this.store.dispatch((0,S.$W)()),this.store.dispatch((0,S.iL)()),this.store.dispatch((0,w.uO)({payload:L.m6.OPEN_CHANNEL})),this.store.dispatch((0,w.jW)({payload:"Channel Added Successfully!"})),{type:L.lr.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,d.K)(V=>(this.handleErrorWithoutAlert("SaveNewChannel",L.m6.OPEN_CHANNEL,"Opening Channel Failed.",V),(0,f.of)({type:L.pg.VOID}))))}))),this.updateChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.UPDATE_CHANNEL_ECL),(0,M.z)(n=>{this.store.dispatch((0,w.ac)({payload:L.m6.UPDATE_CHAN_POLICY}));let _="?feeBaseMsat="+n.payload.baseFeeMsat+"&feeProportionalMillionths="+n.payload.feeRate;return _=n.payload.nodeIds?_+"&nodeIds="+n.payload.nodeIds:n.payload.nodeId?_+"&nodeId="+n.payload.nodeId:n.payload.channelIds?_+"&channelIds="+n.payload.channelIds:_+"&channelId="+n.payload.channelId,this.httpClient.post(this.CHILD_API_URL+R.NZ.CHANNELS_API+"/updateRelayFee"+_,{}).pipe((0,C.U)(V=>(this.logger.info(V),this.store.dispatch((0,w.uO)({payload:L.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,w.jW)(n.payload.nodeIds||n.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:L.lr.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,d.K)(V=>(this.handleErrorWithAlert("UpdateChannels",L.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+R.NZ.CHANNELS_API,V),(0,f.of)({type:L.pg.VOID}))))}))),this.closeChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.CLOSE_CHANNEL_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:n.payload.force?L.m6.FORCE_CLOSE_CHANNEL:L.m6.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+R.NZ.CHANNELS_API+"?channelId="+n.payload.channelId+"&force="+n.payload.force).pipe((0,C.U)(_=>(this.logger.info(_),setTimeout(()=>{this.store.dispatch((0,w.uO)({payload:n.payload.force?L.m6.FORCE_CLOSE_CHANNEL:L.m6.CLOSE_CHANNEL})),this.store.dispatch((0,S.UR)({payload:{fetchPayments:!1}})),this.store.dispatch((0,w.jW)({payload:n.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:L.pg.VOID})),(0,d.K)(_=>(this.handleErrorWithAlert("CloseChannel",n.payload.force?L.m6.FORCE_CLOSE_CHANNEL:L.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+R.NZ.CHANNELS_API,_),(0,f.of)({type:L.pg.VOID})))))))),this.queryRoutesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.GET_QUERY_ROUTES_ECL),(0,M.z)(n=>this.httpClient.get(this.CHILD_API_URL+R.NZ.PAYMENTS_API+"/route?nodeId="+n.payload.nodeId+"&amountMsat="+n.payload.amount).pipe((0,C.U)(_=>(this.logger.info(_),{type:L.lr.SET_QUERY_ROUTES_ECL,payload:_})),(0,d.K)(_=>(this.store.dispatch((0,S.kL)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",L.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+R.NZ.PAYMENTS_API+"/route?nodeId="+n.payload.nodeId+"&amountMsat="+n.payload.amount,_),(0,f.of)({type:L.pg.VOID}))))))),this.setQueryRoutes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SET_QUERY_ROUTES_ECL),(0,C.U)(n=>n.payload)),{dispatch:!1}),this.sendPayment=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SEND_PAYMENT_ECL),(0,M.z)(n=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,w.ac)({payload:L.m6.SEND_PAYMENT})),this.store.dispatch((0,S.QZ)({payload:{action:"SendPayment",status:L.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.PAYMENTS_API,n.payload).pipe((0,C.U)(_=>(this.logger.info(_),this.latestPaymentRes=_,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:L.pg.VOID})),(0,d.K)(_=>(this.logger.error("Error: "+JSON.stringify(_)),n.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",L.m6.SEND_PAYMENT,"Send Payment Failed.",_):this.handleErrorWithAlert("SendPayment",L.m6.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+R.NZ.PAYMENTS_API,_),(0,f.of)({type:L.pg.VOID})))))))),this.transactionsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_TRANSACTIONS_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchTransactions",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.ON_CHAIN_API+"/transactions?count=1000&skip=0"))),(0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchTransactions",status:L.Bn.COMPLETED}})),{type:L.lr.SET_TRANSACTIONS_ECL,payload:n||[]})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchTransactions",L.m6.NO_SPINNER,"Fetching Transactions Failed.",n),(0,f.of)({type:L.pg.VOID}))))),this.SendOnchainFunds=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SEND_ONCHAIN_FUNDS_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.SEND_FUNDS})),this.store.dispatch((0,S.QZ)({payload:{action:"SendOnchainFunds",status:L.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.ON_CHAIN_API,n.payload).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.QZ)({payload:{action:"SendOnchainFunds",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.SEND_FUNDS})),this.store.dispatch((0,S.iL)()),{type:L.lr.SEND_ONCHAIN_FUNDS_RES_ECL,payload:_})),(0,d.K)(_=>(this.handleErrorWithoutAlert("SendOnchainFunds",L.m6.SEND_FUNDS,"Sending Fund Failed.",_),(0,f.of)({type:L.pg.VOID})))))))),this.createInvoice=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.CREATE_INVOICE_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.CREATE_INVOICE})),this.store.dispatch((0,S.QZ)({payload:{action:"CreateInvoice",status:L.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+R.NZ.INVOICES_API,n.payload).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.QZ)({payload:{action:"CreateInvoice",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.CREATE_INVOICE})),_.timestamp=Math.round((new Date).getTime()/1e3),_.expiresAt=Math.round(_.timestamp+n.payload.expireIn),_.description=n.payload.description,_.status="unpaid",setTimeout(()=>{this.store.dispatch((0,w.qR)({payload:{data:{invoice:_,newlyAdded:!0,component:D.R}}}))},200),{type:L.lr.ADD_INVOICE_ECL,payload:_})),(0,d.K)(_=>(this.handleErrorWithoutAlert("CreateInvoice",L.m6.CREATE_INVOICE,"Create Invoice Failed.",_),(0,f.of)({type:L.pg.VOID})))))))),this.invoicesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_INVOICES_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchInvoices",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.INVOICES_API).pipe((0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchInvoices",status:L.Bn.COMPLETED}})),{type:L.lr.SET_INVOICES_ECL,payload:n})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchInvoices",L.m6.NO_SPINNER,"Fetching Invoices Failed.",n),(0,f.of)({type:L.pg.VOID})))))))),this.peerLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.PEER_LOOKUP_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.SEARCHING_NODE})),this.store.dispatch((0,S.QZ)({payload:{action:"Lookup",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.NETWORK_API+"/nodes/"+n.payload).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.QZ)({payload:{action:"Lookup",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.SEARCHING_NODE})),{type:L.lr.SET_LOOKUP_ECL,payload:_})),(0,d.K)(_=>(this.handleErrorWithAlert("Lookup",L.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+R.NZ.NETWORK_API+"/nodes/"+n.payload,_),(0,f.of)({type:L.pg.VOID})))))))),this.invoiceLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.INVOICE_LOOKUP_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.SEARCHING_INVOICE})),this.store.dispatch((0,S.QZ)({payload:{action:"Lookup",status:L.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+R.NZ.INVOICES_API+"/"+n.payload).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.QZ)({payload:{action:"Lookup",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.SEARCHING_INVOICE})),this.store.dispatch((0,S.aL)({payload:_})),{type:L.lr.SET_LOOKUP_ECL,payload:_})),(0,d.K)(_=>(this.handleErrorWithoutAlert("Lookup",L.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",_),this.store.dispatch((0,w.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,f.of)({type:L.pg.VOID})))))))),this.setLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SET_LOOKUP_ECL),(0,C.U)(n=>(this.logger.info(n.payload),n.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.FETCH_PAGE_SETTINGS_ECL),(0,M.z)(()=>(this.store.dispatch((0,S.QZ)({payload:{action:"FetchPageSettings",status:L.Bn.INITIATED}})),this.httpClient.get(R.NZ.PAGE_SETTINGS_API).pipe((0,C.U)(n=>(this.logger.info(n),this.store.dispatch((0,S.QZ)({payload:{action:"FetchPageSettings",status:L.Bn.COMPLETED}})),{type:L.lr.SET_PAGE_SETTINGS_ECL,payload:n||[]})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchPageSettings",L.m6.NO_SPINNER,"Fetching Page Settings Failed.",n),(0,f.of)({type:L.pg.VOID})))))))),this.savePageSettingsCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.lr.SAVE_PAGE_SETTINGS_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:L.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,S.QZ)({payload:{action:"SavePageSettings",status:L.Bn.INITIATED}})),this.httpClient.post(R.NZ.PAGE_SETTINGS_API,n.payload).pipe((0,C.U)(_=>(this.logger.info(_),this.store.dispatch((0,S.QZ)({payload:{action:"SavePageSettings",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,w.jW)({payload:"Page Layout Updated Successfully!"})),{type:L.lr.SET_PAGE_SETTINGS_ECL,payload:_||[]})),(0,d.K)(_=>(this.handleErrorWithAlert("SavePageSettings",L.m6.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",R.NZ.PAGE_SETTINGS_API,_),(0,f.of)({type:L.pg.VOID})))))))),this.handleSendPaymentStatus=n=>{this.store.dispatch((0,S.QZ)({payload:{action:"SendPayment",status:L.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:L.m6.SEND_PAYMENT})),this.store.dispatch((0,S.TM)({payload:this.latestPaymentRes})),this.store.dispatch((0,S.UR)({payload:{fetchPayments:!0}})),this.store.dispatch((0,w.jW)({payload:n}))},this.store.select(k.yA).pipe((0,a.R)(this.unSubs[0])).subscribe(n=>{n.FetchInfo.status!==L.Bn.COMPLETED&&n.FetchInfo.status!==L.Bn.ERROR||n.FetchFees.status!==L.Bn.COMPLETED&&n.FetchFees.status!==L.Bn.ERROR||n.FetchOnchainBalance.status!==L.Bn.COMPLETED&&n.FetchOnchainBalance.status!==L.Bn.ERROR||n.FetchChannels.status!==L.Bn.COMPLETED&&n.FetchChannels.status!==L.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,w.uO)({payload:L.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,a.R)(this.unSubs[1])).subscribe(n=>{var _;this.logger.info("Received new message from the service: "+JSON.stringify(n));let V="";if(n)switch(n.type){case L.$v.PAYMENT_SENT:n&&n.id&&this.latestPaymentRes===n.id&&(this.flgReceivedPaymentUpdateFromWS=!0,V="Payment Sent: "+(n.paymentHash?"with payment hash "+n.paymentHash:JSON.stringify(n)),this.handleSendPaymentStatus(V));break;case L.$v.PAYMENT_FAILED:n&&n.id&&this.latestPaymentRes===n.id&&(this.flgReceivedPaymentUpdateFromWS=!0,V="Payment Failed: "+(n.failures&&n.failures.length&&n.failures.length>0&&n.failures[0].t?n.failures[0].t:n.failures&&n.failures.length&&n.failures.length>0&&n.failures[0].e&&n.failures[0].e.failureMessage?n.failures[0].e.failureMessage:JSON.stringify(n)),this.handleSendPaymentStatus(V));break;case L.$v.PAYMENT_RECEIVED:this.store.dispatch((0,S.aL)({payload:n}));break;case L.$v.PAYMENT_RELAYED:delete n.source,this.store.dispatch((0,S.ti)({payload:n}));break;case L.$v.CHANNEL_STATE_CHANGED:"NORMAL"===n.currentState||"CLOSED"===n.currentState?(this.rawChannelsList=null===(_=this.rawChannelsList)||void 0===_?void 0:_.map(N=>(N.channelId===n.channelId&&N.nodeId===n.remoteNodeId&&(N.state=n.currentState),N)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,S.DJ)({payload:n}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(n))}})}setChannelsAndStatusAndBalances(){let x=0,i=0,r=0,u={localBalance:0,remoteBalance:0},c=[];const v=[],T=[],I={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((y,n)=>{var _,V,N,H,X;y&&("NORMAL"===y.state?(x=(y.toLocal||0)+(y.toRemote||0),i+=y.toLocal||0,r+=y.toRemote||0,y.balancedness=0===x?1:+(1-Math.abs(((y.toLocal||0)-(y.toRemote||0))/x)).toFixed(3),c.push(y),I.active.channels=I.active.channels+1,I.active.capacity=I.active.capacity+(y.toLocal||0)):(null===(_=y.state)||void 0===_?void 0:_.includes("WAIT"))||(null===(V=y.state)||void 0===V?void 0:V.includes("CLOSING"))||(null===(N=y.state)||void 0===N?void 0:N.includes("SYNCING"))?(y.state=null===(H=y.state)||void 0===H?void 0:H.replace(/_/g," "),v.push(y),I.pending.channels=I.pending.channels+1,I.pending.capacity=I.pending.capacity+(y.toLocal||0)):(y.state=null===(X=y.state)||void 0===X?void 0:X.replace(/_/g," "),T.push(y),I.inactive.channels=I.inactive.channels+1,I.inactive.capacity=I.inactive.capacity+(y.toLocal||0)))}),u={localBalance:i,remoteBalance:r},c=this.commonService.sortDescByKey(c,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(c)),this.logger.info("Pending Channels: "+JSON.stringify(v)),this.logger.info("Inactive Channels: "+JSON.stringify(T)),this.logger.info("Lightning Balances: "+JSON.stringify(u)),this.logger.info("Channels Status: "+JSON.stringify(I)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:c,pending:v,inactive:T,balances:u,status:I})),this.store.dispatch((0,S.eN)({payload:c})),this.store.dispatch((0,S.TW)({payload:v})),this.store.dispatch((0,S.i)({payload:T})),this.store.dispatch((0,S.On)({payload:u})),this.store.dispatch((0,S.HG)({payload:I}))}initializeRemainingData(x,i){this.sessionService.setItem("eclUnlocked","true");const r={identity_pubkey:x.nodeId,alias:x.alias,testnet:"testnet"===x.network,chains:x.publicAddresses,uris:x.uris,version:x.version,numberOfPendingChannels:0};this.store.dispatch((0,w.ac)({payload:L.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,w._V)({payload:r}));let u=this.location.path();u.includes("/lnd/")?u=null==u?void 0:u.replace("/lnd/","/ecl/"):u.includes("/cln/")&&(u=null==u?void 0:u.replace("/cln/","/ecl/")),(u.includes("/login")||u.includes("/error")||""===u||"HOME"===i||u.includes("?access-key="))&&(u="/ecl/home"),this.router.navigate([u]),this.store.dispatch((0,S.wD)()),this.store.dispatch((0,S.WM)()),this.store.dispatch((0,S.UR)({payload:{fetchPayments:!0}})),this.store.dispatch((0,S.SN)()),this.store.dispatch((0,S.iL)()),this.store.dispatch((0,S.$W)())}handleErrorWithoutAlert(x,i,r,u){this.logger.error("ERROR IN: "+x+"\n"+JSON.stringify(u)),401===u.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,w.ts)()),this.store.dispatch((0,w.kS)()),this.store.dispatch((0,w.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,w.uO)({payload:i})),this.store.dispatch((0,S.QZ)({payload:{action:x,status:L.Bn.ERROR,statusCode:u.status.toString(),message:this.commonService.extractErrorMessage(u,r)}})))}handleErrorWithAlert(x,i,r,u,c){if(this.logger.error(c),401===c.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,w.ts)()),this.store.dispatch((0,w.kS)()),this.store.dispatch((0,w.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,w.uO)({payload:i}));const v=this.commonService.extractErrorMessage(c);this.store.dispatch((0,w.qR)({payload:{data:{type:"ERROR",alertTitle:r,message:{code:c.status,message:v,URL:u},component:h.H}}})),this.store.dispatch((0,S.QZ)({payload:{action:x,status:L.Bn.ERROR,statusCode:c.status.toString(),message:v,URL:u}}))}}ngOnDestroy(){this.unSubs.forEach(x=>{x.next(null),x.complete()})}}return q.\u0275fac=function(x){return new(x||q)(E.LFG(t.eX),E.LFG(B.eN),E.LFG(Z.yh),E.LFG(Y.m),E.LFG(ae.v),E.LFG(ee.mQ),E.LFG(ue.F0),E.LFG(ie.d),E.LFG(re.Ye))},q.\u0275prov=E.Yz7({token:q,factory:q.\u0275fac}),q})()},2501:(Be,K,p)=>{"use strict";p.d(K,{Bo:()=>k,Ef:()=>S,JG:()=>L,LR:()=>f,PP:()=>h,T$:()=>C,Xz:()=>w,dx:()=>D,kY:()=>E,nF:()=>M,yA:()=>R,yD:()=>a});var t=p(5620);const e=(0,t.ZF)("ecl"),f=(0,t.P1)(e,B=>B.nodeSettings),M=(0,t.P1)(e,B=>({pageSettings:B.pageSettings,apiCallStatus:B.apisCallStatus.FetchPageSettings})),a=(0,t.P1)(e,B=>B.information),C=(0,t.P1)(e,B=>({information:B.information,apiCallStatus:B.apisCallStatus.FetchInfo})),R=((0,t.P1)(e,B=>B.apisCallStatus.FetchInfo),(0,t.P1)(e,B=>B.apisCallStatus)),h=(0,t.P1)(e,B=>({payments:B.payments,apiCallStatus:B.apisCallStatus.FetchPayments})),L=(0,t.P1)(e,B=>({fees:B.fees,apiCallStatus:B.apisCallStatus.FetchFees})),w=(0,t.P1)(e,B=>({activeChannels:B.activeChannels,pendingChannels:B.pendingChannels,inactiveChannels:B.inactiveChannels,lightningBalance:B.lightningBalance,channelsStatus:B.channelsStatus,apiCallStatus:B.apisCallStatus.FetchChannels})),D=(0,t.P1)(e,B=>({transactions:B.transactions,apiCallStatus:B.apisCallStatus.FetchTransactions})),S=(0,t.P1)(e,B=>({invoices:B.invoices,apiCallStatus:B.apisCallStatus.FetchInvoices})),k=(0,t.P1)(e,B=>({peers:B.peers,apiCallStatus:B.apisCallStatus.FetchPeers})),E=(0,t.P1)(e,B=>({onchainBalance:B.onchainBalance,apiCallStatus:B.apisCallStatus.FetchOnchainBalance}))},7766:(Be,K,p)=>{"use strict";p.d(K,{R:()=>Ee});var t=p(8966),e=p(2687),f=p(7579),M=p(2722),a=p(7731),C=p(2501),d=p(5e3),R=p(5043),h=p(62),L=p(7261),w=p(5620),D=p(7093),S=p(9808),k=p(3322),E=p(159),B=p(9224),Z=p(9546),Y=p(7423),ae=p(4834),ee=p(773),ue=p(3390),ie=p(6895);function re(j,Ve){if(1&j&&d._UZ(0,"qr-code",29),2&j){const Me=d.oxw();d.Q6J("value",null==Me.invoice?null:Me.invoice.serialized)("size",Me.qrWidth)("errorCorrectionLevel","L")}}function ge(j,Ve){1&j&&(d.TgZ(0,"span",30),d._uU(1,"N/A"),d.qZA())}function q(j,Ve){if(1&j&&d._UZ(0,"qr-code",29),2&j){const Me=d.oxw();d.Q6J("value",null==Me.invoice?null:Me.invoice.serialized)("size",Me.qrWidth)("errorCorrectionLevel","L")}}function _e(j,Ve){1&j&&(d.TgZ(0,"span",31),d._uU(1,"QR Code Not Applicable"),d.qZA())}function x(j,Ve){1&j&&d._UZ(0,"mat-divider",32),2&j&&d.Q6J("inset",!0)}function i(j,Ve){1&j&&(d.ynx(0),d._uU(1," (zero amount) "),d.BQk())}function r(j,Ve){1&j&&d._UZ(0,"span",38)}const u=function(){return[]};function c(j,Ve){if(1&j&&(d.TgZ(0,"div",34)(1,"div",35)(2,"span",36),d._uU(3),d.ALo(4,"number"),d.qZA(),d.YNc(5,r,1,0,"span",37),d.qZA()()),2&j){const Me=d.oxw(2);d.xp6(3),d.hij("",d.lcZ(4,2,null==Me.invoice?null:Me.invoice.amountSettled)," Sats"),d.xp6(2),d.Q6J("ngForOf",d.DdM(4,u).constructor(35))}}function v(j,Ve){if(1&j&&(d.TgZ(0,"div"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&j){const Me=d.oxw(2);d.xp6(1),d.hij("",d.lcZ(2,1,null==Me.invoice?null:Me.invoice.amountSettled)," Sats")}}function T(j,Ve){if(1&j&&(d.ynx(0),d.YNc(1,c,6,5,"div",33),d.YNc(2,v,3,3,"div",19),d.BQk()),2&j){const Me=d.oxw();d.xp6(1),d.Q6J("ngIf",Me.flgInvoicePaid),d.xp6(1),d.Q6J("ngIf",!Me.flgInvoicePaid)}}function I(j,Ve){1&j&&(d.TgZ(0,"span"),d._uU(1,"-"),d.qZA())}function y(j,Ve){1&j&&d._UZ(0,"mat-spinner",40),2&j&&d.Q6J("diameter",20)}function n(j,Ve){if(1&j&&(d.ynx(0),d.YNc(1,I,2,0,"span",19),d.YNc(2,y,1,1,"mat-spinner",39),d.BQk()),2&j){const Me=d.oxw();d.xp6(1),d.Q6J("ngIf","unpaid"!==(null==Me.invoice?null:Me.invoice.status)||!Me.flgVersionCompatible),d.xp6(1),d.Q6J("ngIf","unpaid"===(null==Me.invoice?null:Me.invoice.status)&&Me.flgVersionCompatible)}}function _(j,Ve){if(1&j&&(d.TgZ(0,"div"),d._UZ(1,"mat-divider",20),d.TgZ(2,"div",15)(3,"div",41)(4,"h4",17),d._uU(5,"Date Expiry"),d.qZA(),d.TgZ(6,"span",18),d._uU(7),d.ALo(8,"date"),d.qZA()(),d.TgZ(9,"div",42)(10,"h4",17),d._uU(11,"Date Settled"),d.qZA(),d.TgZ(12,"span",21),d._uU(13),d.ALo(14,"date"),d.qZA()()(),d._UZ(15,"mat-divider",20),d.TgZ(16,"div",15)(17,"div",22)(18,"h4",17),d._uU(19,"Payment Hash"),d.qZA(),d.TgZ(20,"span",21),d._uU(21),d.qZA()()(),d._UZ(22,"mat-divider",20),d.TgZ(23,"div",15)(24,"div",22)(25,"h4",17),d._uU(26,"Node ID"),d.qZA(),d.TgZ(27,"span",21),d._uU(28),d.qZA()()(),d._UZ(29,"mat-divider",20),d.qZA()),2&j){const Me=d.oxw();d.xp6(7),d.Oqu(d.xi3(8,4,1e3*(null==Me.invoice?null:Me.invoice.expiresAt),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(d.xi3(14,7,1e3*(null==Me.invoice?null:Me.invoice.receivedAt),"dd/MMM/y HH:mm")),d.xp6(8),d.Oqu(null==Me.invoice?null:Me.invoice.paymentHash),d.xp6(7),d.Oqu(null==Me.invoice?null:Me.invoice.nodeId)}}function V(j,Ve){1&j&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function N(j,Ve){1&j&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function H(j,Ve){if(1&j){const Me=d.EpF();d.TgZ(0,"button",43),d.NdJ("copied",function(Ie){return d.CHM(Me),d.oxw().onCopyPayment(Ie)}),d._uU(1,"Copy Invoice"),d.qZA()}if(2&j){const Me=d.oxw();d.Q6J("payload",null==Me.invoice?null:Me.invoice.serialized)}}function X(j,Ve){if(1&j){const Me=d.EpF();d.TgZ(0,"button",44),d.NdJ("click",function(){return d.CHM(Me),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const he=function(j){return{"display-none":j}},be=function(j){return{"xs-scroll-y":j}},Pe=function(j,Ve){return{"mt-2":j,"mt-1":Ve}};let Ee=(()=>{class j{constructor(Me,J,Ie,ut,Oe,we){this.dialogRef=Me,this.data=J,this.logger=Ie,this.commonService=ut,this.snackBar=Oe,this.store=we,this.faReceipt=e.dLy,this.faExclamationTriangle=e.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(C.yD).pipe((0,M.R)(this.unSubs[0])).subscribe(Me=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(Me.version,"0.5.0")}),this.store.select(C.Ef).pipe((0,M.R)(this.unSubs[1])).subscribe(Me=>{const J=this.invoice.status,Ie=Me.invoices&&Me.invoices.length>0?Me.invoices:[],ut=(null==Ie?void 0:Ie.find(Oe=>Oe.paymentHash===this.invoice.paymentHash))||null;ut&&(this.invoice=ut),J!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(Me)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(Me){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+Me)}ngOnDestroy(){this.unSubs.forEach(Me=>{Me.next(null),Me.complete()})}}return j.\u0275fac=function(Me){return new(Me||j)(d.Y36(t.so),d.Y36(t.WI),d.Y36(R.mQ),d.Y36(h.v),d.Y36(L.ux),d.Y36(w.yh))},j.\u0275cmp=d.Xpm({type:j,selectors:[["rtl-ecl-invoice-information"]],decls:68,vars:42,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","40"],["fxFlex","60"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Me,J){if(1&Me&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,re,1,3,"qr-code",2),d.YNc(3,ge,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.qZA()(),d.TgZ(10,"button",9),d.NdJ("click",function(){return J.onClose()}),d._uU(11,"X"),d.qZA()(),d.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),d.YNc(15,q,1,3,"qr-code",2),d.YNc(16,_e,2,0,"span",13),d.qZA(),d.YNc(17,x,1,1,"mat-divider",14),d.TgZ(18,"div",15)(19,"div",16)(20,"h4",17),d._uU(21,"Amount Requested"),d.qZA(),d.TgZ(22,"span",18),d._uU(23),d.ALo(24,"number"),d.YNc(25,i,2,0,"ng-container",19),d.qZA()(),d.TgZ(26,"div",16)(27,"h4",17),d._uU(28,"Amount Settled"),d.qZA(),d.TgZ(29,"span",18),d.YNc(30,T,3,2,"ng-container",19),d.YNc(31,n,3,2,"ng-container",19),d.qZA()()(),d._UZ(32,"mat-divider",20),d.TgZ(33,"div",15)(34,"div",16)(35,"h4",17),d._uU(36,"Date Created"),d.qZA(),d.TgZ(37,"span",21),d._uU(38),d.ALo(39,"date"),d.qZA()(),d.TgZ(40,"div",16)(41,"h4",17),d._uU(42,"Status"),d.qZA(),d.TgZ(43,"span",21),d._uU(44),d.ALo(45,"titlecase"),d.qZA()()(),d._UZ(46,"mat-divider",20),d.TgZ(47,"div",15)(48,"div",22)(49,"h4",17),d._uU(50,"Description"),d.qZA(),d.TgZ(51,"span",18),d._uU(52),d.qZA()()(),d._UZ(53,"mat-divider",20),d.TgZ(54,"div",15)(55,"div",22)(56,"h4",17),d._uU(57,"Invoice"),d.qZA(),d.TgZ(58,"span",21),d._uU(59),d.qZA()()(),d.YNc(60,_,30,10,"div",19),d.TgZ(61,"div",23)(62,"button",24),d.NdJ("click",function(){return J.onShowAdvanced()}),d.YNc(63,V,2,0,"p",25),d.YNc(64,N,2,0,"ng-template",null,26,d.W1O),d.qZA(),d.YNc(66,H,2,1,"button",27),d.YNc(67,X,2,0,"button",28),d.qZA()()()()()),2&Me){const Ie=d.MAs(65);d.xp6(1),d.Q6J("fxLayoutAlign",null!=J.invoice&&J.invoice.serialized&&""!==(null==J.invoice?null:J.invoice.serialized)?"center start":"center center")("ngClass",d.VKq(33,he,J.screenSize===J.screenSizeEnum.XS||J.screenSize===J.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==J.invoice?null:J.invoice.serialized)&&""!==(null==J.invoice?null:J.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",!(null!=J.invoice&&J.invoice.serialized)||""===(null==J.invoice?null:J.invoice.serialized)),d.xp6(4),d.Q6J("icon",J.faReceipt),d.xp6(2),d.Oqu(J.screenSize===J.screenSizeEnum.XS?J.newlyAdded?"Created":"Invoice":J.newlyAdded?"Invoice Created":"Invoice Information"),d.xp6(3),d.Q6J("ngClass",d.VKq(35,be,J.screenSize===J.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=J.invoice&&J.invoice.serialized&&""!==(null==J.invoice?null:J.invoice.serialized)?"center start":"center center")("ngClass",d.VKq(37,he,J.screenSize!==J.screenSizeEnum.XS&&J.screenSize!==J.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==J.invoice?null:J.invoice.serialized)&&""!==(null==J.invoice?null:J.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",!(null!=J.invoice&&J.invoice.serialized)||""===(null==J.invoice?null:J.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",J.screenSize===J.screenSizeEnum.XS||J.screenSize===J.screenSizeEnum.SM),d.xp6(6),d.hij("",d.lcZ(24,26,(null==J.invoice?null:J.invoice.amount)||0)," Sats"),d.xp6(2),d.Q6J("ngIf",!(null!=J.invoice&&J.invoice.amount)||"0"===(null==J.invoice?null:J.invoice.amount)),d.xp6(5),d.Q6J("ngIf",null==J.invoice?null:J.invoice.amountSettled),d.xp6(1),d.Q6J("ngIf",!(null!=J.invoice&&J.invoice.amountSettled)),d.xp6(7),d.Oqu(d.xi3(39,28,1e3*(null==J.invoice?null:J.invoice.timestamp),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(d.lcZ(45,31,null==J.invoice?null:J.invoice.status)),d.xp6(8),d.Oqu((null==J.invoice?null:J.invoice.description)||"-"),d.xp6(7),d.Oqu((null==J.invoice?null:J.invoice.serialized)||"N/A"),d.xp6(1),d.Q6J("ngIf",J.showAdvanced),d.xp6(1),d.Q6J("ngClass",d.WLB(39,Pe,!J.showAdvanced,J.showAdvanced)),d.xp6(2),d.Q6J("ngIf",!J.showAdvanced)("ngIfElse",Ie),d.xp6(3),d.Q6J("ngIf",(null==J.invoice?null:J.invoice.serialized)&&""!==(null==J.invoice?null:J.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",!(null!=J.invoice&&J.invoice.serialized)||""===(null==J.invoice?null:J.invoice.serialized))}},directives:[D.xw,D.Wh,D.yH,S.mk,k.oO,S.O5,E.uU,B.dk,Z.BN,Y.lW,B.dn,ae.d,S.sg,ee.Ou,ue.h,ie.y],pipes:[S.JJ,S.uU,S.rS],styles:[""]}),j})()},6523:(Be,K,p)=>{"use strict";p.d(K,{$A:()=>ui,$W:()=>w,BL:()=>I,B_:()=>X,Bl:()=>ie,CX:()=>L,Cp:()=>_,EK:()=>B,El:()=>S,Fr:()=>ke,HI:()=>we,JT:()=>a,Jl:()=>re,Jo:()=>Re,Lf:()=>J,Ll:()=>M,Ly:()=>Ie,Nr:()=>Ee,OG:()=>y,PC:()=>f,QJ:()=>bt,RX:()=>ue,Rd:()=>Z,Rv:()=>ge,SN:()=>ee,Sf:()=>Zt,TW:()=>r,UH:()=>ut,UR:()=>_e,Vv:()=>n,WM:()=>Pe,WO:()=>ei,Wi:()=>fe,YP:()=>ae,YX:()=>T,Z7:()=>i,Z8:()=>D,Zh:()=>u,_E:()=>te,_L:()=>c,aL:()=>j,as:()=>x,cQ:()=>Oe,dV:()=>xe,eF:()=>R,fu:()=>ft,kL:()=>Qt,ks:()=>q,mC:()=>Me,n7:()=>Ot,oV:()=>ce,pW:()=>v,pd:()=>d,qY:()=>Ve,sQ:()=>h,tb:()=>H,u0:()=>it,vV:()=>he,wD:()=>C,xG:()=>Yt,y2:()=>Dt,yZ:()=>Nt,z:()=>E});var t=p(5620),e=p(7731);const f=(0,t.PH)(e.uR.UPDATE_API_CALL_STATUS_LND,(0,t.Ky)()),M=(0,t.PH)(e.uR.RESET_LND_STORE,(0,t.Ky)()),a=(0,t.PH)(e.uR.SET_CHILD_NODE_SETTINGS_LND,(0,t.Ky)()),C=(0,t.PH)(e.uR.FETCH_PAGE_SETTINGS_LND),d=(0,t.PH)(e.uR.SET_PAGE_SETTINGS_LND,(0,t.Ky)()),R=(0,t.PH)(e.uR.SAVE_PAGE_SETTINGS_LND,(0,t.Ky)()),h=(0,t.PH)(e.uR.FETCH_INFO_LND,(0,t.Ky)()),L=(0,t.PH)(e.uR.SET_INFO_LND,(0,t.Ky)()),w=(0,t.PH)(e.uR.FETCH_PEERS_LND),D=(0,t.PH)(e.uR.SET_PEERS_LND,(0,t.Ky)()),S=(0,t.PH)(e.uR.SAVE_NEW_PEER_LND,(0,t.Ky)()),E=((0,t.PH)(e.uR.NEWLY_ADDED_PEER_LND,(0,t.Ky)()),(0,t.PH)(e.uR.DETACH_PEER_LND,(0,t.Ky)())),B=(0,t.PH)(e.uR.REMOVE_PEER_LND,(0,t.Ky)()),Z=(0,t.PH)(e.uR.SAVE_NEW_INVOICE_LND,(0,t.Ky)()),ae=((0,t.PH)(e.uR.NEWLY_SAVED_INVOICE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.ADD_INVOICE_LND,(0,t.Ky)())),ee=(0,t.PH)(e.uR.FETCH_FEES_LND),ue=(0,t.PH)(e.uR.SET_FEES_LND,(0,t.Ky)()),ie=(0,t.PH)(e.uR.FETCH_BLOCKCHAIN_BALANCE_LND),re=(0,t.PH)(e.uR.SET_BLOCKCHAIN_BALANCE_LND,(0,t.Ky)()),ge=(0,t.PH)(e.uR.FETCH_NETWORK_LND),q=(0,t.PH)(e.uR.SET_NETWORK_LND,(0,t.Ky)()),_e=(0,t.PH)(e.uR.FETCH_CHANNELS_LND),x=(0,t.PH)(e.uR.SET_CHANNELS_LND,(0,t.Ky)()),i=(0,t.PH)(e.uR.FETCH_PENDING_CHANNELS_LND),r=(0,t.PH)(e.uR.SET_PENDING_CHANNELS_LND,(0,t.Ky)()),u=(0,t.PH)(e.uR.FETCH_CLOSED_CHANNELS_LND),c=(0,t.PH)(e.uR.SET_CLOSED_CHANNELS_LND,(0,t.Ky)()),v=(0,t.PH)(e.uR.UPDATE_CHANNEL_LND,(0,t.Ky)()),T=(0,t.PH)(e.uR.SAVE_NEW_CHANNEL_LND,(0,t.Ky)()),I=(0,t.PH)(e.uR.CLOSE_CHANNEL_LND,(0,t.Ky)()),y=(0,t.PH)(e.uR.REMOVE_CHANNEL_LND,(0,t.Ky)()),n=(0,t.PH)(e.uR.BACKUP_CHANNELS_LND,(0,t.Ky)()),_=(0,t.PH)(e.uR.VERIFY_CHANNEL_LND,(0,t.Ky)()),H=((0,t.PH)(e.uR.BACKUP_CHANNELS_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.VERIFY_CHANNEL_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.RESTORE_CHANNELS_LIST_LND)),X=(0,t.PH)(e.uR.SET_RESTORE_CHANNELS_LIST_LND,(0,t.Ky)()),he=(0,t.PH)(e.uR.RESTORE_CHANNELS_LND,(0,t.Ky)()),Pe=((0,t.PH)(e.uR.RESTORE_CHANNELS_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.FETCH_INVOICES_LND,(0,t.Ky)())),Ee=(0,t.PH)(e.uR.SET_INVOICES_LND,(0,t.Ky)()),j=(0,t.PH)(e.uR.UPDATE_INVOICE_LND,(0,t.Ky)()),Ve=(0,t.PH)(e.uR.UPDATE_PAYMENT_LND,(0,t.Ky)()),Me=(0,t.PH)(e.uR.FETCH_TRANSACTIONS_LND),J=(0,t.PH)(e.uR.SET_TRANSACTIONS_LND,(0,t.Ky)()),Ie=(0,t.PH)(e.uR.FETCH_UTXOS_LND),ut=(0,t.PH)(e.uR.SET_UTXOS_LND,(0,t.Ky)()),Oe=(0,t.PH)(e.uR.FETCH_PAYMENTS_LND,(0,t.Ky)()),we=(0,t.PH)(e.uR.SET_PAYMENTS_LND,(0,t.Ky)()),ce=(0,t.PH)(e.uR.SEND_PAYMENT_LND,(0,t.Ky)()),xe=((0,t.PH)(e.uR.SEND_PAYMENT_STATUS_LND,(0,t.Ky)()),(0,t.PH)(e.uR.FETCH_GRAPH_NODE_LND,(0,t.Ky)())),te=((0,t.PH)(e.uR.SET_GRAPH_NODE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.GET_NEW_ADDRESS_LND,(0,t.Ky)())),fe=((0,t.PH)(e.uR.SET_NEW_ADDRESS_LND,(0,t.Ky)()),(0,t.PH)(e.uR.SET_CHANNEL_TRANSACTION_LND,(0,t.Ky)())),ft=((0,t.PH)(e.uR.SET_CHANNEL_TRANSACTION_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.GEN_SEED_LND,(0,t.Ky)())),Dt=((0,t.PH)(e.uR.GEN_SEED_RESPONSE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.INIT_WALLET_LND,(0,t.Ky)())),Yt=((0,t.PH)(e.uR.INIT_WALLET_RESPONSE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.UNLOCK_WALLET_LND,(0,t.Ky)())),Zt=(0,t.PH)(e.uR.PEER_LOOKUP_LND,(0,t.Ky)()),ui=(0,t.PH)(e.uR.CHANNEL_LOOKUP_LND,(0,t.Ky)()),Ot=(0,t.PH)(e.uR.INVOICE_LOOKUP_LND,(0,t.Ky)()),Nt=(0,t.PH)(e.uR.PAYMENT_LOOKUP_LND,(0,t.Ky)()),it=((0,t.PH)(e.uR.SET_LOOKUP_LND,(0,t.Ky)()),(0,t.PH)(e.uR.GET_FORWARDING_HISTORY_LND,(0,t.Ky)())),bt=(0,t.PH)(e.uR.SET_FORWARDING_HISTORY_LND,(0,t.Ky)()),ei=(0,t.PH)(e.uR.GET_QUERY_ROUTES_LND,(0,t.Ky)()),Qt=(0,t.PH)(e.uR.SET_QUERY_ROUTES_LND,(0,t.Ky)()),Re=(0,t.PH)(e.uR.GET_ALL_LIGHTNING_TRANSATIONS_LND),ke=(0,t.PH)(e.uR.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,t.Ky)())},711:(Be,K,p)=>{"use strict";p.d(K,{l:()=>_e});var t=p(6642),e=p(7579),f=p(9646),M=p(5577),a=p(2722),C=p(4004),d=p(262),R=p(1365),h=p(2340),L=p(8627),w=p(1786),D=p(7731),S=p(7861),k=p(6523),E=p(6529),B=p(5e3),Z=p(8138),Y=p(5620),ae=p(5043),ee=p(62),ue=p(5986),ie=p(8966),re=p(1402),ge=p(7998),q=p(9808);let _e=(()=>{class x{constructor(r,u,c,v,T,I,y,n,_,V){this.actions=r,this.httpClient=u,this.store=c,this.logger=v,this.commonService=T,this.sessionService=I,this.dialog=y,this.router=n,this.wsService=_,this.location=V,this.CHILD_API_URL=h.T5+"/lnd",this.invoicesPageSize=D.IV,this.paymentsPageSize=D.IV,this.flgInitialized=!1,this.unSubs=[new e.x,new e.x],this.infoFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_INFO_LND),(0,M.z)(N=>(this.flgInitialized=!1,this.store.dispatch((0,S.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,S.ts)()),this.store.dispatch((0,S.ac)({payload:D.m6.GET_NODE_INFO})),this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.GETINFO_API).pipe((0,a.R)(this.actions.pipe((0,t.l4)(D.pg.SET_SELECTED_NODE))),(0,C.U)(H=>(this.logger.info(H),H.chains&&H.chains.length&&H.chains[0]&&("string"==typeof H.chains[0]&&H.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof H.chains[0]&&H.chains[0].hasOwnProperty("chain")&&H.chains[0].chain&&H.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.ts)()),this.store.dispatch((0,S.qR)({payload:{data:{type:D.n_.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:D.pg.LOGOUT}):H.identity_pubkey?(H.lnImplementation="LND",this.initializeRemainingData(H,N.payload.loadPage),this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.ts)()),{type:D.uR.SET_INFO_LND,payload:H||{}}):(this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.ts)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:D.uR.SET_INFO_LND,payload:{}}))),(0,d.K)(H=>{if("string"==typeof H.error.error&&H.error.error.includes("Not Found")||"string"==typeof H.error.error&&H.error.error.includes("wallet locked")||502===H.status&&!H.error.message.includes("Bad or Missing Macaroon"))this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),this.handleErrorWithoutAlert("FetchInfo",D.m6.GET_NODE_INFO,"Fetching Node Info Failed.",H);else if("string"==typeof H.error.error&&H.error.error.includes("starting up")&&500===H.status)setTimeout(()=>{this.store.dispatch((0,k.sQ)({payload:{loadPage:"HOME"}}))},2e3);else{const X=this.commonService.extractErrorCode(H),he=503===X?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(H);this.router.navigate(["/error"],{state:{errorCode:X,errorMessage:he}}),this.handleErrorWithoutAlert("FetchInfo",D.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:X,error:he})}return(0,f.of)({type:D.pg.VOID})})))))),this.peersFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PEERS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPeers",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PEERS_API).pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchPeers",status:D.Bn.COMPLETED}})),{type:D.uR.SET_PEERS_LND,payload:N||[]})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchPeers",D.m6.NO_SPINNER,"Fetching Peers Failed.",N),(0,f.of)({type:D.pg.VOID})))))))),this.saveNewPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_NEW_PEER_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.CONNECT_PEER})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewPeer",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.PEERS_API,{pubkey:N.payload.pubkey,host:N.payload.host,perm:N.payload.perm}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewPeer",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:D.m6.CONNECT_PEER})),this.store.dispatch((0,k.Z8)({payload:H||[]})),{type:D.uR.NEWLY_ADDED_PEER_LND,payload:{peer:H[0]}})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SaveNewPeer",D.m6.CONNECT_PEER,"Peer Connection Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.detachPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.DETACH_PEER_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+h.NZ.PEERS_API+"/"+N.payload.pubkey).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.DISCONNECT_PEER})),this.store.dispatch((0,S.jW)({payload:"Peer Disconnected Successfully."})),{type:D.uR.REMOVE_PEER_LND,payload:{pubkey:N.payload.pubkey}})),(0,d.K)(H=>(this.handleErrorWithAlert("DetachPeer",D.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+h.NZ.PEERS_API+"/"+N.payload.pubkey,H),(0,f.of)({type:D.pg.VOID})))))))),this.saveNewInvoice=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_NEW_INVOICE_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewInvoice",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.INVOICES_API,{memo:N.payload.memo,value:N.payload.value,private:N.payload.private,expiry:N.payload.expiry,is_amp:N.payload.is_amp}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewInvoice",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:N.payload.pageSize,reversed:!0}})),N.payload.openModal?(H.memo=N.payload.memo,H.value=N.payload.value,H.expiry=N.payload.expiry,H.private=N.payload.private,H.is_amp=N.payload.is_amp,H.cltv_expiry="144",H.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,S.qR)({payload:{data:{invoice:H,newlyAdded:!0,component:L.v}}}))},200),{type:D.pg.CLOSE_SPINNER,payload:N.payload.uiMessage}):{type:D.uR.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:H.payment_request}})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SaveNewInvoice",N.payload.uiMessage,"Add Invoice Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.openNewChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_NEW_CHANNEL_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.OPEN_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewChannel",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_API,{node_pubkey:N.payload.selectedPeerPubkey,local_funding_amount:N.payload.fundingAmount,private:N.payload.private,trans_type:N.payload.transType,trans_type_value:N.payload.transTypeValue,spend_unconfirmed:N.payload.spendUnconfirmed}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewChannel",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:D.m6.OPEN_CHANNEL})),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Vv)({payload:{uiMessage:D.m6.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:D.uR.FETCH_PENDING_CHANNELS_LND})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SaveNewChannel",D.m6.OPEN_CHANNEL,"Opening Channel Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.updateChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.UPDATE_CHANNEL_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/chanPolicy",{baseFeeMsat:N.payload.baseFeeMsat,feeRate:N.payload.feeRate,timeLockDelta:N.payload.timeLockDelta,max_htlc_msat:N.payload.maxHtlcMsat,min_htlc_msat:N.payload.minHtlcMsat,chanPoint:N.payload.chanPoint}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,S.jW)("all"===N.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:D.uR.FETCH_CHANNELS_LND})),(0,d.K)(H=>(this.handleErrorWithAlert("UpdateChannels",D.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/chanPolicy",H),(0,f.of)({type:D.pg.VOID})))))))),this.closeChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.CLOSE_CHANNEL_LND),(0,M.z)(N=>{this.store.dispatch((0,S.ac)({payload:N.payload.forcibly?D.m6.FORCE_CLOSE_CHANNEL:D.m6.CLOSE_CHANNEL}));let H=this.CHILD_API_URL+h.NZ.CHANNELS_API+"/"+N.payload.channelPoint+"?force="+N.payload.forcibly;return N.payload.targetConf&&(H=H+"&target_conf="+N.payload.targetConf),N.payload.satPerByte&&(H=H+"&sat_per_byte="+N.payload.satPerByte),this.httpClient.delete(H).pipe((0,C.U)(X=>(this.logger.info(X),this.store.dispatch((0,S.uO)({payload:N.payload.forcibly?D.m6.FORCE_CLOSE_CHANNEL:D.m6.CLOSE_CHANNEL})),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Z7)()),this.store.dispatch((0,k.Vv)({payload:{uiMessage:D.m6.NO_SPINNER,channelPoint:"ALL",showMessage:X.message}})),{type:D.pg.VOID})),(0,d.K)(X=>(this.handleErrorWithAlert("CloseChannel",N.payload.forcibly?D.m6.FORCE_CLOSE_CHANNEL:D.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/"+N.payload.channelPoint+"?force="+N.payload.forcibly,X),(0,f.of)({type:D.pg.VOID}))))}))),this.backupChannels=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.BACKUP_CHANNELS_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"BackupChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/"+N.payload.channelPoint).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"BackupChannels",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:N.payload.uiMessage})),this.store.dispatch((0,S.jW)({payload:N.payload.showMessage+" "+H.message})),{type:D.uR.BACKUP_CHANNELS_RES_LND,payload:H.message})),(0,d.K)(H=>(this.handleErrorWithAlert("BackupChannels",N.payload.uiMessage,N.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/"+N.payload.channelPoint,H),(0,f.of)({type:D.pg.VOID})))))))),this.verifyChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.VERIFY_CHANNEL_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.VERIFY_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"VerifyChannel",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/verify/"+N.payload.channelPoint,{}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"VerifyChannel",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:D.m6.VERIFY_CHANNEL})),this.store.dispatch((0,S.jW)({payload:H.message})),{type:D.uR.VERIFY_CHANNEL_RES_LND,payload:H.message})),(0,d.K)(H=>(this.handleErrorWithAlert("VerifyChannel",D.m6.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/verify/"+N.payload.channelPoint,H),(0,f.of)({type:D.pg.VOID})))))))),this.restoreChannels=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.RESTORE_CHANNELS_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.RESTORE_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannels",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/restore/"+N.payload.channelPoint,{}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannels",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:D.m6.RESTORE_CHANNEL})),this.store.dispatch((0,S.jW)({payload:H.message})),this.store.dispatch((0,k.B_)({payload:H.list})),{type:D.uR.RESTORE_CHANNELS_RES_LND,payload:H.message})),(0,d.K)(H=>(this.handleErrorWithAlert("RestoreChannels",D.m6.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/restore/"+N.payload.channelPoint,H),(0,f.of)({type:D.pg.VOID})))))))),this.fetchFees=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_FEES_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchFees",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.FEES_API))),(0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchFees",status:D.Bn.COMPLETED}})),N.forwarding_events_history&&(this.store.dispatch((0,k.QJ)({payload:N.forwarding_events_history})),delete N.forwarding_events_history),{type:D.uR.SET_FEES_LND,payload:N||{}})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchFees",D.m6.NO_SPINNER,"Fetching Fees Failed.",N),(0,f.of)({type:D.pg.VOID}))))),this.balanceBlockchainFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_BLOCKCHAIN_BALANCE_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchBalance",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.BALANCE_API))),(0,C.U)(N=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchBalance",status:D.Bn.COMPLETED}})),this.logger.info(N),{type:D.uR.SET_BLOCKCHAIN_BALANCE_LND,payload:N||{total_balance:""}})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchBalance",D.m6.NO_SPINNER,"Fetching Blockchain Balance Failed.",N),(0,f.of)({type:D.pg.VOID}))))),this.networkInfoFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_NETWORK_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchNetwork",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/info"))),(0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchNetwork",status:D.Bn.COMPLETED}})),{type:D.uR.SET_NETWORK_LND,payload:N||{}})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchNetwork",D.m6.NO_SPINNER,"Fetching Network Failed.",N),(0,f.of)({type:D.pg.VOID}))))),this.channelsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_CHANNELS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_API).pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchChannels",status:D.Bn.COMPLETED}})),{type:D.uR.SET_CHANNELS_LND,payload:N.channels||[]})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchChannels",D.m6.NO_SPINNER,"Fetching Channels Failed.",N),(0,f.of)({type:D.pg.VOID})))))))),this.channelsPendingFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PENDING_CHANNELS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPendingChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/pending").pipe((0,C.U)(N=>{this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchPendingChannels",status:D.Bn.COMPLETED}}));const H={open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0};return N&&(H.total_limbo_balance=N.total_limbo_balance,N.pending_closing_channels&&(H.closing.num_channels=N.pending_closing_channels.length,H.total_channels=H.total_channels+N.pending_closing_channels.length,N.pending_closing_channels.forEach(X=>{H.closing.limbo_balance=+H.closing.limbo_balance+(X.channel.local_balance?+X.channel.local_balance:0)})),N.pending_force_closing_channels&&(H.force_closing.num_channels=N.pending_force_closing_channels.length,H.total_channels=H.total_channels+N.pending_force_closing_channels.length,N.pending_force_closing_channels.forEach(X=>{H.force_closing.limbo_balance=+H.force_closing.limbo_balance+(X.channel.local_balance?+X.channel.local_balance:0)})),N.pending_open_channels&&(H.open.num_channels=N.pending_open_channels.length,H.total_channels=H.total_channels+N.pending_open_channels.length,N.pending_open_channels.forEach(X=>{H.open.limbo_balance=+H.open.limbo_balance+(X.channel.local_balance?+X.channel.local_balance:0)})),N.waiting_close_channels&&(H.waiting_close.num_channels=N.waiting_close_channels.length,H.total_channels=H.total_channels+N.waiting_close_channels.length,N.waiting_close_channels.forEach(X=>{H.waiting_close.limbo_balance=+H.waiting_close.limbo_balance+(X.channel.local_balance?+X.channel.local_balance:0)}))),{type:D.uR.SET_PENDING_CHANNELS_LND,payload:N?{pendingChannels:N,pendingChannelsSummary:H}:{pendingChannels:{},pendingChannelsSummary:H}}}),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchPendingChannels",D.m6.NO_SPINNER,"Fetching Pending Channels Failed.",N),(0,f.of)({type:D.pg.VOID})))))))),this.channelsClosedFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_CLOSED_CHANNELS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchClosedChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/closed").pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchClosedChannels",status:D.Bn.COMPLETED}})),{type:D.uR.SET_CLOSED_CHANNELS_LND,payload:N.channels||[]})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchClosedChannels",D.m6.NO_SPINNER,"Fetching Closed Channels Failed.",N),(0,f.of)({type:D.pg.VOID})))))))),this.invoicesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_INVOICES_LND),(0,M.z)(N=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchInvoices",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.INVOICES_API+"?num_max_invoices="+(N.payload.num_max_invoices?N.payload.num_max_invoices:100)+"&index_offset="+(N.payload.index_offset?N.payload.index_offset:0)+"&reversed="+(!!N.payload.reversed&&N.payload.reversed)).pipe((0,C.U)(be=>(this.logger.info(be),this.store.dispatch((0,k.PC)({payload:{action:"FetchInvoices",status:D.Bn.COMPLETED}})),N.payload.reversed&&!N.payload.index_offset&&(be.total_invoices=+(be.last_index_offset||0)),{type:D.uR.SET_INVOICES_LND,payload:be})),(0,d.K)(be=>(this.handleErrorWithoutAlert("FetchInvoices",D.m6.NO_SPINNER,"Fetching Invoices Failed.",be),(0,f.of)({type:D.pg.VOID})))))))),this.transactionsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_TRANSACTIONS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchTransactions",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.TRANSACTIONS_API))),(0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchTransactions",status:D.Bn.COMPLETED}})),{type:D.uR.SET_TRANSACTIONS_LND,payload:N||[]})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchTransactions",D.m6.NO_SPINNER,"Fetching Transactions Failed.",N),(0,f.of)({type:D.pg.VOID}))))),this.utxosFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_UTXOS_LND),(0,R.M)(this.store.select(E.Q5)),(0,M.z)(([N,H])=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchUTXOs",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.WALLET_API+"/getUTXOs?max_confs="+(H&&H.block_height?H.block_height:1e9)))),(0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchUTXOs",status:D.Bn.COMPLETED}})),{type:D.uR.SET_UTXOS_LND,payload:N||[]})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchUTXOs",D.m6.NO_SPINNER,"Fetching UTXOs Failed.",N),(0,f.of)({type:D.pg.VOID}))))),this.paymentsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PAYMENTS_LND),(0,M.z)(N=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPayments",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PAYMENTS_API+"?max_payments="+(N.payload.max_payments?N.payload.max_payments:100)+"&index_offset="+(N.payload.index_offset?N.payload.index_offset:0)+"&reversed="+(!!N.payload.reversed&&N.payload.reversed)).pipe((0,C.U)(be=>(this.logger.info(be),this.store.dispatch((0,k.PC)({payload:{action:"FetchPayments",status:D.Bn.COMPLETED}})),{type:D.uR.SET_PAYMENTS_LND,payload:be})),(0,d.K)(be=>(this.handleErrorWithoutAlert("FetchPayments",D.m6.NO_SPINNER,"Fetching Payments Failed.",be),(0,f.of)({type:D.uR.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SEND_PAYMENT_LND),(0,M.z)(N=>{this.store.dispatch((0,S.ac)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:D.Bn.INITIATED}}));const H={};return H.paymentReq=N.payload.paymentReq,N.payload.paymentAmount&&(H.paymentAmount=N.payload.paymentAmount),N.payload.outgoingChannel&&(H.outgoingChannel=N.payload.outgoingChannel.chan_id),N.payload.allowSelfPayment&&(H.allowSelfPayment=N.payload.allowSelfPayment),N.payload.lastHopPubkey&&(H.lastHopPubkey=N.payload.lastHopPubkey),N.payload.feeLimitType&&N.payload.feeLimitType!==D.Vc[0].id&&(H.feeLimit={},H.feeLimit[N.payload.feeLimitType]=N.payload.feeLimit),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/transactions",H).pipe((0,C.U)(X=>{if(this.logger.info(X),this.store.dispatch((0,S.uO)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:D.Bn.COMPLETED}})),X.payment_error)return N.payload.allowSelfPayment?(this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSize,reversed:!0}})),{type:D.uR.SEND_PAYMENT_STATUS_LND,payload:X}):(N.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",N.payload.uiMessage,"Send Payment Failed.",X.payment_error):this.handleErrorWithAlert("SendPayment",N.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/transactions",X.payment_error),{type:D.pg.VOID});if(this.store.dispatch((0,S.uO)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.cQ)({payload:{max_payments:this.paymentsPageSize,reversed:!0}})),N.payload.allowSelfPayment)this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSize,reversed:!0}}));else{let he="Payment Sent Successfully.";X.payment_route&&X.payment_route.total_fees_msat&&(he="Payment sent successfully with the total fee "+X.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,S.jW)({payload:he}))}return{type:D.uR.SEND_PAYMENT_STATUS_LND,payload:X}}),(0,d.K)(X=>(this.logger.error("Error: "+JSON.stringify(X)),N.payload.allowSelfPayment?(this.handleErrorWithoutAlert("SendPayment",N.payload.uiMessage,"Send Payment Failed.",X),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSize,reversed:!0}})),(0,f.of)({type:D.uR.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(X)}})):(N.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",N.payload.uiMessage,"Send Payment Failed.",X):this.handleErrorWithAlert("SendPayment",N.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/transactions",X),(0,f.of)({type:D.pg.VOID})))))}))),this.graphNodeFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_GRAPH_NODE_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.GET_NODE_ADDRESS})),this.store.dispatch((0,k.PC)({payload:{action:"FetchGraphNode",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/node/"+N.payload.pubkey).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.GET_NODE_ADDRESS})),this.store.dispatch((0,k.PC)({payload:{action:"FetchGraphNode",status:D.Bn.COMPLETED}})),{type:D.uR.SET_GRAPH_NODE_LND,payload:H&&H.node?{node:H.node}:{node:null}})),(0,d.K)(H=>(this.handleErrorWithoutAlert("FetchGraphNode",D.m6.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.setGraphNode=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_GRAPH_NODE_LND),(0,C.U)(N=>(this.logger.info(N.payload),N.payload))),{dispatch:!1}),this.getNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_NEW_ADDRESS_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NEW_ADDRESS_API+"?type="+N.payload.addressId).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.GENERATE_NEW_ADDRESS})),{type:D.uR.SET_NEW_ADDRESS_LND,payload:H&&H.address?H.address:{}})),(0,d.K)(H=>(this.handleErrorWithAlert("GetNewAddress",D.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+h.NZ.NEW_ADDRESS_API+"?type="+N.payload.addressId,H),(0,f.of)({type:D.pg.VOID})))))))),this.setNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_NEW_ADDRESS_LND),(0,C.U)(N=>(this.logger.info(N.payload),N.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_CHANNEL_TRANSACTION_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.SEND_FUNDS})),this.store.dispatch((0,k.PC)({payload:{action:"SetChannelTransaction",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.TRANSACTIONS_API,{amount:N.payload.amount,address:N.payload.address,sendAll:N.payload.sendAll,fees:N.payload.fees,blocks:N.payload.blocks}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SetChannelTransaction",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:D.m6.SEND_FUNDS})),this.store.dispatch((0,k.mC)()),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),{type:D.uR.SET_CHANNEL_TRANSACTION_RES_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SetChannelTransaction",D.m6.SEND_FUNDS,"Sending Fund Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.fetchForwardingHistory=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_FORWARDING_HISTORY_LND),(0,M.z)(N=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchForwardingHistory",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.SWITCH_API,{num_max_events:N.payload.num_max_events,index_offset:N.payload.index_offset,end_time:N.payload.end_time,start_time:N.payload.start_time}).pipe((0,C.U)(X=>(this.logger.info(X),this.store.dispatch((0,k.PC)({payload:{action:"FetchForwardingHistory",status:D.Bn.COMPLETED}})),{type:D.uR.SET_FORWARDING_HISTORY_LND,payload:X})),(0,d.K)(X=>(this.handleErrorWithAlert("FetchForwardingHistory",D.m6.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+h.NZ.SWITCH_API,X),(0,f.of)({type:D.pg.VOID})))))))),this.queryRoutesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_QUERY_ROUTES_LND),(0,M.z)(N=>{let H=this.CHILD_API_URL+h.NZ.NETWORK_API+"/routes/"+N.payload.destPubkey+"/"+N.payload.amount;return N.payload.outgoingChanId&&(H=H+"?outgoing_chan_id="+N.payload.outgoingChanId),this.httpClient.get(H).pipe((0,C.U)(X=>(this.logger.info(X),{type:D.uR.SET_QUERY_ROUTES_LND,payload:X})),(0,d.K)(X=>(this.store.dispatch((0,k.kL)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",D.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+h.NZ.NETWORK_API,X),(0,f.of)({type:D.pg.VOID}))))}))),this.setQueryRoutes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_QUERY_ROUTES_LND),(0,C.U)(N=>N.payload)),{dispatch:!1}),this.genSeed=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GEN_SEED_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+h.NZ.WALLET_API+"/genseed/"+N.payload).pipe((0,C.U)(H=>(this.logger.info("Generated GenSeed!"),this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.GEN_SEED})),{type:D.uR.GEN_SEED_RESPONSE_LND,payload:H.cipher_seed_mnemonic})),(0,d.K)(H=>(this.handleErrorWithAlert("GenSeed",D.m6.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+h.NZ.WALLET_API+"/genseed/"+N.payload,H),(0,f.of)({type:D.pg.VOID})))))))),this.updateSelNodeOptions=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.pg.UPDATE_SELECTED_NODE_OPTIONS),(0,M.z)(()=>this.httpClient.get(this.CHILD_API_URL+h.NZ.WALLET_API+"/updateSelNodeOptions").pipe((0,C.U)(N=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(N),{type:D.pg.VOID})),(0,d.K)(N=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",D.m6.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",N),(0,f.of)({type:D.pg.VOID}))))))),this.genSeedResponse=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GEN_SEED_RESPONSE_LND),(0,C.U)(N=>N.payload)),{dispatch:!1}),this.initWalletRes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.INIT_WALLET_RESPONSE_LND),(0,C.U)(N=>N.payload)),{dispatch:!1}),this.initWallet=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.INIT_WALLET_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+h.NZ.WALLET_API+"/wallet/initwallet",{wallet_password:N.payload.pwd,cipher_seed_mnemonic:N.payload.cipher?N.payload.cipher:"",aezeed_passphrase:N.payload.passphrase?N.payload.passphrase:""}).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.INITIALIZE_WALLET})),{type:D.uR.INIT_WALLET_RESPONSE_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithAlert("InitWallet",D.m6.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+h.NZ.WALLET_API+"/initwallet",H),(0,f.of)({type:D.pg.VOID})))))))),this.unlockWallet=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.UNLOCK_WALLET_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+h.NZ.WALLET_API+"/wallet/unlockwallet",{wallet_password:N.payload.pwd}).pipe((0,C.U)(H=>(this.logger.info(H),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,S.uO)({payload:D.m6.UNLOCK_WALLET})),this.store.dispatch((0,S.ac)({payload:D.m6.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,S.uO)({payload:D.m6.WAIT_SYNC_NODE})),this.store.dispatch((0,k.sQ)({payload:{loadPage:"HOME"}}))},5e3),{type:D.pg.VOID})),(0,d.K)(H=>(this.handleErrorWithAlert("UnlockWallet",D.m6.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+h.NZ.WALLET_API+"/unlockwallet",H),(0,f.of)({type:D.pg.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.PEER_LOOKUP_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.SEARCHING_NODE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/node/"+N.payload).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.SEARCHING_NODE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),{type:D.uR.SET_LOOKUP_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithAlert("Lookup",D.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+h.NZ.NETWORK_API+"/node/"+N.payload,H),(0,f.of)({type:D.pg.VOID})))))))),this.channelLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.CHANNEL_LOOKUP_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/edge/"+N.payload.channelID).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:N.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),{type:D.uR.SET_LOOKUP_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithAlert("Lookup",N.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+h.NZ.NETWORK_API+"/edge/"+N.payload.channelID,H),(0,f.of)({type:D.pg.VOID})))))))),this.invoiceLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.INVOICE_LOOKUP_LND),(0,M.z)(N=>{this.store.dispatch((0,S.ac)({payload:D.m6.SEARCHING_INVOICE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}}));let H=this.CHILD_API_URL+h.NZ.INVOICES_API+"/lookup";return H=N.payload.paymentAddress&&""!==N.payload.paymentAddress?H+"?payment_addr="+N.payload.paymentAddress:H+"?payment_hash="+N.payload.paymentHash,this.httpClient.get(H).pipe((0,C.U)(X=>(this.logger.info(X),this.store.dispatch((0,S.uO)({payload:D.m6.SEARCHING_INVOICE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.aL)({payload:X})),{type:D.uR.SET_LOOKUP_LND,payload:X})),(0,d.K)(X=>(this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.ERROR}})),this.handleErrorWithoutAlert("Lookup",D.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",X),N.payload.openSnackBar&&this.store.dispatch((0,S.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,f.of)({type:D.uR.SET_LOOKUP_LND,payload:{error:X}}))))}))),this.paymentLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.PAYMENT_LOOKUP_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.SEARCHING_PAYMENT})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PAYMENTS_API+"/lookup/"+N.payload).pipe((0,C.U)(H=>(this.logger.info(H),this.store.dispatch((0,S.uO)({payload:D.m6.SEARCHING_PAYMENT})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.qY)({payload:H})),{type:D.uR.SET_LOOKUP_LND,payload:H})),(0,d.K)(H=>(this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.ERROR}})),this.handleErrorWithoutAlert("Lookup",D.m6.SEARCHING_PAYMENT,"Payment Lookup Failed",H),(0,f.of)({type:D.uR.SET_LOOKUP_LND,payload:{error:H}})))))))),this.setLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_LOOKUP_LND),(0,C.U)(N=>(this.logger.info(N.payload),N.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.RESTORE_CHANNELS_LIST_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannelsList",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/restore/list").pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannelsList",status:D.Bn.COMPLETED}})),{type:D.uR.SET_RESTORE_CHANNELS_LIST_LND,payload:N||{all_restore_exists:!1,files:[]}})),(0,d.K)(N=>(this.handleErrorWithAlert("RestoreChannelsList",D.m6.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API,N),(0,f.of)({type:D.pg.VOID})))))))),this.setRestoreChannelList=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_RESTORE_CHANNELS_LIST_LND),(0,C.U)(N=>(this.logger.info(N.payload),N.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchLightningTransactions",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PAYMENTS_API+"/alltransactions").pipe((0,C.U)(N=>(this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchLightningTransactions",status:D.Bn.COMPLETED}})),{type:D.uR.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:N})),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchLightningTransactions",D.m6.NO_SPINNER,"Fetching All Lightning Transaction Failed.",N),(0,f.of)({type:D.pg.VOID})))))))),this.pageSettingsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PAGE_SETTINGS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPageSettings",status:D.Bn.INITIATED}})),this.httpClient.get(h.NZ.PAGE_SETTINGS_API).pipe((0,C.U)(N=>{var H,X,he,be;return this.logger.info(N),this.store.dispatch((0,k.PC)({payload:{action:"FetchPageSettings",status:D.Bn.COMPLETED}})),this.invoicesPageSize=(N&&Object.keys(N).length>0?null===(H=N.find(Pe=>"transactions"===Pe.pageId))||void 0===H?void 0:H.tables.find(Pe=>"invoices"===Pe.tableId):null===(X=D.gK.find(Pe=>"transactions"===Pe.pageId))||void 0===X?void 0:X.tables.find(Pe=>"invoices"===Pe.tableId)).recordsPerPage,this.paymentsPageSize=(N&&Object.keys(N).length>0?null===(he=N.find(Pe=>"transactions"===Pe.pageId))||void 0===he?void 0:he.tables.find(Pe=>"payments"===Pe.tableId):null===(be=D.gK.find(Pe=>"transactions"===Pe.pageId))||void 0===be?void 0:be.tables.find(Pe=>"payments"===Pe.tableId)).recordsPerPage,this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSize,reversed:!0}})),{type:D.uR.SET_PAGE_SETTINGS_LND,payload:N||[]}}),(0,d.K)(N=>(this.handleErrorWithoutAlert("FetchPageSettings",D.m6.NO_SPINNER,"Fetching Page Settings Failed.",N),(0,f.of)({type:D.pg.VOID})))))))),this.savePageSettings=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_PAGE_SETTINGS_LND),(0,M.z)(N=>(this.store.dispatch((0,S.ac)({payload:D.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,k.PC)({payload:{action:"SavePageSettings",status:D.Bn.INITIATED}})),this.httpClient.post(h.NZ.PAGE_SETTINGS_API,N.payload).pipe((0,C.U)(H=>{var X,he,be,Pe;this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SavePageSettings",status:D.Bn.COMPLETED}})),this.store.dispatch((0,S.uO)({payload:D.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,S.jW)({payload:"Page Layout Updated Successfully!"}));const Ee=((null===(X=H.find(Ve=>"transactions"===Ve.pageId))||void 0===X?void 0:X.tables.find(Ve=>"invoices"===Ve.tableId))||(null===(he=D.gK.find(Ve=>"transactions"===Ve.pageId))||void 0===he?void 0:he.tables.find(Ve=>"invoices"===Ve.tableId))).recordsPerPage,j=((null===(be=H.find(Ve=>"transactions"===Ve.pageId))||void 0===be?void 0:be.tables.find(Ve=>"payments"===Ve.tableId))||(null===(Pe=D.gK.find(Ve=>"transactions"===Ve.pageId))||void 0===Pe?void 0:Pe.tables.find(Ve=>"payments"===Ve.tableId))).recordsPerPage;return Ee!==this.invoicesPageSize&&(this.invoicesPageSize=Ee,this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSize,reversed:!0}}))),j!==this.paymentsPageSize&&(this.paymentsPageSize=j),{type:D.uR.SET_PAGE_SETTINGS_LND,payload:H||[]}}),(0,d.K)(H=>(this.handleErrorWithAlert("SavePageSettings",D.m6.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",h.NZ.PAGE_SETTINGS_API,H),(0,f.of)({type:D.pg.VOID})))))))),this.store.select(E.yA).pipe((0,a.R)(this.unSubs[0])).subscribe(N=>{N.FetchInfo.status!==D.Bn.COMPLETED&&N.FetchInfo.status!==D.Bn.ERROR||N.FetchFees.status!==D.Bn.COMPLETED&&N.FetchFees.status!==D.Bn.ERROR||N.FetchBalanceBlockchain.status!==D.Bn.COMPLETED&&N.FetchBalanceBlockchain.status!==D.Bn.ERROR||N.FetchAllChannels.status!==D.Bn.COMPLETED&&N.FetchAllChannels.status!==D.Bn.ERROR||N.FetchPendingChannels.status!==D.Bn.COMPLETED&&N.FetchPendingChannels.status!==D.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,S.uO)({payload:D.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,a.R)(this.unSubs[1])).subscribe(N=>{this.logger.info("Received new message from the service: "+JSON.stringify(N)),N&&(N.type===D.g8.INVOICE?(this.logger.info(N),N&&N.result&&N.result.payment_request&&this.store.dispatch((0,k.aL)({payload:N.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(N)))})}initializeRemainingData(r,u){this.sessionService.setItem("lndUnlocked","true");const c={identity_pubkey:r.identity_pubkey,alias:r.alias,testnet:r.testnet,chains:r.chains,uris:r.uris,version:r.version?r.version.split(" ")[0]:""};this.store.dispatch((0,S.ac)({payload:D.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,S._V)({payload:c}));let v=this.location.path();v.includes("/cln/")?v=null==v?void 0:v.replace("/cln/","/lnd/"):v.includes("/ecl/")&&(v=null==v?void 0:v.replace("/ecl/","/lnd/")),(v.includes("/unlock")||v.includes("/login")||v.includes("/error")||""===v||"HOME"===u||v.includes("?access-key="))&&(v="/lnd/home"),this.router.navigate([v]),this.store.dispatch((0,k.wD)()),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Z7)()),this.store.dispatch((0,k.Zh)()),this.store.dispatch((0,k.$W)()),this.store.dispatch((0,k.Rv)()),this.store.dispatch((0,k.SN)()),this.store.dispatch((0,k.cQ)({payload:{max_payments:1e5,reversed:!0}}))}handleErrorWithoutAlert(r,u,c,v){this.logger.error("ERROR IN: "+r+"\n"+JSON.stringify(v)),401===v.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,S.ts)()),this.store.dispatch((0,S.kS)()),this.store.dispatch((0,S.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,S.uO)({payload:u})),this.store.dispatch((0,k.PC)({payload:{action:r,status:D.Bn.ERROR,statusCode:v.status.toString(),message:this.commonService.extractErrorMessage(v,c)}})))}handleErrorWithAlert(r,u,c,v,T){if(this.logger.error(T),401===T.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,S.ts)()),this.store.dispatch((0,S.kS)()),this.store.dispatch((0,S.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,S.uO)({payload:u}));const I=this.commonService.extractErrorMessage(T);this.store.dispatch((0,S.qR)({payload:{data:{type:"ERROR",alertTitle:c,message:{code:T.status,message:I,URL:v},component:w.H}}})),this.store.dispatch((0,k.PC)({payload:{action:r,status:D.Bn.ERROR,statusCode:T.status.toString(),message:I,URL:v}}))}}ngOnDestroy(){this.unSubs.forEach(r=>{r.next(null),r.complete()})}}return x.\u0275fac=function(r){return new(r||x)(B.LFG(t.eX),B.LFG(Z.eN),B.LFG(Y.yh),B.LFG(ae.mQ),B.LFG(ee.v),B.LFG(ue.m),B.LFG(ie.uw),B.LFG(re.F0),B.LFG(ge.d),B.LFG(q.Ye))},x.\u0275prov=B.Yz7({token:x,factory:x.\u0275fac}),x})()},6529:(Be,K,p)=>{"use strict";p.d(K,{$k:()=>f,Bo:()=>R,Ef:()=>S,JG:()=>L,N7:()=>ue,P2:()=>Z,PP:()=>h,Pr:()=>M,Q5:()=>a,T4:()=>ee,Wi:()=>w,ZW:()=>k,_f:()=>re,bx:()=>ge,dx:()=>D,l5:()=>ie,ni:()=>B,qU:()=>Y,yA:()=>d});var t=p(5620);const e=(0,t.ZF)("lnd"),f=(0,t.P1)(e,q=>q.nodeSettings),M=(0,t.P1)(e,q=>({pageSettings:q.pageSettings,apiCallStatus:q.apisCallStatus.FetchPageSettings})),a=(0,t.P1)(e,q=>q.information),d=((0,t.P1)(e,q=>({information:q.information,apiCallStatus:q.apisCallStatus.FetchInfo})),(0,t.P1)(e,q=>q.apisCallStatus)),R=(0,t.P1)(e,q=>({forwardingHistory:q.forwardingHistory,apiCallStatus:q.apisCallStatus.FetchForwardingHistory})),h=(0,t.P1)(e,q=>({listPayments:q.listPayments,apiCallStatus:q.apisCallStatus.FetchPayments})),L=(0,t.P1)(e,q=>({fees:q.fees,apiCallStatus:q.apisCallStatus.FetchFees})),w=(0,t.P1)(e,q=>({peers:q.peers,apiCallStatus:q.apisCallStatus.FetchPeers})),D=(0,t.P1)(e,q=>({transactions:q.transactions,apiCallStatus:q.apisCallStatus.FetchTransactions})),S=(0,t.P1)(e,q=>({listInvoices:q.listInvoices,apiCallStatus:q.apisCallStatus.FetchInvoices})),k=(0,t.P1)(e,q=>({channels:q.channels,channelsSummary:q.channelsSummary,lightningBalance:q.lightningBalance,apiCallStatus:q.apisCallStatus.FetchAllChannels})),B=((0,t.P1)(e,q=>({channelsSummary:q.channelsSummary,pendingChannels:q.pendingChannels,closedChannels:q.closedChannels,apiCallStatus:q.apisCallStatus.FetchAllChannels})),(0,t.P1)(e,q=>({pendingChannels:q.pendingChannels,pendingChannelsSummary:q.pendingChannelsSummary,apiCallStatus:q.apisCallStatus.FetchPendingChannels}))),Z=(0,t.P1)(e,q=>({closedChannels:q.closedChannels,apiCallStatus:q.apisCallStatus.FetchClosedChannels})),Y=(0,t.P1)(e,q=>({blockchainBalance:q.blockchainBalance,apiCallStatus:q.apisCallStatus.FetchBalanceBlockchain})),ee=((0,t.P1)(e,q=>({lightningBalance:q.lightningBalance,apiCallStatus:q.apisCallStatus.FetchAllChannels})),(0,t.P1)(e,q=>({utxos:q.utxos,apiCallStatus:q.apisCallStatus.FetchUTXOs}))),ue=(0,t.P1)(e,q=>({networkInfo:q.networkInfo,apiCallStatus:q.apisCallStatus.FetchNetwork})),ie=(0,t.P1)(e,q=>({allLightningTransactions:q.allLightningTransactions,apiCallStatus:q.apisCallStatus.FetchLightningTransactions})),re=(0,t.P1)(e,q=>({channels:q.channels,pendingChannels:q.pendingChannels,closedChannels:q.closedChannels})),ge=(0,t.P1)(e,q=>({information:q.information,nodeSettings:q.nodeSettings,apiCallStatus:q.apisCallStatus.FetchInfo}))},8627:(Be,K,p)=>{"use strict";p.d(K,{v:()=>Ce});var t=p(8966),e=p(2687),f=p(7579),M=p(2722),a=p(7731),C=p(6529),d=p(5e3),R=p(5043),h=p(62),L=p(7261),w=p(5620),D=p(7093),S=p(9808),k=p(3322),E=p(159),B=p(9224),Z=p(9546),Y=p(7423),ae=p(4834),ee=p(773),ue=p(5245),ie=p(3390),re=p(6895),ge=p(1125),q=p(7238);const _e=["scrollContainer"];function x(fe,Q){if(1&fe&&d._UZ(0,"qr-code",33),2&fe){const ft=d.oxw();d.Q6J("value",null==ft.invoice?null:ft.invoice.payment_request)("size",ft.qrWidth)("errorCorrectionLevel","L")}}function i(fe,Q){1&fe&&(d.TgZ(0,"span",34),d._uU(1,"N/A"),d.qZA())}function r(fe,Q){if(1&fe&&d._UZ(0,"qr-code",33),2&fe){const ft=d.oxw();d.Q6J("value",null==ft.invoice?null:ft.invoice.payment_request)("size",ft.qrWidth)("errorCorrectionLevel","L")}}function u(fe,Q){1&fe&&(d.TgZ(0,"span",35),d._uU(1,"QR Code Not Applicable"),d.qZA())}function c(fe,Q){1&fe&&d._UZ(0,"mat-divider",22),2&fe&&d.Q6J("inset",!0)}function v(fe,Q){1&fe&&(d.ynx(0),d._uU(1," (zero amount) "),d.BQk())}function T(fe,Q){1&fe&&d._UZ(0,"span",41)}const I=function(){return[]};function y(fe,Q){if(1&fe&&(d.TgZ(0,"div",37)(1,"div",38)(2,"span",39),d._uU(3),d.ALo(4,"number"),d.qZA(),d.YNc(5,T,1,0,"span",40),d.qZA()()),2&fe){const ft=d.oxw(2);d.xp6(3),d.hij("",d.lcZ(4,2,null==ft.invoice?null:ft.invoice.amt_paid_sat)," Sats"),d.xp6(2),d.Q6J("ngForOf",d.DdM(4,I).constructor(35))}}function n(fe,Q){if(1&fe&&(d.TgZ(0,"div"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&fe){const ft=d.oxw(2);d.xp6(1),d.hij("",d.lcZ(2,1,null==ft.invoice?null:ft.invoice.amt_paid_sat)," Sats")}}function _(fe,Q){if(1&fe&&(d.ynx(0),d.YNc(1,y,6,5,"div",36),d.YNc(2,n,3,3,"div",21),d.BQk()),2&fe){const ft=d.oxw();d.xp6(1),d.Q6J("ngIf",ft.flgInvoicePaid),d.xp6(1),d.Q6J("ngIf",!ft.flgInvoicePaid)}}function V(fe,Q){1&fe&&(d.TgZ(0,"span"),d._uU(1,"-"),d.qZA())}function N(fe,Q){1&fe&&d._UZ(0,"mat-spinner",43),2&fe&&d.Q6J("diameter",20)}function H(fe,Q){if(1&fe&&(d.ynx(0),d.YNc(1,V,2,0,"span",21),d.YNc(2,N,1,1,"mat-spinner",42),d.BQk()),2&fe){const ft=d.oxw();d.xp6(1),d.Q6J("ngIf","OPEN"!==(null==ft.invoice?null:ft.invoice.state)||!ft.flgVersionCompatible),d.xp6(1),d.Q6J("ngIf","OPEN"===(null==ft.invoice?null:ft.invoice.state)&&ft.flgVersionCompatible)}}function X(fe,Q){1&fe&&d.GkF(0)}function he(fe,Q){if(1&fe&&(d.TgZ(0,"div"),d.YNc(1,X,1,0,"ng-container",44),d.qZA()),2&fe){d.oxw();const ft=d.MAs(79);d.xp6(1),d.Q6J("ngTemplateOutlet",ft)}}function be(fe,Q){if(1&fe){const ft=d.EpF();d.TgZ(0,"div",45)(1,"button",46),d.NdJ("click",function(){return d.CHM(ft),d.oxw().onScrollDown()}),d.TgZ(2,"mat-icon",47),d._uU(3,"arrow_downward"),d.qZA()()()}}function Pe(fe,Q){1&fe&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function Ee(fe,Q){1&fe&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function j(fe,Q){if(1&fe){const ft=d.EpF();d.TgZ(0,"button",48),d.NdJ("copied",function(Dt){return d.CHM(ft),d.oxw().onCopyPayment(Dt)}),d._uU(1),d.qZA()}if(2&fe){const ft=d.oxw();d.Q6J("payload",null==ft.invoice?null:ft.invoice.payment_request),d.xp6(1),d.Oqu(ft.screenSize===ft.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function Ve(fe,Q){if(1&fe){const ft=d.EpF();d.TgZ(0,"button",49),d.NdJ("click",function(){return d.CHM(ft),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const Me=function(fe){return{"mr-0":fe}};function J(fe,Q){if(1&fe&&d._UZ(0,"span",64),2&fe){const ft=d.oxw(4);d.Q6J("ngClass",d.VKq(1,Me,ft.screenSize===ft.screenSizeEnum.XS))}}function Ie(fe,Q){if(1&fe&&d._UZ(0,"span",65),2&fe){const ft=d.oxw(4);d.Q6J("ngClass",d.VKq(1,Me,ft.screenSize===ft.screenSizeEnum.XS))}}function ut(fe,Q){if(1&fe&&d._UZ(0,"span",66),2&fe){const ft=d.oxw(4);d.Q6J("ngClass",d.VKq(1,Me,ft.screenSize===ft.screenSizeEnum.XS))}}function Oe(fe,Q){if(1&fe&&(d.TgZ(0,"div",53)(1,"div",58)(2,"span",59),d.YNc(3,J,1,3,"span",60),d.YNc(4,Ie,1,3,"span",61),d.YNc(5,ut,1,3,"span",62),d._uU(6),d.qZA(),d.TgZ(7,"span",63),d._uU(8),d.ALo(9,"number"),d.qZA()(),d._UZ(10,"mat-divider",22),d.qZA()),2&fe){const ft=Q.$implicit,tt=d.oxw(3);d.xp6(3),d.Q6J("ngIf","SETTLED"===ft.state),d.xp6(1),d.Q6J("ngIf","ACCEPTED"===ft.state),d.xp6(1),d.Q6J("ngIf","CANCELED"===ft.state),d.xp6(1),d.hij(" ",ft.chan_id," "),d.xp6(2),d.Oqu(d.xi3(9,6,+ft.amt_msat/1e3||0,tt.getDecimalFormat(ft))),d.xp6(2),d.Q6J("inset",!0)}}function we(fe,Q){if(1&fe){const ft=d.EpF();d.TgZ(0,"div",17)(1,"mat-expansion-panel",51),d.NdJ("opened",function(){return d.CHM(ft),d.oxw(2).flgOpened=!0})("closed",function(){return d.CHM(ft),d.oxw(2).onExpansionClosed()}),d.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),d._uU(5,"HTLCs"),d.qZA()()(),d.TgZ(6,"div",53)(7,"div",54)(8,"span",55),d._uU(9,"Channel ID"),d.qZA(),d.TgZ(10,"span",56),d._uU(11,"Amount (Sats)"),d.qZA()(),d._UZ(12,"mat-divider",22),d.YNc(13,Oe,11,9,"div",57),d.qZA()()()}if(2&fe){const ft=d.oxw(2);d.xp6(12),d.Q6J("inset",!0),d.xp6(1),d.Q6J("ngForOf",null==ft.invoice?null:ft.invoice.htlcs)}}function ce(fe,Q){1&fe&&d._UZ(0,"mat-divider",22),2&fe&&d.Q6J("inset",!0)}function Te(fe,Q){if(1&fe&&(d._UZ(0,"mat-divider",22),d.TgZ(1,"div",17)(2,"div",23)(3,"h4",19),d._uU(4,"Preimage"),d.qZA(),d.TgZ(5,"span",24),d._uU(6),d.qZA()()(),d._UZ(7,"mat-divider",22),d.TgZ(8,"div",17)(9,"div",18)(10,"h4",19),d._uU(11,"State"),d.qZA(),d.TgZ(12,"span",24),d._uU(13),d.qZA()(),d.TgZ(14,"div",18)(15,"h4",19),d._uU(16,"Expiry"),d.qZA(),d.TgZ(17,"span",24),d._uU(18),d.ALo(19,"date"),d.qZA()()(),d._UZ(20,"mat-divider",22),d.TgZ(21,"div",17)(22,"div",18)(23,"h4",19),d._uU(24,"Private Routing Hints"),d.qZA(),d.TgZ(25,"span",24),d._uU(26),d.qZA()(),d.TgZ(27,"div",18)(28,"h4",19),d._uU(29,"AMP Invoice"),d.qZA(),d.TgZ(30,"span",24),d._uU(31),d.qZA()()(),d._UZ(32,"mat-divider",22),d.YNc(33,we,14,2,"div",50),d.YNc(34,ce,1,1,"mat-divider",14)),2&fe){const ft=d.oxw();d.Q6J("inset",!0),d.xp6(6),d.Oqu((null==ft.invoice?null:ft.invoice.r_preimage)||"-"),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu(null==ft.invoice?null:ft.invoice.state),d.xp6(5),d.Oqu(d.xi3(19,11,1e3*(+(null==ft.invoice?null:ft.invoice.creation_date)+ +(null==ft.invoice?null:ft.invoice.expiry)),"dd/MMM/y HH:mm")),d.xp6(2),d.Q6J("inset",!0),d.xp6(6),d.Oqu(null!=ft.invoice&&ft.invoice.private?"Yes":"No"),d.xp6(5),d.Oqu(null!=ft.invoice&&ft.invoice.is_amp?"Yes":"No"),d.xp6(1),d.Q6J("inset",!0),d.xp6(1),d.Q6J("ngIf",(null==ft.invoice?null:ft.invoice.htlcs)&&(null==ft.invoice?null:ft.invoice.htlcs.length)>0),d.xp6(1),d.Q6J("ngIf",(null==ft.invoice?null:ft.invoice.htlcs)&&(null==ft.invoice?null:ft.invoice.htlcs.length)>0)}}const xe=function(fe){return{"display-none":fe}},W=function(fe){return{"xs-scroll-y":fe}},te=function(fe){return{"h-50":fe}};let Ce=(()=>{class fe{constructor(ft,tt,Dt,di,Yt,Zt){this.dialogRef=ft,this.data=tt,this.logger=Dt,this.commonService=di,this.snackBar=Yt,this.store=Zt,this.faReceipt=e.dLy,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}set container(ft){ft&&(this.scrollContainer=ft)}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(C.Q5).pipe((0,M.R)(this.unSubs[0])).subscribe(tt=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(tt.version,"0.11.0")});const ft=JSON.parse(JSON.stringify(this.invoice));this.store.select(C.Ef).pipe((0,M.R)(this.unSubs[1])).subscribe(tt=>{var Dt,di,Yt;const Zt=null===(Dt=this.invoice)||void 0===Dt?void 0:Dt.state,Ot=(tt.listInvoices.invoices||[]).find(Nt=>Nt.r_hash===ft.r_hash)||null;Ot&&(this.invoice=Ot),Zt!==(null===(di=this.invoice)||void 0===di?void 0:di.state)&&"SETTLED"===(null===(Yt=this.invoice)||void 0===Yt?void 0:Yt.state)&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(tt)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced,this.flgOpened=!1}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+60}onExpansionClosed(){this.flgOpened=!1,this.scrollContainer.nativeElement.scrollTop=0}onCopyPayment(ft){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+ft)}getDecimalFormat(ft){return ft.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(ft=>{ft.next(null),ft.complete()})}}return fe.\u0275fac=function(ft){return new(ft||fe)(d.Y36(t.so),d.Y36(t.WI),d.Y36(R.mQ),d.Y36(h.v),d.Y36(L.ux),d.Y36(w.yh))},fe.\u0275cmp=d.Xpm({type:fe,selectors:[["rtl-invoice-information"]],viewQuery:function(ft,tt){if(1&ft&&d.Gf(_e,5),2&ft){let Dt;d.iGM(Dt=d.CRH())&&(tt.container=Dt.first)}},decls:80,vars:49,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"ngClass"],["scrollContainer",""],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["advancedBlock",""],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],[4,"ngTemplateOutlet"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(ft,tt){if(1&ft&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,x,1,3,"qr-code",2),d.YNc(3,i,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.qZA()(),d.TgZ(10,"button",9),d.NdJ("click",function(){return tt.onClose()}),d._uU(11,"X"),d.qZA()(),d.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),d.YNc(15,r,1,3,"qr-code",2),d.YNc(16,u,2,0,"span",13),d.qZA(),d.YNc(17,c,1,1,"mat-divider",14),d.TgZ(18,"div",15,16)(20,"div",17)(21,"div",18)(22,"h4",19),d._uU(23),d.qZA(),d.TgZ(24,"span",20),d._uU(25),d.ALo(26,"number"),d.YNc(27,v,2,0,"ng-container",21),d.qZA()(),d.TgZ(28,"div",18)(29,"h4",19),d._uU(30,"Amount Settled"),d.qZA(),d.TgZ(31,"span",20),d.YNc(32,_,3,2,"ng-container",21),d.YNc(33,H,3,2,"ng-container",21),d.qZA()()(),d._UZ(34,"mat-divider",22),d.TgZ(35,"div",17)(36,"div",18)(37,"h4",19),d._uU(38,"Date Created"),d.qZA(),d.TgZ(39,"span",20),d._uU(40),d.ALo(41,"date"),d.qZA()(),d.TgZ(42,"div",18)(43,"h4",19),d._uU(44,"Date Settled"),d.qZA(),d.TgZ(45,"span",20),d._uU(46),d.ALo(47,"date"),d.qZA()()(),d._UZ(48,"mat-divider",22),d.TgZ(49,"div",17)(50,"div",23)(51,"h4",19),d._uU(52,"Memo"),d.qZA(),d.TgZ(53,"span",20),d._uU(54),d.qZA()()(),d._UZ(55,"mat-divider",22),d.TgZ(56,"div",17)(57,"div",23)(58,"h4",19),d._uU(59,"Payment Request"),d.qZA(),d.TgZ(60,"span",24),d._uU(61),d.qZA()()(),d._UZ(62,"mat-divider",22),d.TgZ(63,"div",17)(64,"div",23)(65,"h4",19),d._uU(66,"Payment Hash"),d.qZA(),d.TgZ(67,"span",24),d._uU(68),d.qZA()()(),d.YNc(69,he,2,1,"div",21),d.qZA()()(),d.YNc(70,be,4,0,"div",25),d.TgZ(71,"div",26)(72,"button",27),d.NdJ("click",function(){return tt.onShowAdvanced()}),d.YNc(73,Pe,2,0,"p",28),d.YNc(74,Ee,2,0,"ng-template",null,29,d.W1O),d.qZA(),d.YNc(76,j,2,2,"button",30),d.YNc(77,Ve,2,0,"button",31),d.qZA()()(),d.YNc(78,Te,35,14,"ng-template",null,32,d.W1O)),2&ft){const Dt=d.MAs(75);d.xp6(1),d.Q6J("fxLayoutAlign",null!=tt.invoice&&tt.invoice.payment_request&&""!==(null==tt.invoice?null:tt.invoice.payment_request)?"center start":"center center")("ngClass",d.VKq(41,xe,tt.screenSize===tt.screenSizeEnum.XS||tt.screenSize===tt.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==tt.invoice?null:tt.invoice.payment_request)&&""!==(null==tt.invoice?null:tt.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",!(null!=tt.invoice&&tt.invoice.payment_request)||""===(null==tt.invoice?null:tt.invoice.payment_request)),d.xp6(4),d.Q6J("icon",tt.faReceipt),d.xp6(2),d.Oqu(tt.screenSize===tt.screenSizeEnum.XS?tt.newlyAdded?"Created":"Invoice":tt.newlyAdded?"Invoice Created":"Invoice Information"),d.xp6(3),d.Q6J("ngClass",d.VKq(43,W,tt.screenSize===tt.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=tt.invoice&&tt.invoice.payment_request&&""!==(null==tt.invoice?null:tt.invoice.payment_request)?"center start":"center center")("ngClass",d.VKq(45,xe,tt.screenSize!==tt.screenSizeEnum.XS&&tt.screenSize!==tt.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==tt.invoice?null:tt.invoice.payment_request)&&""!==(null==tt.invoice?null:tt.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",!(null!=tt.invoice&&tt.invoice.payment_request)||""===(null==tt.invoice?null:tt.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",tt.screenSize===tt.screenSizeEnum.XS||tt.screenSize===tt.screenSizeEnum.SM),d.xp6(1),d.Q6J("ngClass",d.VKq(47,te,(null==tt.invoice?null:tt.invoice.htlcs)&&(null==tt.invoice?null:tt.invoice.htlcs.length)>0&&tt.showAdvanced)),d.xp6(5),d.Oqu(tt.screenSize===tt.screenSizeEnum.XS?"Amount":"Amount Requested"),d.xp6(2),d.hij("",d.lcZ(26,33,(null==tt.invoice?null:tt.invoice.value)||0)," Sats"),d.xp6(2),d.Q6J("ngIf",!(null!=tt.invoice&&tt.invoice.value)||"0"===(null==tt.invoice?null:tt.invoice.value)),d.xp6(5),d.Q6J("ngIf",(null==tt.invoice?null:tt.invoice.amt_paid_sat)&&"OPEN"!==(null==tt.invoice?null:tt.invoice.state)),d.xp6(1),d.Q6J("ngIf",!(null!=tt.invoice&&tt.invoice.amt_paid_sat)||"0"===(null==tt.invoice?null:tt.invoice.amt_paid_sat)),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu(d.xi3(41,35,1e3*(null==tt.invoice?null:tt.invoice.creation_date),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(0!=+(null==tt.invoice?null:tt.invoice.settle_date)?d.xi3(47,38,1e3*+(null==tt.invoice?null:tt.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),d.xp6(2),d.Q6J("inset",!0),d.xp6(6),d.Oqu(null==tt.invoice?null:tt.invoice.memo),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu((null==tt.invoice?null:tt.invoice.payment_request)||"N/A"),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu((null==tt.invoice?null:tt.invoice.r_hash)||""),d.xp6(1),d.Q6J("ngIf",tt.showAdvanced),d.xp6(1),d.Q6J("ngIf",(null==tt.invoice?null:tt.invoice.htlcs)&&(null==tt.invoice?null:tt.invoice.htlcs.length)>0&&tt.showAdvanced&&tt.flgOpened),d.xp6(3),d.Q6J("ngIf",!tt.showAdvanced)("ngIfElse",Dt),d.xp6(3),d.Q6J("ngIf",(null==tt.invoice?null:tt.invoice.payment_request)&&""!==(null==tt.invoice?null:tt.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",!(null!=tt.invoice&&tt.invoice.payment_request)||""===(null==tt.invoice?null:tt.invoice.payment_request))}},directives:[D.xw,D.Wh,D.yH,S.mk,k.oO,S.O5,E.uU,B.dk,Z.BN,Y.lW,B.dn,ae.d,S.sg,ee.Ou,S.tP,ue.Hw,ie.h,re.y,ge.ib,ge.yz,ge.yK,q.gM],pipes:[S.JJ,S.uU],styles:[""]}),fe})()},7772:(Be,K,p)=>{"use strict";p.d(K,{J:()=>f,_:()=>e});var t=p(1777);const e=[(0,t.X$)("opacityAnimation",[(0,t.eR)(":enter",[(0,t.oB)({opacity:0}),(0,t.jt)("1000ms ease-in",(0,t.oB)({opacity:1}))]),(0,t.eR)(":leave",[(0,t.jt)("0ms",(0,t.oB)({opacity:0}))])])],f=[(0,t.X$)("fadeIn",[(0,t.eR)("void => *",[]),(0,t.eR)("* => void",[]),(0,t.eR)("* => *",[(0,t.jt)(800,(0,t.F4)([(0,t.oB)({opacity:0,transform:"translateY(100%)"}),(0,t.oB)({opacity:1,transform:"translateY(0%)"})]))])])]},8878:(Be,K,p)=>{"use strict";p.d(K,{g:()=>e});var t=p(1777);const e=(0,t.X$)("routeAnimation",[(0,t.eR)("* => *",[(0,t.IO)(":enter, :leave",(0,t.oB)({position:"fixed",width:"100%"}),{optional:!0}),(0,t.ru)([(0,t.IO)(":enter",[(0,t.oB)({transform:"translateX(100%)"}),(0,t.jt)("1000ms ease-in-out",(0,t.oB)({transform:"translateX(0%)"}))],{optional:!0}),(0,t.IO)(":leave",[(0,t.oB)({transform:"translateX(0%)"}),(0,t.jt)("1000ms ease-in-out",(0,t.oB)({transform:"translateX(-100%)"}))],{optional:!0})])])])},113:(Be,K,p)=>{"use strict";p.d(K,{l:()=>e});var t=p(1777);const e=[(0,t.X$)("sliderAnimation",[(0,t.SB)("*",(0,t.oB)({transform:"translateX(0)"})),(0,t.eR)("void => backward",[(0,t.oB)({transform:"translateX(-100%"}),(0,t.jt)("800ms")]),(0,t.eR)("backward => void",[(0,t.jt)("0ms",(0,t.oB)({transform:"translateX(100%)"}))]),(0,t.eR)("void => forward",[(0,t.oB)({transform:"translateX(100%"}),(0,t.jt)("800ms")]),(0,t.eR)("forward => void",[(0,t.jt)("0ms",(0,t.oB)({transform:"translateX(-100%)"}))])])]},1786:(Be,K,p)=>{"use strict";p.d(K,{H:()=>w});var t=p(8966),e=p(5e3),f=p(5043),M=p(7093),a=p(9224),C=p(7423),d=p(9808),R=p(4834),h=p(3390);function L(D,S){if(1&D&&(e.TgZ(0,"p",14),e._uU(1),e.qZA()),2&D){const k=e.oxw();e.xp6(1),e.Oqu(k.data.titleMessage)}}let w=(()=>{class D{constructor(k,E,B){this.dialogRef=k,this.data=E,this.logger=B,this.errorMessage=""}ngOnInit(){this.errorMessage=this.data.message&&this.data.message.message&&"object"==typeof this.data.message.message?JSON.stringify(this.data.message.message):this.data.message&&this.data.message.message?this.data.message.message:"",!this.data.message&&!this.data.titleMessage&&!this.data.message&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.data.message)}onClose(){this.dialogRef.close(!1)}}return D.\u0275fac=function(k){return new(k||D)(e.Y36(t.so),e.Y36(t.WI),e.Y36(f.mQ))},D.\u0275cmp=e.Xpm({type:D,selectors:[["rtl-error-message"]],decls:29,vars:6,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large","error-alert-block"],["fxLayout","column"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],[1,"word-break"],["fxLayout","row","fxLayoutAlign","end center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","start center",1,"pb-1"]],template:function(k,E){1&k&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return E.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"div",7),e.YNc(10,L,2,1,"p",8),e.TgZ(11,"h4",9),e._uU(12,"Error Code"),e.qZA(),e.TgZ(13,"span"),e._uU(14),e.qZA(),e._UZ(15,"mat-divider",10),e.TgZ(16,"h4",9),e._uU(17,"Error Message"),e.qZA(),e.TgZ(18,"span",11),e._uU(19),e.qZA(),e._UZ(20,"mat-divider",10),e.TgZ(21,"h4",9),e._uU(22,"API URL"),e.qZA(),e.TgZ(23,"span",11),e._uU(24),e.qZA(),e._UZ(25,"mat-divider",10),e.TgZ(26,"div",12)(27,"button",13),e._uU(28,"OK"),e.qZA()()()()()()),2&k&&(e.xp6(5),e.Oqu(E.data.alertTitle||"ERROR"),e.xp6(5),e.Q6J("ngIf",E.data.titleMessage),e.xp6(4),e.Oqu(E.data.message.code),e.xp6(5),e.Oqu(E.errorMessage),e.xp6(5),e.Oqu(E.data.message.URL),e.xp6(3),e.Q6J("mat-dialog-close",!1))},directives:[M.xw,M.yH,a.dk,M.Wh,C.lW,a.dn,d.O5,R.d,h.h,t.ZT],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}),D})()},2615:(Be,K,p)=>{"use strict";p.d(K,{a:()=>Ui});var t=p(3075),e=p(7579),f=p(2722),M=p(8966),a=p(2687),C=p(7772),d=p(7731),R=p(6529),h=p(5e3),L=p(5620),w=p(9107),D=p(9808),S=p(5043),k=p(1402),E=p(62),B=p(7093),Z=p(9224),Y=p(7423),ae=p(5615),ee=p(1125),ue=p(3322),ie=p(5245),re=p(7238),ge=p(4834);function q(Ue,Tt){1&Ue&&h.GkF(0)}function _e(Ue,Tt){1&Ue&&h.GkF(0)}const x=function(Ue){return{"h-5":Ue}};function i(Ue,Tt){if(1&Ue&&(h.TgZ(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),h._uU(4),h.ALo(5,"number"),h.qZA()()(),h.YNc(6,_e,1,0,"ng-container",0),h.qZA()),2&Ue){const ve=h.oxw(),Qe=h.MAs(4);h.Q6J("expanded",ve.panelExpanded)("ngClass",h.VKq(7,x,!ve.flgShowPanel)),h.xp6(4),h.AsE("Quote for ",ve.termCaption," amount (",h.lcZ(5,5,ve.quote.amount)," Sats)"),h.xp6(2),h.Q6J("ngTemplateOutlet",Qe)}}function r(Ue,Tt){if(1&Ue&&(h.TgZ(0,"div",19)(1,"h4",8),h._uU(2," Prepay Amount (Sats) "),h.TgZ(3,"mat-icon",20),h._uU(4,"info_outline"),h.qZA()(),h.TgZ(5,"span",10),h._uU(6),h.ALo(7,"number"),h.qZA()()),2&Ue){const ve=h.oxw(2);h.xp6(6),h.Oqu(h.lcZ(7,1,null==ve.quote?null:ve.quote.prepay_amt_sat))}}function u(Ue,Tt){1&Ue&&h._UZ(0,"mat-divider",13)}function c(Ue,Tt){if(1&Ue&&(h.TgZ(0,"div",6)(1,"div",21)(2,"h4",8),h._uU(3," Swap Server Node Pubkey "),h.TgZ(4,"mat-icon",22),h._uU(5,"info_outline"),h.qZA()(),h.TgZ(6,"span",10),h._uU(7),h.qZA()()()),2&Ue){const ve=h.oxw(2);h.xp6(7),h.Oqu(null==ve.quote?null:ve.quote.swap_payment_dest)}}function v(Ue,Tt){if(1&Ue&&(h.TgZ(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),h._uU(4," Swap Fee (Sats) "),h.TgZ(5,"mat-icon",9),h._uU(6,"info_outline"),h.qZA()(),h.TgZ(7,"span",10),h._uU(8),h.ALo(9,"number"),h.qZA()(),h.TgZ(10,"div",7)(11,"h4",8),h._uU(12),h.TgZ(13,"mat-icon",11),h._uU(14,"info_outline"),h.qZA()(),h.TgZ(15,"span",10),h._uU(16),h.ALo(17,"number"),h.qZA()(),h.YNc(18,r,8,3,"div",12),h.qZA(),h._UZ(19,"mat-divider",13),h.TgZ(20,"div",6)(21,"div",14)(22,"h4",8),h._uU(23," Max Off-chain Swap Routing Fee (Sats) "),h.TgZ(24,"mat-icon",15),h._uU(25,"info_outline"),h.qZA()(),h.TgZ(26,"span",10),h._uU(27),h.ALo(28,"number"),h.qZA()(),h.TgZ(29,"div",14)(30,"h4",8),h._uU(31," Max Off-chain Prepay Routing Fee (Sats) "),h.TgZ(32,"mat-icon",16),h._uU(33,"info_outline"),h.qZA()(),h.TgZ(34,"span",10),h._uU(35,"36"),h.qZA()()(),h.YNc(36,u,1,0,"mat-divider",17),h.YNc(37,c,8,1,"div",18),h.qZA()),2&Ue){const ve=h.oxw();h.xp6(2),h.Q6J("fxFlex",null!=ve.quote&&ve.quote.prepay_amt_sat?"30":"50"),h.xp6(6),h.Oqu(h.lcZ(9,9,null==ve.quote?null:ve.quote.swap_fee_sat)),h.xp6(2),h.Q6J("fxFlex",null!=ve.quote&&ve.quote.prepay_amt_sat?"35":"50"),h.xp6(2),h.hij(" ",null!=ve.quote&&ve.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=ve.quote&&ve.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),h.xp6(4),h.Oqu(h.lcZ(17,11,null!=ve.quote&&ve.quote.htlc_sweep_fee_sat?ve.quote.htlc_sweep_fee_sat:null!=ve.quote&&ve.quote.htlc_publish_fee_sat?ve.quote.htlc_publish_fee_sat:0)),h.xp6(2),h.Q6J("ngIf",null==ve.quote?null:ve.quote.prepay_amt_sat),h.xp6(9),h.Oqu(h.lcZ(28,13,(null==ve.quote?null:ve.quote.amount)*((null!=ve.quote&&ve.quote.off_chain_swap_routing_fee_percentage?null==ve.quote?null:ve.quote.off_chain_swap_routing_fee_percentage:2)/100))),h.xp6(9),h.Q6J("ngIf",""!==(null==ve.quote?null:ve.quote.swap_payment_dest)),h.xp6(1),h.Q6J("ngIf",""!==(null==ve.quote?null:ve.quote.swap_payment_dest))}}let T=(()=>{class Ue{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275cmp=h.Xpm({type:Ue,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},decls:5,vars:1,consts:[[4,"ngTemplateOutlet"],["informationBlock",""],["quoteDetailsBlock",""],["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded","ngClass"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],[3,"fxFlex"],["fxLayoutAlign","start center",1,"font-bold-500"],["matTooltip","Estimated fee charged by the loop server for the swap",1,"info-icon","info-icon-text"],[1,"foreground-secondary-text"],["matTooltip","An estimate of the on-chain fee that needs to be paid to sweep the HTLC",1,"info-icon","info-icon-text"],["fxFlex","35",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","50"],["matTooltip","Maximum off-chain fee that may be paid for routing the payment amount to the server",1,"info-icon","info-icon-text"],["matTooltip","Maximum off-chain fee that may be paid for routing the pre-payment amount to the server","matTooltipPosition","before",1,"info-icon","info-icon-text"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxFlex","35"],["matTooltip","The part of the swap fee that is requested as a prepayment","matTooltipPosition","before",1,"info-icon","info-icon-text"],["fxFlex","100"],["matTooltip","The node pubkey, where the swap payments will be sent",1,"info-icon","info-icon-text"]],template:function(ve,Qe){if(1&ve&&(h.YNc(0,q,1,0,"ng-container",0),h.YNc(1,i,7,9,"ng-template",null,1,h.W1O),h.YNc(3,v,38,15,"ng-template",null,2,h.W1O)),2&ve){const _t=h.MAs(2),se=h.MAs(4);h.Q6J("ngTemplateOutlet",Qe.showPanel?_t:se)}},directives:[D.tP,ee.ib,B.yH,D.mk,ue.oO,ee.yz,ee.yK,B.Wh,B.xw,ie.Hw,re.gM,D.O5,ge.d],pipes:[D.JJ],styles:[""]}),Ue})();var I=p(7322),y=p(7531),n=p(3390),_=p(2368),V=p(9814),N=p(5899);function H(Ue,Tt){1&Ue&&h.GkF(0)}function X(Ue,Tt){if(1&Ue&&(h.TgZ(0,"div",3)(1,"span",4),h._uU(2),h.qZA()()),2&Ue){const ve=h.oxw();h.xp6(2),h.Oqu(null!=ve.loopStatus&&ve.loopStatus.error?null==ve.loopStatus?null:ve.loopStatus.error:"Unknown Error.")}}function he(Ue,Tt){if(1&Ue&&(h.TgZ(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),h._uU(4,"ID"),h.qZA(),h.TgZ(5,"span",4),h._uU(6),h.qZA()()(),h._UZ(7,"mat-divider",8),h.TgZ(8,"div",5)(9,"div",6)(10,"h4",7),h._uU(11,"HTLC Address"),h.qZA(),h.TgZ(12,"span",4),h._uU(13),h.qZA()()()()),2&Ue){const ve=h.oxw();h.xp6(6),h.Oqu(null==ve.loopStatus?null:ve.loopStatus.id_bytes),h.xp6(7),h.Oqu(null==ve.loopStatus?null:ve.loopStatus.htlc_address)}}let be=(()=>{class Ue{constructor(){}}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275cmp=h.Xpm({type:Ue,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},decls:5,vars:1,consts:[[4,"ngTemplateOutlet"],["loopFailedBlock",""],["loopSuccessfulBlock",""],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(ve,Qe){if(1&ve&&(h.YNc(0,H,1,0,"ng-container",0),h.YNc(1,X,3,1,"ng-template",null,1,h.W1O),h.YNc(3,he,14,2,"ng-template",null,2,h.W1O)),2&ve){const _t=h.MAs(2),se=h.MAs(4);h.Q6J("ngTemplateOutlet",null!=Qe.loopStatus&&Qe.loopStatus.error?_t:se)}},directives:[D.tP,B.xw,B.yH,B.Wh,ge.d],styles:[""]}),Ue})();var Pe=p(113);function Ee(Ue,Tt){1&Ue&&h.GkF(0)}const j=function(Ue,Tt){return{"small-svg":Ue,"large-svg":Tt}};function Ve(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",7)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),h._UZ(8,"circle",12)(9,"path",13),h.qZA(),h.TgZ(10,"g",14),h._UZ(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),h.qZA()()()()(),h.kcU(),h.TgZ(26,"div",30)(27,"mat-card-title"),h._uU(28,"Loop Out explained."),h.qZA()(),h.TgZ(29,"div",31)(30,"mat-card-subtitle",32),h._uU(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,j,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function Me(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",33)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),h._UZ(15,"rect",43)(16,"rect",44)(17,"rect",45)(18,"circle",46)(19,"rect",47)(20,"rect",48)(21,"circle",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"rect",53)(26,"circle",54)(27,"circle",55),h.qZA(),h.TgZ(28,"g",56),h._UZ(29,"path",57)(30,"rect",58)(31,"polygon",59)(32,"circle",60)(33,"path",61)(34,"rect",62)(35,"rect",63)(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"path",69)(42,"path",70),h.qZA(),h._UZ(43,"path",71),h.qZA()(),h._UZ(44,"circle",72),h.qZA()()()(),h.kcU(),h.TgZ(45,"div",30)(46,"mat-card-title"),h._uU(47,"Step 1: Deciding to Loop Out"),h.qZA()(),h.TgZ(48,"div",31)(49,"mat-card-subtitle",32),h._uU(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,j,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function J(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",73)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",74),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",75)(11,"g",76),h._UZ(12,"circle",77)(13,"path",78),h.TgZ(14,"g",79),h._UZ(15,"polygon",80)(16,"polygon",81)(17,"path",82),h.qZA(),h.TgZ(18,"g",83),h._UZ(19,"polygon",84)(20,"path",85)(21,"rect",86)(22,"path",87)(23,"rect",88)(24,"rect",89)(25,"rect",90)(26,"rect",91)(27,"circle",92)(28,"path",93),h.TgZ(29,"g",94)(30,"g",95),h._UZ(31,"g",96),h.qZA(),h._UZ(32,"g",97),h.qZA(),h._UZ(33,"path",98),h.qZA(),h.TgZ(34,"g",99)(35,"g",41)(36,"g",42),h._UZ(37,"rect",43)(38,"rect",44)(39,"rect",45)(40,"circle",46)(41,"rect",47)(42,"rect",48)(43,"circle",49)(44,"rect",50)(45,"rect",51)(46,"rect",52)(47,"rect",53)(48,"circle",100)(49,"circle",54)(50,"circle",55)(51,"circle",101),h.qZA(),h.TgZ(52,"g",56),h._UZ(53,"path",57)(54,"rect",102)(55,"polygon",103)(56,"circle",104)(57,"path",61)(58,"rect",105)(59,"rect",106)(60,"rect",107)(61,"rect",108)(62,"rect",109)(63,"rect",110)(64,"rect",68)(65,"path",69)(66,"path",70),h.qZA(),h._UZ(67,"path",111),h.qZA()()()()()(),h.kcU(),h.TgZ(68,"div",30)(69,"mat-card-title"),h._uU(70,"Step 2: Send lightning payment"),h.qZA()(),h.TgZ(71,"div",31)(72,"mat-card-subtitle",32),h._uU(73," Your node pays a lightning invoice for the amount requested via the loop service. This moves the local balance, for the amount paid, to the remote side of the channel. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,j,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function Ie(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",112)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),h._UZ(9,"circle",12)(10,"path",117),h.qZA(),h.TgZ(11,"g",14),h._UZ(12,"ellipse",118)(13,"ellipse",16)(14,"rect",17)(15,"rect",18)(16,"rect",19)(17,"rect",20)(18,"rect",21)(19,"rect",22)(20,"rect",23)(21,"rect",24)(22,"rect",25)(23,"rect",26)(24,"rect",27)(25,"rect",28)(26,"rect",29),h.qZA()(),h.TgZ(27,"g",119),h._UZ(28,"polygon",80)(29,"polygon",120)(30,"path",82),h.qZA(),h.TgZ(31,"g",121),h._UZ(32,"polygon",84)(33,"path",85)(34,"rect",86)(35,"path",87)(36,"rect",88)(37,"rect",89)(38,"rect",90)(39,"rect",91)(40,"circle",122)(41,"path",93),h.TgZ(42,"g",94)(43,"g",95),h._UZ(44,"g",96),h.qZA(),h._UZ(45,"g",97),h.qZA(),h._UZ(46,"path",123),h.qZA()()()()(),h.kcU(),h.TgZ(47,"div",30)(48,"mat-card-title"),h._uU(49,"Step 3: Receive funds back"),h.qZA()(),h.TgZ(50,"div",31)(51,"mat-card-subtitle",32),h._uU(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,j,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function ut(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",124)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),h._UZ(13,"rect",127)(14,"rect",128)(15,"rect",129)(16,"circle",130)(17,"rect",131)(18,"rect",132)(19,"circle",133)(20,"rect",134)(21,"rect",135)(22,"rect",136)(23,"rect",137)(24,"rect",138)(25,"circle",139)(26,"circle",140)(27,"circle",141),h.qZA(),h.TgZ(28,"g",142)(29,"g",143)(30,"g",144),h._UZ(31,"path",145)(32,"rect",146)(33,"polygon",147),h.TgZ(34,"g",148),h._UZ(35,"path",149),h.qZA(),h._UZ(36,"rect",150)(37,"rect",151)(38,"rect",152)(39,"rect",153)(40,"rect",154)(41,"rect",155)(42,"rect",156)(43,"path",157)(44,"path",158),h.qZA(),h.TgZ(45,"g",159),h._UZ(46,"path",160)(47,"path",161)(48,"path",162)(49,"path",163)(50,"path",164)(51,"path",165)(52,"path",166)(53,"path",167)(54,"path",168)(55,"path",169)(56,"path",170)(57,"circle",171)(58,"circle",172),h.qZA(),h._UZ(59,"path",173),h.qZA()()()()()(),h.kcU(),h.TgZ(60,"div",30)(61,"mat-card-title"),h._uU(62,"Done!"),h.qZA()(),h.TgZ(63,"div",31)(64,"mat-card-subtitle",32),h._uU(65," Final settlement occurs when your node sweeps the on-chain payment and the loop server settles the lightning invoice. You receive the payment on-chain in your wallet and also move local balance to the remote side of the channel, gaining inbound capacity. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,j,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}let Oe=(()=>{class Ue{constructor(ve){this.commonService=ve,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new h.vpe,this.screenSize="",this.screenSizeEnum=d.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(ve){2===ve.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===ve.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(h.Y36(E.v))},Ue.\u0275cmp=h.Xpm({type:Ue,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopOut_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopOut_Step02","transform","translate(-540.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(540.000000, 210.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["fxFlex","30","viewBox","0 0 373 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","LoopOut_Step03","transform","translate(-460.000000, -210.000000)"],["id","Loop_Step03","transform","translate(460.000000, 210.000000)"],["id","Oval","fill-rule","nonzero","cx","330.487742","cy","57.4877419","r","42.4877419",1,"fill-color-2"],["d","M345.082742,43.5000036 C349.446821,43.5000036 352.999928,40.1343958 352.999928,36.0000215 C352.999928,31.8656472 349.446821,28.5000393 345.082742,28.5000393 C341.98433,28.5000393 339.560889,30.4359631 337.999964,32.1843872 C336.43904,30.4359631 334.015599,28.5000393 330.917187,28.5000393 C326.553107,28.5000393 323,31.8656472 323,36.0000215 C323,40.1343958 326.553107,43.5000036 330.917187,43.5000036 C334.015599,43.5000036 336.43904,41.5640798 337.999964,39.8156557 C339.560889,41.5640798 341.98433,43.5000036 345.082742,43.5000036 Z M330.917187,39.0000143 C329.032807,39.0000143 327.499989,37.6546959 327.499989,36.0000286 C327.499989,34.3453471 329.032807,33.0000286 330.917187,33.0000286 C332.707771,33.0000286 334.357776,34.6921938 335.323426,36.0000286 C334.36716,37.2937501 332.703102,39.0000143 330.917187,39.0000143 Z M345.082742,39.0000143 C343.292157,39.0000143 341.642152,37.3078492 340.676502,36.0000286 C341.632768,34.7062929 343.296827,33.0000286 345.082742,33.0000286 C346.967121,33.0000286 348.499939,34.3453471 348.499939,36.0000286 C348.499939,37.6546959 346.967121,39.0000143 345.082742,39.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(113.000000, 79.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-22"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(265.000000, 50.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-3"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["d","M46.60483,51.432122 C46.8713708,51.432122 47.1252368,51.2924832 47.2648756,51.0513229 L52.8499289,41.4044125 C53.145042,40.8998413 52.7801095,40.2620153 52.1930443,40.2620153 L48.5310139,40.2620153 L49.8828693,36.1430446 C50.0098023,35.6606929 49.6448699,35.184694 49.1466515,35.184694 L44.5770624,35.184694 C44.1962633,35.184694 43.8725779,35.4671324 43.8218171,35.8447396 L42.8063528,43.4607214 C42.7460473,43.9176927 43.1014659,44.3238722 43.5615982,44.3238722 L47.3283421,44.3238722 L45.8654203,50.4959909 C45.751193,50.9783426 46.1192864,51.432122 46.60483,51.432122 Z","id","b","fill-rule","nonzero","transform","translate(47.877046, 43.308408) rotate(14.000000) translate(-47.877046, -43.308408) ",1,"fill-color-12"],["id","Group-34","fill-rule","nonzero"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","17.5648113","r","8.78679245"],["id","Oval","cx","76.317438","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-8"],["id","Path","opacity","0.222721354","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-18"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-8"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-14"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step04","transform","translate(-503.000000, -212.000000)"],["id","Loop_Step04","transform","translate(503.000000, 212.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M46.519593,50.6740439 L46.519593,48.5460252 C46.9395628,48.5560039 47.349554,48.5560039 47.739557,48.5560039 L47.739557,50.6740439 L49.2794877,50.6740439 L49.2794877,48.5160274 C51.8593644,48.3760168 53.5840235,47.7260428 53.8140277,45.2961554 C53.9939838,43.3462645 53.0739982,42.476265 51.6140824,42.1263004 C52.4940295,41.6763328 53.054041,40.8763386 52.92404,39.5463928 C52.7540005,37.7264719 51.2593765,37.1164744 49.2794567,36.9465279 L49.2794567,34.4266159 L47.739526,34.4266159 L47.739526,36.8765226 C47.3395134,36.8765226 46.9295222,36.8865012 46.519562,36.8965108 L46.519562,34.4266159 L44.9796003,34.4266159 L44.9796003,36.9465279 C44.413422,36.9636341 43.7539962,36.9552669 41.8897293,36.9465279 L41.8897293,38.5864308 C43.1055717,38.564924 43.7434908,38.4867995 43.8896683,39.2663716 L43.8896683,46.1661239 C43.7968547,46.7846435 43.3018283,46.6955796 42.1997174,46.6760872 L41.8897293,48.5060178 C44.6975648,48.5060178 44.9796313,48.5160274 44.9796313,48.5160274 L44.9796313,50.6740439 L46.519593,50.6740439 Z M46.5495908,41.7662953 L46.5495908,38.6964125 C47.4195593,38.6964125 50.1394466,38.4264629 50.1394466,40.2363742 C50.1394466,41.9663016 47.4195903,41.7662953 46.5495908,41.7662953 Z M46.5495908,46.6860969 L46.5495908,43.306257 C47.5895368,43.306257 50.7741427,43.0162572 50.7741427,44.9962079 C50.7741427,46.9060914 47.5895368,46.6860969 46.5495908,46.6860969 Z","id","B","fill-rule","nonzero","transform","translate(47.863077, 42.550330) rotate(14.000000) translate(-47.863077, -42.550330) ",1,"fill-color-29"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step05","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step05","transform","translate(542.000000, 210.000000)"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"]],template:function(ve,Qe){if(1&ve&&(h.YNc(0,Ee,1,0,"ng-container",0),h.YNc(1,Ve,32,5,"ng-template",null,1,h.W1O),h.YNc(3,Me,51,5,"ng-template",null,2,h.W1O),h.YNc(5,J,74,5,"ng-template",null,3,h.W1O),h.YNc(7,Ie,53,5,"ng-template",null,4,h.W1O),h.YNc(9,ut,66,5,"ng-template",null,5,h.W1O)),2&ve){const _t=h.MAs(2),se=h.MAs(4),Je=h.MAs(6),xt=h.MAs(8),Bt=h.MAs(10);h.Q6J("ngTemplateOutlet",1===Qe.stepNumber?_t:2===Qe.stepNumber?se:3===Qe.stepNumber?Je:4===Qe.stepNumber?xt:Bt)}},directives:[D.tP,B.xw,B.yH,B.Wh,D.mk,ue.oO,Z.n5,Z.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Pe.l]}}),Ue})();function we(Ue,Tt){1&Ue&&h.GkF(0)}const ce=function(Ue,Tt){return{"small-svg":Ue,"large-svg":Tt}};function Te(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",7)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),h._UZ(8,"circle",12)(9,"path",13),h.qZA(),h.TgZ(10,"g",14),h._UZ(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),h.qZA()()()()(),h.kcU(),h.TgZ(26,"div",30)(27,"mat-card-title"),h._uU(28,"Loop In explained."),h.qZA()(),h.TgZ(29,"div",31)(30,"mat-card-subtitle",32),h._uU(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,ce,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function xe(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",33)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),h._UZ(13,"rect",41)(14,"rect",42)(15,"rect",43)(16,"circle",44)(17,"rect",45)(18,"rect",46)(19,"circle",47)(20,"rect",48)(21,"rect",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"circle",53)(26,"circle",54)(27,"circle",55),h.qZA(),h.TgZ(28,"g",56)(29,"g",57)(30,"g",58),h._UZ(31,"path",59)(32,"rect",60)(33,"polygon",61),h.TgZ(34,"g",62),h._UZ(35,"path",63),h.qZA(),h._UZ(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"rect",69)(42,"rect",70)(43,"path",71)(44,"path",72),h.qZA(),h.TgZ(45,"g",73),h._UZ(46,"path",74)(47,"path",75)(48,"path",76)(49,"path",77)(50,"path",78)(51,"path",79)(52,"path",80)(53,"path",81)(54,"path",82)(55,"path",83)(56,"path",84)(57,"circle",85)(58,"circle",86),h.qZA(),h._UZ(59,"path",87),h.qZA()()()()()(),h.kcU(),h.TgZ(60,"div",30)(61,"mat-card-title"),h._uU(62,"Step 1: Deciding to Loop In"),h.qZA()(),h.TgZ(63,"div",31)(64,"mat-card-subtitle",32),h._uU(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,ce,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function W(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",88)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",89),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),h._UZ(14,"circle",95)(15,"path",96),h.TgZ(16,"g",97),h._UZ(17,"polygon",98)(18,"polygon",99)(19,"path",100),h.qZA(),h.TgZ(20,"g",101),h._UZ(21,"polygon",102)(22,"path",103)(23,"rect",104)(24,"path",105)(25,"rect",106)(26,"rect",107)(27,"rect",108)(28,"rect",109)(29,"circle",110)(30,"path",111),h.TgZ(31,"g",112)(32,"g",113),h._UZ(33,"g",114),h.qZA(),h._UZ(34,"g",115),h.qZA()()(),h.TgZ(35,"g",116)(36,"g",40),h._UZ(37,"rect",117)(38,"rect",42)(39,"rect",43)(40,"circle",118)(41,"rect",45)(42,"rect",46)(43,"circle",119)(44,"rect",48)(45,"rect",49)(46,"rect",50)(47,"rect",51)(48,"rect",52)(49,"circle",120)(50,"circle",54)(51,"circle",55)(52,"circle",121),h.qZA(),h.TgZ(53,"g",56)(54,"g",57)(55,"g",58),h._UZ(56,"path",59)(57,"rect",60)(58,"polygon",61),h.TgZ(59,"g",122),h._UZ(60,"path",63),h.qZA(),h._UZ(61,"rect",123)(62,"rect",124)(63,"rect",125)(64,"rect",126)(65,"rect",127)(66,"rect",128)(67,"rect",129)(68,"path",130)(69,"path",72),h.qZA(),h.TgZ(70,"g",73),h._UZ(71,"path",131)(72,"path",132)(73,"path",133)(74,"path",134)(75,"path",135)(76,"path",136)(77,"path",80)(78,"path",81)(79,"path",137)(80,"path",83)(81,"path",138)(82,"circle",85)(83,"circle",86),h.qZA(),h._UZ(84,"path",139),h.qZA()()()(),h._UZ(85,"path",140)(86,"path",141),h.qZA()()()(),h.kcU(),h.TgZ(87,"div",30)(88,"mat-card-title"),h._uU(89,"Step 2: Send payment out"),h.qZA()(),h.TgZ(90,"div",31)(91,"mat-card-subtitle",32),h._uU(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,ce,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function te(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",142)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),h._UZ(10,"circle",12)(11,"path",147),h.qZA(),h.TgZ(12,"g",14),h._UZ(13,"ellipse",148)(14,"ellipse",16)(15,"rect",17)(16,"rect",18)(17,"rect",19)(18,"rect",20)(19,"rect",21)(20,"rect",22)(21,"rect",23)(22,"rect",24)(23,"rect",25)(24,"rect",26)(25,"rect",27)(26,"rect",28)(27,"rect",29),h.qZA()(),h.TgZ(28,"g",149),h._UZ(29,"polygon",150)(30,"polygon",99)(31,"path",151),h.qZA(),h.TgZ(32,"g",152),h._UZ(33,"polygon",102)(34,"path",103)(35,"rect",104)(36,"path",105)(37,"rect",106)(38,"rect",107)(39,"rect",108)(40,"rect",109)(41,"circle",110)(42,"path",111),h.TgZ(43,"g",112)(44,"g",113),h._UZ(45,"g",114),h.qZA(),h._UZ(46,"g",115),h.qZA()()(),h._UZ(47,"path",153),h.qZA()()()(),h.kcU(),h.TgZ(48,"div",30)(49,"mat-card-title"),h._uU(50,"Step 3: Recieve Funds Off-chain"),h.qZA()(),h.TgZ(51,"div",31)(52,"mat-card-subtitle",32),h._uU(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,ce,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}function Ce(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(ve),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",154)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),h._UZ(15,"rect",159)(16,"rect",160)(17,"rect",161)(18,"circle",162)(19,"rect",163)(20,"rect",164)(21,"circle",165)(22,"rect",166)(23,"rect",167)(24,"rect",168)(25,"rect",169)(26,"circle",170)(27,"circle",171),h.qZA(),h.TgZ(28,"g",172),h._UZ(29,"path",173)(30,"rect",174)(31,"polygon",175)(32,"circle",176)(33,"path",177)(34,"rect",178)(35,"rect",179)(36,"rect",180)(37,"rect",181)(38,"rect",182)(39,"rect",183)(40,"rect",184)(41,"path",185)(42,"path",186),h.qZA(),h._UZ(43,"path",187),h.qZA()(),h._UZ(44,"circle",188),h.qZA()()()(),h.kcU(),h.TgZ(45,"div",30)(46,"mat-card-title"),h._uU(47,"Done!"),h.qZA()(),h.TgZ(48,"div",31)(49,"mat-card-subtitle",32),h._uU(50," You send the payment on-chain from your wallet and also move remote balance to the local side of the node, gaining outgoing capacity. "),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@sliderAnimation",ve.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,ce,ve.screenSize===ve.screenSizeEnum.XS,ve.screenSize!==ve.screenSizeEnum.XS))}}let fe=(()=>{class Ue{constructor(ve){this.commonService=ve,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new h.vpe,this.screenSize="",this.screenSizeEnum=d.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(ve){2===ve.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===ve.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(h.Y36(E.v))},Ue.\u0275cmp=h.Xpm({type:Ue,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopIn_Step02","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(542.000000, 210.000000)"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"],["fxFlex","30","viewBox","0 0 364 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","Loopv0.3","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step03","transform","translate(-1127.000000, -164.000000)"],["id","LoopIn_Step03","transform","translate(1127.000000, 164.000000)"],["id","Group-21"],["id","Group-35","transform","translate(107.000000, 10.000000)"],["id","Oval","fill-rule","nonzero","cx","214.487742","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M232.082742,28.5000036 C236.446821,28.5000036 239.999928,25.1343958 239.999928,21.0000215 C239.999928,16.8656472 236.446821,13.5000393 232.082742,13.5000393 C228.98433,13.5000393 226.560889,15.4359631 224.999964,17.1843872 C223.43904,15.4359631 221.015599,13.5000393 217.917187,13.5000393 C213.553107,13.5000393 210,16.8656472 210,21.0000215 C210,25.1343958 213.553107,28.5000036 217.917187,28.5000036 C221.015599,28.5000036 223.43904,26.5640798 224.999964,24.8156557 C226.560889,26.5640798 228.98433,28.5000036 232.082742,28.5000036 Z M217.917187,24.0000143 C216.032807,24.0000143 214.499989,22.6546959 214.499989,21.0000286 C214.499989,19.3453471 216.032807,18.0000286 217.917187,18.0000286 C219.707771,18.0000286 221.357776,19.6921938 222.323426,21.0000286 C221.36716,22.2937501 219.703102,24.0000143 217.917187,24.0000143 Z M232.082742,24.0000143 C230.292157,24.0000143 228.642152,22.3078492 227.676502,21.0000286 C228.632768,19.7062929 230.296827,18.0000286 232.082742,18.0000286 C233.967121,18.0000286 235.499939,19.3453471 235.499939,21.0000286 C235.499939,22.6546959 233.967121,24.0000143 232.082742,24.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(0.000000, 64.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-20"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-20"],["id","Group-43","transform","translate(152.000000, 35.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["id","LoopIn_Step03","fill-rule","nonzero"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-10"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","15.8607624","r","7.93434243"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.35996418",1,"fill-color-31"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-4"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-20"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-20"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-16"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-9"],["d","M93.2292414,91.9116485 L93.2292414,89.7922708 C93.647506,89.8022089 94.0558324,89.8022089 94.4442517,89.8022089 L94.4442517,91.9116485 L95.9779294,91.9116485 L95.9779294,89.7623948 C98.5473303,89.6229527 100.264986,88.975618 100.494057,86.5555973 C100.673282,84.6136241 99.757032,83.7471573 98.3030443,83.3986138 C99.1794183,82.9504733 99.7371558,82.1537275 99.6076827,80.8291821 C99.4383337,79.0166511 97.9497787,78.4091306 95.9778985,78.2398742 L95.9778985,75.7301945 L94.4442208,75.7301945 L94.4442208,78.1701531 C94.0458325,78.1701531 93.6375061,78.1800912 93.2292106,78.1900602 L93.2292106,75.7301945 L91.695502,75.7301945 L91.695502,78.2398742 C91.1316227,78.2569109 90.4748746,78.2485777 88.6181777,78.2398742 L88.6181777,79.8731181 C89.8290831,79.8516987 90.4644118,79.7738914 90.6099957,80.5502979 L90.6099957,87.4220333 C90.517559,88.0380413 90.0245427,87.9493391 88.926907,87.9299259 L88.6181777,89.7524258 L89.5798445,89.7528809 C91.4824304,89.7548325 91.6955329,89.7623948 91.6955329,89.7623948 L91.6955329,91.9116485 L93.2292414,91.9116485 Z M93.2591175,83.0400705 L93.2591175,79.9826533 C94.1255534,79.9826533 96.8343964,79.7137998 96.8343964,81.5163618 C96.8343964,83.2392647 94.1255843,83.0400705 93.2591175,83.0400705 Z M93.2591175,87.9398948 L93.2591175,84.5737791 C94.2948407,84.5737791 97.4665153,84.2849568 97.4665153,86.2568678 C97.4665153,88.1589961 94.2948407,87.9398948 93.2591175,87.9398948 Z","id","b","fill-rule","nonzero","transform","translate(94.567271, 83.820921) rotate(14.000000) translate(-94.567271, -83.820921) ",1,"fill-color-9"],["d","M305.611064,96.181454 L305.611064,94.0620763 C306.029328,94.0720144 306.437655,94.0720144 306.826074,94.0720144 L306.826074,96.181454 L308.359752,96.181454 L308.359752,94.0322003 C310.929153,93.8927582 312.646809,93.2454235 312.875879,90.8254028 C313.055104,88.8834296 312.138854,88.0169628 310.684867,87.6684193 C311.561241,87.2202788 312.118978,86.423533 311.989505,85.0989876 C311.820156,83.2864566 310.331601,82.678936 308.359721,82.5096797 L308.359721,80 L306.826043,80 L306.826043,82.4399586 C306.427655,82.4399586 306.019328,82.4498967 305.611033,82.4598657 L305.611033,80 L304.077324,80 L304.077324,82.5096797 C303.513445,82.5267164 302.856697,82.5183832 301,82.5096797 L301,84.1429236 C302.210905,84.1215042 302.846234,84.0436969 302.991818,84.8201034 L302.991818,91.6918387 C302.899381,92.3078468 302.406365,92.2191446 301.308729,92.1997314 L301,94.0222313 L301.961667,94.0226864 C303.864253,94.024638 304.077355,94.0322003 304.077355,94.0322003 L304.077355,96.181454 L305.611064,96.181454 Z M305.64094,87.309876 L305.64094,84.2524587 C306.507376,84.2524587 309.216219,83.9836053 309.216219,85.7861673 C309.216219,87.5090702 306.507407,87.309876 305.64094,87.309876 Z M305.64094,92.2097003 L305.64094,88.8435846 C306.676663,88.8435846 309.848338,88.5547623 309.848338,90.5266733 C309.848338,92.4288016 306.676663,92.2097003 305.64094,92.2097003 Z","id","b","fill-rule","nonzero","transform","translate(306.949093, 88.090727) rotate(14.000000) translate(-306.949093, -88.090727) ",1,"fill-color-26"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step04","transform","translate(-1799.000000, -756.000000)"],["id","LoopIn_Step04","transform","translate(1799.000000, 756.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["d","M225.805162,92.2474279 C226.071703,92.2474279 226.325569,92.1077892 226.465207,91.8666288 L232.050261,82.2197185 C232.345374,81.7151473 231.980441,81.0773212 231.393376,81.0773212 L227.731346,81.0773212 L229.083201,76.9583506 C229.210134,76.4759989 228.845202,76 228.346983,76 L223.777394,76 C223.396595,76 223.07291,76.2824384 223.022149,76.6600456 L222.006685,84.2760274 C221.946379,84.7329987 222.301798,85.1391782 222.76193,85.1391782 L226.528674,85.1391782 L225.065752,91.3112968 C224.951525,91.7936485 225.319618,92.2474279 225.805162,92.2474279 Z","id","b","fill-rule","nonzero","transform","translate(227.077378, 84.123714) rotate(14.000000) translate(-227.077378, -84.123714) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step05","transform","translate(-2386.000000, -764.000000)","fill-rule","nonzero"],["id","LoopIn_Step05","transform","translate(2386.000000, 764.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"]],template:function(ve,Qe){if(1&ve&&(h.YNc(0,we,1,0,"ng-container",0),h.YNc(1,Te,32,5,"ng-template",null,1,h.W1O),h.YNc(3,xe,66,5,"ng-template",null,2,h.W1O),h.YNc(5,W,93,5,"ng-template",null,3,h.W1O),h.YNc(7,te,54,5,"ng-template",null,4,h.W1O),h.YNc(9,Ce,51,5,"ng-template",null,5,h.W1O)),2&ve){const _t=h.MAs(2),se=h.MAs(4),Je=h.MAs(6),xt=h.MAs(8),Bt=h.MAs(10);h.Q6J("ngTemplateOutlet",1===Qe.stepNumber?_t:2===Qe.stepNumber?se:3===Qe.stepNumber?Je:4===Qe.stepNumber?xt:Bt)}},directives:[D.tP,B.xw,B.yH,B.Wh,D.mk,ue.oO,Z.n5,Z.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Pe.l]}}),Ue})();const Q=["stepper"];function ft(Ue,Tt){if(1&Ue&&(h.TgZ(0,"div",48)(1,"p",49)(2,"strong"),h._uU(3,"Channel Peer:\xa0"),h.qZA(),h._uU(4),h.ALo(5,"titlecase"),h.qZA(),h.TgZ(6,"p",50)(7,"strong"),h._uU(8,"Channel ID:\xa0"),h.qZA(),h._uU(9),h.qZA(),h._UZ(10,"p",50),h.qZA()),2&Ue){const ve=h.oxw(2);h.xp6(4),h.Oqu(h.lcZ(5,2,ve.channel.remote_alias)),h.xp6(5),h.Oqu(ve.channel.chan_id)}}function tt(Ue,Tt){if(1&Ue&&h._uU(0),2&Ue){const ve=h.oxw(2);h.Oqu(ve.inputFormLabel)}}function Dt(Ue,Tt){1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1,"Amount is required."),h.qZA())}function di(Ue,Tt){if(1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1),h.ALo(2,"number"),h.qZA()),2&Ue){const ve=h.oxw(2);h.xp6(1),h.hij("Amount must be greater than or equal to ",h.lcZ(2,1,ve.minQuote.amount),".")}}function Yt(Ue,Tt){if(1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1),h.ALo(2,"number"),h.qZA()),2&Ue){const ve=h.oxw(2);h.xp6(1),h.hij("Amount must be less than or equal to ",h.lcZ(2,1,ve.maxQuote.amount),".")}}function Zt(Ue,Tt){1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1,"Confirmation target is required."),h.qZA())}function ui(Ue,Tt){1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1,"Confirmation target must be a positive number."),h.qZA())}function Ot(Ue,Tt){1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1,"Percentage is required."),h.qZA())}function Nt(Ue,Tt){1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1,"Percentage must be a positive number."),h.qZA())}function gt(Ue,Tt){if(1&Ue&&(h.TgZ(0,"mat-form-field",50),h._UZ(1,"input",51),h.YNc(2,Ot,2,0,"mat-error",25),h.YNc(3,Nt,2,0,"mat-error",25),h.qZA()),2&Ue){const ve=h.oxw(2);h.xp6(1),h.Q6J("step",1),h.xp6(1),h.Q6J("ngIf",null==ve.inputFormGroup.controls.routingFeePercent.errors?null:ve.inputFormGroup.controls.routingFeePercent.errors.required),h.xp6(1),h.Q6J("ngIf",null==ve.inputFormGroup.controls.routingFeePercent.errors?null:ve.inputFormGroup.controls.routingFeePercent.errors.min)}}function it(Ue,Tt){1&Ue&&(h.TgZ(0,"div",52)(1,"mat-slide-toggle",53),h._uU(2,"Fast"),h.qZA(),h.TgZ(3,"mat-icon",54),h._uU(4,"info_outline"),h.qZA()())}function bt(Ue,Tt){if(1&Ue&&h._uU(0),2&Ue){const ve=h.oxw(2);h.Oqu(ve.quoteFormLabel)}}function ei(Ue,Tt){1&Ue&&(h.TgZ(0,"p",55)(1,"mat-icon",56),h._uU(2,"close"),h.qZA(),h._uU(3,"Local balance amount is insufficient for swap."),h.qZA())}function Qt(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",57),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).onValidateAmount()}),h._uU(1,"Next"),h.qZA()}}function Re(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",58),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).onLoop()}),h._uU(1),h.qZA()}if(2&Ue){const ve=h.oxw(2);h.xp6(1),h.hij("Initiate ",ve.loopDirectionCaption,"")}}function ke(Ue,Tt){if(1&Ue&&h._uU(0),2&Ue){const ve=h.oxw(3);h.Oqu(ve.addressFormLabel)}}function de(Ue,Tt){1&Ue&&(h.TgZ(0,"mat-error"),h._uU(1,"Address is required."),h.qZA())}function ye(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"mat-step",16)(1,"form",17),h.YNc(2,ke,1,1,"ng-template",18),h.TgZ(3,"div",59)(4,"mat-radio-group",60),h.NdJ("change",function(_t){return h.CHM(ve),h.oxw(2).onAddressTypeChange(_t)}),h.TgZ(5,"mat-radio-button",61),h._uU(6,"Node Local Address"),h.qZA(),h.TgZ(7,"mat-radio-button",62),h._uU(8,"External Address"),h.qZA()(),h.TgZ(9,"mat-form-field",63),h._UZ(10,"input",64),h.YNc(11,de,2,0,"mat-error",25),h.qZA()(),h.TgZ(12,"div",29)(13,"button",65),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).onLoop()}),h._uU(14),h.qZA()()()()}if(2&Ue){const ve=h.oxw(2);h.Q6J("stepControl",ve.addressFormGroup)("editable",ve.flgEditable),h.xp6(1),h.Q6J("formGroup",ve.addressFormGroup),h.xp6(9),h.Q6J("required","external"===ve.addressFormGroup.controls.addressType.value),h.xp6(1),h.Q6J("ngIf",null==ve.addressFormGroup.controls.address.errors?null:ve.addressFormGroup.controls.address.errors.required),h.xp6(3),h.hij("Initiate ",ve.loopDirectionCaption,"")}}function ht(Ue,Tt){if(1&Ue&&h._uU(0),2&Ue){const ve=h.oxw(2);h.hij("",ve.loopDirectionCaption," Status")}}function mt(Ue,Tt){if(1&Ue&&(h.TgZ(0,"mat-icon",66),h._uU(1),h.qZA()),2&Ue){const ve=h.oxw(2);h.xp6(1),h.Oqu(ve.loopStatus&&null!=ve.loopStatus&&ve.loopStatus.id_bytes?"check":"close")}}function Ft(Ue,Tt){1&Ue&&h._UZ(0,"div")}function nt(Ue,Tt){1&Ue&&h._UZ(0,"mat-progress-bar",67)}function He(Ue,Tt){if(1&Ue&&(h.TgZ(0,"h4",68),h._uU(1),h.qZA()),2&Ue){const ve=h.oxw(2);h.xp6(1),h.Oqu(ve.loopStatus&&ve.loopStatus.error?ve.loopDirectionCaption+" failed.":ve.loopStatus&&ve.loopStatus.id_bytes&&ve.channel?ve.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":ve.loopDirectionCaption+" request placed successfully.")}}function rt(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",69),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).goToLoop()}),h._uU(1,"Check Status"),h.qZA()}}function et(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",70),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).onRestart()}),h._uU(1,"Start Again"),h.qZA()}}function Ae(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),h._uU(5),h.qZA()(),h.TgZ(6,"div",8)(7,"button",9),h.NdJ("click",function(){return h.CHM(ve),h.oxw().showInfo()}),h._uU(8,"?"),h.qZA(),h.TgZ(9,"button",10),h.NdJ("click",function(){return h.CHM(ve),h.oxw().onClose()}),h._uU(10,"X"),h.qZA()()(),h.TgZ(11,"mat-card-content",11)(12,"div",12),h.YNc(13,ft,11,4,"div",13),h.TgZ(14,"mat-vertical-stepper",14,15),h.NdJ("selectionChange",function(_t){return h.CHM(ve),h.oxw().stepSelectionChanged(_t)}),h.TgZ(16,"mat-step",16)(17,"form",17),h.YNc(18,tt,1,1,"ng-template",18),h.TgZ(19,"div",19),h._UZ(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),h.qZA(),h.TgZ(22,"div",21)(23,"mat-form-field",22),h._UZ(24,"input",23),h.TgZ(25,"mat-hint"),h._uU(26),h.ALo(27,"number"),h.ALo(28,"number"),h.qZA(),h.TgZ(29,"span",24),h._uU(30,"Sats"),h.qZA(),h.YNc(31,Dt,2,0,"mat-error",25),h.YNc(32,di,3,3,"mat-error",25),h.YNc(33,Yt,3,3,"mat-error",25),h.qZA(),h.TgZ(34,"mat-form-field",22),h._UZ(35,"input",26),h.YNc(36,Zt,2,0,"mat-error",25),h.YNc(37,ui,2,0,"mat-error",25),h.qZA(),h.YNc(38,gt,4,3,"mat-form-field",27),h.qZA(),h.YNc(39,it,5,0,"div",28),h.TgZ(40,"div",29)(41,"button",30),h.NdJ("click",function(){return h.CHM(ve),h.oxw().onEstimateQuote()}),h._uU(42,"Estimate Quote"),h.qZA()()()(),h.TgZ(43,"mat-step",16)(44,"form",17),h.YNc(45,bt,1,1,"ng-template",18),h._UZ(46,"rtl-loop-quote",31),h.YNc(47,ei,4,0,"p",32),h.TgZ(48,"div",29),h.YNc(49,Qt,2,0,"button",33),h.YNc(50,Re,2,1,"button",34),h.qZA()()(),h.YNc(51,ye,15,6,"mat-step",35),h.TgZ(52,"mat-step",36)(53,"form",17),h.YNc(54,ht,1,1,"ng-template",18),h.TgZ(55,"div",37)(56,"mat-expansion-panel",38)(57,"mat-expansion-panel-header")(58,"mat-panel-title")(59,"span",39),h._uU(60),h.YNc(61,mt,2,1,"mat-icon",40),h.qZA()()(),h.YNc(62,Ft,1,0,"div",41),h.qZA(),h.YNc(63,nt,1,0,"mat-progress-bar",42),h.qZA(),h.YNc(64,He,2,1,"h4",43),h.TgZ(65,"div",29),h.YNc(66,rt,2,0,"button",44),h.YNc(67,et,2,0,"button",45),h.qZA()()()(),h.TgZ(68,"div",46)(69,"button",47),h._uU(70,"Close"),h.qZA()()()()()()}if(2&Ue){const ve=h.oxw(),Qe=h.MAs(2);h.Q6J("@opacityAnimation",void 0),h.xp6(3),h.Q6J("fxFlex",ve.screenSize===ve.screenSizeEnum.XS||ve.screenSize===ve.screenSizeEnum.SM?"83":"91"),h.xp6(2),h.Oqu(ve.channel?"Channel "+ve.loopDirectionCaption:ve.loopDirectionCaption),h.xp6(1),h.Q6J("fxFlex",ve.screenSize===ve.screenSizeEnum.XS||ve.screenSize===ve.screenSizeEnum.SM?"17":"9"),h.xp6(7),h.Q6J("ngIf",ve.channel),h.xp6(1),h.Q6J("linear",!0),h.xp6(2),h.Q6J("stepControl",ve.inputFormGroup)("editable",ve.flgEditable),h.xp6(1),h.Q6J("formGroup",ve.inputFormGroup),h.xp6(3),h.Q6J("quote",ve.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),h.xp6(1),h.Q6J("quote",ve.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),h.xp6(2),h.Q6J("fxFlex",ve.direction===ve.LoopTypeEnum.LOOP_OUT?"35":"48"),h.xp6(1),h.Q6J("step",1e3),h.xp6(2),h.AsE("Range: ",h.lcZ(27,51,ve.minQuote.amount),"-",h.lcZ(28,53,ve.maxQuote.amount),""),h.xp6(5),h.Q6J("ngIf",null==ve.inputFormGroup.controls.amount.errors?null:ve.inputFormGroup.controls.amount.errors.required),h.xp6(1),h.Q6J("ngIf",null==ve.inputFormGroup.controls.amount.errors?null:ve.inputFormGroup.controls.amount.errors.min),h.xp6(1),h.Q6J("ngIf",null==ve.inputFormGroup.controls.amount.errors?null:ve.inputFormGroup.controls.amount.errors.max),h.xp6(1),h.Q6J("fxFlex",ve.direction===ve.LoopTypeEnum.LOOP_OUT?"30":"48"),h.xp6(1),h.Q6J("step",1),h.xp6(1),h.Q6J("ngIf",null==ve.inputFormGroup.controls.sweepConfTarget.errors?null:ve.inputFormGroup.controls.sweepConfTarget.errors.required),h.xp6(1),h.Q6J("ngIf",null==ve.inputFormGroup.controls.sweepConfTarget.errors?null:ve.inputFormGroup.controls.sweepConfTarget.errors.min),h.xp6(1),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_OUT),h.xp6(4),h.Q6J("stepControl",ve.quoteFormGroup)("editable",ve.flgEditable),h.xp6(1),h.Q6J("formGroup",ve.quoteFormGroup),h.xp6(2),h.Q6J("quote",ve.quote)("showPanel",!1),h.xp6(1),h.Q6J("ngIf",ve.inputFormGroup.controls.amount.value>ve.localBalanceToCompare),h.xp6(2),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_IN),h.xp6(1),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("stepControl",ve.statusFormGroup),h.xp6(1),h.Q6J("formGroup",ve.statusFormGroup),h.xp6(3),h.Q6J("expanded",!!ve.loopStatus),h.xp6(4),h.Oqu(ve.loopStatus?ve.loopStatus.id_bytes?ve.loopDirectionCaption+" request details":ve.loopDirectionCaption+" error details":"Waiting for "+ve.loopDirectionCaption+" request..."),h.xp6(1),h.Q6J("ngIf",ve.loopStatus),h.xp6(1),h.Q6J("ngIf",!ve.loopStatus)("ngIfElse",Qe),h.xp6(1),h.Q6J("ngIf",!ve.loopStatus),h.xp6(1),h.Q6J("ngIf",ve.loopStatus),h.xp6(2),h.Q6J("ngIf",ve.loopStatus&&ve.loopStatus.id_bytes&&ve.channel),h.xp6(1),h.Q6J("ngIf",ve.loopStatus&&(ve.loopStatus.error||!ve.loopStatus.id_bytes)),h.xp6(2),h.Q6J("mat-dialog-close",!1)}}function Ge(Ue,Tt){if(1&Ue&&h._UZ(0,"rtl-loop-status",71),2&Ue){const ve=h.oxw();h.Q6J("loopStatus",ve.loopStatus)}}function ot(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"rtl-loop-out-info-graphics",88),h.NdJ("stepNumberChange",function(_t){return h.CHM(ve),h.oxw(2).stepNumber=_t}),h.qZA()}if(2&Ue){const ve=h.oxw(2);h.Q6J("stepNumber",ve.stepNumber)("animationDirection",ve.animationDirection)}}function lt(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"rtl-loop-in-info-graphics",88),h.NdJ("stepNumberChange",function(_t){return h.CHM(ve),h.oxw(2).stepNumber=_t}),h.qZA()}if(2&Ue){const ve=h.oxw(2);h.Q6J("stepNumber",ve.stepNumber)("animationDirection",ve.animationDirection)}}const Ct=function(Ue,Tt){return{"dot-primary":Ue,"dot-primary-lighter":Tt}};function mi(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"span",89),h.NdJ("click",function(){const se=h.CHM(ve).$implicit;return h.oxw(2).onStepChanged(se)}),h._UZ(1,"p",90),h.qZA()}if(2&Ue){const ve=Tt.$implicit,Qe=h.oxw(2);h.xp6(1),h.Q6J("ngClass",h.WLB(1,Ct,Qe.stepNumber===ve,Qe.stepNumber!==ve))}}function Jt(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",91),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).onReadMore()}),h._uU(1,"Read More"),h.qZA()}}function $t(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",92),h.NdJ("click",function(){return h.CHM(ve),h.oxw(2).onStepChanged(4)}),h._uU(1,"Back"),h.qZA()}}function Qi(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",93),h.NdJ("click",function(){h.CHM(ve);const _t=h.oxw(2);return _t.flgShowInfo=!1,_t.stepNumber=1}),h._uU(1,"Close"),h.qZA()}}function hi(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",94),h.NdJ("click",function(){h.CHM(ve);const _t=h.oxw(2);return _t.flgShowInfo=!1,_t.stepNumber=1}),h._uU(1,"Close"),h.qZA()}}function si(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",95),h.NdJ("click",function(){h.CHM(ve);const _t=h.oxw(2);return _t.onStepChanged(_t.stepNumber-1)}),h._uU(1,"Back"),h.qZA()}}function Ji(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"button",96),h.NdJ("click",function(){h.CHM(ve);const _t=h.oxw(2);return _t.onStepChanged(_t.stepNumber+1)}),h._uU(1,"Next"),h.qZA()}}const Zi=function(){return[1,2,3,4,5]};function Vi(Ue,Tt){if(1&Ue){const ve=h.EpF();h.TgZ(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),h._UZ(4,"span",7),h.qZA(),h.TgZ(5,"div",75)(6,"button",76),h.NdJ("click",function(){h.CHM(ve);const _t=h.oxw();return _t.flgShowInfo=!1,_t.stepNumber=1}),h._uU(7,"X"),h.qZA()()(),h.TgZ(8,"mat-card-content",77),h.YNc(9,ot,1,2,"rtl-loop-out-info-graphics",78),h.YNc(10,lt,1,2,"rtl-loop-in-info-graphics",78),h.qZA(),h.TgZ(11,"div",79),h.YNc(12,mi,2,4,"span",80),h.qZA(),h.TgZ(13,"div",81),h.YNc(14,Jt,2,0,"button",82),h.YNc(15,$t,2,0,"button",83),h.YNc(16,Qi,2,0,"button",84),h.YNc(17,hi,2,0,"button",85),h.YNc(18,si,2,0,"button",86),h.YNc(19,Ji,2,0,"button",87),h.qZA()()()}if(2&Ue){const ve=h.oxw();h.Q6J("@opacityAnimation",void 0),h.xp6(9),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("ngIf",ve.direction===ve.LoopTypeEnum.LOOP_IN),h.xp6(2),h.Q6J("ngForOf",h.DdM(10,Zi)),h.xp6(2),h.Q6J("ngIf",5===ve.stepNumber),h.xp6(1),h.Q6J("ngIf",5===ve.stepNumber),h.xp6(1),h.Q6J("ngIf",5===ve.stepNumber),h.xp6(1),h.Q6J("ngIf",ve.stepNumber<5),h.xp6(1),h.Q6J("ngIf",ve.stepNumber>1&&ve.stepNumber<5),h.xp6(1),h.Q6J("ngIf",ve.stepNumber<5)}}let Ui=(()=>{class Ue{constructor(ve,Qe,_t,se,Je,xt,Bt,xi,Ti){this.dialogRef=ve,this.data=Qe,this.store=_t,this.loopService=se,this.formBuilder=Je,this.decimalPipe=xt,this.logger=Bt,this.router=xi,this.commonService=Ti,this.faInfoCircle=a.sqG,this.LoopTypeEnum=d.$I,this.direction=d.$I.LOOP_OUT,this.loopDirectionCaption="Loop out",this.loopStatus=null,this.inputFormLabel="Amount to loop out",this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address",this.prepayRoutingFee=36,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=d.cu,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.channel=this.data.channel,this.minQuote=this.data.minQuote?this.data.minQuote:{},this.maxQuote=this.data.maxQuote?this.data.maxQuote:{},this.direction=this.data.direction||d.$I.LOOP_OUT,this.loopDirectionCaption=this.direction===d.$I.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[t.kI.required,t.kI.min(this.minQuote.amount||0),t.kI.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[t.kI.required,t.kI.min(1)]],routingFeePercent:[2,[t.kI.required,t.kI.min(0)]],fast:[!1,[t.kI.required]]}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[t.kI.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(R.ZW).pipe((0,f.R)(this.unSubs[6])).subscribe(ve=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:ve.lightningBalance&&ve.lightningBalance.local?+ve.lightningBalance.local:null})}ngAfterViewInit(){this.inputFormGroup.setErrors({Invalid:!0}),this.direction===d.$I.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,f.R)(this.unSubs[4])).subscribe(ve=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===d.$I.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,f.R)(this.unSubs[5])).subscribe(ve=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(ve){"external"===ve.value?(this.addressFormGroup.controls.address.setValidators([t.kI.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onValidateAmount(){this.localBalanceToCompare&&this.inputFormGroup.controls.amount.value<=this.localBalanceToCompare&&this.stepper.next()}onLoop(){var ve;if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2||this.direction===d.$I.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===d.$I.LOOP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,null===(ve=this.stepper.selected)||void 0===ve||ve.stepControl.setErrors(null),this.stepper.next(),this.direction===d.$I.LOOP_IN)this.loopService.loopIn(this.inputFormGroup.controls.amount.value,+(this.quote.swap_fee_sat||0),+(this.quote.htlc_publish_fee_sat||0),"",!0).pipe((0,f.R)(this.unSubs[0])).subscribe({next:Qe=>{this.loopStatus=Qe,this.loopService.listSwaps(),this.flgEditable=!0},error:Qe=>{this.loopStatus={error:Qe},this.flgEditable=!0,this.logger.error(Qe)}});else{const Qe=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),_t="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",se=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.loopService.loopOut(this.inputFormGroup.controls.amount.value,this.channel&&this.channel.chan_id?this.channel.chan_id:"",this.inputFormGroup.controls.sweepConfTarget.value,Qe,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),se,_t).pipe((0,f.R)(this.unSubs[1])).subscribe({next:Je=>{this.loopStatus=Je,this.loopService.listSwaps(),this.flgEditable=!0},error:Je=>{this.loopStatus={error:Je},this.flgEditable=!0,this.logger.error(Je)}})}}onEstimateQuote(){var ve;if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2)return!0;const Qe=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===d.$I.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Qe).pipe((0,f.R)(this.unSubs[2])).subscribe(_t=>{this.quote=_t,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}):this.loopService.getLoopOutQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Qe).pipe((0,f.R)(this.unSubs[3])).subscribe(_t=>{this.quote=_t,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),null===(ve=this.stepper.selected)||void 0===ve||ve.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(ve){switch(ve.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===d.$I.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Percentage: "+(this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:"2")+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===d.$I.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel=this.quote&&this.quote.swap_fee_sat&&(this.quote.htlc_sweep_fee_sat||this.quote.htlc_publish_fee_sat)&&this.quote.prepay_amt_sat?"Quote confirmed | Estimated Fees: "+this.decimalPipe.transform(+this.quote.swap_fee_sat+ +(this.quote.htlc_sweep_fee_sat?this.quote.htlc_sweep_fee_sat:this.quote.htlc_publish_fee_sat?this.quote.htlc_publish_fee_sat:0))+" Sats":"Quote confirmed",this.addressFormLabel=this.addressFormGroup.controls.addressType.value?"Withdrawal Address | Type: "+this.addressFormGroup.controls.addressType.value:"Withdrawal Address"}(this.direction===d.$I.LOOP_OUT&&1!==ve.selectedIndex&&ve.selectedIndex{ve.next(null),ve.complete()})}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(h.Y36(M.so),h.Y36(M.WI),h.Y36(L.yh),h.Y36(w.W),h.Y36(t.qu),h.Y36(D.JJ),h.Y36(S.mQ),h.Y36(k.F0),h.Y36(E.v))},Ue.\u0275cmp=h.Xpm({type:Ue,selectors:[["rtl-loop-modal"]],viewQuery:function(ve,Qe){if(1&ve&&h.Gf(Q,5),2&ve){let _t;h.iGM(_t=h.CRH())&&(Qe.stepper=_t.first)}},decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["loopStatusBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["class","padding-gap-large","fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngIf"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"quote","termCaption","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"fxFlex"],["autoFocus","","matInput","","placeholder","Amount","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","placeholder","Sweep Confirmation Target","type","number","tabindex","2","formControlName","sweepConfTarget","required","",3,"step"],["fxFlex","30",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","class","mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","5","type","button",3,"click"],[3,"quote","showPanel"],["fxFlex","100","class","color-warn mt-2","fxLayoutAlign","start center",4,"ngIf"],["mat-button","","color","primary","tabindex","6","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","7","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","12","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","40"],["fxFlex","30"],["matInput","","placeholder","Max Off-chain Routing Fee (%)","type","number","tabindex","3","formControlName","routingFeePercent","required","",3,"step"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","formControlName","fast","fxFlex","none"],["matTooltip","Swap immediately (Might end up paying a higher on-chain fee)","matTooltipPosition","above","fxFlex","none",1,"info-icon"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","mt-2"],[1,"mr-1","icon-small"],["mat-button","","color","primary","tabindex","6","type","button",3,"click"],["mat-button","","color","primary","tabindex","7","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxFlex","100",1,"mt-1"],["matInput","","placeholder","Address","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","12","type","button",3,"click"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"loopStatus"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["tabindex","19","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange"],["fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(ve,Qe){1&ve&&(h.YNc(0,Ae,71,55,"div",0),h.YNc(1,Ge,1,1,"ng-template",null,1,h.W1O),h.YNc(3,Vi,20,11,"div",2)),2&ve&&(h.Q6J("ngIf",!Qe.flgShowInfo),h.xp6(3),h.Q6J("ngIf",Qe.flgShowInfo))},directives:[D.O5,B.xw,B.yH,B.Wh,Z.dk,Y.lW,Z.dn,ae.Vq,ae.C0,t._Y,t.JL,t.sg,ae.VY,T,I.KE,y.Nt,t.wV,t.Fj,n.h,t.JJ,t.u,t.Q7,I.bx,I.R9,I.TO,_.Rr,ie.Hw,re.gM,V.VQ,V.U0,ee.ib,ee.yz,ee.yK,N.pW,M.ZT,be,Oe,fe,D.sg,D.mk,ue.oO],pipes:[D.rS,D.JJ],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:60rem;min-height:60rem}"],data:{animation:[C._]}}),Ue})()},9442:(Be,K,p)=>{"use strict";p.d(K,{w:()=>R});var t=p(2687),e=p(5e3),f=p(1402),M=p(7093),a=p(9546),C=p(9224),d=p(7423);let R=(()=>{class h{constructor(w){this.router=w,this.faTimes=t.NBC}goToHelp(){this.router.navigate(["/help"])}}return h.\u0275fac=function(w){return new(w||h)(e.Y36(f.F0))},h.\u0275cmp=e.Xpm({type:h,selectors:[["rtl-not-found"]],decls:13,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(w,D){1&w&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Page Not Found"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),e._uU(9,"This page does not exist!"),e.qZA(),e.TgZ(10,"span",7)(11,"button",8),e.NdJ("click",function(){return D.goToHelp()}),e._uU(12,"Go To Help"),e.qZA()()()()()()),2&w&&(e.xp6(1),e.Q6J("icon",D.faTimes))},directives:[M.xw,M.Wh,a.BN,C.a8,C.dn,M.yH,d.lW],encapsulation:2}),h})()},3390:(Be,K,p)=>{"use strict";p.d(K,{h:()=>e});var t=p(5e3);let e=(()=>{class f{constructor(a){this.el=a}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}}return f.\u0275fac=function(a){return new(a||f)(t.Y36(t.SBq))},f.\u0275dir=t.lG2({type:f,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}}),f})()},6895:(Be,K,p)=>{"use strict";p.d(K,{y:()=>e});var t=p(5e3);let e=(()=>{class f{constructor(){this.copied=new t.vpe}onClick(a){a.preventDefault(),this.payload&&navigator.clipboard&&navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())},C=>{this.copied.emit("Error could not copy text: "+JSON.stringify(C))})}}return f.\u0275fac=function(a){return new(a||f)},f.\u0275dir=t.lG2({type:f,selectors:[["","rtlClipboard",""]],hostBindings:function(a,C){1&a&&t.NdJ("click",function(R){return C.onClick(R)})},inputs:{payload:"payload"},outputs:{copied:"copied"}}),f})()},9843:(Be,K,p)=>{"use strict";p.d(K,{F:()=>f});var t=p(3075),e=p(5e3);let f=(()=>{class M{validate(C){return this.max?t.kI.max(+this.max)(C):null}}return M.\u0275fac=function(C){return new(C||M)},M.\u0275dir=e.lG2({type:M,selectors:[["input","max",""]],inputs:{max:"max"},features:[e._Bn([{provide:t.Cf,useExisting:M,multi:!0}])]}),M})()},6534:(Be,K,p)=>{"use strict";p.d(K,{q:()=>f});var t=p(3075),e=p(5e3);let f=(()=>{class M{validate(C){return this.min?t.kI.min(+this.min)(C):null}}return M.\u0275fac=function(C){return new(C||M)},M.\u0275dir=e.lG2({type:M,selectors:[["input","min",""]],inputs:{min:"min"},features:[e._Bn([{provide:t.Cf,useExisting:M,multi:!0}])]}),M})()},9445:(Be,K,p)=>{"use strict";p.d(K,{D3:()=>a,al:()=>e,h9:()=>f,i1:()=>M});var t=p(5e3);let e=(()=>{class C{transform(R,h){return null==R?void 0:R.replace(/^[0]+/g,"")}}return C.\u0275fac=function(R){return new(R||C)},C.\u0275pipe=t.Yjl({name:"removeleadingzeros",type:C,pure:!0}),C})(),f=(()=>{class C{transform(R,h){var L,w;return null===(w=null===(L=null==R?void 0:R.replace(/(?:^\w|[A-Z]|\b\w)/g,(D,S)=>D.toUpperCase()))||void 0===L?void 0:L.replace(/\s+/g,""))||void 0===w?void 0:w.replace(/-/g," ")}}return C.\u0275fac=function(R){return new(R||C)},C.\u0275pipe=t.Yjl({name:"camelcase",type:C,pure:!0}),C})(),M=(()=>{class C{transform(R,h,L){return R.replace(/(?:^\w|[A-Z]|\b\w)/g,(w,D)=>" "+w.toUpperCase())}}return C.\u0275fac=function(R){return new(R||C)},C.\u0275pipe=t.Yjl({name:"camelCaseWithSpaces",type:C,pure:!0}),C})(),a=(()=>{class C{transform(R,h,L){var w;return R=null===(w=null==R?void 0:R.toLowerCase().replace(/\s+/g,""))||void 0===w?void 0:w.replace(/-/g," "),h&&(R=R.replace(new RegExp(h,"g")," ")),L&&(R=R.replace(new RegExp(L,"g")," ")),R.replace(/(?:^\w|[A-Z]|\b\w)/g,(D,S)=>D.toUpperCase())}}return C.\u0275fac=function(R){return new(R||C)},C.\u0275pipe=t.Yjl({name:"camelcaseWithReplace",type:C,pure:!0}),C})()},1643:(Be,K,p)=>{"use strict";p.d(K,{QM:()=>C,a1:()=>a,eQ:()=>d,fY:()=>R});var t=p(4004),e=p(5e3),f=p(1402),M=p(5986);let a=(()=>{class h{constructor(w,D){this.router=w,this.sessionService=D}canActivate(w){return!(!this.sessionService.getItem("token")||"settings"!==w.url[0].path&&"auth"!==w.url[0].path&&"true"===this.sessionService.getItem("defaultPassword")&&(this.router.navigate(["/settings/auth"]),1))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(f.F0),e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})(),C=(()=>{class h{constructor(w){this.sessionService=w}canActivate(){return!!this.sessionService.watchSession().pipe((0,t.U)(w=>w.lndUnlocked))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})(),d=(()=>{class h{constructor(w){this.sessionService=w}canActivate(){return!!this.sessionService.watchSession().pipe((0,t.U)(w=>w.clUnlocked))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})(),R=(()=>{class h{constructor(w){this.sessionService=w}canActivate(){return!!this.sessionService.watchSession().pipe((0,t.U)(w=>w.eclUnlocked))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})()},62:(Be,K,p)=>{"use strict";p.d(K,{v:()=>w});var t=p(1135),e=p(9646),f=p(2843),M=p(5698),a=p(4004),C=p(262),d=p(7731),R=p(5e3),h=p(8104),L=p(5043);let w=(()=>{class D{constructor(k,E){this.dataService=k,this.logger=E,this.currencyUnits=[],this.CurrencyUnitEnum=d.NT,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=d.Bn.UN_INITIATED,this.screenSize=d.cu.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new t.X(this.containerSize)}getScreenSize(){return this.screenSize}setScreenSize(k){this.screenSize=k}getContainerSize(){return this.containerSize}setContainerSize(k,E){this.containerSize={width:k,height:E},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(k,E,B,Z="asc"){return k.sort("number"===B?"desc"===Z?(Y,ae)=>+Y[E]>+ae[E]?-1:1:(Y,ae)=>+Y[E]>+ae[E]?1:-1:"desc"===Z?(Y,ae)=>Y[E]>ae[E]?-1:1:(Y,ae)=>Y[E]>ae[E]?1:-1)}sortDescByKey(k,E){return k.sort((B,Z)=>{const Y=+B[E],ae=+Z[E];return Y>ae?-1:Y{const Y=+B[E],ae=+Z[E];return Yae?1:0})}camelCase(k){var E,B;return null===(B=null===(E=null==k?void 0:k.replace(/(?:^\w|[A-Z]|\b\w)/g,(Z,Y)=>Z.toUpperCase()))||void 0===E?void 0:E.replace(/\s+/g,""))||void 0===B?void 0:B.replace(/-/g," ")}titleCase(k,E,B){var Z,Y;return E&&B&&""!==E&&""!==B&&(k=null==k?void 0:k.replace(new RegExp(E,"g"),B)),k.indexOf("!\n")>0||k.indexOf(".\n")>0?null===(Z=k.split("\n"))||void 0===Z?void 0:Z.reduce((ae,ee)=>ae+ee.charAt(0).toUpperCase()+ee.substring(1).toLowerCase()+"\n",""):k.indexOf(" ")>0?null===(Y=k.split(" "))||void 0===Y?void 0:Y.reduce((ae,ee)=>ae+ee.charAt(0).toUpperCase()+ee.substring(1).toLowerCase()+" ",""):k.charAt(0).toUpperCase()+k.substring(1).toLowerCase()}convertCurrency(k,E,B,Z,Y){const ae=(new Date).valueOf();return Y&&Z&&this.ratesAPIStatus!==d.Bn.INITIATED&&(E===d.NT.OTHER||B===d.NT.OTHER)?this.conversionData.data&&this.conversionData.last_fetched&&ae(this.ratesAPIStatus=d.Bn.COMPLETED,this.conversionData.data=ee&&"object"==typeof ee?ee:ee&&"string"==typeof ee?JSON.parse(ee):{},this.conversionData.last_fetched=ae,this.convertWithFiat(k,E,Z))),(0,C.K)(ee=>(this.ratesAPIStatus=d.Bn.ERROR,(0,f._)(()=>this.extractErrorMessage(ee,"Currency Conversion Error.")))))):(0,e.of)(this.convertWithoutFiat(k,E))}convertWithoutFiat(k,E){const B={};switch(B[d.NT.SATS]=0,B[d.NT.BTC]=0,E){case d.NT.SATS:B[d.NT.SATS]=k,B[d.NT.BTC]=1e-8*k;break;case d.NT.BTC:B[d.NT.SATS]=1e8*k,B[d.NT.BTC]=k}return B}convertWithFiat(k,E,B){const Z={unit:B,symbol:this.conversionData.data[B].symbol};switch(Z[d.NT.SATS]=0,Z[d.NT.BTC]=0,Z[d.NT.OTHER]=0,E){case d.NT.SATS:Z[d.NT.SATS]=k,Z[d.NT.BTC]=1e-8*k,Z[d.NT.OTHER]=1e-8*k*this.conversionData.data[B].last;break;case d.NT.BTC:Z[d.NT.SATS]=1e8*k,Z[d.NT.BTC]=k,Z[d.NT.OTHER]=k*this.conversionData.data[B].last;break;case d.NT.OTHER:Z[d.NT.SATS]=k/this.conversionData.data[B].last*1e8,Z[d.NT.BTC]=k/this.conversionData.data[B].last,Z[d.NT.OTHER]=k}return Z}convertTime(k,E,B){switch(E){case d.Qk.SECS:switch(B){case d.Qk.MINS:k/=60;break;case d.Qk.HOURS:k/=3600;break;case d.Qk.DAYS:k/=86400}break;case d.Qk.MINS:switch(B){case d.Qk.SECS:k*=60;break;case d.Qk.HOURS:k/=60;break;case d.Qk.DAYS:k/=1440}break;case d.Qk.HOURS:switch(B){case d.Qk.SECS:k*=3600;break;case d.Qk.MINS:k*=60;break;case d.Qk.DAYS:k/=24}break;case d.Qk.DAYS:switch(B){case d.Qk.SECS:k=3600*k*24;break;case d.Qk.MINS:k=60*k*24;break;case d.Qk.HOURS:k*=24}}return k}downloadFile(k,E,B=".json",Z=".csv"){let Y=new Blob;Y=".json"===B?new Blob(["\ufeff"+this.convertToCSV(k)],{type:"text/csv;charset=utf-8;"}):new Blob([k.toString()],{type:"text/plain;charset=utf-8"});const ae=document.createElement("a"),ee=URL.createObjectURL(Y);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&ae.setAttribute("target","_blank"),ae.setAttribute("href",ee),ae.setAttribute("download",E+Z),ae.style.visibility="hidden",document.body.appendChild(ae),ae.click(),document.body.removeChild(ae)}convertToCSV(k){const E=[];let B="",Z="",Y="";return"object"!=typeof k&&(k=JSON.parse(k)),k.forEach((ee,ue)=>{for(const ie in ee)E.findIndex(re=>re===ie)<0&&E.push(ie)}),Y=E.join(",")+"\r\n",k.forEach(ee=>{B="",E.forEach(ue=>{var ie;ee.hasOwnProperty(ue)?Array.isArray(ee[ue])?(Z="",ee[ue].forEach((re,ge)=>{var q;Z+="object"==typeof re?"("+(null===(q=JSON.stringify(re))||void 0===q?void 0:q.replace(/\,/g,";"))+")":"("+re+")"}),B+=Z+","):B+="object"==typeof ee[ue]?(null===(ie=JSON.stringify(ee[ue]))||void 0===ie?void 0:ie.replace(/\,/g,";"))+",":ee[ue]+",":B+=","}),Y+=B.slice(0,-1)+"\r\n"}),Y}isVersionCompatible(k,E){var B;if(k){const Z=(null===(B=k.trim())||void 0===B?void 0:B.replace("v","").split("-")[0].split("."))||[],Y=E.split(".");return+Z[0]>+Y[0]||+Z[0]==+Y[0]&&+Z[1]>+Y[1]||+Z[0]==+Y[0]&&+Z[1]==+Y[1]&&+Z[2]>=+Y[2]}return!1}extractErrorMessage(k,E="Unknown Error."){const B=this.titleCase(k.error&&k.error.text&&"string"==typeof k.error.text&&k.error.text.includes('')?"API Route Does Not Exist.":k.error&&k.error.error&&k.error.error.error&&k.error.error.error.error&&k.error.error.error.error.error&&"string"==typeof k.error.error.error.error.error?k.error.error.error.error.error:k.error&&k.error.error&&k.error.error.error&&k.error.error.error.error&&"string"==typeof k.error.error.error.error?k.error.error.error.error:k.error&&k.error.error&&k.error.error.error&&"string"==typeof k.error.error.error?k.error.error.error:k.error&&k.error.error&&"string"==typeof k.error.error?k.error.error:k.error&&"string"==typeof k.error?k.error:k.error&&k.error.error&&k.error.error.error&&k.error.error.error.error&&k.error.error.error.error.message&&"string"==typeof k.error.error.error.error.message?k.error.error.error.error.message:k.error&&k.error.error&&k.error.error.error&&k.error.error.error.message&&"string"==typeof k.error.error.error.message?k.error.error.error.message:k.error&&k.error.error&&k.error.error.message&&"string"==typeof k.error.error.message?k.error.error.message:k.error&&k.error.message&&"string"==typeof k.error.message?k.error.message:k.message&&"string"==typeof k.message?k.message:E);return this.logger.info("Error Message: "+B),B}extractErrorCode(k,E=500){const B=k.error&&k.error.error&&k.error.error.message&&k.error.error.message.code?k.error.error.message.code:k.error&&k.error.error&&k.error.error.code?k.error.error.code:k.error&&k.error.code?k.error.code:k.code?k.code:k.status?k.status:E;return this.logger.info("Error Code: "+B),B}extractErrorNumber(k,E=500){const B=k.error&&k.error.error&&k.error.error.errno?k.error.error.errno:k.error&&k.error.errno?k.error.errno:k.errno?k.errno:k.status?k.status:E;return this.logger.info("Error Number: "+B),B}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}}return D.\u0275fac=function(k){return new(k||D)(R.LFG(h.D),R.LFG(L.mQ))},D.\u0275prov=R.Yz7({token:D,factory:D.\u0275fac}),D})()},7731:(Be,K,p)=>{"use strict";p.d(K,{$I:()=>r,$v:()=>k,AB:()=>he,At:()=>xe,Bn:()=>n,Df:()=>Pe,Dr:()=>L,Er:()=>a,Fq:()=>i,Gi:()=>ie,HW:()=>ge,H_:()=>Ee,IV:()=>d,IX:()=>V,JX:()=>I,LO:()=>C,NT:()=>ue,OJ:()=>ae,OO:()=>Me,Pi:()=>we,Qk:()=>ee,Qw:()=>c,TJ:()=>R,Vc:()=>w,Xk:()=>fe,Xr:()=>N,Xz:()=>M,Zs:()=>x,_t:()=>h,c3:()=>Ce,cu:()=>re,g8:()=>B,gB:()=>Ve,gG:()=>Te,gK:()=>W,gg:()=>v,hG:()=>te,hZ:()=>j,hc:()=>u,kO:()=>y,lr:()=>be,m6:()=>_,nM:()=>E,n_:()=>Y,ol:()=>Z,op:()=>T,p7:()=>_e,pg:()=>H,pt:()=>e,uA:()=>f,uR:()=>X,vn:()=>D,wZ:()=>S,x$:()=>q,zZ:()=>ce});var t=p(6087);function e(Q){const ft=new t.ye;return ft.itemsPerPageLabel=Q+" per page:",ft}const f=["Sats","BTC"],M={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},a=[{id:"USD",name:"USD"},{id:"AUD",name:"AUD"},{id:"BRL",name:"BRL"},{id:"CAD",name:"CAD"},{id:"CHF",name:"CHF"},{id:"CLP",name:"CLP"},{id:"CNY",name:"CNY"},{id:"DKK",name:"DKK"},{id:"EUR",name:"EUR"},{id:"GBP",name:"GBP"},{id:"HKD",name:"HKD"},{id:"INR",name:"INR"},{id:"ISK",name:"ISK"},{id:"JPY",name:"JPY"},{id:"KRW",name:"KRW"},{id:"NZD",name:"NZD"},{id:"PLN",name:"PLN"},{id:"RUB",name:"RUB"},{id:"SEK",name:"SEK"},{id:"SGD",name:"SGD"},{id:"THB",name:"THB"},{id:"TWD",name:"TWD"}],C=["SECS","MINS","HOURS","DAYS"],d=10,R=[5,10,25,100],h=[{addressId:"0",addressCode:"bech32",addressTp:"Bech32 (P2WKH)",addressDetails:"Pay to witness key hash"},{addressId:"1",addressCode:"p2sh-segwit",addressTp:"P2SH (NP2WKH)",addressDetails:"Pay to nested witness key hash (default)"},{addressId:"4",addressCode:"p2tr",addressTp:"Taproot (P2TR)",addressDetails:"Pay to taproot pubkey"}],L=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],w=[{id:"none",name:"No Fee Limit",placeholder:"No Limit"},{id:"fixed",name:"Fixed Limit (Sats)",placeholder:"Fixed Limit in Sats"},{id:"percent",name:"Percentage of Payment Amount",placeholder:"Percentage Limit"}],D=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom (Sats/vByte)"}],S={themes:[{id:"PURPLE",name:"Diogo"},{id:"TEAL",name:"My2Sats"},{id:"INDIGO",name:"RTL"},{id:"PINK",name:"BK"},{id:"YELLOW",name:"Gold"}],modes:[{id:"DAY",name:"Day"},{id:"NIGHT",name:"Night"}]};var k=(()=>{return(Q=k||(k={})).PAYMENT_RECEIVED="payment-received",Q.PAYMENT_RELAYED="payment-relayed",Q.PAYMENT_SENT="payment-sent",Q.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",Q.PAYMENT_FAILED="payment-failed",Q.CHANNEL_OPENED="channel-opened",Q.CHANNEL_STATE_CHANGED="channel-state-changed",Q.CHANNEL_CLOSED="channel-closed",k;var Q})(),E=(()=>{return(Q=E||(E={})).INVOICE="invoice",Q.BLOCK_HEIGHT="block-height",Q.SEND_PAYMENT="send-payment",E;var Q})(),B=(()=>((B||(B={})).INVOICE="invoice",B))(),Z=(()=>{return(Q=Z||(Z={})).OPERATOR="OPERATOR",Q.MERCHANT="MERCHANT",Q.ALL="ALL",Z;var Q})(),Y=(()=>{return(Q=Y||(Y={})).INFORMATION="Information",Q.WARNING="Warning",Q.ERROR="Error",Q.SUCCESS="Success",Q.CONFIRM="Confirm",Y;var Q})(),ae=(()=>{return(Q=ae||(ae={})).JWT="JWT",Q.PASSWORD="PASSWORD",ae;var Q})(),ee=(()=>{return(Q=ee||(ee={})).SECS="SECS",Q.MINS="MINS",Q.HOURS="HOURS",Q.DAYS="DAYS",ee;var Q})(),ue=(()=>{return(Q=ue||(ue={})).SATS="Sats",Q.BTC="BTC",Q.OTHER="OTHER",ue;var Q})(),ie=(()=>{return(Q=ie||(ie={})).ARRAY="ARRAY",Q.NUMBER="NUMBER",Q.STRING="STRING",Q.BOOLEAN="BOOLEAN",Q.PASSWORD="PASSWORD",Q.DATE="DATE",Q.DATE_TIME="DATE_TIME",ie;var Q})(),re=(()=>{return(Q=re||(re={})).XS="XS",Q.SM="SM",Q.MD="MD",Q.LG="LG",Q.XL="XL",re;var Q})();const ge={COOPERATIVE_CLOSE:{name:"Co-operative Close",tooltip:"Channel closed cooperatively"},LOCAL_FORCE_CLOSE:{name:"Local Force Close",tooltip:"Channel force-closed by the local node"},REMOTE_FORCE_CLOSE:{name:"Remote Force Close",tooltip:"Channel force-closed by the remote node"},BREACH_CLOSE:{name:"Breach Close",tooltip:"Remote node attempted to broadcast a prior revoked channel state"},FUNDING_CANCELED:{name:"Funding Canceled",tooltip:"Channel never fully opened"},ABANDONED:{name:"Abandoned",tooltip:"Channel abandoned by the local node"}},q={WITNESS_PUBKEY_HASH:{name:"Witness Pubkey Hash",tooltip:""},NESTED_PUBKEY_HASH:{name:"Nested Pubkey Hash",tooltip:""},UNUSED_WITNESS_PUBKEY_HASH:{name:"Unused Witness Pubkey Hash",tooltip:""},UNUSED_NESTED_PUBKEY_HASH:{name:"Unused Nested Pubkey Hash",tooltip:""},TAPROOT_PUBKEY:{name:"Taproot Pubkey Hash",tooltip:""}};var _e=(()=>{return(Q=_e||(_e={})).WIRE_INVALID_ONION_VERSION="Invalid Onion Version",Q.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",Q.WIRE_INVALID_ONION_KEY="Invalid Onion Key",Q.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",Q.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",Q.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",Q.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",Q.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",Q.WIRE_FEE_INSUFFICIENT="Insufficient Fee",Q.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",Q.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",Q.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",Q.WIRE_CHANNEL_DISABLED="Channel Disabled",Q.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",Q.WIRE_INVALID_REALM="Invalid Realm",Q.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",Q.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",Q.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",Q.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",Q.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",Q.WIRE_MPP_TIMEOUT="MPP Timeout",Q.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",Q.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",_e;var Q})(),x=(()=>{return(Q=x||(x={})).CHANNELD_NORMAL="Active",Q.OPENINGD="Opening",Q.CHANNELD_AWAITING_LOCKIN="Pending Open",Q.CHANNELD_SHUTTING_DOWN="Shutting Down",Q.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",Q.CLOSINGD_COMPLETE="Closed",Q.AWAITING_UNILATERAL="Awaiting Unilateral Close",Q.FUNDING_SPEND_SEEN="Funding Spend Seen",Q.ONCHAIN="Onchain",Q.DUALOPEND_OPEN_INIT="Dual Open Initialized",Q.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",x;var Q})(),i=(()=>{return(Q=i||(i={})).INITIATED="Initiated",Q.PREIMAGE_REVEALED="Preimage Revealed",Q.HTLC_PUBLISHED="HTLC Published",Q.SUCCESS="Successful",Q.FAILED="Failed",Q.INVOICE_SETTLED="Invoice Settled",i;var Q})(),r=(()=>{return(Q=r||(r={})).LOOP_OUT="LOOP_OUT",Q.LOOP_IN="LOOP_IN",r;var Q})(),u=(()=>{return(Q=u||(u={})).SWAP_OUT="SWAP_OUT",Q.SWAP_IN="SWAP_IN",u;var Q})(),c=(()=>{return(Q=c||(c={}))["swap.created"]="Swap Created",Q["swap.expired"]="Swap Expired",Q["invoice.set"]="Invoice Set",Q["invoice.paid"]="Invoice Paid",Q["invoice.pending"]="Invoice Pending",Q["invoice.settled"]="Invoice Settled",Q["invoice.failedToPay"]="Invoice Failed To Pay",Q["channel.created"]="Channel Created",Q["transaction.failed"]="Transaction Failed",Q["transaction.mempool"]="Transaction Mempool",Q["transaction.claimed"]="Transaction Claimed",Q["transaction.refunded"]="Transaction Refunded",Q["transaction.confirmed"]="Transaction Confirmed",Q["swap.refunded"]="Swap Refunded",Q["swap.abandoned"]="Swap Abandoned",c;var Q})();const v=[{name:"Jan",days:31},{name:"Feb",days:28},{name:"Mar",days:31},{name:"Apr",days:30},{name:"May",days:31},{name:"Jun",days:30},{name:"Jul",days:31},{name:"Aug",days:31},{name:"Sep",days:30},{name:"Oct",days:31},{name:"Nov",days:30},{name:"Dec",days:31}],T=["MONTHLY","YEARLY"];var I=(()=>{return(Q=I||(I={})).LOOP="LOOP",Q.BOLTZ="BOLTZ",Q.OFFERS="OFFERS",Q.PEERSWAP="PEERSWAP",I;var Q})();const y=["password","changeme","moneyprintergobrrr"];var n=(()=>{return(Q=n||(n={})).UN_INITIATED="UN_INITIATED",Q.INITIATED="INITIATED",Q.COMPLETED="COMPLETED",Q.ERROR="ERROR",n;var Q})();const _={NO_SPINNER:"No Spinner...",GET_NODE_INFO:"Getting Node Information...",INITALIZE_NODE_DATA:"Initializing Node Data...",GENERATE_NEW_ADDRESS:"Getting New Address...",SEND_FUNDS:"Sending Funds...",UPDATE_CHAN_POLICY:"Updating Channel Policy...",GET_CHAN_POLICY:"Fetching Channel Policy...",GET_REMOTE_POLICY:"Fetching Remote Policy...",CLOSE_CHANNEL:"Closing Channel...",FORCE_CLOSE_CHANNEL:"Force Closing Channel...",OPEN_CHANNEL:"Opening Channel...",CONNECT_PEER:"Connecting Peer...",DISCONNECT_PEER:"Disconnecting Peer...",ADD_INVOICE:"Adding Invoice...",CREATE_INVOICE:"Creating Invoice...",DELETE_INVOICE:"Deleting Invoices...",DECODE_PAYMENT:"Decoding Payment...",DECODE_OFFER:"Decoding Offer...",DECODE_PAYMENTS:"Decoding Payments...",FETCH_INVOICE:"Fetching Invoice...",GET_SENT_PAYMENTS:"Getting Sent Payments...",SEND_PAYMENT:"Sending Payment...",SEND_KEYSEND:"Sending Keysend Payment...",SEARCHING_NODE:"Searching Node...",SEARCHING_CHANNEL:"Searching Channel...",SEARCHING_INVOICE:"Searching Invoice...",SEARCHING_PAYMENT:"Searching Payment...",BACKUP_CHANNEL:"Backup Channels...",VERIFY_CHANNEL:"Verify Channel...",DOWNLOAD_BACKUP_FILE:"Downloading Backup File...",RESTORE_CHANNEL:"Restoring Channels...",GET_TERMS_QUOTES:"Getting Terms and Quotes...",LABEL_UTXO:"Labelling UTXO...",GET_NODE_ADDRESS:"Getting Node Address...",GEN_SEED:"Generating Seed...",INITIALIZE_WALLET:"Initializing Wallet...",UNLOCK_WALLET:"Unlocking Wallet...",WAIT_SYNC_NODE:"Waiting for Node Sync...",UPDATE_BOLTZ_SETTINGS:"Updating Boltz Service Settings...",UPDATE_LOOP_SETTINGS:"Updating Loop Service Settings...",UPDATE_PEERSWAP_SETTINGS:"Updating Peerswap Service Settings...",UPDATE_SETTING:"Updating Setting...",UPDATE_UI_SETTINGS:"Updating Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_SERVICE_INFO:"Getting Service Info...",GET_QUOTE:"Getting Quotes...",UPDATE_DEFAULT_NODE_SETTING:"Updating Defaule Node Settings...",GET_BOLTZ_SWAPS:"Getting Boltz Swaps...",SIGN_MESSAGE:"Signing Message...",VERIFY_MESSAGE:"Verifying Message...",BUMP_FEE:"Bumping Fee...",LEASE_UTXO:"Leasing UTXO...",GET_LOOP_SWAPS:"Getting List Swaps...",GET_FORWARDING_HISTORY:"Getting Forwarding History...",GET_LOOKUP_DETAILS:"Getting Lookup Details...",GET_RTL_CONFIG:"Getting RTL Config...",VERIFY_TOKEN:"Verify Token...",DISABLE_OFFER:"Disabling Offer...",CREATE_OFFER:"Creating Offer...",DELETE_OFFER_BOOKMARK:"Deleting Bookmark...",GET_FUNDER_POLICY:"Getting Or Updating Funder Policy...",GET_LIST_CONFIGS:"Getting Configurations List...",LIST_NETWORK_NODES:"Getting Network Nodes List...",GET_PAGE_SETTINGS:"Getting Page Settings...",SET_PAGE_SETTINGS:"Setting Page Settings...",UPDATE_PAGE_SETTINGS:"Updating Page Layout...",LOG_OUT:"Logging Out..."};var V=(()=>{return(Q=V||(V={})).INVOICE="INVOICE",Q.OFFER="OFFER",Q.KEYSEND="KEYSEND",V;var Q})(),N=(()=>{return(Q=N||(N={})).FEES="FEES",Q.EVENTS="EVENTS",N;var Q})(),H=(()=>{return(Q=H||(H={})).VOID="VOID",Q.SET_API_URL_ECL="SET_API_URL_ECL",Q.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",Q.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",Q.RESET_ROOT_STORE="RESET_ROOT_STORE",Q.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",Q.OPEN_SNACK_BAR="OPEN_SNACKBAR",Q.OPEN_SPINNER="OPEN_SPINNER",Q.CLOSE_SPINNER="CLOSE_SPINNER",Q.OPEN_ALERT="OPEN_ALERT",Q.CLOSE_ALERT="CLOSE_ALERT",Q.OPEN_CONFIRMATION="OPEN_CONFIRMATION",Q.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",Q.SHOW_PUBKEY="SHOW_PUBKEY",Q.FETCH_CONFIG="FETCH_CONFIG",Q.SHOW_CONFIG="SHOW_CONFIG",Q.FETCH_STORE="FETCH_STORE",Q.SET_STORE="SET_STORE",Q.FETCH_RTL_CONFIG="FETCH_RTL_CONFIG",Q.SET_RTL_CONFIG="SET_RTL_CONFIG",Q.SAVE_SSO="SAVE_SSO",Q.SAVE_SETTINGS="SAVE_SETTINGS",Q.TWO_FA_SAVE_SETTINGS="TWO_FA_SAVE_SETTINGS",Q.SET_SELECTED_NODE="SET_SELECTED_NODE",Q.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",Q.UPDATE_SERVICE_SETTINGS="UPDATE_SERVICE_SETTINGS",Q.SET_NODE_DATA="SET_NODE_DATA",Q.IS_AUTHORIZED="IS_AUTHORIZED",Q.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",Q.LOGIN="LOGIN",Q.VERIFY_TWO_FA="VERIFY_TWO_FA",Q.LOGOUT="LOGOUT",Q.RESET_PASSWORD="RESET_PASSWORD",Q.RESET_PASSWORD_RES="RESET_PASSWORD_RES",Q.FETCH_FILE="FETCH_FILE",Q.SHOW_FILE="SHOW_FILE",H;var Q})(),X=(()=>{return(Q=X||(X={})).RESET_LND_STORE="RESET_LND_STORE",Q.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",Q.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",Q.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",Q.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",Q.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",Q.FETCH_INFO_LND="FETCH_INFO_LND",Q.SET_INFO_LND="SET_INFO_LND",Q.FETCH_PEERS_LND="FETCH_PEERS_LND",Q.SET_PEERS_LND="SET_PEERS_LND",Q.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",Q.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",Q.DETACH_PEER_LND="DETACH_PEER_LND",Q.REMOVE_PEER_LND="REMOVE_PEER_LND",Q.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",Q.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",Q.ADD_INVOICE_LND="ADD_INVOICE_LND",Q.FETCH_FEES_LND="FETCH_FEES_LND",Q.SET_FEES_LND="SET_FEES_LND",Q.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",Q.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",Q.FETCH_NETWORK_LND="FETCH_NETWORK_LND",Q.SET_NETWORK_LND="SET_NETWORK_LND",Q.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",Q.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",Q.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",Q.SET_CHANNELS_LND="SET_CHANNELS_LND",Q.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",Q.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",Q.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",Q.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",Q.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",Q.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",Q.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",Q.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",Q.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",Q.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",Q.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",Q.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",Q.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",Q.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",Q.FETCH_INVOICES_LND="FETCH_INVOICES_LND",Q.SET_INVOICES_LND="SET_INVOICES_LND",Q.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",Q.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",Q.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",Q.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",Q.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",Q.FETCH_UTXOS_LND="FETCH_UTXOS_LND",Q.SET_UTXOS_LND="SET_UTXOS_LND",Q.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",Q.SET_PAYMENTS_LND="SET_PAYMENTS_LND",Q.SEND_PAYMENT_LND="SEND_PAYMENT_LND",Q.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",Q.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",Q.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",Q.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",Q.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",Q.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",Q.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",Q.GEN_SEED_LND="GEN_SEED_LND",Q.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",Q.INIT_WALLET_LND="INIT_WALLET_LND",Q.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",Q.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",Q.PEER_LOOKUP_LND="PEER_LOOKUP_LND",Q.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",Q.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",Q.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",Q.SET_LOOKUP_LND="SET_LOOKUP_LND",Q.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",Q.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",Q.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",Q.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",Q.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",Q.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",X;var Q})(),he=(()=>{return(Q=he||(he={})).RESET_CLN_STORE="RESET_CLN_STORE",Q.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",Q.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",Q.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",Q.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",Q.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",Q.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",Q.SET_INFO_CLN="SET_INFO_CLN",Q.FETCH_FEES_CLN="FETCH_FEES_CLN",Q.SET_FEES_CLN="SET_FEES_CLN",Q.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",Q.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",Q.FETCH_BALANCE_CLN="FETCH_BALANCE_CLN",Q.SET_BALANCE_CLN="SET_BALANCE_CLN",Q.FETCH_LOCAL_REMOTE_BALANCE_CLN="FETCH_LOCAL_REMOTE_BALANCE_CLN",Q.SET_LOCAL_REMOTE_BALANCE_CLN="SET_LOCAL_REMOTE_BALANCE_CLN",Q.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",Q.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",Q.FETCH_UTXOS_CLN="FETCH_UTXOS_CLN",Q.SET_UTXOS_CLN="SET_UTXOS_CLN",Q.FETCH_PEERS_CLN="FETCH_PEERS_CLN",Q.SET_PEERS_CLN="SET_PEERS_CLN",Q.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",Q.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",Q.ADD_PEER_CLN="ADD_PEER_CLN",Q.DETACH_PEER_CLN="DETACH_PEER_CLN",Q.REMOVE_PEER_CLN="REMOVE_PEER_CLN",Q.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",Q.SET_CHANNELS_CLN="SET_CHANNELS_CLN",Q.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",Q.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",Q.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",Q.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",Q.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",Q.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",Q.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",Q.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",Q.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",Q.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",Q.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",Q.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",Q.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",Q.SET_LOOKUP_CLN="SET_LOOKUP_CLN",Q.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",Q.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",Q.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",Q.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",Q.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",Q.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",Q.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",Q.SET_INVOICES_CLN="SET_INVOICES_CLN",Q.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",Q.ADD_INVOICE_CLN="ADD_INVOICE_CLN",Q.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",Q.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",Q.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",Q.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",Q.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",Q.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",Q.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",Q.SET_OFFERS_CLN="SET_OFFERS_CLN",Q.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",Q.ADD_OFFER_CLN="ADD_OFFER_CLN",Q.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",Q.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",Q.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",Q.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",Q.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",Q.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",Q.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",he;var Q})(),be=(()=>{return(Q=be||(be={})).RESET_ECL_STORE="RESET_ECL_STORE",Q.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",Q.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",Q.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",Q.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",Q.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",Q.FETCH_INFO_ECL="FETCH_INFO_ECL",Q.SET_INFO_ECL="SET_INFO_ECL",Q.FETCH_FEES_ECL="FETCH_FEES_ECL",Q.SET_FEES_ECL="SET_FEES_ECL",Q.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",Q.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",Q.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",Q.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",Q.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",Q.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",Q.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",Q.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",Q.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",Q.FETCH_PEERS_ECL="FETCH_PEERS_ECL",Q.SET_PEERS_ECL="SET_PEERS_ECL",Q.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",Q.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",Q.ADD_PEER_ECL="ADD_PEER_ECL",Q.DETACH_PEER_ECL="DETACH_PEER_ECL",Q.REMOVE_PEER_ECL="REMOVE_PEER_ECL",Q.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",Q.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",Q.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",Q.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",Q.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",Q.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",Q.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",Q.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",Q.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",Q.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",Q.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",Q.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",Q.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",Q.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",Q.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",Q.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",Q.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",Q.SET_INVOICES_ECL="SET_INVOICES_ECL",Q.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",Q.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",Q.ADD_INVOICE_ECL="ADD_INVOICE_ECL",Q.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",Q.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",Q.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",Q.SET_LOOKUP_ECL="SET_LOOKUP_ECL",Q.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",Q.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",be;var Q})();const Pe=[{range:{min:0,max:1},description:"Requires or supports extra channel re-establish fields"},{range:{min:4,max:5},description:"Commits to a shutdown script pubkey when opening channel"},{range:{min:6,max:7},description:"More sophisticated gossip control"},{range:{min:8,max:9},description:"Requires/supports variable-length routing onion payloads"},{range:{min:10,max:11},description:"Gossip queries can include additional information"},{range:{min:12,max:13},description:"Static key for remote output"},{range:{min:14,max:15},description:"Node supports payment secret field"},{range:{min:16,max:17},description:"Node can receive basic multi-part payments"},{range:{min:18,max:19},description:"Node can create large channels"},{range:{min:20,max:21},description:"Anchor outputs"},{range:{min:22,max:23},description:"Anchor commitment type with zero fee HTLC transactions"},{range:{min:26,max:27},description:"Future segwit versions allowed in shutdown"}];var Ee=(()=>{return(Q=Ee||(Ee={})).gossip_queries_ex="Gossip queries including additional information",Q.option_anchor_outputs="Anchor outputs",Q.option_data_loss_protect="Extra channel re-establish fields",Q.var_onion_optin="Variable-length routing onion payloads",Q.option_static_remotekey="Static key for remote output",Q.option_support_large_channel="Create large channels",Q.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",Q.payment_secret="Payment secret field",Q.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",Q.basic_mpp="Basic multi-part payments",Q.gossip_queries="More sophisticated gossip control",Q.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",Q.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",Q.amp="AMP",Ee;var Q})(),j=(()=>{return(Q=j||(j={}))["data-loss-protect"]="Extra channel re-establish fields",Q["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",Q["gossip-queries"]="More sophisticated gossip control",Q["tlv-onion"]="Variable-length routing onion payloads",Q["ext-gossip-queries"]="Gossip queries can include additional information",Q["static-remote-key"]="Static key for remote output",Q["payment-addr"]="Payment secret field",Q["multi-path-payments"]="Basic multi-part payments",Q["wumbo-channels"]="Wumbo Channels",Q.anchors="Anchor outputs",Q["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",Q.amp="AMP",j;var Q})();const Ve=[{id:"match",placeholder:"Policy Match (%age)",min:0,max:200},{id:"available",placeholder:"Policy Available (%age)",min:0,max:100},{id:"fixed",placeholder:"Fixed Policy (Sats)",min:0,max:100}];var Me=(()=>{return(Q=Me||(Me={})).OFFERED="offered",Q.SETTLED="settled",Q.FAILED="failed",Q.LOCAL_FAILED="local_failed",Me;var Q})(),we=(()=>{return(Q=we||(we={})).ASCENDING="asc",Q.DESCENDING="desc",we;var Q})();const ce=["asc","desc"],Te=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:d,sortBy:"blockheight",sortOrder:we.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:d,sortBy:"blockheight",sortOrder:we.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:d,sortBy:"msatoshi_to_us",sortOrder:we.DESCENDING,columnSelectionSM:["alias","msatoshi_to_us","msatoshi_to_them"],columnSelection:["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","balancedness"]},{tableId:"pending_inactive_channels",recordsPerPage:d,sortBy:"state",sortOrder:we.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:d,sortBy:"alias",sortOrder:we.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:d,sortBy:"channel_opening_fee",sortOrder:we.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:d,sortBy:"created_at",sortOrder:we.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:d,sortBy:"expires_at",sortOrder:we.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:d,sortBy:"offer_id",sortOrder:we.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:d,sortBy:"lastUpdatedAt",sortOrder:we.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:d,sortBy:"received_time",sortOrder:we.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"routing_peers",recordsPerPage:d,sortBy:"total_fee",sortOrder:we.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:d,sortBy:"received_time",sortOrder:we.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"local_failed",recordsPerPage:d,sortBy:"received_time",sortOrder:we.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","in_channel_alias","in_msatoshi","style","failreason"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:d,sortBy:"received_time",sortOrder:we.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"transactions",recordsPerPage:d,sortBy:"date",sortOrder:we.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:d,sortBy:"msatoshi",sortOrder:we.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]},{pageId:"peerswap",tables:[{tableId:"swaps",recordsPerPage:d,sortBy:"created_at",sortOrder:we.DESCENDING,columnSelectionSM:["id","state","amount"],columnSelection:["id","alias","short_channel_id","created_at","state","amount"]}]}],xe={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"short_channel_id"},{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_inactive_channels:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"state"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"}]},peers:{maxColumns:3,allowedColumns:[{column:"alias"},{column:"id"},{column:"netaddr",label:"Network Address"}]}},liquidity_ads:{liquidity_ads:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"nodeid",label:"Node ID"},{column:"last_timestamp",label:"Last Announcement At"},{column:"compact_lease"},{column:"lease_fee"},{column:"routing_fee"},{column:"channel_opening_fee"},{column:"funding_weight"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"created_at",label:"Created At"},{column:"type"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"destination"},{column:"memo"},{column:"label"},{column:"msatoshi_sent",label:"Sats Sent"},{column:"msatoshi",label:"Sats Received"}]},invoices:{maxColumns:7,allowedColumns:[{column:"expires_at",label:"Expiry Date"},{column:"paid_at",label:"Date Settled"},{column:"type"},{column:"description"},{column:"label"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"msatoshi",label:"Amount"},{column:"msatoshi_received",label:"Amount Settled"}]},offers:{maxColumns:4,allowedColumns:[{column:"offer_id",label:"Offer ID"},{column:"single_use"},{column:"used"},{column:"bolt12",label:"Invoice"}]},offer_bookmarks:{maxColumns:6,allowedColumns:[{column:"lastUpdatedAt",label:"Updated At"},{column:"title"},{column:"description"},{column:"vendor"},{column:"bolt12",label:"Invoice"},{column:"amountMSat",label:"Amount"}]}},routing:{forwarding_history:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channel_id"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount",label:"Amount"},{column:"total_fee",label:"Fee"}]},failed:{maxColumns:7,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},local_failed:{maxColumns:6,allowedColumns:[{column:"received_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"style"},{column:"failreason",label:"Fail Reason"}]}},reports:{routing:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:6,allowedColumns:[{column:"id"},{column:"alias"},{column:"channel"},{column:"direction"},{column:"delay"},{column:"msatoshi",label:"Amount"}]}},peerswap:{swaps:{maxColumns:6,allowedColumns:[{column:"id"},{column:"alias"},{column:"short_channel_id"},{column:"created_at"},{column:"state"},{column:"amount"}]}}},W=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:d,sortBy:"tx_id",sortOrder:we.DESCENDING,columnSelectionSM:["output","amount_sat","confirmations"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:d,sortBy:"time_stamp",sortOrder:we.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:d,sortBy:"tx_id",sortOrder:we.DESCENDING,columnSelectionSM:["output","amount_sat","confirmations"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:d,sortBy:"balancedness",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","local_balance"],columnSelection:["remote_alias","uptime_str","total_satoshis_sent","total_satoshis_received","local_balance","remote_balance","balancedness"]},{tableId:"pending_open",sortBy:"capacity",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:d,sortBy:"close_type",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:d,sortBy:"expiration_height",sortOrder:we.DESCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:d,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:d,sortBy:"creation_date",sortOrder:we.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:d,sortBy:"creation_date",sortOrder:we.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:d,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:d,sortBy:"total_amount",sortOrder:we.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:d,sortBy:"remote_alias",sortOrder:we.DESCENDING,columnSelectionSM:["remote_alias","local_balance","remote_balance"],columnSelection:["chan_id","remote_alias","total_satoshis_received","total_satoshis_sent","local_balance","remote_balance"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:d,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:d,sortBy:"date",sortOrder:we.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:d,sortBy:"hop_sequence",sortOrder:we.ASCENDING,columnSelectionSM:["hop_sequence","pubkey_alias","fee_msat"],columnSelection:["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat"]}]},{pageId:"loop",tables:[{tableId:"loop",recordsPerPage:d,sortBy:"initiation_time",sortOrder:we.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:d,sortBy:"status",sortOrder:we.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:d,sortBy:"status",sortOrder:we.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],te={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat",label:"Amount"},{column:"confirmations"}]},transactions:{maxColumns:7,allowedColumns:[{column:"time_stamp",label:"Date/Time"},{column:"label"},{column:"block_hash"},{column:"tx_hash",label:"Transaction Hash"},{column:"amount"},{column:"total_fees",label:"Fees"},{column:"block_height"},{column:"num_confirmations",label:"Confirmations"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat"},{column:"confirmations"}]}},peers_channels:{open:{maxColumns:8,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"initiator"},{column:"static_remote_key"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"},{column:"balancedness",label:"Balance Score"}]},pending_open:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"confirmation_height"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_force_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"maturity_height"},{column:"blocks_til_maturity",label:"Blocks till Maturity"},{column:"recovered_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_waiting_close:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},closed:{maxColumns:7,allowedColumns:[{column:"close_type"},{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"closing_tx_hash",label:"Closing Tx Hash"},{column:"chain_hash"},{column:"open_initiator"},{column:"close_initiator"},{column:"time_locked_balance",label:"Timelocked Balance"},{column:"capacity"},{column:"close_height"},{column:"settled_balance"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount"},{column:"incoming"},{column:"forwarding_channel"},{column:"htlc_index"},{column:"forwarding_htlc_index"},{column:"expiration_height"},{column:"hash_lock"}]},peers:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"pub_key",label:"Public Key"},{column:"address"},{column:"sync_type"},{column:"inbound"},{column:"bytes_sent"},{column:"bytes_recv",label:"Bytes Received"},{column:"sat_sent",label:"Sats Sent"},{column:"sat_recv",label:"Sats Received"},{column:"ping_time"}]}},transactions:{payments:{maxColumns:8,allowedColumns:[{column:"creation_date"},{column:"payment_hash"},{column:"payment_request"},{column:"payment_preimage"},{column:"description"},{column:"description_hash"},{column:"failure_reason"},{column:"payment_index"},{column:"fee"},{column:"value"},{column:"hops"}]},invoices:{maxColumns:9,allowedColumns:[{column:"private"},{column:"is_keysend",label:"Keysend"},{column:"is_amp",label:"AMP"},{column:"creation_date",label:"Date Created"},{column:"settle_date",label:"Date Settled"},{column:"memo"},{column:"r_preimage",label:"Preimage"},{column:"r_hash",label:"Preimage Hash"},{column:"payment_addr",label:"Payment Address"},{column:"payment_request"},{column:"description_hash"},{column:"expiry"},{column:"cltv_expiry"},{column:"add_index"},{column:"settle_index"},{column:"value",label:"Amount"},{column:"amt_paid_sat",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},routing_peers:{maxColumns:4,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount"}]},non_routing_peers:{maxColumns:8,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"remote_alias",label:"Peer Alias"},{column:"remote_pubkey",label:"Peer Pubkey"},{column:"channel_point"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"}]}},reports:{routing:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:8,disablePageSize:!0,allowedColumns:[{column:"hop_sequence",label:"Hop"},{column:"pubkey_alias",label:"Peer"},{column:"pub_key",label:"Peer Pubkey"},{column:"chan_id",label:"Channel ID"},{column:"tlv_payload"},{column:"expiry"},{column:"chan_capacity",label:"Capacity"},{column:"amt_to_forward_msat",label:"Amount To Fwd"},{column:"fee_msat",label:"Fee"}]}},loop:{loop:{maxColumns:8,allowedColumns:[{column:"state"},{column:"initiation_time"},{column:"last_update_time"},{column:"amt",label:"Amount"},{column:"cost_server"},{column:"cost_offchain"},{column:"cost_onchain"},{column:"htlc_address"},{column:"id"},{column:"id_bytes",label:"ID (Bytes)"}]}},boltz:{swap_out:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"claimAddress",label:"Claim Address"},{column:"onchainAmount",label:"Onchain Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"claimTransactionId",label:"Claim Tx ID"}]},swap_in:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"lockupAddress",label:"Lockup Address"},{column:"expectedAmount",label:"Expected Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"refundTransactionId",label:"Refund Tx ID"}]}}},Ce=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:d,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:d,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:d,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:d,sortBy:"alias",sortOrder:we.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:d,sortBy:"alias",sortOrder:we.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:d,sortBy:"firstPartTimestamp",sortOrder:we.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:d,sortBy:"receivedAt",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:d,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:d,sortBy:"totalFee",sortOrder:we.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:d,sortBy:"timestamp",sortOrder:we.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:d,sortBy:"date",sortOrder:we.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],fe={on_chain:{transaction:{maxColumns:6,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"address"},{column:"blockHash"},{column:"txid",label:"Transaction ID"},{column:"amount"},{column:"fees"},{column:"confirmations"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isFunder",label:"Funder"},{column:"buried"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"feeRatePerKw",label:"Fee/KW"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isFunder",label:"Funder"},{column:"buried"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"feeRatePerKw",label:"Fee/KW"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isFunder",label:"Funder"},{column:"buried"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"feeRatePerKw",label:"Fee/KW"},{column:"balancedness",label:"Balance Score"}]},peers:{maxColumns:4,allowedColumns:[{column:"alias"},{column:"nodeId"},{column:"address",label:"Netwrok Address"},{column:"channels"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"firstPartTimestamp",label:"Date/Time"},{column:"id"},{column:"recipientNodeId",label:"Destination Node ID"},{column:"recipientNodeAlias",label:"Destination"},{column:"description"},{column:"paymentHash"},{column:"paymentPreimage",label:"Preimage"},{column:"recipientAmount",label:"Amount"}]},invoices:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date Created"},{column:"expiresAt",label:"Date Expiry"},{column:"receivedAt",label:"Date Settled"},{column:"nodeId",label:"Node ID"},{column:"description"},{column:"paymentHash"},{column:"amount"},{column:"amountSettled",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channelId"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"totalAmount",label:"Amount"},{column:"totalFee",label:"Fee"}]}},reports:{routing:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}}}},8104:(Be,K,p)=>{"use strict";p.d(K,{D:()=>ge});var t=p(8138),e=p(1135),f=p(7579),M=p(2843),a=p(9646),C=p(590),d=p(5577),R=p(2722),h=p(4004),L=p(262),w=p(1365),D=p(2340),S=p(7731),k=p(1786),E=p(7861),B=p(6523),Z=p(6529),Y=p(9828),ae=p(5e3),ee=p(5620),ue=p(5043),ie=p(7261),re=p(9808);let ge=(()=>{class q{constructor(x,i,r,u,c){this.httpClient=x,this.store=i,this.logger=r,this.snackBar=u,this.titleCasePipe=c,this.APIUrl=D.T5,this.lnImplementation="",this.lnImplementationUpdated=new e.X(null),this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x],this.mapAliases=(v,T)=>(v&&v.length>0?v.forEach((I,y)=>{var n;if(T&&T.length>0)for(let _=0;_null!==r),(0,d.z)(r=>{let u=this.APIUrl+"/"+r+D.NZ.PAYMENTS_API+"/decode/"+x;return"cln"===r&&(u=this.APIUrl+"/"+r+D.NZ.UTILITY_API+"/decode/"+x),this.store.dispatch((0,E.ac)({payload:S.m6.DECODE_PAYMENT})),this.httpClient.get(u).pipe((0,R.R)(this.unSubs[0]),(0,h.U)(c=>(this.store.dispatch((0,E.uO)({payload:S.m6.DECODE_PAYMENT})),c)),(0,L.K)(c=>(i?this.handleErrorWithoutAlert("Decode Payment",S.m6.DECODE_PAYMENT,c):this.handleErrorWithAlert("decodePaymentData",S.m6.DECODE_PAYMENT,"Decode Payment Failed",u,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}decodePayments(x){return this.lnImplementationUpdated.pipe((0,C.P)(i=>null!==i),(0,d.z)(i=>{let r="",u="";return"ecl"===i?(r=this.APIUrl+"/"+i+D.NZ.PAYMENTS_API+"/getsentinfos",u=S.m6.GET_SENT_PAYMENTS):"cln"===i?(r=this.APIUrl+"/"+i+D.NZ.UTILITY_API,u=S.m6.DECODE_PAYMENTS):(r=this.APIUrl+"/"+i+D.NZ.PAYMENTS_API,u=S.m6.DECODE_PAYMENTS),this.store.dispatch((0,E.ac)({payload:u})),this.httpClient.post(r,{payments:x}).pipe((0,R.R)(this.unSubs[1]),(0,h.U)(c=>(this.store.dispatch((0,E.uO)({payload:u})),c)),(0,L.K)(c=>(this.handleErrorWithAlert("decodePaymentsData",u,u+" Failed",r,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}getAliasesFromPubkeys(x,i){return this.lnImplementationUpdated.pipe((0,C.P)(r=>null!==r),(0,d.z)(r=>{if(i){const u=(new t.LE).set("pubkeys",x);return this.httpClient.get(this.APIUrl+"/"+r+D.NZ.NETWORK_API+"/nodes",{params:u})}return this.httpClient.get(this.APIUrl+"/"+r+D.NZ.NETWORK_API+"/node/"+x)}))}signMessage(x){return this.lnImplementationUpdated.pipe((0,C.P)(i=>null!==i),(0,d.z)(i=>{let r=this.APIUrl+"/"+i+D.NZ.MESSAGE_API+"/sign";return"cln"===i&&(r=this.APIUrl+"/"+i+D.NZ.UTILITY_API+"/sign"),this.store.dispatch((0,E.ac)({payload:S.m6.SIGN_MESSAGE})),this.httpClient.post(r,{message:x}).pipe((0,R.R)(this.unSubs[2]),(0,h.U)(u=>(this.store.dispatch((0,E.uO)({payload:S.m6.SIGN_MESSAGE})),u)),(0,L.K)(u=>(this.handleErrorWithAlert("signMessageData",S.m6.SIGN_MESSAGE,"Sign Message Failed",r,u),(0,M._)(()=>new Error(this.extractErrorMessage(u))))))}))}verifyMessage(x,i){return this.lnImplementationUpdated.pipe((0,C.P)(r=>null!==r),(0,d.z)(r=>{let u=this.APIUrl+"/"+r+D.NZ.MESSAGE_API+"/verify";return"cln"===r&&(u=this.APIUrl+"/"+r+D.NZ.UTILITY_API+"/verify"),this.store.dispatch((0,E.ac)({payload:S.m6.VERIFY_MESSAGE})),this.httpClient.post(u,{message:x,signature:i}).pipe((0,R.R)(this.unSubs[3]),(0,h.U)(c=>(this.store.dispatch((0,E.uO)({payload:S.m6.VERIFY_MESSAGE})),c)),(0,L.K)(c=>(this.handleErrorWithAlert("verifyMessageData",S.m6.VERIFY_MESSAGE,"Verify Message Failed",u,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}bumpFee(x,i,r,u){return this.lnImplementationUpdated.pipe((0,C.P)(c=>null!==c),(0,d.z)(c=>{const v={txid:x,outputIndex:i};return r&&(v.targetConf=r),u&&(v.satPerByte=u),this.store.dispatch((0,E.ac)({payload:S.m6.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+c+D.NZ.WALLET_API+"/bumpfee",v).pipe((0,R.R)(this.unSubs[4]),(0,h.U)(T=>(this.store.dispatch((0,E.uO)({payload:S.m6.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),T)),(0,L.K)(T=>(this.handleErrorWithoutAlert("Bump Fee",S.m6.BUMP_FEE,T),(0,M._)(()=>new Error(this.extractErrorMessage(T))))))}))}labelUTXO(x,i,r=!0){return this.lnImplementationUpdated.pipe((0,C.P)(u=>null!==u),(0,d.z)(u=>{const c={txid:x,label:i,overwrite:r};return this.store.dispatch((0,E.ac)({payload:S.m6.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+u+D.NZ.WALLET_API+"/label",c).pipe((0,R.R)(this.unSubs[5]),(0,h.U)(v=>(this.store.dispatch((0,E.uO)({payload:S.m6.LABEL_UTXO})),v)),(0,L.K)(v=>(this.handleErrorWithoutAlert("Lease UTXO",S.m6.LABEL_UTXO,v),(0,M._)(()=>new Error(this.extractErrorMessage(v))))))}))}leaseUTXO(x,i){return this.lnImplementationUpdated.pipe((0,C.P)(r=>null!==r),(0,d.z)(r=>{const u={txid:x,outputIndex:i};return this.store.dispatch((0,E.ac)({payload:S.m6.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+r+D.NZ.WALLET_API+"/lease",u).pipe((0,R.R)(this.unSubs[6]),(0,h.U)(c=>{this.store.dispatch((0,E.uO)({payload:S.m6.LEASE_UTXO})),this.store.dispatch((0,B.mC)()),this.store.dispatch((0,B.Ly)());const v=new Date(1e3*c.expiration),T=Math.round(v.getTime())-60*v.getTimezoneOffset();this.snackBar.open("The UTXO has been leased till "+new Date(T).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")}),(0,L.K)(c=>(this.handleErrorWithoutAlert("Lease UTXO",S.m6.LEASE_UTXO,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}getForwardingHistory(x,i,r,u){if("LND"===x){const c={end_time:r,start_time:i};return this.store.dispatch((0,E.ac)({payload:S.m6.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+D.NZ.SWITCH_API,c).pipe((0,R.R)(this.unSubs[7]),(0,w.M)(this.store.select(Z._f)),(0,d.z)(([v,T])=>{if(v.forwarding_events){const I=[...T.channels,...T.closedChannels];v.forwarding_events.forEach(y=>{var n,_;if(I&&I.length>0)for(let V=0;V(this.handleErrorWithAlert("getForwardingHistoryData",S.m6.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+D.NZ.SWITCH_API,v),(0,M._)(()=>new Error(this.extractErrorMessage(v))))))}return"CLN"===x?(this.store.dispatch((0,E.ac)({payload:S.m6.GET_FORWARDING_HISTORY})),this.httpClient.get(this.APIUrl+"/cln"+D.NZ.CHANNELS_API+"/listForwards?status="+u).pipe((0,R.R)(this.unSubs[8]),(0,w.M)(this.store.select(Y.ZW)),(0,d.z)(([c,v])=>{const T=this.mapAliases(c,[...v.activeChannels,...v.pendingChannels,...v.inactiveChannels]);return this.store.dispatch((0,E.uO)({payload:S.m6.GET_FORWARDING_HISTORY})),(0,a.of)(T)}),(0,L.K)(c=>(this.handleErrorWithAlert("getForwardingHistoryData",S.m6.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+D.NZ.CHANNELS_API+"/listForwards?status="+u+"&start="+i+"&end="+r,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))):(0,a.of)({})}listNetworkNodes(x=""){return this.lnImplementationUpdated.pipe((0,C.P)(i=>null!==i),(0,d.z)(i=>(this.store.dispatch((0,E.ac)({payload:S.m6.LIST_NETWORK_NODES})),this.httpClient.get(this.APIUrl+"/"+i+D.NZ.NETWORK_API+"/listNodes"+x).pipe((0,R.R)(this.unSubs[9]),(0,d.z)(r=>(this.store.dispatch((0,E.uO)({payload:S.m6.LIST_NETWORK_NODES})),(0,a.of)(r))),(0,L.K)(r=>(this.handleErrorWithoutAlert("List Network Nodes",S.m6.LIST_NETWORK_NODES,r),(0,M._)(()=>this.extractErrorMessage(r))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,C.P)(x=>null!==x),(0,d.z)(x=>(this.store.dispatch((0,E.ac)({payload:S.m6.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+x+D.NZ.UTILITY_API+"/listConfigs").pipe((0,R.R)(this.unSubs[10]),(0,d.z)(i=>(this.store.dispatch((0,E.uO)({payload:S.m6.GET_LIST_CONFIGS})),(0,a.of)(i))),(0,L.K)(i=>(this.handleErrorWithoutAlert("List Configurations",S.m6.GET_LIST_CONFIGS,i),(0,M._)(()=>this.extractErrorMessage(i))))))))}getOrUpdateFunderPolicy(x,i,r,u,c,v){return this.lnImplementationUpdated.pipe((0,C.P)(T=>null!==T),(0,d.z)(T=>{const I=x?{policy:x,policy_mod:i,lease_fee_base_msat:r,lease_fee_basis:u,channel_fee_max_base_msat:c,channel_fee_max_proportional_thousandths:v}:null;return this.store.dispatch((0,E.ac)({payload:S.m6.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+T+D.NZ.CHANNELS_API+"/funderUpdate",I).pipe((0,R.R)(this.unSubs[11]),(0,h.U)(y=>(this.store.dispatch((0,E.uO)({payload:S.m6.GET_FUNDER_POLICY})),I&&this.store.dispatch((0,E.jW)({payload:"Funder Policy Updated Successfully with Compact Lease: "+y.compact_lease+"!"})),y)),(0,L.K)(y=>(this.handleErrorWithoutAlert("Funder Policy",S.m6.GET_FUNDER_POLICY,y),(0,M._)(()=>new Error(this.extractErrorMessage(y))))))}))}extractErrorMessage(x,i="Unknown Error."){return this.titleCasePipe.transform(x.error.text&&"string"==typeof x.error.text&&x.error.text.includes('')?"API Route Does Not Exist.":x.error&&x.error.error&&x.error.error.error&&x.error.error.error.error&&x.error.error.error.error.error&&"string"==typeof x.error.error.error.error.error?x.error.error.error.error.error:x.error&&x.error.error&&x.error.error.error&&x.error.error.error.error&&"string"==typeof x.error.error.error.error?x.error.error.error.error:x.error&&x.error.error&&x.error.error.error&&"string"==typeof x.error.error.error?x.error.error.error:x.error&&x.error.error&&"string"==typeof x.error.error?x.error.error:x.error&&"string"==typeof x.error?x.error:x.error&&x.error.error&&x.error.error.error&&x.error.error.error.error&&x.error.error.error.error.message&&"string"==typeof x.error.error.error.error.message?x.error.error.error.error.message:x.error&&x.error.error&&x.error.error.error&&x.error.error.error.message&&"string"==typeof x.error.error.error.message?x.error.error.error.message:x.error&&x.error.error&&x.error.error.message&&"string"==typeof x.error.error.message?x.error.error.message:x.error&&x.error.message&&"string"==typeof x.error.message?x.error.message:x.message&&"string"==typeof x.message?x.message:i)}handleErrorWithoutAlert(x,i,r){r.error.text&&"string"==typeof r.error.text&&r.error.text.includes('')&&(r={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+x+"\n"+JSON.stringify(r)),401===r.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,E.ts)()),this.store.dispatch((0,E.kS)()),this.store.dispatch((0,E.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,E.uO)({payload:i})),this.store.dispatch((0,E.qi)({payload:{action:x,status:S.Bn.ERROR,statusCode:r.status.toString(),message:this.extractErrorMessage(r)}})))}handleErrorWithAlert(x,i,r,u,c){if(this.logger.error(c),401===c.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,E.ts)()),this.store.dispatch((0,E.kS)()),this.store.dispatch((0,E.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,E.uO)({payload:i}));const v=this.extractErrorMessage(c);this.store.dispatch((0,E.qR)({payload:{data:{type:"ERROR",alertTitle:r,message:{code:c.status?c.status:"Unknown Error",message:v,URL:u},component:k.H}}})),this.store.dispatch((0,E.qi)({payload:{action:x,status:S.Bn.ERROR,statusCode:c.status.toString(),message:v,URL:u}}))}}ngOnDestroy(){this.unSubs.forEach(x=>{x.next(null),x.complete()})}}return q.\u0275fac=function(x){return new(x||q)(ae.LFG(t.eN),ae.LFG(ee.yh),ae.LFG(ue.mQ),ae.LFG(ie.ux),ae.LFG(re.rS))},q.\u0275prov=ae.Yz7({token:q,factory:q.\u0275fac}),q})()},5043:(Be,K,p)=>{"use strict";p.d(K,{LG:()=>d,mQ:()=>C});var t=p(2340),e=p(5e3);const{isDebugMode:f}=t.NZ,M=()=>null;let C=(()=>{class R{invokeConsoleMethod(L,w){}}return R.\u0275fac=function(L){return new(L||R)},R.\u0275prov=e.Yz7({token:R,factory:R.\u0275fac}),R})(),d=(()=>{class R{get info(){return f?console.log.bind(console):M}get warn(){return f?console.warn.bind(console):M}get error(){return f?console.error.bind(console):M}invokeConsoleMethod(L,w){(console[L]||console.log||M).apply(console,[w])}}return R.\u0275fac=function(L){return new(L||R)},R.\u0275prov=e.Yz7({token:R,factory:R.\u0275fac}),R})()},9107:(Be,K,p)=>{"use strict";p.d(K,{W:()=>Z});var t=p(8138),e=p(1135),f=p(7579),M=p(9646),a=p(2843),C=p(2722),d=p(262),R=p(4004),h=p(2340),L=p(7731),w=p(1786),D=p(7861),S=p(5e3),k=p(5043),E=p(5620),B=p(62);let Z=(()=>{class Y{constructor(ee,ue,ie,re){this.httpClient=ee,this.logger=ue,this.store=ie,this.commonService=re,this.loopUrl="",this.swaps=[],this.swapsChanged=new e.X([]),this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,D.ac)({payload:L.m6.GET_LOOP_SWAPS})),this.loopUrl=h.T5+h.NZ.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,C.R)(this.unSubs[0])).subscribe({next:ee=>{this.store.dispatch((0,D.uO)({payload:L.m6.GET_LOOP_SWAPS})),this.swaps=ee,this.swapsChanged.next(this.swaps)},error:ee=>this.swapsChanged.error(this.handleErrorWithAlert(L.m6.GET_LOOP_SWAPS,this.loopUrl,ee))})}loopOut(ee,ue,ie,re,ge,q,_e,x,i,r){const u={amount:ee,targetConf:ie,swapRoutingFee:re,minerFee:ge,prepayRoutingFee:q,prepayAmt:_e,swapFee:x,swapPublicationDeadline:i,destAddress:r};return""!==ue&&(u.chanId=ue),this.loopUrl=h.T5+h.NZ.LOOP_API+"/out",this.httpClient.post(this.loopUrl,u).pipe((0,d.K)(c=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ue,L.m6.NO_SPINNER,c)))}getLoopOutTerms(){return this.loopUrl=h.T5+h.NZ.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,d.K)(ee=>this.handleErrorWithoutAlert("Loop Out Terms",L.m6.NO_SPINNER,ee)))}getLoopOutQuote(ee,ue,ie){let re=new t.LE;return re=re.append("targetConf",ue.toString()),re=re.append("swapPublicationDeadline",ie.toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/out/quote/"+ee,this.store.dispatch((0,D.ac)({payload:L.m6.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:re}).pipe((0,C.R)(this.unSubs[1]),(0,R.U)(ge=>(this.store.dispatch((0,D.uO)({payload:L.m6.GET_QUOTE})),ge)),(0,d.K)(ge=>this.handleErrorWithoutAlert("Loop Out Quote",L.m6.GET_QUOTE,ge)))}getLoopOutTermsAndQuotes(ee){let ue=new t.LE;return ue=ue.append("targetConf",ee.toString()),ue=ue.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,D.ac)({payload:L.m6.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ue}).pipe((0,C.R)(this.unSubs[2]),(0,R.U)(ie=>(this.store.dispatch((0,D.uO)({payload:L.m6.GET_TERMS_QUOTES})),ie)),(0,d.K)(ie=>(0,M.of)(this.handleErrorWithAlert(L.m6.GET_TERMS_QUOTES,this.loopUrl,ie))))}loopIn(ee,ue,ie,re,ge){const q={amount:ee,swapFee:ue,minerFee:ie,lastHop:re,externalHtlc:ge};return this.loopUrl=h.T5+h.NZ.LOOP_API+"/in",this.httpClient.post(this.loopUrl,q).pipe((0,d.K)(_e=>this.handleErrorWithoutAlert("Loop In",L.m6.NO_SPINNER,_e)))}getLoopInTerms(){return this.loopUrl=h.T5+h.NZ.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,d.K)(ee=>this.handleErrorWithoutAlert("Loop In Terms",L.m6.NO_SPINNER,ee)))}getLoopInQuote(ee,ue,ie){let re=new t.LE;return re=re.append("targetConf",ue.toString()),re=re.append("swapPublicationDeadline",ie.toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/in/quote/"+ee,this.store.dispatch((0,D.ac)({payload:L.m6.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:re}).pipe((0,C.R)(this.unSubs[3]),(0,R.U)(ge=>(this.store.dispatch((0,D.uO)({payload:L.m6.GET_QUOTE})),ge)),(0,d.K)(ge=>this.handleErrorWithoutAlert("Loop In Qoute",L.m6.GET_QUOTE,ge)))}getLoopInTermsAndQuotes(ee){let ue=new t.LE;return ue=ue.append("targetConf",ee.toString()),ue=ue.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,D.ac)({payload:L.m6.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ue}).pipe((0,C.R)(this.unSubs[4]),(0,R.U)(ie=>(this.store.dispatch((0,D.uO)({payload:L.m6.GET_TERMS_QUOTES})),ie)),(0,d.K)(ie=>(0,M.of)(this.handleErrorWithAlert(L.m6.GET_TERMS_QUOTES,this.loopUrl,ie))))}getSwap(ee){return this.loopUrl=h.T5+h.NZ.LOOP_API+"/swap/"+ee,this.httpClient.get(this.loopUrl).pipe((0,d.K)(ue=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+ee,L.m6.NO_SPINNER,ue)))}handleErrorWithoutAlert(ee,ue,ie){let re="";return this.logger.error("ERROR IN: "+ee+"\n"+JSON.stringify(ie)),this.store.dispatch((0,D.uO)({payload:ue})),401===ie.status?(re="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.kS)())):503===ie.status?(re="Unable to Connect to Loop Server.",this.store.dispatch((0,D.qR)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:ee},component:w.H}}}))):re=this.commonService.extractErrorMessage(ie),(0,a._)(()=>new Error(re))}handleErrorWithAlert(ee,ue,ie){let re="";if(this.logger.error(ie),this.store.dispatch((0,D.uO)({payload:ee})),401===ie.status)re="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.kS)());else if(503===ie.status)re="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:ue},component:w.H}}}))},100);else{re=this.commonService.extractErrorMessage(ie);const ge=ie.error&&ie.error.error&&ie.error.error.code?ie.error.error.code:ie.error&&ie.error.code?ie.error.code:ie.code?ie.code:ie.status;setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{type:L.n_.ERROR,alertTitle:"ERROR",message:{code:ge,message:re,URL:ue},component:w.H}}}))},100)}return{message:re}}ngOnDestroy(){this.unSubs.forEach(ee=>{ee.next(null),ee.complete()})}}return Y.\u0275fac=function(ee){return new(ee||Y)(S.LFG(t.eN),S.LFG(k.mQ),S.LFG(E.yh),S.LFG(B.v))},Y.\u0275prov=S.Yz7({token:Y,factory:Y.\u0275fac}),Y})()},5986:(Be,K,p)=>{"use strict";p.d(K,{m:()=>f});var t=p(7579),e=p(5e3);let f=(()=>{class M{constructor(){this.sessionSub=new t.x}watchSession(){return this.sessionSub.asObservable()}getItem(C){return sessionStorage.getItem(C)}getAllItems(){return sessionStorage}setItem(C,d){sessionStorage.setItem(C,d),this.sessionSub.next(sessionStorage)}removeItem(C){sessionStorage.removeItem(C),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}}return M.\u0275fac=function(C){return new(C||M)},M.\u0275prov=e.Yz7({token:M,factory:M.\u0275fac}),M})()},7998:(Be,K,p)=>{"use strict";p.d(K,{d:()=>k});var t=p(1135),e=p(7579),f=p(2722),M=p(930),a=p(8306),C=p(727),d=p(4707);const R={url:"",deserializer:E=>JSON.parse(E.data),serializer:E=>JSON.stringify(E)};class L extends e.u{constructor(B,Z){if(super(),this._socket=null,B instanceof a.y)this.destination=Z,this.source=B;else{const Y=this._config=Object.assign({},R);if(this._output=new e.x,"string"==typeof B)Y.url=B;else for(const ae in B)B.hasOwnProperty(ae)&&(Y[ae]=B[ae]);if(!Y.WebSocketCtor&&WebSocket)Y.WebSocketCtor=WebSocket;else if(!Y.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new d.t}}lift(B){const Z=new L(this._config,this.destination);return Z.operator=B,Z.source=this,Z}_resetState(){this._socket=null,this.source||(this.destination=new d.t),this._output=new e.x}multiplex(B,Z,Y){const ae=this;return new a.y(ee=>{try{ae.next(B())}catch(ie){ee.error(ie)}const ue=ae.subscribe({next:ie=>{try{Y(ie)&&ee.next(ie)}catch(re){ee.error(re)}},error:ie=>ee.error(ie),complete:()=>ee.complete()});return()=>{try{ae.next(Z())}catch(ie){ee.error(ie)}ue.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:B,protocol:Z,url:Y,binaryType:ae}=this._config,ee=this._output;let ue=null;try{ue=Z?new B(Y,Z):new B(Y),this._socket=ue,ae&&(this._socket.binaryType=ae)}catch(re){return void ee.error(re)}const ie=new C.w0(()=>{this._socket=null,ue&&1===ue.readyState&&ue.close()});ue.onopen=re=>{const{_socket:ge}=this;if(!ge)return ue.close(),void this._resetState();const{openObserver:q}=this._config;q&&q.next(re);const _e=this.destination;this.destination=M.Lv.create(x=>{if(1===ue.readyState)try{const{serializer:i}=this._config;ue.send(i(x))}catch(i){this.destination.error(i)}},x=>{const{closingObserver:i}=this._config;i&&i.next(void 0),x&&x.code?ue.close(x.code,x.reason):ee.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),this._resetState()},()=>{const{closingObserver:x}=this._config;x&&x.next(void 0),ue.close(),this._resetState()}),_e&&_e instanceof d.t&&ie.add(_e.subscribe(this.destination))},ue.onerror=re=>{this._resetState(),ee.error(re)},ue.onclose=re=>{ue===this._socket&&this._resetState();const{closeObserver:ge}=this._config;ge&&ge.next(re),re.wasClean?ee.complete():ee.error(re)},ue.onmessage=re=>{try{const{deserializer:ge}=this._config;ee.next(ge(re))}catch(ge){ee.error(ge)}}}_subscribe(B){const{source:Z}=this;return Z?Z.subscribe(B):(this._socket||this._connectSocket(),this._output.subscribe(B),B.add(()=>{const{_socket:Y}=this;0===this._output.observers.length&&(Y&&(1===Y.readyState||0===Y.readyState)&&Y.close(),this._resetState())}),B)}unsubscribe(){const{_socket:B}=this;B&&(1===B.readyState||0===B.readyState)&&B.close(),this._resetState(),super.unsubscribe()}}var w=p(5e3),D=p(5043),S=p(5986);let k=(()=>{class E{constructor(Z,Y){this.logger=Z,this.sessionService=Y,this.clWSMessages=new t.X(null),this.eclWSMessages=new t.X(null),this.lndWSMessages=new t.X(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x]}connectWebSocket(Z,Y){(!this.socket||this.socket.closed)&&(this.wsUrl=Z,this.nodeIndex=Y,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new L({url:Z,protocol:[this.sessionService.getItem("token")||"",Y]}),this.subscribeToMessages())}reconnectOnError(){this.RECONNECT_TIMEOUT||this.socket&&!this.socket.closed||(this.RETRY_SECONDS=this.RETRY_SECONDS>=160?160:2*this.RETRY_SECONDS,this.RECONNECT_TIMEOUT=setTimeout(()=>{this.logger.info("Reconnecting Web Socket."),this.connectWebSocket(this.wsUrl,this.nodeIndex),this.RECONNECT_TIMEOUT=null},1e3*this.RETRY_SECONDS))}closeConnection(){this.socket&&(this.socket.complete(),this.socket=null)}subscribeToMessages(){var Z;null===(Z=this.socket)||void 0===Z||Z.pipe((0,f.R)(this.unSubs[1])).subscribe({next:Y=>{if((Y="string"==typeof Y?JSON.parse(Y):Y).error)this.handleError(Y.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(Y)),Y.source){case"LND":this.lndWSMessages.next(Y);break;case"CLN":this.clWSMessages.next(Y);break;case"ECL":this.eclWSMessages.next(Y)}},error:Y=>this.handleError(Y),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(Z){this.logger.error(Z),this.clWSMessages.error(Z),this.eclWSMessages.error(Z),this.lndWSMessages.error(Z),this.reconnectOnError()}ngOnDestroy(){this.closeConnection(),this.clWSMessages.next(null),this.clWSMessages.complete(),this.eclWSMessages.next(null),this.eclWSMessages.complete(),this.lndWSMessages.next(null),this.lndWSMessages.complete()}}return E.\u0275fac=function(Z){return new(Z||E)(w.LFG(D.mQ),w.LFG(S.m))},E.\u0275prov=w.Yz7({token:E,factory:E.\u0275fac}),E})()},8750:(Be,K,p)=>{"use strict";p.d(K,{m:()=>Vn});var t=p(9808),e=p(1402),f=p(3075),M=p(8138),a=p(9546),C=p(5e3),d=p(3270),R=p(3322),h=p(7093);p(3191);let Qe=(()=>{class It{}return It.\u0275fac=function(vt){return new(vt||It)},It.\u0275mod=C.oAB({type:It}),It.\u0275inj=C.cJS({imports:[[d.IR]]}),It})(),se=(()=>{class It{constructor(vt,jt){(0,t.PM)(jt)&&!vt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(vt,jt=[]){return{ngModule:It,providers:vt.serverLoaded?[{provide:d.WU,useValue:Object.assign(Object.assign({},d.g5),vt)},{provide:d.Bs,useValue:jt,multi:!0},{provide:d.wY,useValue:!0}]:[{provide:d.WU,useValue:Object.assign(Object.assign({},d.g5),vt)},{provide:d.Bs,useValue:jt,multi:!0}]}}}return It.\u0275fac=function(vt){return new(vt||It)(C.LFG(d.wY),C.LFG(C.Lbi))},It.\u0275mod=C.oAB({type:It}),It.\u0275inj=C.cJS({imports:[[h.ae,R.aT,Qe],h.ae,R.aT,Qe]}),It})();var Je=p(5113),xt=p(508),Bt=p(8966),xi=p(1079),Ti=p(7544),$i=p(7423);p(449),p(5664);let Dn=(()=>{class It{}return It.\u0275fac=function(vt){return new(vt||It)},It.\u0275mod=C.oAB({type:It}),It.\u0275inj=C.cJS({imports:[[xt.BQ,xt.si],xt.BQ]}),It})();var Nn=p(9224),tr=p(7446),gn=p(6856),Ei=p(1125),ji=p(3954),Sn=p(5245),Qn=p(7531),sr=p(4623),ua=p(2181),va=p(6087),Sr=p(5899),ha=p(773),Br=p(9814),ia=p(4107),na=p(2638),ra=p(2368);p(1159),p(6360),p(925),p(727),p(226);let xa=(()=>{class It{}return It.\u0275fac=function(vt){return new(vt||It)},It.\u0275mod=C.oAB({type:It}),It.\u0275inj=C.cJS({imports:[[t.ez,xt.BQ],xt.BQ]}),It})();var or=p(7261),sa=p(4847),Va=p(5615),ir=p(2075),oa=p(3251),Kr=p(4594),Rr=p(7238),Gr=p(149),Ta=p(6688),Ja=p(1210),Xn=p(159),$e=p(8129),Et=p(9776);let Xe=(()=>{class It extends Et.Xj{_createContainer(){const vt=document.createElement("div");vt.classList.add("cdk-overlay-container"),document.getElementById("rtl-container").appendChild(vt),this._containerElement=vt}}return It.\u0275fac=function(){let ci;return function(jt){return(ci||(ci=C.n5z(It)))(jt||It)}}(),It.\u0275prov=C.Yz7({token:It,factory:It.\u0275fac}),It})();var kt=p(5043),ii=p(7731),wi=p(9445);const yi={suppressScrollX:!1,suppressScrollY:!1};let en=(()=>{class It extends xt.LF{format(vt,jt){if("input"===jt){let ki=vt.getDate().toString();return ki=+ki<10?"0"+ki:ki,ki+"/"+ii.gg[vt.getMonth()].name.toUpperCase()+"/"+vt.getFullYear()}return ii.gg[vt.getMonth()].name.toUpperCase()+" "+vt.getFullYear()}}return It.\u0275fac=function(){let ci;return function(jt){return(ci||(ci=C.n5z(It)))(jt||It)}}(),It.\u0275prov=C.Yz7({token:It,factory:It.\u0275fac}),It})();const nr={parse:{dateInput:{day:"numeric",month:"short",year:"numeric"}},display:{dateInput:"input",monthYearLabel:{month:"short",year:"numeric"},dateA11yLabel:{day:"numeric",month:"short",year:"numeric"},monthYearA11yLabel:{month:"short",year:"numeric"}}};let Vn=(()=>{class It{}return It.\u0275fac=function(vt){return new(vt||It)},It.\u0275mod=C.oAB({type:It}),It.\u0275inj=C.cJS({providers:[{provide:kt.mQ,useClass:kt.LG},{provide:$e.op,useValue:yi},{provide:or.Ve,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:Bt.Bq,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog",width:"45%"}},{provide:xt._A,useClass:en},{provide:xt.sG,useValue:nr},{provide:Et.Xj,useClass:Xe},t.JJ,t.rS,t.uU,wi.al,wi.h9,wi.D3,wi.i1],imports:[[t.ez,f.u5,f.UX,a.uH,se,Je.xu,Bt.Is,$i.ot,Dn,Nn.QW,tr.p9,Ei.To,ji.N6,gn.FA,xt.XK,Sn.Ps,Qn.c,sr.ie,ua.Tx,Sr.Cv,ha.Cq,Br.Fk,Gr.dp,Ta.Hi,ia.LD,na.SJ,ra.rP,sa.JX,ir.p0,Kr.g0,Rr.AV,Ti.g,va.TU,Va.T5,xa,oa.Nh,or.ZX,xi.Bb,Ja.a4,Xn.OF,e.Bz,M.JF,$e.Xd],f.u5,f.UX,a.uH,se,Je.xu,Bt.Is,$i.ot,Dn,Nn.QW,tr.p9,Ei.To,ji.N6,gn.FA,xt.XK,Sn.Ps,Qn.c,sr.ie,ua.Tx,Sr.Cv,ha.Cq,Br.Fk,Gr.dp,Ta.Hi,ia.LD,na.SJ,ra.rP,sa.JX,ir.p0,Kr.g0,Rr.AV,Ti.g,va.TU,Va.T5,xa,oa.Nh,or.ZX,xi.Bb,Ja.a4,Xn.OF,$e.Xd]}),It})()},7861:(Be,K,p)=>{"use strict";p.d(K,{M6:()=>w,Q2:()=>E,QO:()=>c,Tm:()=>ge,Uy:()=>ie,XT:()=>ee,_V:()=>_e,ac:()=>R,c0:()=>r,c1:()=>D,dc:()=>y,ey:()=>ae,fk:()=>re,jS:()=>q,jW:()=>d,kS:()=>i,lC:()=>M,qR:()=>L,qi:()=>a,tj:()=>k,ts:()=>C,tw:()=>Z,uO:()=>h,vI:()=>Y,x4:()=>T,yb:()=>S,zQ:()=>ue});var t=p(5620),e=p(7731);(0,t.PH)(e.pg.VOID);const M=(0,t.PH)(e.pg.SET_API_URL_ECL,(0,t.Ky)()),a=(0,t.PH)(e.pg.UPDATE_API_CALL_STATUS_ROOT,(0,t.Ky)()),C=(0,t.PH)(e.pg.CLOSE_ALL_DIALOGS),d=(0,t.PH)(e.pg.OPEN_SNACK_BAR,(0,t.Ky)()),R=(0,t.PH)(e.pg.OPEN_SPINNER,(0,t.Ky)()),h=(0,t.PH)(e.pg.CLOSE_SPINNER,(0,t.Ky)()),L=(0,t.PH)(e.pg.OPEN_ALERT,(0,t.Ky)()),w=(0,t.PH)(e.pg.CLOSE_ALERT,(0,t.Ky)()),D=(0,t.PH)(e.pg.OPEN_CONFIRMATION,(0,t.Ky)()),S=(0,t.PH)(e.pg.CLOSE_CONFIRMATION,(0,t.Ky)()),k=(0,t.PH)(e.pg.SHOW_PUBKEY),E=(0,t.PH)(e.pg.FETCH_CONFIG,(0,t.Ky)()),Z=((0,t.PH)(e.pg.SHOW_CONFIG,(0,t.Ky)()),(0,t.PH)(e.pg.UPDATE_SELECTED_NODE_OPTIONS)),Y=(0,t.PH)(e.pg.RESET_ROOT_STORE,(0,t.Ky)()),ae=(0,t.PH)(e.pg.FETCH_RTL_CONFIG),ee=(0,t.PH)(e.pg.SET_RTL_CONFIG,(0,t.Ky)()),ue=(0,t.PH)(e.pg.SAVE_SETTINGS,(0,t.Ky)()),ie=(0,t.PH)(e.pg.TWO_FA_SAVE_SETTINGS,(0,t.Ky)()),re=(0,t.PH)(e.pg.SET_SELECTED_NODE,(0,t.Ky)()),ge=(0,t.PH)(e.pg.UPDATE_ROOT_NODE_SETTINGS,(0,t.Ky)()),q=(0,t.PH)(e.pg.UPDATE_SERVICE_SETTINGS,(0,t.Ky)()),_e=(0,t.PH)(e.pg.SET_NODE_DATA,(0,t.Ky)()),i=((0,t.PH)(e.pg.SAVE_SSO,(0,t.Ky)()),(0,t.PH)(e.pg.LOGOUT)),r=(0,t.PH)(e.pg.RESET_PASSWORD,(0,t.Ky)()),c=((0,t.PH)(e.pg.RESET_PASSWORD_RES,(0,t.Ky)()),(0,t.PH)(e.pg.IS_AUTHORIZED,(0,t.Ky)())),T=((0,t.PH)(e.pg.IS_AUTHORIZED_RES,(0,t.Ky)()),(0,t.PH)(e.pg.LOGIN,(0,t.Ky)())),y=((0,t.PH)(e.pg.VERIFY_TWO_FA,(0,t.Ky)()),(0,t.PH)(e.pg.FETCH_FILE,(0,t.Ky)()));(0,t.PH)(e.pg.SHOW_FILE,(0,t.Ky)())},3093:(Be,K,p)=>{"use strict";p.d(K,{V:()=>fn});var t=p(6642),e=p(7579),f=p(9646),M=p(8306),a=p(4128),C=p(4004),d=p(5698),R=p(1365),h=p(5577),L=p(262),w=p(2722),D=p(2340),S=p(7731),k=p(8966),E=p(5e3),B=p(7093),Z=p(773);let Y=(()=>{class ti{constructor(st,Rt){this.dialogRef=st,this.data=Rt}}return ti.\u0275fac=function(st){return new(st||ti)(E.Y36(k.so),E.Y36(k.WI))},ti.\u0275cmp=E.Xpm({type:ti,selectors:[["rtl-spinner-dialog"]],decls:5,vars:1,consts:[[1,"spinner-container"],["fxLayout","column","fxLayoutAlign","center center",1,"spinner-circle"]],template:function(st,Rt){1&st&&(E.TgZ(0,"div",0)(1,"div",1),E._UZ(2,"mat-spinner"),E.TgZ(3,"h1"),E._uU(4),E.qZA()()()),2&st&&(E.xp6(4),E.Oqu(Rt.data.titleMessage))},directives:[B.xw,B.Wh,Z.Ou],styles:[".spinner-container[_ngcontent-%COMP%]{position:absolute;left:40%;top:35%}"]}),ti})();var ae=p(5043),ee=p(7261),ue=p(62),ie=p(9808),re=p(3322),ge=p(159),q=p(9224),_e=p(7423),x=p(8129),i=p(5245),r=p(3390),u=p(6895),c=p(4834);const v=["scrollContainer"];function T(ti,Ri){if(1&ti&&E._UZ(0,"qr-code",15),2&ti){const st=E.oxw();E.Q6J("value",st.showQRField)("size",200)("errorCorrectionLevel","L")}}function I(ti,Ri){1&ti&&E.GkF(0)}const y=function(ti){return{"h-40":ti}};function n(ti,Ri){if(1&ti&&(E.ynx(0),E.TgZ(1,"mat-card-content",16,17),E.YNc(3,I,1,0,"ng-container",18),E.qZA(),E.BQk()),2&ti){const st=E.oxw(),Rt=E.MAs(20);E.xp6(1),E.Q6J("ngClass",E.VKq(2,y,st.data.scrollable)),E.xp6(2),E.Q6J("ngTemplateOutlet",Rt)}}function _(ti,Ri){1&ti&&E.GkF(0)}function V(ti,Ri){if(1&ti&&(E.ynx(0),E.TgZ(1,"mat-card-content",19),E.YNc(2,_,1,0,"ng-container",18),E.qZA(),E.BQk()),2&ti){E.oxw();const st=E.MAs(20);E.xp6(2),E.Q6J("ngTemplateOutlet",st)}}function N(ti,Ri){1&ti&&(E.TgZ(0,"mat-icon",23),E._uU(1,"arrow_downward"),E.qZA())}function H(ti,Ri){1&ti&&(E.TgZ(0,"mat-icon",23),E._uU(1,"arrow_upward"),E.qZA())}function X(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"div",20)(1,"button",21),E.NdJ("click",function(){return E.CHM(st),E.oxw().onScroll()}),E.YNc(2,N,2,0,"mat-icon",22),E.YNc(3,H,2,0,"mat-icon",22),E.qZA()()}if(2&ti){const st=E.oxw();E.xp6(2),E.Q6J("ngIf","DOWN"===st.scrollDirection),E.xp6(1),E.Q6J("ngIf","UP"===st.scrollDirection)}}function he(ti,Ri){1&ti&&(E.TgZ(0,"button",24),E._uU(1,"OK"),E.qZA()),2&ti&&E.Q6J("mat-dialog-close",!1)}function be(ti,Ri){1&ti&&(E.TgZ(0,"button",25),E._uU(1,"Close"),E.qZA()),2&ti&&E.Q6J("mat-dialog-close",!1)}function Pe(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"button",26),E.NdJ("copied",function(Wt){return E.CHM(st),E.oxw().onCopyField(Wt)}),E._uU(1),E.qZA()}if(2&ti){const st=E.oxw();E.Q6J("payload",st.showCopyField),E.xp6(1),E.hij("Copy ",st.showCopyName,"")}}function Ee(ti,Ri){1&ti&&(E.TgZ(0,"button",25),E._uU(1,"Close"),E.qZA()),2&ti&&E.Q6J("mat-dialog-close",!1)}function j(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"button",26),E.NdJ("copied",function(Wt){return E.CHM(st),E.oxw().onCopyField(Wt)}),E._uU(1),E.qZA()}if(2&ti){const st=E.oxw();E.Q6J("payload",st.showQRField),E.xp6(1),E.hij("Copy ",st.showQRName,"")}}function Ve(ti,Ri){if(1&ti&&E._UZ(0,"qr-code",15),2&ti){const st=E.oxw(2);E.Q6J("value",st.showQRField)("size",200)("errorCorrectionLevel","L")}}function Me(ti,Ri){if(1&ti&&(E.TgZ(0,"p",32),E._uU(1),E.qZA()),2&ti){const st=E.oxw(2);E.xp6(1),E.Oqu(st.data.titleMessage)}}function J(ti,Ri){1&ti&&E._UZ(0,"span",46),2&ti&&E.Q6J("innerHTML",Ri.$implicit,E.oJD)}function Ie(ti,Ri){if(1&ti&&(E.ynx(0),E.YNc(1,J,1,1,"span",45),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Q6J("ngForOf",st.value)}}function ut(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.ALo(2,"date"),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(E.xi3(2,1,1e3*st.value,"dd/MMM/y HH:mm"))}}function Oe(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.ALo(2,"number"),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(E.xi3(2,1,st.value,st.digitsInfo?st.digitsInfo:"1.0-3"))}}function we(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(st.value?"True":"False")}}function ce(ti,Ri){1&ti&&(E.TgZ(0,"mat-icon",51),E._uU(1,"info"),E.qZA())}const Te=function(ti){return{"failed-status":ti}};function xe(ti,Ri){if(1&ti&&(E.TgZ(0,"p",49),E._uU(1),E.YNc(2,ce,2,0,"mat-icon",50),E.qZA()),2&ti){const st=E.oxw(3).$implicit,Rt=E.oxw(4);E.Q6J("ngClass",E.VKq(3,Te,st.value===Rt.LoopStateEnum.FAILED)),E.xp6(1),E.hij(" ",st.value," "),E.xp6(1),E.Q6J("ngIf",st.value===Rt.LoopStateEnum.FAILED)}}function W(ti,Ri){if(1&ti&&E._uU(0),2&ti){const st=E.oxw(3).$implicit;E.Oqu(st.value)}}function te(ti,Ri){if(1&ti&&(E.ynx(0),E.YNc(1,xe,3,5,"p",47),E.YNc(2,W,1,1,"ng-template",null,48,E.W1O),E.BQk()),2&ti){const st=E.MAs(3),Rt=E.oxw(2).$implicit,Wt=E.oxw(4);E.xp6(1),E.Q6J("ngIf","SWAP"===Wt.data.openedBy&&"state"===Rt.key)("ngIfElse",st)}}function Ce(ti,Ri){if(1&ti&&(E.TgZ(0,"span")(1,"span",42),E.YNc(2,Ie,2,1,"ng-container",43),E.YNc(3,ut,3,4,"ng-container",43),E.YNc(4,Oe,3,4,"ng-container",43),E.YNc(5,we,2,1,"ng-container",43),E.YNc(6,te,4,2,"ng-container",44),E.qZA()()),2&ti){const st=E.oxw().$implicit,Rt=E.oxw(4);E.xp6(1),E.Q6J("ngSwitch",st.type),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.ARRAY),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.DATE_TIME),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.NUMBER),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.BOOLEAN)}}function fe(ti,Ri){1&ti&&(E.TgZ(0,"span",52),E._uU(1,"\xa0"),E.qZA())}function Q(ti,Ri){if(1&ti&&(E.TgZ(0,"div",37)(1,"h4",38),E._uU(2),E.qZA(),E.YNc(3,Ce,7,5,"span",39),E.YNc(4,fe,2,0,"ng-template",null,40,E.W1O),E._UZ(6,"mat-divider",41),E.qZA()),2&ti){const st=Ri.$implicit,Rt=E.MAs(5);E.s9C("fxFlex.gt-md",st.width),E.xp6(2),E.Oqu(st.title),E.xp6(1),E.Q6J("ngIf",st&&(!!st.value||0===st.value))("ngIfElse",Rt)}}function ft(ti,Ri){if(1&ti&&(E.TgZ(0,"div")(1,"div",35),E.YNc(2,Q,7,4,"div",36),E.qZA()()),2&ti){const st=Ri.$implicit;E.xp6(2),E.Q6J("ngForOf",st)}}function tt(ti,Ri){if(1&ti&&(E.TgZ(0,"div",33),E.YNc(1,ft,3,1,"div",34),E.qZA()),2&ti){const st=E.oxw(2);E.xp6(1),E.Q6J("ngForOf",st.messageObjs)}}const Dt=function(ti){return{"display-none":ti}};function di(ti,Ri){if(1&ti&&(E.TgZ(0,"div",27)(1,"div",28),E.YNc(2,Ve,1,3,"qr-code",2),E.qZA(),E.TgZ(3,"div",29),E.YNc(4,Me,2,1,"p",30),E.YNc(5,tt,2,1,"div",31),E.qZA()()),2&ti){const st=E.oxw();E.xp6(1),E.Q6J("ngClass",E.VKq(4,Dt,""===st.showQRField||st.screenSize!==st.screenSizeEnum.XS&&st.screenSize!==st.screenSizeEnum.SM)),E.xp6(1),E.Q6J("ngIf",""!==st.showQRField),E.xp6(2),E.Q6J("ngIf",st.data.titleMessage),E.xp6(1),E.Q6J("ngIf",(null==st.messageObjs?null:st.messageObjs.length)>0)}}let Yt=(()=>{class ti{constructor(st,Rt,Wt,fi,Li,Ni){this.dialogRef=st,this.data=Rt,this.logger=Wt,this.snackBar=fi,this.commonService=Li,this.renderer=Ni,this.LoopStateEnum=S.Fq,this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=S.n_,this.dataTypeEnum=S.Gi,this.screenSize="",this.screenSizeEnum=S.cu,this.scrollDirection="DOWN",this.shouldScroll=!0}set container(st){st&&(this.scrollContainer=st,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",Rt=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",Rt=>{this.scrollDirection="DOWN"})))}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.showQRField=this.data.showQRField?this.data.showQRField:"",this.showQRName=this.data.showQRName?this.data.showQRName:"",this.showCopyName=this.data.showCopyName?this.data.showCopyName:"",this.showCopyField=this.data.showCopyField?this.data.showCopyField:"",this.data.type===S.n_.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs)}ngAfterViewChecked(){setTimeout(()=>{this.shouldScroll=this.scrollContainer&&this.scrollContainer.nativeElement&&this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")},500)}onScroll(){this.scrollContainer.nativeElement.scrollTop="DOWN"===this.scrollDirection?this.scrollContainer.nativeElement.scrollTop+62.6:this.scrollContainer.nativeElement.scrollTop-62.6}onCopyField(st){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+st)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd()}}return ti.\u0275fac=function(st){return new(st||ti)(E.Y36(k.so),E.Y36(k.WI),E.Y36(ae.mQ),E.Y36(ee.ux),E.Y36(ue.v),E.Y36(E.Qsj))},ti.\u0275cmp=E.Xpm({type:ti,selectors:[["rtl-alert-message"]],viewQuery:function(st,Rt){if(1&st&&E.Gf(v,5),2&st){let Wt;E.iGM(Wt=E.CRH())&&(Rt.container=Wt.first)}},decls:21,vars:14,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","ml-1",3,"ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],[3,"fxFlex"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close",4,"ngIf"],["class","mr-1","fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",3,"mat-dialog-close",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["contentBlock",""],[3,"value","size","errorCorrectionLevel"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],["scrollContainer",""],[4,"ngTemplateOutlet"],[1,"padding-gap-x-large"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","mb-1",3,"ngClass"],["fxLayout","column","fxFlex","100"],["fxLayoutAlign","start center","class","pb-2",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayoutAlign","start center",1,"pb-2"],["fxFlex","100"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],["emptyField",""],[1,"w-100","my-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["noStyleBlock",""],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(st,Rt){1&st&&(E.TgZ(0,"div",0)(1,"div",1),E.YNc(2,T,1,3,"qr-code",2),E.qZA(),E.TgZ(3,"div",3)(4,"mat-card-header",4)(5,"div",5)(6,"span",6),E._uU(7),E.qZA()(),E.TgZ(8,"button",7),E.NdJ("click",function(){return Rt.onClose()}),E._uU(9,"X"),E.qZA()(),E.YNc(10,n,4,4,"ng-container",8),E.YNc(11,V,3,1,"ng-container",8),E.YNc(12,X,4,2,"div",9),E.TgZ(13,"div",10),E.YNc(14,he,2,1,"button",11),E.YNc(15,be,2,1,"button",12),E.YNc(16,Pe,2,2,"button",13),E.YNc(17,Ee,2,1,"button",12),E.YNc(18,j,2,2,"button",13),E.qZA()()(),E.YNc(19,di,6,6,"ng-template",null,14,E.W1O)),2&st&&(E.xp6(1),E.Q6J("ngClass",E.VKq(12,Dt,""===Rt.showQRField||Rt.screenSize===Rt.screenSizeEnum.XS||Rt.screenSize===Rt.screenSizeEnum.SM)),E.xp6(1),E.Q6J("ngIf",""!==Rt.showQRField),E.xp6(1),E.Q6J("fxFlex",""===Rt.showQRField||Rt.screenSize===Rt.screenSizeEnum.XS||Rt.screenSize===Rt.screenSizeEnum.SM?"100":"70"),E.xp6(4),E.Oqu(Rt.data.alertTitle||Rt.alertTypeEnum[Rt.data.type]),E.xp6(3),E.Q6J("ngIf",Rt.data.scrollable),E.xp6(1),E.Q6J("ngIf",!Rt.data.scrollable),E.xp6(1),E.Q6J("ngIf",Rt.data.scrollable&&Rt.shouldScroll),E.xp6(2),E.Q6J("ngIf",(!Rt.showQRField||""===Rt.showQRField)&&""===Rt.showCopyName),E.xp6(1),E.Q6J("ngIf",""!==Rt.showCopyName),E.xp6(1),E.Q6J("ngIf",""!==Rt.showCopyName),E.xp6(1),E.Q6J("ngIf",""!==Rt.showQRField),E.xp6(1),E.Q6J("ngIf",""!==Rt.showQRField))},directives:[B.xw,B.Wh,B.yH,ie.mk,re.oO,ie.O5,ge.uU,q.dk,_e.lW,q.dn,x.$V,ie.tP,i.Hw,r.h,k.ZT,u.y,ie.sg,ie.RF,ie.n9,ie.ED,c.d],pipes:[ie.uU,ie.JJ],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}),ti})();var Zt=p(2687),ui=p(7861),Ot=p(5620),Nt=p(3075),gt=p(9546),it=p(7322),bt=p(7531),ei=p(6534);function Qt(ti,Ri){if(1&ti&&(E.TgZ(0,"div",18),E._UZ(1,"fa-icon",19),E.TgZ(2,"span"),E._uU(3),E.qZA()()),2&ti){const st=E.oxw();E.xp6(1),E.Q6J("icon",st.faExclamationTriangle),E.xp6(2),E.Oqu(st.warningMessage)}}function Re(ti,Ri){if(1&ti&&(E.TgZ(0,"div",20),E._UZ(1,"fa-icon",19),E.TgZ(2,"span"),E._uU(3),E.qZA()()),2&ti){const st=E.oxw();E.xp6(1),E.Q6J("icon",st.faInfoCircle),E.xp6(2),E.Oqu(st.informationMessage)}}function ke(ti,Ri){if(1&ti&&(E.TgZ(0,"p",21),E._uU(1),E.qZA()),2&ti){const st=E.oxw();E.xp6(1),E.Oqu(st.data.titleMessage)}}function de(ti,Ri){1&ti&&E._UZ(0,"div",36),2&ti&&E.Q6J("innerHTML",Ri.$implicit,E.oJD)}function ye(ti,Ri){if(1&ti&&(E.ynx(0,34),E.YNc(1,de,1,1,"div",35),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Q6J("ngForOf",st.value)}}function ht(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.ALo(2,"date"),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(E.xi3(2,1,1e3*st.value,"dd/MMM/y HH:mm"))}}function mt(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.ALo(2,"number"),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(E.xi3(2,1,st.value,"1.0-3"))}}function Ft(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(!0===st.value?"True":"False")}}function nt(ti,Ri){if(1&ti&&(E.ynx(0),E._uU(1),E.BQk()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.Oqu(st.value)}}function He(ti,Ri){if(1&ti&&(E.TgZ(0,"span")(1,"span",30),E.YNc(2,ye,2,1,"ng-container",31),E.YNc(3,ht,3,4,"ng-container",32),E.YNc(4,mt,3,4,"ng-container",32),E.YNc(5,Ft,2,1,"ng-container",32),E.YNc(6,nt,2,1,"ng-container",33),E.qZA()()),2&ti){const st=E.oxw().$implicit,Rt=E.oxw(3);E.xp6(1),E.Q6J("ngSwitch",st.type),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.ARRAY),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.DATE_TIME),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.NUMBER),E.xp6(1),E.Q6J("ngSwitchCase",Rt.dataTypeEnum.BOOLEAN)}}function rt(ti,Ri){1&ti&&(E.TgZ(0,"span",37),E._uU(1,"\xa0"),E.qZA())}function et(ti,Ri){if(1&ti&&(E.TgZ(0,"div",25)(1,"h4",26),E._uU(2),E.qZA(),E.YNc(3,He,7,5,"span",27),E.YNc(4,rt,2,0,"ng-template",null,28,E.W1O),E._UZ(6,"mat-divider",29),E.qZA()),2&ti){const st=Ri.$implicit,Rt=E.MAs(5);E.s9C("fxFlex.gt-md",st.width),E.xp6(2),E.Oqu(st.title),E.xp6(1),E.Q6J("ngIf",st&&(!!st.value||0===st.value))("ngIfElse",Rt)}}function Ae(ti,Ri){if(1&ti&&(E.TgZ(0,"div")(1,"div",23),E.YNc(2,et,7,4,"div",24),E.qZA()()),2&ti){const st=Ri.$implicit;E.xp6(2),E.Q6J("ngForOf",st)}}function Ge(ti,Ri){if(1&ti&&(E.TgZ(0,"div"),E.YNc(1,Ae,3,1,"div",22),E.qZA()),2&ti){const st=E.oxw();E.xp6(1),E.Q6J("ngForOf",st.messageObjs)}}function ot(ti,Ri){if(1&ti&&(E.TgZ(0,"p",21),E._uU(1),E.qZA()),2&ti){const st=E.oxw(2);E.xp6(1),E.Oqu(st.data.titleMessage)}}function lt(ti,Ri){if(1&ti&&(E.TgZ(0,"mat-error"),E._uU(1),E.qZA()),2&ti){const st=E.oxw(2).$implicit;E.xp6(1),E.hij("",st.placeholder," is required.")}}function Ct(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"mat-form-field",41)(1,"input",42),E.NdJ("ngModelChange",function(Wt){return E.CHM(st),E.oxw().$implicit.inputValue=Wt}),E.ALo(2,"lowercase"),E.qZA(),E.YNc(3,lt,2,1,"mat-error",11),E.TgZ(4,"mat-hint"),E._uU(5),E.qZA()()}if(2&ti){const st=E.oxw(),Rt=st.$implicit,Wt=st.index;E.Q6J("fxFlex",Rt.width),E.xp6(1),E.MGl("name","input",Wt,""),E.Q6J("autoFocus",0===Wt)("placeholder",Rt.placeholder)("min",Rt.min)("step",Rt.step)("type",E.lcZ(2,11,Rt.inputType))("ngModel",Rt.inputValue)("tabindex",Wt+1),E.xp6(2),E.Q6J("ngIf",!Rt.inputValue),E.xp6(2),E.Oqu(Rt.hintFunction?Rt.hintFunction(Rt.inputValue):Rt.hintText)}}function mi(ti,Ri){if(1&ti&&(E.ynx(0),E.YNc(1,Ct,6,13,"mat-form-field",40),E.BQk()),2&ti){const st=Ri.$implicit,Rt=E.oxw(2);E.xp6(1),E.Q6J("ngIf",!st.advancedField||Rt.showAdvanced)}}function Jt(ti,Ri){if(1&ti&&(E.TgZ(0,"div",38),E.YNc(1,ot,2,1,"p",10),E.TgZ(2,"div",39),E.YNc(3,mi,2,1,"ng-container",22),E.qZA()()),2&ti){const st=E.oxw();E.xp6(1),E.Q6J("ngIf",st.data.titleMessage),E.xp6(2),E.Q6J("ngForOf",st.getInputs)}}function $t(ti,Ri){1&ti&&(E.TgZ(0,"p"),E._uU(1,"Show Advanced"),E.qZA())}function Qi(ti,Ri){1&ti&&(E.TgZ(0,"p"),E._uU(1,"Hide Advanced"),E.qZA())}function hi(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"button",43),E.NdJ("click",function(){return E.CHM(st),E.oxw().onShowAdvanced()}),E.YNc(1,$t,2,0,"p",27),E.YNc(2,Qi,2,0,"ng-template",null,44,E.W1O),E.qZA()}if(2&ti){const st=E.MAs(3),Rt=E.oxw();E.xp6(1),E.Q6J("ngIf",!Rt.showAdvanced)("ngIfElse",st)}}function si(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"button",45),E.NdJ("click",function(){E.CHM(st);const Wt=E.oxw();return Wt.onClose(Wt.getInputs)}),E._uU(1),E.qZA()}if(2&ti){const st=E.oxw();E.xp6(1),E.Oqu(st.yesBtnText)}}function Ji(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"button",46),E.NdJ("click",function(){return E.CHM(st),E.oxw().onClose(!0)}),E._uU(1),E.qZA()}if(2&ti){const st=E.oxw();E.xp6(1),E.Oqu(st.yesBtnText)}}let Zi=(()=>{class ti{constructor(st,Rt,Wt,fi){this.dialogRef=st,this.data=Rt,this.logger=Wt,this.store=fi,this.faInfoCircle=Zt.sqG,this.faExclamationTriangle=Zt.eHv,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=S.n_,this.dataTypeEnum=S.Gi,this.getInputs=[{placeholder:"",inputType:"text",inputValue:"",hintText:"",hintFunction:null,advancedField:!1}],this.showAdvanced=!1}ngOnInit(){this.informationMessage=this.data.informationMessage||"",this.warningMessage=this.data.warningMessage||"",this.flgShowInput=!!this.data.flgShowInput,this.getInputs=this.data.getInputs||[],this.noBtnText=this.data.noBtnText?this.data.noBtnText:"No",this.yesBtnText=this.data.yesBtnText?this.data.yesBtnText:"Yes",this.hasAdvanced=!!this.data.hasAdvanced&&this.data.hasAdvanced,this.messageObjs=this.data.message,this.data.type===S.n_.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(st){if(st&&this.getInputs&&this.getInputs.some(Rt=>void 0===Rt.inputValue))return!0;!this.showAdvanced&&st.length&&(st=null==st?void 0:st.reduce((Rt,Wt)=>(Wt.advancedField||Rt.push(Wt),Rt),[])),this.store.dispatch((0,ui.yb)({payload:st}))}}return ti.\u0275fac=function(st){return new(st||ti)(E.Y36(k.so),E.Y36(k.WI),E.Y36(ae.mQ),E.Y36(Ot.yh))},ti.\u0275cmp=E.Xpm({type:ti,selectors:[["rtl-confirmation-message"]],decls:21,vars:10,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],[4,"ngIf"],["fxLayout","column","class","bordered-box my-2 p-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],["mat-button","","color","primary","type","button","class","mr-1","tabindex","2",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click",4,"ngIf"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayoutAlign","start center",1,"pb-1"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],["emptyField",""],[1,"w-100","my-1"],[1,"foreground-secondary-text",3,"ngSwitch"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngSwitchCase"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch"],[3,"innerHTML",4,"ngFor","ngForOf"],[3,"innerHTML"],["fxFlex","100",1,"foreground-secondary-text"],["fxLayout","column",1,"bordered-box","my-2","p-2"],["fxLayout","row wrap","fxLayoutAlign","space-between center"],[3,"fxFlex",4,"ngIf"],[3,"fxFlex"],["matInput","","required","",3,"autoFocus","placeholder","name","min","step","type","ngModel","tabindex","ngModelChange"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click"]],template:function(st,Rt){1&st&&(E.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),E._uU(5),E.qZA()(),E.TgZ(6,"button",5),E.NdJ("click",function(){return Rt.onClose(!1)}),E._uU(7,"X"),E.qZA()(),E.TgZ(8,"mat-card-content",6)(9,"form",7),E.YNc(10,Qt,4,2,"div",8),E.YNc(11,Re,4,2,"div",9),E.YNc(12,ke,2,1,"p",10),E.YNc(13,Ge,2,1,"div",11),E.YNc(14,Jt,4,2,"div",12),E.TgZ(15,"div",13)(16,"button",14),E.NdJ("click",function(){return Rt.onClose(!1)}),E._uU(17),E.qZA(),E.YNc(18,hi,4,2,"button",15),E.YNc(19,si,2,1,"button",16),E.YNc(20,Ji,2,1,"button",17),E.qZA()()()()()),2&st&&(E.xp6(5),E.Oqu(Rt.data.alertTitle||Rt.alertTypeEnum[Rt.data.type]),E.xp6(5),E.Q6J("ngIf",Rt.warningMessage&&""!==Rt.warningMessage),E.xp6(1),E.Q6J("ngIf",Rt.informationMessage&&""!==Rt.informationMessage),E.xp6(1),E.Q6J("ngIf",Rt.data.titleMessage&&!Rt.flgShowInput),E.xp6(1),E.Q6J("ngIf",(null==Rt.messageObjs?null:Rt.messageObjs.length)>0),E.xp6(1),E.Q6J("ngIf",Rt.flgShowInput),E.xp6(3),E.Oqu(Rt.noBtnText),E.xp6(1),E.Q6J("ngIf",Rt.hasAdvanced),E.xp6(1),E.Q6J("ngIf",Rt.flgShowInput),E.xp6(1),E.Q6J("ngIf",!Rt.flgShowInput))},directives:[B.xw,B.yH,q.dk,B.Wh,_e.lW,q.dn,Nt._Y,Nt.JL,Nt.F,ie.O5,gt.BN,ie.sg,ie.RF,ie.n9,ie.ED,c.d,it.KE,bt.Nt,ei.q,Nt.Fj,Nt.Q7,r.h,Nt.JJ,Nt.On,it.TO,it.bx],pipes:[ie.uU,ie.JJ,ie.i8],styles:[""]}),ti})();var Vi=p(1786),Ui=p(4107),Ue=p(508);function Tt(ti,Ri){if(1&ti&&(E.TgZ(0,"mat-option",23),E._uU(1),E.qZA()),2&ti){const st=Ri.$implicit;E.Q6J("value",st),E.xp6(1),E.hij(" ",st.infoName," ")}}function ve(ti,Ri){if(1&ti){const st=E.EpF();E.TgZ(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),E.NdJ("valueChange",function(Wt){return E.CHM(st),E.oxw().selInfoType=Wt}),E.YNc(3,Tt,2,2,"mat-option",22),E.qZA()()()}if(2&ti){const st=E.oxw();E.xp6(2),E.Q6J("value",st.selInfoType),E.xp6(1),E.Q6J("ngForOf",st.infoTypes)}}const Qe=function(ti){return{"display-none":ti}};let _t=(()=>{class ti{constructor(st,Rt,Wt,fi,Li){this.dialogRef=st,this.data=Rt,this.logger=Wt,this.snackBar=fi,this.commonService=Li,this.faReceipt=Zt.dLy,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=S.cu}ngOnInit(){this.information=this.data.information,this.information.uris&&(1===this.information.uris.length?this.infoTypes.push({infoID:1,infoKey:"node URI",infoName:"Node URI"}):this.information.uris.length>1&&this.information.uris.forEach((st,Rt)=>{this.infoTypes.push({infoID:Rt+1,infoKey:"node URI "+(Rt+1),infoName:"Node URI "+(Rt+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(st){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+st)}}return ti.\u0275fac=function(st){return new(st||ti)(E.Y36(k.so),E.Y36(k.WI),E.Y36(ae.mQ),E.Y36(ee.ux),E.Y36(ue.v))},ti.\u0275cmp=E.Xpm({type:ti,selectors:[["rtl-show-pubkey"]],decls:26,vars:19,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[3,"value","size","errorCorrectionLevel"],["fxFlex","100","fxFlex.gt-sm","70"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],["tabindex","1",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(st,Rt){1&st&&(E.TgZ(0,"div",0)(1,"div",1),E._UZ(2,"qr-code",2),E.qZA(),E.TgZ(3,"div",3)(4,"mat-card-header",4)(5,"div",5),E._UZ(6,"fa-icon",6),E.TgZ(7,"span",7),E._uU(8),E.qZA()(),E.TgZ(9,"button",8),E.NdJ("click",function(){return Rt.onClose()}),E._uU(10,"X"),E.qZA()(),E.TgZ(11,"mat-card-content",9)(12,"div",10)(13,"div",11),E._UZ(14,"qr-code",2),E.qZA(),E.YNc(15,ve,4,2,"div",12),E.TgZ(16,"div",13)(17,"div",14)(18,"h4",15),E._uU(19),E.qZA(),E.TgZ(20,"span",16),E._uU(21),E.qZA()()(),E._UZ(22,"mat-divider",17),E.TgZ(23,"div",18)(24,"button",19),E.NdJ("copied",function(fi){return Rt.onCopyPubkey(fi)}),E._uU(25),E.qZA()()()()()()),2&st&&(E.xp6(1),E.Q6J("ngClass",E.VKq(15,Qe,Rt.screenSize===Rt.screenSizeEnum.XS||Rt.screenSize===Rt.screenSizeEnum.SM)),E.xp6(1),E.s9C("value",0===Rt.selInfoType.infoID?Rt.information.identity_pubkey:Rt.information.uris[Rt.selInfoType.infoID-1]),E.Q6J("size",Rt.qrWidth)("errorCorrectionLevel","L"),E.xp6(4),E.Q6J("icon",Rt.faReceipt),E.xp6(2),E.Oqu(Rt.selInfoType.infoName),E.xp6(5),E.Q6J("ngClass",E.VKq(17,Qe,Rt.screenSize!==Rt.screenSizeEnum.XS&&Rt.screenSize!==Rt.screenSizeEnum.SM)),E.xp6(1),E.s9C("value",0===Rt.selInfoType.infoID?Rt.information.identity_pubkey:Rt.information.uris[Rt.selInfoType.infoID-1]),E.Q6J("size",Rt.qrWidth)("errorCorrectionLevel","L"),E.xp6(1),E.Q6J("ngIf",Rt.information.uris&&Rt.information.uris.length>0),E.xp6(4),E.Oqu(Rt.selInfoType.infoName),E.xp6(2),E.Oqu(0===Rt.selInfoType.infoID?Rt.information.identity_pubkey:Rt.information.uris[Rt.selInfoType.infoID-1]),E.xp6(3),E.s9C("payload",0===Rt.selInfoType.infoID?Rt.information.identity_pubkey:Rt.information.uris[Rt.selInfoType.infoID-1]),E.xp6(1),E.hij("Copy ",Rt.selInfoType.infoKey,""))},directives:[B.xw,B.Wh,B.yH,ie.mk,re.oO,ge.uU,q.dk,gt.BN,_e.lW,q.dn,ie.O5,it.KE,Ui.gD,ie.sg,Ue.ey,c.d,r.h,u.y],styles:[""]}),ti})();var se=p(6523),Je=p(429),xt=p(2994),Bt=p(8377),xi=p(8138),Ti=p(7998),$i=p(5986),Wi=p(8104),on=p(1402);let fn=(()=>{class ti{constructor(st,Rt,Wt,fi,Li,Ni,pn,Dn,Nn,tr,gn){this.actions=st,this.httpClient=Rt,this.store=Wt,this.logger=fi,this.wsService=Li,this.sessionService=Ni,this.commonService=pn,this.dataService=Dn,this.dialog=Nn,this.snackBar=tr,this.router=gn,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new e.x,new e.x],this.closeAllDialogs=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.CLOSE_ALL_DIALOGS),(0,C.U)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.OPEN_SNACK_BAR),(0,C.U)(Ei=>{"string"==typeof Ei.payload?this.snackBar.open(Ei.payload):this.snackBar.open(Ei.payload.message,"","ERROR"===Ei.payload.type?{duration:Ei.payload.duration?Ei.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===Ei.payload.type?{duration:Ei.payload.duration?Ei.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:Ei.payload.duration?Ei.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.OPEN_SPINNER),(0,C.U)(Ei=>{Ei.payload!==S.m6.NO_SPINNER&&(this.dialogRef=this.dialog.open(Y,{data:{titleMessage:Ei.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.CLOSE_SPINNER),(0,C.U)(Ei=>{if(Ei.payload!==S.m6.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===Ei.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(ji=>{ji.componentInstance&&ji.componentInstance.data&&ji.componentInstance.data.titleMessage&&ji.componentInstance.data.titleMessage===Ei.payload&&ji.close()})}catch(ji){this.logger.error(ji)}})),{dispatch:!1}),this.openAlert=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.OPEN_ALERT),(0,C.U)(Ei=>{const ji=JSON.parse(JSON.stringify(Ei.payload));ji.width||(ji.width=this.alertWidth),this.dialogRef=this.dialog.open(Ei.payload.data.component?Ei.payload.data.component:Yt,ji)})),{dispatch:!1}),this.closeAlert=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.CLOSE_ALERT),(0,C.U)(Ei=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Ei.payload),Ei.payload))),{dispatch:!1}),this.openConfirm=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.OPEN_CONFIRMATION),(0,C.U)(Ei=>{const ji=JSON.parse(JSON.stringify(Ei.payload));ji.width||(ji.width=this.confirmWidth),this.dialogRef=this.dialog.open(Zi,ji)})),{dispatch:!1}),this.closeConfirm=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.CLOSE_CONFIRMATION),(0,d.q)(1),(0,C.U)(Ei=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Ei.payload),Ei.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.SHOW_PUBKEY),(0,R.M)(this.store.select(Bt.R4)),(0,h.z)(([Ei,ji])=>(this.sessionService.getItem("token")&&ji.identity_pubkey?this.store.dispatch((0,ui.qR)({payload:{data:{information:ji,component:_t}}})):this.snackBar.open("Node Pubkey does not exist."),(0,f.of)({type:S.pg.VOID}))))),this.appConfigFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.FETCH_RTL_CONFIG),(0,h.z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===S.cu.XS||this.screenSize===S.cu.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===S.cu.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="45%",this.confirmWidth="50%"),this.store.dispatch((0,ui.ac)({payload:S.m6.GET_RTL_CONFIG})),this.store.dispatch((0,ui.qi)({payload:{action:"FetchRTLConfig",status:S.Bn.INITIATED}})),this.sessionService.getItem("token")?this.httpClient.get(D.NZ.CONF_API+"/rtlconf"):this.httpClient.get(D.NZ.CONF_API+"/rtlconfinit"))),(0,C.U)(Ei=>{this.logger.info(Ei),this.store.dispatch((0,ui.uO)({payload:S.m6.GET_RTL_CONFIG})),this.store.dispatch((0,ui.qi)({payload:{action:"FetchRTLConfig",status:S.Bn.COMPLETED}}));let ji=null;return Ei.nodes.forEach(Sn=>{var Qn,sr;Sn.settings.currencyUnits=[...S.uA,(null===(Qn=Sn.settings)||void 0===Qn?void 0:Qn.currencyUnit)?null===(sr=Sn.settings)||void 0===sr?void 0:sr.currencyUnit:""],+(Sn.index||-1)===Ei.selectedNodeIndex&&(ji=Sn)}),ji?(this.store.dispatch((0,ui.fk)({payload:{uiMessage:S.m6.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:ji,isInitialSetup:!0}})),{type:S.pg.SET_RTL_CONFIG,payload:Ei}):{type:S.pg.VOID}}),(0,L.K)(Ei=>(this.handleErrorWithAlert("FetchRTLConfig",S.m6.GET_RTL_CONFIG,"Fetch RTL Config Failed!",D.NZ.CONF_API,Ei),(0,f.of)({type:S.pg.VOID}))))),this.settingSave=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.SAVE_SETTINGS),(0,h.z)(Ei=>{this.store.dispatch((0,ui.ac)({payload:Ei.payload.uiMessage})),this.store.dispatch((0,ui.qi)({payload:{action:"UpdateSettings",status:S.Bn.INITIATED}}));let ji=new M.y;if(Ei.payload.settings&&Ei.payload.defaultNodeIndex){const Sn=this.httpClient.post(D.NZ.CONF_API,{updatedSettings:Ei.payload.settings}),Qn=this.httpClient.post(D.NZ.CONF_API+"/updateDefaultNode",{defaultNodeIndex:Ei.payload.defaultNodeIndex});ji=(0,a.D)([Sn,Qn])}else Ei.payload.settings&&!Ei.payload.defaultNodeIndex?ji=this.httpClient.post(D.NZ.CONF_API,{updatedSettings:Ei.payload.settings}):!Ei.payload.settings&&Ei.payload.defaultNodeIndex&&(ji=this.httpClient.post(D.NZ.CONF_API+"/updateDefaultNode",{defaultNodeIndex:Ei.payload.defaultNodeIndex}));return ji.pipe((0,C.U)(Sn=>(this.logger.info(Sn),this.store.dispatch((0,ui.qi)({payload:{action:"UpdateSettings",status:S.Bn.COMPLETED}})),this.store.dispatch((0,ui.uO)({payload:Ei.payload.uiMessage})),{type:S.pg.OPEN_SNACK_BAR,payload:Sn.length?Sn[0].message+".":Sn.message+"."})),(0,L.K)(Sn=>(this.handleErrorWithAlert("UpdateSettings",Ei.payload.uiMessage,"Update Settings Failed!",D.NZ.CONF_API,Sn.length?Sn[0]:Sn),(0,f.of)({type:S.pg.VOID}))))}))),this.updateServicesettings=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.UPDATE_SERVICE_SETTINGS),(0,h.z)(Ei=>(this.store.dispatch((0,ui.ac)({payload:Ei.payload.uiMessage})),this.store.dispatch((0,ui.qi)({payload:{action:"UpdateServiceSettings",status:S.Bn.INITIATED}})),this.httpClient.post(D.NZ.CONF_API+"/updateServiceSettings",Ei.payload).pipe((0,C.U)(ji=>(this.logger.info(ji),this.store.dispatch((0,ui.qi)({payload:{action:"UpdateServiceSettings",status:S.Bn.COMPLETED}})),this.store.dispatch((0,ui.uO)({payload:Ei.payload.uiMessage})),this.store.dispatch((0,ui.Tm)({payload:Ei.payload})),{type:S.pg.OPEN_SNACK_BAR,payload:ji.message+"."})),(0,L.K)(ji=>(this.handleErrorWithAlert("UpdateServiceSettings",Ei.payload.uiMessage,"Update Service Settings Failed!",D.NZ.CONF_API,ji),(0,f.of)({type:S.pg.VOID})))))))),this.twoFASettingSave=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.TWO_FA_SAVE_SETTINGS),(0,h.z)(Ei=>(this.store.dispatch((0,ui.ac)({payload:S.m6.UPDATE_UI_SETTINGS})),this.store.dispatch((0,ui.qi)({payload:{action:"Update2FASettings",status:S.Bn.INITIATED}})),this.httpClient.post(D.NZ.CONF_API+"/update2FA",{secret2fa:Ei.payload.secret2fa}))),(0,R.M)(this.store.select(Bt.Yj)),(0,C.U)(([Ei,ji])=>{this.logger.info(Ei),ji.enable2FA=!ji.enable2FA,this.store.dispatch((0,ui.qi)({payload:{action:"Update2FASettings",status:S.Bn.COMPLETED}})),this.store.dispatch((0,ui.uO)({payload:S.m6.UPDATE_UI_SETTINGS})),this.store.dispatch((0,ui.XT)({payload:ji}))}),(0,L.K)(Ei=>(this.handleErrorWithAlert("Update2FASettings",S.m6.UPDATE_UI_SETTINGS,"Update 2FA Settings Failed!",D.NZ.CONF_API,Ei),(0,f.of)({type:S.pg.VOID})))),{dispatch:!1}),this.configFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.FETCH_CONFIG),(0,h.z)(Ei=>(this.store.dispatch((0,ui.ac)({payload:S.m6.OPEN_CONFIG_FILE})),this.store.dispatch((0,ui.qi)({payload:{action:"fetchConfig",status:S.Bn.INITIATED}})),this.httpClient.get(D.NZ.CONF_API+"/config/"+Ei.payload).pipe((0,C.U)(ji=>(this.store.dispatch((0,ui.qi)({payload:{action:"fetchConfig",status:S.Bn.COMPLETED}})),this.store.dispatch((0,ui.uO)({payload:S.m6.OPEN_CONFIG_FILE})),{type:S.pg.SHOW_CONFIG,payload:ji})),(0,L.K)(ji=>(this.handleErrorWithAlert("fetchConfig",S.m6.OPEN_CONFIG_FILE,"Fetch Config Failed!",D.NZ.CONF_API+"/config/"+Ei.payload,ji),(0,f.of)({type:S.pg.VOID})))))))),this.showLnConfig=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.SHOW_CONFIG),(0,C.U)(Ei=>Ei.payload)),{dispatch:!1}),this.isAuthorized=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.IS_AUTHORIZED),(0,h.z)(Ei=>(this.store.dispatch((0,ui.qi)({payload:{action:"IsAuthorized",status:S.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API,{authenticateWith:Ei.payload&&""!==Ei.payload.trim()?S.OJ.PASSWORD:S.OJ.JWT,authenticationValue:Ei.payload&&""!==Ei.payload.trim()?Ei.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,C.U)(ji=>(this.logger.info(ji),this.store.dispatch((0,ui.qi)({payload:{action:"IsAuthorized",status:S.Bn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:S.pg.IS_AUTHORIZED_RES,payload:ji})),(0,L.K)(ji=>(this.handleErrorWithAlert("IsAuthorized",S.m6.NO_SPINNER,"Authorization Failed",D.NZ.AUTHENTICATE_API,ji),(0,f.of)({type:S.pg.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.IS_AUTHORIZED_RES),(0,C.U)(Ei=>Ei.payload)),{dispatch:!1}),this.authLogin=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.LOGIN),(0,R.M)(this.store.select(Bt.Yj)),(0,h.z)(([Ei,ji])=>(this.store.dispatch((0,se.Ll)({payload:null})),this.store.dispatch((0,Je.xH)({payload:null})),this.store.dispatch((0,xt.Fd)({payload:null})),this.store.dispatch((0,ui.qi)({payload:{action:"Login",status:S.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API,{authenticateWith:Ei.payload.password?S.OJ.PASSWORD:S.OJ.JWT,authenticationValue:Ei.payload.password?Ei.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:Ei.payload.twoFAToken?Ei.payload.twoFAToken:""}).pipe((0,C.U)(Sn=>{this.logger.info(Sn),this.store.dispatch((0,ui.qi)({payload:{action:"Login",status:S.Bn.COMPLETED}})),this.setLoggedInDetails(Ei.payload.defaultPassword,Sn)}),(0,L.K)(Sn=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",S.m6.NO_SPINNER,Sn),+ji.sso.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:Sn.error&&Sn.error.error?Sn.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"]),(0,f.of)({type:S.pg.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.VERIFY_TWO_FA),(0,h.z)(Ei=>(this.store.dispatch((0,ui.ac)({payload:S.m6.VERIFY_TOKEN})),this.store.dispatch((0,ui.qi)({payload:{action:"VerifyToken",status:S.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API+"/token",{authentication2FA:Ei.payload.token}).pipe((0,C.U)(ji=>{this.logger.info(ji),this.store.dispatch((0,ui.uO)({payload:S.m6.VERIFY_TOKEN})),this.store.dispatch((0,ui.qi)({payload:{action:"VerifyToken",status:S.Bn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,Ei.payload.authResponse)}),(0,L.K)(ji=>(this.handleErrorWithAlert("VerifyToken",S.m6.VERIFY_TOKEN,"Authorization Failed!",D.NZ.AUTHENTICATE_API+"/token",ji),(0,f.of)({type:S.pg.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.LOGOUT),(0,h.z)(Ei=>(this.store.dispatch((0,ui.ac)({payload:S.m6.LOG_OUT})),Ei.sso&&+Ei.sso.rtlSSO?window.location.href=Ei.sso.logoutRedirectLink:this.router.navigate(["./login"]),this.sessionService.clearAll(),this.store.dispatch((0,ui._V)({payload:{}})),this.store.dispatch((0,ui.uO)({payload:S.m6.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(D.NZ.AUTHENTICATE_API+"/logout").pipe((0,C.U)(ji=>{this.logger.info(ji),this.store.dispatch((0,ui.uO)({payload:S.m6.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.GW)(()=>this.actions.pipe((0,w.R)(this.unSubs[1]),(0,t.l4)(S.pg.RESET_PASSWORD),(0,h.z)(Ei=>(this.store.dispatch((0,ui.qi)({payload:{action:"ResetPassword",status:S.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API+"/reset",{currPassword:Ei.payload.currPassword,newPassword:Ei.payload.newPassword}).pipe((0,w.R)(this.unSubs[0]),(0,C.U)(ji=>(this.logger.info(ji),this.store.dispatch((0,ui.qi)({payload:{action:"ResetPassword",status:S.Bn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,ui.jW)({payload:"Password Reset Successful!"})),this.SetToken(ji.token),{type:S.pg.RESET_PASSWORD_RES,payload:ji.token})),(0,L.K)(ji=>(this.handleErrorWithAlert("ResetPassword",S.m6.NO_SPINNER,"Password Reset Failed!",D.NZ.AUTHENTICATE_API+"/reset",ji),(0,f.of)({type:S.pg.VOID})))))))),this.setSelectedNode=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.SET_SELECTED_NODE),(0,h.z)(Ei=>{var ji;return this.store.dispatch((0,ui.ac)({payload:Ei.payload.uiMessage})),this.store.dispatch((0,ui.qi)({payload:{action:"UpdateSelNode",status:S.Bn.INITIATED}})),this.httpClient.get(D.NZ.CONF_API+"/updateSelNode/"+(null===(ji=Ei.payload.currentLnNode)||void 0===ji?void 0:ji.index)+"/"+Ei.payload.prevLnNodeIndex).pipe((0,C.U)(Sn=>(this.logger.info(Sn),this.store.dispatch((0,ui.qi)({payload:{action:"UpdateSelNode",status:S.Bn.COMPLETED}})),this.store.dispatch((0,ui.uO)({payload:Ei.payload.uiMessage})),this.initializeNode(Ei.payload.currentLnNode,Ei.payload.isInitialSetup),{type:S.pg.VOID})),(0,L.K)(Sn=>(this.handleErrorWithAlert("UpdateSelNode",Ei.payload.uiMessage,"Update Selected Node Failed!",D.NZ.CONF_API+"/updateSelNode",Sn),(0,f.of)({type:S.pg.VOID}))))}))),this.fetchFile=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.FETCH_FILE),(0,h.z)(Ei=>{this.store.dispatch((0,ui.ac)({payload:S.m6.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,ui.qi)({payload:{action:"FetchFile",status:S.Bn.INITIATED}}));const ji="?channel="+Ei.payload.channelPoint+(Ei.payload.path?"&path="+Ei.payload.path:"");return this.httpClient.get(D.NZ.CONF_API+"/file"+ji).pipe((0,C.U)(Sn=>(this.store.dispatch((0,ui.qi)({payload:{action:"FetchFile",status:S.Bn.COMPLETED}})),this.store.dispatch((0,ui.uO)({payload:S.m6.DOWNLOAD_BACKUP_FILE})),{type:S.pg.SHOW_FILE,payload:Sn})),(0,L.K)(Sn=>(this.handleErrorWithAlert("fetchFile",S.m6.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",D.NZ.CONF_API+"/file"+ji,{status:this.commonService.extractErrorNumber(Sn),error:{error:this.commonService.extractErrorCode(Sn)}}),(0,f.of)({type:S.pg.VOID}))))}))),this.showFile=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(S.pg.SHOW_FILE),(0,C.U)(Ei=>Ei.payload)),{dispatch:!1})}initializeNode(st,Rt){this.logger.info("Initializing node from RTL Effects.");const Wt=Rt?"":"HOME",fi={userPersona:st.settings.userPersona,channelBackupPath:st.settings.channelBackupPath,unannouncedChannels:!!st.settings.unannouncedChannels,selCurrencyUnit:st.settings.currencyUnit,currencyUnits:S.uA,fiatConversion:st.settings.fiatConversion,lnImplementation:st.lnImplementation,swapServerUrl:st.settings.swapServerUrl,boltzServerUrl:st.settings.boltzServerUrl,enableOffers:st.settings.enableOffers,enablePeerswap:st.settings.enablePeerswap};if(st.settings.fiatConversion&&st.settings.currencyUnit&&(fi.currencyUnits=[...S.uA,st.settings.currencyUnit]),this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clUnlocked"),this.sessionService.removeItem("eclUnlocked"),this.store.dispatch((0,ui.vI)({payload:st})),this.store.dispatch((0,se.Ll)({payload:fi})),this.store.dispatch((0,Je.xH)({payload:fi})),this.store.dispatch((0,xt.Fd)({payload:fi})),this.sessionService.getItem("token")){const Li=st.lnImplementation?st.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Li);const Ni=D.NZ.production&&window.location.origin?window.location.origin+"/rtl/api":D.T5;switch(this.wsService.connectWebSocket((null==Ni?void 0:Ni.replace(/^http/,"ws"))+D.NZ.Web_SOCKET_API,st.index?st.index.toString():"-1"),Li){case"CLN":this.store.dispatch((0,Je.CN)({payload:{loadPage:Wt}}));break;case"ECL":this.store.dispatch((0,xt.iz)({payload:{loadPage:Wt}}));break;default:this.store.dispatch((0,se.sQ)({payload:{loadPage:Wt}}))}}}SetToken(st){st?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",st)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(st,Rt){this.logger.info("Successfully Authorized!"),this.SetToken(Rt.token),this.sessionService.setItem("defaultPassword",st),st?(this.store.dispatch((0,ui.jW)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,ui.ey)())}handleErrorWithoutAlert(st,Rt,Wt){this.logger.error("ERROR IN: "+st+"\n"+JSON.stringify(Wt)),401===Wt.status&&"Login"!==st?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,ui.ts)()),this.store.dispatch((0,ui.kS)()),this.store.dispatch((0,ui.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,ui.uO)({payload:Rt})),this.store.dispatch((0,ui.qi)({payload:{action:st,status:S.Bn.ERROR,statusCode:Wt.status?Wt.status.toString():"",message:this.commonService.extractErrorMessage(Wt)}})))}handleErrorWithAlert(st,Rt,Wt,fi,Li){if(this.logger.error(Li),0===Li.status&&Li.statusText&&"Unknown Error"===Li.statusText&&(Li={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===Li.status&&"Login"!==st)this.logger.info("Redirecting to Login"),this.store.dispatch((0,ui.ts)()),this.store.dispatch((0,ui.kS)()),this.store.dispatch((0,ui.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,ui.uO)({payload:Rt}));const Ni=this.commonService.extractErrorMessage(Li);this.store.dispatch((0,ui.qR)({payload:{data:{type:"ERROR",alertTitle:Wt,message:{code:Li.status?Li.status:"Unknown Error",message:Ni,URL:fi},component:Vi.H}}})),this.store.dispatch((0,ui.qi)({payload:{action:st,status:S.Bn.ERROR,statusCode:Li.status?Li.status.toString():"",message:Ni,URL:fi}}))}}ngOnDestroy(){this.unSubs.forEach(st=>{st.next(null),st.complete()})}}return ti.\u0275fac=function(st){return new(st||ti)(E.LFG(t.eX),E.LFG(xi.eN),E.LFG(Ot.yh),E.LFG(ae.mQ),E.LFG(Ti.d),E.LFG($i.m),E.LFG(ue.v),E.LFG(Wi.D),E.LFG(k.uw),E.LFG(ee.ux),E.LFG(on.F0))},ti.\u0275prov=E.Yz7({token:ti,factory:ti.\u0275fac}),ti})()},8377:(Be,K,p)=>{"use strict";p.d(K,{R4:()=>C,Sr:()=>R,Yj:()=>a,dT:()=>M,gW:()=>h,ul:()=>d});var t=p(5620);const e=(0,t.ZF)("root"),M=((0,t.P1)(e,L=>L.apiURL),(0,t.P1)(e,L=>L.selNode)),a=(0,t.P1)(e,L=>L.appConfig),C=(0,t.P1)(e,L=>L.nodeData),d=(0,t.P1)(e,L=>L.apisCallStatus.Login),R=(0,t.P1)(e,L=>L.apisCallStatus.IsAuthorized),h=(0,t.P1)(e,L=>({nodeDate:L.nodeData,selNode:L.selNode}))},2340:(Be,K,p)=>{"use strict";p.d(K,{NZ:()=>e,T5:()=>t,q4:()=>f});const t="./api",e={production:!0,isDebugMode:!1,AUTHENTICATE_API:t+"/authenticate",CONF_API:t+"/conf",PAGE_SETTINGS_API:t+"/pagesettings",BALANCE_API:"/balance",FEES_API:"/fees",PEERS_API:"/peers",CHANNELS_API:"/channels",CHANNELS_BACKUP_API:"/channels/backup",GETINFO_API:"/getinfo",WALLET_API:"/wallet",NETWORK_API:"/network",NEW_ADDRESS_API:"/newaddress",TRANSACTIONS_API:"/transactions",PAYMENTS_API:"/payments",INVOICES_API:"/invoices",SWITCH_API:"/switch",ON_CHAIN_API:"/onchain",MESSAGE_API:"/message",OFFERS_API:"/offers",UTILITY_API:"/utility",LOOP_API:"/loop",BOLTZ_API:"/boltz",Web_SOCKET_API:"/ws"},f="0.13.2-beta"},7999:(Be,K,p)=>{"use strict";var t=p(2313),e=p(5e3),f=p(6360),M=p(8138),a=p(5113),C=p(5620),d=p(6642),R=p(9565),h=p(7579),L=p(6451),w=p(4968),D=p(457),S=p(4986),k=p(2805);function E(U=0,Le=S.z){return U<0&&(U=0),(0,k.H)(U,U,Le)}var B=p(9646),Z=p(727),Y=p(4482),ae=p(5403),ee=p(8737),ue=p(3269),ie=p(9672),ge=p(9300),q=p(8505),_e=p(3900),x=p(2722),i=p(8746),r=p(1884),u=p(4004);class c{}let v=(()=>{class U{constructor(P,ne){this._ngZone=ne,this.timerStart$=new h.x,this.idleDetected$=new h.x,this.timeout$=new h.x,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,P&&this.setConfig(P)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,L.T)((0,w.R)(window,"mousemove"),(0,w.R)(window,"resize"),(0,w.R)(document,"keydown"))),this.idle$=(0,D.D)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function re(U,...Le){var P,ne;const Ye=null!==(P=(0,ue.yG)(Le))&&void 0!==P?P:S.z,Ht=null!==(ne=Le[0])&&void 0!==ne?ne:null,Mi=Le[1]||1/0;return(0,Y.e)((Ki,mn)=>{let Fn=[],cs=!1;const Ds=Jn=>{const{buffer:vr,subs:Rn}=Jn;Rn.unsubscribe(),(0,ee.P)(Fn,Jn),mn.next(vr),cs&&ys()},ys=()=>{if(Fn){const Jn=new Z.w0;mn.add(Jn);const Rn={buffer:[],subs:Jn};Fn.push(Rn),(0,ie.f)(Jn,Ye,()=>Ds(Rn),U)}};null!==Ht&&Ht>=0?(0,ie.f)(mn,Ye,ys,Ht,!0):cs=!0,ys();const bs=(0,ae.x)(mn,Jn=>{const vr=Fn.slice();for(const Rn of vr){const{buffer:hr}=Rn;hr.push(Jn),Mi<=hr.length&&Ds(Rn)}},()=>{for(;null==Fn?void 0:Fn.length;)mn.next(Fn.shift().buffer);null==bs||bs.unsubscribe(),mn.complete(),mn.unsubscribe()},void 0,()=>Fn=null);Ki.subscribe(bs)})}(this.idleSensitivityMillisec),(0,ge.h)(P=>!P.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,q.b)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,_e.w)(()=>this._ngZone.runOutsideAngular(()=>E(1e3).pipe((0,x.R)((0,L.T)(this.activityEvents$,(0,k.H)(this.idleMillisec).pipe((0,q.b)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,i.x)(()=>{this.isIdleDetected=!1,this.idleDetected$.next(!1)}))))).subscribe(),this.setupTimer(this.timeout),this.setupPing(this.pingMillisec)}stopWatching(){this.stopTimer(),this.idleSubscription&&this.idleSubscription.unsubscribe()}stopTimer(){this.isInactivityTimer=!1,this.timerStart$.next(!1)}resetTimer(){this.stopTimer(),this.isTimeout=!1}onTimerStart(){return this.timerStart$.pipe((0,r.x)(),(0,_e.w)(P=>P?this.timer$:(0,B.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,ge.h)(P=>!!P),(0,q.b)(()=>this.isTimeout=!0),(0,u.U)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(P){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(P):console.error("Call stopWatching() before set config values")}setConfig(P){P.idle&&(this.idleMillisec=1e3*P.idle),P.ping&&(this.pingMillisec=1e3*P.ping),P.idleSensitivity&&(this.idleSensitivityMillisec=1e3*P.idleSensitivity),P.timeout&&(this.timeout=P.timeout)}setCustomActivityEvents(P){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=P:console.error("Call stopWatching() before set custom activity events")}setupTimer(P){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,B.of)(()=>new Date).pipe((0,u.U)(ne=>ne()),(0,_e.w)(ne=>E(1e3).pipe((0,u.U)(()=>Math.round(((new Date).valueOf()-ne.valueOf())/1e3)),(0,q.b)(Ye=>{Ye>=P&&this.timeout$.next(!0)}))))})}setupPing(P){this.ping$=E(P).pipe((0,ge.h)(()=>!this.isTimeout))}}return U.\u0275fac=function(P){return new(P||U)(e.LFG(c,8),e.LFG(e.R0b))},U.\u0275prov=e.Yz7({token:U,factory:U.\u0275fac,providedIn:"root"}),U})(),T=(()=>{class U{static forRoot(P){return{ngModule:U,providers:[{provide:c,useValue:P}]}}}return U.\u0275fac=function(P){return new(P||U)},U.\u0275mod=e.oAB({type:U}),U.\u0275inj=e.cJS({imports:[[]]}),U})();var I=p(1402),y=p(2687),n=p(8377),_=p(7093),V=p(9546),N=p(9224),H=p(3251),X=p(9808);const he=function(){return{initial:!1}};function be(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",10),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[1].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[1].link),e.Q6J("active",P.activeLink===P.links[1].link)("state",e.DdM(4,he)),e.xp6(1),e.Oqu(P.links[1].name)}}function Pe(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[2].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[2].link),e.Q6J("active",P.activeLink===P.links[2].link),e.xp6(1),e.Oqu(P.links[2].name)}}let Ee=(()=>{class U{constructor(P,ne){this.store=P,this.router=ne,this.faUserCog=y.gNZ,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){const P=this.links.find(ne=>this.router.url.includes(ne.link));this.activeLink=P?P.link:this.links[0].link,this.router.events.pipe((0,x.R)(this.unSubs[0]),(0,ge.h)(ne=>ne instanceof I.Av)).subscribe({next:ne=>{const Ye=this.links.find(Ht=>ne.urlAfterRedirects.includes(Ht.link));this.activeLink=Ye?Ye.link:this.links[0].link}}),this.store.select(n.Yj).pipe((0,x.R)(this.unSubs[1])).subscribe(ne=>{this.appConfig=ne}),this.store.select(n.dT).pipe((0,x.R)(this.unSubs[2])).subscribe(ne=>{this.showBitcoind=!1,this.selNode=ne,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(C.yh),e.Y36(I.F0))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-settings"]],decls:14,vars:6,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Settings"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),e.NdJ("click",function(){return ne.activeLink=ne.links[0].link}),e._uU(9),e.qZA(),e.YNc(10,be,2,5,"div",7),e.YNc(11,Pe,2,3,"div",8),e.qZA(),e.TgZ(12,"div",9),e._UZ(13,"router-outlet"),e.qZA()()()()),2&P&&(e.xp6(1),e.Q6J("icon",ne.faUserCog),e.xp6(7),e.s9C("routerLink",ne.links[0].link),e.Q6J("active",ne.activeLink===ne.links[0].link),e.xp6(1),e.Oqu(ne.links[0].name),e.xp6(1),e.Q6J("ngIf",!+ne.appConfig.sso.rtlSSO),e.xp6(1),e.Q6J("ngIf",ne.showBitcoind))},directives:[_.xw,_.Wh,V.BN,N.a8,N.dn,H.BU,H.Nj,I.rH,X.O5,_.yH,I.lC],styles:[""]}),U})();var j=p(7731),Ve=p(7861),Me=p(5043),J=p(8129),Ie=p(3075),ut=p(7322),Oe=p(4107),we=p(3390),ce=p(508),Te=p(7423);function xe(U,Le){if(1&U&&(e.TgZ(0,"mat-option",16),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.Q6J("value",P.index),e.xp6(1),e.AsE(" ",P.lnNode," (",P.lnImplementation,") ")}}function W(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"form",2,3)(2,"div",4),e._UZ(3,"fa-icon",5),e.TgZ(4,"span",6),e._uU(5,"Default Node"),e.qZA()(),e.TgZ(6,"div",7)(7,"div",8),e._UZ(8,"fa-icon",9),e.TgZ(9,"span"),e._uU(10,"The setting will apply after RTL server restarts."),e.qZA()(),e.TgZ(11,"div",10)(12,"mat-form-field",10)(13,"mat-select",11),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw().appConfig.defaultNodeIndex=Ye}),e.YNc(14,xe,2,3,"mat-option",12),e.qZA()()(),e.TgZ(15,"div",13)(16,"div",10)(17,"button",14),e.NdJ("click",function(){return e.CHM(P),e.oxw().onResetSettings()}),e._uU(18,"Reset"),e.qZA(),e.TgZ(19,"button",15),e.NdJ("click",function(){return e.CHM(P),e.oxw().onUpdateSettings()}),e._uU(20,"Update"),e.qZA()()()()()}if(2&U){const P=e.oxw();e.xp6(3),e.Q6J("icon",P.faWindowRestore),e.xp6(5),e.Q6J("icon",P.faInfoCircle),e.xp6(5),e.Q6J("ngModel",P.appConfig.defaultNodeIndex),e.xp6(1),e.Q6J("ngForOf",P.appConfig.nodes)}}let te=(()=>{class U{constructor(P,ne){this.logger=P,this.store=ne,this.faInfoCircle=y.sqG,this.faWindowRestore=y.wyP,this.faPlus=y.r8p,this.previousDefaultNode=0,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.select(n.Yj).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{this.appConfig=P,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(P)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateSettings(){this.store.dispatch((0,Ve.zQ)({payload:{uiMessage:j.m6.UPDATE_DEFAULT_NODE_SETTING,defaultNodeIndex:this.appConfig.defaultNodeIndex?this.appConfig.defaultNodeIndex:this.appConfig&&this.appConfig.nodes&&this.appConfig.nodes.length&&this.appConfig.nodes.length>0&&this.appConfig.nodes[0].index?+this.appConfig.nodes[0].index:-1}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(C.yh))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-app-settings"]],decls:2,vars:1,consts:[["fxLayout","column","fxFlex","100",1,"padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","settings-container page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"my-2"],["fxLayout","row","fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row","fxLayoutAlign","start start"],["autoFocus","","tabindex","1","name","defaultNode",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],[3,"value"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e.YNc(1,W,21,4,"form",1),e.qZA()),2&P&&(e.xp6(1),e.Q6J("ngIf",ne.appConfig.nodes&&ne.appConfig.nodes.length&&ne.appConfig.nodes.length>0))},directives:[_.xw,_.yH,J.$V,X.O5,Ie._Y,Ie.JL,Ie.F,_.Wh,V.BN,ut.KE,Oe.gD,we.h,Ie.JJ,Ie.On,X.sg,ce.ey,Te.lW],styles:[""]}),U})();var Ce=p(8012),fe=p(5698),Q=p(8966),ft=p(5768),tt=p(3093),Dt=p(7261),di=p(5615),Yt=p(7531),Zt=p(159),ui=p(6895);const Ot=["stepper"];function Nt(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw();e.Oqu(P.passwordFormLabel)}}function gt(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function it(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw(2);e.Oqu(P.secretFormLabel)}}function bt(U,Le){if(1&U&&e._UZ(0,"qr-code",32),2&U){const P=e.oxw(2);e.Q6J("value",P.otpauth)("size",180)("errorCorrectionLevel","L")}}function ei(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Secret Code is required."),e.qZA())}function Qt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-step",10)(1,"form",21),e.YNc(2,it,1,1,"ng-template",22),e.TgZ(3,"div",23),e.YNc(4,bt,1,3,"qr-code",24),e.qZA(),e.TgZ(5,"div",25),e._UZ(6,"fa-icon",26),e.TgZ(7,"span"),e._uU(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),e.qZA()(),e.TgZ(9,"div",27)(10,"mat-form-field",1),e._UZ(11,"input",28),e.TgZ(12,"fa-icon",29),e.NdJ("copied",function(Ye){return e.CHM(P),e.oxw().onCopySecret(Ye)}),e.qZA(),e.YNc(13,ei,2,0,"mat-error",14),e.qZA()(),e.TgZ(14,"div",30)(15,"button",31),e._uU(16,"Next"),e.qZA()()()()}if(2&U){const P=e.oxw();e.Q6J("stepControl",P.secretFormGroup)("editable",P.flgEditable),e.xp6(1),e.Q6J("formGroup",P.secretFormGroup),e.xp6(3),e.Q6J("ngIf",P.otpauth),e.xp6(2),e.Q6J("icon",P.faInfoCircle),e.xp6(6),e.Q6J("icon",P.faCopy)("payload",null==P.secretFormGroup||null==P.secretFormGroup.controls||null==P.secretFormGroup.controls.secret?null:P.secretFormGroup.controls.secret.value),e.xp6(1),e.Q6J("ngIf",null==P.secretFormGroup||null==P.secretFormGroup.controls||null==P.secretFormGroup.controls.secret||null==P.secretFormGroup.controls.secret.errors?null:P.secretFormGroup.controls.secret.errors.required)}}function Re(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw(2);e.Oqu(P.tokenFormLabel)}}function ke(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Token is required."),e.qZA())}function de(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Token is invalid."),e.qZA())}function ye(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",7)(1,"div",27)(2,"mat-form-field",1),e._UZ(3,"input",36),e.YNc(4,ke,2,0,"mat-error",14),e.YNc(5,de,2,0,"mat-error",14),e.qZA()(),e.TgZ(6,"div",30)(7,"button",37),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onVerifyToken()}),e._uU(8),e.qZA()()()}if(2&U){const P=e.oxw(2);e.xp6(4),e.Q6J("ngIf",null==P.tokenFormGroup||null==P.tokenFormGroup.controls||null==P.tokenFormGroup.controls.token||null==P.tokenFormGroup.controls.token.errors?null:P.tokenFormGroup.controls.token.errors.required),e.xp6(1),e.Q6J("ngIf",null==P.tokenFormGroup||null==P.tokenFormGroup.controls||null==P.tokenFormGroup.controls.token||null==P.tokenFormGroup.controls.token.errors?null:P.tokenFormGroup.controls.token.errors.notValid),e.xp6(3),e.Oqu(null!=P.tokenFormGroup&&null!=P.tokenFormGroup.controls&&null!=P.tokenFormGroup.controls.token&&null!=P.tokenFormGroup.controls.token.errors&&P.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function ht(U,Le){1&U&&(e.TgZ(0,"div")(1,"strong"),e._uU(2,"Success! You are all set."),e.qZA()())}function mt(U,Le){if(1&U&&(e.TgZ(0,"mat-step",33)(1,"form",34),e.YNc(2,Re,1,1,"ng-template",12),e.YNc(3,ye,9,3,"div",35),e.YNc(4,ht,3,0,"div",14),e.qZA()()),2&U){const P=e.oxw();e.Q6J("stepControl",P.tokenFormGroup),e.xp6(1),e.Q6J("formGroup",P.tokenFormGroup),e.xp6(2),e.Q6J("ngIf",!P.flgValidated||!P.isTokenValid),e.xp6(1),e.Q6J("ngIf",P.flgValidated&&P.isTokenValid)}}function Ft(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw(2);e.Oqu(P.disableFormLabel)}}function nt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",7)(1,"div",38),e._UZ(2,"fa-icon",26),e.TgZ(3,"span"),e._uU(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),e.qZA()(),e.TgZ(5,"div",30)(6,"button",37),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onVerifyToken()}),e._uU(7,"Disable"),e.qZA()()()}if(2&U){const P=e.oxw(2);e.xp6(2),e.Q6J("icon",P.faExclamationTriangle)}}function He(U,Le){1&U&&(e.TgZ(0,"div")(1,"strong"),e._uU(2,"Two factor authentication removed from RTL."),e.qZA()())}function rt(U,Le){if(1&U&&(e.TgZ(0,"mat-step",33)(1,"form",34),e.YNc(2,Ft,1,1,"ng-template",12),e.YNc(3,nt,8,1,"div",35),e.YNc(4,He,3,0,"div",14),e.qZA()()),2&U){const P=e.oxw();e.Q6J("stepControl",P.disableFormGroup),e.xp6(1),e.Q6J("formGroup",P.disableFormGroup),e.xp6(2),e.Q6J("ngIf",!P.flgValidated||!P.isTokenValid),e.xp6(1),e.Q6J("ngIf",P.flgValidated&&P.isTokenValid)}}let et=(()=>{class U{constructor(P,ne,Ye,Ht,Mi,Ki){this.dialogRef=P,this.data=ne,this.store=Ye,this.formBuilder=Ht,this.rtlEffects=Mi,this.snackBar=Ki,this.faExclamationTriangle=y.eHv,this.faCopy=y.kZ_,this.faInfoCircle=y.sqG,this.flgValidated=!1,this.isTokenValid=!0,this.otpauth="",this.appConfig=null,this.flgEditable=!0,this.showDisableStepper=!1,this.passwordFormLabel="Authenticate with your RTL password",this.secretFormLabel="Scan or copy the secret",this.tokenFormLabel="Verify your authentication is working",this.disableFormLabel="Disable two factor authentication",this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[Ie.kI.required]],password:["",[Ie.kI.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},Ie.kI.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",Ie.kI.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new h.x,new h.x]}ngOnInit(){var P,ne;this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!(null===(P=this.appConfig)||void 0===P?void 0:P.enable2FA),this.secretFormGroup=this.formBuilder.group({secret:[{value:(null===(ne=this.appConfig)||void 0===ne?void 0:ne.enable2FA)?"":this.generateSecret(),disabled:!0},Ie.kI.required]})}generateSecret(){const P=ft.authenticator.generateSecret();return this.otpauth=ft.authenticator.keyuri("","Ride The Lightning (RTL)",P),P}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Ve.QO)({payload:Ce(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,fe.q)(1)).subscribe(P=>{"ERROR"!==P?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onCopySecret(P){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){var P,ne;if(null===(P=this.appConfig)||void 0===P?void 0:P.enable2FA)this.store.dispatch((0,Ve.Uy)({payload:{secret2fa:""}})),this.generateSecret(),this.isTokenValid=!0;else{if(!this.tokenFormGroup.controls.token.value)return!0;if(this.isTokenValid=ft.authenticator.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value),!this.isTokenValid)return this.tokenFormGroup.controls.token.setErrors({notValid:!0}),!0;this.store.dispatch((0,Ve.Uy)({payload:{secret2fa:this.secretFormGroup.controls.secret.value}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0,this.appConfig&&(this.appConfig.enable2FA=!(null===(ne=this.appConfig)||void 0===ne?void 0:ne.enable2FA))}stepSelectionChanged(P){switch(P.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}P.selectedIndex{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(C.yh),e.Y36(Ie.qu),e.Y36(tt.V),e.Y36(Dt.ux))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-two-factor-auth"]],viewQuery:function(P,ne){if(1&P&&e.Gf(Ot,5),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.stepper=Ye.first)}},decls:28,vars:11,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","15","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Password","type","password","tabindex","1","formControlName","password","required",""],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["fxFlex","100",1,"w-100","alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["autoFocus","","matInput","","placeholder","Secret Code","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"icon","payload","copied"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","6","type","button","matStepperNext",""],[3,"value","size","errorCorrectionLevel"],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column",4,"ngIf"],["autoFocus","","matInput","","placeholder","Token","type","text","tabindex","7","formControlName","token","required",""],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxFlex","100",1,"w-100","alert","alert-warn"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Setup Two Factor Authentication"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),e.NdJ("selectionChange",function(Ht){return ne.stepSelectionChanged(Ht)}),e.TgZ(12,"mat-step",10)(13,"form",11),e.YNc(14,Nt,1,1,"ng-template",12),e.TgZ(15,"div",0)(16,"mat-form-field",1),e._UZ(17,"input",13),e.YNc(18,gt,2,0,"mat-error",14),e.qZA()(),e.TgZ(19,"div",15)(20,"button",16),e.NdJ("click",function(){return ne.onAuthenticate()}),e._uU(21,"Confirm"),e.qZA()()()(),e.YNc(22,Qt,17,8,"mat-step",17),e.YNc(23,mt,5,4,"mat-step",18),e.YNc(24,rt,5,4,"mat-step",18),e.qZA(),e.TgZ(25,"div",19)(26,"button",20),e._uU(27),e.qZA()()()()()()),2&P&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(4),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",ne.passwordFormGroup)("editable",ne.flgEditable),e.xp6(1),e.Q6J("formGroup",ne.passwordFormGroup),e.xp6(5),e.Q6J("ngIf",null==ne.passwordFormGroup||null==ne.passwordFormGroup.controls||null==ne.passwordFormGroup.controls.password||null==ne.passwordFormGroup.controls.password.errors?null:ne.passwordFormGroup.controls.password.errors.required),e.xp6(4),e.Q6J("ngIf",!ne.showDisableStepper),e.xp6(1),e.Q6J("ngIf",!ne.showDisableStepper),e.xp6(1),e.Q6J("ngIf",ne.showDisableStepper),e.xp6(2),e.Q6J("mat-dialog-close",!1),e.xp6(1),e.Oqu(ne.flgValidated&&ne.isTokenValid?"Close":"Cancel"))},directives:[_.xw,_.yH,N.dk,_.Wh,Te.lW,Q.ZT,N.dn,di.Vq,di.C0,Ie._Y,Ie.JL,Ie.sg,di.VY,ut.KE,Yt.Nt,Ie.Fj,we.h,Ie.JJ,Ie.u,Ie.Q7,X.O5,ut.TO,Zt.uU,V.BN,ut.R9,ui.y,di.Ic],styles:[""]}),U})();var Ae=p(5986),Ge=p(4834);const ot=["authForm"];function lt(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Current password is required."),e.qZA())}function Ct(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.Oqu(P.errorMsg)}}function mi(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.Oqu(P.errorConfirmMsg)}}function Jt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"form",10,11)(2,"div",12),e._UZ(3,"fa-icon",4),e.TgZ(4,"span",5),e._uU(5,"Password"),e.qZA()(),e.TgZ(6,"mat-form-field")(7,"input",13),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw().currPassword=Ye}),e.qZA(),e.YNc(8,lt,2,0,"mat-error",14),e.qZA(),e.TgZ(9,"mat-form-field")(10,"input",15),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw().newPassword=Ye}),e.qZA(),e.YNc(11,Ct,2,1,"mat-error",14),e.qZA(),e.TgZ(12,"mat-form-field")(13,"input",16),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw().confirmPassword=Ye}),e.qZA(),e.YNc(14,mi,2,1,"mat-error",14),e.qZA(),e.TgZ(15,"div",17)(16,"button",18),e.NdJ("click",function(){return e.CHM(P),e.oxw().onResetPassword()}),e._uU(17,"Reset"),e.qZA(),e.TgZ(18,"button",19),e.NdJ("click",function(){return e.CHM(P),e.oxw().onChangePassword()}),e._uU(19,"Change Password"),e.qZA()(),e.TgZ(20,"div",20),e._UZ(21,"mat-divider",21),e.qZA()()}if(2&U){const P=e.oxw();e.xp6(3),e.Q6J("icon",P.faLock),e.xp6(4),e.Q6J("ngModel",P.currPassword),e.xp6(1),e.Q6J("ngIf",!P.currPassword),e.xp6(2),e.Q6J("ngModel",P.newPassword),e.xp6(1),e.Q6J("ngIf",P.matchOldAndNewPasswords()),e.xp6(2),e.Q6J("ngModel",P.confirmPassword),e.xp6(1),e.Q6J("ngIf",P.matchNewPasswords()),e.xp6(7),e.Q6J("inset",!0)}}let $t=(()=>{class U{constructor(P,ne,Ye,Ht,Mi){this.logger=P,this.store=ne,this.actions=Ye,this.router=Ht,this.sessionService=Mi,this.faInfoCircle=y.sqG,this.faUserLock=y.FJU,this.faUserClock=y.hnx,this.faLock=y.byT,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(n.Yj).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{this.appConfig=P,this.logger.info(this.appConfig)}),this.store.select(n.dT).pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{this.selNode=P}),this.actions.pipe((0,x.R)(this.unSubs[2]),(0,ge.h)(P=>P.type===j.pg.RESET_PASSWORD_RES)).subscribe(P=>{var ne;if(j.kO.includes(this.currPassword.toLowerCase()))switch(null===(ne=this.selNode.lnImplementation)||void 0===ne?void 0:ne.toUpperCase()){case"CLN":this.router.navigate(["/cln/home"]);break;case"ECL":this.router.navigate(["/ecl/home"]);break;default:this.router.navigate(["/lnd/home"])}this.form&&this.form.resetForm()})}onChangePassword(){if(!this.currPassword||!this.newPassword||!this.confirmPassword||this.currPassword===this.newPassword||this.newPassword!==this.confirmPassword||j.kO.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Ve.c0)({payload:{currPassword:Ce(this.currPassword).toString(),newPassword:Ce(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let P=!1;return this.form&&this.form.controls&&this.form.controls.newpassword&&(this.newPassword?""!==this.currPassword&&""!==this.newPassword&&this.currPassword===this.newPassword?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="Old and New password cannot be same.",P=!0):j.kO.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=null==j.kO?void 0:j.kO.reduce((ne,Ye,Ht)=>Ht{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(C.yh),e.Y36(d.eX),e.Y36(I.F0),e.Y36(Ae.m))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-auth-settings"]],viewQuery:function(P,ne){if(1&P&&e.Gf(ot,5),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.form=Ye.first)}},decls:14,vars:4,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],[1,"mb-1","settings-container","page-sub-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],[1,"mt-1"],["mat-flat-button","","color","primary","tabindex","6",1,"mb-2",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["authForm","ngForm"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","placeholder","Current Password","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["matInput","","placeholder","New Password","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModel","ngModelChange"],["matInput","","placeholder","Confirm New Password","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","5","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end stretch",1,"my-2"],[3,"inset"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e.YNc(1,Jt,22,8,"form",1),e.TgZ(2,"div",2)(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6,"Two Factor Authentication"),e.qZA()(),e.TgZ(7,"div",6),e._UZ(8,"fa-icon",7),e.TgZ(9,"span"),e._uU(10,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),e.qZA()(),e.TgZ(11,"div",8)(12,"button",9),e.NdJ("click",function(){return ne.on2FAuth()}),e._uU(13),e.qZA()()()()),2&P&&(e.xp6(1),e.Q6J("ngIf",null==ne.appConfig?null:ne.appConfig.allowPasswordUpdate),e.xp6(3),e.Q6J("icon",ne.faUserClock),e.xp6(4),e.Q6J("icon",ne.faInfoCircle),e.xp6(5),e.Oqu(ne.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},directives:[_.xw,_.yH,_.Wh,X.O5,Ie._Y,Ie.JL,Ie.F,V.BN,ut.KE,Yt.Nt,Ie.Fj,we.h,Ie.Q7,Ie.JJ,Ie.On,ut.TO,Te.lW,Ge.d],styles:[""]}),U})();var Qi=p(4623);function hi(U,Le){1&U&&e._UZ(0,"mat-divider",7)}function si(U,Le){if(1&U&&(e.TgZ(0,"div",4)(1,"pre",5),e._uU(2),e.ALo(3,"json"),e.qZA(),e.YNc(4,hi,1,0,"mat-divider",6),e.qZA()),2&U){const P=e.oxw();e.xp6(2),e.Oqu(e.lcZ(3,2,P.configData)),e.xp6(2),e.Q6J("ngIf",""!==P.configData)}}function Ji(U,Le){if(1&U&&(e.TgZ(0,"h2"),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Oqu(P)}}function Zi(U,Le){if(1&U&&(e.TgZ(0,"h4",14),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Oqu(P)}}function Vi(U,Le){1&U&&e._UZ(0,"mat-divider",15),2&U&&e.Q6J("inset",!0)}function Ui(U,Le){if(1&U&&(e.TgZ(0,"mat-list-item")(1,"mat-card-subtitle",7),e.YNc(2,Ji,2,1,"h2",10),e.qZA(),e.TgZ(3,"mat-card-subtitle",11),e.YNc(4,Zi,2,1,"h4",12),e.qZA(),e.YNc(5,Vi,1,1,"mat-divider",13),e.qZA()),2&U){const P=Le.$implicit;e.xp6(2),e.Q6J("ngIf",P.indexOf("[")>=0),e.xp6(2),e.Q6J("ngIf",P.indexOf("[")<0),e.xp6(1),e.Q6J("ngIf",P.indexOf("[")<0)}}function Ue(U,Le){if(1&U&&(e.TgZ(0,"div",8)(1,"mat-list"),e.YNc(2,Ui,6,3,"mat-list-item",9),e.qZA()()),2&U){const P=e.oxw();e.xp6(2),e.Q6J("ngForOf",P.configData)}}let Tt=(()=>{class U{constructor(P,ne,Ye){this.store=P,this.rtlEffects=ne,this.router=Ye,this.configData="",this.fileFormat="INI",this.faCog=y.b7W,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.dispatch((0,Ve.Q2)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{const ne=P.data;this.fileFormat=P.format,this.configData=""===ne||!ne||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==ne&&ne&&"JSON"===this.fileFormat?ne:"":ne.split("\n")})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(C.yh),e.Y36(tt.V),e.Y36(I.F0))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-bitcoin-config"]],decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,si,5,4,"div",2),e.YNc(3,Ue,3,1,"div",3),e.qZA()()),2&P&&(e.xp6(2),e.Q6J("ngIf",""!==ne.configData&&"JSON"===ne.fileFormat),e.xp6(1),e.Q6J("ngIf",""!==ne.configData&&("INI"===ne.fileFormat||"HOCON"===ne.fileFormat)))},directives:[_.xw,_.yH,_.Wh,X.O5,Ge.d,Qi.i$,X.sg,Qi.Tg,N.$j],pipes:[X.Ts],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),U})();function ve(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}let Qe=(()=>{class U{constructor(P,ne,Ye){this.dialogRef=P,this.store=ne,this.rtlEffects=Ye,this.password="",this.isAuthenticated=!1,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,fe.q)(1)).subscribe(P=>{"ERROR"!==P?(this.isAuthenticated=!0,this.store.dispatch((0,Ve.M6)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Ve.QO)({payload:Ce(this.password)}))}onClose(){this.store.dispatch((0,Ve.M6)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Q.so),e.Y36(C.yh),e.Y36(tt.V))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-is-authorized"]],decls:16,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["autoFocus","","matInput","","placeholder","Password","type","password","id","password","name","password","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","2","type","submit","default","",3,"click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Authenticate with your RTL Password"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return ne.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"input",8),e.NdJ("ngModelChange",function(Ht){return ne.password=Ht}),e.qZA(),e.YNc(12,ve,2,0,"mat-error",9),e.qZA(),e.TgZ(13,"div",10)(14,"button",11),e.NdJ("click",function(){return ne.onAuthenticate()}),e._uU(15,"Confirm"),e.qZA()()()()()()),2&P&&(e.xp6(11),e.Q6J("ngModel",ne.password),e.xp6(1),e.Q6J("ngIf",!ne.password))},directives:[_.xw,_.Wh,_.yH,N.dk,Te.lW,N.dn,Ie._Y,Ie.JL,Ie.F,ut.KE,Yt.Nt,Ie.Fj,we.h,Ie.Q7,Ie.JJ,Ie.On,X.O5,ut.TO],styles:[""]}),U})();const _t=function(){return{initial:!1}};function se(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",11),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[2].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[2].link),e.Q6J("active",P.activeLink===P.links[2].link)("state",e.DdM(4,_t)),e.xp6(1),e.Oqu(P.links[2].name)}}function Je(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[3].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[3].link),e.Q6J("active",P.activeLink===P.links[3].link),e.xp6(1),e.Oqu(P.links[3].name)}}function xt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",12),e.NdJ("click",function(){return e.CHM(P),e.oxw().showLnConfigClicked()}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.Q6J("active",P.activeLink===P.links[4].link),e.xp6(1),e.Oqu(P.links[4].name)}}let Bt=(()=>{class U{constructor(P,ne,Ye,Ht){this.store=P,this.router=ne,this.rtlEffects=Ye,this.activatedRoute=Ht,this.faTools=y.CgH,this.showLnConfig=!1,this.lnImplementationStr="",this.links=[{link:"nodesettings",name:"Node Settings"},{link:"pglayout",name:"Page Layout"},{link:"services",name:"Services"},{link:"experimental",name:"Experimental"},{link:"lnconfig",name:this.lnImplementationStr}],this.activeLink="",this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){const P=this.links.find(ne=>this.router.url.includes(ne.link));this.activeLink=P?P.link:this.links[0].link,this.router.events.pipe((0,x.R)(this.unSubs[0]),(0,ge.h)(ne=>ne instanceof I.Av)).subscribe({next:ne=>{const Ye=this.links.find(Ht=>ne.urlAfterRedirects.includes(Ht.link));this.activeLink=Ye?Ye.link:this.links[0].link}}),this.store.select(n.dT).pipe((0,x.R)(this.unSubs[1])).subscribe(ne=>{var Ye;switch(this.showLnConfig=!1,this.selNode=ne,null===(Ye=this.selNode.lnImplementation)||void 0===Ye?void 0:Ye.toUpperCase()){case"CLN":this.lnImplementationStr="Core Lightning Config";break;case"ECL":this.lnImplementationStr="Eclair Config";break;default:this.lnImplementationStr="LND Config"}this.selNode.authentication&&this.selNode.authentication.configPath&&""!==this.selNode.authentication.configPath.trim()&&(this.links[4].name=this.lnImplementationStr,this.showLnConfig=!0)})}showLnConfigClicked(){this.store.dispatch((0,Ve.qR)({payload:{maxWidth:"50rem",data:{component:Qe}}})),this.rtlEffects.closeAlert.pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{P&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(C.yh),e.Y36(I.F0),e.Y36(tt.V),e.Y36(I.gz))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-node-config"]],decls:17,vars:10,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Node Config"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),e.NdJ("click",function(){return ne.activeLink=ne.links[0].link}),e._uU(9),e.qZA(),e.TgZ(10,"div",6),e.NdJ("click",function(){return ne.activeLink=ne.links[1].link}),e._uU(11),e.qZA(),e.YNc(12,se,2,5,"div",7),e.YNc(13,Je,2,3,"div",8),e.YNc(14,xt,2,2,"div",9),e.qZA(),e.TgZ(15,"div",10),e._UZ(16,"router-outlet"),e.qZA()()()()),2&P&&(e.xp6(1),e.Q6J("icon",ne.faTools),e.xp6(7),e.s9C("routerLink",ne.links[0].link),e.Q6J("active",ne.activeLink===ne.links[0].link),e.xp6(1),e.Oqu(ne.links[0].name),e.xp6(1),e.s9C("routerLink",ne.links[1].link),e.Q6J("active",ne.activeLink===ne.links[1].link),e.xp6(1),e.Oqu(ne.links[1].name),e.xp6(1),e.Q6J("ngIf","LND"===(null==ne.selNode||null==ne.selNode.lnImplementation?null:ne.selNode.lnImplementation.toUpperCase())),e.xp6(1),e.Q6J("ngIf","CLN"===(null==ne.selNode||null==ne.selNode.lnImplementation?null:ne.selNode.lnImplementation.toUpperCase())),e.xp6(1),e.Q6J("ngIf",ne.showLnConfig))},directives:[_.xw,_.Wh,V.BN,N.a8,N.dn,H.BU,H.Nj,I.rH,X.O5,_.yH,I.lC],styles:[""]}),U})();function xi(U,Le){1&U&&e._UZ(0,"mat-divider",7)}function Ti(U,Le){if(1&U&&(e.TgZ(0,"div",4)(1,"pre",5),e._uU(2),e.ALo(3,"json"),e.qZA(),e.YNc(4,xi,1,0,"mat-divider",6),e.qZA()),2&U){const P=e.oxw();e.xp6(2),e.Oqu(e.lcZ(3,2,P.configData)),e.xp6(2),e.Q6J("ngIf",""!==P.configData)}}function $i(U,Le){if(1&U&&(e.TgZ(0,"h2"),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Oqu(P)}}function Wi(U,Le){if(1&U&&(e.TgZ(0,"h4",14),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Oqu(P)}}function on(U,Le){1&U&&e._UZ(0,"mat-divider",15),2&U&&e.Q6J("inset",!0)}function fn(U,Le){if(1&U&&(e.TgZ(0,"mat-list-item")(1,"mat-card-subtitle",7),e.YNc(2,$i,2,1,"h2",10),e.qZA(),e.TgZ(3,"mat-card-subtitle",11),e.YNc(4,Wi,2,1,"h4",12),e.qZA(),e.YNc(5,on,1,1,"mat-divider",13),e.qZA()),2&U){const P=Le.$implicit;e.xp6(2),e.Q6J("ngIf",P.indexOf("[")>=0),e.xp6(2),e.Q6J("ngIf",P.indexOf("[")<0),e.xp6(1),e.Q6J("ngIf",P.indexOf("[")<0)}}function ti(U,Le){if(1&U&&(e.TgZ(0,"div",8)(1,"mat-list"),e.YNc(2,fn,6,3,"mat-list-item",9),e.qZA()()),2&U){const P=e.oxw();e.xp6(2),e.Q6J("ngForOf",P.configData)}}let Ri=(()=>{class U{constructor(P,ne,Ye){this.store=P,this.rtlEffects=ne,this.router=Ye,this.configData="",this.fileFormat="INI",this.faCog=y.b7W,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.dispatch((0,Ve.Q2)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{const ne=P.data;this.fileFormat=P.format,this.configData=""===ne||!ne||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==ne&&ne&&"JSON"===this.fileFormat?ne:"":ne.split("\n")})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(C.yh),e.Y36(tt.V),e.Y36(I.F0))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-lnp-config"]],decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,Ti,5,4,"div",2),e.YNc(3,ti,3,1,"div",3),e.qZA()()),2&P&&(e.xp6(2),e.Q6J("ngIf",""!==ne.configData&&"JSON"===ne.fileFormat),e.xp6(1),e.Q6J("ngIf",""!==ne.configData&&("INI"===ne.fileFormat||"HOCON"===ne.fileFormat)))},directives:[_.xw,_.yH,_.Wh,X.O5,Ge.d,Qi.i$,X.sg,Qi.Tg,N.$j],pipes:[X.Ts],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),U})();var st=p(2994),Rt=p(429),Wt=p(6523),fi=p(62),Li=p(1125),Ni=p(2368),pn=p(9814),Dn=p(3322);function Nn(U,Le){if(1&U&&(e.TgZ(0,"mat-option",35),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.Q6J("value",P.id),e.xp6(1),e.hij(" ",P.id," ")}}function tr(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Currency unit is required."),e.qZA())}function gn(U,Le){if(1&U&&(e.TgZ(0,"mat-radio-button",36),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("value",P)("checked",ne.selNode.settings.userPersona===P),e.xp6(1),e.hij(" ",e.lcZ(2,3,P)," ")}}const Ei=function(U){return{"mr-4":U}};function ji(U,Le){if(1&U&&(e.TgZ(0,"mat-radio-button",37),e._uU(1),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("value",P)("ngClass",e.VKq(3,Ei,ne.screenSize===ne.screenSizeEnum.XS||ne.screenSize===ne.screenSizeEnum.SM)),e.xp6(1),e.hij("",P.name," ")}}const Sn=function(U){return{skin:!0,"selected-color":U}};function Qn(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"span",38)(1,"div",39),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw().changeThemeColor(Ht.id)}),e.ALo(2,"lowercase"),e.qZA(),e._uU(3),e.qZA()}if(2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Tol(e.lcZ(2,4,P.id)),e.Q6J("ngClass",e.VKq(6,Sn,ne.selectedThemeColor===P.id)),e.xp6(2),e.hij(" ",P.name," ")}}let sr=(()=>{class U{constructor(P,ne,Ye){this.logger=P,this.commonService=ne,this.store=Ye,this.faExclamationTriangle=y.eHv,this.faMoneyBillAlt=y.co4,this.faPaintBrush=y.XsY,this.faInfoCircle=y.sqG,this.faEyeSlash=y.Aq,this.userPersonas=[j.ol.OPERATOR,j.ol.MERCHANT],this.currencyUnits=j.Er,this.themeModes=j.wZ.modes,this.themeColors=j.wZ.themes,this.selectedThemeMode=j.wZ.modes[0],this.selectedThemeColor=j.wZ.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=j.cu,this.unSubs=[new h.x,new h.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(n.dT).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{this.selNode=P,this.selectedThemeMode=this.themeModes.find(ne=>this.selNode.settings.themeMode===ne.id)||this.themeModes[0],this.selectedThemeColor=this.selNode.settings.themeColor,this.selNode.settings.fiatConversion||(this.selNode.settings.currencyUnit=""),this.previousSettings=JSON.parse(JSON.stringify(this.selNode.settings)),this.logger.info(P)})}onCurrencyChange(P){this.selNode.settings.currencyUnits=[...j.uA,P.value],this.store.dispatch((0,Wt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:P.value,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,Rt.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:P.value,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,st.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:P.value,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}}))}toggleSettings(P,ne){this.selNode.settings[P]=!this.selNode.settings[P]}changeThemeColor(P){this.selectedThemeColor=P,this.selNode.settings.themeColor=P}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onUpdateSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.logger.info(this.selNode.settings),this.store.dispatch((0,Ve.zQ)({payload:{uiMessage:j.m6.UPDATE_NODE_SETTINGS,settings:this.selNode.settings}})),this.store.dispatch((0,Wt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,Rt.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,st.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}}))}onResetSettings(){const P=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(ne=>ne.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Ve.fk)({payload:{uiMessage:j.m6.NO_SPINNER,prevLnNodeIndex:+P,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(fi.v),e.Y36(C.yh))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-node-settings"]],decls:77,vars:20,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["displayMode","flat","multi","false"],["fxLayout","column",1,"flat-expansion-panel","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row wrap","fxLayoutAlign","start center"],["tabindex","1","color","primary","name","unannouncedChannels",3,"ngModel","ngModelChange","change"],["fxFlex","100",1,"alert","alert-warn"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["tabindex","2","color","primary","name","fiatConversion",3,"ngModel","ngModelChange","change"],["autoFocus","","placeholder","Fiat Currency","tabindex","3","name","currencyUnit",3,"ngModel","disabled","required","ngModelChange","selectionChange"],["currencyUnit","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",3,"ngModel","ngModelChange"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1",3,"inset"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["fxFlex.gt-xs","20","fxFlex.gt-md","15","fxLayout","column","fxLayoutAlign","space-between stretch"],["color","primary","name","themeMode",3,"ngModel","ngModelChange","change"],["tabindex","5",3,"value","ngClass",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex.gt-xs","50","fxFlex.gt-md","40","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","row","class","theme-name",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],[1,"mr-4",3,"value","checked"],["tabindex","5",3,"value","ngClass"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"ngClass","click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-accordion",3)(4,"mat-expansion-panel",4)(5,"mat-expansion-panel-header")(6,"mat-panel-title"),e._UZ(7,"fa-icon",5),e.TgZ(8,"span",6),e._uU(9,"Open Unannounced Channels"),e.qZA()()(),e.TgZ(10,"div",7)(11,"div",8),e._UZ(12,"fa-icon",9),e.TgZ(13,"span"),e._uU(14,"Use this control to toggle setting which defaults to opening unannounced channels only."),e.qZA()(),e.TgZ(15,"div",10)(16,"mat-slide-toggle",11),e.NdJ("ngModelChange",function(Ht){return ne.selNode.settings.unannouncedChannels=Ht})("change",function(Ht){return ne.selNode.settings.unannouncedChannels=Ht.checked?ne.selNode.settings.unannouncedChannels:null}),e._uU(17,"Open Unannounced Channels"),e.qZA()()()(),e.TgZ(18,"mat-expansion-panel",4)(19,"mat-expansion-panel-header")(20,"mat-panel-title"),e._UZ(21,"fa-icon",5),e.TgZ(22,"span",6),e._uU(23,"Balance Display"),e.qZA()()(),e.TgZ(24,"div",7)(25,"div",12),e._UZ(26,"fa-icon",9),e.TgZ(27,"span"),e._uU(28,"Fiat conversion calls "),e.TgZ(29,"strong")(30,"a",13),e._uU(31,"Blockchain.com"),e.qZA()(),e._uU(32," API to get conversion rates."),e.qZA()(),e.TgZ(33,"div",10)(34,"mat-slide-toggle",14),e.NdJ("ngModelChange",function(Ht){return ne.selNode.settings.fiatConversion=Ht})("change",function(Ht){return ne.selNode.settings.currencyUnit=Ht.checked?ne.selNode.settings.currencyUnit:null}),e._uU(35,"Enable Fiat Conversion"),e.qZA(),e.TgZ(36,"mat-form-field")(37,"mat-select",15,16),e.NdJ("ngModelChange",function(Ht){return ne.selNode.settings.currencyUnit=Ht})("selectionChange",function(Ht){return ne.onCurrencyChange(Ht)}),e.YNc(39,Nn,2,2,"mat-option",17),e.qZA(),e.YNc(40,tr,2,0,"mat-error",18),e.qZA()()()(),e.TgZ(41,"mat-expansion-panel",4)(42,"mat-expansion-panel-header")(43,"mat-panel-title"),e._UZ(44,"fa-icon",5),e.TgZ(45,"span",6),e._uU(46,"Customization"),e.qZA()()(),e.TgZ(47,"div",7)(48,"div",19)(49,"div",20),e._UZ(50,"fa-icon",9),e.TgZ(51,"span"),e._uU(52,"Dashboard layout will be tailored based on the role selected to better serve its needs."),e.qZA()(),e.TgZ(53,"div",21)(54,"h4"),e._uU(55,"Dashboard Layout"),e.qZA(),e.TgZ(56,"mat-radio-group",22),e.NdJ("ngModelChange",function(Ht){return ne.selNode.settings.userPersona=Ht}),e.YNc(57,gn,3,5,"mat-radio-button",23),e.qZA()()(),e._UZ(58,"mat-divider",24),e.TgZ(59,"div",25)(60,"div",26)(61,"h4"),e._uU(62,"Mode"),e.qZA(),e.TgZ(63,"mat-radio-group",27),e.NdJ("ngModelChange",function(Ht){return ne.selectedThemeMode=Ht})("change",function(){return ne.chooseThemeMode()}),e.YNc(64,ji,2,5,"mat-radio-button",28),e.qZA()()(),e._UZ(65,"mat-divider",24),e.TgZ(66,"div",25)(67,"div",29)(68,"h4"),e._uU(69,"Themes"),e.qZA(),e.TgZ(70,"div",30),e.YNc(71,Qn,4,8,"span",31),e.qZA()()()()()()(),e.TgZ(72,"div",32)(73,"button",33),e.NdJ("click",function(){return ne.onResetSettings()}),e._uU(74,"Reset"),e.qZA(),e.TgZ(75,"button",34),e.NdJ("click",function(){return ne.onUpdateSettings()}),e._uU(76,"Update"),e.qZA()()()),2&P&&(e.xp6(7),e.Q6J("icon",ne.faEyeSlash),e.xp6(5),e.Q6J("icon",ne.faInfoCircle),e.xp6(4),e.Q6J("ngModel",ne.selNode.settings.unannouncedChannels),e.xp6(5),e.Q6J("icon",ne.faMoneyBillAlt),e.xp6(5),e.Q6J("icon",ne.faExclamationTriangle),e.xp6(8),e.Q6J("ngModel",ne.selNode.settings.fiatConversion),e.xp6(3),e.Q6J("ngModel",ne.selNode.settings.currencyUnit)("disabled",!ne.selNode.settings.fiatConversion)("required",ne.selNode.settings.fiatConversion),e.xp6(2),e.Q6J("ngForOf",ne.currencyUnits),e.xp6(1),e.Q6J("ngIf",ne.selNode.settings.fiatConversion&&!ne.selNode.settings.currencyUnit),e.xp6(4),e.Q6J("icon",ne.faPaintBrush),e.xp6(6),e.Q6J("icon",ne.faInfoCircle),e.xp6(6),e.Q6J("ngModel",ne.selNode.settings.userPersona),e.xp6(1),e.Q6J("ngForOf",ne.userPersonas),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Q6J("ngModel",ne.selectedThemeMode),e.xp6(1),e.Q6J("ngForOf",ne.themeModes),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Q6J("ngForOf",ne.themeColors))},directives:[_.xw,_.yH,J.$V,Ie._Y,Ie.JL,Ie.F,_.Wh,Li.pp,Li.ib,Li.yz,Li.yK,V.BN,Ni.Rr,Ie.JJ,Ie.On,ut.KE,Oe.gD,we.h,Ie.Q7,X.sg,ce.ey,X.O5,ut.TO,pn.VQ,pn.U0,Ge.d,X.mk,Dn.oO,Te.lW],pipes:[X.rS,X.i8],styles:[""]}),U})();var ua=p(1365),va=p(9828),Sr=p(6529),ha=p(2501),Br=p(7238),ia=p(5245),na=p(9445);const ra=function(U){return{error:U}};function Jr(U,Le){if(1&U&&e.GkF(0,14),2&U){const P=e.oxw(),ne=e.MAs(18);e.Q6J("ngTemplateOutlet",ne)("ngTemplateOutletContext",e.VKq(2,ra,P.errorMessage))}}function Xr(U,Le){if(1&U&&(e.TgZ(0,"mat-option",30),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.Q6J("value",P),e.xp6(1),e.hij(" ",P," ")}}function Sa(U,Le){if(1&U&&(e.TgZ(0,"mat-option",30),e._uU(1),e.ALo(2,"camelCaseWithSpaces"),e.ALo(3,"camelcaseWithReplace"),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw(3);e.Q6J("value",P),e.xp6(1),e.hij(" ","ECL"===ne.selNode.lnImplementation?e.lcZ(2,2,P):e.xi3(3,4,P,"_")," ")}}function fa(U,Le){if(1&U&&(e.TgZ(0,"mat-option",30),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.Q6J("value",P),e.xp6(1),e.hij(" ","desc"===P?"Descending":"Ascending"," ")}}function Wa(U,Le){if(1&U&&(e.TgZ(0,"mat-option",33),e._uU(1),e.ALo(2,"camelCaseWithSpaces"),e.ALo(3,"camelcaseWithReplace"),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw(2).$implicit,Ye=e.oxw(2);e.Q6J("value",P.column)("disabled",ne.columnSelection.length<=2&&ne.columnSelection.includes(P.column)),e.xp6(1),e.hij(" ",P.label?P.label:"ECL"===Ye.selNode.lnImplementation?e.lcZ(2,3,P.column):e.xi3(3,5,P.column,"_")," ")}}function kr(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-form-field",31)(1,"mat-select",32),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw().$implicit.columnSelection=Ye})("selectionChange",function(){e.CHM(P);const Ye=e.oxw().$implicit;return e.oxw(2).oncolumnSelectionChange(Ye)}),e.YNc(2,Wa,4,8,"mat-option",27),e.qZA()()}if(2&U){const P=e.oxw().$implicit,ne=e.oxw().$implicit,Ye=e.oxw();e.xp6(1),e.hYB("name","",ne.pageId,"",P.tableId,"-columns-selection"),e.Q6J("ngModel",P.columnSelection),e.xp6(1),e.Q6J("ngForOf",Ye.nodePageDefs[ne.pageId][P.tableId].allowedColumns)}}function Wn(U,Le){if(1&U&&(e.TgZ(0,"mat-option",33),e._uU(1),e.ALo(2,"camelCaseWithSpaces"),e.ALo(3,"camelcaseWithReplace"),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw().$implicit,Ye=e.oxw(2);e.Q6J("value",P.column)("disabled",ne.columnSelectionSM.length<=1&&ne.columnSelectionSM.includes(P.column)||ne.columnSelectionSM.length>=3&&!ne.columnSelectionSM.includes(P.column)),e.xp6(1),e.hij(" ",P.label?P.label:"ECL"===Ye.selNode.lnImplementation?e.lcZ(2,3,P.column):e.xi3(3,5,P.column,"_")," ")}}const Ur=function(U){return{"ml-minus-1":U}};function lr(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",17)(1,"div",18)(2,"span",19),e._uU(3),e.ALo(4,"camelcaseWithReplace"),e.qZA(),e.TgZ(5,"mat-form-field",19)(6,"mat-select",20),e.NdJ("ngModelChange",function(Ye){return e.CHM(P).$implicit.recordsPerPage=Ye}),e.YNc(7,Xr,2,2,"mat-option",21),e.qZA()(),e.TgZ(8,"mat-form-field",19)(9,"mat-select",22),e.NdJ("ngModelChange",function(Ye){return e.CHM(P).$implicit.sortBy=Ye}),e.YNc(10,Sa,4,7,"mat-option",21),e.qZA()(),e.TgZ(11,"mat-form-field",19)(12,"mat-select",23),e.NdJ("ngModelChange",function(Ye){return e.CHM(P).$implicit.sortOrder=Ye}),e.YNc(13,fa,2,2,"mat-option",21),e.qZA()(),e.YNc(14,kr,3,4,"mat-form-field",24),e.TgZ(15,"mat-form-field",25)(16,"mat-select",26),e.NdJ("ngModelChange",function(Ye){return e.CHM(P).$implicit.columnSelectionSM=Ye}),e.YNc(17,Wn,4,8,"mat-option",27),e.qZA()(),e.TgZ(18,"button",28),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit,Mi=e.oxw().$implicit;return e.oxw().onTableReset(Mi.pageId,Ht)}),e.TgZ(19,"mat-icon",29),e._uU(20,"restore"),e.qZA()()()()}if(2&U){const P=Le.$implicit,ne=e.oxw().$implicit,Ye=e.oxw();e.xp6(3),e.hij("",e.xi3(4,20,P.tableId,"_"),":"),e.xp6(3),e.hYB("name","",ne.pageId,"",P.tableId,"-page-size-options"),e.Q6J("disabled",Ye.nodePageDefs[ne.pageId][P.tableId].disablePageSize)("ngModel",P.recordsPerPage),e.xp6(1),e.Q6J("ngForOf",Ye.pageSizeOptions),e.xp6(2),e.hYB("name","",ne.pageId,"",P.tableId,"-sort-by"),e.Q6J("ngModel",P.sortBy),e.xp6(1),e.Q6J("ngForOf",P.columnSelection),e.xp6(2),e.hYB("name","",ne.pageId,"",P.tableId,"-sort-order"),e.Q6J("ngModel",P.sortOrder),e.xp6(1),e.Q6J("ngForOf",Ye.sortOrders),e.xp6(1),e.Q6J("ngIf",Ye.screenSize!==Ye.screenSizeEnum.XS),e.xp6(2),e.hYB("name","",ne.pageId,"",P.tableId,"-columns-selection-sm"),e.Q6J("ngModel",P.columnSelectionSM),e.xp6(1),e.Q6J("ngForOf",Ye.nodePageDefs[ne.pageId][P.tableId].allowedColumns),e.xp6(2),e.Q6J("ngClass",e.VKq(23,Ur,Ye.screenSize===Ye.screenSizeEnum.XS||Ye.screenSize===Ye.screenSizeEnum.SM))}}function Ya(U,Le){if(1&U&&e.GkF(0,14),2&U){const P=e.oxw(2),ne=e.MAs(18);e.Q6J("ngTemplateOutlet",ne)("ngTemplateOutletContext",e.VKq(2,ra,P.errorMessage))}}const jr=function(U){return{"error-border":U}};function ja(U,Le){if(1&U&&(e.TgZ(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e._uU(3),e.ALo(4,"camelcaseWithReplace"),e.qZA()(),e.YNc(5,lr,21,25,"div",16),e.YNc(6,Ya,1,4,"ng-container",6),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("ngClass",e.VKq(7,jr,(null==ne.errorMessage?null:ne.errorMessage.page)===P.pageId)),e.xp6(3),e.Oqu(e.xi3(4,4,P.pageId,"_")),e.xp6(2),e.Q6J("ngForOf",P.tables),e.xp6(1),e.Q6J("ngIf",ne.errorMessage&&(null==ne.errorMessage?null:ne.errorMessage.page)===P.pageId)}}function ya(U,Le){if(1&U&&(e.TgZ(0,"mat-panel-title"),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&U){const P=e.oxw().error;e.xp6(1),e.hij("Page ",e.lcZ(2,1,P.page),"")}}function cr(U,Le){if(1&U&&(e.TgZ(0,"mat-list-item")(1,"mat-icon",37),e._uU(2,"close"),e.qZA(),e.TgZ(3,"span"),e._uU(4),e.qZA()()),2&U){const P=e.oxw().error;e.xp6(4),e.Oqu(P.message)}}function ba(U,Le){if(1&U&&(e.TgZ(0,"mat-list-item")(1,"mat-icon",37),e._uU(2,"close"),e.qZA(),e.TgZ(3,"span"),e._uU(4),e.ALo(5,"titlecase"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(4),e.AsE("Table ",e.lcZ(5,2,P.table)," ",P.message,"")}}const Nr=function(U){return{"error-border p-2":U}};function Dr(U,Le){if(1&U&&(e.TgZ(0,"div",29),e.YNc(1,ya,3,3,"mat-panel-title",34),e.TgZ(2,"mat-list",35),e.YNc(3,cr,5,1,"mat-list-item",34),e.YNc(4,ba,6,4,"mat-list-item",36),e.qZA()()),2&U){const P=Le.error,ne=e.oxw();e.Q6J("ngClass",e.VKq(4,Nr,"unknown"===ne.errorMessage.page)),e.xp6(1),e.Q6J("ngIf","unknown"===ne.errorMessage.page),e.xp6(2),e.Q6J("ngIf",P.message),e.xp6(1),e.Q6J("ngForOf",P.tables)}}let aa=(()=>{class U{constructor(P,ne,Ye,Ht){this.logger=P,this.commonService=ne,this.store=Ye,this.actions=Ht,this.faPenRuler=y.SoD,this.faExclamationTriangle=y.eHv,this.screenSize="",this.screenSizeEnum=j.cu,this.pageSizeOptions=j.TJ,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=j.zZ,this.apiCallStatus=null,this.apiCallStatusEnum=j.Bn,this.errorMessage=null,this.unSubs=[new h.x,new h.x,new h.x,new h.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(n.dT).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{switch(this.selNode=P,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],j.gG),this.defaultSettings=Object.assign([],j.gG),this.nodePageDefs=j.At,this.store.select(va.AS).pipe((0,x.R)(this.unSubs[1]),(0,ua.M)(this.store.select(va.lw))).subscribe(([ne,Ye])=>{const Ht=JSON.parse(JSON.stringify(ne.pageSettings));if(this.errorMessage=null,this.apiCallStatus=ne.apiCallStatus,this.apiCallStatus.status===j.Bn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Ht,this.initialPageSettings=Ht;else{if(!(null==Ye?void 0:Ye.enableOffers)){const Mi=Ht.find(Fn=>"transactions"===Fn.pageId),Ki=null==Mi?void 0:Mi.tables.findIndex(Fn=>"offers"===Fn.tableId),mn=null==Mi?void 0:Mi.tables.findIndex(Fn=>"offer_bookmarks"===Fn.tableId);Ki>-1&&(null==Mi||Mi.tables.splice(Ki,1)),mn>-1&&(null==Mi||Mi.tables.splice(mn,1))}if(!(null==Ye?void 0:Ye.enablePeerswap)){const Mi=Ht.findIndex(Ki=>"peerswap"===Ki.pageId);Mi>-1&&Ht.splice(Mi,1)}this.pageSettings=Ht,this.initialPageSettings=Ht}this.logger.info(Ht)}),this.actions.pipe((0,x.R)(this.unSubs[2]),(0,ge.h)(ne=>ne.type===j.AB.UPDATE_API_CALL_STATUS_CLN||ne.type===j.AB.SAVE_PAGE_SETTINGS_CLN)).subscribe(ne=>{ne.type===j.AB.UPDATE_API_CALL_STATUS_CLN&&ne.payload.status===j.Bn.ERROR&&"SavePageSettings"===ne.payload.action&&(this.errorMessage=JSON.parse(ne.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],j.c3),this.defaultSettings=Object.assign([],j.c3),this.nodePageDefs=j.Xk,this.store.select(ha.nF).pipe((0,x.R)(this.unSubs[1]),(0,ua.M)(this.store.select(ha.LR))).subscribe(([ne,Ye])=>{const Ht=JSON.parse(JSON.stringify(ne.pageSettings));this.errorMessage=null,this.apiCallStatus=ne.apiCallStatus,this.apiCallStatus.status===j.Bn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Ht,this.initialPageSettings=Ht):(this.pageSettings=Ht,this.initialPageSettings=Ht),this.logger.info(Ht)}),this.actions.pipe((0,x.R)(this.unSubs[2]),(0,ge.h)(ne=>ne.type===j.lr.UPDATE_API_CALL_STATUS_ECL||ne.type===j.lr.SAVE_PAGE_SETTINGS_ECL)).subscribe(ne=>{ne.type===j.lr.UPDATE_API_CALL_STATUS_ECL&&ne.payload.status===j.Bn.ERROR&&"SavePageSettings"===ne.payload.action&&(this.errorMessage=JSON.parse(ne.payload.message))});break;default:this.initialPageSettings=Object.assign([],j.gK),this.defaultSettings=Object.assign([],j.gK),this.nodePageDefs=j.hG,this.store.select(Sr.Pr).pipe((0,x.R)(this.unSubs[1]),(0,ua.M)(this.store.select(Sr.$k))).subscribe(([ne,Ye])=>{const Ht=JSON.parse(JSON.stringify(ne.pageSettings));if(this.errorMessage=null,this.apiCallStatus=ne.apiCallStatus,this.apiCallStatus.status===j.Bn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Ht,this.initialPageSettings=Ht;else{if(!(null==Ye?void 0:Ye.swapServerUrl)||""===Ye.swapServerUrl.trim()){const Mi=Ht.findIndex(Ki=>"loop"===Ki.pageId);Mi>-1&&Ht.splice(Mi,1)}if(!(null==Ye?void 0:Ye.boltzServerUrl)||""===Ye.boltzServerUrl.trim()){const Mi=Ht.findIndex(Ki=>"boltz"===Ki.pageId);Mi>-1&&Ht.splice(Mi,1)}if(!(null==Ye?void 0:Ye.enablePeerswap)){const Mi=Ht.findIndex(Ki=>"peerswap"===Ki.pageId);Mi>-1&&Ht.splice(Mi,1)}this.pageSettings=Ht,this.initialPageSettings=Ht}this.logger.info(Ht)}),this.actions.pipe((0,x.R)(this.unSubs[2]),(0,ge.h)(ne=>ne.type===j.uR.UPDATE_API_CALL_STATUS_LND||ne.type===j.uR.SAVE_PAGE_SETTINGS_LND)).subscribe(ne=>{ne.type===j.uR.UPDATE_API_CALL_STATUS_LND&&ne.payload.status===j.Bn.ERROR&&"SavePageSettings"===ne.payload.action&&(this.errorMessage=JSON.parse(ne.payload.message))})}})}oncolumnSelectionChange(P){P.columnSelection&&(!P.sortBy||!P.columnSelection.includes(P.sortBy))&&(P.sortBy=P.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((P,ne)=>P||ne.tables.reduce((Ye,Ht)=>!(Ht.recordsPerPage&&Ht.sortBy&&Ht.sortOrder&&Ht.columnSelection&&Ht.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,Rt.eF)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,st.eF)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Wt.eF)({payload:this.pageSettings}))}}onTableReset(P,ne){var Ye,Ht;const Mi=this.pageSettings.findIndex(Fn=>Fn.pageId===P),Ki=this.pageSettings[Mi].tables.findIndex(Fn=>Fn.tableId===ne.tableId),mn=(null===(Ye=this.defaultSettings.find(Fn=>Fn.pageId===P))||void 0===Ye?void 0:Ye.tables.find(Fn=>Fn.tableId===ne.tableId))||(null===(Ht=this.pageSettings.find(Fn=>Fn.pageId===P))||void 0===Ht?void 0:Ht.tables.find(Fn=>Fn.tableId===ne.tableId));this.pageSettings[Mi].tables.splice(Ki,1,mn)}onResetPageSettings(P){"current"===P?(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.initialPageSettings))):(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.defaultSettings)))}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(fi.v),e.Y36(C.yh),e.Y36(d.eX))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-page-settings"]],decls:19,vars:3,consts:[["fxLayout","column","fxFlex","100","id","head",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["displayMode","flat","multi","false"],["fxLayout","column","class","flat-expansion-panel mt-1","expanded","false",3,"ngClass",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","8",1,"mr-1",3,"click"],["mat-stroked-button","","color","primary","tabindex","9",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],["errorObjectBlock",""],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","column","expanded","false",1,"flat-expansion-panel","mt-1",3,"ngClass"],["fxLayout","column","fxLayoutAlign","start stretch","class","padding-gap-x-large table-setting-row",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large","table-setting-row"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","10"],["placeholder","Records/Page","tabindex","2","required","",3,"disabled","ngModel","name","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],["placeholder","Sort By","tabindex","3","required","",3,"ngModel","name","ngModelChange"],["placeholder","Sort Order","tabindex","4","required","",3,"ngModel","name","ngModelChange"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxFlex","15","matTooltip","Select between 1 and 3 columns"],["placeholder","Column Selection (Mobile Resolution)","tabindex","5","multiple","","required","",3,"ngModel","name","ngModelChange"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",3,"click"],[3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["placeholder","Column selection (Desktop Resolution)","tabindex","6","multiple","","required","",3,"ngModel","name","ngModelChange","selectionChange"],[3,"value","disabled"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6,"Grid Settings"),e.qZA()(),e.YNc(7,Jr,1,4,"ng-container",6),e.TgZ(8,"mat-accordion",7),e.YNc(9,ja,7,9,"mat-expansion-panel",8),e.qZA()(),e.TgZ(10,"div",9)(11,"button",10),e.NdJ("click",function(){return ne.onResetPageSettings("current")}),e._uU(12,"Reset"),e.qZA(),e.TgZ(13,"button",11),e.NdJ("click",function(){return ne.onResetPageSettings("default")}),e._uU(14,"Reset to Default"),e.qZA(),e.TgZ(15,"button",12),e.NdJ("click",function(){return ne.onUpdatePageSettings()}),e._uU(16,"Save"),e.qZA()()(),e.YNc(17,Dr,5,6,"ng-template",null,13,e.W1O)),2&P&&(e.xp6(4),e.Q6J("icon",ne.faPenRuler),e.xp6(3),e.Q6J("ngIf",ne.errorMessage&&"unknown"===ne.errorMessage.page),e.xp6(2),e.Q6J("ngForOf",ne.pageSettings))},directives:[_.xw,_.yH,J.$V,Ie._Y,Ie.JL,Ie.F,_.Wh,V.BN,X.O5,X.tP,Li.pp,X.sg,Li.ib,X.mk,Dn.oO,Li.yz,Li.yK,ut.KE,Oe.gD,Ie.Q7,Ie.JJ,Ie.On,ce.ey,Br.gM,Te.lW,ia.Hw,Qi.i$,Qi.Tg],pipes:[na.D3,na.i1,X.rS],styles:[".table-setting-row[_ngcontent-%COMP%]:last-child{margin-bottom:3rem}.table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:3rem 0}"]}),U})();function Ea(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",9),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[0].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[0].link),e.Q6J("active",P.activeLink===P.links[0].link),e.xp6(1),e.Oqu(P.links[0].name)}}const ka=function(){return{initial:!1}};function xa(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",10),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[1].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[1].link),e.Q6J("active",P.activeLink===P.links[1].link)("state",e.DdM(4,ka)),e.xp6(1),e.Oqu(P.links[1].name)}}function or(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",9),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.activeLink=Ye.links[2].link}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw();e.s9C("routerLink",P.links[2].link),e.Q6J("active",P.activeLink===P.links[2].link),e.xp6(1),e.Oqu(P.links[2].name)}}let sa=(()=>{class U{constructor(P,ne,Ye){this.store=P,this.router=ne,this.activatedRoute=Ye,this.faLayerGroup=y.Krp,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"peerswap",name:"Peerswap"}],this.activeLink="",this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){const P=this.links.find(ne=>this.router.url.includes(ne.link));this.activeLink=P?P.link:this.links[0].link,this.router.events.pipe((0,x.R)(this.unSubs[0]),(0,ge.h)(ne=>ne instanceof I.Av)).subscribe({next:ne=>{const Ye=this.links.find(Ht=>ne.urlAfterRedirects.includes(Ht.link));this.activeLink="CLN"===this.selNode.lnImplementation.toUpperCase()?this.links[2].link:Ye?Ye.link:this.links[0].link}}),this.store.select(n.dT).pipe((0,x.R)(this.unSubs[1])).subscribe(ne=>{this.selNode=ne,"CLN"===this.selNode.lnImplementation.toUpperCase()&&(this.activeLink=this.links[2].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(C.yh),e.Y36(I.F0),e.Y36(I.gz))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-services-settings"]],decls:13,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Services"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,Ea,2,3,"div",6),e.YNc(9,xa,2,5,"div",7),e.YNc(10,or,2,3,"div",6),e.qZA(),e.TgZ(11,"div",8),e._UZ(12,"router-outlet"),e.qZA()()()()),2&P&&(e.xp6(1),e.Q6J("icon",ne.faLayerGroup),e.xp6(7),e.Q6J("ngIf","LND"===(null==ne.selNode||null==ne.selNode.lnImplementation?null:ne.selNode.lnImplementation.toUpperCase())),e.xp6(1),e.Q6J("ngIf","LND"===(null==ne.selNode||null==ne.selNode.lnImplementation?null:ne.selNode.lnImplementation.toUpperCase())),e.xp6(1),e.Q6J("ngIf","CLN"===(null==ne.selNode||null==ne.selNode.lnImplementation?null:ne.selNode.lnImplementation.toUpperCase())))},directives:[_.xw,_.Wh,V.BN,N.a8,N.dn,H.BU,X.O5,H.Nj,I.rH,_.yH,I.lC],styles:[""]}),U})();const Va=["form"];function ir(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Loop server URL is required."),e.qZA())}function oa(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Specify the loop server url with 'https://'."),e.qZA())}function Kr(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Loop macaroon path is required."),e.qZA())}let Rr=(()=>{class U{constructor(P,ne){this.logger=P,this.store=ne,this.faInfoCircle=y.sqG,this.enableLoop=!1,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.select(n.dT).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{this.selNode=P,this.enableLoop=!(!P.settings.swapServerUrl||""===P.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(P)})}onEnableServiceChanged(P){this.enableLoop=P.checked,this.enableLoop||(this.selNode.authentication.swapMacaroonPath="",this.selNode.settings.swapServerUrl="")}onUpdateService(){if(this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableLoop&&(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim()||!this.selNode.authentication.swapMacaroonPath||""===this.selNode.authentication.swapMacaroonPath.trim()))return!0;this.logger.info(this.selNode),this.store.dispatch((0,Ve.jS)({payload:{uiMessage:j.m6.UPDATE_LOOP_SETTINGS,service:j.JX.LOOP,settings:{enable:this.enableLoop,serverUrl:this.selNode.settings.swapServerUrl,macaroonPath:this.selNode.authentication.swapMacaroonPath}}})),this.store.dispatch((0,Wt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,Rt.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,st.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.selNode.settings.enableOffers}}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(C.yh))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-loop-service-settings"]],viewQuery:function(P,ne){if(1&P&&e.Gf(Va,7),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.form=Ye.first)}},decls:34,vars:11,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxFlex","100",1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://github.com/lightninglabs/loop","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"mb-1",3,"ngModel","ngModelChange","change"],[1,"mb-2"],["matInput","","placeholder","Loop Server URL","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModel","required","disabled","ngModelChange"],["srvrUrl","ngModel"],[4,"ngIf"],["matInput","","placeholder","Loop Macaroon Path","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModel","required","disabled","ngModelChange"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(P,ne){if(1&P&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Please ensure that "),e.TgZ(5,"strong"),e._uU(6,"loopd"),e.qZA(),e._uU(7," is running and accessible to RTL before enabling this service. Click "),e.TgZ(8,"strong")(9,"a",3),e._uU(10,"here"),e.qZA()(),e._uU(11," to learn more about the installation."),e.qZA()(),e.TgZ(12,"form",4,5)(14,"div",6)(15,"mat-slide-toggle",7),e.NdJ("ngModelChange",function(Ht){return ne.enableLoop=Ht})("change",function(Ht){return ne.onEnableServiceChanged(Ht)}),e._uU(16,"Enable Loop Service"),e.qZA(),e.TgZ(17,"mat-form-field",8)(18,"input",9,10),e.NdJ("ngModelChange",function(Ht){return ne.selNode.settings.swapServerUrl=Ht}),e.qZA(),e.TgZ(20,"mat-hint"),e._uU(21,"Service url for loop server REST APIs, eg. https://localhost:8081"),e.qZA(),e.YNc(22,ir,2,0,"mat-error",11),e.YNc(23,oa,2,0,"mat-error",11),e.qZA(),e.TgZ(24,"mat-form-field")(25,"input",12),e.NdJ("ngModelChange",function(Ht){return ne.selNode.authentication.swapMacaroonPath=Ht}),e.qZA(),e.TgZ(26,"mat-hint"),e._uU(27,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),e.qZA(),e.YNc(28,Kr,2,0,"mat-error",11),e.qZA()()(),e.TgZ(29,"div",13)(30,"button",14),e.NdJ("click",function(){return ne.onReset()}),e._uU(31,"Reset"),e.qZA(),e.TgZ(32,"button",15),e.NdJ("click",function(){return ne.onUpdateService()}),e._uU(33,"Update"),e.qZA()()()),2&P){const Ye=e.MAs(19);e.xp6(2),e.Q6J("icon",ne.faInfoCircle),e.xp6(13),e.Q6J("ngModel",ne.enableLoop),e.xp6(3),e.Q6J("ngModel",ne.selNode.settings.swapServerUrl)("required",ne.enableLoop)("disabled",!ne.enableLoop),e.xp6(4),e.Q6J("ngIf",!ne.selNode.settings.swapServerUrl&&ne.enableLoop),e.xp6(1),e.Q6J("ngIf",(null==Ye||null==Ye.errors?null:Ye.errors.invalid)&&ne.enableLoop),e.xp6(2),e.Q6J("ngModel",ne.selNode.authentication.swapMacaroonPath)("required",ne.enableLoop)("disabled",!ne.enableLoop),e.xp6(3),e.Q6J("ngIf",!ne.selNode.authentication.swapMacaroonPath&&ne.enableLoop)}},directives:[_.xw,_.yH,J.$V,V.BN,Ie._Y,Ie.JL,Ie.F,_.Wh,Ni.Rr,we.h,Ie.JJ,Ie.On,ut.KE,Yt.Nt,Ie.Fj,Ie.Q7,ut.bx,X.O5,ut.TO,Te.lW],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),U})();const Gr=["form"];function Ta(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Boltz server URL is required."),e.qZA())}function Ja(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Specify the boltz server url with 'https://'."),e.qZA())}function Xn(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Boltz macaroon path is required."),e.qZA())}let $e=(()=>{class U{constructor(P,ne){this.logger=P,this.store=ne,this.faInfoCircle=y.sqG,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.select(n.dT).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{this.selNode=P,this.enableBoltz=!(!P.settings.boltzServerUrl||""===P.settings.boltzServerUrl.trim()),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(P)})}onEnableServiceChanged(P){this.enableBoltz=P.checked,this.enableBoltz||(this.macaroonPath="",this.serverUrl="")}onUpdateService(){if(this.serverUrl&&""!==this.serverUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableBoltz&&(!this.serverUrl||""===this.serverUrl.trim()||!this.serverUrl.includes("https://")||!this.macaroonPath||""===this.macaroonPath.trim()))return!0;this.logger.info(this.selNode),this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath,this.store.dispatch((0,Ve.jS)({payload:{uiMessage:j.m6.UPDATE_BOLTZ_SETTINGS,service:j.JX.BOLTZ,settings:{enable:this.enableBoltz,serverUrl:this.serverUrl,macaroonPath:this.macaroonPath}}})),this.store.dispatch((0,Wt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.serverUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,Rt.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.serverUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,st.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.serverUrl,enableOffers:this.selNode.settings.enableOffers}}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.enableBoltz=!(!this.serverUrl||""===this.serverUrl.trim())}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(C.yh))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(P,ne){if(1&P&&e.Gf(Gr,7),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.form=Ye.first)}},decls:34,vars:11,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxFlex","100",1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://lnd.docs.boltz.exchange/en/latest/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"mb-1",3,"ngModel","ngModelChange","change"],[1,"mb-2"],["matInput","","placeholder","Boltz Server URL","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModel","required","disabled","ngModelChange"],["srvrUrl","ngModel"],[4,"ngIf"],["matInput","","placeholder","Boltz Macaroon Path","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModel","required","disabled","ngModelChange"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(P,ne){if(1&P&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Please ensure that "),e.TgZ(5,"strong"),e._uU(6,"boltzd"),e.qZA(),e._uU(7," is running and accessible to RTL before enabling this service. Click "),e.TgZ(8,"strong")(9,"a",3),e._uU(10,"here"),e.qZA()(),e._uU(11," to learn more about the installation."),e.qZA()(),e.TgZ(12,"form",4,5)(14,"div",6)(15,"mat-slide-toggle",7),e.NdJ("ngModelChange",function(Ht){return ne.enableBoltz=Ht})("change",function(Ht){return ne.onEnableServiceChanged(Ht)}),e._uU(16,"Enable Boltz Service"),e.qZA(),e.TgZ(17,"mat-form-field",8)(18,"input",9,10),e.NdJ("ngModelChange",function(Ht){return ne.serverUrl=Ht}),e.qZA(),e.TgZ(20,"mat-hint"),e._uU(21,"Service url for boltz server REST APIs, eg. https://localhost:9003"),e.qZA(),e.YNc(22,Ta,2,0,"mat-error",11),e.YNc(23,Ja,2,0,"mat-error",11),e.qZA(),e.TgZ(24,"mat-form-field")(25,"input",12),e.NdJ("ngModelChange",function(Ht){return ne.macaroonPath=Ht}),e.qZA(),e.TgZ(26,"mat-hint"),e._uU(27,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),e.qZA(),e.YNc(28,Xn,2,0,"mat-error",11),e.qZA()()(),e.TgZ(29,"div",13)(30,"button",14),e.NdJ("click",function(){return ne.onReset()}),e._uU(31,"Reset"),e.qZA(),e.TgZ(32,"button",15),e.NdJ("click",function(){return ne.onUpdateService()}),e._uU(33,"Update"),e.qZA()()()),2&P){const Ye=e.MAs(19);e.xp6(2),e.Q6J("icon",ne.faInfoCircle),e.xp6(13),e.Q6J("ngModel",ne.enableBoltz),e.xp6(3),e.Q6J("ngModel",ne.serverUrl)("required",ne.enableBoltz)("disabled",!ne.enableBoltz),e.xp6(4),e.Q6J("ngIf",(!ne.serverUrl||""===ne.serverUrl.trim())&&ne.enableBoltz),e.xp6(1),e.Q6J("ngIf",(null==Ye||null==Ye.errors?null:Ye.errors.invalid)&&ne.enableBoltz),e.xp6(2),e.Q6J("ngModel",ne.macaroonPath)("required",ne.enableBoltz)("disabled",!ne.enableBoltz),e.xp6(3),e.Q6J("ngIf",!ne.macaroonPath&&ne.enableBoltz)}},directives:[_.xw,_.yH,J.$V,V.BN,Ie._Y,Ie.JL,Ie.F,_.Wh,Ni.Rr,we.h,Ie.JJ,Ie.On,ut.KE,Yt.Nt,Ie.Fj,Ie.Q7,ut.bx,X.O5,ut.TO,Te.lW],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),U})(),Et=(()=>{class U{constructor(){}}return U.\u0275fac=function(P){return new(P||U)},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(P,ne){1&P&&e._UZ(0,"router-outlet")},directives:[I.lC],styles:[""]}),U})();var Xe=p(2615),kt=p(9107),ii=p(6087),wi=p(4847),yi=p(2075),en=p(5899);function nr(U,Le){if(1&U&&(e.TgZ(0,"mat-option",37),e._uU(1),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("value",P),e.xp6(1),e.Oqu(ne.getLabel(P))}}function Vn(U,Le){1&U&&e._UZ(0,"mat-progress-bar",38)}function It(U,Le){1&U&&(e.TgZ(0,"th",39),e._uU(1,"State"),e.qZA())}function ci(U,Le){if(1&U&&(e.TgZ(0,"td",40),e._uU(1),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Oqu(ne.LoopStateEnum[null==P?null:P.state])}}function vt(U,Le){1&U&&(e.TgZ(0,"th",39),e._uU(1,"Initiation Time"),e.qZA())}function jt(U,Le){if(1&U&&(e.TgZ(0,"td",40),e._uU(1),e.ALo(2,"date"),e.qZA()),2&U){const P=Le.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,(null==P?null:P.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function ki(U,Le){1&U&&(e.TgZ(0,"th",39),e._uU(1,"Last Update Time"),e.qZA())}function je(U,Le){if(1&U&&(e.TgZ(0,"td",40),e._uU(1),e.ALo(2,"date"),e.qZA()),2&U){const P=Le.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,(null==P?null:P.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function We(U,Le){1&U&&(e.TgZ(0,"th",41),e._uU(1,"Amount (Sats)"),e.qZA())}function Fe(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==P?null:P.amt))}}function At(U,Le){1&U&&(e.TgZ(0,"th",41),e._uU(1,"Cost Server (Sats)"),e.qZA())}function Si(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==P?null:P.cost_server))}}function Gi(U,Le){1&U&&(e.TgZ(0,"th",41),e._uU(1,"Cost Offchain (Sats)"),e.qZA())}function Bn(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==P?null:P.cost_offchain))}}function yr(U,Le){1&U&&(e.TgZ(0,"th",41),e._uU(1,"Cost Onchain (Sats)"),e.qZA())}function Xa(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",42),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==P?null:P.cost_onchain)," ")}}function Ca(U,Le){1&U&&(e.TgZ(0,"th",39),e._uU(1,"HTLC Address"),e.qZA())}const pa=function(U){return{width:U}};function Fi(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",43)(2,"span",44),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,pa,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.htlc_address)}}function Yn(U,Le){1&U&&(e.TgZ(0,"th",39),e._uU(1,"ID"),e.qZA())}function zs(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",43)(2,"span",44),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,pa,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.id)}}function Er(U,Le){1&U&&(e.TgZ(0,"th",39),e._uU(1,"ID (Bytes)"),e.qZA())}function io(U,Le){if(1&U&&(e.TgZ(0,"td",40)(1,"span",43)(2,"span",44),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,pa,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.id_bytes)}}function ms(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"th",45)(1,"div",46)(2,"mat-select",47),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",48),e.NdJ("click",function(){return e.CHM(P),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Aa(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"td",49)(1,"button",50),e.NdJ("click",function(Ye){const Mi=e.CHM(P).$implicit;return e.oxw().onSwapClick(Mi,Ye)}),e._uU(2,"View Info"),e.qZA()()}}function Os(U,Le){if(1&U&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.Oqu(P.emptyTableMessage)}}function Ps(U,Le){if(1&U&&(e.TgZ(0,"td",51),e.YNc(1,Os,2,1,"p",52),e.qZA()),2&U){const P=e.oxw();e.xp6(1),e.Q6J("ngIf",!(null!=P.listSwaps&&P.listSwaps.data)||(null==P.listSwaps||null==P.listSwaps.data?null:P.listSwaps.data.length)<1)}}const Vs=function(U){return{"display-none":U}};function Bs(U,Le){if(1&U&&e._UZ(0,"tr",53),2&U){const P=e.oxw();e.Q6J("ngClass",e.VKq(1,Vs,(null==P.listSwaps?null:P.listSwaps.data)&&(null==P.listSwaps||null==P.listSwaps.data?null:P.listSwaps.data.length)>0))}}function Us(U,Le){1&U&&e._UZ(0,"tr",54)}function ss(U,Le){1&U&&e._UZ(0,"tr",55)}const Zr=function(){return["all"]},Na=function(U){return{"overflow-auto error-border":U,"overflow-auto":!0}},yt=function(){return["no_swap"]};let oe=(()=>{class U{constructor(P,ne,Ye,Ht,Mi,Ki){this.logger=P,this.commonService=ne,this.store=Ye,this.loopService=Ht,this.datePipe=Mi,this.camelCaseWithReplace=Ki,this.selectedSwapType=j.$I.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=j.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:j.IV,sortBy:"initiation_time",sortOrder:j.Pi.DESCENDING},this.LoopStateEnum=j.Fq,this.faHistory=y.qO$,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new yi.by([]),this.selFilter="",this.pageSize=j.IV,this.pageSizeOptions=j.TJ,this.screenSize="",this.screenSizeEnum=j.cu,this.unSubs=[new h.x,new h.x,new h.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Sr.Pr).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{var ne,Ye;this.tableSetting=(null===(ne=P.pageSettings.find(Ht=>Ht.pageId===this.PAGE_ID))||void 0===ne?void 0:ne.tables.find(Ht=>Ht.tableId===this.tableSetting.tableId))||(null===(Ye=j.gK.find(Ht=>Ht.pageId===this.PAGE_ID))||void 0===Ye?void 0:Ye.tables.find(Ht=>Ht.tableId===this.tableSetting.tableId)),this.displayedColumns=this.screenSize===j.cu.XS||this.screenSize===j.cu.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:j.IV,this.swapsData&&this.swapsData.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}ngOnChanges(P){this.swapCaption=this.selectedSwapType===j.$I.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(P){const ne=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(Ye=>Ye.column===P);return ne?ne.label?ne.label:this.camelCaseWithReplace.transform(ne.column,"_"):this.commonService.titleCase(P)}setFilterPredicate(){this.listSwaps.filterPredicate=(P,ne)=>{var Ye;let Ht="";switch(this.selFilterBy){case"all":Ht=JSON.stringify(P).toLowerCase();break;case"state":Ht=(null==P?void 0:P.state)?this.LoopStateEnum[null==P?void 0:P.state]:"";break;case"initiation_time":case"last_update_time":Ht=(null===(Ye=this.datePipe.transform(new Date((P[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm"))||void 0===Ye?void 0:Ye.toLowerCase())||"";break;default:Ht=void 0===P[this.selFilterBy]?"":"string"==typeof P[this.selFilterBy]?P[this.selFilterBy].toLowerCase():"boolean"==typeof P[this.selFilterBy]?P[this.selFilterBy]?"yes":"no":P[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===Ht.indexOf(ne):Ht.includes(ne)}}onSwapClick(P,ne){var Ye,Ht;this.loopService.getSwap((null===(Ht=null===(Ye=P.id_bytes)||void 0===Ye?void 0:Ye.replace(/\//g,"_"))||void 0===Ht?void 0:Ht.replace(/\+/g,"-"))||"").pipe((0,x.R)(this.unSubs[1])).subscribe(Mi=>{this.store.dispatch((0,Ve.qR)({payload:{data:{type:j.n_.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:j.Fq[Mi.state||""],title:"Status",width:50,type:j.Gi.STRING},{key:"amt",value:Mi.amt,title:"Amount (Sats)",width:50,type:j.Gi.NUMBER}],[{key:"initiation_time",value:(Mi.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:j.Gi.DATE_TIME},{key:"last_update_time",value:(Mi.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:j.Gi.DATE_TIME}],[{key:"cost_server",value:Mi.cost_server,title:"Server Cost (Sats)",width:33,type:j.Gi.NUMBER},{key:"cost_offchain",value:Mi.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:j.Gi.NUMBER},{key:"cost_onchain",value:Mi.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:j.Gi.NUMBER}],[{key:"id_bytes",value:Mi.id_bytes,title:"ID",width:100,type:j.Gi.STRING}],[{key:"htlc_address",value:Mi.htlc_address,title:"HTLC Address",width:100,type:j.Gi.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(P){var ne;this.listSwaps=new yi.by([...P]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(Ye,Ht)=>Ye[Ht]&&isNaN(Ye[Ht])?Ye[Ht].toLocaleLowerCase():Ye[Ht]?+Ye[Ht]:null,null===(ne=this.listSwaps.sort)||void 0===ne||ne.sort({id:this.tableSetting.sortBy,start:this.tableSetting.sortOrder,disableClear:!0}),this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===j.$I.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(fi.v),e.Y36(C.yh),e.Y36(kt.W),e.Y36(X.uU),e.Y36(na.D3))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-swaps"]],viewQuery:function(P,ne){if(1&P&&(e.Gf(wi.YE,5),e.Gf(ii.NW,5)),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.sort=Ye.first),e.iGM(Ye=e.CRH())&&(ne.paginator=Ye.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[e._Bn([{provide:ii.ye,useValue:(0,j.pt)("Swaps")}]),e.TTD],decls:56,vars:18,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","initiation_time"],["matColumnDef","last_update_time"],["matColumnDef","amt"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cost_server"],["matColumnDef","cost_offchain"],["matColumnDef","cost_onchain"],["matColumnDef","htlc_address"],["matColumnDef","id"],["matColumnDef","id_bytes"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"div",5)(7,"mat-form-field",6)(8,"mat-select",7),e.NdJ("ngModelChange",function(Ht){return ne.selFilterBy=Ht})("selectionChange",function(){return ne.selFilter="",ne.applyFilter()}),e.YNc(9,nr,2,2,"mat-option",8),e.qZA()(),e.TgZ(10,"mat-form-field",6)(11,"input",9),e.NdJ("ngModelChange",function(Ht){return ne.selFilter=Ht})("input",function(){return ne.applyFilter()})("keyup",function(){return ne.applyFilter()}),e.qZA()()()(),e.TgZ(12,"div",10)(13,"div",11),e.YNc(14,Vn,1,0,"mat-progress-bar",12),e.TgZ(15,"table",13,14),e.ynx(17,15),e.YNc(18,It,2,0,"th",16),e.YNc(19,ci,2,1,"td",17),e.BQk(),e.ynx(20,18),e.YNc(21,vt,2,0,"th",16),e.YNc(22,jt,3,4,"td",17),e.BQk(),e.ynx(23,19),e.YNc(24,ki,2,0,"th",16),e.YNc(25,je,3,4,"td",17),e.BQk(),e.ynx(26,20),e.YNc(27,We,2,0,"th",21),e.YNc(28,Fe,4,3,"td",17),e.BQk(),e.ynx(29,22),e.YNc(30,At,2,0,"th",21),e.YNc(31,Si,4,3,"td",17),e.BQk(),e.ynx(32,23),e.YNc(33,Gi,2,0,"th",21),e.YNc(34,Bn,4,3,"td",17),e.BQk(),e.ynx(35,24),e.YNc(36,yr,2,0,"th",21),e.YNc(37,Xa,4,3,"td",17),e.BQk(),e.ynx(38,25),e.YNc(39,Ca,2,0,"th",16),e.YNc(40,Fi,4,4,"td",17),e.BQk(),e.ynx(41,26),e.YNc(42,Yn,2,0,"th",16),e.YNc(43,zs,4,4,"td",17),e.BQk(),e.ynx(44,27),e.YNc(45,Er,2,0,"th",16),e.YNc(46,io,4,4,"td",17),e.BQk(),e.ynx(47,28),e.YNc(48,ms,6,0,"th",29),e.YNc(49,Aa,3,0,"td",30),e.BQk(),e.ynx(50,31),e.YNc(51,Ps,2,1,"td",32),e.BQk(),e.YNc(52,Bs,1,3,"tr",33),e.YNc(53,Us,1,0,"tr",34),e.YNc(54,ss,1,0,"tr",35),e.qZA(),e._UZ(55,"mat-paginator",36),e.qZA()()()),2&P&&(e.xp6(3),e.Q6J("icon",ne.faHistory),e.xp6(2),e.hij("",ne.swapCaption," History"),e.xp6(3),e.Q6J("ngModel",ne.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(14,Zr).concat(ne.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",ne.selFilter),e.xp6(3),e.Q6J("ngIf",!0===ne.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",ne.listSwaps)("ngClass",e.VKq(15,Na,"error"===ne.flgLoading[0])),e.xp6(37),e.Q6J("matFooterRowDef",e.DdM(17,yt)),e.xp6(1),e.Q6J("matHeaderRowDef",ne.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",ne.displayedColumns),e.xp6(1),e.Q6J("pageSize",ne.pageSize)("pageSizeOptions",ne.pageSizeOptions)("showFirstLastButtons",ne.screenSize!==ne.screenSizeEnum.XS))},directives:[_.xw,_.yH,_.Wh,V.BN,ut.KE,Oe.gD,Ie.JJ,Ie.On,X.sg,ce.ey,Yt.Nt,Ie.Fj,J.$V,X.O5,en.pW,yi.BZ,wi.YE,X.mk,Dn.oO,yi.w1,yi.fO,yi.ge,wi.nU,yi.Dz,yi.ev,X.PC,Dn.Zl,Oe.$L,Te.lW,yi.mD,yi.yh,yi.Ke,yi.Q2,yi.as,yi.XQ,yi.nj,yi.Gk,ii.NW],pipes:[X.uU,X.JJ],styles:[""]}),U})();const pe=function(U){return["../",U]};function Ke(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",10),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw().onSelectedIndexChange(Ht)}),e._uU(1),e.qZA()}if(2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("active",ne.activeTab.link===P.link)("routerLink",e.VKq(3,pe,P.link)),e.xp6(1),e.Oqu(P.name)}}let Mt=(()=>{class U{constructor(P,ne,Ye){this.router=P,this.loopService=ne,this.store=Ye,this.faInfinity=y.vqe,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=j.$I,this.selectedSwapType=j.$I.LOOP_OUT,this.storedSwaps=[],this.filteredSwaps=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"loopout",name:"Loop Out"},{link:"loopin",name:"Loop In"}],this.activeTab=this.links[0],this.unSubs=[new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.loopService.listSwaps();const P=this.links.find(ne=>this.router.url.includes(ne.link));this.activeTab=P||this.links[0],this.selectedSwapType=P&&"loopin"===P.link?j.$I.LOOP_IN:j.$I.LOOP_OUT,this.router.events.pipe((0,x.R)(this.unSubs[0]),(0,ge.h)(ne=>ne instanceof I.Av)).subscribe({next:ne=>{const Ye=this.links.find(Ht=>ne.urlAfterRedirects.includes(Ht.link));this.activeTab=Ye||this.links[0],this.selectedSwapType=Ye&&"loopin"===Ye.link?j.$I.LOOP_IN:j.$I.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,x.R)(this.unSubs[1])).subscribe({next:ne=>{var Ye;this.flgLoading[0]=!1,this.storedSwaps=ne,this.filteredSwaps=null===(Ye=this.storedSwaps)||void 0===Ye?void 0:Ye.filter(Ht=>Ht.type===this.selectedSwapType)},error:ne=>{this.flgLoading[0]="error",this.emptyTableMessage=ne.message?ne.message:"No loop "+(this.selectedSwapType===j.$I.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(P){var ne;this.selectedSwapType="loopin"===P.link?j.$I.LOOP_IN:j.$I.LOOP_OUT,this.filteredSwaps=null===(ne=this.storedSwaps)||void 0===ne?void 0:ne.filter(Ye=>Ye.type===this.selectedSwapType)}onLoop(P){P===j.$I.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,x.R)(this.unSubs[2])).subscribe({next:ne=>{this.store.dispatch((0,Ve.qR)({payload:{data:{minQuote:ne[0],maxQuote:ne[1],direction:P,component:Xe.a}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,x.R)(this.unSubs[3])).subscribe({next:ne=>{this.store.dispatch((0,Ve.qR)({payload:{data:{minQuote:ne[0],maxQuote:ne[1],direction:P,component:Xe.a}}}))}})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(I.F0),e.Y36(kt.W),e.Y36(C.yh))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-loop"]],decls:13,vars:7,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Loop"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,Ke,2,5,"div",6),e.qZA(),e.TgZ(9,"div",7)(10,"button",8),e.NdJ("click",function(){return ne.onLoop(ne.selectedSwapType)}),e._uU(11),e.qZA()(),e._UZ(12,"rtl-swaps",9),e.qZA()()()),2&P&&(e.xp6(1),e.Q6J("icon",ne.faInfinity),e.xp6(7),e.Q6J("ngForOf",ne.links),e.xp6(3),e.hij("Start ",ne.activeTab.name,""),e.xp6(1),e.Q6J("selectedSwapType",ne.selectedSwapType)("swapsData",ne.filteredSwaps)("flgLoading",ne.flgLoading)("emptyTableMessage",ne.emptyTableMessage))},directives:[_.xw,_.Wh,V.BN,N.a8,N.dn,H.BU,X.sg,H.Nj,I.rH,Te.lW,oe,_.yH],styles:[""]}),U})();var Vt=p(7772),ni=p(1135),ri=p(2843),gi=p(262),Ai=p(2340),Xi=p(1786);let dn=(()=>{class U{constructor(P,ne,Ye,Ht){this.httpClient=P,this.logger=ne,this.store=Ye,this.commonService=Ht,this.swapUrl="",this.swaps={},this.swapsChanged=new ni.X({}),this.unSubs=[new h.x,new h.x,new h.x]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Ve.ac)({payload:j.m6.GET_BOLTZ_SWAPS})),this.swapUrl=Ai.T5+Ai.NZ.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,x.R)(this.unSubs[0])).subscribe({next:P=>{this.store.dispatch((0,Ve.uO)({payload:j.m6.GET_BOLTZ_SWAPS})),this.swaps=P,this.swapsChanged.next(this.swaps)},error:P=>this.swapsChanged.error(this.handleErrorWithAlert(j.m6.GET_BOLTZ_SWAPS,this.swapUrl,P))})}swapInfo(P){return this.swapUrl=Ai.T5+Ai.NZ.BOLTZ_API+"/swapInfo/"+P,this.httpClient.get(this.swapUrl).pipe((0,gi.K)(ne=>(0,B.of)(this.handleErrorWithAlert(j.m6.NO_SPINNER,this.swapUrl,ne))))}serviceInfo(){return this.store.dispatch((0,Ve.ac)({payload:j.m6.GET_SERVICE_INFO})),this.swapUrl=Ai.T5+Ai.NZ.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,x.R)(this.unSubs[1]),(0,u.U)(P=>(this.store.dispatch((0,Ve.uO)({payload:j.m6.GET_SERVICE_INFO})),P)),(0,gi.K)(P=>(0,B.of)(this.handleErrorWithAlert(j.m6.GET_SERVICE_INFO,this.swapUrl,P))))}swapOut(P,ne){const Ye={amount:P,address:ne};return this.swapUrl=Ai.T5+Ai.NZ.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Ye).pipe((0,gi.K)(Ht=>this.handleErrorWithoutAlert("Swap Out for Address: "+ne,j.m6.NO_SPINNER,Ht)))}swapIn(P){const ne={amount:P};return this.swapUrl=Ai.T5+Ai.NZ.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,ne).pipe((0,gi.K)(Ye=>this.handleErrorWithoutAlert("Swap In for Amount: "+P,j.m6.NO_SPINNER,Ye)))}handleErrorWithoutAlert(P,ne,Ye){let Ht="";return this.logger.error("ERROR IN: "+P+"\n"+JSON.stringify(Ye)),this.store.dispatch((0,Ve.uO)({payload:ne})),401===Ye.status?(Ht="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Ve.kS)())):503===Ye.status?(Ht="Unable to Connect to Boltz Server.",this.store.dispatch((0,Ve.qR)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:Ye.status,message:"Unable to Connect to Boltz Server",URL:P},component:Xi.H}}}))):Ht=this.commonService.extractErrorMessage(Ye),(0,ri._)(()=>new Error(Ht))}handleErrorWithAlert(P,ne,Ye){let Ht="";if(401===Ye.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Ve.kS)())),this.logger.error(Ye),this.store.dispatch((0,Ve.uO)({payload:P})),401===Ye.status)Ht="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Ve.kS)());else if(503===Ye.status)Ht="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Ve.qR)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:Ye.status,message:"Unable to Connect to Boltz Server",URL:ne},component:Xi.H}}}))},100);else{Ht=this.commonService.extractErrorMessage(Ye);const Mi=Ye.error&&Ye.error.error&&Ye.error.error.code?Ye.error.error.code:Ye.error&&Ye.error.code?Ye.error.code:Ye.code?Ye.code:Ye.status;setTimeout(()=>{this.store.dispatch((0,Ve.qR)({payload:{data:{type:j.n_.ERROR,alertTitle:"ERROR",message:{code:Mi,message:Ht,URL:ne},component:Xi.H}}}))},100)}return{message:Ht}}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.LFG(M.eN),e.LFG(Me.mQ),e.LFG(C.yh),e.LFG(fi.v))},U.\u0275prov=e.Yz7({token:U,factory:U.\u0275fac}),U})(),An=(()=>{class U{constructor(){this.serviceInfo={},this.direction=j.hc.SWAP_OUT,this.swapTypeEnum=j.hc}}return U.\u0275fac=function(P){return new(P||U)},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},decls:33,vars:13,consts:[["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"]],template:function(P,ne){1&P&&(e.TgZ(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),e._uU(4,"Service Information"),e.qZA()()(),e.TgZ(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),e._uU(9,"Minimum Amount (Sats)"),e.qZA(),e.TgZ(10,"span",6),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div",4)(14,"h4",5),e._uU(15,"Maximum Amount (Sats)"),e.qZA(),e.TgZ(16,"span",6),e._uU(17),e.ALo(18,"number"),e.qZA()()(),e._UZ(19,"mat-divider",7),e.TgZ(20,"div",3)(21,"div",4)(22,"h4",5),e._uU(23,"Fee Percentage"),e.qZA(),e.TgZ(24,"span",6),e._uU(25),e.ALo(26,"number"),e.qZA()(),e.TgZ(27,"div",4)(28,"h4",5),e._uU(29,"Miner Fee (Sats)"),e.qZA(),e.TgZ(30,"span",6),e._uU(31),e.ALo(32,"number"),e.qZA()()()()()),2&P&&(e.Q6J("expanded",!0),e.xp6(11),e.Oqu(e.lcZ(12,5,null==ne.serviceInfo||null==ne.serviceInfo.limits?null:ne.serviceInfo.limits.minimal)),e.xp6(6),e.Oqu(e.lcZ(18,7,null==ne.serviceInfo||null==ne.serviceInfo.limits?null:ne.serviceInfo.limits.maximal)),e.xp6(8),e.Oqu(e.lcZ(26,9,null==ne.serviceInfo||null==ne.serviceInfo.fees?null:ne.serviceInfo.fees.percentage)),e.xp6(6),e.Oqu(e.lcZ(32,11,ne.direction===ne.swapTypeEnum.SWAP_OUT?null==ne.serviceInfo||null==ne.serviceInfo.fees||null==ne.serviceInfo.fees.miner?null:ne.serviceInfo.fees.miner.reverse:null==ne.serviceInfo||null==ne.serviceInfo.fees||null==ne.serviceInfo.fees.miner?null:ne.serviceInfo.fees.miner.normal)))},directives:[Li.ib,_.yH,Li.yz,Li.yK,_.Wh,_.xw,Ge.d],pipes:[X.JJ],styles:[""]}),U})();function Un(U,Le){1&U&&e.GkF(0)}function En(U,Le){if(1&U&&(e.TgZ(0,"div",4)(1,"span",5),e._uU(2),e.qZA()()),2&U){const P=e.oxw();e.xp6(2),e.Oqu(null!=P.swapStatus&&P.swapStatus.error?null==P.swapStatus?null:P.swapStatus.error:"Unknown Error.")}}function Pn(U,Le){if(1&U&&(e.TgZ(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e._uU(4,"ID"),e.qZA(),e.TgZ(5,"span",5),e._uU(6),e.qZA()(),e.TgZ(7,"div",7)(8,"h4",8),e._uU(9,"Routing Fee (mSats)"),e.qZA(),e.TgZ(10,"span",5),e._uU(11),e.ALo(12,"number"),e.qZA()()(),e._UZ(13,"mat-divider",9),e.TgZ(14,"div",6)(15,"div",7)(16,"h4",8),e._uU(17,"Claim Transaction ID"),e.qZA(),e.TgZ(18,"span",5),e._uU(19),e.qZA()(),e.TgZ(20,"div",7)(21,"h4",8),e._uU(22,"Lockup Address"),e.qZA(),e.TgZ(23,"span",5),e._uU(24),e.qZA()()()()),2&U){const P=e.oxw();e.xp6(6),e.Oqu(null==P.swapStatus?null:P.swapStatus.id),e.xp6(5),e.Oqu(e.lcZ(12,4,null==P.swapStatus?null:P.swapStatus.routingFeeMilliSat)),e.xp6(8),e.Oqu(null==P.swapStatus?null:P.swapStatus.claimTransactionId),e.xp6(5),e.Oqu(null==P.swapStatus?null:P.swapStatus.lockupAddress)}}function ar(U,Le){if(1&U&&(e.TgZ(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e._uU(4,"ID"),e.qZA(),e.TgZ(5,"span",5),e._uU(6),e.qZA()(),e.TgZ(7,"div",7)(8,"h4",8),e._uU(9,"Expected Amount (Sats)"),e.qZA(),e.TgZ(10,"span",5),e._uU(11),e.ALo(12,"number"),e.qZA()()(),e._UZ(13,"mat-divider",9),e.TgZ(14,"div",6)(15,"div",10)(16,"h4",8),e._uU(17,"Address"),e.qZA(),e.TgZ(18,"span",5),e._uU(19),e.qZA()()(),e._UZ(20,"mat-divider",9),e.TgZ(21,"div",6)(22,"div",10)(23,"h4",8),e._uU(24,"BIP 21"),e.qZA(),e.TgZ(25,"span",5),e._uU(26),e.qZA()()()()),2&U){const P=e.oxw();e.xp6(6),e.Oqu(null==P.swapStatus?null:P.swapStatus.id),e.xp6(5),e.Oqu(e.lcZ(12,4,null==P.swapStatus?null:P.swapStatus.expectedAmount)),e.xp6(8),e.Oqu(null==P.swapStatus?null:P.swapStatus.address),e.xp6(7),e.Oqu(null==P.swapStatus?null:P.swapStatus.bip21)}}let Hr=(()=>{class U{constructor(){this.swapStatus=null,this.direction=j.hc.SWAP_OUT,this.swapTypeEnum=j.hc}}return U.\u0275fac=function(P){return new(P||U)},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction"},decls:7,vars:1,consts:[[4,"ngTemplateOutlet"],["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"]],template:function(P,ne){if(1&P&&(e.YNc(0,Un,1,0,"ng-container",0),e.YNc(1,En,3,1,"ng-template",null,1,e.W1O),e.YNc(3,Pn,25,6,"ng-template",null,2,e.W1O),e.YNc(5,ar,27,6,"ng-template",null,3,e.W1O)),2&P){const Ye=e.MAs(2),Ht=e.MAs(4),Mi=e.MAs(6);e.Q6J("ngTemplateOutlet",null!=ne.swapStatus&&ne.swapStatus.error?Ye:ne.direction===ne.swapTypeEnum.SWAP_OUT?Ht:Mi)}},directives:[X.tP,_.xw,_.yH,_.Wh,Ge.d],pipes:[X.JJ],styles:[""]}),U})();var Cr=p(113);function la(U,Le){1&U&&e.GkF(0)}const Ir=function(U,Le){return{"small-svg":U,"large-svg":Le}};function Mr(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.qZA(),e.kcU(),e.TgZ(12,"div",18)(13,"mat-card-title"),e._uU(14,"Boltz Reverse Submarine Swap explained."),e.qZA()(),e.TgZ(15,"div",19)(16,"mat-card-subtitle",20),e._uU(17," Boltz is a privacy-first account free exchange and a Lightning Service Provider. By doing a Reverse Submarine Swap on Boltz, you can swap your Lightning Bitcoin for on-chain Bitcoin. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ir,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function Qr(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",21)(2,"g",22),e._UZ(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.qZA(),e._UZ(9,"path",29),e.TgZ(10,"defs")(11,"clipPath",30),e._UZ(12,"rect",31),e.qZA()()(),e.kcU(),e.TgZ(13,"div",18)(14,"mat-card-title"),e._uU(15,"Step 1: Deciding to Reverse Submarine Swap"),e.qZA()(),e.TgZ(16,"div",19)(17,"mat-card-subtitle",20),e._uU(18," You have one or more channels that are running low on inbound capacity or you want to move some of your Lightning Bitcoin to your onchain wallet. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ir,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function Gn(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",32),e._UZ(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),e.TgZ(9,"defs")(10,"pattern",40),e._UZ(11,"use",41),e.qZA(),e._UZ(12,"image",42),e.qZA()(),e.kcU(),e.TgZ(13,"div",18)(14,"mat-card-title"),e._uU(15,"Step 2: Paying the Lightning Invoice"),e.qZA()(),e.TgZ(16,"div",19)(17,"mat-card-subtitle",20),e._uU(18," Your Boltz client generates a secret which is sent to Boltz. In return Boltz sends a Lightning invoice based on that secret. Your Lightning node pays that invoice which moves some of your local balance to the other side of the channel. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ir,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function br(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",43)(2,"g",22),e._UZ(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),e.qZA(),e.TgZ(8,"defs")(9,"clipPath",30),e._UZ(10,"rect",49),e.qZA()()(),e.kcU(),e.TgZ(11,"div",18)(12,"mat-card-title"),e._uU(13,"Step 3: Receiving the funds on-chain"),e.qZA()(),e.TgZ(14,"div",19)(15,"mat-card-subtitle",20),e._uU(16," In return for paying the invoice, Boltz locks on-chain BTC. Your node claims that onchain BTC to your wallet and by doing that, reveals the secret. With that secret Boltz can settle the Lightning invoice paid by your node. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ir,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function Ka(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",50),e._UZ(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),e.qZA(),e.kcU(),e.TgZ(7,"div",18)(8,"mat-card-title"),e._uU(9,"Done!"),e.qZA()(),e.TgZ(10,"div",19)(11,"mat-card-subtitle",20),e._uU(12," You have now successfully received your funds in your on-chain wallet and also spent your local balance to increase the inbound capacity of your node - all in a non-custodial manner. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ir,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}let Ra=(()=>{class U{constructor(P){this.commonService=P,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.vpe,this.screenSize="",this.screenSizeEnum=j.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(P){2===P.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===P.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(fi.v))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","368","height","368","viewBox","0 0 368 368","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M306.667 153.333H276L260.667 184L233.797 153.763C229.441 148.861 224.595 144.24 218.529 141.746C212.54 139.284 206.099 138 199.561 138H92C41.19 138 1.52588e-05 179.19 1.52588e-05 230C1.52588e-05 280.81 41.19 322 92 322H199.561C206.099 322 212.54 320.715 218.529 318.254C224.595 315.761 229.441 311.139 233.797 306.237L260.667 276L276 306.667H306.667L291.333 260.667L306.667 230L291.333 199.333L306.667 153.333Z",1,"fill-color-0"],["d","M337.333 122.667H306.667L291.333 153.333L264.464 123.097C260.107 118.194 255.261 113.573 249.195 111.079C243.206 108.618 236.766 107.333 230.228 107.333H122.667C71.8566 107.333 30.6667 148.523 30.6667 199.333C30.6667 250.143 71.8566 291.333 122.667 291.333H230.228C236.766 291.333 243.206 290.048 249.195 287.587C255.261 285.094 260.107 280.473 264.464 275.571L291.333 245.333L306.667 276H337.333L322 230L337.333 199.333L322 168.667L337.333 122.667Z",1,"stroke-color-thicker"],["d","M214.667 245.333C206.198 245.333 199.333 238.468 199.333 230C199.333 221.532 206.198 214.667 214.667 214.667C223.135 214.667 230 221.532 230 230C230 238.468 223.135 245.333 214.667 245.333Z",1,"fill-color-15"],["d","M245.333 214.667C236.865 214.667 230 207.802 230 199.333C230 190.865 236.865 184 245.333 184C253.802 184 260.667 190.865 260.667 199.333C260.667 207.802 253.802 214.667 245.333 214.667Z",1,"stroke-color-thicker"],["d","M138 245.333C129.532 245.333 122.667 238.468 122.667 230C122.667 221.532 129.532 214.667 138 214.667C146.468 214.667 153.333 221.532 153.333 230C153.333 238.468 146.468 245.333 138 245.333Z",1,"fill-color-15"],["d","M168.667 214.667C160.198 214.667 153.333 207.802 153.333 199.333C153.333 190.865 160.198 184 168.667 184C177.135 184 184 190.865 184 199.333C184 207.802 177.135 214.667 168.667 214.667Z",1,"stroke-color-thicker"],["d","M61.3334 245.333C52.865 245.333 46 238.468 46 230C46 221.532 52.865 214.667 61.3334 214.667C69.8017 214.667 76.6667 221.532 76.6667 230C76.6667 238.468 69.8017 245.333 61.3334 245.333Z",1,"fill-color-15"],["d","M92 214.667C83.5316 214.667 76.6666 207.802 76.6666 199.333C76.6666 190.865 83.5316 184 92 184C100.468 184 107.333 190.865 107.333 199.333C107.333 207.802 100.468 214.667 92 214.667Z",1,"stroke-color-thicker"],["d","M239.077 111C241.796 111 244 113.204 244 115.923V126.077C244 128.796 241.796 131 239.077 131H191.923C189.204 131 187 128.796 187 126.077V115.923C187 113.204 189.204 111 191.923 111H239.077Z",1,"fill-color-15"],["d","M184 76.6666V107.333H122.667V76.6666H184Z",1,"stroke-color-thicker"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","383","height","279","viewBox","0 0 383 279","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M267.882 220.417V104.583C267.882 98.2125 263.809 93 258.832 93H114.029C109.051 93 104.978 98.2125 104.978 104.583V220.417C104.978 226.787 109.051 232 114.029 232H258.832C263.809 232 267.882 226.787 267.882 220.417Z",1,"fill-color-0"],["d","M357.75 197.625V81.375C357.75 74.9812 352.069 69.75 345.125 69.75H143.125C136.181 69.75 130.5 74.9812 130.5 81.375V197.625C130.5 204.019 136.181 209.25 143.125 209.25H345.125C352.069 209.25 357.75 204.019 357.75 197.625Z",1,"stroke-color-thin"],["d","M86.3125 186H105.25V139.5H86.3125C82.7775 139.5 80 142.057 80 145.312V180.188C80 183.443 82.7775 186 86.3125 186Z",1,"fill-color-15"],["d","M111.562 162.75H130.5V116.25H111.562C108.027 116.25 105.25 118.807 105.25 122.062V156.938C105.25 160.193 108.027 162.75 111.562 162.75Z",1,"stroke-color-thin"],["d","M205.979 116V150.875",1,"stroke-color-thin"],["d","M205.979 185.634V185.749",1,"stroke-color-thin"],["d","M2.44963 159.45C0.488815 161.41 0.488815 164.59 2.44963 166.55L34.403 198.504C36.3638 200.465 39.5429 200.465 41.5037 198.504C43.4645 196.543 43.4645 193.364 41.5037 191.403L13.1007 163L41.5037 134.597C43.4645 132.636 43.4645 129.457 41.5037 127.496C39.5429 125.535 36.3638 125.535 34.403 127.496L2.44963 159.45ZM65 157.979H6V168.021H65V157.979Z",1,"fill-color-15"],["id","clip0"],["width","303","height","279","transform","matrix(-1 0 0 1 383 0)",1,"fill-color-30"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["d","M138.762 67C136.099 73.913 133.436 81.3578 130.24 88.8025C130.24 88.8025 130.24 89.8661 131.305 89.8661H153.143C153.143 89.8661 153.143 90.3979 153.676 90.9296L121.718 126.558C121.185 126.026 121.185 125.495 121.185 124.963L132.371 101.033V98.9062H110V96.7791L137.164 67H138.762Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","317","y","81","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["fill-rule","evenodd","clip-rule","evenodd","d","M169.522 122.093C171.059 115.241 166.054 111.136 159.022 108.13L162.04 98.916L156.431 97.0797L153.493 106.051C152.019 105.569 150.502 105.104 148.995 104.643L151.953 95.613L146.348 93.7769L143.329 102.988C142.106 102.615 140.906 102.247 139.743 101.867L139.752 101.838L132.017 99.3019L130.057 105.293C130.057 105.293 134.224 106.57 134.131 106.624C136.402 107.369 136.71 108.93 136.552 110.138L133.115 120.635C133.271 120.687 133.473 120.761 133.695 120.869C133.66 120.857 133.626 120.846 133.591 120.834C133.562 120.825 133.534 120.816 133.505 120.806C133.375 120.763 133.24 120.719 133.102 120.675L128.284 135.38C127.95 136.062 127.157 137.065 125.569 136.548C125.62 136.635 121.492 135.211 121.492 135.211L118.184 141.544L125.483 143.935C126.298 144.203 127.103 144.476 127.899 144.746L127.901 144.747C128.431 144.927 128.956 145.105 129.479 145.28L126.429 154.6L132.031 156.436L135.051 147.215C136.579 147.75 138.064 148.25 139.517 148.725L136.509 157.902L142.118 159.739L145.166 150.437C154.773 152.984 162.15 152.77 165.87 144.183C168.867 137.27 166.555 132.99 161.623 129.952C165.417 129.361 168.406 127.109 169.522 122.093ZM155.149 139.449C153.059 145.84 143.068 142.413 138.496 140.845L138.496 140.845C138.085 140.704 137.718 140.578 137.404 140.476L141.449 128.129C141.831 128.254 142.299 128.395 142.829 128.555L142.829 128.555C147.571 129.985 157.289 132.916 155.149 139.449ZM144.22 122.79C148.031 124.108 156.343 126.982 158.247 121.175C160.192 115.234 152.086 112.815 148.127 111.634C147.682 111.501 147.289 111.383 146.969 111.279L143.301 122.477C143.565 122.563 143.874 122.67 144.22 122.79Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["width","225.692","height","225.692","transform","translate(0 85.983) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","298","height","300","viewBox","0 0 298 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M248.333 237.5V112.5C248.333 105.625 242.746 100 235.917 100H37.2501C30.421 100 24.8335 105.625 24.8335 112.5V237.5C24.8335 244.375 30.421 250 37.2501 250H235.917C242.746 250 248.333 244.375 248.333 237.5Z",1,"fill-color-0"],["d","M273.167 212.5V87.5C273.167 80.625 267.579 75 260.75 75H62.0832C55.254 75 49.6665 80.625 49.6665 87.5V212.5C49.6665 219.375 55.254 225 62.0832 225H260.75C267.579 225 273.167 219.375 273.167 212.5Z",1,"stroke-color"],["d","M6.20851 200H24.8335V150H6.20851C2.73185 150 0.000183105 152.75 0.000183105 156.25V193.75C0.000183105 197.25 2.73185 200 6.20851 200Z",1,"fill-color-0"],["d","M31.0415 175H49.6665V125H31.0415C27.5648 125 24.8331 127.75 24.8331 131.25V168.75C24.8331 172.25 27.5648 175 31.0415 175Z",1,"stroke-color"],["d","M161.417 187.5L142.792 150H180.042L161.417 112.5",1,"stroke-color"]],template:function(P,ne){if(1&P&&(e.YNc(0,la,1,0,"ng-container",0),e.YNc(1,Mr,18,5,"ng-template",null,1,e.W1O),e.YNc(3,Qr,19,5,"ng-template",null,2,e.W1O),e.YNc(5,Gn,19,5,"ng-template",null,3,e.W1O),e.YNc(7,br,17,5,"ng-template",null,4,e.W1O),e.YNc(9,Ka,13,5,"ng-template",null,5,e.W1O)),2&P){const Ye=e.MAs(2),Ht=e.MAs(4),Mi=e.MAs(6),Ki=e.MAs(8),mn=e.MAs(10);e.Q6J("ngTemplateOutlet",1===ne.stepNumber?Ye:2===ne.stepNumber?Ht:3===ne.stepNumber?Mi:4===ne.stepNumber?Ki:mn)}},directives:[X.tP,_.xw,_.yH,_.Wh,X.mk,Dn.oO,N.n5,N.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Cr.l]}}),U})();function Ss(U,Le){1&U&&e.GkF(0)}const Ma=function(U,Le){return{"small-svg":U,"large-svg":Le}};function La(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.qZA(),e.kcU(),e.TgZ(12,"div",18)(13,"mat-card-title"),e._uU(14,"Boltz Submarine Swaps explained."),e.qZA()(),e.TgZ(15,"div",19)(16,"mat-card-subtitle",20),e._uU(17," Boltz is a privacy-first account free exchange and a Lightning service provider. By doing a Submarine Swap on Boltz, you can swap your on-chain Bitcoin for Lightning Bitcoin. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ma,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function gs(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",21),e._UZ(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.qZA(),e.kcU(),e.TgZ(9,"div",18)(10,"mat-card-title"),e._uU(11,"Step 1: Deciding to Submarine Swap"),e.qZA()(),e.TgZ(12,"div",19)(13,"mat-card-subtitle",20),e._uU(14," You have one or more Lightning channels that are running low on outbound liquidity and you want to fund it using your on-chain Bitcoin. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ma,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function _s(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",29),e._UZ(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),e.TgZ(9,"defs")(10,"pattern",37),e._UZ(11,"use",38),e.qZA(),e._UZ(12,"image",39),e.qZA()(),e.kcU(),e.TgZ(13,"div",18)(14,"mat-card-title"),e._uU(15,"Step 2: Sending the on-chain funds"),e.qZA()(),e.TgZ(16,"div",19)(17,"mat-card-subtitle",20),e._uU(18," You send the on-chain funds to an address which can only be spent by Boltz when it pays a Lightning invoice to your node. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ma,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function cn(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",40)(2,"g",41),e._UZ(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),e.qZA(),e.TgZ(8,"defs")(9,"clipPath",47),e._UZ(10,"rect",48),e.qZA()()(),e.kcU(),e.TgZ(11,"div",18)(12,"mat-card-title"),e._uU(13,"Step 3: Receiving the funds on Lightning"),e.qZA()(),e.TgZ(14,"div",19)(15,"mat-card-subtitle",20),e._uU(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ma,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}function xn(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(Ye){return e.CHM(P),e.oxw().onSwipe(Ye)}),e.O4$(),e.TgZ(1,"svg",49),e._UZ(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),e.qZA(),e.kcU(),e.TgZ(7,"div",18)(8,"mat-card-title"),e._uU(9,"Done!"),e.qZA()(),e.TgZ(10,"div",19)(11,"mat-card-subtitle",20),e._uU(12," You swapped your on-chain Bitcoin for Lightning Bitcoin, while also adding outbound capacity for your channels in the process - all in a non-custodial manner. "),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@sliderAnimation",P.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,Ma,P.screenSize===P.screenSizeEnum.XS,P.screenSize!==P.screenSizeEnum.XS))}}let Tn=(()=>{class U{constructor(P){this.commonService=P,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.vpe,this.screenSize="",this.screenSizeEnum=j.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(P){2===P.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===P.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(fi.v))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","323","height","323","viewBox","0 0 323 323","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M53.8333 134.583H80.75L94.2083 161.5L117.792 134.961C121.616 130.658 125.869 126.602 131.194 124.413C136.45 122.252 142.103 121.125 147.842 121.125H242.25C286.847 121.125 323 157.278 323 201.875C323 246.472 286.847 282.625 242.25 282.625H147.842C142.103 282.625 136.45 281.497 131.194 279.337C125.869 277.149 121.616 273.092 117.792 268.79L94.2083 242.25L80.75 269.167H53.8333L67.2917 228.792L53.8333 201.875L67.2917 174.958L53.8333 134.583Z",1,"fill-color-0"],["d","M26.9167 107.667H53.8333L67.2917 134.583L90.8755 108.044C94.6993 103.741 98.9527 99.6849 104.277 97.4963C109.534 95.3357 115.187 94.2083 120.925 94.2083H215.333C259.93 94.2083 296.083 130.361 296.083 174.958C296.083 219.555 259.93 255.708 215.333 255.708H120.925C115.187 255.708 109.534 254.581 104.277 252.42C98.9527 250.232 94.6993 246.176 90.8755 241.873L67.2917 215.333L53.8333 242.25H26.9167L40.375 201.875L26.9167 174.958L40.375 148.042L26.9167 107.667Z",1,"stroke-color-thick"],["d","M134.583 215.333C142.016 215.333 148.042 209.308 148.042 201.875C148.042 194.442 142.016 188.417 134.583 188.417C127.151 188.417 121.125 194.442 121.125 201.875C121.125 209.308 127.151 215.333 134.583 215.333Z",1,"fill-color-15"],["d","M107.667 188.417C115.1 188.417 121.125 182.391 121.125 174.958C121.125 167.526 115.1 161.5 107.667 161.5C100.234 161.5 94.2083 167.526 94.2083 174.958C94.2083 182.391 100.234 188.417 107.667 188.417Z",1,"stroke-color-thick"],["d","M201.875 215.333C209.308 215.333 215.333 209.308 215.333 201.875C215.333 194.442 209.308 188.417 201.875 188.417C194.442 188.417 188.417 194.442 188.417 201.875C188.417 209.308 194.442 215.333 201.875 215.333Z",1,"fill-color-15"],["d","M174.958 188.417C182.391 188.417 188.417 182.391 188.417 174.958C188.417 167.526 182.391 161.5 174.958 161.5C167.526 161.5 161.5 167.526 161.5 174.958C161.5 182.391 167.526 188.417 174.958 188.417Z",1,"stroke-color-thick"],["d","M269.167 215.333C276.599 215.333 282.625 209.308 282.625 201.875C282.625 194.442 276.599 188.417 269.167 188.417C261.734 188.417 255.708 194.442 255.708 201.875C255.708 209.308 261.734 215.333 269.167 215.333Z",1,"fill-color-15"],["d","M242.25 188.417C249.683 188.417 255.708 182.391 255.708 174.958C255.708 167.526 249.683 161.5 242.25 161.5C234.817 161.5 228.792 167.526 228.792 174.958C228.792 182.391 234.817 188.417 242.25 188.417Z",1,"stroke-color-thick"],["d","M189.321 97C186.935 97 185 98.9345 185 101.321V112.679C185 115.065 186.935 117 189.321 117H237.679C240.065 117 242 115.065 242 112.679V101.321C242 98.9345 240.065 97 237.679 97H189.321Z",1,"fill-color-15"],["d","M161.5 67.2917V94.2083H215.333V67.2917H161.5Z",1,"stroke-color-thick"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","347","height","169","viewBox","0 0 347 169","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M89 157.417V41.5833C89 35.2125 92.75 30 97.3333 30H230.667C235.25 30 239 35.2125 239 41.5833V157.417C239 163.787 235.25 169 230.667 169H97.3333C92.75 169 89 163.787 89 157.417Z",1,"fill-color-0"],["d","M6.25 134.625V18.375C6.25 11.9812 11.4812 6.75 17.875 6.75H203.875C210.269 6.75 215.5 11.9812 215.5 18.375V134.625C215.5 141.019 210.269 146.25 203.875 146.25H17.875C11.4812 146.25 6.25 141.019 6.25 134.625Z",1,"stroke-color-thin"],["d","M256.188 123H238.75V76.5H256.188C259.442 76.5 262 79.0575 262 82.3125V117.188C262 120.443 259.442 123 256.188 123Z",1,"fill-color-15"],["d","M232.938 99.75H215.5V53.25H232.938C236.193 53.25 238.75 55.8075 238.75 59.0625V93.9375C238.75 97.1925 236.193 99.75 232.938 99.75Z",1,"stroke-color-thin"],["d","M146 53V87.875",1,"stroke-color-thin"],["d","M146 122.634V122.749",1,"stroke-color-thin"],["d","M344.698 95.3022C346.74 97.3445 346.74 100.656 344.698 102.698L311.418 135.978C309.376 138.02 306.065 138.02 304.022 135.978C301.98 133.935 301.98 130.624 304.022 128.582L333.604 99L304.022 69.418C301.98 67.3758 301.98 64.0647 304.022 62.0225C306.065 59.9803 309.376 59.9803 311.418 62.0225L344.698 95.3022ZM277 93.7706L341 93.7706V104.229L277 104.229V93.7706Z",1,"fill-color-15"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["fill-rule","evenodd","clip-rule","evenodd","d","M161.033 82.5635C162.307 74.0523 155.826 69.4769 146.965 66.4247L149.84 54.8952L142.822 53.1462L140.023 64.3718C138.178 63.9121 136.283 63.4783 134.4 63.0486L137.219 51.749L130.205 50L127.328 61.5255C125.801 61.1777 124.302 60.8338 122.847 60.4721L122.855 60.4361L113.177 58.0194L111.31 65.5152C111.31 65.5152 116.517 66.7085 116.407 66.7825C119.249 67.4921 119.763 69.373 119.677 70.8641L116.403 83.9987C116.599 84.0487 116.852 84.1206 117.132 84.2326C117.096 84.2236 117.06 84.2146 117.023 84.2054C116.981 84.1948 116.938 84.184 116.894 84.1731C116.732 84.1323 116.563 84.09 116.391 84.0487L111.801 102.448C111.453 103.312 110.572 104.607 108.585 104.115C108.655 104.217 103.484 102.842 103.484 102.842L100 110.875L109.133 113.152C110.152 113.408 111.16 113.67 112.156 113.93L112.158 113.931L112.159 113.931C112.823 114.104 113.481 114.276 114.136 114.443L111.232 126.105L118.242 127.854L121.118 116.316C123.033 116.836 124.892 117.316 126.711 117.768L123.844 129.251L130.862 131L133.767 119.361C145.734 121.625 154.733 120.712 158.521 109.888C161.573 101.173 158.369 96.1458 152.072 92.8677C156.658 91.8103 160.112 88.794 161.033 82.5635ZM144.998 105.049C143.008 113.044 130.493 109.739 124.766 108.226L124.766 108.226C124.251 108.09 123.791 107.969 123.398 107.871L127.252 92.4219C127.73 92.5412 128.314 92.6723 128.976 92.8208L128.976 92.8208C134.899 94.1498 147.037 96.8734 144.998 105.049ZM130.167 85.6513C134.942 86.9255 145.356 89.7047 147.17 82.4376C149.022 75.0044 138.901 72.7637 133.957 71.6694C133.401 71.5463 132.911 71.4377 132.51 71.3379L129.016 85.3499C129.346 85.4322 129.733 85.5356 130.167 85.6513Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","313.615","y","82.836","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["d","M154.81 93.8059C152.146 100.719 149.483 108.164 146.287 115.608C146.287 115.608 146.287 116.672 147.353 116.672H169.191C169.191 116.672 169.191 117.204 169.723 117.736L137.765 153.364C137.233 152.832 137.233 152.301 137.233 151.769L148.418 127.839V125.712H126.047V123.585L153.212 93.8059H154.81Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["id","clip0"],["width","225.692","height","225.692","transform","translate(0 85.9831) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","300","height","300","viewBox","0 0 300 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M50 237.5V112.5C50 105.625 55.625 100 62.5 100H262.5C269.375 100 275 105.625 275 112.5V237.5C275 244.375 269.375 250 262.5 250H62.5C55.625 250 50 244.375 50 237.5Z",1,"fill-color-0"],["d","M25 212.5V87.5C25 80.625 30.625 75 37.5 75H237.5C244.375 75 250 80.625 250 87.5V212.5C250 219.375 244.375 225 237.5 225H37.5C30.625 225 25 219.375 25 212.5Z",1,"stroke-color"],["d","M293.75 200H275V150H293.75C297.25 150 300 152.75 300 156.25V193.75C300 197.25 297.25 200 293.75 200Z",1,"fill-color-0"],["d","M268.75 175H250V125H268.75C272.25 125 275 127.75 275 131.25V168.75C275 172.25 272.25 175 268.75 175Z",1,"stroke-color"],["d","M137.5 187.5L156.25 150H118.75L137.5 112.5",1,"stroke-color"]],template:function(P,ne){if(1&P&&(e.YNc(0,Ss,1,0,"ng-container",0),e.YNc(1,La,18,5,"ng-template",null,1,e.W1O),e.YNc(3,gs,15,5,"ng-template",null,2,e.W1O),e.YNc(5,_s,19,5,"ng-template",null,3,e.W1O),e.YNc(7,cn,17,5,"ng-template",null,4,e.W1O),e.YNc(9,xn,13,5,"ng-template",null,5,e.W1O)),2&P){const Ye=e.MAs(2),Ht=e.MAs(4),Mi=e.MAs(6),Ki=e.MAs(8),mn=e.MAs(10);e.Q6J("ngTemplateOutlet",1===ne.stepNumber?Ye:2===ne.stepNumber?Ht:3===ne.stepNumber?Mi:4===ne.stepNumber?Ki:mn)}},directives:[X.tP,_.xw,_.yH,_.Wh,X.mk,Dn.oO,N.n5,N.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Cr.l]}}),U})();const $n=["stepper"];function mr(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw(2);e.Oqu(P.inputFormLabel)}}function Da(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function Wr(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.ALo(2,"number"),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.hij("Amount must be greater than or equal to ",e.lcZ(2,1,null==P.serviceInfo||null==P.serviceInfo.limits?null:P.serviceInfo.limits.minimal),".")}}function $a(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.ALo(2,"number"),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.hij("Amount must be less than or equal to ",e.lcZ(2,1,null==P.serviceInfo||null==P.serviceInfo.limits?null:P.serviceInfo.limits.maximal),".")}}function dr(U,Le){1&U&&(e.TgZ(0,"button",40),e._uU(1,"Next"),e.qZA())}function at(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",41),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onSwap()}),e._uU(1),e.qZA()}if(2&U){const P=e.oxw(2);e.xp6(1),e.hij("Initiate ",P.swapDirectionCaption,"")}}function St(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw(3);e.Oqu(P.addressFormLabel)}}function wt(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Address is required."),e.qZA())}function zt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-step",15)(1,"form",16),e.YNc(2,St,1,1,"ng-template",17),e.TgZ(3,"div",42)(4,"mat-radio-group",43),e.NdJ("change",function(Ye){return e.CHM(P),e.oxw(2).onAddressTypeChange(Ye)}),e.TgZ(5,"mat-radio-button",44),e._uU(6,"Node Local Address"),e.qZA(),e.TgZ(7,"mat-radio-button",45),e._uU(8,"External Address"),e.qZA()(),e.TgZ(9,"mat-form-field",46),e._UZ(10,"input",47),e.YNc(11,wt,2,0,"mat-error",24),e.qZA()(),e.TgZ(12,"div",25)(13,"button",48),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onSwap()}),e._uU(14),e.qZA()()()()}if(2&U){const P=e.oxw(2);e.Q6J("stepControl",P.addressFormGroup)("editable",P.flgEditable),e.xp6(1),e.Q6J("formGroup",P.addressFormGroup),e.xp6(9),e.Q6J("required","external"===P.addressFormGroup.controls.addressType.value),e.xp6(1),e.Q6J("ngIf",null==P.addressFormGroup.controls.address.errors?null:P.addressFormGroup.controls.address.errors.required),e.xp6(3),e.hij("Initiate ",P.swapDirectionCaption,"")}}function Xt(U,Le){if(1&U&&e._uU(0),2&U){const P=e.oxw(2);e.hij("",P.swapDirectionCaption," Status")}}function pi(U,Le){if(1&U&&(e.TgZ(0,"mat-icon",49),e._uU(1),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.Oqu(P.swapStatus&&null!=P.swapStatus&&P.swapStatus.id?"check":"close")}}function _i(U,Le){1&U&&e._UZ(0,"div")}function Pi(U,Le){1&U&&e._UZ(0,"mat-progress-bar",50)}function zi(U,Le){if(1&U&&(e.TgZ(0,"h4",51),e._uU(1),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.Oqu(P.swapStatus&&P.swapStatus.error?P.swapDirectionCaption+" failed.":P.swapStatus&&P.swapStatus.id?P.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":P.swapDirectionCaption+" request placed successfully.")}}function ln(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",52),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onRestart()}),e._uU(1,"Start Again"),e.qZA()}}function nn(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e._uU(5),e.qZA()(),e.TgZ(6,"div",8)(7,"button",9),e.NdJ("click",function(){return e.CHM(P),e.oxw().showInfo()}),e._uU(8,"?"),e.qZA(),e.TgZ(9,"button",10),e.NdJ("click",function(){return e.CHM(P),e.oxw().onClose()}),e._uU(10,"X"),e.qZA()()(),e.TgZ(11,"mat-card-content",11)(12,"div",12)(13,"mat-vertical-stepper",13,14),e.NdJ("selectionChange",function(Ye){return e.CHM(P),e.oxw().stepSelectionChanged(Ye)}),e.TgZ(15,"mat-step",15)(16,"form",16),e.YNc(17,mr,1,1,"ng-template",17),e.TgZ(18,"div",18),e._UZ(19,"rtl-boltz-service-info",19),e.qZA(),e.TgZ(20,"div",20)(21,"mat-form-field",21),e._UZ(22,"input",22),e.TgZ(23,"mat-hint"),e._uU(24),e.ALo(25,"number"),e.ALo(26,"number"),e.qZA(),e.TgZ(27,"span",23),e._uU(28,"Sats"),e.qZA(),e.YNc(29,Da,2,0,"mat-error",24),e.YNc(30,Wr,3,3,"mat-error",24),e.YNc(31,$a,3,3,"mat-error",24),e.qZA()(),e.TgZ(32,"div",25),e.YNc(33,dr,2,0,"button",26),e.YNc(34,at,2,1,"button",27),e.qZA()()(),e.YNc(35,zt,15,6,"mat-step",28),e.TgZ(36,"mat-step",29)(37,"form",16),e.YNc(38,Xt,1,1,"ng-template",17),e.TgZ(39,"div",30)(40,"mat-expansion-panel",31)(41,"mat-expansion-panel-header")(42,"mat-panel-title")(43,"span",32),e._uU(44),e.YNc(45,pi,2,1,"mat-icon",33),e.qZA()()(),e.YNc(46,_i,1,0,"div",34),e.qZA(),e.YNc(47,Pi,1,0,"mat-progress-bar",35),e.qZA(),e.YNc(48,zi,2,1,"h4",36),e.TgZ(49,"div",25),e.YNc(50,ln,2,0,"button",37),e.qZA()()()(),e.TgZ(51,"div",38)(52,"button",39),e._uU(53,"Close"),e.qZA()()()()()()}if(2&U){const P=e.oxw(),ne=e.MAs(2);e.Q6J("@opacityAnimation",void 0),e.xp6(3),e.Q6J("fxFlex",P.screenSize===P.screenSizeEnum.XS||P.screenSize===P.screenSizeEnum.SM?"83":"91"),e.xp6(2),e.Oqu(P.swapDirectionCaption),e.xp6(1),e.Q6J("fxFlex",P.screenSize===P.screenSizeEnum.XS||P.screenSize===P.screenSizeEnum.SM?"17":"9"),e.xp6(7),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",P.inputFormGroup)("editable",P.flgEditable),e.xp6(1),e.Q6J("formGroup",P.inputFormGroup),e.xp6(3),e.Q6J("serviceInfo",P.serviceInfo)("direction",P.direction),e.xp6(3),e.Q6J("step",1e3),e.xp6(2),e.AsE("Range: ",e.lcZ(25,30,null==P.serviceInfo||null==P.serviceInfo.limits?null:P.serviceInfo.limits.minimal),"-",e.lcZ(26,32,null==P.serviceInfo||null==P.serviceInfo.limits?null:P.serviceInfo.limits.maximal),""),e.xp6(5),e.Q6J("ngIf",null==P.inputFormGroup||null==P.inputFormGroup.controls||null==P.inputFormGroup.controls.amount||null==P.inputFormGroup.controls.amount.errors?null:P.inputFormGroup.controls.amount.errors.required),e.xp6(1),e.Q6J("ngIf",null==P.inputFormGroup||null==P.inputFormGroup.controls||null==P.inputFormGroup.controls.amount||null==P.inputFormGroup.controls.amount.errors?null:P.inputFormGroup.controls.amount.errors.min),e.xp6(1),e.Q6J("ngIf",null==P.inputFormGroup||null==P.inputFormGroup.controls||null==P.inputFormGroup.controls.amount||null==P.inputFormGroup.controls.amount.errors?null:P.inputFormGroup.controls.amount.errors.max),e.xp6(2),e.Q6J("ngIf",P.direction===P.swapTypeEnum.SWAP_OUT),e.xp6(1),e.Q6J("ngIf",P.direction===P.swapTypeEnum.SWAP_IN),e.xp6(1),e.Q6J("ngIf",P.direction===P.swapTypeEnum.SWAP_OUT),e.xp6(1),e.Q6J("stepControl",P.statusFormGroup),e.xp6(1),e.Q6J("formGroup",P.statusFormGroup),e.xp6(3),e.Q6J("expanded",!!P.swapStatus),e.xp6(4),e.Oqu(P.swapStatus?P.swapStatus.id?P.swapDirectionCaption+" request details":P.swapDirectionCaption+" error details":"Waiting for "+P.swapDirectionCaption+" request..."),e.xp6(1),e.Q6J("ngIf",P.swapStatus),e.xp6(1),e.Q6J("ngIf",!P.swapStatus)("ngIfElse",ne),e.xp6(1),e.Q6J("ngIf",!P.swapStatus),e.xp6(1),e.Q6J("ngIf",P.swapStatus),e.xp6(2),e.Q6J("ngIf",P.swapStatus&&(P.swapStatus.error||!P.swapStatus.id)),e.xp6(2),e.Q6J("mat-dialog-close",!1)}}function un(U,Le){if(1&U&&e._UZ(0,"rtl-boltz-swap-status",53),2&U){const P=e.oxw();e.Q6J("swapStatus",P.swapStatus)("direction",P.direction)}}function qn(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"rtl-boltz-swapout-info-graphics",70),e.NdJ("stepNumberChange",function(Ye){return e.CHM(P),e.oxw(2).stepNumber=Ye}),e.qZA()}if(2&U){const P=e.oxw(2);e.Q6J("stepNumber",P.stepNumber)("animationDirection",P.animationDirection)}}function rr(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"rtl-boltz-swapin-info-graphics",70),e.NdJ("stepNumberChange",function(Ye){return e.CHM(P),e.oxw(2).stepNumber=Ye}),e.qZA()}if(2&U){const P=e.oxw(2);e.Q6J("stepNumber",P.stepNumber)("animationDirection",P.animationDirection)}}const ca=function(U,Le){return{"dot-primary":U,"dot-primary-lighter":Le}};function ze(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"span",71),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw(2).onStepChanged(Ht)}),e._UZ(1,"p",72),e.qZA()}if(2&U){const P=Le.$implicit,ne=e.oxw(2);e.xp6(1),e.Q6J("ngClass",e.WLB(1,ca,ne.stepNumber===P,ne.stepNumber!==P))}}function Se(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",73),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onReadMore()}),e._uU(1,"Read More"),e.qZA()}}function me(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",74),e.NdJ("click",function(){return e.CHM(P),e.oxw(2).onStepChanged(4)}),e._uU(1,"Back"),e.qZA()}}function qe(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",75),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw(2);return Ye.flgShowInfo=!1,Ye.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function ct(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",76),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw(2);return Ye.flgShowInfo=!1,Ye.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function Pt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",77),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw(2);return Ye.onStepChanged(Ye.stepNumber-1)}),e._uU(1,"Back"),e.qZA()}}function qt(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",78),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw(2);return Ye.onStepChanged(Ye.stepNumber+1)}),e._uU(1,"Next"),e.qZA()}}const ai=function(){return[1,2,3,4,5]};function Oi(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",54)(1,"div",18)(2,"mat-card-header",55)(3,"div",56),e._UZ(4,"span",7),e.qZA(),e.TgZ(5,"div",57)(6,"button",58),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.flgShowInfo=!1,Ye.stepNumber=1}),e._uU(7,"X"),e.qZA()()(),e.TgZ(8,"mat-card-content",59),e.YNc(9,qn,1,2,"rtl-boltz-swapout-info-graphics",60),e.YNc(10,rr,1,2,"rtl-boltz-swapin-info-graphics",60),e.qZA(),e.TgZ(11,"div",61),e.YNc(12,ze,2,4,"span",62),e.qZA(),e.TgZ(13,"div",63),e.YNc(14,Se,2,0,"button",64),e.YNc(15,me,2,0,"button",65),e.YNc(16,qe,2,0,"button",66),e.YNc(17,ct,2,0,"button",67),e.YNc(18,Pt,2,0,"button",68),e.YNc(19,qt,2,0,"button",69),e.qZA()()()}if(2&U){const P=e.oxw();e.Q6J("@opacityAnimation",void 0),e.xp6(9),e.Q6J("ngIf",P.direction===P.swapTypeEnum.SWAP_OUT),e.xp6(1),e.Q6J("ngIf",P.direction===P.swapTypeEnum.SWAP_IN),e.xp6(2),e.Q6J("ngForOf",e.DdM(10,ai)),e.xp6(2),e.Q6J("ngIf",5===P.stepNumber),e.xp6(1),e.Q6J("ngIf",5===P.stepNumber),e.xp6(1),e.Q6J("ngIf",5===P.stepNumber),e.xp6(1),e.Q6J("ngIf",P.stepNumber<5),e.xp6(1),e.Q6J("ngIf",P.stepNumber>1&&P.stepNumber<5),e.xp6(1),e.Q6J("ngIf",P.stepNumber<5)}}let an=(()=>{class U{constructor(P,ne,Ye,Ht,Mi,Ki,mn){this.dialogRef=P,this.data=ne,this.boltzService=Ye,this.formBuilder=Ht,this.decimalPipe=Mi,this.logger=Ki,this.commonService=mn,this.faInfoCircle=y.sqG,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=j.hc,this.direction=j.hc.SWAP_OUT,this.swapDirectionCaption="Swap out",this.swapStatus=null,this.inputFormLabel="Amount to swap out",this.addressFormLabel="Withdrawal Address",this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=j.cu,this.animationDirection="forward",this.flgEditable=!0,this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x,new h.x]}ngOnInit(){var P,ne,Ye;this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||j.hc.SWAP_OUT,this.swapDirectionCaption=this.direction===j.hc.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[null===(P=this.serviceInfo.limits)||void 0===P?void 0:P.minimal,[Ie.kI.required,Ie.kI.min((null===(ne=this.serviceInfo.limits)||void 0===ne?void 0:ne.minimal)||0),Ie.kI.max((null===(Ye=this.serviceInfo.limits)||void 0===Ye?void 0:Ye.maximal)||0)]]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[Ie.kI.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges()}ngAfterViewInit(){this.direction===j.hc.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===j.hc.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,x.R)(this.unSubs[2])).subscribe(P=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(P){"external"===P.value?(this.addressFormGroup.controls.address.setValidators([Ie.kI.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onSwap(){var P,ne,Ye;if(!this.inputFormGroup.controls.amount.value||(null===(P=this.serviceInfo.limits)||void 0===P?void 0:P.minimal)&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||(null===(ne=this.serviceInfo.limits)||void 0===ne?void 0:ne.maximal)&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===j.hc.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;this.flgEditable=!1,null===(Ye=this.stepper.selected)||void 0===Ye||Ye.stepControl.setErrors(null),this.stepper.next(),this.direction===j.hc.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value).pipe((0,x.R)(this.unSubs[3])).subscribe({next:Ht=>{this.swapStatus=Ht,this.boltzService.listSwaps(),this.flgEditable=!0},error:Ht=>{this.swapStatus={error:Ht},this.flgEditable=!0,this.logger.error(Ht)}}):this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"").pipe((0,x.R)(this.unSubs[4])).subscribe({next:Mi=>{this.swapStatus=Mi,this.boltzService.listSwaps(),this.flgEditable=!0},error:Mi=>{this.swapStatus={error:Mi},this.flgEditable=!0,this.logger.error(Mi)}})}stepSelectionChanged(P){switch(P.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value?this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats":"Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address"}P.selectedIndex{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(dn),e.Y36(Ie.qu),e.Y36(X.JJ),e.Y36(Me.mQ),e.Y36(fi.v))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(P,ne){if(1&P&&e.Gf($n,5),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.stepper=Ye.first)}},decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["swapStatusBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"serviceInfo","direction"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxFlex","48"],["autoFocus","","matInput","","placeholder","Amount","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext","",4,"ngIf"],["mat-button","","color","primary","tabindex","3","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext",""],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxFlex","100",1,"mt-1"],["matInput","","placeholder","Address","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"swapStatus","direction"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["tabindex","19","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange"],["fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(P,ne){1&P&&(e.YNc(0,nn,54,34,"div",0),e.YNc(1,un,1,2,"ng-template",null,1,e.W1O),e.YNc(3,Oi,20,11,"div",2)),2&P&&(e.Q6J("ngIf",!ne.flgShowInfo),e.xp6(3),e.Q6J("ngIf",ne.flgShowInfo))},directives:[X.O5,_.xw,_.yH,_.Wh,N.dk,Te.lW,N.dn,di.Vq,di.C0,Ie._Y,Ie.JL,Ie.sg,di.VY,An,ut.KE,Yt.Nt,Ie.wV,Ie.Fj,we.h,Ie.JJ,Ie.u,Ie.Q7,ut.bx,ut.R9,ut.TO,di.Ic,pn.VQ,pn.U0,Li.ib,Li.yz,Li.yK,ia.Hw,en.pW,Q.ZT,Hr,Ra,Tn,X.sg,X.mk,Dn.oO],pipes:[X.JJ],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:60rem;min-height:60rem}"],data:{animation:[Vt._]}}),U})();function On(U,Le){if(1&U&&(e.TgZ(0,"mat-option",42),e._uU(1),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("value",P),e.xp6(1),e.Oqu(ne.getLabel(P))}}function Cn(U,Le){1&U&&e._UZ(0,"mat-progress-bar",43)}function _r(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Status"),e.qZA())}function ur(U,Le){if(1&U&&(e.TgZ(0,"td",45),e._uU(1),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Oqu(ne.swapStateEnum[null==P?null:P.status])}}function os(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Swap ID"),e.qZA())}function ks(U,Le){if(1&U&&(e.TgZ(0,"td",45),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.xp6(1),e.Oqu(null==P?null:P.id)}}function Qo(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Claim Address"),e.qZA())}const Es=function(U){return{width:U}};function Ia(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.claimAddress)}}function Gs(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Lockup Address"),e.qZA())}function jc(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.lockupAddress)}}function no(U,Le){1&U&&(e.TgZ(0,"th",48),e._uU(1,"Onchain Amount (Sats)"),e.qZA())}function K1(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",49),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==P?null:P.onchainAmount))}}function qo(U,Le){1&U&&(e.TgZ(0,"th",48),e._uU(1,"Expected Amount (Sats)"),e.qZA())}function Wl(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",49),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==P?null:P.expectedAmount))}}function ml(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Error"),e.qZA())}function Yl(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.error)}}function mo(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Private Key"),e.qZA())}function Ao(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.privateKey)}}function Jo(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Preimage"),e.qZA())}function gl(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.preimage)}}function jl(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Redeem Script"),e.qZA())}function Lo(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.redeemScript)}}function Kc(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Invoice"),e.qZA())}function Qc(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",46)(2,"span",47),e._uU(3),e.qZA()()()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Es,ne.screenSize===ne.screenSizeEnum.XS?"10rem":ne.colWidth)),e.xp6(2),e.Oqu(null==P?null:P.invoice)}}function Yr(U,Le){1&U&&(e.TgZ(0,"th",48),e._uU(1,"Timeout Block Height"),e.qZA())}function go(U,Le){if(1&U&&(e.TgZ(0,"td",45)(1,"span",49),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&U){const P=Le.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==P?null:P.timeoutBlockHeight))}}function Xo(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Lockup Tx ID"),e.qZA())}function Q1(U,Le){if(1&U&&(e.TgZ(0,"td",45),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.xp6(1),e.Oqu(null==P?null:P.lockupTransactionId)}}function Ba(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Claim Tx ID"),e.qZA())}function Qa(U,Le){if(1&U&&(e.TgZ(0,"td",45),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.xp6(1),e.Oqu(null==P?null:P.claimTransactionId)}}function q1(U,Le){1&U&&(e.TgZ(0,"th",44),e._uU(1,"Refund Tx ID"),e.qZA())}function Kl(U,Le){if(1&U&&(e.TgZ(0,"td",45),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.xp6(1),e.Oqu(null==P?null:P.refundTransactionId)}}function ro(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"th",50)(1,"div",51)(2,"mat-select",52),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",53),e.NdJ("click",function(){return e.CHM(P),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Do(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"td",54)(1,"button",55),e.NdJ("click",function(Ye){const Mi=e.CHM(P).$implicit;return e.oxw().onSwapClick(Mi,Ye)}),e._uU(2,"View Info"),e.qZA()()}}function wa(U,Le){if(1&U&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&U){const P=e.oxw(2);e.xp6(1),e.Oqu(P.emptyTableMessage)}}function Ts(U,Le){if(1&U&&(e.TgZ(0,"td",56),e.YNc(1,wa,2,1,"p",57),e.qZA()),2&U){const P=e.oxw();e.xp6(1),e.Q6J("ngIf",!(null!=P.listSwaps&&P.listSwaps.data)||(null==P.listSwaps||null==P.listSwaps.data?null:P.listSwaps.data.length)<1)}}const Io=function(U){return{"display-none":U}};function J1(U,Le){if(1&U&&e._UZ(0,"tr",58),2&U){const P=e.oxw();e.Q6J("ngClass",e.VKq(1,Io,(null==P.listSwaps?null:P.listSwaps.data)&&(null==P.listSwaps||null==P.listSwaps.data?null:P.listSwaps.data.length)>0))}}function X1(U,Le){1&U&&e._UZ(0,"tr",59)}function ls(U,Le){1&U&&e._UZ(0,"tr",60)}const es=function(){return["all"]},qc=function(U){return{"overflow-auto error-border":U,"overflow-auto":!0}},_l=function(){return["no_swap"]};let $o=(()=>{class U{constructor(P,ne,Ye,Ht,Mi){this.logger=P,this.commonService=ne,this.store=Ye,this.boltzService=Ht,this.camelCaseWithReplace=Mi,this.selectedSwapType=j.hc.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=j.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:j.IV,sortBy:"status",sortOrder:j.Pi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:j.IV,sortBy:"status",sortOrder:j.Pi.DESCENDING},this.swapStateEnum=j.Qw,this.faHistory=y.qO$,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new yi.by([]),this.selFilter="",this.pageSize=j.IV,this.pageSizeOptions=j.TJ,this.screenSize="",this.screenSizeEnum=j.cu,this.unSubs=[new h.x,new h.x,new h.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Sr.Pr).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{var ne,Ye,Ht,Mi;this.tableSettingSwapOut=(null===(ne=P.pageSettings.find(Ki=>Ki.pageId===this.PAGE_ID))||void 0===ne?void 0:ne.tables.find(Ki=>Ki.tableId===this.tableSettingSwapOut.tableId))||(null===(Ye=j.gK.find(Ki=>Ki.pageId===this.PAGE_ID))||void 0===Ye?void 0:Ye.tables.find(Ki=>Ki.tableId===this.tableSettingSwapOut.tableId)),this.tableSettingSwapIn=(null===(Ht=P.pageSettings.find(Ki=>Ki.pageId===this.PAGE_ID))||void 0===Ht?void 0:Ht.tables.find(Ki=>Ki.tableId===this.tableSettingSwapIn.tableId))||(null===(Mi=j.gK.find(Ki=>Ki.pageId===this.PAGE_ID))||void 0===Mi?void 0:Mi.tables.find(Ki=>Ki.tableId===this.tableSettingSwapIn.tableId)),this.setTableColumns(),this.swapsData&&this.swapsData.length>0&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/10+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}ngOnChanges(P){P.selectedSwapType&&!P.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===j.hc.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===j.hc.SWAP_IN?(this.displayedColumns=this.screenSize===j.cu.XS||this.screenSize===j.cu.SM?JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapIn.recordsPerPage?+this.tableSettingSwapIn.recordsPerPage:j.IV):(this.displayedColumns=this.screenSize===j.cu.XS||this.screenSize===j.cu.SM?JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapOut.recordsPerPage?+this.tableSettingSwapOut.recordsPerPage:j.IV)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(P){const Ye=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===j.hc.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Ht=>Ht.column===P);return Ye?Ye.label?Ye.label:this.camelCaseWithReplace.transform(Ye.column,"_"):this.commonService.titleCase(P)}setFilterPredicate(){this.listSwaps.filterPredicate=(P,ne)=>{let Ye="";switch(this.selFilterBy){case"all":Ye=JSON.stringify(P).toLowerCase();break;case"status":Ye=(null==P?void 0:P.status)?this.swapStateEnum[null==P?void 0:P.status]:"";break;default:Ye=void 0===P[this.selFilterBy]?"":"string"==typeof P[this.selFilterBy]?P[this.selFilterBy].toLowerCase():"boolean"==typeof P[this.selFilterBy]?P[this.selFilterBy]?"yes":"no":P[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===Ye.indexOf(ne):Ye.includes(ne)}}onSwapClick(P,ne){this.boltzService.swapInfo(P.id||"").pipe((0,x.R)(this.unSubs[1])).subscribe(Ye=>{this.store.dispatch((0,Ve.qR)({payload:{data:{type:j.n_.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:j.Qw[(Ye=this.selectedSwapType===j.hc.SWAP_IN?Ye.swap:Ye.reverseSwap).status],title:"Status",width:50,type:j.Gi.STRING},{key:"id",value:Ye.id,title:"ID",width:50,type:j.Gi.STRING}],[{key:"amount",value:Ye.onchainAmount?Ye.onchainAmount:Ye.expectedAmount?Ye.expectedAmount:0,title:Ye.onchainAmount?"Onchain Amount (Sats)":Ye.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:j.Gi.NUMBER},{key:"timeoutBlockHeight",value:Ye.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:j.Gi.NUMBER}],[{key:"address",value:Ye.claimAddress?Ye.claimAddress:Ye.lockupAddress?Ye.lockupAddress:"",title:Ye.claimAddress?"Claim Address":Ye.lockupAddress?"Lockup Address":"Address",width:100,type:j.Gi.STRING}],[{key:"invoice",value:Ye.invoice,title:"Invoice",width:100,type:j.Gi.STRING}],[{key:"privateKey",value:Ye.privateKey,title:"Private Key",width:100,type:j.Gi.STRING}],[{key:"preimage",value:Ye.preimage,title:"Preimage",width:100,type:j.Gi.STRING}],[{key:"redeemScript",value:Ye.redeemScript,title:"Redeem Script",width:100,type:j.Gi.STRING}],[{key:"lockupTransactionId",value:Ye.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:j.Gi.STRING},{key:"transactionId",value:Ye.claimTransactionId?Ye.claimTransactionId:Ye.refundTransactionId?Ye.refundTransactionId:"",title:Ye.claimTransactionId?"Claim Transaction ID":Ye.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:j.Gi.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(P){var ne,Ye;this.listSwaps=new yi.by(P?[...P]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(Ht,Mi)=>Ht[Mi]&&isNaN(Ht[Mi])?Ht[Mi].toLocaleLowerCase():Ht[Mi]?+Ht[Mi]:null,this.selectedSwapType===j.hc.SWAP_IN?null===(ne=this.listSwaps.sort)||void 0===ne||ne.sort({id:this.tableSettingSwapIn.sortBy,start:this.tableSettingSwapIn.sortOrder,disableClear:!0}):null===(Ye=this.listSwaps.sort)||void 0===Ye||Ye.sort({id:this.tableSettingSwapOut.sortBy,start:this.tableSettingSwapOut.sortOrder,disableClear:!0}),this.paginator&&this.paginator.firstPage(),this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===j.hc.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(fi.v),e.Y36(C.yh),e.Y36(dn),e.Y36(na.D3))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-swaps"]],viewQuery:function(P,ne){if(1&P&&(e.Gf(wi.YE,5),e.Gf(ii.NW,5)),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.sort=Ye.first),e.iGM(Ye=e.CRH())&&(ne.paginator=Ye.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[e._Bn([{provide:ii.ye,useValue:(0,j.pt)("Swaps")}]),e.TTD],decls:71,vars:18,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["placeholder","Filter By","tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter","placeholder","Filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","claimAddress"],["matColumnDef","lockupAddress"],["matColumnDef","onchainAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expectedAmount"],["matColumnDef","error"],["matColumnDef","privateKey"],["matColumnDef","preimage"],["matColumnDef","redeemScript"],["matColumnDef","invoice"],["matColumnDef","timeoutBlockHeight"],["matColumnDef","lockupTransactionId"],["matColumnDef","claimTransactionId"],["matColumnDef","refundTransactionId"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"div",5)(7,"mat-form-field",6)(8,"mat-select",7),e.NdJ("ngModelChange",function(Ht){return ne.selFilterBy=Ht})("selectionChange",function(){return ne.selFilter="",ne.applyFilter()}),e.YNc(9,On,2,2,"mat-option",8),e.qZA()(),e.TgZ(10,"mat-form-field",6)(11,"input",9),e.NdJ("ngModelChange",function(Ht){return ne.selFilter=Ht})("input",function(){return ne.applyFilter()})("keyup",function(){return ne.applyFilter()}),e.qZA()()()(),e.TgZ(12,"div",10)(13,"div",11),e.YNc(14,Cn,1,0,"mat-progress-bar",12),e.TgZ(15,"table",13,14),e.ynx(17,15),e.YNc(18,_r,2,0,"th",16),e.YNc(19,ur,2,1,"td",17),e.BQk(),e.ynx(20,18),e.YNc(21,os,2,0,"th",16),e.YNc(22,ks,2,1,"td",17),e.BQk(),e.ynx(23,19),e.YNc(24,Qo,2,0,"th",16),e.YNc(25,Ia,4,4,"td",17),e.BQk(),e.ynx(26,20),e.YNc(27,Gs,2,0,"th",16),e.YNc(28,jc,4,4,"td",17),e.BQk(),e.ynx(29,21),e.YNc(30,no,2,0,"th",22),e.YNc(31,K1,4,3,"td",17),e.BQk(),e.ynx(32,23),e.YNc(33,qo,2,0,"th",22),e.YNc(34,Wl,4,3,"td",17),e.BQk(),e.ynx(35,24),e.YNc(36,ml,2,0,"th",16),e.YNc(37,Yl,4,4,"td",17),e.BQk(),e.ynx(38,25),e.YNc(39,mo,2,0,"th",16),e.YNc(40,Ao,4,4,"td",17),e.BQk(),e.ynx(41,26),e.YNc(42,Jo,2,0,"th",16),e.YNc(43,gl,4,4,"td",17),e.BQk(),e.ynx(44,27),e.YNc(45,jl,2,0,"th",16),e.YNc(46,Lo,4,4,"td",17),e.BQk(),e.ynx(47,28),e.YNc(48,Kc,2,0,"th",16),e.YNc(49,Qc,4,4,"td",17),e.BQk(),e.ynx(50,29),e.YNc(51,Yr,2,0,"th",22),e.YNc(52,go,4,3,"td",17),e.BQk(),e.ynx(53,30),e.YNc(54,Xo,2,0,"th",16),e.YNc(55,Q1,2,1,"td",17),e.BQk(),e.ynx(56,31),e.YNc(57,Ba,2,0,"th",16),e.YNc(58,Qa,2,1,"td",17),e.BQk(),e.ynx(59,32),e.YNc(60,q1,2,0,"th",16),e.YNc(61,Kl,2,1,"td",17),e.BQk(),e.ynx(62,33),e.YNc(63,ro,6,0,"th",34),e.YNc(64,Do,3,0,"td",35),e.BQk(),e.ynx(65,36),e.YNc(66,Ts,2,1,"td",37),e.BQk(),e.YNc(67,J1,1,3,"tr",38),e.YNc(68,X1,1,0,"tr",39),e.YNc(69,ls,1,0,"tr",40),e.qZA(),e._UZ(70,"mat-paginator",41),e.qZA()()()),2&P&&(e.xp6(3),e.Q6J("icon",ne.faHistory),e.xp6(2),e.hij("",ne.swapCaption," History"),e.xp6(3),e.Q6J("ngModel",ne.selFilterBy),e.xp6(1),e.Q6J("ngForOf",e.DdM(14,es).concat(ne.displayedColumns.slice(0,-1))),e.xp6(2),e.Q6J("ngModel",ne.selFilter),e.xp6(3),e.Q6J("ngIf",!0===ne.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",ne.listSwaps)("ngClass",e.VKq(15,qc,"error"===ne.flgLoading[0])),e.xp6(52),e.Q6J("matFooterRowDef",e.DdM(17,_l)),e.xp6(1),e.Q6J("matHeaderRowDef",ne.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",ne.displayedColumns),e.xp6(1),e.Q6J("pageSize",ne.pageSize)("pageSizeOptions",ne.pageSizeOptions)("showFirstLastButtons",ne.screenSize!==ne.screenSizeEnum.XS))},directives:[_.xw,_.yH,_.Wh,V.BN,ut.KE,Oe.gD,Ie.JJ,Ie.On,X.sg,ce.ey,Yt.Nt,Ie.Fj,J.$V,X.O5,en.pW,yi.BZ,wi.YE,X.mk,Dn.oO,yi.w1,yi.fO,yi.ge,wi.nU,yi.Dz,yi.ev,X.PC,Dn.Zl,Oe.$L,Te.lW,yi.mD,yi.yh,yi.Ke,yi.Q2,yi.as,yi.XQ,yi.nj,yi.Gk,ii.NW],pipes:[X.JJ],styles:[""]}),U})();const vl=function(U){return["../",U]};function $1(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",15),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw().onSelectedIndexChange(Ht)}),e._uU(1),e.qZA()}if(2&U){const P=Le.$implicit,ne=e.oxw();e.Q6J("active",ne.activeTab.link===P.link)("routerLink",e.VKq(3,vl,P.link)),e.xp6(1),e.Oqu(P.name)}}let e2=(()=>{class U{constructor(P,ne,Ye){this.router=P,this.store=ne,this.boltzService=Ye,this.swapTypeEnum=j.hc,this.selectedSwapType=j.hc.SWAP_OUT,this.swaps={},this.swapsData=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"swapout",name:"Swap Out"},{link:"swapin",name:"Swap In"}],this.activeTab=this.links[0],this.unSubs=[new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.boltzService.listSwaps();const P=this.links.find(ne=>this.router.url.includes(ne.link));this.activeTab=P||this.links[0],this.selectedSwapType=P&&"swapin"===P.link?j.hc.SWAP_IN:j.hc.SWAP_OUT,this.router.events.pipe((0,x.R)(this.unSubs[0]),(0,ge.h)(ne=>ne instanceof I.Av)).subscribe({next:ne=>{const Ye=this.links.find(Ht=>ne.urlAfterRedirects.includes(Ht.link));this.activeTab=Ye||this.links[0],this.selectedSwapType=Ye&&"swapin"===Ye.link?j.hc.SWAP_IN:j.hc.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,x.R)(this.unSubs[1])).subscribe({next:ne=>{this.swaps=ne,this.swapsData=this.selectedSwapType===j.hc.SWAP_IN&&ne.swaps?ne.swaps:this.selectedSwapType===j.hc.SWAP_OUT&&ne.reverseSwaps?ne.reverseSwaps:[],this.flgLoading[0]=!1},error:ne=>{this.flgLoading[0]="error",this.emptyTableMessage=ne.message?ne.message:"No swap "+(this.selectedSwapType===j.hc.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(P){"swapin"===P.link?(this.selectedSwapType=j.hc.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=j.hc.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(P){this.boltzService.serviceInfo().pipe((0,x.R)(this.unSubs[2])).subscribe({next:ne=>{this.store.dispatch((0,Ve.qR)({payload:{data:{serviceInfo:ne,direction:P,component:an}}}))}})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(I.F0),e.Y36(C.yh),e.Y36(dn))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-boltz-root"]],decls:18,vars:6,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"botlz-icon-sm","mr-1"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e.O4$(),e.TgZ(1,"svg",1)(2,"g",2)(3,"g",3),e._UZ(4,"circle",4)(5,"path",5)(6,"path",6),e.qZA()()(),e.kcU(),e.TgZ(7,"span",7),e._uU(8,"Boltz"),e.qZA()(),e.TgZ(9,"div",8)(10,"mat-card")(11,"mat-card-content",9)(12,"nav",10),e.YNc(13,$1,2,5,"div",11),e.qZA(),e.TgZ(14,"div",12)(15,"button",13),e.NdJ("click",function(){return ne.onSwap(ne.selectedSwapType)}),e._uU(16),e.qZA()(),e._UZ(17,"rtl-boltz-swaps",14),e.qZA()()()),2&P&&(e.xp6(13),e.Q6J("ngForOf",ne.links),e.xp6(3),e.hij("Start ",ne.activeTab.name,""),e.xp6(1),e.Q6J("selectedSwapType",ne.selectedSwapType)("swapsData",ne.swapsData)("flgLoading",ne.flgLoading)("emptyTableMessage",ne.emptyTableMessage))},directives:[_.xw,_.Wh,N.a8,N.dn,_.yH,H.BU,X.sg,H.Nj,I.rH,Te.lW,$o],styles:[""]}),U})();class Fr{constructor(Le){this.help=Le}}function l3(U,Le){if(1&U&&(e.TgZ(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e._uU(3),e.qZA()(),e.TgZ(4,"mat-panel-description",9),e._UZ(5,"span",10),e.TgZ(6,"a",11),e._uU(7),e.qZA()()()),2&U){const P=e.oxw().$implicit,ne=e.oxw();e.xp6(3),e.Oqu(P.help.question),e.xp6(2),e.Q6J("innerHTML",P.help.answer,e.oJD),e.xp6(1),e.Q6J("routerLink",ne.flgLoggedIn?P.help.link:"/login"),e.xp6(1),e.Oqu(ne.flgLoggedIn?P.help.linkCaption:"Login to go to the page")}}function bl(U,Le){if(1&U&&(e.TgZ(0,"div",6),e.YNc(1,l3,8,4,"mat-expansion-panel",7),e.qZA()),2&U){const P=Le.$implicit,ne=e.oxw();e.xp6(1),e.Q6J("ngIf","ALL"===P.help.lnImplementation||P.help.lnImplementation===ne.selNode.lnImplementation)}}let Oo=(()=>{class U{constructor(P,ne){this.store=P,this.sessionService=ne,this.helpTopics=[],this.faQuestion=y.Psp,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.store.select(n.dT).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{this.selNode=P,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{this.flgLoggedIn=!!P.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new Fr({question:"Getting started",answer:'Funding your node is the first step to get started.\nGo to the "On-chain" page of the app:\n1. Generate a new address on the "Recieve" tab.\n2. Send funds to the address.\n3. Wait for the balance to be confirmed on-chain before proceeding further.\n3. Connecting with network peers and opening channels is next.\n',link:this.LNPLink+"onchain/receive/utxos",linkCaption:"On-Chain",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Connect with peers",answer:'Connect with network peers to open channels with them.\nGo to "Peer/Channels" page under the "Lightning" menu :\n1. Get the peer pubkey and host address in the pubkey@ip:port format.\n2. On the "Peers" enter the peer address and connect.\n3. Once the peer is connected, you can open channel with the peer.\n4. A variety of actions can be performed on the connected peers page for each peer:\n a. View Info - View the peer details.\n b. Open Channel - Open channel with the peer.\n c. Disconnect - Disconnect from the peer.\n',link:this.LNPLink+"connections/peers",linkCaption:"Peers",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Opening Channels",answer:'Open channels with a connected peer.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. On the "Channels" section, click on "Open Channel"\n2. On the "Open Channel" modal, select the alias of the connected peer from the drop-down\n2. Specify the amount to commit to the channel and click on "Open Channel".\n3. There are a variety of options available while opening a channel. \n a. Private Channel - When this option is selected, a private channel is opened with the peer. \n b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n4. Track the pending open channels under the "Pending" tab. \n5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Channel Management",answer:'Channel maintenance and balance score.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. A variety of actions can be perfomed on the open channels under the "Open" tab, with the "Actions" button:\n a. View Info - View the channel details.\n b. View Remote Fee - View the fee policy on the channel of the remote peer.\n c. Update Fee Policy - Modify the fee policy on the channel.\n d. Circular Rebalance - Off-chain rebalance channels by making a payment to yourself across a circular path of chained payment channels.\n e. Close Channel - Close the channel.\n2. Balance Score is a "balancedness" metric score for the channel. \n a. It helps measure how balanced the remote and local balances are, on a channel.\n b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Buying Liquidity",answer:'Buying liquidity for your node.\nGo to "Liquidity Ads" page under the "Lightning" menu:\n 1. Filter ads by liquidity amount and channel opening fee rate.\n 2. Research additionally on liquidity provider nodes before selecting.\n 3. Select the best liquidity node peer for your need and click on "Open Channel" from "Actions" drop-down.\n 4. Confirm amount, rates and total cost on the modal and click on "Execute" to buy liquidity.\n',link:this.LNPLink+"liquidityads",linkCaption:"Liquidity Ads",lnImplementation:"CLN"})),this.helpTopics.push(new Fr({question:"Payments",answer:'Sending Payments from your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayments tab is for making payments via your node\n 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment Request" field and click on "Send Payment" to send.\n 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n',link:this.LNPLink+"transactions/payments",linkCaption:"Payments",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Invoices",answer:'Receiving Payments on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nInvoices tab is for receiving payments on your node.\n 1. Memo - Description you want to provide on the invoice.\n 2. Expiry - The time period, after which the invoice will be invalid.\n 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n',link:this.LNPLink+"transactions/invoices",linkCaption:"Invoices",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Offers",answer:'Send offer payments, create offer invoices and bookmark paid offers on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayment for bolt12 offer invoice can be done on "Payments" tab:\n 1. Click on "Send Payment" button.\n 2. Select "Offer" option on the modal.\n 2. Offer Request - Input offer request (Bolt12 format) in the input box.\n 3. Bookmark - Select the checkbox to bookmark this offer for future use.\nOffers tab is for creating bolt12 offer invoice on your node:\n 1. Click on "Create Offer" button.\n 2. Description - Description you want to provide on the offer invoice.\n 3. Amount - Amount for the offer invoice.\n 4. Vendor - Vendor of the offer.\nPaid offer bookmarks shows the list of paid offers saved for future payments.\n',link:this.LNPLink+"transactions/offers",linkCaption:"Offers",lnImplementation:"CLN"})),this.helpTopics.push(new Fr({question:"Channel Backups",answer:'Channel Backups are important to ensure that you have means to recover funds in case of node failures.\nBackup folder location can be customized in the RTL config file with the channelBackupPath field.\nRTL automatically creates all channel backup on server startup, as well as everytime a channel is opened or closed\nYou can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\nYou can also backup each channel individually and verify them.\n** Keep taking backups of your channels regularly and store them in redundant locations **.\n',link:this.LNPLink+"channelbackup/bckup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new Fr({question:"Channel Restore",answer:'Channel Restore is used to recover funds from the channel backup files in case of node failures.\nFollow the below steps to perform fund restoration.\n\nPrerequisite:\n1. The node has been restored with the LND recovery seed.\n2. RTL generated channel backup file/s is available (all channel backup file is channel-all.bak).\n\nRecovery:\n1. Create a restore folder in your folder backup location, as specified in the RTL config file.\n2. Place the channel backup file in the restore folder.\n3. Go to the "Restore" tab under the "Backup" page of RTL.\n4. RTL will list the options to restore funds from the all channel file or individual channel backup file.\n5. Click on the Restore icon on the grid to restore the funds.\n6. Once the restore function is executed successfully, RTL will rename the backup file and it will not be accessible from the UI.\n7. Restore function will force close the channels and recover the funds from them.\n8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n',link:this.LNPLink+"channelbackup/restore",linkCaption:"Channel Restore",lnImplementation:"LND"})),this.helpTopics.push(new Fr({question:"Forwarding History",answer:'Transactions routed by the node.\nGo to "Routing" page under the "Lightning" menu :\nTransactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n',link:this.LNPLink+"routing/forwardinghistory",linkCaption:"Forwarding History",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Lightning Reports",answer:'Routing and transactions data reports.\nGo to "Reports" page under the "Lightning" menu :\nReport can be generated on monthly/yearly basis by selecting the reporting period, month, and year.\n',link:this.LNPLink+"reports/routingreport",linkCaption:"Reports",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Graph Lookup",answer:'Querying your node graph for network node and channel information.\nGo to "Graph Lookup" page under the "Lightning" menu :\nEach node maintains a network graph for the information on all the nodes and channels on the network.\nYou can lookup information on nodes and channels from your graph:\n 1. Node Lookup - Enter the pubkey to perform the lookup.\n 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n',link:this.LNPLink+"graph/lookups",linkCaption:"Graph Lookup",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Query Route",answer:'Querying Payment Routes.\nGo to the "Graph Lookup" page under the "Lightning" menu :\nQuery Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n 2. Amount - Amount in Sats, which you want to send to the node.\n',link:this.LNPLink+"graph/queryroutes",linkCaption:"Query Routes",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"LND"})),this.helpTopics.push(new Fr({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"CLN"})),this.helpTopics.push(new Fr({question:"Node Settings",answer:'RTL offers certain customizations on the UI to personalize your experience on the app\nGo to "Node Config" page to access the customization options.\nNode Layout Options\n 1. User Persona - Two options are available to change the dashboard based on the persona.\n 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n 3. Other customizations include day and night mode and a choice of color themes to select from.\nServices Options\n Loop (LND only), Boltz (LND only) & Peerswap (CLN only) services can be configured.\nExperimental Options (CLN only)\n Offers and Liquidity Ads can be enabled/disabled.\nShow LN Config (if configured)\n Shows lightning config file.\n',link:"../config/layout",linkCaption:"Node Settings",lnImplementation:"ALL"})),this.helpTopics.push(new Fr({question:"Application Settings",answer:'RTL also offers certain customizations on the application level\nGo to top right menu "Settings" page to access these options.\nDefault Node Option\nIf you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\nAuthentication Option\nPassword and 2FA update options are available here.\nShow Bitcoin Config (if configured)\n Shows bitcoin config file.\n',link:"../settings/app",linkCaption:"Application Settings",lnImplementation:"ALL"}))}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(C.yh),e.Y36(Ae.m))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-help"]],decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["fxFlex","100"],["class","flat-expansion-panel help-expansion mb-2px",4,"ngIf"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],[1,"pre-wrap",3,"innerHTML"],[1,"mt-2",3,"routerLink"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span",3),e._uU(4,"Help"),e.qZA()(),e.TgZ(5,"div",4)(6,"div",0),e.YNc(7,bl,2,1,"div",5),e.qZA()()()),2&P&&(e.xp6(2),e.Q6J("icon",ne.faQuestion),e.xp6(5),e.Q6J("ngForOf",ne.helpTopics))},directives:[_.xw,_.yH,_.Wh,V.BN,X.sg,X.O5,Li.ib,Li.yz,Li.yK,Li.u4,I.yS],styles:[".mat-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]}),U})();var Ql=p(9841);function n2(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Token is required."),e.qZA())}let Jc=(()=>{class U{constructor(P,ne){this.dialogRef=P,this.store=ne,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Ve.M6)({payload:{twoFAToken:this.token}}))}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Q.so),e.Y36(C.yh))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-login-token"]],decls:17,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["tokenForm","ngForm"],["autoFocus","","matInput","","placeholder","Token","type","text","id","token","name","token","tabindex","2","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Two Factor Token"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return ne.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8),e.NdJ("ngSubmit",function(){return ne.onVerifyToken()}),e.TgZ(11,"mat-form-field")(12,"input",9),e.NdJ("ngModelChange",function(Ht){return ne.token=Ht}),e.qZA(),e.YNc(13,n2,2,0,"mat-error",10),e.qZA(),e.TgZ(14,"div",11)(15,"button",12),e._uU(16,"Verify Token"),e.qZA()()()()()()),2&P&&(e.xp6(12),e.Q6J("ngModel",ne.token),e.xp6(1),e.Q6J("ngIf",!ne.token))},directives:[_.xw,_.Wh,_.yH,N.dk,Te.lW,N.dn,Ie._Y,Ie.JL,Ie.F,ut.KE,Yt.Nt,Ie.Fj,we.h,Ie.Q7,Ie.JJ,Ie.On,X.O5,ut.TO],styles:[""]}),U})();function ql(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function As(U,Le){if(1&U&&(e.TgZ(0,"p",21)(1,"mat-icon",22),e._uU(2,"close"),e.qZA(),e._uU(3),e.qZA()),2&U){const P=e.oxw();e.xp6(3),e.hij(" ",P.loginErrorMessage," ")}}const is=function(U){return{"padding-gap-large":U}},vs=function(U,Le){return{"font-size-200":U,"font-size-300":Le}};let Po=(()=>{class U{constructor(P,ne,Ye,Ht){this.logger=P,this.store=ne,this.rtlEffects=Ye,this.commonService=Ht,this.faUnlockAlt=y.B$L,this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=j.cu,this.loginErrorMessage="",this.apiCallStatusEnum=j.Bn,this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,Ql.a)([this.store.select(n.ul),this.store.select(n.Sr)]).pipe((0,x.R)(this.unSubs[0])).subscribe(([P,ne])=>{this.loginErrorMessage="",P.status===j.Bn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof P.message?JSON.stringify(P.message):P.message),this.logger.error(P.message)),ne.status===j.Bn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof ne.message?JSON.stringify(ne.message):ne.message),this.logger.error(ne.message))}),this.store.select(n.Yj).pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{this.appConfig=P,this.logger.info(P)})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.appConfig.enable2FA?(this.store.dispatch((0,Ve.qR)({payload:{maxWidth:"35rem",data:{component:Jc}}})),this.rtlEffects.closeAlert.pipe((0,fe.q)(1)).subscribe(P=>{P&&this.store.dispatch((0,Ve.x4)({payload:{password:Ce(this.password),defaultPassword:j.kO.includes(this.password.toLowerCase()),twoFAToken:P.twoFAToken}}))})):this.store.dispatch((0,Ve.x4)({payload:{password:Ce(this.password),defaultPassword:j.kO.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(C.yh),e.Y36(tt.V),e.Y36(fi.v))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-login"]],decls:25,vars:12,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","center stretch",1,"login-container"],["fxLayout","row","fxFlex","50","fxLayoutAlign","center stretch"],["fxLayout","row","fxFlex","45","fxLayoutAlign","center stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxFlex","35","fxLayoutAlign","center center",1,"bg-primary"],["src","assets/images/RTL-Horse-BY.svg","alt","RTL Logo",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"mt-5px","mb-0","px-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["loginForm","ngForm"],["fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","placeholder","Password","id","password","name","password","tabindex","1","required","",3,"type","ngModel","ngModelChange"],["tabindex","2","matSuffix","",3,"click"],[4,"ngIf"],["fxFlex","100","class","color-warn pre-wrap","fxLayoutAlign","start start",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start start",1,"color-warn","pre-wrap"],[1,"mr-1","icon-small"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card",2)(3,"div",3)(4,"div",4),e._UZ(5,"img",5),e.qZA(),e.TgZ(6,"div",6)(7,"mat-card-header",7)(8,"mat-card-title",8)(9,"span",9),e._uU(10,"Welcome"),e.qZA()()(),e.TgZ(11,"mat-card-content",10)(12,"form",11,12)(14,"mat-form-field",13)(15,"input",14),e.NdJ("ngModelChange",function(Ht){return ne.password=Ht}),e.qZA(),e.TgZ(16,"mat-icon",15),e.NdJ("click",function(){return ne.flgShow=!ne.flgShow}),e._uU(17),e.qZA(),e.YNc(18,ql,2,0,"mat-error",16),e.qZA(),e.YNc(19,As,4,1,"p",17),e.TgZ(20,"div",18)(21,"button",19),e.NdJ("click",function(){return ne.resetData()}),e._uU(22,"Clear"),e.qZA(),e.TgZ(23,"button",20),e.NdJ("click",function(){return ne.onLogin()}),e._uU(24,"Login"),e.qZA()()()()()()()()()),2&P&&(e.xp6(6),e.Q6J("ngClass",e.VKq(7,is,ne.screenSize===ne.screenSizeEnum.XS)),e.xp6(2),e.Q6J("ngClass",e.WLB(9,vs,ne.screenSize===ne.screenSizeEnum.XS,ne.screenSize!==ne.screenSizeEnum.XS)),e.xp6(7),e.Q6J("type",ne.flgShow?"text":"password")("ngModel",ne.password),e.xp6(2),e.Oqu(ne.flgShow?"visibility_off":"visibility"),e.xp6(1),e.Q6J("ngIf",!ne.password),e.xp6(1),e.Q6J("ngIf",""!==ne.loginErrorMessage))},directives:[_.xw,_.yH,_.Wh,N.a8,X.mk,Dn.oO,N.dk,N.n5,N.dn,Ie._Y,Ie.JL,Ie.F,ut.KE,Yt.Nt,Ie.Fj,we.h,Ie.Q7,Ie.JJ,Ie.On,ia.Hw,ut.R9,X.O5,ut.TO,Te.lW],styles:[".login-container[_ngcontent-%COMP%]{height:90vh}.login-container[_ngcontent-%COMP%] .mat-card[_ngcontent-%COMP%]{height:30rem}.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:100%}@media only screen and (max-width: 56.25em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:37%}}@media only screen and (max-width: 37.5em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:70%}}.login-container[_ngcontent-%COMP%] .material-icons.mat-icon[_ngcontent-%COMP%]{font-size:120%;cursor:pointer}"]}),U})();var _o=p(9442);let xl=(()=>{class U{constructor(P,ne){this.activatedRoute=P,this.router=ne,this.error={errorCode:"",errorMessage:""},this.faTimes=y.NBC,this.unsubs=[new h.x,new h.x]}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.activatedRoute.paramMap.pipe((0,x.R)(this.unsubs[0])).subscribe(P=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(I.gz),e.Y36(I.F0))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-error"]],decls:13,vars:3,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","center center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","padding-gap-large"],[1,"font-size-300","font-bold-500"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-large"],[1,"box-text","font-size-120"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6),e.qZA()()(),e.TgZ(7,"mat-card-content",6)(8,"div",7),e._uU(9),e.qZA(),e.TgZ(10,"span",8)(11,"button",9),e.NdJ("click",function(){return ne.goToHelp()}),e._uU(12,"Go To Help"),e.qZA()()()()()),2&P&&(e.xp6(4),e.Q6J("icon",ne.faTimes),e.xp6(2),e.hij("Error ",ne.error.errorCode,""),e.xp6(3),e.Oqu(ne.error.errorMessage))},directives:[_.xw,_.yH,_.Wh,N.a8,N.dk,N.n5,V.BN,N.dn,Te.lW],encapsulation:2}),U})();var $r=p(1643),Cl=p(8104),Jl=p(6534),Oa=p(9843);function el(U,Le){1&U&&e._UZ(0,"span",16)}function r2(U,Le){1&U&&e._UZ(0,"span",17)}function Ml(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"form",18,4)(2,"div",19),e._UZ(3,"fa-icon",2),e.TgZ(4,"span"),e._uU(5,"Please ensure that "),e.TgZ(6,"strong"),e._uU(7,"experimental-offers"),e.qZA(),e._uU(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.TgZ(9,"strong")(10,"a",20),e._uU(11,"here"),e.qZA()(),e._uU(12," to learn more about Core Lightning offers."),e.qZA()(),e.TgZ(13,"h4",21),e._uU(14,"Description"),e.qZA(),e.TgZ(15,"span"),e._uU(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),e.qZA(),e.TgZ(17,"h4",21),e._uU(18,"Links"),e.qZA(),e.TgZ(19,"span")(20,"a",22),e._uU(21,"Core lightning Bolt12"),e.qZA()(),e._UZ(22,"mat-divider",23),e.TgZ(23,"div",24),e._UZ(24,"fa-icon",2),e.TgZ(25,"span"),e._uU(26,"Do not get an Offer tattoo until spec is fully ratified!"),e.qZA()(),e.TgZ(27,"mat-slide-toggle",25),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(2).enableOffers=Ye})("change",function(){return e.CHM(P),e.oxw(2).onUpdateFeature()}),e._uU(28),e.qZA()()}if(2&U){const P=e.oxw(2);e.xp6(3),e.Q6J("icon",P.faInfoCircle),e.xp6(19),e.Q6J("inset",!0),e.xp6(2),e.Q6J("icon",P.faExclamationTriangle),e.xp6(3),e.Q6J("ngModel",P.enableOffers),e.xp6(1),e.hij("Enable Offers ",P.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function Xl(U,Le){if(1&U&&(e.TgZ(0,"div")(1,"div",28),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Please ensure that "),e.TgZ(5,"strong"),e._uU(6,"experimental-dual-fund"),e.qZA(),e._uU(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.TgZ(8,"strong")(9,"a",29),e._uU(10,"here"),e.qZA()(),e._uU(11," to learn more about Core Lightning Liquidity Ads."),e.qZA()()()),2&U){const P=e.oxw(3);e.xp6(2),e.Q6J("icon",P.faExclamationTriangle)}}function ao(U,Le){if(1&U&&(e.TgZ(0,"mat-option",47),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&U){const P=Le.$implicit;e.Q6J("value",P),e.xp6(1),e.hij(" ",e.lcZ(2,2,P.id)," ")}}function Ua(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&U){const P=e.oxw(4);e.xp6(1),e.hij("",P.selPolicyType.placeholder," is required.")}}function $l(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&U){const P=e.oxw(4);e.xp6(1),e.AsE("",P.selPolicyType.placeholder," must be greater than or equal to ",P.selPolicyType.min,".")}}function ec(U,Le){if(1&U&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&U){const P=e.oxw(4);e.xp6(1),e.AsE("",P.selPolicyType.placeholder," must be less than or equal to ",P.selPolicyType.max,".")}}function Xc(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Lease base fee is required."),e.qZA())}function ko(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Lease base basis is required."),e.qZA())}function tc(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Max channel routing base fee is required."),e.qZA())}function c3(U,Le){1&U&&(e.TgZ(0,"mat-error"),e._uU(1,"Max channel routing fee rate is required."),e.qZA())}const ic=function(U,Le){return{"alert-danger":U,"alert-info":Le}};function vo(U,Le){if(1&U&&(e.TgZ(0,"h4",48)(1,"span",49),e._uU(2),e.qZA()()),2&U){const P=e.oxw(4);e.xp6(1),e.Q6J("ngClass",e.WLB(2,ic,!!P.updateMsg.error,!!P.updateMsg.data)),e.xp6(1),e.hij(" ",P.updateMsg.error&&""!==P.updateMsg.error?"Error: "+P.updateMsg.error||0:P.updateMsg.data&&""!==P.updateMsg.data?P.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function wl(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"div",30)(1,"div",31),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"These config changes should be configured permanently via the config file on your CLN node otherwise the policy would need to be configured again, if your node restarts."),e.qZA()(),e.TgZ(5,"div",32)(6,"mat-form-field",33)(7,"mat-select",34),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(3).selPolicyType=Ye})("selectionChange",function(){return e.CHM(P),e.oxw(3).policyMod=null}),e.YNc(8,ao,3,4,"mat-option",35),e.qZA()(),e.TgZ(9,"mat-form-field",36)(10,"input",37,38),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(3).policyMod=Ye}),e.qZA(),e.TgZ(12,"mat-hint"),e._uU(13),e.qZA(),e.YNc(14,Ua,2,1,"mat-error",26),e.YNc(15,$l,2,2,"mat-error",26),e.YNc(16,ec,2,2,"mat-error",26),e.qZA()(),e.TgZ(17,"div",32)(18,"mat-form-field",36)(19,"input",39),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(3).lease_fee_base_sat=Ye}),e.qZA(),e.YNc(20,Xc,2,0,"mat-error",26),e.qZA(),e.TgZ(21,"mat-form-field",36)(22,"input",40),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(3).lease_fee_basis=Ye}),e.qZA(),e.YNc(23,ko,2,0,"mat-error",26),e.qZA()(),e.TgZ(24,"div",32)(25,"mat-form-field",36)(26,"input",41),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(3).channelFeeMaxBaseSat=Ye}),e.qZA(),e.YNc(27,tc,2,0,"mat-error",26),e.qZA(),e.TgZ(28,"mat-form-field",36)(29,"input",42),e.NdJ("ngModelChange",function(Ye){return e.CHM(P),e.oxw(3).channelFeeMaxProportional=Ye}),e.qZA(),e.YNc(30,c3,2,0,"mat-error",26),e.qZA()(),e.YNc(31,vo,3,5,"h4",43),e.TgZ(32,"div",44)(33,"button",45),e.NdJ("click",function(){return e.CHM(P),e.oxw(3).onResetPolicy()}),e._uU(34,"Reset"),e.qZA(),e.TgZ(35,"button",46),e.NdJ("click",function(){return e.CHM(P),e.oxw(3).onUpdateFundingPolicy()}),e._uU(36,"Update"),e.qZA()()()}if(2&U){const P=e.oxw(3);e.xp6(2),e.Q6J("icon",P.faExclamationTriangle),e.xp6(5),e.Q6J("ngModel",P.selPolicyType),e.xp6(1),e.Q6J("ngForOf",P.policyTypes),e.xp6(2),e.Q6J("ngModel",P.policyMod)("placeholder",P.selPolicyType.placeholder)("step","fixed"===P.selPolicyType.id?1e3:10)("min",P.selPolicyType.min)("max",P.selPolicyType.max),e.xp6(3),e.lnq("",P.selPolicyType.placeholder," should be between ",P.selPolicyType.min," and ",P.selPolicyType.max,""),e.xp6(1),e.Q6J("ngIf",!P.policyMod),e.xp6(1),e.Q6J("ngIf",P.policyModP.selPolicyType.max),e.xp6(3),e.Q6J("ngModel",P.lease_fee_base_sat),e.xp6(1),e.Q6J("ngIf",!P.lease_fee_base_sat),e.xp6(2),e.Q6J("ngModel",P.lease_fee_basis),e.xp6(1),e.Q6J("ngIf",!P.lease_fee_basis),e.xp6(3),e.Q6J("ngModel",P.channelFeeMaxBaseSat),e.xp6(1),e.Q6J("ngIf",!P.channelFeeMaxBaseSat),e.xp6(2),e.Q6J("ngModel",P.channelFeeMaxProportional),e.xp6(1),e.Q6J("ngIf",!P.channelFeeMaxProportional),e.xp6(1),e.Q6J("ngIf",P.flgUpdateCalled)}}function Zs(U,Le){if(1&U&&(e.TgZ(0,"form",18,4),e.YNc(2,Xl,12,1,"div",26),e.YNc(3,wl,37,23,"div",27),e.qZA()),2&U){const P=e.oxw(2);e.xp6(2),e.Q6J("ngIf",!P.features[1].enabled),e.xp6(1),e.Q6J("ngIf",P.features[1].enabled)}}function so(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-expansion-panel",9),e.NdJ("opened",function(){const Ht=e.CHM(P).index;return e.oxw().onPanelExpanded(Ht)}),e.TgZ(1,"mat-expansion-panel-header")(2,"mat-panel-title",10)(3,"h4",11),e._uU(4),e.qZA(),e.TgZ(5,"h4",11),e.YNc(6,el,1,0,"span",12),e.YNc(7,r2,1,0,"span",13),e._uU(8),e.qZA()()(),e.TgZ(9,"div",14),e.YNc(10,Ml,29,5,"form",15),e.YNc(11,Zs,4,2,"form",15),e.qZA()()}if(2&U){const P=Le.$implicit,ne=Le.index;e.Q6J("expanded",!1),e.xp6(4),e.Oqu(P.name),e.xp6(2),e.Q6J("ngIf",P.enabled),e.xp6(1),e.Q6J("ngIf",!P.enabled),e.xp6(1),e.hij(" ",P.enabled?"Enabled":"Disabled"," "),e.xp6(2),e.Q6J("ngIf",0===ne),e.xp6(1),e.Q6J("ngIf",1===ne)}}const nc=I.Bz.forRoot([{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([p.e(267),p.e(636)]).then(p.bind(p,1636)).then(U=>U.LNDModule),canActivate:[$r.a1]},{path:"cln",loadChildren:()=>Promise.all([p.e(267),p.e(564)]).then(p.bind(p,9564)).then(U=>U.CLNModule),canActivate:[$r.a1]},{path:"ecl",loadChildren:()=>Promise.all([p.e(267),p.e(258)]).then(p.bind(p,7258)).then(U=>U.ECLModule),canActivate:[$r.a1]},{path:"settings",component:Ee,canActivate:[$r.a1],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:te,canActivate:[$r.a1]},{path:"auth",component:$t,canActivate:[$r.a1]},{path:"bconfig",component:Tt,canActivate:[$r.a1]}]},{path:"config",component:Bt,canActivate:[$r.a1],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:sr,canActivate:[$r.a1]},{path:"pglayout",component:aa,canActivate:[$r.a1]},{path:"services",component:sa,canActivate:[$r.a1],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:Rr,canActivate:[$r.a1]},{path:"boltz",component:$e,canActivate:[$r.a1]}]},{path:"experimental",component:(()=>{class U{constructor(P,ne,Ye,Ht){this.logger=P,this.store=ne,this.dataService=Ye,this.commonService=Ht,this.faInfoCircle=y.sqG,this.faExclamationTriangle=y.eHv,this.faCode=y.dT$,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=j.gB,this.selPolicyType=j.gB[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.dataService.listConfigs().pipe((0,x.R)(this.unSubs[0])).subscribe({next:P=>{this.logger.info("Received List Configs: "+JSON.stringify(P)),this.features[1].enabled=!!P["experimental-dual-fund"]},error:P=>{this.logger.error("List Configs Error: "+JSON.stringify(P)),this.features[1].enabled=!1}}),this.store.select(n.dT).pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{this.selNode=P,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(va.Rn).pipe((0,x.R)(this.unSubs[2])).subscribe(P=>{this.policyTypes[2].max=P.balance.totalBalance||1e3})}onPanelExpanded(P){1===P&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,x.R)(this.unSubs[3])).subscribe(ne=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(ne)),this.fundingPolicy=ne,this.fundingPolicy.policy&&(this.selPolicyType=j.gB.find(Ye=>Ye.id===this.fundingPolicy.policy)||this.policyTypes[0]),this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null})}onUpdateFeature(){this.logger.info(this.selNode),this.selNode.settings.enableOffers=this.enableOffers,this.features[0].enabled=this.enableOffers,this.store.dispatch((0,Ve.jS)({payload:{uiMessage:j.m6.UPDATE_SETTING,service:j.JX.OFFERS,settings:{enableOffers:this.enableOffers}}})),this.store.dispatch((0,Wt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.enableOffers}})),this.store.dispatch((0,Rt.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.enableOffers}})),this.store.dispatch((0,st.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,unannouncedChannels:this.selNode.settings.unannouncedChannels,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.enableOffers}}))}onUpdateFundingPolicy(){this.flgUpdateCalled=!0,this.updateMsg={},this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id,this.policyMod,1e3*(this.lease_fee_base_sat||0),this.lease_fee_basis,1e3*(this.channelFeeMaxBaseSat||0),this.channelFeeMaxProportional?this.channelFeeMaxProportional/1e3:0).pipe((0,x.R)(this.unSubs[4])).subscribe({next:P=>{this.logger.info(P),this.fundingPolicy=P,this.updateMsg={data:"Compact Lease: "+P.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:P=>{this.logger.error(P),this.updateMsg={error:this.commonService.extractErrorMessage(P,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?j.gB.find(P=>P.id===this.fundingPolicy.policy)||this.policyTypes[0]:j.gB[0],this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(C.yh),e.Y36(Cl.D),e.Y36(fi.v))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-experimental-settings"]],decls:13,vars:3,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxFlex","100",1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","flat-expansion-panel my-1",3,"expanded","opened",4,"ngFor","ngForOf"],[1,"flat-expansion-panel","my-1",3,"expanded","opened"],["fxFlex","100","fxLayoutAlign","space-between center"],[1,"font-bold-500"],["class","dot green",4,"ngIf"],["class","dot yellow",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],[1,"dot","green"],[1,"dot","yellow"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-info"],["href","http://bolt12.org","target","_blank"],[1,"mt-2"],["href","https://github.com/lightningnetwork/lightning-rfc/pull/798 ","target","blank"],[1,"my-2",3,"inset"],[1,"alert","alert-warn"],["autoFocus","","tabindex","1","color","primary","name","enableOfr",1,"my-1",3,"ngModel","ngModelChange","change"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],["href","https://medium.com/blockstream/setting-up-liquidity-ads-in-c-lightning-54e4c59c091d","target","_blank"],["fxLayout","column"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn","mb-2"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch"],["fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","placeholder","Policy","name","policy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModel","placeholder","step","min","max","ngModelChange"],["plcMod","ngModel"],["matInput","","placeholder","Lease Base Fee (Sats)","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModel","ngModelChange"],["matInput","","placeholder","Lease Base Basis (bps)","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModel","ngModelChange"],["matInput","","placeholder","Max Channel Routing Base Fee (Sats)","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModel","ngModelChange"],["matInput","","placeholder","Max Channel Routing Fee Rate (ppm)","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModel","ngModelChange"],["fxLayoutAlign","start stretch","class","font-bold-500 mt-2",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","7",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxLayoutAlign","start stretch",1,"font-bold-500","mt-2"],["fxFlex","100",1,"alert",3,"ngClass"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Experimental features should be enabled with caution. Many such features may be implementation specific and not ratified for the BOLT spec. Enabling these may still result in a broken experience. Referencing relevant feature documentation is highly advised before enabling."),e.qZA()(),e.TgZ(5,"form",3,4)(7,"div",5),e._UZ(8,"fa-icon",6),e.TgZ(9,"span",7),e._uU(10,"Features"),e.qZA()(),e.TgZ(11,"mat-accordion"),e.YNc(12,so,12,7,"mat-expansion-panel",8),e.qZA()()()),2&P&&(e.xp6(2),e.Q6J("icon",ne.faInfoCircle),e.xp6(6),e.Q6J("icon",ne.faCode),e.xp6(4),e.Q6J("ngForOf",ne.features))},directives:[_.xw,_.yH,J.$V,V.BN,Ie._Y,Ie.JL,Ie.F,_.Wh,Li.pp,X.sg,Li.ib,Li.yz,Li.yK,X.O5,Ge.d,Ni.Rr,we.h,Ie.JJ,Ie.On,ut.KE,Oe.gD,ce.ey,Yt.Nt,Ie.wV,Ie.qQ,Ie.Fd,Ie.Fj,Jl.q,Oa.F,Ie.Q7,ut.bx,ut.TO,X.mk,Dn.oO,Te.lW],pipes:[X.rS],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),U})(),canActivate:[$r.a1]},{path:"lnconfig",component:Ri,canActivate:[$r.a1]}]},{path:"services",component:Et,canActivate:[$r.a1],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:Mt},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:e2}]},{path:"help",component:Oo},{path:"login",component:Po},{path:"error",component:xl},{path:"**",component:_o.w}],{scrollPositionRestoration:"enabled"});var Ws=p(8750),e1=p(8878),a2=p(4594),t1=p(2181);function No(U,Le){if(1&U&&(e.TgZ(0,"p",2),e._UZ(1,"fa-icon",3),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&U){const P=e.oxw();e.xp6(1),e.Q6J("icon",P.faCode),e.xp6(2),e.hij("API Version: ",null==P.information?null:P.information.api_version,"")}}function El(U,Le){if(1&U&&(e.TgZ(0,"a",11),e._UZ(1,"fa-icon",3),e.TgZ(2,"span",12),e._uU(3,"Settings"),e.qZA()()),2&U){const P=e.oxw();e.xp6(1),e.Q6J("icon",P.faUserCog)}}function s2(U,Le){if(1&U&&(e.TgZ(0,"a",13),e._UZ(1,"fa-icon",3),e.TgZ(2,"span",14),e._uU(3,"Help"),e.qZA()()),2&U){const P=e.oxw();e.xp6(1),e.Q6J("icon",P.faQuestion)}}function z4(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"a",15),e.NdJ("click",function(){return e.CHM(P),e.oxw().onClick()}),e._UZ(1,"fa-icon",3),e.TgZ(2,"span"),e._uU(3,"Logout"),e.qZA()()}if(2&U){const P=e.oxw();e.xp6(1),e.Q6J("icon",P.faEject)}}let o2=(()=>{class U{constructor(P,ne,Ye,Ht,Mi){this.logger=P,this.sessionService=ne,this.store=Ye,this.rtlEffects=Ht,this.actions=Mi,this.faUserCog=y.gNZ,this.faCodeBranch=y.mh3,this.faCode=y.dT$,this.faCog=y.b7W,this.faQuestion=y.Psp,this.faEject=y.KOR,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new h.x,new h.x,new h.x,new h.x],this.version=Ai.q4}ngOnInit(){this.store.select(n.R4).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{if(this.information=P,this.flgLoading=!this.information.identity_pubkey,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const ne=this.information.chains[0];this.informationChain.chain=ne.chain,this.informationChain.network=ne.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(P)}),this.sessionService.watchSession().pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{this.showLogout=!!P.token,this.flgLoading=!!P.token}),this.actions.pipe((0,x.R)(this.unSubs[2]),(0,ge.h)(P=>P.type===j.pg.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Ve.c1)({payload:{data:{type:j.n_.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,x.R)(this.unSubs[3])).subscribe(P=>{P&&(this.showLogout=!1,this.store.dispatch((0,Ve.kS)()))})}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(Ae.m),e.Y36(C.yh),e.Y36(tt.V),e.Y36(d.eX))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-top-menu"]],decls:14,vars:8,consts:[[1,"top-menu",3,"overlapTrigger"],["topMenu","matMenu"],["mat-menu-item",""],[1,"fa-icon-small","mr-1",3,"icon"],["mat-menu-item","",4,"ngIf"],["mat-menu-item","","routerLink","/settings",4,"ngIf"],["mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","",3,"click",4,"ngIf"],["mat-icon-button","",1,"top-toolbar-icon",3,"matMenuTriggerFor"],["src","assets/images/RTL-Horse-BY.svg","alt","RTL Logo"],[1,"logo-icon"],["mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["mat-menu-item","","routerLink","/help"],["routerLink","/help"],["mat-menu-item","",3,"click"]],template:function(P,ne){if(1&P&&(e.TgZ(0,"mat-menu",0,1)(2,"p",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span"),e._uU(5),e.qZA()(),e.YNc(6,No,4,2,"p",4),e.YNc(7,El,4,1,"a",5),e.YNc(8,s2,4,1,"a",6),e.YNc(9,z4,4,1,"a",7),e.qZA(),e.TgZ(10,"button",8),e._UZ(11,"img",9),e.TgZ(12,"mat-icon",10),e._uU(13,"arrow_drop_down"),e.qZA()()),2&P){const Ye=e.MAs(1);e.Q6J("overlapTrigger",!1),e.xp6(3),e.Q6J("icon",ne.faCodeBranch),e.xp6(2),e.hij("Version: ",ne.version,""),e.xp6(1),e.Q6J("ngIf",null==ne.information?null:ne.information.api_version),e.xp6(1),e.Q6J("ngIf",ne.showLogout),e.xp6(1),e.Q6J("ngIf",ne.showLogout),e.xp6(1),e.Q6J("ngIf",ne.showLogout),e.xp6(1),e.Q6J("matMenuTriggerFor",Ye)}},directives:[t1.VK,t1.OP,V.BN,X.O5,I.yS,I.rH,Te.lW,t1.p6,ia.Hw],styles:[".mat-menu-content,.mat-menu-content p.mat-menu-item{cursor:default}.mat-menu-content p.mat-menu-item fa-icon,.mat-menu-content p.mat-menu-item span,.mat-menu-content p.mat-menu-item div{cursor:default}.mat-menu-content p.mat-menu-item:hover{cursor:default!important}.top-toolbar-icon .mat-button-wrapper img{width:3.2rem}.top-toolbar-icon .mat-button-wrapper .material-icons.mat-icon.logo-icon{font-size:2rem;text-align:start}\n"],encapsulation:2}),U})();var n1=p(2638),rc=p(8258),Ls=p(149);const Ha={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:y.HLz,link:"/lnd/home",userPersona:j.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:y.nNP,link:"/lnd/onchain",userPersona:j.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:y.BDt,link:"/lnd/connections",userPersona:j.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:y.FVb,link:"/lnd/connections",userPersona:j.ol.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:y.Ssp,link:"/lnd/transactions",userPersona:j.ol.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:y.SuH,link:"/lnd/routing",userPersona:j.ol.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:y.koM,link:"/lnd/reports",userPersona:j.ol.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:y.wn1,link:"/lnd/graph",userPersona:j.ol.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:y.hkK,link:"/lnd/messages",userPersona:j.ol.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:y.q7m,link:"/lnd/channelbackup",userPersona:j.ol.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:y.TmZ,link:"/lnd/network",userPersona:j.ol.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:y.xf3,link:"/lnd/network",userPersona:j.ol.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:y.Krp,link:"/services/loop",userPersona:j.ol.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:y.vqe,link:"/services/loop",userPersona:j.ol.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:j.ol.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:y.CgH,link:"/config",userPersona:j.ol.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:y.Psp,link:"/help",userPersona:j.ol.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:y.HLz,link:"/cln/home",userPersona:j.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:y.nNP,link:"/cln/onchain",userPersona:j.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:y.BDt,link:"/cln/connections",userPersona:j.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:y.FVb,link:"/cln/connections",userPersona:j.ol.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:y.Acd,link:"/cln/liquidityads",userPersona:j.ol.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:y.Ssp,link:"/cln/transactions",userPersona:j.ol.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:y.SuH,link:"/cln/routing",userPersona:j.ol.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:y.koM,link:"/cln/reports",userPersona:j.ol.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:y.wn1,link:"/cln/graph",userPersona:j.ol.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:y.hkK,link:"/cln/messages",userPersona:j.ol.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:y.USL,link:"/cln/rates",userPersona:j.ol.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:y.xf3,link:"/cln/rates",userPersona:j.ol.MERCHANT}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:y.CgH,link:"/config",userPersona:j.ol.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:y.Psp,link:"/help",userPersona:j.ol.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:y.HLz,link:"/ecl/home",userPersona:j.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:y.nNP,link:"/ecl/onchain",userPersona:j.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:y.BDt,link:"/ecl/connections",userPersona:j.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:y.FVb,link:"/ecl/connections",userPersona:j.ol.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:y.Ssp,link:"/ecl/transactions",userPersona:j.ol.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:y.SuH,link:"/ecl/routing",userPersona:j.ol.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:y.koM,link:"/ecl/reports",userPersona:j.ol.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:y.wn1,link:"/ecl/graph",userPersona:j.ol.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:y.CgH,link:"/config",userPersona:j.ol.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:y.Psp,link:"/help",userPersona:j.ol.ALL}]};function s1(U,Le){if(1&U&&(e.TgZ(0,"mat-option",11),e._uU(1),e.qZA()),2&U){const P=Le.$implicit;e.Q6J("value",P.index),e.xp6(1),e.AsE(" ",P.lnNode," (",P.lnImplementation,") ")}}function oo(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-select",9),e.NdJ("selectionChange",function(Ye){return e.CHM(P),e.oxw().onNodeSelectionChange(Ye.value)}),e.YNc(1,s1,2,3,"mat-option",10),e.qZA()}if(2&U){const P=e.oxw();e.Q6J("value",P.selConfigNodeIndex),e.xp6(1),e.Q6J("ngForOf",P.appConfig.nodes)}}function l2(U,Le){if(1&U&&(e.TgZ(0,"span",21),e.GkF(1,22),e.qZA()),2&U){const P=e.oxw().$implicit;e.oxw(2);const ne=e.MAs(11);e.xp6(1),e.Q6J("ngTemplateOutlet","boltzIconBlock"===P.icon?ne:null)}}function d3(U,Le){if(1&U&&e._UZ(0,"fa-icon",23),2&U){const P=e.oxw().$implicit;e.Q6J("icon",P.icon)}}function o1(U,Le){if(1&U&&(e.TgZ(0,"mat-icon",24),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Oqu(P.icon)}}function Tl(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-tree-node",15)(1,"div",16),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw(2).onChildNavClicked(Ht)}),e.TgZ(2,"div",17),e.YNc(3,l2,2,1,"span",18),e.YNc(4,d3,1,1,"fa-icon",19),e.YNc(5,o1,2,1,"mat-icon",20),e.TgZ(6,"span"),e._uU(7),e.qZA()()()()}if(2&U){const P=Le.$implicit;e.s9C("routerLink",P.link),e.xp6(3),e.Q6J("ngIf","SVG"===P.iconType),e.xp6(1),e.Q6J("ngIf","FA"===P.iconType),e.xp6(1),e.Q6J("ngIf",!P.iconType),e.xp6(2),e.Oqu(P.name)}}function l1(U,Le){if(1&U&&(e.TgZ(0,"span",33),e.GkF(1,22),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Q6J("ngTemplateOutlet",P.icon)}}function ac(U,Le){if(1&U&&e._UZ(0,"fa-icon",23),2&U){const P=e.oxw().$implicit;e.Q6J("icon",P.icon)}}function Al(U,Le){if(1&U&&(e.TgZ(0,"mat-icon",24),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Oqu(P.icon)}}function c2(U,Le){if(1&U&&(e.TgZ(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),e.YNc(3,l1,2,1,"span",28),e.YNc(4,ac,1,1,"fa-icon",19),e.YNc(5,Al,2,1,"mat-icon",20),e.TgZ(6,"span"),e._uU(7),e.qZA()(),e.TgZ(8,"button",29)(9,"mat-icon",30),e._uU(10),e.qZA()()(),e.TgZ(11,"div",31),e.GkF(12,32),e.qZA()()),2&U){const P=Le.$implicit,ne=e.oxw(2);e.xp6(3),e.Q6J("ngIf","SVG"===P.iconType),e.xp6(1),e.Q6J("ngIf","FA"===P.iconType),e.xp6(1),e.Q6J("ngIf",!P.iconType),e.xp6(2),e.Oqu(P.name),e.xp6(1),e.uIk("aria-label","toggle "+P.name),e.xp6(2),e.Oqu(ne.treeControlNested.isExpanded(P)?"arrow_drop_up":"arrow_drop_down"),e.xp6(1),e.ekj("tree-children-invisible",!ne.treeControlNested.isExpanded(P))}}function ns(U,Le){if(1&U&&(e.TgZ(0,"mat-tree",5,12),e.YNc(2,Tl,8,5,"mat-tree-node",13),e.YNc(3,c2,13,8,"mat-nested-tree-node",14),e.qZA()),2&U){const P=e.oxw();e.Q6J("dataSource",P.navMenus)("treeControl",P.treeControlNested),e.xp6(3),e.Q6J("matTreeNodeDefWhen",P.hasChild)}}function sc(U,Le){if(1&U&&(e.TgZ(0,"span",21),e.GkF(1,22),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Q6J("ngTemplateOutlet",P.icon)}}function Ll(U,Le){if(1&U&&e._UZ(0,"fa-icon",36),2&U){const P=e.oxw().$implicit;e.s9C("matTooltip",P.name),e.Q6J("icon",P.icon)}}function c1(U,Le){if(1&U&&(e.TgZ(0,"mat-icon",37),e._uU(1),e.qZA()),2&U){const P=e.oxw().$implicit;e.s9C("matTooltip",P.name),e.xp6(1),e.Oqu(P.icon)}}function d2(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-tree-node",16),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw().onShowData(Ht)}),e.YNc(1,sc,2,1,"span",18),e.YNc(2,Ll,1,2,"fa-icon",34),e.YNc(3,c1,2,2,"mat-icon",35),e.TgZ(4,"span"),e._uU(5),e.qZA()()}if(2&U){const P=Le.$implicit;e.xp6(1),e.Q6J("ngIf","SVG"===P.iconType),e.xp6(1),e.Q6J("ngIf","FA"===P.iconType),e.xp6(1),e.Q6J("ngIf",!P.iconType),e.xp6(2),e.Oqu(P.name)}}function Ro(U,Le){if(1&U&&(e.TgZ(0,"span",33),e.GkF(1,22),e.qZA()),2&U){const P=e.oxw().$implicit;e.xp6(1),e.Q6J("ngTemplateOutlet",P.icon)}}function Ys(U,Le){if(1&U&&e._UZ(0,"fa-icon",36),2&U){const P=e.oxw().$implicit;e.s9C("matTooltip",P.name),e.Q6J("icon",P.icon)}}function yo(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"mat-tree-node",16),e.NdJ("click",function(){const Ht=e.CHM(P).$implicit;return e.oxw(2).onClick(Ht)}),e.YNc(1,Ro,2,1,"span",28),e.YNc(2,Ys,1,2,"fa-icon",34),e.TgZ(3,"span"),e._uU(4),e.qZA()()}if(2&U){const P=Le.$implicit;e.xp6(1),e.Q6J("ngIf","SVG"===P.iconType),e.xp6(1),e.Q6J("ngIf","FA"===P.iconType),e.xp6(2),e.Oqu(P.name)}}function u2(U,Le){if(1&U&&(e.TgZ(0,"mat-tree",5),e.YNc(1,yo,5,3,"mat-tree-node",6),e.qZA()),2&U){const P=e.oxw();e.Q6J("dataSource",P.navMenusLogout)("treeControl",P.treeControlLogout)}}function u3(U,Le){1&U&&(e.O4$(),e.TgZ(0,"svg",38)(1,"g",39)(2,"g",40),e._UZ(3,"circle",41)(4,"path",42)(5,"path",43),e.qZA()()())}let h3=(()=>{class U{constructor(P,ne,Ye,Ht,Mi,Ki){this.logger=P,this.commonService=ne,this.sessionService=Ye,this.store=Ht,this.actions=Mi,this.rtlEffects=Ki,this.ChildNavClicked=new e.vpe,this.faEject=y.KOR,this.faEye=y.Mdf,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:y.KOR}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:y.Mdf}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=j.ol,this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x,new h.x],this.treeControlNested=new rc.VY(mn=>mn.children),this.treeControlLogout=new rc.VY(mn=>mn.children),this.treeControlShowData=new rc.VY(mn=>mn.children),this.navMenus=new Ls.WX,this.navMenusLogout=new Ls.WX,this.navMenusShowData=new Ls.WX,this.hasChild=(mn,Fn)=>!!Fn.children&&Fn.children.length>0,this.version=Ai.q4,Ha.LNDChildren&&200===Ha.LNDChildren[Ha.LNDChildren.length-1].id&&Ha.LNDChildren.pop(),this.navMenus.data=Ha.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const P=this.sessionService.getItem("token");this.showLogout=!!P,this.flgLoading=!!P,this.store.select(n.Yj).pipe((0,x.R)(this.unSubs[0])).subscribe(ne=>{this.appConfig=ne}),this.store.select(n.gW).pipe((0,x.R)(this.unSubs[1])).subscribe(ne=>{var Ye,Ht;if(this.information=ne.nodeDate,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const Mi=this.information.chains[0];this.informationChain.chain=Mi.chain,this.informationChain.network=Mi.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=ne.selNode,this.settings=(null===(Ye=this.selNode)||void 0===Ye?void 0:Ye.settings)||null,this.selConfigNodeIndex=+((null===(Ht=ne.selNode)||void 0===Ht?void 0:Ht.index)||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(ne)}),this.sessionService.watchSession().pipe((0,x.R)(this.unSubs[2])).subscribe(ne=>{this.showLogout=!!ne.token,this.flgLoading=!!ne.token}),this.actions.pipe((0,x.R)(this.unSubs[3]),(0,ge.h)(ne=>ne.type===j.pg.LOGOUT)).subscribe(ne=>{this.showLogout=!1})}onClick(P){"Logout"===P.name&&(this.store.dispatch((0,Ve.c1)({payload:{data:{type:j.n_.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,x.R)(this.unSubs[4])).subscribe(ne=>{ne&&(this.showLogout=!1,this.store.dispatch((0,Ve.kS)()))})),this.ChildNavClicked.emit(P)}onChildNavClicked(P){this.ChildNavClicked.emit(P)}filterSideMenuNodes(){var P,ne;switch(null===(ne=null===(P=this.selNode)||void 0===P?void 0:P.lnImplementation)||void 0===ne?void 0:ne.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let P=[];P=JSON.parse(JSON.stringify(Ha.LNDChildren)),this.navMenus.data=null==P?void 0:P.filter(ne=>{var Ye,Ht;return ne.children&&ne.children.length?(ne.children=null===(Ye=ne.children)||void 0===Ye?void 0:Ye.filter(Mi=>{var Ki,mn,Fn;return(Mi.userPersona===j.ol.ALL||Mi.userPersona===(null===(Ki=this.settings)||void 0===Ki?void 0:Ki.userPersona))&&"/services/loop"!==Mi.link&&"/services/boltz"!==Mi.link||"/services/loop"===Mi.link&&(null===(mn=this.settings)||void 0===mn?void 0:mn.swapServerUrl)&&""!==this.settings.swapServerUrl.trim()||"/services/boltz"===Mi.link&&(null===(Fn=this.settings)||void 0===Fn?void 0:Fn.boltzServerUrl)&&""!==this.settings.boltzServerUrl.trim()}),ne.children.length>0):ne.userPersona===j.ol.ALL||ne.userPersona===(null===(Ht=this.settings)||void 0===Ht?void 0:Ht.userPersona)})}loadCLNMenu(){let P=[];P=JSON.parse(JSON.stringify(Ha.CLNChildren)),this.navMenus.data=null==P?void 0:P.filter(ne=>{var Ye,Ht;return ne.children&&ne.children.length?(ne.children=null===(Ye=ne.children)||void 0===Ye?void 0:Ye.filter(Mi=>{var Ki,mn;return(Mi.userPersona===j.ol.ALL||Mi.userPersona===(null===(Ki=this.settings)||void 0===Ki?void 0:Ki.userPersona))&&"/services/peerswap"!==Mi.link||"/services/peerswap"===Mi.link&&(null===(mn=this.settings)||void 0===mn?void 0:mn.enablePeerswap)}),ne.children.length>0):ne.userPersona===j.ol.ALL||ne.userPersona===(null===(Ht=this.settings)||void 0===Ht?void 0:Ht.userPersona)})}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Ha.ECLChildren))}onShowData(P){this.store.dispatch((0,Ve.tj)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(P){const ne=this.selConfigNodeIndex;this.selConfigNodeIndex=P;const Ye=this.appConfig.nodes.find(Ht=>+Ht.index===P);this.store.dispatch((0,Ve.fk)({payload:{uiMessage:j.m6.UPDATE_SELECTED_NODE,prevLnNodeIndex:+ne,currentLnNode:Ye||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(null),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(fi.v),e.Y36(Ae.m),e.Y36(C.yh),e.Y36(d.eX),e.Y36(tt.V))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-side-navigation"]],viewQuery:function(P,ne){if(1&P&&e.Gf(Ls.gi,5),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.tree=Ye.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},decls:12,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","90","fxLayoutAlign","start stretch",1,"w-100"],["class","m-2 multi-node-select",3,"value","selectionChange",4,"ngIf"],[1,"w-100"],[3,"dataSource","treeControl",4,"ngIf"],[3,"dataSource","treeControl"],[3,"click",4,"matTreeNodeDef"],["fxLayout","column","fxLayoutAlign","end stretch",1,"w-100"],["boltzIconBlock",""],[1,"m-2","multi-node-select",3,"value","selectionChange"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["tree",""],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink"],[3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],[1,"fa-icon-small","mr-2"],[3,"ngTemplateOutlet"],[1,"fa-icon-small","mr-2",3,"icon"],[1,"mat-icon-36"],["fxLayout","column","matTreeNodeToggle",""],["fxLayout","row","fxLayoutAlign","start center",1,"mat-nested-tree-node-parent"],["fxFlex","89","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","11","mat-icon-button","","fxLayoutAlign","end center"],[1,"mat-icon-rtl-mirror"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"icon","matTooltip",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltipPosition","right",1,"fa-icon-small","mr-2",3,"icon","matTooltip"],["matTooltipPosition","right",1,"mat-icon-36",3,"matTooltip"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,oo,2,2,"mat-select",2),e._UZ(3,"mat-divider",3),e.YNc(4,ns,4,3,"mat-tree",4),e._UZ(5,"mat-divider",3),e.TgZ(6,"mat-tree",5),e.YNc(7,d2,6,4,"mat-tree-node",6),e.qZA()(),e.TgZ(8,"div",7),e.YNc(9,u2,2,2,"mat-tree",4),e.qZA()(),e.YNc(10,u3,6,0,"ng-template",null,8,e.W1O)),2&P&&(e.xp6(2),e.Q6J("ngIf",ne.appConfig.nodes.length>1),e.xp6(2),e.Q6J("ngIf",null==ne.settings?null:ne.settings.lnServerUrl),e.xp6(2),e.Q6J("dataSource",ne.navMenusShowData)("treeControl",ne.treeControlShowData),e.xp6(3),e.Q6J("ngIf",ne.showLogout))},directives:[_.xw,_.yH,_.Wh,J.$V,X.O5,Oe.gD,X.sg,ce.ey,Ge.d,Ls.gi,Ls.fQ,Ls.uo,Ls.eu,I.Od,I.rH,X.tP,V.BN,ia.Hw,Ls.GZ,Te.lW,Ls.Ar,Br.gM],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]}),U})();var f3=p(773);const p3=["sideNavigation"],m3=["sideNavContent"];function h2(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",13),e.NdJ("click",function(){return e.CHM(P),e.oxw().sideNavToggle()}),e.TgZ(1,"mat-icon"),e._uU(2,"menu"),e.qZA()()}if(2&U){const P=e.oxw();e.Q6J("matTooltip",P.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",P.smallScreen)}}function d1(U,Le){1&U&&(e.O4$(),e._UZ(0,"path",18))}function f2(U,Le){1&U&&(e.O4$(),e._UZ(0,"path",19))}function p2(U,Le){if(1&U){const P=e.EpF();e.TgZ(0,"button",14),e.NdJ("click",function(){e.CHM(P);const Ye=e.oxw();return Ye.flgSidenavPinned=!Ye.flgSidenavPinned}),e.O4$(),e.TgZ(1,"svg",15),e.YNc(2,d1,1,0,"path",16),e.YNc(3,f2,1,0,"path",17),e.qZA()()}if(2&U){const P=e.oxw();e.Q6J("matTooltip",P.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),e.xp6(2),e.Q6J("ngIf",!P.flgSidenavPinned),e.xp6(1),e.Q6J("ngIf",P.flgSidenavPinned)}}function Dl(U,Le){if(1&U&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&U){const P=e.oxw();e.xp6(1),e.Oqu(P.information.alias?"RTL - "+P.information.alias:"RTL")}}function tl(U,Le){if(1&U&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&U){const P=e.oxw();e.xp6(1),e.Oqu(P.information.alias?"Ride The Lightning - "+P.information.alias:"Ride The Lightning")}}function g3(U,Le){1&U&&(e.TgZ(0,"div",20),e._UZ(1,"mat-spinner",21),e.TgZ(2,"h4"),e._uU(3,"Loading RTL..."),e.qZA()())}const Ho=function(U,Le){return[U,Le]};let u1=(()=>{class U{constructor(P,ne,Ye,Ht,Mi,Ki,mn,Fn,cs){this.logger=P,this.commonService=ne,this.store=Ye,this.actions=Ht,this.userIdle=Mi,this.router=Ki,this.sessionService=mn,this.breakpointObserver=Fn,this.renderer=cs,this.information={},this.flgLoading=[!0],this.flgSideNavOpened=!0,this.flgCopied=!1,this.accessKey="",this.xSmallScreen=!1,this.smallScreen=!1,this.flgSidenavPinned=!0,this.flgLoggedIn=!1,this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.router.events.subscribe(P=>{P instanceof I.m2&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([a.u3.XSmall,a.u3.TabletPortrait,a.u3.Small,a.u3.Medium,a.u3.Large,a.u3.XLarge]).pipe((0,x.R)(this.unSubs[0])).subscribe(P=>{P.breakpoints[a.u3.XSmall]?(this.commonService.setScreenSize(j.cu.XS),this.smallScreen=!0):P.breakpoints[a.u3.TabletPortrait]?(this.commonService.setScreenSize(j.cu.SM),this.smallScreen=!0):P.breakpoints[a.u3.Small]||P.breakpoints[a.u3.Medium]?(this.commonService.setScreenSize(j.cu.MD),this.smallScreen=!1):P.breakpoints[a.u3.Large]?(this.commonService.setScreenSize(j.cu.LG),this.smallScreen=!1):(this.commonService.setScreenSize(j.cu.XL),this.smallScreen=!1)}),this.store.dispatch((0,Ve.ey)()),this.accessKey=this.readAccessKey()||"",this.store.select(n.dT).pipe((0,x.R)(this.unSubs[1])).subscribe(P=>{this.settings=P.settings,this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1)}),this.store.select(n.Yj).pipe((0,x.R)(this.unSubs[2])).subscribe(P=>{this.appConfig=P}),this.store.select(n.R4).pipe((0,x.R)(this.unSubs[3])).subscribe(P=>{this.information=P,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,x.R)(this.unSubs[4]),(0,ge.h)(P=>P.type===j.pg.SET_RTL_CONFIG||P.type===j.pg.LOGIN||P.type===j.pg.LOGOUT)).subscribe(P=>{P.type===j.pg.SET_RTL_CONFIG&&(this.sessionService.getItem("token")||(+P.payload.sso.rtlSSO?!this.accessKey||this.accessKey.trim().length<32?this.router.navigate(["./error"],{state:{errorCode:"406",errorMessage:"Access key too short. It should be at least 32 characters long."}}):this.store.dispatch((0,Ve.x4)({payload:{password:Ce(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"]))),P.type===j.pg.LOGIN&&(this.flgLoggedIn=!0,this.userIdle.startWatching(),this.userIdle.resetTimer(),setTimeout(()=>{this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)},1e3)),P.type===j.pg.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,x.R)(this.unSubs[5])).subscribe(P=>{this.logger.info("Counting Down: "+(11-P))}),this.userIdle.onTimeout().pipe((0,x.R)(this.unSubs[6])).subscribe(()=>{this.logger.info("Time Out!"),this.sessionService.getItem("token")&&(this.flgLoggedIn=!1,this.logger.warn("Time limit exceeded for session inactivity."),this.store.dispatch((0,Ve.ts)()),this.store.dispatch((0,Ve.qR)({payload:{data:{type:j.n_.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Ve.kS)()))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const P=window.location.href;return P.includes("access-key=")?P.substring(P.lastIndexOf("access-key=")+11).trim():null}ngAfterViewInit(){(this.smallScreen||!this.flgLoggedIn)&&this.sideNavigation.close(),this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)}sideNavToggle(){this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.toggle()}onNavigationClicked(P){this.smallScreen&&this.sideNavigation.close()}copiedText(P){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+P)}ngOnDestroy(){this.unSubs.forEach(P=>{P.next(),P.complete()})}}return U.\u0275fac=function(P){return new(P||U)(e.Y36(Me.mQ),e.Y36(fi.v),e.Y36(C.yh),e.Y36(d.eX),e.Y36(v),e.Y36(I.F0),e.Y36(Ae.m),e.Y36(a.Yg),e.Y36(e.Qsj))},U.\u0275cmp=e.Xpm({type:U,selectors:[["rtl-app"]],viewQuery:function(P,ne){if(1&P&&(e.Gf(p3,5),e.Gf(m3,5)),2&P){let Ye;e.iGM(Ye=e.CRH())&&(ne.sideNavigation=Ye.first),e.iGM(Ye=e.CRH())&&(ne.sideNavContent=Ye.first)}},decls:23,vars:15,consts:[["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"padding-gap-x","bg-primary","rtl-top-toolbar"],["class","top-toolbar-icon mr-1","mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],[4,"ngIf"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["sideNavigation",""],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["sideNavContent",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["outlet","outlet"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",1,"top-toolbar-icon","mr-1",3,"matTooltip","matTooltipDisabled","click"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click"],["viewBox","0 0 32 32",1,"top-toolbar-icon","icon-pinned"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z",4,"ngIf"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z",4,"ngIf"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z"],[1,"rtl-spinner"],["color","accent"]],template:function(P,ne){1&P&&(e.TgZ(0,"div",0),e.ALo(1,"lowercase"),e.ALo(2,"lowercase"),e.TgZ(3,"mat-toolbar",1)(4,"div"),e.YNc(5,h2,3,2,"button",2),e.YNc(6,p2,4,3,"button",3),e.qZA(),e.TgZ(7,"div"),e.YNc(8,Dl,2,1,"span",4),e.YNc(9,tl,2,1,"span",4),e.qZA(),e.TgZ(10,"div"),e._UZ(11,"rtl-top-menu"),e.qZA()(),e.TgZ(12,"mat-sidenav-container")(13,"mat-sidenav",5,6)(15,"rtl-side-navigation",7),e.NdJ("ChildNavClicked",function(Ht){return ne.onNavigationClicked(Ht)}),e.qZA()(),e.TgZ(16,"mat-sidenav-content",8,9)(18,"div",10),e._UZ(19,"router-outlet",null,11),e.qZA()(),e._uU(21,"> "),e.qZA(),e.YNc(22,g3,4,0,"div",12),e.qZA()),2&P&&(e.Q6J("ngClass",e.WLB(12,Ho,e.lcZ(1,8,ne.settings.themeColor),e.lcZ(2,10,ne.settings.themeMode))),e.xp6(5),e.Q6J("ngIf",ne.flgLoggedIn),e.xp6(1),e.Q6J("ngIf",!ne.smallScreen&&ne.flgLoggedIn),e.xp6(2),e.Q6J("ngIf",ne.smallScreen),e.xp6(1),e.Q6J("ngIf",!ne.smallScreen),e.xp6(4),e.Q6J("opened",ne.flgSideNavOpened&&ne.flgLoggedIn)("mode",ne.flgSidenavPinned&&!ne.smallScreen?"side":"over"),e.xp6(9),e.Q6J("ngIf",!ne.settings.themeColor))},directives:[_.xw,X.mk,Dn.oO,a2.Ye,_.Wh,X.O5,Te.lW,Br.gM,ia.Hw,o2,n1.TM,n1.JX,J.$V,h3,_.yH,n1.Rh,I.lC,f3.Ou],pipes:[X.i8],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[e1.g]}}),U})(),js=(()=>{class U{constructor(P){this.sessionService=P}intercept(P,ne){if(this.sessionService.getItem("token")){const Ye=P.clone({headers:P.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return ne.handle(Ye)}return ne.handle(P)}}return U.\u0275fac=function(P){return new(P||U)(e.LFG(Ae.m))},U.\u0275prov=e.Yz7({token:U,factory:U.\u0275fac}),U})();var il=p(7998),oc=p(711),Il=p(4947),Ol=p(3289);const nl={userPersona:"OPERATOR",themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1},m2={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},h1={apiURL:"",apisCallStatus:{Login:{status:j.Bn.UN_INITIATED},IsAuthorized:{status:j.Bn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:nl,authentication:m2,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,sso:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,allowPasswordUpdate:!0,nodes:[{settings:nl,authentication:m2}]},nodeData:{}},ma=(0,C.Lq)(h1,(0,C.on)(Ve.qi,(U,{payload:Le})=>{const P=JSON.parse(JSON.stringify(U.apisCallStatus));return Le.action&&(P[Le.action]={status:Le.status,statusCode:Le.statusCode,message:Le.message,URL:Le.URL,filePath:Le.filePath}),Object.assign(Object.assign({},U),{apisCallStatus:P})}),(0,C.on)(Ve.vI,(U,{payload:Le})=>Object.assign(Object.assign({},h1),{apisCallStatus:U.apisCallStatus,appConfig:U.appConfig,selNode:Le})),(0,C.on)(Ve.fk,(U,{payload:Le})=>Object.assign(Object.assign({},U),{selNode:Le.currentLnNode})),(0,C.on)(Ve.Tm,(U,{payload:Le})=>{const P=JSON.parse(JSON.stringify(U.selNode));switch(Le.service){case j.JX.BOLTZ:P.settings.boltzServerUrl=Le.settings.boltzServerUrl;break;case j.JX.LOOP:P.settings.swapServerUrl=Le.settings.swapServerUrl;break;case j.JX.OFFERS:P.settings.enableOffers=Le.settings.enableOffers;break;case j.JX.PEERSWAP:P.settings.enablePeerswap=Le.settings.enablePeerswap}return Object.assign(Object.assign({},U),{selNode:P})}),(0,C.on)(Ve._V,(U,{payload:Le})=>Object.assign(Object.assign({},U),{nodeData:Le})),(0,C.on)(Ve.XT,(U,{payload:Le})=>Object.assign(Object.assign({},U),{appConfig:Le}))),rl={apisCallStatus:{FetchPageSettings:{status:j.Bn.UN_INITIATED},FetchInfo:{status:j.Bn.UN_INITIATED},FetchFees:{status:j.Bn.UN_INITIATED},FetchPeers:{status:j.Bn.UN_INITIATED},FetchClosedChannels:{status:j.Bn.UN_INITIATED},FetchPendingChannels:{status:j.Bn.UN_INITIATED},FetchAllChannels:{status:j.Bn.UN_INITIATED},FetchBalanceBlockchain:{status:j.Bn.UN_INITIATED},FetchInvoices:{status:j.Bn.UN_INITIATED},FetchPayments:{status:j.Bn.UN_INITIATED},FetchForwardingHistory:{status:j.Bn.UN_INITIATED},FetchUTXOs:{status:j.Bn.UN_INITIATED},FetchTransactions:{status:j.Bn.UN_INITIATED},FetchLightningTransactions:{status:j.Bn.UN_INITIATED},FetchNetwork:{status:j.Bn.UN_INITIATED}},nodeSettings:{userPersona:j.ol.OPERATOR,unannouncedChannels:!1,fiatConversion:!1,channelBackupPath:"",currencyUnits:[],selCurrencyUnit:"",lnImplementation:"",swapServerUrl:""},pageSettings:j.gK,information:{},peers:[],fees:{channel_fees:[],day_fee_sum:0,week_fee_sum:0,month_fee_sum:0,daily_tx_count:0,weekly_tx_count:0,monthly_tx_count:0,forwarding_events_history:{}},networkInfo:{},blockchainBalance:{total_balance:-1},lightningBalance:{local:-1,remote:-1},channels:[],channelsSummary:{active:{num_channels:0,capacity:0},inactive:{num_channels:0,capacity:0}},closedChannels:[],pendingChannels:{},pendingChannelsSummary:{open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0},transactions:[],utxos:[],listPayments:{payments:[]},listInvoices:{invoices:[]},allLightningTransactions:{listPaymentsAll:{payments:[],first_index_offset:"",last_index_offset:""},listInvoicesAll:{invoices:[],total_invoices:0,last_index_offset:"",first_index_offset:""}},forwardingHistory:{last_offset_index:0,total_fee_msat:0,forwarding_events:[]}};let Pl=!1,gr=!1;const _3=(0,C.Lq)(rl,(0,C.on)(Wt.PC,(U,{payload:Le})=>{const P=JSON.parse(JSON.stringify(U.apisCallStatus));return Le.action&&(P[Le.action]={status:Le.status,statusCode:Le.statusCode,message:Le.message,URL:Le.URL,filePath:Le.filePath}),Object.assign(Object.assign({},U),{apisCallStatus:P})}),(0,C.on)(Wt.JT,(U,{payload:Le})=>Object.assign(Object.assign({},U),{nodeSettings:Le})),(0,C.on)(Wt.Ll,(U,{payload:Le})=>Object.assign(Object.assign({},rl),{nodeSettings:Le})),(0,C.on)(Wt.CX,(U,{payload:Le})=>Object.assign(Object.assign({},U),{information:Le})),(0,C.on)(Wt.Z8,(U,{payload:Le})=>Object.assign(Object.assign({},U),{peers:Le})),(0,C.on)(Wt.EK,(U,{payload:Le})=>{const P=[...U.peers],ne=U.peers.findIndex(Ye=>Ye.pub_key===Le.pubkey);return ne>-1&&P.splice(ne,1),Object.assign(Object.assign({},U),{peers:P})}),(0,C.on)(Wt.YP,(U,{payload:Le})=>{var P;const ne=U.listInvoices;return null===(P=ne.invoices)||void 0===P||P.unshift(Le),Object.assign(Object.assign({},U),{listInvoices:ne})}),(0,C.on)(Wt.aL,(U,{payload:Le})=>{var P;const ne=U.listInvoices;return ne.invoices=null===(P=ne.invoices)||void 0===P?void 0:P.map(Ye=>Ye.payment_request===Le.payment_request?Le:Ye),Object.assign(Object.assign({},U),{listInvoices:ne})}),(0,C.on)(Wt.qY,(U,{payload:Le})=>{var P;const ne=U.listPayments;return ne.payments=null===(P=ne.payments)||void 0===P?void 0:P.map(Ye=>Ye.payment_hash===Le.payment_hash?Le:Ye),Object.assign(Object.assign({},U),{listPayments:ne})}),(0,C.on)(Wt.RX,(U,{payload:Le})=>Object.assign(Object.assign({},U),{fees:Le})),(0,C.on)(Wt._L,(U,{payload:Le})=>Object.assign(Object.assign({},U),{closedChannels:Le})),(0,C.on)(Wt.TW,(U,{payload:Le})=>Object.assign(Object.assign({},U),{pendingChannels:Le.pendingChannels,pendingChannelsSummary:Le.pendingChannelsSummary})),(0,C.on)(Wt.as,(U,{payload:Le})=>{let P=0,ne=0,Ye=0,Ht=0,Mi=0,Ki=0;return Le&&Le.forEach(mn=>{mn.local_balance||(mn.local_balance=0),!0===mn.active?(Mi+=+mn.local_balance,Ye+=1,mn.local_balance?P=+P+ +mn.local_balance:mn.local_balance=0,mn.remote_balance?ne=+ne+ +mn.remote_balance:mn.remote_balance=0):(Ki+=+mn.local_balance,Ht+=1)}),Object.assign(Object.assign({},U),{channels:Le,channelsSummary:{active:{num_channels:Ye,capacity:Mi},inactive:{num_channels:Ht,capacity:Ki}},lightningBalance:{local:P,remote:ne}})}),(0,C.on)(Wt.OG,(U,{payload:Le})=>{const P=[...U.channels],ne=U.channels.findIndex(Ye=>Ye.channel_point===Le.channelPoint);return ne>-1&&P.splice(ne,1),Object.assign(Object.assign({},U),{channels:P})}),(0,C.on)(Wt.Jl,(U,{payload:Le})=>Object.assign(Object.assign({},U),{blockchainBalance:Le})),(0,C.on)(Wt.ks,(U,{payload:Le})=>Object.assign(Object.assign({},U),{networkInfo:Le})),(0,C.on)(Wt.Nr,(U,{payload:Le})=>(Le.total_invoices||(Le.total_invoices=U.listInvoices.total_invoices),Object.assign(Object.assign({},U),{listInvoices:Le}))),(0,C.on)(Wt.Lf,(U,{payload:Le})=>{if(Pl=!0,Le.length&&gr){const P=[...U.utxos];return P.forEach(ne=>{const Ye=Le.find(Ht=>{var Mi;return Ht.tx_hash===(null===(Mi=ne.outpoint)||void 0===Mi?void 0:Mi.txid_str)});ne.label=Ye&&Ye.label?Ye.label:""}),Object.assign(Object.assign({},U),{utxos:P,transactions:Le})}return Object.assign(Object.assign({},U),{transactions:Le})}),(0,C.on)(Wt.UH,(U,{payload:Le})=>{if(gr=!0,Le.length&&Pl){const P=[...U.transactions];Le.forEach(ne=>{const Ye=P.find(Ht=>{var Mi;return Ht.tx_hash===(null===(Mi=ne.outpoint)||void 0===Mi?void 0:Mi.txid_str)});ne.label=Ye&&Ye.label?Ye.label:""})}return Object.assign(Object.assign({},U),{utxos:Le})}),(0,C.on)(Wt.HI,(U,{payload:Le})=>{const P={listInvoicesAll:U.allLightningTransactions.listInvoicesAll,listPaymentsAll:Le};return Object.assign(Object.assign({},U),{listPayments:Le,allLightningTransactions:P})}),(0,C.on)(Wt.Fr,(U,{payload:Le})=>{const P={listInvoicesAll:Le.listInvoicesAll,listPaymentsAll:U.listPayments};return Object.assign(Object.assign({},U),{allLightningTransactions:P})}),(0,C.on)(Wt.QJ,(U,{payload:Le})=>{const P=[...U.channels,...U.closedChannels];let ne=Le.forwarding_events?JSON.parse(JSON.stringify(Le)):{};return ne.forwarding_events&&(ne=Fo(ne,P)),Object.assign(Object.assign({},U),{forwardingHistory:ne})}),(0,C.on)(Wt.pd,(U,{payload:Le})=>{const P=[];return j.gK.forEach(ne=>{const Ye=Le&&Le.length&&Le.length>0?Le.find(Ht=>Ht.pageId===ne.pageId):null;if(Ye){const Ht=JSON.parse(JSON.stringify(Ye.tables));Ye.tables=[],ne.tables.forEach(Mi=>{const Ki=Ht.find(mn=>mn.tableId===Mi.tableId)||null;Ye.tables.push(Ki||JSON.parse(JSON.stringify(Mi)))}),P.push(Ye)}else P.push(JSON.parse(JSON.stringify(ne)))}),Object.assign(Object.assign({},U),{pageSettings:P})})),Fo=(U,Le)=>(U.forwarding_events.forEach(P=>{var ne,Ye;if(Le&&Le.length>0)for(let Ht=0;Ht{const P=JSON.parse(JSON.stringify(U.apisCallStatus));return Le.action&&(P[Le.action]={status:Le.status,statusCode:Le.statusCode,message:Le.message,URL:Le.URL,filePath:Le.filePath}),Object.assign(Object.assign({},U),{apisCallStatus:P})}),(0,C.on)(Rt.oo,(U,{payload:Le})=>Object.assign(Object.assign({},U),{nodeSettings:Le})),(0,C.on)(Rt.xH,(U,{payload:Le})=>Object.assign(Object.assign({},bo),{nodeSettings:Le})),(0,C.on)(Rt.CX,(U,{payload:Le})=>Object.assign(Object.assign({},U),{information:Le})),(0,C.on)(Rt.RX,(U,{payload:Le})=>Object.assign(Object.assign({},U),{fees:Le})),(0,C.on)(Rt.I8,(U,{payload:Le})=>Le.perkb?Object.assign(Object.assign({},U),{feeRatesPerKB:Le}):Le.perkw?Object.assign(Object.assign({},U),{feeRatesPerKW:Le}):Object.assign({},U)),(0,C.on)(Rt.Lu,(U,{payload:Le})=>Object.assign(Object.assign({},U),{balance:Le})),(0,C.on)(Rt.xS,(U,{payload:Le})=>Object.assign(Object.assign({},U),{localRemoteBalance:Le})),(0,C.on)(Rt.Z8,(U,{payload:Le})=>Object.assign(Object.assign({},U),{peers:Le})),(0,C.on)(Rt.X3,(U,{payload:Le})=>Object.assign(Object.assign({},U),{peers:[...U.peers,Le]})),(0,C.on)(Rt.EK,(U,{payload:Le})=>{const P=[...U.peers],ne=U.peers.findIndex(Ye=>Ye.id===Le.id);return ne>-1&&P.splice(ne,1),Object.assign(Object.assign({},U),{peers:P})}),(0,C.on)(Rt.as,(U,{payload:Le})=>Object.assign(Object.assign({},U),{activeChannels:Le.activeChannels,pendingChannels:Le.pendingChannels,inactiveChannels:Le.inactiveChannels})),(0,C.on)(Rt.OG,(U,{payload:Le})=>{const P=[...U.peers];return P.forEach(ne=>{ne.id===Le.id&&(ne.connected=!1,delete ne.netaddr)}),Object.assign(Object.assign({},U),{peers:P})}),(0,C.on)(Rt.HI,(U,{payload:Le})=>Object.assign(Object.assign({},U),{payments:Le})),(0,C.on)(Rt.QJ,(U,{payload:Le})=>{const P=[...U.activeChannels,...U.pendingChannels,...U.inactiveChannels],ne=f1(Le.listForwards,P);switch(Le.listForwards=ne,Le.status){case j.OO.SETTLED:const Ye=U.fees;return Ye.totalTxCount=Le.totalForwards||0,Object.assign(Object.assign({},U),{fees:Ye,forwardingHistory:Le});case j.OO.FAILED:return Object.assign(Object.assign({},U),{failedForwardingHistory:Le});case j.OO.LOCAL_FAILED:return Object.assign(Object.assign({},U),{localFailedForwardingHistory:Le});default:return Object.assign({},U)}}),(0,C.on)(Rt.YP,(U,{payload:Le})=>{var P;const ne=U.invoices;return null===(P=ne.invoices)||void 0===P||P.unshift(Le),Object.assign(Object.assign({},U),{invoices:ne})}),(0,C.on)(Rt.Nr,(U,{payload:Le})=>Object.assign(Object.assign({},U),{invoices:Le})),(0,C.on)(Rt.aL,(U,{payload:Le})=>{var P;const ne=U.invoices;return ne.invoices=null===(P=ne.invoices)||void 0===P?void 0:P.map(Ye=>Ye.label===Le.label?Le:Ye),Object.assign(Object.assign({},U),{invoices:ne})}),(0,C.on)(Rt.UH,(U,{payload:Le})=>Object.assign(Object.assign({},U),{utxos:Le})),(0,C.on)(Rt.Zu,(U,{payload:Le})=>Object.assign(Object.assign({},U),{offers:Le})),(0,C.on)(Rt.ZH,(U,{payload:Le})=>{const P=U.offers;return null==P||P.unshift(Le),Object.assign(Object.assign({},U),{offers:P})}),(0,C.on)(Rt.JK,(U,{payload:Le})=>{const P=[...U.offers],ne=U.offers.findIndex(Ye=>Ye.offer_id===Le.offer.offer_id);return ne>-1&&P.splice(ne,1,Le.offer),Object.assign(Object.assign({},U),{offers:P})}),(0,C.on)(Rt.d7,(U,{payload:Le})=>Object.assign(Object.assign({},U),{offersBookmarks:Le})),(0,C.on)(Rt.e9,(U,{payload:Le})=>{const P=[...U.offersBookmarks],ne=P.findIndex(Ye=>Ye.bolt12===Le.bolt12);if(ne<0)null==P||P.unshift(Le);else{const Ye=Object.assign({},P[ne]);Ye.title=Le.title,Ye.amountMSat=Le.amountMSat,Ye.lastUpdatedAt=Le.lastUpdatedAt,Ye.description=Le.description,Ye.vendor=Le.vendor,P.splice(ne,1,Ye)}return Object.assign(Object.assign({},U),{offersBookmarks:P})}),(0,C.on)(Rt.en,(U,{payload:Le})=>{const P=[...U.offersBookmarks],ne=U.offersBookmarks.findIndex(Ye=>Ye.bolt12===Le.bolt12);return ne>-1&&P.splice(ne,1),Object.assign(Object.assign({},U),{offersBookmarks:P})}),(0,C.on)(Rt.pd,(U,{payload:Le})=>{const P=[];return j.gG.forEach(ne=>{const Ye=Le&&Le.length&&Le.length>0?Le.find(Ht=>Ht.pageId===ne.pageId):null;if(Ye){const Ht=JSON.parse(JSON.stringify(Ye.tables));Ye.tables=[],ne.tables.forEach(Mi=>{const Ki=Ht.find(mn=>mn.tableId===Mi.tableId)||null;Ye.tables.push(Ki||JSON.parse(JSON.stringify(Mi)))}),P.push(Ye)}else P.push(JSON.parse(JSON.stringify(ne)))}),Object.assign(Object.assign({},U),{pageSettings:P})})),f1=(U,Le)=>(U&&U.length>0?U.forEach((P,ne)=>{var Ye;if(Le&&Le.length>0)for(let Ht=0;Ht{const P=JSON.parse(JSON.stringify(U.apisCallStatus));return Le.action&&(P[Le.action]={status:Le.status,statusCode:Le.statusCode,message:Le.message,URL:Le.URL,filePath:Le.filePath}),Object.assign(Object.assign({},U),{apisCallStatus:P})}),(0,C.on)(st.Zr,(U,{payload:Le})=>Object.assign(Object.assign({},U),{nodeSettings:Le})),(0,C.on)(st.Fd,(U,{payload:Le})=>Object.assign(Object.assign({},p1),{nodeSettings:Le})),(0,C.on)(st.CX,(U,{payload:Le})=>Object.assign(Object.assign({},U),{information:Le})),(0,C.on)(st.RX,(U,{payload:Le})=>Object.assign(Object.assign({},U),{fees:Le})),(0,C.on)(st.eN,(U,{payload:Le})=>Object.assign(Object.assign({},U),{activeChannels:Le})),(0,C.on)(st.TW,(U,{payload:Le})=>Object.assign(Object.assign({},U),{pendingChannels:Le})),(0,C.on)(st.i,(U,{payload:Le})=>Object.assign(Object.assign({},U),{inactiveChannels:Le})),(0,C.on)(st.HG,(U,{payload:Le})=>Object.assign(Object.assign({},U),{channelsStatus:Le})),(0,C.on)(st.Bw,(U,{payload:Le})=>Object.assign(Object.assign({},U),{onchainBalance:Le})),(0,C.on)(st.On,(U,{payload:Le})=>Object.assign(Object.assign({},U),{lightningBalance:Le})),(0,C.on)(st.Z8,(U,{payload:Le})=>Object.assign(Object.assign({},U),{peers:Le})),(0,C.on)(st.EK,(U,{payload:Le})=>{const P=[...U.peers],ne=U.peers.findIndex(Ye=>Ye.nodeId===Le.nodeId);return ne>-1&&P.splice(ne,1),Object.assign(Object.assign({},U),{peers:P})}),(0,C.on)(st.OG,(U,{payload:Le})=>{const P=[...U.activeChannels],ne=U.activeChannels.findIndex(Ye=>Ye.channelId===Le.channelId);return ne>-1&&P.splice(ne,1),Object.assign(Object.assign({},U),{activeChannels:P})}),(0,C.on)(st.HI,(U,{payload:Le})=>{var P;if(Le&&Le.sent){const ne=[...U.activeChannels,...U.pendingChannels,...U.inactiveChannels];null===(P=Le.sent)||void 0===P||P.map(Ye=>{var Ht;const Mi=U.peers.find(Ki=>Ki.nodeId===Ye.recipientNodeId);return Ye.recipientNodeAlias=Mi?Mi.alias:Ye.recipientNodeId,Ye.parts&&(null===(Ht=Ye.parts)||void 0===Ht||Ht.map(Ki=>{const mn=ne.find(Fn=>Fn.channelId===Ki.toChannelId);return Ki.toChannelAlias=mn?mn.alias:Ki.toChannelId,Ye.parts})),Le.sent})}if(Le&&Le.relayed){const ne=[...U.activeChannels,...U.pendingChannels,...U.inactiveChannels];Le.relayed.forEach(Ye=>{Ye=al(Ye,ne)})}return Object.assign(Object.assign({},U),{payments:Le})}),(0,C.on)(st.Lf,(U,{payload:Le})=>Object.assign(Object.assign({},U),{transactions:Le})),(0,C.on)(st.YP,(U,{payload:Le})=>{const P=U.invoices;return null==P||P.unshift(Le),Object.assign(Object.assign({},U),{invoices:P})}),(0,C.on)(st.Nr,(U,{payload:Le})=>Object.assign(Object.assign({},U),{invoices:Le})),(0,C.on)(st.aL,(U,{payload:Le})=>{let P=U.invoices;return P=null==P?void 0:P.map(ne=>{if(ne.paymentHash===Le.paymentHash){if(Le.hasOwnProperty("type")){const Ye=JSON.parse(JSON.stringify(ne));return Ye.amountSettled=Le.parts&&Le.parts.length&&Le.parts.length>0&&Le.parts[0].amount?(Le.parts[0].amount||0)/1e3:0,Ye.receivedAt=Le.parts&&Le.parts.length&&Le.parts.length>0&&Le.parts[0].timestamp?Math.round((Le.parts[0].timestamp||0)/1e3):0,Ye.status="received",Ye}return Le}return ne}),Object.assign(Object.assign({},U),{invoices:P})}),(0,C.on)(st.DJ,(U,{payload:Le})=>{let P=U.pendingChannels;return P=null==P?void 0:P.map(ne=>{var Ye;return ne.channelId===Le.channelId&&ne.nodeId===Le.remoteNodeId&&(Le.currentState=null===(Ye=Le.currentState)||void 0===Ye?void 0:Ye.replace(/_/g," "),ne.state=Le.currentState),ne}),Object.assign(Object.assign({},U),{pendingChannels:P})}),(0,C.on)(st.ti,(U,{payload:Le})=>{var P,ne,Ye;const Ht=U.payments,Mi=al(Le,[...U.activeChannels,...U.pendingChannels,...U.inactiveChannels]);Mi.amountIn=Math.round((Le.amountIn||0)/1e3),Mi.amountOut=Math.round((Le.amountOut||0)/1e3),null===(P=Ht.relayed)||void 0===P||P.unshift(Mi);const Ki=(Le.amountIn||0)-(Le.amountOut||0),mn={localBalance:U.lightningBalance.localBalance+Ki,remoteBalance:U.lightningBalance.remoteBalance-Ki},Fn=U.channelsStatus;Fn.active&&(Fn.active.capacity=((null===(Ye=null===(ne=U.channelsStatus)||void 0===ne?void 0:ne.active)||void 0===Ye?void 0:Ye.capacity)||0)+Ki);const cs={daily_fee:(U.fees.daily_fee||0)+Ki,daily_txs:(U.fees.daily_txs||0)+1,weekly_fee:(U.fees.weekly_fee||0)+Ki,weekly_txs:(U.fees.weekly_txs||0)+1,monthly_fee:(U.fees.monthly_fee||0)+Ki,monthly_txs:(U.fees.monthly_txs||0)+1},Ds=U.activeChannels;let ys=!1,bs=!1;for(const Jn of Ds){if(Jn.channelId===Le.fromChannelId){ys=!0;const vr=(Jn.toLocal||0)+(Jn.toRemote||0);Jn.toLocal=(Jn.toLocal||0)+Mi.amountIn,Jn.toRemote=(Jn.toRemote||0)-Mi.amountIn,Jn.balancedness=0===vr?1:+(1-Math.abs((Jn.toLocal-Jn.toRemote)/vr)).toFixed(3)}if(Jn.channelId===Le.toChannelId){bs=!0;const vr=(Jn.toLocal||0)+(Jn.toRemote||0);Jn.toLocal=(Jn.toLocal||0)-Mi.amountOut,Jn.toRemote=(Jn.toRemote||0)+Mi.amountOut,Jn.balancedness=0===vr?1:+(1-Math.abs((Jn.toLocal-Jn.toRemote)/vr)).toFixed(3)}if(bs&&ys)break}return Object.assign(Object.assign({},U),{payments:Ht,lightningBalance:mn,channelStatus:Fn,fees:cs,activeChannels:Ds})}),(0,C.on)(st.pd,(U,{payload:Le})=>{const P=[];return j.c3.forEach(ne=>{const Ye=Le&&Le.length&&Le.length>0?Le.find(Ht=>Ht.pageId===ne.pageId):null;if(Ye){const Ht=JSON.parse(JSON.stringify(Ye.tables));Ye.tables=[],ne.tables.forEach(Mi=>{const Ki=Ht.find(mn=>mn.tableId===Mi.tableId)||null;Ye.tables.push(Ki||JSON.parse(JSON.stringify(Mi)))}),P.push(Ye)}else P.push(JSON.parse(JSON.stringify(ne)))}),Object.assign(Object.assign({},U),{pageSettings:P})})),al=(U,Le)=>{var P,ne,Ye,Ht,Mi,Ki,mn,Fn,cs,Ds,ys,bs,Jn,vr;if("payment-relayed"===U.type)if(Le&&Le.length>0)for(let Rn=0;Rn0)for(let Rn=0;Rn{var Fa;(null===(Fa=Le[Rn].channelId)||void 0===Fa?void 0:Fa.toString())===hr.channelId&&(hr.channelAlias=Le[Rn].alias?Le[Rn].alias:hr.channelId,hr.shortChannelId=Le[Rn].shortChannelId?Le[Rn].shortChannelId:"")}),null===(Fn=U.outgoing)||void 0===Fn||Fn.forEach(hr=>{var Fa;(null===(Fa=Le[Rn].channelId)||void 0===Fa?void 0:Fa.toString())===hr.channelId&&(hr.channelAlias=Le[Rn].alias?Le[Rn].alias:hr.channelId,hr.shortChannelId=Le[Rn].shortChannelId?Le[Rn].shortChannelId:"")}),Rn===Le.length-1&&(U.incoming&&U.incoming.length&&U.incoming.length>0&&!U.incoming[0].channelAlias&&(null===(cs=U.incoming)||void 0===cs||cs.forEach(hr=>{var Fa;hr.channelAlias=(null===(Fa=hr.channelId)||void 0===Fa?void 0:Fa.substring(0,17))+"...",hr.shortChannelId=""})),U.outgoing&&U.outgoing.length&&U.outgoing.length>0&&!U.outgoing[0].channelAlias&&(null===(Ds=U.outgoing)||void 0===Ds||Ds.forEach(hr=>{var Fa;hr.channelAlias=(null===(Fa=hr.channelId)||void 0===Fa?void 0:Fa.substring(0,17))+"...",hr.shortChannelId=""})));else null===(ys=U.incoming)||void 0===ys||ys.forEach(Rn=>{var hr;Rn.channelAlias=(null===(hr=Rn.channelId)||void 0===hr?void 0:hr.substring(0,17))+"...",Rn.shortChannelId=""}),null===(bs=U.outgoing)||void 0===bs||bs.forEach(Rn=>{var hr;Rn.channelAlias=(null===(hr=Rn.channelId)||void 0===hr?void 0:hr.substring(0,17))+"...",Rn.shortChannelId=""});U.amountIn=(null===(Jn=U.incoming)||void 0===Jn?void 0:Jn.reduce((Rn,hr)=>Rn+hr.amount,0))||0,U.fromChannelId=U.incoming&&U.incoming.length?U.incoming[0].channelId:"",U.fromChannelAlias=U.incoming&&U.incoming.length?U.incoming[0].channelAlias:"",U.fromShortChannelId=U.incoming&&U.incoming.length?U.incoming[0].shortChannelId:"",U.amountOut=(null===(vr=U.outgoing)||void 0===vr?void 0:vr.reduce((Rn,hr)=>Rn+hr.amount,0))||0,U.toChannelId=U.outgoing&&U.outgoing.length?U.outgoing[0].channelId:"",U.toChannelAlias=U.outgoing&&U.outgoing.length?U.outgoing[0].channelAlias:"",U.toShortChannelId=U.outgoing&&U.outgoing.length?U.outgoing[0].shortChannelId:""}return U};let cc=(()=>{class U{}return U.\u0275fac=function(P){return new(P||U)},U.\u0275mod=e.oAB({type:U,bootstrap:[u1]}),U.\u0275inj=e.cJS({providers:[{provide:M.TP,useClass:js,multi:!0},$r.a1,Ae.m,Cl.D,il.d,kt.W,fi.v,dn],imports:[[f.PW,Ws.m,nc,a.xu,t.t6,T.forRoot({idle:3590,timeout:10,ping:12e3}),C.Aw.forRoot({root:ma,lnd:_3,cln:g2,ecl:lc},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),d.sQ.forRoot([tt.V,oc.l,Il.J,Ol.o]),Ai.NZ.production?[]:R.FT.instrument()]]}),U})();Ai.NZ.production&&(0,e.G48)(),t.q6().bootstrapModule(cc).catch(U=>console.log(U))},7854:(Be,K)=>{"use strict";function p(j){return Object.keys(j).map(Ve=>j[Ve])}var j;Object.defineProperty(K,"__esModule",{value:!0}),(j=K.HashAlgorithms||(K.HashAlgorithms={})).SHA1="sha1",j.SHA256="sha256",j.SHA512="sha512";const t=p(K.HashAlgorithms);!function(j){j.ASCII="ascii",j.BASE64="base64",j.HEX="hex",j.LATIN1="latin1",j.UTF8="utf8"}(K.KeyEncodings||(K.KeyEncodings={}));const e=p(K.KeyEncodings);!function(j){j.HOTP="hotp",j.TOTP="totp"}(K.Strategy||(K.Strategy={}));const f=p(K.Strategy),M=()=>{throw new Error("Please provide an options.createDigest implementation.")};function a(j){return/^(\d+)$/.test(j)}function C(j,Ve,Me){return j.length>=Ve?j:`${Array(Ve+1).join(Me)}${j}`.slice(-1*Ve)}function d(j){const Ve=`otpauth://${j.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,Me=[];if(f.indexOf(j.type)<0)throw new Error(`Expecting options.type to be one of ${f.join(", ")}. Received ${j.type}.`);if("hotp"===j.type){if(null==j.counter||"number"!=typeof j.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');Me.push(`&counter=${j.counter}`)}return"totp"===j.type&&j.step&&Me.push(`&period=${j.step}`),j.digits&&Me.push(`&digits=${j.digits}`),j.algorithm&&Me.push(`&algorithm=${j.algorithm.toUpperCase()}`),j.issuer&&Me.push(`&issuer=${encodeURIComponent(j.issuer)}`),Ve.replace("{labelPrefix}",encodeURIComponent(j.issuer||j.accountName)).replace("{accountName}",encodeURIComponent(j.accountName)).replace("{secret}",j.secret).replace("{query}",Me.join(""))}class R{constructor(Ve={}){this._defaultOptions=Object.freeze(to({},Ve)),this._options=Object.freeze({})}create(Ve={}){return new R(Ve)}clone(Ve={}){const Me=this.create(to(to({},this._defaultOptions),Ve));return Me.options=this._options,Me}get options(){return Object.freeze(to(to({},this._defaultOptions),this._options))}set options(Ve){this._options=Object.freeze(to(to({},this._options),Ve))}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function h(j){if("function"!=typeof j.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof j.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof j.digits)throw new Error("Expecting options.digits to be a number.");if(!j.algorithm||t.indexOf(j.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${t.join(", ")}. Received ${j.algorithm}.`);if(!j.encoding||e.indexOf(j.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${e.join(", ")}. Received ${j.encoding}.`)}const L=(j,Ve,Me)=>Buffer.from(Ve,Me).toString("hex");function w(){return{algorithm:K.HashAlgorithms.SHA1,createHmacKey:L,createDigest:M,digits:6,encoding:K.KeyEncodings.ASCII}}function D(j){const Ve=to(to({},w()),j);return h(Ve),Object.freeze(Ve)}function S(j){return C(j.toString(16),16,"0")}function k(j,Ve){const Me=Buffer.from(j,"hex"),J=15&Me[Me.length-1],ut=((127&Me[J])<<24|(255&Me[J+1])<<16|(255&Me[J+2])<<8|255&Me[J+3])%Math.pow(10,Ve);return C(String(ut),Ve,"0")}function B(j,Ve,Me){const J=Me.digest||function E(j,Ve,Me){const J=S(Ve),Ie=Me.createHmacKey(Me.algorithm,j,Me.encoding);return Me.createDigest(Me.algorithm,Ie,J)}(j,Ve,Me);return k(J,Me.digits)}function Z(j,Ve,Me,J){return!!a(j)&&j===B(Ve,Me,J)}function Y(j,Ve,Me,J,Ie){return d({algorithm:Ie.algorithm,digits:Ie.digits,type:K.Strategy.HOTP,accountName:j,counter:J,issuer:Ve,secret:Me})}class ae extends R{create(Ve={}){return new ae(Ve)}allOptions(){return D(this.options)}generate(Ve,Me){return B(Ve,Me,this.allOptions())}check(Ve,Me,J){return Z(Ve,Me,J,this.allOptions())}verify(Ve){if("object"!=typeof Ve)throw new Error("Expecting argument 0 of verify to be an object");return this.check(Ve.token,Ve.secret,Ve.counter)}keyuri(Ve,Me,J,Ie){return Y(Ve,Me,J,Ie,this.allOptions())}}function ee(j){if("number"==typeof j)return[Math.abs(j),Math.abs(j)];if(Array.isArray(j)){const[Ve,Me]=j;if("number"==typeof Ve&&"number"==typeof Me)return[Math.abs(Ve),Math.abs(Me)]}throw new Error("Expecting options.window to be an number or [number, number].")}function ue(j){if(h(j),ee(j.window),"number"!=typeof j.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof j.step)throw new Error("Expecting options.step to be a number.")}const ie=(j,Ve,Me)=>{const J=j.length,Ie=Buffer.from(j,Ve).toString("hex");if(J{switch(j){case K.HashAlgorithms.SHA1:return ie(Ve,Me,20);case K.HashAlgorithms.SHA256:return ie(Ve,Me,32);case K.HashAlgorithms.SHA512:return ie(Ve,Me,64);default:throw new Error(`Expecting algorithm to be one of ${t.join(", ")}. Received ${j}.`)}};function ge(){return{algorithm:K.HashAlgorithms.SHA1,createDigest:M,createHmacKey:re,digits:6,encoding:K.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function q(j){const Ve=to(to({},ge()),j);return ue(Ve),Object.freeze(Ve)}function _e(j,Ve){return Math.floor(j/Ve/1e3)}function x(j,Ve){return B(j,_e(Ve.epoch,Ve.step),Ve)}function i(j,Ve,Me,J){const Ie=[];if(0===J)return Ie;for(let ut=1;ut<=J;ut++)Ie.push(j+Ve*ut*Me);return Ie}function r(j,Ve,Me){const J=ee(Me),Ie=1e3*Ve;return{current:j,past:i(j,-1,Ie,J[0]),future:i(j,1,Ie,J[1])}}function u(j,Ve,Me){return!!a(j)&&j===x(Ve,Me)}function c(j,Ve,Me,J){let Ie=null;return j.some((ut,Oe)=>!!u(Ve,Me,$9(to({},J),{epoch:ut}))&&(Ie=Oe+1,!0)),Ie}function v(j,Ve,Me){if(u(j,Ve,Me))return 0;const J=r(Me.epoch,Me.step,Me.window),Ie=c(J.past,j,Ve,Me);return null!==Ie?-1*Ie:c(J.future,j,Ve,Me)}function T(j,Ve){return Math.floor(j/1e3)%Ve}function I(j,Ve){return Ve-T(j,Ve)}function y(j,Ve,Me,J){return d({algorithm:J.algorithm,digits:J.digits,step:J.step,type:K.Strategy.TOTP,accountName:j,issuer:Ve,secret:Me})}class n extends ae{create(Ve={}){return new n(Ve)}allOptions(){return q(this.options)}generate(Ve){return x(Ve,this.allOptions())}checkDelta(Ve,Me){return v(Ve,Me,this.allOptions())}check(Ve,Me){return"number"==typeof this.checkDelta(Ve,Me)}verify(Ve){if("object"!=typeof Ve)throw new Error("Expecting argument 0 of verify to be an object");return this.check(Ve.token,Ve.secret)}timeRemaining(){const Ve=this.allOptions();return I(Ve.epoch,Ve.step)}timeUsed(){const Ve=this.allOptions();return T(Ve.epoch,Ve.step)}keyuri(Ve,Me,J){return y(Ve,Me,J,this.allOptions())}}function _(j){if(ue(j),"function"!=typeof j.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(j.keyEncoder&&"function"!=typeof j.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function V(){return{algorithm:K.HashAlgorithms.SHA1,createDigest:M,createHmacKey:re,digits:6,encoding:K.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function N(j){const Ve=to(to({},V()),j);return _(Ve),Object.freeze(Ve)}function H(j,Ve){return Ve.keyEncoder(j,Ve.encoding)}function X(j,Ve){return Ve.keyDecoder(j,Ve.encoding)}function he(j,Ve){return H(Ve.createRandomBytes(j,Ve.encoding),Ve)}function be(j,Ve){return x(X(j,Ve),Ve)}function Pe(j,Ve,Me){return v(j,X(Ve,Me),Me)}class Ee extends n{create(Ve={}){return new Ee(Ve)}allOptions(){return N(this.options)}generate(Ve){return be(Ve,this.allOptions())}checkDelta(Ve,Me){return Pe(Ve,Me,this.allOptions())}encode(Ve){return H(Ve,this.allOptions())}decode(Ve){return X(Ve,this.allOptions())}generateSecret(Ve=10){return he(Ve,this.allOptions())}}K.Authenticator=Ee,K.HASH_ALGORITHMS=t,K.HOTP=ae,K.KEY_ENCODINGS=e,K.OTP=R,K.STRATEGY=f,K.TOTP=n,K.authenticatorCheckWithWindow=Pe,K.authenticatorDecoder=X,K.authenticatorDefaultOptions=V,K.authenticatorEncoder=H,K.authenticatorGenerateSecret=he,K.authenticatorOptionValidator=_,K.authenticatorOptions=N,K.authenticatorToken=be,K.createDigestPlaceholder=M,K.hotpCheck=Z,K.hotpCounter=S,K.hotpCreateHmacKey=L,K.hotpDefaultOptions=w,K.hotpDigestToToken=k,K.hotpKeyuri=Y,K.hotpOptions=D,K.hotpOptionsValidator=h,K.hotpToken=B,K.isTokenValid=a,K.keyuri=d,K.objectValues=p,K.padStart=C,K.totpCheck=u,K.totpCheckByEpoch=c,K.totpCheckWithWindow=v,K.totpCounter=_e,K.totpCreateHmacKey=re,K.totpDefaultOptions=ge,K.totpEpochAvailable=r,K.totpKeyuri=y,K.totpOptions=q,K.totpOptionsValidator=ue,K.totpPadSecret=ie,K.totpTimeRemaining=I,K.totpTimeUsed=T,K.totpToken=x},6098:(Be,K,p)=>{"use strict";Object.defineProperty(K,"__esModule",{value:!0});var e=function t(a){return a&&"object"==typeof a&&"default"in a?a.default:a}(p(1348));K.createDigest=(a,C,d)=>e.createHmac(a,Buffer.from(C,"hex")).update(Buffer.from(d,"hex")).digest().toString("hex"),K.createRandomBytes=(a,C)=>e.randomBytes(a).toString(C)},1415:(Be,K,p)=>{"use strict";Object.defineProperty(K,"__esModule",{value:!0});var e=function t(a){return a&&"object"==typeof a&&"default"in a?a.default:a}(p(2167));K.keyDecoder=(a,C)=>e.decode(a).toString(C),K.keyEncoder=(a,C)=>e.encode(Buffer.from(a,C).toString("ascii")).toString().replace(/=/g,"")},842:(Be,K,p)=>{"use strict";Object.defineProperty(K,"__esModule",{value:!0});var t=p(6098),e=p(1415),f=p(7854);const M=new f.HOTP({createDigest:t.createDigest}),a=new f.TOTP({createDigest:t.createDigest}),C=new f.Authenticator({createDigest:t.createDigest,createRandomBytes:t.createRandomBytes,keyDecoder:e.keyDecoder,keyEncoder:e.keyEncoder});K.authenticator=C,K.hotp=M,K.totp=a},7977:(Be,K,p)=>{"use strict";const t=K;t.bignum=p(3854),t.define=p(9516).define,t.base=p(7813),t.constants=p(5459),t.decoders=p(196),t.encoders=p(1131)},9516:(Be,K,p)=>{"use strict";const t=p(1131),e=p(196),f=p(3894);function a(C,d){this.name=C,this.body=d,this.decoders={},this.encoders={}}K.define=function(d,R){return new a(d,R)},a.prototype._createNamed=function(d){const R=this.name;function h(L){this._initNamed(L,R)}return f(h,d),h.prototype._initNamed=function(w,D){d.call(this,w,D)},new h(this)},a.prototype._getDecoder=function(d){return this.decoders.hasOwnProperty(d=d||"der")||(this.decoders[d]=this._createNamed(e[d])),this.decoders[d]},a.prototype.decode=function(d,R,h){return this._getDecoder(R).decode(d,h)},a.prototype._getEncoder=function(d){return this.encoders.hasOwnProperty(d=d||"der")||(this.encoders[d]=this._createNamed(t[d])),this.encoders[d]},a.prototype.encode=function(d,R,h){return this._getEncoder(R).encode(d,h)}},2769:(Be,K,p)=>{"use strict";const t=p(3894),e=p(4919).b,f=p(2038).Buffer;function M(C,d){e.call(this,d),f.isBuffer(C)?(this.base=C,this.offset=0,this.length=C.length):this.error("Input not Buffer")}function a(C,d){if(Array.isArray(C))this.length=0,this.value=C.map(function(R){return a.isEncoderBuffer(R)||(R=new a(R,d)),this.length+=R.length,R},this);else if("number"==typeof C){if(!(0<=C&&C<=255))return d.error("non-byte EncoderBuffer value");this.value=C,this.length=1}else if("string"==typeof C)this.value=C,this.length=f.byteLength(C);else{if(!f.isBuffer(C))return d.error("Unsupported type: "+typeof C);this.value=C,this.length=C.length}}t(M,e),K.C=M,M.isDecoderBuffer=function(d){return d instanceof M||"object"==typeof d&&f.isBuffer(d.base)&&"DecoderBuffer"===d.constructor.name&&"number"==typeof d.offset&&"number"==typeof d.length&&"function"==typeof d.save&&"function"==typeof d.restore&&"function"==typeof d.isEmpty&&"function"==typeof d.readUInt8&&"function"==typeof d.skip&&"function"==typeof d.raw},M.prototype.save=function(){return{offset:this.offset,reporter:e.prototype.save.call(this)}},M.prototype.restore=function(d){const R=new M(this.base);return R.offset=d.offset,R.length=this.offset,this.offset=d.offset,e.prototype.restore.call(this,d.reporter),R},M.prototype.isEmpty=function(){return this.offset===this.length},M.prototype.readUInt8=function(d){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(d||"DecoderBuffer overrun")},M.prototype.skip=function(d,R){if(!(this.offset+d<=this.length))return this.error(R||"DecoderBuffer overrun");const h=new M(this.base);return h._reporterState=this._reporterState,h.offset=this.offset,h.length=this.offset+d,this.offset+=d,h},M.prototype.raw=function(d){return this.base.slice(d?d.offset:this.offset,this.length)},K.R=a,a.isEncoderBuffer=function(d){return d instanceof a||"object"==typeof d&&"EncoderBuffer"===d.constructor.name&&"number"==typeof d.length&&"function"==typeof d.join},a.prototype.join=function(d,R){return d||(d=f.alloc(this.length)),R||(R=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(h){h.join(d,R),R+=h.length}):("number"==typeof this.value?d[R]=this.value:"string"==typeof this.value?d.write(this.value,R):f.isBuffer(this.value)&&this.value.copy(d,R),R+=this.length)),d}},7813:(Be,K,p)=>{"use strict";const t=K;t.Reporter=p(4919).b,t.DecoderBuffer=p(2769).C,t.EncoderBuffer=p(2769).R,t.Node=p(1430)},1430:(Be,K,p)=>{"use strict";const t=p(4919).b,e=p(2769).R,f=p(2769).C,M=p(2391),a=["seq","seqof","set","setof","objid","bool","gentime","utctime","null_","enum","int","objDesc","bitstr","bmpstr","charstr","genstr","graphstr","ia5str","iso646str","numstr","octstr","printstr","t61str","unistr","utf8str","videostr"],C=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(a);function R(L,w,D){const S={};this._baseState=S,S.name=D,S.enc=L,S.parent=w||null,S.children=null,S.tag=null,S.args=null,S.reverseArgs=null,S.choice=null,S.optional=!1,S.any=!1,S.obj=!1,S.use=null,S.useDecoder=null,S.key=null,S.default=null,S.explicit=null,S.implicit=null,S.contains=null,S.parent||(S.children=[],this._wrap())}Be.exports=R;const h=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];R.prototype.clone=function(){const w=this._baseState,D={};h.forEach(function(k){D[k]=w[k]});const S=new this.constructor(D.parent);return S._baseState=D,S},R.prototype._wrap=function(){const w=this._baseState;C.forEach(function(D){this[D]=function(){const k=new this.constructor(this);return w.children.push(k),k[D].apply(k,arguments)}},this)},R.prototype._init=function(w){const D=this._baseState;M(null===D.parent),w.call(this),D.children=D.children.filter(function(S){return S._baseState.parent===this},this),M.equal(D.children.length,1,"Root node can have only one child")},R.prototype._useArgs=function(w){const D=this._baseState,S=w.filter(function(k){return k instanceof this.constructor},this);w=w.filter(function(k){return!(k instanceof this.constructor)},this),0!==S.length&&(M(null===D.children),D.children=S,S.forEach(function(k){k._baseState.parent=this},this)),0!==w.length&&(M(null===D.args),D.args=w,D.reverseArgs=w.map(function(k){if("object"!=typeof k||k.constructor!==Object)return k;const E={};return Object.keys(k).forEach(function(B){B==(0|B)&&(B|=0),E[k[B]]=B}),E}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(L){R.prototype[L]=function(){throw new Error(L+" not implemented for encoding: "+this._baseState.enc)}}),a.forEach(function(L){R.prototype[L]=function(){const D=this._baseState,S=Array.prototype.slice.call(arguments);return M(null===D.tag),D.tag=L,this._useArgs(S),this}}),R.prototype.use=function(w){M(w);const D=this._baseState;return M(null===D.use),D.use=w,this},R.prototype.optional=function(){return this._baseState.optional=!0,this},R.prototype.def=function(w){const D=this._baseState;return M(null===D.default),D.default=w,D.optional=!0,this},R.prototype.explicit=function(w){const D=this._baseState;return M(null===D.explicit&&null===D.implicit),D.explicit=w,this},R.prototype.implicit=function(w){const D=this._baseState;return M(null===D.explicit&&null===D.implicit),D.implicit=w,this},R.prototype.obj=function(){const w=this._baseState,D=Array.prototype.slice.call(arguments);return w.obj=!0,0!==D.length&&this._useArgs(D),this},R.prototype.key=function(w){const D=this._baseState;return M(null===D.key),D.key=w,this},R.prototype.any=function(){return this._baseState.any=!0,this},R.prototype.choice=function(w){const D=this._baseState;return M(null===D.choice),D.choice=w,this._useArgs(Object.keys(w).map(function(S){return w[S]})),this},R.prototype.contains=function(w){const D=this._baseState;return M(null===D.use),D.contains=w,this},R.prototype._decode=function(w,D){const S=this._baseState;if(null===S.parent)return w.wrapResult(S.children[0]._decode(w,D));let Z,k=S.default,E=!0,B=null;if(null!==S.key&&(B=w.enterKey(S.key)),S.optional){let Y=null;if(null!==S.explicit?Y=S.explicit:null!==S.implicit?Y=S.implicit:null!==S.tag&&(Y=S.tag),null!==Y||S.any){if(E=this._peekTag(w,Y,S.any),w.isError(E))return E}else{const ae=w.save();try{null===S.choice?this._decodeGeneric(S.tag,w,D):this._decodeChoice(w,D),E=!0}catch(ee){E=!1}w.restore(ae)}}if(S.obj&&E&&(Z=w.enterObject()),E){if(null!==S.explicit){const ae=this._decodeTag(w,S.explicit);if(w.isError(ae))return ae;w=ae}const Y=w.offset;if(null===S.use&&null===S.choice){let ae;S.any&&(ae=w.save());const ee=this._decodeTag(w,null!==S.implicit?S.implicit:S.tag,S.any);if(w.isError(ee))return ee;S.any?k=w.raw(ae):w=ee}if(D&&D.track&&null!==S.tag&&D.track(w.path(),Y,w.length,"tagged"),D&&D.track&&null!==S.tag&&D.track(w.path(),w.offset,w.length,"content"),S.any||(k=null===S.choice?this._decodeGeneric(S.tag,w,D):this._decodeChoice(w,D)),w.isError(k))return k;if(!S.any&&null===S.choice&&null!==S.children&&S.children.forEach(function(ee){ee._decode(w,D)}),S.contains&&("octstr"===S.tag||"bitstr"===S.tag)){const ae=new f(k);k=this._getUse(S.contains,w._reporterState.obj)._decode(ae,D)}}return S.obj&&E&&(k=w.leaveObject(Z)),null===S.key||null===k&&!0!==E?null!==B&&w.exitKey(B):w.leaveKey(B,S.key,k),k},R.prototype._decodeGeneric=function(w,D,S){const k=this._baseState;return"seq"===w||"set"===w?null:"seqof"===w||"setof"===w?this._decodeList(D,w,k.args[0],S):/str$/.test(w)?this._decodeStr(D,w,S):"objid"===w&&k.args?this._decodeObjid(D,k.args[0],k.args[1],S):"objid"===w?this._decodeObjid(D,null,null,S):"gentime"===w||"utctime"===w?this._decodeTime(D,w,S):"null_"===w?this._decodeNull(D,S):"bool"===w?this._decodeBool(D,S):"objDesc"===w?this._decodeStr(D,w,S):"int"===w||"enum"===w?this._decodeInt(D,k.args&&k.args[0],S):null!==k.use?this._getUse(k.use,D._reporterState.obj)._decode(D,S):D.error("unknown tag: "+w)},R.prototype._getUse=function(w,D){const S=this._baseState;return S.useDecoder=this._use(w,D),M(null===S.useDecoder._baseState.parent),S.useDecoder=S.useDecoder._baseState.children[0],S.implicit!==S.useDecoder._baseState.implicit&&(S.useDecoder=S.useDecoder.clone(),S.useDecoder._baseState.implicit=S.implicit),S.useDecoder},R.prototype._decodeChoice=function(w,D){const S=this._baseState;let k=null,E=!1;return Object.keys(S.choice).some(function(B){const Z=w.save(),Y=S.choice[B];try{const ae=Y._decode(w,D);if(w.isError(ae))return!1;k={type:B,value:ae},E=!0}catch(ae){return w.restore(Z),!1}return!0},this),E?k:w.error("Choice not matched")},R.prototype._createEncoderBuffer=function(w){return new e(w,this.reporter)},R.prototype._encode=function(w,D,S){const k=this._baseState;if(null!==k.default&&k.default===w)return;const E=this._encodeValue(w,D,S);return void 0===E||this._skipDefault(E,D,S)?void 0:E},R.prototype._encodeValue=function(w,D,S){const k=this._baseState;if(null===k.parent)return k.children[0]._encode(w,D||new t);let E=null;if(this.reporter=D,k.optional&&void 0===w){if(null===k.default)return;w=k.default}let B=null,Z=!1;if(k.any)E=this._createEncoderBuffer(w);else if(k.choice)E=this._encodeChoice(w,D);else if(k.contains)B=this._getUse(k.contains,S)._encode(w,D),Z=!0;else if(k.children)B=k.children.map(function(Y){if("null_"===Y._baseState.tag)return Y._encode(null,D,w);if(null===Y._baseState.key)return D.error("Child should have a key");const ae=D.enterKey(Y._baseState.key);if("object"!=typeof w)return D.error("Child expected, but input is not object");const ee=Y._encode(w[Y._baseState.key],D,w);return D.leaveKey(ae),ee},this).filter(function(Y){return Y}),B=this._createEncoderBuffer(B);else if("seqof"===k.tag||"setof"===k.tag){if(!k.args||1!==k.args.length)return D.error("Too many args for : "+k.tag);if(!Array.isArray(w))return D.error("seqof/setof, but data is not Array");const Y=this.clone();Y._baseState.implicit=null,B=this._createEncoderBuffer(w.map(function(ae){return this._getUse(this._baseState.args[0],w)._encode(ae,D)},Y))}else null!==k.use?E=this._getUse(k.use,S)._encode(w,D):(B=this._encodePrimitive(k.tag,w),Z=!0);if(!k.any&&null===k.choice){const Y=null!==k.implicit?k.implicit:k.tag,ae=null===k.implicit?"universal":"context";null===Y?null===k.use&&D.error("Tag could be omitted only for .use()"):null===k.use&&(E=this._encodeComposite(Y,Z,ae,B))}return null!==k.explicit&&(E=this._encodeComposite(k.explicit,!1,"context",E)),E},R.prototype._encodeChoice=function(w,D){const S=this._baseState,k=S.choice[w.type];return k||M(!1,w.type+" not found in "+JSON.stringify(Object.keys(S.choice))),k._encode(w.value,D)},R.prototype._encodePrimitive=function(w,D){const S=this._baseState;if(/str$/.test(w))return this._encodeStr(D,w);if("objid"===w&&S.args)return this._encodeObjid(D,S.reverseArgs[0],S.args[1]);if("objid"===w)return this._encodeObjid(D,null,null);if("gentime"===w||"utctime"===w)return this._encodeTime(D,w);if("null_"===w)return this._encodeNull();if("int"===w||"enum"===w)return this._encodeInt(D,S.args&&S.reverseArgs[0]);if("bool"===w)return this._encodeBool(D);if("objDesc"===w)return this._encodeStr(D,w);throw new Error("Unsupported tag: "+w)},R.prototype._isNumstr=function(w){return/^[0-9 ]*$/.test(w)},R.prototype._isPrintstr=function(w){return/^[A-Za-z0-9 '()+,-./:=?]*$/.test(w)}},4919:(Be,K,p)=>{"use strict";const t=p(3894);function e(M){this._reporterState={obj:null,path:[],options:M||{},errors:[]}}function f(M,a){this.path=M,this.rethrow(a)}K.b=e,e.prototype.isError=function(a){return a instanceof f},e.prototype.save=function(){const a=this._reporterState;return{obj:a.obj,pathLen:a.path.length}},e.prototype.restore=function(a){const C=this._reporterState;C.obj=a.obj,C.path=C.path.slice(0,a.pathLen)},e.prototype.enterKey=function(a){return this._reporterState.path.push(a)},e.prototype.exitKey=function(a){const C=this._reporterState;C.path=C.path.slice(0,a-1)},e.prototype.leaveKey=function(a,C,d){const R=this._reporterState;this.exitKey(a),null!==R.obj&&(R.obj[C]=d)},e.prototype.path=function(){return this._reporterState.path.join("/")},e.prototype.enterObject=function(){const a=this._reporterState,C=a.obj;return a.obj={},C},e.prototype.leaveObject=function(a){const C=this._reporterState,d=C.obj;return C.obj=a,d},e.prototype.error=function(a){let C;const d=this._reporterState,R=a instanceof f;if(C=R?a:new f(d.path.map(function(h){return"["+JSON.stringify(h)+"]"}).join(""),a.message||a,a.stack),!d.options.partial)throw C;return R||d.errors.push(C),C},e.prototype.wrapResult=function(a){const C=this._reporterState;return C.options.partial?{result:this.isError(a)?null:a,errors:C.errors}:a},t(f,Error),f.prototype.rethrow=function(a){if(this.message=a+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,f),!this.stack)try{throw new Error(this.message)}catch(C){this.stack=C.stack}return this}},5496:(Be,K)=>{"use strict";function p(t){const e={};return Object.keys(t).forEach(function(f){(0|f)==f&&(f|=0),e[t[f]]=f}),e}K.tagClass={0:"universal",1:"application",2:"context",3:"private"},K.tagClassByName=p(K.tagClass),K.tag={0:"end",1:"bool",2:"int",3:"bitstr",4:"octstr",5:"null_",6:"objid",7:"objDesc",8:"external",9:"real",10:"enum",11:"embed",12:"utf8str",13:"relativeOid",16:"seq",17:"set",18:"numstr",19:"printstr",20:"t61str",21:"videostr",22:"ia5str",23:"utctime",24:"gentime",25:"graphstr",26:"iso646str",27:"genstr",28:"unistr",29:"charstr",30:"bmpstr"},K.tagByName=p(K.tag)},5459:(Be,K,p)=>{"use strict";const t=K;t._reverse=function(f){const M={};return Object.keys(f).forEach(function(a){(0|a)==a&&(a|=0),M[f[a]]=a}),M},t.der=p(5496)},7127:(Be,K,p)=>{"use strict";const t=p(3894),e=p(3854),f=p(2769).C,M=p(1430),a=p(5496);function C(L){this.enc="der",this.name=L.name,this.entity=L,this.tree=new d,this.tree._init(L.body)}function d(L){M.call(this,"der",L)}function R(L,w){let D=L.readUInt8(w);if(L.isError(D))return D;const S=a.tagClass[D>>6],k=0==(32&D);if(31==(31&D)){let B=D;for(D=0;128==(128&B);){if(B=L.readUInt8(w),L.isError(B))return B;D<<=7,D|=127&B}}else D&=31;return{cls:S,primitive:k,tag:D,tagStr:a.tag[D]}}function h(L,w,D){let S=L.readUInt8(D);if(L.isError(S))return S;if(!w&&128===S)return null;if(0==(128&S))return S;const k=127&S;if(k>4)return L.error("length octect is too long");S=0;for(let E=0;E{"use strict";const t=K;t.der=p(7127),t.pem=p(9617)},9617:(Be,K,p)=>{"use strict";const t=p(3894),e=p(2038).Buffer,f=p(7127);function M(a){f.call(this,a),this.enc="pem"}t(M,f),Be.exports=M,M.prototype.decode=function(C,d){const R=C.toString().split(/[\r\n]+/g),h=d.label.toUpperCase(),L=/^-----(BEGIN|END) ([^-]+)-----$/;let w=-1,D=-1;for(let E=0;E{"use strict";const t=p(3894),e=p(2038).Buffer,f=p(1430),M=p(5496);function a(h){this.enc="der",this.name=h.name,this.entity=h,this.tree=new C,this.tree._init(h.body)}function C(h){f.call(this,"der",h)}function d(h){return h<10?"0"+h:h}Be.exports=a,a.prototype.encode=function(L,w){return this.tree._encode(L,w).join()},t(C,f),C.prototype._encodeComposite=function(L,w,D,S){const k=function R(h,L,w,D){let S;if("seqof"===h?h="seq":"setof"===h&&(h="set"),M.tagByName.hasOwnProperty(h))S=M.tagByName[h];else{if("number"!=typeof h||(0|h)!==h)return D.error("Unknown tag: "+h);S=h}return S>=31?D.error("Multi-octet tag encoding unsupported"):(L||(S|=32),S|=M.tagClassByName[w||"universal"]<<6,S)}(L,w,D,this.reporter);if(S.length<128){const Z=e.alloc(2);return Z[0]=k,Z[1]=S.length,this._createEncoderBuffer([Z,S])}let E=1;for(let Z=S.length;Z>=256;Z>>=8)E++;const B=e.alloc(2+E);B[0]=k,B[1]=128|E;for(let Z=1+E,Y=S.length;Y>0;Z--,Y>>=8)B[Z]=255&Y;return this._createEncoderBuffer([B,S])},C.prototype._encodeStr=function(L,w){if("bitstr"===w)return this._createEncoderBuffer([0|L.unused,L.data]);if("bmpstr"===w){const D=e.alloc(2*L.length);for(let S=0;S=40)return this.reporter.error("Second objid identifier OOB");L.splice(0,2,40*L[0]+L[1])}let S=0;for(let B=0;B=128;Z>>=7)S++}const k=e.alloc(S);let E=k.length-1;for(let B=L.length-1;B>=0;B--){let Z=L[B];for(k[E--]=127&Z;(Z>>=7)>0;)k[E--]=128|127&Z}return this._createEncoderBuffer(k)},C.prototype._encodeTime=function(L,w){let D;const S=new Date(L);return"gentime"===w?D=[d(S.getUTCFullYear()),d(S.getUTCMonth()+1),d(S.getUTCDate()),d(S.getUTCHours()),d(S.getUTCMinutes()),d(S.getUTCSeconds()),"Z"].join(""):"utctime"===w?D=[d(S.getUTCFullYear()%100),d(S.getUTCMonth()+1),d(S.getUTCDate()),d(S.getUTCHours()),d(S.getUTCMinutes()),d(S.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+w+" time is not supported yet"),this._encodeStr(D,"octstr")},C.prototype._encodeNull=function(){return this._createEncoderBuffer("")},C.prototype._encodeInt=function(L,w){if("string"==typeof L){if(!w)return this.reporter.error("String int or enum given, but no values map");if(!w.hasOwnProperty(L))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(L));L=w[L]}if("number"!=typeof L&&!e.isBuffer(L)){const k=L.toArray();!L.sign&&128&k[0]&&k.unshift(0),L=e.from(k)}if(e.isBuffer(L)){let k=L.length;0===L.length&&k++;const E=e.alloc(k);return L.copy(E),0===L.length&&(E[0]=0),this._createEncoderBuffer(E)}if(L<128)return this._createEncoderBuffer(L);if(L<256)return this._createEncoderBuffer([0,L]);let D=1;for(let k=L;k>=256;k>>=8)D++;const S=new Array(D);for(let k=S.length-1;k>=0;k--)S[k]=255&L,L>>=8;return 128&S[0]&&S.unshift(0),this._createEncoderBuffer(e.from(S))},C.prototype._encodeBool=function(L){return this._createEncoderBuffer(L?255:0)},C.prototype._use=function(L,w){return"function"==typeof L&&(L=L(w)),L._getEncoder("der").tree},C.prototype._skipDefault=function(L,w,D){const S=this._baseState;let k;if(null===S.default)return!1;const E=L.join();if(void 0===S.defaultBuffer&&(S.defaultBuffer=this._encodeValue(S.default,w,D).join()),E.length!==S.defaultBuffer.length)return!1;for(k=0;k{"use strict";const t=K;t.der=p(6374),t.pem=p(3530)},3530:(Be,K,p)=>{"use strict";const t=p(3894),e=p(6374);function f(M){e.call(this,M),this.enc="pem"}t(f,e),Be.exports=f,f.prototype.encode=function(a,C){const R=e.prototype.encode.call(this,a).toString("base64"),h=["-----BEGIN "+C.label+"-----"];for(let L=0;L=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function R(x,i,r){var u=d(x,r);return r-1>=i&&(u|=d(x,r-1)<<4),u}function h(x,i,r,u){for(var c=0,v=Math.min(x.length,r),T=i;T=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[v]|=(T=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);else if("le"===u)for(c=0,v=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=R(i,r,c)<=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,v=1;v<=67108863;v*=r)c++;c--,v=v/r|0;for(var T=i.length-u,I=T%c,y=Math.min(T,T-I)+u,n=0,_=u;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var L=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(x,i,r){r.negative=i.negative^x.negative;var u=x.length+i.length|0;r.length=u,u=u-1|0;var c=0|x.words[0],v=0|i.words[0],T=c*v,y=T/67108864|0;r.words[0]=67108863&T;for(var n=1;n>>26,V=67108863&y,N=Math.min(n,i.length-1),H=Math.max(0,n-x.length+1);H<=N;H++)_+=(T=(c=0|x.words[n-H|0])*(v=0|i.words[H])+V)/67108864|0,V=67108863&T;r.words[n]=0|V,y=0|_}return 0!==y?r.words[n]=0|y:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,v=0,T=0;T>>24-c&16777215)||T!==this.length-1?L[6-y.length]+y+u:y+u,(c+=2)>=26&&(c-=26,T--)}for(0!==v&&(u=v.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],_=D[i];u="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(_).toString(i);u=(V=V.idivn(_)).isZero()?N+u:L[n-N.length]+N+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==C),this.toArrayLike(C,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),v=u||Math.max(1,c);f(c<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0"),this.strip();var y,n,T="le"===r,I=new i(v),_=this.clone();if(T){for(n=0;!_.isZero();n++)y=_.andln(255),_.iushrn(8),I[n]=y;for(;n=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var v=0,T=0;T>>26;for(;0!==v&&T>>26;if(this.length=u.length,0!==v)this.words[this.length]=v,this.length++;else if(u!==this)for(;Ti.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,v,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,v=i):(c=i,v=this);for(var T=0,I=0;I>26,this.words[I]=67108863&r;for(;0!==T&&I>26,this.words[I]=67108863&r;if(0===T&&I>>13,X=0|c[1],he=8191&X,be=X>>>13,Pe=0|c[2],Ee=8191&Pe,j=Pe>>>13,Ve=0|c[3],Me=8191&Ve,J=Ve>>>13,Ie=0|c[4],ut=8191&Ie,Oe=Ie>>>13,we=0|c[5],ce=8191&we,Te=we>>>13,xe=0|c[6],W=8191&xe,te=xe>>>13,Ce=0|c[7],fe=8191&Ce,Q=Ce>>>13,ft=0|c[8],tt=8191&ft,Dt=ft>>>13,di=0|c[9],Yt=8191&di,Zt=di>>>13,ui=0|v[0],Ot=8191&ui,Nt=ui>>>13,gt=0|v[1],it=8191>,bt=gt>>>13,ei=0|v[2],Qt=8191&ei,Re=ei>>>13,ke=0|v[3],de=8191&ke,ye=ke>>>13,ht=0|v[4],mt=8191&ht,Ft=ht>>>13,nt=0|v[5],He=8191&nt,rt=nt>>>13,et=0|v[6],Ae=8191&et,Ge=et>>>13,ot=0|v[7],lt=8191&ot,Ct=ot>>>13,mi=0|v[8],Jt=8191&mi,$t=mi>>>13,Qi=0|v[9],hi=8191&Qi,si=Qi>>>13;u.negative=i.negative^r.negative,u.length=19;var Ji=(I+(y=Math.imul(N,Ot))|0)+((8191&(n=(n=Math.imul(N,Nt))+Math.imul(H,Ot)|0))<<13)|0;I=((_=Math.imul(H,Nt))+(n>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,y=Math.imul(he,Ot),n=(n=Math.imul(he,Nt))+Math.imul(be,Ot)|0,_=Math.imul(be,Nt);var Zi=(I+(y=y+Math.imul(N,it)|0)|0)+((8191&(n=(n=n+Math.imul(N,bt)|0)+Math.imul(H,it)|0))<<13)|0;I=((_=_+Math.imul(H,bt)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,y=Math.imul(Ee,Ot),n=(n=Math.imul(Ee,Nt))+Math.imul(j,Ot)|0,_=Math.imul(j,Nt),y=y+Math.imul(he,it)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(be,it)|0,_=_+Math.imul(be,bt)|0;var Vi=(I+(y=y+Math.imul(N,Qt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Re)|0)+Math.imul(H,Qt)|0))<<13)|0;I=((_=_+Math.imul(H,Re)|0)+(n>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,y=Math.imul(Me,Ot),n=(n=Math.imul(Me,Nt))+Math.imul(J,Ot)|0,_=Math.imul(J,Nt),y=y+Math.imul(Ee,it)|0,n=(n=n+Math.imul(Ee,bt)|0)+Math.imul(j,it)|0,_=_+Math.imul(j,bt)|0,y=y+Math.imul(he,Qt)|0,n=(n=n+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0,_=_+Math.imul(be,Re)|0;var Ui=(I+(y=y+Math.imul(N,de)|0)|0)+((8191&(n=(n=n+Math.imul(N,ye)|0)+Math.imul(H,de)|0))<<13)|0;I=((_=_+Math.imul(H,ye)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,y=Math.imul(ut,Ot),n=(n=Math.imul(ut,Nt))+Math.imul(Oe,Ot)|0,_=Math.imul(Oe,Nt),y=y+Math.imul(Me,it)|0,n=(n=n+Math.imul(Me,bt)|0)+Math.imul(J,it)|0,_=_+Math.imul(J,bt)|0,y=y+Math.imul(Ee,Qt)|0,n=(n=n+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,_=_+Math.imul(j,Re)|0,y=y+Math.imul(he,de)|0,n=(n=n+Math.imul(he,ye)|0)+Math.imul(be,de)|0,_=_+Math.imul(be,ye)|0;var Ue=(I+(y=y+Math.imul(N,mt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ft)|0)+Math.imul(H,mt)|0))<<13)|0;I=((_=_+Math.imul(H,Ft)|0)+(n>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,y=Math.imul(ce,Ot),n=(n=Math.imul(ce,Nt))+Math.imul(Te,Ot)|0,_=Math.imul(Te,Nt),y=y+Math.imul(ut,it)|0,n=(n=n+Math.imul(ut,bt)|0)+Math.imul(Oe,it)|0,_=_+Math.imul(Oe,bt)|0,y=y+Math.imul(Me,Qt)|0,n=(n=n+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,_=_+Math.imul(J,Re)|0,y=y+Math.imul(Ee,de)|0,n=(n=n+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,_=_+Math.imul(j,ye)|0,y=y+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0,_=_+Math.imul(be,Ft)|0;var Tt=(I+(y=y+Math.imul(N,He)|0)|0)+((8191&(n=(n=n+Math.imul(N,rt)|0)+Math.imul(H,He)|0))<<13)|0;I=((_=_+Math.imul(H,rt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,y=Math.imul(W,Ot),n=(n=Math.imul(W,Nt))+Math.imul(te,Ot)|0,_=Math.imul(te,Nt),y=y+Math.imul(ce,it)|0,n=(n=n+Math.imul(ce,bt)|0)+Math.imul(Te,it)|0,_=_+Math.imul(Te,bt)|0,y=y+Math.imul(ut,Qt)|0,n=(n=n+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,_=_+Math.imul(Oe,Re)|0,y=y+Math.imul(Me,de)|0,n=(n=n+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,_=_+Math.imul(J,ye)|0,y=y+Math.imul(Ee,mt)|0,n=(n=n+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,_=_+Math.imul(j,Ft)|0,y=y+Math.imul(he,He)|0,n=(n=n+Math.imul(he,rt)|0)+Math.imul(be,He)|0,_=_+Math.imul(be,rt)|0;var ve=(I+(y=y+Math.imul(N,Ae)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ge)|0)+Math.imul(H,Ae)|0))<<13)|0;I=((_=_+Math.imul(H,Ge)|0)+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,y=Math.imul(fe,Ot),n=(n=Math.imul(fe,Nt))+Math.imul(Q,Ot)|0,_=Math.imul(Q,Nt),y=y+Math.imul(W,it)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(te,it)|0,_=_+Math.imul(te,bt)|0,y=y+Math.imul(ce,Qt)|0,n=(n=n+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,_=_+Math.imul(Te,Re)|0,y=y+Math.imul(ut,de)|0,n=(n=n+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,_=_+Math.imul(Oe,ye)|0,y=y+Math.imul(Me,mt)|0,n=(n=n+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,_=_+Math.imul(J,Ft)|0,y=y+Math.imul(Ee,He)|0,n=(n=n+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,_=_+Math.imul(j,rt)|0,y=y+Math.imul(he,Ae)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0,_=_+Math.imul(be,Ge)|0;var Qe=(I+(y=y+Math.imul(N,lt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ct)|0)+Math.imul(H,lt)|0))<<13)|0;I=((_=_+Math.imul(H,Ct)|0)+(n>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,y=Math.imul(tt,Ot),n=(n=Math.imul(tt,Nt))+Math.imul(Dt,Ot)|0,_=Math.imul(Dt,Nt),y=y+Math.imul(fe,it)|0,n=(n=n+Math.imul(fe,bt)|0)+Math.imul(Q,it)|0,_=_+Math.imul(Q,bt)|0,y=y+Math.imul(W,Qt)|0,n=(n=n+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,_=_+Math.imul(te,Re)|0,y=y+Math.imul(ce,de)|0,n=(n=n+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,_=_+Math.imul(Te,ye)|0,y=y+Math.imul(ut,mt)|0,n=(n=n+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,_=_+Math.imul(Oe,Ft)|0,y=y+Math.imul(Me,He)|0,n=(n=n+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,_=_+Math.imul(J,rt)|0,y=y+Math.imul(Ee,Ae)|0,n=(n=n+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,_=_+Math.imul(j,Ge)|0,y=y+Math.imul(he,lt)|0,n=(n=n+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0,_=_+Math.imul(be,Ct)|0;var _t=(I+(y=y+Math.imul(N,Jt)|0)|0)+((8191&(n=(n=n+Math.imul(N,$t)|0)+Math.imul(H,Jt)|0))<<13)|0;I=((_=_+Math.imul(H,$t)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,y=Math.imul(Yt,Ot),n=(n=Math.imul(Yt,Nt))+Math.imul(Zt,Ot)|0,_=Math.imul(Zt,Nt),y=y+Math.imul(tt,it)|0,n=(n=n+Math.imul(tt,bt)|0)+Math.imul(Dt,it)|0,_=_+Math.imul(Dt,bt)|0,y=y+Math.imul(fe,Qt)|0,n=(n=n+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,_=_+Math.imul(Q,Re)|0,y=y+Math.imul(W,de)|0,n=(n=n+Math.imul(W,ye)|0)+Math.imul(te,de)|0,_=_+Math.imul(te,ye)|0,y=y+Math.imul(ce,mt)|0,n=(n=n+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,_=_+Math.imul(Te,Ft)|0,y=y+Math.imul(ut,He)|0,n=(n=n+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,_=_+Math.imul(Oe,rt)|0,y=y+Math.imul(Me,Ae)|0,n=(n=n+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,_=_+Math.imul(J,Ge)|0,y=y+Math.imul(Ee,lt)|0,n=(n=n+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,_=_+Math.imul(j,Ct)|0,y=y+Math.imul(he,Jt)|0,n=(n=n+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0,_=_+Math.imul(be,$t)|0;var se=(I+(y=y+Math.imul(N,hi)|0)|0)+((8191&(n=(n=n+Math.imul(N,si)|0)+Math.imul(H,hi)|0))<<13)|0;I=((_=_+Math.imul(H,si)|0)+(n>>>13)|0)+(se>>>26)|0,se&=67108863,y=Math.imul(Yt,it),n=(n=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,_=Math.imul(Zt,bt),y=y+Math.imul(tt,Qt)|0,n=(n=n+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,_=_+Math.imul(Dt,Re)|0,y=y+Math.imul(fe,de)|0,n=(n=n+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,_=_+Math.imul(Q,ye)|0,y=y+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,_=_+Math.imul(te,Ft)|0,y=y+Math.imul(ce,He)|0,n=(n=n+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,_=_+Math.imul(Te,rt)|0,y=y+Math.imul(ut,Ae)|0,n=(n=n+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,_=_+Math.imul(Oe,Ge)|0,y=y+Math.imul(Me,lt)|0,n=(n=n+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,_=_+Math.imul(J,Ct)|0,y=y+Math.imul(Ee,Jt)|0,n=(n=n+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,_=_+Math.imul(j,$t)|0;var Je=(I+(y=y+Math.imul(he,hi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;I=((_=_+Math.imul(be,si)|0)+(n>>>13)|0)+(Je>>>26)|0,Je&=67108863,y=Math.imul(Yt,Qt),n=(n=Math.imul(Yt,Re))+Math.imul(Zt,Qt)|0,_=Math.imul(Zt,Re),y=y+Math.imul(tt,de)|0,n=(n=n+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,_=_+Math.imul(Dt,ye)|0,y=y+Math.imul(fe,mt)|0,n=(n=n+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,_=_+Math.imul(Q,Ft)|0,y=y+Math.imul(W,He)|0,n=(n=n+Math.imul(W,rt)|0)+Math.imul(te,He)|0,_=_+Math.imul(te,rt)|0,y=y+Math.imul(ce,Ae)|0,n=(n=n+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,_=_+Math.imul(Te,Ge)|0,y=y+Math.imul(ut,lt)|0,n=(n=n+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,_=_+Math.imul(Oe,Ct)|0,y=y+Math.imul(Me,Jt)|0,n=(n=n+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,_=_+Math.imul(J,$t)|0;var xt=(I+(y=y+Math.imul(Ee,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0))<<13)|0;I=((_=_+Math.imul(j,si)|0)+(n>>>13)|0)+(xt>>>26)|0,xt&=67108863,y=Math.imul(Yt,de),n=(n=Math.imul(Yt,ye))+Math.imul(Zt,de)|0,_=Math.imul(Zt,ye),y=y+Math.imul(tt,mt)|0,n=(n=n+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,_=_+Math.imul(Dt,Ft)|0,y=y+Math.imul(fe,He)|0,n=(n=n+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,_=_+Math.imul(Q,rt)|0,y=y+Math.imul(W,Ae)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,_=_+Math.imul(te,Ge)|0,y=y+Math.imul(ce,lt)|0,n=(n=n+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,_=_+Math.imul(Te,Ct)|0,y=y+Math.imul(ut,Jt)|0,n=(n=n+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,_=_+Math.imul(Oe,$t)|0;var Bt=(I+(y=y+Math.imul(Me,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Me,si)|0)+Math.imul(J,hi)|0))<<13)|0;I=((_=_+Math.imul(J,si)|0)+(n>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,y=Math.imul(Yt,mt),n=(n=Math.imul(Yt,Ft))+Math.imul(Zt,mt)|0,_=Math.imul(Zt,Ft),y=y+Math.imul(tt,He)|0,n=(n=n+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,_=_+Math.imul(Dt,rt)|0,y=y+Math.imul(fe,Ae)|0,n=(n=n+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,_=_+Math.imul(Q,Ge)|0,y=y+Math.imul(W,lt)|0,n=(n=n+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,_=_+Math.imul(te,Ct)|0,y=y+Math.imul(ce,Jt)|0,n=(n=n+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,_=_+Math.imul(Te,$t)|0;var xi=(I+(y=y+Math.imul(ut,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0))<<13)|0;I=((_=_+Math.imul(Oe,si)|0)+(n>>>13)|0)+(xi>>>26)|0,xi&=67108863,y=Math.imul(Yt,He),n=(n=Math.imul(Yt,rt))+Math.imul(Zt,He)|0,_=Math.imul(Zt,rt),y=y+Math.imul(tt,Ae)|0,n=(n=n+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,_=_+Math.imul(Dt,Ge)|0,y=y+Math.imul(fe,lt)|0,n=(n=n+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,_=_+Math.imul(Q,Ct)|0,y=y+Math.imul(W,Jt)|0,n=(n=n+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,_=_+Math.imul(te,$t)|0;var Ti=(I+(y=y+Math.imul(ce,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0))<<13)|0;I=((_=_+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,y=Math.imul(Yt,Ae),n=(n=Math.imul(Yt,Ge))+Math.imul(Zt,Ae)|0,_=Math.imul(Zt,Ge),y=y+Math.imul(tt,lt)|0,n=(n=n+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,_=_+Math.imul(Dt,Ct)|0,y=y+Math.imul(fe,Jt)|0,n=(n=n+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,_=_+Math.imul(Q,$t)|0;var $i=(I+(y=y+Math.imul(W,hi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(te,hi)|0))<<13)|0;I=((_=_+Math.imul(te,si)|0)+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,y=Math.imul(Yt,lt),n=(n=Math.imul(Yt,Ct))+Math.imul(Zt,lt)|0,_=Math.imul(Zt,Ct),y=y+Math.imul(tt,Jt)|0,n=(n=n+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,_=_+Math.imul(Dt,$t)|0;var Wi=(I+(y=y+Math.imul(fe,hi)|0)|0)+((8191&(n=(n=n+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0))<<13)|0;I=((_=_+Math.imul(Q,si)|0)+(n>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,y=Math.imul(Yt,Jt),n=(n=Math.imul(Yt,$t))+Math.imul(Zt,Jt)|0,_=Math.imul(Zt,$t);var on=(I+(y=y+Math.imul(tt,hi)|0)|0)+((8191&(n=(n=n+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0))<<13)|0;I=((_=_+Math.imul(Dt,si)|0)+(n>>>13)|0)+(on>>>26)|0,on&=67108863;var fn=(I+(y=Math.imul(Yt,hi))|0)+((8191&(n=(n=Math.imul(Yt,si))+Math.imul(Zt,hi)|0))<<13)|0;return I=((_=Math.imul(Zt,si))+(n>>>13)|0)+(fn>>>26)|0,fn&=67108863,T[0]=Ji,T[1]=Zi,T[2]=Vi,T[3]=Ui,T[4]=Ue,T[5]=Tt,T[6]=ve,T[7]=Qe,T[8]=_t,T[9]=se,T[10]=Je,T[11]=xt,T[12]=Bt,T[13]=xi,T[14]=Ti,T[15]=$i,T[16]=Wi,T[17]=on,T[18]=fn,0!==I&&(T[19]=I,u.length++),u};function Z(x,i,r){return(new Y).mulp(x,i,r)}function Y(x,i){this.x=x,this.y=i}Math.imul||(E=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?E(this,i,r):c<63?k(this,i,r):c<1024?function B(x,i,r){r.negative=i.negative^x.negative,r.length=x.length+i.length;for(var u=0,c=0,v=0;v>>26)|0)>>>26,T&=67108863}r.words[v]=I,u=T,T=c}return 0!==u?r.words[v]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,v,T){for(var I=0;I>>=1)v++;return 1<>>=13),v>>>=13;for(T=2*r;T>=26,r+=c/67108864|0,r+=v>>>26,this.words[u]=67108863&v}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function S(x){for(var i=new Array(x.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var v,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var T=0;for(v=0;v>>26-r}T&&(this.words[v]=T,this.length++)}if(0!==u){for(v=this.length-1;v>=0;v--)this.words[v+u]=this.words[v];for(v=0;v=0),c=r?(r-r%26)/26:0;var v=i%26,T=Math.min((i-v)/26,this.length),I=67108863^67108863>>>v<T)for(this.length-=T,n=0;n=0&&(0!==_||n>=c);n--){var V=0|this.words[n];this.words[n]=_<<26-v|V>>>v,_=V&I}return y&&0!==_&&(y.words[y.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(y/67108864|0),this.words[v+u]=67108863&T}for(;v>26,this.words[v+u]=67108863&T;if(0===I)return this.strip();for(f(-1===I),I=0,v=0;v>26,this.words[v]=67108863&T;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),v=i,T=0|v.words[v.length-1];0!=(u=26-this._countBits(T))&&(v=v.ushln(u),c.iushln(u),T=0|v.words[v.length-1]);var n,y=c.length-v.length;if("mod"!==r){(n=new a(null)).length=y+1,n.words=new Array(n.length);for(var _=0;_=0;N--){var H=67108864*(0|c.words[v.length+N])+(0|c.words[v.length+N-1]);for(H=Math.min(H/T|0,67108863),c._ishlnsubmul(v,H,N);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(v,1,N),c.isZero()||(c.negative^=1);n&&(n.words[N]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(T=this.neg().divmod(i,r),"mod"!==r&&(c=T.div.neg()),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.iadd(i)),{div:c,mod:v}):0===this.negative&&0!==i.negative?(T=this.divmod(i.neg(),r),"mod"!==r&&(c=T.div.neg()),{div:c,mod:T.mod}):0!=(this.negative&i.negative)?(T=this.neg().divmod(i.neg(),r),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.isub(i)),{div:T.div,mod:v}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,v,T},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),v=i.andln(1),T=u.cmp(c);return T<0||1===v&&0===T?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=new a(0),I=new a(1),y=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++y;for(var n=u.clone(),_=r.clone();!r.isZero();){for(var V=0,N=1;0==(r.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(r.iushrn(V);V-- >0;)(c.isOdd()||v.isOdd())&&(c.iadd(n),v.isub(_)),c.iushrn(1),v.iushrn(1);for(var H=0,X=1;0==(u.words[0]&X)&&H<26;++H,X<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(T.isOdd()||I.isOdd())&&(T.iadd(n),I.isub(_)),T.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(T),v.isub(I)):(u.isub(r),T.isub(c),I.isub(v))}return{a:T,b:I,gcd:u.iushln(y)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var V,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,y=1;0==(r.words[0]&y)&&I<26;++I,y<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(T),c.iushrn(1);for(var n=0,_=1;0==(u.words[0]&_)&&n<26;++n,_<<=1);if(n>0)for(u.iushrn(n);n-- >0;)v.isOdd()&&v.iadd(T),v.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(v)):(u.isub(r),v.isub(c))}return(V=0===r.cmpn(1)?c:v).cmpn(0)<0&&V.iadd(i),V},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var v=r.cmp(u);if(v<0){var T=r;r=u,u=T}else if(0===v||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[T]=I&=67108863}return 0!==v&&(this.words[T]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],v=0|i.words[u];if(c!==v){cv&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new q(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ae={k256:null,p224:null,p192:null,p25519:null};function ee(x,i){this.name=x,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ue(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ie(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function re(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function ge(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function q(x){if("string"==typeof x){var i=a._prime(x);this.m=i.p,this.prime=i}else f(x.gtn(1),"modulus must be greater than 1"),this.m=x,this.prime=null}function _e(x){q.call(this,x),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},ee.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},ee.prototype.split=function(i,r){i.iushrn(this.n,0,r)},ee.prototype.imulK=function(i){return i.imul(this.k)},M(ue,ee),ue.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),v=0;v>>22,T=I}i.words[v-10]=T>>>=22,i.length-=0===T&&i.length>10?10:9},ue.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=v,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ae[i])return ae[i];var r;if("k256"===i)r=new ue;else if("p224"===i)r=new ie;else if("p192"===i)r=new re;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new ge}return ae[i]=r,r},q.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},q.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},q.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},q.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},q.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},q.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},q.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},q.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},q.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},q.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},q.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},q.prototype.isqr=function(i){return this.imul(i,i.clone())},q.prototype.sqr=function(i){return this.mul(i,i)},q.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),v=0;!c.isZero()&&0===c.andln(1);)v++,c.iushrn(1);f(!c.isZero());var T=new a(1).toRed(this),I=T.redNeg(),y=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,y).cmp(I);)n.redIAdd(I);for(var _=this.pow(n,c),V=this.pow(i,c.addn(1).iushrn(1)),N=this.pow(i,c),H=v;0!==N.cmp(T);){for(var X=N,he=0;0!==X.cmp(T);he++)X=X.redSqr();f(he=0;v--){for(var _=r.words[v],V=n-1;V>=0;V--){var N=_>>V&1;T!==c[0]&&(T=this.sqr(T)),0!==N||0!==I?(I<<=1,I|=N,(4==++y||0===v&&0===V)&&(T=this.mul(T,c[I]),y=0,I=0)):y=0}n=26}return T},q.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},q.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new _e(i)},M(_e,q),_e.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},_e.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},_e.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},5343:(Be,K)=>{"use strict";K.byteLength=function d(S){var k=C(S),B=k[1];return 3*(k[0]+B)/4-B},K.toByteArray=function h(S){var k,ue,E=C(S),B=E[0],Z=E[1],Y=new e(function R(S,k,E){return 3*(k+E)/4-E}(0,B,Z)),ae=0,ee=Z>0?B-4:B;for(ue=0;ue>16&255,Y[ae++]=k>>8&255,Y[ae++]=255&k;return 2===Z&&(k=t[S.charCodeAt(ue)]<<2|t[S.charCodeAt(ue+1)]>>4,Y[ae++]=255&k),1===Z&&(k=t[S.charCodeAt(ue)]<<10|t[S.charCodeAt(ue+1)]<<4|t[S.charCodeAt(ue+2)]>>2,Y[ae++]=k>>8&255,Y[ae++]=255&k),Y},K.fromByteArray=function D(S){for(var k,E=S.length,B=E%3,Z=[],Y=16383,ae=0,ee=E-B;aeee?ee:ae+Y));return 1===B?Z.push(p[(k=S[E-1])>>2]+p[k<<4&63]+"=="):2===B&&Z.push(p[(k=(S[E-2]<<8)+S[E-1])>>10]+p[k>>4&63]+p[k<<2&63]+"="),Z.join("")};for(var p=[],t=[],e="undefined"!=typeof Uint8Array?Uint8Array:Array,f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",M=0,a=f.length;M0)throw new Error("Invalid string. Length must be a multiple of 4");var E=S.indexOf("=");return-1===E&&(E=k),[E,E===k?0:4-E%4]}function L(S){return p[S>>18&63]+p[S>>12&63]+p[S>>6&63]+p[63&S]}function w(S,k,E){for(var Z=[],Y=k;Y=48&&v<=57?v-48:v>=65&&v<=70?v-55:v>=97&&v<=102?v-87:void f(!1,"Invalid character in "+u)}function R(u,c,v){var T=d(u,v);return v-1>=c&&(T|=d(u,v-1)<<4),T}function h(u,c,v,T){for(var I=0,y=0,n=Math.min(u.length,v),_=c;_=49?V-49+10:V>=17?V-17+10:V,f(V>=0&&y0?c:v},a.min=function(c,v){return c.cmp(v)<0?c:v},a.prototype._init=function(c,v,T){if("number"==typeof c)return this._initNumber(c,v,T);if("object"==typeof c)return this._initArray(c,v,T);"hex"===v&&(v=16),f(v===(0|v)&&v>=2&&v<=36);var I=0;"-"===(c=c.toString().replace(/\s+/g,""))[0]&&(I++,this.negative=1),I=0;I-=3)this.words[y]|=(n=c[I]|c[I-1]<<8|c[I-2]<<16)<<_&67108863,this.words[y+1]=n>>>26-_&67108863,(_+=24)>=26&&(_-=26,y++);else if("le"===T)for(I=0,y=0;I>>26-_&67108863,(_+=24)>=26&&(_-=26,y++);return this._strip()},a.prototype._parseHex=function(c,v,T){this.length=Math.ceil((c.length-v)/6),this.words=new Array(this.length);for(var I=0;I=v;I-=2)_=R(c,v,I)<=18?(y-=18,this.words[n+=1]|=_>>>26):y+=8;else for(I=(c.length-v)%2==0?v+1:v;I=18?(y-=18,this.words[n+=1]|=_>>>26):y+=8;this._strip()},a.prototype._parseBase=function(c,v,T){this.words=[0],this.length=1;for(var I=0,y=1;y<=67108863;y*=v)I++;I--,y=y/v|0;for(var n=c.length-T,_=n%I,V=Math.min(n,n-_)+T,N=0,H=T;H1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},"undefined"!=typeof Symbol&&"function"==typeof Symbol.for)try{a.prototype[Symbol.for("nodejs.util.inspect.custom")]=w}catch(u){a.prototype.inspect=w}else a.prototype.inspect=w;function w(){return(this.red?""}var D=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],S=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],k=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function Z(u,c,v){v.negative=c.negative^u.negative;var T=u.length+c.length|0;v.length=T,T=T-1|0;var I=0|u.words[0],y=0|c.words[0],n=I*y,V=n/67108864|0;v.words[0]=67108863&n;for(var N=1;N>>26,X=67108863&V,he=Math.min(N,c.length-1),be=Math.max(0,N-u.length+1);be<=he;be++)H+=(n=(I=0|u.words[N-be|0])*(y=0|c.words[be])+X)/67108864|0,X=67108863&n;v.words[N]=0|X,V=0|H}return 0!==V?v.words[N]=0|V:v.length--,v._strip()}a.prototype.toString=function(c,v){var T;if(v=0|v||1,16===(c=c||10)||"hex"===c){T="";for(var I=0,y=0,n=0;n>>24-I&16777215,(I+=2)>=26&&(I-=26,n--),T=0!==y||n!==this.length-1?D[6-V.length]+V+T:V+T}for(0!==y&&(T=y.toString(16)+T);T.length%v!=0;)T="0"+T;return 0!==this.negative&&(T="-"+T),T}if(c===(0|c)&&c>=2&&c<=36){var N=S[c],H=k[c];T="";var X=this.clone();for(X.negative=0;!X.isZero();){var he=X.modrn(H).toString(c);T=(X=X.idivn(H)).isZero()?he+T:D[N-he.length]+he+T}for(this.isZero()&&(T="0"+T);T.length%v!=0;)T="0"+T;return 0!==this.negative&&(T="-"+T),T}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var c=this.words[0];return 2===this.length?c+=67108864*this.words[1]:3===this.length&&1===this.words[2]?c+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-c:c},a.prototype.toJSON=function(){return this.toString(16,2)},C&&(a.prototype.toBuffer=function(c,v){return this.toArrayLike(C,c,v)}),a.prototype.toArray=function(c,v){return this.toArrayLike(Array,c,v)},a.prototype.toArrayLike=function(c,v,T){this._strip();var I=this.byteLength(),y=T||Math.max(1,I);f(I<=y,"byte array longer than desired length"),f(y>0,"Requested array length <= 0");var n=function(c,v){return c.allocUnsafe?c.allocUnsafe(v):new c(v)}(c,y);return this["_toArrayLike"+("le"===v?"LE":"BE")](n,I),n},a.prototype._toArrayLikeLE=function(c,v){for(var T=0,I=0,y=0,n=0;y>8&255),T>16&255),6===n?(T>24&255),I=0,n=0):(I=_>>>24,n+=2)}if(T=0&&(c[T--]=_>>8&255),T>=0&&(c[T--]=_>>16&255),6===n?(T>=0&&(c[T--]=_>>24&255),I=0,n=0):(I=_>>>24,n+=2)}if(T>=0)for(c[T--]=I;T>=0;)c[T--]=0},a.prototype._countBits=Math.clz32?function(c){return 32-Math.clz32(c)}:function(c){var v=c,T=0;return v>=4096&&(T+=13,v>>>=13),v>=64&&(T+=7,v>>>=7),v>=8&&(T+=4,v>>>=4),v>=2&&(T+=2,v>>>=2),T+v},a.prototype._zeroBits=function(c){if(0===c)return 26;var v=c,T=0;return 0==(8191&v)&&(T+=13,v>>>=13),0==(127&v)&&(T+=7,v>>>=7),0==(15&v)&&(T+=4,v>>>=4),0==(3&v)&&(T+=2,v>>>=2),0==(1&v)&&T++,T},a.prototype.bitLength=function(){var v=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+v},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var c=0,v=0;vc.length?this.clone().ior(c):c.clone().ior(this)},a.prototype.uor=function(c){return this.length>c.length?this.clone().iuor(c):c.clone().iuor(this)},a.prototype.iuand=function(c){var v;v=this.length>c.length?c:this;for(var T=0;Tc.length?this.clone().iand(c):c.clone().iand(this)},a.prototype.uand=function(c){return this.length>c.length?this.clone().iuand(c):c.clone().iuand(this)},a.prototype.iuxor=function(c){var v,T;this.length>c.length?(v=this,T=c):(v=c,T=this);for(var I=0;Ic.length?this.clone().ixor(c):c.clone().ixor(this)},a.prototype.uxor=function(c){return this.length>c.length?this.clone().iuxor(c):c.clone().iuxor(this)},a.prototype.inotn=function(c){f("number"==typeof c&&c>=0);var v=0|Math.ceil(c/26),T=c%26;this._expand(v),T>0&&v--;for(var I=0;I0&&(this.words[I]=~this.words[I]&67108863>>26-T),this._strip()},a.prototype.notn=function(c){return this.clone().inotn(c)},a.prototype.setn=function(c,v){f("number"==typeof c&&c>=0);var T=c/26|0,I=c%26;return this._expand(T+1),this.words[T]=v?this.words[T]|1<c.length?(T=this,I=c):(T=c,I=this);for(var y=0,n=0;n>>26;for(;0!==y&&n>>26;if(this.length=T.length,0!==y)this.words[this.length]=y,this.length++;else if(T!==this)for(;nc.length?this.clone().iadd(c):c.clone().iadd(this)},a.prototype.isub=function(c){if(0!==c.negative){c.negative=0;var v=this.iadd(c);return c.negative=1,v._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(c),this.negative=1,this._normSign();var I,y,T=this.cmp(c);if(0===T)return this.negative=0,this.length=1,this.words[0]=0,this;T>0?(I=this,y=c):(I=c,y=this);for(var n=0,_=0;_>26,this.words[_]=67108863&v;for(;0!==n&&_>26,this.words[_]=67108863&v;if(0===n&&_>>13,Pe=0|I[1],Ee=8191&Pe,j=Pe>>>13,Ve=0|I[2],Me=8191&Ve,J=Ve>>>13,Ie=0|I[3],ut=8191&Ie,Oe=Ie>>>13,we=0|I[4],ce=8191&we,Te=we>>>13,xe=0|I[5],W=8191&xe,te=xe>>>13,Ce=0|I[6],fe=8191&Ce,Q=Ce>>>13,ft=0|I[7],tt=8191&ft,Dt=ft>>>13,di=0|I[8],Yt=8191&di,Zt=di>>>13,ui=0|I[9],Ot=8191&ui,Nt=ui>>>13,gt=0|y[0],it=8191>,bt=gt>>>13,ei=0|y[1],Qt=8191&ei,Re=ei>>>13,ke=0|y[2],de=8191&ke,ye=ke>>>13,ht=0|y[3],mt=8191&ht,Ft=ht>>>13,nt=0|y[4],He=8191&nt,rt=nt>>>13,et=0|y[5],Ae=8191&et,Ge=et>>>13,ot=0|y[6],lt=8191&ot,Ct=ot>>>13,mi=0|y[7],Jt=8191&mi,$t=mi>>>13,Qi=0|y[8],hi=8191&Qi,si=Qi>>>13,Ji=0|y[9],Zi=8191&Ji,Vi=Ji>>>13;T.negative=c.negative^v.negative,T.length=19;var Ui=(_+(V=Math.imul(he,it))|0)+((8191&(N=(N=Math.imul(he,bt))+Math.imul(be,it)|0))<<13)|0;_=((H=Math.imul(be,bt))+(N>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,V=Math.imul(Ee,it),N=(N=Math.imul(Ee,bt))+Math.imul(j,it)|0,H=Math.imul(j,bt);var Ue=(_+(V=V+Math.imul(he,Qt)|0)|0)+((8191&(N=(N=N+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0))<<13)|0;_=((H=H+Math.imul(be,Re)|0)+(N>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,V=Math.imul(Me,it),N=(N=Math.imul(Me,bt))+Math.imul(J,it)|0,H=Math.imul(J,bt),V=V+Math.imul(Ee,Qt)|0,N=(N=N+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,H=H+Math.imul(j,Re)|0;var Tt=(_+(V=V+Math.imul(he,de)|0)|0)+((8191&(N=(N=N+Math.imul(he,ye)|0)+Math.imul(be,de)|0))<<13)|0;_=((H=H+Math.imul(be,ye)|0)+(N>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,V=Math.imul(ut,it),N=(N=Math.imul(ut,bt))+Math.imul(Oe,it)|0,H=Math.imul(Oe,bt),V=V+Math.imul(Me,Qt)|0,N=(N=N+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,H=H+Math.imul(J,Re)|0,V=V+Math.imul(Ee,de)|0,N=(N=N+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,H=H+Math.imul(j,ye)|0;var ve=(_+(V=V+Math.imul(he,mt)|0)|0)+((8191&(N=(N=N+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0))<<13)|0;_=((H=H+Math.imul(be,Ft)|0)+(N>>>13)|0)+(ve>>>26)|0,ve&=67108863,V=Math.imul(ce,it),N=(N=Math.imul(ce,bt))+Math.imul(Te,it)|0,H=Math.imul(Te,bt),V=V+Math.imul(ut,Qt)|0,N=(N=N+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,H=H+Math.imul(Oe,Re)|0,V=V+Math.imul(Me,de)|0,N=(N=N+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,H=H+Math.imul(J,ye)|0,V=V+Math.imul(Ee,mt)|0,N=(N=N+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,H=H+Math.imul(j,Ft)|0;var Qe=(_+(V=V+Math.imul(he,He)|0)|0)+((8191&(N=(N=N+Math.imul(he,rt)|0)+Math.imul(be,He)|0))<<13)|0;_=((H=H+Math.imul(be,rt)|0)+(N>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,V=Math.imul(W,it),N=(N=Math.imul(W,bt))+Math.imul(te,it)|0,H=Math.imul(te,bt),V=V+Math.imul(ce,Qt)|0,N=(N=N+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,H=H+Math.imul(Te,Re)|0,V=V+Math.imul(ut,de)|0,N=(N=N+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,H=H+Math.imul(Oe,ye)|0,V=V+Math.imul(Me,mt)|0,N=(N=N+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,H=H+Math.imul(J,Ft)|0,V=V+Math.imul(Ee,He)|0,N=(N=N+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,H=H+Math.imul(j,rt)|0;var _t=(_+(V=V+Math.imul(he,Ae)|0)|0)+((8191&(N=(N=N+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0))<<13)|0;_=((H=H+Math.imul(be,Ge)|0)+(N>>>13)|0)+(_t>>>26)|0,_t&=67108863,V=Math.imul(fe,it),N=(N=Math.imul(fe,bt))+Math.imul(Q,it)|0,H=Math.imul(Q,bt),V=V+Math.imul(W,Qt)|0,N=(N=N+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,H=H+Math.imul(te,Re)|0,V=V+Math.imul(ce,de)|0,N=(N=N+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,H=H+Math.imul(Te,ye)|0,V=V+Math.imul(ut,mt)|0,N=(N=N+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,H=H+Math.imul(Oe,Ft)|0,V=V+Math.imul(Me,He)|0,N=(N=N+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,H=H+Math.imul(J,rt)|0,V=V+Math.imul(Ee,Ae)|0,N=(N=N+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,H=H+Math.imul(j,Ge)|0;var se=(_+(V=V+Math.imul(he,lt)|0)|0)+((8191&(N=(N=N+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0))<<13)|0;_=((H=H+Math.imul(be,Ct)|0)+(N>>>13)|0)+(se>>>26)|0,se&=67108863,V=Math.imul(tt,it),N=(N=Math.imul(tt,bt))+Math.imul(Dt,it)|0,H=Math.imul(Dt,bt),V=V+Math.imul(fe,Qt)|0,N=(N=N+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,H=H+Math.imul(Q,Re)|0,V=V+Math.imul(W,de)|0,N=(N=N+Math.imul(W,ye)|0)+Math.imul(te,de)|0,H=H+Math.imul(te,ye)|0,V=V+Math.imul(ce,mt)|0,N=(N=N+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,H=H+Math.imul(Te,Ft)|0,V=V+Math.imul(ut,He)|0,N=(N=N+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,H=H+Math.imul(Oe,rt)|0,V=V+Math.imul(Me,Ae)|0,N=(N=N+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,H=H+Math.imul(J,Ge)|0,V=V+Math.imul(Ee,lt)|0,N=(N=N+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,H=H+Math.imul(j,Ct)|0;var Je=(_+(V=V+Math.imul(he,Jt)|0)|0)+((8191&(N=(N=N+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0))<<13)|0;_=((H=H+Math.imul(be,$t)|0)+(N>>>13)|0)+(Je>>>26)|0,Je&=67108863,V=Math.imul(Yt,it),N=(N=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,H=Math.imul(Zt,bt),V=V+Math.imul(tt,Qt)|0,N=(N=N+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,H=H+Math.imul(Dt,Re)|0,V=V+Math.imul(fe,de)|0,N=(N=N+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,H=H+Math.imul(Q,ye)|0,V=V+Math.imul(W,mt)|0,N=(N=N+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,H=H+Math.imul(te,Ft)|0,V=V+Math.imul(ce,He)|0,N=(N=N+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,H=H+Math.imul(Te,rt)|0,V=V+Math.imul(ut,Ae)|0,N=(N=N+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,H=H+Math.imul(Oe,Ge)|0,V=V+Math.imul(Me,lt)|0,N=(N=N+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,H=H+Math.imul(J,Ct)|0,V=V+Math.imul(Ee,Jt)|0,N=(N=N+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,H=H+Math.imul(j,$t)|0;var xt=(_+(V=V+Math.imul(he,hi)|0)|0)+((8191&(N=(N=N+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;_=((H=H+Math.imul(be,si)|0)+(N>>>13)|0)+(xt>>>26)|0,xt&=67108863,V=Math.imul(Ot,it),N=(N=Math.imul(Ot,bt))+Math.imul(Nt,it)|0,H=Math.imul(Nt,bt),V=V+Math.imul(Yt,Qt)|0,N=(N=N+Math.imul(Yt,Re)|0)+Math.imul(Zt,Qt)|0,H=H+Math.imul(Zt,Re)|0,V=V+Math.imul(tt,de)|0,N=(N=N+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,H=H+Math.imul(Dt,ye)|0,V=V+Math.imul(fe,mt)|0,N=(N=N+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,H=H+Math.imul(Q,Ft)|0,V=V+Math.imul(W,He)|0,N=(N=N+Math.imul(W,rt)|0)+Math.imul(te,He)|0,H=H+Math.imul(te,rt)|0,V=V+Math.imul(ce,Ae)|0,N=(N=N+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,H=H+Math.imul(Te,Ge)|0,V=V+Math.imul(ut,lt)|0,N=(N=N+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,H=H+Math.imul(Oe,Ct)|0,V=V+Math.imul(Me,Jt)|0,N=(N=N+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,H=H+Math.imul(J,$t)|0,V=V+Math.imul(Ee,hi)|0,N=(N=N+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0,H=H+Math.imul(j,si)|0;var Bt=(_+(V=V+Math.imul(he,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(he,Vi)|0)+Math.imul(be,Zi)|0))<<13)|0;_=((H=H+Math.imul(be,Vi)|0)+(N>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,V=Math.imul(Ot,Qt),N=(N=Math.imul(Ot,Re))+Math.imul(Nt,Qt)|0,H=Math.imul(Nt,Re),V=V+Math.imul(Yt,de)|0,N=(N=N+Math.imul(Yt,ye)|0)+Math.imul(Zt,de)|0,H=H+Math.imul(Zt,ye)|0,V=V+Math.imul(tt,mt)|0,N=(N=N+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,H=H+Math.imul(Dt,Ft)|0,V=V+Math.imul(fe,He)|0,N=(N=N+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,H=H+Math.imul(Q,rt)|0,V=V+Math.imul(W,Ae)|0,N=(N=N+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,H=H+Math.imul(te,Ge)|0,V=V+Math.imul(ce,lt)|0,N=(N=N+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,H=H+Math.imul(Te,Ct)|0,V=V+Math.imul(ut,Jt)|0,N=(N=N+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,H=H+Math.imul(Oe,$t)|0,V=V+Math.imul(Me,hi)|0,N=(N=N+Math.imul(Me,si)|0)+Math.imul(J,hi)|0,H=H+Math.imul(J,si)|0;var xi=(_+(V=V+Math.imul(Ee,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(Ee,Vi)|0)+Math.imul(j,Zi)|0))<<13)|0;_=((H=H+Math.imul(j,Vi)|0)+(N>>>13)|0)+(xi>>>26)|0,xi&=67108863,V=Math.imul(Ot,de),N=(N=Math.imul(Ot,ye))+Math.imul(Nt,de)|0,H=Math.imul(Nt,ye),V=V+Math.imul(Yt,mt)|0,N=(N=N+Math.imul(Yt,Ft)|0)+Math.imul(Zt,mt)|0,H=H+Math.imul(Zt,Ft)|0,V=V+Math.imul(tt,He)|0,N=(N=N+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,H=H+Math.imul(Dt,rt)|0,V=V+Math.imul(fe,Ae)|0,N=(N=N+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,H=H+Math.imul(Q,Ge)|0,V=V+Math.imul(W,lt)|0,N=(N=N+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,H=H+Math.imul(te,Ct)|0,V=V+Math.imul(ce,Jt)|0,N=(N=N+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,H=H+Math.imul(Te,$t)|0,V=V+Math.imul(ut,hi)|0,N=(N=N+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0,H=H+Math.imul(Oe,si)|0;var Ti=(_+(V=V+Math.imul(Me,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(Me,Vi)|0)+Math.imul(J,Zi)|0))<<13)|0;_=((H=H+Math.imul(J,Vi)|0)+(N>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,V=Math.imul(Ot,mt),N=(N=Math.imul(Ot,Ft))+Math.imul(Nt,mt)|0,H=Math.imul(Nt,Ft),V=V+Math.imul(Yt,He)|0,N=(N=N+Math.imul(Yt,rt)|0)+Math.imul(Zt,He)|0,H=H+Math.imul(Zt,rt)|0,V=V+Math.imul(tt,Ae)|0,N=(N=N+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,H=H+Math.imul(Dt,Ge)|0,V=V+Math.imul(fe,lt)|0,N=(N=N+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,H=H+Math.imul(Q,Ct)|0,V=V+Math.imul(W,Jt)|0,N=(N=N+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,H=H+Math.imul(te,$t)|0,V=V+Math.imul(ce,hi)|0,N=(N=N+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0,H=H+Math.imul(Te,si)|0;var $i=(_+(V=V+Math.imul(ut,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(ut,Vi)|0)+Math.imul(Oe,Zi)|0))<<13)|0;_=((H=H+Math.imul(Oe,Vi)|0)+(N>>>13)|0)+($i>>>26)|0,$i&=67108863,V=Math.imul(Ot,He),N=(N=Math.imul(Ot,rt))+Math.imul(Nt,He)|0,H=Math.imul(Nt,rt),V=V+Math.imul(Yt,Ae)|0,N=(N=N+Math.imul(Yt,Ge)|0)+Math.imul(Zt,Ae)|0,H=H+Math.imul(Zt,Ge)|0,V=V+Math.imul(tt,lt)|0,N=(N=N+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,H=H+Math.imul(Dt,Ct)|0,V=V+Math.imul(fe,Jt)|0,N=(N=N+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,H=H+Math.imul(Q,$t)|0,V=V+Math.imul(W,hi)|0,N=(N=N+Math.imul(W,si)|0)+Math.imul(te,hi)|0,H=H+Math.imul(te,si)|0;var Wi=(_+(V=V+Math.imul(ce,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(ce,Vi)|0)+Math.imul(Te,Zi)|0))<<13)|0;_=((H=H+Math.imul(Te,Vi)|0)+(N>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,V=Math.imul(Ot,Ae),N=(N=Math.imul(Ot,Ge))+Math.imul(Nt,Ae)|0,H=Math.imul(Nt,Ge),V=V+Math.imul(Yt,lt)|0,N=(N=N+Math.imul(Yt,Ct)|0)+Math.imul(Zt,lt)|0,H=H+Math.imul(Zt,Ct)|0,V=V+Math.imul(tt,Jt)|0,N=(N=N+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,H=H+Math.imul(Dt,$t)|0,V=V+Math.imul(fe,hi)|0,N=(N=N+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0,H=H+Math.imul(Q,si)|0;var on=(_+(V=V+Math.imul(W,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(W,Vi)|0)+Math.imul(te,Zi)|0))<<13)|0;_=((H=H+Math.imul(te,Vi)|0)+(N>>>13)|0)+(on>>>26)|0,on&=67108863,V=Math.imul(Ot,lt),N=(N=Math.imul(Ot,Ct))+Math.imul(Nt,lt)|0,H=Math.imul(Nt,Ct),V=V+Math.imul(Yt,Jt)|0,N=(N=N+Math.imul(Yt,$t)|0)+Math.imul(Zt,Jt)|0,H=H+Math.imul(Zt,$t)|0,V=V+Math.imul(tt,hi)|0,N=(N=N+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0,H=H+Math.imul(Dt,si)|0;var fn=(_+(V=V+Math.imul(fe,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(fe,Vi)|0)+Math.imul(Q,Zi)|0))<<13)|0;_=((H=H+Math.imul(Q,Vi)|0)+(N>>>13)|0)+(fn>>>26)|0,fn&=67108863,V=Math.imul(Ot,Jt),N=(N=Math.imul(Ot,$t))+Math.imul(Nt,Jt)|0,H=Math.imul(Nt,$t),V=V+Math.imul(Yt,hi)|0,N=(N=N+Math.imul(Yt,si)|0)+Math.imul(Zt,hi)|0,H=H+Math.imul(Zt,si)|0;var ti=(_+(V=V+Math.imul(tt,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(tt,Vi)|0)+Math.imul(Dt,Zi)|0))<<13)|0;_=((H=H+Math.imul(Dt,Vi)|0)+(N>>>13)|0)+(ti>>>26)|0,ti&=67108863,V=Math.imul(Ot,hi),N=(N=Math.imul(Ot,si))+Math.imul(Nt,hi)|0,H=Math.imul(Nt,si);var Ri=(_+(V=V+Math.imul(Yt,Zi)|0)|0)+((8191&(N=(N=N+Math.imul(Yt,Vi)|0)+Math.imul(Zt,Zi)|0))<<13)|0;_=((H=H+Math.imul(Zt,Vi)|0)+(N>>>13)|0)+(Ri>>>26)|0,Ri&=67108863;var st=(_+(V=Math.imul(Ot,Zi))|0)+((8191&(N=(N=Math.imul(Ot,Vi))+Math.imul(Nt,Zi)|0))<<13)|0;return _=((H=Math.imul(Nt,Vi))+(N>>>13)|0)+(st>>>26)|0,st&=67108863,n[0]=Ui,n[1]=Ue,n[2]=Tt,n[3]=ve,n[4]=Qe,n[5]=_t,n[6]=se,n[7]=Je,n[8]=xt,n[9]=Bt,n[10]=xi,n[11]=Ti,n[12]=$i,n[13]=Wi,n[14]=on,n[15]=fn,n[16]=ti,n[17]=Ri,n[18]=st,0!==_&&(n[19]=_,T.length++),T};function ae(u,c,v){v.negative=c.negative^u.negative,v.length=u.length+c.length;for(var T=0,I=0,y=0;y>>26)|0)>>>26,n&=67108863}v.words[y]=_,T=n,n=I}return 0!==T?v.words[y]=T:v.length--,v._strip()}function ee(u,c,v){return ae(u,c,v)}function ue(u,c){this.x=u,this.y=c}Math.imul||(Y=Z),a.prototype.mulTo=function(c,v){var I=this.length+c.length;return 10===this.length&&10===c.length?Y(this,c,v):I<63?Z(this,c,v):I<1024?ae(this,c,v):ee(this,c,v)},ue.prototype.makeRBT=function(c){for(var v=new Array(c),T=a.prototype._countBits(c)-1,I=0;I>=1;return I},ue.prototype.permute=function(c,v,T,I,y,n){for(var _=0;_>>=1)y++;return 1<>>=13),y>>>=13;for(n=2*v;n>=26,T+=y/67108864|0,T+=n>>>26,this.words[I]=67108863&n}return 0!==T&&(this.words[I]=T,this.length++),v?this.ineg():this},a.prototype.muln=function(c){return this.clone().imuln(c)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(c){var v=function B(u){for(var c=new Array(u.bitLength()),v=0;v>>v%26&1;return c}(c);if(0===v.length)return new a(1);for(var T=this,I=0;I=0);var y,v=c%26,T=(c-v)/26,I=67108863>>>26-v<<26-v;if(0!==v){var n=0;for(y=0;y>>26-v}n&&(this.words[y]=n,this.length++)}if(0!==T){for(y=this.length-1;y>=0;y--)this.words[y+T]=this.words[y];for(y=0;y=0),I=v?(v-v%26)/26:0;var y=c%26,n=Math.min((c-y)/26,this.length),_=67108863^67108863>>>y<n)for(this.length-=n,N=0;N=0&&(0!==H||N>=I);N--){var X=0|this.words[N];this.words[N]=H<<26-y|X>>>y,H=X&_}return V&&0!==H&&(V.words[V.length++]=H),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},a.prototype.ishrn=function(c,v,T){return f(0===this.negative),this.iushrn(c,v,T)},a.prototype.shln=function(c){return this.clone().ishln(c)},a.prototype.ushln=function(c){return this.clone().iushln(c)},a.prototype.shrn=function(c){return this.clone().ishrn(c)},a.prototype.ushrn=function(c){return this.clone().iushrn(c)},a.prototype.testn=function(c){f("number"==typeof c&&c>=0);var v=c%26,T=(c-v)/26;return!(this.length<=T||!(this.words[T]&1<=0);var v=c%26,T=(c-v)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=T?this:(0!==v&&T++,this.length=Math.min(T,this.length),0!==v&&(this.words[this.length-1]&=67108863^67108863>>>v<=67108864;v++)this.words[v]-=67108864,v===this.length-1?this.words[v+1]=1:this.words[v+1]++;return this.length=Math.max(this.length,v+1),this},a.prototype.isubn=function(c){if(f("number"==typeof c),f(c<67108864),c<0)return this.iaddn(-c);if(0!==this.negative)return this.negative=0,this.iaddn(c),this.negative=1,this;if(this.words[0]-=c,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var v=0;v>26)-(V/67108864|0),this.words[y+T]=67108863&n}for(;y>26,this.words[y+T]=67108863&n;if(0===_)return this._strip();for(f(-1===_),_=0,y=0;y>26,this.words[y]=67108863&n;return this.negative=1,this._strip()},a.prototype._wordDiv=function(c,v){var T,I=this.clone(),y=c,n=0|y.words[y.length-1];0!=(T=26-this._countBits(n))&&(y=y.ushln(T),I.iushln(T),n=0|y.words[y.length-1]);var N,V=I.length-y.length;if("mod"!==v){(N=new a(null)).length=V+1,N.words=new Array(N.length);for(var H=0;H=0;he--){var be=67108864*(0|I.words[y.length+he])+(0|I.words[y.length+he-1]);for(be=Math.min(be/n|0,67108863),I._ishlnsubmul(y,be,he);0!==I.negative;)be--,I.negative=0,I._ishlnsubmul(y,1,he),I.isZero()||(I.negative^=1);N&&(N.words[he]=be)}return N&&N._strip(),I._strip(),"div"!==v&&0!==T&&I.iushrn(T),{div:N||null,mod:I}},a.prototype.divmod=function(c,v,T){return f(!c.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===c.negative?(n=this.neg().divmod(c,v),"mod"!==v&&(I=n.div.neg()),"div"!==v&&(y=n.mod.neg(),T&&0!==y.negative&&y.iadd(c)),{div:I,mod:y}):0===this.negative&&0!==c.negative?(n=this.divmod(c.neg(),v),"mod"!==v&&(I=n.div.neg()),{div:I,mod:n.mod}):0!=(this.negative&c.negative)?(n=this.neg().divmod(c.neg(),v),"div"!==v&&(y=n.mod.neg(),T&&0!==y.negative&&y.isub(c)),{div:n.div,mod:y}):c.length>this.length||this.cmp(c)<0?{div:new a(0),mod:this}:1===c.length?"div"===v?{div:this.divn(c.words[0]),mod:null}:"mod"===v?{div:null,mod:new a(this.modrn(c.words[0]))}:{div:this.divn(c.words[0]),mod:new a(this.modrn(c.words[0]))}:this._wordDiv(c,v);var I,y,n},a.prototype.div=function(c){return this.divmod(c,"div",!1).div},a.prototype.mod=function(c){return this.divmod(c,"mod",!1).mod},a.prototype.umod=function(c){return this.divmod(c,"mod",!0).mod},a.prototype.divRound=function(c){var v=this.divmod(c);if(v.mod.isZero())return v.div;var T=0!==v.div.negative?v.mod.isub(c):v.mod,I=c.ushrn(1),y=c.andln(1),n=T.cmp(I);return n<0||1===y&&0===n?v.div:0!==v.div.negative?v.div.isubn(1):v.div.iaddn(1)},a.prototype.modrn=function(c){var v=c<0;v&&(c=-c),f(c<=67108863);for(var T=(1<<26)%c,I=0,y=this.length-1;y>=0;y--)I=(T*I+(0|this.words[y]))%c;return v?-I:I},a.prototype.modn=function(c){return this.modrn(c)},a.prototype.idivn=function(c){var v=c<0;v&&(c=-c),f(c<=67108863);for(var T=0,I=this.length-1;I>=0;I--){var y=(0|this.words[I])+67108864*T;this.words[I]=y/c|0,T=y%c}return this._strip(),v?this.ineg():this},a.prototype.divn=function(c){return this.clone().idivn(c)},a.prototype.egcd=function(c){f(0===c.negative),f(!c.isZero());var v=this,T=c.clone();v=0!==v.negative?v.umod(c):v.clone();for(var I=new a(1),y=new a(0),n=new a(0),_=new a(1),V=0;v.isEven()&&T.isEven();)v.iushrn(1),T.iushrn(1),++V;for(var N=T.clone(),H=v.clone();!v.isZero();){for(var X=0,he=1;0==(v.words[0]&he)&&X<26;++X,he<<=1);if(X>0)for(v.iushrn(X);X-- >0;)(I.isOdd()||y.isOdd())&&(I.iadd(N),y.isub(H)),I.iushrn(1),y.iushrn(1);for(var be=0,Pe=1;0==(T.words[0]&Pe)&&be<26;++be,Pe<<=1);if(be>0)for(T.iushrn(be);be-- >0;)(n.isOdd()||_.isOdd())&&(n.iadd(N),_.isub(H)),n.iushrn(1),_.iushrn(1);v.cmp(T)>=0?(v.isub(T),I.isub(n),y.isub(_)):(T.isub(v),n.isub(I),_.isub(y))}return{a:n,b:_,gcd:T.iushln(V)}},a.prototype._invmp=function(c){f(0===c.negative),f(!c.isZero());var X,v=this,T=c.clone();v=0!==v.negative?v.umod(c):v.clone();for(var I=new a(1),y=new a(0),n=T.clone();v.cmpn(1)>0&&T.cmpn(1)>0;){for(var _=0,V=1;0==(v.words[0]&V)&&_<26;++_,V<<=1);if(_>0)for(v.iushrn(_);_-- >0;)I.isOdd()&&I.iadd(n),I.iushrn(1);for(var N=0,H=1;0==(T.words[0]&H)&&N<26;++N,H<<=1);if(N>0)for(T.iushrn(N);N-- >0;)y.isOdd()&&y.iadd(n),y.iushrn(1);v.cmp(T)>=0?(v.isub(T),I.isub(y)):(T.isub(v),y.isub(I))}return(X=0===v.cmpn(1)?I:y).cmpn(0)<0&&X.iadd(c),X},a.prototype.gcd=function(c){if(this.isZero())return c.abs();if(c.isZero())return this.abs();var v=this.clone(),T=c.clone();v.negative=0,T.negative=0;for(var I=0;v.isEven()&&T.isEven();I++)v.iushrn(1),T.iushrn(1);for(;;){for(;v.isEven();)v.iushrn(1);for(;T.isEven();)T.iushrn(1);var y=v.cmp(T);if(y<0){var n=v;v=T,T=n}else if(0===y||0===T.cmpn(1))break;v.isub(T)}return T.iushln(I)},a.prototype.invm=function(c){return this.egcd(c).a.umod(c)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(c){return this.words[0]&c},a.prototype.bincn=function(c){f("number"==typeof c);var v=c%26,T=(c-v)/26,I=1<>>26,this.words[n]=_&=67108863}return 0!==y&&(this.words[n]=y,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(c){var T,v=c<0;if(0!==this.negative&&!v)return-1;if(0===this.negative&&v)return 1;if(this._strip(),this.length>1)T=1;else{v&&(c=-c),f(c<=67108863,"Number is too big");var I=0|this.words[0];T=I===c?0:Ic.length)return 1;if(this.length=0;T--){var I=0|this.words[T],y=0|c.words[T];if(I!==y){Iy&&(v=1);break}}return v},a.prototype.gtn=function(c){return 1===this.cmpn(c)},a.prototype.gt=function(c){return 1===this.cmp(c)},a.prototype.gten=function(c){return this.cmpn(c)>=0},a.prototype.gte=function(c){return this.cmp(c)>=0},a.prototype.ltn=function(c){return-1===this.cmpn(c)},a.prototype.lt=function(c){return-1===this.cmp(c)},a.prototype.lten=function(c){return this.cmpn(c)<=0},a.prototype.lte=function(c){return this.cmp(c)<=0},a.prototype.eqn=function(c){return 0===this.cmpn(c)},a.prototype.eq=function(c){return 0===this.cmp(c)},a.red=function(c){return new i(c)},a.prototype.toRed=function(c){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),c.convertTo(this)._forceRed(c)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(c){return this.red=c,this},a.prototype.forceRed=function(c){return f(!this.red,"Already a number in reduction context"),this._forceRed(c)},a.prototype.redAdd=function(c){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,c)},a.prototype.redIAdd=function(c){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,c)},a.prototype.redSub=function(c){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,c)},a.prototype.redISub=function(c){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,c)},a.prototype.redShl=function(c){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,c)},a.prototype.redMul=function(c){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,c),this.red.mul(this,c)},a.prototype.redIMul=function(c){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,c),this.red.imul(this,c)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(c){return f(this.red&&!c.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,c)};var ie={k256:null,p224:null,p192:null,p25519:null};function re(u,c){this.name=u,this.p=new a(c,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ge(){re.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function q(){re.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function _e(){re.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function x(){re.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function i(u){if("string"==typeof u){var c=a._prime(u);this.m=c.p,this.prime=c}else f(u.gtn(1),"modulus must be greater than 1"),this.m=u,this.prime=null}function r(u){i.call(this,u),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}re.prototype._tmp=function(){var c=new a(null);return c.words=new Array(Math.ceil(this.n/13)),c},re.prototype.ireduce=function(c){var T,v=c;do{this.split(v,this.tmp),T=(v=(v=this.imulK(v)).iadd(this.tmp)).bitLength()}while(T>this.n);var I=T0?v.isub(this.p):void 0!==v.strip?v.strip():v._strip(),v},re.prototype.split=function(c,v){c.iushrn(this.n,0,v)},re.prototype.imulK=function(c){return c.imul(this.k)},M(ge,re),ge.prototype.split=function(c,v){for(var T=4194303,I=Math.min(c.length,9),y=0;y>>22,n=_}c.words[y-10]=n>>>=22,c.length-=0===n&&c.length>10?10:9},ge.prototype.imulK=function(c){c.words[c.length]=0,c.words[c.length+1]=0,c.length+=2;for(var v=0,T=0;T>>=26,c.words[T]=y,v=I}return 0!==v&&(c.words[c.length++]=v),c},a._prime=function(c){if(ie[c])return ie[c];var v;if("k256"===c)v=new ge;else if("p224"===c)v=new q;else if("p192"===c)v=new _e;else{if("p25519"!==c)throw new Error("Unknown prime "+c);v=new x}return ie[c]=v,v},i.prototype._verify1=function(c){f(0===c.negative,"red works only with positives"),f(c.red,"red works only with red numbers")},i.prototype._verify2=function(c,v){f(0==(c.negative|v.negative),"red works only with positives"),f(c.red&&c.red===v.red,"red works only with red numbers")},i.prototype.imod=function(c){return this.prime?this.prime.ireduce(c)._forceRed(this):(L(c,c.umod(this.m)._forceRed(this)),c)},i.prototype.neg=function(c){return c.isZero()?c.clone():this.m.sub(c)._forceRed(this)},i.prototype.add=function(c,v){this._verify2(c,v);var T=c.add(v);return T.cmp(this.m)>=0&&T.isub(this.m),T._forceRed(this)},i.prototype.iadd=function(c,v){this._verify2(c,v);var T=c.iadd(v);return T.cmp(this.m)>=0&&T.isub(this.m),T},i.prototype.sub=function(c,v){this._verify2(c,v);var T=c.sub(v);return T.cmpn(0)<0&&T.iadd(this.m),T._forceRed(this)},i.prototype.isub=function(c,v){this._verify2(c,v);var T=c.isub(v);return T.cmpn(0)<0&&T.iadd(this.m),T},i.prototype.shl=function(c,v){return this._verify1(c),this.imod(c.ushln(v))},i.prototype.imul=function(c,v){return this._verify2(c,v),this.imod(c.imul(v))},i.prototype.mul=function(c,v){return this._verify2(c,v),this.imod(c.mul(v))},i.prototype.isqr=function(c){return this.imul(c,c.clone())},i.prototype.sqr=function(c){return this.mul(c,c)},i.prototype.sqrt=function(c){if(c.isZero())return c.clone();var v=this.m.andln(3);if(f(v%2==1),3===v){var T=this.m.add(new a(1)).iushrn(2);return this.pow(c,T)}for(var I=this.m.subn(1),y=0;!I.isZero()&&0===I.andln(1);)y++,I.iushrn(1);f(!I.isZero());var n=new a(1).toRed(this),_=n.redNeg(),V=this.m.subn(1).iushrn(1),N=this.m.bitLength();for(N=new a(2*N*N).toRed(this);0!==this.pow(N,V).cmp(_);)N.redIAdd(_);for(var H=this.pow(N,I),X=this.pow(c,I.addn(1).iushrn(1)),he=this.pow(c,I),be=y;0!==he.cmp(n);){for(var Pe=he,Ee=0;0!==Pe.cmp(n);Ee++)Pe=Pe.redSqr();f(Ee=0;y--){for(var H=v.words[y],X=N-1;X>=0;X--){var he=H>>X&1;n!==I[0]&&(n=this.sqr(n)),0!==he||0!==_?(_<<=1,_|=he,(4==++V||0===y&&0===X)&&(n=this.mul(n,I[_]),V=0,_=0)):V=0}N=26}return n},i.prototype.convertTo=function(c){var v=c.umod(this.m);return v===c?v.clone():v},i.prototype.convertFrom=function(c){var v=c.clone();return v.red=null,v},a.mont=function(c){return new r(c)},M(r,i),r.prototype.convertTo=function(c){return this.imod(c.ushln(this.shift))},r.prototype.convertFrom=function(c){var v=this.imod(c.mul(this.rinv));return v.red=null,v},r.prototype.imul=function(c,v){if(c.isZero()||v.isZero())return c.words[0]=0,c.length=1,c;var T=c.imul(v),I=T.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),y=T.isub(I).iushrn(this.shift),n=y;return y.cmp(this.m)>=0?n=y.isub(this.m):y.cmpn(0)<0&&(n=y.iadd(this.m)),n._forceRed(this)},r.prototype.mul=function(c,v){if(c.isZero()||v.isZero())return new a(0)._forceRed(this);var T=c.mul(v),I=T.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),y=T.isub(I).iushrn(this.shift),n=y;return y.cmp(this.m)>=0?n=y.isub(this.m):y.cmpn(0)<0&&(n=y.iadd(this.m)),n._forceRed(this)},r.prototype.invm=function(c){return this.imod(c._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},7950:(Be,K,p)=>{var t;function e(M){this.rand=M}if(Be.exports=function(a){return t||(t=new e(null)),t.generate(a)},Be.exports.Rand=e,e.prototype.generate=function(a){return this._rand(a)},e.prototype._rand=function(a){if(this.rand.getBytes)return this.rand.getBytes(a);for(var C=new Uint8Array(a),d=0;d{var t=p(3502).Buffer;function e(R){t.isBuffer(R)||(R=t.from(R));for(var h=R.length/4|0,L=new Array(h),w=0;w>>24]^k[Y>>>16&255]^E[ae>>>8&255]^B[255&ee]^h[q++],ie=S[Y>>>24]^k[ae>>>16&255]^E[ee>>>8&255]^B[255&Z]^h[q++],re=S[ae>>>24]^k[ee>>>16&255]^E[Z>>>8&255]^B[255&Y]^h[q++],ge=S[ee>>>24]^k[Z>>>16&255]^E[Y>>>8&255]^B[255&ae]^h[q++],Z=ue,Y=ie,ae=re,ee=ge;return ue=(w[Z>>>24]<<24|w[Y>>>16&255]<<16|w[ae>>>8&255]<<8|w[255&ee])^h[q++],ie=(w[Y>>>24]<<24|w[ae>>>16&255]<<16|w[ee>>>8&255]<<8|w[255&Z])^h[q++],re=(w[ae>>>24]<<24|w[ee>>>16&255]<<16|w[Z>>>8&255]<<8|w[255&Y])^h[q++],ge=(w[ee>>>24]<<24|w[Z>>>16&255]<<16|w[Y>>>8&255]<<8|w[255&ae])^h[q++],[ue>>>=0,ie>>>=0,re>>>=0,ge>>>=0]}var a=[0,1,2,4,8,16,32,64,128,27,54],C=function(){for(var R=new Array(256),h=0;h<256;h++)R[h]=h<128?h<<1:h<<1^283;for(var L=[],w=[],D=[[],[],[],[]],S=[[],[],[],[]],k=0,E=0,B=0;B<256;++B){var Z=E^E<<1^E<<2^E<<3^E<<4;L[k]=Z=Z>>>8^255&Z^99,w[Z]=k;var Y=R[k],ae=R[Y],ee=R[ae],ue=257*R[Z]^16843008*Z;D[0][k]=ue<<24|ue>>>8,D[1][k]=ue<<16|ue>>>16,D[2][k]=ue<<8|ue>>>24,D[3][k]=ue,S[0][Z]=(ue=16843009*ee^65537*ae^257*Y^16843008*k)<<24|ue>>>8,S[1][Z]=ue<<16|ue>>>16,S[2][Z]=ue<<8|ue>>>24,S[3][Z]=ue,0===k?k=E=1:(k=Y^R[R[R[ee^Y]]],E^=R[R[E]])}return{SBOX:L,INV_SBOX:w,SUB_MIX:D,INV_SUB_MIX:S}}();function d(R){this._key=e(R),this._reset()}d.blockSize=16,d.keySize=32,d.prototype.blockSize=d.blockSize,d.prototype.keySize=d.keySize,d.prototype._reset=function(){for(var R=this._key,h=R.length,L=h+6,w=4*(L+1),D=[],S=0;S>>24)>>>24]<<24|C.SBOX[k>>>16&255]<<16|C.SBOX[k>>>8&255]<<8|C.SBOX[255&k],k^=a[S/h|0]<<24):h>6&&S%h==4&&(k=C.SBOX[k>>>24]<<24|C.SBOX[k>>>16&255]<<16|C.SBOX[k>>>8&255]<<8|C.SBOX[255&k]),D[S]=D[S-h]^k}for(var E=[],B=0;B>>24]]^C.INV_SUB_MIX[1][C.SBOX[Y>>>16&255]]^C.INV_SUB_MIX[2][C.SBOX[Y>>>8&255]]^C.INV_SUB_MIX[3][C.SBOX[255&Y]]}this._nRounds=L,this._keySchedule=D,this._invKeySchedule=E},d.prototype.encryptBlockRaw=function(R){return M(R=e(R),this._keySchedule,C.SUB_MIX,C.SBOX,this._nRounds)},d.prototype.encryptBlock=function(R){var h=this.encryptBlockRaw(R),L=t.allocUnsafe(16);return L.writeUInt32BE(h[0],0),L.writeUInt32BE(h[1],4),L.writeUInt32BE(h[2],8),L.writeUInt32BE(h[3],12),L},d.prototype.decryptBlock=function(R){var h=(R=e(R))[1];R[1]=R[3],R[3]=h;var L=M(R,this._invKeySchedule,C.INV_SUB_MIX,C.INV_SBOX,this._nRounds),w=t.allocUnsafe(16);return w.writeUInt32BE(L[0],0),w.writeUInt32BE(L[3],4),w.writeUInt32BE(L[2],8),w.writeUInt32BE(L[1],12),w},d.prototype.scrub=function(){f(this._keySchedule),f(this._invKeySchedule),f(this._key)},Be.exports.AES=d},9382:(Be,K,p)=>{var t=p(1899),e=p(3502).Buffer,f=p(1052),M=p(3894),a=p(8857),C=p(8789),d=p(7968);function L(w,D,S,k){f.call(this);var E=e.alloc(4,0);this._cipher=new t.AES(D);var B=this._cipher.encryptBlock(E);this._ghash=new a(B),S=function h(w,D,S){if(12===D.length)return w._finID=e.concat([D,e.from([0,0,0,1])]),e.concat([D,e.from([0,0,0,2])]);var k=new a(S),E=D.length,B=E%16;k.update(D),B&&k.update(e.alloc(B=16-B,0)),k.update(e.alloc(8,0));var Z=8*E,Y=e.alloc(8);Y.writeUIntBE(Z,0,8),k.update(Y),w._finID=k.state;var ae=e.from(w._finID);return d(ae),ae}(this,S,B),this._prev=e.from(S),this._cache=e.allocUnsafe(0),this._secCache=e.allocUnsafe(0),this._decrypt=k,this._alen=0,this._len=0,this._mode=w,this._authTag=null,this._called=!1}M(L,f),L.prototype._update=function(w){if(!this._called&&this._alen){var D=16-this._alen%16;D<16&&(D=e.alloc(D,0),this._ghash.update(D))}this._called=!0;var S=this._mode.encrypt(this,w);return this._ghash.update(this._decrypt?w:S),this._len+=w.length,S},L.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var w=C(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function R(w,D){var S=0;w.length!==D.length&&S++;for(var k=Math.min(w.length,D.length),E=0;E{var t=p(6900),e=p(856),f=p(4946);K.createCipher=K.Cipher=t.createCipher,K.createCipheriv=K.Cipheriv=t.createCipheriv,K.createDecipher=K.Decipher=e.createDecipher,K.createDecipheriv=K.Decipheriv=e.createDecipheriv,K.listCiphers=K.getCiphers=function M(){return Object.keys(f)}},856:(Be,K,p)=>{var t=p(9382),e=p(3502).Buffer,f=p(9171),M=p(8441),a=p(1052),C=p(1899),d=p(347);function h(k,E,B){a.call(this),this._cache=new L,this._last=void 0,this._cipher=new C.AES(E),this._prev=e.from(B),this._mode=k,this._autopadding=!0}function L(){this.cache=e.allocUnsafe(0)}function D(k,E,B){var Z=f[k.toLowerCase()];if(!Z)throw new TypeError("invalid suite type");if("string"==typeof B&&(B=e.from(B)),"GCM"!==Z.mode&&B.length!==Z.iv)throw new TypeError("invalid iv length "+B.length);if("string"==typeof E&&(E=e.from(E)),E.length!==Z.key/8)throw new TypeError("invalid key length "+E.length);return"stream"===Z.type?new M(Z.module,E,B,!0):"auth"===Z.type?new t(Z.module,E,B,!0):new h(Z.module,E,B)}p(3894)(h,a),h.prototype._update=function(k){this._cache.add(k);for(var E,B,Z=[];E=this._cache.get(this._autopadding);)B=this._mode.decrypt(this,E),Z.push(B);return e.concat(Z)},h.prototype._final=function(){var k=this._cache.flush();if(this._autopadding)return function w(k){var E=k[15];if(E<1||E>16)throw new Error("unable to decrypt data");for(var B=-1;++B16)return E=this.cache.slice(0,16),this.cache=this.cache.slice(16),E}else if(this.cache.length>=16)return E=this.cache.slice(0,16),this.cache=this.cache.slice(16),E;return null},L.prototype.flush=function(){if(this.cache.length)return this.cache},K.createDecipher=function S(k,E){var B=f[k.toLowerCase()];if(!B)throw new TypeError("invalid suite type");var Z=d(E,!1,B.key,B.iv);return D(k,Z.key,Z.iv)},K.createDecipheriv=D},6900:(Be,K,p)=>{var t=p(9171),e=p(9382),f=p(3502).Buffer,M=p(8441),a=p(1052),C=p(1899),d=p(347);function h(k,E,B){a.call(this),this._cache=new w,this._cipher=new C.AES(E),this._prev=f.from(B),this._mode=k,this._autopadding=!0}p(3894)(h,a),h.prototype._update=function(k){this._cache.add(k);for(var E,B,Z=[];E=this._cache.get();)B=this._mode.encrypt(this,E),Z.push(B);return f.concat(Z)};var L=f.alloc(16,16);function w(){this.cache=f.allocUnsafe(0)}function D(k,E,B){var Z=t[k.toLowerCase()];if(!Z)throw new TypeError("invalid suite type");if("string"==typeof E&&(E=f.from(E)),E.length!==Z.key/8)throw new TypeError("invalid key length "+E.length);if("string"==typeof B&&(B=f.from(B)),"GCM"!==Z.mode&&B.length!==Z.iv)throw new TypeError("invalid iv length "+B.length);return"stream"===Z.type?new M(Z.module,E,B):"auth"===Z.type?new e(Z.module,E,B):new h(Z.module,E,B)}h.prototype._final=function(){var k=this._cache.flush();if(this._autopadding)return k=this._mode.encrypt(this,k),this._cipher.scrub(),k;if(!k.equals(L))throw this._cipher.scrub(),new Error("data not multiple of block length")},h.prototype.setAutoPadding=function(k){return this._autopadding=!!k,this},w.prototype.add=function(k){this.cache=f.concat([this.cache,k])},w.prototype.get=function(){if(this.cache.length>15){var k=this.cache.slice(0,16);return this.cache=this.cache.slice(16),k}return null},w.prototype.flush=function(){for(var k=16-this.cache.length,E=f.allocUnsafe(k),B=-1;++B{var t=p(3502).Buffer,e=t.alloc(16,0);function M(C){var d=t.allocUnsafe(16);return d.writeUInt32BE(C[0]>>>0,0),d.writeUInt32BE(C[1]>>>0,4),d.writeUInt32BE(C[2]>>>0,8),d.writeUInt32BE(C[3]>>>0,12),d}function a(C){this.h=C,this.state=t.alloc(16,0),this.cache=t.allocUnsafe(0)}a.prototype.ghash=function(C){for(var d=-1;++d0;R--)C[R]=C[R]>>>1|(1&C[R-1])<<31;C[0]=C[0]>>>1,L&&(C[0]=C[0]^225<<24)}this.state=M(d)},a.prototype.update=function(C){this.cache=t.concat([this.cache,C]);for(var d;this.cache.length>=16;)d=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(d)},a.prototype.final=function(C,d){return this.cache.length&&this.ghash(t.concat([this.cache,e],16)),this.ghash(M([0,C,0,d])),this.state},Be.exports=a},7968:Be=>{Be.exports=function K(p){for(var e,t=p.length;t--;){if(255!==(e=p.readUInt8(t))){e++,p.writeUInt8(e,t);break}p.writeUInt8(0,t)}}},4903:(Be,K,p)=>{var t=p(8789);K.encrypt=function(e,f){var M=t(f,e._prev);return e._prev=e._cipher.encryptBlock(M),e._prev},K.decrypt=function(e,f){var M=e._prev;e._prev=f;var a=e._cipher.decryptBlock(f);return t(a,M)}},9885:(Be,K,p)=>{var t=p(3502).Buffer,e=p(8789);function f(M,a,C){var d=a.length,R=e(a,M._cache);return M._cache=M._cache.slice(d),M._prev=t.concat([M._prev,C?a:R]),R}K.encrypt=function(M,a,C){for(var R,d=t.allocUnsafe(0);a.length;){if(0===M._cache.length&&(M._cache=M._cipher.encryptBlock(M._prev),M._prev=t.allocUnsafe(0)),!(M._cache.length<=a.length)){d=t.concat([d,f(M,a,C)]);break}d=t.concat([d,f(M,a.slice(0,R=M._cache.length),C)]),a=a.slice(R)}return d}},6531:(Be,K,p)=>{var t=p(3502).Buffer;function e(M,a,C){for(var w,D,R=-1,L=0;++R<8;)L+=(128&(D=M._cipher.encryptBlock(M._prev)[0]^(w=a&1<<7-R?128:0)))>>R%8,M._prev=f(M._prev,C?w:D);return L}function f(M,a){var C=M.length,d=-1,R=t.allocUnsafe(M.length);for(M=t.concat([M,t.from([a])]);++d>7;return R}K.encrypt=function(M,a,C){for(var d=a.length,R=t.allocUnsafe(d),h=-1;++h{var t=p(3502).Buffer;function e(f,M,a){var d=f._cipher.encryptBlock(f._prev)[0]^M;return f._prev=t.concat([f._prev.slice(1),t.from([a?M:d])]),d}K.encrypt=function(f,M,a){for(var C=M.length,d=t.allocUnsafe(C),R=-1;++R{var t=p(8789),e=p(3502).Buffer,f=p(7968);function M(C){var d=C._cipher.encryptBlockRaw(C._prev);return f(C._prev),d}K.encrypt=function(C,d){var R=Math.ceil(d.length/16),h=C._cache.length;C._cache=e.concat([C._cache,e.allocUnsafe(16*R)]);for(var L=0;L{K.encrypt=function(p,t){return p._cipher.encryptBlock(t)},K.decrypt=function(p,t){return p._cipher.decryptBlock(t)}},9171:(Be,K,p)=>{var t={ECB:p(1704),CBC:p(4903),CFB:p(9885),CFB8:p(1641),CFB1:p(6531),OFB:p(6816),CTR:p(1150),GCM:p(1150)},e=p(4946);for(var f in e)e[f].module=t[e[f].mode];Be.exports=e},6816:(Be,K,p)=>{var t=p(8789);function e(f){return f._prev=f._cipher.encryptBlock(f._prev),f._prev}K.encrypt=function(f,M){for(;f._cache.length{var t=p(1899),e=p(3502).Buffer,f=p(1052);function a(C,d,R,h){f.call(this),this._cipher=new t.AES(d),this._prev=e.from(R),this._cache=e.allocUnsafe(0),this._secCache=e.allocUnsafe(0),this._decrypt=h,this._mode=C}p(3894)(a,f),a.prototype._update=function(C){return this._mode.encrypt(this,C,this._decrypt)},a.prototype._final=function(){this._cipher.scrub()},Be.exports=a},5255:(Be,K,p)=>{var t=p(9004),e=p(4330),f=p(9171),M=p(1115),a=p(347);function R(w,D,S){if(w=w.toLowerCase(),f[w])return e.createCipheriv(w,D,S);if(M[w])return new t({key:D,iv:S,mode:w});throw new TypeError("invalid suite type")}function h(w,D,S){if(w=w.toLowerCase(),f[w])return e.createDecipheriv(w,D,S);if(M[w])return new t({key:D,iv:S,mode:w,decrypt:!0});throw new TypeError("invalid suite type")}K.createCipher=K.Cipher=function C(w,D){var S,k;if(w=w.toLowerCase(),f[w])S=f[w].key,k=f[w].iv;else{if(!M[w])throw new TypeError("invalid suite type");S=8*M[w].key,k=M[w].iv}var E=a(D,!1,S,k);return R(w,E.key,E.iv)},K.createCipheriv=K.Cipheriv=R,K.createDecipher=K.Decipher=function d(w,D){var S,k;if(w=w.toLowerCase(),f[w])S=f[w].key,k=f[w].iv;else{if(!M[w])throw new TypeError("invalid suite type");S=8*M[w].key,k=M[w].iv}var E=a(D,!1,S,k);return h(w,E.key,E.iv)},K.createDecipheriv=K.Decipheriv=h,K.listCiphers=K.getCiphers=function L(){return Object.keys(M).concat(e.getCiphers())}},9004:(Be,K,p)=>{var t=p(1052),e=p(3684),f=p(3894),M=p(3502).Buffer,a={"des-ede3-cbc":e.CBC.instantiate(e.EDE),"des-ede3":e.EDE,"des-ede-cbc":e.CBC.instantiate(e.EDE),"des-ede":e.EDE,"des-cbc":e.CBC.instantiate(e.DES),"des-ecb":e.DES};function C(d){t.call(this);var L,R=d.mode.toLowerCase(),h=a[R];L=d.decrypt?"decrypt":"encrypt";var w=d.key;M.isBuffer(w)||(w=M.from(w)),("des-ede"===R||"des-ede-cbc"===R)&&(w=M.concat([w,w.slice(0,8)]));var D=d.iv;M.isBuffer(D)||(D=M.from(D)),this._des=h.create({key:w,iv:D,type:L})}a.des=a["des-cbc"],a.des3=a["des-ede3-cbc"],Be.exports=C,f(C,t),C.prototype._update=function(d){return M.from(this._des.update(d))},C.prototype._final=function(){return M.from(this._des.final())}},1115:(Be,K)=>{K["des-ecb"]={key:8,iv:0},K["des-cbc"]=K.des={key:8,iv:8},K["des-ede3-cbc"]=K.des3={key:24,iv:8},K["des-ede3"]={key:24,iv:0},K["des-ede-cbc"]={key:16,iv:8},K["des-ede"]={key:16,iv:0}},8466:(Be,K,p)=>{var t=p(8538),e=p(3753);function M(C){var R,d=C.modulus.byteLength();do{R=new t(e(d))}while(R.cmp(C.modulus)>=0||!R.umod(C.prime1)||!R.umod(C.prime2));return R}function a(C,d){var R=function f(C){var d=M(C);return{blinder:d.toRed(t.mont(C.modulus)).redPow(new t(C.publicExponent)).fromRed(),unblinder:d.invm(C.modulus)}}(d),h=d.modulus.byteLength(),L=new t(C).mul(R.blinder).umod(d.modulus),w=L.toRed(t.mont(d.prime1)),D=L.toRed(t.mont(d.prime2)),S=d.coefficient,k=d.prime1,E=d.prime2,B=w.redPow(d.exponent1).fromRed(),Z=D.redPow(d.exponent2).fromRed(),Y=B.isub(Z).imul(S).umod(k).imul(E);return Z.iadd(Y).imul(R.unblinder).umod(d.modulus).toArrayLike(Buffer,"be",h)}a.getr=M,Be.exports=a},7793:(Be,K,p)=>{Be.exports=p(5207)},3923:(Be,K,p)=>{var t=p(3502).Buffer,e=p(6386),f=p(5685),M=p(3894),a=p(9947),C=p(3946),d=p(5207);function R(D){f.Writable.call(this);var S=d[D];if(!S)throw new Error("Unknown message digest");this._hashType=S.hash,this._hash=e(S.hash),this._tag=S.id,this._signType=S.sign}function h(D){f.Writable.call(this);var S=d[D];if(!S)throw new Error("Unknown message digest");this._hash=e(S.hash),this._tag=S.id,this._signType=S.sign}function L(D){return new R(D)}function w(D){return new h(D)}Object.keys(d).forEach(function(D){d[D].id=t.from(d[D].id,"hex"),d[D.toLowerCase()]=d[D]}),M(R,f.Writable),R.prototype._write=function(S,k,E){this._hash.update(S),E()},R.prototype.update=function(S,k){return"string"==typeof S&&(S=t.from(S,k)),this._hash.update(S),this},R.prototype.sign=function(S,k){this.end();var E=this._hash.digest(),B=a(E,S,this._hashType,this._signType,this._tag);return k?B.toString(k):B},M(h,f.Writable),h.prototype._write=function(S,k,E){this._hash.update(S),E()},h.prototype.update=function(S,k){return"string"==typeof S&&(S=t.from(S,k)),this._hash.update(S),this},h.prototype.verify=function(S,k,E){"string"==typeof k&&(k=t.from(k,E)),this.end();var B=this._hash.digest();return C(k,B,S,this._signType,this._tag)},Be.exports={Sign:L,Verify:w,createSign:L,createVerify:w}},9947:(Be,K,p)=>{var t=p(3502).Buffer,e=p(4529),f=p(8466),M=p(7715).ec,a=p(8538),C=p(2772),d=p(1308);function D(Z,Y,ae,ee){if((Z=t.from(Z.toArray())).length0&&ae.ishrn(ee),ae}function E(Z,Y,ae){var ee,ue;do{for(ee=t.alloc(0);8*ee.length{var t=p(3502).Buffer,e=p(8538),f=p(7715).ec,M=p(2772),a=p(1308);function h(L,w){if(L.cmpn(0)<=0)throw new Error("invalid sig");if(L.cmp(w)>=w)throw new Error("invalid sig")}Be.exports=function C(L,w,D,S,k){var E=M(D);if("ec"===E.type){if("ecdsa"!==S&&"ecdsa/rsa"!==S)throw new Error("wrong public key type");return function d(L,w,D){var S=a[D.data.algorithm.curve.join(".")];if(!S)throw new Error("unknown curve "+D.data.algorithm.curve.join("."));return new f(S).verify(w,L,D.data.subjectPrivateKey.data)}(L,w,E)}if("dsa"===E.type){if("dsa"!==S)throw new Error("wrong public key type");return function R(L,w,D){var S=D.data.p,k=D.data.q,E=D.data.g,B=D.data.pub_key,Z=M.signature.decode(L,"der"),Y=Z.s,ae=Z.r;h(Y,k),h(ae,k);var ee=e.mont(S),ue=Y.invm(k);return 0===E.toRed(ee).redPow(new e(w).mul(ue).mod(k)).fromRed().mul(B.toRed(ee).redPow(ae.mul(ue).mod(k)).fromRed()).mod(S).mod(k).cmp(ae)}(L,w,E)}if("rsa"!==S&&"ecdsa/rsa"!==S)throw new Error("wrong public key type");w=t.concat([k,w]);for(var B=E.modulus.byteLength(),Z=[1],Y=0;w.length+Z.length+2{Be.exports=function(p,t){for(var e=Math.min(p.length,t.length),f=new Buffer(e),M=0;M{"use strict";var t=p(5343),e=p(8461),f="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;K.Buffer=d,K.SlowBuffer=function Y(Oe){return+Oe!=Oe&&(Oe=0),d.alloc(+Oe)},K.INSPECT_MAX_BYTES=50;var M=2147483647;function C(Oe){if(Oe>M)throw new RangeError('The value "'+Oe+'" is invalid for option "size"');var we=new Uint8Array(Oe);return Object.setPrototypeOf(we,d.prototype),we}function d(Oe,we,ce){if("number"==typeof Oe){if("string"==typeof we)throw new TypeError('The "string" argument must be of type string. Received type number');return w(Oe)}return R(Oe,we,ce)}function R(Oe,we,ce){if("string"==typeof Oe)return function D(Oe,we){if(("string"!=typeof we||""===we)&&(we="utf8"),!d.isEncoding(we))throw new TypeError("Unknown encoding: "+we);var ce=0|ae(Oe,we),Te=C(ce),xe=Te.write(Oe,we);return xe!==ce&&(Te=Te.slice(0,xe)),Te}(Oe,we);if(ArrayBuffer.isView(Oe))return function k(Oe){if(J(Oe,Uint8Array)){var we=new Uint8Array(Oe);return E(we.buffer,we.byteOffset,we.byteLength)}return S(Oe)}(Oe);if(null==Oe)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Oe);if(J(Oe,ArrayBuffer)||Oe&&J(Oe.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(J(Oe,SharedArrayBuffer)||Oe&&J(Oe.buffer,SharedArrayBuffer)))return E(Oe,we,ce);if("number"==typeof Oe)throw new TypeError('The "value" argument must not be of type number. Received type number');var Te=Oe.valueOf&&Oe.valueOf();if(null!=Te&&Te!==Oe)return d.from(Te,we,ce);var xe=function B(Oe){if(d.isBuffer(Oe)){var we=0|Z(Oe.length),ce=C(we);return 0===ce.length||Oe.copy(ce,0,0,we),ce}return void 0!==Oe.length?"number"!=typeof Oe.length||Ie(Oe.length)?C(0):S(Oe):"Buffer"===Oe.type&&Array.isArray(Oe.data)?S(Oe.data):void 0}(Oe);if(xe)return xe;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof Oe[Symbol.toPrimitive])return d.from(Oe[Symbol.toPrimitive]("string"),we,ce);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Oe)}function h(Oe){if("number"!=typeof Oe)throw new TypeError('"size" argument must be of type number');if(Oe<0)throw new RangeError('The value "'+Oe+'" is invalid for option "size"')}function w(Oe){return h(Oe),C(Oe<0?0:0|Z(Oe))}function S(Oe){for(var we=Oe.length<0?0:0|Z(Oe.length),ce=C(we),Te=0;Te=M)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+M.toString(16)+" bytes");return 0|Oe}function ae(Oe,we){if(d.isBuffer(Oe))return Oe.length;if(ArrayBuffer.isView(Oe)||J(Oe,ArrayBuffer))return Oe.byteLength;if("string"!=typeof Oe)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof Oe);var ce=Oe.length,Te=arguments.length>2&&!0===arguments[2];if(!Te&&0===ce)return 0;for(var xe=!1;;)switch(we){case"ascii":case"latin1":case"binary":return ce;case"utf8":case"utf-8":return Pe(Oe).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*ce;case"hex":return ce>>>1;case"base64":return Ve(Oe).length;default:if(xe)return Te?-1:Pe(Oe).length;we=(""+we).toLowerCase(),xe=!0}}function ee(Oe,we,ce){var Te=!1;if((void 0===we||we<0)&&(we=0),we>this.length||((void 0===ce||ce>this.length)&&(ce=this.length),ce<=0)||(ce>>>=0)<=(we>>>=0))return"";for(Oe||(Oe="utf8");;)switch(Oe){case"hex":return y(this,we,ce);case"utf8":case"utf-8":return u(this,we,ce);case"ascii":return T(this,we,ce);case"latin1":case"binary":return I(this,we,ce);case"base64":return r(this,we,ce);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,we,ce);default:if(Te)throw new TypeError("Unknown encoding: "+Oe);Oe=(Oe+"").toLowerCase(),Te=!0}}function ue(Oe,we,ce){var Te=Oe[we];Oe[we]=Oe[ce],Oe[ce]=Te}function ie(Oe,we,ce,Te,xe){if(0===Oe.length)return-1;if("string"==typeof ce?(Te=ce,ce=0):ce>2147483647?ce=2147483647:ce<-2147483648&&(ce=-2147483648),Ie(ce=+ce)&&(ce=xe?0:Oe.length-1),ce<0&&(ce=Oe.length+ce),ce>=Oe.length){if(xe)return-1;ce=Oe.length-1}else if(ce<0){if(!xe)return-1;ce=0}if("string"==typeof we&&(we=d.from(we,Te)),d.isBuffer(we))return 0===we.length?-1:re(Oe,we,ce,Te,xe);if("number"==typeof we)return we&=255,"function"==typeof Uint8Array.prototype.indexOf?xe?Uint8Array.prototype.indexOf.call(Oe,we,ce):Uint8Array.prototype.lastIndexOf.call(Oe,we,ce):re(Oe,[we],ce,Te,xe);throw new TypeError("val must be string, number or Buffer")}function re(Oe,we,ce,Te,xe){var Q,W=1,te=Oe.length,Ce=we.length;if(void 0!==Te&&("ucs2"===(Te=String(Te).toLowerCase())||"ucs-2"===Te||"utf16le"===Te||"utf-16le"===Te)){if(Oe.length<2||we.length<2)return-1;W=2,te/=2,Ce/=2,ce/=2}function fe(di,Yt){return 1===W?di[Yt]:di.readUInt16BE(Yt*W)}if(xe){var ft=-1;for(Q=ce;Qte&&(ce=te-Ce),Q=ce;Q>=0;Q--){for(var tt=!0,Dt=0;Dtxe&&(Te=xe):Te=xe;var W=we.length;Te>W/2&&(Te=W/2);for(var te=0;te>8,W.push(ce%256),W.push(Te);return W}(we,Oe.length-ce),Oe,ce,Te)}function r(Oe,we,ce){return t.fromByteArray(0===we&&ce===Oe.length?Oe:Oe.slice(we,ce))}function u(Oe,we,ce){ce=Math.min(Oe.length,ce);for(var Te=[],xe=we;xe239?4:W>223?3:W>191?2:1;if(xe+Ce<=ce)switch(Ce){case 1:W<128&&(te=W);break;case 2:128==(192&(fe=Oe[xe+1]))&&(tt=(31&W)<<6|63&fe)>127&&(te=tt);break;case 3:Q=Oe[xe+2],128==(192&(fe=Oe[xe+1]))&&128==(192&Q)&&(tt=(15&W)<<12|(63&fe)<<6|63&Q)>2047&&(tt<55296||tt>57343)&&(te=tt);break;case 4:Q=Oe[xe+2],ft=Oe[xe+3],128==(192&(fe=Oe[xe+1]))&&128==(192&Q)&&128==(192&ft)&&(tt=(15&W)<<18|(63&fe)<<12|(63&Q)<<6|63&ft)>65535&&tt<1114112&&(te=tt)}null===te?(te=65533,Ce=1):te>65535&&(Te.push((te-=65536)>>>10&1023|55296),te=56320|1023&te),Te.push(te),xe+=Ce}return function v(Oe){var we=Oe.length;if(we<=c)return String.fromCharCode.apply(String,Oe);for(var ce="",Te=0;Texe.length?d.from(te).copy(xe,W):Uint8Array.prototype.set.call(xe,te,W);else{if(!d.isBuffer(te))throw new TypeError('"list" argument must be an Array of Buffers');te.copy(xe,W)}W+=te.length}return xe},d.byteLength=ae,d.prototype._isBuffer=!0,d.prototype.swap16=function(){var we=this.length;if(we%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var ce=0;cece&&(we+=" ... "),""},f&&(d.prototype[f]=d.prototype.inspect),d.prototype.compare=function(we,ce,Te,xe,W){if(J(we,Uint8Array)&&(we=d.from(we,we.offset,we.byteLength)),!d.isBuffer(we))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof we);if(void 0===ce&&(ce=0),void 0===Te&&(Te=we?we.length:0),void 0===xe&&(xe=0),void 0===W&&(W=this.length),ce<0||Te>we.length||xe<0||W>this.length)throw new RangeError("out of range index");if(xe>=W&&ce>=Te)return 0;if(xe>=W)return-1;if(ce>=Te)return 1;if(this===we)return 0;for(var te=(W>>>=0)-(xe>>>=0),Ce=(Te>>>=0)-(ce>>>=0),fe=Math.min(te,Ce),Q=this.slice(xe,W),ft=we.slice(ce,Te),tt=0;tt>>=0,isFinite(Te)?(Te>>>=0,void 0===xe&&(xe="utf8")):(xe=Te,Te=void 0)}var W=this.length-ce;if((void 0===Te||Te>W)&&(Te=W),we.length>0&&(Te<0||ce<0)||ce>this.length)throw new RangeError("Attempt to write outside buffer bounds");xe||(xe="utf8");for(var te=!1;;)switch(xe){case"hex":return ge(this,we,ce,Te);case"utf8":case"utf-8":return q(this,we,ce,Te);case"ascii":case"latin1":case"binary":return _e(this,we,ce,Te);case"base64":return x(this,we,ce,Te);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return i(this,we,ce,Te);default:if(te)throw new TypeError("Unknown encoding: "+xe);xe=(""+xe).toLowerCase(),te=!0}},d.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var c=4096;function T(Oe,we,ce){var Te="";ce=Math.min(Oe.length,ce);for(var xe=we;xeTe)&&(ce=Te);for(var xe="",W=we;Wce)throw new RangeError("Trying to access beyond buffer length")}function V(Oe,we,ce,Te,xe,W){if(!d.isBuffer(Oe))throw new TypeError('"buffer" argument must be a Buffer instance');if(we>xe||weOe.length)throw new RangeError("Index out of range")}function N(Oe,we,ce,Te,xe,W){if(ce+Te>Oe.length)throw new RangeError("Index out of range");if(ce<0)throw new RangeError("Index out of range")}function H(Oe,we,ce,Te,xe){return we=+we,ce>>>=0,xe||N(Oe,0,ce,4),e.write(Oe,we,ce,Te,23,4),ce+4}function X(Oe,we,ce,Te,xe){return we=+we,ce>>>=0,xe||N(Oe,0,ce,8),e.write(Oe,we,ce,Te,52,8),ce+8}d.prototype.slice=function(we,ce){var Te=this.length;(we=~~we)<0?(we+=Te)<0&&(we=0):we>Te&&(we=Te),(ce=void 0===ce?Te:~~ce)<0?(ce+=Te)<0&&(ce=0):ce>Te&&(ce=Te),ce>>=0,ce>>>=0,Te||_(we,ce,this.length);for(var xe=this[we],W=1,te=0;++te>>=0,ce>>>=0,Te||_(we,ce,this.length);for(var xe=this[we+--ce],W=1;ce>0&&(W*=256);)xe+=this[we+--ce]*W;return xe},d.prototype.readUint8=d.prototype.readUInt8=function(we,ce){return we>>>=0,ce||_(we,1,this.length),this[we]},d.prototype.readUint16LE=d.prototype.readUInt16LE=function(we,ce){return we>>>=0,ce||_(we,2,this.length),this[we]|this[we+1]<<8},d.prototype.readUint16BE=d.prototype.readUInt16BE=function(we,ce){return we>>>=0,ce||_(we,2,this.length),this[we]<<8|this[we+1]},d.prototype.readUint32LE=d.prototype.readUInt32LE=function(we,ce){return we>>>=0,ce||_(we,4,this.length),(this[we]|this[we+1]<<8|this[we+2]<<16)+16777216*this[we+3]},d.prototype.readUint32BE=d.prototype.readUInt32BE=function(we,ce){return we>>>=0,ce||_(we,4,this.length),16777216*this[we]+(this[we+1]<<16|this[we+2]<<8|this[we+3])},d.prototype.readIntLE=function(we,ce,Te){we>>>=0,ce>>>=0,Te||_(we,ce,this.length);for(var xe=this[we],W=1,te=0;++te=(W*=128)&&(xe-=Math.pow(2,8*ce)),xe},d.prototype.readIntBE=function(we,ce,Te){we>>>=0,ce>>>=0,Te||_(we,ce,this.length);for(var xe=ce,W=1,te=this[we+--xe];xe>0&&(W*=256);)te+=this[we+--xe]*W;return te>=(W*=128)&&(te-=Math.pow(2,8*ce)),te},d.prototype.readInt8=function(we,ce){return we>>>=0,ce||_(we,1,this.length),128&this[we]?-1*(255-this[we]+1):this[we]},d.prototype.readInt16LE=function(we,ce){we>>>=0,ce||_(we,2,this.length);var Te=this[we]|this[we+1]<<8;return 32768&Te?4294901760|Te:Te},d.prototype.readInt16BE=function(we,ce){we>>>=0,ce||_(we,2,this.length);var Te=this[we+1]|this[we]<<8;return 32768&Te?4294901760|Te:Te},d.prototype.readInt32LE=function(we,ce){return we>>>=0,ce||_(we,4,this.length),this[we]|this[we+1]<<8|this[we+2]<<16|this[we+3]<<24},d.prototype.readInt32BE=function(we,ce){return we>>>=0,ce||_(we,4,this.length),this[we]<<24|this[we+1]<<16|this[we+2]<<8|this[we+3]},d.prototype.readFloatLE=function(we,ce){return we>>>=0,ce||_(we,4,this.length),e.read(this,we,!0,23,4)},d.prototype.readFloatBE=function(we,ce){return we>>>=0,ce||_(we,4,this.length),e.read(this,we,!1,23,4)},d.prototype.readDoubleLE=function(we,ce){return we>>>=0,ce||_(we,8,this.length),e.read(this,we,!0,52,8)},d.prototype.readDoubleBE=function(we,ce){return we>>>=0,ce||_(we,8,this.length),e.read(this,we,!1,52,8)},d.prototype.writeUintLE=d.prototype.writeUIntLE=function(we,ce,Te,xe){we=+we,ce>>>=0,Te>>>=0,xe||V(this,we,ce,Te,Math.pow(2,8*Te)-1,0);var te=1,Ce=0;for(this[ce]=255&we;++Ce>>=0,Te>>>=0,xe||V(this,we,ce,Te,Math.pow(2,8*Te)-1,0);var te=Te-1,Ce=1;for(this[ce+te]=255&we;--te>=0&&(Ce*=256);)this[ce+te]=we/Ce&255;return ce+Te},d.prototype.writeUint8=d.prototype.writeUInt8=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,1,255,0),this[ce]=255&we,ce+1},d.prototype.writeUint16LE=d.prototype.writeUInt16LE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,2,65535,0),this[ce]=255&we,this[ce+1]=we>>>8,ce+2},d.prototype.writeUint16BE=d.prototype.writeUInt16BE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,2,65535,0),this[ce]=we>>>8,this[ce+1]=255&we,ce+2},d.prototype.writeUint32LE=d.prototype.writeUInt32LE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,4,4294967295,0),this[ce+3]=we>>>24,this[ce+2]=we>>>16,this[ce+1]=we>>>8,this[ce]=255&we,ce+4},d.prototype.writeUint32BE=d.prototype.writeUInt32BE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,4,4294967295,0),this[ce]=we>>>24,this[ce+1]=we>>>16,this[ce+2]=we>>>8,this[ce+3]=255&we,ce+4},d.prototype.writeIntLE=function(we,ce,Te,xe){if(we=+we,ce>>>=0,!xe){var W=Math.pow(2,8*Te-1);V(this,we,ce,Te,W-1,-W)}var te=0,Ce=1,fe=0;for(this[ce]=255&we;++te>0)-fe&255;return ce+Te},d.prototype.writeIntBE=function(we,ce,Te,xe){if(we=+we,ce>>>=0,!xe){var W=Math.pow(2,8*Te-1);V(this,we,ce,Te,W-1,-W)}var te=Te-1,Ce=1,fe=0;for(this[ce+te]=255&we;--te>=0&&(Ce*=256);)we<0&&0===fe&&0!==this[ce+te+1]&&(fe=1),this[ce+te]=(we/Ce>>0)-fe&255;return ce+Te},d.prototype.writeInt8=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,1,127,-128),we<0&&(we=255+we+1),this[ce]=255&we,ce+1},d.prototype.writeInt16LE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,2,32767,-32768),this[ce]=255&we,this[ce+1]=we>>>8,ce+2},d.prototype.writeInt16BE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,2,32767,-32768),this[ce]=we>>>8,this[ce+1]=255&we,ce+2},d.prototype.writeInt32LE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,4,2147483647,-2147483648),this[ce]=255&we,this[ce+1]=we>>>8,this[ce+2]=we>>>16,this[ce+3]=we>>>24,ce+4},d.prototype.writeInt32BE=function(we,ce,Te){return we=+we,ce>>>=0,Te||V(this,we,ce,4,2147483647,-2147483648),we<0&&(we=4294967295+we+1),this[ce]=we>>>24,this[ce+1]=we>>>16,this[ce+2]=we>>>8,this[ce+3]=255&we,ce+4},d.prototype.writeFloatLE=function(we,ce,Te){return H(this,we,ce,!0,Te)},d.prototype.writeFloatBE=function(we,ce,Te){return H(this,we,ce,!1,Te)},d.prototype.writeDoubleLE=function(we,ce,Te){return X(this,we,ce,!0,Te)},d.prototype.writeDoubleBE=function(we,ce,Te){return X(this,we,ce,!1,Te)},d.prototype.copy=function(we,ce,Te,xe){if(!d.isBuffer(we))throw new TypeError("argument should be a Buffer");if(Te||(Te=0),!xe&&0!==xe&&(xe=this.length),ce>=we.length&&(ce=we.length),ce||(ce=0),xe>0&&xe=this.length)throw new RangeError("Index out of range");if(xe<0)throw new RangeError("sourceEnd out of bounds");xe>this.length&&(xe=this.length),we.length-ce>>=0,Te=void 0===Te?this.length:Te>>>0,we||(we=0),"number"==typeof we)for(te=ce;te55295&&ce<57344){if(!xe){if(ce>56319){(we-=3)>-1&&W.push(239,191,189);continue}if(te+1===Te){(we-=3)>-1&&W.push(239,191,189);continue}xe=ce;continue}if(ce<56320){(we-=3)>-1&&W.push(239,191,189),xe=ce;continue}ce=65536+(xe-55296<<10|ce-56320)}else xe&&(we-=3)>-1&&W.push(239,191,189);if(xe=null,ce<128){if((we-=1)<0)break;W.push(ce)}else if(ce<2048){if((we-=2)<0)break;W.push(ce>>6|192,63&ce|128)}else if(ce<65536){if((we-=3)<0)break;W.push(ce>>12|224,ce>>6&63|128,63&ce|128)}else{if(!(ce<1114112))throw new Error("Invalid code point");if((we-=4)<0)break;W.push(ce>>18|240,ce>>12&63|128,ce>>6&63|128,63&ce|128)}}return W}function Ve(Oe){return t.toByteArray(function be(Oe){if((Oe=(Oe=Oe.split("=")[0]).trim().replace(he,"")).length<2)return"";for(;Oe.length%4!=0;)Oe+="=";return Oe}(Oe))}function Me(Oe,we,ce,Te){for(var xe=0;xe=we.length||xe>=Oe.length);++xe)we[xe+ce]=Oe[xe];return xe}function J(Oe,we){return Oe instanceof we||null!=Oe&&null!=Oe.constructor&&null!=Oe.constructor.name&&Oe.constructor.name===we.name}function Ie(Oe){return Oe!=Oe}var ut=function(){for(var Oe="0123456789abcdef",we=new Array(256),ce=0;ce<16;++ce)for(var Te=16*ce,xe=0;xe<16;++xe)we[Te+xe]=Oe[ce]+Oe[xe];return we}()},1052:(Be,K,p)=>{var t=p(3502).Buffer,e=p(295).Transform,f=p(3054).s;function a(C){e.call(this),this.hashMode="string"==typeof C,this.hashMode?this[C]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}p(3894)(a,e),a.prototype.update=function(C,d,R){"string"==typeof C&&(C=t.from(C,d));var h=this._update(C);return this.hashMode?this:(R&&(h=this._toString(h,R)),h)},a.prototype.setAutoPadding=function(){},a.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},a.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},a.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},a.prototype._transform=function(C,d,R){var h;try{this.hashMode?this._update(C):this.push(this._update(C))}catch(L){h=L}finally{R(h)}},a.prototype._flush=function(C){var d;try{this.push(this.__final())}catch(R){d=R}C(d)},a.prototype._finalOrDigest=function(C){var d=this.__final()||t.alloc(0);return C&&(d=this._toString(d,C,!0)),d},a.prototype._toString=function(C,d,R){if(this._decoder||(this._decoder=new f(d),this._encoding=d),this._encoding!==d)throw new Error("can't switch encodings");var h=this._decoder.write(C);return R&&(h+=this._decoder.end()),h},Be.exports=a},7293:(Be,K,p)=>{"use strict";const t=p(4315),e=p(2872),f=p(717);Be.exports=function M(d,R){switch(e(d)){case"object":return function a(d,R){if("function"==typeof R)return R(d);if(R||f(d)){const h=new d.constructor;for(let L in d)h[L]=M(d[L],R);return h}return d}(d,R);case"array":return function C(d,R){const h=new d.constructor(d.length);for(let L=0;LM?f:Array(M-f.length+1).join("0")+f}(M.toString(16),2)}).join("")}(f)},hexToBytes:function(f){if(f.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===f.indexOf("0x")&&(f=f.slice(2)),f.match(/../g).map(function(M){return parseInt(M,16)})}};Be.exports?Be.exports=p:K.convertHex=p}(this)},5612:function(Be){!function(K){"use strict";var p={bytesToString:function(t){return t.map(function(e){return String.fromCharCode(e)}).join("")},stringToBytes:function(t){return t.split("").map(function(e){return e.charCodeAt(0)})}};p.UTF8={bytesToString:function(t){return decodeURIComponent(escape(p.bytesToString(t)))},stringToBytes:function(t){return p.stringToBytes(unescape(encodeURIComponent(t)))}},Be.exports?Be.exports=p:K.convertString=p}(this)},4746:(Be,K,p)=>{var t=p(7715),e=p(6422);Be.exports=function(d){return new M(d)};var f={secp256k1:{name:"secp256k1",byteLength:32},secp224r1:{name:"p224",byteLength:28},prime256v1:{name:"p256",byteLength:32},prime192v1:{name:"p192",byteLength:24},ed25519:{name:"ed25519",byteLength:32},secp384r1:{name:"p384",byteLength:48},secp521r1:{name:"p521",byteLength:66}};function M(C){this.curveType=f[C],this.curveType||(this.curveType={name:C}),this.curve=new t.ec(this.curveType.name),this.keys=void 0}function a(C,d,R){Array.isArray(C)||(C=C.toArray());var h=new Buffer(C);if(R&&h.length=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function R(x,i,r){var u=d(x,r);return r-1>=i&&(u|=d(x,r-1)<<4),u}function h(x,i,r,u){for(var c=0,v=Math.min(x.length,r),T=i;T=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[v]|=(T=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);else if("le"===u)for(c=0,v=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=R(i,r,c)<=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,v=1;v<=67108863;v*=r)c++;c--,v=v/r|0;for(var T=i.length-u,I=T%c,y=Math.min(T,T-I)+u,n=0,_=u;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var L=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(x,i,r){r.negative=i.negative^x.negative;var u=x.length+i.length|0;r.length=u,u=u-1|0;var c=0|x.words[0],v=0|i.words[0],T=c*v,y=T/67108864|0;r.words[0]=67108863&T;for(var n=1;n>>26,V=67108863&y,N=Math.min(n,i.length-1),H=Math.max(0,n-x.length+1);H<=N;H++)_+=(T=(c=0|x.words[n-H|0])*(v=0|i.words[H])+V)/67108864|0,V=67108863&T;r.words[n]=0|V,y=0|_}return 0!==y?r.words[n]=0|y:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,v=0,T=0;T>>24-c&16777215)||T!==this.length-1?L[6-y.length]+y+u:y+u,(c+=2)>=26&&(c-=26,T--)}for(0!==v&&(u=v.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],_=D[i];u="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(_).toString(i);u=(V=V.idivn(_)).isZero()?N+u:L[n-N.length]+N+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==C),this.toArrayLike(C,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),v=u||Math.max(1,c);f(c<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0"),this.strip();var y,n,T="le"===r,I=new i(v),_=this.clone();if(T){for(n=0;!_.isZero();n++)y=_.andln(255),_.iushrn(8),I[n]=y;for(;n=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var v=0,T=0;T>>26;for(;0!==v&&T>>26;if(this.length=u.length,0!==v)this.words[this.length]=v,this.length++;else if(u!==this)for(;Ti.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,v,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,v=i):(c=i,v=this);for(var T=0,I=0;I>26,this.words[I]=67108863&r;for(;0!==T&&I>26,this.words[I]=67108863&r;if(0===T&&I>>13,X=0|c[1],he=8191&X,be=X>>>13,Pe=0|c[2],Ee=8191&Pe,j=Pe>>>13,Ve=0|c[3],Me=8191&Ve,J=Ve>>>13,Ie=0|c[4],ut=8191&Ie,Oe=Ie>>>13,we=0|c[5],ce=8191&we,Te=we>>>13,xe=0|c[6],W=8191&xe,te=xe>>>13,Ce=0|c[7],fe=8191&Ce,Q=Ce>>>13,ft=0|c[8],tt=8191&ft,Dt=ft>>>13,di=0|c[9],Yt=8191&di,Zt=di>>>13,ui=0|v[0],Ot=8191&ui,Nt=ui>>>13,gt=0|v[1],it=8191>,bt=gt>>>13,ei=0|v[2],Qt=8191&ei,Re=ei>>>13,ke=0|v[3],de=8191&ke,ye=ke>>>13,ht=0|v[4],mt=8191&ht,Ft=ht>>>13,nt=0|v[5],He=8191&nt,rt=nt>>>13,et=0|v[6],Ae=8191&et,Ge=et>>>13,ot=0|v[7],lt=8191&ot,Ct=ot>>>13,mi=0|v[8],Jt=8191&mi,$t=mi>>>13,Qi=0|v[9],hi=8191&Qi,si=Qi>>>13;u.negative=i.negative^r.negative,u.length=19;var Ji=(I+(y=Math.imul(N,Ot))|0)+((8191&(n=(n=Math.imul(N,Nt))+Math.imul(H,Ot)|0))<<13)|0;I=((_=Math.imul(H,Nt))+(n>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,y=Math.imul(he,Ot),n=(n=Math.imul(he,Nt))+Math.imul(be,Ot)|0,_=Math.imul(be,Nt);var Zi=(I+(y=y+Math.imul(N,it)|0)|0)+((8191&(n=(n=n+Math.imul(N,bt)|0)+Math.imul(H,it)|0))<<13)|0;I=((_=_+Math.imul(H,bt)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,y=Math.imul(Ee,Ot),n=(n=Math.imul(Ee,Nt))+Math.imul(j,Ot)|0,_=Math.imul(j,Nt),y=y+Math.imul(he,it)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(be,it)|0,_=_+Math.imul(be,bt)|0;var Vi=(I+(y=y+Math.imul(N,Qt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Re)|0)+Math.imul(H,Qt)|0))<<13)|0;I=((_=_+Math.imul(H,Re)|0)+(n>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,y=Math.imul(Me,Ot),n=(n=Math.imul(Me,Nt))+Math.imul(J,Ot)|0,_=Math.imul(J,Nt),y=y+Math.imul(Ee,it)|0,n=(n=n+Math.imul(Ee,bt)|0)+Math.imul(j,it)|0,_=_+Math.imul(j,bt)|0,y=y+Math.imul(he,Qt)|0,n=(n=n+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0,_=_+Math.imul(be,Re)|0;var Ui=(I+(y=y+Math.imul(N,de)|0)|0)+((8191&(n=(n=n+Math.imul(N,ye)|0)+Math.imul(H,de)|0))<<13)|0;I=((_=_+Math.imul(H,ye)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,y=Math.imul(ut,Ot),n=(n=Math.imul(ut,Nt))+Math.imul(Oe,Ot)|0,_=Math.imul(Oe,Nt),y=y+Math.imul(Me,it)|0,n=(n=n+Math.imul(Me,bt)|0)+Math.imul(J,it)|0,_=_+Math.imul(J,bt)|0,y=y+Math.imul(Ee,Qt)|0,n=(n=n+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,_=_+Math.imul(j,Re)|0,y=y+Math.imul(he,de)|0,n=(n=n+Math.imul(he,ye)|0)+Math.imul(be,de)|0,_=_+Math.imul(be,ye)|0;var Ue=(I+(y=y+Math.imul(N,mt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ft)|0)+Math.imul(H,mt)|0))<<13)|0;I=((_=_+Math.imul(H,Ft)|0)+(n>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,y=Math.imul(ce,Ot),n=(n=Math.imul(ce,Nt))+Math.imul(Te,Ot)|0,_=Math.imul(Te,Nt),y=y+Math.imul(ut,it)|0,n=(n=n+Math.imul(ut,bt)|0)+Math.imul(Oe,it)|0,_=_+Math.imul(Oe,bt)|0,y=y+Math.imul(Me,Qt)|0,n=(n=n+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,_=_+Math.imul(J,Re)|0,y=y+Math.imul(Ee,de)|0,n=(n=n+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,_=_+Math.imul(j,ye)|0,y=y+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0,_=_+Math.imul(be,Ft)|0;var Tt=(I+(y=y+Math.imul(N,He)|0)|0)+((8191&(n=(n=n+Math.imul(N,rt)|0)+Math.imul(H,He)|0))<<13)|0;I=((_=_+Math.imul(H,rt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,y=Math.imul(W,Ot),n=(n=Math.imul(W,Nt))+Math.imul(te,Ot)|0,_=Math.imul(te,Nt),y=y+Math.imul(ce,it)|0,n=(n=n+Math.imul(ce,bt)|0)+Math.imul(Te,it)|0,_=_+Math.imul(Te,bt)|0,y=y+Math.imul(ut,Qt)|0,n=(n=n+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,_=_+Math.imul(Oe,Re)|0,y=y+Math.imul(Me,de)|0,n=(n=n+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,_=_+Math.imul(J,ye)|0,y=y+Math.imul(Ee,mt)|0,n=(n=n+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,_=_+Math.imul(j,Ft)|0,y=y+Math.imul(he,He)|0,n=(n=n+Math.imul(he,rt)|0)+Math.imul(be,He)|0,_=_+Math.imul(be,rt)|0;var ve=(I+(y=y+Math.imul(N,Ae)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ge)|0)+Math.imul(H,Ae)|0))<<13)|0;I=((_=_+Math.imul(H,Ge)|0)+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,y=Math.imul(fe,Ot),n=(n=Math.imul(fe,Nt))+Math.imul(Q,Ot)|0,_=Math.imul(Q,Nt),y=y+Math.imul(W,it)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(te,it)|0,_=_+Math.imul(te,bt)|0,y=y+Math.imul(ce,Qt)|0,n=(n=n+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,_=_+Math.imul(Te,Re)|0,y=y+Math.imul(ut,de)|0,n=(n=n+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,_=_+Math.imul(Oe,ye)|0,y=y+Math.imul(Me,mt)|0,n=(n=n+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,_=_+Math.imul(J,Ft)|0,y=y+Math.imul(Ee,He)|0,n=(n=n+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,_=_+Math.imul(j,rt)|0,y=y+Math.imul(he,Ae)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0,_=_+Math.imul(be,Ge)|0;var Qe=(I+(y=y+Math.imul(N,lt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ct)|0)+Math.imul(H,lt)|0))<<13)|0;I=((_=_+Math.imul(H,Ct)|0)+(n>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,y=Math.imul(tt,Ot),n=(n=Math.imul(tt,Nt))+Math.imul(Dt,Ot)|0,_=Math.imul(Dt,Nt),y=y+Math.imul(fe,it)|0,n=(n=n+Math.imul(fe,bt)|0)+Math.imul(Q,it)|0,_=_+Math.imul(Q,bt)|0,y=y+Math.imul(W,Qt)|0,n=(n=n+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,_=_+Math.imul(te,Re)|0,y=y+Math.imul(ce,de)|0,n=(n=n+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,_=_+Math.imul(Te,ye)|0,y=y+Math.imul(ut,mt)|0,n=(n=n+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,_=_+Math.imul(Oe,Ft)|0,y=y+Math.imul(Me,He)|0,n=(n=n+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,_=_+Math.imul(J,rt)|0,y=y+Math.imul(Ee,Ae)|0,n=(n=n+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,_=_+Math.imul(j,Ge)|0,y=y+Math.imul(he,lt)|0,n=(n=n+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0,_=_+Math.imul(be,Ct)|0;var _t=(I+(y=y+Math.imul(N,Jt)|0)|0)+((8191&(n=(n=n+Math.imul(N,$t)|0)+Math.imul(H,Jt)|0))<<13)|0;I=((_=_+Math.imul(H,$t)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,y=Math.imul(Yt,Ot),n=(n=Math.imul(Yt,Nt))+Math.imul(Zt,Ot)|0,_=Math.imul(Zt,Nt),y=y+Math.imul(tt,it)|0,n=(n=n+Math.imul(tt,bt)|0)+Math.imul(Dt,it)|0,_=_+Math.imul(Dt,bt)|0,y=y+Math.imul(fe,Qt)|0,n=(n=n+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,_=_+Math.imul(Q,Re)|0,y=y+Math.imul(W,de)|0,n=(n=n+Math.imul(W,ye)|0)+Math.imul(te,de)|0,_=_+Math.imul(te,ye)|0,y=y+Math.imul(ce,mt)|0,n=(n=n+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,_=_+Math.imul(Te,Ft)|0,y=y+Math.imul(ut,He)|0,n=(n=n+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,_=_+Math.imul(Oe,rt)|0,y=y+Math.imul(Me,Ae)|0,n=(n=n+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,_=_+Math.imul(J,Ge)|0,y=y+Math.imul(Ee,lt)|0,n=(n=n+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,_=_+Math.imul(j,Ct)|0,y=y+Math.imul(he,Jt)|0,n=(n=n+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0,_=_+Math.imul(be,$t)|0;var se=(I+(y=y+Math.imul(N,hi)|0)|0)+((8191&(n=(n=n+Math.imul(N,si)|0)+Math.imul(H,hi)|0))<<13)|0;I=((_=_+Math.imul(H,si)|0)+(n>>>13)|0)+(se>>>26)|0,se&=67108863,y=Math.imul(Yt,it),n=(n=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,_=Math.imul(Zt,bt),y=y+Math.imul(tt,Qt)|0,n=(n=n+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,_=_+Math.imul(Dt,Re)|0,y=y+Math.imul(fe,de)|0,n=(n=n+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,_=_+Math.imul(Q,ye)|0,y=y+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,_=_+Math.imul(te,Ft)|0,y=y+Math.imul(ce,He)|0,n=(n=n+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,_=_+Math.imul(Te,rt)|0,y=y+Math.imul(ut,Ae)|0,n=(n=n+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,_=_+Math.imul(Oe,Ge)|0,y=y+Math.imul(Me,lt)|0,n=(n=n+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,_=_+Math.imul(J,Ct)|0,y=y+Math.imul(Ee,Jt)|0,n=(n=n+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,_=_+Math.imul(j,$t)|0;var Je=(I+(y=y+Math.imul(he,hi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;I=((_=_+Math.imul(be,si)|0)+(n>>>13)|0)+(Je>>>26)|0,Je&=67108863,y=Math.imul(Yt,Qt),n=(n=Math.imul(Yt,Re))+Math.imul(Zt,Qt)|0,_=Math.imul(Zt,Re),y=y+Math.imul(tt,de)|0,n=(n=n+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,_=_+Math.imul(Dt,ye)|0,y=y+Math.imul(fe,mt)|0,n=(n=n+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,_=_+Math.imul(Q,Ft)|0,y=y+Math.imul(W,He)|0,n=(n=n+Math.imul(W,rt)|0)+Math.imul(te,He)|0,_=_+Math.imul(te,rt)|0,y=y+Math.imul(ce,Ae)|0,n=(n=n+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,_=_+Math.imul(Te,Ge)|0,y=y+Math.imul(ut,lt)|0,n=(n=n+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,_=_+Math.imul(Oe,Ct)|0,y=y+Math.imul(Me,Jt)|0,n=(n=n+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,_=_+Math.imul(J,$t)|0;var xt=(I+(y=y+Math.imul(Ee,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0))<<13)|0;I=((_=_+Math.imul(j,si)|0)+(n>>>13)|0)+(xt>>>26)|0,xt&=67108863,y=Math.imul(Yt,de),n=(n=Math.imul(Yt,ye))+Math.imul(Zt,de)|0,_=Math.imul(Zt,ye),y=y+Math.imul(tt,mt)|0,n=(n=n+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,_=_+Math.imul(Dt,Ft)|0,y=y+Math.imul(fe,He)|0,n=(n=n+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,_=_+Math.imul(Q,rt)|0,y=y+Math.imul(W,Ae)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,_=_+Math.imul(te,Ge)|0,y=y+Math.imul(ce,lt)|0,n=(n=n+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,_=_+Math.imul(Te,Ct)|0,y=y+Math.imul(ut,Jt)|0,n=(n=n+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,_=_+Math.imul(Oe,$t)|0;var Bt=(I+(y=y+Math.imul(Me,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Me,si)|0)+Math.imul(J,hi)|0))<<13)|0;I=((_=_+Math.imul(J,si)|0)+(n>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,y=Math.imul(Yt,mt),n=(n=Math.imul(Yt,Ft))+Math.imul(Zt,mt)|0,_=Math.imul(Zt,Ft),y=y+Math.imul(tt,He)|0,n=(n=n+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,_=_+Math.imul(Dt,rt)|0,y=y+Math.imul(fe,Ae)|0,n=(n=n+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,_=_+Math.imul(Q,Ge)|0,y=y+Math.imul(W,lt)|0,n=(n=n+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,_=_+Math.imul(te,Ct)|0,y=y+Math.imul(ce,Jt)|0,n=(n=n+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,_=_+Math.imul(Te,$t)|0;var xi=(I+(y=y+Math.imul(ut,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0))<<13)|0;I=((_=_+Math.imul(Oe,si)|0)+(n>>>13)|0)+(xi>>>26)|0,xi&=67108863,y=Math.imul(Yt,He),n=(n=Math.imul(Yt,rt))+Math.imul(Zt,He)|0,_=Math.imul(Zt,rt),y=y+Math.imul(tt,Ae)|0,n=(n=n+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,_=_+Math.imul(Dt,Ge)|0,y=y+Math.imul(fe,lt)|0,n=(n=n+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,_=_+Math.imul(Q,Ct)|0,y=y+Math.imul(W,Jt)|0,n=(n=n+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,_=_+Math.imul(te,$t)|0;var Ti=(I+(y=y+Math.imul(ce,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0))<<13)|0;I=((_=_+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,y=Math.imul(Yt,Ae),n=(n=Math.imul(Yt,Ge))+Math.imul(Zt,Ae)|0,_=Math.imul(Zt,Ge),y=y+Math.imul(tt,lt)|0,n=(n=n+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,_=_+Math.imul(Dt,Ct)|0,y=y+Math.imul(fe,Jt)|0,n=(n=n+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,_=_+Math.imul(Q,$t)|0;var $i=(I+(y=y+Math.imul(W,hi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(te,hi)|0))<<13)|0;I=((_=_+Math.imul(te,si)|0)+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,y=Math.imul(Yt,lt),n=(n=Math.imul(Yt,Ct))+Math.imul(Zt,lt)|0,_=Math.imul(Zt,Ct),y=y+Math.imul(tt,Jt)|0,n=(n=n+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,_=_+Math.imul(Dt,$t)|0;var Wi=(I+(y=y+Math.imul(fe,hi)|0)|0)+((8191&(n=(n=n+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0))<<13)|0;I=((_=_+Math.imul(Q,si)|0)+(n>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,y=Math.imul(Yt,Jt),n=(n=Math.imul(Yt,$t))+Math.imul(Zt,Jt)|0,_=Math.imul(Zt,$t);var on=(I+(y=y+Math.imul(tt,hi)|0)|0)+((8191&(n=(n=n+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0))<<13)|0;I=((_=_+Math.imul(Dt,si)|0)+(n>>>13)|0)+(on>>>26)|0,on&=67108863;var fn=(I+(y=Math.imul(Yt,hi))|0)+((8191&(n=(n=Math.imul(Yt,si))+Math.imul(Zt,hi)|0))<<13)|0;return I=((_=Math.imul(Zt,si))+(n>>>13)|0)+(fn>>>26)|0,fn&=67108863,T[0]=Ji,T[1]=Zi,T[2]=Vi,T[3]=Ui,T[4]=Ue,T[5]=Tt,T[6]=ve,T[7]=Qe,T[8]=_t,T[9]=se,T[10]=Je,T[11]=xt,T[12]=Bt,T[13]=xi,T[14]=Ti,T[15]=$i,T[16]=Wi,T[17]=on,T[18]=fn,0!==I&&(T[19]=I,u.length++),u};function Z(x,i,r){return(new Y).mulp(x,i,r)}function Y(x,i){this.x=x,this.y=i}Math.imul||(E=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?E(this,i,r):c<63?k(this,i,r):c<1024?function B(x,i,r){r.negative=i.negative^x.negative,r.length=x.length+i.length;for(var u=0,c=0,v=0;v>>26)|0)>>>26,T&=67108863}r.words[v]=I,u=T,T=c}return 0!==u?r.words[v]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,v,T){for(var I=0;I>>=1)v++;return 1<>>=13),v>>>=13;for(T=2*r;T>=26,r+=c/67108864|0,r+=v>>>26,this.words[u]=67108863&v}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function S(x){for(var i=new Array(x.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var v,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var T=0;for(v=0;v>>26-r}T&&(this.words[v]=T,this.length++)}if(0!==u){for(v=this.length-1;v>=0;v--)this.words[v+u]=this.words[v];for(v=0;v=0),c=r?(r-r%26)/26:0;var v=i%26,T=Math.min((i-v)/26,this.length),I=67108863^67108863>>>v<T)for(this.length-=T,n=0;n=0&&(0!==_||n>=c);n--){var V=0|this.words[n];this.words[n]=_<<26-v|V>>>v,_=V&I}return y&&0!==_&&(y.words[y.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(y/67108864|0),this.words[v+u]=67108863&T}for(;v>26,this.words[v+u]=67108863&T;if(0===I)return this.strip();for(f(-1===I),I=0,v=0;v>26,this.words[v]=67108863&T;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),v=i,T=0|v.words[v.length-1];0!=(u=26-this._countBits(T))&&(v=v.ushln(u),c.iushln(u),T=0|v.words[v.length-1]);var n,y=c.length-v.length;if("mod"!==r){(n=new a(null)).length=y+1,n.words=new Array(n.length);for(var _=0;_=0;N--){var H=67108864*(0|c.words[v.length+N])+(0|c.words[v.length+N-1]);for(H=Math.min(H/T|0,67108863),c._ishlnsubmul(v,H,N);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(v,1,N),c.isZero()||(c.negative^=1);n&&(n.words[N]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(T=this.neg().divmod(i,r),"mod"!==r&&(c=T.div.neg()),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.iadd(i)),{div:c,mod:v}):0===this.negative&&0!==i.negative?(T=this.divmod(i.neg(),r),"mod"!==r&&(c=T.div.neg()),{div:c,mod:T.mod}):0!=(this.negative&i.negative)?(T=this.neg().divmod(i.neg(),r),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.isub(i)),{div:T.div,mod:v}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,v,T},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),v=i.andln(1),T=u.cmp(c);return T<0||1===v&&0===T?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=new a(0),I=new a(1),y=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++y;for(var n=u.clone(),_=r.clone();!r.isZero();){for(var V=0,N=1;0==(r.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(r.iushrn(V);V-- >0;)(c.isOdd()||v.isOdd())&&(c.iadd(n),v.isub(_)),c.iushrn(1),v.iushrn(1);for(var H=0,X=1;0==(u.words[0]&X)&&H<26;++H,X<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(T.isOdd()||I.isOdd())&&(T.iadd(n),I.isub(_)),T.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(T),v.isub(I)):(u.isub(r),T.isub(c),I.isub(v))}return{a:T,b:I,gcd:u.iushln(y)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var V,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,y=1;0==(r.words[0]&y)&&I<26;++I,y<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(T),c.iushrn(1);for(var n=0,_=1;0==(u.words[0]&_)&&n<26;++n,_<<=1);if(n>0)for(u.iushrn(n);n-- >0;)v.isOdd()&&v.iadd(T),v.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(v)):(u.isub(r),v.isub(c))}return(V=0===r.cmpn(1)?c:v).cmpn(0)<0&&V.iadd(i),V},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var v=r.cmp(u);if(v<0){var T=r;r=u,u=T}else if(0===v||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[T]=I&=67108863}return 0!==v&&(this.words[T]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],v=0|i.words[u];if(c!==v){cv&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new q(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ae={k256:null,p224:null,p192:null,p25519:null};function ee(x,i){this.name=x,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ue(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ie(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function re(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function ge(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function q(x){if("string"==typeof x){var i=a._prime(x);this.m=i.p,this.prime=i}else f(x.gtn(1),"modulus must be greater than 1"),this.m=x,this.prime=null}function _e(x){q.call(this,x),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},ee.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},ee.prototype.split=function(i,r){i.iushrn(this.n,0,r)},ee.prototype.imulK=function(i){return i.imul(this.k)},M(ue,ee),ue.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),v=0;v>>22,T=I}i.words[v-10]=T>>>=22,i.length-=0===T&&i.length>10?10:9},ue.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=v,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ae[i])return ae[i];var r;if("k256"===i)r=new ue;else if("p224"===i)r=new ie;else if("p192"===i)r=new re;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new ge}return ae[i]=r,r},q.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},q.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},q.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},q.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},q.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},q.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},q.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},q.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},q.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},q.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},q.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},q.prototype.isqr=function(i){return this.imul(i,i.clone())},q.prototype.sqr=function(i){return this.mul(i,i)},q.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),v=0;!c.isZero()&&0===c.andln(1);)v++,c.iushrn(1);f(!c.isZero());var T=new a(1).toRed(this),I=T.redNeg(),y=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,y).cmp(I);)n.redIAdd(I);for(var _=this.pow(n,c),V=this.pow(i,c.addn(1).iushrn(1)),N=this.pow(i,c),H=v;0!==N.cmp(T);){for(var X=N,he=0;0!==X.cmp(T);he++)X=X.redSqr();f(he=0;v--){for(var _=r.words[v],V=n-1;V>=0;V--){var N=_>>V&1;T!==c[0]&&(T=this.sqr(T)),0!==N||0!==I?(I<<=1,I|=N,(4==++y||0===v&&0===V)&&(T=this.mul(T,c[I]),y=0,I=0)):y=0}n=26}return T},q.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},q.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new _e(i)},M(_e,q),_e.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},_e.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},_e.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},6386:(Be,K,p)=>{"use strict";var t=p(3894),e=p(8095),f=p(5634),M=p(5244),a=p(1052);function C(d){a.call(this,"digest"),this._hash=d}t(C,a),C.prototype._update=function(d){this._hash.update(d)},C.prototype._final=function(){return this._hash.digest()},Be.exports=function(R){return"md5"===(R=R.toLowerCase())?new e:"rmd160"===R||"ripemd160"===R?new f:new C(M(R))}},5640:(Be,K,p)=>{var t=p(8095);Be.exports=function(e){return(new t).update(e).digest()}},4529:(Be,K,p)=>{"use strict";var t=p(3894),e=p(7309),f=p(1052),M=p(3502).Buffer,a=p(5640),C=p(5634),d=p(5244),R=M.alloc(128);function h(L,w){f.call(this,"digest"),"string"==typeof w&&(w=M.from(w));var D="sha512"===L||"sha384"===L?128:64;this._alg=L,this._key=w,w.length>D?w=("rmd160"===L?new C:d(L)).update(w).digest():w.length{"use strict";var t=p(3894),e=p(3502).Buffer,f=p(1052),M=e.alloc(128),a=64;function C(d,R){f.call(this,"digest"),"string"==typeof R&&(R=e.from(R)),this._alg=d,this._key=R,R.length>a?R=d(R):R.length{"use strict";K.randomBytes=K.rng=K.pseudoRandomBytes=K.prng=p(3753),K.createHash=K.Hash=p(6386),K.createHmac=K.Hmac=p(4529);var t=p(7793),e=Object.keys(t),f=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(e);K.getHashes=function(){return f};var M=p(9357);K.pbkdf2=M.pbkdf2,K.pbkdf2Sync=M.pbkdf2Sync;var a=p(5255);K.Cipher=a.Cipher,K.createCipher=a.createCipher,K.Cipheriv=a.Cipheriv,K.createCipheriv=a.createCipheriv,K.Decipher=a.Decipher,K.createDecipher=a.createDecipher,K.Decipheriv=a.Decipheriv,K.createDecipheriv=a.createDecipheriv,K.getCiphers=a.getCiphers,K.listCiphers=a.listCiphers;var C=p(8829);K.DiffieHellmanGroup=C.DiffieHellmanGroup,K.createDiffieHellmanGroup=C.createDiffieHellmanGroup,K.getDiffieHellman=C.getDiffieHellman,K.createDiffieHellman=C.createDiffieHellman,K.DiffieHellman=C.DiffieHellman;var d=p(3923);K.createSign=d.createSign,K.Sign=d.Sign,K.createVerify=d.createVerify,K.Verify=d.Verify,K.createECDH=p(4746);var R=p(3701);K.publicEncrypt=R.publicEncrypt,K.privateEncrypt=R.privateEncrypt,K.publicDecrypt=R.publicDecrypt,K.privateDecrypt=R.privateDecrypt;var h=p(4275);K.randomFill=h.randomFill,K.randomFillSync=h.randomFillSync,K.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},K.constants={DH_CHECK_P_NOT_SAFE_PRIME:2,DH_CHECK_P_NOT_PRIME:1,DH_UNABLE_TO_CHECK_GENERATOR:4,DH_NOT_SUITABLE_GENERATOR:8,NPN_ENABLED:1,ALPN_ENABLED:1,RSA_PKCS1_PADDING:1,RSA_SSLV23_PADDING:2,RSA_NO_PADDING:3,RSA_PKCS1_OAEP_PADDING:4,RSA_X931_PADDING:5,RSA_PKCS1_PSS_PADDING:6,POINT_CONVERSION_COMPRESSED:2,POINT_CONVERSION_UNCOMPRESSED:4,POINT_CONVERSION_HYBRID:6}},3684:(Be,K,p)=>{"use strict";K.utils=p(7451),K.Cipher=p(8170),K.DES=p(4631),K.CBC=p(9454),K.EDE=p(1862)},9454:(Be,K,p)=>{"use strict";var t=p(2391),e=p(3894),f={};function M(C){t.equal(C.length,8,"Invalid IV length"),this.iv=new Array(8);for(var d=0;d{"use strict";var t=p(2391);function e(f){this.options=f,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0}Be.exports=e,e.prototype._init=function(){},e.prototype.update=function(M){return 0===M.length?[]:"decrypt"===this.type?this._updateDecrypt(M):this._updateEncrypt(M)},e.prototype._buffer=function(M,a){for(var C=Math.min(this.buffer.length-this.bufferOff,M.length-a),d=0;d0;d--)a+=this._buffer(M,a),C+=this._flushBuffer(R,C);return a+=this._buffer(M,a),R},e.prototype.final=function(M){var a,C;return M&&(a=this.update(M)),C="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),a?a.concat(C):C},e.prototype._pad=function(M,a){if(0===a)return!1;for(;a{"use strict";var t=p(2391),e=p(3894),f=p(7451),M=p(8170);function a(){this.tmp=new Array(2),this.keys=null}function C(R){M.call(this,R);var h=new a;this._desState=h,this.deriveKeys(h,R.key)}e(C,M),Be.exports=C,C.create=function(h){return new C(h)};var d=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];C.prototype.deriveKeys=function(h,L){h.keys=new Array(32),t.equal(L.length,this.blockSize,"Invalid key length");var w=f.readUInt32BE(L,0),D=f.readUInt32BE(L,4);f.pc1(w,D,h.tmp,0),w=h.tmp[0],D=h.tmp[1];for(var S=0;S>>1];w=f.r28shl(w,k),D=f.r28shl(D,k),f.pc2(w,D,h.keys,S)}},C.prototype._update=function(h,L,w,D){var S=this._desState,k=f.readUInt32BE(h,L),E=f.readUInt32BE(h,L+4);f.ip(k,E,S.tmp,0),k=S.tmp[0],E=S.tmp[1],"encrypt"===this.type?this._encrypt(S,k,E,S.tmp,0):this._decrypt(S,k,E,S.tmp,0),E=S.tmp[1],f.writeUInt32BE(w,k=S.tmp[0],D),f.writeUInt32BE(w,E,D+4)},C.prototype._pad=function(h,L){for(var w=h.length-L,D=L;D>>0,k=ue}f.rip(E,k,D,S)},C.prototype._decrypt=function(h,L,w,D,S){for(var k=w,E=L,B=h.keys.length-2;B>=0;B-=2){var Z=h.keys[B],Y=h.keys[B+1];f.expand(k,h.tmp,0);var ae=f.substitute(Z^=h.tmp[0],Y^=h.tmp[1]),ue=k;k=(E^f.permute(ae))>>>0,E=ue}f.rip(k,E,D,S)}},1862:(Be,K,p)=>{"use strict";var t=p(2391),e=p(3894),f=p(8170),M=p(4631);function a(d,R){t.equal(R.length,24,"Invalid key length");var h=R.slice(0,8),L=R.slice(8,16),w=R.slice(16,24);this.ciphers="encrypt"===d?[M.create({type:"encrypt",key:h}),M.create({type:"decrypt",key:L}),M.create({type:"encrypt",key:w})]:[M.create({type:"decrypt",key:w}),M.create({type:"encrypt",key:L}),M.create({type:"decrypt",key:h})]}function C(d){f.call(this,d);var R=new a(this.type,this.options.key);this._edeState=R}e(C,f),Be.exports=C,C.create=function(R){return new C(R)},C.prototype._update=function(R,h,L,w){var D=this._edeState;D.ciphers[0]._update(R,h,L,w),D.ciphers[1]._update(L,w,L,w),D.ciphers[2]._update(L,w,L,w)},C.prototype._pad=M.prototype._pad,C.prototype._unpad=M.prototype._unpad},7451:(Be,K)=>{"use strict";K.readUInt32BE=function(M,a){return(M[0+a]<<24|M[1+a]<<16|M[2+a]<<8|M[3+a])>>>0},K.writeUInt32BE=function(M,a,C){M[0+C]=a>>>24,M[1+C]=a>>>16&255,M[2+C]=a>>>8&255,M[3+C]=255&a},K.ip=function(M,a,C,d){for(var R=0,h=0,L=6;L>=0;L-=2){for(var w=0;w<=24;w+=8)R<<=1,R|=a>>>w+L&1;for(w=0;w<=24;w+=8)R<<=1,R|=M>>>w+L&1}for(L=6;L>=0;L-=2){for(w=1;w<=25;w+=8)h<<=1,h|=a>>>w+L&1;for(w=1;w<=25;w+=8)h<<=1,h|=M>>>w+L&1}C[d+0]=R>>>0,C[d+1]=h>>>0},K.rip=function(M,a,C,d){for(var R=0,h=0,L=0;L<4;L++)for(var w=24;w>=0;w-=8)R<<=1,R|=a>>>w+L&1,R<<=1,R|=M>>>w+L&1;for(L=4;L<8;L++)for(w=24;w>=0;w-=8)h<<=1,h|=a>>>w+L&1,h<<=1,h|=M>>>w+L&1;C[d+0]=R>>>0,C[d+1]=h>>>0},K.pc1=function(M,a,C,d){for(var R=0,h=0,L=7;L>=5;L--){for(var w=0;w<=24;w+=8)R<<=1,R|=a>>w+L&1;for(w=0;w<=24;w+=8)R<<=1,R|=M>>w+L&1}for(w=0;w<=24;w+=8)R<<=1,R|=a>>w+L&1;for(L=1;L<=3;L++){for(w=0;w<=24;w+=8)h<<=1,h|=a>>w+L&1;for(w=0;w<=24;w+=8)h<<=1,h|=M>>w+L&1}for(w=0;w<=24;w+=8)h<<=1,h|=M>>w+L&1;C[d+0]=R>>>0,C[d+1]=h>>>0},K.r28shl=function(M,a){return M<>>28-a};var p=[14,11,17,4,27,23,25,0,13,22,7,18,5,9,16,24,2,20,12,21,1,8,15,26,15,4,25,19,9,1,26,16,5,11,23,8,12,7,17,0,22,3,10,14,6,20,27,24];K.pc2=function(M,a,C,d){for(var R=0,h=0,L=p.length>>>1,w=0;w>>p[w]&1;for(w=L;w>>p[w]&1;C[d+0]=R>>>0,C[d+1]=h>>>0},K.expand=function(M,a,C){var d=0,R=0;d=(1&M)<<5|M>>>27;for(var h=23;h>=15;h-=4)d<<=6,d|=M>>>h&63;for(h=11;h>=3;h-=4)R|=M>>>h&63,R<<=6;R|=(31&M)<<1|M>>>31,a[C+0]=d>>>0,a[C+1]=R>>>0};var t=[14,0,4,15,13,7,1,4,2,14,15,2,11,13,8,1,3,10,10,6,6,12,12,11,5,9,9,5,0,3,7,8,4,15,1,12,14,8,8,2,13,4,6,9,2,1,11,7,15,5,12,11,9,3,7,14,3,10,10,0,5,6,0,13,15,3,1,13,8,4,14,7,6,15,11,2,3,8,4,14,9,12,7,0,2,1,13,10,12,6,0,9,5,11,10,5,0,13,14,8,7,10,11,1,10,3,4,15,13,4,1,2,5,11,8,6,12,7,6,12,9,0,3,5,2,14,15,9,10,13,0,7,9,0,14,9,6,3,3,4,15,6,5,10,1,2,13,8,12,5,7,14,11,12,4,11,2,15,8,1,13,1,6,10,4,13,9,0,8,6,15,9,3,8,0,7,11,4,1,15,2,14,12,3,5,11,10,5,14,2,7,12,7,13,13,8,14,11,3,5,0,6,6,15,9,0,10,3,1,4,2,7,8,2,5,12,11,1,12,10,4,14,15,9,10,3,6,15,9,0,0,6,12,10,11,1,7,13,13,8,15,9,1,4,3,5,14,11,5,12,2,7,8,2,4,14,2,14,12,11,4,2,1,12,7,4,10,7,11,13,6,1,8,5,5,0,3,15,15,10,13,3,0,9,14,8,9,6,4,11,2,8,1,12,11,7,10,1,13,14,7,2,8,13,15,6,9,15,12,0,5,9,6,10,3,4,0,5,14,3,12,10,1,15,10,4,15,2,9,7,2,12,6,9,8,5,0,6,13,1,3,13,4,14,14,0,7,11,5,3,11,8,9,4,14,3,15,2,5,12,2,9,8,5,12,15,3,10,7,11,0,14,4,1,10,7,1,6,13,0,11,8,6,13,4,13,11,0,2,11,14,7,15,4,0,9,8,1,13,10,3,14,12,3,9,5,7,12,5,2,10,15,6,8,1,6,1,6,4,11,11,13,13,8,12,1,3,4,7,10,14,7,10,9,15,5,6,0,8,15,0,14,5,2,9,3,2,12,13,1,2,15,8,13,4,8,6,10,15,3,11,7,1,4,10,12,9,5,3,6,14,11,5,0,0,14,12,9,7,2,7,2,11,1,4,14,1,7,9,4,12,10,14,8,2,13,0,15,6,12,10,9,13,0,15,3,3,5,5,6,8,11];K.substitute=function(M,a){for(var C=0,d=0;d<4;d++)C<<=4,C|=t[64*d+(M>>>18-6*d&63)];for(d=0;d<4;d++)C<<=4,C|=t[256+64*d+(a>>>18-6*d&63)];return C>>>0};var e=[16,25,12,11,3,20,4,15,31,17,9,6,27,14,1,22,30,24,8,18,0,5,29,23,13,19,2,26,10,21,28,7];K.permute=function(M){for(var a=0,C=0;C>>e[C]&1;return a>>>0},K.padSplit=function(M,a,C){for(var d=M.toString(2);d.length{var t=p(5563),e=p(9799),f=p(1419),a={binary:!0,hex:!0,base64:!0};K.DiffieHellmanGroup=K.createDiffieHellmanGroup=K.getDiffieHellman=function M(d){var R=new Buffer(e[d].prime,"hex"),h=new Buffer(e[d].gen,"hex");return new f(R,h)},K.createDiffieHellman=K.DiffieHellman=function C(d,R,h,L){return Buffer.isBuffer(R)||void 0===a[R]?C(d,"binary",R,h):(R=R||"binary",L=L||"binary",h=h||new Buffer([2]),Buffer.isBuffer(h)||(h=new Buffer(h,L)),"number"==typeof d?new f(t(d,h),h,!0):(Buffer.isBuffer(d)||(d=new Buffer(d,R)),new f(d,h,!0)))}},1419:(Be,K,p)=>{var t=p(8313),f=new(p(7079)),M=new t(24),a=new t(11),C=new t(10),d=new t(3),R=new t(7),h=p(5563),L=p(3753);function w(Z,Y){return Y=Y||"utf8",Buffer.isBuffer(Z)||(Z=new Buffer(Z,Y)),this._pub=new t(Z),this}function D(Z,Y){return Y=Y||"utf8",Buffer.isBuffer(Z)||(Z=new Buffer(Z,Y)),this._priv=new t(Z),this}Be.exports=E;var S={};function E(Z,Y,ae){this.setGenerator(Y),this.__prime=new t(Z),this._prime=t.mont(this.__prime),this._primeLen=Z.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,ae?(this.setPublicKey=w,this.setPrivateKey=D):this._primeCode=8}function B(Z,Y){var ae=new Buffer(Z.toArray());return Y?ae.toString(Y):ae}Object.defineProperty(E.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function k(Z,Y){var ae=Y.toString("hex"),ee=[ae,Z.toString(16)].join("_");if(ee in S)return S[ee];var ie,ue=0;if(Z.isEven()||!h.simpleSieve||!h.fermatTest(Z)||!f.test(Z))return ue+=1,S[ee]=ue+="02"===ae||"05"===ae?8:4,ue;switch(f.test(Z.shrn(1))||(ue+=2),ae){case"02":Z.mod(M).cmp(a)&&(ue+=8);break;case"05":(ie=Z.mod(C)).cmp(d)&&ie.cmp(R)&&(ue+=8);break;default:ue+=4}return S[ee]=ue,ue}(this.__prime,this.__gen)),this._primeCode}}),E.prototype.generateKeys=function(){return this._priv||(this._priv=new t(L(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},E.prototype.computeSecret=function(Z){var Y=(Z=(Z=new t(Z)).toRed(this._prime)).redPow(this._priv).fromRed(),ae=new Buffer(Y.toArray()),ee=this.getPrime();if(ae.length{var t=p(3753);Be.exports=ue,ue.simpleSieve=ae,ue.fermatTest=ee;var e=p(8313),f=new e(24),a=new(p(7079)),C=new e(1),d=new e(2),R=new e(5),w=(new e(16),new e(8),new e(10)),D=new e(3),k=(new e(7),new e(11)),E=new e(4),Z=(new e(12),null);function ae(ie){for(var re=function Y(){if(null!==Z)return Z;var re=[];re[0]=2;for(var ge=1,q=3;q<1048576;q+=2){for(var _e=Math.ceil(Math.sqrt(q)),x=0;xie;)ge.ishrn(1);if(ge.isEven()&&ge.iadd(C),ge.testn(1)||ge.iadd(d),re.cmp(d)){if(!re.cmp(R))for(;ge.mod(w).cmp(D);)ge.iadd(E)}else for(;ge.mod(f).cmp(k);)ge.iadd(E);if(ae(q=ge.shrn(1))&&ae(ge)&&ee(q)&&ee(ge)&&a.test(q)&&a.test(ge))return ge}}},8313:function(Be,K,p){!function(t,e){"use strict";function f(x,i){if(!x)throw new Error(i||"Assertion failed")}function M(x,i){x.super_=i;var r=function(){};r.prototype=i.prototype,x.prototype=new r,x.prototype.constructor=x}function a(x,i,r){if(a.isBN(x))return x;this.negative=0,this.words=null,this.length=0,this.red=null,null!==x&&(("le"===i||"be"===i)&&(r=i,i=10),this._init(x||0,i||10,r||"be"))}var C;"object"==typeof t?t.exports=a:e.BN=a,a.BN=a,a.wordSize=26;try{C="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:p(7748).Buffer}catch(x){}function d(x,i){var r=x.charCodeAt(i);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function R(x,i,r){var u=d(x,r);return r-1>=i&&(u|=d(x,r-1)<<4),u}function h(x,i,r,u){for(var c=0,v=Math.min(x.length,r),T=i;T=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[v]|=(T=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);else if("le"===u)for(c=0,v=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=R(i,r,c)<=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,v=1;v<=67108863;v*=r)c++;c--,v=v/r|0;for(var T=i.length-u,I=T%c,y=Math.min(T,T-I)+u,n=0,_=u;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var L=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(x,i,r){r.negative=i.negative^x.negative;var u=x.length+i.length|0;r.length=u,u=u-1|0;var c=0|x.words[0],v=0|i.words[0],T=c*v,y=T/67108864|0;r.words[0]=67108863&T;for(var n=1;n>>26,V=67108863&y,N=Math.min(n,i.length-1),H=Math.max(0,n-x.length+1);H<=N;H++)_+=(T=(c=0|x.words[n-H|0])*(v=0|i.words[H])+V)/67108864|0,V=67108863&T;r.words[n]=0|V,y=0|_}return 0!==y?r.words[n]=0|y:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,v=0,T=0;T>>24-c&16777215)||T!==this.length-1?L[6-y.length]+y+u:y+u,(c+=2)>=26&&(c-=26,T--)}for(0!==v&&(u=v.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],_=D[i];u="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(_).toString(i);u=(V=V.idivn(_)).isZero()?N+u:L[n-N.length]+N+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==C),this.toArrayLike(C,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),v=u||Math.max(1,c);f(c<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0"),this.strip();var y,n,T="le"===r,I=new i(v),_=this.clone();if(T){for(n=0;!_.isZero();n++)y=_.andln(255),_.iushrn(8),I[n]=y;for(;n=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var v=0,T=0;T>>26;for(;0!==v&&T>>26;if(this.length=u.length,0!==v)this.words[this.length]=v,this.length++;else if(u!==this)for(;Ti.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,v,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,v=i):(c=i,v=this);for(var T=0,I=0;I>26,this.words[I]=67108863&r;for(;0!==T&&I>26,this.words[I]=67108863&r;if(0===T&&I>>13,X=0|c[1],he=8191&X,be=X>>>13,Pe=0|c[2],Ee=8191&Pe,j=Pe>>>13,Ve=0|c[3],Me=8191&Ve,J=Ve>>>13,Ie=0|c[4],ut=8191&Ie,Oe=Ie>>>13,we=0|c[5],ce=8191&we,Te=we>>>13,xe=0|c[6],W=8191&xe,te=xe>>>13,Ce=0|c[7],fe=8191&Ce,Q=Ce>>>13,ft=0|c[8],tt=8191&ft,Dt=ft>>>13,di=0|c[9],Yt=8191&di,Zt=di>>>13,ui=0|v[0],Ot=8191&ui,Nt=ui>>>13,gt=0|v[1],it=8191>,bt=gt>>>13,ei=0|v[2],Qt=8191&ei,Re=ei>>>13,ke=0|v[3],de=8191&ke,ye=ke>>>13,ht=0|v[4],mt=8191&ht,Ft=ht>>>13,nt=0|v[5],He=8191&nt,rt=nt>>>13,et=0|v[6],Ae=8191&et,Ge=et>>>13,ot=0|v[7],lt=8191&ot,Ct=ot>>>13,mi=0|v[8],Jt=8191&mi,$t=mi>>>13,Qi=0|v[9],hi=8191&Qi,si=Qi>>>13;u.negative=i.negative^r.negative,u.length=19;var Ji=(I+(y=Math.imul(N,Ot))|0)+((8191&(n=(n=Math.imul(N,Nt))+Math.imul(H,Ot)|0))<<13)|0;I=((_=Math.imul(H,Nt))+(n>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,y=Math.imul(he,Ot),n=(n=Math.imul(he,Nt))+Math.imul(be,Ot)|0,_=Math.imul(be,Nt);var Zi=(I+(y=y+Math.imul(N,it)|0)|0)+((8191&(n=(n=n+Math.imul(N,bt)|0)+Math.imul(H,it)|0))<<13)|0;I=((_=_+Math.imul(H,bt)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,y=Math.imul(Ee,Ot),n=(n=Math.imul(Ee,Nt))+Math.imul(j,Ot)|0,_=Math.imul(j,Nt),y=y+Math.imul(he,it)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(be,it)|0,_=_+Math.imul(be,bt)|0;var Vi=(I+(y=y+Math.imul(N,Qt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Re)|0)+Math.imul(H,Qt)|0))<<13)|0;I=((_=_+Math.imul(H,Re)|0)+(n>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,y=Math.imul(Me,Ot),n=(n=Math.imul(Me,Nt))+Math.imul(J,Ot)|0,_=Math.imul(J,Nt),y=y+Math.imul(Ee,it)|0,n=(n=n+Math.imul(Ee,bt)|0)+Math.imul(j,it)|0,_=_+Math.imul(j,bt)|0,y=y+Math.imul(he,Qt)|0,n=(n=n+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0,_=_+Math.imul(be,Re)|0;var Ui=(I+(y=y+Math.imul(N,de)|0)|0)+((8191&(n=(n=n+Math.imul(N,ye)|0)+Math.imul(H,de)|0))<<13)|0;I=((_=_+Math.imul(H,ye)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,y=Math.imul(ut,Ot),n=(n=Math.imul(ut,Nt))+Math.imul(Oe,Ot)|0,_=Math.imul(Oe,Nt),y=y+Math.imul(Me,it)|0,n=(n=n+Math.imul(Me,bt)|0)+Math.imul(J,it)|0,_=_+Math.imul(J,bt)|0,y=y+Math.imul(Ee,Qt)|0,n=(n=n+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,_=_+Math.imul(j,Re)|0,y=y+Math.imul(he,de)|0,n=(n=n+Math.imul(he,ye)|0)+Math.imul(be,de)|0,_=_+Math.imul(be,ye)|0;var Ue=(I+(y=y+Math.imul(N,mt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ft)|0)+Math.imul(H,mt)|0))<<13)|0;I=((_=_+Math.imul(H,Ft)|0)+(n>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,y=Math.imul(ce,Ot),n=(n=Math.imul(ce,Nt))+Math.imul(Te,Ot)|0,_=Math.imul(Te,Nt),y=y+Math.imul(ut,it)|0,n=(n=n+Math.imul(ut,bt)|0)+Math.imul(Oe,it)|0,_=_+Math.imul(Oe,bt)|0,y=y+Math.imul(Me,Qt)|0,n=(n=n+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,_=_+Math.imul(J,Re)|0,y=y+Math.imul(Ee,de)|0,n=(n=n+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,_=_+Math.imul(j,ye)|0,y=y+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0,_=_+Math.imul(be,Ft)|0;var Tt=(I+(y=y+Math.imul(N,He)|0)|0)+((8191&(n=(n=n+Math.imul(N,rt)|0)+Math.imul(H,He)|0))<<13)|0;I=((_=_+Math.imul(H,rt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,y=Math.imul(W,Ot),n=(n=Math.imul(W,Nt))+Math.imul(te,Ot)|0,_=Math.imul(te,Nt),y=y+Math.imul(ce,it)|0,n=(n=n+Math.imul(ce,bt)|0)+Math.imul(Te,it)|0,_=_+Math.imul(Te,bt)|0,y=y+Math.imul(ut,Qt)|0,n=(n=n+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,_=_+Math.imul(Oe,Re)|0,y=y+Math.imul(Me,de)|0,n=(n=n+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,_=_+Math.imul(J,ye)|0,y=y+Math.imul(Ee,mt)|0,n=(n=n+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,_=_+Math.imul(j,Ft)|0,y=y+Math.imul(he,He)|0,n=(n=n+Math.imul(he,rt)|0)+Math.imul(be,He)|0,_=_+Math.imul(be,rt)|0;var ve=(I+(y=y+Math.imul(N,Ae)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ge)|0)+Math.imul(H,Ae)|0))<<13)|0;I=((_=_+Math.imul(H,Ge)|0)+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,y=Math.imul(fe,Ot),n=(n=Math.imul(fe,Nt))+Math.imul(Q,Ot)|0,_=Math.imul(Q,Nt),y=y+Math.imul(W,it)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(te,it)|0,_=_+Math.imul(te,bt)|0,y=y+Math.imul(ce,Qt)|0,n=(n=n+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,_=_+Math.imul(Te,Re)|0,y=y+Math.imul(ut,de)|0,n=(n=n+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,_=_+Math.imul(Oe,ye)|0,y=y+Math.imul(Me,mt)|0,n=(n=n+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,_=_+Math.imul(J,Ft)|0,y=y+Math.imul(Ee,He)|0,n=(n=n+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,_=_+Math.imul(j,rt)|0,y=y+Math.imul(he,Ae)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0,_=_+Math.imul(be,Ge)|0;var Qe=(I+(y=y+Math.imul(N,lt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ct)|0)+Math.imul(H,lt)|0))<<13)|0;I=((_=_+Math.imul(H,Ct)|0)+(n>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,y=Math.imul(tt,Ot),n=(n=Math.imul(tt,Nt))+Math.imul(Dt,Ot)|0,_=Math.imul(Dt,Nt),y=y+Math.imul(fe,it)|0,n=(n=n+Math.imul(fe,bt)|0)+Math.imul(Q,it)|0,_=_+Math.imul(Q,bt)|0,y=y+Math.imul(W,Qt)|0,n=(n=n+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,_=_+Math.imul(te,Re)|0,y=y+Math.imul(ce,de)|0,n=(n=n+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,_=_+Math.imul(Te,ye)|0,y=y+Math.imul(ut,mt)|0,n=(n=n+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,_=_+Math.imul(Oe,Ft)|0,y=y+Math.imul(Me,He)|0,n=(n=n+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,_=_+Math.imul(J,rt)|0,y=y+Math.imul(Ee,Ae)|0,n=(n=n+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,_=_+Math.imul(j,Ge)|0,y=y+Math.imul(he,lt)|0,n=(n=n+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0,_=_+Math.imul(be,Ct)|0;var _t=(I+(y=y+Math.imul(N,Jt)|0)|0)+((8191&(n=(n=n+Math.imul(N,$t)|0)+Math.imul(H,Jt)|0))<<13)|0;I=((_=_+Math.imul(H,$t)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,y=Math.imul(Yt,Ot),n=(n=Math.imul(Yt,Nt))+Math.imul(Zt,Ot)|0,_=Math.imul(Zt,Nt),y=y+Math.imul(tt,it)|0,n=(n=n+Math.imul(tt,bt)|0)+Math.imul(Dt,it)|0,_=_+Math.imul(Dt,bt)|0,y=y+Math.imul(fe,Qt)|0,n=(n=n+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,_=_+Math.imul(Q,Re)|0,y=y+Math.imul(W,de)|0,n=(n=n+Math.imul(W,ye)|0)+Math.imul(te,de)|0,_=_+Math.imul(te,ye)|0,y=y+Math.imul(ce,mt)|0,n=(n=n+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,_=_+Math.imul(Te,Ft)|0,y=y+Math.imul(ut,He)|0,n=(n=n+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,_=_+Math.imul(Oe,rt)|0,y=y+Math.imul(Me,Ae)|0,n=(n=n+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,_=_+Math.imul(J,Ge)|0,y=y+Math.imul(Ee,lt)|0,n=(n=n+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,_=_+Math.imul(j,Ct)|0,y=y+Math.imul(he,Jt)|0,n=(n=n+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0,_=_+Math.imul(be,$t)|0;var se=(I+(y=y+Math.imul(N,hi)|0)|0)+((8191&(n=(n=n+Math.imul(N,si)|0)+Math.imul(H,hi)|0))<<13)|0;I=((_=_+Math.imul(H,si)|0)+(n>>>13)|0)+(se>>>26)|0,se&=67108863,y=Math.imul(Yt,it),n=(n=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,_=Math.imul(Zt,bt),y=y+Math.imul(tt,Qt)|0,n=(n=n+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,_=_+Math.imul(Dt,Re)|0,y=y+Math.imul(fe,de)|0,n=(n=n+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,_=_+Math.imul(Q,ye)|0,y=y+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,_=_+Math.imul(te,Ft)|0,y=y+Math.imul(ce,He)|0,n=(n=n+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,_=_+Math.imul(Te,rt)|0,y=y+Math.imul(ut,Ae)|0,n=(n=n+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,_=_+Math.imul(Oe,Ge)|0,y=y+Math.imul(Me,lt)|0,n=(n=n+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,_=_+Math.imul(J,Ct)|0,y=y+Math.imul(Ee,Jt)|0,n=(n=n+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,_=_+Math.imul(j,$t)|0;var Je=(I+(y=y+Math.imul(he,hi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;I=((_=_+Math.imul(be,si)|0)+(n>>>13)|0)+(Je>>>26)|0,Je&=67108863,y=Math.imul(Yt,Qt),n=(n=Math.imul(Yt,Re))+Math.imul(Zt,Qt)|0,_=Math.imul(Zt,Re),y=y+Math.imul(tt,de)|0,n=(n=n+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,_=_+Math.imul(Dt,ye)|0,y=y+Math.imul(fe,mt)|0,n=(n=n+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,_=_+Math.imul(Q,Ft)|0,y=y+Math.imul(W,He)|0,n=(n=n+Math.imul(W,rt)|0)+Math.imul(te,He)|0,_=_+Math.imul(te,rt)|0,y=y+Math.imul(ce,Ae)|0,n=(n=n+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,_=_+Math.imul(Te,Ge)|0,y=y+Math.imul(ut,lt)|0,n=(n=n+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,_=_+Math.imul(Oe,Ct)|0,y=y+Math.imul(Me,Jt)|0,n=(n=n+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,_=_+Math.imul(J,$t)|0;var xt=(I+(y=y+Math.imul(Ee,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0))<<13)|0;I=((_=_+Math.imul(j,si)|0)+(n>>>13)|0)+(xt>>>26)|0,xt&=67108863,y=Math.imul(Yt,de),n=(n=Math.imul(Yt,ye))+Math.imul(Zt,de)|0,_=Math.imul(Zt,ye),y=y+Math.imul(tt,mt)|0,n=(n=n+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,_=_+Math.imul(Dt,Ft)|0,y=y+Math.imul(fe,He)|0,n=(n=n+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,_=_+Math.imul(Q,rt)|0,y=y+Math.imul(W,Ae)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,_=_+Math.imul(te,Ge)|0,y=y+Math.imul(ce,lt)|0,n=(n=n+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,_=_+Math.imul(Te,Ct)|0,y=y+Math.imul(ut,Jt)|0,n=(n=n+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,_=_+Math.imul(Oe,$t)|0;var Bt=(I+(y=y+Math.imul(Me,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Me,si)|0)+Math.imul(J,hi)|0))<<13)|0;I=((_=_+Math.imul(J,si)|0)+(n>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,y=Math.imul(Yt,mt),n=(n=Math.imul(Yt,Ft))+Math.imul(Zt,mt)|0,_=Math.imul(Zt,Ft),y=y+Math.imul(tt,He)|0,n=(n=n+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,_=_+Math.imul(Dt,rt)|0,y=y+Math.imul(fe,Ae)|0,n=(n=n+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,_=_+Math.imul(Q,Ge)|0,y=y+Math.imul(W,lt)|0,n=(n=n+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,_=_+Math.imul(te,Ct)|0,y=y+Math.imul(ce,Jt)|0,n=(n=n+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,_=_+Math.imul(Te,$t)|0;var xi=(I+(y=y+Math.imul(ut,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0))<<13)|0;I=((_=_+Math.imul(Oe,si)|0)+(n>>>13)|0)+(xi>>>26)|0,xi&=67108863,y=Math.imul(Yt,He),n=(n=Math.imul(Yt,rt))+Math.imul(Zt,He)|0,_=Math.imul(Zt,rt),y=y+Math.imul(tt,Ae)|0,n=(n=n+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,_=_+Math.imul(Dt,Ge)|0,y=y+Math.imul(fe,lt)|0,n=(n=n+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,_=_+Math.imul(Q,Ct)|0,y=y+Math.imul(W,Jt)|0,n=(n=n+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,_=_+Math.imul(te,$t)|0;var Ti=(I+(y=y+Math.imul(ce,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0))<<13)|0;I=((_=_+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,y=Math.imul(Yt,Ae),n=(n=Math.imul(Yt,Ge))+Math.imul(Zt,Ae)|0,_=Math.imul(Zt,Ge),y=y+Math.imul(tt,lt)|0,n=(n=n+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,_=_+Math.imul(Dt,Ct)|0,y=y+Math.imul(fe,Jt)|0,n=(n=n+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,_=_+Math.imul(Q,$t)|0;var $i=(I+(y=y+Math.imul(W,hi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(te,hi)|0))<<13)|0;I=((_=_+Math.imul(te,si)|0)+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,y=Math.imul(Yt,lt),n=(n=Math.imul(Yt,Ct))+Math.imul(Zt,lt)|0,_=Math.imul(Zt,Ct),y=y+Math.imul(tt,Jt)|0,n=(n=n+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,_=_+Math.imul(Dt,$t)|0;var Wi=(I+(y=y+Math.imul(fe,hi)|0)|0)+((8191&(n=(n=n+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0))<<13)|0;I=((_=_+Math.imul(Q,si)|0)+(n>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,y=Math.imul(Yt,Jt),n=(n=Math.imul(Yt,$t))+Math.imul(Zt,Jt)|0,_=Math.imul(Zt,$t);var on=(I+(y=y+Math.imul(tt,hi)|0)|0)+((8191&(n=(n=n+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0))<<13)|0;I=((_=_+Math.imul(Dt,si)|0)+(n>>>13)|0)+(on>>>26)|0,on&=67108863;var fn=(I+(y=Math.imul(Yt,hi))|0)+((8191&(n=(n=Math.imul(Yt,si))+Math.imul(Zt,hi)|0))<<13)|0;return I=((_=Math.imul(Zt,si))+(n>>>13)|0)+(fn>>>26)|0,fn&=67108863,T[0]=Ji,T[1]=Zi,T[2]=Vi,T[3]=Ui,T[4]=Ue,T[5]=Tt,T[6]=ve,T[7]=Qe,T[8]=_t,T[9]=se,T[10]=Je,T[11]=xt,T[12]=Bt,T[13]=xi,T[14]=Ti,T[15]=$i,T[16]=Wi,T[17]=on,T[18]=fn,0!==I&&(T[19]=I,u.length++),u};function Z(x,i,r){return(new Y).mulp(x,i,r)}function Y(x,i){this.x=x,this.y=i}Math.imul||(E=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?E(this,i,r):c<63?k(this,i,r):c<1024?function B(x,i,r){r.negative=i.negative^x.negative,r.length=x.length+i.length;for(var u=0,c=0,v=0;v>>26)|0)>>>26,T&=67108863}r.words[v]=I,u=T,T=c}return 0!==u?r.words[v]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,v,T){for(var I=0;I>>=1)v++;return 1<>>=13),v>>>=13;for(T=2*r;T>=26,r+=c/67108864|0,r+=v>>>26,this.words[u]=67108863&v}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function S(x){for(var i=new Array(x.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var v,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var T=0;for(v=0;v>>26-r}T&&(this.words[v]=T,this.length++)}if(0!==u){for(v=this.length-1;v>=0;v--)this.words[v+u]=this.words[v];for(v=0;v=0),c=r?(r-r%26)/26:0;var v=i%26,T=Math.min((i-v)/26,this.length),I=67108863^67108863>>>v<T)for(this.length-=T,n=0;n=0&&(0!==_||n>=c);n--){var V=0|this.words[n];this.words[n]=_<<26-v|V>>>v,_=V&I}return y&&0!==_&&(y.words[y.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(y/67108864|0),this.words[v+u]=67108863&T}for(;v>26,this.words[v+u]=67108863&T;if(0===I)return this.strip();for(f(-1===I),I=0,v=0;v>26,this.words[v]=67108863&T;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),v=i,T=0|v.words[v.length-1];0!=(u=26-this._countBits(T))&&(v=v.ushln(u),c.iushln(u),T=0|v.words[v.length-1]);var n,y=c.length-v.length;if("mod"!==r){(n=new a(null)).length=y+1,n.words=new Array(n.length);for(var _=0;_=0;N--){var H=67108864*(0|c.words[v.length+N])+(0|c.words[v.length+N-1]);for(H=Math.min(H/T|0,67108863),c._ishlnsubmul(v,H,N);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(v,1,N),c.isZero()||(c.negative^=1);n&&(n.words[N]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(T=this.neg().divmod(i,r),"mod"!==r&&(c=T.div.neg()),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.iadd(i)),{div:c,mod:v}):0===this.negative&&0!==i.negative?(T=this.divmod(i.neg(),r),"mod"!==r&&(c=T.div.neg()),{div:c,mod:T.mod}):0!=(this.negative&i.negative)?(T=this.neg().divmod(i.neg(),r),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.isub(i)),{div:T.div,mod:v}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,v,T},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),v=i.andln(1),T=u.cmp(c);return T<0||1===v&&0===T?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=new a(0),I=new a(1),y=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++y;for(var n=u.clone(),_=r.clone();!r.isZero();){for(var V=0,N=1;0==(r.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(r.iushrn(V);V-- >0;)(c.isOdd()||v.isOdd())&&(c.iadd(n),v.isub(_)),c.iushrn(1),v.iushrn(1);for(var H=0,X=1;0==(u.words[0]&X)&&H<26;++H,X<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(T.isOdd()||I.isOdd())&&(T.iadd(n),I.isub(_)),T.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(T),v.isub(I)):(u.isub(r),T.isub(c),I.isub(v))}return{a:T,b:I,gcd:u.iushln(y)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var V,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,y=1;0==(r.words[0]&y)&&I<26;++I,y<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(T),c.iushrn(1);for(var n=0,_=1;0==(u.words[0]&_)&&n<26;++n,_<<=1);if(n>0)for(u.iushrn(n);n-- >0;)v.isOdd()&&v.iadd(T),v.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(v)):(u.isub(r),v.isub(c))}return(V=0===r.cmpn(1)?c:v).cmpn(0)<0&&V.iadd(i),V},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var v=r.cmp(u);if(v<0){var T=r;r=u,u=T}else if(0===v||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[T]=I&=67108863}return 0!==v&&(this.words[T]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],v=0|i.words[u];if(c!==v){cv&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new q(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ae={k256:null,p224:null,p192:null,p25519:null};function ee(x,i){this.name=x,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ue(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ie(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function re(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function ge(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function q(x){if("string"==typeof x){var i=a._prime(x);this.m=i.p,this.prime=i}else f(x.gtn(1),"modulus must be greater than 1"),this.m=x,this.prime=null}function _e(x){q.call(this,x),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},ee.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},ee.prototype.split=function(i,r){i.iushrn(this.n,0,r)},ee.prototype.imulK=function(i){return i.imul(this.k)},M(ue,ee),ue.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),v=0;v>>22,T=I}i.words[v-10]=T>>>=22,i.length-=0===T&&i.length>10?10:9},ue.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=v,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ae[i])return ae[i];var r;if("k256"===i)r=new ue;else if("p224"===i)r=new ie;else if("p192"===i)r=new re;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new ge}return ae[i]=r,r},q.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},q.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},q.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},q.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},q.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},q.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},q.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},q.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},q.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},q.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},q.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},q.prototype.isqr=function(i){return this.imul(i,i.clone())},q.prototype.sqr=function(i){return this.mul(i,i)},q.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),v=0;!c.isZero()&&0===c.andln(1);)v++,c.iushrn(1);f(!c.isZero());var T=new a(1).toRed(this),I=T.redNeg(),y=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,y).cmp(I);)n.redIAdd(I);for(var _=this.pow(n,c),V=this.pow(i,c.addn(1).iushrn(1)),N=this.pow(i,c),H=v;0!==N.cmp(T);){for(var X=N,he=0;0!==X.cmp(T);he++)X=X.redSqr();f(he=0;v--){for(var _=r.words[v],V=n-1;V>=0;V--){var N=_>>V&1;T!==c[0]&&(T=this.sqr(T)),0!==N||0!==I?(I<<=1,I|=N,(4==++y||0===v&&0===V)&&(T=this.mul(T,c[I]),y=0,I=0)):y=0}n=26}return T},q.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},q.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new _e(i)},M(_e,q),_e.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},_e.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},_e.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},4901:Be=>{"use strict";var K={single_source_shortest_paths:function(p,t,e){var f={},M={};M[t]=0;var C,d,R,h,L,D,a=K.PriorityQueue.make();for(a.push(t,0);!a.empty();)for(R in h=(C=a.pop()).cost,L=p[d=C.value]||{})L.hasOwnProperty(R)&&(D=h+L[R],(void 0===M[R]||M[R]>D)&&(M[R]=D,a.push(R,D),f[R]=d));if(void 0!==e&&void 0===M[e]){var E=["Could not find a path from ",t," to ",e,"."].join("");throw new Error(E)}return f},extract_shortest_path_from_predecessor_list:function(p,t){for(var e=[],f=t;f;)e.push(f),f=p[f];return e.reverse(),e},find_path:function(p,t,e){var f=K.single_source_shortest_paths(p,t,e);return K.extract_shortest_path_from_predecessor_list(f,e)},PriorityQueue:{make:function(p){var f,t=K.PriorityQueue,e={};for(f in p=p||{},t)t.hasOwnProperty(f)&&(e[f]=t[f]);return e.queue=[],e.sorter=p.sorter||t.default_sorter,e},default_sorter:function(p,t){return p.cost-t.cost},push:function(p,t){this.queue.push({value:p,cost:t}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Be.exports=K},7715:(Be,K,p)=>{"use strict";var t=K;t.version=p(8597).i8,t.utils=p(1970),t.rand=p(7950),t.curve=p(6270),t.curves=p(2916),t.ec=p(7626),t.eddsa=p(1885)},7902:(Be,K,p)=>{"use strict";var t=p(7433),e=p(1970),f=e.getNAF,M=e.getJSF,a=e.assert;function C(R,h){this.type=R,this.p=new t(h.p,16),this.red=h.prime?t.red(h.prime):t.mont(this.p),this.zero=new t(0).toRed(this.red),this.one=new t(1).toRed(this.red),this.two=new t(2).toRed(this.red),this.n=h.n&&new t(h.n,16),this.g=h.g&&this.pointFromJSON(h.g,h.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var L=this.n&&this.p.div(this.n);!L||L.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function d(R,h){this.curve=R,this.type=h,this.precomputed=null}Be.exports=C,C.prototype.point=function(){throw new Error("Not implemented")},C.prototype.validate=function(){throw new Error("Not implemented")},C.prototype._fixedNafMul=function(h,L){a(h.precomputed);var w=h._getDoubles(),D=f(L,1,this._bitLength),S=(1<=E;Z--)B=(B<<1)+D[Z];k.push(B)}for(var Y=this.jpoint(null,null,null),ae=this.jpoint(null,null,null),ee=S;ee>0;ee--){for(E=0;E=0;B--){for(var Z=0;B>=0&&0===k[B];B--)Z++;if(B>=0&&Z++,E=E.dblp(Z),B<0)break;var Y=k[B];a(0!==Y),E="affine"===h.type?E.mixedAdd(Y>0?S[Y-1>>1]:S[-Y-1>>1].neg()):E.add(Y>0?S[Y-1>>1]:S[-Y-1>>1].neg())}return"affine"===h.type?E.toP():E},C.prototype._wnafMulAdd=function(h,L,w,D,S){var Y,ae,ee,k=this._wnafT1,E=this._wnafT2,B=this._wnafT3,Z=0;for(Y=0;Y=1;Y-=2){var ie=Y-1,re=Y;if(1===k[ie]&&1===k[re]){var ge=[L[ie],null,null,L[re]];0===L[ie].y.cmp(L[re].y)?(ge[1]=L[ie].add(L[re]),ge[2]=L[ie].toJ().mixedAdd(L[re].neg())):0===L[ie].y.cmp(L[re].y.redNeg())?(ge[1]=L[ie].toJ().mixedAdd(L[re]),ge[2]=L[ie].add(L[re].neg())):(ge[1]=L[ie].toJ().mixedAdd(L[re]),ge[2]=L[ie].toJ().mixedAdd(L[re].neg()));var q=[-3,-1,-5,-7,0,7,5,1,3],_e=M(w[ie],w[re]);for(Z=Math.max(_e[0].length,Z),B[ie]=new Array(Z),B[re]=new Array(Z),ae=0;ae=0;Y--){for(var c=0;Y>=0;){var v=!0;for(ae=0;ae=0&&c++,r=r.dblp(c),Y<0)break;for(ae=0;ae0?ee=E[ae][T-1>>1]:T<0&&(ee=E[ae][-T-1>>1].neg()),r="affine"===ee.type?r.mixedAdd(ee):r.add(ee))}}for(Y=0;Y=Math.ceil((h.bitLength()+1)/L.step)},d.prototype._getDoubles=function(h,L){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var w=[this],D=this,S=0;S{"use strict";var t=p(1970),e=p(7433),f=p(3894),M=p(7902),a=t.assert;function C(R){this.twisted=1!=(0|R.a),this.mOneA=this.twisted&&-1==(0|R.a),this.extended=this.mOneA,M.call(this,"edwards",R),this.a=new e(R.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new e(R.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new e(R.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),a(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|R.c)}function d(R,h,L,w,D){M.BasePoint.call(this,R,"projective"),null===h&&null===L&&null===w?(this.x=this.curve.zero,this.y=this.curve.one,this.z=this.curve.one,this.t=this.curve.zero,this.zOne=!0):(this.x=new e(h,16),this.y=new e(L,16),this.z=w?new e(w,16):this.curve.one,this.t=D&&new e(D,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.t&&!this.t.red&&(this.t=this.t.toRed(this.curve.red)),this.zOne=this.z===this.curve.one,this.curve.extended&&!this.t&&(this.t=this.x.redMul(this.y),this.zOne||(this.t=this.t.redMul(this.z.redInvm()))))}f(C,M),Be.exports=C,C.prototype._mulA=function(h){return this.mOneA?h.redNeg():this.a.redMul(h)},C.prototype._mulC=function(h){return this.oneC?h:this.c.redMul(h)},C.prototype.jpoint=function(h,L,w,D){return this.point(h,L,w,D)},C.prototype.pointFromX=function(h,L){(h=new e(h,16)).red||(h=h.toRed(this.red));var w=h.redSqr(),D=this.c2.redSub(this.a.redMul(w)),S=this.one.redSub(this.c2.redMul(this.d).redMul(w)),k=D.redMul(S.redInvm()),E=k.redSqrt();if(0!==E.redSqr().redSub(k).cmp(this.zero))throw new Error("invalid point");var B=E.fromRed().isOdd();return(L&&!B||!L&&B)&&(E=E.redNeg()),this.point(h,E)},C.prototype.pointFromY=function(h,L){(h=new e(h,16)).red||(h=h.toRed(this.red));var w=h.redSqr(),D=w.redSub(this.c2),S=w.redMul(this.d).redMul(this.c2).redSub(this.a),k=D.redMul(S.redInvm());if(0===k.cmp(this.zero)){if(L)throw new Error("invalid point");return this.point(this.zero,h)}var E=k.redSqrt();if(0!==E.redSqr().redSub(k).cmp(this.zero))throw new Error("invalid point");return E.fromRed().isOdd()!==L&&(E=E.redNeg()),this.point(E,h)},C.prototype.validate=function(h){if(h.isInfinity())return!0;h.normalize();var L=h.x.redSqr(),w=h.y.redSqr(),D=L.redMul(this.a).redAdd(w),S=this.c2.redMul(this.one.redAdd(this.d.redMul(L).redMul(w)));return 0===D.cmp(S)},f(d,M.BasePoint),C.prototype.pointFromJSON=function(h){return d.fromJSON(this,h)},C.prototype.point=function(h,L,w,D){return new d(this,h,L,w,D)},d.fromJSON=function(h,L){return new d(h,L[0],L[1],L[2])},d.prototype.inspect=function(){return this.isInfinity()?"":""},d.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},d.prototype._extDbl=function(){var h=this.x.redSqr(),L=this.y.redSqr(),w=this.z.redSqr();w=w.redIAdd(w);var D=this.curve._mulA(h),S=this.x.redAdd(this.y).redSqr().redISub(h).redISub(L),k=D.redAdd(L),E=k.redSub(w),B=D.redSub(L),Z=S.redMul(E),Y=k.redMul(B),ae=S.redMul(B),ee=E.redMul(k);return this.curve.point(Z,Y,ee,ae)},d.prototype._projDbl=function(){var D,S,k,E,B,Z,h=this.x.redAdd(this.y).redSqr(),L=this.x.redSqr(),w=this.y.redSqr();if(this.curve.twisted){var Y=(E=this.curve._mulA(L)).redAdd(w);this.zOne?(D=h.redSub(L).redSub(w).redMul(Y.redSub(this.curve.two)),S=Y.redMul(E.redSub(w)),k=Y.redSqr().redSub(Y).redSub(Y)):(B=this.z.redSqr(),Z=Y.redSub(B).redISub(B),D=h.redSub(L).redISub(w).redMul(Z),S=Y.redMul(E.redSub(w)),k=Y.redMul(Z))}else E=L.redAdd(w),B=this.curve._mulC(this.z).redSqr(),Z=E.redSub(B).redSub(B),D=this.curve._mulC(h.redISub(E)).redMul(Z),S=this.curve._mulC(E).redMul(L.redISub(w)),k=E.redMul(Z);return this.curve.point(D,S,k)},d.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},d.prototype._extAdd=function(h){var L=this.y.redSub(this.x).redMul(h.y.redSub(h.x)),w=this.y.redAdd(this.x).redMul(h.y.redAdd(h.x)),D=this.t.redMul(this.curve.dd).redMul(h.t),S=this.z.redMul(h.z.redAdd(h.z)),k=w.redSub(L),E=S.redSub(D),B=S.redAdd(D),Z=w.redAdd(L),Y=k.redMul(E),ae=B.redMul(Z),ee=k.redMul(Z),ue=E.redMul(B);return this.curve.point(Y,ae,ue,ee)},d.prototype._projAdd=function(h){var ae,ee,L=this.z.redMul(h.z),w=L.redSqr(),D=this.x.redMul(h.x),S=this.y.redMul(h.y),k=this.curve.d.redMul(D).redMul(S),E=w.redSub(k),B=w.redAdd(k),Z=this.x.redAdd(this.y).redMul(h.x.redAdd(h.y)).redISub(D).redISub(S),Y=L.redMul(E).redMul(Z);return this.curve.twisted?(ae=L.redMul(B).redMul(S.redSub(this.curve._mulA(D))),ee=E.redMul(B)):(ae=L.redMul(B).redMul(S.redSub(D)),ee=this.curve._mulC(E).redMul(B)),this.curve.point(Y,ae,ee)},d.prototype.add=function(h){return this.isInfinity()?h:h.isInfinity()?this:this.curve.extended?this._extAdd(h):this._projAdd(h)},d.prototype.mul=function(h){return this._hasDoubles(h)?this.curve._fixedNafMul(this,h):this.curve._wnafMul(this,h)},d.prototype.mulAdd=function(h,L,w){return this.curve._wnafMulAdd(1,[this,L],[h,w],2,!1)},d.prototype.jmulAdd=function(h,L,w){return this.curve._wnafMulAdd(1,[this,L],[h,w],2,!0)},d.prototype.normalize=function(){if(this.zOne)return this;var h=this.z.redInvm();return this.x=this.x.redMul(h),this.y=this.y.redMul(h),this.t&&(this.t=this.t.redMul(h)),this.z=this.curve.one,this.zOne=!0,this},d.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},d.prototype.getX=function(){return this.normalize(),this.x.fromRed()},d.prototype.getY=function(){return this.normalize(),this.y.fromRed()},d.prototype.eq=function(h){return this===h||0===this.getX().cmp(h.getX())&&0===this.getY().cmp(h.getY())},d.prototype.eqXToP=function(h){var L=h.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(L))return!0;for(var w=h.clone(),D=this.curve.redN.redMul(this.z);;){if(w.iadd(this.curve.n),w.cmp(this.curve.p)>=0)return!1;if(L.redIAdd(D),0===this.x.cmp(L))return!0}},d.prototype.toP=d.prototype.normalize,d.prototype.mixedAdd=d.prototype.add},6270:(Be,K,p)=>{"use strict";var t=K;t.base=p(7902),t.short=p(1781),t.mont=p(7064),t.edwards=p(3835)},7064:(Be,K,p)=>{"use strict";var t=p(7433),e=p(3894),f=p(7902),M=p(1970);function a(d){f.call(this,"mont",d),this.a=new t(d.a,16).toRed(this.red),this.b=new t(d.b,16).toRed(this.red),this.i4=new t(4).toRed(this.red).redInvm(),this.two=new t(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function C(d,R,h){f.BasePoint.call(this,d,"projective"),null===R&&null===h?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new t(R,16),this.z=new t(h,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}e(a,f),Be.exports=a,a.prototype.validate=function(R){var h=R.normalize().x,L=h.redSqr(),w=L.redMul(h).redAdd(L.redMul(this.a)).redAdd(h);return 0===w.redSqrt().redSqr().cmp(w)},e(C,f.BasePoint),a.prototype.decodePoint=function(R,h){return this.point(M.toArray(R,h),1)},a.prototype.point=function(R,h){return new C(this,R,h)},a.prototype.pointFromJSON=function(R){return C.fromJSON(this,R)},C.prototype.precompute=function(){},C.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},C.fromJSON=function(R,h){return new C(R,h[0],h[1]||R.one)},C.prototype.inspect=function(){return this.isInfinity()?"":""},C.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},C.prototype.dbl=function(){var h=this.x.redAdd(this.z).redSqr(),w=this.x.redSub(this.z).redSqr(),D=h.redSub(w),S=h.redMul(w),k=D.redMul(w.redAdd(this.curve.a24.redMul(D)));return this.curve.point(S,k)},C.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},C.prototype.diffAdd=function(R,h){var L=this.x.redAdd(this.z),w=this.x.redSub(this.z),D=R.x.redAdd(R.z),k=R.x.redSub(R.z).redMul(L),E=D.redMul(w),B=h.z.redMul(k.redAdd(E).redSqr()),Z=h.x.redMul(k.redISub(E).redSqr());return this.curve.point(B,Z)},C.prototype.mul=function(R){for(var h=R.clone(),L=this,w=this.curve.point(null,null),S=[];0!==h.cmpn(0);h.iushrn(1))S.push(h.andln(1));for(var k=S.length-1;k>=0;k--)0===S[k]?(L=L.diffAdd(w,this),w=w.dbl()):(w=L.diffAdd(w,this),L=L.dbl());return w},C.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},C.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},C.prototype.eq=function(R){return 0===this.getX().cmp(R.getX())},C.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},C.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},1781:(Be,K,p)=>{"use strict";var t=p(1970),e=p(7433),f=p(3894),M=p(7902),a=t.assert;function C(h){M.call(this,"short",h),this.a=new e(h.a,16).toRed(this.red),this.b=new e(h.b,16).toRed(this.red),this.tinv=this.two.redInvm(),this.zeroA=0===this.a.fromRed().cmpn(0),this.threeA=0===this.a.fromRed().sub(this.p).cmpn(-3),this.endo=this._getEndomorphism(h),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function d(h,L,w,D){M.BasePoint.call(this,h,"affine"),null===L&&null===w?(this.x=null,this.y=null,this.inf=!0):(this.x=new e(L,16),this.y=new e(w,16),D&&(this.x.forceRed(this.curve.red),this.y.forceRed(this.curve.red)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.inf=!1)}function R(h,L,w,D){M.BasePoint.call(this,h,"jacobian"),null===L&&null===w&&null===D?(this.x=this.curve.one,this.y=this.curve.one,this.z=new e(0)):(this.x=new e(L,16),this.y=new e(w,16),this.z=new e(D,16)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.zOne=this.z===this.curve.one}f(C,M),Be.exports=C,C.prototype._getEndomorphism=function(L){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var w,D;if(L.beta)w=new e(L.beta,16).toRed(this.red);else{var S=this._getEndoRoots(this.p);w=(w=S[0].cmp(S[1])<0?S[0]:S[1]).toRed(this.red)}if(L.lambda)D=new e(L.lambda,16);else{var k=this._getEndoRoots(this.n);0===this.g.mul(k[0]).x.cmp(this.g.x.redMul(w))?D=k[0]:a(0===this.g.mul(D=k[1]).x.cmp(this.g.x.redMul(w)))}return{beta:w,lambda:D,basis:L.basis?L.basis.map(function(B){return{a:new e(B.a,16),b:new e(B.b,16)}}):this._getEndoBasis(D)}}},C.prototype._getEndoRoots=function(L){var w=L===this.p?this.red:e.mont(L),D=new e(2).toRed(w).redInvm(),S=D.redNeg(),k=new e(3).toRed(w).redNeg().redSqrt().redMul(D);return[S.redAdd(k).fromRed(),S.redSub(k).fromRed()]},C.prototype._getEndoBasis=function(L){for(var Y,ae,ee,ue,ie,re,ge,_e,x,w=this.n.ushrn(Math.floor(this.n.bitLength()/2)),D=L,S=this.n.clone(),k=new e(1),E=new e(0),B=new e(0),Z=new e(1),q=0;0!==D.cmpn(0);){var i=S.div(D);_e=S.sub(i.mul(D)),x=B.sub(i.mul(k));var r=Z.sub(i.mul(E));if(!ee&&_e.cmp(w)<0)Y=ge.neg(),ae=k,ee=_e.neg(),ue=x;else if(ee&&2==++q)break;ge=_e,S=D,D=_e,B=k,k=x,Z=E,E=r}ie=_e.neg(),re=x;var u=ee.sqr().add(ue.sqr());return ie.sqr().add(re.sqr()).cmp(u)>=0&&(ie=Y,re=ae),ee.negative&&(ee=ee.neg(),ue=ue.neg()),ie.negative&&(ie=ie.neg(),re=re.neg()),[{a:ee,b:ue},{a:ie,b:re}]},C.prototype._endoSplit=function(L){var w=this.endo.basis,D=w[0],S=w[1],k=S.b.mul(L).divRound(this.n),E=D.b.neg().mul(L).divRound(this.n),B=k.mul(D.a),Z=E.mul(S.a),Y=k.mul(D.b),ae=E.mul(S.b);return{k1:L.sub(B).sub(Z),k2:Y.add(ae).neg()}},C.prototype.pointFromX=function(L,w){(L=new e(L,16)).red||(L=L.toRed(this.red));var D=L.redSqr().redMul(L).redIAdd(L.redMul(this.a)).redIAdd(this.b),S=D.redSqrt();if(0!==S.redSqr().redSub(D).cmp(this.zero))throw new Error("invalid point");var k=S.fromRed().isOdd();return(w&&!k||!w&&k)&&(S=S.redNeg()),this.point(L,S)},C.prototype.validate=function(L){if(L.inf)return!0;var w=L.x,D=L.y,S=this.a.redMul(w),k=w.redSqr().redMul(w).redIAdd(S).redIAdd(this.b);return 0===D.redSqr().redISub(k).cmpn(0)},C.prototype._endoWnafMulAdd=function(L,w,D){for(var S=this._endoWnafT1,k=this._endoWnafT2,E=0;E":""},d.prototype.isInfinity=function(){return this.inf},d.prototype.add=function(L){if(this.inf)return L;if(L.inf)return this;if(this.eq(L))return this.dbl();if(this.neg().eq(L))return this.curve.point(null,null);if(0===this.x.cmp(L.x))return this.curve.point(null,null);var w=this.y.redSub(L.y);0!==w.cmpn(0)&&(w=w.redMul(this.x.redSub(L.x).redInvm()));var D=w.redSqr().redISub(this.x).redISub(L.x),S=w.redMul(this.x.redSub(D)).redISub(this.y);return this.curve.point(D,S)},d.prototype.dbl=function(){if(this.inf)return this;var L=this.y.redAdd(this.y);if(0===L.cmpn(0))return this.curve.point(null,null);var w=this.curve.a,D=this.x.redSqr(),S=L.redInvm(),k=D.redAdd(D).redIAdd(D).redIAdd(w).redMul(S),E=k.redSqr().redISub(this.x.redAdd(this.x)),B=k.redMul(this.x.redSub(E)).redISub(this.y);return this.curve.point(E,B)},d.prototype.getX=function(){return this.x.fromRed()},d.prototype.getY=function(){return this.y.fromRed()},d.prototype.mul=function(L){return L=new e(L,16),this.isInfinity()?this:this._hasDoubles(L)?this.curve._fixedNafMul(this,L):this.curve.endo?this.curve._endoWnafMulAdd([this],[L]):this.curve._wnafMul(this,L)},d.prototype.mulAdd=function(L,w,D){var S=[this,w],k=[L,D];return this.curve.endo?this.curve._endoWnafMulAdd(S,k):this.curve._wnafMulAdd(1,S,k,2)},d.prototype.jmulAdd=function(L,w,D){var S=[this,w],k=[L,D];return this.curve.endo?this.curve._endoWnafMulAdd(S,k,!0):this.curve._wnafMulAdd(1,S,k,2,!0)},d.prototype.eq=function(L){return this===L||this.inf===L.inf&&(this.inf||0===this.x.cmp(L.x)&&0===this.y.cmp(L.y))},d.prototype.neg=function(L){if(this.inf)return this;var w=this.curve.point(this.x,this.y.redNeg());if(L&&this.precomputed){var D=this.precomputed,S=function(k){return k.neg()};w.precomputed={naf:D.naf&&{wnd:D.naf.wnd,points:D.naf.points.map(S)},doubles:D.doubles&&{step:D.doubles.step,points:D.doubles.points.map(S)}}}return w},d.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},f(R,M.BasePoint),C.prototype.jpoint=function(L,w,D){return new R(this,L,w,D)},R.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var L=this.z.redInvm(),w=L.redSqr(),D=this.x.redMul(w),S=this.y.redMul(w).redMul(L);return this.curve.point(D,S)},R.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},R.prototype.add=function(L){if(this.isInfinity())return L;if(L.isInfinity())return this;var w=L.z.redSqr(),D=this.z.redSqr(),S=this.x.redMul(w),k=L.x.redMul(D),E=this.y.redMul(w.redMul(L.z)),B=L.y.redMul(D.redMul(this.z)),Z=S.redSub(k),Y=E.redSub(B);if(0===Z.cmpn(0))return 0!==Y.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var ae=Z.redSqr(),ee=ae.redMul(Z),ue=S.redMul(ae),ie=Y.redSqr().redIAdd(ee).redISub(ue).redISub(ue),re=Y.redMul(ue.redISub(ie)).redISub(E.redMul(ee)),ge=this.z.redMul(L.z).redMul(Z);return this.curve.jpoint(ie,re,ge)},R.prototype.mixedAdd=function(L){if(this.isInfinity())return L.toJ();if(L.isInfinity())return this;var w=this.z.redSqr(),D=this.x,S=L.x.redMul(w),k=this.y,E=L.y.redMul(w).redMul(this.z),B=D.redSub(S),Z=k.redSub(E);if(0===B.cmpn(0))return 0!==Z.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Y=B.redSqr(),ae=Y.redMul(B),ee=D.redMul(Y),ue=Z.redSqr().redIAdd(ae).redISub(ee).redISub(ee),ie=Z.redMul(ee.redISub(ue)).redISub(k.redMul(ae)),re=this.z.redMul(B);return this.curve.jpoint(ue,ie,re)},R.prototype.dblp=function(L){if(0===L)return this;if(this.isInfinity())return this;if(!L)return this.dbl();var w;if(this.curve.zeroA||this.curve.threeA){var D=this;for(w=0;w=0)return!1;if(D.redIAdd(k),0===this.x.cmp(D))return!0}},R.prototype.inspect=function(){return this.isInfinity()?"":""},R.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},2916:(Be,K,p)=>{"use strict";var R,t=K,e=p(7084),f=p(6270),a=p(1970).assert;function C(h){this.curve="short"===h.type?new f.short(h):"edwards"===h.type?new f.edwards(h):new f.mont(h),this.g=this.curve.g,this.n=this.curve.n,this.hash=h.hash,a(this.g.validate(),"Invalid curve"),a(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function d(h,L){Object.defineProperty(t,h,{configurable:!0,enumerable:!0,get:function(){var w=new C(L);return Object.defineProperty(t,h,{configurable:!0,enumerable:!0,value:w}),w}})}t.PresetCurve=C,d("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:e.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),d("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:e.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),d("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:e.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),d("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:e.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),d("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:e.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),d("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:e.sha256,gRed:!1,g:["9"]}),d("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:e.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{R=p(5150)}catch(h){R=void 0}d("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:e.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",R]})},7626:(Be,K,p)=>{"use strict";var t=p(7433),e=p(2438),f=p(1970),M=p(2916),a=p(7950),C=f.assert,d=p(1259),R=p(5957);function h(L){if(!(this instanceof h))return new h(L);"string"==typeof L&&(C(Object.prototype.hasOwnProperty.call(M,L),"Unknown curve "+L),L=M[L]),L instanceof M.PresetCurve&&(L={curve:L}),this.curve=L.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=L.curve.g,this.g.precompute(L.curve.n.bitLength()+1),this.hash=L.hash||L.curve.hash}Be.exports=h,h.prototype.keyPair=function(w){return new d(this,w)},h.prototype.keyFromPrivate=function(w,D){return d.fromPrivate(this,w,D)},h.prototype.keyFromPublic=function(w,D){return d.fromPublic(this,w,D)},h.prototype.genKeyPair=function(w){w||(w={});for(var D=new e({hash:this.hash,pers:w.pers,persEnc:w.persEnc||"utf8",entropy:w.entropy||a(this.hash.hmacStrength),entropyEnc:w.entropy&&w.entropyEnc||"utf8",nonce:this.n.toArray()}),S=this.n.byteLength(),k=this.n.sub(new t(2));;){var E=new t(D.generate(S));if(!(E.cmp(k)>0))return E.iaddn(1),this.keyFromPrivate(E)}},h.prototype._truncateToN=function(w,D){var S=8*w.byteLength()-this.n.bitLength();return S>0&&(w=w.ushrn(S)),!D&&w.cmp(this.n)>=0?w.sub(this.n):w},h.prototype.sign=function(w,D,S,k){"object"==typeof S&&(k=S,S=null),k||(k={}),D=this.keyFromPrivate(D,S),w=this._truncateToN(new t(w,16));for(var E=this.n.byteLength(),B=D.getPrivate().toArray("be",E),Z=w.toArray("be",E),Y=new e({hash:this.hash,entropy:B,nonce:Z,pers:k.pers,persEnc:k.persEnc||"utf8"}),ae=this.n.sub(new t(1)),ee=0;;ee++){var ue=k.k?k.k(ee):new t(Y.generate(this.n.byteLength()));if(!((ue=this._truncateToN(ue,!0)).cmpn(1)<=0||ue.cmp(ae)>=0)){var ie=this.g.mul(ue);if(!ie.isInfinity()){var re=ie.getX(),ge=re.umod(this.n);if(0!==ge.cmpn(0)){var q=ue.invm(this.n).mul(ge.mul(D.getPrivate()).iadd(w));if(0!==(q=q.umod(this.n)).cmpn(0)){var _e=(ie.getY().isOdd()?1:0)|(0!==re.cmp(ge)?2:0);return k.canonical&&q.cmp(this.nh)>0&&(q=this.n.sub(q),_e^=1),new R({r:ge,s:q,recoveryParam:_e})}}}}}},h.prototype.verify=function(w,D,S,k){w=this._truncateToN(new t(w,16)),S=this.keyFromPublic(S,k);var E=(D=new R(D,"hex")).r,B=D.s;if(E.cmpn(1)<0||E.cmp(this.n)>=0||B.cmpn(1)<0||B.cmp(this.n)>=0)return!1;var ee,Z=B.invm(this.n),Y=Z.mul(w).umod(this.n),ae=Z.mul(E).umod(this.n);return this.curve._maxwellTrick?!(ee=this.g.jmulAdd(Y,S.getPublic(),ae)).isInfinity()&&ee.eqXToP(E):!(ee=this.g.mulAdd(Y,S.getPublic(),ae)).isInfinity()&&0===ee.getX().umod(this.n).cmp(E)},h.prototype.recoverPubKey=function(L,w,D,S){C((3&D)===D,"The recovery param is more than two bits"),w=new R(w,S);var k=this.n,E=new t(L),B=w.r,Z=w.s,Y=1&D,ae=D>>1;if(B.cmp(this.curve.p.umod(this.curve.n))>=0&&ae)throw new Error("Unable to find sencond key candinate");B=this.curve.pointFromX(ae?B.add(this.curve.n):B,Y);var ee=w.r.invm(k),ue=k.sub(E).mul(ee).umod(k),ie=Z.mul(ee).umod(k);return this.g.mulAdd(ue,B,ie)},h.prototype.getKeyRecoveryParam=function(L,w,D,S){if(null!==(w=new R(w,S)).recoveryParam)return w.recoveryParam;for(var k=0;k<4;k++){var E;try{E=this.recoverPubKey(L,w,k)}catch(B){continue}if(E.eq(D))return k}throw new Error("Unable to find valid recovery factor")}},1259:(Be,K,p)=>{"use strict";var t=p(7433),f=p(1970).assert;function M(a,C){this.ec=a,this.priv=null,this.pub=null,C.priv&&this._importPrivate(C.priv,C.privEnc),C.pub&&this._importPublic(C.pub,C.pubEnc)}Be.exports=M,M.fromPublic=function(C,d,R){return d instanceof M?d:new M(C,{pub:d,pubEnc:R})},M.fromPrivate=function(C,d,R){return d instanceof M?d:new M(C,{priv:d,privEnc:R})},M.prototype.validate=function(){var C=this.getPublic();return C.isInfinity()?{result:!1,reason:"Invalid public key"}:C.validate()?C.mul(this.ec.curve.n).isInfinity()?{result:!0,reason:null}:{result:!1,reason:"Public key * N != O"}:{result:!1,reason:"Public key is not a point"}},M.prototype.getPublic=function(C,d){return"string"==typeof C&&(d=C,C=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),d?this.pub.encode(d,C):this.pub},M.prototype.getPrivate=function(C){return"hex"===C?this.priv.toString(16,2):this.priv},M.prototype._importPrivate=function(C,d){this.priv=new t(C,d||16),this.priv=this.priv.umod(this.ec.curve.n)},M.prototype._importPublic=function(C,d){if(C.x||C.y)return"mont"===this.ec.curve.type?f(C.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&f(C.x&&C.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(C.x,C.y));this.pub=this.ec.curve.decodePoint(C,d)},M.prototype.derive=function(C){return C.validate()||f(C.validate(),"public point not validated"),C.mul(this.priv).getX()},M.prototype.sign=function(C,d,R){return this.ec.sign(C,this,d,R)},M.prototype.verify=function(C,d){return this.ec.verify(C,d,this)},M.prototype.inspect=function(){return""}},5957:(Be,K,p)=>{"use strict";var t=p(7433),e=p(1970),f=e.assert;function M(h,L){if(h instanceof M)return h;this._importDER(h,L)||(f(h.r&&h.s,"Signature without r or s"),this.r=new t(h.r,16),this.s=new t(h.s,16),this.recoveryParam=void 0===h.recoveryParam?null:h.recoveryParam)}function a(){this.place=0}function C(h,L){var w=h[L.place++];if(!(128&w))return w;var D=15&w;if(0===D||D>4)return!1;for(var S=0,k=0,E=L.place;k>>=0;return!(S<=127)&&(L.place=E,S)}function d(h){for(var L=0,w=h.length-1;!h[L]&&!(128&h[L+1])&&L>>3);for(h.push(128|w);--w;)h.push(L>>>(w<<3)&255);h.push(L)}}Be.exports=M,M.prototype._importDER=function(L,w){L=e.toArray(L,w);var D=new a;if(48!==L[D.place++])return!1;var S=C(L,D);if(!1===S||S+D.place!==L.length||2!==L[D.place++])return!1;var k=C(L,D);if(!1===k)return!1;var E=L.slice(D.place,k+D.place);if(D.place+=k,2!==L[D.place++])return!1;var B=C(L,D);if(!1===B||L.length!==B+D.place)return!1;var Z=L.slice(D.place,B+D.place);if(0===E[0]){if(!(128&E[1]))return!1;E=E.slice(1)}if(0===Z[0]){if(!(128&Z[1]))return!1;Z=Z.slice(1)}return this.r=new t(E),this.s=new t(Z),this.recoveryParam=null,!0},M.prototype.toDER=function(L){var w=this.r.toArray(),D=this.s.toArray();for(128&w[0]&&(w=[0].concat(w)),128&D[0]&&(D=[0].concat(D)),w=d(w),D=d(D);!(D[0]||128&D[1]);)D=D.slice(1);var S=[2];R(S,w.length),(S=S.concat(w)).push(2),R(S,D.length);var k=S.concat(D),E=[48];return R(E,k.length),E=E.concat(k),e.encode(E,L)}},1885:(Be,K,p)=>{"use strict";var t=p(7084),e=p(2916),f=p(1970),M=f.assert,a=f.parseBytes,C=p(7535),d=p(8241);function R(h){if(M("ed25519"===h,"only tested with ed25519 so far"),!(this instanceof R))return new R(h);this.curve=h=e[h].curve,this.g=h.g,this.g.precompute(h.n.bitLength()+1),this.pointClass=h.point().constructor,this.encodingLength=Math.ceil(h.n.bitLength()/8),this.hash=t.sha512}Be.exports=R,R.prototype.sign=function(L,w){L=a(L);var D=this.keyFromSecret(w),S=this.hashInt(D.messagePrefix(),L),k=this.g.mul(S),E=this.encodePoint(k),B=this.hashInt(E,D.pubBytes(),L).mul(D.priv()),Z=S.add(B).umod(this.curve.n);return this.makeSignature({R:k,S:Z,Rencoded:E})},R.prototype.verify=function(L,w,D){L=a(L),w=this.makeSignature(w);var S=this.keyFromPublic(D),k=this.hashInt(w.Rencoded(),S.pubBytes(),L),E=this.g.mul(w.S());return w.R().add(S.pub().mul(k)).eq(E)},R.prototype.hashInt=function(){for(var L=this.hash(),w=0;w{"use strict";var t=p(1970),e=t.assert,f=t.parseBytes,M=t.cachedProperty;function a(C,d){this.eddsa=C,this._secret=f(d.secret),C.isPoint(d.pub)?this._pub=d.pub:this._pubBytes=f(d.pub)}a.fromPublic=function(d,R){return R instanceof a?R:new a(d,{pub:R})},a.fromSecret=function(d,R){return R instanceof a?R:new a(d,{secret:R})},a.prototype.secret=function(){return this._secret},M(a,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),M(a,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),M(a,"privBytes",function(){var d=this.eddsa,R=this.hash(),h=d.encodingLength-1,L=R.slice(0,d.encodingLength);return L[0]&=248,L[h]&=127,L[h]|=64,L}),M(a,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),M(a,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),M(a,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),a.prototype.sign=function(d){return e(this._secret,"KeyPair can only verify"),this.eddsa.sign(d,this)},a.prototype.verify=function(d,R){return this.eddsa.verify(d,R,this)},a.prototype.getSecret=function(d){return e(this._secret,"KeyPair is public only"),t.encode(this.secret(),d)},a.prototype.getPublic=function(d){return t.encode(this.pubBytes(),d)},Be.exports=a},8241:(Be,K,p)=>{"use strict";var t=p(7433),e=p(1970),f=e.assert,M=e.cachedProperty,a=e.parseBytes;function C(d,R){this.eddsa=d,"object"!=typeof R&&(R=a(R)),Array.isArray(R)&&(R={R:R.slice(0,d.encodingLength),S:R.slice(d.encodingLength)}),f(R.R&&R.S,"Signature without R or S"),d.isPoint(R.R)&&(this._R=R.R),R.S instanceof t&&(this._S=R.S),this._Rencoded=Array.isArray(R.R)?R.R:R.Rencoded,this._Sencoded=Array.isArray(R.S)?R.S:R.Sencoded}M(C,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),M(C,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),M(C,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),M(C,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),C.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},C.prototype.toHex=function(){return e.encode(this.toBytes(),"hex").toUpperCase()},Be.exports=C},5150:Be=>{Be.exports={doubles:{step:4,points:[["e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a","f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821"],["8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508","11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf"],["175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739","d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695"],["363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640","4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9"],["8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c","4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36"],["723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda","96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f"],["eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa","5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999"],["100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0","cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09"],["e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d","9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d"],["feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d","e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088"],["da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1","9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d"],["53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0","5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8"],["8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047","10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a"],["385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862","283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453"],["6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7","7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160"],["3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd","56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0"],["85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83","7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6"],["948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a","53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589"],["6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8","bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17"],["e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d","4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda"],["e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725","7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd"],["213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754","4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2"],["4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c","17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6"],["fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6","6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f"],["76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39","c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01"],["c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891","893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3"],["d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b","febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f"],["b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03","2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7"],["e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d","eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78"],["a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070","7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1"],["90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4","e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150"],["8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da","662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82"],["e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11","1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc"],["8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e","efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b"],["e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41","2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51"],["b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef","67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45"],["d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8","db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120"],["324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d","648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84"],["4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96","35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d"],["9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd","ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d"],["6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5","9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8"],["a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266","40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8"],["7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71","34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac"],["928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac","c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f"],["85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751","1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962"],["ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e","493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907"],["827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241","c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec"],["eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3","be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d"],["e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f","4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414"],["1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19","aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd"],["146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be","b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0"],["fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9","6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811"],["da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2","8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1"],["a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13","7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c"],["174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c","ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73"],["959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba","2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd"],["d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151","e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405"],["64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073","d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589"],["8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458","38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e"],["13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b","69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27"],["bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366","d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1"],["8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa","40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482"],["8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0","620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945"],["dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787","7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573"],["f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e","ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82"]]},naf:{wnd:7,points:[["f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9","388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672"],["2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4","d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6"],["5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc","6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da"],["acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe","cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37"],["774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb","d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b"],["f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8","ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81"],["d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e","581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58"],["defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34","4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77"],["2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c","85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a"],["352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5","321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c"],["2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f","2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67"],["9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714","73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402"],["daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729","a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55"],["c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db","2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482"],["6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4","e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82"],["1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5","b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396"],["605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479","2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49"],["62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d","80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf"],["80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f","1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a"],["7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb","d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7"],["d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9","eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933"],["49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963","758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a"],["77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74","958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6"],["f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530","e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37"],["463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b","5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e"],["f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247","cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6"],["caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1","cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476"],["2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120","4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40"],["7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435","91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61"],["754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18","673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683"],["e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8","59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5"],["186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb","3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b"],["df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f","55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417"],["5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143","efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868"],["290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba","e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a"],["af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45","f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6"],["766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a","744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996"],["59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e","c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e"],["f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8","e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d"],["7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c","30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2"],["948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519","e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e"],["7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab","100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437"],["3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca","ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311"],["d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf","8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4"],["1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610","68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575"],["733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4","f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d"],["15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c","d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d"],["a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940","edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629"],["e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980","a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06"],["311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3","66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374"],["34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf","9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee"],["f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63","4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1"],["d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448","fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b"],["32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf","5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661"],["7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5","8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6"],["ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6","8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e"],["16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5","5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d"],["eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99","f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc"],["78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51","f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4"],["494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5","42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c"],["a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5","204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b"],["c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997","4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913"],["841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881","73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154"],["5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5","39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865"],["36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66","d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc"],["336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726","ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224"],["8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede","6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e"],["1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94","60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6"],["85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31","3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511"],["29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51","b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b"],["a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252","ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2"],["4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5","cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c"],["d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b","6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3"],["ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4","322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d"],["af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f","6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700"],["e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889","2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4"],["591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246","b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196"],["11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984","998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4"],["3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a","b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257"],["cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030","bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13"],["c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197","6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096"],["c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593","c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38"],["a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef","21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f"],["347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38","60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448"],["da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a","49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a"],["c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111","5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4"],["4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502","7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437"],["3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea","be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7"],["cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26","8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d"],["b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986","39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a"],["d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e","62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54"],["48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4","25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77"],["dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda","ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517"],["6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859","cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10"],["e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f","f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125"],["eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c","6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e"],["13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942","fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1"],["ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a","1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2"],["b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80","5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423"],["ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d","438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8"],["8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1","cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758"],["52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63","c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375"],["e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352","6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d"],["7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193","ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec"],["5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00","9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0"],["32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58","ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c"],["e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7","d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4"],["8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8","c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f"],["4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e","67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649"],["3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d","cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826"],["674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b","299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5"],["d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f","f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87"],["30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6","462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b"],["be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297","62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc"],["93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a","7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c"],["b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c","ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f"],["d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52","4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a"],["d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb","bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46"],["463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065","bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f"],["7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917","603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03"],["74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9","cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08"],["30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3","553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8"],["9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57","712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373"],["176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66","ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3"],["75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8","9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8"],["809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721","9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1"],["1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180","4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9"]]}}},1970:(Be,K,p)=>{"use strict";var t=K,e=p(7433),f=p(2391),M=p(8195);t.assert=f,t.toArray=M.toArray,t.zero2=M.zero2,t.toHex=M.toHex,t.encode=M.encode,t.getNAF=function a(L,w,D){var S=new Array(Math.max(L.bitLength(),D)+1);S.fill(0);for(var k=1<(k>>1)-1?(k>>1)-Y:Y):Z=0,S[B]=Z,E.iushrn(1)}return S},t.getJSF=function C(L,w){var D=[[],[]];L=L.clone(),w=w.clone();for(var E,S=0,k=0;L.cmpn(-S)>0||w.cmpn(-k)>0;){var Y,ae,B=L.andln(3)+S&3,Z=w.andln(3)+k&3;3===B&&(B=-1),3===Z&&(Z=-1),Y=0==(1&B)?0:3!=(E=L.andln(7)+S&7)&&5!==E||2!==Z?B:-B,D[0].push(Y),ae=0==(1&Z)?0:3!=(E=w.andln(7)+k&7)&&5!==E||2!==B?Z:-Z,D[1].push(ae),2*S===Y+1&&(S=1-S),2*k===ae+1&&(k=1-k),L.iushrn(1),w.iushrn(1)}return D},t.cachedProperty=function d(L,w,D){var S="_"+w;L.prototype[w]=function(){return void 0!==this[S]?this[S]:this[S]=D.call(this)}},t.parseBytes=function R(L){return"string"==typeof L?t.toArray(L,"hex"):L},t.intFromLE=function h(L){return new e(L,"hex","le")}},7433:function(Be,K,p){!function(t,e){"use strict";function f(x,i){if(!x)throw new Error(i||"Assertion failed")}function M(x,i){x.super_=i;var r=function(){};r.prototype=i.prototype,x.prototype=new r,x.prototype.constructor=x}function a(x,i,r){if(a.isBN(x))return x;this.negative=0,this.words=null,this.length=0,this.red=null,null!==x&&(("le"===i||"be"===i)&&(r=i,i=10),this._init(x||0,i||10,r||"be"))}var C;"object"==typeof t?t.exports=a:e.BN=a,a.BN=a,a.wordSize=26;try{C="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:p(5568).Buffer}catch(x){}function d(x,i){var r=x.charCodeAt(i);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function R(x,i,r){var u=d(x,r);return r-1>=i&&(u|=d(x,r-1)<<4),u}function h(x,i,r,u){for(var c=0,v=Math.min(x.length,r),T=i;T=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[v]|=(T=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);else if("le"===u)for(c=0,v=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=R(i,r,c)<=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,v=1;v<=67108863;v*=r)c++;c--,v=v/r|0;for(var T=i.length-u,I=T%c,y=Math.min(T,T-I)+u,n=0,_=u;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var L=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(x,i,r){r.negative=i.negative^x.negative;var u=x.length+i.length|0;r.length=u,u=u-1|0;var c=0|x.words[0],v=0|i.words[0],T=c*v,y=T/67108864|0;r.words[0]=67108863&T;for(var n=1;n>>26,V=67108863&y,N=Math.min(n,i.length-1),H=Math.max(0,n-x.length+1);H<=N;H++)_+=(T=(c=0|x.words[n-H|0])*(v=0|i.words[H])+V)/67108864|0,V=67108863&T;r.words[n]=0|V,y=0|_}return 0!==y?r.words[n]=0|y:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,v=0,T=0;T>>24-c&16777215)||T!==this.length-1?L[6-y.length]+y+u:y+u,(c+=2)>=26&&(c-=26,T--)}for(0!==v&&(u=v.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],_=D[i];u="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(_).toString(i);u=(V=V.idivn(_)).isZero()?N+u:L[n-N.length]+N+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==C),this.toArrayLike(C,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),v=u||Math.max(1,c);f(c<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0"),this.strip();var y,n,T="le"===r,I=new i(v),_=this.clone();if(T){for(n=0;!_.isZero();n++)y=_.andln(255),_.iushrn(8),I[n]=y;for(;n=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var v=0,T=0;T>>26;for(;0!==v&&T>>26;if(this.length=u.length,0!==v)this.words[this.length]=v,this.length++;else if(u!==this)for(;Ti.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,v,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,v=i):(c=i,v=this);for(var T=0,I=0;I>26,this.words[I]=67108863&r;for(;0!==T&&I>26,this.words[I]=67108863&r;if(0===T&&I>>13,X=0|c[1],he=8191&X,be=X>>>13,Pe=0|c[2],Ee=8191&Pe,j=Pe>>>13,Ve=0|c[3],Me=8191&Ve,J=Ve>>>13,Ie=0|c[4],ut=8191&Ie,Oe=Ie>>>13,we=0|c[5],ce=8191&we,Te=we>>>13,xe=0|c[6],W=8191&xe,te=xe>>>13,Ce=0|c[7],fe=8191&Ce,Q=Ce>>>13,ft=0|c[8],tt=8191&ft,Dt=ft>>>13,di=0|c[9],Yt=8191&di,Zt=di>>>13,ui=0|v[0],Ot=8191&ui,Nt=ui>>>13,gt=0|v[1],it=8191>,bt=gt>>>13,ei=0|v[2],Qt=8191&ei,Re=ei>>>13,ke=0|v[3],de=8191&ke,ye=ke>>>13,ht=0|v[4],mt=8191&ht,Ft=ht>>>13,nt=0|v[5],He=8191&nt,rt=nt>>>13,et=0|v[6],Ae=8191&et,Ge=et>>>13,ot=0|v[7],lt=8191&ot,Ct=ot>>>13,mi=0|v[8],Jt=8191&mi,$t=mi>>>13,Qi=0|v[9],hi=8191&Qi,si=Qi>>>13;u.negative=i.negative^r.negative,u.length=19;var Ji=(I+(y=Math.imul(N,Ot))|0)+((8191&(n=(n=Math.imul(N,Nt))+Math.imul(H,Ot)|0))<<13)|0;I=((_=Math.imul(H,Nt))+(n>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,y=Math.imul(he,Ot),n=(n=Math.imul(he,Nt))+Math.imul(be,Ot)|0,_=Math.imul(be,Nt);var Zi=(I+(y=y+Math.imul(N,it)|0)|0)+((8191&(n=(n=n+Math.imul(N,bt)|0)+Math.imul(H,it)|0))<<13)|0;I=((_=_+Math.imul(H,bt)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,y=Math.imul(Ee,Ot),n=(n=Math.imul(Ee,Nt))+Math.imul(j,Ot)|0,_=Math.imul(j,Nt),y=y+Math.imul(he,it)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(be,it)|0,_=_+Math.imul(be,bt)|0;var Vi=(I+(y=y+Math.imul(N,Qt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Re)|0)+Math.imul(H,Qt)|0))<<13)|0;I=((_=_+Math.imul(H,Re)|0)+(n>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,y=Math.imul(Me,Ot),n=(n=Math.imul(Me,Nt))+Math.imul(J,Ot)|0,_=Math.imul(J,Nt),y=y+Math.imul(Ee,it)|0,n=(n=n+Math.imul(Ee,bt)|0)+Math.imul(j,it)|0,_=_+Math.imul(j,bt)|0,y=y+Math.imul(he,Qt)|0,n=(n=n+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0,_=_+Math.imul(be,Re)|0;var Ui=(I+(y=y+Math.imul(N,de)|0)|0)+((8191&(n=(n=n+Math.imul(N,ye)|0)+Math.imul(H,de)|0))<<13)|0;I=((_=_+Math.imul(H,ye)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,y=Math.imul(ut,Ot),n=(n=Math.imul(ut,Nt))+Math.imul(Oe,Ot)|0,_=Math.imul(Oe,Nt),y=y+Math.imul(Me,it)|0,n=(n=n+Math.imul(Me,bt)|0)+Math.imul(J,it)|0,_=_+Math.imul(J,bt)|0,y=y+Math.imul(Ee,Qt)|0,n=(n=n+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,_=_+Math.imul(j,Re)|0,y=y+Math.imul(he,de)|0,n=(n=n+Math.imul(he,ye)|0)+Math.imul(be,de)|0,_=_+Math.imul(be,ye)|0;var Ue=(I+(y=y+Math.imul(N,mt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ft)|0)+Math.imul(H,mt)|0))<<13)|0;I=((_=_+Math.imul(H,Ft)|0)+(n>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,y=Math.imul(ce,Ot),n=(n=Math.imul(ce,Nt))+Math.imul(Te,Ot)|0,_=Math.imul(Te,Nt),y=y+Math.imul(ut,it)|0,n=(n=n+Math.imul(ut,bt)|0)+Math.imul(Oe,it)|0,_=_+Math.imul(Oe,bt)|0,y=y+Math.imul(Me,Qt)|0,n=(n=n+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,_=_+Math.imul(J,Re)|0,y=y+Math.imul(Ee,de)|0,n=(n=n+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,_=_+Math.imul(j,ye)|0,y=y+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0,_=_+Math.imul(be,Ft)|0;var Tt=(I+(y=y+Math.imul(N,He)|0)|0)+((8191&(n=(n=n+Math.imul(N,rt)|0)+Math.imul(H,He)|0))<<13)|0;I=((_=_+Math.imul(H,rt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,y=Math.imul(W,Ot),n=(n=Math.imul(W,Nt))+Math.imul(te,Ot)|0,_=Math.imul(te,Nt),y=y+Math.imul(ce,it)|0,n=(n=n+Math.imul(ce,bt)|0)+Math.imul(Te,it)|0,_=_+Math.imul(Te,bt)|0,y=y+Math.imul(ut,Qt)|0,n=(n=n+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,_=_+Math.imul(Oe,Re)|0,y=y+Math.imul(Me,de)|0,n=(n=n+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,_=_+Math.imul(J,ye)|0,y=y+Math.imul(Ee,mt)|0,n=(n=n+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,_=_+Math.imul(j,Ft)|0,y=y+Math.imul(he,He)|0,n=(n=n+Math.imul(he,rt)|0)+Math.imul(be,He)|0,_=_+Math.imul(be,rt)|0;var ve=(I+(y=y+Math.imul(N,Ae)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ge)|0)+Math.imul(H,Ae)|0))<<13)|0;I=((_=_+Math.imul(H,Ge)|0)+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,y=Math.imul(fe,Ot),n=(n=Math.imul(fe,Nt))+Math.imul(Q,Ot)|0,_=Math.imul(Q,Nt),y=y+Math.imul(W,it)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(te,it)|0,_=_+Math.imul(te,bt)|0,y=y+Math.imul(ce,Qt)|0,n=(n=n+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,_=_+Math.imul(Te,Re)|0,y=y+Math.imul(ut,de)|0,n=(n=n+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,_=_+Math.imul(Oe,ye)|0,y=y+Math.imul(Me,mt)|0,n=(n=n+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,_=_+Math.imul(J,Ft)|0,y=y+Math.imul(Ee,He)|0,n=(n=n+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,_=_+Math.imul(j,rt)|0,y=y+Math.imul(he,Ae)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0,_=_+Math.imul(be,Ge)|0;var Qe=(I+(y=y+Math.imul(N,lt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ct)|0)+Math.imul(H,lt)|0))<<13)|0;I=((_=_+Math.imul(H,Ct)|0)+(n>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,y=Math.imul(tt,Ot),n=(n=Math.imul(tt,Nt))+Math.imul(Dt,Ot)|0,_=Math.imul(Dt,Nt),y=y+Math.imul(fe,it)|0,n=(n=n+Math.imul(fe,bt)|0)+Math.imul(Q,it)|0,_=_+Math.imul(Q,bt)|0,y=y+Math.imul(W,Qt)|0,n=(n=n+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,_=_+Math.imul(te,Re)|0,y=y+Math.imul(ce,de)|0,n=(n=n+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,_=_+Math.imul(Te,ye)|0,y=y+Math.imul(ut,mt)|0,n=(n=n+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,_=_+Math.imul(Oe,Ft)|0,y=y+Math.imul(Me,He)|0,n=(n=n+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,_=_+Math.imul(J,rt)|0,y=y+Math.imul(Ee,Ae)|0,n=(n=n+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,_=_+Math.imul(j,Ge)|0,y=y+Math.imul(he,lt)|0,n=(n=n+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0,_=_+Math.imul(be,Ct)|0;var _t=(I+(y=y+Math.imul(N,Jt)|0)|0)+((8191&(n=(n=n+Math.imul(N,$t)|0)+Math.imul(H,Jt)|0))<<13)|0;I=((_=_+Math.imul(H,$t)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,y=Math.imul(Yt,Ot),n=(n=Math.imul(Yt,Nt))+Math.imul(Zt,Ot)|0,_=Math.imul(Zt,Nt),y=y+Math.imul(tt,it)|0,n=(n=n+Math.imul(tt,bt)|0)+Math.imul(Dt,it)|0,_=_+Math.imul(Dt,bt)|0,y=y+Math.imul(fe,Qt)|0,n=(n=n+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,_=_+Math.imul(Q,Re)|0,y=y+Math.imul(W,de)|0,n=(n=n+Math.imul(W,ye)|0)+Math.imul(te,de)|0,_=_+Math.imul(te,ye)|0,y=y+Math.imul(ce,mt)|0,n=(n=n+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,_=_+Math.imul(Te,Ft)|0,y=y+Math.imul(ut,He)|0,n=(n=n+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,_=_+Math.imul(Oe,rt)|0,y=y+Math.imul(Me,Ae)|0,n=(n=n+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,_=_+Math.imul(J,Ge)|0,y=y+Math.imul(Ee,lt)|0,n=(n=n+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,_=_+Math.imul(j,Ct)|0,y=y+Math.imul(he,Jt)|0,n=(n=n+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0,_=_+Math.imul(be,$t)|0;var se=(I+(y=y+Math.imul(N,hi)|0)|0)+((8191&(n=(n=n+Math.imul(N,si)|0)+Math.imul(H,hi)|0))<<13)|0;I=((_=_+Math.imul(H,si)|0)+(n>>>13)|0)+(se>>>26)|0,se&=67108863,y=Math.imul(Yt,it),n=(n=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,_=Math.imul(Zt,bt),y=y+Math.imul(tt,Qt)|0,n=(n=n+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,_=_+Math.imul(Dt,Re)|0,y=y+Math.imul(fe,de)|0,n=(n=n+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,_=_+Math.imul(Q,ye)|0,y=y+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,_=_+Math.imul(te,Ft)|0,y=y+Math.imul(ce,He)|0,n=(n=n+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,_=_+Math.imul(Te,rt)|0,y=y+Math.imul(ut,Ae)|0,n=(n=n+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,_=_+Math.imul(Oe,Ge)|0,y=y+Math.imul(Me,lt)|0,n=(n=n+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,_=_+Math.imul(J,Ct)|0,y=y+Math.imul(Ee,Jt)|0,n=(n=n+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,_=_+Math.imul(j,$t)|0;var Je=(I+(y=y+Math.imul(he,hi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;I=((_=_+Math.imul(be,si)|0)+(n>>>13)|0)+(Je>>>26)|0,Je&=67108863,y=Math.imul(Yt,Qt),n=(n=Math.imul(Yt,Re))+Math.imul(Zt,Qt)|0,_=Math.imul(Zt,Re),y=y+Math.imul(tt,de)|0,n=(n=n+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,_=_+Math.imul(Dt,ye)|0,y=y+Math.imul(fe,mt)|0,n=(n=n+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,_=_+Math.imul(Q,Ft)|0,y=y+Math.imul(W,He)|0,n=(n=n+Math.imul(W,rt)|0)+Math.imul(te,He)|0,_=_+Math.imul(te,rt)|0,y=y+Math.imul(ce,Ae)|0,n=(n=n+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,_=_+Math.imul(Te,Ge)|0,y=y+Math.imul(ut,lt)|0,n=(n=n+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,_=_+Math.imul(Oe,Ct)|0,y=y+Math.imul(Me,Jt)|0,n=(n=n+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,_=_+Math.imul(J,$t)|0;var xt=(I+(y=y+Math.imul(Ee,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0))<<13)|0;I=((_=_+Math.imul(j,si)|0)+(n>>>13)|0)+(xt>>>26)|0,xt&=67108863,y=Math.imul(Yt,de),n=(n=Math.imul(Yt,ye))+Math.imul(Zt,de)|0,_=Math.imul(Zt,ye),y=y+Math.imul(tt,mt)|0,n=(n=n+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,_=_+Math.imul(Dt,Ft)|0,y=y+Math.imul(fe,He)|0,n=(n=n+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,_=_+Math.imul(Q,rt)|0,y=y+Math.imul(W,Ae)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,_=_+Math.imul(te,Ge)|0,y=y+Math.imul(ce,lt)|0,n=(n=n+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,_=_+Math.imul(Te,Ct)|0,y=y+Math.imul(ut,Jt)|0,n=(n=n+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,_=_+Math.imul(Oe,$t)|0;var Bt=(I+(y=y+Math.imul(Me,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Me,si)|0)+Math.imul(J,hi)|0))<<13)|0;I=((_=_+Math.imul(J,si)|0)+(n>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,y=Math.imul(Yt,mt),n=(n=Math.imul(Yt,Ft))+Math.imul(Zt,mt)|0,_=Math.imul(Zt,Ft),y=y+Math.imul(tt,He)|0,n=(n=n+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,_=_+Math.imul(Dt,rt)|0,y=y+Math.imul(fe,Ae)|0,n=(n=n+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,_=_+Math.imul(Q,Ge)|0,y=y+Math.imul(W,lt)|0,n=(n=n+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,_=_+Math.imul(te,Ct)|0,y=y+Math.imul(ce,Jt)|0,n=(n=n+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,_=_+Math.imul(Te,$t)|0;var xi=(I+(y=y+Math.imul(ut,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0))<<13)|0;I=((_=_+Math.imul(Oe,si)|0)+(n>>>13)|0)+(xi>>>26)|0,xi&=67108863,y=Math.imul(Yt,He),n=(n=Math.imul(Yt,rt))+Math.imul(Zt,He)|0,_=Math.imul(Zt,rt),y=y+Math.imul(tt,Ae)|0,n=(n=n+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,_=_+Math.imul(Dt,Ge)|0,y=y+Math.imul(fe,lt)|0,n=(n=n+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,_=_+Math.imul(Q,Ct)|0,y=y+Math.imul(W,Jt)|0,n=(n=n+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,_=_+Math.imul(te,$t)|0;var Ti=(I+(y=y+Math.imul(ce,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0))<<13)|0;I=((_=_+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,y=Math.imul(Yt,Ae),n=(n=Math.imul(Yt,Ge))+Math.imul(Zt,Ae)|0,_=Math.imul(Zt,Ge),y=y+Math.imul(tt,lt)|0,n=(n=n+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,_=_+Math.imul(Dt,Ct)|0,y=y+Math.imul(fe,Jt)|0,n=(n=n+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,_=_+Math.imul(Q,$t)|0;var $i=(I+(y=y+Math.imul(W,hi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(te,hi)|0))<<13)|0;I=((_=_+Math.imul(te,si)|0)+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,y=Math.imul(Yt,lt),n=(n=Math.imul(Yt,Ct))+Math.imul(Zt,lt)|0,_=Math.imul(Zt,Ct),y=y+Math.imul(tt,Jt)|0,n=(n=n+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,_=_+Math.imul(Dt,$t)|0;var Wi=(I+(y=y+Math.imul(fe,hi)|0)|0)+((8191&(n=(n=n+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0))<<13)|0;I=((_=_+Math.imul(Q,si)|0)+(n>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,y=Math.imul(Yt,Jt),n=(n=Math.imul(Yt,$t))+Math.imul(Zt,Jt)|0,_=Math.imul(Zt,$t);var on=(I+(y=y+Math.imul(tt,hi)|0)|0)+((8191&(n=(n=n+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0))<<13)|0;I=((_=_+Math.imul(Dt,si)|0)+(n>>>13)|0)+(on>>>26)|0,on&=67108863;var fn=(I+(y=Math.imul(Yt,hi))|0)+((8191&(n=(n=Math.imul(Yt,si))+Math.imul(Zt,hi)|0))<<13)|0;return I=((_=Math.imul(Zt,si))+(n>>>13)|0)+(fn>>>26)|0,fn&=67108863,T[0]=Ji,T[1]=Zi,T[2]=Vi,T[3]=Ui,T[4]=Ue,T[5]=Tt,T[6]=ve,T[7]=Qe,T[8]=_t,T[9]=se,T[10]=Je,T[11]=xt,T[12]=Bt,T[13]=xi,T[14]=Ti,T[15]=$i,T[16]=Wi,T[17]=on,T[18]=fn,0!==I&&(T[19]=I,u.length++),u};function Z(x,i,r){return(new Y).mulp(x,i,r)}function Y(x,i){this.x=x,this.y=i}Math.imul||(E=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?E(this,i,r):c<63?k(this,i,r):c<1024?function B(x,i,r){r.negative=i.negative^x.negative,r.length=x.length+i.length;for(var u=0,c=0,v=0;v>>26)|0)>>>26,T&=67108863}r.words[v]=I,u=T,T=c}return 0!==u?r.words[v]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,v,T){for(var I=0;I>>=1)v++;return 1<>>=13),v>>>=13;for(T=2*r;T>=26,r+=c/67108864|0,r+=v>>>26,this.words[u]=67108863&v}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function S(x){for(var i=new Array(x.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var v,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var T=0;for(v=0;v>>26-r}T&&(this.words[v]=T,this.length++)}if(0!==u){for(v=this.length-1;v>=0;v--)this.words[v+u]=this.words[v];for(v=0;v=0),c=r?(r-r%26)/26:0;var v=i%26,T=Math.min((i-v)/26,this.length),I=67108863^67108863>>>v<T)for(this.length-=T,n=0;n=0&&(0!==_||n>=c);n--){var V=0|this.words[n];this.words[n]=_<<26-v|V>>>v,_=V&I}return y&&0!==_&&(y.words[y.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(y/67108864|0),this.words[v+u]=67108863&T}for(;v>26,this.words[v+u]=67108863&T;if(0===I)return this.strip();for(f(-1===I),I=0,v=0;v>26,this.words[v]=67108863&T;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),v=i,T=0|v.words[v.length-1];0!=(u=26-this._countBits(T))&&(v=v.ushln(u),c.iushln(u),T=0|v.words[v.length-1]);var n,y=c.length-v.length;if("mod"!==r){(n=new a(null)).length=y+1,n.words=new Array(n.length);for(var _=0;_=0;N--){var H=67108864*(0|c.words[v.length+N])+(0|c.words[v.length+N-1]);for(H=Math.min(H/T|0,67108863),c._ishlnsubmul(v,H,N);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(v,1,N),c.isZero()||(c.negative^=1);n&&(n.words[N]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(T=this.neg().divmod(i,r),"mod"!==r&&(c=T.div.neg()),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.iadd(i)),{div:c,mod:v}):0===this.negative&&0!==i.negative?(T=this.divmod(i.neg(),r),"mod"!==r&&(c=T.div.neg()),{div:c,mod:T.mod}):0!=(this.negative&i.negative)?(T=this.neg().divmod(i.neg(),r),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.isub(i)),{div:T.div,mod:v}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,v,T},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),v=i.andln(1),T=u.cmp(c);return T<0||1===v&&0===T?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=new a(0),I=new a(1),y=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++y;for(var n=u.clone(),_=r.clone();!r.isZero();){for(var V=0,N=1;0==(r.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(r.iushrn(V);V-- >0;)(c.isOdd()||v.isOdd())&&(c.iadd(n),v.isub(_)),c.iushrn(1),v.iushrn(1);for(var H=0,X=1;0==(u.words[0]&X)&&H<26;++H,X<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(T.isOdd()||I.isOdd())&&(T.iadd(n),I.isub(_)),T.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(T),v.isub(I)):(u.isub(r),T.isub(c),I.isub(v))}return{a:T,b:I,gcd:u.iushln(y)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var V,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,y=1;0==(r.words[0]&y)&&I<26;++I,y<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(T),c.iushrn(1);for(var n=0,_=1;0==(u.words[0]&_)&&n<26;++n,_<<=1);if(n>0)for(u.iushrn(n);n-- >0;)v.isOdd()&&v.iadd(T),v.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(v)):(u.isub(r),v.isub(c))}return(V=0===r.cmpn(1)?c:v).cmpn(0)<0&&V.iadd(i),V},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var v=r.cmp(u);if(v<0){var T=r;r=u,u=T}else if(0===v||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[T]=I&=67108863}return 0!==v&&(this.words[T]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],v=0|i.words[u];if(c!==v){cv&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new q(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ae={k256:null,p224:null,p192:null,p25519:null};function ee(x,i){this.name=x,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ue(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ie(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function re(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function ge(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function q(x){if("string"==typeof x){var i=a._prime(x);this.m=i.p,this.prime=i}else f(x.gtn(1),"modulus must be greater than 1"),this.m=x,this.prime=null}function _e(x){q.call(this,x),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},ee.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},ee.prototype.split=function(i,r){i.iushrn(this.n,0,r)},ee.prototype.imulK=function(i){return i.imul(this.k)},M(ue,ee),ue.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),v=0;v>>22,T=I}i.words[v-10]=T>>>=22,i.length-=0===T&&i.length>10?10:9},ue.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=v,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ae[i])return ae[i];var r;if("k256"===i)r=new ue;else if("p224"===i)r=new ie;else if("p192"===i)r=new re;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new ge}return ae[i]=r,r},q.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},q.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},q.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},q.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},q.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},q.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},q.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},q.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},q.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},q.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},q.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},q.prototype.isqr=function(i){return this.imul(i,i.clone())},q.prototype.sqr=function(i){return this.mul(i,i)},q.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),v=0;!c.isZero()&&0===c.andln(1);)v++,c.iushrn(1);f(!c.isZero());var T=new a(1).toRed(this),I=T.redNeg(),y=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,y).cmp(I);)n.redIAdd(I);for(var _=this.pow(n,c),V=this.pow(i,c.addn(1).iushrn(1)),N=this.pow(i,c),H=v;0!==N.cmp(T);){for(var X=N,he=0;0!==X.cmp(T);he++)X=X.redSqr();f(he=0;v--){for(var _=r.words[v],V=n-1;V>=0;V--){var N=_>>V&1;T!==c[0]&&(T=this.sqr(T)),0!==N||0!==I?(I<<=1,I|=N,(4==++y||0===v&&0===V)&&(T=this.mul(T,c[I]),y=0,I=0)):y=0}n=26}return T},q.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},q.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new _e(i)},M(_e,q),_e.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},_e.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},_e.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},8419:Be=>{"use strict";Be.exports=function(p){for(var t=[],e=p.length,f=0;f=55296&&M<=56319&&e>f+1){var a=p.charCodeAt(f+1);a>=56320&&a<=57343&&(M=1024*(M-55296)+a-56320+65536,f+=1)}M<128?t.push(M):M<2048?(t.push(M>>6|192),t.push(63&M|128)):M<55296||M>=57344&&M<65536?(t.push(M>>12|224),t.push(M>>6&63|128),t.push(63&M|128)):M>=65536&&M<=1114111?(t.push(M>>18|240),t.push(M>>12&63|128),t.push(M>>6&63|128),t.push(63&M|128)):t.push(239,191,189)}return new Uint8Array(t).buffer}},9069:Be=>{"use strict";var t,K="object"==typeof Reflect?Reflect:null,p=K&&"function"==typeof K.apply?K.apply:function(ee,ue,ie){return Function.prototype.apply.call(ee,ue,ie)};t=K&&"function"==typeof K.ownKeys?K.ownKeys:Object.getOwnPropertySymbols?function(ee){return Object.getOwnPropertyNames(ee).concat(Object.getOwnPropertySymbols(ee))}:function(ee){return Object.getOwnPropertyNames(ee)};var f=Number.isNaN||function(ee){return ee!=ee};function M(){M.init.call(this)}Be.exports=M,Be.exports.once=function B(ae,ee){return new Promise(function(ue,ie){function re(q){ae.removeListener(ee,ge),ie(q)}function ge(){"function"==typeof ae.removeListener&&ae.removeListener("error",re),ue([].slice.call(arguments))}Y(ae,ee,ge,{once:!0}),"error"!==ee&&function Z(ae,ee,ue){"function"==typeof ae.on&&Y(ae,"error",ee,ue)}(ae,re,{once:!0})})},M.EventEmitter=M,M.prototype._events=void 0,M.prototype._eventsCount=0,M.prototype._maxListeners=void 0;var a=10;function C(ae){if("function"!=typeof ae)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof ae)}function d(ae){return void 0===ae._maxListeners?M.defaultMaxListeners:ae._maxListeners}function R(ae,ee,ue,ie){var re,ge,q;if(C(ue),void 0===(ge=ae._events)?(ge=ae._events=Object.create(null),ae._eventsCount=0):(void 0!==ge.newListener&&(ae.emit("newListener",ee,ue.listener?ue.listener:ue),ge=ae._events),q=ge[ee]),void 0===q)q=ge[ee]=ue,++ae._eventsCount;else if("function"==typeof q?q=ge[ee]=ie?[ue,q]:[q,ue]:ie?q.unshift(ue):q.push(ue),(re=d(ae))>0&&q.length>re&&!q.warned){q.warned=!0;var _e=new Error("Possible EventEmitter memory leak detected. "+q.length+" "+String(ee)+" listeners added. Use emitter.setMaxListeners() to increase limit");_e.name="MaxListenersExceededWarning",_e.emitter=ae,_e.type=ee,_e.count=q.length,function e(ae){console&&console.warn&&console.warn(ae)}(_e)}return ae}function h(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function L(ae,ee,ue){var ie={fired:!1,wrapFn:void 0,target:ae,type:ee,listener:ue},re=h.bind(ie);return re.listener=ue,ie.wrapFn=re,re}function w(ae,ee,ue){var ie=ae._events;if(void 0===ie)return[];var re=ie[ee];return void 0===re?[]:"function"==typeof re?ue?[re.listener||re]:[re]:ue?function E(ae){for(var ee=new Array(ae.length),ue=0;ue0&&(q=ue[0]),q instanceof Error)throw q;var _e=new Error("Unhandled error."+(q?" ("+q.message+")":""));throw _e.context=q,_e}var x=ge[ee];if(void 0===x)return!1;if("function"==typeof x)p(x,this,ue);else{var i=x.length,r=S(x,i);for(ie=0;ie=0;q--)if(ie[q]===ue||ie[q].listener===ue){_e=ie[q].listener,ge=q;break}if(ge<0)return this;0===ge?ie.shift():function k(ae,ee){for(;ee+1=0;re--)this.removeListener(ee,ue[re]);return this},M.prototype.listeners=function(ee){return w(this,ee,!0)},M.prototype.rawListeners=function(ee){return w(this,ee,!1)},M.listenerCount=function(ae,ee){return"function"==typeof ae.listenerCount?ae.listenerCount(ee):D.call(ae,ee)},M.prototype.listenerCount=D,M.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},347:(Be,K,p)=>{var t=p(3502).Buffer,e=p(8095);Be.exports=function f(M,a,C,d){if(t.isBuffer(M)||(M=t.from(M,"binary")),a&&(t.isBuffer(a)||(a=t.from(a,"binary")),8!==a.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var R=C/8,h=t.alloc(R),L=t.alloc(d||0),w=t.alloc(0);R>0||d>0;){var D=new e;D.update(w),D.update(M),a&&D.update(a),w=D.digest();var S=0;if(R>0){var k=h.length-R;S=Math.min(R,w.length),w.copy(h,k,0,S),R-=S}if(S0){var E=L.length-d,B=Math.min(d,w.length-S);w.copy(L,E,S,S+B),d-=B}}return w.fill(0),{key:h,iv:L}}},9650:(Be,K,p)=>{"use strict";var t=p(3502).Buffer,e=p(5685).Transform;function a(C){e.call(this),this._block=t.allocUnsafe(C),this._blockSize=C,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}p(3894)(a,e),a.prototype._transform=function(C,d,R){var h=null;try{this.update(C,d)}catch(L){h=L}R(h)},a.prototype._flush=function(C){var d=null;try{this.push(this.digest())}catch(R){d=R}C(d)},a.prototype.update=function(C,d){if(function M(C,d){if(!t.isBuffer(C)&&"string"!=typeof C)throw new TypeError(d+" must be a string or a buffer")}(C,"Data"),this._finalized)throw new Error("Digest already called");t.isBuffer(C)||(C=t.from(C,d));for(var R=this._block,h=0;this._blockOffset+C.length-h>=this._blockSize;){for(var L=this._blockOffset;L0;++w)this._length[w]+=D,(D=this._length[w]/4294967296|0)>0&&(this._length[w]-=4294967296*D);return this},a.prototype._update=function(){throw new Error("_update is not implemented")},a.prototype.digest=function(C){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var d=this._digest();void 0!==C&&(d=d.toString(C)),this._block.fill(0),this._blockOffset=0;for(var R=0;R<4;++R)this._length[R]=0;return d},a.prototype._digest=function(){throw new Error("_digest is not implemented")},Be.exports=a},7084:(Be,K,p)=>{var t=K;t.utils=p(9299),t.common=p(3800),t.sha=p(4962),t.ripemd=p(9458),t.hmac=p(2194),t.sha1=t.sha.sha1,t.sha256=t.sha.sha256,t.sha224=t.sha.sha224,t.sha384=t.sha.sha384,t.sha512=t.sha.sha512,t.ripemd160=t.ripemd.ripemd160},3800:(Be,K,p)=>{"use strict";var t=p(9299),e=p(2391);function f(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}K.BlockHash=f,f.prototype.update=function(a,C){if(a=t.toArray(a,C),this.pending=this.pending?this.pending.concat(a):a,this.pendingTotal+=a.length,this.pending.length>=this._delta8){var d=(a=this.pending).length%this._delta8;this.pending=a.slice(a.length-d,a.length),0===this.pending.length&&(this.pending=null),a=t.join32(a,0,a.length-d,this.endian);for(var R=0;R>>24&255,R[h++]=a>>>16&255,R[h++]=a>>>8&255,R[h++]=255&a}else for(R[h++]=255&a,R[h++]=a>>>8&255,R[h++]=a>>>16&255,R[h++]=a>>>24&255,R[h++]=0,R[h++]=0,R[h++]=0,R[h++]=0,L=8;L{"use strict";var t=p(9299),e=p(2391);function f(M,a,C){if(!(this instanceof f))return new f(M,a,C);this.Hash=M,this.blockSize=M.blockSize/8,this.outSize=M.outSize/8,this.inner=null,this.outer=null,this._init(t.toArray(a,C))}Be.exports=f,f.prototype._init=function(a){a.length>this.blockSize&&(a=(new this.Hash).update(a).digest()),e(a.length<=this.blockSize);for(var C=a.length;C{"use strict";var t=p(9299),e=p(3800),f=t.rotl32,M=t.sum32,a=t.sum32_3,C=t.sum32_4,d=e.BlockHash;function R(){if(!(this instanceof R))return new R;d.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function h(B,Z,Y,ae){return B<=15?Z^Y^ae:B<=31?Z&Y|~Z&ae:B<=47?(Z|~Y)^ae:B<=63?Z&ae|Y&~ae:Z^(Y|~ae)}function w(B){return B<=15?1352829926:B<=31?1548603684:B<=47?1836072691:B<=63?2053994217:0}t.inherits(R,d),K.ripemd160=R,R.blockSize=512,R.outSize=160,R.hmacStrength=192,R.padLength=64,R.prototype._update=function(Z,Y){for(var ae=this.h[0],ee=this.h[1],ue=this.h[2],ie=this.h[3],re=this.h[4],ge=ae,q=ee,_e=ue,x=ie,i=re,r=0;r<80;r++){var u=M(f(C(ae,h(r,ee,ue,ie),Z[D[r]+Y],(B=r)<=15?0:B<=31?1518500249:B<=47?1859775393:B<=63?2400959708:2840853838),k[r]),re);ae=re,re=ie,ie=f(ue,10),ue=ee,ee=u,u=M(f(C(ge,h(79-r,q,_e,x),Z[S[r]+Y],w(r)),E[r]),i),ge=i,i=x,x=f(_e,10),_e=q,q=u}var B;u=a(this.h[1],ue,x),this.h[1]=a(this.h[2],ie,i),this.h[2]=a(this.h[3],re,ge),this.h[3]=a(this.h[4],ae,q),this.h[4]=a(this.h[0],ee,_e),this.h[0]=u},R.prototype._digest=function(Z){return"hex"===Z?t.toHex32(this.h,"little"):t.split32(this.h,"little")};var D=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],S=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],k=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],E=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]},4962:(Be,K,p)=>{"use strict";K.sha1=p(9007),K.sha224=p(55),K.sha256=p(9342),K.sha384=p(8634),K.sha512=p(39)},9007:(Be,K,p)=>{"use strict";var t=p(9299),e=p(3800),f=p(3113),M=t.rotl32,a=t.sum32,C=t.sum32_5,d=f.ft_1,R=e.BlockHash,h=[1518500249,1859775393,2400959708,3395469782];function L(){if(!(this instanceof L))return new L;R.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}t.inherits(L,R),Be.exports=L,L.blockSize=512,L.outSize=160,L.hmacStrength=80,L.padLength=64,L.prototype._update=function(D,S){for(var k=this.W,E=0;E<16;E++)k[E]=D[S+E];for(;E{"use strict";var t=p(9299),e=p(9342);function f(){if(!(this instanceof f))return new f;e.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}t.inherits(f,e),Be.exports=f,f.blockSize=512,f.outSize=224,f.hmacStrength=192,f.padLength=64,f.prototype._digest=function(a){return"hex"===a?t.toHex32(this.h.slice(0,7),"big"):t.split32(this.h.slice(0,7),"big")}},9342:(Be,K,p)=>{"use strict";var t=p(9299),e=p(3800),f=p(3113),M=p(2391),a=t.sum32,C=t.sum32_4,d=t.sum32_5,R=f.ch32,h=f.maj32,L=f.s0_256,w=f.s1_256,D=f.g0_256,S=f.g1_256,k=e.BlockHash,E=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function B(){if(!(this instanceof B))return new B;k.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=E,this.W=new Array(64)}t.inherits(B,k),Be.exports=B,B.blockSize=512,B.outSize=256,B.hmacStrength=192,B.padLength=64,B.prototype._update=function(Y,ae){for(var ee=this.W,ue=0;ue<16;ue++)ee[ue]=Y[ae+ue];for(;ue{"use strict";var t=p(9299),e=p(39);function f(){if(!(this instanceof f))return new f;e.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}t.inherits(f,e),Be.exports=f,f.blockSize=1024,f.outSize=384,f.hmacStrength=192,f.padLength=128,f.prototype._digest=function(a){return"hex"===a?t.toHex32(this.h.slice(0,12),"big"):t.split32(this.h.slice(0,12),"big")}},39:(Be,K,p)=>{"use strict";var t=p(9299),e=p(3800),f=p(2391),M=t.rotr64_hi,a=t.rotr64_lo,C=t.shr64_hi,d=t.shr64_lo,R=t.sum64,h=t.sum64_hi,L=t.sum64_lo,w=t.sum64_4_hi,D=t.sum64_4_lo,S=t.sum64_5_hi,k=t.sum64_5_lo,E=e.BlockHash,B=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591];function Z(){if(!(this instanceof Z))return new Z;E.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=B,this.W=new Array(160)}function Y(u,c,v,T,I){var y=u&v^~u&I;return y<0&&(y+=4294967296),y}function ae(u,c,v,T,I,y){var n=c&T^~c&y;return n<0&&(n+=4294967296),n}function ee(u,c,v,T,I){var y=u&v^u&I^v&I;return y<0&&(y+=4294967296),y}function ue(u,c,v,T,I,y){var n=c&T^c&y^T&y;return n<0&&(n+=4294967296),n}function ie(u,c){var y=M(u,c,28)^M(c,u,2)^M(c,u,7);return y<0&&(y+=4294967296),y}function re(u,c){var y=a(u,c,28)^a(c,u,2)^a(c,u,7);return y<0&&(y+=4294967296),y}function ge(u,c){var y=M(u,c,14)^M(u,c,18)^M(c,u,9);return y<0&&(y+=4294967296),y}function q(u,c){var y=a(u,c,14)^a(u,c,18)^a(c,u,9);return y<0&&(y+=4294967296),y}function _e(u,c){var y=M(u,c,1)^M(u,c,8)^C(u,c,7);return y<0&&(y+=4294967296),y}function x(u,c){var y=a(u,c,1)^a(u,c,8)^d(u,c,7);return y<0&&(y+=4294967296),y}function i(u,c){var y=M(u,c,19)^M(c,u,29)^C(u,c,6);return y<0&&(y+=4294967296),y}function r(u,c){var y=a(u,c,19)^a(c,u,29)^d(u,c,6);return y<0&&(y+=4294967296),y}t.inherits(Z,E),Be.exports=Z,Z.blockSize=1024,Z.outSize=512,Z.hmacStrength=192,Z.padLength=128,Z.prototype._prepareBlock=function(c,v){for(var T=this.W,I=0;I<32;I++)T[I]=c[v+I];for(;I{"use strict";var e=p(9299).rotr32;function M(w,D,S){return w&D^~w&S}function a(w,D,S){return w&D^w&S^D&S}function C(w,D,S){return w^D^S}K.ft_1=function f(w,D,S,k){return 0===w?M(D,S,k):1===w||3===w?C(D,S,k):2===w?a(D,S,k):void 0},K.ch32=M,K.maj32=a,K.p32=C,K.s0_256=function d(w){return e(w,2)^e(w,13)^e(w,22)},K.s1_256=function R(w){return e(w,6)^e(w,11)^e(w,25)},K.g0_256=function h(w){return e(w,7)^e(w,18)^w>>>3},K.g1_256=function L(w){return e(w,17)^e(w,19)^w>>>10}},9299:(Be,K,p)=>{"use strict";var t=p(2391),e=p(3894);function f(r,u){return!(55296!=(64512&r.charCodeAt(u))||u<0||u+1>=r.length)&&56320==(64512&r.charCodeAt(u+1))}function C(r){return(r>>>24|r>>>8&65280|r<<8&16711680|(255&r)<<24)>>>0}function R(r){return 1===r.length?"0"+r:r}function h(r){return 7===r.length?"0"+r:6===r.length?"00"+r:5===r.length?"000"+r:4===r.length?"0000"+r:3===r.length?"00000"+r:2===r.length?"000000"+r:1===r.length?"0000000"+r:r}K.inherits=e,K.toArray=function M(r,u){if(Array.isArray(r))return r.slice();if(!r)return[];var c=[];if("string"==typeof r)if(u){if("hex"===u)for((r=r.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(r="0"+r),T=0;T>6|192,c[v++]=63&I|128):f(r,T)?(I=65536+((1023&I)<<10)+(1023&r.charCodeAt(++T)),c[v++]=I>>18|240,c[v++]=I>>12&63|128,c[v++]=I>>6&63|128,c[v++]=63&I|128):(c[v++]=I>>12|224,c[v++]=I>>6&63|128,c[v++]=63&I|128)}else for(T=0;T>>0;return I},K.split32=function w(r,u){for(var c=new Array(4*r.length),v=0,T=0;v>>24,c[T+1]=I>>>16&255,c[T+2]=I>>>8&255,c[T+3]=255&I):(c[T+3]=I>>>24,c[T+2]=I>>>16&255,c[T+1]=I>>>8&255,c[T]=255&I)}return c},K.rotr32=function D(r,u){return r>>>u|r<<32-u},K.rotl32=function S(r,u){return r<>>32-u},K.sum32=function k(r,u){return r+u>>>0},K.sum32_3=function E(r,u,c){return r+u+c>>>0},K.sum32_4=function B(r,u,c,v){return r+u+c+v>>>0},K.sum32_5=function Z(r,u,c,v,T){return r+u+c+v+T>>>0},K.sum64=function Y(r,u,c,v){var y=v+r[u+1]>>>0;r[u]=(y>>0,r[u+1]=y},K.sum64_hi=function ae(r,u,c,v){return(u+v>>>0>>0},K.sum64_lo=function ee(r,u,c,v){return u+v>>>0},K.sum64_4_hi=function ue(r,u,c,v,T,I,y,n){var _=0,V=u;return _+=(V=V+v>>>0)>>0)>>0)>>0},K.sum64_4_lo=function ie(r,u,c,v,T,I,y,n){return u+v+I+n>>>0},K.sum64_5_hi=function re(r,u,c,v,T,I,y,n,_,V){var N=0,H=u;return N+=(H=H+v>>>0)>>0)>>0)>>0)>>0},K.sum64_5_lo=function ge(r,u,c,v,T,I,y,n,_,V){return u+v+I+n+V>>>0},K.rotr64_hi=function q(r,u,c){return(u<<32-c|r>>>c)>>>0},K.rotr64_lo=function _e(r,u,c){return(r<<32-c|u>>>c)>>>0},K.shr64_hi=function x(r,u,c){return r>>>c},K.shr64_lo=function i(r,u,c){return(r<<32-c|u>>>c)>>>0}},2438:(Be,K,p)=>{"use strict";var t=p(7084),e=p(8195),f=p(2391);function M(a){if(!(this instanceof M))return new M(a);this.hash=a.hash,this.predResist=!!a.predResist,this.outLen=this.hash.outSize,this.minEntropy=a.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var C=e.toArray(a.entropy,a.entropyEnc||"hex"),d=e.toArray(a.nonce,a.nonceEnc||"hex"),R=e.toArray(a.pers,a.persEnc||"hex");f(C.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(C,d,R)}Be.exports=M,M.prototype._init=function(C,d,R){var h=C.concat(d).concat(R);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var L=0;L=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(C.concat(R||[])),this._reseed=1},M.prototype.generate=function(C,d,R,h){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof d&&(h=R,R=d,d=null),R&&(R=e.toArray(R,h||"hex"),this._update(R));for(var L=[];L.length{K.read=function(p,t,e,f,M){var a,C,d=8*M-f-1,R=(1<>1,L=-7,w=e?M-1:0,D=e?-1:1,S=p[t+w];for(w+=D,a=S&(1<<-L)-1,S>>=-L,L+=d;L>0;a=256*a+p[t+w],w+=D,L-=8);for(C=a&(1<<-L)-1,a>>=-L,L+=f;L>0;C=256*C+p[t+w],w+=D,L-=8);if(0===a)a=1-h;else{if(a===R)return C?NaN:1/0*(S?-1:1);C+=Math.pow(2,f),a-=h}return(S?-1:1)*C*Math.pow(2,a-f)},K.write=function(p,t,e,f,M,a){var C,d,R,h=8*a-M-1,L=(1<>1,D=23===M?Math.pow(2,-24)-Math.pow(2,-77):0,S=f?0:a-1,k=f?1:-1,E=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(d=isNaN(t)?1:0,C=L):(C=Math.floor(Math.log(t)/Math.LN2),t*(R=Math.pow(2,-C))<1&&(C--,R*=2),(t+=C+w>=1?D/R:D*Math.pow(2,1-w))*R>=2&&(C++,R/=2),C+w>=L?(d=0,C=L):C+w>=1?(d=(t*R-1)*Math.pow(2,M),C+=w):(d=t*Math.pow(2,w-1)*Math.pow(2,M),C=0));M>=8;p[e+S]=255&d,S+=k,d/=256,M-=8);for(C=C<0;p[e+S]=255&C,S+=k,C/=256,h-=8);p[e+S-k]|=128*E}},3894:Be=>{Be.exports="function"==typeof Object.create?function(p,t){t&&(p.super_=t,p.prototype=Object.create(t.prototype,{constructor:{value:p,enumerable:!1,writable:!0,configurable:!0}}))}:function(p,t){if(t){p.super_=t;var e=function(){};e.prototype=t.prototype,p.prototype=new e,p.prototype.constructor=p}}},717:(Be,K,p)=>{"use strict";var t=p(623);function e(f){return!0===t(f)&&"[object Object]"===Object.prototype.toString.call(f)}Be.exports=function(M){var a,C;return!(!1===e(M)||(a=M.constructor,"function"!=typeof a)||(C=a.prototype,!1===e(C))||!1===C.hasOwnProperty("isPrototypeOf"))}},623:Be=>{"use strict";Be.exports=function(p){return null!=p&&"object"==typeof p&&!1===Array.isArray(p)}},2872:Be=>{var K=Object.prototype.toString;function p(h){return"function"==typeof h.constructor?h.constructor.name:null}Be.exports=function(L){if(void 0===L)return"undefined";if(null===L)return"null";var w=typeof L;if("boolean"===w)return"boolean";if("string"===w)return"string";if("number"===w)return"number";if("symbol"===w)return"symbol";if("function"===w)return function a(h,L){return"GeneratorFunction"===p(h)}(L)?"generatorfunction":"function";if(function t(h){return Array.isArray?Array.isArray(h):h instanceof Array}(L))return"array";if(function R(h){return!(!h.constructor||"function"!=typeof h.constructor.isBuffer)&&h.constructor.isBuffer(h)}(L))return"buffer";if(function d(h){try{if("number"==typeof h.length&&"function"==typeof h.callee)return!0}catch(L){if(-1!==L.message.indexOf("callee"))return!0}return!1}(L))return"arguments";if(function f(h){return h instanceof Date||"function"==typeof h.toDateString&&"function"==typeof h.getDate&&"function"==typeof h.setDate}(L))return"date";if(function e(h){return h instanceof Error||"string"==typeof h.message&&h.constructor&&"number"==typeof h.constructor.stackTraceLimit}(L))return"error";if(function M(h){return h instanceof RegExp||"string"==typeof h.flags&&"boolean"==typeof h.ignoreCase&&"boolean"==typeof h.multiline&&"boolean"==typeof h.global}(L))return"regexp";switch(p(L)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(function C(h){return"function"==typeof h.throw&&"function"==typeof h.return&&"function"==typeof h.next}(L))return"generator";switch(w=K.call(L)){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return w.slice(8,-1).toLowerCase().replace(/\s/g,"")}},8095:(Be,K,p)=>{"use strict";var t=p(3894),e=p(9650),f=p(3502).Buffer,M=new Array(16);function a(){e.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function C(w,D){return w<>>32-D}function d(w,D,S,k,E,B,Z){return C(w+(D&S|~D&k)+E+B|0,Z)+D|0}function R(w,D,S,k,E,B,Z){return C(w+(D&k|S&~k)+E+B|0,Z)+D|0}function h(w,D,S,k,E,B,Z){return C(w+(D^S^k)+E+B|0,Z)+D|0}function L(w,D,S,k,E,B,Z){return C(w+(S^(D|~k))+E+B|0,Z)+D|0}t(a,e),a.prototype._update=function(){for(var w=M,D=0;D<16;++D)w[D]=this._block.readInt32LE(4*D);var S=this._a,k=this._b,E=this._c,B=this._d;S=d(S,k,E,B,w[0],3614090360,7),B=d(B,S,k,E,w[1],3905402710,12),E=d(E,B,S,k,w[2],606105819,17),k=d(k,E,B,S,w[3],3250441966,22),S=d(S,k,E,B,w[4],4118548399,7),B=d(B,S,k,E,w[5],1200080426,12),E=d(E,B,S,k,w[6],2821735955,17),k=d(k,E,B,S,w[7],4249261313,22),S=d(S,k,E,B,w[8],1770035416,7),B=d(B,S,k,E,w[9],2336552879,12),E=d(E,B,S,k,w[10],4294925233,17),k=d(k,E,B,S,w[11],2304563134,22),S=d(S,k,E,B,w[12],1804603682,7),B=d(B,S,k,E,w[13],4254626195,12),E=d(E,B,S,k,w[14],2792965006,17),S=R(S,k=d(k,E,B,S,w[15],1236535329,22),E,B,w[1],4129170786,5),B=R(B,S,k,E,w[6],3225465664,9),E=R(E,B,S,k,w[11],643717713,14),k=R(k,E,B,S,w[0],3921069994,20),S=R(S,k,E,B,w[5],3593408605,5),B=R(B,S,k,E,w[10],38016083,9),E=R(E,B,S,k,w[15],3634488961,14),k=R(k,E,B,S,w[4],3889429448,20),S=R(S,k,E,B,w[9],568446438,5),B=R(B,S,k,E,w[14],3275163606,9),E=R(E,B,S,k,w[3],4107603335,14),k=R(k,E,B,S,w[8],1163531501,20),S=R(S,k,E,B,w[13],2850285829,5),B=R(B,S,k,E,w[2],4243563512,9),E=R(E,B,S,k,w[7],1735328473,14),S=h(S,k=R(k,E,B,S,w[12],2368359562,20),E,B,w[5],4294588738,4),B=h(B,S,k,E,w[8],2272392833,11),E=h(E,B,S,k,w[11],1839030562,16),k=h(k,E,B,S,w[14],4259657740,23),S=h(S,k,E,B,w[1],2763975236,4),B=h(B,S,k,E,w[4],1272893353,11),E=h(E,B,S,k,w[7],4139469664,16),k=h(k,E,B,S,w[10],3200236656,23),S=h(S,k,E,B,w[13],681279174,4),B=h(B,S,k,E,w[0],3936430074,11),E=h(E,B,S,k,w[3],3572445317,16),k=h(k,E,B,S,w[6],76029189,23),S=h(S,k,E,B,w[9],3654602809,4),B=h(B,S,k,E,w[12],3873151461,11),E=h(E,B,S,k,w[15],530742520,16),S=L(S,k=h(k,E,B,S,w[2],3299628645,23),E,B,w[0],4096336452,6),B=L(B,S,k,E,w[7],1126891415,10),E=L(E,B,S,k,w[14],2878612391,15),k=L(k,E,B,S,w[5],4237533241,21),S=L(S,k,E,B,w[12],1700485571,6),B=L(B,S,k,E,w[3],2399980690,10),E=L(E,B,S,k,w[10],4293915773,15),k=L(k,E,B,S,w[1],2240044497,21),S=L(S,k,E,B,w[8],1873313359,6),B=L(B,S,k,E,w[15],4264355552,10),E=L(E,B,S,k,w[6],2734768916,15),k=L(k,E,B,S,w[13],1309151649,21),S=L(S,k,E,B,w[4],4149444226,6),B=L(B,S,k,E,w[11],3174756917,10),E=L(E,B,S,k,w[2],718787259,15),k=L(k,E,B,S,w[9],3951481745,21),this._a=this._a+S|0,this._b=this._b+k|0,this._c=this._c+E|0,this._d=this._d+B|0},a.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var w=f.allocUnsafe(16);return w.writeInt32LE(this._a,0),w.writeInt32LE(this._b,4),w.writeInt32LE(this._c,8),w.writeInt32LE(this._d,12),w},Be.exports=a},7079:(Be,K,p)=>{var t=p(1378),e=p(7950);function f(M){this.rand=M||new e.Rand}Be.exports=f,f.create=function(a){return new f(a)},f.prototype._randbelow=function(a){var C=a.bitLength(),d=Math.ceil(C/8);do{var R=new t(this.rand.generate(d))}while(R.cmp(a)>=0);return R},f.prototype._randrange=function(a,C){var d=C.sub(a);return a.add(this._randbelow(d))},f.prototype.test=function(a,C,d){var R=a.bitLength(),h=t.mont(a),L=new t(1).toRed(h);C||(C=Math.max(1,R/48|0));for(var w=a.subn(1),D=0;!w.testn(D);D++);for(var S=a.shrn(D),k=w.toRed(h);C>0;C--){var B=this._randrange(new t(2),w);d&&d(B);var Z=B.toRed(h).redPow(S);if(0!==Z.cmp(L)&&0!==Z.cmp(k)){for(var Y=1;Y0;C--){var k=this._randrange(new t(2),L),E=a.gcd(k);if(0!==E.cmpn(1))return E;var B=k.toRed(R).redPow(D);if(0!==B.cmp(h)&&0!==B.cmp(S)){for(var Z=1;Z=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function R(x,i,r){var u=d(x,r);return r-1>=i&&(u|=d(x,r-1)<<4),u}function h(x,i,r,u){for(var c=0,v=Math.min(x.length,r),T=i;T=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[v]|=(T=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);else if("le"===u)for(c=0,v=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=R(i,r,c)<=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,v=1;v<=67108863;v*=r)c++;c--,v=v/r|0;for(var T=i.length-u,I=T%c,y=Math.min(T,T-I)+u,n=0,_=u;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var L=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(x,i,r){r.negative=i.negative^x.negative;var u=x.length+i.length|0;r.length=u,u=u-1|0;var c=0|x.words[0],v=0|i.words[0],T=c*v,y=T/67108864|0;r.words[0]=67108863&T;for(var n=1;n>>26,V=67108863&y,N=Math.min(n,i.length-1),H=Math.max(0,n-x.length+1);H<=N;H++)_+=(T=(c=0|x.words[n-H|0])*(v=0|i.words[H])+V)/67108864|0,V=67108863&T;r.words[n]=0|V,y=0|_}return 0!==y?r.words[n]=0|y:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,v=0,T=0;T>>24-c&16777215)||T!==this.length-1?L[6-y.length]+y+u:y+u,(c+=2)>=26&&(c-=26,T--)}for(0!==v&&(u=v.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],_=D[i];u="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(_).toString(i);u=(V=V.idivn(_)).isZero()?N+u:L[n-N.length]+N+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==C),this.toArrayLike(C,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),v=u||Math.max(1,c);f(c<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0"),this.strip();var y,n,T="le"===r,I=new i(v),_=this.clone();if(T){for(n=0;!_.isZero();n++)y=_.andln(255),_.iushrn(8),I[n]=y;for(;n=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var v=0,T=0;T>>26;for(;0!==v&&T>>26;if(this.length=u.length,0!==v)this.words[this.length]=v,this.length++;else if(u!==this)for(;Ti.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,v,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,v=i):(c=i,v=this);for(var T=0,I=0;I>26,this.words[I]=67108863&r;for(;0!==T&&I>26,this.words[I]=67108863&r;if(0===T&&I>>13,X=0|c[1],he=8191&X,be=X>>>13,Pe=0|c[2],Ee=8191&Pe,j=Pe>>>13,Ve=0|c[3],Me=8191&Ve,J=Ve>>>13,Ie=0|c[4],ut=8191&Ie,Oe=Ie>>>13,we=0|c[5],ce=8191&we,Te=we>>>13,xe=0|c[6],W=8191&xe,te=xe>>>13,Ce=0|c[7],fe=8191&Ce,Q=Ce>>>13,ft=0|c[8],tt=8191&ft,Dt=ft>>>13,di=0|c[9],Yt=8191&di,Zt=di>>>13,ui=0|v[0],Ot=8191&ui,Nt=ui>>>13,gt=0|v[1],it=8191>,bt=gt>>>13,ei=0|v[2],Qt=8191&ei,Re=ei>>>13,ke=0|v[3],de=8191&ke,ye=ke>>>13,ht=0|v[4],mt=8191&ht,Ft=ht>>>13,nt=0|v[5],He=8191&nt,rt=nt>>>13,et=0|v[6],Ae=8191&et,Ge=et>>>13,ot=0|v[7],lt=8191&ot,Ct=ot>>>13,mi=0|v[8],Jt=8191&mi,$t=mi>>>13,Qi=0|v[9],hi=8191&Qi,si=Qi>>>13;u.negative=i.negative^r.negative,u.length=19;var Ji=(I+(y=Math.imul(N,Ot))|0)+((8191&(n=(n=Math.imul(N,Nt))+Math.imul(H,Ot)|0))<<13)|0;I=((_=Math.imul(H,Nt))+(n>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,y=Math.imul(he,Ot),n=(n=Math.imul(he,Nt))+Math.imul(be,Ot)|0,_=Math.imul(be,Nt);var Zi=(I+(y=y+Math.imul(N,it)|0)|0)+((8191&(n=(n=n+Math.imul(N,bt)|0)+Math.imul(H,it)|0))<<13)|0;I=((_=_+Math.imul(H,bt)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,y=Math.imul(Ee,Ot),n=(n=Math.imul(Ee,Nt))+Math.imul(j,Ot)|0,_=Math.imul(j,Nt),y=y+Math.imul(he,it)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(be,it)|0,_=_+Math.imul(be,bt)|0;var Vi=(I+(y=y+Math.imul(N,Qt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Re)|0)+Math.imul(H,Qt)|0))<<13)|0;I=((_=_+Math.imul(H,Re)|0)+(n>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,y=Math.imul(Me,Ot),n=(n=Math.imul(Me,Nt))+Math.imul(J,Ot)|0,_=Math.imul(J,Nt),y=y+Math.imul(Ee,it)|0,n=(n=n+Math.imul(Ee,bt)|0)+Math.imul(j,it)|0,_=_+Math.imul(j,bt)|0,y=y+Math.imul(he,Qt)|0,n=(n=n+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0,_=_+Math.imul(be,Re)|0;var Ui=(I+(y=y+Math.imul(N,de)|0)|0)+((8191&(n=(n=n+Math.imul(N,ye)|0)+Math.imul(H,de)|0))<<13)|0;I=((_=_+Math.imul(H,ye)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,y=Math.imul(ut,Ot),n=(n=Math.imul(ut,Nt))+Math.imul(Oe,Ot)|0,_=Math.imul(Oe,Nt),y=y+Math.imul(Me,it)|0,n=(n=n+Math.imul(Me,bt)|0)+Math.imul(J,it)|0,_=_+Math.imul(J,bt)|0,y=y+Math.imul(Ee,Qt)|0,n=(n=n+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,_=_+Math.imul(j,Re)|0,y=y+Math.imul(he,de)|0,n=(n=n+Math.imul(he,ye)|0)+Math.imul(be,de)|0,_=_+Math.imul(be,ye)|0;var Ue=(I+(y=y+Math.imul(N,mt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ft)|0)+Math.imul(H,mt)|0))<<13)|0;I=((_=_+Math.imul(H,Ft)|0)+(n>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,y=Math.imul(ce,Ot),n=(n=Math.imul(ce,Nt))+Math.imul(Te,Ot)|0,_=Math.imul(Te,Nt),y=y+Math.imul(ut,it)|0,n=(n=n+Math.imul(ut,bt)|0)+Math.imul(Oe,it)|0,_=_+Math.imul(Oe,bt)|0,y=y+Math.imul(Me,Qt)|0,n=(n=n+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,_=_+Math.imul(J,Re)|0,y=y+Math.imul(Ee,de)|0,n=(n=n+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,_=_+Math.imul(j,ye)|0,y=y+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0,_=_+Math.imul(be,Ft)|0;var Tt=(I+(y=y+Math.imul(N,He)|0)|0)+((8191&(n=(n=n+Math.imul(N,rt)|0)+Math.imul(H,He)|0))<<13)|0;I=((_=_+Math.imul(H,rt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,y=Math.imul(W,Ot),n=(n=Math.imul(W,Nt))+Math.imul(te,Ot)|0,_=Math.imul(te,Nt),y=y+Math.imul(ce,it)|0,n=(n=n+Math.imul(ce,bt)|0)+Math.imul(Te,it)|0,_=_+Math.imul(Te,bt)|0,y=y+Math.imul(ut,Qt)|0,n=(n=n+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,_=_+Math.imul(Oe,Re)|0,y=y+Math.imul(Me,de)|0,n=(n=n+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,_=_+Math.imul(J,ye)|0,y=y+Math.imul(Ee,mt)|0,n=(n=n+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,_=_+Math.imul(j,Ft)|0,y=y+Math.imul(he,He)|0,n=(n=n+Math.imul(he,rt)|0)+Math.imul(be,He)|0,_=_+Math.imul(be,rt)|0;var ve=(I+(y=y+Math.imul(N,Ae)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ge)|0)+Math.imul(H,Ae)|0))<<13)|0;I=((_=_+Math.imul(H,Ge)|0)+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,y=Math.imul(fe,Ot),n=(n=Math.imul(fe,Nt))+Math.imul(Q,Ot)|0,_=Math.imul(Q,Nt),y=y+Math.imul(W,it)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(te,it)|0,_=_+Math.imul(te,bt)|0,y=y+Math.imul(ce,Qt)|0,n=(n=n+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,_=_+Math.imul(Te,Re)|0,y=y+Math.imul(ut,de)|0,n=(n=n+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,_=_+Math.imul(Oe,ye)|0,y=y+Math.imul(Me,mt)|0,n=(n=n+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,_=_+Math.imul(J,Ft)|0,y=y+Math.imul(Ee,He)|0,n=(n=n+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,_=_+Math.imul(j,rt)|0,y=y+Math.imul(he,Ae)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0,_=_+Math.imul(be,Ge)|0;var Qe=(I+(y=y+Math.imul(N,lt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ct)|0)+Math.imul(H,lt)|0))<<13)|0;I=((_=_+Math.imul(H,Ct)|0)+(n>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,y=Math.imul(tt,Ot),n=(n=Math.imul(tt,Nt))+Math.imul(Dt,Ot)|0,_=Math.imul(Dt,Nt),y=y+Math.imul(fe,it)|0,n=(n=n+Math.imul(fe,bt)|0)+Math.imul(Q,it)|0,_=_+Math.imul(Q,bt)|0,y=y+Math.imul(W,Qt)|0,n=(n=n+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,_=_+Math.imul(te,Re)|0,y=y+Math.imul(ce,de)|0,n=(n=n+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,_=_+Math.imul(Te,ye)|0,y=y+Math.imul(ut,mt)|0,n=(n=n+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,_=_+Math.imul(Oe,Ft)|0,y=y+Math.imul(Me,He)|0,n=(n=n+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,_=_+Math.imul(J,rt)|0,y=y+Math.imul(Ee,Ae)|0,n=(n=n+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,_=_+Math.imul(j,Ge)|0,y=y+Math.imul(he,lt)|0,n=(n=n+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0,_=_+Math.imul(be,Ct)|0;var _t=(I+(y=y+Math.imul(N,Jt)|0)|0)+((8191&(n=(n=n+Math.imul(N,$t)|0)+Math.imul(H,Jt)|0))<<13)|0;I=((_=_+Math.imul(H,$t)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,y=Math.imul(Yt,Ot),n=(n=Math.imul(Yt,Nt))+Math.imul(Zt,Ot)|0,_=Math.imul(Zt,Nt),y=y+Math.imul(tt,it)|0,n=(n=n+Math.imul(tt,bt)|0)+Math.imul(Dt,it)|0,_=_+Math.imul(Dt,bt)|0,y=y+Math.imul(fe,Qt)|0,n=(n=n+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,_=_+Math.imul(Q,Re)|0,y=y+Math.imul(W,de)|0,n=(n=n+Math.imul(W,ye)|0)+Math.imul(te,de)|0,_=_+Math.imul(te,ye)|0,y=y+Math.imul(ce,mt)|0,n=(n=n+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,_=_+Math.imul(Te,Ft)|0,y=y+Math.imul(ut,He)|0,n=(n=n+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,_=_+Math.imul(Oe,rt)|0,y=y+Math.imul(Me,Ae)|0,n=(n=n+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,_=_+Math.imul(J,Ge)|0,y=y+Math.imul(Ee,lt)|0,n=(n=n+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,_=_+Math.imul(j,Ct)|0,y=y+Math.imul(he,Jt)|0,n=(n=n+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0,_=_+Math.imul(be,$t)|0;var se=(I+(y=y+Math.imul(N,hi)|0)|0)+((8191&(n=(n=n+Math.imul(N,si)|0)+Math.imul(H,hi)|0))<<13)|0;I=((_=_+Math.imul(H,si)|0)+(n>>>13)|0)+(se>>>26)|0,se&=67108863,y=Math.imul(Yt,it),n=(n=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,_=Math.imul(Zt,bt),y=y+Math.imul(tt,Qt)|0,n=(n=n+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,_=_+Math.imul(Dt,Re)|0,y=y+Math.imul(fe,de)|0,n=(n=n+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,_=_+Math.imul(Q,ye)|0,y=y+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,_=_+Math.imul(te,Ft)|0,y=y+Math.imul(ce,He)|0,n=(n=n+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,_=_+Math.imul(Te,rt)|0,y=y+Math.imul(ut,Ae)|0,n=(n=n+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,_=_+Math.imul(Oe,Ge)|0,y=y+Math.imul(Me,lt)|0,n=(n=n+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,_=_+Math.imul(J,Ct)|0,y=y+Math.imul(Ee,Jt)|0,n=(n=n+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,_=_+Math.imul(j,$t)|0;var Je=(I+(y=y+Math.imul(he,hi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;I=((_=_+Math.imul(be,si)|0)+(n>>>13)|0)+(Je>>>26)|0,Je&=67108863,y=Math.imul(Yt,Qt),n=(n=Math.imul(Yt,Re))+Math.imul(Zt,Qt)|0,_=Math.imul(Zt,Re),y=y+Math.imul(tt,de)|0,n=(n=n+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,_=_+Math.imul(Dt,ye)|0,y=y+Math.imul(fe,mt)|0,n=(n=n+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,_=_+Math.imul(Q,Ft)|0,y=y+Math.imul(W,He)|0,n=(n=n+Math.imul(W,rt)|0)+Math.imul(te,He)|0,_=_+Math.imul(te,rt)|0,y=y+Math.imul(ce,Ae)|0,n=(n=n+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,_=_+Math.imul(Te,Ge)|0,y=y+Math.imul(ut,lt)|0,n=(n=n+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,_=_+Math.imul(Oe,Ct)|0,y=y+Math.imul(Me,Jt)|0,n=(n=n+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,_=_+Math.imul(J,$t)|0;var xt=(I+(y=y+Math.imul(Ee,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0))<<13)|0;I=((_=_+Math.imul(j,si)|0)+(n>>>13)|0)+(xt>>>26)|0,xt&=67108863,y=Math.imul(Yt,de),n=(n=Math.imul(Yt,ye))+Math.imul(Zt,de)|0,_=Math.imul(Zt,ye),y=y+Math.imul(tt,mt)|0,n=(n=n+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,_=_+Math.imul(Dt,Ft)|0,y=y+Math.imul(fe,He)|0,n=(n=n+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,_=_+Math.imul(Q,rt)|0,y=y+Math.imul(W,Ae)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,_=_+Math.imul(te,Ge)|0,y=y+Math.imul(ce,lt)|0,n=(n=n+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,_=_+Math.imul(Te,Ct)|0,y=y+Math.imul(ut,Jt)|0,n=(n=n+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,_=_+Math.imul(Oe,$t)|0;var Bt=(I+(y=y+Math.imul(Me,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Me,si)|0)+Math.imul(J,hi)|0))<<13)|0;I=((_=_+Math.imul(J,si)|0)+(n>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,y=Math.imul(Yt,mt),n=(n=Math.imul(Yt,Ft))+Math.imul(Zt,mt)|0,_=Math.imul(Zt,Ft),y=y+Math.imul(tt,He)|0,n=(n=n+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,_=_+Math.imul(Dt,rt)|0,y=y+Math.imul(fe,Ae)|0,n=(n=n+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,_=_+Math.imul(Q,Ge)|0,y=y+Math.imul(W,lt)|0,n=(n=n+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,_=_+Math.imul(te,Ct)|0,y=y+Math.imul(ce,Jt)|0,n=(n=n+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,_=_+Math.imul(Te,$t)|0;var xi=(I+(y=y+Math.imul(ut,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0))<<13)|0;I=((_=_+Math.imul(Oe,si)|0)+(n>>>13)|0)+(xi>>>26)|0,xi&=67108863,y=Math.imul(Yt,He),n=(n=Math.imul(Yt,rt))+Math.imul(Zt,He)|0,_=Math.imul(Zt,rt),y=y+Math.imul(tt,Ae)|0,n=(n=n+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,_=_+Math.imul(Dt,Ge)|0,y=y+Math.imul(fe,lt)|0,n=(n=n+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,_=_+Math.imul(Q,Ct)|0,y=y+Math.imul(W,Jt)|0,n=(n=n+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,_=_+Math.imul(te,$t)|0;var Ti=(I+(y=y+Math.imul(ce,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0))<<13)|0;I=((_=_+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,y=Math.imul(Yt,Ae),n=(n=Math.imul(Yt,Ge))+Math.imul(Zt,Ae)|0,_=Math.imul(Zt,Ge),y=y+Math.imul(tt,lt)|0,n=(n=n+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,_=_+Math.imul(Dt,Ct)|0,y=y+Math.imul(fe,Jt)|0,n=(n=n+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,_=_+Math.imul(Q,$t)|0;var $i=(I+(y=y+Math.imul(W,hi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(te,hi)|0))<<13)|0;I=((_=_+Math.imul(te,si)|0)+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,y=Math.imul(Yt,lt),n=(n=Math.imul(Yt,Ct))+Math.imul(Zt,lt)|0,_=Math.imul(Zt,Ct),y=y+Math.imul(tt,Jt)|0,n=(n=n+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,_=_+Math.imul(Dt,$t)|0;var Wi=(I+(y=y+Math.imul(fe,hi)|0)|0)+((8191&(n=(n=n+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0))<<13)|0;I=((_=_+Math.imul(Q,si)|0)+(n>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,y=Math.imul(Yt,Jt),n=(n=Math.imul(Yt,$t))+Math.imul(Zt,Jt)|0,_=Math.imul(Zt,$t);var on=(I+(y=y+Math.imul(tt,hi)|0)|0)+((8191&(n=(n=n+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0))<<13)|0;I=((_=_+Math.imul(Dt,si)|0)+(n>>>13)|0)+(on>>>26)|0,on&=67108863;var fn=(I+(y=Math.imul(Yt,hi))|0)+((8191&(n=(n=Math.imul(Yt,si))+Math.imul(Zt,hi)|0))<<13)|0;return I=((_=Math.imul(Zt,si))+(n>>>13)|0)+(fn>>>26)|0,fn&=67108863,T[0]=Ji,T[1]=Zi,T[2]=Vi,T[3]=Ui,T[4]=Ue,T[5]=Tt,T[6]=ve,T[7]=Qe,T[8]=_t,T[9]=se,T[10]=Je,T[11]=xt,T[12]=Bt,T[13]=xi,T[14]=Ti,T[15]=$i,T[16]=Wi,T[17]=on,T[18]=fn,0!==I&&(T[19]=I,u.length++),u};function Z(x,i,r){return(new Y).mulp(x,i,r)}function Y(x,i){this.x=x,this.y=i}Math.imul||(E=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?E(this,i,r):c<63?k(this,i,r):c<1024?function B(x,i,r){r.negative=i.negative^x.negative,r.length=x.length+i.length;for(var u=0,c=0,v=0;v>>26)|0)>>>26,T&=67108863}r.words[v]=I,u=T,T=c}return 0!==u?r.words[v]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,v,T){for(var I=0;I>>=1)v++;return 1<>>=13),v>>>=13;for(T=2*r;T>=26,r+=c/67108864|0,r+=v>>>26,this.words[u]=67108863&v}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function S(x){for(var i=new Array(x.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var v,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var T=0;for(v=0;v>>26-r}T&&(this.words[v]=T,this.length++)}if(0!==u){for(v=this.length-1;v>=0;v--)this.words[v+u]=this.words[v];for(v=0;v=0),c=r?(r-r%26)/26:0;var v=i%26,T=Math.min((i-v)/26,this.length),I=67108863^67108863>>>v<T)for(this.length-=T,n=0;n=0&&(0!==_||n>=c);n--){var V=0|this.words[n];this.words[n]=_<<26-v|V>>>v,_=V&I}return y&&0!==_&&(y.words[y.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(y/67108864|0),this.words[v+u]=67108863&T}for(;v>26,this.words[v+u]=67108863&T;if(0===I)return this.strip();for(f(-1===I),I=0,v=0;v>26,this.words[v]=67108863&T;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),v=i,T=0|v.words[v.length-1];0!=(u=26-this._countBits(T))&&(v=v.ushln(u),c.iushln(u),T=0|v.words[v.length-1]);var n,y=c.length-v.length;if("mod"!==r){(n=new a(null)).length=y+1,n.words=new Array(n.length);for(var _=0;_=0;N--){var H=67108864*(0|c.words[v.length+N])+(0|c.words[v.length+N-1]);for(H=Math.min(H/T|0,67108863),c._ishlnsubmul(v,H,N);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(v,1,N),c.isZero()||(c.negative^=1);n&&(n.words[N]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(T=this.neg().divmod(i,r),"mod"!==r&&(c=T.div.neg()),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.iadd(i)),{div:c,mod:v}):0===this.negative&&0!==i.negative?(T=this.divmod(i.neg(),r),"mod"!==r&&(c=T.div.neg()),{div:c,mod:T.mod}):0!=(this.negative&i.negative)?(T=this.neg().divmod(i.neg(),r),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.isub(i)),{div:T.div,mod:v}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,v,T},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),v=i.andln(1),T=u.cmp(c);return T<0||1===v&&0===T?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=new a(0),I=new a(1),y=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++y;for(var n=u.clone(),_=r.clone();!r.isZero();){for(var V=0,N=1;0==(r.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(r.iushrn(V);V-- >0;)(c.isOdd()||v.isOdd())&&(c.iadd(n),v.isub(_)),c.iushrn(1),v.iushrn(1);for(var H=0,X=1;0==(u.words[0]&X)&&H<26;++H,X<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(T.isOdd()||I.isOdd())&&(T.iadd(n),I.isub(_)),T.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(T),v.isub(I)):(u.isub(r),T.isub(c),I.isub(v))}return{a:T,b:I,gcd:u.iushln(y)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var V,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,y=1;0==(r.words[0]&y)&&I<26;++I,y<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(T),c.iushrn(1);for(var n=0,_=1;0==(u.words[0]&_)&&n<26;++n,_<<=1);if(n>0)for(u.iushrn(n);n-- >0;)v.isOdd()&&v.iadd(T),v.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(v)):(u.isub(r),v.isub(c))}return(V=0===r.cmpn(1)?c:v).cmpn(0)<0&&V.iadd(i),V},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var v=r.cmp(u);if(v<0){var T=r;r=u,u=T}else if(0===v||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[T]=I&=67108863}return 0!==v&&(this.words[T]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],v=0|i.words[u];if(c!==v){cv&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new q(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ae={k256:null,p224:null,p192:null,p25519:null};function ee(x,i){this.name=x,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ue(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ie(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function re(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function ge(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function q(x){if("string"==typeof x){var i=a._prime(x);this.m=i.p,this.prime=i}else f(x.gtn(1),"modulus must be greater than 1"),this.m=x,this.prime=null}function _e(x){q.call(this,x),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},ee.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},ee.prototype.split=function(i,r){i.iushrn(this.n,0,r)},ee.prototype.imulK=function(i){return i.imul(this.k)},M(ue,ee),ue.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),v=0;v>>22,T=I}i.words[v-10]=T>>>=22,i.length-=0===T&&i.length>10?10:9},ue.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=v,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ae[i])return ae[i];var r;if("k256"===i)r=new ue;else if("p224"===i)r=new ie;else if("p192"===i)r=new re;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new ge}return ae[i]=r,r},q.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},q.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},q.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},q.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},q.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},q.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},q.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},q.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},q.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},q.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},q.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},q.prototype.isqr=function(i){return this.imul(i,i.clone())},q.prototype.sqr=function(i){return this.mul(i,i)},q.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),v=0;!c.isZero()&&0===c.andln(1);)v++,c.iushrn(1);f(!c.isZero());var T=new a(1).toRed(this),I=T.redNeg(),y=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,y).cmp(I);)n.redIAdd(I);for(var _=this.pow(n,c),V=this.pow(i,c.addn(1).iushrn(1)),N=this.pow(i,c),H=v;0!==N.cmp(T);){for(var X=N,he=0;0!==X.cmp(T);he++)X=X.redSqr();f(he=0;v--){for(var _=r.words[v],V=n-1;V>=0;V--){var N=_>>V&1;T!==c[0]&&(T=this.sqr(T)),0!==N||0!==I?(I<<=1,I|=N,(4==++y||0===v&&0===V)&&(T=this.mul(T,c[I]),y=0,I=0)):y=0}n=26}return T},q.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},q.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new _e(i)},M(_e,q),_e.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},_e.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},_e.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},2391:Be=>{function K(p,t){if(!p)throw new Error(t||"Assertion failed")}Be.exports=K,K.equal=function(t,e,f){if(t!=e)throw new Error(f||"Assertion failed: "+t+" != "+e)}},8195:(Be,K)=>{"use strict";var p=K;function e(M){return 1===M.length?"0"+M:M}function f(M){for(var a="",C=0;C>8,L=255&R;h?C.push(h,L):C.push(L)}return C},p.zero2=e,p.toHex=f,p.encode=function(a,C){return"hex"===C?f(a):a}},5768:(Be,K,p)=>{"use strict";Object.defineProperty(K,"__esModule",{value:!0});var t=p(842);Object.keys(t).forEach(function(e){"default"!==e&&Object.defineProperty(K,e,{enumerable:!0,get:function(){return t[e]}})})},2999:(Be,K,p)=>{"use strict";var t=p(7977);K.certificate=p(2390);var e=t.define("RSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("modulus").int(),this.key("publicExponent").int(),this.key("privateExponent").int(),this.key("prime1").int(),this.key("prime2").int(),this.key("exponent1").int(),this.key("exponent2").int(),this.key("coefficient").int())});K.RSAPrivateKey=e;var f=t.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});K.RSAPublicKey=f;var M=t.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(a),this.key("subjectPublicKey").bitstr())});K.PublicKey=M;var a=t.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("none").null_().optional(),this.key("curve").objid().optional(),this.key("params").seq().obj(this.key("p").int(),this.key("q").int(),this.key("g").int()).optional())}),C=t.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(a),this.key("subjectPrivateKey").octstr())});K.PrivateKey=C;var d=t.define("EncryptedPrivateKeyInfo",function(){this.seq().obj(this.key("algorithm").seq().obj(this.key("id").objid(),this.key("decrypt").seq().obj(this.key("kde").seq().obj(this.key("id").objid(),this.key("kdeparams").seq().obj(this.key("salt").octstr(),this.key("iters").int())),this.key("cipher").seq().obj(this.key("algo").objid(),this.key("iv").octstr()))),this.key("subjectPrivateKey").octstr())});K.EncryptedPrivateKey=d;var R=t.define("DSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("p").int(),this.key("q").int(),this.key("g").int(),this.key("pub_key").int(),this.key("priv_key").int())});K.DSAPrivateKey=R,K.DSAparam=t.define("DSAparam",function(){this.int()});var h=t.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(L),this.key("publicKey").optional().explicit(1).bitstr())});K.ECPrivateKey=h;var L=t.define("ECParameters",function(){this.choice({namedCurve:this.objid()})});K.signature=t.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},2390:(Be,K,p)=>{"use strict";var t=p(7977),e=t.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),f=t.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),M=t.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),a=t.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(M),this.key("subjectPublicKey").bitstr())}),C=t.define("RelativeDistinguishedName",function(){this.setof(f)}),d=t.define("RDNSequence",function(){this.seqof(C)}),R=t.define("Name",function(){this.choice({rdnSequence:this.use(d)})}),h=t.define("Validity",function(){this.seq().obj(this.key("notBefore").use(e),this.key("notAfter").use(e))}),L=t.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),w=t.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(M),this.key("issuer").use(R),this.key("validity").use(h),this.key("subject").use(R),this.key("subjectPublicKeyInfo").use(a),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(L).optional())}),D=t.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(w),this.key("signatureAlgorithm").use(M),this.key("signatureValue").bitstr())});Be.exports=D},5269:(Be,K,p)=>{var t=/Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m,e=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,f=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,M=p(347),a=p(4330),C=p(3502).Buffer;Be.exports=function(d,R){var w,h=d.toString(),L=h.match(t);if(L){var S="aes"+L[1],k=C.from(L[2],"hex"),E=C.from(L[3].replace(/[\r\n]/g,""),"base64"),B=M(R,k.slice(0,8),parseInt(L[1],10)).key,Z=[],Y=a.createDecipheriv(S,B,k);Z.push(Y.update(E)),Z.push(Y.final()),w=C.concat(Z)}else{var D=h.match(f);w=C.from(D[2].replace(/[\r\n]/g,""),"base64")}return{tag:h.match(e)[1],data:w}}},2772:(Be,K,p)=>{var t=p(2999),e=p(2562),f=p(5269),M=p(4330),a=p(9357),C=p(3502).Buffer;function d(h){var L;"object"==typeof h&&!C.isBuffer(h)&&(L=h.passphrase,h=h.key),"string"==typeof h&&(h=C.from(h));var k,E,w=f(h,L),D=w.tag,S=w.data;switch(D){case"CERTIFICATE":E=t.certificate.decode(S,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(E||(E=t.PublicKey.decode(S,"der")),k=E.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return t.RSAPublicKey.decode(E.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return E.subjectPrivateKey=E.subjectPublicKey,{type:"ec",data:E};case"1.2.840.10040.4.1":return E.algorithm.params.pub_key=t.DSAparam.decode(E.subjectPublicKey.data,"der"),{type:"dsa",data:E.algorithm.params};default:throw new Error("unknown key id "+k)}case"ENCRYPTED PRIVATE KEY":S=function R(h,L){var w=h.algorithm.decrypt.kde.kdeparams.salt,D=parseInt(h.algorithm.decrypt.kde.kdeparams.iters.toString(),10),S=e[h.algorithm.decrypt.cipher.algo.join(".")],k=h.algorithm.decrypt.cipher.iv,E=h.subjectPrivateKey,B=parseInt(S.split("-")[1],10)/8,Z=a.pbkdf2Sync(L,w,D,B,"sha1"),Y=M.createDecipheriv(S,Z,k),ae=[];return ae.push(Y.update(E)),ae.push(Y.final()),C.concat(ae)}(S=t.EncryptedPrivateKey.decode(S,"der"),L);case"PRIVATE KEY":switch(k=(E=t.PrivateKey.decode(S,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return t.RSAPrivateKey.decode(E.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:E.algorithm.curve,privateKey:t.ECPrivateKey.decode(E.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return E.algorithm.params.priv_key=t.DSAparam.decode(E.subjectPrivateKey,"der"),{type:"dsa",params:E.algorithm.params};default:throw new Error("unknown key id "+k)}case"RSA PUBLIC KEY":return t.RSAPublicKey.decode(S,"der");case"RSA PRIVATE KEY":return t.RSAPrivateKey.decode(S,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:t.DSAPrivateKey.decode(S,"der")};case"EC PRIVATE KEY":return{curve:(S=t.ECPrivateKey.decode(S,"der")).parameters.value,privateKey:S.privateKey};default:throw new Error("unknown key type "+D)}}Be.exports=d,d.signature=t.signature},9357:(Be,K,p)=>{K.pbkdf2=p(415),K.pbkdf2Sync=p(7472)},415:(Be,K,p)=>{var C,w,t=p(3502).Buffer,e=p(2697),f=p(8867),M=p(7472),a=p(4566),d=global.crypto&&global.crypto.subtle,R={sha:"SHA-1","sha-1":"SHA-1",sha1:"SHA-1",sha256:"SHA-256","sha-256":"SHA-256",sha384:"SHA-384","sha-384":"SHA-384","sha-512":"SHA-512",sha512:"SHA-512"},h=[];function D(){return w||(w=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function S(E,B,Z,Y,ae){return d.importKey("raw",E,{name:"PBKDF2"},!1,["deriveBits"]).then(function(ee){return d.deriveBits({name:"PBKDF2",salt:B,iterations:Z,hash:{name:ae}},ee,Y<<3)}).then(function(ee){return t.from(ee)})}Be.exports=function(E,B,Z,Y,ae,ee){"function"==typeof ae&&(ee=ae,ae=void 0);var ue=R[(ae=ae||"sha1").toLowerCase()];if(ue&&"function"==typeof global.Promise){if(e(Z,Y),E=a(E,f,"Password"),B=a(B,f,"Salt"),"function"!=typeof ee)throw new Error("No callback provided to pbkdf2");!function k(E,B){E.then(function(Z){D()(function(){B(null,Z)})},function(Z){D()(function(){B(Z)})})}(function L(E){if(global.process&&!global.process.browser||!d||!d.importKey||!d.deriveBits)return Promise.resolve(!1);if(void 0!==h[E])return h[E];var B=S(C=C||t.alloc(8),C,10,128,E).then(function(){return!0}).catch(function(){return!1});return h[E]=B,B}(ue).then(function(ie){return ie?S(E,B,Z,Y,ue):M(E,B,Z,Y,ae)}),ee)}else D()(function(){var ie;try{ie=M(E,B,Z,Y,ae)}catch(re){return ee(re)}ee(null,ie)})}},8867:Be=>{var K;K=global.process&&global.process.browser?"utf-8":global.process&&global.process.version?parseInt(process.version.split(".")[0].slice(1),10)>=6?"utf-8":"binary":"utf-8",Be.exports=K},2697:Be=>{var K=Math.pow(2,30)-1;Be.exports=function(p,t){if("number"!=typeof p)throw new TypeError("Iterations not a number");if(p<0)throw new TypeError("Bad iterations");if("number"!=typeof t)throw new TypeError("Key length not a number");if(t<0||t>K||t!=t)throw new TypeError("Bad key length")}},7472:(Be,K,p)=>{var t=p(5640),e=p(5634),f=p(5244),M=p(3502).Buffer,a=p(2697),C=p(8867),d=p(4566),R=M.alloc(128),h={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function L(S,k,E){var B=function w(S){return"rmd160"===S||"ripemd160"===S?function E(B){return(new e).update(B).digest()}:"md5"===S?t:function k(B){return f(S).update(B).digest()}}(S),Z="sha512"===S||"sha384"===S?128:64;k.length>Z?k=B(k):k.length{var t=p(3502).Buffer;Be.exports=function(e,f,M){if(t.isBuffer(e))return e;if("string"==typeof e)return t.from(e,f);if(ArrayBuffer.isView(e))return t.from(e.buffer);throw new TypeError(M+" must be a string, a Buffer, a typed array or a DataView")}},3701:(Be,K,p)=>{K.publicEncrypt=p(6562),K.privateDecrypt=p(6705),K.privateEncrypt=function(e,f){return K.publicEncrypt(e,f,!0)},K.publicDecrypt=function(e,f){return K.privateDecrypt(e,f,!0)}},6945:(Be,K,p)=>{var t=p(6386),e=p(3502).Buffer;function f(M){var a=e.allocUnsafe(4);return a.writeUInt32BE(M,0),a}Be.exports=function(M,a){for(var R,C=e.alloc(0),d=0;C.length=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function R(x,i,r){var u=d(x,r);return r-1>=i&&(u|=d(x,r-1)<<4),u}function h(x,i,r,u){for(var c=0,v=Math.min(x.length,r),T=i;T=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[v]|=(T=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);else if("le"===u)for(c=0,v=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,v++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=R(i,r,c)<=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(v-=18,this.words[T+=1]|=I>>>26):v+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,v=1;v<=67108863;v*=r)c++;c--,v=v/r|0;for(var T=i.length-u,I=T%c,y=Math.min(T,T-I)+u,n=0,_=u;_1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var L=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(x,i,r){r.negative=i.negative^x.negative;var u=x.length+i.length|0;r.length=u,u=u-1|0;var c=0|x.words[0],v=0|i.words[0],T=c*v,y=T/67108864|0;r.words[0]=67108863&T;for(var n=1;n>>26,V=67108863&y,N=Math.min(n,i.length-1),H=Math.max(0,n-x.length+1);H<=N;H++)_+=(T=(c=0|x.words[n-H|0])*(v=0|i.words[H])+V)/67108864|0,V=67108863&T;r.words[n]=0|V,y=0|_}return 0!==y?r.words[n]=0|y:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,v=0,T=0;T>>24-c&16777215)||T!==this.length-1?L[6-y.length]+y+u:y+u,(c+=2)>=26&&(c-=26,T--)}for(0!==v&&(u=v.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],_=D[i];u="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(_).toString(i);u=(V=V.idivn(_)).isZero()?N+u:L[n-N.length]+N+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==C),this.toArrayLike(C,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),v=u||Math.max(1,c);f(c<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0"),this.strip();var y,n,T="le"===r,I=new i(v),_=this.clone();if(T){for(n=0;!_.isZero();n++)y=_.andln(255),_.iushrn(8),I[n]=y;for(;n=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var v=0,T=0;T>>26;for(;0!==v&&T>>26;if(this.length=u.length,0!==v)this.words[this.length]=v,this.length++;else if(u!==this)for(;Ti.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,v,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,v=i):(c=i,v=this);for(var T=0,I=0;I>26,this.words[I]=67108863&r;for(;0!==T&&I>26,this.words[I]=67108863&r;if(0===T&&I>>13,X=0|c[1],he=8191&X,be=X>>>13,Pe=0|c[2],Ee=8191&Pe,j=Pe>>>13,Ve=0|c[3],Me=8191&Ve,J=Ve>>>13,Ie=0|c[4],ut=8191&Ie,Oe=Ie>>>13,we=0|c[5],ce=8191&we,Te=we>>>13,xe=0|c[6],W=8191&xe,te=xe>>>13,Ce=0|c[7],fe=8191&Ce,Q=Ce>>>13,ft=0|c[8],tt=8191&ft,Dt=ft>>>13,di=0|c[9],Yt=8191&di,Zt=di>>>13,ui=0|v[0],Ot=8191&ui,Nt=ui>>>13,gt=0|v[1],it=8191>,bt=gt>>>13,ei=0|v[2],Qt=8191&ei,Re=ei>>>13,ke=0|v[3],de=8191&ke,ye=ke>>>13,ht=0|v[4],mt=8191&ht,Ft=ht>>>13,nt=0|v[5],He=8191&nt,rt=nt>>>13,et=0|v[6],Ae=8191&et,Ge=et>>>13,ot=0|v[7],lt=8191&ot,Ct=ot>>>13,mi=0|v[8],Jt=8191&mi,$t=mi>>>13,Qi=0|v[9],hi=8191&Qi,si=Qi>>>13;u.negative=i.negative^r.negative,u.length=19;var Ji=(I+(y=Math.imul(N,Ot))|0)+((8191&(n=(n=Math.imul(N,Nt))+Math.imul(H,Ot)|0))<<13)|0;I=((_=Math.imul(H,Nt))+(n>>>13)|0)+(Ji>>>26)|0,Ji&=67108863,y=Math.imul(he,Ot),n=(n=Math.imul(he,Nt))+Math.imul(be,Ot)|0,_=Math.imul(be,Nt);var Zi=(I+(y=y+Math.imul(N,it)|0)|0)+((8191&(n=(n=n+Math.imul(N,bt)|0)+Math.imul(H,it)|0))<<13)|0;I=((_=_+Math.imul(H,bt)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,y=Math.imul(Ee,Ot),n=(n=Math.imul(Ee,Nt))+Math.imul(j,Ot)|0,_=Math.imul(j,Nt),y=y+Math.imul(he,it)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(be,it)|0,_=_+Math.imul(be,bt)|0;var Vi=(I+(y=y+Math.imul(N,Qt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Re)|0)+Math.imul(H,Qt)|0))<<13)|0;I=((_=_+Math.imul(H,Re)|0)+(n>>>13)|0)+(Vi>>>26)|0,Vi&=67108863,y=Math.imul(Me,Ot),n=(n=Math.imul(Me,Nt))+Math.imul(J,Ot)|0,_=Math.imul(J,Nt),y=y+Math.imul(Ee,it)|0,n=(n=n+Math.imul(Ee,bt)|0)+Math.imul(j,it)|0,_=_+Math.imul(j,bt)|0,y=y+Math.imul(he,Qt)|0,n=(n=n+Math.imul(he,Re)|0)+Math.imul(be,Qt)|0,_=_+Math.imul(be,Re)|0;var Ui=(I+(y=y+Math.imul(N,de)|0)|0)+((8191&(n=(n=n+Math.imul(N,ye)|0)+Math.imul(H,de)|0))<<13)|0;I=((_=_+Math.imul(H,ye)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,y=Math.imul(ut,Ot),n=(n=Math.imul(ut,Nt))+Math.imul(Oe,Ot)|0,_=Math.imul(Oe,Nt),y=y+Math.imul(Me,it)|0,n=(n=n+Math.imul(Me,bt)|0)+Math.imul(J,it)|0,_=_+Math.imul(J,bt)|0,y=y+Math.imul(Ee,Qt)|0,n=(n=n+Math.imul(Ee,Re)|0)+Math.imul(j,Qt)|0,_=_+Math.imul(j,Re)|0,y=y+Math.imul(he,de)|0,n=(n=n+Math.imul(he,ye)|0)+Math.imul(be,de)|0,_=_+Math.imul(be,ye)|0;var Ue=(I+(y=y+Math.imul(N,mt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ft)|0)+Math.imul(H,mt)|0))<<13)|0;I=((_=_+Math.imul(H,Ft)|0)+(n>>>13)|0)+(Ue>>>26)|0,Ue&=67108863,y=Math.imul(ce,Ot),n=(n=Math.imul(ce,Nt))+Math.imul(Te,Ot)|0,_=Math.imul(Te,Nt),y=y+Math.imul(ut,it)|0,n=(n=n+Math.imul(ut,bt)|0)+Math.imul(Oe,it)|0,_=_+Math.imul(Oe,bt)|0,y=y+Math.imul(Me,Qt)|0,n=(n=n+Math.imul(Me,Re)|0)+Math.imul(J,Qt)|0,_=_+Math.imul(J,Re)|0,y=y+Math.imul(Ee,de)|0,n=(n=n+Math.imul(Ee,ye)|0)+Math.imul(j,de)|0,_=_+Math.imul(j,ye)|0,y=y+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ft)|0)+Math.imul(be,mt)|0,_=_+Math.imul(be,Ft)|0;var Tt=(I+(y=y+Math.imul(N,He)|0)|0)+((8191&(n=(n=n+Math.imul(N,rt)|0)+Math.imul(H,He)|0))<<13)|0;I=((_=_+Math.imul(H,rt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,y=Math.imul(W,Ot),n=(n=Math.imul(W,Nt))+Math.imul(te,Ot)|0,_=Math.imul(te,Nt),y=y+Math.imul(ce,it)|0,n=(n=n+Math.imul(ce,bt)|0)+Math.imul(Te,it)|0,_=_+Math.imul(Te,bt)|0,y=y+Math.imul(ut,Qt)|0,n=(n=n+Math.imul(ut,Re)|0)+Math.imul(Oe,Qt)|0,_=_+Math.imul(Oe,Re)|0,y=y+Math.imul(Me,de)|0,n=(n=n+Math.imul(Me,ye)|0)+Math.imul(J,de)|0,_=_+Math.imul(J,ye)|0,y=y+Math.imul(Ee,mt)|0,n=(n=n+Math.imul(Ee,Ft)|0)+Math.imul(j,mt)|0,_=_+Math.imul(j,Ft)|0,y=y+Math.imul(he,He)|0,n=(n=n+Math.imul(he,rt)|0)+Math.imul(be,He)|0,_=_+Math.imul(be,rt)|0;var ve=(I+(y=y+Math.imul(N,Ae)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ge)|0)+Math.imul(H,Ae)|0))<<13)|0;I=((_=_+Math.imul(H,Ge)|0)+(n>>>13)|0)+(ve>>>26)|0,ve&=67108863,y=Math.imul(fe,Ot),n=(n=Math.imul(fe,Nt))+Math.imul(Q,Ot)|0,_=Math.imul(Q,Nt),y=y+Math.imul(W,it)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(te,it)|0,_=_+Math.imul(te,bt)|0,y=y+Math.imul(ce,Qt)|0,n=(n=n+Math.imul(ce,Re)|0)+Math.imul(Te,Qt)|0,_=_+Math.imul(Te,Re)|0,y=y+Math.imul(ut,de)|0,n=(n=n+Math.imul(ut,ye)|0)+Math.imul(Oe,de)|0,_=_+Math.imul(Oe,ye)|0,y=y+Math.imul(Me,mt)|0,n=(n=n+Math.imul(Me,Ft)|0)+Math.imul(J,mt)|0,_=_+Math.imul(J,Ft)|0,y=y+Math.imul(Ee,He)|0,n=(n=n+Math.imul(Ee,rt)|0)+Math.imul(j,He)|0,_=_+Math.imul(j,rt)|0,y=y+Math.imul(he,Ae)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(be,Ae)|0,_=_+Math.imul(be,Ge)|0;var Qe=(I+(y=y+Math.imul(N,lt)|0)|0)+((8191&(n=(n=n+Math.imul(N,Ct)|0)+Math.imul(H,lt)|0))<<13)|0;I=((_=_+Math.imul(H,Ct)|0)+(n>>>13)|0)+(Qe>>>26)|0,Qe&=67108863,y=Math.imul(tt,Ot),n=(n=Math.imul(tt,Nt))+Math.imul(Dt,Ot)|0,_=Math.imul(Dt,Nt),y=y+Math.imul(fe,it)|0,n=(n=n+Math.imul(fe,bt)|0)+Math.imul(Q,it)|0,_=_+Math.imul(Q,bt)|0,y=y+Math.imul(W,Qt)|0,n=(n=n+Math.imul(W,Re)|0)+Math.imul(te,Qt)|0,_=_+Math.imul(te,Re)|0,y=y+Math.imul(ce,de)|0,n=(n=n+Math.imul(ce,ye)|0)+Math.imul(Te,de)|0,_=_+Math.imul(Te,ye)|0,y=y+Math.imul(ut,mt)|0,n=(n=n+Math.imul(ut,Ft)|0)+Math.imul(Oe,mt)|0,_=_+Math.imul(Oe,Ft)|0,y=y+Math.imul(Me,He)|0,n=(n=n+Math.imul(Me,rt)|0)+Math.imul(J,He)|0,_=_+Math.imul(J,rt)|0,y=y+Math.imul(Ee,Ae)|0,n=(n=n+Math.imul(Ee,Ge)|0)+Math.imul(j,Ae)|0,_=_+Math.imul(j,Ge)|0,y=y+Math.imul(he,lt)|0,n=(n=n+Math.imul(he,Ct)|0)+Math.imul(be,lt)|0,_=_+Math.imul(be,Ct)|0;var _t=(I+(y=y+Math.imul(N,Jt)|0)|0)+((8191&(n=(n=n+Math.imul(N,$t)|0)+Math.imul(H,Jt)|0))<<13)|0;I=((_=_+Math.imul(H,$t)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,y=Math.imul(Yt,Ot),n=(n=Math.imul(Yt,Nt))+Math.imul(Zt,Ot)|0,_=Math.imul(Zt,Nt),y=y+Math.imul(tt,it)|0,n=(n=n+Math.imul(tt,bt)|0)+Math.imul(Dt,it)|0,_=_+Math.imul(Dt,bt)|0,y=y+Math.imul(fe,Qt)|0,n=(n=n+Math.imul(fe,Re)|0)+Math.imul(Q,Qt)|0,_=_+Math.imul(Q,Re)|0,y=y+Math.imul(W,de)|0,n=(n=n+Math.imul(W,ye)|0)+Math.imul(te,de)|0,_=_+Math.imul(te,ye)|0,y=y+Math.imul(ce,mt)|0,n=(n=n+Math.imul(ce,Ft)|0)+Math.imul(Te,mt)|0,_=_+Math.imul(Te,Ft)|0,y=y+Math.imul(ut,He)|0,n=(n=n+Math.imul(ut,rt)|0)+Math.imul(Oe,He)|0,_=_+Math.imul(Oe,rt)|0,y=y+Math.imul(Me,Ae)|0,n=(n=n+Math.imul(Me,Ge)|0)+Math.imul(J,Ae)|0,_=_+Math.imul(J,Ge)|0,y=y+Math.imul(Ee,lt)|0,n=(n=n+Math.imul(Ee,Ct)|0)+Math.imul(j,lt)|0,_=_+Math.imul(j,Ct)|0,y=y+Math.imul(he,Jt)|0,n=(n=n+Math.imul(he,$t)|0)+Math.imul(be,Jt)|0,_=_+Math.imul(be,$t)|0;var se=(I+(y=y+Math.imul(N,hi)|0)|0)+((8191&(n=(n=n+Math.imul(N,si)|0)+Math.imul(H,hi)|0))<<13)|0;I=((_=_+Math.imul(H,si)|0)+(n>>>13)|0)+(se>>>26)|0,se&=67108863,y=Math.imul(Yt,it),n=(n=Math.imul(Yt,bt))+Math.imul(Zt,it)|0,_=Math.imul(Zt,bt),y=y+Math.imul(tt,Qt)|0,n=(n=n+Math.imul(tt,Re)|0)+Math.imul(Dt,Qt)|0,_=_+Math.imul(Dt,Re)|0,y=y+Math.imul(fe,de)|0,n=(n=n+Math.imul(fe,ye)|0)+Math.imul(Q,de)|0,_=_+Math.imul(Q,ye)|0,y=y+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ft)|0)+Math.imul(te,mt)|0,_=_+Math.imul(te,Ft)|0,y=y+Math.imul(ce,He)|0,n=(n=n+Math.imul(ce,rt)|0)+Math.imul(Te,He)|0,_=_+Math.imul(Te,rt)|0,y=y+Math.imul(ut,Ae)|0,n=(n=n+Math.imul(ut,Ge)|0)+Math.imul(Oe,Ae)|0,_=_+Math.imul(Oe,Ge)|0,y=y+Math.imul(Me,lt)|0,n=(n=n+Math.imul(Me,Ct)|0)+Math.imul(J,lt)|0,_=_+Math.imul(J,Ct)|0,y=y+Math.imul(Ee,Jt)|0,n=(n=n+Math.imul(Ee,$t)|0)+Math.imul(j,Jt)|0,_=_+Math.imul(j,$t)|0;var Je=(I+(y=y+Math.imul(he,hi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(be,hi)|0))<<13)|0;I=((_=_+Math.imul(be,si)|0)+(n>>>13)|0)+(Je>>>26)|0,Je&=67108863,y=Math.imul(Yt,Qt),n=(n=Math.imul(Yt,Re))+Math.imul(Zt,Qt)|0,_=Math.imul(Zt,Re),y=y+Math.imul(tt,de)|0,n=(n=n+Math.imul(tt,ye)|0)+Math.imul(Dt,de)|0,_=_+Math.imul(Dt,ye)|0,y=y+Math.imul(fe,mt)|0,n=(n=n+Math.imul(fe,Ft)|0)+Math.imul(Q,mt)|0,_=_+Math.imul(Q,Ft)|0,y=y+Math.imul(W,He)|0,n=(n=n+Math.imul(W,rt)|0)+Math.imul(te,He)|0,_=_+Math.imul(te,rt)|0,y=y+Math.imul(ce,Ae)|0,n=(n=n+Math.imul(ce,Ge)|0)+Math.imul(Te,Ae)|0,_=_+Math.imul(Te,Ge)|0,y=y+Math.imul(ut,lt)|0,n=(n=n+Math.imul(ut,Ct)|0)+Math.imul(Oe,lt)|0,_=_+Math.imul(Oe,Ct)|0,y=y+Math.imul(Me,Jt)|0,n=(n=n+Math.imul(Me,$t)|0)+Math.imul(J,Jt)|0,_=_+Math.imul(J,$t)|0;var xt=(I+(y=y+Math.imul(Ee,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Ee,si)|0)+Math.imul(j,hi)|0))<<13)|0;I=((_=_+Math.imul(j,si)|0)+(n>>>13)|0)+(xt>>>26)|0,xt&=67108863,y=Math.imul(Yt,de),n=(n=Math.imul(Yt,ye))+Math.imul(Zt,de)|0,_=Math.imul(Zt,ye),y=y+Math.imul(tt,mt)|0,n=(n=n+Math.imul(tt,Ft)|0)+Math.imul(Dt,mt)|0,_=_+Math.imul(Dt,Ft)|0,y=y+Math.imul(fe,He)|0,n=(n=n+Math.imul(fe,rt)|0)+Math.imul(Q,He)|0,_=_+Math.imul(Q,rt)|0,y=y+Math.imul(W,Ae)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(te,Ae)|0,_=_+Math.imul(te,Ge)|0,y=y+Math.imul(ce,lt)|0,n=(n=n+Math.imul(ce,Ct)|0)+Math.imul(Te,lt)|0,_=_+Math.imul(Te,Ct)|0,y=y+Math.imul(ut,Jt)|0,n=(n=n+Math.imul(ut,$t)|0)+Math.imul(Oe,Jt)|0,_=_+Math.imul(Oe,$t)|0;var Bt=(I+(y=y+Math.imul(Me,hi)|0)|0)+((8191&(n=(n=n+Math.imul(Me,si)|0)+Math.imul(J,hi)|0))<<13)|0;I=((_=_+Math.imul(J,si)|0)+(n>>>13)|0)+(Bt>>>26)|0,Bt&=67108863,y=Math.imul(Yt,mt),n=(n=Math.imul(Yt,Ft))+Math.imul(Zt,mt)|0,_=Math.imul(Zt,Ft),y=y+Math.imul(tt,He)|0,n=(n=n+Math.imul(tt,rt)|0)+Math.imul(Dt,He)|0,_=_+Math.imul(Dt,rt)|0,y=y+Math.imul(fe,Ae)|0,n=(n=n+Math.imul(fe,Ge)|0)+Math.imul(Q,Ae)|0,_=_+Math.imul(Q,Ge)|0,y=y+Math.imul(W,lt)|0,n=(n=n+Math.imul(W,Ct)|0)+Math.imul(te,lt)|0,_=_+Math.imul(te,Ct)|0,y=y+Math.imul(ce,Jt)|0,n=(n=n+Math.imul(ce,$t)|0)+Math.imul(Te,Jt)|0,_=_+Math.imul(Te,$t)|0;var xi=(I+(y=y+Math.imul(ut,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ut,si)|0)+Math.imul(Oe,hi)|0))<<13)|0;I=((_=_+Math.imul(Oe,si)|0)+(n>>>13)|0)+(xi>>>26)|0,xi&=67108863,y=Math.imul(Yt,He),n=(n=Math.imul(Yt,rt))+Math.imul(Zt,He)|0,_=Math.imul(Zt,rt),y=y+Math.imul(tt,Ae)|0,n=(n=n+Math.imul(tt,Ge)|0)+Math.imul(Dt,Ae)|0,_=_+Math.imul(Dt,Ge)|0,y=y+Math.imul(fe,lt)|0,n=(n=n+Math.imul(fe,Ct)|0)+Math.imul(Q,lt)|0,_=_+Math.imul(Q,Ct)|0,y=y+Math.imul(W,Jt)|0,n=(n=n+Math.imul(W,$t)|0)+Math.imul(te,Jt)|0,_=_+Math.imul(te,$t)|0;var Ti=(I+(y=y+Math.imul(ce,hi)|0)|0)+((8191&(n=(n=n+Math.imul(ce,si)|0)+Math.imul(Te,hi)|0))<<13)|0;I=((_=_+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ti>>>26)|0,Ti&=67108863,y=Math.imul(Yt,Ae),n=(n=Math.imul(Yt,Ge))+Math.imul(Zt,Ae)|0,_=Math.imul(Zt,Ge),y=y+Math.imul(tt,lt)|0,n=(n=n+Math.imul(tt,Ct)|0)+Math.imul(Dt,lt)|0,_=_+Math.imul(Dt,Ct)|0,y=y+Math.imul(fe,Jt)|0,n=(n=n+Math.imul(fe,$t)|0)+Math.imul(Q,Jt)|0,_=_+Math.imul(Q,$t)|0;var $i=(I+(y=y+Math.imul(W,hi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(te,hi)|0))<<13)|0;I=((_=_+Math.imul(te,si)|0)+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,y=Math.imul(Yt,lt),n=(n=Math.imul(Yt,Ct))+Math.imul(Zt,lt)|0,_=Math.imul(Zt,Ct),y=y+Math.imul(tt,Jt)|0,n=(n=n+Math.imul(tt,$t)|0)+Math.imul(Dt,Jt)|0,_=_+Math.imul(Dt,$t)|0;var Wi=(I+(y=y+Math.imul(fe,hi)|0)|0)+((8191&(n=(n=n+Math.imul(fe,si)|0)+Math.imul(Q,hi)|0))<<13)|0;I=((_=_+Math.imul(Q,si)|0)+(n>>>13)|0)+(Wi>>>26)|0,Wi&=67108863,y=Math.imul(Yt,Jt),n=(n=Math.imul(Yt,$t))+Math.imul(Zt,Jt)|0,_=Math.imul(Zt,$t);var on=(I+(y=y+Math.imul(tt,hi)|0)|0)+((8191&(n=(n=n+Math.imul(tt,si)|0)+Math.imul(Dt,hi)|0))<<13)|0;I=((_=_+Math.imul(Dt,si)|0)+(n>>>13)|0)+(on>>>26)|0,on&=67108863;var fn=(I+(y=Math.imul(Yt,hi))|0)+((8191&(n=(n=Math.imul(Yt,si))+Math.imul(Zt,hi)|0))<<13)|0;return I=((_=Math.imul(Zt,si))+(n>>>13)|0)+(fn>>>26)|0,fn&=67108863,T[0]=Ji,T[1]=Zi,T[2]=Vi,T[3]=Ui,T[4]=Ue,T[5]=Tt,T[6]=ve,T[7]=Qe,T[8]=_t,T[9]=se,T[10]=Je,T[11]=xt,T[12]=Bt,T[13]=xi,T[14]=Ti,T[15]=$i,T[16]=Wi,T[17]=on,T[18]=fn,0!==I&&(T[19]=I,u.length++),u};function Z(x,i,r){return(new Y).mulp(x,i,r)}function Y(x,i){this.x=x,this.y=i}Math.imul||(E=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?E(this,i,r):c<63?k(this,i,r):c<1024?function B(x,i,r){r.negative=i.negative^x.negative,r.length=x.length+i.length;for(var u=0,c=0,v=0;v>>26)|0)>>>26,T&=67108863}r.words[v]=I,u=T,T=c}return 0!==u?r.words[v]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,v,T){for(var I=0;I>>=1)v++;return 1<>>=13),v>>>=13;for(T=2*r;T>=26,r+=c/67108864|0,r+=v>>>26,this.words[u]=67108863&v}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function S(x){for(var i=new Array(x.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var v,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var T=0;for(v=0;v>>26-r}T&&(this.words[v]=T,this.length++)}if(0!==u){for(v=this.length-1;v>=0;v--)this.words[v+u]=this.words[v];for(v=0;v=0),c=r?(r-r%26)/26:0;var v=i%26,T=Math.min((i-v)/26,this.length),I=67108863^67108863>>>v<T)for(this.length-=T,n=0;n=0&&(0!==_||n>=c);n--){var V=0|this.words[n];this.words[n]=_<<26-v|V>>>v,_=V&I}return y&&0!==_&&(y.words[y.length++]=_),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(y/67108864|0),this.words[v+u]=67108863&T}for(;v>26,this.words[v+u]=67108863&T;if(0===I)return this.strip();for(f(-1===I),I=0,v=0;v>26,this.words[v]=67108863&T;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),v=i,T=0|v.words[v.length-1];0!=(u=26-this._countBits(T))&&(v=v.ushln(u),c.iushln(u),T=0|v.words[v.length-1]);var n,y=c.length-v.length;if("mod"!==r){(n=new a(null)).length=y+1,n.words=new Array(n.length);for(var _=0;_=0;N--){var H=67108864*(0|c.words[v.length+N])+(0|c.words[v.length+N-1]);for(H=Math.min(H/T|0,67108863),c._ishlnsubmul(v,H,N);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(v,1,N),c.isZero()||(c.negative^=1);n&&(n.words[N]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(T=this.neg().divmod(i,r),"mod"!==r&&(c=T.div.neg()),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.iadd(i)),{div:c,mod:v}):0===this.negative&&0!==i.negative?(T=this.divmod(i.neg(),r),"mod"!==r&&(c=T.div.neg()),{div:c,mod:T.mod}):0!=(this.negative&i.negative)?(T=this.neg().divmod(i.neg(),r),"div"!==r&&(v=T.mod.neg(),u&&0!==v.negative&&v.isub(i)),{div:T.div,mod:v}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,v,T},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),v=i.andln(1),T=u.cmp(c);return T<0||1===v&&0===T?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=new a(0),I=new a(1),y=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++y;for(var n=u.clone(),_=r.clone();!r.isZero();){for(var V=0,N=1;0==(r.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(r.iushrn(V);V-- >0;)(c.isOdd()||v.isOdd())&&(c.iadd(n),v.isub(_)),c.iushrn(1),v.iushrn(1);for(var H=0,X=1;0==(u.words[0]&X)&&H<26;++H,X<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(T.isOdd()||I.isOdd())&&(T.iadd(n),I.isub(_)),T.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(T),v.isub(I)):(u.isub(r),T.isub(c),I.isub(v))}return{a:T,b:I,gcd:u.iushln(y)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var V,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),v=new a(0),T=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,y=1;0==(r.words[0]&y)&&I<26;++I,y<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(T),c.iushrn(1);for(var n=0,_=1;0==(u.words[0]&_)&&n<26;++n,_<<=1);if(n>0)for(u.iushrn(n);n-- >0;)v.isOdd()&&v.iadd(T),v.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(v)):(u.isub(r),v.isub(c))}return(V=0===r.cmpn(1)?c:v).cmpn(0)<0&&V.iadd(i),V},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var v=r.cmp(u);if(v<0){var T=r;r=u,u=T}else if(0===v||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[T]=I&=67108863}return 0!==v&&(this.words[T]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],v=0|i.words[u];if(c!==v){cv&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new q(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ae={k256:null,p224:null,p192:null,p25519:null};function ee(x,i){this.name=x,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ue(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ie(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function re(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function ge(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function q(x){if("string"==typeof x){var i=a._prime(x);this.m=i.p,this.prime=i}else f(x.gtn(1),"modulus must be greater than 1"),this.m=x,this.prime=null}function _e(x){q.call(this,x),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},ee.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},ee.prototype.split=function(i,r){i.iushrn(this.n,0,r)},ee.prototype.imulK=function(i){return i.imul(this.k)},M(ue,ee),ue.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),v=0;v>>22,T=I}i.words[v-10]=T>>>=22,i.length-=0===T&&i.length>10?10:9},ue.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=v,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ae[i])return ae[i];var r;if("k256"===i)r=new ue;else if("p224"===i)r=new ie;else if("p192"===i)r=new re;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new ge}return ae[i]=r,r},q.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},q.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},q.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},q.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},q.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},q.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},q.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},q.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},q.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},q.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},q.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},q.prototype.isqr=function(i){return this.imul(i,i.clone())},q.prototype.sqr=function(i){return this.mul(i,i)},q.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),v=0;!c.isZero()&&0===c.andln(1);)v++,c.iushrn(1);f(!c.isZero());var T=new a(1).toRed(this),I=T.redNeg(),y=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,y).cmp(I);)n.redIAdd(I);for(var _=this.pow(n,c),V=this.pow(i,c.addn(1).iushrn(1)),N=this.pow(i,c),H=v;0!==N.cmp(T);){for(var X=N,he=0;0!==X.cmp(T);he++)X=X.redSqr();f(he=0;v--){for(var _=r.words[v],V=n-1;V>=0;V--){var N=_>>V&1;T!==c[0]&&(T=this.sqr(T)),0!==N||0!==I?(I<<=1,I|=N,(4==++y||0===v&&0===V)&&(T=this.mul(T,c[I]),y=0,I=0)):y=0}n=26}return T},q.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},q.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new _e(i)},M(_e,q),_e.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},_e.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},_e.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=u.isub(c).iushrn(this.shift),T=v;return v.cmp(this.m)>=0?T=v.isub(this.m):v.cmpn(0)<0&&(T=v.iadd(this.m)),T._forceRed(this)},_e.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Be=p.nmd(Be),this)},6705:(Be,K,p)=>{var t=p(2772),e=p(6945),f=p(9401),M=p(2057),a=p(8466),C=p(6386),d=p(8651),R=p(3502).Buffer;Be.exports=function(S,k,E){var B;B=S.padding?S.padding:E?1:4;var ae,Z=t(S),Y=Z.modulus.byteLength();if(k.length>Y||new M(k).cmp(Z.modulus)>=0)throw new Error("decryption error");ae=E?d(new M(k),Z):a(k,Z);var ee=R.alloc(Y-ae.length);if(ae=R.concat([ee,ae],Y),4===B)return function h(D,S){var k=D.modulus.byteLength(),E=C("sha1").update(R.alloc(0)).digest(),B=E.length;if(0!==S[0])throw new Error("decryption error");var Z=S.slice(1,B+1),Y=S.slice(B+1),ae=f(Z,e(Y,B)),ee=f(Y,e(ae,k-B-1));if(function w(D,S){D=R.from(D),S=R.from(S);var k=0,E=D.length;D.length!==S.length&&(k++,E=Math.min(D.length,S.length));for(var B=-1;++B=S.length){Z++;break}var Y=S.slice(2,B-1);if(("0002"!==E.toString("hex")&&!k||"0001"!==E.toString("hex")&&k)&&Z++,Y.length<8&&Z++,Z)throw new Error("decryption error");return S.slice(B)}(0,ae,E);if(3===B)return ae;throw new Error("unknown padding")}},6562:(Be,K,p)=>{var t=p(2772),e=p(3753),f=p(6386),M=p(6945),a=p(9401),C=p(2057),d=p(8651),R=p(8466),h=p(3502).Buffer;Be.exports=function(k,E,B){var Z;Z=k.padding?k.padding:B?1:4;var ae,Y=t(k);if(4===Z)ae=function L(S,k){var E=S.modulus.byteLength(),B=k.length,Z=f("sha1").update(h.alloc(0)).digest(),Y=Z.length,ae=2*Y;if(B>E-ae-2)throw new Error("message too long");var ee=h.alloc(E-B-ae-2),ue=E-Y-1,ie=e(Y),re=a(h.concat([Z,ee,h.alloc(1,1),k],ue),M(ie,ue)),ge=a(ie,M(re,Y));return new C(h.concat([h.alloc(1),ge,re],E))}(Y,E);else if(1===Z)ae=function w(S,k,E){var Y,B=k.length,Z=S.modulus.byteLength();if(B>Z-11)throw new Error("message too long");return Y=E?h.alloc(Z-B-3,255):function D(S){for(var Y,k=h.allocUnsafe(S),E=0,B=e(2*S),Z=0;E=0)throw new Error("data too long for modulus")}return B?R(ae,Y):d(ae,Y)}},8651:(Be,K,p)=>{var t=p(2057),e=p(3502).Buffer;Be.exports=function f(M,a){return e.from(M.toRed(t.mont(a.modulus)).redPow(new t(a.publicExponent)).fromRed().toArray())}},9401:Be=>{Be.exports=function(p,t){for(var e=p.length,f=-1;++f{const t=p(8695),e=p(1465),f=p(3210),M=p(2334);function a(C,d,R,h,L){const w=[].slice.call(arguments,1),D=w.length,S="function"==typeof w[D-1];if(!S&&!t())throw new Error("Callback required as last argument");if(!S){if(D<1)throw new Error("Too few arguments provided");return 1===D?(R=d,d=h=void 0):2===D&&!d.getContext&&(h=R,R=d,d=void 0),new Promise(function(k,E){try{const B=e.create(R,h);k(C(B,d,h))}catch(B){E(B)}})}if(D<2)throw new Error("Too few arguments provided");2===D?(L=R,R=d,d=h=void 0):3===D&&(d.getContext&&void 0===L?(L=h,h=void 0):(L=h,h=R,R=d,d=void 0));try{const k=e.create(R,h);L(null,C(k,d,h))}catch(k){L(k)}}K.create=e.create,K.toCanvas=a.bind(null,f.render),K.toDataURL=a.bind(null,f.renderToDataURL),K.toString=a.bind(null,function(C,d,R){return M.render(C,R)})},8695:Be=>{Be.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6221:(Be,K,p)=>{const t=p(4792).getSymbolSize;K.getRowColCoords=function(f){if(1===f)return[];const M=Math.floor(f/7)+2,a=t(f),C=145===a?26:2*Math.ceil((a-13)/(2*M-2)),d=[a-7];for(let R=1;R{const t=p(4016),e=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function f(M){this.mode=t.ALPHANUMERIC,this.data=M}f.getBitsLength=function(a){return 11*Math.floor(a/2)+a%2*6},f.prototype.getLength=function(){return this.data.length},f.prototype.getBitsLength=function(){return f.getBitsLength(this.data.length)},f.prototype.write=function(a){let C;for(C=0;C+2<=this.data.length;C+=2){let d=45*e.indexOf(this.data[C]);d+=e.indexOf(this.data[C+1]),a.put(d,11)}this.data.length%2&&a.put(e.indexOf(this.data[C]),6)},Be.exports=f},2118:Be=>{function K(){this.buffer=[],this.length=0}K.prototype={get:function(p){const t=Math.floor(p/8);return 1==(this.buffer[t]>>>7-p%8&1)},put:function(p,t){for(let e=0;e>>t-e-1&1))},getLengthInBits:function(){return this.length},putBit:function(p){const t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),p&&(this.buffer[t]|=128>>>this.length%8),this.length++}},Be.exports=K},4425:Be=>{function K(p){if(!p||p<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=p,this.data=new Uint8Array(p*p),this.reservedBit=new Uint8Array(p*p)}K.prototype.set=function(p,t,e,f){const M=p*this.size+t;this.data[M]=e,f&&(this.reservedBit[M]=!0)},K.prototype.get=function(p,t){return this.data[p*this.size+t]},K.prototype.xor=function(p,t,e){this.data[p*this.size+t]^=e},K.prototype.isReserved=function(p,t){return this.reservedBit[p*this.size+t]},Be.exports=K},5663:(Be,K,p)=>{const t=p(8419),e=p(4016);function f(M){this.mode=e.BYTE,"string"==typeof M&&(M=t(M)),this.data=new Uint8Array(M)}f.getBitsLength=function(a){return 8*a},f.prototype.getLength=function(){return this.data.length},f.prototype.getBitsLength=function(){return f.getBitsLength(this.data.length)},f.prototype.write=function(M){for(let a=0,C=this.data.length;a{const t=p(2259),e=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],f=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];K.getBlocksCount=function(a,C){switch(C){case t.L:return e[4*(a-1)+0];case t.M:return e[4*(a-1)+1];case t.Q:return e[4*(a-1)+2];case t.H:return e[4*(a-1)+3];default:return}},K.getTotalCodewordsCount=function(a,C){switch(C){case t.L:return f[4*(a-1)+0];case t.M:return f[4*(a-1)+1];case t.Q:return f[4*(a-1)+2];case t.H:return f[4*(a-1)+3];default:return}}},2259:(Be,K)=>{K.L={bit:1},K.M={bit:0},K.Q={bit:3},K.H={bit:2},K.isValid=function(e){return e&&void 0!==e.bit&&e.bit>=0&&e.bit<4},K.from=function(e,f){if(K.isValid(e))return e;try{return function p(t){if("string"!=typeof t)throw new Error("Param is not a string");switch(t.toLowerCase()){case"l":case"low":return K.L;case"m":case"medium":return K.M;case"q":case"quartile":return K.Q;case"h":case"high":return K.H;default:throw new Error("Unknown EC Level: "+t)}}(e)}catch(M){return f}}},3114:(Be,K,p)=>{const t=p(4792).getSymbolSize;K.getPositions=function(M){const a=t(M);return[[0,0],[a-7,0],[0,a-7]]}},7078:(Be,K,p)=>{const t=p(4792),M=t.getBCHDigit(1335);K.getEncodedBits=function(C,d){const R=C.bit<<3|d;let h=R<<10;for(;t.getBCHDigit(h)-M>=0;)h^=1335<{const p=new Uint8Array(512),t=new Uint8Array(256);(function(){let f=1;for(let M=0;M<255;M++)p[M]=f,t[f]=M,f<<=1,256&f&&(f^=285);for(let M=255;M<512;M++)p[M]=p[M-255]})(),K.log=function(f){if(f<1)throw new Error("log("+f+")");return t[f]},K.exp=function(f){return p[f]},K.mul=function(f,M){return 0===f||0===M?0:p[t[f]+t[M]]}},4388:(Be,K,p)=>{const t=p(4016),e=p(4792);function f(M){this.mode=t.KANJI,this.data=M}f.getBitsLength=function(a){return 13*a},f.prototype.getLength=function(){return this.data.length},f.prototype.getBitsLength=function(){return f.getBitsLength(this.data.length)},f.prototype.write=function(M){let a;for(a=0;a=33088&&C<=40956)C-=33088;else{if(!(C>=57408&&C<=60351))throw new Error("Invalid SJIS character: "+this.data[a]+"\nMake sure your charset is UTF-8");C-=49472}C=192*(C>>>8&255)+(255&C),M.put(C,13)}},Be.exports=f},3667:(Be,K)=>{K.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function t(e,f,M){switch(e){case K.Patterns.PATTERN000:return(f+M)%2==0;case K.Patterns.PATTERN001:return f%2==0;case K.Patterns.PATTERN010:return M%3==0;case K.Patterns.PATTERN011:return(f+M)%3==0;case K.Patterns.PATTERN100:return(Math.floor(f/2)+Math.floor(M/3))%2==0;case K.Patterns.PATTERN101:return f*M%2+f*M%3==0;case K.Patterns.PATTERN110:return(f*M%2+f*M%3)%2==0;case K.Patterns.PATTERN111:return(f*M%3+(f+M)%2)%2==0;default:throw new Error("bad maskPattern:"+e)}}K.isValid=function(f){return null!=f&&""!==f&&!isNaN(f)&&f>=0&&f<=7},K.from=function(f){return K.isValid(f)?parseInt(f,10):void 0},K.getPenaltyN1=function(f){const M=f.size;let a=0,C=0,d=0,R=null,h=null;for(let L=0;L=5&&(a+=C-5+3),R=D,C=1),D=f.get(w,L),D===h?d++:(d>=5&&(a+=d-5+3),h=D,d=1)}C>=5&&(a+=C-5+3),d>=5&&(a+=d-5+3)}return a},K.getPenaltyN2=function(f){const M=f.size;let a=0;for(let C=0;C=10&&(1488===C||93===C)&&a++,d=d<<1&2047|f.get(h,R),h>=10&&(1488===d||93===d)&&a++}return 40*a},K.getPenaltyN4=function(f){let M=0;const a=f.data.length;for(let d=0;d{const t=p(4406),e=p(2699);K.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},K.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},K.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},K.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},K.MIXED={bit:-1},K.getCharCountIndicator=function(a,C){if(!a.ccBits)throw new Error("Invalid mode: "+a);if(!t.isValid(C))throw new Error("Invalid version: "+C);return C>=1&&C<10?a.ccBits[0]:C<27?a.ccBits[1]:a.ccBits[2]},K.getBestModeForData=function(a){return e.testNumeric(a)?K.NUMERIC:e.testAlphanumeric(a)?K.ALPHANUMERIC:e.testKanji(a)?K.KANJI:K.BYTE},K.toString=function(a){if(a&&a.id)return a.id;throw new Error("Invalid mode")},K.isValid=function(a){return a&&a.bit&&a.ccBits},K.from=function(a,C){if(K.isValid(a))return a;try{return function f(M){if("string"!=typeof M)throw new Error("Param is not a string");switch(M.toLowerCase()){case"numeric":return K.NUMERIC;case"alphanumeric":return K.ALPHANUMERIC;case"kanji":return K.KANJI;case"byte":return K.BYTE;default:throw new Error("Unknown mode: "+M)}}(a)}catch(d){return C}}},7783:(Be,K,p)=>{const t=p(4016);function e(f){this.mode=t.NUMERIC,this.data=f.toString()}e.getBitsLength=function(M){return 10*Math.floor(M/3)+(M%3?M%3*3+1:0)},e.prototype.getLength=function(){return this.data.length},e.prototype.getBitsLength=function(){return e.getBitsLength(this.data.length)},e.prototype.write=function(M){let a,C,d;for(a=0;a+3<=this.data.length;a+=3)C=this.data.substr(a,3),d=parseInt(C,10),M.put(d,10);const R=this.data.length-a;R>0&&(C=this.data.substr(a),d=parseInt(C,10),M.put(d,3*R+1))},Be.exports=e},1106:(Be,K,p)=>{const t=p(5339);K.mul=function(f,M){const a=new Uint8Array(f.length+M.length-1);for(let C=0;C=0;){const C=a[0];for(let R=0;R{const t=p(4792),e=p(2259),f=p(2118),M=p(4425),a=p(6221),C=p(3114),d=p(3667),R=p(4655),h=p(2636),L=p(2088),w=p(7078),D=p(4016),S=p(2033);function Y(re,ge,q){const _e=re.size,x=w.getEncodedBits(ge,q);let i,r;for(i=0;i<15;i++)r=1==(x>>i&1),re.set(i<6?i:i<8?i+1:_e-15+i,8,r,!0),re.set(8,i<8?_e-i-1:i<9?15-i-1+1:15-i-1,r,!0);re.set(_e-8,8,1,!0)}function ie(re,ge,q,_e){let x;if(Array.isArray(re))x=S.fromArray(re);else{if("string"!=typeof re)throw new Error("Invalid data");{let v=ge;if(!v){const T=S.rawSplit(re);v=L.getBestVersionForData(T,q)}x=S.fromString(re,v||40)}}const i=L.getBestVersionForData(x,q);if(!i)throw new Error("The amount of data is too big to be stored in a QR Code");if(ge){if(ge=0&&u<=6&&(0===c||6===c)||c>=0&&c<=6&&(0===u||6===u)||u>=2&&u<=4&&c>=2&&c<=4,!0)}}(c,ge),function E(re){const ge=re.size;for(let q=8;q=7&&function Z(re,ge){const q=re.size,_e=L.getEncodedBits(ge);let x,i,r;for(let u=0;u<18;u++)x=Math.floor(u/3),i=u%3+q-8-3,r=1==(_e>>u&1),re.set(x,i,r,!0),re.set(i,x,r,!0)}(c,ge),function ae(re,ge){const q=re.size;let _e=-1,x=q-1,i=7,r=0;for(let u=q-1;u>0;u-=2)for(6===u&&u--;;){for(let c=0;c<2;c++)if(!re.isReserved(x,u-c)){let v=!1;r>>i&1)),re.set(x,u-c,v),i--,-1===i&&(r++,i=7)}if(x+=_e,x<0||q<=x){x-=_e,_e=-_e;break}}}(c,r),isNaN(_e)&&(_e=d.getBestMask(c,Y.bind(null,c,q))),d.applyMask(_e,c),Y(c,q,_e),{modules:c,version:ge,errorCorrectionLevel:q,maskPattern:_e,segments:x}}K.create=function(ge,q){if(void 0===ge||""===ge)throw new Error("No input text");let x,i,_e=e.M;return void 0!==q&&(_e=e.from(q.errorCorrectionLevel,e.M),x=L.from(q.version),i=d.from(q.maskPattern),q.toSJISFunc&&t.setToSJISFunction(q.toSJISFunc)),ie(ge,x,_e,i)}},2636:(Be,K,p)=>{const t=p(1106);function e(f){this.genPoly=void 0,this.degree=f,this.degree&&this.initialize(this.degree)}e.prototype.initialize=function(M){this.degree=M,this.genPoly=t.generateECPolynomial(this.degree)},e.prototype.encode=function(M){if(!this.genPoly)throw new Error("Encoder not initialized");const a=new Uint8Array(M.length+this.degree);a.set(M);const C=t.mod(a,this.genPoly),d=this.degree-C.length;if(d>0){const R=new Uint8Array(this.degree);return R.set(C,d),R}return C},Be.exports=e},2699:(Be,K)=>{const p="[0-9]+";let e="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";e=e.replace(/u/g,"\\u");const f="(?:(?![A-Z0-9 $%*+\\-./:]|"+e+")(?:.|[\r\n]))+";K.KANJI=new RegExp(e,"g"),K.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),K.BYTE=new RegExp(f,"g"),K.NUMERIC=new RegExp(p,"g"),K.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const M=new RegExp("^"+e+"$"),a=new RegExp("^"+p+"$"),C=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");K.testKanji=function(R){return M.test(R)},K.testNumeric=function(R){return a.test(R)},K.testAlphanumeric=function(R){return C.test(R)}},2033:(Be,K,p)=>{const t=p(4016),e=p(7783),f=p(2424),M=p(5663),a=p(4388),C=p(2699),d=p(4792),R=p(4901);function h(Z){return unescape(encodeURIComponent(Z)).length}function L(Z,Y,ae){const ee=[];let ue;for(;null!==(ue=Z.exec(ae));)ee.push({data:ue[0],index:ue.index,mode:Y,length:ue[0].length});return ee}function w(Z){const Y=L(C.NUMERIC,t.NUMERIC,Z),ae=L(C.ALPHANUMERIC,t.ALPHANUMERIC,Z);let ee,ue;return d.isKanjiModeEnabled()?(ee=L(C.BYTE,t.BYTE,Z),ue=L(C.KANJI,t.KANJI,Z)):(ee=L(C.BYTE_KANJI,t.BYTE,Z),ue=[]),Y.concat(ae,ee,ue).sort(function(re,ge){return re.index-ge.index}).map(function(re){return{data:re.data,mode:re.mode,length:re.length}})}function D(Z,Y){switch(Y){case t.NUMERIC:return e.getBitsLength(Z);case t.ALPHANUMERIC:return f.getBitsLength(Z);case t.KANJI:return a.getBitsLength(Z);case t.BYTE:return M.getBitsLength(Z)}}function B(Z,Y){let ae;const ee=t.getBestModeForData(Z);if(ae=t.from(Y,ee),ae!==t.BYTE&&ae.bit=0?Y[Y.length-1]:null;return ee&&ee.mode===ae.mode?(Y[Y.length-1].data+=ae.data,Y):(Y.push(ae),Y)},[])}(ge))},K.rawSplit=function(Y){return K.fromArray(w(Y,d.isKanjiModeEnabled()))}},4792:(Be,K)=>{let p;const t=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];K.getSymbolSize=function(f){if(!f)throw new Error('"version" cannot be null or undefined');if(f<1||f>40)throw new Error('"version" should be in range from 1 to 40');return 4*f+17},K.getSymbolTotalCodewords=function(f){return t[f]},K.getBCHDigit=function(e){let f=0;for(;0!==e;)f++,e>>>=1;return f},K.setToSJISFunction=function(f){if("function"!=typeof f)throw new Error('"toSJISFunc" is not a valid function.');p=f},K.isKanjiModeEnabled=function(){return void 0!==p},K.toSJIS=function(f){return p(f)}},4406:(Be,K)=>{K.isValid=function(t){return!isNaN(t)&&t>=1&&t<=40}},2088:(Be,K,p)=>{const t=p(4792),e=p(4655),f=p(2259),M=p(4016),a=p(4406),d=t.getBCHDigit(7973);function h(D,S){return M.getCharCountIndicator(D,S)+4}function L(D,S){let k=0;return D.forEach(function(E){k+=h(E.mode,S)+E.getBitsLength()}),k}K.from=function(S,k){return a.isValid(S)?parseInt(S,10):k},K.getCapacity=function(S,k,E){if(!a.isValid(S))throw new Error("Invalid QR Code version");void 0===E&&(E=M.BYTE);const Y=8*(t.getSymbolTotalCodewords(S)-e.getTotalCodewordsCount(S,k));if(E===M.MIXED)return Y;const ae=Y-h(E,S);switch(E){case M.NUMERIC:return Math.floor(ae/10*3);case M.ALPHANUMERIC:return Math.floor(ae/11*2);case M.KANJI:return Math.floor(ae/13);default:return Math.floor(ae/8)}},K.getBestVersionForData=function(S,k){let E;const B=f.from(k,f.M);if(Array.isArray(S)){if(S.length>1)return function w(D,S){for(let k=1;k<=40;k++)if(L(D,k)<=K.getCapacity(k,S,M.MIXED))return k}(S,B);if(0===S.length)return 1;E=S[0]}else E=S;return function R(D,S,k){for(let E=1;E<=40;E++)if(S<=K.getCapacity(E,k,D))return E}(E.mode,E.getLength(),B)},K.getEncodedBits=function(S){if(!a.isValid(S)||S<7)throw new Error("Invalid QR Code version");let k=S<<12;for(;t.getBCHDigit(k)-d>=0;)k^=7973<{const t=p(6355);K.render=function(a,C,d){let R=d,h=C;void 0===R&&(!C||!C.getContext)&&(R=C,C=void 0),C||(h=function f(){try{return document.createElement("canvas")}catch(M){throw new Error("You need to specify a canvas element")}}()),R=t.getOptions(R);const L=t.getImageWidth(a.modules.size,R),w=h.getContext("2d"),D=w.createImageData(L,L);return t.qrToImageData(D.data,a,R),function e(M,a,C){M.clearRect(0,0,a.width,a.height),a.style||(a.style={}),a.height=C,a.width=C,a.style.height=C+"px",a.style.width=C+"px"}(w,h,L),w.putImageData(D,0,0),h},K.renderToDataURL=function(a,C,d){let R=d;return void 0===R&&(!C||!C.getContext)&&(R=C,C=void 0),R||(R={}),K.render(a,C,R).toDataURL(R.type||"image/png",(R.rendererOpts||{}).quality)}},2334:(Be,K,p)=>{const t=p(6355);function e(a,C){const d=a.a/255,R=C+'="'+a.hex+'"';return d<1?R+" "+C+'-opacity="'+d.toFixed(2).slice(1)+'"':R}function f(a,C,d){let R=a+C;return void 0!==d&&(R+=" "+d),R}K.render=function(C,d,R){const h=t.getOptions(d),L=C.modules.size,w=C.modules.data,D=L+2*h.margin,S=h.color.light.a?"':"",k="0&&S>0&&a[D-1]||(R+=L?f("M",S+d,.5+k+d):f("m",h,0),h=0,L=!1),S+1',Z=''+S+k+"\n";return"function"==typeof R&&R(null,Z),Z}},6355:(Be,K)=>{function p(t){if("number"==typeof t&&(t=t.toString()),"string"!=typeof t)throw new Error("Color should be defined as hex string");let e=t.slice().replace("#","").split("");if(e.length<3||5===e.length||e.length>8)throw new Error("Invalid hex color: "+t);(3===e.length||4===e.length)&&(e=Array.prototype.concat.apply([],e.map(function(M){return[M,M]}))),6===e.length&&e.push("F","F");const f=parseInt(e.join(""),16);return{r:f>>24&255,g:f>>16&255,b:f>>8&255,a:255&f,hex:"#"+e.slice(0,6).join("")}}K.getOptions=function(e){e||(e={}),e.color||(e.color={});const M=e.width&&e.width>=21?e.width:void 0;return{width:M,scale:M?4:e.scale||4,margin:null==e.margin||e.margin<0?4:e.margin,color:{dark:p(e.color.dark||"#000000ff"),light:p(e.color.light||"#ffffffff")},type:e.type,rendererOpts:e.rendererOpts||{}}},K.getScale=function(e,f){return f.width&&f.width>=e+2*f.margin?f.width/(e+2*f.margin):f.scale},K.getImageWidth=function(e,f){const M=K.getScale(e,f);return Math.floor((e+2*f.margin)*M)},K.qrToImageData=function(e,f,M){const a=f.modules.size,C=f.modules.data,d=K.getScale(a,M),R=Math.floor((a+2*M.margin)*d),h=M.margin*d,L=[M.color.light,M.color.dark];for(let w=0;w=h&&D>=h&&w{"use strict";var t=65536,M=p(3502).Buffer,a=global.crypto||global.msCrypto;Be.exports=a&&a.getRandomValues?function C(d,R){if(d>4294967295)throw new RangeError("requested too many random bytes");var h=M.allocUnsafe(d);if(d>0)if(d>t)for(var L=0;L{"use strict";function t(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var e=p(3502),f=p(3753),M=e.Buffer,a=e.kMaxLength,C=global.crypto||global.msCrypto,d=Math.pow(2,32)-1;function R(S,k){if("number"!=typeof S||S!=S)throw new TypeError("offset must be a number");if(S>d||S<0)throw new TypeError("offset must be a uint32");if(S>a||S>k)throw new RangeError("offset out of range")}function h(S,k,E){if("number"!=typeof S||S!=S)throw new TypeError("size must be a number");if(S>d||S<0)throw new TypeError("size must be a uint32");if(S+k>E||S>a)throw new RangeError("buffer too small")}function w(S,k,E,B){if(process.browser){var Y=new Uint8Array(S.buffer,k,E);return C.getRandomValues(Y),B?void process.nextTick(function(){B(null,S)}):S}if(!B)return f(E).copy(S,k),S;f(E,function(ee,ue){if(ee)return B(ee);ue.copy(S,k),B(null,S)})}C&&C.getRandomValues||!process.browser?(K.randomFill=function L(S,k,E,B){if(!(M.isBuffer(S)||S instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof k)B=k,k=0,E=S.length;else if("function"==typeof E)B=E,E=S.length-k;else if("function"!=typeof B)throw new TypeError('"cb" argument must be a function');return R(k,S.length),h(E,k,S.length),w(S,k,E,B)},K.randomFillSync=function D(S,k,E){if(void 0===k&&(k=0),!(M.isBuffer(S)||S instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return R(k,S.length),void 0===E&&(E=S.length-k),h(E,k,S.length),w(S,k,E)}):(K.randomFill=t,K.randomFillSync=t)},891:Be=>{"use strict";var p={};function t(C,d,R){R||(R=Error);var L=function(w){function D(S,k,E){return w.call(this,function h(w,D,S){return"string"==typeof d?d:d(w,D,S)}(S,k,E))||this}return function K(C,d){C.prototype=Object.create(d.prototype),C.prototype.constructor=C,C.__proto__=d}(D,w),D}(R);L.prototype.name=R.name,L.prototype.code=C,p[C]=L}function e(C,d){if(Array.isArray(C)){var R=C.length;return C=C.map(function(h){return String(h)}),R>2?"one of ".concat(d," ").concat(C.slice(0,R-1).join(", "),", or ")+C[R-1]:2===R?"one of ".concat(d," ").concat(C[0]," or ").concat(C[1]):"of ".concat(d," ").concat(C[0])}return"of ".concat(d," ").concat(String(C))}t("ERR_INVALID_OPT_VALUE",function(C,d){return'The value "'+d+'" is invalid for option "'+C+'"'},TypeError),t("ERR_INVALID_ARG_TYPE",function(C,d,R){var h,L;if("string"==typeof d&&function f(C,d,R){return C.substr(!R||R<0?0:+R,d.length)===d}(d,"not ")?(h="must not be",d=d.replace(/^not /,"")):h="must be",function M(C,d,R){return(void 0===R||R>C.length)&&(R=C.length),C.substring(R-d.length,R)===d}(C," argument"))L="The ".concat(C," ").concat(h," ").concat(e(d,"type"));else{var w=function a(C,d,R){return"number"!=typeof R&&(R=0),!(R+d.length>C.length)&&-1!==C.indexOf(d,R)}(C,".")?"property":"argument";L='The "'.concat(C,'" ').concat(w," ").concat(h," ").concat(e(d,"type"))}return L+". Received type ".concat(typeof R)},TypeError),t("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),t("ERR_METHOD_NOT_IMPLEMENTED",function(C){return"The "+C+" method is not implemented"}),t("ERR_STREAM_PREMATURE_CLOSE","Premature close"),t("ERR_STREAM_DESTROYED",function(C){return"Cannot call "+C+" after a stream was destroyed"}),t("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),t("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),t("ERR_STREAM_WRITE_AFTER_END","write after end"),t("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),t("ERR_UNKNOWN_ENCODING",function(C){return"Unknown encoding: "+C},TypeError),t("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Be.exports.q=p},1339:(Be,K,p)=>{"use strict";var t=Object.keys||function(L){var w=[];for(var D in L)w.push(D);return w};Be.exports=d;var e=p(3154),f=p(520);p(3894)(d,e);for(var M=t(f.prototype),a=0;a{"use strict";Be.exports=e;var t=p(6025);function e(f){if(!(this instanceof e))return new e(f);t.call(this,f)}p(3894)(e,t),e.prototype._transform=function(f,M,a){a(null,f)}},3154:(Be,K,p)=>{"use strict";var t;Be.exports=x,x.ReadableState=_e,p(9069);var L,f=function(Ie,ut){return Ie.listeners(ut).length},M=p(4970),a=p(3172).Buffer,C=global.Uint8Array||function(){},h=p(4616);L=h&&h.debuglog?h.debuglog("stream"):function(){};var ee,ue,ie,w=p(5019),D=p(1920),k=p(7102).getHighWaterMark,E=p(891).q,B=E.ERR_INVALID_ARG_TYPE,Z=E.ERR_STREAM_PUSH_AFTER_EOF,Y=E.ERR_METHOD_NOT_IMPLEMENTED,ae=E.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;p(3894)(x,M);var re=D.errorOrDestroy,ge=["error","close","destroy","pause","resume"];function _e(J,Ie,ut){t=t||p(1339),"boolean"!=typeof ut&&(ut=Ie instanceof t),this.objectMode=!!(J=J||{}).objectMode,ut&&(this.objectMode=this.objectMode||!!J.readableObjectMode),this.highWaterMark=k(this,J,"readableHighWaterMark",ut),this.buffer=new w,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==J.emitClose,this.autoDestroy=!!J.autoDestroy,this.destroyed=!1,this.defaultEncoding=J.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,J.encoding&&(ee||(ee=p(3054).s),this.decoder=new ee(J.encoding),this.encoding=J.encoding)}function x(J){if(t=t||p(1339),!(this instanceof x))return new x(J);this._readableState=new _e(J,this,this instanceof t),this.readable=!0,J&&("function"==typeof J.read&&(this._read=J.read),"function"==typeof J.destroy&&(this._destroy=J.destroy)),M.call(this)}function i(J,Ie,ut,Oe,we){L("readableAddChunk",Ie);var Te,ce=J._readableState;if(null===Ie)ce.reading=!1,function I(J,Ie){if(L("onEofChunk"),!Ie.ended){if(Ie.decoder){var ut=Ie.decoder.end();ut&&ut.length&&(Ie.buffer.push(ut),Ie.length+=Ie.objectMode?1:ut.length)}Ie.ended=!0,Ie.sync?y(J):(Ie.needReadable=!1,Ie.emittedReadable||(Ie.emittedReadable=!0,n(J)))}}(J,ce);else if(we||(Te=function u(J,Ie){var ut;return!function R(J){return a.isBuffer(J)||J instanceof C}(Ie)&&"string"!=typeof Ie&&void 0!==Ie&&!J.objectMode&&(ut=new B("chunk",["string","Buffer","Uint8Array"],Ie)),ut}(ce,Ie)),Te)re(J,Te);else if(ce.objectMode||Ie&&Ie.length>0)if("string"!=typeof Ie&&!ce.objectMode&&Object.getPrototypeOf(Ie)!==a.prototype&&(Ie=function d(J){return a.from(J)}(Ie)),Oe)ce.endEmitted?re(J,new ae):r(J,ce,Ie,!0);else if(ce.ended)re(J,new Z);else{if(ce.destroyed)return!1;ce.reading=!1,ce.decoder&&!ut?(Ie=ce.decoder.write(Ie),ce.objectMode||0!==Ie.length?r(J,ce,Ie,!1):_(J,ce)):r(J,ce,Ie,!1)}else Oe||(ce.reading=!1,_(J,ce));return!ce.ended&&(ce.lengthIe.highWaterMark&&(Ie.highWaterMark=function v(J){return J>=c?J=c:(J--,J|=J>>>1,J|=J>>>2,J|=J>>>4,J|=J>>>8,J|=J>>>16,J++),J}(J)),J<=Ie.length?J:Ie.ended?Ie.length:(Ie.needReadable=!0,0))}function y(J){var Ie=J._readableState;L("emitReadable",Ie.needReadable,Ie.emittedReadable),Ie.needReadable=!1,Ie.emittedReadable||(L("emitReadable",Ie.flowing),Ie.emittedReadable=!0,process.nextTick(n,J))}function n(J){var Ie=J._readableState;L("emitReadable_",Ie.destroyed,Ie.length,Ie.ended),!Ie.destroyed&&(Ie.length||Ie.ended)&&(J.emit("readable"),Ie.emittedReadable=!1),Ie.needReadable=!Ie.flowing&&!Ie.ended&&Ie.length<=Ie.highWaterMark,Pe(J)}function _(J,Ie){Ie.readingMore||(Ie.readingMore=!0,process.nextTick(V,J,Ie))}function V(J,Ie){for(;!Ie.reading&&!Ie.ended&&(Ie.length0,Ie.resumeScheduled&&!Ie.paused?Ie.flowing=!0:J.listenerCount("data")>0&&J.resume()}function X(J){L("readable nexttick read 0"),J.read(0)}function be(J,Ie){L("resume",Ie.reading),Ie.reading||J.read(0),Ie.resumeScheduled=!1,J.emit("resume"),Pe(J),Ie.flowing&&!Ie.reading&&J.read(0)}function Pe(J){var Ie=J._readableState;for(L("flow",Ie.flowing);Ie.flowing&&null!==J.read(););}function Ee(J,Ie){return 0===Ie.length?null:(Ie.objectMode?ut=Ie.buffer.shift():!J||J>=Ie.length?(ut=Ie.decoder?Ie.buffer.join(""):1===Ie.buffer.length?Ie.buffer.first():Ie.buffer.concat(Ie.length),Ie.buffer.clear()):ut=Ie.buffer.consume(J,Ie.decoder),ut);var ut}function j(J){var Ie=J._readableState;L("endReadable",Ie.endEmitted),Ie.endEmitted||(Ie.ended=!0,process.nextTick(Ve,Ie,J))}function Ve(J,Ie){if(L("endReadableNT",J.endEmitted,J.length),!J.endEmitted&&0===J.length&&(J.endEmitted=!0,Ie.readable=!1,Ie.emit("end"),J.autoDestroy)){var ut=Ie._writableState;(!ut||ut.autoDestroy&&ut.finished)&&Ie.destroy()}}function Me(J,Ie){for(var ut=0,Oe=J.length;ut=Ie.highWaterMark:Ie.length>0)||Ie.ended))return L("read: emitReadable",Ie.length,Ie.ended),0===Ie.length&&Ie.ended?j(this):y(this),null;if(0===(J=T(J,Ie))&&Ie.ended)return 0===Ie.length&&j(this),null;var we,Oe=Ie.needReadable;return L("need readable",Oe),(0===Ie.length||Ie.length-J0?Ee(J,Ie):null)?(Ie.needReadable=Ie.length<=Ie.highWaterMark,J=0):(Ie.length-=J,Ie.awaitDrain=0),0===Ie.length&&(Ie.ended||(Ie.needReadable=!0),ut!==J&&Ie.ended&&j(this)),null!==we&&this.emit("data",we),we},x.prototype._read=function(J){re(this,new Y("_read()"))},x.prototype.pipe=function(J,Ie){var ut=this,Oe=this._readableState;switch(Oe.pipesCount){case 0:Oe.pipes=J;break;case 1:Oe.pipes=[Oe.pipes,J];break;default:Oe.pipes.push(J)}Oe.pipesCount+=1,L("pipe count=%d opts=%j",Oe.pipesCount,Ie);var ce=Ie&&!1===Ie.end||J===process.stdout||J===process.stderr?Dt:xe;function xe(){L("onend"),J.end()}Oe.endEmitted?process.nextTick(ce):ut.once("end",ce),J.on("unpipe",function Te(di,Yt){L("onunpipe"),di===ut&&Yt&&!1===Yt.hasUnpiped&&(Yt.hasUnpiped=!0,function Ce(){L("cleanup"),J.removeListener("close",ft),J.removeListener("finish",tt),J.removeListener("drain",W),J.removeListener("error",Q),J.removeListener("unpipe",Te),ut.removeListener("end",xe),ut.removeListener("end",Dt),ut.removeListener("data",fe),te=!0,Oe.awaitDrain&&(!J._writableState||J._writableState.needDrain)&&W()}())});var W=function N(J){return function(){var ut=J._readableState;L("pipeOnDrain",ut.awaitDrain),ut.awaitDrain&&ut.awaitDrain--,0===ut.awaitDrain&&f(J,"data")&&(ut.flowing=!0,Pe(J))}}(ut);J.on("drain",W);var te=!1;function fe(di){L("ondata");var Yt=J.write(di);L("dest.write",Yt),!1===Yt&&((1===Oe.pipesCount&&Oe.pipes===J||Oe.pipesCount>1&&-1!==Me(Oe.pipes,J))&&!te&&(L("false write response, pause",Oe.awaitDrain),Oe.awaitDrain++),ut.pause())}function Q(di){L("onerror",di),Dt(),J.removeListener("error",Q),0===f(J,"error")&&re(J,di)}function ft(){J.removeListener("finish",tt),Dt()}function tt(){L("onfinish"),J.removeListener("close",ft),Dt()}function Dt(){L("unpipe"),ut.unpipe(J)}return ut.on("data",fe),function q(J,Ie,ut){if("function"==typeof J.prependListener)return J.prependListener(Ie,ut);J._events&&J._events[Ie]?Array.isArray(J._events[Ie])?J._events[Ie].unshift(ut):J._events[Ie]=[ut,J._events[Ie]]:J.on(Ie,ut)}(J,"error",Q),J.once("close",ft),J.once("finish",tt),J.emit("pipe",ut),Oe.flowing||(L("pipe resume"),ut.resume()),J},x.prototype.unpipe=function(J){var Ie=this._readableState,ut={hasUnpiped:!1};if(0===Ie.pipesCount)return this;if(1===Ie.pipesCount)return J&&J!==Ie.pipes||(J||(J=Ie.pipes),Ie.pipes=null,Ie.pipesCount=0,Ie.flowing=!1,J&&J.emit("unpipe",this,ut)),this;if(!J){var Oe=Ie.pipes,we=Ie.pipesCount;Ie.pipes=null,Ie.pipesCount=0,Ie.flowing=!1;for(var ce=0;ce0,!1!==Oe.flowing&&this.resume()):"readable"===J&&!Oe.endEmitted&&!Oe.readableListening&&(Oe.readableListening=Oe.needReadable=!0,Oe.flowing=!1,Oe.emittedReadable=!1,L("on readable",Oe.length,Oe.reading),Oe.length?y(this):Oe.reading||process.nextTick(X,this)),ut},x.prototype.removeListener=function(J,Ie){var ut=M.prototype.removeListener.call(this,J,Ie);return"readable"===J&&process.nextTick(H,this),ut},x.prototype.removeAllListeners=function(J){var Ie=M.prototype.removeAllListeners.apply(this,arguments);return("readable"===J||void 0===J)&&process.nextTick(H,this),Ie},x.prototype.resume=function(){var J=this._readableState;return J.flowing||(L("resume"),J.flowing=!J.readableListening,function he(J,Ie){Ie.resumeScheduled||(Ie.resumeScheduled=!0,process.nextTick(be,J,Ie))}(this,J)),J.paused=!1,this},x.prototype.pause=function(){return L("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(L("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},x.prototype.wrap=function(J){var Ie=this,ut=this._readableState,Oe=!1;for(var we in J.on("end",function(){if(L("wrapped end"),ut.decoder&&!ut.ended){var Te=ut.decoder.end();Te&&Te.length&&Ie.push(Te)}Ie.push(null)}),J.on("data",function(Te){L("wrapped data"),ut.decoder&&(Te=ut.decoder.write(Te)),ut.objectMode&&null==Te||!(ut.objectMode||Te&&Te.length)||Ie.push(Te)||(Oe=!0,J.pause())}),J)void 0===this[we]&&"function"==typeof J[we]&&(this[we]=function(xe){return function(){return J[xe].apply(J,arguments)}}(we));for(var ce=0;ce{"use strict";Be.exports=R;var t=p(891).q,e=t.ERR_METHOD_NOT_IMPLEMENTED,f=t.ERR_MULTIPLE_CALLBACK,M=t.ERR_TRANSFORM_ALREADY_TRANSFORMING,a=t.ERR_TRANSFORM_WITH_LENGTH_0,C=p(1339);function d(w,D){var S=this._transformState;S.transforming=!1;var k=S.writecb;if(null===k)return this.emit("error",new f);S.writechunk=null,S.writecb=null,null!=D&&this.push(D),k(w);var E=this._readableState;E.reading=!1,(E.needReadable||E.length{"use strict";function e(Pe){var Ee=this;this.next=null,this.entry=null,this.finish=function(){!function be(Pe,Ee,j){var Ve=Pe.entry;for(Pe.entry=null;Ve;){var Me=Ve.callback;Ee.pendingcb--,Me(j),Ve=Ve.next}Ee.corkedRequestsFree.next=Pe}(Ee,Pe)}}var f;Be.exports=_e,_e.WritableState=ge;var q,M={deprecate:p(4364)},a=p(4970),C=p(3172).Buffer,d=global.Uint8Array||function(){},L=p(1920),D=p(7102).getHighWaterMark,S=p(891).q,k=S.ERR_INVALID_ARG_TYPE,E=S.ERR_METHOD_NOT_IMPLEMENTED,B=S.ERR_MULTIPLE_CALLBACK,Z=S.ERR_STREAM_CANNOT_PIPE,Y=S.ERR_STREAM_DESTROYED,ae=S.ERR_STREAM_NULL_VALUES,ee=S.ERR_STREAM_WRITE_AFTER_END,ue=S.ERR_UNKNOWN_ENCODING,ie=L.errorOrDestroy;function re(){}function ge(Pe,Ee,j){f=f||p(1339),"boolean"!=typeof j&&(j=Ee instanceof f),this.objectMode=!!(Pe=Pe||{}).objectMode,j&&(this.objectMode=this.objectMode||!!Pe.writableObjectMode),this.highWaterMark=D(this,Pe,"writableHighWaterMark",j),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Pe.decodeStrings),this.defaultEncoding=Pe.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(Me){!function I(Pe,Ee){var j=Pe._writableState,Ve=j.sync,Me=j.writecb;if("function"!=typeof Me)throw new B;if(function T(Pe){Pe.writing=!1,Pe.writecb=null,Pe.length-=Pe.writelen,Pe.writelen=0}(j),Ee)!function v(Pe,Ee,j,Ve,Me){--Ee.pendingcb,j?(process.nextTick(Me,Ve),process.nextTick(X,Pe,Ee),Pe._writableState.errorEmitted=!0,ie(Pe,Ve)):(Me(Ve),Pe._writableState.errorEmitted=!0,ie(Pe,Ve),X(Pe,Ee))}(Pe,j,Ve,Ee,Me);else{var J=V(j)||Pe.destroyed;!J&&!j.corked&&!j.bufferProcessing&&j.bufferedRequest&&_(Pe,j),Ve?process.nextTick(y,Pe,j,J,Me):y(Pe,j,J,Me)}}(Ee,Me)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Pe.emitClose,this.autoDestroy=!!Pe.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new e(this)}function _e(Pe){var Ee=this instanceof(f=f||p(1339));if(!Ee&&!q.call(_e,this))return new _e(Pe);this._writableState=new ge(Pe,this,Ee),this.writable=!0,Pe&&("function"==typeof Pe.write&&(this._write=Pe.write),"function"==typeof Pe.writev&&(this._writev=Pe.writev),"function"==typeof Pe.destroy&&(this._destroy=Pe.destroy),"function"==typeof Pe.final&&(this._final=Pe.final)),a.call(this)}function c(Pe,Ee,j,Ve,Me,J,Ie){Ee.writelen=Ve,Ee.writecb=Ie,Ee.writing=!0,Ee.sync=!0,Ee.destroyed?Ee.onwrite(new Y("write")):j?Pe._writev(Me,Ee.onwrite):Pe._write(Me,J,Ee.onwrite),Ee.sync=!1}function y(Pe,Ee,j,Ve){j||function n(Pe,Ee){0===Ee.length&&Ee.needDrain&&(Ee.needDrain=!1,Pe.emit("drain"))}(Pe,Ee),Ee.pendingcb--,Ve(),X(Pe,Ee)}function _(Pe,Ee){Ee.bufferProcessing=!0;var j=Ee.bufferedRequest;if(Pe._writev&&j&&j.next){var Me=new Array(Ee.bufferedRequestCount),J=Ee.corkedRequestsFree;J.entry=j;for(var Ie=0,ut=!0;j;)Me[Ie]=j,j.isBuf||(ut=!1),j=j.next,Ie+=1;Me.allBuffers=ut,c(Pe,Ee,!0,Ee.length,Me,"",J.finish),Ee.pendingcb++,Ee.lastBufferedRequest=null,J.next?(Ee.corkedRequestsFree=J.next,J.next=null):Ee.corkedRequestsFree=new e(Ee),Ee.bufferedRequestCount=0}else{for(;j;){var Oe=j.chunk;if(c(Pe,Ee,!1,Ee.objectMode?1:Oe.length,Oe,j.encoding,j.callback),j=j.next,Ee.bufferedRequestCount--,Ee.writing)break}null===j&&(Ee.lastBufferedRequest=null)}Ee.bufferedRequest=j,Ee.bufferProcessing=!1}function V(Pe){return Pe.ending&&0===Pe.length&&null===Pe.bufferedRequest&&!Pe.finished&&!Pe.writing}function N(Pe,Ee){Pe._final(function(j){Ee.pendingcb--,j&&ie(Pe,j),Ee.prefinished=!0,Pe.emit("prefinish"),X(Pe,Ee)})}function X(Pe,Ee){var j=V(Ee);if(j&&(function H(Pe,Ee){!Ee.prefinished&&!Ee.finalCalled&&("function"!=typeof Pe._final||Ee.destroyed?(Ee.prefinished=!0,Pe.emit("prefinish")):(Ee.pendingcb++,Ee.finalCalled=!0,process.nextTick(N,Pe,Ee)))}(Pe,Ee),0===Ee.pendingcb&&(Ee.finished=!0,Pe.emit("finish"),Ee.autoDestroy))){var Ve=Pe._readableState;(!Ve||Ve.autoDestroy&&Ve.endEmitted)&&Pe.destroy()}return j}p(3894)(_e,a),ge.prototype.getBuffer=function(){for(var Ee=this.bufferedRequest,j=[];Ee;)j.push(Ee),Ee=Ee.next;return j},function(){try{Object.defineProperty(ge.prototype,"buffer",{get:M.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(Pe){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(q=Function.prototype[Symbol.hasInstance],Object.defineProperty(_e,Symbol.hasInstance,{value:function(Ee){return!!q.call(this,Ee)||this===_e&&Ee&&Ee._writableState instanceof ge}})):q=function(Ee){return Ee instanceof this},_e.prototype.pipe=function(){ie(this,new Z)},_e.prototype.write=function(Pe,Ee,j){var Ve=this._writableState,Me=!1,J=!Ve.objectMode&&function h(Pe){return C.isBuffer(Pe)||Pe instanceof d}(Pe);return J&&!C.isBuffer(Pe)&&(Pe=function R(Pe){return C.from(Pe)}(Pe)),"function"==typeof Ee&&(j=Ee,Ee=null),J?Ee="buffer":Ee||(Ee=Ve.defaultEncoding),"function"!=typeof j&&(j=re),Ve.ending?function x(Pe,Ee){var j=new ee;ie(Pe,j),process.nextTick(Ee,j)}(this,j):(J||function i(Pe,Ee,j,Ve){var Me;return null===j?Me=new ae:"string"!=typeof j&&!Ee.objectMode&&(Me=new k("chunk",["string","Buffer"],j)),!Me||(ie(Pe,Me),process.nextTick(Ve,Me),!1)}(this,Ve,Pe,j))&&(Ve.pendingcb++,Me=function u(Pe,Ee,j,Ve,Me,J){if(!j){var Ie=function r(Pe,Ee,j){return!Pe.objectMode&&!1!==Pe.decodeStrings&&"string"==typeof Ee&&(Ee=C.from(Ee,j)),Ee}(Ee,Ve,Me);Ve!==Ie&&(j=!0,Me="buffer",Ve=Ie)}var ut=Ee.objectMode?1:Ve.length;Ee.length+=ut;var Oe=Ee.length-1))throw new ue(Ee);return this._writableState.defaultEncoding=Ee,this},Object.defineProperty(_e.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(_e.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),_e.prototype._write=function(Pe,Ee,j){j(new E("_write()"))},_e.prototype._writev=null,_e.prototype.end=function(Pe,Ee,j){var Ve=this._writableState;return"function"==typeof Pe?(j=Pe,Pe=null,Ee=null):"function"==typeof Ee&&(j=Ee,Ee=null),null!=Pe&&this.write(Pe,Ee),Ve.corked&&(Ve.corked=1,this.uncork()),Ve.ending||function he(Pe,Ee,j){Ee.ending=!0,X(Pe,Ee),j&&(Ee.finished?process.nextTick(j):Pe.once("finish",j)),Ee.ended=!0,Pe.writable=!1}(this,Ve,j),this},Object.defineProperty(_e.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(_e.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(Ee){!this._writableState||(this._writableState.destroyed=Ee)}}),_e.prototype.destroy=L.destroy,_e.prototype._undestroy=L.undestroy,_e.prototype._destroy=function(Pe,Ee){Ee(Pe)}},3872:(Be,K,p)=>{"use strict";var t;function e(Y,ae,ee){return ae in Y?Object.defineProperty(Y,ae,{value:ee,enumerable:!0,configurable:!0,writable:!0}):Y[ae]=ee,Y}var f=p(7542),M=Symbol("lastResolve"),a=Symbol("lastReject"),C=Symbol("error"),d=Symbol("ended"),R=Symbol("lastPromise"),h=Symbol("handlePromise"),L=Symbol("stream");function w(Y,ae){return{value:Y,done:ae}}function D(Y){var ae=Y[M];if(null!==ae){var ee=Y[L].read();null!==ee&&(Y[R]=null,Y[M]=null,Y[a]=null,ae(w(ee,!1)))}}function S(Y){process.nextTick(D,Y)}var E=Object.getPrototypeOf(function(){}),B=Object.setPrototypeOf((e(t={get stream(){return this[L]},next:function(){var ae=this,ee=this[C];if(null!==ee)return Promise.reject(ee);if(this[d])return Promise.resolve(w(void 0,!0));if(this[L].destroyed)return new Promise(function(ge,q){process.nextTick(function(){ae[C]?q(ae[C]):ge(w(void 0,!0))})});var ie,ue=this[R];if(ue)ie=new Promise(function k(Y,ae){return function(ee,ue){Y.then(function(){ae[d]?ee(w(void 0,!0)):ae[h](ee,ue)},ue)}}(ue,this));else{var re=this[L].read();if(null!==re)return Promise.resolve(w(re,!1));ie=new Promise(this[h])}return this[R]=ie,ie}},Symbol.asyncIterator,function(){return this}),e(t,"return",function(){var ae=this;return new Promise(function(ee,ue){ae[L].destroy(null,function(ie){ie?ue(ie):ee(w(void 0,!0))})})}),t),E);Be.exports=function(ae){var ee,ue=Object.create(B,(e(ee={},L,{value:ae,writable:!0}),e(ee,M,{value:null,writable:!0}),e(ee,a,{value:null,writable:!0}),e(ee,C,{value:null,writable:!0}),e(ee,d,{value:ae._readableState.endEmitted,writable:!0}),e(ee,h,{value:function(re,ge){var q=ue[L].read();q?(ue[R]=null,ue[M]=null,ue[a]=null,re(w(q,!1))):(ue[M]=re,ue[a]=ge)},writable:!0}),ee));return ue[R]=null,f(ae,function(ie){if(ie&&"ERR_STREAM_PREMATURE_CLOSE"!==ie.code){var re=ue[a];return null!==re&&(ue[R]=null,ue[M]=null,ue[a]=null,re(ie)),void(ue[C]=ie)}var ge=ue[M];null!==ge&&(ue[R]=null,ue[M]=null,ue[a]=null,ge(w(void 0,!0))),ue[d]=!0}),ae.on("readable",S.bind(null,ue)),ue}},5019:(Be,K,p)=>{"use strict";function t(S,k){var E=Object.keys(S);if(Object.getOwnPropertySymbols){var B=Object.getOwnPropertySymbols(S);k&&(B=B.filter(function(Z){return Object.getOwnPropertyDescriptor(S,Z).enumerable})),E.push.apply(E,B)}return E}function f(S,k,E){return k in S?Object.defineProperty(S,k,{value:E,enumerable:!0,configurable:!0,writable:!0}):S[k]=E,S}function a(S,k){for(var E=0;E0?this.tail.next=B:this.head=B,this.tail=B,++this.length}},{key:"unshift",value:function(E){var B={data:E,next:this.head};0===this.length&&(this.tail=B),this.head=B,++this.length}},{key:"shift",value:function(){if(0!==this.length){var E=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,E}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(E){if(0===this.length)return"";for(var B=this.head,Z=""+B.data;B=B.next;)Z+=E+B.data;return Z}},{key:"concat",value:function(E){if(0===this.length)return R.alloc(0);for(var B=R.allocUnsafe(E>>>0),Z=this.head,Y=0;Z;)D(Z.data,B,Y),Y+=Z.data.length,Z=Z.next;return B}},{key:"consume",value:function(E,B){var Z;return Eae.length?ae.length:E;if(Y+=ee===ae.length?ae:ae.slice(0,E),0==(E-=ee)){ee===ae.length?(++Z,this.head=B.next?B.next:this.tail=null):(this.head=B,B.data=ae.slice(ee));break}++Z}return this.length-=Z,Y}},{key:"_getBuffer",value:function(E){var B=R.allocUnsafe(E),Z=this.head,Y=1;for(Z.data.copy(B),E-=Z.data.length;Z=Z.next;){var ae=Z.data,ee=E>ae.length?ae.length:E;if(ae.copy(B,B.length-E,0,ee),0==(E-=ee)){ee===ae.length?(++Y,this.head=Z.next?Z.next:this.tail=null):(this.head=Z,Z.data=ae.slice(ee));break}++Y}return this.length-=Y,B}},{key:w,value:function(E,B){return L(this,function e(S){for(var k=1;k{"use strict";function p(a,C){f(a,C),t(a)}function t(a){a._writableState&&!a._writableState.emitClose||a._readableState&&!a._readableState.emitClose||a.emit("close")}function f(a,C){a.emit("error",C)}Be.exports={destroy:function K(a,C){var d=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(C?C(a):a&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(f,this,a)):process.nextTick(f,this,a)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(a||null,function(L){!C&&L?d._writableState?d._writableState.errorEmitted?process.nextTick(t,d):(d._writableState.errorEmitted=!0,process.nextTick(p,d,L)):process.nextTick(p,d,L):C?(process.nextTick(t,d),C(L)):process.nextTick(t,d)}),this)},undestroy:function e(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function M(a,C){var d=a._readableState,R=a._writableState;d&&d.autoDestroy||R&&R.autoDestroy?a.destroy(C):a.emit("error",C)}}},7542:(Be,K,p)=>{"use strict";var t=p(891).q.ERR_STREAM_PREMATURE_CLOSE;function f(){}Be.exports=function a(C,d,R){if("function"==typeof d)return a(C,null,d);d||(d={}),R=function e(C){var d=!1;return function(){if(!d){d=!0;for(var R=arguments.length,h=new Array(R),L=0;L{Be.exports=function(){throw new Error("Readable.from is not available in the browser")}},954:(Be,K,p)=>{"use strict";var t,f=p(891).q,M=f.ERR_MISSING_ARGS,a=f.ERR_STREAM_DESTROYED;function C(S){if(S)throw S}function R(S,k,E,B){B=function e(S){var k=!1;return function(){k||(k=!0,S.apply(void 0,arguments))}}(B);var Z=!1;S.on("close",function(){Z=!0}),void 0===t&&(t=p(7542)),t(S,{readable:k,writable:E},function(ae){if(ae)return B(ae);Z=!0,B()});var Y=!1;return function(ae){if(!Z&&!Y){if(Y=!0,function d(S){return S.setHeader&&"function"==typeof S.abort}(S))return S.abort();if("function"==typeof S.destroy)return S.destroy();B(ae||new a("pipe"))}}}function h(S){S()}function L(S,k){return S.pipe(k)}function w(S){return S.length&&"function"==typeof S[S.length-1]?S.pop():C}Be.exports=function D(){for(var S=arguments.length,k=new Array(S),E=0;E0,function(re){Z||(Z=re),re&&Y.forEach(h),!ue&&(Y.forEach(h),B(Z))})});return k.reduce(L)}},7102:(Be,K,p)=>{"use strict";var t=p(891).q.ERR_INVALID_OPT_VALUE;Be.exports={getHighWaterMark:function f(M,a,C,d){var R=function e(M,a,C){return null!=M.highWaterMark?M.highWaterMark:a?M[C]:null}(a,d,C);if(null!=R){if(!isFinite(R)||Math.floor(R)!==R||R<0)throw new t(d?C:"highWaterMark",R);return Math.floor(R)}return M.objectMode?16:16384}}},4970:(Be,K,p)=>{Be.exports=p(9069).EventEmitter},5685:(Be,K,p)=>{(K=Be.exports=p(3154)).Stream=K,K.Readable=K,K.Writable=p(520),K.Duplex=p(1339),K.Transform=p(6025),K.PassThrough=p(6071),K.finished=p(7542),K.pipeline=p(954)},5634:(Be,K,p)=>{"use strict";var t=p(3172).Buffer,e=p(3894),f=p(9650),M=new Array(16),a=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],C=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],d=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],R=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11],h=[0,1518500249,1859775393,2400959708,2840853838],L=[1352829926,1548603684,1836072691,2053994217,0];function w(){f.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function D(Y,ae){return Y<>>32-ae}function S(Y,ae,ee,ue,ie,re,ge,q){return D(Y+(ae^ee^ue)+re+ge|0,q)+ie|0}function k(Y,ae,ee,ue,ie,re,ge,q){return D(Y+(ae&ee|~ae&ue)+re+ge|0,q)+ie|0}function E(Y,ae,ee,ue,ie,re,ge,q){return D(Y+((ae|~ee)^ue)+re+ge|0,q)+ie|0}function B(Y,ae,ee,ue,ie,re,ge,q){return D(Y+(ae&ue|ee&~ue)+re+ge|0,q)+ie|0}function Z(Y,ae,ee,ue,ie,re,ge,q){return D(Y+(ae^(ee|~ue))+re+ge|0,q)+ie|0}e(w,f),w.prototype._update=function(){for(var Y=M,ae=0;ae<16;++ae)Y[ae]=this._block.readInt32LE(4*ae);for(var ee=0|this._a,ue=0|this._b,ie=0|this._c,re=0|this._d,ge=0|this._e,q=0|this._a,_e=0|this._b,x=0|this._c,i=0|this._d,r=0|this._e,u=0;u<80;u+=1){var c,v;u<16?(c=S(ee,ue,ie,re,ge,Y[a[u]],h[0],d[u]),v=Z(q,_e,x,i,r,Y[C[u]],L[0],R[u])):u<32?(c=k(ee,ue,ie,re,ge,Y[a[u]],h[1],d[u]),v=B(q,_e,x,i,r,Y[C[u]],L[1],R[u])):u<48?(c=E(ee,ue,ie,re,ge,Y[a[u]],h[2],d[u]),v=E(q,_e,x,i,r,Y[C[u]],L[2],R[u])):u<64?(c=B(ee,ue,ie,re,ge,Y[a[u]],h[3],d[u]),v=k(q,_e,x,i,r,Y[C[u]],L[3],R[u])):(c=Z(ee,ue,ie,re,ge,Y[a[u]],h[4],d[u]),v=S(q,_e,x,i,r,Y[C[u]],L[4],R[u])),ee=ge,ge=re,re=D(ie,10),ie=ue,ue=c,q=r,r=i,i=D(x,10),x=_e,_e=v}var T=this._b+ie+i|0;this._b=this._c+re+r|0,this._c=this._d+ge+q|0,this._d=this._e+ee+_e|0,this._e=this._a+ue+x|0,this._a=T},w.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var Y=t.alloc?t.alloc(20):new t(20);return Y.writeInt32LE(this._a,0),Y.writeInt32LE(this._b,4),Y.writeInt32LE(this._c,8),Y.writeInt32LE(this._d,12),Y.writeInt32LE(this._e,16),Y},Be.exports=w},1135:(Be,K,p)=>{"use strict";p.d(K,{X:()=>e});var t=p(7579);class e extends t.x{constructor(M){super(),this._value=M}get value(){return this.getValue()}_subscribe(M){const a=super._subscribe(M);return!a.closed&&M.next(this._value),a}getValue(){const{hasError:M,thrownError:a,_value:C}=this;if(M)throw a;return this._throwIfClosed(),C}next(M){super.next(this._value=M)}}},8306:(Be,K,p)=>{"use strict";p.d(K,{y:()=>L});var t=p(930),e=p(727),f=p(8822),M=p(4671);var d=p(2416),R=p(576),h=p(2806);let L=(()=>{class k{constructor(B){B&&(this._subscribe=B)}lift(B){const Z=new k;return Z.source=this,Z.operator=B,Z}subscribe(B,Z,Y){const ae=function S(k){return k&&k instanceof t.Lv||function D(k){return k&&(0,R.m)(k.next)&&(0,R.m)(k.error)&&(0,R.m)(k.complete)}(k)&&(0,e.Nn)(k)}(B)?B:new t.Hp(B,Z,Y);return(0,h.x)(()=>{const{operator:ee,source:ue}=this;ae.add(ee?ee.call(ae,ue):ue?this._subscribe(ae):this._trySubscribe(ae))}),ae}_trySubscribe(B){try{return this._subscribe(B)}catch(Z){B.error(Z)}}forEach(B,Z){return new(Z=w(Z))((Y,ae)=>{const ee=new t.Hp({next:ue=>{try{B(ue)}catch(ie){ae(ie),ee.unsubscribe()}},error:ae,complete:Y});this.subscribe(ee)})}_subscribe(B){var Z;return null===(Z=this.source)||void 0===Z?void 0:Z.subscribe(B)}[f.L](){return this}pipe(...B){return function C(k){return 0===k.length?M.y:1===k.length?k[0]:function(B){return k.reduce((Z,Y)=>Y(Z),B)}}(B)(this)}toPromise(B){return new(B=w(B))((Z,Y)=>{let ae;this.subscribe(ee=>ae=ee,ee=>Y(ee),()=>Z(ae))})}}return k.create=E=>new k(E),k})();function w(k){var E;return null!==(E=null!=k?k:d.v.Promise)&&void 0!==E?E:Promise}},4707:(Be,K,p)=>{"use strict";p.d(K,{t:()=>f});var t=p(7579),e=p(6063);class f extends t.x{constructor(a=1/0,C=1/0,d=e.l){super(),this._bufferSize=a,this._windowTime=C,this._timestampProvider=d,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=C===1/0,this._bufferSize=Math.max(1,a),this._windowTime=Math.max(1,C)}next(a){const{isStopped:C,_buffer:d,_infiniteTimeWindow:R,_timestampProvider:h,_windowTime:L}=this;C||(d.push(a),!R&&d.push(h.now()+L)),this._trimBuffer(),super.next(a)}_subscribe(a){this._throwIfClosed(),this._trimBuffer();const C=this._innerSubscribe(a),{_infiniteTimeWindow:d,_buffer:R}=this,h=R.slice();for(let L=0;L{"use strict";p.d(K,{u:()=>R,x:()=>d});var t=p(8306),e=p(727);const M=(0,p(3888).d)(h=>function(){h(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var a=p(8737),C=p(2806);let d=(()=>{class h extends t.y{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(w){const D=new R(this,this);return D.operator=w,D}_throwIfClosed(){if(this.closed)throw new M}next(w){(0,C.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const D of this.currentObservers)D.next(w)}})}error(w){(0,C.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=w;const{observers:D}=this;for(;D.length;)D.shift().error(w)}})}complete(){(0,C.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:w}=this;for(;w.length;)w.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var w;return(null===(w=this.observers)||void 0===w?void 0:w.length)>0}_trySubscribe(w){return this._throwIfClosed(),super._trySubscribe(w)}_subscribe(w){return this._throwIfClosed(),this._checkFinalizedStatuses(w),this._innerSubscribe(w)}_innerSubscribe(w){const{hasError:D,isStopped:S,observers:k}=this;return D||S?e.Lc:(this.currentObservers=null,k.push(w),new e.w0(()=>{this.currentObservers=null,(0,a.P)(k,w)}))}_checkFinalizedStatuses(w){const{hasError:D,thrownError:S,isStopped:k}=this;D?w.error(S):k&&w.complete()}asObservable(){const w=new t.y;return w.source=this,w}}return h.create=(L,w)=>new R(L,w),h})();class R extends d{constructor(L,w){super(),this.destination=L,this.source=w}next(L){var w,D;null===(D=null===(w=this.destination)||void 0===w?void 0:w.next)||void 0===D||D.call(w,L)}error(L){var w,D;null===(D=null===(w=this.destination)||void 0===w?void 0:w.error)||void 0===D||D.call(w,L)}complete(){var L,w;null===(w=null===(L=this.destination)||void 0===L?void 0:L.complete)||void 0===w||w.call(L)}_subscribe(L){var w,D;return null!==(D=null===(w=this.source)||void 0===w?void 0:w.subscribe(L))&&void 0!==D?D:e.Lc}}},930:(Be,K,p)=>{"use strict";p.d(K,{Hp:()=>B,Lv:()=>D});var t=p(576),e=p(727),f=p(2416),M=p(7849),a=p(5032);const C=h("C",void 0,void 0);function h(ue,ie,re){return{kind:ue,value:ie,error:re}}var L=p(3410),w=p(2806);class D extends e.w0{constructor(ie){super(),this.isStopped=!1,ie?(this.destination=ie,(0,e.Nn)(ie)&&ie.add(this)):this.destination=ee}static create(ie,re,ge){return new B(ie,re,ge)}next(ie){this.isStopped?ae(function R(ue){return h("N",ue,void 0)}(ie),this):this._next(ie)}error(ie){this.isStopped?ae(function d(ue){return h("E",void 0,ue)}(ie),this):(this.isStopped=!0,this._error(ie))}complete(){this.isStopped?ae(C,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(ie){this.destination.next(ie)}_error(ie){try{this.destination.error(ie)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const S=Function.prototype.bind;function k(ue,ie){return S.call(ue,ie)}class E{constructor(ie){this.partialObserver=ie}next(ie){const{partialObserver:re}=this;if(re.next)try{re.next(ie)}catch(ge){Z(ge)}}error(ie){const{partialObserver:re}=this;if(re.error)try{re.error(ie)}catch(ge){Z(ge)}else Z(ie)}complete(){const{partialObserver:ie}=this;if(ie.complete)try{ie.complete()}catch(re){Z(re)}}}class B extends D{constructor(ie,re,ge){let q;if(super(),(0,t.m)(ie)||!ie)q={next:null!=ie?ie:void 0,error:null!=re?re:void 0,complete:null!=ge?ge:void 0};else{let _e;this&&f.v.useDeprecatedNextContext?(_e=Object.create(ie),_e.unsubscribe=()=>this.unsubscribe(),q={next:ie.next&&k(ie.next,_e),error:ie.error&&k(ie.error,_e),complete:ie.complete&&k(ie.complete,_e)}):q=ie}this.destination=new E(q)}}function Z(ue){f.v.useDeprecatedSynchronousErrorHandling?(0,w.O)(ue):(0,M.h)(ue)}function ae(ue,ie){const{onStoppedNotification:re}=f.v;re&&L.z.setTimeout(()=>re(ue,ie))}const ee={closed:!0,next:a.Z,error:function Y(ue){throw ue},complete:a.Z}},727:(Be,K,p)=>{"use strict";p.d(K,{Lc:()=>C,w0:()=>a,Nn:()=>d});var t=p(576);const f=(0,p(3888).d)(h=>function(w){h(this),this.message=w?`${w.length} errors occurred during unsubscription:\n${w.map((D,S)=>`${S+1}) ${D.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=w});var M=p(8737);class a{constructor(L){this.initialTeardown=L,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let L;if(!this.closed){this.closed=!0;const{_parentage:w}=this;if(w)if(this._parentage=null,Array.isArray(w))for(const k of w)k.remove(this);else w.remove(this);const{initialTeardown:D}=this;if((0,t.m)(D))try{D()}catch(k){L=k instanceof f?k.errors:[k]}const{_finalizers:S}=this;if(S){this._finalizers=null;for(const k of S)try{R(k)}catch(E){L=null!=L?L:[],E instanceof f?L=[...L,...E.errors]:L.push(E)}}if(L)throw new f(L)}}add(L){var w;if(L&&L!==this)if(this.closed)R(L);else{if(L instanceof a){if(L.closed||L._hasParent(this))return;L._addParent(this)}(this._finalizers=null!==(w=this._finalizers)&&void 0!==w?w:[]).push(L)}}_hasParent(L){const{_parentage:w}=this;return w===L||Array.isArray(w)&&w.includes(L)}_addParent(L){const{_parentage:w}=this;this._parentage=Array.isArray(w)?(w.push(L),w):w?[w,L]:L}_removeParent(L){const{_parentage:w}=this;w===L?this._parentage=null:Array.isArray(w)&&(0,M.P)(w,L)}remove(L){const{_finalizers:w}=this;w&&(0,M.P)(w,L),L instanceof a&&L._removeParent(this)}}a.EMPTY=(()=>{const h=new a;return h.closed=!0,h})();const C=a.EMPTY;function d(h){return h instanceof a||h&&"closed"in h&&(0,t.m)(h.remove)&&(0,t.m)(h.add)&&(0,t.m)(h.unsubscribe)}function R(h){(0,t.m)(h)?h():h.unsubscribe()}},2416:(Be,K,p)=>{"use strict";p.d(K,{v:()=>t});const t={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},9841:(Be,K,p)=>{"use strict";p.d(K,{a:()=>L});var t=p(8306),e=p(4742),f=p(457),M=p(4671),a=p(3268),C=p(3269),d=p(1810),R=p(5403),h=p(9672);function L(...S){const k=(0,C.yG)(S),E=(0,C.jO)(S),{args:B,keys:Z}=(0,e.D)(S);if(0===B.length)return(0,f.D)([],k);const Y=new t.y(function w(S,k,E=M.y){return B=>{D(k,()=>{const{length:Z}=S,Y=new Array(Z);let ae=Z,ee=Z;for(let ue=0;ue{const ie=(0,f.D)(S[ue],k);let re=!1;ie.subscribe((0,R.x)(B,ge=>{Y[ue]=ge,re||(re=!0,ee--),ee||B.next(E(Y.slice()))},()=>{--ae||B.complete()}))},B)},B)}}(B,k,Z?ae=>(0,d.n)(Z,ae):M.y));return E?Y.pipe((0,a.Z)(E)):Y}function D(S,k,E){S?(0,h.f)(E,S,k):k()}},7272:(Be,K,p)=>{"use strict";p.d(K,{z:()=>a});var t=p(8189),f=p(3269),M=p(457);function a(...C){return function e(){return(0,t.J)(1)}()((0,M.D)(C,(0,f.yG)(C)))}},9770:(Be,K,p)=>{"use strict";p.d(K,{P:()=>f});var t=p(8306),e=p(8421);function f(M){return new t.y(a=>{(0,e.Xf)(M()).subscribe(a)})}},515:(Be,K,p)=>{"use strict";p.d(K,{E:()=>e});const e=new(p(8306).y)(a=>a.complete())},4128:(Be,K,p)=>{"use strict";p.d(K,{D:()=>R});var t=p(8306),e=p(4742),f=p(8421),M=p(3269),a=p(5403),C=p(3268),d=p(1810);function R(...h){const L=(0,M.jO)(h),{args:w,keys:D}=(0,e.D)(h),S=new t.y(k=>{const{length:E}=w;if(!E)return void k.complete();const B=new Array(E);let Z=E,Y=E;for(let ae=0;ae{ee||(ee=!0,Y--),B[ae]=ue},()=>Z--,void 0,()=>{(!Z||!ee)&&(Y||k.next(D?(0,d.n)(D,B):B),k.complete())}))}});return L?S.pipe((0,C.Z)(L)):S}},457:(Be,K,p)=>{"use strict";p.d(K,{D:()=>re});var t=p(8421),e=p(5363),f=p(4482);function M(ge,q=0){return(0,f.e)((_e,x)=>{x.add(ge.schedule(()=>_e.subscribe(x),q))})}var d=p(8306),h=p(2202),L=p(576),w=p(9672);function S(ge,q){if(!ge)throw new Error("Iterable cannot be null");return new d.y(_e=>{(0,w.f)(_e,q,()=>{const x=ge[Symbol.asyncIterator]();(0,w.f)(_e,q,()=>{x.next().then(i=>{i.done?_e.complete():_e.next(i.value)})},0,!0)})})}var k=p(3670),E=p(8239),B=p(1144),Z=p(6495),Y=p(2206),ae=p(4532),ee=p(3260);function re(ge,q){return q?function ie(ge,q){if(null!=ge){if((0,k.c)(ge))return function a(ge,q){return(0,t.Xf)(ge).pipe(M(q),(0,e.Q)(q))}(ge,q);if((0,B.z)(ge))return function R(ge,q){return new d.y(_e=>{let x=0;return q.schedule(function(){x===ge.length?_e.complete():(_e.next(ge[x++]),_e.closed||this.schedule())})})}(ge,q);if((0,E.t)(ge))return function C(ge,q){return(0,t.Xf)(ge).pipe(M(q),(0,e.Q)(q))}(ge,q);if((0,Y.D)(ge))return S(ge,q);if((0,Z.T)(ge))return function D(ge,q){return new d.y(_e=>{let x;return(0,w.f)(_e,q,()=>{x=ge[h.h](),(0,w.f)(_e,q,()=>{let i,r;try{({value:i,done:r}=x.next())}catch(u){return void _e.error(u)}r?_e.complete():_e.next(i)},0,!0)}),()=>(0,L.m)(null==x?void 0:x.return)&&x.return()})}(ge,q);if((0,ee.L)(ge))return function ue(ge,q){return S((0,ee.Q)(ge),q)}(ge,q)}throw(0,ae.z)(ge)}(ge,q):(0,t.Xf)(ge)}},4968:(Be,K,p)=>{"use strict";p.d(K,{R:()=>L});var t=p(8421),e=p(8306),f=p(5577),M=p(1144),a=p(576),C=p(3268);const d=["addListener","removeListener"],R=["addEventListener","removeEventListener"],h=["on","off"];function L(E,B,Z,Y){if((0,a.m)(Z)&&(Y=Z,Z=void 0),Y)return L(E,B,Z).pipe((0,C.Z)(Y));const[ae,ee]=function k(E){return(0,a.m)(E.addEventListener)&&(0,a.m)(E.removeEventListener)}(E)?R.map(ue=>ie=>E[ue](B,ie,Z)):function D(E){return(0,a.m)(E.addListener)&&(0,a.m)(E.removeListener)}(E)?d.map(w(E,B)):function S(E){return(0,a.m)(E.on)&&(0,a.m)(E.off)}(E)?h.map(w(E,B)):[];if(!ae&&(0,M.z)(E))return(0,f.z)(ue=>L(ue,B,Z))((0,t.Xf)(E));if(!ae)throw new TypeError("Invalid event target");return new e.y(ue=>{const ie=(...re)=>ue.next(1ee(ie)})}function w(E,B){return Z=>Y=>E[Z](B,Y)}},8421:(Be,K,p)=>{"use strict";p.d(K,{Xf:()=>S});var t=p(655),e=p(1144),f=p(8239),M=p(8306),a=p(3670),C=p(2206),d=p(4532),R=p(6495),h=p(3260),L=p(576),w=p(7849),D=p(8822);function S(ue){if(ue instanceof M.y)return ue;if(null!=ue){if((0,a.c)(ue))return function k(ue){return new M.y(ie=>{const re=ue[D.L]();if((0,L.m)(re.subscribe))return re.subscribe(ie);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(ue);if((0,e.z)(ue))return function E(ue){return new M.y(ie=>{for(let re=0;re{ue.then(re=>{ie.closed||(ie.next(re),ie.complete())},re=>ie.error(re)).then(null,w.h)})}(ue);if((0,C.D)(ue))return Y(ue);if((0,R.T)(ue))return function Z(ue){return new M.y(ie=>{for(const re of ue)if(ie.next(re),ie.closed)return;ie.complete()})}(ue);if((0,h.L)(ue))return function ae(ue){return Y((0,h.Q)(ue))}(ue)}throw(0,d.z)(ue)}function Y(ue){return new M.y(ie=>{(function ee(ue,ie){var re,ge,q,_e;return(0,t.mG)(this,void 0,void 0,function*(){try{for(re=(0,t.KL)(ue);!(ge=yield re.next()).done;)if(ie.next(ge.value),ie.closed)return}catch(x){q={error:x}}finally{try{ge&&!ge.done&&(_e=re.return)&&(yield _e.call(re))}finally{if(q)throw q.error}}ie.complete()})})(ue,ie).catch(re=>ie.error(re))})}},6451:(Be,K,p)=>{"use strict";p.d(K,{T:()=>C});var t=p(8189),e=p(8421),f=p(515),M=p(3269),a=p(457);function C(...d){const R=(0,M.yG)(d),h=(0,M._6)(d,1/0),L=d;return L.length?1===L.length?(0,e.Xf)(L[0]):(0,t.J)(h)((0,a.D)(L,R)):f.E}},9646:(Be,K,p)=>{"use strict";p.d(K,{of:()=>f});var t=p(3269),e=p(457);function f(...M){const a=(0,t.yG)(M);return(0,e.D)(M,a)}},2843:(Be,K,p)=>{"use strict";p.d(K,{_:()=>f});var t=p(8306),e=p(576);function f(M,a){const C=(0,e.m)(M)?M:()=>M,d=R=>R.error(C());return new t.y(a?R=>a.schedule(d,0,R):d)}},2805:(Be,K,p)=>{"use strict";p.d(K,{H:()=>a});var t=p(8306),e=p(4986),f=p(3532),M=p(1165);function a(C=0,d,R=e.P){let h=-1;return null!=d&&((0,f.K)(d)?R=d:h=d),new t.y(L=>{let w=(0,M.q)(C)?+C-R.now():C;w<0&&(w=0);let D=0;return R.schedule(function(){L.closed||(L.next(D++),0<=h?this.schedule(void 0,h):L.complete())},w)})}},5403:(Be,K,p)=>{"use strict";p.d(K,{Q:()=>f,x:()=>e});var t=p(930);function e(M,a,C,d,R){return new f(M,a,C,d,R)}class f extends t.Lv{constructor(a,C,d,R,h,L){super(a),this.onFinalize=h,this.shouldUnsubscribe=L,this._next=C?function(w){try{C(w)}catch(D){a.error(D)}}:super._next,this._error=R?function(w){try{R(w)}catch(D){a.error(D)}finally{this.unsubscribe()}}:super._error,this._complete=d?function(){try{d()}catch(w){a.error(w)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var a;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:C}=this;super.unsubscribe(),!C&&(null===(a=this.onFinalize)||void 0===a||a.call(this))}}}},3601:(Be,K,p)=>{"use strict";p.d(K,{e:()=>d});var t=p(4986),e=p(4482),f=p(8421),M=p(5403),C=p(2805);function d(R,h=t.z){return function a(R){return(0,e.e)((h,L)=>{let w=!1,D=null,S=null,k=!1;const E=()=>{if(null==S||S.unsubscribe(),S=null,w){w=!1;const Z=D;D=null,L.next(Z)}k&&L.complete()},B=()=>{S=null,k&&L.complete()};h.subscribe((0,M.x)(L,Z=>{w=!0,D=Z,S||(0,f.Xf)(R(Z)).subscribe(S=(0,M.x)(L,E,B))},()=>{k=!0,(!w||!S||S.closed)&&L.complete()}))})}(()=>(0,C.H)(R,h))}},262:(Be,K,p)=>{"use strict";p.d(K,{K:()=>M});var t=p(8421),e=p(5403),f=p(4482);function M(a){return(0,f.e)((C,d)=>{let L,R=null,h=!1;R=C.subscribe((0,e.x)(d,void 0,void 0,w=>{L=(0,t.Xf)(a(w,M(a)(C))),R?(R.unsubscribe(),R=null,L.subscribe(d)):h=!0})),h&&(R.unsubscribe(),R=null,L.subscribe(d))})}},4351:(Be,K,p)=>{"use strict";p.d(K,{b:()=>f});var t=p(5577),e=p(576);function f(M,a){return(0,e.m)(a)?(0,t.z)(M,a,1):(0,t.z)(M,1)}},8372:(Be,K,p)=>{"use strict";p.d(K,{b:()=>M});var t=p(4986),e=p(4482),f=p(5403);function M(a,C=t.z){return(0,e.e)((d,R)=>{let h=null,L=null,w=null;const D=()=>{if(h){h.unsubscribe(),h=null;const k=L;L=null,R.next(k)}};function S(){const k=w+a,E=C.now();if(E{L=k,w=C.now(),h||(h=C.schedule(S,a),R.add(h))},()=>{D(),R.complete()},void 0,()=>{L=h=null}))})}},6590:(Be,K,p)=>{"use strict";p.d(K,{d:()=>f});var t=p(4482),e=p(5403);function f(M){return(0,t.e)((a,C)=>{let d=!1;a.subscribe((0,e.x)(C,R=>{d=!0,C.next(R)},()=>{d||C.next(M),C.complete()}))})}},4086:(Be,K,p)=>{"use strict";p.d(K,{g:()=>h});var t=p(4986),e=p(7272),f=p(5698),M=p(8502),a=p(9718),C=p(5577);function d(L,w){return w?D=>(0,e.z)(w.pipe((0,f.q)(1),(0,M.l)()),D.pipe(d(L))):(0,C.z)((D,S)=>L(D,S).pipe((0,f.q)(1),(0,a.h)(D)))}var R=p(2805);function h(L,w=t.z){const D=(0,R.H)(L,w);return d(()=>D)}},1884:(Be,K,p)=>{"use strict";p.d(K,{x:()=>M});var t=p(4671),e=p(4482),f=p(5403);function M(C,d=t.y){return C=null!=C?C:a,(0,e.e)((R,h)=>{let L,w=!0;R.subscribe((0,f.x)(h,D=>{const S=d(D);(w||!C(L,S))&&(w=!1,L=S,h.next(D))}))})}function a(C,d){return C===d}},9300:(Be,K,p)=>{"use strict";p.d(K,{h:()=>f});var t=p(4482),e=p(5403);function f(M,a){return(0,t.e)((C,d)=>{let R=0;C.subscribe((0,e.x)(d,h=>M.call(a,h,R++)&&d.next(h)))})}},8746:(Be,K,p)=>{"use strict";p.d(K,{x:()=>e});var t=p(4482);function e(f){return(0,t.e)((M,a)=>{try{M.subscribe(a)}finally{a.add(f)}})}},590:(Be,K,p)=>{"use strict";p.d(K,{P:()=>d});var t=p(6805),e=p(9300),f=p(5698),M=p(6590),a=p(8068),C=p(4671);function d(R,h){const L=arguments.length>=2;return w=>w.pipe(R?(0,e.h)((D,S)=>R(D,S,w)):C.y,(0,f.q)(1),L?(0,M.d)(h):(0,a.T)(()=>new t.K))}},8502:(Be,K,p)=>{"use strict";p.d(K,{l:()=>M});var t=p(4482),e=p(5403),f=p(5032);function M(){return(0,t.e)((a,C)=>{a.subscribe((0,e.x)(C,f.Z))})}},4004:(Be,K,p)=>{"use strict";p.d(K,{U:()=>f});var t=p(4482),e=p(5403);function f(M,a){return(0,t.e)((C,d)=>{let R=0;C.subscribe((0,e.x)(d,h=>{d.next(M.call(a,h,R++))}))})}},9718:(Be,K,p)=>{"use strict";p.d(K,{h:()=>e});var t=p(4004);function e(f){return(0,t.U)(()=>f)}},8189:(Be,K,p)=>{"use strict";p.d(K,{J:()=>f});var t=p(5577),e=p(4671);function f(M=1/0){return(0,t.z)(e.y,M)}},5577:(Be,K,p)=>{"use strict";p.d(K,{z:()=>R});var t=p(4004),e=p(8421),f=p(4482),M=p(9672),a=p(5403),d=p(576);function R(h,L,w=1/0){return(0,d.m)(L)?R((D,S)=>(0,t.U)((k,E)=>L(D,k,S,E))((0,e.Xf)(h(D,S))),w):("number"==typeof L&&(w=L),(0,f.e)((D,S)=>function C(h,L,w,D,S,k,E,B){const Z=[];let Y=0,ae=0,ee=!1;const ue=()=>{ee&&!Z.length&&!Y&&L.complete()},ie=ge=>Y{k&&L.next(ge),Y++;let q=!1;(0,e.Xf)(w(ge,ae++)).subscribe((0,a.x)(L,_e=>{null==S||S(_e),k?ie(_e):L.next(_e)},()=>{q=!0},void 0,()=>{if(q)try{for(Y--;Z.length&&Yre(_e)):re(_e)}ue()}catch(_e){L.error(_e)}}))};return h.subscribe((0,a.x)(L,ie,()=>{ee=!0,ue()})),()=>{null==B||B()}}(D,S,h,w)))}},5363:(Be,K,p)=>{"use strict";p.d(K,{Q:()=>M});var t=p(9672),e=p(4482),f=p(5403);function M(a,C=0){return(0,e.e)((d,R)=>{d.subscribe((0,f.x)(R,h=>(0,t.f)(R,a,()=>R.next(h),C),()=>(0,t.f)(R,a,()=>R.complete(),C),h=>(0,t.f)(R,a,()=>R.error(h),C)))})}},5026:(Be,K,p)=>{"use strict";p.d(K,{R:()=>M});var t=p(4482),e=p(5403);function f(a,C,d,R,h){return(L,w)=>{let D=d,S=C,k=0;L.subscribe((0,e.x)(w,E=>{const B=k++;S=D?a(S,E,B):(D=!0,E),R&&w.next(S)},h&&(()=>{D&&w.next(S),w.complete()})))}}function M(a,C){return(0,t.e)(f(a,C,arguments.length>=2,!0))}},3099:(Be,K,p)=>{"use strict";p.d(K,{B:()=>a});var t=p(8421),e=p(7579),f=p(930),M=p(4482);function a(d={}){const{connector:R=(()=>new e.x),resetOnError:h=!0,resetOnComplete:L=!0,resetOnRefCountZero:w=!0}=d;return D=>{let S,k,E,B=0,Z=!1,Y=!1;const ae=()=>{null==k||k.unsubscribe(),k=void 0},ee=()=>{ae(),S=E=void 0,Z=Y=!1},ue=()=>{const ie=S;ee(),null==ie||ie.unsubscribe()};return(0,M.e)((ie,re)=>{B++,!Y&&!Z&&ae();const ge=E=null!=E?E:R();re.add(()=>{B--,0===B&&!Y&&!Z&&(k=C(ue,w))}),ge.subscribe(re),!S&&B>0&&(S=new f.Hp({next:q=>ge.next(q),error:q=>{Y=!0,ae(),k=C(ee,h,q),ge.error(q)},complete:()=>{Z=!0,ae(),k=C(ee,L),ge.complete()}}),(0,t.Xf)(ie).subscribe(S))})(D)}}function C(d,R,...h){if(!0===R)return void d();if(!1===R)return;const L=new f.Hp({next:()=>{L.unsubscribe(),d()}});return R(...h).subscribe(L)}},5684:(Be,K,p)=>{"use strict";p.d(K,{T:()=>e});var t=p(9300);function e(f){return(0,t.h)((M,a)=>f<=a)}},8675:(Be,K,p)=>{"use strict";p.d(K,{O:()=>M});var t=p(7272),e=p(3269),f=p(4482);function M(...a){const C=(0,e.yG)(a);return(0,f.e)((d,R)=>{(C?(0,t.z)(a,d,C):(0,t.z)(a,d)).subscribe(R)})}},3900:(Be,K,p)=>{"use strict";p.d(K,{w:()=>M});var t=p(8421),e=p(4482),f=p(5403);function M(a,C){return(0,e.e)((d,R)=>{let h=null,L=0,w=!1;const D=()=>w&&!h&&R.complete();d.subscribe((0,f.x)(R,S=>{null==h||h.unsubscribe();let k=0;const E=L++;(0,t.Xf)(a(S,E)).subscribe(h=(0,f.x)(R,B=>R.next(C?C(S,B,E,k++):B),()=>{h=null,D()}))},()=>{w=!0,D()}))})}},5698:(Be,K,p)=>{"use strict";p.d(K,{q:()=>M});var t=p(515),e=p(4482),f=p(5403);function M(a){return a<=0?()=>t.E:(0,e.e)((C,d)=>{let R=0;C.subscribe((0,f.x)(d,h=>{++R<=a&&(d.next(h),a<=R&&d.complete())}))})}},2722:(Be,K,p)=>{"use strict";p.d(K,{R:()=>a});var t=p(4482),e=p(5403),f=p(8421),M=p(5032);function a(C){return(0,t.e)((d,R)=>{(0,f.Xf)(C).subscribe((0,e.x)(R,()=>R.complete(),M.Z)),!R.closed&&d.subscribe(R)})}},8505:(Be,K,p)=>{"use strict";p.d(K,{b:()=>a});var t=p(576),e=p(4482),f=p(5403),M=p(4671);function a(C,d,R){const h=(0,t.m)(C)||d||R?{next:C,error:d,complete:R}:C;return h?(0,e.e)((L,w)=>{var D;null===(D=h.subscribe)||void 0===D||D.call(h);let S=!0;L.subscribe((0,f.x)(w,k=>{var E;null===(E=h.next)||void 0===E||E.call(h,k),w.next(k)},()=>{var k;S=!1,null===(k=h.complete)||void 0===k||k.call(h),w.complete()},k=>{var E;S=!1,null===(E=h.error)||void 0===E||E.call(h,k),w.error(k)},()=>{var k,E;S&&(null===(k=h.unsubscribe)||void 0===k||k.call(h)),null===(E=h.finalize)||void 0===E||E.call(h)}))}):M.y}},8068:(Be,K,p)=>{"use strict";p.d(K,{T:()=>M});var t=p(6805),e=p(4482),f=p(5403);function M(C=a){return(0,e.e)((d,R)=>{let h=!1;d.subscribe((0,f.x)(R,L=>{h=!0,R.next(L)},()=>h?R.complete():R.error(C())))})}function a(){return new t.K}},7414:(Be,K,p)=>{"use strict";p.d(K,{V:()=>h});var t=p(4986),e=p(1165),f=p(4482),M=p(8421),a=p(3888),C=p(5403),d=p(9672);const R=(0,a.d)(w=>function(S=null){w(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=S});function h(w,D){const{first:S,each:k,with:E=L,scheduler:B=(null!=D?D:t.z),meta:Z=null}=(0,e.q)(w)?{first:w}:"number"==typeof w?{each:w}:w;if(null==S&&null==k)throw new TypeError("No timeout provided.");return(0,f.e)((Y,ae)=>{let ee,ue,ie=null,re=0;const ge=q=>{ue=(0,d.f)(ae,B,()=>{try{ee.unsubscribe(),(0,M.Xf)(E({meta:Z,lastValue:ie,seen:re})).subscribe(ae)}catch(_e){ae.error(_e)}},q)};ee=Y.subscribe((0,C.x)(ae,q=>{null==ue||ue.unsubscribe(),re++,ae.next(ie=q),k>0&&ge(k)},void 0,void 0,()=>{(null==ue?void 0:ue.closed)||null==ue||ue.unsubscribe(),ie=null})),!re&&ge(null!=S?"number"==typeof S?S:+S-B.now():k)})}function L(w){throw new R(w)}},1365:(Be,K,p)=>{"use strict";p.d(K,{M:()=>d});var t=p(4482),e=p(5403),f=p(8421),M=p(4671),a=p(5032),C=p(3269);function d(...R){const h=(0,C.jO)(R);return(0,t.e)((L,w)=>{const D=R.length,S=new Array(D);let k=R.map(()=>!1),E=!1;for(let B=0;B{S[B]=Z,!E&&!k[B]&&(k[B]=!0,(E=k.every(M.y))&&(k=null))},a.Z));L.subscribe((0,e.x)(w,B=>{if(E){const Z=[B,...S];w.next(h?h(...Z):Z)}}))})}},4408:(Be,K,p)=>{"use strict";p.d(K,{o:()=>a});var t=p(727);class e extends t.w0{constructor(d,R){super()}schedule(d,R=0){return this}}const f={setInterval(C,d,...R){const{delegate:h}=f;return(null==h?void 0:h.setInterval)?h.setInterval(C,d,...R):setInterval(C,d,...R)},clearInterval(C){const{delegate:d}=f;return((null==d?void 0:d.clearInterval)||clearInterval)(C)},delegate:void 0};var M=p(8737);class a extends e{constructor(d,R){super(d,R),this.scheduler=d,this.work=R,this.pending=!1}schedule(d,R=0){var h;if(this.closed)return this;this.state=d;const L=this.id,w=this.scheduler;return null!=L&&(this.id=this.recycleAsyncId(w,L,R)),this.pending=!0,this.delay=R,this.id=null!==(h=this.id)&&void 0!==h?h:this.requestAsyncId(w,this.id,R),this}requestAsyncId(d,R,h=0){return f.setInterval(d.flush.bind(d,this),h)}recycleAsyncId(d,R,h=0){if(null!=h&&this.delay===h&&!1===this.pending)return R;null!=R&&f.clearInterval(R)}execute(d,R){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const h=this._execute(d,R);if(h)return h;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(d,R){let L,h=!1;try{this.work(d)}catch(w){h=!0,L=w||new Error("Scheduled action threw falsy error")}if(h)return this.unsubscribe(),L}unsubscribe(){if(!this.closed){const{id:d,scheduler:R}=this,{actions:h}=R;this.work=this.state=this.scheduler=null,this.pending=!1,(0,M.P)(h,this),null!=d&&(this.id=this.recycleAsyncId(R,d,null)),this.delay=null,super.unsubscribe()}}}},7565:(Be,K,p)=>{"use strict";p.d(K,{v:()=>f});var t=p(6063);class e{constructor(a,C=e.now){this.schedulerActionCtor=a,this.now=C}schedule(a,C=0,d){return new this.schedulerActionCtor(this,a).schedule(d,C)}}e.now=t.l.now;class f extends e{constructor(a,C=e.now){super(a,C),this.actions=[],this._active=!1}flush(a){const{actions:C}=this;if(this._active)return void C.push(a);let d;this._active=!0;do{if(d=a.execute(a.state,a.delay))break}while(a=C.shift());if(this._active=!1,d){for(;a=C.shift();)a.unsubscribe();throw d}}}},3101:(Be,K,p)=>{"use strict";p.d(K,{E:()=>k});var t=p(4408);let f,e=1;const M={};function a(B){return B in M&&(delete M[B],!0)}const C={setImmediate(B){const Z=e++;return M[Z]=!0,f||(f=Promise.resolve()),f.then(()=>a(Z)&&B()),Z},clearImmediate(B){a(B)}},{setImmediate:R,clearImmediate:h}=C,L={setImmediate(...B){const{delegate:Z}=L;return((null==Z?void 0:Z.setImmediate)||R)(...B)},clearImmediate(B){const{delegate:Z}=L;return((null==Z?void 0:Z.clearImmediate)||h)(B)},delegate:void 0};var D=p(7565);const k=new class S extends D.v{flush(Z){this._active=!0;const Y=this._scheduled;this._scheduled=void 0;const{actions:ae}=this;let ee;Z=Z||ae.shift();do{if(ee=Z.execute(Z.state,Z.delay))break}while((Z=ae[0])&&Z.id===Y&&ae.shift());if(this._active=!1,ee){for(;(Z=ae[0])&&Z.id===Y&&ae.shift();)Z.unsubscribe();throw ee}}}(class w extends t.o{constructor(Z,Y){super(Z,Y),this.scheduler=Z,this.work=Y}requestAsyncId(Z,Y,ae=0){return null!==ae&&ae>0?super.requestAsyncId(Z,Y,ae):(Z.actions.push(this),Z._scheduled||(Z._scheduled=L.setImmediate(Z.flush.bind(Z,void 0))))}recycleAsyncId(Z,Y,ae=0){var ee;if(null!=ae?ae>0:this.delay>0)return super.recycleAsyncId(Z,Y,ae);const{actions:ue}=Z;null!=Y&&(null===(ee=ue[ue.length-1])||void 0===ee?void 0:ee.id)!==Y&&(L.clearImmediate(Y),Z._scheduled=void 0)}})},4986:(Be,K,p)=>{"use strict";p.d(K,{P:()=>M,z:()=>f});var t=p(4408);const f=new(p(7565).v)(t.o),M=f},6063:(Be,K,p)=>{"use strict";p.d(K,{l:()=>t});const t={now:()=>(t.delegate||Date).now(),delegate:void 0}},233:(Be,K,p)=>{"use strict";p.d(K,{N:()=>a});var t=p(4408),f=p(7565);const a=new class M extends f.v{}(class e extends t.o{constructor(R,h){super(R,h),this.scheduler=R,this.work=h}schedule(R,h=0){return h>0?super.schedule(R,h):(this.delay=h,this.state=R,this.scheduler.flush(this),this)}execute(R,h){return h>0||this.closed?super.execute(R,h):this._execute(R,h)}requestAsyncId(R,h,L=0){return null!=L&&L>0||null==L&&this.delay>0?super.requestAsyncId(R,h,L):(R.flush(this),0)}})},3410:(Be,K,p)=>{"use strict";p.d(K,{z:()=>t});const t={setTimeout(e,f,...M){const{delegate:a}=t;return(null==a?void 0:a.setTimeout)?a.setTimeout(e,f,...M):setTimeout(e,f,...M)},clearTimeout(e){const{delegate:f}=t;return((null==f?void 0:f.clearTimeout)||clearTimeout)(e)},delegate:void 0}},2202:(Be,K,p)=>{"use strict";p.d(K,{h:()=>e});const e=function t(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},8822:(Be,K,p)=>{"use strict";p.d(K,{L:()=>t});const t="function"==typeof Symbol&&Symbol.observable||"@@observable"},6805:(Be,K,p)=>{"use strict";p.d(K,{K:()=>e});const e=(0,p(3888).d)(f=>function(){f(this),this.name="EmptyError",this.message="no elements in sequence"})},3269:(Be,K,p)=>{"use strict";p.d(K,{_6:()=>C,jO:()=>M,yG:()=>a});var t=p(576),e=p(3532);function f(d){return d[d.length-1]}function M(d){return(0,t.m)(f(d))?d.pop():void 0}function a(d){return(0,e.K)(f(d))?d.pop():void 0}function C(d,R){return"number"==typeof f(d)?d.pop():R}},4742:(Be,K,p)=>{"use strict";p.d(K,{D:()=>a});const{isArray:t}=Array,{getPrototypeOf:e,prototype:f,keys:M}=Object;function a(d){if(1===d.length){const R=d[0];if(t(R))return{args:R,keys:null};if(function C(d){return d&&"object"==typeof d&&e(d)===f}(R)){const h=M(R);return{args:h.map(L=>R[L]),keys:h}}}return{args:d,keys:null}}},8737:(Be,K,p)=>{"use strict";function t(e,f){if(e){const M=e.indexOf(f);0<=M&&e.splice(M,1)}}p.d(K,{P:()=>t})},3888:(Be,K,p)=>{"use strict";function t(e){const M=e(a=>{Error.call(a),a.stack=(new Error).stack});return M.prototype=Object.create(Error.prototype),M.prototype.constructor=M,M}p.d(K,{d:()=>t})},1810:(Be,K,p)=>{"use strict";function t(e,f){return e.reduce((M,a,C)=>(M[a]=f[C],M),{})}p.d(K,{n:()=>t})},2806:(Be,K,p)=>{"use strict";p.d(K,{O:()=>M,x:()=>f});var t=p(2416);let e=null;function f(a){if(t.v.useDeprecatedSynchronousErrorHandling){const C=!e;if(C&&(e={errorThrown:!1,error:null}),a(),C){const{errorThrown:d,error:R}=e;if(e=null,d)throw R}}else a()}function M(a){t.v.useDeprecatedSynchronousErrorHandling&&e&&(e.errorThrown=!0,e.error=a)}},9672:(Be,K,p)=>{"use strict";function t(e,f,M,a=0,C=!1){const d=f.schedule(function(){M(),C?e.add(this.schedule(null,a)):this.unsubscribe()},a);if(e.add(d),!C)return d}p.d(K,{f:()=>t})},4671:(Be,K,p)=>{"use strict";function t(e){return e}p.d(K,{y:()=>t})},1144:(Be,K,p)=>{"use strict";p.d(K,{z:()=>t});const t=e=>e&&"number"==typeof e.length&&"function"!=typeof e},2206:(Be,K,p)=>{"use strict";p.d(K,{D:()=>e});var t=p(576);function e(f){return Symbol.asyncIterator&&(0,t.m)(null==f?void 0:f[Symbol.asyncIterator])}},1165:(Be,K,p)=>{"use strict";function t(e){return e instanceof Date&&!isNaN(e)}p.d(K,{q:()=>t})},576:(Be,K,p)=>{"use strict";function t(e){return"function"==typeof e}p.d(K,{m:()=>t})},3670:(Be,K,p)=>{"use strict";p.d(K,{c:()=>f});var t=p(8822),e=p(576);function f(M){return(0,e.m)(M[t.L])}},6495:(Be,K,p)=>{"use strict";p.d(K,{T:()=>f});var t=p(2202),e=p(576);function f(M){return(0,e.m)(null==M?void 0:M[t.h])}},5191:(Be,K,p)=>{"use strict";p.d(K,{b:()=>f});var t=p(8306),e=p(576);function f(M){return!!M&&(M instanceof t.y||(0,e.m)(M.lift)&&(0,e.m)(M.subscribe))}},8239:(Be,K,p)=>{"use strict";p.d(K,{t:()=>e});var t=p(576);function e(f){return(0,t.m)(null==f?void 0:f.then)}},3260:(Be,K,p)=>{"use strict";p.d(K,{L:()=>M,Q:()=>f});var t=p(655),e=p(576);function f(a){return(0,t.FC)(this,arguments,function*(){const d=a.getReader();try{for(;;){const{value:R,done:h}=yield(0,t.qq)(d.read());if(h)return yield(0,t.qq)(void 0);yield yield(0,t.qq)(R)}}finally{d.releaseLock()}})}function M(a){return(0,e.m)(null==a?void 0:a.getReader)}},3532:(Be,K,p)=>{"use strict";p.d(K,{K:()=>e});var t=p(576);function e(f){return f&&(0,t.m)(f.schedule)}},4482:(Be,K,p)=>{"use strict";p.d(K,{A:()=>e,e:()=>f});var t=p(576);function e(M){return(0,t.m)(null==M?void 0:M.lift)}function f(M){return a=>{if(e(a))return a.lift(function(C){try{return M(C,this)}catch(d){this.error(d)}});throw new TypeError("Unable to lift unknown Observable type")}}},3268:(Be,K,p)=>{"use strict";p.d(K,{Z:()=>M});var t=p(4004);const{isArray:e}=Array;function M(a){return(0,t.U)(C=>function f(a,C){return e(C)?a(...C):a(C)}(a,C))}},5032:(Be,K,p)=>{"use strict";function t(){}p.d(K,{Z:()=>t})},7849:(Be,K,p)=>{"use strict";p.d(K,{h:()=>f});var t=p(2416),e=p(3410);function f(M){e.z.setTimeout(()=>{const{onUnhandledError:a}=t.v;if(!a)throw M;a(M)})}},4532:(Be,K,p)=>{"use strict";function t(e){return new TypeError(`You provided ${null!==e&&"object"==typeof e?"an invalid object":`'${e}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}p.d(K,{z:()=>t})},3502:(Be,K,p)=>{var t=p(3172),e=t.Buffer;function f(a,C){for(var d in a)C[d]=a[d]}function M(a,C,d){return e(a,C,d)}e.from&&e.alloc&&e.allocUnsafe&&e.allocUnsafeSlow?Be.exports=t:(f(t,K),K.Buffer=M),M.prototype=Object.create(e.prototype),f(e,M),M.from=function(a,C,d){if("number"==typeof a)throw new TypeError("Argument must not be a number");return e(a,C,d)},M.alloc=function(a,C,d){if("number"!=typeof a)throw new TypeError("Argument must be a number");var R=e(a);return void 0!==C?"string"==typeof d?R.fill(C,d):R.fill(C):R.fill(0),R},M.allocUnsafe=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return e(a)},M.allocUnsafeSlow=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return t.SlowBuffer(a)}},2038:(Be,K,p)=>{"use strict";var M,t=p(3172),e=t.Buffer,f={};for(M in t)!t.hasOwnProperty(M)||"SlowBuffer"===M||"Buffer"===M||(f[M]=t[M]);var a=f.Buffer={};for(M in e)!e.hasOwnProperty(M)||"allocUnsafe"===M||"allocUnsafeSlow"===M||(a[M]=e[M]);if(f.Buffer.prototype=e.prototype,(!a.from||a.from===Uint8Array.from)&&(a.from=function(C,d,R){if("number"==typeof C)throw new TypeError('The "value" argument must not be of type number. Received type '+typeof C);if(C&&void 0===C.length)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof C);return e(C,d,R)}),a.alloc||(a.alloc=function(C,d,R){if("number"!=typeof C)throw new TypeError('The "size" argument must be of type number. Received type '+typeof C);if(C<0||C>=2*(1<<30))throw new RangeError('The value "'+C+'" is invalid for option "size"');var h=e(C);return d&&0!==d.length?"string"==typeof R?h.fill(d,R):h.fill(d):h.fill(0),h}),!f.kStringMaxLength)try{f.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch(C){}f.constants||(f.constants={MAX_LENGTH:f.kMaxLength},f.kStringMaxLength&&(f.constants.MAX_STRING_LENGTH=f.kStringMaxLength)),Be.exports=f},6692:(Be,K,p)=>{var t=p(3502).Buffer;function e(f,M){this._block=t.alloc(f),this._finalSize=M,this._blockSize=f,this._len=0}e.prototype.update=function(f,M){"string"==typeof f&&(f=t.from(f,M=M||"utf8"));for(var a=this._block,C=this._blockSize,d=f.length,R=this._len,h=0;h=this._finalSize&&(this._update(this._block),this._block.fill(0));var a=8*this._len;if(a<=4294967295)this._block.writeUInt32BE(a,this._blockSize-4);else{var C=(4294967295&a)>>>0;this._block.writeUInt32BE((a-C)/4294967296,this._blockSize-8),this._block.writeUInt32BE(C,this._blockSize-4)}this._update(this._block);var R=this._hash();return f?R.toString(f):R},e.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Be.exports=e},5244:(Be,K,p)=>{var t=Be.exports=function(f){f=f.toLowerCase();var M=t[f];if(!M)throw new Error(f+" is not supported (we accept pull requests)");return new M};t.sha=p(8932),t.sha1=p(7736),t.sha224=p(5044),t.sha256=p(5014),t.sha384=p(6540),t.sha512=p(117)},8932:(Be,K,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1518500249,1859775393,-1894007588,-899497514],a=new Array(80);function C(){this.init(),this._w=a,e.call(this,64,56)}function d(L){return L<<5|L>>>27}function R(L){return L<<30|L>>>2}function h(L,w,D,S){return 0===L?w&D|~w&S:2===L?w&D|w&S|D&S:w^D^S}t(C,e),C.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},C.prototype._update=function(L){for(var w=this._w,D=0|this._a,S=0|this._b,k=0|this._c,E=0|this._d,B=0|this._e,Z=0;Z<16;++Z)w[Z]=L.readInt32BE(4*Z);for(;Z<80;++Z)w[Z]=w[Z-3]^w[Z-8]^w[Z-14]^w[Z-16];for(var Y=0;Y<80;++Y){var ae=~~(Y/20),ee=d(D)+h(ae,S,k,E)+B+w[Y]+M[ae]|0;B=E,E=k,k=R(S),S=D,D=ee}this._a=D+this._a|0,this._b=S+this._b|0,this._c=k+this._c|0,this._d=E+this._d|0,this._e=B+this._e|0},C.prototype._hash=function(){var L=f.allocUnsafe(20);return L.writeInt32BE(0|this._a,0),L.writeInt32BE(0|this._b,4),L.writeInt32BE(0|this._c,8),L.writeInt32BE(0|this._d,12),L.writeInt32BE(0|this._e,16),L},Be.exports=C},7736:(Be,K,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1518500249,1859775393,-1894007588,-899497514],a=new Array(80);function C(){this.init(),this._w=a,e.call(this,64,56)}function d(w){return w<<1|w>>>31}function R(w){return w<<5|w>>>27}function h(w){return w<<30|w>>>2}function L(w,D,S,k){return 0===w?D&S|~D&k:2===w?D&S|D&k|S&k:D^S^k}t(C,e),C.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},C.prototype._update=function(w){for(var D=this._w,S=0|this._a,k=0|this._b,E=0|this._c,B=0|this._d,Z=0|this._e,Y=0;Y<16;++Y)D[Y]=w.readInt32BE(4*Y);for(;Y<80;++Y)D[Y]=d(D[Y-3]^D[Y-8]^D[Y-14]^D[Y-16]);for(var ae=0;ae<80;++ae){var ee=~~(ae/20),ue=R(S)+L(ee,k,E,B)+Z+D[ae]+M[ee]|0;Z=B,B=E,E=h(k),k=S,S=ue}this._a=S+this._a|0,this._b=k+this._b|0,this._c=E+this._c|0,this._d=B+this._d|0,this._e=Z+this._e|0},C.prototype._hash=function(){var w=f.allocUnsafe(20);return w.writeInt32BE(0|this._a,0),w.writeInt32BE(0|this._b,4),w.writeInt32BE(0|this._c,8),w.writeInt32BE(0|this._d,12),w.writeInt32BE(0|this._e,16),w},Be.exports=C},5044:(Be,K,p)=>{var t=p(3894),e=p(5014),f=p(6692),M=p(3502).Buffer,a=new Array(64);function C(){this.init(),this._w=a,f.call(this,64,56)}t(C,e),C.prototype.init=function(){return this._a=3238371032,this._b=914150663,this._c=812702999,this._d=4144912697,this._e=4290775857,this._f=1750603025,this._g=1694076839,this._h=3204075428,this},C.prototype._hash=function(){var d=M.allocUnsafe(28);return d.writeInt32BE(this._a,0),d.writeInt32BE(this._b,4),d.writeInt32BE(this._c,8),d.writeInt32BE(this._d,12),d.writeInt32BE(this._e,16),d.writeInt32BE(this._f,20),d.writeInt32BE(this._g,24),d},Be.exports=C},5014:(Be,K,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],a=new Array(64);function C(){this.init(),this._w=a,e.call(this,64,56)}function d(S,k,E){return E^S&(k^E)}function R(S,k,E){return S&k|E&(S|k)}function h(S){return(S>>>2|S<<30)^(S>>>13|S<<19)^(S>>>22|S<<10)}function L(S){return(S>>>6|S<<26)^(S>>>11|S<<21)^(S>>>25|S<<7)}function w(S){return(S>>>7|S<<25)^(S>>>18|S<<14)^S>>>3}function D(S){return(S>>>17|S<<15)^(S>>>19|S<<13)^S>>>10}t(C,e),C.prototype.init=function(){return this._a=1779033703,this._b=3144134277,this._c=1013904242,this._d=2773480762,this._e=1359893119,this._f=2600822924,this._g=528734635,this._h=1541459225,this},C.prototype._update=function(S){for(var k=this._w,E=0|this._a,B=0|this._b,Z=0|this._c,Y=0|this._d,ae=0|this._e,ee=0|this._f,ue=0|this._g,ie=0|this._h,re=0;re<16;++re)k[re]=S.readInt32BE(4*re);for(;re<64;++re)k[re]=D(k[re-2])+k[re-7]+w(k[re-15])+k[re-16]|0;for(var ge=0;ge<64;++ge){var q=ie+L(ae)+d(ae,ee,ue)+M[ge]+k[ge]|0,_e=h(E)+R(E,B,Z)|0;ie=ue,ue=ee,ee=ae,ae=Y+q|0,Y=Z,Z=B,B=E,E=q+_e|0}this._a=E+this._a|0,this._b=B+this._b|0,this._c=Z+this._c|0,this._d=Y+this._d|0,this._e=ae+this._e|0,this._f=ee+this._f|0,this._g=ue+this._g|0,this._h=ie+this._h|0},C.prototype._hash=function(){var S=f.allocUnsafe(32);return S.writeInt32BE(this._a,0),S.writeInt32BE(this._b,4),S.writeInt32BE(this._c,8),S.writeInt32BE(this._d,12),S.writeInt32BE(this._e,16),S.writeInt32BE(this._f,20),S.writeInt32BE(this._g,24),S.writeInt32BE(this._h,28),S},Be.exports=C},6540:(Be,K,p)=>{var t=p(3894),e=p(117),f=p(6692),M=p(3502).Buffer,a=new Array(160);function C(){this.init(),this._w=a,f.call(this,128,112)}t(C,e),C.prototype.init=function(){return this._ah=3418070365,this._bh=1654270250,this._ch=2438529370,this._dh=355462360,this._eh=1731405415,this._fh=2394180231,this._gh=3675008525,this._hh=1203062813,this._al=3238371032,this._bl=914150663,this._cl=812702999,this._dl=4144912697,this._el=4290775857,this._fl=1750603025,this._gl=1694076839,this._hl=3204075428,this},C.prototype._hash=function(){var d=M.allocUnsafe(48);function R(h,L,w){d.writeInt32BE(h,w),d.writeInt32BE(L,w+4)}return R(this._ah,this._al,0),R(this._bh,this._bl,8),R(this._ch,this._cl,16),R(this._dh,this._dl,24),R(this._eh,this._el,32),R(this._fh,this._fl,40),d},Be.exports=C},117:(Be,K,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],a=new Array(160);function C(){this.init(),this._w=a,e.call(this,128,112)}function d(B,Z,Y){return Y^B&(Z^Y)}function R(B,Z,Y){return B&Z|Y&(B|Z)}function h(B,Z){return(B>>>28|Z<<4)^(Z>>>2|B<<30)^(Z>>>7|B<<25)}function L(B,Z){return(B>>>14|Z<<18)^(B>>>18|Z<<14)^(Z>>>9|B<<23)}function w(B,Z){return(B>>>1|Z<<31)^(B>>>8|Z<<24)^B>>>7}function D(B,Z){return(B>>>1|Z<<31)^(B>>>8|Z<<24)^(B>>>7|Z<<25)}function S(B,Z){return(B>>>19|Z<<13)^(Z>>>29|B<<3)^B>>>6}function k(B,Z){return(B>>>19|Z<<13)^(Z>>>29|B<<3)^(B>>>6|Z<<26)}function E(B,Z){return B>>>0>>0?1:0}t(C,e),C.prototype.init=function(){return this._ah=1779033703,this._bh=3144134277,this._ch=1013904242,this._dh=2773480762,this._eh=1359893119,this._fh=2600822924,this._gh=528734635,this._hh=1541459225,this._al=4089235720,this._bl=2227873595,this._cl=4271175723,this._dl=1595750129,this._el=2917565137,this._fl=725511199,this._gl=4215389547,this._hl=327033209,this},C.prototype._update=function(B){for(var Z=this._w,Y=0|this._ah,ae=0|this._bh,ee=0|this._ch,ue=0|this._dh,ie=0|this._eh,re=0|this._fh,ge=0|this._gh,q=0|this._hh,_e=0|this._al,x=0|this._bl,i=0|this._cl,r=0|this._dl,u=0|this._el,c=0|this._fl,v=0|this._gl,T=0|this._hl,I=0;I<32;I+=2)Z[I]=B.readInt32BE(4*I),Z[I+1]=B.readInt32BE(4*I+4);for(;I<160;I+=2){var y=Z[I-30],n=Z[I-30+1],_=w(y,n),V=D(n,y),N=S(y=Z[I-4],n=Z[I-4+1]),H=k(n,y),be=Z[I-32],Pe=Z[I-32+1],Ee=V+Z[I-14+1]|0,j=_+Z[I-14]+E(Ee,V)|0;j=(j=j+N+E(Ee=Ee+H|0,H)|0)+be+E(Ee=Ee+Pe|0,Pe)|0,Z[I]=j,Z[I+1]=Ee}for(var Ve=0;Ve<160;Ve+=2){j=Z[Ve],Ee=Z[Ve+1];var Me=R(Y,ae,ee),J=R(_e,x,i),Ie=h(Y,_e),ut=h(_e,Y),Oe=L(ie,u),we=L(u,ie),ce=M[Ve],Te=M[Ve+1],xe=d(ie,re,ge),W=d(u,c,v),te=T+we|0,Ce=q+Oe+E(te,T)|0;Ce=(Ce=(Ce=Ce+xe+E(te=te+W|0,W)|0)+ce+E(te=te+Te|0,Te)|0)+j+E(te=te+Ee|0,Ee)|0;var fe=ut+J|0,Q=Ie+Me+E(fe,ut)|0;q=ge,T=v,ge=re,v=c,re=ie,c=u,ie=ue+Ce+E(u=r+te|0,r)|0,ue=ee,r=i,ee=ae,i=x,ae=Y,x=_e,Y=Ce+Q+E(_e=te+fe|0,te)|0}this._al=this._al+_e|0,this._bl=this._bl+x|0,this._cl=this._cl+i|0,this._dl=this._dl+r|0,this._el=this._el+u|0,this._fl=this._fl+c|0,this._gl=this._gl+v|0,this._hl=this._hl+T|0,this._ah=this._ah+Y+E(this._al,_e)|0,this._bh=this._bh+ae+E(this._bl,x)|0,this._ch=this._ch+ee+E(this._cl,i)|0,this._dh=this._dh+ue+E(this._dl,r)|0,this._eh=this._eh+ie+E(this._el,u)|0,this._fh=this._fh+re+E(this._fl,c)|0,this._gh=this._gh+ge+E(this._gl,v)|0,this._hh=this._hh+q+E(this._hl,T)|0},C.prototype._hash=function(){var B=f.allocUnsafe(64);function Z(Y,ae,ee){B.writeInt32BE(Y,ee),B.writeInt32BE(ae,ee+4)}return Z(this._ah,this._al,0),Z(this._bh,this._bl,8),Z(this._ch,this._cl,16),Z(this._dh,this._dl,24),Z(this._eh,this._el,32),Z(this._fh,this._fl,40),Z(this._gh,this._gl,48),Z(this._hh,this._hl,56),B},Be.exports=C},8012:function(Be,K,p){!function(t){"use strict";var e={};Be.exports?(e.bytesToHex=p(6128).bytesToHex,e.convertString=p(5612),Be.exports=R):(e.bytesToHex=t.convertHex.bytesToHex,e.convertString=t.convertString,t.sha256=R);var f=[];!function(){function h(S){for(var k=Math.sqrt(S),E=2;E<=k;E++)if(!(S%E))return!1;return!0}for(var w=2,D=0;D<64;)h(w)&&(f[D]=4294967296*((S=Math.pow(w,1/3))-(0|S))|0,D++),w++;var S}();var C=[],d=function(h,L,w){for(var D=h[0],S=h[1],k=h[2],E=h[3],B=h[4],Z=h[5],Y=h[6],ae=h[7],ee=0;ee<64;ee++){if(ee<16)C[ee]=0|L[w+ee];else{var ue=C[ee-15],re=C[ee-2];C[ee]=((ue<<25|ue>>>7)^(ue<<14|ue>>>18)^ue>>>3)+C[ee-7]+((re<<15|re>>>17)^(re<<13|re>>>19)^re>>>10)+C[ee-16]}var _e=D&S^D&k^S&k,r=ae+((B<<26|B>>>6)^(B<<21|B>>>11)^(B<<7|B>>>25))+(B&Z^~B&Y)+f[ee]+C[ee];ae=Y,Y=Z,Z=B,B=E+r|0,E=k,k=S,S=D,D=r+(((D<<30|D>>>2)^(D<<19|D>>>13)^(D<<10|D>>>22))+_e)|0}h[0]=h[0]+D|0,h[1]=h[1]+S|0,h[2]=h[2]+k|0,h[3]=h[3]+E|0,h[4]=h[4]+B|0,h[5]=h[5]+Z|0,h[6]=h[6]+Y|0,h[7]=h[7]+ae|0};function R(h,L){h.constructor===String&&(h=e.convertString.UTF8.stringToBytes(h));var w=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],D=function(h){for(var L=[],w=0,D=0;w>>5]|=h[w]<<24-D%32;return L}(h),S=8*h.length;D[S>>5]|=128<<24-S%32,D[15+(S+64>>9<<4)]=S;for(var k=0;k>>5]>>>24-w%32&255);return L}(w);return L&&L.asBytes?E:L&&L.asString?e.convertString.bytesToString(E):e.bytesToHex(E)}R.x2=function(h,L){return R(R(h,{asBytes:!0}),L)}}(this)},4315:(Be,K,p)=>{"use strict";const t=Symbol.prototype.valueOf,e=p(2872);Be.exports=function f(h,L){switch(e(h)){case"array":return h.slice();case"object":return Object.assign({},h);case"date":return new h.constructor(Number(h));case"map":return new Map(h);case"set":return new Set(h);case"buffer":return function d(h){const L=h.length,w=Buffer.allocUnsafe?Buffer.allocUnsafe(L):Buffer.from(L);return h.copy(w),w}(h);case"symbol":return function R(h){return t?Object(t.call(h)):{}}(h);case"arraybuffer":return function a(h){const L=new h.constructor(h.byteLength);return new Uint8Array(L).set(new Uint8Array(h)),L}(h);case"float32array":case"float64array":case"int16array":case"int32array":case"int8array":case"uint16array":case"uint32array":case"uint8clampedarray":case"uint8array":return function C(h,L){return new h.constructor(h.buffer,h.byteOffset,h.length)}(h);case"regexp":return function M(h){const L=void 0!==h.flags?h.flags:/\w+$/.exec(h)||void 0,w=new h.constructor(h.source,L);return w.lastIndex=h.lastIndex,w}(h);case"error":return Object.create(h);default:return h}}},295:(Be,K,p)=>{Be.exports=f;var t=p(9069).EventEmitter;function f(){t.call(this)}p(3894)(f,t),f.Readable=p(3154),f.Writable=p(520),f.Duplex=p(1339),f.Transform=p(6025),f.PassThrough=p(6071),f.finished=p(7542),f.pipeline=p(954),f.Stream=f,f.prototype.pipe=function(M,a){var C=this;function d(k){M.writable&&!1===M.write(k)&&C.pause&&C.pause()}function R(){C.readable&&C.resume&&C.resume()}C.on("data",d),M.on("drain",R),!M._isStdio&&(!a||!1!==a.end)&&(C.on("end",L),C.on("close",w));var h=!1;function L(){h||(h=!0,M.end())}function w(){h||(h=!0,"function"==typeof M.destroy&&M.destroy())}function D(k){if(S(),0===t.listenerCount(this,"error"))throw k}function S(){C.removeListener("data",d),M.removeListener("drain",R),C.removeListener("end",L),C.removeListener("close",w),C.removeListener("error",D),M.removeListener("error",D),C.removeListener("end",S),C.removeListener("close",S),M.removeListener("close",S)}return C.on("error",D),M.on("error",D),C.on("end",S),C.on("close",S),M.on("close",S),M.emit("pipe",C),M}},3054:(Be,K,p)=>{"use strict";var t=p(3502).Buffer,e=t.isEncoding||function(Y){switch((Y=""+Y)&&Y.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function a(Y){var ae;switch(this.encoding=function M(Y){var ae=function f(Y){if(!Y)return"utf8";for(var ae;;)switch(Y){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return Y;default:if(ae)return;Y=(""+Y).toLowerCase(),ae=!0}}(Y);if("string"!=typeof ae&&(t.isEncoding===e||!e(Y)))throw new Error("Unknown encoding: "+Y);return ae||Y}(Y),this.encoding){case"utf16le":this.text=D,this.end=S,ae=4;break;case"utf8":this.fillLast=h,ae=4;break;case"base64":this.text=k,this.end=E,ae=3;break;default:return this.write=B,void(this.end=Z)}this.lastNeed=0,this.lastTotal=0,this.lastChar=t.allocUnsafe(ae)}function C(Y){return Y<=127?0:Y>>5==6?2:Y>>4==14?3:Y>>3==30?4:Y>>6==2?-1:-2}function h(Y){var ae=this.lastTotal-this.lastNeed,ee=function R(Y,ae,ee){if(128!=(192&ae[0]))return Y.lastNeed=0,"\ufffd";if(Y.lastNeed>1&&ae.length>1){if(128!=(192&ae[1]))return Y.lastNeed=1,"\ufffd";if(Y.lastNeed>2&&ae.length>2&&128!=(192&ae[2]))return Y.lastNeed=2,"\ufffd"}}(this,Y);return void 0!==ee?ee:this.lastNeed<=Y.length?(Y.copy(this.lastChar,ae,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Y.copy(this.lastChar,ae,0,Y.length),void(this.lastNeed-=Y.length))}function D(Y,ae){if((Y.length-ae)%2==0){var ee=Y.toString("utf16le",ae);if(ee){var ue=ee.charCodeAt(ee.length-1);if(ue>=55296&&ue<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Y[Y.length-2],this.lastChar[1]=Y[Y.length-1],ee.slice(0,-1)}return ee}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Y[Y.length-1],Y.toString("utf16le",ae,Y.length-1)}function S(Y){var ae=Y&&Y.length?this.write(Y):"";return this.lastNeed?ae+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):ae}function k(Y,ae){var ee=(Y.length-ae)%3;return 0===ee?Y.toString("base64",ae):(this.lastNeed=3-ee,this.lastTotal=3,1===ee?this.lastChar[0]=Y[Y.length-1]:(this.lastChar[0]=Y[Y.length-2],this.lastChar[1]=Y[Y.length-1]),Y.toString("base64",ae,Y.length-ee))}function E(Y){var ae=Y&&Y.length?this.write(Y):"";return this.lastNeed?ae+this.lastChar.toString("base64",0,3-this.lastNeed):ae}function B(Y){return Y.toString(this.encoding)}function Z(Y){return Y&&Y.length?this.write(Y):""}K.s=a,a.prototype.write=function(Y){if(0===Y.length)return"";var ae,ee;if(this.lastNeed){if(void 0===(ae=this.fillLast(Y)))return"";ee=this.lastNeed,this.lastNeed=0}else ee=0;return ee=0?(ie>0&&(Y.lastNeed=ie-1),ie):--ue=0?(ie>0&&(Y.lastNeed=ie-2),ie):--ue=0?(ie>0&&(2===ie?ie=0:Y.lastNeed=ie-3),ie):0}(this,Y,ae);if(!this.lastNeed)return Y.toString("utf8",ae);this.lastTotal=ee;var ue=Y.length-(ee-this.lastNeed);return Y.copy(this.lastChar,0,ue),Y.toString("utf8",ae,ue)},a.prototype.fillLast=function(Y){if(this.lastNeed<=Y.length)return Y.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Y.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Y.length),this.lastNeed-=Y.length}},2167:(Be,K,p)=>{var t=p(4606);K.encode=t.encode,K.decode=t.decode},4606:(Be,K)=>{"use strict";var t=[255,255,26,27,28,29,30,31,255,255,255,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255];K.encode=function(f){Buffer.isBuffer(f)||(f=new Buffer(f));for(var M=0,a=0,C=0,d=0,R=new Buffer(8*function e(f){var M=Math.floor(f.length/5);return f.length%5==0?M:M+1}(f));M3?(d=(d=h&255>>C)<<(C=(C+5)%8)|(M+1>8-C,M++):(d=h>>8-(C+5)&31,0==(C=(C+5)%8)&&M++),R[a]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(d),a++}for(M=a;M>>(M=(M+5)%8),d++,C=255&a<<8-M)}return R.slice(0,d)}},4364:Be=>{function p(t){try{if(!global.localStorage)return!1}catch(f){return!1}var e=global.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}Be.exports=function K(t,e){if(p("noDeprecation"))return t;var f=!1;return function M(){if(!f){if(p("throwDeprecation"))throw new Error(e);p("traceDeprecation")?console.trace(e):console.warn(e),f=!0}return t.apply(this,arguments)}}},655:(Be,K,p)=>{"use strict";function a(i,r,u,c){var I,v=arguments.length,T=v<3?r:null===c?c=Object.getOwnPropertyDescriptor(r,u):c;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)T=Reflect.decorate(i,r,u,c);else for(var y=i.length-1;y>=0;y--)(I=i[y])&&(T=(v<3?I(T):v>3?I(r,u,T):I(r,u))||T);return v>3&&T&&Object.defineProperty(r,u,T),T}function R(i,r,u,c){return new(u||(u=Promise))(function(T,I){function y(V){try{_(c.next(V))}catch(N){I(N)}}function n(V){try{_(c.throw(V))}catch(N){I(N)}}function _(V){V.done?T(V.value):function v(T){return T instanceof u?T:new u(function(I){I(T)})}(V.value).then(y,n)}_((c=c.apply(i,r||[])).next())})}function Z(i){return this instanceof Z?(this.v=i,this):new Z(i)}function Y(i,r,u){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var v,c=u.apply(i,r||[]),T=[];return v={},I("next"),I("throw"),I("return"),v[Symbol.asyncIterator]=function(){return this},v;function I(H){c[H]&&(v[H]=function(X){return new Promise(function(he,be){T.push([H,X,he,be])>1||y(H,X)})})}function y(H,X){try{!function n(H){H.value instanceof Z?Promise.resolve(H.value.v).then(_,V):N(T[0][2],H)}(c[H](X))}catch(he){N(T[0][3],he)}}function _(H){y("next",H)}function V(H){y("throw",H)}function N(H,X){H(X),T.shift(),T.length&&y(T[0][0],T[0][1])}}function ee(i){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var u,r=i[Symbol.asyncIterator];return r?r.call(i):(i=function D(i){var r="function"==typeof Symbol&&Symbol.iterator,u=r&&i[r],c=0;if(u)return u.call(i);if(i&&"number"==typeof i.length)return{next:function(){return i&&c>=i.length&&(i=void 0),{value:i&&i[c++],done:!i}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}(i),u={},c("next"),c("throw"),c("return"),u[Symbol.asyncIterator]=function(){return this},u);function c(T){u[T]=i[T]&&function(I){return new Promise(function(y,n){!function v(T,I,y,n){Promise.resolve(n).then(function(_){T({value:_,done:y})},I)}(y,n,(I=i[T](I)).done,I.value)})}}}p.d(K,{FC:()=>Y,KL:()=>ee,gn:()=>a,mG:()=>R,qq:()=>Z})},950:()=>{},6601:()=>{},8623:()=>{},7748:()=>{},5568:()=>{},6619:()=>{},7108:()=>{},2361:()=>{},4616:()=>{},1777:(Be,K,p)=>{"use strict";p.d(K,{F4:()=>L,IO:()=>E,LC:()=>e,SB:()=>h,X$:()=>M,ZE:()=>ae,ZN:()=>Y,_j:()=>t,eR:()=>w,jt:()=>a,k1:()=>ee,l3:()=>f,oB:()=>R,pV:()=>S,ru:()=>C,vP:()=>d});class t{}class e{}const f="*";function M(ue,ie){return{type:7,name:ue,definitions:ie,options:{}}}function a(ue,ie=null){return{type:4,styles:ie,timings:ue}}function C(ue,ie=null){return{type:3,steps:ue,options:ie}}function d(ue,ie=null){return{type:2,steps:ue,options:ie}}function R(ue){return{type:6,styles:ue,offset:null}}function h(ue,ie,re){return{type:0,name:ue,styles:ie,options:re}}function L(ue){return{type:5,steps:ue}}function w(ue,ie,re=null){return{type:1,expr:ue,animation:ie,options:re}}function S(ue=null){return{type:9,options:ue}}function E(ue,ie,re=null){return{type:11,selector:ue,animation:ie,options:re}}function Z(ue){Promise.resolve(null).then(ue)}class Y{constructor(ie=0,re=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=ie+re}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(ie=>ie()),this._onDoneFns=[])}onStart(ie){this._onStartFns.push(ie)}onDone(ie){this._onDoneFns.push(ie)}onDestroy(ie){this._onDestroyFns.push(ie)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){Z(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(ie=>ie()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(ie=>ie()),this._onDestroyFns=[])}reset(){this._started=!1}setPosition(ie){this._position=this.totalTime?ie*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(ie){const re="start"==ie?this._onStartFns:this._onDoneFns;re.forEach(ge=>ge()),re.length=0}}class ae{constructor(ie){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=ie;let re=0,ge=0,q=0;const _e=this.players.length;0==_e?Z(()=>this._onFinish()):this.players.forEach(x=>{x.onDone(()=>{++re==_e&&this._onFinish()}),x.onDestroy(()=>{++ge==_e&&this._onDestroy()}),x.onStart(()=>{++q==_e&&this._onStart()})}),this.totalTime=this.players.reduce((x,i)=>Math.max(x,i.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(ie=>ie()),this._onDoneFns=[])}init(){this.players.forEach(ie=>ie.init())}onStart(ie){this._onStartFns.push(ie)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(ie=>ie()),this._onStartFns=[])}onDone(ie){this._onDoneFns.push(ie)}onDestroy(ie){this._onDestroyFns.push(ie)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(ie=>ie.play())}pause(){this.players.forEach(ie=>ie.pause())}restart(){this.players.forEach(ie=>ie.restart())}finish(){this._onFinish(),this.players.forEach(ie=>ie.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(ie=>ie.destroy()),this._onDestroyFns.forEach(ie=>ie()),this._onDestroyFns=[])}reset(){this.players.forEach(ie=>ie.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(ie){const re=ie*this.totalTime;this.players.forEach(ge=>{const q=ge.totalTime?Math.min(1,re/ge.totalTime):1;ge.setPosition(q)})}getPosition(){const ie=this.players.reduce((re,ge)=>null===re||ge.totalTime>re.totalTime?ge:re,null);return null!=ie?ie.getPosition():0}beforeDestroy(){this.players.forEach(ie=>{ie.beforeDestroy&&ie.beforeDestroy()})}triggerCallback(ie){const re="start"==ie?this._onStartFns:this._onDoneFns;re.forEach(ge=>ge()),re.length=0}}const ee="!"},5664:(Be,K,p)=>{"use strict";p.d(K,{$s:()=>x,Em:()=>v,Kd:()=>di,X6:()=>Te,ic:()=>I,kH:()=>Nt,mK:()=>J,qV:()=>Me,qm:()=>ei,rt:()=>Qt,s1:()=>c,tE:()=>Ot,yG:()=>xe});var t=p(9808),e=p(5e3),f=p(925),M=p(7579),a=p(727),C=p(1135),d=p(9646),R=p(1159),h=p(8505),L=p(8372),w=p(9300),D=p(4004),S=p(5698),k=p(5684),E=p(1884),B=p(2722),Z=p(3191),Y=p(7144);function ie(Re,ke){return(Re.getAttribute(ke)||"").match(/\S+/g)||[]}const ge="cdk-describedby-message",q="cdk-describedby-host";let _e=0,x=(()=>{class Re{constructor(de,ye){this._platform=ye,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+_e++,this._document=de}describe(de,ye,ht){if(!this._canBeDescribed(de,ye))return;const mt=i(ye,ht);"string"!=typeof ye?(r(ye),this._messageRegistry.set(mt,{messageElement:ye,referenceCount:0})):this._messageRegistry.has(mt)||this._createMessageElement(ye,ht),this._isElementDescribedByMessage(de,mt)||this._addMessageReference(de,mt)}removeDescription(de,ye,ht){var mt;if(!ye||!this._isElementNode(de))return;const Ft=i(ye,ht);if(this._isElementDescribedByMessage(de,Ft)&&this._removeMessageReference(de,Ft),"string"==typeof ye){const nt=this._messageRegistry.get(Ft);nt&&0===nt.referenceCount&&this._deleteMessageElement(Ft)}0===(null===(mt=this._messagesContainer)||void 0===mt?void 0:mt.childNodes.length)&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){var de;const ye=this._document.querySelectorAll(`[${q}="${this._id}"]`);for(let ht=0;ht0!=ht.indexOf(ge));de.setAttribute("aria-describedby",ye.join(" "))}_addMessageReference(de,ye){const ht=this._messageRegistry.get(ye);(function ee(Re,ke,de){const ye=ie(Re,ke);ye.some(ht=>ht.trim()==de.trim())||(ye.push(de.trim()),Re.setAttribute(ke,ye.join(" ")))})(de,"aria-describedby",ht.messageElement.id),de.setAttribute(q,this._id),ht.referenceCount++}_removeMessageReference(de,ye){const ht=this._messageRegistry.get(ye);ht.referenceCount--,function ue(Re,ke,de){const ht=ie(Re,ke).filter(mt=>mt!=de.trim());ht.length?Re.setAttribute(ke,ht.join(" ")):Re.removeAttribute(ke)}(de,"aria-describedby",ht.messageElement.id),de.removeAttribute(q)}_isElementDescribedByMessage(de,ye){const ht=ie(de,"aria-describedby"),mt=this._messageRegistry.get(ye),Ft=mt&&mt.messageElement.id;return!!Ft&&-1!=ht.indexOf(Ft)}_canBeDescribed(de,ye){if(!this._isElementNode(de))return!1;if(ye&&"object"==typeof ye)return!0;const ht=null==ye?"":`${ye}`.trim(),mt=de.getAttribute("aria-label");return!(!ht||mt&&mt.trim()===ht)}_isElementNode(de){return de.nodeType===this._document.ELEMENT_NODE}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(t.K0),e.LFG(f.t4))},Re.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})();function i(Re,ke){return"string"==typeof Re?`${ke||""}/${Re}`:Re}function r(Re){Re.id||(Re.id=`${ge}-${_e++}`)}class u{constructor(ke){this._items=ke,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new M.x,this._typeaheadSubscription=a.w0.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._skipPredicateFn=de=>de.disabled,this._pressedLetters=[],this.tabOut=new M.x,this.change=new M.x,ke instanceof e.n_E&&ke.changes.subscribe(de=>{if(this._activeItem){const ht=de.toArray().indexOf(this._activeItem);ht>-1&&ht!==this._activeItemIndex&&(this._activeItemIndex=ht)}})}skipPredicate(ke){return this._skipPredicateFn=ke,this}withWrap(ke=!0){return this._wrap=ke,this}withVerticalOrientation(ke=!0){return this._vertical=ke,this}withHorizontalOrientation(ke){return this._horizontal=ke,this}withAllowedModifierKeys(ke){return this._allowedModifierKeys=ke,this}withTypeAhead(ke=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,h.b)(de=>this._pressedLetters.push(de)),(0,L.b)(ke),(0,w.h)(()=>this._pressedLetters.length>0),(0,D.U)(()=>this._pressedLetters.join(""))).subscribe(de=>{const ye=this._getItemsArray();for(let ht=1;ht!ke[mt]||this._allowedModifierKeys.indexOf(mt)>-1);switch(de){case R.Mf:return void this.tabOut.next();case R.JH:if(this._vertical&&ht){this.setNextItemActive();break}return;case R.LH:if(this._vertical&&ht){this.setPreviousItemActive();break}return;case R.SV:if(this._horizontal&&ht){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case R.oh:if(this._horizontal&&ht){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case R.Sd:if(this._homeAndEnd&&ht){this.setFirstItemActive();break}return;case R.uR:if(this._homeAndEnd&&ht){this.setLastItemActive();break}return;default:return void((ht||(0,R.Vb)(ke,"shiftKey"))&&(ke.key&&1===ke.key.length?this._letterKeyStream.next(ke.key.toLocaleUpperCase()):(de>=R.A&&de<=R.Z||de>=R.xE&&de<=R.aO)&&this._letterKeyStream.next(String.fromCharCode(de))))}this._pressedLetters=[],ke.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(ke){const de=this._getItemsArray(),ye="number"==typeof ke?ke:de.indexOf(ke),ht=de[ye];this._activeItem=null==ht?null:ht,this._activeItemIndex=ye}_setActiveItemByDelta(ke){this._wrap?this._setActiveInWrapMode(ke):this._setActiveInDefaultMode(ke)}_setActiveInWrapMode(ke){const de=this._getItemsArray();for(let ye=1;ye<=de.length;ye++){const ht=(this._activeItemIndex+ke*ye+de.length)%de.length;if(!this._skipPredicateFn(de[ht]))return void this.setActiveItem(ht)}}_setActiveInDefaultMode(ke){this._setActiveItemByIndex(this._activeItemIndex+ke,ke)}_setActiveItemByIndex(ke,de){const ye=this._getItemsArray();if(ye[ke]){for(;this._skipPredicateFn(ye[ke]);)if(!ye[ke+=de])return;this.setActiveItem(ke)}}_getItemsArray(){return this._items instanceof e.n_E?this._items.toArray():this._items}}class c extends u{setActiveItem(ke){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(ke),this.activeItem&&this.activeItem.setActiveStyles()}}class v extends u{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(ke){return this._origin=ke,this}setActiveItem(ke){super.setActiveItem(ke),this.activeItem&&this.activeItem.focus(this._origin)}}let I=(()=>{class Re{constructor(de){this._platform=de}isDisabled(de){return de.hasAttribute("disabled")}isVisible(de){return function n(Re){return!!(Re.offsetWidth||Re.offsetHeight||"function"==typeof Re.getClientRects&&Re.getClientRects().length)}(de)&&"visible"===getComputedStyle(de).visibility}isTabbable(de){if(!this._platform.isBrowser)return!1;const ye=function y(Re){try{return Re.frameElement}catch(ke){return null}}(function j(Re){return Re.ownerDocument&&Re.ownerDocument.defaultView||window}(de));if(ye&&(-1===be(ye)||!this.isVisible(ye)))return!1;let ht=de.nodeName.toLowerCase(),mt=be(de);return de.hasAttribute("contenteditable")?-1!==mt:!("iframe"===ht||"object"===ht||this._platform.WEBKIT&&this._platform.IOS&&!function Pe(Re){let ke=Re.nodeName.toLowerCase(),de="input"===ke&&Re.type;return"text"===de||"password"===de||"select"===ke||"textarea"===ke}(de))&&("audio"===ht?!!de.hasAttribute("controls")&&-1!==mt:"video"===ht?-1!==mt&&(null!==mt||this._platform.FIREFOX||de.hasAttribute("controls")):de.tabIndex>=0)}isFocusable(de,ye){return function Ee(Re){return!function V(Re){return function H(Re){return"input"==Re.nodeName.toLowerCase()}(Re)&&"hidden"==Re.type}(Re)&&(function _(Re){let ke=Re.nodeName.toLowerCase();return"input"===ke||"select"===ke||"button"===ke||"textarea"===ke}(Re)||function N(Re){return function X(Re){return"a"==Re.nodeName.toLowerCase()}(Re)&&Re.hasAttribute("href")}(Re)||Re.hasAttribute("contenteditable")||he(Re))}(de)&&!this.isDisabled(de)&&((null==ye?void 0:ye.ignoreVisibility)||this.isVisible(de))}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(f.t4))},Re.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})();function he(Re){if(!Re.hasAttribute("tabindex")||void 0===Re.tabIndex)return!1;let ke=Re.getAttribute("tabindex");return!(!ke||isNaN(parseInt(ke,10)))}function be(Re){if(!he(Re))return null;const ke=parseInt(Re.getAttribute("tabindex")||"",10);return isNaN(ke)?-1:ke}class Ve{constructor(ke,de,ye,ht,mt=!1){this._element=ke,this._checker=de,this._ngZone=ye,this._document=ht,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,mt||this.attachAnchors()}get enabled(){return this._enabled}set enabled(ke){this._enabled=ke,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ke,this._startAnchor),this._toggleAnchorTabIndex(ke,this._endAnchor))}destroy(){const ke=this._startAnchor,de=this._endAnchor;ke&&(ke.removeEventListener("focus",this.startAnchorListener),ke.remove()),de&&(de.removeEventListener("focus",this.endAnchorListener),de.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(ke){return new Promise(de=>{this._executeOnStable(()=>de(this.focusInitialElement(ke)))})}focusFirstTabbableElementWhenReady(ke){return new Promise(de=>{this._executeOnStable(()=>de(this.focusFirstTabbableElement(ke)))})}focusLastTabbableElementWhenReady(ke){return new Promise(de=>{this._executeOnStable(()=>de(this.focusLastTabbableElement(ke)))})}_getRegionBoundary(ke){const de=this._element.querySelectorAll(`[cdk-focus-region-${ke}], [cdkFocusRegion${ke}], [cdk-focus-${ke}]`);return"start"==ke?de.length?de[0]:this._getFirstTabbableElement(this._element):de.length?de[de.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(ke){const de=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(de){if(!this._checker.isFocusable(de)){const ye=this._getFirstTabbableElement(de);return null==ye||ye.focus(ke),!!ye}return de.focus(ke),!0}return this.focusFirstTabbableElement(ke)}focusFirstTabbableElement(ke){const de=this._getRegionBoundary("start");return de&&de.focus(ke),!!de}focusLastTabbableElement(ke){const de=this._getRegionBoundary("end");return de&&de.focus(ke),!!de}hasAttached(){return this._hasAttached}_getFirstTabbableElement(ke){if(this._checker.isFocusable(ke)&&this._checker.isTabbable(ke))return ke;const de=ke.children;for(let ye=0;ye=0;ye--){const ht=de[ye].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(de[ye]):null;if(ht)return ht}return null}_createAnchor(){const ke=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,ke),ke.classList.add("cdk-visually-hidden"),ke.classList.add("cdk-focus-trap-anchor"),ke.setAttribute("aria-hidden","true"),ke}_toggleAnchorTabIndex(ke,de){ke?de.setAttribute("tabindex","0"):de.removeAttribute("tabindex")}toggleAnchors(ke){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ke,this._startAnchor),this._toggleAnchorTabIndex(ke,this._endAnchor))}_executeOnStable(ke){this._ngZone.isStable?ke():this._ngZone.onStable.pipe((0,S.q)(1)).subscribe(ke)}}let Me=(()=>{class Re{constructor(de,ye,ht){this._checker=de,this._ngZone=ye,this._document=ht}create(de,ye=!1){return new Ve(de,this._checker,this._ngZone,this._document,ye)}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(I),e.LFG(e.R0b),e.LFG(t.K0))},Re.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})(),J=(()=>{class Re{constructor(de,ye,ht){this._elementRef=de,this._focusTrapFactory=ye,this._previouslyFocusedElement=null,this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0)}get enabled(){return this.focusTrap.enabled}set enabled(de){this.focusTrap.enabled=(0,Z.Ig)(de)}get autoCapture(){return this._autoCapture}set autoCapture(de){this._autoCapture=(0,Z.Ig)(de)}ngOnDestroy(){this.focusTrap.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap.hasAttached()||this.focusTrap.attachAnchors()}ngOnChanges(de){const ye=de.autoCapture;ye&&!ye.firstChange&&this.autoCapture&&this.focusTrap.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,f.ht)(),this.focusTrap.focusInitialElementWhenReady()}}return Re.\u0275fac=function(de){return new(de||Re)(e.Y36(e.SBq),e.Y36(Me),e.Y36(t.K0))},Re.\u0275dir=e.lG2({type:Re,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:["cdkTrapFocus","enabled"],autoCapture:["cdkTrapFocusAutoCapture","autoCapture"]},exportAs:["cdkTrapFocus"],features:[e.TTD]}),Re})();function Te(Re){return 0===Re.buttons||0===Re.offsetX&&0===Re.offsetY}function xe(Re){const ke=Re.touches&&Re.touches[0]||Re.changedTouches&&Re.changedTouches[0];return!(!ke||-1!==ke.identifier||null!=ke.radiusX&&1!==ke.radiusX||null!=ke.radiusY&&1!==ke.radiusY)}const W=new e.OlP("cdk-input-modality-detector-options"),te={ignoreKeys:[R.zL,R.jx,R.b2,R.MW,R.JU]},fe=(0,f.i$)({passive:!0,capture:!0});let Q=(()=>{class Re{constructor(de,ye,ht,mt){this._platform=de,this._mostRecentTarget=null,this._modality=new C.X(null),this._lastTouchMs=0,this._onKeydown=Ft=>{var nt,He;(null===(He=null===(nt=this._options)||void 0===nt?void 0:nt.ignoreKeys)||void 0===He?void 0:He.some(rt=>rt===Ft.keyCode))||(this._modality.next("keyboard"),this._mostRecentTarget=(0,f.sA)(Ft))},this._onMousedown=Ft=>{Date.now()-this._lastTouchMs<650||(this._modality.next(Te(Ft)?"keyboard":"mouse"),this._mostRecentTarget=(0,f.sA)(Ft))},this._onTouchstart=Ft=>{xe(Ft)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,f.sA)(Ft))},this._options=Object.assign(Object.assign({},te),mt),this.modalityDetected=this._modality.pipe((0,k.T)(1)),this.modalityChanged=this.modalityDetected.pipe((0,E.x)()),de.isBrowser&&ye.runOutsideAngular(()=>{ht.addEventListener("keydown",this._onKeydown,fe),ht.addEventListener("mousedown",this._onMousedown,fe),ht.addEventListener("touchstart",this._onTouchstart,fe)})}get mostRecentModality(){return this._modality.value}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,fe),document.removeEventListener("mousedown",this._onMousedown,fe),document.removeEventListener("touchstart",this._onTouchstart,fe))}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(f.t4),e.LFG(e.R0b),e.LFG(t.K0),e.LFG(W,8))},Re.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})();const ft=new e.OlP("liveAnnouncerElement",{providedIn:"root",factory:function tt(){return null}}),Dt=new e.OlP("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let di=(()=>{class Re{constructor(de,ye,ht,mt){this._ngZone=ye,this._defaultOptions=mt,this._document=ht,this._liveElement=de||this._createLiveElement()}announce(de,...ye){const ht=this._defaultOptions;let mt,Ft;return 1===ye.length&&"number"==typeof ye[0]?Ft=ye[0]:[mt,Ft]=ye,this.clear(),clearTimeout(this._previousTimeout),mt||(mt=ht&&ht.politeness?ht.politeness:"polite"),null==Ft&&ht&&(Ft=ht.duration),this._liveElement.setAttribute("aria-live",mt),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(nt=>this._currentResolve=nt)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=de,"number"==typeof Ft&&(this._previousTimeout=setTimeout(()=>this.clear(),Ft)),this._currentResolve(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){var de,ye;clearTimeout(this._previousTimeout),null===(de=this._liveElement)||void 0===de||de.remove(),this._liveElement=null,null===(ye=this._currentResolve)||void 0===ye||ye.call(this),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const de="cdk-live-announcer-element",ye=this._document.getElementsByClassName(de),ht=this._document.createElement("div");for(let mt=0;mt{class Re{constructor(de,ye,ht,mt,Ft){this._ngZone=de,this._platform=ye,this._inputModalityDetector=ht,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new M.x,this._rootNodeFocusAndBlurListener=nt=>{const He=(0,f.sA)(nt),rt="focus"===nt.type?this._onFocus:this._onBlur;for(let et=He;et;et=et.parentElement)rt.call(this,nt,et)},this._document=mt,this._detectionMode=(null==Ft?void 0:Ft.detectionMode)||0}monitor(de,ye=!1){const ht=(0,Z.fI)(de);if(!this._platform.isBrowser||1!==ht.nodeType)return(0,d.of)(null);const mt=(0,f.kV)(ht)||this._getDocument(),Ft=this._elementInfo.get(ht);if(Ft)return ye&&(Ft.checkChildren=!0),Ft.subject;const nt={checkChildren:ye,subject:new M.x,rootNode:mt};return this._elementInfo.set(ht,nt),this._registerGlobalListeners(nt),nt.subject}stopMonitoring(de){const ye=(0,Z.fI)(de),ht=this._elementInfo.get(ye);ht&&(ht.subject.complete(),this._setClasses(ye),this._elementInfo.delete(ye),this._removeGlobalListeners(ht))}focusVia(de,ye,ht){const mt=(0,Z.fI)(de);mt===this._getDocument().activeElement?this._getClosestElementsInfo(mt).forEach(([nt,He])=>this._originChanged(nt,ye,He)):(this._setOrigin(ye),"function"==typeof mt.focus&&mt.focus(ht))}ngOnDestroy(){this._elementInfo.forEach((de,ye)=>this.stopMonitoring(ye))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(de){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(de)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:"program"}_shouldBeAttributedToTouch(de){return 1===this._detectionMode||!!(null==de?void 0:de.contains(this._inputModalityDetector._mostRecentTarget))}_setClasses(de,ye){de.classList.toggle("cdk-focused",!!ye),de.classList.toggle("cdk-touch-focused","touch"===ye),de.classList.toggle("cdk-keyboard-focused","keyboard"===ye),de.classList.toggle("cdk-mouse-focused","mouse"===ye),de.classList.toggle("cdk-program-focused","program"===ye)}_setOrigin(de,ye=!1){this._ngZone.runOutsideAngular(()=>{this._origin=de,this._originFromTouchInteraction="touch"===de&&ye,0===this._detectionMode&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(de,ye){const ht=this._elementInfo.get(ye),mt=(0,f.sA)(de);!ht||!ht.checkChildren&&ye!==mt||this._originChanged(ye,this._getFocusOrigin(mt),ht)}_onBlur(de,ye){const ht=this._elementInfo.get(ye);!ht||ht.checkChildren&&de.relatedTarget instanceof Node&&ye.contains(de.relatedTarget)||(this._setClasses(ye),this._emitOrigin(ht.subject,null))}_emitOrigin(de,ye){this._ngZone.run(()=>de.next(ye))}_registerGlobalListeners(de){if(!this._platform.isBrowser)return;const ye=de.rootNode,ht=this._rootNodeFocusListenerCount.get(ye)||0;ht||this._ngZone.runOutsideAngular(()=>{ye.addEventListener("focus",this._rootNodeFocusAndBlurListener,ui),ye.addEventListener("blur",this._rootNodeFocusAndBlurListener,ui)}),this._rootNodeFocusListenerCount.set(ye,ht+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,B.R)(this._stopInputModalityDetector)).subscribe(mt=>{this._setOrigin(mt,!0)}))}_removeGlobalListeners(de){const ye=de.rootNode;if(this._rootNodeFocusListenerCount.has(ye)){const ht=this._rootNodeFocusListenerCount.get(ye);ht>1?this._rootNodeFocusListenerCount.set(ye,ht-1):(ye.removeEventListener("focus",this._rootNodeFocusAndBlurListener,ui),ye.removeEventListener("blur",this._rootNodeFocusAndBlurListener,ui),this._rootNodeFocusListenerCount.delete(ye))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(de,ye,ht){this._setClasses(de,ye),this._emitOrigin(ht.subject,ye),this._lastFocusOrigin=ye}_getClosestElementsInfo(de){const ye=[];return this._elementInfo.forEach((ht,mt)=>{(mt===de||ht.checkChildren&&mt.contains(de))&&ye.push([mt,ht])}),ye}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(e.R0b),e.LFG(f.t4),e.LFG(Q),e.LFG(t.K0,8),e.LFG(Zt,8))},Re.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})(),Nt=(()=>{class Re{constructor(de,ye){this._elementRef=de,this._focusMonitor=ye,this.cdkFocusChange=new e.vpe}ngAfterViewInit(){const de=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(de,1===de.nodeType&&de.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(ye=>this.cdkFocusChange.emit(ye))}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}}return Re.\u0275fac=function(de){return new(de||Re)(e.Y36(e.SBq),e.Y36(Ot))},Re.\u0275dir=e.lG2({type:Re,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"}}),Re})();const gt="cdk-high-contrast-black-on-white",it="cdk-high-contrast-white-on-black",bt="cdk-high-contrast-active";let ei=(()=>{class Re{constructor(de,ye){this._platform=de,this._document=ye}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const de=this._document.createElement("div");de.style.backgroundColor="rgb(1,2,3)",de.style.position="absolute",this._document.body.appendChild(de);const ye=this._document.defaultView||window,ht=ye&&ye.getComputedStyle?ye.getComputedStyle(de):null,mt=(ht&&ht.backgroundColor||"").replace(/ /g,"");switch(de.remove(),mt){case"rgb(0,0,0)":return 2;case"rgb(255,255,255)":return 1}return 0}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const de=this._document.body.classList;de.remove(bt),de.remove(gt),de.remove(it),this._hasCheckedHighContrastMode=!0;const ye=this.getHighContrastMode();1===ye?(de.add(bt),de.add(gt)):2===ye&&(de.add(bt),de.add(it))}}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(f.t4),e.LFG(t.K0))},Re.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})(),Qt=(()=>{class Re{constructor(de){de._applyBodyHighContrastModeCssClasses()}}return Re.\u0275fac=function(de){return new(de||Re)(e.LFG(ei))},Re.\u0275mod=e.oAB({type:Re}),Re.\u0275inj=e.cJS({imports:[[Y.Q8]]}),Re})()},226:(Be,K,p)=>{"use strict";p.d(K,{Is:()=>d,vT:()=>h});var t=p(5e3),e=p(9808);const f=new t.OlP("cdk-dir-doc",{providedIn:"root",factory:function M(){return(0,t.f3M)(e.K0)}}),a=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let d=(()=>{class L{constructor(D){if(this.value="ltr",this.change=new t.vpe,D){const k=D.documentElement?D.documentElement.dir:null;this.value=function C(L){const w=(null==L?void 0:L.toLowerCase())||"";return"auto"===w&&"undefined"!=typeof navigator&&(null==navigator?void 0:navigator.language)?a.test(navigator.language)?"rtl":"ltr":"rtl"===w?"rtl":"ltr"}((D.body?D.body.dir:null)||k||"ltr")}}ngOnDestroy(){this.change.complete()}}return L.\u0275fac=function(D){return new(D||L)(t.LFG(f,8))},L.\u0275prov=t.Yz7({token:L,factory:L.\u0275fac,providedIn:"root"}),L})(),h=(()=>{class L{}return L.\u0275fac=function(D){return new(D||L)},L.\u0275mod=t.oAB({type:L}),L.\u0275inj=t.cJS({}),L})()},3191:(Be,K,p)=>{"use strict";p.d(K,{Eq:()=>a,HM:()=>C,Ig:()=>e,du:()=>R,fI:()=>d,su:()=>f,t6:()=>M});var t=p(5e3);function e(h){return null!=h&&"false"!=`${h}`}function f(h,L=0){return M(h)?Number(h):L}function M(h){return!isNaN(parseFloat(h))&&!isNaN(Number(h))}function a(h){return Array.isArray(h)?h:[h]}function C(h){return null==h?"":"string"==typeof h?h:`${h}px`}function d(h){return h instanceof t.SBq?h.nativeElement:h}function R(h,L=/\s+/){const w=[];if(null!=h){const D=Array.isArray(h)?h:`${h}`.split(L);for(const S of D){const k=`${S}`.trim();k&&w.push(k)}}return w}},449:(Be,K,p)=>{"use strict";p.d(K,{A8:()=>L,Ov:()=>R,Z9:()=>M,eX:()=>d,k:()=>w,o2:()=>f,yy:()=>C});var t=p(7579),e=p(5e3);class f{}function M(D){return D&&"function"==typeof D.connect}class C{applyChanges(S,k,E,B,Z){S.forEachOperation((Y,ae,ee)=>{let ue,ie;if(null==Y.previousIndex){const re=E(Y,ae,ee);ue=k.createEmbeddedView(re.templateRef,re.context,re.index),ie=1}else null==ee?(k.remove(ae),ie=3):(ue=k.get(ae),k.move(ue,ee),ie=2);Z&&Z({context:null==ue?void 0:ue.context,operation:ie,record:Y})})}detach(){}}class d{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(S,k,E,B,Z){S.forEachOperation((Y,ae,ee)=>{let ue,ie;null==Y.previousIndex?(ue=this._insertView(()=>E(Y,ae,ee),ee,k,B(Y)),ie=ue?1:0):null==ee?(this._detachAndCacheView(ae,k),ie=3):(ue=this._moveView(ae,ee,k,B(Y)),ie=2),Z&&Z({context:null==ue?void 0:ue.context,operation:ie,record:Y})})}detach(){for(const S of this._viewCache)S.destroy();this._viewCache=[]}_insertView(S,k,E,B){const Z=this._insertViewFromCache(k,E);if(Z)return void(Z.context.$implicit=B);const Y=S();return E.createEmbeddedView(Y.templateRef,Y.context,Y.index)}_detachAndCacheView(S,k){const E=k.detach(S);this._maybeCacheView(E,k)}_moveView(S,k,E,B){const Z=E.get(S);return E.move(Z,k),Z.context.$implicit=B,Z}_maybeCacheView(S,k){if(this._viewCache.lengththis._markSelected(B)):this._markSelected(k[0]),this._selectedToEmit.length=0)}get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}select(...S){this._verifyValueAssignment(S),S.forEach(k=>this._markSelected(k)),this._emitChangeEvent()}deselect(...S){this._verifyValueAssignment(S),S.forEach(k=>this._unmarkSelected(k)),this._emitChangeEvent()}toggle(S){this.isSelected(S)?this.deselect(S):this.select(S)}clear(){this._unmarkAll(),this._emitChangeEvent()}isSelected(S){return this._selection.has(S)}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(S){this._multiple&&this.selected&&this._selected.sort(S)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(S){this.isSelected(S)||(this._multiple||this._unmarkAll(),this._selection.add(S),this._emitChanges&&this._selectedToEmit.push(S))}_unmarkSelected(S){this.isSelected(S)&&(this._selection.delete(S),this._emitChanges&&this._deselectedToEmit.push(S))}_unmarkAll(){this.isEmpty()||this._selection.forEach(S=>this._unmarkSelected(S))}_verifyValueAssignment(S){}}let L=(()=>{class D{constructor(){this._listeners=[]}notify(k,E){for(let B of this._listeners)B(k,E)}listen(k){return this._listeners.push(k),()=>{this._listeners=this._listeners.filter(E=>k!==E)}}ngOnDestroy(){this._listeners=[]}}return D.\u0275fac=function(k){return new(k||D)},D.\u0275prov=e.Yz7({token:D,factory:D.\u0275fac,providedIn:"root"}),D})();const w=new e.OlP("_ViewRepeater")},1159:(Be,K,p)=>{"use strict";p.d(K,{A:()=>N,JH:()=>ee,JU:()=>C,K5:()=>a,Ku:()=>S,LH:()=>Y,L_:()=>D,MW:()=>di,Mf:()=>f,SV:()=>ae,Sd:()=>B,VM:()=>k,Vb:()=>Rt,Z:()=>Dt,ZH:()=>e,aO:()=>I,b2:()=>st,hY:()=>w,jx:()=>d,oh:()=>Z,uR:()=>E,xE:()=>q,yY:()=>ge,zL:()=>R});const e=8,f=9,a=13,C=16,d=17,R=18,w=27,D=32,S=33,k=34,E=35,B=36,Z=37,Y=38,ae=39,ee=40,ge=46,q=48,I=57,N=65,Dt=90,di=91,st=224;function Rt(Wt,...fi){return fi.length?fi.some(Li=>Wt[Li]):Wt.altKey||Wt.shiftKey||Wt.ctrlKey||Wt.metaKey}},5113:(Be,K,p)=>{"use strict";p.d(K,{Yg:()=>ee,u3:()=>ie,xu:()=>k});var t=p(5e3),e=p(3191),f=p(7579),M=p(9841),a=p(7272),C=p(8306),d=p(5698),R=p(5684),h=p(8372),L=p(4004),w=p(8675),D=p(2722),S=p(925);let k=(()=>{class re{}return re.\u0275fac=function(q){return new(q||re)},re.\u0275mod=t.oAB({type:re}),re.\u0275inj=t.cJS({}),re})();const E=new Set;let B,Z=(()=>{class re{constructor(q){this._platform=q,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):ae}matchMedia(q){return(this._platform.WEBKIT||this._platform.BLINK)&&function Y(re){if(!E.has(re))try{B||(B=document.createElement("style"),B.setAttribute("type","text/css"),document.head.appendChild(B)),B.sheet&&(B.sheet.insertRule(`@media ${re} {body{ }}`,0),E.add(re))}catch(ge){console.error(ge)}}(q),this._matchMedia(q)}}return re.\u0275fac=function(q){return new(q||re)(t.LFG(S.t4))},re.\u0275prov=t.Yz7({token:re,factory:re.\u0275fac,providedIn:"root"}),re})();function ae(re){return{matches:"all"===re||""===re,media:re,addListener:()=>{},removeListener:()=>{}}}let ee=(()=>{class re{constructor(q,_e){this._mediaMatcher=q,this._zone=_e,this._queries=new Map,this._destroySubject=new f.x}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(q){return ue((0,e.Eq)(q)).some(x=>this._registerQuery(x).mql.matches)}observe(q){const x=ue((0,e.Eq)(q)).map(r=>this._registerQuery(r).observable);let i=(0,M.a)(x);return i=(0,a.z)(i.pipe((0,d.q)(1)),i.pipe((0,R.T)(1),(0,h.b)(0))),i.pipe((0,L.U)(r=>{const u={matches:!1,breakpoints:{}};return r.forEach(({matches:c,query:v})=>{u.matches=u.matches||c,u.breakpoints[v]=c}),u}))}_registerQuery(q){if(this._queries.has(q))return this._queries.get(q);const _e=this._mediaMatcher.matchMedia(q),i={observable:new C.y(r=>{const u=c=>this._zone.run(()=>r.next(c));return _e.addListener(u),()=>{_e.removeListener(u)}}).pipe((0,w.O)(_e),(0,L.U)(({matches:r})=>({query:q,matches:r})),(0,D.R)(this._destroySubject)),mql:_e};return this._queries.set(q,i),i}}return re.\u0275fac=function(q){return new(q||re)(t.LFG(Z),t.LFG(t.R0b))},re.\u0275prov=t.Yz7({token:re,factory:re.\u0275fac,providedIn:"root"}),re})();function ue(re){return re.map(ge=>ge.split(",")).reduce((ge,q)=>ge.concat(q)).map(ge=>ge.trim())}const ie={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},7144:(Be,K,p)=>{"use strict";p.d(K,{Q8:()=>h,wD:()=>R});var t=p(3191),e=p(5e3),f=p(8306),M=p(7579),a=p(8372);let C=(()=>{class L{create(D){return"undefined"==typeof MutationObserver?null:new MutationObserver(D)}}return L.\u0275fac=function(D){return new(D||L)},L.\u0275prov=e.Yz7({token:L,factory:L.\u0275fac,providedIn:"root"}),L})(),d=(()=>{class L{constructor(D){this._mutationObserverFactory=D,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((D,S)=>this._cleanupObserver(S))}observe(D){const S=(0,t.fI)(D);return new f.y(k=>{const B=this._observeElement(S).subscribe(k);return()=>{B.unsubscribe(),this._unobserveElement(S)}})}_observeElement(D){if(this._observedElements.has(D))this._observedElements.get(D).count++;else{const S=new M.x,k=this._mutationObserverFactory.create(E=>S.next(E));k&&k.observe(D,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(D,{observer:k,stream:S,count:1})}return this._observedElements.get(D).stream}_unobserveElement(D){this._observedElements.has(D)&&(this._observedElements.get(D).count--,this._observedElements.get(D).count||this._cleanupObserver(D))}_cleanupObserver(D){if(this._observedElements.has(D)){const{observer:S,stream:k}=this._observedElements.get(D);S&&S.disconnect(),k.complete(),this._observedElements.delete(D)}}}return L.\u0275fac=function(D){return new(D||L)(e.LFG(C))},L.\u0275prov=e.Yz7({token:L,factory:L.\u0275fac,providedIn:"root"}),L})(),R=(()=>{class L{constructor(D,S,k){this._contentObserver=D,this._elementRef=S,this._ngZone=k,this.event=new e.vpe,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(D){this._disabled=(0,t.Ig)(D),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(D){this._debounce=(0,t.su)(D),this._subscribe()}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const D=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?D.pipe((0,a.b)(this.debounce)):D).subscribe(this.event)})}_unsubscribe(){var D;null===(D=this._currentSubscription)||void 0===D||D.unsubscribe()}}return L.\u0275fac=function(D){return new(D||L)(e.Y36(d),e.Y36(e.SBq),e.Y36(e.R0b))},L.\u0275dir=e.lG2({type:L,selectors:[["","cdkObserveContent",""]],inputs:{disabled:["cdkObserveContentDisabled","disabled"],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]}),L})(),h=(()=>{class L{}return L.\u0275fac=function(D){return new(D||L)},L.\u0275mod=e.oAB({type:L}),L.\u0275inj=e.cJS({providers:[C]}),L})()},9776:(Be,K,p)=>{"use strict";p.d(K,{pI:()=>ut,xu:()=>Ie,_G:()=>n,aV:()=>Ve,X_:()=>_e,Xj:()=>T,U8:()=>ce});var t=p(5303),e=p(9808),f=p(5e3),M=p(3191),a=p(925),C=p(226),d=p(7429),R=p(7579),h=p(727),L=p(6451),w=p(4482),D=p(5403),k=p(5698),E=p(2722),B=p(1159);const Z=(0,a.Mq)();class Y{constructor(W,te){this._viewportRuler=W,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=te}attach(){}enable(){if(this._canBeEnabled()){const W=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=W.style.left||"",this._previousHTMLStyles.top=W.style.top||"",W.style.left=(0,M.HM)(-this._previousScrollPosition.left),W.style.top=(0,M.HM)(-this._previousScrollPosition.top),W.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const W=this._document.documentElement,Ce=W.style,fe=this._document.body.style,Q=Ce.scrollBehavior||"",ft=fe.scrollBehavior||"";this._isEnabled=!1,Ce.left=this._previousHTMLStyles.left,Ce.top=this._previousHTMLStyles.top,W.classList.remove("cdk-global-scrollblock"),Z&&(Ce.scrollBehavior=fe.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),Z&&(Ce.scrollBehavior=Q,fe.scrollBehavior=ft)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const te=this._document.body,Ce=this._viewportRuler.getViewportSize();return te.scrollHeight>Ce.height||te.scrollWidth>Ce.width}}class ee{constructor(W,te,Ce,fe){this._scrollDispatcher=W,this._ngZone=te,this._viewportRuler=Ce,this._config=fe,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(W){this._overlayRef=W}enable(){if(this._scrollSubscription)return;const W=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=W.subscribe(()=>{const te=this._viewportRuler.getViewportScrollPosition().top;Math.abs(te-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=W.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class ue{enable(){}disable(){}attach(){}}function ie(xe,W){return W.some(te=>xe.bottomte.bottom||xe.rightte.right)}function re(xe,W){return W.some(te=>xe.topte.bottom||xe.leftte.right)}class ge{constructor(W,te,Ce,fe){this._scrollDispatcher=W,this._viewportRuler=te,this._ngZone=Ce,this._config=fe,this._scrollSubscription=null}attach(W){this._overlayRef=W}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const te=this._overlayRef.overlayElement.getBoundingClientRect(),{width:Ce,height:fe}=this._viewportRuler.getViewportSize();ie(te,[{width:Ce,height:fe,bottom:fe,right:Ce,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let q=(()=>{class xe{constructor(te,Ce,fe,Q){this._scrollDispatcher=te,this._viewportRuler=Ce,this._ngZone=fe,this.noop=()=>new ue,this.close=ft=>new ee(this._scrollDispatcher,this._ngZone,this._viewportRuler,ft),this.block=()=>new Y(this._viewportRuler,this._document),this.reposition=ft=>new ge(this._scrollDispatcher,this._viewportRuler,this._ngZone,ft),this._document=Q}}return xe.\u0275fac=function(te){return new(te||xe)(f.LFG(t.mF),f.LFG(t.rL),f.LFG(f.R0b),f.LFG(e.K0))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})();class _e{constructor(W){if(this.scrollStrategy=new ue,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,W){const te=Object.keys(W);for(const Ce of te)void 0!==W[Ce]&&(this[Ce]=W[Ce])}}}class r{constructor(W,te){this.connectionPair=W,this.scrollableViewProperties=te}}class v{constructor(W,te,Ce,fe,Q,ft,tt,Dt,di){this._portalOutlet=W,this._host=te,this._pane=Ce,this._config=fe,this._ngZone=Q,this._keyboardDispatcher=ft,this._document=tt,this._location=Dt,this._outsideClickDispatcher=di,this._backdropElement=null,this._backdropClick=new R.x,this._attachments=new R.x,this._detachments=new R.x,this._locationChanges=h.w0.EMPTY,this._backdropClickHandler=Yt=>this._backdropClick.next(Yt),this._backdropTransitionendHandler=Yt=>{this._disposeBackdrop(Yt.target)},this._keydownEvents=new R.x,this._outsidePointerEvents=new R.x,fe.scrollStrategy&&(this._scrollStrategy=fe.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=fe.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(W){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const te=this._portalOutlet.attach(W);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),te}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const W=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),W}dispose(){var W;const te=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),null===(W=this._host)||void 0===W||W.remove(),this._previousHostParent=this._pane=this._host=null,te&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(W){W!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=W,this.hasAttached()&&(W.attach(this),this.updatePosition()))}updateSize(W){this._config=Object.assign(Object.assign({},this._config),W),this._updateElementSize()}setDirection(W){this._config=Object.assign(Object.assign({},this._config),{direction:W}),this._updateElementDirection()}addPanelClass(W){this._pane&&this._toggleClasses(this._pane,W,!0)}removePanelClass(W){this._pane&&this._toggleClasses(this._pane,W,!1)}getDirection(){const W=this._config.direction;return W?"string"==typeof W?W:W.value:"ltr"}updateScrollStrategy(W){W!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=W,this.hasAttached()&&(W.attach(this),W.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const W=this._pane.style;W.width=(0,M.HM)(this._config.width),W.height=(0,M.HM)(this._config.height),W.minWidth=(0,M.HM)(this._config.minWidth),W.minHeight=(0,M.HM)(this._config.minHeight),W.maxWidth=(0,M.HM)(this._config.maxWidth),W.maxHeight=(0,M.HM)(this._config.maxHeight)}_togglePointerEvents(W){this._pane.style.pointerEvents=W?"":"none"}_attachBackdrop(){const W="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",this._backdropClickHandler),"undefined"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(W)})}):this._backdropElement.classList.add(W)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const W=this._backdropElement;!W||(W.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{W.addEventListener("transitionend",this._backdropTransitionendHandler)}),W.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(W)},500)))}_toggleClasses(W,te,Ce){const fe=(0,M.Eq)(te||[]).filter(Q=>!!Q);fe.length&&(Ce?W.classList.add(...fe):W.classList.remove(...fe))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const W=this._ngZone.onStable.pipe((0,E.R)((0,L.T)(this._attachments,this._detachments))).subscribe(()=>{(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),W.unsubscribe())})})}_disposeScrollStrategy(){const W=this._scrollStrategy;W&&(W.disable(),W.detach&&W.detach())}_disposeBackdrop(W){W&&(W.removeEventListener("click",this._backdropClickHandler),W.removeEventListener("transitionend",this._backdropTransitionendHandler),W.remove(),this._backdropElement===W&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}let T=(()=>{class xe{constructor(te,Ce){this._platform=Ce,this._document=te}ngOnDestroy(){var te;null===(te=this._containerElement)||void 0===te||te.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const te="cdk-overlay-container";if(this._platform.isBrowser||(0,a.Oy)()){const fe=this._document.querySelectorAll(`.${te}[platform="server"], .${te}[platform="test"]`);for(let Q=0;Q{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const W=this._originRect,te=this._overlayRect,Ce=this._viewportRect,fe=this._containerRect,Q=[];let ft;for(let tt of this._preferredPositions){let Dt=this._getOriginPoint(W,fe,tt),di=this._getOverlayPoint(Dt,te,tt),Yt=this._getOverlayFit(di,te,Ce,tt);if(Yt.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(tt,Dt);this._canFitWithFlexibleDimensions(Yt,di,Ce)?Q.push({position:tt,origin:Dt,overlayRect:te,boundingBoxRect:this._calculateBoundingBoxRect(Dt,tt)}):(!ft||ft.overlayFit.visibleAreaDt&&(Dt=Yt,tt=di)}return this._isPushed=!1,void this._applyPosition(tt.position,tt.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(ft.position,ft.originPoint);this._applyPosition(ft.position,ft.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&_(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(I),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const W=this._lastPosition;if(W){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const te=this._getOriginPoint(this._originRect,this._containerRect,W);this._applyPosition(W,te)}else this.apply()}withScrollableContainers(W){return this._scrollables=W,this}withPositions(W){return this._preferredPositions=W,-1===W.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(W){return this._viewportMargin=W,this}withFlexibleDimensions(W=!0){return this._hasFlexibleDimensions=W,this}withGrowAfterOpen(W=!0){return this._growAfterOpen=W,this}withPush(W=!0){return this._canPush=W,this}withLockedPosition(W=!0){return this._positionLocked=W,this}setOrigin(W){return this._origin=W,this}withDefaultOffsetX(W){return this._offsetX=W,this}withDefaultOffsetY(W){return this._offsetY=W,this}withTransformOriginOn(W){return this._transformOriginSelector=W,this}_getOriginPoint(W,te,Ce){let fe,Q;if("center"==Ce.originX)fe=W.left+W.width/2;else{const ft=this._isRtl()?W.right:W.left,tt=this._isRtl()?W.left:W.right;fe="start"==Ce.originX?ft:tt}return te.left<0&&(fe-=te.left),Q="center"==Ce.originY?W.top+W.height/2:"top"==Ce.originY?W.top:W.bottom,te.top<0&&(Q-=te.top),{x:fe,y:Q}}_getOverlayPoint(W,te,Ce){let fe,Q;return fe="center"==Ce.overlayX?-te.width/2:"start"===Ce.overlayX?this._isRtl()?-te.width:0:this._isRtl()?0:-te.width,Q="center"==Ce.overlayY?-te.height/2:"top"==Ce.overlayY?0:-te.height,{x:W.x+fe,y:W.y+Q}}_getOverlayFit(W,te,Ce,fe){const Q=N(te);let{x:ft,y:tt}=W,Dt=this._getOffset(fe,"x"),di=this._getOffset(fe,"y");Dt&&(ft+=Dt),di&&(tt+=di);let ui=0-tt,Ot=tt+Q.height-Ce.height,Nt=this._subtractOverflows(Q.width,0-ft,ft+Q.width-Ce.width),gt=this._subtractOverflows(Q.height,ui,Ot),it=Nt*gt;return{visibleArea:it,isCompletelyWithinViewport:Q.width*Q.height===it,fitsInViewportVertically:gt===Q.height,fitsInViewportHorizontally:Nt==Q.width}}_canFitWithFlexibleDimensions(W,te,Ce){if(this._hasFlexibleDimensions){const fe=Ce.bottom-te.y,Q=Ce.right-te.x,ft=V(this._overlayRef.getConfig().minHeight),tt=V(this._overlayRef.getConfig().minWidth),di=W.fitsInViewportHorizontally||null!=tt&&tt<=Q;return(W.fitsInViewportVertically||null!=ft&&ft<=fe)&&di}return!1}_pushOverlayOnScreen(W,te,Ce){if(this._previousPushAmount&&this._positionLocked)return{x:W.x+this._previousPushAmount.x,y:W.y+this._previousPushAmount.y};const fe=N(te),Q=this._viewportRect,ft=Math.max(W.x+fe.width-Q.width,0),tt=Math.max(W.y+fe.height-Q.height,0),Dt=Math.max(Q.top-Ce.top-W.y,0),di=Math.max(Q.left-Ce.left-W.x,0);let Yt=0,Zt=0;return Yt=fe.width<=Q.width?di||-ft:W.xNt&&!this._isInitialRender&&!this._growAfterOpen&&(ft=W.y-Nt/2)}if("end"===te.overlayX&&!fe||"start"===te.overlayX&&fe)ui=Ce.width-W.x+this._viewportMargin,Yt=W.x-this._viewportMargin;else if("start"===te.overlayX&&!fe||"end"===te.overlayX&&fe)Zt=W.x,Yt=Ce.right-W.x;else{const Ot=Math.min(Ce.right-W.x+Ce.left,W.x),Nt=this._lastBoundingBoxSize.width;Yt=2*Ot,Zt=W.x-Ot,Yt>Nt&&!this._isInitialRender&&!this._growAfterOpen&&(Zt=W.x-Nt/2)}return{top:ft,left:Zt,bottom:tt,right:ui,width:Yt,height:Q}}_setBoundingBoxStyles(W,te){const Ce=this._calculateBoundingBoxRect(W,te);!this._isInitialRender&&!this._growAfterOpen&&(Ce.height=Math.min(Ce.height,this._lastBoundingBoxSize.height),Ce.width=Math.min(Ce.width,this._lastBoundingBoxSize.width));const fe={};if(this._hasExactPosition())fe.top=fe.left="0",fe.bottom=fe.right=fe.maxHeight=fe.maxWidth="",fe.width=fe.height="100%";else{const Q=this._overlayRef.getConfig().maxHeight,ft=this._overlayRef.getConfig().maxWidth;fe.height=(0,M.HM)(Ce.height),fe.top=(0,M.HM)(Ce.top),fe.bottom=(0,M.HM)(Ce.bottom),fe.width=(0,M.HM)(Ce.width),fe.left=(0,M.HM)(Ce.left),fe.right=(0,M.HM)(Ce.right),fe.alignItems="center"===te.overlayX?"center":"end"===te.overlayX?"flex-end":"flex-start",fe.justifyContent="center"===te.overlayY?"center":"bottom"===te.overlayY?"flex-end":"flex-start",Q&&(fe.maxHeight=(0,M.HM)(Q)),ft&&(fe.maxWidth=(0,M.HM)(ft))}this._lastBoundingBoxSize=Ce,_(this._boundingBox.style,fe)}_resetBoundingBoxStyles(){_(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){_(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(W,te){const Ce={},fe=this._hasExactPosition(),Q=this._hasFlexibleDimensions,ft=this._overlayRef.getConfig();if(fe){const Yt=this._viewportRuler.getViewportScrollPosition();_(Ce,this._getExactOverlayY(te,W,Yt)),_(Ce,this._getExactOverlayX(te,W,Yt))}else Ce.position="static";let tt="",Dt=this._getOffset(te,"x"),di=this._getOffset(te,"y");Dt&&(tt+=`translateX(${Dt}px) `),di&&(tt+=`translateY(${di}px)`),Ce.transform=tt.trim(),ft.maxHeight&&(fe?Ce.maxHeight=(0,M.HM)(ft.maxHeight):Q&&(Ce.maxHeight="")),ft.maxWidth&&(fe?Ce.maxWidth=(0,M.HM)(ft.maxWidth):Q&&(Ce.maxWidth="")),_(this._pane.style,Ce)}_getExactOverlayY(W,te,Ce){let fe={top:"",bottom:""},Q=this._getOverlayPoint(te,this._overlayRect,W);return this._isPushed&&(Q=this._pushOverlayOnScreen(Q,this._overlayRect,Ce)),"bottom"===W.overlayY?fe.bottom=this._document.documentElement.clientHeight-(Q.y+this._overlayRect.height)+"px":fe.top=(0,M.HM)(Q.y),fe}_getExactOverlayX(W,te,Ce){let ft,fe={left:"",right:""},Q=this._getOverlayPoint(te,this._overlayRect,W);return this._isPushed&&(Q=this._pushOverlayOnScreen(Q,this._overlayRect,Ce)),ft=this._isRtl()?"end"===W.overlayX?"left":"right":"end"===W.overlayX?"right":"left","right"===ft?fe.right=this._document.documentElement.clientWidth-(Q.x+this._overlayRect.width)+"px":fe.left=(0,M.HM)(Q.x),fe}_getScrollVisibility(){const W=this._getOriginRect(),te=this._pane.getBoundingClientRect(),Ce=this._scrollables.map(fe=>fe.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:re(W,Ce),isOriginOutsideView:ie(W,Ce),isOverlayClipped:re(te,Ce),isOverlayOutsideView:ie(te,Ce)}}_subtractOverflows(W,...te){return te.reduce((Ce,fe)=>Ce-Math.max(fe,0),W)}_getNarrowedViewportRect(){const W=this._document.documentElement.clientWidth,te=this._document.documentElement.clientHeight,Ce=this._viewportRuler.getViewportScrollPosition();return{top:Ce.top+this._viewportMargin,left:Ce.left+this._viewportMargin,right:Ce.left+W-this._viewportMargin,bottom:Ce.top+te-this._viewportMargin,width:W-2*this._viewportMargin,height:te-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(W,te){return"x"===te?null==W.offsetX?this._offsetX:W.offsetX:null==W.offsetY?this._offsetY:W.offsetY}_validatePositions(){}_addPanelClasses(W){this._pane&&(0,M.Eq)(W).forEach(te=>{""!==te&&-1===this._appliedPanelClasses.indexOf(te)&&(this._appliedPanelClasses.push(te),this._pane.classList.add(te))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(W=>{this._pane.classList.remove(W)}),this._appliedPanelClasses=[])}_getOriginRect(){const W=this._origin;if(W instanceof f.SBq)return W.nativeElement.getBoundingClientRect();if(W instanceof Element)return W.getBoundingClientRect();const te=W.width||0,Ce=W.height||0;return{top:W.y,bottom:W.y+Ce,left:W.x,right:W.x+te,height:Ce,width:te}}}function _(xe,W){for(let te in W)W.hasOwnProperty(te)&&(xe[te]=W[te]);return xe}function V(xe){if("number"!=typeof xe&&null!=xe){const[W,te]=xe.split(y);return te&&"px"!==te?null:parseFloat(W)}return xe||null}function N(xe){return{top:Math.floor(xe.top),right:Math.floor(xe.right),bottom:Math.floor(xe.bottom),left:Math.floor(xe.left),width:Math.floor(xe.width),height:Math.floor(xe.height)}}const H="cdk-global-overlay-wrapper";class X{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._leftOffset="",this._rightOffset="",this._alignItems="",this._justifyContent="",this._width="",this._height=""}attach(W){const te=W.getConfig();this._overlayRef=W,this._width&&!te.width&&W.updateSize({width:this._width}),this._height&&!te.height&&W.updateSize({height:this._height}),W.hostElement.classList.add(H),this._isDisposed=!1}top(W=""){return this._bottomOffset="",this._topOffset=W,this._alignItems="flex-start",this}left(W=""){return this._rightOffset="",this._leftOffset=W,this._justifyContent="flex-start",this}bottom(W=""){return this._topOffset="",this._bottomOffset=W,this._alignItems="flex-end",this}right(W=""){return this._leftOffset="",this._rightOffset=W,this._justifyContent="flex-end",this}width(W=""){return this._overlayRef?this._overlayRef.updateSize({width:W}):this._width=W,this}height(W=""){return this._overlayRef?this._overlayRef.updateSize({height:W}):this._height=W,this}centerHorizontally(W=""){return this.left(W),this._justifyContent="center",this}centerVertically(W=""){return this.top(W),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const W=this._overlayRef.overlayElement.style,te=this._overlayRef.hostElement.style,Ce=this._overlayRef.getConfig(),{width:fe,height:Q,maxWidth:ft,maxHeight:tt}=Ce,Dt=!("100%"!==fe&&"100vw"!==fe||ft&&"100%"!==ft&&"100vw"!==ft),di=!("100%"!==Q&&"100vh"!==Q||tt&&"100%"!==tt&&"100vh"!==tt);W.position=this._cssPosition,W.marginLeft=Dt?"0":this._leftOffset,W.marginTop=di?"0":this._topOffset,W.marginBottom=this._bottomOffset,W.marginRight=this._rightOffset,Dt?te.justifyContent="flex-start":"center"===this._justifyContent?te.justifyContent="center":"rtl"===this._overlayRef.getConfig().direction?"flex-start"===this._justifyContent?te.justifyContent="flex-end":"flex-end"===this._justifyContent&&(te.justifyContent="flex-start"):te.justifyContent=this._justifyContent,te.alignItems=di?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const W=this._overlayRef.overlayElement.style,te=this._overlayRef.hostElement,Ce=te.style;te.classList.remove(H),Ce.justifyContent=Ce.alignItems=W.marginTop=W.marginBottom=W.marginLeft=W.marginRight=W.position="",this._overlayRef=null,this._isDisposed=!0}}let he=(()=>{class xe{constructor(te,Ce,fe,Q){this._viewportRuler=te,this._document=Ce,this._platform=fe,this._overlayContainer=Q}global(){return new X}flexibleConnectedTo(te){return new n(te,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return xe.\u0275fac=function(te){return new(te||xe)(f.LFG(t.rL),f.LFG(e.K0),f.LFG(a.t4),f.LFG(T))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),be=(()=>{class xe{constructor(te){this._attachedOverlays=[],this._document=te}ngOnDestroy(){this.detach()}add(te){this.remove(te),this._attachedOverlays.push(te)}remove(te){const Ce=this._attachedOverlays.indexOf(te);Ce>-1&&this._attachedOverlays.splice(Ce,1),0===this._attachedOverlays.length&&this.detach()}}return xe.\u0275fac=function(te){return new(te||xe)(f.LFG(e.K0))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),Pe=(()=>{class xe extends be{constructor(te,Ce){super(te),this._ngZone=Ce,this._keydownListener=fe=>{const Q=this._attachedOverlays;for(let ft=Q.length-1;ft>-1;ft--)if(Q[ft]._keydownEvents.observers.length>0){const tt=Q[ft]._keydownEvents;this._ngZone?this._ngZone.run(()=>tt.next(fe)):tt.next(fe);break}}}add(te){super.add(te),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}}return xe.\u0275fac=function(te){return new(te||xe)(f.LFG(e.K0),f.LFG(f.R0b,8))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),Ee=(()=>{class xe extends be{constructor(te,Ce,fe){super(te),this._platform=Ce,this._ngZone=fe,this._cursorStyleIsSet=!1,this._pointerDownListener=Q=>{this._pointerDownEventTarget=(0,a.sA)(Q)},this._clickListener=Q=>{const ft=(0,a.sA)(Q),tt="click"===Q.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:ft;this._pointerDownEventTarget=null;const Dt=this._attachedOverlays.slice();for(let di=Dt.length-1;di>-1;di--){const Yt=Dt[di];if(Yt._outsidePointerEvents.observers.length<1||!Yt.hasAttached())continue;if(Yt.overlayElement.contains(ft)||Yt.overlayElement.contains(tt))break;const Zt=Yt._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Zt.next(Q)):Zt.next(Q)}}}add(te){if(super.add(te),!this._isAttached){const Ce=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(Ce)):this._addEventListeners(Ce),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=Ce.style.cursor,Ce.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const te=this._document.body;te.removeEventListener("pointerdown",this._pointerDownListener,!0),te.removeEventListener("click",this._clickListener,!0),te.removeEventListener("auxclick",this._clickListener,!0),te.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(te.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(te){te.addEventListener("pointerdown",this._pointerDownListener,!0),te.addEventListener("click",this._clickListener,!0),te.addEventListener("auxclick",this._clickListener,!0),te.addEventListener("contextmenu",this._clickListener,!0)}}return xe.\u0275fac=function(te){return new(te||xe)(f.LFG(e.K0),f.LFG(a.t4),f.LFG(f.R0b,8))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),j=0,Ve=(()=>{class xe{constructor(te,Ce,fe,Q,ft,tt,Dt,di,Yt,Zt,ui){this.scrollStrategies=te,this._overlayContainer=Ce,this._componentFactoryResolver=fe,this._positionBuilder=Q,this._keyboardDispatcher=ft,this._injector=tt,this._ngZone=Dt,this._document=di,this._directionality=Yt,this._location=Zt,this._outsideClickDispatcher=ui}create(te){const Ce=this._createHostElement(),fe=this._createPaneElement(Ce),Q=this._createPortalOutlet(fe),ft=new _e(te);return ft.direction=ft.direction||this._directionality.value,new v(Q,Ce,fe,ft,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher)}position(){return this._positionBuilder}_createPaneElement(te){const Ce=this._document.createElement("div");return Ce.id="cdk-overlay-"+j++,Ce.classList.add("cdk-overlay-pane"),te.appendChild(Ce),Ce}_createHostElement(){const te=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(te),te}_createPortalOutlet(te){return this._appRef||(this._appRef=this._injector.get(f.z2F)),new d.u0(te,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return xe.\u0275fac=function(te){return new(te||xe)(f.LFG(q),f.LFG(T),f.LFG(f._Vd),f.LFG(he),f.LFG(Pe),f.LFG(f.zs3),f.LFG(f.R0b),f.LFG(e.K0),f.LFG(C.Is),f.LFG(e.Ye),f.LFG(Ee))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac}),xe})();const Me=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],J=new f.OlP("cdk-connected-overlay-scroll-strategy");let Ie=(()=>{class xe{constructor(te){this.elementRef=te}}return xe.\u0275fac=function(te){return new(te||xe)(f.Y36(f.SBq))},xe.\u0275dir=f.lG2({type:xe,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"]}),xe})(),ut=(()=>{class xe{constructor(te,Ce,fe,Q,ft){this._overlay=te,this._dir=ft,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=h.w0.EMPTY,this._attachSubscription=h.w0.EMPTY,this._detachSubscription=h.w0.EMPTY,this._positionSubscription=h.w0.EMPTY,this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.backdropClick=new f.vpe,this.positionChange=new f.vpe,this.attach=new f.vpe,this.detach=new f.vpe,this.overlayKeydown=new f.vpe,this.overlayOutsideClick=new f.vpe,this._templatePortal=new d.UE(Ce,fe),this._scrollStrategyFactory=Q,this.scrollStrategy=this._scrollStrategyFactory()}get offsetX(){return this._offsetX}set offsetX(te){this._offsetX=te,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(te){this._offsetY=te,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(te){this._hasBackdrop=(0,M.Ig)(te)}get lockPosition(){return this._lockPosition}set lockPosition(te){this._lockPosition=(0,M.Ig)(te)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(te){this._flexibleDimensions=(0,M.Ig)(te)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(te){this._growAfterOpen=(0,M.Ig)(te)}get push(){return this._push}set push(te){this._push=(0,M.Ig)(te)}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef&&this._overlayRef.dispose()}ngOnChanges(te){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),te.origin&&this.open&&this._position.apply()),te.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=Me);const te=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=te.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=te.detachments().subscribe(()=>this.detach.emit()),te.keydownEvents().subscribe(Ce=>{this.overlayKeydown.next(Ce),Ce.keyCode===B.hY&&!this.disableClose&&!(0,B.Vb)(Ce)&&(Ce.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(Ce=>{this.overlayOutsideClick.next(Ce)})}_buildConfig(){const te=this._position=this.positionStrategy||this._createPositionStrategy(),Ce=new _e({direction:this._dir,positionStrategy:te,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(Ce.width=this.width),(this.height||0===this.height)&&(Ce.height=this.height),(this.minWidth||0===this.minWidth)&&(Ce.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(Ce.minHeight=this.minHeight),this.backdropClass&&(Ce.backdropClass=this.backdropClass),this.panelClass&&(Ce.panelClass=this.panelClass),Ce}_updatePositionStrategy(te){const Ce=this.positions.map(fe=>({originX:fe.originX,originY:fe.originY,overlayX:fe.overlayX,overlayY:fe.overlayY,offsetX:fe.offsetX||this.offsetX,offsetY:fe.offsetY||this.offsetY,panelClass:fe.panelClass||void 0}));return te.setOrigin(this._getFlexibleConnectedPositionStrategyOrigin()).withPositions(Ce).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const te=this._overlay.position().flexibleConnectedTo(this._getFlexibleConnectedPositionStrategyOrigin());return this._updatePositionStrategy(te),te}_getFlexibleConnectedPositionStrategyOrigin(){return this.origin instanceof Ie?this.origin.elementRef:this.origin}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(te=>{this.backdropClick.emit(te)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function S(xe,W=!1){return(0,w.e)((te,Ce)=>{let fe=0;te.subscribe((0,D.x)(Ce,Q=>{const ft=xe(Q,fe++);(ft||W)&&Ce.next(Q),!ft&&Ce.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(te=>{this.positionChange.emit(te),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}}return xe.\u0275fac=function(te){return new(te||xe)(f.Y36(Ve),f.Y36(f.Rgc),f.Y36(f.s_b),f.Y36(J),f.Y36(C.Is,8))},xe.\u0275dir=f.lG2({type:xe,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:["cdkConnectedOverlayOrigin","origin"],positions:["cdkConnectedOverlayPositions","positions"],positionStrategy:["cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:["cdkConnectedOverlayOffsetX","offsetX"],offsetY:["cdkConnectedOverlayOffsetY","offsetY"],width:["cdkConnectedOverlayWidth","width"],height:["cdkConnectedOverlayHeight","height"],minWidth:["cdkConnectedOverlayMinWidth","minWidth"],minHeight:["cdkConnectedOverlayMinHeight","minHeight"],backdropClass:["cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:["cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:["cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:["cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:["cdkConnectedOverlayOpen","open"],disableClose:["cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:["cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:["cdkConnectedOverlayHasBackdrop","hasBackdrop"],lockPosition:["cdkConnectedOverlayLockPosition","lockPosition"],flexibleDimensions:["cdkConnectedOverlayFlexibleDimensions","flexibleDimensions"],growAfterOpen:["cdkConnectedOverlayGrowAfterOpen","growAfterOpen"],push:["cdkConnectedOverlayPush","push"]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],features:[f.TTD]}),xe})();const we={provide:J,deps:[Ve],useFactory:function Oe(xe){return()=>xe.scrollStrategies.reposition()}};let ce=(()=>{class xe{}return xe.\u0275fac=function(te){return new(te||xe)},xe.\u0275mod=f.oAB({type:xe}),xe.\u0275inj=f.cJS({providers:[Ve,we],imports:[[C.vT,d.eL,t.Cl],t.Cl]}),xe})()},925:(Be,K,p)=>{"use strict";p.d(K,{Mq:()=>k,Oy:()=>ue,_i:()=>E,ht:()=>ae,i$:()=>w,kV:()=>Y,qK:()=>R,sA:()=>ee,t4:()=>M});var t=p(5e3),e=p(9808);let f;try{f="undefined"!=typeof Intl&&Intl.v8BreakIterator}catch(ie){f=!1}let C,M=(()=>{class ie{constructor(ge){this._platformId=ge,this.isBrowser=this._platformId?(0,e.NF)(this._platformId):"object"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!f)&&"undefined"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return ie.\u0275fac=function(ge){return new(ge||ie)(t.LFG(t.Lbi))},ie.\u0275prov=t.Yz7({token:ie,factory:ie.\u0275fac,providedIn:"root"}),ie})();const d=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function R(){if(C)return C;if("object"!=typeof document||!document)return C=new Set(d),C;let ie=document.createElement("input");return C=new Set(d.filter(re=>(ie.setAttribute("type",re),ie.type===re))),C}let h,D,S,B;function w(ie){return function L(){if(null==h&&"undefined"!=typeof window)try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>h=!0}))}finally{h=h||!1}return h}()?ie:!!ie.capture}function k(){if(null==S){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return S=!1,S;if("scrollBehavior"in document.documentElement.style)S=!0;else{const ie=Element.prototype.scrollTo;S=!!ie&&!/\{\s*\[native code\]\s*\}/.test(ie.toString())}}return S}function E(){if("object"!=typeof document||!document)return 0;if(null==D){const ie=document.createElement("div"),re=ie.style;ie.dir="rtl",re.width="1px",re.overflow="auto",re.visibility="hidden",re.pointerEvents="none",re.position="absolute";const ge=document.createElement("div"),q=ge.style;q.width="2px",q.height="1px",ie.appendChild(ge),document.body.appendChild(ie),D=0,0===ie.scrollLeft&&(ie.scrollLeft=1,D=0===ie.scrollLeft?1:2),ie.remove()}return D}function Y(ie){if(function Z(){if(null==B){const ie="undefined"!=typeof document?document.head:null;B=!(!ie||!ie.createShadowRoot&&!ie.attachShadow)}return B}()){const re=ie.getRootNode?ie.getRootNode():null;if("undefined"!=typeof ShadowRoot&&ShadowRoot&&re instanceof ShadowRoot)return re}return null}function ae(){let ie="undefined"!=typeof document&&document?document.activeElement:null;for(;ie&&ie.shadowRoot;){const re=ie.shadowRoot.activeElement;if(re===ie)break;ie=re}return ie}function ee(ie){return ie.composedPath?ie.composedPath()[0]:ie.target}function ue(){return"undefined"!=typeof __karma__&&!!__karma__||"undefined"!=typeof jasmine&&!!jasmine||"undefined"!=typeof jest&&!!jest||"undefined"!=typeof Mocha&&!!Mocha}},7429:(Be,K,p)=>{"use strict";p.d(K,{C5:()=>L,Pl:()=>ae,UE:()=>w,eL:()=>ue,en:()=>S,ig:()=>Z,u0:()=>E});var t=p(5e3),e=p(9808);class h{attach(ge){return this._attachedHost=ge,ge.attach(this)}detach(){let ge=this._attachedHost;null!=ge&&(this._attachedHost=null,ge.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(ge){this._attachedHost=ge}}class L extends h{constructor(ge,q,_e,x){super(),this.component=ge,this.viewContainerRef=q,this.injector=_e,this.componentFactoryResolver=x}}class w extends h{constructor(ge,q,_e){super(),this.templateRef=ge,this.viewContainerRef=q,this.context=_e}get origin(){return this.templateRef.elementRef}attach(ge,q=this.context){return this.context=q,super.attach(ge)}detach(){return this.context=void 0,super.detach()}}class D extends h{constructor(ge){super(),this.element=ge instanceof t.SBq?ge.nativeElement:ge}}class S{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(ge){return ge instanceof L?(this._attachedPortal=ge,this.attachComponentPortal(ge)):ge instanceof w?(this._attachedPortal=ge,this.attachTemplatePortal(ge)):this.attachDomPortal&&ge instanceof D?(this._attachedPortal=ge,this.attachDomPortal(ge)):void 0}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(ge){this._disposeFn=ge}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class E extends S{constructor(ge,q,_e,x,i){super(),this.outletElement=ge,this._componentFactoryResolver=q,this._appRef=_e,this._defaultInjector=x,this.attachDomPortal=r=>{const u=r.element,c=this._document.createComment("dom-portal");u.parentNode.insertBefore(c,u),this.outletElement.appendChild(u),this._attachedPortal=r,super.setDisposeFn(()=>{c.parentNode&&c.parentNode.replaceChild(u,c)})},this._document=i}attachComponentPortal(ge){const _e=(ge.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(ge.component);let x;return ge.viewContainerRef?(x=ge.viewContainerRef.createComponent(_e,ge.viewContainerRef.length,ge.injector||ge.viewContainerRef.injector),this.setDisposeFn(()=>x.destroy())):(x=_e.create(ge.injector||this._defaultInjector||t.zs3.NULL),this._appRef.attachView(x.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(x.hostView),x.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(x)),this._attachedPortal=ge,x}attachTemplatePortal(ge){let q=ge.viewContainerRef,_e=q.createEmbeddedView(ge.templateRef,ge.context);return _e.rootNodes.forEach(x=>this.outletElement.appendChild(x)),_e.detectChanges(),this.setDisposeFn(()=>{let x=q.indexOf(_e);-1!==x&&q.remove(x)}),this._attachedPortal=ge,_e}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(ge){return ge.hostView.rootNodes[0]}}let Z=(()=>{class re extends w{constructor(q,_e){super(q,_e)}}return re.\u0275fac=function(q){return new(q||re)(t.Y36(t.Rgc),t.Y36(t.s_b))},re.\u0275dir=t.lG2({type:re,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[t.qOj]}),re})(),ae=(()=>{class re extends S{constructor(q,_e,x){super(),this._componentFactoryResolver=q,this._viewContainerRef=_e,this._isInitialized=!1,this.attached=new t.vpe,this.attachDomPortal=i=>{const r=i.element,u=this._document.createComment("dom-portal");i.setAttachedHost(this),r.parentNode.insertBefore(u,r),this._getRootNode().appendChild(r),this._attachedPortal=i,super.setDisposeFn(()=>{u.parentNode&&u.parentNode.replaceChild(r,u)})},this._document=x}get portal(){return this._attachedPortal}set portal(q){this.hasAttached()&&!q&&!this._isInitialized||(this.hasAttached()&&super.detach(),q&&super.attach(q),this._attachedPortal=q||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(q){q.setAttachedHost(this);const _e=null!=q.viewContainerRef?q.viewContainerRef:this._viewContainerRef,i=(q.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(q.component),r=_e.createComponent(i,_e.length,q.injector||_e.injector);return _e!==this._viewContainerRef&&this._getRootNode().appendChild(r.hostView.rootNodes[0]),super.setDisposeFn(()=>r.destroy()),this._attachedPortal=q,this._attachedRef=r,this.attached.emit(r),r}attachTemplatePortal(q){q.setAttachedHost(this);const _e=this._viewContainerRef.createEmbeddedView(q.templateRef,q.context);return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=q,this._attachedRef=_e,this.attached.emit(_e),_e}_getRootNode(){const q=this._viewContainerRef.element.nativeElement;return q.nodeType===q.ELEMENT_NODE?q:q.parentNode}}return re.\u0275fac=function(q){return new(q||re)(t.Y36(t._Vd),t.Y36(t.s_b),t.Y36(e.K0))},re.\u0275dir=t.lG2({type:re,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:["cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[t.qOj]}),re})(),ue=(()=>{class re{}return re.\u0275fac=function(q){return new(q||re)},re.\u0275mod=t.oAB({type:re}),re.\u0275inj=t.cJS({}),re})()},5303:(Be,K,p)=>{"use strict";p.d(K,{PQ:()=>u,ZD:()=>V,mF:()=>r,Cl:()=>N,rL:()=>v});var t=p(3191),e=p(5e3),f=p(4408),M=p(727);const a={schedule(H){let X=requestAnimationFrame,he=cancelAnimationFrame;const{delegate:be}=a;be&&(X=be.requestAnimationFrame,he=be.cancelAnimationFrame);const Pe=X(Ee=>{he=void 0,H(Ee)});return new M.w0(()=>null==he?void 0:he(Pe))},requestAnimationFrame(...H){const{delegate:X}=a;return((null==X?void 0:X.requestAnimationFrame)||requestAnimationFrame)(...H)},cancelAnimationFrame(...H){const{delegate:X}=a;return((null==X?void 0:X.cancelAnimationFrame)||cancelAnimationFrame)(...H)},delegate:void 0};var d=p(7565);new class R extends d.v{flush(X){this._active=!0;const he=this._scheduled;this._scheduled=void 0;const{actions:be}=this;let Pe;X=X||be.shift();do{if(Pe=X.execute(X.state,X.delay))break}while((X=be[0])&&X.id===he&&be.shift());if(this._active=!1,Pe){for(;(X=be[0])&&X.id===he&&be.shift();)X.unsubscribe();throw Pe}}}(class C extends f.o{constructor(X,he){super(X,he),this.scheduler=X,this.work=he}requestAsyncId(X,he,be=0){return null!==be&&be>0?super.requestAsyncId(X,he,be):(X.actions.push(this),X._scheduled||(X._scheduled=a.requestAnimationFrame(()=>X.flush(void 0))))}recycleAsyncId(X,he,be=0){var Pe;if(null!=be?be>0:this.delay>0)return super.recycleAsyncId(X,he,be);const{actions:Ee}=X;null!=he&&(null===(Pe=Ee[Ee.length-1])||void 0===Pe?void 0:Pe.id)!==he&&(a.cancelAnimationFrame(he),X._scheduled=void 0)}});var w=p(7579),D=p(9646),S=p(8306),k=p(4968),B=(p(3101),p(3601)),Z=p(9300),Y=p(2722),ae=p(9808),ee=p(925),ue=p(226);let r=(()=>{class H{constructor(he,be,Pe){this._ngZone=he,this._platform=be,this._scrolled=new w.x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=Pe}register(he){this.scrollContainers.has(he)||this.scrollContainers.set(he,he.elementScrolled().subscribe(()=>this._scrolled.next(he)))}deregister(he){const be=this.scrollContainers.get(he);be&&(be.unsubscribe(),this.scrollContainers.delete(he))}scrolled(he=20){return this._platform.isBrowser?new S.y(be=>{this._globalSubscription||this._addGlobalListener();const Pe=he>0?this._scrolled.pipe((0,B.e)(he)).subscribe(be):this._scrolled.subscribe(be);return this._scrolledCount++,()=>{Pe.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,D.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((he,be)=>this.deregister(be)),this._scrolled.complete()}ancestorScrolled(he,be){const Pe=this.getAncestorScrollContainers(he);return this.scrolled(be).pipe((0,Z.h)(Ee=>!Ee||Pe.indexOf(Ee)>-1))}getAncestorScrollContainers(he){const be=[];return this.scrollContainers.forEach((Pe,Ee)=>{this._scrollableContainsElement(Ee,he)&&be.push(Ee)}),be}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(he,be){let Pe=(0,t.fI)(be),Ee=he.getElementRef().nativeElement;do{if(Pe==Ee)return!0}while(Pe=Pe.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const he=this._getWindow();return(0,k.R)(he.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return H.\u0275fac=function(he){return new(he||H)(e.LFG(e.R0b),e.LFG(ee.t4),e.LFG(ae.K0,8))},H.\u0275prov=e.Yz7({token:H,factory:H.\u0275fac,providedIn:"root"}),H})(),u=(()=>{class H{constructor(he,be,Pe,Ee){this.elementRef=he,this.scrollDispatcher=be,this.ngZone=Pe,this.dir=Ee,this._destroyed=new w.x,this._elementScrolled=new S.y(j=>this.ngZone.runOutsideAngular(()=>(0,k.R)(this.elementRef.nativeElement,"scroll").pipe((0,Y.R)(this._destroyed)).subscribe(j)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(he){const be=this.elementRef.nativeElement,Pe=this.dir&&"rtl"==this.dir.value;null==he.left&&(he.left=Pe?he.end:he.start),null==he.right&&(he.right=Pe?he.start:he.end),null!=he.bottom&&(he.top=be.scrollHeight-be.clientHeight-he.bottom),Pe&&0!=(0,ee._i)()?(null!=he.left&&(he.right=be.scrollWidth-be.clientWidth-he.left),2==(0,ee._i)()?he.left=he.right:1==(0,ee._i)()&&(he.left=he.right?-he.right:he.right)):null!=he.right&&(he.left=be.scrollWidth-be.clientWidth-he.right),this._applyScrollToOptions(he)}_applyScrollToOptions(he){const be=this.elementRef.nativeElement;(0,ee.Mq)()?be.scrollTo(he):(null!=he.top&&(be.scrollTop=he.top),null!=he.left&&(be.scrollLeft=he.left))}measureScrollOffset(he){const be="left",Ee=this.elementRef.nativeElement;if("top"==he)return Ee.scrollTop;if("bottom"==he)return Ee.scrollHeight-Ee.clientHeight-Ee.scrollTop;const j=this.dir&&"rtl"==this.dir.value;return"start"==he?he=j?"right":be:"end"==he&&(he=j?be:"right"),j&&2==(0,ee._i)()?he==be?Ee.scrollWidth-Ee.clientWidth-Ee.scrollLeft:Ee.scrollLeft:j&&1==(0,ee._i)()?he==be?Ee.scrollLeft+Ee.scrollWidth-Ee.clientWidth:-Ee.scrollLeft:he==be?Ee.scrollLeft:Ee.scrollWidth-Ee.clientWidth-Ee.scrollLeft}}return H.\u0275fac=function(he){return new(he||H)(e.Y36(e.SBq),e.Y36(r),e.Y36(e.R0b),e.Y36(ue.Is,8))},H.\u0275dir=e.lG2({type:H,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]]}),H})(),v=(()=>{class H{constructor(he,be,Pe){this._platform=he,this._change=new w.x,this._changeListener=Ee=>{this._change.next(Ee)},this._document=Pe,be.runOutsideAngular(()=>{if(he.isBrowser){const Ee=this._getWindow();Ee.addEventListener("resize",this._changeListener),Ee.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const he=this._getWindow();he.removeEventListener("resize",this._changeListener),he.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const he={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),he}getViewportRect(){const he=this.getViewportScrollPosition(),{width:be,height:Pe}=this.getViewportSize();return{top:he.top,left:he.left,bottom:he.top+Pe,right:he.left+be,height:Pe,width:be}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const he=this._document,be=this._getWindow(),Pe=he.documentElement,Ee=Pe.getBoundingClientRect();return{top:-Ee.top||he.body.scrollTop||be.scrollY||Pe.scrollTop||0,left:-Ee.left||he.body.scrollLeft||be.scrollX||Pe.scrollLeft||0}}change(he=20){return he>0?this._change.pipe((0,B.e)(he)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const he=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:he.innerWidth,height:he.innerHeight}:{width:0,height:0}}}return H.\u0275fac=function(he){return new(he||H)(e.LFG(ee.t4),e.LFG(e.R0b),e.LFG(ae.K0,8))},H.\u0275prov=e.Yz7({token:H,factory:H.\u0275fac,providedIn:"root"}),H})(),V=(()=>{class H{}return H.\u0275fac=function(he){return new(he||H)},H.\u0275mod=e.oAB({type:H}),H.\u0275inj=e.cJS({}),H})(),N=(()=>{class H{}return H.\u0275fac=function(he){return new(he||H)},H.\u0275mod=e.oAB({type:H}),H.\u0275inj=e.cJS({imports:[[ue.vT,V],ue.vT,V]}),H})()},1555:(Be,K,p)=>{"use strict";p.d(K,{B8:()=>ue,KL:()=>k,U5:()=>ge,be:()=>ee,gx:()=>ae,po:()=>re,st:()=>ie,u6:()=>E});var t=p(5664),e=p(3191),f=p(1159),M=p(9808),a=p(5e3),C=p(925),d=p(7579),R=p(9646),h=p(8675),L=p(2722),w=p(226);function D(q,_e){1&q&&a.Hsn(0)}const S=["*"];let k=(()=>{class q{constructor(x){this._elementRef=x}focus(){this._elementRef.nativeElement.focus()}}return q.\u0275fac=function(x){return new(x||q)(a.Y36(a.SBq))},q.\u0275dir=a.lG2({type:q,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"]}),q})(),E=(()=>{class q{constructor(x){this.template=x}}return q.\u0275fac=function(x){return new(x||q)(a.Y36(a.Rgc))},q.\u0275dir=a.lG2({type:q,selectors:[["","cdkStepLabel",""]]}),q})(),B=0;const ae=new a.OlP("STEPPER_GLOBAL_OPTIONS");let ee=(()=>{class q{constructor(x,i){this._stepper=x,this.interacted=!1,this.interactedStream=new a.vpe,this._editable=!0,this._optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=i||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}get editable(){return this._editable}set editable(x){this._editable=(0,e.Ig)(x)}get optional(){return this._optional}set optional(x){this._optional=(0,e.Ig)(x)}get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(x){this._completedOverride=(0,e.Ig)(x)}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(x){this._customError=(0,e.Ig)(x)}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}select(){this._stepper.selected=this}reset(){this.interacted=!1,null!=this._completedOverride&&(this._completedOverride=!1),null!=this._customError&&(this._customError=!1),this.stepControl&&this.stepControl.reset()}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this.interacted||(this.interacted=!0,this.interactedStream.emit(this))}_showError(){var x;return null!==(x=this._stepperOptions.showError)&&void 0!==x?x:null!=this._customError}}return q.\u0275fac=function(x){return new(x||q)(a.Y36((0,a.Gpc)(()=>ue)),a.Y36(ae,8))},q.\u0275cmp=a.Xpm({type:q,selectors:[["cdk-step"]],contentQueries:function(x,i,r){if(1&x&&a.Suo(r,E,5),2&x){let u;a.iGM(u=a.CRH())&&(i.stepLabel=u.first)}},viewQuery:function(x,i){if(1&x&&a.Gf(a.Rgc,7),2&x){let r;a.iGM(r=a.CRH())&&(i.content=r.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],state:"state",editable:"editable",optional:"optional",completed:"completed",hasError:"hasError"},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],features:[a.TTD],ngContentSelectors:S,decls:1,vars:0,template:function(x,i){1&x&&(a.F$t(),a.YNc(0,D,1,0,"ng-template"))},encapsulation:2,changeDetection:0}),q})(),ue=(()=>{class q{constructor(x,i,r,u){this._dir=x,this._changeDetectorRef=i,this._elementRef=r,this._destroyed=new d.x,this.steps=new a.n_E,this._sortedHeaders=new a.n_E,this._linear=!1,this._selectedIndex=0,this.selectionChange=new a.vpe,this._orientation="horizontal",this._groupId=B++}get linear(){return this._linear}set linear(x){this._linear=(0,e.Ig)(x)}get selectedIndex(){return this._selectedIndex}set selectedIndex(x){var i;const r=(0,e.su)(x);this.steps&&this._steps?(this._isValidIndex(r),null===(i=this.selected)||void 0===i||i._markAsInteracted(),this._selectedIndex!==r&&!this._anyControlsInvalidOrPending(r)&&(r>=this._selectedIndex||this.steps.toArray()[r].editable)&&this._updateSelectedItemIndex(r)):this._selectedIndex=r}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(x){this.selectedIndex=x&&this.steps?this.steps.toArray().indexOf(x):-1}get orientation(){return this._orientation}set orientation(x){this._orientation=x,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===x)}ngAfterContentInit(){this._steps.changes.pipe((0,h.O)(this._steps),(0,L.R)(this._destroyed)).subscribe(x=>{this.steps.reset(x.filter(i=>i._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,h.O)(this._stepHeader),(0,L.R)(this._destroyed)).subscribe(x=>{this._sortedHeaders.reset(x.toArray().sort((i,r)=>i._elementRef.nativeElement.compareDocumentPosition(r._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new t.Em(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,R.of)()).pipe((0,h.O)(this._layoutDirection()),(0,L.R)(this._destroyed)).subscribe(x=>this._keyManager.withHorizontalOrientation(x)),this._keyManager.updateActiveItem(this._selectedIndex),this.steps.changes.subscribe(()=>{this.selected||(this._selectedIndex=Math.max(this._selectedIndex-1,0))}),this._isValidIndex(this._selectedIndex)||(this._selectedIndex=0)}ngOnDestroy(){this.steps.destroy(),this._sortedHeaders.destroy(),this._destroyed.next(),this._destroyed.complete()}next(){this.selectedIndex=Math.min(this._selectedIndex+1,this.steps.length-1)}previous(){this.selectedIndex=Math.max(this._selectedIndex-1,0)}reset(){this._updateSelectedItemIndex(0),this.steps.forEach(x=>x.reset()),this._stateChanged()}_getStepLabelId(x){return`cdk-step-label-${this._groupId}-${x}`}_getStepContentId(x){return`cdk-step-content-${this._groupId}-${x}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(x){const i=x-this._selectedIndex;return i<0?"rtl"===this._layoutDirection()?"next":"previous":i>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(x,i="number"){const r=this.steps.toArray()[x],u=this._isCurrentStep(x);return r._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(r,u):this._getGuidelineLogic(r,u,i)}_getDefaultIndicatorLogic(x,i){return x._showError()&&x.hasError&&!i?"error":!x.completed||i?"number":x.editable?"edit":"done"}_getGuidelineLogic(x,i,r="number"){return x._showError()&&x.hasError&&!i?"error":x.completed&&!i?"done":x.completed&&i?r:x.editable&&i?"edit":r}_isCurrentStep(x){return this._selectedIndex===x}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(x){const i=this.steps.toArray();this.selectionChange.emit({selectedIndex:x,previouslySelectedIndex:this._selectedIndex,selectedStep:i[x],previouslySelectedStep:i[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(x):this._keyManager.updateActiveItem(x),this._selectedIndex=x,this._stateChanged()}_onKeydown(x){const i=(0,f.Vb)(x),r=x.keyCode,u=this._keyManager;null==u.activeItemIndex||i||r!==f.L_&&r!==f.K5?u.onKeydown(x):(this.selectedIndex=u.activeItemIndex,x.preventDefault())}_anyControlsInvalidOrPending(x){return!!(this._linear&&x>=0)&&this.steps.toArray().slice(0,x).some(i=>{const r=i.stepControl;return(r?r.invalid||r.pending||!i.interacted:!i.completed)&&!i.optional&&!i._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const x=this._elementRef.nativeElement,i=(0,C.ht)();return x===i||x.contains(i)}_isValidIndex(x){return x>-1&&(!this.steps||x{class q{constructor(x){this._stepper=x,this.type="submit"}}return q.\u0275fac=function(x){return new(x||q)(a.Y36(ue))},q.\u0275dir=a.lG2({type:q,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(x,i){1&x&&a.NdJ("click",function(){return i._stepper.next()}),2&x&&a.Ikx("type",i.type)},inputs:{type:"type"}}),q})(),re=(()=>{class q{constructor(x){this._stepper=x,this.type="button"}}return q.\u0275fac=function(x){return new(x||q)(a.Y36(ue))},q.\u0275dir=a.lG2({type:q,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(x,i){1&x&&a.NdJ("click",function(){return i._stepper.previous()}),2&x&&a.Ikx("type",i.type)},inputs:{type:"type"}}),q})(),ge=(()=>{class q{}return q.\u0275fac=function(x){return new(x||q)},q.\u0275mod=a.oAB({type:q}),q.\u0275inj=a.cJS({imports:[[w.vT]]}),q})()},8258:(Be,K,p)=>{"use strict";p.d(K,{HI:()=>E,Hs:()=>q,Ud:()=>c,VY:()=>k,XJ:()=>u,Xx:()=>i,_0:()=>ge,cu:()=>B,nZ:()=>T,rO:()=>Y});var t=p(449),e=p(5191),f=p(7579),M=p(1135),a=p(9646),C=p(5698),d=p(9300),R=p(2722),h=p(5e3),L=p(3191),w=p(226);class k extends class D{constructor(){this.expansionModel=new t.Ov(!0)}toggle(y){this.expansionModel.toggle(this._trackByValue(y))}expand(y){this.expansionModel.select(this._trackByValue(y))}collapse(y){this.expansionModel.deselect(this._trackByValue(y))}isExpanded(y){return this.expansionModel.isSelected(this._trackByValue(y))}toggleDescendants(y){this.expansionModel.isSelected(this._trackByValue(y))?this.collapseDescendants(y):this.expandDescendants(y)}collapseAll(){this.expansionModel.clear()}expandDescendants(y){let n=[y];n.push(...this.getDescendants(y)),this.expansionModel.select(...n.map(_=>this._trackByValue(_)))}collapseDescendants(y){let n=[y];n.push(...this.getDescendants(y)),this.expansionModel.deselect(...n.map(_=>this._trackByValue(_)))}_trackByValue(y){return this.trackBy?this.trackBy(y):y}}{constructor(y,n){super(),this.getChildren=y,this.options=n,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const y=this.dataNodes.reduce((n,_)=>[...n,...this.getDescendants(_),_],[]);this.expansionModel.select(...y.map(n=>this._trackByValue(n)))}getDescendants(y){const n=[];return this._getDescendants(n,y),n.splice(1)}_getDescendants(y,n){y.push(n);const _=this.getChildren(n);Array.isArray(_)?_.forEach(V=>this._getDescendants(y,V)):(0,e.b)(_)&&_.pipe((0,C.q)(1),(0,d.h)(Boolean)).subscribe(V=>{for(const N of V)this._getDescendants(y,N)})}}const E=new h.OlP("CDK_TREE_NODE_OUTLET_NODE");let B=(()=>{class I{constructor(n,_){this.viewContainer=n,this._node=_}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.s_b),h.Y36(E,8))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodeOutlet",""]]}),I})();class Z{constructor(y){this.$implicit=y}}let Y=(()=>{class I{constructor(n){this.template=n}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.Rgc))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:["cdkTreeNodeDefWhen","when"]}}),I})(),ge=(()=>{class I{constructor(n,_){this._differs=n,this._changeDetectorRef=_,this._onDestroy=new f.x,this._levels=new Map,this.viewChange=new M.X({start:0,end:Number.MAX_VALUE})}get dataSource(){return this._dataSource}set dataSource(n){this._dataSource!==n&&this._switchDataSource(n)}ngOnInit(){this._dataDiffer=this._differs.find([]).create(this.trackBy)}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),this.viewChange.complete(),this._onDestroy.next(),this._onDestroy.complete(),this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null)}ngAfterContentChecked(){const n=this._nodeDefs.filter(_=>!_.when);this._defaultNodeDef=n[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(n){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),n||this._nodeOutlet.viewContainer.clear(),this._dataSource=n,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let n;(0,t.Z9)(this._dataSource)?n=this._dataSource.connect(this):(0,e.b)(this._dataSource)?n=this._dataSource:Array.isArray(this._dataSource)&&(n=(0,a.of)(this._dataSource)),n&&(this._dataSubscription=n.pipe((0,R.R)(this._onDestroy)).subscribe(_=>this.renderNodeChanges(_)))}renderNodeChanges(n,_=this._dataDiffer,V=this._nodeOutlet.viewContainer,N){const H=_.diff(n);!H||(H.forEachOperation((X,he,be)=>{if(null==X.previousIndex)this.insertNode(n[be],be,V,N);else if(null==be)V.remove(he),this._levels.delete(X.item);else{const Pe=V.get(he);V.move(Pe,be)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(n,_){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(N=>N.when&&N.when(_,n))||this._defaultNodeDef}insertNode(n,_,V,N){const H=this._getNodeDef(n,_),X=new Z(n);X.level=this.treeControl.getLevel?this.treeControl.getLevel(n):void 0!==N&&this._levels.has(N)?this._levels.get(N)+1:0,this._levels.set(n,X.level),(V||this._nodeOutlet.viewContainer).createEmbeddedView(H.template,X,_),q.mostRecentTreeNode&&(q.mostRecentTreeNode.data=n)}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.ZZ4),h.Y36(h.sBO))},I.\u0275cmp=h.Xpm({type:I,selectors:[["cdk-tree"]],contentQueries:function(n,_,V){if(1&n&&h.Suo(V,Y,5),2&n){let N;h.iGM(N=h.CRH())&&(_._nodeDefs=N)}},viewQuery:function(n,_){if(1&n&&h.Gf(B,7),2&n){let V;h.iGM(V=h.CRH())&&(_._nodeOutlet=V.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(n,_){1&n&&h.GkF(0,0)},directives:[B],encapsulation:2}),I})(),q=(()=>{class I{constructor(n,_){this._elementRef=n,this._tree=_,this._destroyed=new f.x,this._dataChanges=new f.x,I.mostRecentTreeNode=this,this.role="treeitem"}get role(){return"treeitem"}set role(n){this._elementRef.nativeElement.setAttribute("role",n)}get data(){return this._data}set data(n){n!==this._data&&(this._data=n,this._setRoleFromData(),this._dataChanges.next())}get isExpanded(){return this._tree.treeControl.isExpanded(this._data)}get level(){return this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._data):this._parentNodeAriaLevel}ngOnInit(){this._parentNodeAriaLevel=function _e(I){let y=I.parentElement;for(;y&&!x(y);)y=y.parentElement;return y?y.classList.contains("cdk-nested-tree-node")?(0,L.su)(y.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){I.mostRecentTreeNode===this&&(I.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}}return I.mostRecentTreeNode=null,I.\u0275fac=function(n){return new(n||I)(h.Y36(h.SBq),h.Y36(ge))},I.\u0275dir=h.lG2({type:I,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(n,_){2&n&&h.uIk("aria-expanded",_.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"]}),I})();function x(I){const y=I.classList;return!(!(null==y?void 0:y.contains("cdk-nested-tree-node"))&&!(null==y?void 0:y.contains("cdk-tree")))}let i=(()=>{class I extends q{constructor(n,_,V){super(n,_),this._differs=V}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const n=this._tree.treeControl.getChildren(this.data);Array.isArray(n)?this.updateChildrenNodes(n):(0,e.b)(n)&&n.pipe((0,R.R)(this._destroyed)).subscribe(_=>this.updateChildrenNodes(_)),this.nodeOutlet.changes.pipe((0,R.R)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(n){const _=this._getNodeOutlet();n&&(this._children=n),_&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,_.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const n=this._getNodeOutlet();n&&(n.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const n=this.nodeOutlet;return n&&n.find(_=>!_._node||_._node===this)}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.SBq),h.Y36(ge),h.Y36(h.ZZ4))},I.\u0275dir=h.lG2({type:I,selectors:[["cdk-nested-tree-node"]],contentQueries:function(n,_,V){if(1&n&&h.Suo(V,B,5),2&n){let N;h.iGM(N=h.CRH())&&(_.nodeOutlet=N)}},hostAttrs:[1,"cdk-nested-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex"},exportAs:["cdkNestedTreeNode"],features:[h._Bn([{provide:q,useExisting:I},{provide:E,useExisting:I}]),h.qOj]}),I})();const r=/([A-Za-z%]+)$/;let u=(()=>{class I{constructor(n,_,V,N){this._treeNode=n,this._tree=_,this._element=V,this._dir=N,this._destroyed=new f.x,this.indentUnits="px",this._indent=40,this._setPadding(),N&&N.change.pipe((0,R.R)(this._destroyed)).subscribe(()=>this._setPadding(!0)),n._dataChanges.subscribe(()=>this._setPadding())}get level(){return this._level}set level(n){this._setLevelInput(n)}get indent(){return this._indent}set indent(n){this._setIndentInput(n)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const n=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,_=null==this._level?n:this._level;return"number"==typeof _?`${_*this._indent}${this.indentUnits}`:null}_setPadding(n=!1){const _=this._paddingIndent();if(_!==this._currentPadding||n){const V=this._element.nativeElement,N=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",H="paddingLeft"===N?"paddingRight":"paddingLeft";V.style[N]=_||"",V.style[H]="",this._currentPadding=_}}_setLevelInput(n){this._level=(0,L.su)(n,null),this._setPadding()}_setIndentInput(n){let _=n,V="px";if("string"==typeof n){const N=n.split(r);_=N[0],V=N[1]||V}this.indentUnits=V,this._indent=(0,L.su)(_),this._setPadding()}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(q),h.Y36(ge),h.Y36(h.SBq),h.Y36(w.Is,8))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:["cdkTreeNodePadding","level"],indent:["cdkTreeNodePaddingIndent","indent"]}}),I})(),c=(()=>{class I{constructor(n,_){this._tree=n,this._treeNode=_,this._recursive=!1}get recursive(){return this._recursive}set recursive(n){this._recursive=(0,L.Ig)(n)}_toggle(n){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),n.stopPropagation()}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(ge),h.Y36(q))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(n,_){1&n&&h.NdJ("click",function(N){return _._toggle(N)})},inputs:{recursive:["cdkTreeNodeToggleRecursive","recursive"]}}),I})(),T=(()=>{class I{}return I.\u0275fac=function(n){return new(n||I)},I.\u0275mod=h.oAB({type:I}),I.\u0275inj=h.cJS({}),I})()},9808:(Be,K,p)=>{"use strict";p.d(K,{Do:()=>ue,ED:()=>Dn,EM:()=>Kr,HT:()=>a,JF:()=>Xn,JJ:()=>Ya,K0:()=>d,Mx:()=>$i,NF:()=>or,Nd:()=>Ur,O5:()=>Rt,OU:()=>ba,Ov:()=>ha,PC:()=>Ei,PM:()=>sa,RF:()=>Ni,S$:()=>Z,Ts:()=>kr,V_:()=>L,Ye:()=>ie,b0:()=>ee,bD:()=>aa,ez:()=>Dr,gd:()=>ra,i8:()=>Br,lw:()=>R,mk:()=>Wi,mr:()=>ae,n9:()=>pn,q:()=>f,rS:()=>na,sg:()=>ti,tP:()=>ji,uU:()=>Xr,w_:()=>C});var t=p(5e3);let e=null;function f(){return e}function a($e){e||(e=$e)}class C{}const d=new t.OlP("DocumentToken");let R=(()=>{class $e{historyGo(Xe){throw new Error("Not implemented")}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275prov=t.Yz7({token:$e,factory:function(){return function h(){return(0,t.LFG)(w)}()},providedIn:"platform"}),$e})();const L=new t.OlP("Location Initialized");let w=(()=>{class $e extends R{constructor(Xe){super(),this._doc=Xe,this._init()}_init(){this.location=window.location,this._history=window.history}getBaseHrefFromDOM(){return f().getBaseHref(this._doc)}onPopState(Xe){const kt=f().getGlobalEventTarget(this._doc,"window");return kt.addEventListener("popstate",Xe,!1),()=>kt.removeEventListener("popstate",Xe)}onHashChange(Xe){const kt=f().getGlobalEventTarget(this._doc,"window");return kt.addEventListener("hashchange",Xe,!1),()=>kt.removeEventListener("hashchange",Xe)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(Xe){this.location.pathname=Xe}pushState(Xe,kt,ii){D()?this._history.pushState(Xe,kt,ii):this.location.hash=ii}replaceState(Xe,kt,ii){D()?this._history.replaceState(Xe,kt,ii):this.location.hash=ii}forward(){this._history.forward()}back(){this._history.back()}historyGo(Xe=0){this._history.go(Xe)}getState(){return this._history.state}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.LFG(d))},$e.\u0275prov=t.Yz7({token:$e,factory:function(){return function S(){return new w((0,t.LFG)(d))}()},providedIn:"platform"}),$e})();function D(){return!!window.history.pushState}function k($e,Et){if(0==$e.length)return Et;if(0==Et.length)return $e;let Xe=0;return $e.endsWith("/")&&Xe++,Et.startsWith("/")&&Xe++,2==Xe?$e+Et.substring(1):1==Xe?$e+Et:$e+"/"+Et}function E($e){const Et=$e.match(/#|\?|$/),Xe=Et&&Et.index||$e.length;return $e.slice(0,Xe-("/"===$e[Xe-1]?1:0))+$e.slice(Xe)}function B($e){return $e&&"?"!==$e[0]?"?"+$e:$e}let Z=(()=>{class $e{historyGo(Xe){throw new Error("Not implemented")}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275prov=t.Yz7({token:$e,factory:function(){return function Y($e){const Et=(0,t.LFG)(d).location;return new ee((0,t.LFG)(R),Et&&Et.origin||"")}()},providedIn:"root"}),$e})();const ae=new t.OlP("appBaseHref");let ee=(()=>{class $e extends Z{constructor(Xe,kt){if(super(),this._platformLocation=Xe,this._removeListenerFns=[],null==kt&&(kt=this._platformLocation.getBaseHrefFromDOM()),null==kt)throw new Error("No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.");this._baseHref=kt}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Xe){this._removeListenerFns.push(this._platformLocation.onPopState(Xe),this._platformLocation.onHashChange(Xe))}getBaseHref(){return this._baseHref}prepareExternalUrl(Xe){return k(this._baseHref,Xe)}path(Xe=!1){const kt=this._platformLocation.pathname+B(this._platformLocation.search),ii=this._platformLocation.hash;return ii&&Xe?`${kt}${ii}`:kt}pushState(Xe,kt,ii,wi){const yi=this.prepareExternalUrl(ii+B(wi));this._platformLocation.pushState(Xe,kt,yi)}replaceState(Xe,kt,ii,wi){const yi=this.prepareExternalUrl(ii+B(wi));this._platformLocation.replaceState(Xe,kt,yi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}historyGo(Xe=0){var kt,ii;null===(ii=(kt=this._platformLocation).historyGo)||void 0===ii||ii.call(kt,Xe)}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.LFG(R),t.LFG(ae,8))},$e.\u0275prov=t.Yz7({token:$e,factory:$e.\u0275fac}),$e})(),ue=(()=>{class $e extends Z{constructor(Xe,kt){super(),this._platformLocation=Xe,this._baseHref="",this._removeListenerFns=[],null!=kt&&(this._baseHref=kt)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Xe){this._removeListenerFns.push(this._platformLocation.onPopState(Xe),this._platformLocation.onHashChange(Xe))}getBaseHref(){return this._baseHref}path(Xe=!1){let kt=this._platformLocation.hash;return null==kt&&(kt="#"),kt.length>0?kt.substring(1):kt}prepareExternalUrl(Xe){const kt=k(this._baseHref,Xe);return kt.length>0?"#"+kt:kt}pushState(Xe,kt,ii,wi){let yi=this.prepareExternalUrl(ii+B(wi));0==yi.length&&(yi=this._platformLocation.pathname),this._platformLocation.pushState(Xe,kt,yi)}replaceState(Xe,kt,ii,wi){let yi=this.prepareExternalUrl(ii+B(wi));0==yi.length&&(yi=this._platformLocation.pathname),this._platformLocation.replaceState(Xe,kt,yi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}historyGo(Xe=0){var kt,ii;null===(ii=(kt=this._platformLocation).historyGo)||void 0===ii||ii.call(kt,Xe)}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.LFG(R),t.LFG(ae,8))},$e.\u0275prov=t.Yz7({token:$e,factory:$e.\u0275fac}),$e})(),ie=(()=>{class $e{constructor(Xe,kt){this._subject=new t.vpe,this._urlChangeListeners=[],this._platformStrategy=Xe;const ii=this._platformStrategy.getBaseHref();this._platformLocation=kt,this._baseHref=E(q(ii)),this._platformStrategy.onPopState(wi=>{this._subject.emit({url:this.path(!0),pop:!0,state:wi.state,type:wi.type})})}path(Xe=!1){return this.normalize(this._platformStrategy.path(Xe))}getState(){return this._platformLocation.getState()}isCurrentPathEqualTo(Xe,kt=""){return this.path()==this.normalize(Xe+B(kt))}normalize(Xe){return $e.stripTrailingSlash(function ge($e,Et){return $e&&Et.startsWith($e)?Et.substring($e.length):Et}(this._baseHref,q(Xe)))}prepareExternalUrl(Xe){return Xe&&"/"!==Xe[0]&&(Xe="/"+Xe),this._platformStrategy.prepareExternalUrl(Xe)}go(Xe,kt="",ii=null){this._platformStrategy.pushState(ii,"",Xe,kt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Xe+B(kt)),ii)}replaceState(Xe,kt="",ii=null){this._platformStrategy.replaceState(ii,"",Xe,kt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Xe+B(kt)),ii)}forward(){this._platformStrategy.forward()}back(){this._platformStrategy.back()}historyGo(Xe=0){var kt,ii;null===(ii=(kt=this._platformStrategy).historyGo)||void 0===ii||ii.call(kt,Xe)}onUrlChange(Xe){this._urlChangeListeners.push(Xe),this._urlChangeSubscription||(this._urlChangeSubscription=this.subscribe(kt=>{this._notifyUrlChangeListeners(kt.url,kt.state)}))}_notifyUrlChangeListeners(Xe="",kt){this._urlChangeListeners.forEach(ii=>ii(Xe,kt))}subscribe(Xe,kt,ii){return this._subject.subscribe({next:Xe,error:kt,complete:ii})}}return $e.normalizeQueryParams=B,$e.joinWithSlash=k,$e.stripTrailingSlash=E,$e.\u0275fac=function(Xe){return new(Xe||$e)(t.LFG(Z),t.LFG(R))},$e.\u0275prov=t.Yz7({token:$e,factory:function(){return function re(){return new ie((0,t.LFG)(Z),(0,t.LFG)(R))}()},providedIn:"root"}),$e})();function q($e){return $e.replace(/\/index.html$/,"")}var x=(()=>((x=x||{})[x.Decimal=0]="Decimal",x[x.Percent=1]="Percent",x[x.Currency=2]="Currency",x[x.Scientific=3]="Scientific",x))(),r=(()=>((r=r||{})[r.Format=0]="Format",r[r.Standalone=1]="Standalone",r))(),u=(()=>((u=u||{})[u.Narrow=0]="Narrow",u[u.Abbreviated=1]="Abbreviated",u[u.Wide=2]="Wide",u[u.Short=3]="Short",u))(),c=(()=>((c=c||{})[c.Short=0]="Short",c[c.Medium=1]="Medium",c[c.Long=2]="Long",c[c.Full=3]="Full",c))(),v=(()=>((v=v||{})[v.Decimal=0]="Decimal",v[v.Group=1]="Group",v[v.List=2]="List",v[v.PercentSign=3]="PercentSign",v[v.PlusSign=4]="PlusSign",v[v.MinusSign=5]="MinusSign",v[v.Exponential=6]="Exponential",v[v.SuperscriptingExponent=7]="SuperscriptingExponent",v[v.PerMille=8]="PerMille",v[v.Infinity=9]="Infinity",v[v.NaN=10]="NaN",v[v.TimeSeparator=11]="TimeSeparator",v[v.CurrencyDecimal=12]="CurrencyDecimal",v[v.CurrencyGroup=13]="CurrencyGroup",v))();function X($e,Et){return Te((0,t.cg1)($e)[t.wAp.DateFormat],Et)}function he($e,Et){return Te((0,t.cg1)($e)[t.wAp.TimeFormat],Et)}function be($e,Et){return Te((0,t.cg1)($e)[t.wAp.DateTimeFormat],Et)}function Pe($e,Et){const Xe=(0,t.cg1)($e),kt=Xe[t.wAp.NumberSymbols][Et];if(void 0===kt){if(Et===v.CurrencyDecimal)return Xe[t.wAp.NumberSymbols][v.Decimal];if(Et===v.CurrencyGroup)return Xe[t.wAp.NumberSymbols][v.Group]}return kt}function ut($e){if(!$e[t.wAp.ExtraData])throw new Error(`Missing extra locale data for the locale "${$e[t.wAp.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function Te($e,Et){for(let Xe=Et;Xe>-1;Xe--)if(void 0!==$e[Xe])return $e[Xe];throw new Error("Locale data API: locale data undefined")}function xe($e){const[Et,Xe]=$e.split(":");return{hours:+Et,minutes:+Xe}}const fe=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Q={},ft=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;var tt=(()=>((tt=tt||{})[tt.Short=0]="Short",tt[tt.ShortGMT=1]="ShortGMT",tt[tt.Long=2]="Long",tt[tt.Extended=3]="Extended",tt))(),Dt=(()=>((Dt=Dt||{})[Dt.FullYear=0]="FullYear",Dt[Dt.Month=1]="Month",Dt[Dt.Date=2]="Date",Dt[Dt.Hours=3]="Hours",Dt[Dt.Minutes=4]="Minutes",Dt[Dt.Seconds=5]="Seconds",Dt[Dt.FractionalSeconds=6]="FractionalSeconds",Dt[Dt.Day=7]="Day",Dt))(),di=(()=>((di=di||{})[di.DayPeriods=0]="DayPeriods",di[di.Days=1]="Days",di[di.Months=2]="Months",di[di.Eras=3]="Eras",di))();function Yt($e,Et,Xe,kt){let ii=function Ge($e){if(lt($e))return $e;if("number"==typeof $e&&!isNaN($e))return new Date($e);if("string"==typeof $e){if($e=$e.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test($e)){const[ii,wi=1,yi=1]=$e.split("-").map(en=>+en);return Zt(ii,wi-1,yi)}const Xe=parseFloat($e);if(!isNaN($e-Xe))return new Date(Xe);let kt;if(kt=$e.match(fe))return function ot($e){const Et=new Date(0);let Xe=0,kt=0;const ii=$e[8]?Et.setUTCFullYear:Et.setFullYear,wi=$e[8]?Et.setUTCHours:Et.setHours;$e[9]&&(Xe=Number($e[9]+$e[10]),kt=Number($e[9]+$e[11])),ii.call(Et,Number($e[1]),Number($e[2])-1,Number($e[3]));const yi=Number($e[4]||0)-Xe,en=Number($e[5]||0)-kt,nr=Number($e[6]||0),Vn=Math.floor(1e3*parseFloat("0."+($e[7]||0)));return wi.call(Et,yi,en,nr,Vn),Et}(kt)}const Et=new Date($e);if(!lt(Et))throw new Error(`Unable to convert "${$e}" into a date`);return Et}($e);Et=ui(Xe,Et)||Et;let en,yi=[];for(;Et;){if(en=ft.exec(Et),!en){yi.push(Et);break}{yi=yi.concat(en.slice(1));const It=yi.pop();if(!It)break;Et=It}}let nr=ii.getTimezoneOffset();kt&&(nr=rt(kt,nr),ii=function Ae($e,Et,Xe){const kt=Xe?-1:1,ii=$e.getTimezoneOffset();return function et($e,Et){return($e=new Date($e.getTime())).setMinutes($e.getMinutes()+Et),$e}($e,kt*(rt(Et,ii)-ii))}(ii,kt,!0));let Vn="";return yi.forEach(It=>{const ci=function He($e){if(nt[$e])return nt[$e];let Et;switch($e){case"G":case"GG":case"GGG":Et=ei(di.Eras,u.Abbreviated);break;case"GGGG":Et=ei(di.Eras,u.Wide);break;case"GGGGG":Et=ei(di.Eras,u.Narrow);break;case"y":Et=it(Dt.FullYear,1,0,!1,!0);break;case"yy":Et=it(Dt.FullYear,2,0,!0,!0);break;case"yyy":Et=it(Dt.FullYear,3,0,!1,!0);break;case"yyyy":Et=it(Dt.FullYear,4,0,!1,!0);break;case"Y":Et=Ft(1);break;case"YY":Et=Ft(2,!0);break;case"YYY":Et=Ft(3);break;case"YYYY":Et=Ft(4);break;case"M":case"L":Et=it(Dt.Month,1,1);break;case"MM":case"LL":Et=it(Dt.Month,2,1);break;case"MMM":Et=ei(di.Months,u.Abbreviated);break;case"MMMM":Et=ei(di.Months,u.Wide);break;case"MMMMM":Et=ei(di.Months,u.Narrow);break;case"LLL":Et=ei(di.Months,u.Abbreviated,r.Standalone);break;case"LLLL":Et=ei(di.Months,u.Wide,r.Standalone);break;case"LLLLL":Et=ei(di.Months,u.Narrow,r.Standalone);break;case"w":Et=mt(1);break;case"ww":Et=mt(2);break;case"W":Et=mt(1,!0);break;case"d":Et=it(Dt.Date,1);break;case"dd":Et=it(Dt.Date,2);break;case"c":case"cc":Et=it(Dt.Day,1);break;case"ccc":Et=ei(di.Days,u.Abbreviated,r.Standalone);break;case"cccc":Et=ei(di.Days,u.Wide,r.Standalone);break;case"ccccc":Et=ei(di.Days,u.Narrow,r.Standalone);break;case"cccccc":Et=ei(di.Days,u.Short,r.Standalone);break;case"E":case"EE":case"EEE":Et=ei(di.Days,u.Abbreviated);break;case"EEEE":Et=ei(di.Days,u.Wide);break;case"EEEEE":Et=ei(di.Days,u.Narrow);break;case"EEEEEE":Et=ei(di.Days,u.Short);break;case"a":case"aa":case"aaa":Et=ei(di.DayPeriods,u.Abbreviated);break;case"aaaa":Et=ei(di.DayPeriods,u.Wide);break;case"aaaaa":Et=ei(di.DayPeriods,u.Narrow);break;case"b":case"bb":case"bbb":Et=ei(di.DayPeriods,u.Abbreviated,r.Standalone,!0);break;case"bbbb":Et=ei(di.DayPeriods,u.Wide,r.Standalone,!0);break;case"bbbbb":Et=ei(di.DayPeriods,u.Narrow,r.Standalone,!0);break;case"B":case"BB":case"BBB":Et=ei(di.DayPeriods,u.Abbreviated,r.Format,!0);break;case"BBBB":Et=ei(di.DayPeriods,u.Wide,r.Format,!0);break;case"BBBBB":Et=ei(di.DayPeriods,u.Narrow,r.Format,!0);break;case"h":Et=it(Dt.Hours,1,-12);break;case"hh":Et=it(Dt.Hours,2,-12);break;case"H":Et=it(Dt.Hours,1);break;case"HH":Et=it(Dt.Hours,2);break;case"m":Et=it(Dt.Minutes,1);break;case"mm":Et=it(Dt.Minutes,2);break;case"s":Et=it(Dt.Seconds,1);break;case"ss":Et=it(Dt.Seconds,2);break;case"S":Et=it(Dt.FractionalSeconds,1);break;case"SS":Et=it(Dt.FractionalSeconds,2);break;case"SSS":Et=it(Dt.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":Et=Re(tt.Short);break;case"ZZZZZ":Et=Re(tt.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Et=Re(tt.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":Et=Re(tt.Long);break;default:return null}return nt[$e]=Et,Et}(It);Vn+=ci?ci(ii,Xe,nr):"''"===It?"'":It.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),Vn}function Zt($e,Et,Xe){const kt=new Date(0);return kt.setFullYear($e,Et,Xe),kt.setHours(0,0,0),kt}function ui($e,Et){const Xe=function I($e){return(0,t.cg1)($e)[t.wAp.LocaleId]}($e);if(Q[Xe]=Q[Xe]||{},Q[Xe][Et])return Q[Xe][Et];let kt="";switch(Et){case"shortDate":kt=X($e,c.Short);break;case"mediumDate":kt=X($e,c.Medium);break;case"longDate":kt=X($e,c.Long);break;case"fullDate":kt=X($e,c.Full);break;case"shortTime":kt=he($e,c.Short);break;case"mediumTime":kt=he($e,c.Medium);break;case"longTime":kt=he($e,c.Long);break;case"fullTime":kt=he($e,c.Full);break;case"short":const ii=ui($e,"shortTime"),wi=ui($e,"shortDate");kt=Ot(be($e,c.Short),[ii,wi]);break;case"medium":const yi=ui($e,"mediumTime"),en=ui($e,"mediumDate");kt=Ot(be($e,c.Medium),[yi,en]);break;case"long":const nr=ui($e,"longTime"),Vn=ui($e,"longDate");kt=Ot(be($e,c.Long),[nr,Vn]);break;case"full":const It=ui($e,"fullTime"),ci=ui($e,"fullDate");kt=Ot(be($e,c.Full),[It,ci])}return kt&&(Q[Xe][Et]=kt),kt}function Ot($e,Et){return Et&&($e=$e.replace(/\{([^}]+)}/g,function(Xe,kt){return null!=Et&&kt in Et?Et[kt]:Xe})),$e}function Nt($e,Et,Xe="-",kt,ii){let wi="";($e<0||ii&&$e<=0)&&(ii?$e=1-$e:($e=-$e,wi=Xe));let yi=String($e);for(;yi.length0||en>-Xe)&&(en+=Xe),$e===Dt.Hours)0===en&&-12===Xe&&(en=12);else if($e===Dt.FractionalSeconds)return function gt($e,Et){return Nt($e,3).substr(0,Et)}(en,Et);const nr=Pe(yi,v.MinusSign);return Nt(en,Et,nr,kt,ii)}}function ei($e,Et,Xe=r.Format,kt=!1){return function(ii,wi){return function Qt($e,Et,Xe,kt,ii,wi){switch(Xe){case di.Months:return function _($e,Et,Xe){const kt=(0,t.cg1)($e),wi=Te([kt[t.wAp.MonthsFormat],kt[t.wAp.MonthsStandalone]],Et);return Te(wi,Xe)}(Et,ii,kt)[$e.getMonth()];case di.Days:return function n($e,Et,Xe){const kt=(0,t.cg1)($e),wi=Te([kt[t.wAp.DaysFormat],kt[t.wAp.DaysStandalone]],Et);return Te(wi,Xe)}(Et,ii,kt)[$e.getDay()];case di.DayPeriods:const yi=$e.getHours(),en=$e.getMinutes();if(wi){const Vn=function Oe($e){const Et=(0,t.cg1)($e);return ut(Et),(Et[t.wAp.ExtraData][2]||[]).map(kt=>"string"==typeof kt?xe(kt):[xe(kt[0]),xe(kt[1])])}(Et),It=function we($e,Et,Xe){const kt=(0,t.cg1)($e);ut(kt);const wi=Te([kt[t.wAp.ExtraData][0],kt[t.wAp.ExtraData][1]],Et)||[];return Te(wi,Xe)||[]}(Et,ii,kt),ci=Vn.findIndex(vt=>{if(Array.isArray(vt)){const[jt,ki]=vt,je=yi>=jt.hours&&en>=jt.minutes,We=yi0?Math.floor(ii/60):Math.ceil(ii/60);switch($e){case tt.Short:return(ii>=0?"+":"")+Nt(yi,2,wi)+Nt(Math.abs(ii%60),2,wi);case tt.ShortGMT:return"GMT"+(ii>=0?"+":"")+Nt(yi,1,wi);case tt.Long:return"GMT"+(ii>=0?"+":"")+Nt(yi,2,wi)+":"+Nt(Math.abs(ii%60),2,wi);case tt.Extended:return 0===kt?"Z":(ii>=0?"+":"")+Nt(yi,2,wi)+":"+Nt(Math.abs(ii%60),2,wi);default:throw new Error(`Unknown zone width "${$e}"`)}}}function ht($e){return Zt($e.getFullYear(),$e.getMonth(),$e.getDate()+(4-$e.getDay()))}function mt($e,Et=!1){return function(Xe,kt){let ii;if(Et){const wi=new Date(Xe.getFullYear(),Xe.getMonth(),1).getDay()-1,yi=Xe.getDate();ii=1+Math.floor((yi+wi)/7)}else{const wi=ht(Xe),yi=function ye($e){const Et=Zt($e,0,1).getDay();return Zt($e,0,1+(Et<=4?4:11)-Et)}(wi.getFullYear()),en=wi.getTime()-yi.getTime();ii=1+Math.round(en/6048e5)}return Nt(ii,$e,Pe(kt,v.MinusSign))}}function Ft($e,Et=!1){return function(Xe,kt){return Nt(ht(Xe).getFullYear(),$e,Pe(kt,v.MinusSign),Et)}}const nt={};function rt($e,Et){$e=$e.replace(/:/g,"");const Xe=Date.parse("Jan 01, 1970 00:00:00 "+$e)/6e4;return isNaN(Xe)?Et:Xe}function lt($e){return $e instanceof Date&&!isNaN($e.valueOf())}const Ct=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function Je($e){const Et=parseInt($e);if(isNaN(Et))throw new Error("Invalid integer literal when parsing "+$e);return Et}function $i($e,Et){Et=encodeURIComponent(Et);for(const Xe of $e.split(";")){const kt=Xe.indexOf("="),[ii,wi]=-1==kt?[Xe,""]:[Xe.slice(0,kt),Xe.slice(kt+1)];if(ii.trim()===Et)return decodeURIComponent(wi)}return null}let Wi=(()=>{class $e{constructor(Xe,kt,ii,wi){this._iterableDiffers=Xe,this._keyValueDiffers=kt,this._ngEl=ii,this._renderer=wi,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(Xe){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof Xe?Xe.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(Xe){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof Xe?Xe.split(/\s+/):Xe,this._rawClass&&((0,t.sIi)(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const Xe=this._iterableDiffer.diff(this._rawClass);Xe&&this._applyIterableChanges(Xe)}else if(this._keyValueDiffer){const Xe=this._keyValueDiffer.diff(this._rawClass);Xe&&this._applyKeyValueChanges(Xe)}}_applyKeyValueChanges(Xe){Xe.forEachAddedItem(kt=>this._toggleClass(kt.key,kt.currentValue)),Xe.forEachChangedItem(kt=>this._toggleClass(kt.key,kt.currentValue)),Xe.forEachRemovedItem(kt=>{kt.previousValue&&this._toggleClass(kt.key,!1)})}_applyIterableChanges(Xe){Xe.forEachAddedItem(kt=>{if("string"!=typeof kt.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${(0,t.AaK)(kt.item)}`);this._toggleClass(kt.item,!0)}),Xe.forEachRemovedItem(kt=>this._toggleClass(kt.item,!1))}_applyClasses(Xe){Xe&&(Array.isArray(Xe)||Xe instanceof Set?Xe.forEach(kt=>this._toggleClass(kt,!0)):Object.keys(Xe).forEach(kt=>this._toggleClass(kt,!!Xe[kt])))}_removeClasses(Xe){Xe&&(Array.isArray(Xe)||Xe instanceof Set?Xe.forEach(kt=>this._toggleClass(kt,!1)):Object.keys(Xe).forEach(kt=>this._toggleClass(kt,!1)))}_toggleClass(Xe,kt){(Xe=Xe.trim())&&Xe.split(/\s+/g).forEach(ii=>{kt?this._renderer.addClass(this._ngEl.nativeElement,ii):this._renderer.removeClass(this._ngEl.nativeElement,ii)})}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.ZZ4),t.Y36(t.aQg),t.Y36(t.SBq),t.Y36(t.Qsj))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"}}),$e})();class fn{constructor(Et,Xe,kt,ii){this.$implicit=Et,this.ngForOf=Xe,this.index=kt,this.count=ii}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let ti=(()=>{class $e{constructor(Xe,kt,ii){this._viewContainer=Xe,this._template=kt,this._differs=ii,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(Xe){this._ngForOf=Xe,this._ngForOfDirty=!0}set ngForTrackBy(Xe){this._trackByFn=Xe}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(Xe){Xe&&(this._template=Xe)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const Xe=this._ngForOf;!this._differ&&Xe&&(this._differ=this._differs.find(Xe).create(this.ngForTrackBy))}if(this._differ){const Xe=this._differ.diff(this._ngForOf);Xe&&this._applyChanges(Xe)}}_applyChanges(Xe){const kt=this._viewContainer;Xe.forEachOperation((ii,wi,yi)=>{if(null==ii.previousIndex)kt.createEmbeddedView(this._template,new fn(ii.item,this._ngForOf,-1,-1),null===yi?void 0:yi);else if(null==yi)kt.remove(null===wi?void 0:wi);else if(null!==wi){const en=kt.get(wi);kt.move(en,yi),Ri(en,ii)}});for(let ii=0,wi=kt.length;ii{Ri(kt.get(ii.currentIndex),ii)})}static ngTemplateContextGuard(Xe,kt){return!0}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(t.ZZ4))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}}),$e})();function Ri($e,Et){$e.context.$implicit=Et.item}let Rt=(()=>{class $e{constructor(Xe,kt){this._viewContainer=Xe,this._context=new Wt,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=kt}set ngIf(Xe){this._context.$implicit=this._context.ngIf=Xe,this._updateView()}set ngIfThen(Xe){fi("ngIfThen",Xe),this._thenTemplateRef=Xe,this._thenViewRef=null,this._updateView()}set ngIfElse(Xe){fi("ngIfElse",Xe),this._elseTemplateRef=Xe,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(Xe,kt){return!0}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.s_b),t.Y36(t.Rgc))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}}),$e})();class Wt{constructor(){this.$implicit=null,this.ngIf=null}}function fi($e,Et){if(Et&&!Et.createEmbeddedView)throw new Error(`${$e} must be a TemplateRef, but received '${(0,t.AaK)(Et)}'.`)}class Li{constructor(Et,Xe){this._viewContainerRef=Et,this._templateRef=Xe,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Et){Et&&!this._created?this.create():!Et&&this._created&&this.destroy()}}let Ni=(()=>{class $e{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(Xe){this._ngSwitch=Xe,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(Xe){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(Xe)}_matchCase(Xe){const kt=Xe==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||kt,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),kt}_updateDefaultCases(Xe){if(this._defaultViews&&Xe!==this._defaultUsed){this._defaultUsed=Xe;for(let kt=0;kt{class $e{constructor(Xe,kt,ii){this.ngSwitch=ii,ii._addCase(),this._view=new Li(Xe,kt)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(Ni,9))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"}}),$e})(),Dn=(()=>{class $e{constructor(Xe,kt,ii){ii._addDefault(new Li(Xe,kt))}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(Ni,9))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngSwitchDefault",""]]}),$e})(),Ei=(()=>{class $e{constructor(Xe,kt,ii){this._ngEl=Xe,this._differs=kt,this._renderer=ii,this._ngStyle=null,this._differ=null}set ngStyle(Xe){this._ngStyle=Xe,!this._differ&&Xe&&(this._differ=this._differs.find(Xe).create())}ngDoCheck(){if(this._differ){const Xe=this._differ.diff(this._ngStyle);Xe&&this._applyChanges(Xe)}}_setStyle(Xe,kt){const[ii,wi]=Xe.split(".");null!=(kt=null!=kt&&wi?`${kt}${wi}`:kt)?this._renderer.setStyle(this._ngEl.nativeElement,ii,kt):this._renderer.removeStyle(this._ngEl.nativeElement,ii)}_applyChanges(Xe){Xe.forEachRemovedItem(kt=>this._setStyle(kt.key,null)),Xe.forEachAddedItem(kt=>this._setStyle(kt.key,kt.currentValue)),Xe.forEachChangedItem(kt=>this._setStyle(kt.key,kt.currentValue))}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.SBq),t.Y36(t.aQg),t.Y36(t.Qsj))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"}}),$e})(),ji=(()=>{class $e{constructor(Xe){this._viewContainerRef=Xe,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(Xe){if(Xe.ngTemplateOutlet){const kt=this._viewContainerRef;this._viewRef&&kt.remove(kt.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?kt.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&Xe.ngTemplateOutletContext&&this.ngTemplateOutletContext&&(this._viewRef.context=this.ngTemplateOutletContext)}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.s_b))},$e.\u0275dir=t.lG2({type:$e,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet"},features:[t.TTD]}),$e})();function Qn($e,Et){return new t.vHH(2100,"")}class sr{createSubscription(Et,Xe){return Et.subscribe({next:Xe,error:kt=>{throw kt}})}dispose(Et){Et.unsubscribe()}onDestroy(Et){Et.unsubscribe()}}class ua{createSubscription(Et,Xe){return Et.then(Xe,kt=>{throw kt})}dispose(Et){}onDestroy(Et){}}const va=new ua,Sr=new sr;let ha=(()=>{class $e{constructor(Xe){this._ref=Xe,this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null}ngOnDestroy(){this._subscription&&this._dispose()}transform(Xe){return this._obj?Xe!==this._obj?(this._dispose(),this.transform(Xe)):this._latestValue:(Xe&&this._subscribe(Xe),this._latestValue)}_subscribe(Xe){this._obj=Xe,this._strategy=this._selectStrategy(Xe),this._subscription=this._strategy.createSubscription(Xe,kt=>this._updateLatestValue(Xe,kt))}_selectStrategy(Xe){if((0,t.QGY)(Xe))return va;if((0,t.F4k)(Xe))return Sr;throw Qn()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(Xe,kt){Xe===this._obj&&(this._latestValue=kt,this._ref.markForCheck())}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.sBO,16))},$e.\u0275pipe=t.Yjl({name:"async",type:$e,pure:!1}),$e})(),Br=(()=>{class $e{transform(Xe){if(null==Xe)return null;if("string"!=typeof Xe)throw Qn();return Xe.toLowerCase()}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275pipe=t.Yjl({name:"lowercase",type:$e,pure:!0}),$e})();const ia=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let na=(()=>{class $e{transform(Xe){if(null==Xe)return null;if("string"!=typeof Xe)throw Qn();return Xe.replace(ia,kt=>kt[0].toUpperCase()+kt.substr(1).toLowerCase())}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275pipe=t.Yjl({name:"titlecase",type:$e,pure:!0}),$e})(),ra=(()=>{class $e{transform(Xe){if(null==Xe)return null;if("string"!=typeof Xe)throw Qn();return Xe.toUpperCase()}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275pipe=t.Yjl({name:"uppercase",type:$e,pure:!0}),$e})();const Jr=new t.OlP("DATE_PIPE_DEFAULT_TIMEZONE");let Xr=(()=>{class $e{constructor(Xe,kt){this.locale=Xe,this.defaultTimezone=kt}transform(Xe,kt="mediumDate",ii,wi){var yi;if(null==Xe||""===Xe||Xe!=Xe)return null;try{return Yt(Xe,kt,wi||this.locale,null!==(yi=null!=ii?ii:this.defaultTimezone)&&void 0!==yi?yi:void 0)}catch(en){throw Qn()}}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.soG,16),t.Y36(Jr,24))},$e.\u0275pipe=t.Yjl({name:"date",type:$e,pure:!0}),$e})(),kr=(()=>{class $e{transform(Xe){return JSON.stringify(Xe,null,2)}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275pipe=t.Yjl({name:"json",type:$e,pure:!1}),$e})(),Ur=(()=>{class $e{constructor(Xe){this.differs=Xe,this.keyValues=[],this.compareFn=lr}transform(Xe,kt=lr){if(!Xe||!(Xe instanceof Map)&&"object"!=typeof Xe)return null;this.differ||(this.differ=this.differs.find(Xe).create());const ii=this.differ.diff(Xe),wi=kt!==this.compareFn;return ii&&(this.keyValues=[],ii.forEachItem(yi=>{this.keyValues.push(function Wn($e,Et){return{key:$e,value:Et}}(yi.key,yi.currentValue))})),(ii||wi)&&(this.keyValues.sort(kt),this.compareFn=kt),this.keyValues}}return $e.\u0275fac=function(Xe){return new(Xe||$e)(t.Y36(t.aQg,16))},$e.\u0275pipe=t.Yjl({name:"keyvalue",type:$e,pure:!1}),$e})();function lr($e,Et){const Xe=$e.key,kt=Et.key;if(Xe===kt)return 0;if(void 0===Xe)return 1;if(void 0===kt)return-1;if(null===Xe)return 1;if(null===kt)return-1;if("string"==typeof Xe&&"string"==typeof kt)return Xe{class $e{constructor(Xe){this._locale=Xe}transform(Xe,kt,ii){if(!function ya($e){return!(null==$e||""===$e||$e!=$e)}(Xe))return null;ii=ii||this._locale;try{return function Tt($e,Et,Xe){return function Vi($e,Et,Xe,kt,ii,wi,yi=!1){let en="",nr=!1;if(isFinite($e)){let Vn=function _t($e){let kt,ii,wi,yi,en,Et=Math.abs($e)+"",Xe=0;for((ii=Et.indexOf("."))>-1&&(Et=Et.replace(".","")),(wi=Et.search(/e/i))>0?(ii<0&&(ii=wi),ii+=+Et.slice(wi+1),Et=Et.substring(0,wi)):ii<0&&(ii=Et.length),wi=0;"0"===Et.charAt(wi);wi++);if(wi===(en=Et.length))kt=[0],ii=1;else{for(en--;"0"===Et.charAt(en);)en--;for(ii-=wi,kt=[],yi=0;wi<=en;wi++,yi++)kt[yi]=Number(Et.charAt(wi))}return ii>22&&(kt=kt.splice(0,21),Xe=ii-1,ii=1),{digits:kt,exponent:Xe,integerLen:ii}}($e);yi&&(Vn=function Qe($e){if(0===$e.digits[0])return $e;const Et=$e.digits.length-$e.integerLen;return $e.exponent?$e.exponent+=2:(0===Et?$e.digits.push(0,0):1===Et&&$e.digits.push(0),$e.integerLen+=2),$e}(Vn));let It=Et.minInt,ci=Et.minFrac,vt=Et.maxFrac;if(wi){const At=wi.match(Ct);if(null===At)throw new Error(`${wi} is not a valid digit info`);const Si=At[1],Gi=At[3],Bn=At[5];null!=Si&&(It=Je(Si)),null!=Gi&&(ci=Je(Gi)),null!=Bn?vt=Je(Bn):null!=Gi&&ci>vt&&(vt=ci)}!function se($e,Et,Xe){if(Et>Xe)throw new Error(`The minimum number of digits after fraction (${Et}) is higher than the maximum (${Xe}).`);let kt=$e.digits,ii=kt.length-$e.integerLen;const wi=Math.min(Math.max(Et,ii),Xe);let yi=wi+$e.integerLen,en=kt[yi];if(yi>0){kt.splice(Math.max($e.integerLen,yi));for(let ci=yi;ci=5)if(yi-1<0){for(let ci=0;ci>yi;ci--)kt.unshift(0),$e.integerLen++;kt.unshift(1),$e.integerLen++}else kt[yi-1]++;for(;ii=Vn?ki.pop():nr=!1),vt>=10?1:0},0);It&&(kt.unshift(It),$e.integerLen++)}(Vn,ci,vt);let jt=Vn.digits,ki=Vn.integerLen;const je=Vn.exponent;let We=[];for(nr=jt.every(At=>!At);ki0?We=jt.splice(ki,jt.length):(We=jt,jt=[0]);const Fe=[];for(jt.length>=Et.lgSize&&Fe.unshift(jt.splice(-Et.lgSize,jt.length).join(""));jt.length>Et.gSize;)Fe.unshift(jt.splice(-Et.gSize,jt.length).join(""));jt.length&&Fe.unshift(jt.join("")),en=Fe.join(Pe(Xe,kt)),We.length&&(en+=Pe(Xe,ii)+We.join("")),je&&(en+=Pe(Xe,v.Exponential)+"+"+je)}else en=Pe(Xe,v.Infinity);return en=$e<0&&!nr?Et.negPre+en+Et.negSuf:Et.posPre+en+Et.posSuf,en}($e,function ve($e,Et="-"){const Xe={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},kt=$e.split(";"),ii=kt[0],wi=kt[1],yi=-1!==ii.indexOf(".")?ii.split("."):[ii.substring(0,ii.lastIndexOf("0")+1),ii.substring(ii.lastIndexOf("0")+1)],en=yi[0],nr=yi[1]||"";Xe.posPre=en.substr(0,en.indexOf("#"));for(let It=0;It{class $e{transform(Xe,kt,ii){if(null==Xe)return null;if(!this.supports(Xe))throw Qn();return Xe.slice(kt,ii)}supports(Xe){return"string"==typeof Xe||Array.isArray(Xe)}}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275pipe=t.Yjl({name:"slice",type:$e,pure:!1}),$e})(),Dr=(()=>{class $e{}return $e.\u0275fac=function(Xe){return new(Xe||$e)},$e.\u0275mod=t.oAB({type:$e}),$e.\u0275inj=t.cJS({}),$e})();const aa="browser";function or($e){return $e===aa}function sa($e){return"server"===$e}let Kr=(()=>{class $e{}return $e.\u0275prov=(0,t.Yz7)({token:$e,providedIn:"root",factory:()=>new Rr((0,t.LFG)(d),window)}),$e})();class Rr{constructor(Et,Xe){this.document=Et,this.window=Xe,this.offset=()=>[0,0]}setOffset(Et){this.offset=Array.isArray(Et)?()=>Et:Et}getScrollPosition(){return this.supportsScrolling()?[this.window.pageXOffset,this.window.pageYOffset]:[0,0]}scrollToPosition(Et){this.supportsScrolling()&&this.window.scrollTo(Et[0],Et[1])}scrollToAnchor(Et){if(!this.supportsScrolling())return;const Xe=function Ta($e,Et){const Xe=$e.getElementById(Et)||$e.getElementsByName(Et)[0];if(Xe)return Xe;if("function"==typeof $e.createTreeWalker&&$e.body&&($e.body.createShadowRoot||$e.body.attachShadow)){const kt=$e.createTreeWalker($e.body,NodeFilter.SHOW_ELEMENT);let ii=kt.currentNode;for(;ii;){const wi=ii.shadowRoot;if(wi){const yi=wi.getElementById(Et)||wi.querySelector(`[name="${Et}"]`);if(yi)return yi}ii=kt.nextNode()}}return null}(this.document,Et);Xe&&(this.scrollToElement(Xe),Xe.focus())}setHistoryScrollRestoration(Et){if(this.supportScrollRestoration()){const Xe=this.window.history;Xe&&Xe.scrollRestoration&&(Xe.scrollRestoration=Et)}}scrollToElement(Et){const Xe=Et.getBoundingClientRect(),kt=Xe.left+this.window.pageXOffset,ii=Xe.top+this.window.pageYOffset,wi=this.offset();this.window.scrollTo(kt-wi[0],ii-wi[1])}supportScrollRestoration(){try{if(!this.supportsScrolling())return!1;const Et=Gr(this.window.history)||Gr(Object.getPrototypeOf(this.window.history));return!(!Et||!Et.writable&&!Et.set)}catch(Et){return!1}}supportsScrolling(){try{return!!this.window&&!!this.window.scrollTo&&"pageXOffset"in this.window}catch(Et){return!1}}}function Gr($e){return Object.getOwnPropertyDescriptor($e,"scrollRestoration")}class Xn{}},8138:(Be,K,p)=>{"use strict";p.d(K,{JF:()=>xe,LE:()=>Z,TP:()=>I,eN:()=>v});var t=p(9808),e=p(5e3),f=p(9646),M=p(8306),a=p(4351),C=p(9300),d=p(4004);class R{}class h{}class L{constructor(fe){this.normalizedNames=new Map,this.lazyUpdate=null,fe?this.lazyInit="string"==typeof fe?()=>{this.headers=new Map,fe.split("\n").forEach(Q=>{const ft=Q.indexOf(":");if(ft>0){const tt=Q.slice(0,ft),Dt=tt.toLowerCase(),di=Q.slice(ft+1).trim();this.maybeSetNormalizedName(tt,Dt),this.headers.has(Dt)?this.headers.get(Dt).push(di):this.headers.set(Dt,[di])}})}:()=>{this.headers=new Map,Object.keys(fe).forEach(Q=>{let ft=fe[Q];const tt=Q.toLowerCase();"string"==typeof ft&&(ft=[ft]),ft.length>0&&(this.headers.set(tt,ft),this.maybeSetNormalizedName(Q,tt))})}:this.headers=new Map}has(fe){return this.init(),this.headers.has(fe.toLowerCase())}get(fe){this.init();const Q=this.headers.get(fe.toLowerCase());return Q&&Q.length>0?Q[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(fe){return this.init(),this.headers.get(fe.toLowerCase())||null}append(fe,Q){return this.clone({name:fe,value:Q,op:"a"})}set(fe,Q){return this.clone({name:fe,value:Q,op:"s"})}delete(fe,Q){return this.clone({name:fe,value:Q,op:"d"})}maybeSetNormalizedName(fe,Q){this.normalizedNames.has(Q)||this.normalizedNames.set(Q,fe)}init(){this.lazyInit&&(this.lazyInit instanceof L?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(fe=>this.applyUpdate(fe)),this.lazyUpdate=null))}copyFrom(fe){fe.init(),Array.from(fe.headers.keys()).forEach(Q=>{this.headers.set(Q,fe.headers.get(Q)),this.normalizedNames.set(Q,fe.normalizedNames.get(Q))})}clone(fe){const Q=new L;return Q.lazyInit=this.lazyInit&&this.lazyInit instanceof L?this.lazyInit:this,Q.lazyUpdate=(this.lazyUpdate||[]).concat([fe]),Q}applyUpdate(fe){const Q=fe.name.toLowerCase();switch(fe.op){case"a":case"s":let ft=fe.value;if("string"==typeof ft&&(ft=[ft]),0===ft.length)return;this.maybeSetNormalizedName(fe.name,Q);const tt=("a"===fe.op?this.headers.get(Q):void 0)||[];tt.push(...ft),this.headers.set(Q,tt);break;case"d":const Dt=fe.value;if(Dt){let di=this.headers.get(Q);if(!di)return;di=di.filter(Yt=>-1===Dt.indexOf(Yt)),0===di.length?(this.headers.delete(Q),this.normalizedNames.delete(Q)):this.headers.set(Q,di)}else this.headers.delete(Q),this.normalizedNames.delete(Q)}}forEach(fe){this.init(),Array.from(this.normalizedNames.keys()).forEach(Q=>fe(this.normalizedNames.get(Q),this.headers.get(Q)))}}class w{encodeKey(fe){return E(fe)}encodeValue(fe){return E(fe)}decodeKey(fe){return decodeURIComponent(fe)}decodeValue(fe){return decodeURIComponent(fe)}}const S=/%(\d[a-f0-9])/gi,k={40:"@","3A":":",24:"$","2C":",","3B":";","2B":"+","3D":"=","3F":"?","2F":"/"};function E(Ce){return encodeURIComponent(Ce).replace(S,(fe,Q)=>{var ft;return null!==(ft=k[Q])&&void 0!==ft?ft:fe})}function B(Ce){return`${Ce}`}class Z{constructor(fe={}){if(this.updates=null,this.cloneFrom=null,this.encoder=fe.encoder||new w,fe.fromString){if(fe.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function D(Ce,fe){const Q=new Map;return Ce.length>0&&Ce.replace(/^\?/,"").split("&").forEach(tt=>{const Dt=tt.indexOf("="),[di,Yt]=-1==Dt?[fe.decodeKey(tt),""]:[fe.decodeKey(tt.slice(0,Dt)),fe.decodeValue(tt.slice(Dt+1))],Zt=Q.get(di)||[];Zt.push(Yt),Q.set(di,Zt)}),Q}(fe.fromString,this.encoder)}else fe.fromObject?(this.map=new Map,Object.keys(fe.fromObject).forEach(Q=>{const ft=fe.fromObject[Q];this.map.set(Q,Array.isArray(ft)?ft:[ft])})):this.map=null}has(fe){return this.init(),this.map.has(fe)}get(fe){this.init();const Q=this.map.get(fe);return Q?Q[0]:null}getAll(fe){return this.init(),this.map.get(fe)||null}keys(){return this.init(),Array.from(this.map.keys())}append(fe,Q){return this.clone({param:fe,value:Q,op:"a"})}appendAll(fe){const Q=[];return Object.keys(fe).forEach(ft=>{const tt=fe[ft];Array.isArray(tt)?tt.forEach(Dt=>{Q.push({param:ft,value:Dt,op:"a"})}):Q.push({param:ft,value:tt,op:"a"})}),this.clone(Q)}set(fe,Q){return this.clone({param:fe,value:Q,op:"s"})}delete(fe,Q){return this.clone({param:fe,value:Q,op:"d"})}toString(){return this.init(),this.keys().map(fe=>{const Q=this.encoder.encodeKey(fe);return this.map.get(fe).map(ft=>Q+"="+this.encoder.encodeValue(ft)).join("&")}).filter(fe=>""!==fe).join("&")}clone(fe){const Q=new Z({encoder:this.encoder});return Q.cloneFrom=this.cloneFrom||this,Q.updates=(this.updates||[]).concat(fe),Q}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(fe=>this.map.set(fe,this.cloneFrom.map.get(fe))),this.updates.forEach(fe=>{switch(fe.op){case"a":case"s":const Q=("a"===fe.op?this.map.get(fe.param):void 0)||[];Q.push(B(fe.value)),this.map.set(fe.param,Q);break;case"d":if(void 0===fe.value){this.map.delete(fe.param);break}{let ft=this.map.get(fe.param)||[];const tt=ft.indexOf(B(fe.value));-1!==tt&&ft.splice(tt,1),ft.length>0?this.map.set(fe.param,ft):this.map.delete(fe.param)}}}),this.cloneFrom=this.updates=null)}}class ae{constructor(){this.map=new Map}set(fe,Q){return this.map.set(fe,Q),this}get(fe){return this.map.has(fe)||this.map.set(fe,fe.defaultValue()),this.map.get(fe)}delete(fe){return this.map.delete(fe),this}has(fe){return this.map.has(fe)}keys(){return this.map.keys()}}function ue(Ce){return"undefined"!=typeof ArrayBuffer&&Ce instanceof ArrayBuffer}function ie(Ce){return"undefined"!=typeof Blob&&Ce instanceof Blob}function re(Ce){return"undefined"!=typeof FormData&&Ce instanceof FormData}class q{constructor(fe,Q,ft,tt){let Dt;if(this.url=Q,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=fe.toUpperCase(),function ee(Ce){switch(Ce){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||tt?(this.body=void 0!==ft?ft:null,Dt=tt):Dt=ft,Dt&&(this.reportProgress=!!Dt.reportProgress,this.withCredentials=!!Dt.withCredentials,Dt.responseType&&(this.responseType=Dt.responseType),Dt.headers&&(this.headers=Dt.headers),Dt.context&&(this.context=Dt.context),Dt.params&&(this.params=Dt.params)),this.headers||(this.headers=new L),this.context||(this.context=new ae),this.params){const di=this.params.toString();if(0===di.length)this.urlWithParams=Q;else{const Yt=Q.indexOf("?");this.urlWithParams=Q+(-1===Yt?"?":Ytgt.set(it,fe.setHeaders[it]),ui)),fe.setParams&&(Ot=Object.keys(fe.setParams).reduce((gt,it)=>gt.set(it,fe.setParams[it]),Ot)),new q(ft,tt,di,{params:Ot,headers:ui,context:Nt,reportProgress:Zt,responseType:Dt,withCredentials:Yt})}}var _e=(()=>((_e=_e||{})[_e.Sent=0]="Sent",_e[_e.UploadProgress=1]="UploadProgress",_e[_e.ResponseHeader=2]="ResponseHeader",_e[_e.DownloadProgress=3]="DownloadProgress",_e[_e.Response=4]="Response",_e[_e.User=5]="User",_e))();class x{constructor(fe,Q=200,ft="OK"){this.headers=fe.headers||new L,this.status=void 0!==fe.status?fe.status:Q,this.statusText=fe.statusText||ft,this.url=fe.url||null,this.ok=this.status>=200&&this.status<300}}class i extends x{constructor(fe={}){super(fe),this.type=_e.ResponseHeader}clone(fe={}){return new i({headers:fe.headers||this.headers,status:void 0!==fe.status?fe.status:this.status,statusText:fe.statusText||this.statusText,url:fe.url||this.url||void 0})}}class r extends x{constructor(fe={}){super(fe),this.type=_e.Response,this.body=void 0!==fe.body?fe.body:null}clone(fe={}){return new r({body:void 0!==fe.body?fe.body:this.body,headers:fe.headers||this.headers,status:void 0!==fe.status?fe.status:this.status,statusText:fe.statusText||this.statusText,url:fe.url||this.url||void 0})}}class u extends x{constructor(fe){super(fe,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${fe.url||"(unknown url)"}`:`Http failure response for ${fe.url||"(unknown url)"}: ${fe.status} ${fe.statusText}`,this.error=fe.error||null}}function c(Ce,fe){return{body:fe,headers:Ce.headers,context:Ce.context,observe:Ce.observe,params:Ce.params,reportProgress:Ce.reportProgress,responseType:Ce.responseType,withCredentials:Ce.withCredentials}}let v=(()=>{class Ce{constructor(Q){this.handler=Q}request(Q,ft,tt={}){let Dt;if(Q instanceof q)Dt=Q;else{let Zt,ui;Zt=tt.headers instanceof L?tt.headers:new L(tt.headers),tt.params&&(ui=tt.params instanceof Z?tt.params:new Z({fromObject:tt.params})),Dt=new q(Q,ft,void 0!==tt.body?tt.body:null,{headers:Zt,context:tt.context,params:ui,reportProgress:tt.reportProgress,responseType:tt.responseType||"json",withCredentials:tt.withCredentials})}const di=(0,f.of)(Dt).pipe((0,a.b)(Zt=>this.handler.handle(Zt)));if(Q instanceof q||"events"===tt.observe)return di;const Yt=di.pipe((0,C.h)(Zt=>Zt instanceof r));switch(tt.observe||"body"){case"body":switch(Dt.responseType){case"arraybuffer":return Yt.pipe((0,d.U)(Zt=>{if(null!==Zt.body&&!(Zt.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Zt.body}));case"blob":return Yt.pipe((0,d.U)(Zt=>{if(null!==Zt.body&&!(Zt.body instanceof Blob))throw new Error("Response is not a Blob.");return Zt.body}));case"text":return Yt.pipe((0,d.U)(Zt=>{if(null!==Zt.body&&"string"!=typeof Zt.body)throw new Error("Response is not a string.");return Zt.body}));default:return Yt.pipe((0,d.U)(Zt=>Zt.body))}case"response":return Yt;default:throw new Error(`Unreachable: unhandled observe type ${tt.observe}}`)}}delete(Q,ft={}){return this.request("DELETE",Q,ft)}get(Q,ft={}){return this.request("GET",Q,ft)}head(Q,ft={}){return this.request("HEAD",Q,ft)}jsonp(Q,ft){return this.request("JSONP",Q,{params:(new Z).append(ft,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(Q,ft={}){return this.request("OPTIONS",Q,ft)}patch(Q,ft,tt={}){return this.request("PATCH",Q,c(tt,ft))}post(Q,ft,tt={}){return this.request("POST",Q,c(tt,ft))}put(Q,ft,tt={}){return this.request("PUT",Q,c(tt,ft))}}return Ce.\u0275fac=function(Q){return new(Q||Ce)(e.LFG(R))},Ce.\u0275prov=e.Yz7({token:Ce,factory:Ce.\u0275fac}),Ce})();class T{constructor(fe,Q){this.next=fe,this.interceptor=Q}handle(fe){return this.interceptor.intercept(fe,this.next)}}const I=new e.OlP("HTTP_INTERCEPTORS");let y=(()=>{class Ce{intercept(Q,ft){return ft.handle(Q)}}return Ce.\u0275fac=function(Q){return new(Q||Ce)},Ce.\u0275prov=e.Yz7({token:Ce,factory:Ce.\u0275fac}),Ce})();const Pe=/^\)\]\}',?\n/;let j=(()=>{class Ce{constructor(Q){this.xhrFactory=Q}handle(Q){if("JSONP"===Q.method)throw new Error("Attempted to construct Jsonp request without HttpClientJsonpModule installed.");return new M.y(ft=>{const tt=this.xhrFactory.build();if(tt.open(Q.method,Q.urlWithParams),Q.withCredentials&&(tt.withCredentials=!0),Q.headers.forEach((it,bt)=>tt.setRequestHeader(it,bt.join(","))),Q.headers.has("Accept")||tt.setRequestHeader("Accept","application/json, text/plain, */*"),!Q.headers.has("Content-Type")){const it=Q.detectContentTypeHeader();null!==it&&tt.setRequestHeader("Content-Type",it)}if(Q.responseType){const it=Q.responseType.toLowerCase();tt.responseType="json"!==it?it:"text"}const Dt=Q.serializeBody();let di=null;const Yt=()=>{if(null!==di)return di;const it=tt.statusText||"OK",bt=new L(tt.getAllResponseHeaders()),ei=function Ee(Ce){return"responseURL"in Ce&&Ce.responseURL?Ce.responseURL:/^X-Request-URL:/m.test(Ce.getAllResponseHeaders())?Ce.getResponseHeader("X-Request-URL"):null}(tt)||Q.url;return di=new i({headers:bt,status:tt.status,statusText:it,url:ei}),di},Zt=()=>{let{headers:it,status:bt,statusText:ei,url:Qt}=Yt(),Re=null;204!==bt&&(Re=void 0===tt.response?tt.responseText:tt.response),0===bt&&(bt=Re?200:0);let ke=bt>=200&&bt<300;if("json"===Q.responseType&&"string"==typeof Re){const de=Re;Re=Re.replace(Pe,"");try{Re=""!==Re?JSON.parse(Re):null}catch(ye){Re=de,ke&&(ke=!1,Re={error:ye,text:Re})}}ke?(ft.next(new r({body:Re,headers:it,status:bt,statusText:ei,url:Qt||void 0})),ft.complete()):ft.error(new u({error:Re,headers:it,status:bt,statusText:ei,url:Qt||void 0}))},ui=it=>{const{url:bt}=Yt(),ei=new u({error:it,status:tt.status||0,statusText:tt.statusText||"Unknown Error",url:bt||void 0});ft.error(ei)};let Ot=!1;const Nt=it=>{Ot||(ft.next(Yt()),Ot=!0);let bt={type:_e.DownloadProgress,loaded:it.loaded};it.lengthComputable&&(bt.total=it.total),"text"===Q.responseType&&!!tt.responseText&&(bt.partialText=tt.responseText),ft.next(bt)},gt=it=>{let bt={type:_e.UploadProgress,loaded:it.loaded};it.lengthComputable&&(bt.total=it.total),ft.next(bt)};return tt.addEventListener("load",Zt),tt.addEventListener("error",ui),tt.addEventListener("timeout",ui),tt.addEventListener("abort",ui),Q.reportProgress&&(tt.addEventListener("progress",Nt),null!==Dt&&tt.upload&&tt.upload.addEventListener("progress",gt)),tt.send(Dt),ft.next({type:_e.Sent}),()=>{tt.removeEventListener("error",ui),tt.removeEventListener("abort",ui),tt.removeEventListener("load",Zt),tt.removeEventListener("timeout",ui),Q.reportProgress&&(tt.removeEventListener("progress",Nt),null!==Dt&&tt.upload&&tt.upload.removeEventListener("progress",gt)),tt.readyState!==tt.DONE&&tt.abort()}})}}return Ce.\u0275fac=function(Q){return new(Q||Ce)(e.LFG(t.JF))},Ce.\u0275prov=e.Yz7({token:Ce,factory:Ce.\u0275fac}),Ce})();const Ve=new e.OlP("XSRF_COOKIE_NAME"),Me=new e.OlP("XSRF_HEADER_NAME");class J{}let Ie=(()=>{class Ce{constructor(Q,ft,tt){this.doc=Q,this.platform=ft,this.cookieName=tt,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const Q=this.doc.cookie||"";return Q!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,t.Mx)(Q,this.cookieName),this.lastCookieString=Q),this.lastToken}}return Ce.\u0275fac=function(Q){return new(Q||Ce)(e.LFG(t.K0),e.LFG(e.Lbi),e.LFG(Ve))},Ce.\u0275prov=e.Yz7({token:Ce,factory:Ce.\u0275fac}),Ce})(),ut=(()=>{class Ce{constructor(Q,ft){this.tokenService=Q,this.headerName=ft}intercept(Q,ft){const tt=Q.url.toLowerCase();if("GET"===Q.method||"HEAD"===Q.method||tt.startsWith("http://")||tt.startsWith("https://"))return ft.handle(Q);const Dt=this.tokenService.getToken();return null!==Dt&&!Q.headers.has(this.headerName)&&(Q=Q.clone({headers:Q.headers.set(this.headerName,Dt)})),ft.handle(Q)}}return Ce.\u0275fac=function(Q){return new(Q||Ce)(e.LFG(J),e.LFG(Me))},Ce.\u0275prov=e.Yz7({token:Ce,factory:Ce.\u0275fac}),Ce})(),Oe=(()=>{class Ce{constructor(Q,ft){this.backend=Q,this.injector=ft,this.chain=null}handle(Q){if(null===this.chain){const ft=this.injector.get(I,[]);this.chain=ft.reduceRight((tt,Dt)=>new T(tt,Dt),this.backend)}return this.chain.handle(Q)}}return Ce.\u0275fac=function(Q){return new(Q||Ce)(e.LFG(h),e.LFG(e.zs3))},Ce.\u0275prov=e.Yz7({token:Ce,factory:Ce.\u0275fac}),Ce})(),Te=(()=>{class Ce{static disable(){return{ngModule:Ce,providers:[{provide:ut,useClass:y}]}}static withOptions(Q={}){return{ngModule:Ce,providers:[Q.cookieName?{provide:Ve,useValue:Q.cookieName}:[],Q.headerName?{provide:Me,useValue:Q.headerName}:[]]}}}return Ce.\u0275fac=function(Q){return new(Q||Ce)},Ce.\u0275mod=e.oAB({type:Ce}),Ce.\u0275inj=e.cJS({providers:[ut,{provide:I,useExisting:ut,multi:!0},{provide:J,useClass:Ie},{provide:Ve,useValue:"XSRF-TOKEN"},{provide:Me,useValue:"X-XSRF-TOKEN"}]}),Ce})(),xe=(()=>{class Ce{}return Ce.\u0275fac=function(Q){return new(Q||Ce)},Ce.\u0275mod=e.oAB({type:Ce}),Ce.\u0275inj=e.cJS({providers:[v,{provide:R,useClass:Oe},j,{provide:h,useExisting:j}],imports:[[Te.withOptions({cookieName:"XSRF-TOKEN",headerName:"X-XSRF-TOKEN"})]]}),Ce})()},5e3:(Be,K,p)=>{"use strict";p.d(K,{$8M:()=>Yl,$Z:()=>Bd,AFp:()=>km,ALo:()=>xf,AaK:()=>R,AsE:()=>j0,BQk:()=>R0,CHM:()=>zs,CRH:()=>v4,CZH:()=>S4,CqO:()=>F0,DdM:()=>qp,Dn7:()=>lm,EJc:()=>W5,EiD:()=>cc,EpF:()=>Zd,F$t:()=>Qd,F4k:()=>H0,FYo:()=>_f,FiY:()=>wl,G48:()=>ug,Gf:()=>mm,GfV:()=>Gp,GkF:()=>Gd,Gpc:()=>w,Gre:()=>Xh,HOy:()=>r4,Hsn:()=>Ah,Ikx:()=>kn,JOm:()=>Qs,JVY:()=>u3,Jf7:()=>M2,L6k:()=>h3,LAX:()=>p3,LFG:()=>Ua,LSH:()=>Ht,Lbi:()=>B5,MAs:()=>Cs,MGl:()=>Hc,NdJ:()=>U1,O4$:()=>br,OlP:()=>Yr,Oqu:()=>W0,PXZ:()=>Um,PiD:()=>Zs,Q6J:()=>P0,QGY:()=>us,Qsj:()=>J8,R0b:()=>po,RDi:()=>Gr,Rgc:()=>r3,SBq:()=>e3,Sil:()=>K5,Suo:()=>gm,TTD:()=>ya,TgZ:()=>B1,Tol:()=>Vh,Udp:()=>B0,VKq:()=>Jp,VLi:()=>ag,W1O:()=>Of,WFA:()=>Wd,WLB:()=>bf,X6Q:()=>jm,XFs:()=>we,Xpm:()=>ht,Y36:()=>pl,YKP:()=>Yp,YNc:()=>S0,Yjl:()=>ot,Yz7:()=>X,ZZ4:()=>n6,_Bn:()=>Fp,_UZ:()=>Gl,_Vd:()=>l4,_c5:()=>Sg,_uU:()=>n4,aQg:()=>r6,c2e:()=>G5,cJS:()=>be,cg1:()=>Pa,d8E:()=>wn,dDg:()=>Fm,deG:()=>go,dqk:()=>ui,eBb:()=>f3,eFA:()=>jf,ekj:()=>t4,f3M:()=>ec,g9A:()=>Bf,h0i:()=>Y1,hGG:()=>Eg,hYB:()=>z0,hij:()=>Y0,iGM:()=>Df,ifc:()=>tt,ip1:()=>Pm,kEZ:()=>Xp,kL8:()=>Vr,kcU:()=>Ra,lG2:()=>Ge,lcZ:()=>sm,lnq:()=>K0,mCW:()=>Ho,n5z:()=>Wl,n_E:()=>f4,oAB:()=>rt,oJD:()=>ne,oxw:()=>Kd,pB0:()=>m3,q3G:()=>P,qLn:()=>g1,qOj:()=>Md,qZA:()=>Rc,qzn:()=>yo,s9C:()=>qd,sBO:()=>A4,sIi:()=>O1,s_b:()=>m4,soG:()=>Uf,tBr:()=>vo,tb:()=>Rm,tp0:()=>so,uIk:()=>Ed,vHH:()=>E,vpe:()=>Ko,wAp:()=>sn,xi3:()=>om,xp6:()=>G3,yhl:()=>u2,ynx:()=>N0,z2F:()=>Jf,z3N:()=>Ys,zSh:()=>md,zs3:()=>wo});var t=p(7579),e=p(727),f=p(8306),M=p(6451),a=p(3099);function C(s){for(let l in s)if(s[l]===C)return l;throw Error("Could not find renamed property on target object.")}function d(s,l){for(const g in l)l.hasOwnProperty(g)&&!s.hasOwnProperty(g)&&(s[g]=l[g])}function R(s){if("string"==typeof s)return s;if(Array.isArray(s))return"["+s.map(R).join(", ")+"]";if(null==s)return""+s;if(s.overriddenName)return`${s.overriddenName}`;if(s.name)return`${s.name}`;const l=s.toString();if(null==l)return""+l;const g=l.indexOf("\n");return-1===g?l:l.substring(0,g)}function h(s,l){return null==s||""===s?null===l?"":l:null==l||""===l?s:s+" "+l}const L=C({__forward_ref__:C});function w(s){return s.__forward_ref__=w,s.toString=function(){return R(this())},s}function D(s){return S(s)?s():s}function S(s){return"function"==typeof s&&s.hasOwnProperty(L)&&s.__forward_ref__===w}class E extends Error{constructor(l,g){super(function B(s,l){return`NG0${Math.abs(s)}${l?": "+l:""}`}(l,g)),this.code=l}}function Z(s){return"string"==typeof s?s:null==s?"":String(s)}function Y(s){return"function"==typeof s?s.name||s.toString():"object"==typeof s&&null!=s&&"function"==typeof s.type?s.type.name||s.type.toString():Z(s)}function ie(s,l){const g=l?` in ${l}`:"";throw new E(-201,`No provider for ${Y(s)} found${g}`)}function n(s,l){null==s&&function _(s,l,g,A){throw new Error(`ASSERTION ERROR: ${s}`+(null==A?"":` [Expected=> ${g} ${A} ${l} <=Actual]`))}(l,s,null,"!=")}function X(s){return{token:s.token,providedIn:s.providedIn||null,factory:s.factory,value:void 0}}function be(s){return{providers:s.providers||[],imports:s.imports||[]}}function Pe(s){return Ee(s,J)||Ee(s,ut)}function Ee(s,l){return s.hasOwnProperty(l)?s[l]:null}function Me(s){return s&&(s.hasOwnProperty(Ie)||s.hasOwnProperty(Oe))?s[Ie]:null}const J=C({\u0275prov:C}),Ie=C({\u0275inj:C}),ut=C({ngInjectableDef:C}),Oe=C({ngInjectorDef:C});var we=(()=>((we=we||{})[we.Default=0]="Default",we[we.Host=1]="Host",we[we.Self=2]="Self",we[we.SkipSelf=4]="SkipSelf",we[we.Optional=8]="Optional",we))();let ce;function xe(s){const l=ce;return ce=s,l}function W(s,l,g){const A=Pe(s);return A&&"root"==A.providedIn?void 0===A.value?A.value=A.factory():A.value:g&we.Optional?null:void 0!==l?l:void ie(R(s),"Injector")}function Ce(s){return{toString:s}.toString()}var fe=(()=>((fe=fe||{})[fe.OnPush=0]="OnPush",fe[fe.Default=1]="Default",fe))(),tt=(()=>{return(s=tt||(tt={}))[s.Emulated=0]="Emulated",s[s.None=2]="None",s[s.ShadowDom=3]="ShadowDom",tt;var s})();const Dt="undefined"!=typeof globalThis&&globalThis,di="undefined"!=typeof window&&window,Yt="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,ui=Dt||"undefined"!=typeof global&&global||di||Yt,gt={},it=[],bt=C({\u0275cmp:C}),ei=C({\u0275dir:C}),Qt=C({\u0275pipe:C}),Re=C({\u0275mod:C}),ke=C({\u0275fac:C}),de=C({__NG_ELEMENT_ID__:C});let ye=0;function ht(s){return Ce(()=>{const g={},A={type:s.type,providersResolver:null,decls:s.decls,vars:s.vars,factory:null,template:s.template||null,consts:s.consts||null,ngContentSelectors:s.ngContentSelectors,hostBindings:s.hostBindings||null,hostVars:s.hostVars||0,hostAttrs:s.hostAttrs||null,contentQueries:s.contentQueries||null,declaredInputs:g,inputs:null,outputs:null,exportAs:s.exportAs||null,onPush:s.changeDetection===fe.OnPush,directiveDefs:null,pipeDefs:null,selectors:s.selectors||it,viewQuery:s.viewQuery||null,features:s.features||null,data:s.data||{},encapsulation:s.encapsulation||tt.Emulated,id:"c",styles:s.styles||it,_:null,setInput:null,schemas:s.schemas||null,tView:null},F=s.directives,G=s.features,le=s.pipes;return A.id+=ye++,A.inputs=Ae(s.inputs,g),A.outputs=Ae(s.outputs),G&&G.forEach(De=>De(A)),A.directiveDefs=F?()=>("function"==typeof F?F():F).map(Ft):null,A.pipeDefs=le?()=>("function"==typeof le?le():le).map(nt):null,A})}function Ft(s){return lt(s)||function Ct(s){return s[ei]||null}(s)}function nt(s){return function mi(s){return s[Qt]||null}(s)}const He={};function rt(s){return Ce(()=>{const l={type:s.type,bootstrap:s.bootstrap||it,declarations:s.declarations||it,imports:s.imports||it,exports:s.exports||it,transitiveCompileScopes:null,schemas:s.schemas||null,id:s.id||null};return null!=s.id&&(He[s.id]=s.type),l})}function Ae(s,l){if(null==s)return gt;const g={};for(const A in s)if(s.hasOwnProperty(A)){let F=s[A],G=F;Array.isArray(F)&&(G=F[1],F=F[0]),g[F]=A,l&&(l[F]=G)}return g}const Ge=ht;function ot(s){return{type:s.type,name:s.name,factory:null,pure:!1!==s.pure,onDestroy:s.type.prototype.ngOnDestroy||null}}function lt(s){return s[bt]||null}function Jt(s,l){const g=s[Re]||null;if(!g&&!0===l)throw new Error(`Type ${R(s)} does not have '\u0275mod' property.`);return g}function Ni(s){return Array.isArray(s)&&"object"==typeof s[1]}function pn(s){return Array.isArray(s)&&!0===s[1]}function Dn(s){return 0!=(8&s.flags)}function Nn(s){return 2==(2&s.flags)}function tr(s){return 1==(1&s.flags)}function gn(s){return null!==s.template}function Ei(s){return 0!=(512&s[2])}function jr(s,l){return s.hasOwnProperty(ke)?s[ke]:null}class ja{constructor(l,g,A){this.previousValue=l,this.currentValue=g,this.firstChange=A}isFirstChange(){return this.firstChange}}function ya(){return cr}function cr(s){return s.type.prototype.ngOnChanges&&(s.setInput=Nr),ba}function ba(){const s=aa(this),l=null==s?void 0:s.current;if(l){const g=s.previous;if(g===gt)s.previous=l;else for(let A in l)g[A]=l[A];s.current=null,this.ngOnChanges(l)}}function Nr(s,l,g,A){const F=aa(s)||function Ea(s,l){return s[Dr]=l}(s,{previous:gt,current:null}),G=F.current||(F.current={}),le=F.previous,De=this.declaredInputs[g],Ze=le[De];G[De]=new ja(Ze&&Ze.currentValue,l,le===gt),s[A]=l}ya.ngInherit=!0;const Dr="__ngSimpleChanges__";function aa(s){return s[Dr]||null}let Rr;function Gr(s){Rr=s}function Ta(){return void 0!==Rr?Rr:"undefined"!=typeof document?document:void 0}function Xn(s){return!!s.listen}const $e={createRenderer:(s,l)=>Ta()};function Xe(s){for(;Array.isArray(s);)s=s[0];return s}function wi(s,l){return Xe(l[s])}function yi(s,l){return Xe(l[s.index])}function nr(s,l){return s.data[l]}function Vn(s,l){return s[l]}function It(s,l){const g=l[s];return Ni(g)?g:g[0]}function ci(s){return 4==(4&s[2])}function vt(s){return 128==(128&s[2])}function ki(s,l){return null==l?null:s[l]}function je(s){s[18]=0}function We(s,l){s[5]+=l;let g=s,A=s[3];for(;null!==A&&(1===l&&1===g[5]||-1===l&&0===g[5]);)A[5]+=l,g=A,A=A[3]}const Fe={lFrame:Pn(null),bindingsEnabled:!0};function Xa(){return Fe.bindingsEnabled}function Fi(){return Fe.lFrame.lView}function Yn(){return Fe.lFrame.tView}function zs(s){return Fe.lFrame.contextLView=s,s[8]}function Er(){let s=io();for(;null!==s&&64===s.type;)s=s.parent;return s}function io(){return Fe.lFrame.currentTNode}function Aa(s,l){const g=Fe.lFrame;g.currentTNode=s,g.isParent=l}function Os(){return Fe.lFrame.isParent}function Ps(){Fe.lFrame.isParent=!1}function Zr(){const s=Fe.lFrame;let l=s.bindingRootIndex;return-1===l&&(l=s.bindingRootIndex=s.tView.bindingStartIndex),l}function Na(){return Fe.lFrame.bindingIndex}function oe(){return Fe.lFrame.bindingIndex++}function pe(s){const l=Fe.lFrame,g=l.bindingIndex;return l.bindingIndex=l.bindingIndex+s,g}function Vt(s,l){const g=Fe.lFrame;g.bindingIndex=g.bindingRootIndex=s,ri(l)}function ri(s){Fe.lFrame.currentDirectiveIndex=s}function gi(s){const l=Fe.lFrame.currentDirectiveIndex;return-1===l?null:s[l]}function Ai(){return Fe.lFrame.currentQueryIndex}function Xi(s){Fe.lFrame.currentQueryIndex=s}function dn(s){const l=s[1];return 2===l.type?l.declTNode:1===l.type?s[6]:null}function An(s,l,g){if(g&we.SkipSelf){let F=l,G=s;for(;!(F=F.parent,null!==F||g&we.Host||(F=dn(G),null===F||(G=G[15],10&F.type))););if(null===F)return!1;l=F,s=G}const A=Fe.lFrame=En();return A.currentTNode=l,A.lView=s,!0}function Un(s){const l=En(),g=s[1];Fe.lFrame=l,l.currentTNode=g.firstChild,l.lView=s,l.tView=g,l.contextLView=s,l.bindingIndex=g.bindingStartIndex,l.inI18n=!1}function En(){const s=Fe.lFrame,l=null===s?null:s.child;return null===l?Pn(s):l}function Pn(s){const l={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:s,child:null,inI18n:!1};return null!==s&&(s.child=l),l}function ar(){const s=Fe.lFrame;return Fe.lFrame=s.parent,s.currentTNode=null,s.lView=null,s}const Hr=ar;function Cr(){const s=ar();s.isParent=!0,s.tView=null,s.selectedIndex=-1,s.contextLView=null,s.elementDepthCount=0,s.currentDirectiveIndex=-1,s.currentNamespace=null,s.bindingRootIndex=-1,s.bindingIndex=-1,s.currentQueryIndex=0}function Mr(){return Fe.lFrame.selectedIndex}function Qr(s){Fe.lFrame.selectedIndex=s}function Gn(){const s=Fe.lFrame;return nr(s.tView,s.selectedIndex)}function br(){Fe.lFrame.currentNamespace="svg"}function Ra(){!function Ss(){Fe.lFrame.currentNamespace=null}()}function gs(s,l){for(let g=l.directiveStart,A=l.directiveEnd;g=A)break}else l[Ze]<0&&(s[18]+=65536),(De>11>16&&(3&s[2])===l){s[2]+=2048;try{G.call(De)}finally{}}}else try{G.call(De)}finally{}}class Da{constructor(l,g,A){this.factory=l,this.resolving=!1,this.canSeeViewProviders=g,this.injectImpl=A}}function pi(s,l,g){const A=Xn(s);let F=0;for(;Fl){le=G-1;break}}}for(;G>16}(s),A=l;for(;g>0;)A=A[15],g--;return A}let ca=!0;function ze(s){const l=ca;return ca=s,l}let ct=0;function qt(s,l){const g=Oi(s,l);if(-1!==g)return g;const A=l[1];A.firstCreatePass&&(s.injectorIndex=l.length,ai(A.data,s),ai(l,null),ai(A.blueprint,null));const F=an(s,l),G=s.injectorIndex;if(nn(F)){const le=un(F),De=rr(F,l),Ze=De[1].data;for(let pt=0;pt<8;pt++)l[G+pt]=De[le+pt]|Ze[le+pt]}return l[G+8]=F,G}function ai(s,l){s.push(0,0,0,0,0,0,0,0,l)}function Oi(s,l){return-1===s.injectorIndex||s.parent&&s.parent.injectorIndex===s.injectorIndex||null===l[s.injectorIndex+8]?-1:s.injectorIndex}function an(s,l){if(s.parent&&-1!==s.parent.injectorIndex)return s.parent.injectorIndex;let g=0,A=null,F=l;for(;null!==F;){const G=F[1],le=G.type;if(A=2===le?G.declTNode:1===le?F[6]:null,null===A)return-1;if(g++,F=F[15],-1!==A.injectorIndex)return A.injectorIndex|g<<16}return-1}function On(s,l,g){!function Pt(s,l,g){let A;"string"==typeof g?A=g.charCodeAt(0)||0:g.hasOwnProperty(de)&&(A=g[de]),null==A&&(A=g[de]=ct++);const F=255&A;l.data[s+(F>>5)]|=1<=0?255&l:Qo:l}(g);if("function"==typeof G){if(!An(l,s,A))return A&we.Host?_r(F,g,A):ur(l,g,A,F);try{const le=G(A);if(null!=le||A&we.Optional)return le;ie(g)}finally{Hr()}}else if("number"==typeof G){let le=null,De=Oi(s,l),Ze=-1,pt=A&we.Host?l[16][6]:null;for((-1===De||A&we.SkipSelf)&&(Ze=-1===De?an(s,l):l[De+8],-1!==Ze&&K1(A,!1)?(le=l[1],De=un(Ze),l=rr(Ze,l)):De=-1);-1!==De;){const Lt=l[1];if(no(G,De,Lt.data)){const Kt=Es(De,l,g,le,A,pt);if(Kt!==ks)return Kt}Ze=l[De+8],-1!==Ze&&K1(A,l[1].data[De+8]===pt)&&no(G,De,l)?(le=Lt,De=un(Ze),l=rr(Ze,l)):De=-1}}}return ur(l,g,A,F)}const ks={};function Qo(){return new qo(Er(),Fi())}function Es(s,l,g,A,F,G){const le=l[1],De=le.data[s+8],Lt=Ia(De,le,g,null==A?Nn(De)&&ca:A!=le&&0!=(3&De.type),F&we.Host&&G===De);return null!==Lt?Gs(l,le,Lt,De):ks}function Ia(s,l,g,A,F){const G=s.providerIndexes,le=l.data,De=1048575&G,Ze=s.directiveStart,Lt=G>>20,li=F?De+Lt:s.directiveEnd;for(let vi=A?De:De+Lt;vi=Ze&&Hi.type===g)return vi}if(F){const vi=le[Ze];if(vi&&gn(vi)&&vi.type===g)return Ze}return null}function Gs(s,l,g,A){let F=s[g];const G=l.data;if(function Wr(s){return s instanceof Da}(F)){const le=F;le.resolving&&function ae(s,l){const g=l?`. Dependency path: ${l.join(" > ")} > ${s}`:"";throw new E(-200,`Circular dependency in DI detected for ${s}${g}`)}(Y(G[g]));const De=ze(le.canSeeViewProviders);le.resolving=!0;const Ze=le.injectImpl?xe(le.injectImpl):null;An(s,A,we.Default);try{F=s[g]=le.factory(void 0,G,s,A),l.firstCreatePass&&g>=A.directiveStart&&function La(s,l,g){const{ngOnChanges:A,ngOnInit:F,ngDoCheck:G}=l.type.prototype;if(A){const le=cr(l);(g.preOrderHooks||(g.preOrderHooks=[])).push(s,le),(g.preOrderCheckHooks||(g.preOrderCheckHooks=[])).push(s,le)}F&&(g.preOrderHooks||(g.preOrderHooks=[])).push(0-s,F),G&&((g.preOrderHooks||(g.preOrderHooks=[])).push(s,G),(g.preOrderCheckHooks||(g.preOrderCheckHooks=[])).push(s,G))}(g,G[g],l)}finally{null!==Ze&&xe(Ze),ze(De),le.resolving=!1,Hr()}}return F}function no(s,l,g){return!!(g[l+(s>>5)]&1<{const l=s.prototype.constructor,g=l[ke]||ml(l),A=Object.prototype;let F=Object.getPrototypeOf(s.prototype).constructor;for(;F&&F!==A;){const G=F[ke]||ml(F);if(G&&G!==g)return G;F=Object.getPrototypeOf(F)}return G=>new G})}function ml(s){return S(s)?()=>{const l=ml(D(s));return l&&l()}:jr(s)}function Yl(s){return function Cn(s,l){if("class"===l)return s.classes;if("style"===l)return s.styles;const g=s.attrs;if(g){const A=g.length;let F=0;for(;F{const A=function jl(s){return function(...g){if(s){const A=s(...g);for(const F in A)this[F]=A[F]}}}(l);function F(...G){if(this instanceof F)return A.apply(this,G),this;const le=new F(...G);return De.annotation=le,De;function De(Ze,pt,Lt){const Kt=Ze.hasOwnProperty(Ao)?Ze[Ao]:Object.defineProperty(Ze,Ao,{value:[]})[Ao];for(;Kt.length<=Lt;)Kt.push(null);return(Kt[Lt]=Kt[Lt]||[]).push(le),Ze}}return g&&(F.prototype=Object.create(g.prototype)),F.prototype.ngMetadataName=s,F.annotationCls=F,F})}class Yr{constructor(l,g){this._desc=l,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof g?this.__NG_ELEMENT_ID__=g:void 0!==g&&(this.\u0275prov=X({token:this,providedIn:g.providedIn||"root",factory:g.factory}))}toString(){return`InjectionToken ${this._desc}`}}const go=new Yr("AnalyzeForEntryComponents");function ls(s,l){void 0===l&&(l=s);for(let g=0;gArray.isArray(g)?es(g,l):l(g))}function qc(s,l,g){l>=s.length?s.push(g):s.splice(l,0,g)}function _l(s,l){return l>=s.length-1?s.pop():s.splice(l,1)[0]}function $o(s,l){const g=[];for(let A=0;A=0?s[1|A]=g:(A=~A,function e2(s,l,g,A){let F=s.length;if(F==l)s.push(g,A);else if(1===F)s.push(A,s[0]),s[0]=g;else{for(F--,s.push(s[F-1],s[F]);F>l;)s[F]=s[F-2],F--;s[l]=g,s[l+1]=A}}(s,A,l,g)),A}function yl(s,l){const g=Fr(s,l);if(g>=0)return s[1|g]}function Fr(s,l){return function bl(s,l,g){let A=0,F=s.length>>g;for(;F!==A;){const G=A+(F-A>>1),le=s[G<l?F=G:A=G+1}return~(F<({token:s})),-1),wl=ko(Lo("Optional"),8),Zs=ko(Lo("Self"),2),so=ko(Lo("SkipSelf"),4);let Ha,Tl;function oo(s){var l;return(null===(l=function s1(){if(void 0===Ha&&(Ha=null,ui.trustedTypes))try{Ha=ui.trustedTypes.createPolicy("angular",{createHTML:s=>s,createScript:s=>s,createScriptURL:s=>s})}catch(s){}return Ha}())||void 0===l?void 0:l.createHTML(s))||s}function ac(s){var l;return(null===(l=function l1(){if(void 0===Tl&&(Tl=null,ui.trustedTypes))try{Tl=ui.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:s=>s,createScript:s=>s,createScriptURL:s=>s})}catch(s){}return Tl}())||void 0===l?void 0:l.createHTML(s))||s}class ns{constructor(l){this.changingThisBreaksApplicationSecurity=l}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see https://g.co/ng/security#xss)`}}class sc extends ns{getTypeName(){return"HTML"}}class Ll extends ns{getTypeName(){return"Style"}}class c1 extends ns{getTypeName(){return"Script"}}class d2 extends ns{getTypeName(){return"URL"}}class Ro extends ns{getTypeName(){return"ResourceURL"}}function Ys(s){return s instanceof ns?s.changingThisBreaksApplicationSecurity:s}function yo(s,l){const g=u2(s);if(null!=g&&g!==l){if("ResourceURL"===g&&"URL"===l)return!0;throw new Error(`Required a safe ${l}, got a ${g} (see https://g.co/ng/security#xss)`)}return g===l}function u2(s){return s instanceof ns&&s.getTypeName()||null}function u3(s){return new sc(s)}function h3(s){return new Ll(s)}function f3(s){return new c1(s)}function p3(s){return new d2(s)}function m3(s){return new Ro(s)}class d1{constructor(l){this.inertDocumentHelper=l}getInertBodyElement(l){l=""+l;try{const g=(new window.DOMParser).parseFromString(oo(l),"text/html").body;return null===g?this.inertDocumentHelper.getInertBodyElement(l):(g.removeChild(g.firstChild),g)}catch(g){return null}}}class f2{constructor(l){if(this.defaultDoc=l,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),null==this.inertDocument.body){const g=this.inertDocument.createElement("html");this.inertDocument.appendChild(g);const A=this.inertDocument.createElement("body");g.appendChild(A)}}getInertBodyElement(l){const g=this.inertDocument.createElement("template");if("content"in g)return g.innerHTML=oo(l),g;const A=this.inertDocument.createElement("body");return A.innerHTML=oo(l),this.defaultDoc.documentMode&&this.stripCustomNsAttrs(A),A}stripCustomNsAttrs(l){const g=l.attributes;for(let F=g.length-1;0Ho(l.trim())).join(", ")),this.buf.push(" ",le,'="',lc(Ze),'"')}var s;return this.buf.push(">"),!0}endElement(l){const g=l.nodeName.toLowerCase();ma.hasOwnProperty(g)&&!oc.hasOwnProperty(g)&&(this.buf.push(""))}chars(l){this.buf.push(lc(l))}checkClobberedElement(l,g){if(g&&(l.compareDocumentPosition(g)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${l.outerHTML}`);return g}}const f1=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,p1=/([^\#-~ |!])/g;function lc(s){return s.replace(/&/g,"&").replace(f1,function(l){return"&#"+(1024*(l.charCodeAt(0)-55296)+(l.charCodeAt(1)-56320)+65536)+";"}).replace(p1,function(l){return"&#"+l.charCodeAt(0)+";"}).replace(//g,">")}let al;function cc(s,l){let g=null;try{al=al||function h2(s){const l=new f2(s);return function p2(){try{return!!(new window.DOMParser).parseFromString(oo(""),"text/html")}catch(s){return!1}}()?new d1(l):l}(s);let A=l?String(l):"";g=al.getInertBodyElement(A);let F=5,G=A;do{if(0===F)throw new Error("Failed to sanitize html because the input is unstable");F--,A=G,G=g.innerHTML,g=al.getInertBodyElement(A)}while(A!==G);return oo((new g2).sanitizeChildren(U(g)||g))}finally{if(g){const A=U(g)||g;for(;A.firstChild;)A.removeChild(A.firstChild)}}}function U(s){return"content"in s&&function Le(s){return s.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===s.nodeName}(s)?s.content:null}var P=(()=>((P=P||{})[P.NONE=0]="NONE",P[P.HTML=1]="HTML",P[P.STYLE=2]="STYLE",P[P.SCRIPT=3]="SCRIPT",P[P.URL=4]="URL",P[P.RESOURCE_URL=5]="RESOURCE_URL",P))();function ne(s){const l=Jn();return l?ac(l.sanitize(P.HTML,s)||""):yo(s,"HTML")?ac(Ys(s)):cc(Ta(),Z(s))}function Ht(s){const l=Jn();return l?l.sanitize(P.URL,s)||"":yo(s,"URL")?Ys(s):Ho(Z(s))}function Jn(){const s=Fi();return s&&s[12]}const Fa="__ngContext__";function rs(s,l){s[Fa]=l}function _2(s){const l=function dc(s){return s[Fa]||null}(s);return l?Array.isArray(l)?l:l.lView:null}function m1(s){return s.ngOriginalError}function x3(s,...l){s.error(...l)}class g1{constructor(){this._console=console}handleError(l){const g=this._findOriginalError(l),A=function Y4(s){return s&&s.ngErrorLogger||x3}(l);A(this._console,"ERROR",l),g&&A(this._console,"ORIGINAL ERROR",g)}_findOriginalError(l){let g=l&&m1(l);for(;g&&m1(g);)g=m1(g);return g||null}}const X4=(()=>("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(ui))();function M2(s){return s.ownerDocument.defaultView}function Ks(s){return s instanceof Function?s():s}var Qs=(()=>((Qs=Qs||{})[Qs.Important=1]="Important",Qs[Qs.DashCase=2]="DashCase",Qs))();function E2(s,l){return undefined(s,l)}function sl(s){const l=s[3];return pn(l)?l[3]:l}function A2(s){return ru(s[13])}function T3(s){return ru(s[4])}function ru(s){for(;null!==s&&!pn(s);)s=s[4];return s}function Rl(s,l,g,A,F){if(null!=A){let G,le=!1;pn(A)?G=A:Ni(A)&&(le=!0,A=A[0]);const De=Xe(A);0===s&&null!==g?null==F?uc(l,g,De):ll(l,g,De,F||null,!0):1===s&&null!==g?ll(l,g,De,F||null,!0):2===s?function B2(s,l,g){const A=cl(s,l);A&&function cu(s,l,g,A){Xn(s)?s.removeChild(l,g,A):l.removeChild(g)}(s,A,l,g)}(l,De,le):3===s&&l.destroyNode(De),null!=G&&function N3(s,l,g,A,F){const G=g[7];G!==Xe(g)&&Rl(l,s,A,G,F);for(let De=10;De0&&(s[g-1][4]=A[4]);const G=_l(s,10+l);!function I2(s,l){mc(s,l,l[11],2,null,null),l[0]=null,l[6]=null}(A[1],A);const le=G[19];null!==le&&le.detachView(G[1]),A[3]=null,A[4]=null,A[2]&=-129}return A}function I3(s,l){if(!(256&l[2])){const g=l[11];Xn(g)&&g.destroyNode&&mc(s,l,g,3,null,null),function L3(s){let l=s[13];if(!l)return k2(s[1],s);for(;l;){let g=null;if(Ni(l))g=l[13];else{const A=l[10];A&&(g=A)}if(!g){for(;l&&!l[4]&&l!==s;)Ni(l)&&k2(l[1],l),l=l[3];null===l&&(l=s),Ni(l)&&k2(l[1],l),g=l&&l[4]}l=g}}(l)}}function k2(s,l){if(!(256&l[2])){l[2]&=-129,l[2]|=256,function O3(s,l){let g;if(null!=s&&null!=(g=s.destroyHooks))for(let A=0;A=0?A[F=pt]():A[F=-pt].unsubscribe(),G+=2}else{const le=A[F=g[G+1]];g[G].call(le)}if(null!==A){for(let G=F+1;GG?"":F[Kt+1].toLowerCase();const vi=8&A?li:null;if(vi&&-1!==H3(vi,pt,0)||2&A&&pt!==li){if(Ns(A))return!1;le=!0}}}}else{if(!le&&!Ns(A)&&!Ns(Ze))return!1;if(le&&Ns(Ze))continue;le=!1,A=Ze|1&A}}return Ns(A)||le}function Ns(s){return 0==(1&s)}function F3(s,l,g,A){if(null===l)return-1;let F=0;if(A||!g){let G=!1;for(;F-1)for(g++;g0?'="'+De+'"':"")+"]"}else 8&A?F+="."+le:4&A&&(F+=" "+le);else""!==F&&!Ns(le)&&(l+=V3(G,F),F=""),A=le,G=G||!Ns(A);g++}return""!==F&&(l+=V3(G,F)),l}const jn={};function G3(s){Z3(Yn(),Fi(),Mr()+s,!1)}function Z3(s,l,g,A){if(!A)if(3==(3&l[2])){const G=s.preOrderCheckHooks;null!==G&&_s(l,G,g)}else{const G=s.preOrderHooks;null!==G&&cn(l,G,0,g)}Qr(g)}function gc(s,l){return s<<17|l<<2}function qs(s){return s>>17&32767}function j2(s){return 2|s}function Co(s){return(131068&s)>>2}function K2(s,l){return-131069&s|l<<2}function Q2(s){return 1|s}function Tu(s,l){const g=s.contentQueries;if(null!==g)for(let A=0;A20&&Z3(s,l,20,!1),g(A,F)}finally{Qr(G)}}function Du(s,l,g){if(Dn(l)){const F=l.directiveEnd;for(let G=l.directiveStart;G0;){const g=s[--l];if("number"==typeof g&&g<0)return g}return 0})(De)!=Ze&&De.push(Ze),De.push(A,F,le)}}function zu(s,l){null!==s.hostBindings&&s.hostBindings(1,l)}function Vu(s,l){l.flags|=2,(s.components||(s.components=[])).push(l.index)}function P6(s,l,g){if(g){if(l.exportAs)for(let A=0;A0&&h0(g)}}function h0(s){for(let A=A2(s);null!==A;A=T3(A))for(let F=10;F0&&h0(G)}const g=s[1].components;if(null!==g)for(let A=0;A0&&h0(F)}}function Zu(s,l){const g=It(l,s),A=g[1];(function Wu(s,l){for(let g=l.length;gPromise.resolve(null))();function Ku(s){return s[7]||(s[7]=[])}function m0(s){return s.cleanup||(s.cleanup=[])}function Qu(s,l,g){return(null===s||gn(s))&&(g=function kt(s){for(;Array.isArray(s);){if("object"==typeof s[1])return s;s=s[0]}return null}(g[l.index])),g[11]}function fd(s,l){const g=s[9],A=g?g.get(g1,null):null;A&&A.handleError(l)}function qu(s,l,g,A,F){for(let G=0;Gthis.processProvider(De,l,g)),es([l],De=>this.processInjectorType(De,[],G)),this.records.set(pd,bc(void 0,this));const le=this.records.get(md);this.scope=null!=le?le.value:null,this.source=F||("object"==typeof l?null:R(l))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(l=>l.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(l,g=_o,A=we.Default){this.assertNotDestroyed();const F=Xl(this),G=xe(void 0);try{if(!(A&we.SkipSelf)){let De=this.records.get(l);if(void 0===De){const Ze=function G6(s){return"function"==typeof s||"object"==typeof s&&s instanceof Yr}(l)&&Pe(l);De=Ze&&this.injectableDefInScope(Ze)?bc(y0(l),D1):null,this.records.set(l,De)}if(null!=De)return this.hydrate(l,De)}return(A&we.Self?v0():this.parent).get(l,g=A&we.Optional&&g===_o?null:g)}catch(le){if("NullInjectorError"===le.name){if((le[$r]=le[$r]||[]).unshift(R(l)),F)throw le;return function c3(s,l,g,A){const F=s[$r];throw l[el]&&F.unshift(l[el]),s.message=function ic(s,l,g,A=null){s=s&&"\n"===s.charAt(0)&&"\u0275"==s.charAt(1)?s.substr(2):s;let F=R(l);if(Array.isArray(l))F=l.map(R).join(" -> ");else if("object"==typeof l){let G=[];for(let le in l)if(l.hasOwnProperty(le)){let De=l[le];G.push(le+":"+("string"==typeof De?JSON.stringify(De):R(De)))}F=`{${G.join(", ")}}`}return`${g}${A?"("+A+")":""}[${F}]: ${s.replace(Jl,"\n ")}`}("\n"+s.message,F,g,A),s.ngTokenPath=F,s[$r]=null,s}(le,l,"R3InjectorError",this.source)}throw le}finally{xe(G),Xl(F)}}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(l=>this.get(l))}toString(){const l=[];return this.records.forEach((A,F)=>l.push(R(F))),`R3Injector[${l.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new E(205,!1)}processInjectorType(l,g,A){if(!(l=D(l)))return!1;let F=Me(l);const G=null==F&&l.ngModule||void 0,le=void 0===G?l:G,De=-1!==A.indexOf(le);if(void 0!==G&&(F=Me(G)),null==F)return!1;if(null!=F.imports&&!De){let Lt;A.push(le);try{es(F.imports,Kt=>{this.processInjectorType(Kt,g,A)&&(void 0===Lt&&(Lt=[]),Lt.push(Kt))})}finally{}if(void 0!==Lt)for(let Kt=0;Ktthis.processProvider(Hi,li,vi||it))}}this.injectorDefTypes.add(le);const Ze=jr(le)||(()=>new le);this.records.set(le,bc(Ze,D1));const pt=F.providers;if(null!=pt&&!De){const Lt=l;es(pt,Kt=>this.processProvider(Kt,Lt,pt))}return void 0!==G&&void 0!==l.providers}processProvider(l,g,A){let F=xc(l=D(l))?l:D(l&&l.provide);const G=function _d(s,l,g){return b0(s)?bc(void 0,s.useValue):bc(eh(s),D1)}(l);if(xc(l)||!0!==l.multi)this.records.get(F);else{let le=this.records.get(F);le||(le=bc(void 0,D1,!0),le.factory=()=>Xc(le.multi),this.records.set(F,le)),F=l,le.multi.push(l)}this.records.set(F,G)}hydrate(l,g){return g.value===D1&&(g.value=Xu,g.value=g.factory()),"object"==typeof g.value&&g.value&&function nh(s){return null!==s&&"object"==typeof s&&"function"==typeof s.ngOnDestroy}(g.value)&&this.onDestroy.add(g.value),g.value}injectableDefInScope(l){if(!l.providedIn)return!1;const g=D(l.providedIn);return"string"==typeof g?"any"===g||g===this.scope:this.injectorDefTypes.has(g)}}function y0(s){const l=Pe(s),g=null!==l?l.factory:jr(s);if(null!==g)return g;if(s instanceof Yr)throw new E(204,!1);if(s instanceof Function)return function V6(s){const l=s.length;if(l>0)throw $o(l,"?"),new E(204,!1);const g=function j(s){const l=s&&(s[J]||s[ut]);if(l){const g=function Ve(s){if(s.hasOwnProperty("name"))return s.name;const l=(""+s).match(/^function\s*([^\s(]+)/);return null===l?"":l[1]}(s);return console.warn(`DEPRECATED: DI is instantiating a token "${g}" that inherits its @Injectable decorator but does not provide one itself.\nThis will become an error in a future version of Angular. Please add @Injectable() to the "${g}" class.`),l}return null}(s);return null!==g?()=>g.factory(s):()=>new s}(s);throw new E(204,!1)}function eh(s,l,g){let A;if(xc(s)){const F=D(s);return jr(F)||y0(F)}if(b0(s))A=()=>D(s.useValue);else if(function th(s){return!(!s||!s.useFactory)}(s))A=()=>s.useFactory(...Xc(s.deps||[]));else if(function B6(s){return!(!s||!s.useExisting)}(s))A=()=>Ua(D(s.useExisting));else{const F=D(s&&(s.useClass||s.provide));if(!function U6(s){return!!s.deps}(s))return jr(F)||y0(F);A=()=>new F(...Xc(s.deps))}return A}function bc(s,l,g=!1){return{factory:s,value:l,multi:g?[]:void 0}}function b0(s){return null!==s&&"object"==typeof s&&r2 in s}function xc(s){return"function"==typeof s}let wo=(()=>{class s{static create(g,A){var F;if(Array.isArray(g))return $u({name:""},A,g,"");{const G=null!==(F=g.name)&&void 0!==F?F:"";return $u({name:G},g.parent,g.providers,G)}}}return s.THROW_IF_NOT_FOUND=_o,s.NULL=new g0,s.\u0275prov=X({token:s,providedIn:"any",factory:()=>Ua(pd)}),s.__NG_ELEMENT_ID__=-1,s})();function Q6(s,l){gs(_2(s)[1],Er())}function Md(s){let l=function ph(s){return Object.getPrototypeOf(s.prototype).constructor}(s.type),g=!0;const A=[s];for(;l;){let F;if(gn(s))F=l.\u0275cmp||l.\u0275dir;else{if(l.\u0275cmp)throw new E(903,"");F=l.\u0275dir}if(F){if(g){A.push(F);const le=s;le.inputs=wd(s.inputs),le.declaredInputs=wd(s.declaredInputs),le.outputs=wd(s.outputs);const De=F.hostBindings;De&&J6(s,De);const Ze=F.viewQuery,pt=F.contentQueries;if(Ze&&q6(s,Ze),pt&&gh(s,pt),d(s.inputs,F.inputs),d(s.declaredInputs,F.declaredInputs),d(s.outputs,F.outputs),gn(F)&&F.data.animation){const Lt=s.data;Lt.animation=(Lt.animation||[]).concat(F.data.animation)}}const G=F.features;if(G)for(let le=0;le=0;A--){const F=s[A];F.hostVars=l+=F.hostVars,F.hostAttrs=zi(F.hostAttrs,g=zi(g,F.hostAttrs))}}(A)}function wd(s){return s===gt?{}:s===it?[]:s}function q6(s,l){const g=s.viewQuery;s.viewQuery=g?(A,F)=>{l(A,F),g(A,F)}:l}function gh(s,l){const g=s.contentQueries;s.contentQueries=g?(A,F,G)=>{l(A,F,G),g(A,F,G)}:l}function J6(s,l){const g=s.hostBindings;s.hostBindings=g?(A,F)=>{l(A,F),g(A,F)}:l}let I1=null;function dl(){if(!I1){const s=ui.Symbol;if(s&&s.iterator)I1=s.iterator;else{const l=Object.getOwnPropertyNames(Map.prototype);for(let g=0;gDe(Xe(pr[A.index])):A.index;if(Xn(g)){let pr=null;if(!De&&Ze&&(pr=function Yd(s,l,g,A){const F=s.cleanup;if(null!=F)for(let G=0;GZe?De[Ze]:null}"string"==typeof le&&(G+=2)}return null}(s,l,F,A.index)),null!==pr)(pr.__ngLastListenerFn__||pr).__ngNextListenerFn__=G,pr.__ngLastListenerFn__=G,vi=!1;else{G=jd(A,l,Kt,G,!1);const Pr=g.listen(bn,F,G);li.push(G,Pr),Lt&&Lt.push(F,In,Bi,Bi+1)}}else G=jd(A,l,Kt,G,!0),bn.addEventListener(F,G,le),li.push(G),Lt&&Lt.push(F,In,Bi,le)}else G=jd(A,l,Kt,G,!1);const Hi=A.outputs;let qi;if(vi&&null!==Hi&&(qi=Hi[F])){const rn=qi.length;if(rn)for(let bn=0;bn0;)l=l[15],s--;return l}(s,Fe.lFrame.contextLView))[8]}(s)}function ip(s,l){let g=null;const A=function fu(s){const l=s.attrs;if(null!=l){const g=l.indexOf(5);if(0==(1&g))return l[g+1]}return null}(s);for(let F=0;F=0}const Za={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function V0(s){return s.substring(Za.key,Za.keyEnd)}function Ph(s,l){const g=Za.textEnd;return g===l?-1:(l=Za.keyEnd=function Rh(s,l,g){for(;l32;)l++;return l}(s,Za.key=l,g),Fc(s,l,g))}function Fc(s,l,g){for(;l=0;g=Ph(l,g))ts(s,V0(l),!0)}function fo(s,l,g,A){const F=Fi(),G=Yn(),le=pe(2);G.firstUpdatePass&&Uh(G,s,le,A),l!==jn&&ds(F,le,l)&&jh(G,G.data[Mr()],F,F[11],s,F[le+1]=function dp(s,l){return null==s||("string"==typeof l?s+=l:"object"==typeof s&&(s=R(Ys(s)))),s}(l,g),A,le)}function $s(s,l,g,A){const F=Yn(),G=pe(2);F.firstUpdatePass&&Uh(F,null,G,A);const le=Fi();if(g!==jn&&ds(le,G,g)){const De=F.data[Mr()];if(Kh(De,A)&&!Bh(F,G)){let Ze=A?De.classesWithoutHost:De.stylesWithoutHost;null!==Ze&&(g=h(Ze,g||"")),Nc(F,De,le,g,A)}else!function Yh(s,l,g,A,F,G,le,De){F===jn&&(F=it);let Ze=0,pt=0,Lt=0=s.expandoStartIndex}function Uh(s,l,g,A){const F=s.data;if(null===F[g+1]){const G=F[Mr()],le=Bh(s,g);Kh(G,A)&&null===l&&!le&&(l=!1),l=function Gh(s,l,g,A){const F=gi(s);let G=A?l.residualClasses:l.residualStyles;if(null===F)0===(A?l.classBindings:l.styleBindings)&&(g=Z1(g=G0(null,s,l,g,A),l.attrs,A),G=null);else{const le=l.directiveStylingLast;if(-1===le||s[le]!==F)if(g=G0(F,s,l,g,A),null===G){let Ze=function lp(s,l,g){const A=g?l.classBindings:l.styleBindings;if(0!==Co(A))return s[qs(A)]}(s,l,A);void 0!==Ze&&Array.isArray(Ze)&&(Ze=G0(null,s,l,Ze[1],A),Ze=Z1(Ze,l.attrs,A),function Zh(s,l,g,A){s[qs(g?l.classBindings:l.styleBindings)]=A}(s,l,A,Ze))}else G=function Wh(s,l,g){let A;const F=l.directiveEnd;for(let G=1+l.directiveStylingLast;G0)&&(pt=!0)}else Lt=g;if(F)if(0!==Ze){const li=qs(s[De+1]);s[A+1]=gc(li,De),0!==li&&(s[li+1]=K2(s[li+1],A)),s[De+1]=function _u(s,l){return 131071&s|l<<17}(s[De+1],A)}else s[A+1]=gc(De,0),0!==De&&(s[De+1]=K2(s[De+1],A)),De=A;else s[A+1]=gc(Ze,0),0===De?De=A:s[Ze+1]=K2(s[Ze+1],A),Ze=A;pt&&(s[A+1]=j2(s[A+1])),$d(s,Lt,A,!0),$d(s,Lt,A,!1),function Oh(s,l,g,A,F){const G=F?s.residualClasses:s.residualStyles;null!=G&&"string"==typeof l&&Fr(G,l)>=0&&(g[A+1]=Q2(g[A+1]))}(l,Lt,s,A,G),le=gc(De,Ze),G?l.classBindings=le:l.styleBindings=le}(F,G,l,g,le,A)}}function G0(s,l,g,A,F){let G=null;const le=g.directiveEnd;let De=g.directiveStylingLast;for(-1===De?De=g.directiveStart:De++;De0;){const Ze=s[F],pt=Array.isArray(Ze),Lt=pt?Ze[1]:Ze,Kt=null===Lt;let li=g[F+1];li===jn&&(li=Kt?it:void 0);let vi=Kt?yl(li,A):Lt===A?li:void 0;if(pt&&!Z0(vi)&&(vi=yl(Ze,A)),Z0(vi)&&(De=vi,le))return De;const Hi=s[F+1];F=le?qs(Hi):Co(Hi)}if(null!==l){let Ze=G?l.residualClasses:l.residualStyles;null!=Ze&&(De=yl(Ze,A))}return De}function Z0(s){return void 0!==s}function Kh(s,l){return 0!=(s.flags&(l?16:32))}function n4(s,l=""){const g=Fi(),A=Yn(),F=s+20,G=A.firstCreatePass?Fl(A,F,1,l,null):A.data[F],le=g[F]=function L2(s,l){return Xn(s)?s.createText(l):s.createTextNode(l)}(g[11],l);hc(A,g,le,G),Aa(G,!1)}function W0(s){return Y0("",s,""),W0}function Y0(s,l,g){const A=Fi(),F=Mc(A,s,l,g);return F!==jn&&Mo(A,Mr(),F),Y0}function j0(s,l,g,A,F){const G=Fi(),le=wc(G,s,l,g,A,F);return le!==jn&&Mo(G,Mr(),le),j0}function K0(s,l,g,A,F,G,le){const De=Fi(),Ze=function Sc(s,l,g,A,F,G,le,De){const pt=P1(s,Na(),g,F,le);return pe(3),pt?l+Z(g)+A+Z(F)+G+Z(le)+De:jn}(De,s,l,g,A,F,G,le);return Ze!==jn&&Mo(De,Mr(),Ze),K0}function r4(s,l,g,A,F,G,le,De,Ze){const pt=Fi(),Lt=Bl(pt,s,l,g,A,F,G,le,De,Ze);return Lt!==jn&&Mo(pt,Mr(),Lt),r4}function Xh(s,l,g){$s(ts,ho,Mc(Fi(),s,l,g),!0)}function kn(s,l,g){const A=Fi();return ds(A,oe(),l)&&xs(Yn(),Gn(),A,s,l,A[11],g,!0),kn}function wn(s,l,g){const A=Fi();if(ds(A,oe(),l)){const G=Yn(),le=Gn();xs(G,le,A,s,l,Qu(gi(G.data),le,A),g,!0)}return wn}const wr=void 0;var hs=["en",[["a","p"],["AM","PM"],wr],[["AM","PM"],wr,wr],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],wr,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],wr,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",wr,"{1} 'at' {0}",wr],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function Tr(s){const g=Math.floor(Math.abs(s)),A=s.toString().replace(/^[^.]*\.?/,"").length;return 1===g&&0===A?1:5}];let zr={};function Pa(s){const l=function fs(s){return s.toLowerCase().replace(/_/g,"-")}(s);let g=Ms(l);if(g)return g;const A=l.split("-")[0];if(g=Ms(A),g)return g;if("en"===A)return hs;throw new Error(`Missing locale data for the locale "${s}".`)}function Vr(s){return Pa(s)[sn.PluralCase]}function Ms(s){return s in zr||(zr[s]=ui.ng&&ui.ng.common&&ui.ng.common.locales&&ui.ng.common.locales[s]),zr[s]}var sn=(()=>((sn=sn||{})[sn.LocaleId=0]="LocaleId",sn[sn.DayPeriodsFormat=1]="DayPeriodsFormat",sn[sn.DayPeriodsStandalone=2]="DayPeriodsStandalone",sn[sn.DaysFormat=3]="DaysFormat",sn[sn.DaysStandalone=4]="DaysStandalone",sn[sn.MonthsFormat=5]="MonthsFormat",sn[sn.MonthsStandalone=6]="MonthsStandalone",sn[sn.Eras=7]="Eras",sn[sn.FirstDayOfWeek=8]="FirstDayOfWeek",sn[sn.WeekendRange=9]="WeekendRange",sn[sn.DateFormat=10]="DateFormat",sn[sn.TimeFormat=11]="TimeFormat",sn[sn.DateTimeFormat=12]="DateTimeFormat",sn[sn.NumberSymbols=13]="NumberSymbols",sn[sn.NumberFormats=14]="NumberFormats",sn[sn.CurrencyCode=15]="CurrencyCode",sn[sn.CurrencySymbol=16]="CurrencySymbol",sn[sn.CurrencyName=17]="CurrencyName",sn[sn.Currencies=18]="Currencies",sn[sn.Directionality=19]="Directionality",sn[sn.PluralCase=20]="PluralCase",sn[sn.ExtraData=21]="ExtraData",sn))();const ea="en-US";let qa=ea;function uf(s,l,g,A,F){if(s=D(s),Array.isArray(s))for(let G=0;G>20;if(xc(s)||!s.multi){const vi=new Da(Ze,F,pl),Hi=pf(De,l,F?Lt:Lt+li,Kt);-1===Hi?(On(qt(pt,le),G,De),hf(G,s,l.length),l.push(De),pt.directiveStart++,pt.directiveEnd++,F&&(pt.providerIndexes+=1048576),g.push(vi),le.push(vi)):(g[Hi]=vi,le[Hi]=vi)}else{const vi=pf(De,l,Lt+li,Kt),Hi=pf(De,l,Lt,Lt+li),qi=vi>=0&&g[vi],rn=Hi>=0&&g[Hi];if(F&&!rn||!F&&!qi){On(qt(pt,le),G,De);const bn=function Hp(s,l,g,A,F){const G=new Da(s,g,pl);return G.multi=[],G.index=l,G.componentProviders=0,ff(G,F,A&&!g),G}(F?j8:Rp,g.length,F,A,Ze);!F&&rn&&(g[Hi].providerFactory=bn),hf(G,s,l.length,0),l.push(De),pt.directiveStart++,pt.directiveEnd++,F&&(pt.providerIndexes+=1048576),g.push(bn),le.push(bn)}else hf(G,s,vi>-1?vi:Hi,ff(g[F?Hi:vi],Ze,!F&&A));!F&&A&&rn&&g[Hi].componentProviders++}}}function hf(s,l,g,A){const F=xc(l),G=function ih(s){return!!s.useClass}(l);if(F||G){const Ze=(G?D(l.useClass):l).prototype.ngOnDestroy;if(Ze){const pt=s.destroyHooks||(s.destroyHooks=[]);if(!F&&l.multi){const Lt=pt.indexOf(g);-1===Lt?pt.push(g,[A,Ze]):pt[Lt+1].push(A,Ze)}else pt.push(g,Ze)}}}function ff(s,l,g){return g&&s.componentProviders++,s.multi.push(l)-1}function pf(s,l,g,A){for(let F=g;F{g.providersResolver=(A,F)=>function Y8(s,l,g){const A=Yn();if(A.firstCreatePass){const F=gn(s);uf(g,A.data,A.blueprint,F,!0),uf(l,A.data,A.blueprint,F,!1)}}(A,F?F(s):s,l)}}class gf{}class Vp{resolveComponentFactory(l){throw function Q8(s){const l=Error(`No component factory found for ${R(s)}. Did you add it to @NgModule.entryComponents?`);return l.ngComponent=s,l}(l)}}let l4=(()=>{class s{}return s.NULL=new Vp,s})();function q8(){return Gc(Er(),Fi())}function Gc(s,l){return new e3(yi(s,l))}let e3=(()=>{class s{constructor(g){this.nativeElement=g}}return s.__NG_ELEMENT_ID__=q8,s})();function Bp(s){return s instanceof e3?s.nativeElement:s}class _f{}let J8=(()=>{class s{}return s.__NG_ELEMENT_ID__=()=>function X8(){const s=Fi(),g=It(Er().index,s);return function Up(s){return s[11]}(Ni(g)?g:s)}(),s})(),$8=(()=>{class s{}return s.\u0275prov=X({token:s,providedIn:"root",factory:()=>null}),s})();class Gp{constructor(l){this.full=l,this.major=l.split(".")[0],this.minor=l.split(".")[1],this.patch=l.split(".").slice(2).join(".")}}const e5=new Gp("13.3.11"),vf={};function c4(s,l,g,A,F=!1){for(;null!==g;){const G=l[g.index];if(null!==G&&A.push(Xe(G)),pn(G))for(let De=10;De-1&&(ol(l,A),_l(g,A))}this._attachedToViewContainer=!1}I3(this._lView[1],this._lView)}onDestroy(l){l0(this._lView[1],this._lView,null,l)}markForCheck(){vc(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){!function yc(s,l,g){const A=l[10];A.begin&&A.begin();try{_c(s,l,s.template,g)}catch(F){throw fd(l,F),F}finally{A.end&&A.end()}}(this._lView[1],this._lView,this.context)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new E(902,"");this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null,function ou(s,l){mc(s,l,l[11],2,null,null)}(this._lView[1],this._lView)}attachToAppRef(l){if(this._attachedToViewContainer)throw new E(902,"");this._appRef=l}}class t5 extends t3{constructor(l){super(l),this._view=l}detectChanges(){hd(this._view)}checkNoChanges(){}get context(){return null}}class Zp extends l4{constructor(l){super(),this.ngModule=l}resolveComponentFactory(l){const g=lt(l);return new yf(g,this.ngModule)}}function d4(s){const l=[];for(let g in s)s.hasOwnProperty(g)&&l.push({propName:s[g],templateName:g});return l}class yf extends gf{constructor(l,g){super(),this.componentDef=l,this.ngModule=g,this.componentType=l.type,this.selector=function B3(s){return s.map(gu).join(",")}(l.selectors),this.ngContentSelectors=l.ngContentSelectors?l.ngContentSelectors:[],this.isBoundToModule=!!g}get inputs(){return d4(this.componentDef.inputs)}get outputs(){return d4(this.componentDef.outputs)}create(l,g,A,F){const G=(F=F||this.ngModule)?function n5(s,l){return{get:(g,A,F)=>{const G=s.get(g,vf,F);return G!==vf||A===vf?G:l.get(g,A,F)}}}(l,F.injector):l,le=G.get(_f,$e),De=G.get($8,null),Ze=le.createRenderer(null,this.componentDef),pt=this.componentDef.selectors[0][0]||"div",Lt=A?function Iu(s,l,g){if(Xn(s))return s.selectRootElement(l,g===tt.ShadowDom);let A="string"==typeof l?s.querySelector(l):l;return A.textContent="",A}(Ze,A,this.componentDef.encapsulation):xo(le.createRenderer(null,this.componentDef),pt,function i5(s){const l=s.toLowerCase();return"svg"===l?"svg":"math"===l?"math":null}(pt)),Kt=this.componentDef.onPush?576:528,li=function Cd(s,l){return{components:[],scheduler:s||X4,clean:ju,playerHandler:l||null,flags:0}}(),vi=o0(0,null,null,1,0,null,null,null,null,null),Hi=S1(null,vi,li,Kt,null,null,le,Ze,De,G);let qi,rn;Un(Hi);try{const bn=function bd(s,l,g,A,F,G){const le=g[1];g[20]=s;const Ze=Fl(le,20,2,"#host",null),pt=Ze.mergedAttrs=l.hostAttrs;null!==pt&&(L1(Ze,pt,!0),null!==s&&(pi(F,s,pt),null!==Ze.classes&&b1(F,s,Ze.classes),null!==Ze.styles&&R3(F,s,Ze.styles)));const Lt=A.createRenderer(s,l),Kt=S1(g,ad(l),null,l.onPush?64:16,g[20],Ze,A,Lt,G||null,null);return le.firstCreatePass&&(On(qt(Ze,g),le,l.type),Vu(le,Ze),T1(Ze,g.length,1)),A1(g,Kt),g[20]=Kt}(Lt,this.componentDef,Hi,le,Ze);if(Lt)if(A)pi(Ze,Lt,["ng-version",e5.full]);else{const{attrs:Bi,classes:In}=function U3(s){const l=[],g=[];let A=1,F=2;for(;A0&&b1(Ze,Lt,In.join(" "))}if(rn=nr(vi,20),void 0!==g){const Bi=rn.projection=[];for(let In=0;InZe(le,l)),l.contentQueries){const Ze=Er();l.contentQueries(1,le,Ze.directiveStart)}const De=Er();return!G.firstCreatePass||null===l.hostBindings&&null===l.hostAttrs||(Qr(De.index),Hu(g[1],De,0,De.directiveStart,De.directiveEnd,l),zu(l,le)),le}(bn,this.componentDef,Hi,li,[Q6]),Rs(vi,Hi,null)}finally{Cr()}return new a5(this.componentType,qi,Gc(rn,Hi),Hi,rn)}}class a5 extends class K8{}{constructor(l,g,A,F,G){super(),this.location=A,this._rootLView=F,this._tNode=G,this.instance=g,this.hostView=this.changeDetectorRef=new t5(F),this.componentType=l}get injector(){return new qo(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(l){this.hostView.onDestroy(l)}}class Y1{}class Yp{}const Zc=new Map;class Qp extends Y1{constructor(l,g){super(),this._parent=g,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new Zp(this);const A=Jt(l);this._bootstrapComponents=Ks(A.bootstrap),this._r3Injector=gd(l,g,[{provide:Y1,useValue:this},{provide:l4,useValue:this.componentFactoryResolver}],R(l)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(l)}get(l,g=wo.THROW_IF_NOT_FOUND,A=we.Default){return l===wo||l===Y1||l===pd?this:this._r3Injector.get(l,g,A)}destroy(){const l=this._r3Injector;!l.destroyed&&l.destroy(),this.destroyCbs.forEach(g=>g()),this.destroyCbs=null}onDestroy(l){this.destroyCbs.push(l)}}class u4 extends Yp{constructor(l){super(),this.moduleType=l,null!==Jt(l)&&function o5(s){const l=new Set;!function g(A){const F=Jt(A,!0),G=F.id;null!==G&&(function jp(s,l,g){if(l&&l!==g)throw new Error(`Duplicate module registered for ${s} - ${R(l)} vs ${R(l.name)}`)}(G,Zc.get(G),A),Zc.set(G,A));const le=Ks(F.imports);for(const De of le)l.has(De)||(l.add(De),g(De))}(s)}(l)}create(l){return new Qp(this.moduleType,l)}}function qp(s,l,g){const A=Zr()+s,F=Fi();return F[A]===jn?So(F,A,g?l.call(g):l()):function Cc(s,l){return s[l]}(F,A)}function Jp(s,l,g,A){return im(Fi(),Zr(),s,l,g,A)}function bf(s,l,g,A,F){return nm(Fi(),Zr(),s,l,g,A,F)}function Xp(s,l,g,A,F,G){return h4(Fi(),Zr(),s,l,g,A,F,G)}function i3(s,l){const g=s[l];return g===jn?void 0:g}function im(s,l,g,A,F,G){const le=l+g;return ds(s,le,F)?So(s,le+1,G?A.call(G,F):A(F)):i3(s,le+1)}function nm(s,l,g,A,F,G,le){const De=l+g;return Vl(s,De,F,G)?So(s,De+2,le?A.call(le,F,G):A(F,G)):i3(s,De+2)}function h4(s,l,g,A,F,G,le,De){const Ze=l+g;return P1(s,Ze,F,G,le)?So(s,Ze+3,De?A.call(De,F,G,le):A(F,G,le)):i3(s,Ze+3)}function xf(s,l){const g=Yn();let A;const F=s+20;g.firstCreatePass?(A=function u5(s,l){if(l)for(let g=l.length-1;g>=0;g--){const A=l[g];if(s===A.name)return A}}(l,g.pipeRegistry),g.data[F]=A,A.onDestroy&&(g.destroyHooks||(g.destroyHooks=[])).push(F,A.onDestroy)):A=g.data[F];const G=A.factory||(A.factory=jr(A.type)),le=xe(pl);try{const De=ze(!1),Ze=G();return ze(De),function E0(s,l,g,A){g>=s.data.length&&(s.data[g]=null,s.blueprint[g]=null),l[g]=A}(g,Fi(),F,Ze),Ze}finally{xe(le)}}function sm(s,l,g){const A=s+20,F=Fi(),G=Vn(F,A);return n3(F,A)?im(F,Zr(),l,G.transform,g,G):G.transform(g)}function om(s,l,g,A){const F=s+20,G=Fi(),le=Vn(G,F);return n3(G,F)?nm(G,Zr(),l,le.transform,g,A,le):le.transform(g,A)}function lm(s,l,g,A,F){const G=s+20,le=Fi(),De=Vn(le,G);return n3(le,G)?h4(le,Zr(),l,De.transform,g,A,F,De):De.transform(g,A,F)}function n3(s,l){return s[1].data[l].pure}function Cf(s){return l=>{setTimeout(s,void 0,l)}}const Ko=class f5 extends t.x{constructor(l=!1){super(),this.__isAsync=l}emit(l){super.next(l)}subscribe(l,g,A){var F,G,le;let De=l,Ze=g||(()=>null),pt=A;if(l&&"object"==typeof l){const Kt=l;De=null===(F=Kt.next)||void 0===F?void 0:F.bind(Kt),Ze=null===(G=Kt.error)||void 0===G?void 0:G.bind(Kt),pt=null===(le=Kt.complete)||void 0===le?void 0:le.bind(Kt)}this.__isAsync&&(Ze=Cf(Ze),De&&(De=Cf(De)),pt&&(pt=Cf(pt)));const Lt=super.subscribe({next:De,error:Ze,complete:pt});return l instanceof e.w0&&l.add(Lt),Lt}};function p5(){return this._results[dl()]()}class f4{constructor(l=!1){this._emitDistinctChangesOnly=l,this.dirty=!0,this._results=[],this._changesDetected=!1,this._changes=null,this.length=0,this.first=void 0,this.last=void 0;const g=dl(),A=f4.prototype;A[g]||(A[g]=p5)}get changes(){return this._changes||(this._changes=new Ko)}get(l){return this._results[l]}map(l){return this._results.map(l)}filter(l){return this._results.filter(l)}find(l){return this._results.find(l)}reduce(l,g){return this._results.reduce(l,g)}forEach(l){this._results.forEach(l)}some(l){return this._results.some(l)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(l,g){const A=this;A.dirty=!1;const F=ls(l);(this._changesDetected=!function X1(s,l,g){if(s.length!==l.length)return!1;for(let A=0;A{class s{}return s.__NG_ELEMENT_ID__=g5,s})();const Mf=r3,m5=class extends Mf{constructor(l,g,A){super(),this._declarationLView=l,this._declarationTContainer=g,this.elementRef=A}createEmbeddedView(l){const g=this._declarationTContainer.tViews,A=S1(this._declarationLView,g,l,16,null,g.declTNode,null,null,null,null);A[17]=this._declarationLView[this._declarationTContainer.index];const G=this._declarationLView[19];return null!==G&&(A[19]=G.createEmbeddedView(g)),Rs(g,A,l),new t3(A)}};function g5(){return p4(Er(),Fi())}function p4(s,l){return 4&s.type?new m5(l,s,Gc(s,l)):null}let m4=(()=>{class s{}return s.__NG_ELEMENT_ID__=a3,s})();function a3(){return Sf(Er(),Fi())}const _5=m4,dm=class extends _5{constructor(l,g,A){super(),this._lContainer=l,this._hostTNode=g,this._hostLView=A}get element(){return Gc(this._hostTNode,this._hostLView)}get injector(){return new qo(this._hostTNode,this._hostLView)}get parentInjector(){const l=an(this._hostTNode,this._hostLView);if(nn(l)){const g=rr(l,this._hostLView),A=un(l);return new qo(g[1].data[A+8],g)}return new qo(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(l){const g=um(this._lContainer);return null!==g&&g[l]||null}get length(){return this._lContainer.length-10}createEmbeddedView(l,g,A){const F=l.createEmbeddedView(g||{});return this.insert(F,A),F}createComponent(l,g,A,F,G){const le=l&&!function Io(s){return"function"==typeof s}(l);let De;if(le)De=g;else{const Kt=g||{};De=Kt.index,A=Kt.injector,F=Kt.projectableNodes,G=Kt.ngModuleRef}const Ze=le?l:new yf(lt(l)),pt=A||this.parentInjector;if(!G&&null==Ze.ngModule){const li=(le?pt:this.parentInjector).get(Y1,null);li&&(G=li)}const Lt=Ze.create(pt,F,void 0,G);return this.insert(Lt.hostView,De),Lt}insert(l,g){const A=l._lView,F=A[1];if(function jt(s){return pn(s[3])}(A)){const Lt=this.indexOf(l);if(-1!==Lt)this.detach(Lt);else{const Kt=A[3],li=new dm(Kt,Kt[6],Kt[3]);li.detach(li.indexOf(l))}}const G=this._adjustIndex(g),le=this._lContainer;!function D3(s,l,g,A){const F=10+A,G=g.length;A>0&&(g[F-1][4]=l),A0)A.push(le[De/2]);else{const pt=G[De+1],Lt=l[-Ze];for(let Kt=10;Kt{class s{constructor(g){this.appInits=g,this.resolve=w4,this.reject=w4,this.initialized=!1,this.done=!1,this.donePromise=new Promise((A,F)=>{this.resolve=A,this.reject=F})}runInitializers(){if(this.initialized)return;const g=[],A=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let F=0;F{G.subscribe({complete:De,error:Ze})});g.push(le)}}Promise.all(g).then(()=>{A()}).catch(F=>{this.reject(F)}),0===g.length&&A(),this.initialized=!0}}return s.\u0275fac=function(g){return new(g||s)(Ua(Pm,8))},s.\u0275prov=X({token:s,factory:s.\u0275fac,providedIn:"root"}),s})();const km=new Yr("AppId",{providedIn:"root",factory:function Nm(){return`${Vf()}${Vf()}${Vf()}`}});function Vf(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const Bf=new Yr("Platform Initializer"),B5=new Yr("Platform ID",{providedIn:"platform",factory:()=>"unknown"}),Rm=new Yr("appBootstrapListener");let G5=(()=>{class s{log(g){console.log(g)}warn(g){console.warn(g)}}return s.\u0275fac=function(g){return new(g||s)},s.\u0275prov=X({token:s,factory:s.\u0275fac,providedIn:"platform"}),s})();const Uf=new Yr("LocaleId",{providedIn:"root",factory:()=>ec(Uf,we.Optional|we.SkipSelf)||function Z5(){return"undefined"!=typeof $localize&&$localize.locale||ea}()}),W5=new Yr("DefaultCurrencyCode",{providedIn:"root",factory:()=>"USD"});class j5{constructor(l,g){this.ngModuleFactory=l,this.componentFactories=g}}let K5=(()=>{class s{compileModuleSync(g){return new u4(g)}compileModuleAsync(g){return Promise.resolve(this.compileModuleSync(g))}compileModuleAndAllComponentsSync(g){const A=this.compileModuleSync(g),G=Ks(Jt(g).declarations).reduce((le,De)=>{const Ze=lt(De);return Ze&&le.push(new yf(Ze)),le},[]);return new j5(A,G)}compileModuleAndAllComponentsAsync(g){return Promise.resolve(this.compileModuleAndAllComponentsSync(g))}clearCache(){}clearCacheFor(g){}getModuleId(g){}}return s.\u0275fac=function(g){return new(g||s)},s.\u0275prov=X({token:s,factory:s.\u0275fac,providedIn:"root"}),s})();const J5=(()=>Promise.resolve(0))();function Gf(s){"undefined"==typeof Zone?J5.then(()=>{s&&s.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",s)}class po{constructor({enableLongStackTrace:l=!1,shouldCoalesceEventChangeDetection:g=!1,shouldCoalesceRunChangeDetection:A=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Ko(!1),this.onMicrotaskEmpty=new Ko(!1),this.onStable=new Ko(!1),this.onError=new Ko(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched();const F=this;F._nesting=0,F._outer=F._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(F._inner=F._inner.fork(new Zone.TaskTrackingZoneSpec)),l&&Zone.longStackTraceZoneSpec&&(F._inner=F._inner.fork(Zone.longStackTraceZoneSpec)),F.shouldCoalesceEventChangeDetection=!A&&g,F.shouldCoalesceRunChangeDetection=A,F.lastRequestAnimationFrameId=-1,F.nativeRequestAnimationFrame=function X5(){let s=ui.requestAnimationFrame,l=ui.cancelAnimationFrame;if("undefined"!=typeof Zone&&s&&l){const g=s[Zone.__symbol__("OriginalDelegate")];g&&(s=g);const A=l[Zone.__symbol__("OriginalDelegate")];A&&(l=A)}return{nativeRequestAnimationFrame:s,nativeCancelAnimationFrame:l}}().nativeRequestAnimationFrame,function tg(s){const l=()=>{!function eg(s){s.isCheckStableRunning||-1!==s.lastRequestAnimationFrameId||(s.lastRequestAnimationFrameId=s.nativeRequestAnimationFrame.call(ui,()=>{s.fakeTopEventTask||(s.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{s.lastRequestAnimationFrameId=-1,Wf(s),s.isCheckStableRunning=!0,Zf(s),s.isCheckStableRunning=!1},void 0,()=>{},()=>{})),s.fakeTopEventTask.invoke()}),Wf(s))}(s)};s._inner=s._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(g,A,F,G,le,De)=>{try{return Yf(s),g.invokeTask(F,G,le,De)}finally{(s.shouldCoalesceEventChangeDetection&&"eventTask"===G.type||s.shouldCoalesceRunChangeDetection)&&l(),Hm(s)}},onInvoke:(g,A,F,G,le,De,Ze)=>{try{return Yf(s),g.invoke(F,G,le,De,Ze)}finally{s.shouldCoalesceRunChangeDetection&&l(),Hm(s)}},onHasTask:(g,A,F,G)=>{g.hasTask(F,G),A===F&&("microTask"==G.change?(s._hasPendingMicrotasks=G.microTask,Wf(s),Zf(s)):"macroTask"==G.change&&(s.hasPendingMacrotasks=G.macroTask))},onHandleError:(g,A,F,G)=>(g.handleError(F,G),s.runOutsideAngular(()=>s.onError.emit(G)),!1)})}(F)}static isInAngularZone(){return"undefined"!=typeof Zone&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!po.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")}static assertNotInAngularZone(){if(po.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")}run(l,g,A){return this._inner.run(l,g,A)}runTask(l,g,A,F){const G=this._inner,le=G.scheduleEventTask("NgZoneEvent: "+F,l,$5,w4,w4);try{return G.runTask(le,g,A)}finally{G.cancelTask(le)}}runGuarded(l,g,A){return this._inner.runGuarded(l,g,A)}runOutsideAngular(l){return this._outer.run(l)}}const $5={};function Zf(s){if(0==s._nesting&&!s.hasPendingMicrotasks&&!s.isStable)try{s._nesting++,s.onMicrotaskEmpty.emit(null)}finally{if(s._nesting--,!s.hasPendingMicrotasks)try{s.runOutsideAngular(()=>s.onStable.emit(null))}finally{s.isStable=!0}}}function Wf(s){s.hasPendingMicrotasks=!!(s._hasPendingMicrotasks||(s.shouldCoalesceEventChangeDetection||s.shouldCoalesceRunChangeDetection)&&-1!==s.lastRequestAnimationFrameId)}function Yf(s){s._nesting++,s.isStable&&(s.isStable=!1,s.onUnstable.emit(null))}function Hm(s){s._nesting--,Zf(s)}class ig{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Ko,this.onMicrotaskEmpty=new Ko,this.onStable=new Ko,this.onError=new Ko}run(l,g,A){return l.apply(g,A)}runGuarded(l,g,A){return l.apply(g,A)}runOutsideAngular(l){return l()}runTask(l,g,A,F){return l.apply(g,A)}}let Fm=(()=>{class s{constructor(g){this._ngZone=g,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),g.run(()=>{this.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{po.assertNotInAngularZone(),Gf(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())Gf(()=>{for(;0!==this._callbacks.length;){let g=this._callbacks.pop();clearTimeout(g.timeoutId),g.doneCb(this._didWork)}this._didWork=!1});else{let g=this.getPendingTasks();this._callbacks=this._callbacks.filter(A=>!A.updateCb||!A.updateCb(g)||(clearTimeout(A.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(g=>({source:g.source,creationLocation:g.creationLocation,data:g.data})):[]}addCallback(g,A,F){let G=-1;A&&A>0&&(G=setTimeout(()=>{this._callbacks=this._callbacks.filter(le=>le.timeoutId!==G),g(this._didWork,this.getPendingTasks())},A)),this._callbacks.push({doneCb:g,timeoutId:G,updateCb:F})}whenStable(g,A,F){if(F&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(g,A,F),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(g,A,F){return[]}}return s.\u0275fac=function(g){return new(g||s)(Ua(po))},s.\u0275prov=X({token:s,factory:s.\u0275fac}),s})(),ng=(()=>{class s{constructor(){this._applications=new Map,E4.addToWindow(this)}registerApplication(g,A){this._applications.set(g,A)}unregisterApplication(g){this._applications.delete(g)}unregisterAllApplications(){this._applications.clear()}getTestability(g){return this._applications.get(g)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(g,A=!0){return E4.findTestabilityInTree(this,g,A)}}return s.\u0275fac=function(g){return new(g||s)},s.\u0275prov=X({token:s,factory:s.\u0275fac,providedIn:"platform"}),s})();class rg{addToWindow(l){}findTestabilityInTree(l,g,A){return null}}function ag(s){E4=s}let E4=new rg,Wc=null;const zm=new Yr("AllowMultipleToken"),Vm=new Yr("PlatformOnDestroy");class Um{constructor(l,g){this.name=l,this.token=g}}function jf(s,l,g=[]){const A=`Platform: ${l}`,F=new Yr(A);return(G=[])=>{let le=Qf();if(!le||le.injector.get(zm,!1)){const De=[...g,...G,{provide:F,useValue:!0}];s?s(De):function og(s){if(Wc&&!Wc.get(zm,!1))throw new E(400,"");Wc=s;const l=s.get(Gm),g=s.get(Bf,null);g&&g.forEach(A=>A())}(function Kf(s=[],l){return wo.create({name:l,providers:[{provide:md,useValue:"platform"},{provide:Vm,useValue:()=>Wc=null},...s]})}(De,A))}return function lg(s){const l=Qf();if(!l)throw new E(401,"");return l}()}}function Qf(){var s;return null!==(s=null==Wc?void 0:Wc.get(Gm))&&void 0!==s?s:null}let Gm=(()=>{class s{constructor(g){this._injector=g,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(g,A){const De=function cg(s,l){let g;return g="noop"===s?new ig:("zone.js"===s?void 0:s)||new po({enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:!!(null==l?void 0:l.ngZoneEventCoalescing),shouldCoalesceRunChangeDetection:!!(null==l?void 0:l.ngZoneRunCoalescing)}),g}(A?A.ngZone:void 0,{ngZoneEventCoalescing:A&&A.ngZoneEventCoalescing||!1,ngZoneRunCoalescing:A&&A.ngZoneRunCoalescing||!1}),Ze=[{provide:po,useValue:De}];return De.run(()=>{const pt=wo.create({providers:Ze,parent:this.injector,name:g.moduleType.name}),Lt=g.create(pt),Kt=Lt.injector.get(g1,null);if(!Kt)throw new E(402,"");return De.runOutsideAngular(()=>{const li=De.onError.subscribe({next:vi=>{Kt.handleError(vi)}});Lt.onDestroy(()=>{T4(this._modules,Lt),li.unsubscribe()})}),function qf(s,l,g){try{const A=g();return us(A)?A.catch(F=>{throw l.runOutsideAngular(()=>s.handleError(F)),F}):A}catch(A){throw l.runOutsideAngular(()=>s.handleError(A)),A}}(Kt,De,()=>{const li=Lt.injector.get(S4);return li.runInitializers(),li.donePromise.then(()=>(function Bc(s){n(s,"Expected localeId to be defined"),"string"==typeof s&&(qa=s.toLowerCase().replace(/_/g,"-"))}(Lt.injector.get(Uf,ea)||ea),this._moduleDoBootstrap(Lt),Lt))})})}bootstrapModule(g,A=[]){const F=Zm({},A);return function sg(s,l,g){const A=new u4(g);return Promise.resolve(A)}(0,0,g).then(G=>this.bootstrapModuleFactory(G,F))}_moduleDoBootstrap(g){const A=g.injector.get(Jf);if(g._bootstrapComponents.length>0)g._bootstrapComponents.forEach(F=>A.bootstrap(F));else{if(!g.instance.ngDoBootstrap)throw new E(403,"");g.instance.ngDoBootstrap(A)}this._modules.push(g)}onDestroy(g){this._destroyListeners.push(g)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new E(404,"");this._modules.slice().forEach(A=>A.destroy()),this._destroyListeners.forEach(A=>A());const g=this._injector.get(Vm,null);null==g||g(),this._destroyed=!0}get destroyed(){return this._destroyed}}return s.\u0275fac=function(g){return new(g||s)(Ua(wo))},s.\u0275prov=X({token:s,factory:s.\u0275fac,providedIn:"platform"}),s})();function Zm(s,l){return Array.isArray(l)?l.reduce(Zm,s):Object.assign(Object.assign({},s),l)}let Jf=(()=>{class s{constructor(g,A,F,G){this._zone=g,this._injector=A,this._exceptionHandler=F,this._initStatus=G,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._onMicrotaskEmptySubscription=this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const le=new f.y(Ze=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{Ze.next(this._stable),Ze.complete()})}),De=new f.y(Ze=>{let pt;this._zone.runOutsideAngular(()=>{pt=this._zone.onStable.subscribe(()=>{po.assertNotInAngularZone(),Gf(()=>{!this._stable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks&&(this._stable=!0,Ze.next(!0))})})});const Lt=this._zone.onUnstable.subscribe(()=>{po.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{Ze.next(!1)}))});return()=>{pt.unsubscribe(),Lt.unsubscribe()}});this.isStable=(0,M.T)(le,De.pipe((0,a.B)()))}bootstrap(g,A){if(!this._initStatus.done)throw new E(405,"");let F;F=g instanceof gf?g:this._injector.get(l4).resolveComponentFactory(g),this.componentTypes.push(F.componentType);const G=function Bm(s){return s.isBoundToModule}(F)?void 0:this._injector.get(Y1),De=F.create(wo.NULL,[],A||F.selector,G),Ze=De.location.nativeElement,pt=De.injector.get(Fm,null),Lt=pt&&De.injector.get(ng);return pt&&Lt&&Lt.registerApplication(Ze,pt),De.onDestroy(()=>{this.detachView(De.hostView),T4(this.components,De),Lt&&Lt.unregisterApplication(Ze)}),this._loadComponent(De),De}tick(){if(this._runningTick)throw new E(101,"");try{this._runningTick=!0;for(let g of this._views)g.detectChanges()}catch(g){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(g))}finally{this._runningTick=!1}}attachView(g){const A=g;this._views.push(A),A.attachToAppRef(this)}detachView(g){const A=g;T4(this._views,A),A.detachFromAppRef()}_loadComponent(g){this.attachView(g.hostView),this.tick(),this.components.push(g),this._injector.get(Rm,[]).concat(this._bootstrapListeners).forEach(F=>F(g))}ngOnDestroy(){this._views.slice().forEach(g=>g.destroy()),this._onMicrotaskEmptySubscription.unsubscribe()}get viewCount(){return this._views.length}}return s.\u0275fac=function(g){return new(g||s)(Ua(po),Ua(wo),Ua(g1),Ua(S4))},s.\u0275prov=X({token:s,factory:s.\u0275fac,providedIn:"root"}),s})();function T4(s,l){const g=s.indexOf(l);g>-1&&s.splice(g,1)}let Xf=!0,Ym=!1;function jm(){return Ym=!0,Xf}function ug(){if(Ym)throw new Error("Cannot enable prod mode after platform setup.");Xf=!1}let A4=(()=>{class s{}return s.__NG_ELEMENT_ID__=fg,s})();function fg(s){return function pg(s,l,g){if(Nn(s)&&!g){const A=It(s.index,l);return new t3(A,A)}return 47&s.type?new t3(l[16],l):null}(Er(),Fi(),16==(16&s))}class i6{constructor(){}supports(l){return O1(l)}create(l){return new yg(l)}}const vg=(s,l)=>l;class yg{constructor(l){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=l||vg}forEachItem(l){let g;for(g=this._itHead;null!==g;g=g._next)l(g)}forEachOperation(l){let g=this._itHead,A=this._removalsHead,F=0,G=null;for(;g||A;){const le=!A||g&&g.currentIndex<$m(A,F,G)?g:A,De=$m(le,F,G),Ze=le.currentIndex;if(le===A)F--,A=A._nextRemoved;else if(g=g._next,null==le.previousIndex)F++;else{G||(G=[]);const pt=De-F,Lt=Ze-F;if(pt!=Lt){for(let li=0;li{le=this._trackByFn(F,De),null!==g&&Object.is(g.trackById,le)?(A&&(g=this._verifyReinsertion(g,De,le,F)),Object.is(g.item,De)||this._addIdentityChange(g,De)):(g=this._mismatch(g,De,le,F),A=!0),g=g._next,F++}),this.length=F;return this._truncate(g),this.collection=l,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let l;for(l=this._previousItHead=this._itHead;null!==l;l=l._next)l._nextPrevious=l._next;for(l=this._additionsHead;null!==l;l=l._nextAdded)l.previousIndex=l.currentIndex;for(this._additionsHead=this._additionsTail=null,l=this._movesHead;null!==l;l=l._nextMoved)l.previousIndex=l.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(l,g,A,F){let G;return null===l?G=this._itTail:(G=l._prev,this._remove(l)),null!==(l=null===this._unlinkedRecords?null:this._unlinkedRecords.get(A,null))?(Object.is(l.item,g)||this._addIdentityChange(l,g),this._reinsertAfter(l,G,F)):null!==(l=null===this._linkedRecords?null:this._linkedRecords.get(A,F))?(Object.is(l.item,g)||this._addIdentityChange(l,g),this._moveAfter(l,G,F)):l=this._addAfter(new bg(g,A),G,F),l}_verifyReinsertion(l,g,A,F){let G=null===this._unlinkedRecords?null:this._unlinkedRecords.get(A,null);return null!==G?l=this._reinsertAfter(G,l._prev,F):l.currentIndex!=F&&(l.currentIndex=F,this._addToMoves(l,F)),l}_truncate(l){for(;null!==l;){const g=l._next;this._addToRemovals(this._unlink(l)),l=g}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(l,g,A){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(l);const F=l._prevRemoved,G=l._nextRemoved;return null===F?this._removalsHead=G:F._nextRemoved=G,null===G?this._removalsTail=F:G._prevRemoved=F,this._insertAfter(l,g,A),this._addToMoves(l,A),l}_moveAfter(l,g,A){return this._unlink(l),this._insertAfter(l,g,A),this._addToMoves(l,A),l}_addAfter(l,g,A){return this._insertAfter(l,g,A),this._additionsTail=null===this._additionsTail?this._additionsHead=l:this._additionsTail._nextAdded=l,l}_insertAfter(l,g,A){const F=null===g?this._itHead:g._next;return l._next=F,l._prev=g,null===F?this._itTail=l:F._prev=l,null===g?this._itHead=l:g._next=l,null===this._linkedRecords&&(this._linkedRecords=new Xm),this._linkedRecords.put(l),l.currentIndex=A,l}_remove(l){return this._addToRemovals(this._unlink(l))}_unlink(l){null!==this._linkedRecords&&this._linkedRecords.remove(l);const g=l._prev,A=l._next;return null===g?this._itHead=A:g._next=A,null===A?this._itTail=g:A._prev=g,l}_addToMoves(l,g){return l.previousIndex===g||(this._movesTail=null===this._movesTail?this._movesHead=l:this._movesTail._nextMoved=l),l}_addToRemovals(l){return null===this._unlinkedRecords&&(this._unlinkedRecords=new Xm),this._unlinkedRecords.put(l),l.currentIndex=null,l._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=l,l._prevRemoved=null):(l._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=l),l}_addIdentityChange(l,g){return l.item=g,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=l:this._identityChangesTail._nextIdentityChange=l,l}}class bg{constructor(l,g){this.item=l,this.trackById=g,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class xg{constructor(){this._head=null,this._tail=null}add(l){null===this._head?(this._head=this._tail=l,l._nextDup=null,l._prevDup=null):(this._tail._nextDup=l,l._prevDup=this._tail,l._nextDup=null,this._tail=l)}get(l,g){let A;for(A=this._head;null!==A;A=A._nextDup)if((null===g||g<=A.currentIndex)&&Object.is(A.trackById,l))return A;return null}remove(l){const g=l._prevDup,A=l._nextDup;return null===g?this._head=A:g._nextDup=A,null===A?this._tail=g:A._prevDup=g,null===this._head}}class Xm{constructor(){this.map=new Map}put(l){const g=l.trackById;let A=this.map.get(g);A||(A=new xg,this.map.set(g,A)),A.add(l)}get(l,g){const F=this.map.get(l);return F?F.get(l,g):null}remove(l){const g=l.trackById;return this.map.get(g).remove(l)&&this.map.delete(g),l}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function $m(s,l,g){const A=s.previousIndex;if(null===A)return A;let F=0;return g&&A{if(g&&g.key===F)this._maybeAddToChanges(g,A),this._appendAfter=g,g=g._next;else{const G=this._getOrCreateRecordForKey(F,A);g=this._insertBeforeOrAppend(g,G)}}),g){g._prev&&(g._prev._next=null),this._removalsHead=g;for(let A=g;null!==A;A=A._nextRemoved)A===this._mapHead&&(this._mapHead=null),this._records.delete(A.key),A._nextRemoved=A._next,A.previousValue=A.currentValue,A.currentValue=null,A._prev=null,A._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(l,g){if(l){const A=l._prev;return g._next=l,g._prev=A,l._prev=g,A&&(A._next=g),l===this._mapHead&&(this._mapHead=g),this._appendAfter=l,l}return this._appendAfter?(this._appendAfter._next=g,g._prev=this._appendAfter):this._mapHead=g,this._appendAfter=g,null}_getOrCreateRecordForKey(l,g){if(this._records.has(l)){const F=this._records.get(l);this._maybeAddToChanges(F,g);const G=F._prev,le=F._next;return G&&(G._next=le),le&&(le._prev=G),F._next=null,F._prev=null,F}const A=new t8(l);return this._records.set(l,A),A.currentValue=g,this._addToAdditions(A),A}_reset(){if(this.isDirty){let l;for(this._previousMapHead=this._mapHead,l=this._previousMapHead;null!==l;l=l._next)l._nextPrevious=l._next;for(l=this._changesHead;null!==l;l=l._nextChanged)l.previousValue=l.currentValue;for(l=this._additionsHead;null!=l;l=l._nextAdded)l.previousValue=l.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(l,g){Object.is(g,l.currentValue)||(l.previousValue=l.currentValue,l.currentValue=g,this._addToChanges(l))}_addToAdditions(l){null===this._additionsHead?this._additionsHead=this._additionsTail=l:(this._additionsTail._nextAdded=l,this._additionsTail=l)}_addToChanges(l){null===this._changesHead?this._changesHead=this._changesTail=l:(this._changesTail._nextChanged=l,this._changesTail=l)}_forEach(l,g){l instanceof Map?l.forEach(g):Object.keys(l).forEach(A=>g(l[A],A))}}class t8{constructor(l){this.key=l,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function n8(){return new n6([new i6])}let n6=(()=>{class s{constructor(g){this.factories=g}static create(g,A){if(null!=A){const F=A.factories.slice();g=g.concat(F)}return new s(g)}static extend(g){return{provide:s,useFactory:A=>s.create(g,A||n8()),deps:[[s,new so,new wl]]}}find(g){const A=this.factories.find(F=>F.supports(g));if(null!=A)return A;throw new E(901,"")}}return s.\u0275prov=X({token:s,providedIn:"root",factory:n8}),s})();function P4(){return new r6([new e8])}let r6=(()=>{class s{constructor(g){this.factories=g}static create(g,A){if(A){const F=A.factories.slice();g=g.concat(F)}return new s(g)}static extend(g){return{provide:s,useFactory:A=>s.create(g,A||P4()),deps:[[s,new so,new wl]]}}find(g){const A=this.factories.find(G=>G.supports(g));if(A)return A;throw new E(901,"")}}return s.\u0275prov=X({token:s,providedIn:"root",factory:P4}),s})();const Sg=jf(null,"core",[]);let Eg=(()=>{class s{constructor(g){}}return s.\u0275fac=function(g){return new(g||s)(Ua(Jf))},s.\u0275mod=rt({type:s}),s.\u0275inj=be({}),s})()},9042:(Be,K,p)=>{"use strict";function t(L){for(let w in L){let D=L[w]||"";switch(w){case"display":L.display="flex"===D?["-webkit-flex","flex"]:"inline-flex"===D?["-webkit-inline-flex","inline-flex"]:D;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":L["-webkit-"+w]=D;break;case"flex-direction":D=D||"row",L["-webkit-flex-direction"]=D,L["flex-direction"]=D;break;case"order":L.order=L["-webkit-"+w]=isNaN(+D)?"0":D}}return L}p.d(K,{Ar:()=>M,GK:()=>t,iQ:()=>f,kt:()=>h,tj:()=>C});const e="inline",f=["row","column","row-reverse","column-reverse"];function M(L){let[w,D,S]=a(L);return function R(L,w=null,D=!1){return{display:D?"inline-flex":"flex","box-sizing":"border-box","flex-direction":L,"flex-wrap":w||null}}(w,D,S)}function a(L){var w;L=null!==(w=null==L?void 0:L.toLowerCase())&&void 0!==w?w:"";let[D,S,k]=L.split(" ");return f.find(E=>E===D)||(D=f[0]),S===e&&(S=k!==e?k:"",k=e),[D,d(S),!!k]}function C(L){let[w]=a(L);return w.indexOf("row")>-1}function d(L){if(L)switch(L.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":L="wrap-reverse";break;case"no":case"none":case"nowrap":L="nowrap";break;default:L="wrap"}return L}function h(L,...w){if(null==L)throw TypeError("Cannot convert undefined or null to object");for(let D of w)if(null!=D)for(let S in D)D.hasOwnProperty(S)&&(L[S]=D[S]);return L}},3270:(Be,K,p)=>{"use strict";p.d(K,{Bs:()=>ae,FL:()=>ui,IR:()=>S,Ot:()=>di,QI:()=>ue,RK:()=>ie,WU:()=>Z,g5:()=>B,iR:()=>xe,wY:()=>Y,yB:()=>ce});var t=p(5e3),e=p(9808),f=p(1135),M=p(8306),a=p(6451),C=p(7579),d=p(9042),R=p(9300),h=p(8505);const w={provide:t.tb,useFactory:function L(Ot,Nt){return()=>{if((0,e.NF)(Nt)){const gt=Array.from(Ot.querySelectorAll(`[class*=${D}]`)),it=/\bflex-layout-.+?\b/g;gt.forEach(bt=>{bt.classList.contains(`${D}ssr`)&&bt.parentNode?bt.parentNode.removeChild(bt):bt.className.replace(it,"")})}}},deps:[e.K0,t.Lbi],multi:!0},D="flex-layout-";let S=(()=>{class Ot{}return Ot.\u0275fac=function(gt){return new(gt||Ot)},Ot.\u0275mod=t.oAB({type:Ot}),Ot.\u0275inj=t.cJS({providers:[w]}),Ot})();class k{constructor(Nt=!1,gt="all",it="",bt="",ei=0){this.matches=Nt,this.mediaQuery=gt,this.mqAlias=it,this.suffix=bt,this.priority=ei,this.property=""}clone(){return new k(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let E=(()=>{class Ot{constructor(){this.stylesheet=new Map}addStyleToElement(gt,it,bt){const ei=this.stylesheet.get(gt);ei?ei.set(it,bt):this.stylesheet.set(gt,new Map([[it,bt]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(gt,it){const bt=this.stylesheet.get(gt);let ei="";if(bt){const Qt=bt.get(it);("number"==typeof Qt||"string"==typeof Qt)&&(ei=Qt+"")}return ei}}return Ot.\u0275fac=function(gt){return new(gt||Ot)},Ot.\u0275prov=t.Yz7({token:Ot,factory:Ot.\u0275fac,providedIn:"root"}),Ot})();const B={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},Z=new t.OlP("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>B}),Y=new t.OlP("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),ae=new t.OlP("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ee(Ot,Nt){return Ot=Ot?Ot.clone():new k,Nt&&(Ot.mqAlias=Nt.alias,Ot.mediaQuery=Nt.mediaQuery,Ot.suffix=Nt.suffix,Ot.priority=Nt.priority),Ot}class ue{constructor(){this.shouldCache=!0}sideEffect(Nt,gt,it){}}let ie=(()=>{class Ot{constructor(gt,it,bt,ei){this._serverStylesheet=gt,this._serverModuleLoaded=it,this._platformId=bt,this.layoutConfig=ei}applyStyleToElement(gt,it,bt=null){let ei={};"string"==typeof it&&(ei[it]=bt,it=ei),ei=this.layoutConfig.disableVendorPrefixes?it:(0,d.GK)(it),this._applyMultiValueStyleToElement(ei,gt)}applyStyleToElements(gt,it=[]){const bt=this.layoutConfig.disableVendorPrefixes?gt:(0,d.GK)(gt);it.forEach(ei=>{this._applyMultiValueStyleToElement(bt,ei)})}getFlowDirection(gt){const it="flex-direction";let bt=this.lookupStyle(gt,it);return[bt||"row",this.lookupInlineStyle(gt,it)||(0,e.PM)(this._platformId)&&this._serverModuleLoaded?bt:""]}hasWrap(gt){return"wrap"===this.lookupStyle(gt,"flex-wrap")}lookupAttributeValue(gt,it){var bt;return null!==(bt=gt.getAttribute(it))&&void 0!==bt?bt:""}lookupInlineStyle(gt,it){return(0,e.NF)(this._platformId)?gt.style.getPropertyValue(it):function re(Ot,Nt){var gt;return null!==(gt=_e(Ot)[Nt])&&void 0!==gt?gt:""}(gt,it)}lookupStyle(gt,it,bt=!1){let ei="";return gt&&((ei=this.lookupInlineStyle(gt,it))||((0,e.NF)(this._platformId)?bt||(ei=getComputedStyle(gt).getPropertyValue(it)):this._serverModuleLoaded&&(ei=this._serverStylesheet.getStyleForElement(gt,it)))),ei?ei.trim():""}_applyMultiValueStyleToElement(gt,it){Object.keys(gt).sort().forEach(bt=>{const ei=gt[bt],Qt=Array.isArray(ei)?ei:[ei];Qt.sort();for(let Re of Qt)Re=Re?Re+"":"",(0,e.NF)(this._platformId)||!this._serverModuleLoaded?(0,e.NF)(this._platformId)?it.style.setProperty(bt,Re):ge(it,bt,Re):this._serverStylesheet.addStyleToElement(it,bt,Re)})}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(t.LFG(E),t.LFG(Y),t.LFG(t.Lbi),t.LFG(Z))},Ot.\u0275prov=t.Yz7({token:Ot,factory:Ot.\u0275fac,providedIn:"root"}),Ot})();function ge(Ot,Nt,gt){Nt=Nt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const it=_e(Ot);it[Nt]=null!=gt?gt:"",function q(Ot,Nt){let gt="";for(const it in Nt)Nt[it]&&(gt+=`${it}:${Nt[it]};`);Ot.setAttribute("style",gt)}(Ot,it)}function _e(Ot){const Nt={},gt=Ot.getAttribute("style");if(gt){const it=gt.split(/;+/g);for(let bt=0;bt0){const Qt=ei.indexOf(":");if(-1===Qt)throw new Error(`Invalid CSS style: ${ei}`);Nt[ei.substr(0,Qt).trim()]=ei.substr(Qt+1).trim()}}}return Nt}function x(Ot,Nt){return(Nt&&Nt.priority||0)-(Ot&&Ot.priority||0)}function i(Ot,Nt){return(Ot.priority||0)-(Nt.priority||0)}let r=(()=>{class Ot{constructor(gt,it,bt){this._zone=gt,this._platformId=it,this._document=bt,this.source=new f.X(new k(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const gt=[];return this.registry.forEach((it,bt)=>{it.matches&>.push(bt)}),gt}isActive(gt){var it;const bt=this.registry.get(gt);return null!==(it=null==bt?void 0:bt.matches)&&void 0!==it?it:this.registerQuery(gt).some(ei=>ei.matches)}observe(gt,it=!1){if(gt&>.length){const bt=this._observable$.pipe((0,R.h)(Qt=>!it||gt.indexOf(Qt.mediaQuery)>-1)),ei=new M.y(Qt=>{const Re=this.registerQuery(gt);if(Re.length){const ke=Re.pop();Re.forEach(de=>{Qt.next(de)}),this.source.next(ke)}Qt.complete()});return(0,a.T)(ei,bt)}return this._observable$}registerQuery(gt){const it=Array.isArray(gt)?gt:[gt],bt=[];return function c(Ot,Nt){const gt=Ot.filter(it=>!u[it]);if(gt.length>0){const it=gt.join(", ");try{const bt=Nt.createElement("style");bt.setAttribute("type","text/css"),bt.styleSheet||bt.appendChild(Nt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${it} {.fx-query-test{ }}\n`)),Nt.head.appendChild(bt),gt.forEach(ei=>u[ei]=bt)}catch(bt){console.error(bt)}}}(it,this._document),it.forEach(ei=>{const Qt=ke=>{this._zone.run(()=>this.source.next(new k(ke.matches,ei)))};let Re=this.registry.get(ei);Re||(Re=this.buildMQL(ei),Re.addListener(Qt),this.pendingRemoveListenerFns.push(()=>Re.removeListener(Qt)),this.registry.set(ei,Re)),Re.matches&&bt.push(new k(!0,ei))}),bt}ngOnDestroy(){let gt;for(;gt=this.pendingRemoveListenerFns.pop();)gt()}buildMQL(gt){return function v(Ot,Nt){return Nt&&window.matchMedia("all").addListener?window.matchMedia(Ot):{matches:"all"===Ot||""===Ot,media:Ot,addListener:()=>{},removeListener:()=>{},onchange:null,addEventListener(){},removeEventListener(){},dispatchEvent:()=>!1}}(gt,(0,e.NF)(this._platformId))}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(t.LFG(t.R0b),t.LFG(t.Lbi),t.LFG(e.K0))},Ot.\u0275prov=t.Yz7({token:Ot,factory:Ot.\u0275fac,providedIn:"root"}),Ot})();const u={},T=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],I="(orientation: portrait) and (max-width: 599.98px)",y="(orientation: landscape) and (max-width: 959.98px)",n="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",_="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",V="(orientation: portrait) and (min-width: 840px)",N="(orientation: landscape) and (min-width: 1280px)",H={HANDSET:`${I}, ${y}`,TABLET:`${n} , ${_}`,WEB:`${V}, ${N} `,HANDSET_PORTRAIT:`${I}`,TABLET_PORTRAIT:`${n} `,WEB_PORTRAIT:`${V}`,HANDSET_LANDSCAPE:`${y}`,TABLET_LANDSCAPE:`${_}`,WEB_LANDSCAPE:`${N}`},X=[{alias:"handset",priority:2e3,mediaQuery:H.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:H.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:H.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:H.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:H.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:H.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:H.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:H.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:H.WEB_PORTRAIT,overlapping:!0}],he=/(\.|-|_)/g;function be(Ot){let Nt=Ot.length>0?Ot.charAt(0):"",gt=Ot.length>1?Ot.slice(1):"";return Nt.toUpperCase()+gt}const Ve=new t.OlP("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Ot=(0,t.f3M)(ae),Nt=(0,t.f3M)(Z),gt=[].concat.apply([],(Ot||[]).map(bt=>Array.isArray(bt)?bt:[bt]));return function j(Ot,Nt=[]){const gt={};return Ot.forEach(it=>{gt[it.alias]=it}),Nt.forEach(it=>{gt[it.alias]?(0,d.kt)(gt[it.alias],it):gt[it.alias]=it}),function Ee(Ot){return Ot.forEach(Nt=>{Nt.suffix||(Nt.suffix=function Pe(Ot){return Ot.replace(he,"|").split("|").map(be).join("")}(Nt.alias),Nt.overlapping=!!Nt.overlapping)}),Ot}(Object.keys(gt).map(it=>gt[it]))}((Nt.disableDefaultBps?[]:T).concat(Nt.addOrientationBps?X:[]),gt)}});let Me=(()=>{class Ot{constructor(gt){this.findByMap=new Map,this.items=[...gt].sort(i)}findByAlias(gt){return gt?this.findWithPredicate(gt,it=>it.alias===gt):null}findByQuery(gt){return this.findWithPredicate(gt,it=>it.mediaQuery===gt)}get overlappings(){return this.items.filter(gt=>gt.overlapping)}get aliases(){return this.items.map(gt=>gt.alias)}get suffixes(){return this.items.map(gt=>{var it;return null!==(it=null==gt?void 0:gt.suffix)&&void 0!==it?it:""})}findWithPredicate(gt,it){var bt;let ei=this.findByMap.get(gt);return ei||(ei=null!==(bt=this.items.find(it))&&void 0!==bt?bt:null,this.findByMap.set(gt,ei)),null!=ei?ei:null}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(t.LFG(Ve))},Ot.\u0275prov=t.Yz7({token:Ot,factory:Ot.\u0275fac,providedIn:"root"}),Ot})();const J="print",Ie={alias:J,mediaQuery:J,priority:1e3};let ut=(()=>{class Ot{constructor(gt,it,bt){this.breakpoints=gt,this.layoutConfig=it,this._document=bt,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new Oe,this.deactivations=[]}withPrintQuery(gt){return[...gt,J]}isPrintEvent(gt){return gt.mediaQuery.startsWith(J)}get printAlias(){var gt;return[...null!==(gt=this.layoutConfig.printWithBreakpoints)&&void 0!==gt?gt:[]]}get printBreakPoints(){return this.printAlias.map(gt=>this.breakpoints.findByAlias(gt)).filter(gt=>null!==gt)}getEventBreakpoints({mediaQuery:gt}){const it=this.breakpoints.findByQuery(gt);return(it?[...this.printBreakPoints,it]:this.printBreakPoints).sort(x)}updateEvent(gt){var it;let bt=this.breakpoints.findByQuery(gt.mediaQuery);return this.isPrintEvent(gt)&&(bt=this.getEventBreakpoints(gt)[0],gt.mediaQuery=null!==(it=null==bt?void 0:bt.mediaQuery)&&void 0!==it?it:""),ee(gt,bt)}registerBeforeAfterPrintHooks(gt){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const it=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(gt,this.getEventBreakpoints(new k(!0,J))),gt.updateStyles())},bt=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(gt),gt.updateStyles())};this._document.defaultView.addEventListener("beforeprint",it),this._document.defaultView.addEventListener("afterprint",bt),this.beforePrintEventListeners.push(it),this.afterPrintEventListeners.push(bt)}interceptEvents(gt){return it=>{this.isPrintEvent(it)?it.matches&&!this.isPrinting?(this.startPrinting(gt,this.getEventBreakpoints(it)),gt.updateStyles()):!it.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(gt),gt.updateStyles()):this.collectActivations(gt,it)}}blockPropagation(){return gt=>!(this.isPrinting||this.isPrintEvent(gt))}startPrinting(gt,it){this.isPrinting=!0,this.formerActivations=gt.activatedBreakpoints,gt.activatedBreakpoints=this.queue.addPrintBreakpoints(it)}stopPrinting(gt){gt.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(gt,it){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!it.matches){const bt=this.breakpoints.findByQuery(it.mediaQuery);if(bt){const ei=this.formerActivations&&this.formerActivations.includes(bt),Qt=!this.formerActivations&>.activatedBreakpoints.includes(bt);(ei||Qt)&&(this.deactivations.push(bt),this.deactivations.sort(x))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(gt=>this._document.defaultView.removeEventListener("beforeprint",gt)),this.afterPrintEventListeners.forEach(gt=>this._document.defaultView.removeEventListener("afterprint",gt)))}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(t.LFG(Me),t.LFG(Z),t.LFG(e.K0))},Ot.\u0275prov=t.Yz7({token:Ot,factory:Ot.\u0275fac,providedIn:"root"}),Ot})();class Oe{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Nt){return Nt.push(Ie),Nt.sort(x),Nt.forEach(gt=>this.addBreakpoint(gt)),this.printBreakpoints}addBreakpoint(Nt){Nt&&void 0===this.printBreakpoints.find(it=>it.mediaQuery===Nt.mediaQuery)&&(this.printBreakpoints=function we(Ot){var Nt;return null!==(Nt=null==Ot?void 0:Ot.mediaQuery.startsWith(J))&&void 0!==Nt&&Nt}(Nt)?[Nt,...this.printBreakpoints]:[...this.printBreakpoints,Nt])}clear(){this.printBreakpoints=[]}}let ce=(()=>{class Ot{constructor(gt,it,bt){this.matchMedia=gt,this.breakpoints=it,this.hook=bt,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new C.x,this.observeActivations()}get activatedAlias(){var gt,it;return null!==(it=null===(gt=this.activatedBreakpoints[0])||void 0===gt?void 0:gt.alias)&&void 0!==it?it:""}set activatedBreakpoints(gt){this._activatedBreakpoints=[...gt]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(gt){this._useFallbacks=gt}onMediaChange(gt){const it=this.findByQuery(gt.mediaQuery);if(it){gt=ee(gt,it);const bt=this.activatedBreakpoints.indexOf(it);gt.matches&&-1===bt?(this._activatedBreakpoints.push(it),this._activatedBreakpoints.sort(x),this.updateStyles()):!gt.matches&&-1!==bt&&(this._activatedBreakpoints.splice(bt,1),this._activatedBreakpoints.sort(x),this.updateStyles())}}init(gt,it,bt,ei,Qt=[]){Te(this.updateMap,gt,it,bt),Te(this.clearMap,gt,it,ei),this.buildElementKeyMap(gt,it),this.watchExtraTriggers(gt,it,Qt)}getValue(gt,it,bt){const ei=this.elementMap.get(gt);if(ei){const Qt=void 0!==bt?ei.get(bt):this.getActivatedValues(ei,it);if(Qt)return Qt.get(it)}}hasValue(gt,it){const bt=this.elementMap.get(gt);if(bt){const ei=this.getActivatedValues(bt,it);if(ei)return void 0!==ei.get(it)||!1}return!1}setValue(gt,it,bt,ei){var Qt;let Re=this.elementMap.get(gt);if(Re){const de=(null!==(Qt=Re.get(ei))&&void 0!==Qt?Qt:new Map).set(it,bt);Re.set(ei,de),this.elementMap.set(gt,Re)}else Re=(new Map).set(ei,(new Map).set(it,bt)),this.elementMap.set(gt,Re);const ke=this.getValue(gt,it);void 0!==ke&&this.updateElement(gt,it,ke)}trackValue(gt,it){return this.subject.asObservable().pipe((0,R.h)(bt=>bt.element===gt&&bt.key===it))}updateStyles(){this.elementMap.forEach((gt,it)=>{const bt=new Set(this.elementKeyMap.get(it));let ei=this.getActivatedValues(gt);ei&&ei.forEach((Qt,Re)=>{this.updateElement(it,Re,Qt),bt.delete(Re)}),bt.forEach(Qt=>{if(ei=this.getActivatedValues(gt,Qt),ei){const Re=ei.get(Qt);this.updateElement(it,Qt,Re)}else this.clearElement(it,Qt)})})}clearElement(gt,it){const bt=this.clearMap.get(gt);if(bt){const ei=bt.get(it);ei&&(ei(),this.subject.next({element:gt,key:it,value:""}))}}updateElement(gt,it,bt){const ei=this.updateMap.get(gt);if(ei){const Qt=ei.get(it);Qt&&(Qt(bt),this.subject.next({element:gt,key:it,value:bt}))}}releaseElement(gt){const it=this.watcherMap.get(gt);it&&(it.forEach(ei=>ei.unsubscribe()),this.watcherMap.delete(gt));const bt=this.elementMap.get(gt);bt&&(bt.forEach((ei,Qt)=>bt.delete(Qt)),this.elementMap.delete(gt))}triggerUpdate(gt,it){const bt=this.elementMap.get(gt);if(bt){const ei=this.getActivatedValues(bt,it);ei&&(it?this.updateElement(gt,it,ei.get(it)):ei.forEach((Qt,Re)=>this.updateElement(gt,Re,Qt)))}}buildElementKeyMap(gt,it){let bt=this.elementKeyMap.get(gt);bt||(bt=new Set,this.elementKeyMap.set(gt,bt)),bt.add(it)}watchExtraTriggers(gt,it,bt){if(bt&&bt.length){let ei=this.watcherMap.get(gt);if(ei||(ei=new Map,this.watcherMap.set(gt,ei)),!ei.get(it)){const Re=(0,a.T)(...bt).subscribe(()=>{const ke=this.getValue(gt,it);this.updateElement(gt,it,ke)});ei.set(it,Re)}}}findByQuery(gt){return this.breakpoints.findByQuery(gt)}getActivatedValues(gt,it){for(let ei=0;eiit.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(gt)).pipe((0,h.b)(this.hook.interceptEvents(this)),(0,R.h)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(t.LFG(r),t.LFG(Me),t.LFG(ut))},Ot.\u0275prov=t.Yz7({token:Ot,factory:Ot.\u0275fac,providedIn:"root"}),Ot})();function Te(Ot,Nt,gt,it){var bt;if(void 0!==it){const ei=null!==(bt=Ot.get(Nt))&&void 0!==bt?bt:new Map;ei.set(gt,it),Ot.set(Nt,ei)}}let xe=(()=>{class Ot{constructor(gt,it,bt,ei){this.elementRef=gt,this.styleBuilder=it,this.styler=bt,this.marshal=ei,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new C.x,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(gt){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,gt,this.marshal.activatedAlias)}ngOnChanges(gt){Object.keys(gt).forEach(it=>{if(-1!==this.inputs.indexOf(it)){const bt=it.split(".").slice(1).join(".");this.setValue(gt[it].currentValue,bt)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(gt=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),gt)}addStyles(gt,it){const bt=this.styleBuilder,ei=bt.shouldCache;let Qt=this.styleCache.get(gt);(!Qt||!ei)&&(Qt=bt.buildStyles(gt,it),ei&&this.styleCache.set(gt,Qt)),this.mru=Object.assign({},Qt),this.applyStyleToElement(Qt),bt.sideEffect(gt,Qt,it)}clearStyles(){Object.keys(this.mru).forEach(gt=>{this.mru[gt]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(gt,it=!1){if(gt){const[bt,ei]=this.styler.getFlowDirection(gt);if(!ei&&it){const Qt=(0,d.Ar)(bt);this.styler.applyStyleToElements(Qt,[gt])}return bt.trim()}return"row"}hasWrap(gt){return this.styler.hasWrap(gt)}applyStyleToElement(gt,it,bt=this.nativeElement){this.styler.applyStyleToElement(bt,gt,it)}setValue(gt,it){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,gt,it)}updateWithValue(gt){this.currentValue!==gt&&(this.addStyles(gt),this.currentValue=gt)}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(t.Y36(t.SBq),t.Y36(ue),t.Y36(ie),t.Y36(ce))},Ot.\u0275dir=t.lG2({type:Ot,features:[t.TTD]}),Ot})();function di(Ot,Nt="1",gt="1"){let it=[Nt,gt,Ot],bt=Ot.indexOf("calc");if(bt>0){it[2]=Yt(Ot.substring(bt).trim());let ei=Ot.substr(0,bt).trim().split(" ");2==ei.length&&(it[0]=ei[0],it[1]=ei[1])}else if(0==bt)it[2]=Yt(Ot.trim());else{let ei=Ot.split(" ");it=3===ei.length?ei:[Nt,gt,Ot]}return it}function Yt(Ot){return Ot.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}function ui(Ot,Nt){if(void 0===Nt)return Ot;const gt=it=>{const bt=+it.slice(0,-"x".length);return Ot.endsWith("x")&&!isNaN(bt)?`${bt*Nt.value}${Nt.unit}`:Ot};return Ot.includes(" ")?Ot.split(" ").map(gt).join(" "):gt(Ot)}},3322:(Be,K,p)=>{"use strict";p.d(K,{Zl:()=>T,aT:()=>n,oO:()=>B});var t=p(5e3),e=p(3270),f=p(9808),C=(p(3191),p(2722),p(2313));let S=(()=>{class _ extends e.iR{constructor(N,H,X,he,be,Pe,Ee){super(N,null,H,X),this.ngClassInstance=Ee,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new f.mk(he,be,N,Pe)),this.init(),this.setValue("","")}set klass(N){this.ngClassInstance.klass=N,this.setValue(N,"")}updateWithValue(N){this.ngClassInstance.ngClass=N,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return _.\u0275fac=function(N){return new(N||_)(t.Y36(t.SBq),t.Y36(e.RK),t.Y36(e.yB),t.Y36(t.ZZ4),t.Y36(t.aQg),t.Y36(t.Qsj),t.Y36(f.mk,10))},_.\u0275dir=t.lG2({type:_,inputs:{klass:["class","klass"]},features:[t.qOj]}),_})();const k=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let B=(()=>{class _ extends S{constructor(){super(...arguments),this.inputs=k}}return _.\u0275fac=function(){let V;return function(H){return(V||(V=t.n5z(_)))(H||_)}}(),_.\u0275dir=t.lG2({type:_,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},features:[t.qOj]}),_})();class re{constructor(V,N,H=!0){this.key=V,this.value=N,this.key=H?V.replace(/['"]/g,"").trim():V.trim(),this.value=H?N.replace(/['"]/g,"").trim():N.trim(),this.value=this.value.replace(/;/,"")}}function ge(_){let V=typeof _;return"object"===V?_.constructor===Array?"array":_.constructor===Set?"set":"object":V}function i(_){const[V,...N]=_.split(":");return new re(V,N.join(":"))}function r(_,V){return V.key&&(_[V.key]=V.value),_}let u=(()=>{class _ extends e.iR{constructor(N,H,X,he,be,Pe,Ee,j,Ve){var Me;super(N,null,H,X),this.sanitizer=he,this.ngStyleInstance=Ee,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new f.PC(N,be,Pe)),this.init();const J=null!==(Me=this.nativeElement.getAttribute("style"))&&void 0!==Me?Me:"";this.fallbackStyles=this.buildStyleMap(J),this.isServer=j&&(0,f.PM)(Ve)}updateWithValue(N){const H=this.buildStyleMap(N);this.ngStyleInstance.ngStyle=Object.assign(Object.assign({},this.fallbackStyles),H),this.isServer&&this.applyStyleToElement(H),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(N){const H=X=>{var he;return null!==(he=this.sanitizer.sanitize(t.q3G.STYLE,X))&&void 0!==he?he:""};if(N)switch(ge(N)){case"string":return I(function q(_,V=";"){return String(_).trim().split(V).map(N=>N.trim()).filter(N=>""!==N)}(N),H);case"array":return I(N,H);default:return function x(_,V){let N=[];return"set"===ge(_)?_.forEach(H=>N.push(H)):Object.keys(_).forEach(H=>{N.push(`${H}:${_[H]}`)}),function _e(_,V){return _.map(i).filter(H=>!!H).map(H=>(V&&(H.value=V(H.value)),H)).reduce(r,{})}(N,V)}(N,H)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return _.\u0275fac=function(N){return new(N||_)(t.Y36(t.SBq),t.Y36(e.RK),t.Y36(e.yB),t.Y36(C.H7),t.Y36(t.aQg),t.Y36(t.Qsj),t.Y36(f.PC,10),t.Y36(e.wY),t.Y36(t.Lbi))},_.\u0275dir=t.lG2({type:_,features:[t.qOj]}),_})();const c=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"];let T=(()=>{class _ extends u{constructor(){super(...arguments),this.inputs=c}}return _.\u0275fac=function(){let V;return function(H){return(V||(V=t.n5z(_)))(H||_)}}(),_.\u0275dir=t.lG2({type:_,selectors:[["","ngStyle",""],["","ngStyle.xs",""],["","ngStyle.sm",""],["","ngStyle.md",""],["","ngStyle.lg",""],["","ngStyle.xl",""],["","ngStyle.lt-sm",""],["","ngStyle.lt-md",""],["","ngStyle.lt-lg",""],["","ngStyle.lt-xl",""],["","ngStyle.gt-xs",""],["","ngStyle.gt-sm",""],["","ngStyle.gt-md",""],["","ngStyle.gt-lg",""]],inputs:{ngStyle:"ngStyle","ngStyle.xs":"ngStyle.xs","ngStyle.sm":"ngStyle.sm","ngStyle.md":"ngStyle.md","ngStyle.lg":"ngStyle.lg","ngStyle.xl":"ngStyle.xl","ngStyle.lt-sm":"ngStyle.lt-sm","ngStyle.lt-md":"ngStyle.lt-md","ngStyle.lt-lg":"ngStyle.lt-lg","ngStyle.lt-xl":"ngStyle.lt-xl","ngStyle.gt-xs":"ngStyle.gt-xs","ngStyle.gt-sm":"ngStyle.gt-sm","ngStyle.gt-md":"ngStyle.gt-md","ngStyle.gt-lg":"ngStyle.gt-lg"},features:[t.qOj]}),_})();function I(_,V){return _.map(i).filter(H=>!!H).map(H=>(V&&(H.value=V(H.value)),H)).reduce(r,{})}let n=(()=>{class _{}return _.\u0275fac=function(N){return new(N||_)},_.\u0275mod=t.oAB({type:_}),_.\u0275inj=t.cJS({imports:[[e.IR]]}),_})()},7093:(Be,K,p)=>{"use strict";p.d(K,{Wh:()=>Yt,ae:()=>Re,xw:()=>w,yH:()=>v});var t=p(5e3),e=p(226),f=p(3270),M=p(9042),C=(p(7579),p(2722));let d=(()=>{class ke extends f.QI{buildStyles(ye,{display:ht}){const mt=(0,M.Ar)(ye);return Object.assign(Object.assign({},mt),{display:"none"===ht?ht:mt.display})}}return ke.\u0275fac=function(){let de;return function(ht){return(de||(de=t.n5z(ke)))(ht||ke)}}(),ke.\u0275prov=t.Yz7({token:ke,factory:ke.\u0275fac,providedIn:"root"}),ke})();const R=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let L=(()=>{class ke extends f.iR{constructor(ye,ht,mt,Ft,nt){super(ye,mt,ht,Ft),this._config=nt,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(ye){var ht;const Ft=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=null!==(ht=D.get(Ft))&&void 0!==ht?ht:new Map,D.set(Ft,this.styleCache),this.currentValue!==ye&&(this.addStyles(ye,{display:Ft}),this.currentValue=ye)}}return ke.\u0275fac=function(ye){return new(ye||ke)(t.Y36(t.SBq),t.Y36(f.RK),t.Y36(d),t.Y36(f.yB),t.Y36(f.WU))},ke.\u0275dir=t.lG2({type:ke,features:[t.qOj]}),ke})(),w=(()=>{class ke extends L{constructor(){super(...arguments),this.inputs=R}}return ke.\u0275fac=function(){let de;return function(ht){return(de||(de=t.n5z(ke)))(ht||ke)}}(),ke.\u0275dir=t.lG2({type:ke,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},features:[t.qOj]}),ke})();const D=new Map;let i=(()=>{class ke extends f.QI{constructor(ye){super(),this.layoutConfig=ye}buildStyles(ye,ht){let[mt,Ft,...nt]=ye.split(" "),He=nt.join(" ");const rt=ht.direction.indexOf("column")>-1?"column":"row",et=(0,M.tj)(rt)?"max-width":"max-height",Ae=(0,M.tj)(rt)?"min-width":"min-height",Ge=String(He).indexOf("calc")>-1,ot=Ge||"auto"===He,lt=String(He).indexOf("%")>-1&&!Ge,Ct=String(He).indexOf("px")>-1||String(He).indexOf("rem")>-1||String(He).indexOf("em")>-1||String(He).indexOf("vw")>-1||String(He).indexOf("vh")>-1;let mi=Ge||Ct;mt="0"==mt?0:mt,Ft="0"==Ft?0:Ft;const Jt=!mt&&!Ft;let $t={};const Qi={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(He||""){case"":const hi=!1!==this.layoutConfig.useColumnBasisZero;He="row"===rt?"0%":hi?"0.000000001px":"auto";break;case"initial":case"nogrow":mt=0,He="auto";break;case"grow":He="100%";break;case"noshrink":Ft=0,He="auto";break;case"auto":break;case"none":mt=0,Ft=0,He="auto";break;default:!mi&&!lt&&!isNaN(He)&&(He+="%"),"0%"===He&&(mi=!0),"0px"===He&&(He="0%"),$t=(0,M.kt)(Qi,Ge?{"flex-grow":mt,"flex-shrink":Ft,"flex-basis":mi?He:"100%"}:{flex:`${mt} ${Ft} ${mi?He:"100%"}`})}return $t.flex||$t["flex-grow"]||($t=(0,M.kt)(Qi,Ge?{"flex-grow":mt,"flex-shrink":Ft,"flex-basis":He}:{flex:`${mt} ${Ft} ${He}`})),"0%"!==He&&"0px"!==He&&"0.000000001px"!==He&&"auto"!==He&&($t[Ae]=Jt||mi&&mt?He:null,$t[et]=Jt||!ot&&Ft?He:null),$t[Ae]||$t[et]?ht.hasWrap&&($t[Ge?"flex-basis":"flex"]=$t[et]?Ge?$t[et]:`${mt} ${Ft} ${$t[et]}`:Ge?$t[Ae]:`${mt} ${Ft} ${$t[Ae]}`):$t=(0,M.kt)(Qi,Ge?{"flex-grow":mt,"flex-shrink":Ft,"flex-basis":He}:{flex:`${mt} ${Ft} ${He}`}),(0,M.kt)($t,{"box-sizing":"border-box"})}}return ke.\u0275fac=function(ye){return new(ye||ke)(t.LFG(f.WU))},ke.\u0275prov=t.Yz7({token:ke,factory:ke.\u0275fac,providedIn:"root"}),ke})();const r=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let c=(()=>{class ke extends f.iR{constructor(ye,ht,mt,Ft,nt){super(ye,Ft,ht,nt),this.layoutConfig=mt,this.marshal=nt,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(ye){this.flexShrink=ye||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(ye){this.flexGrow=ye||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,C.R)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,C.R)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(ye){const mt=ye.value.split(" ");this.direction=mt[0],this.wrap=void 0!==mt[1]&&"wrap"===mt[1],this.triggerUpdate()}updateWithValue(ye){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const mt=this.direction,Ft=mt.startsWith("row"),nt=this.wrap;Ft&&nt?this.styleCache=y:Ft&&!nt?this.styleCache=T:!Ft&&nt?this.styleCache=n:!Ft&&!nt&&(this.styleCache=I);const He=String(ye).replace(";",""),rt=(0,f.Ot)(He,this.flexGrow,this.flexShrink);this.addStyles(rt.join(" "),{direction:mt,hasWrap:nt})}triggerReflow(){const ye=this.activatedValue;if(void 0!==ye){const ht=(0,f.Ot)(ye+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,ht.join(" "))}}}return ke.\u0275fac=function(ye){return new(ye||ke)(t.Y36(t.SBq),t.Y36(f.RK),t.Y36(f.WU),t.Y36(i),t.Y36(f.yB))},ke.\u0275dir=t.lG2({type:ke,inputs:{shrink:["fxShrink","shrink"],grow:["fxGrow","grow"]},features:[t.qOj]}),ke})(),v=(()=>{class ke extends c{constructor(){super(...arguments),this.inputs=r}}return ke.\u0275fac=function(){let de;return function(ht){return(de||(de=t.n5z(ke)))(ht||ke)}}(),ke.\u0275dir=t.lG2({type:ke,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},features:[t.qOj]}),ke})();const T=new Map,I=new Map,y=new Map,n=new Map;let ft=(()=>{class ke extends f.QI{buildStyles(ye,ht){const mt={},[Ft,nt]=ye.split(" ");switch(Ft){case"center":mt["justify-content"]="center";break;case"space-around":mt["justify-content"]="space-around";break;case"space-between":mt["justify-content"]="space-between";break;case"space-evenly":mt["justify-content"]="space-evenly";break;case"end":case"flex-end":mt["justify-content"]="flex-end";break;default:mt["justify-content"]="flex-start"}switch(nt){case"start":case"flex-start":mt["align-items"]=mt["align-content"]="flex-start";break;case"center":mt["align-items"]=mt["align-content"]="center";break;case"end":case"flex-end":mt["align-items"]=mt["align-content"]="flex-end";break;case"space-between":mt["align-content"]="space-between",mt["align-items"]="stretch";break;case"space-around":mt["align-content"]="space-around",mt["align-items"]="stretch";break;case"baseline":mt["align-content"]="stretch",mt["align-items"]="baseline";break;default:mt["align-items"]=mt["align-content"]="stretch"}return(0,M.kt)(mt,{display:ht.inline?"inline-flex":"flex","flex-direction":ht.layout,"box-sizing":"border-box","max-width":"stretch"===nt?(0,M.tj)(ht.layout)?null:"100%":null,"max-height":"stretch"===nt&&(0,M.tj)(ht.layout)?"100%":null})}}return ke.\u0275fac=function(){let de;return function(ht){return(de||(de=t.n5z(ke)))(ht||ke)}}(),ke.\u0275prov=t.Yz7({token:ke,factory:ke.\u0275fac,providedIn:"root"}),ke})();const tt=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let di=(()=>{class ke extends f.iR{constructor(ye,ht,mt,Ft){super(ye,mt,ht,Ft),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,C.R)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(ye){const ht=this.layout||"row",mt=this.inline;"row"===ht&&mt?this.styleCache=gt:"row"!==ht||mt?"row-reverse"===ht&&mt?this.styleCache=bt:"row-reverse"!==ht||mt?"column"===ht&&mt?this.styleCache=it:"column"!==ht||mt?"column-reverse"===ht&&mt?this.styleCache=ei:"column-reverse"===ht&&!mt&&(this.styleCache=Nt):this.styleCache=ui:this.styleCache=Ot:this.styleCache=Zt,this.addStyles(ye,{layout:ht,inline:mt})}onLayoutChange(ye){const ht=ye.value.split(" ");this.layout=ht[0],this.inline=ye.value.includes("inline"),M.iQ.find(mt=>mt===this.layout)||(this.layout="row"),this.triggerUpdate()}}return ke.\u0275fac=function(ye){return new(ye||ke)(t.Y36(t.SBq),t.Y36(f.RK),t.Y36(ft),t.Y36(f.yB))},ke.\u0275dir=t.lG2({type:ke,features:[t.qOj]}),ke})(),Yt=(()=>{class ke extends di{constructor(){super(...arguments),this.inputs=tt}}return ke.\u0275fac=function(){let de;return function(ht){return(de||(de=t.n5z(ke)))(ht||ke)}}(),ke.\u0275dir=t.lG2({type:ke,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},features:[t.qOj]}),ke})();const Zt=new Map,ui=new Map,Ot=new Map,Nt=new Map,gt=new Map,it=new Map,bt=new Map,ei=new Map;let Re=(()=>{class ke{}return ke.\u0275fac=function(ye){return new(ye||ke)},ke.\u0275mod=t.oAB({type:ke}),ke.\u0275inj=t.cJS({imports:[[f.IR,e.vT]]}),ke})()},3075:(Be,K,p)=>{"use strict";p.d(K,{Cf:()=>Z,F:()=>ti,Fd:()=>Va,Fj:()=>k,JJ:()=>we,JL:()=>ce,JU:()=>R,NI:()=>Ti,On:()=>Nn,Q7:()=>Gr,UX:()=>ci,Zs:()=>Ta,_Y:()=>tr,a5:()=>Me,kI:()=>ee,oH:()=>ia,qQ:()=>oa,qu:()=>jt,sg:()=>ra,u:()=>Wn,u5:()=>It,wV:()=>Ei});var t=p(5e3),e=p(9808),f=p(457),M=p(4128),a=p(4004);let C=(()=>{class je{constructor(Fe,At){this._renderer=Fe,this._elementRef=At,this.onChange=Si=>{},this.onTouched=()=>{}}setProperty(Fe,At){this._renderer.setProperty(this._elementRef.nativeElement,Fe,At)}registerOnTouched(Fe){this.onTouched=Fe}registerOnChange(Fe){this.onChange=Fe}setDisabledState(Fe){this.setProperty("disabled",Fe)}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(t.Qsj),t.Y36(t.SBq))},je.\u0275dir=t.lG2({type:je}),je})(),d=(()=>{class je extends C{}return je.\u0275fac=function(){let We;return function(At){return(We||(We=t.n5z(je)))(At||je)}}(),je.\u0275dir=t.lG2({type:je,features:[t.qOj]}),je})();const R=new t.OlP("NgValueAccessor"),w={provide:R,useExisting:(0,t.Gpc)(()=>k),multi:!0},S=new t.OlP("CompositionEventMode");let k=(()=>{class je extends C{constructor(Fe,At,Si){super(Fe,At),this._compositionMode=Si,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function D(){const je=(0,e.q)()?(0,e.q)().getUserAgent():"";return/android (\d+)/.test(je.toLowerCase())}())}writeValue(Fe){this.setProperty("value",null==Fe?"":Fe)}_handleInput(Fe){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(Fe)}_compositionStart(){this._composing=!0}_compositionEnd(Fe){this._composing=!1,this._compositionMode&&this.onChange(Fe)}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(t.Qsj),t.Y36(t.SBq),t.Y36(S,8))},je.\u0275dir=t.lG2({type:je,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(Fe,At){1&Fe&&t.NdJ("input",function(Gi){return At._handleInput(Gi.target.value)})("blur",function(){return At.onTouched()})("compositionstart",function(){return At._compositionStart()})("compositionend",function(Gi){return At._compositionEnd(Gi.target.value)})},features:[t._Bn([w]),t.qOj]}),je})();function E(je){return null==je||0===je.length}function B(je){return null!=je&&"number"==typeof je.length}const Z=new t.OlP("NgValidators"),Y=new t.OlP("NgAsyncValidators"),ae=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class ee{static min(We){return ue(We)}static max(We){return ie(We)}static required(We){return re(We)}static requiredTrue(We){return ge(We)}static email(We){return function q(je){return E(je.value)||ae.test(je.value)?null:{email:!0}}(We)}static minLength(We){return function _e(je){return We=>E(We.value)||!B(We.value)?null:We.value.lengthB(We.value)&&We.value.length>je?{maxlength:{requiredLength:je,actualLength:We.value.length}}:null}(We)}static pattern(We){return function i(je){if(!je)return r;let We,Fe;return"string"==typeof je?(Fe="","^"!==je.charAt(0)&&(Fe+="^"),Fe+=je,"$"!==je.charAt(je.length-1)&&(Fe+="$"),We=new RegExp(Fe)):(Fe=je.toString(),We=je),At=>{if(E(At.value))return null;const Si=At.value;return We.test(Si)?null:{pattern:{requiredPattern:Fe,actualValue:Si}}}}(We)}static nullValidator(We){return null}static compose(We){return n(We)}static composeAsync(We){return V(We)}}function ue(je){return We=>{if(E(We.value)||E(je))return null;const Fe=parseFloat(We.value);return!isNaN(Fe)&&Fe{if(E(We.value)||E(je))return null;const Fe=parseFloat(We.value);return!isNaN(Fe)&&Fe>je?{max:{max:je,actual:We.value}}:null}}function re(je){return E(je.value)?{required:!0}:null}function ge(je){return!0===je.value?null:{required:!0}}function r(je){return null}function u(je){return null!=je}function c(je){const We=(0,t.QGY)(je)?(0,f.D)(je):je;return(0,t.CqO)(We),We}function v(je){let We={};return je.forEach(Fe=>{We=null!=Fe?Object.assign(Object.assign({},We),Fe):We}),0===Object.keys(We).length?null:We}function T(je,We){return We.map(Fe=>Fe(je))}function y(je){return je.map(We=>function I(je){return!je.validate}(We)?We:Fe=>We.validate(Fe))}function n(je){if(!je)return null;const We=je.filter(u);return 0==We.length?null:function(Fe){return v(T(Fe,We))}}function _(je){return null!=je?n(y(je)):null}function V(je){if(!je)return null;const We=je.filter(u);return 0==We.length?null:function(Fe){const At=T(Fe,We).map(c);return(0,M.D)(At).pipe((0,a.U)(v))}}function N(je){return null!=je?V(y(je)):null}function H(je,We){return null===je?[We]:Array.isArray(je)?[...je,We]:[je,We]}function X(je){return je._rawValidators}function he(je){return je._rawAsyncValidators}function be(je){return je?Array.isArray(je)?je:[je]:[]}function Pe(je,We){return Array.isArray(je)?je.includes(We):je===We}function Ee(je,We){const Fe=be(We);return be(je).forEach(Si=>{Pe(Fe,Si)||Fe.push(Si)}),Fe}function j(je,We){return be(We).filter(Fe=>!Pe(je,Fe))}class Ve{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_setValidators(We){this._rawValidators=We||[],this._composedValidatorFn=_(this._rawValidators)}_setAsyncValidators(We){this._rawAsyncValidators=We||[],this._composedAsyncValidatorFn=N(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(We){this._onDestroyCallbacks.push(We)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(We=>We()),this._onDestroyCallbacks=[]}reset(We){this.control&&this.control.reset(We)}hasError(We,Fe){return!!this.control&&this.control.hasError(We,Fe)}getError(We,Fe){return this.control?this.control.getError(We,Fe):null}}class Me extends Ve{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class J extends Ve{get formDirective(){return null}get path(){return null}}class Ie{constructor(We){this._cd=We}is(We){var Fe,At,Si;return"submitted"===We?!!(null===(Fe=this._cd)||void 0===Fe?void 0:Fe.submitted):!!(null===(Si=null===(At=this._cd)||void 0===At?void 0:At.control)||void 0===Si?void 0:Si[We])}}let we=(()=>{class je extends Ie{constructor(Fe){super(Fe)}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(Me,2))},je.\u0275dir=t.lG2({type:je,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(Fe,At){2&Fe&&t.ekj("ng-untouched",At.is("untouched"))("ng-touched",At.is("touched"))("ng-pristine",At.is("pristine"))("ng-dirty",At.is("dirty"))("ng-valid",At.is("valid"))("ng-invalid",At.is("invalid"))("ng-pending",At.is("pending"))},features:[t.qOj]}),je})(),ce=(()=>{class je extends Ie{constructor(Fe){super(Fe)}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(J,10))},je.\u0275dir=t.lG2({type:je,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(Fe,At){2&Fe&&t.ekj("ng-untouched",At.is("untouched"))("ng-touched",At.is("touched"))("ng-pristine",At.is("pristine"))("ng-dirty",At.is("dirty"))("ng-valid",At.is("valid"))("ng-invalid",At.is("invalid"))("ng-pending",At.is("pending"))("ng-submitted",At.is("submitted"))},features:[t.qOj]}),je})();function gt(je,We){return[...We.path,je]}function it(je,We){Re(je,We),We.valueAccessor.writeValue(je.value),function de(je,We){We.valueAccessor.registerOnChange(Fe=>{je._pendingValue=Fe,je._pendingChange=!0,je._pendingDirty=!0,"change"===je.updateOn&&ht(je,We)})}(je,We),function mt(je,We){const Fe=(At,Si)=>{We.valueAccessor.writeValue(At),Si&&We.viewToModelUpdate(At)};je.registerOnChange(Fe),We._registerOnDestroy(()=>{je._unregisterOnChange(Fe)})}(je,We),function ye(je,We){We.valueAccessor.registerOnTouched(()=>{je._pendingTouched=!0,"blur"===je.updateOn&&je._pendingChange&&ht(je,We),"submit"!==je.updateOn&&je.markAsTouched()})}(je,We),function Qt(je,We){if(We.valueAccessor.setDisabledState){const Fe=At=>{We.valueAccessor.setDisabledState(At)};je.registerOnDisabledChange(Fe),We._registerOnDestroy(()=>{je._unregisterOnDisabledChange(Fe)})}}(je,We)}function bt(je,We,Fe=!0){const At=()=>{};We.valueAccessor&&(We.valueAccessor.registerOnChange(At),We.valueAccessor.registerOnTouched(At)),ke(je,We),je&&(We._invokeOnDestroyCallbacks(),je._registerOnCollectionChange(()=>{}))}function ei(je,We){je.forEach(Fe=>{Fe.registerOnValidatorChange&&Fe.registerOnValidatorChange(We)})}function Re(je,We){const Fe=X(je);null!==We.validator?je.setValidators(H(Fe,We.validator)):"function"==typeof Fe&&je.setValidators([Fe]);const At=he(je);null!==We.asyncValidator?je.setAsyncValidators(H(At,We.asyncValidator)):"function"==typeof At&&je.setAsyncValidators([At]);const Si=()=>je.updateValueAndValidity();ei(We._rawValidators,Si),ei(We._rawAsyncValidators,Si)}function ke(je,We){let Fe=!1;if(null!==je){if(null!==We.validator){const Si=X(je);if(Array.isArray(Si)&&Si.length>0){const Gi=Si.filter(Bn=>Bn!==We.validator);Gi.length!==Si.length&&(Fe=!0,je.setValidators(Gi))}}if(null!==We.asyncValidator){const Si=he(je);if(Array.isArray(Si)&&Si.length>0){const Gi=Si.filter(Bn=>Bn!==We.asyncValidator);Gi.length!==Si.length&&(Fe=!0,je.setAsyncValidators(Gi))}}}const At=()=>{};return ei(We._rawValidators,At),ei(We._rawAsyncValidators,At),Fe}function ht(je,We){je._pendingDirty&&je.markAsDirty(),je.setValue(je._pendingValue,{emitModelToViewChange:!1}),We.viewToModelUpdate(je._pendingValue),je._pendingChange=!1}function Ft(je,We){Re(je,We)}function Ge(je,We){if(!je.hasOwnProperty("model"))return!1;const Fe=je.model;return!!Fe.isFirstChange()||!Object.is(We,Fe.currentValue)}function lt(je,We){je._syncPendingControls(),We.forEach(Fe=>{const At=Fe.control;"submit"===At.updateOn&&At._pendingChange&&(Fe.viewToModelUpdate(At._pendingValue),At._pendingChange=!1)})}function Ct(je,We){if(!We)return null;let Fe,At,Si;return Array.isArray(We),We.forEach(Gi=>{Gi.constructor===k?Fe=Gi:function ot(je){return Object.getPrototypeOf(je.constructor)===d}(Gi)?At=Gi:Si=Gi}),Si||At||Fe||null}function mi(je,We){const Fe=je.indexOf(We);Fe>-1&&je.splice(Fe,1)}const Qi="VALID",hi="INVALID",si="PENDING",Ji="DISABLED";function Vi(je){return(ve(je)?je.validators:je)||null}function Ui(je){return Array.isArray(je)?_(je):je||null}function Ue(je,We){return(ve(We)?We.asyncValidators:je)||null}function Tt(je){return Array.isArray(je)?N(je):je||null}function ve(je){return null!=je&&!Array.isArray(je)&&"object"==typeof je}const Qe=je=>je instanceof Ti,_t=je=>je instanceof $i,se=je=>je instanceof Wi;function Je(je){return Qe(je)?je.value:je.getRawValue()}function xt(je,We){const Fe=_t(je),At=je.controls;if(!(Fe?Object.keys(At):At).length)throw new t.vHH(1e3,"");if(!At[We])throw new t.vHH(1001,"")}function Bt(je,We){_t(je),je._forEachChild((At,Si)=>{if(void 0===We[Si])throw new t.vHH(1002,"")})}class xi{constructor(We,Fe){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=!1,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._rawValidators=We,this._rawAsyncValidators=Fe,this._composedValidatorFn=Ui(this._rawValidators),this._composedAsyncValidatorFn=Tt(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn}set validator(We){this._rawValidators=this._composedValidatorFn=We}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(We){this._rawAsyncValidators=this._composedAsyncValidatorFn=We}get parent(){return this._parent}get valid(){return this.status===Qi}get invalid(){return this.status===hi}get pending(){return this.status==si}get disabled(){return this.status===Ji}get enabled(){return this.status!==Ji}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(We){this._rawValidators=We,this._composedValidatorFn=Ui(We)}setAsyncValidators(We){this._rawAsyncValidators=We,this._composedAsyncValidatorFn=Tt(We)}addValidators(We){this.setValidators(Ee(We,this._rawValidators))}addAsyncValidators(We){this.setAsyncValidators(Ee(We,this._rawAsyncValidators))}removeValidators(We){this.setValidators(j(We,this._rawValidators))}removeAsyncValidators(We){this.setAsyncValidators(j(We,this._rawAsyncValidators))}hasValidator(We){return Pe(this._rawValidators,We)}hasAsyncValidator(We){return Pe(this._rawAsyncValidators,We)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(We={}){this.touched=!0,this._parent&&!We.onlySelf&&this._parent.markAsTouched(We)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(We=>We.markAllAsTouched())}markAsUntouched(We={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(Fe=>{Fe.markAsUntouched({onlySelf:!0})}),this._parent&&!We.onlySelf&&this._parent._updateTouched(We)}markAsDirty(We={}){this.pristine=!1,this._parent&&!We.onlySelf&&this._parent.markAsDirty(We)}markAsPristine(We={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(Fe=>{Fe.markAsPristine({onlySelf:!0})}),this._parent&&!We.onlySelf&&this._parent._updatePristine(We)}markAsPending(We={}){this.status=si,!1!==We.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!We.onlySelf&&this._parent.markAsPending(We)}disable(We={}){const Fe=this._parentMarkedDirty(We.onlySelf);this.status=Ji,this.errors=null,this._forEachChild(At=>{At.disable(Object.assign(Object.assign({},We),{onlySelf:!0}))}),this._updateValue(),!1!==We.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},We),{skipPristineCheck:Fe})),this._onDisabledChange.forEach(At=>At(!0))}enable(We={}){const Fe=this._parentMarkedDirty(We.onlySelf);this.status=Qi,this._forEachChild(At=>{At.enable(Object.assign(Object.assign({},We),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:We.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},We),{skipPristineCheck:Fe})),this._onDisabledChange.forEach(At=>At(!1))}_updateAncestors(We){this._parent&&!We.onlySelf&&(this._parent.updateValueAndValidity(We),We.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(We){this._parent=We}updateValueAndValidity(We={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===Qi||this.status===si)&&this._runAsyncValidator(We.emitEvent)),!1!==We.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!We.onlySelf&&this._parent.updateValueAndValidity(We)}_updateTreeValidity(We={emitEvent:!0}){this._forEachChild(Fe=>Fe._updateTreeValidity(We)),this.updateValueAndValidity({onlySelf:!0,emitEvent:We.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?Ji:Qi}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(We){if(this.asyncValidator){this.status=si,this._hasOwnPendingAsyncValidator=!0;const Fe=c(this.asyncValidator(this));this._asyncValidationSubscription=Fe.subscribe(At=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(At,{emitEvent:We})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(We,Fe={}){this.errors=We,this._updateControlsErrors(!1!==Fe.emitEvent)}get(We){return function Zi(je,We,Fe){if(null==We||(Array.isArray(We)||(We=We.split(Fe)),Array.isArray(We)&&0===We.length))return null;let At=je;return We.forEach(Si=>{At=_t(At)?At.controls.hasOwnProperty(Si)?At.controls[Si]:null:se(At)&&At.at(Si)||null}),At}(this,We,".")}getError(We,Fe){const At=Fe?this.get(Fe):this;return At&&At.errors?At.errors[We]:null}hasError(We,Fe){return!!this.getError(We,Fe)}get root(){let We=this;for(;We._parent;)We=We._parent;return We}_updateControlsErrors(We){this.status=this._calculateStatus(),We&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(We)}_initObservables(){this.valueChanges=new t.vpe,this.statusChanges=new t.vpe}_calculateStatus(){return this._allControlsDisabled()?Ji:this.errors?hi:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(si)?si:this._anyControlsHaveStatus(hi)?hi:Qi}_anyControlsHaveStatus(We){return this._anyControls(Fe=>Fe.status===We)}_anyControlsDirty(){return this._anyControls(We=>We.dirty)}_anyControlsTouched(){return this._anyControls(We=>We.touched)}_updatePristine(We={}){this.pristine=!this._anyControlsDirty(),this._parent&&!We.onlySelf&&this._parent._updatePristine(We)}_updateTouched(We={}){this.touched=this._anyControlsTouched(),this._parent&&!We.onlySelf&&this._parent._updateTouched(We)}_isBoxedValue(We){return"object"==typeof We&&null!==We&&2===Object.keys(We).length&&"value"in We&&"disabled"in We}_registerOnCollectionChange(We){this._onCollectionChange=We}_setUpdateStrategy(We){ve(We)&&null!=We.updateOn&&(this._updateOn=We.updateOn)}_parentMarkedDirty(We){return!We&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}}class Ti extends xi{constructor(We=null,Fe,At){super(Vi(Fe),Ue(At,Fe)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(We),this._setUpdateStrategy(Fe),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),ve(Fe)&&Fe.initialValueIsDefault&&(this.defaultValue=this._isBoxedValue(We)?We.value:We)}setValue(We,Fe={}){this.value=this._pendingValue=We,this._onChange.length&&!1!==Fe.emitModelToViewChange&&this._onChange.forEach(At=>At(this.value,!1!==Fe.emitViewToModelChange)),this.updateValueAndValidity(Fe)}patchValue(We,Fe={}){this.setValue(We,Fe)}reset(We=this.defaultValue,Fe={}){this._applyFormState(We),this.markAsPristine(Fe),this.markAsUntouched(Fe),this.setValue(this.value,Fe),this._pendingChange=!1}_updateValue(){}_anyControls(We){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(We){this._onChange.push(We)}_unregisterOnChange(We){mi(this._onChange,We)}registerOnDisabledChange(We){this._onDisabledChange.push(We)}_unregisterOnDisabledChange(We){mi(this._onDisabledChange,We)}_forEachChild(We){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(We){this._isBoxedValue(We)?(this.value=this._pendingValue=We.value,We.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=We}}class $i extends xi{constructor(We,Fe,At){super(Vi(Fe),Ue(At,Fe)),this.controls=We,this._initObservables(),this._setUpdateStrategy(Fe),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(We,Fe){return this.controls[We]?this.controls[We]:(this.controls[We]=Fe,Fe.setParent(this),Fe._registerOnCollectionChange(this._onCollectionChange),Fe)}addControl(We,Fe,At={}){this.registerControl(We,Fe),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}removeControl(We,Fe={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),delete this.controls[We],this.updateValueAndValidity({emitEvent:Fe.emitEvent}),this._onCollectionChange()}setControl(We,Fe,At={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),delete this.controls[We],Fe&&this.registerControl(We,Fe),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}contains(We){return this.controls.hasOwnProperty(We)&&this.controls[We].enabled}setValue(We,Fe={}){Bt(this,We),Object.keys(We).forEach(At=>{xt(this,At),this.controls[At].setValue(We[At],{onlySelf:!0,emitEvent:Fe.emitEvent})}),this.updateValueAndValidity(Fe)}patchValue(We,Fe={}){null!=We&&(Object.keys(We).forEach(At=>{this.controls[At]&&this.controls[At].patchValue(We[At],{onlySelf:!0,emitEvent:Fe.emitEvent})}),this.updateValueAndValidity(Fe))}reset(We={},Fe={}){this._forEachChild((At,Si)=>{At.reset(We[Si],{onlySelf:!0,emitEvent:Fe.emitEvent})}),this._updatePristine(Fe),this._updateTouched(Fe),this.updateValueAndValidity(Fe)}getRawValue(){return this._reduceChildren({},(We,Fe,At)=>(We[At]=Je(Fe),We))}_syncPendingControls(){let We=this._reduceChildren(!1,(Fe,At)=>!!At._syncPendingControls()||Fe);return We&&this.updateValueAndValidity({onlySelf:!0}),We}_forEachChild(We){Object.keys(this.controls).forEach(Fe=>{const At=this.controls[Fe];At&&We(At,Fe)})}_setUpControls(){this._forEachChild(We=>{We.setParent(this),We._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(We){for(const Fe of Object.keys(this.controls)){const At=this.controls[Fe];if(this.contains(Fe)&&We(At))return!0}return!1}_reduceValue(){return this._reduceChildren({},(We,Fe,At)=>((Fe.enabled||this.disabled)&&(We[At]=Fe.value),We))}_reduceChildren(We,Fe){let At=We;return this._forEachChild((Si,Gi)=>{At=Fe(At,Si,Gi)}),At}_allControlsDisabled(){for(const We of Object.keys(this.controls))if(this.controls[We].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}}class Wi extends xi{constructor(We,Fe,At){super(Vi(Fe),Ue(At,Fe)),this.controls=We,this._initObservables(),this._setUpdateStrategy(Fe),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(We){return this.controls[We]}push(We,Fe={}){this.controls.push(We),this._registerControl(We),this.updateValueAndValidity({emitEvent:Fe.emitEvent}),this._onCollectionChange()}insert(We,Fe,At={}){this.controls.splice(We,0,Fe),this._registerControl(Fe),this.updateValueAndValidity({emitEvent:At.emitEvent})}removeAt(We,Fe={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),this.controls.splice(We,1),this.updateValueAndValidity({emitEvent:Fe.emitEvent})}setControl(We,Fe,At={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),this.controls.splice(We,1),Fe&&(this.controls.splice(We,0,Fe),this._registerControl(Fe)),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(We,Fe={}){Bt(this,We),We.forEach((At,Si)=>{xt(this,Si),this.at(Si).setValue(At,{onlySelf:!0,emitEvent:Fe.emitEvent})}),this.updateValueAndValidity(Fe)}patchValue(We,Fe={}){null!=We&&(We.forEach((At,Si)=>{this.at(Si)&&this.at(Si).patchValue(At,{onlySelf:!0,emitEvent:Fe.emitEvent})}),this.updateValueAndValidity(Fe))}reset(We=[],Fe={}){this._forEachChild((At,Si)=>{At.reset(We[Si],{onlySelf:!0,emitEvent:Fe.emitEvent})}),this._updatePristine(Fe),this._updateTouched(Fe),this.updateValueAndValidity(Fe)}getRawValue(){return this.controls.map(We=>Je(We))}clear(We={}){this.controls.length<1||(this._forEachChild(Fe=>Fe._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:We.emitEvent}))}_syncPendingControls(){let We=this.controls.reduce((Fe,At)=>!!At._syncPendingControls()||Fe,!1);return We&&this.updateValueAndValidity({onlySelf:!0}),We}_forEachChild(We){this.controls.forEach((Fe,At)=>{We(Fe,At)})}_updateValue(){this.value=this.controls.filter(We=>We.enabled||this.disabled).map(We=>We.value)}_anyControls(We){return this.controls.some(Fe=>Fe.enabled&&We(Fe))}_setUpControls(){this._forEachChild(We=>this._registerControl(We))}_allControlsDisabled(){for(const We of this.controls)if(We.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(We){We.setParent(this),We._registerOnCollectionChange(this._onCollectionChange)}}const on={provide:J,useExisting:(0,t.Gpc)(()=>ti)},fn=(()=>Promise.resolve(null))();let ti=(()=>{class je extends J{constructor(Fe,At){super(),this.submitted=!1,this._directives=new Set,this.ngSubmit=new t.vpe,this.form=new $i({},_(Fe),N(At))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(Fe){fn.then(()=>{const At=this._findContainer(Fe.path);Fe.control=At.registerControl(Fe.name,Fe.control),it(Fe.control,Fe),Fe.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(Fe)})}getControl(Fe){return this.form.get(Fe.path)}removeControl(Fe){fn.then(()=>{const At=this._findContainer(Fe.path);At&&At.removeControl(Fe.name),this._directives.delete(Fe)})}addFormGroup(Fe){fn.then(()=>{const At=this._findContainer(Fe.path),Si=new $i({});Ft(Si,Fe),At.registerControl(Fe.name,Si),Si.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(Fe){fn.then(()=>{const At=this._findContainer(Fe.path);At&&At.removeControl(Fe.name)})}getFormGroup(Fe){return this.form.get(Fe.path)}updateModel(Fe,At){fn.then(()=>{this.form.get(Fe.path).setValue(At)})}setValue(Fe){this.control.setValue(Fe)}onSubmit(Fe){return this.submitted=!0,lt(this.form,this._directives),this.ngSubmit.emit(Fe),!1}onReset(){this.resetForm()}resetForm(Fe){this.form.reset(Fe),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(Fe){return Fe.pop(),Fe.length?this.form.get(Fe):this.form}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(Z,10),t.Y36(Y,10))},je.\u0275dir=t.lG2({type:je,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(Fe,At){1&Fe&&t.NdJ("submit",function(Gi){return At.onSubmit(Gi)})("reset",function(){return At.onReset()})},inputs:{options:["ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[t._Bn([on]),t.qOj]}),je})();const pn={provide:Me,useExisting:(0,t.Gpc)(()=>Nn)},Dn=(()=>Promise.resolve(null))();let Nn=(()=>{class je extends Me{constructor(Fe,At,Si,Gi,Bn){super(),this._changeDetectorRef=Bn,this.control=new Ti,this._registered=!1,this.update=new t.vpe,this._parent=Fe,this._setValidators(At),this._setAsyncValidators(Si),this.valueAccessor=Ct(0,Gi)}ngOnChanges(Fe){if(this._checkForErrors(),!this._registered||"name"in Fe){if(this._registered&&(this._checkName(),this.formDirective)){const At=Fe.name.previousValue;this.formDirective.removeControl({name:At,path:this._getPath(At)})}this._setUpControl()}"isDisabled"in Fe&&this._updateDisabled(Fe),Ge(Fe,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(Fe){this.viewModel=Fe,this.update.emit(Fe)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){it(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(Fe){Dn.then(()=>{var At;this.control.setValue(Fe,{emitViewToModelChange:!1}),null===(At=this._changeDetectorRef)||void 0===At||At.markForCheck()})}_updateDisabled(Fe){const At=Fe.isDisabled.currentValue,Si=""===At||At&&"false"!==At;Dn.then(()=>{var Gi;Si&&!this.control.disabled?this.control.disable():!Si&&this.control.disabled&&this.control.enable(),null===(Gi=this._changeDetectorRef)||void 0===Gi||Gi.markForCheck()})}_getPath(Fe){return this._parent?gt(Fe,this._parent):[Fe]}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(J,9),t.Y36(Z,10),t.Y36(Y,10),t.Y36(R,10),t.Y36(t.sBO,8))},je.\u0275dir=t.lG2({type:je,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:["disabled","isDisabled"],model:["ngModel","model"],options:["ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[t._Bn([pn]),t.qOj,t.TTD]}),je})(),tr=(()=>{class je{}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275dir=t.lG2({type:je,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]}),je})();const gn={provide:R,useExisting:(0,t.Gpc)(()=>Ei),multi:!0};let Ei=(()=>{class je extends d{writeValue(Fe){this.setProperty("value",null==Fe?"":Fe)}registerOnChange(Fe){this.onChange=At=>{Fe(""==At?null:parseFloat(At))}}}return je.\u0275fac=function(){let We;return function(At){return(We||(We=t.n5z(je)))(At||je)}}(),je.\u0275dir=t.lG2({type:je,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(Fe,At){1&Fe&&t.NdJ("input",function(Gi){return At.onChange(Gi.target.value)})("blur",function(){return At.onTouched()})},features:[t._Bn([gn]),t.qOj]}),je})(),Qn=(()=>{class je{}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275mod=t.oAB({type:je}),je.\u0275inj=t.cJS({}),je})();const ha=new t.OlP("NgModelWithFormControlWarning"),Br={provide:Me,useExisting:(0,t.Gpc)(()=>ia)};let ia=(()=>{class je extends Me{constructor(Fe,At,Si,Gi){super(),this._ngModelWarningConfig=Gi,this.update=new t.vpe,this._ngModelWarningSent=!1,this._setValidators(Fe),this._setAsyncValidators(At),this.valueAccessor=Ct(0,Si)}set isDisabled(Fe){}ngOnChanges(Fe){if(this._isControlChanged(Fe)){const At=Fe.form.previousValue;At&&bt(At,this,!1),it(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})}Ge(Fe,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&bt(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(Fe){this.viewModel=Fe,this.update.emit(Fe)}_isControlChanged(Fe){return Fe.hasOwnProperty("form")}}return je._ngModelWarningSentOnce=!1,je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(Z,10),t.Y36(Y,10),t.Y36(R,10),t.Y36(ha,8))},je.\u0275dir=t.lG2({type:je,selectors:[["","formControl",""]],inputs:{form:["formControl","form"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[t._Bn([Br]),t.qOj,t.TTD]}),je})();const na={provide:J,useExisting:(0,t.Gpc)(()=>ra)};let ra=(()=>{class je extends J{constructor(Fe,At){super(),this.validators=Fe,this.asyncValidators=At,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new t.vpe,this._setValidators(Fe),this._setAsyncValidators(At)}ngOnChanges(Fe){this._checkFormPresent(),Fe.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(ke(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(Fe){const At=this.form.get(Fe.path);return it(At,Fe),At.updateValueAndValidity({emitEvent:!1}),this.directives.push(Fe),At}getControl(Fe){return this.form.get(Fe.path)}removeControl(Fe){bt(Fe.control||null,Fe,!1),mi(this.directives,Fe)}addFormGroup(Fe){this._setUpFormContainer(Fe)}removeFormGroup(Fe){this._cleanUpFormContainer(Fe)}getFormGroup(Fe){return this.form.get(Fe.path)}addFormArray(Fe){this._setUpFormContainer(Fe)}removeFormArray(Fe){this._cleanUpFormContainer(Fe)}getFormArray(Fe){return this.form.get(Fe.path)}updateModel(Fe,At){this.form.get(Fe.path).setValue(At)}onSubmit(Fe){return this.submitted=!0,lt(this.form,this.directives),this.ngSubmit.emit(Fe),!1}onReset(){this.resetForm()}resetForm(Fe){this.form.reset(Fe),this.submitted=!1}_updateDomValue(){this.directives.forEach(Fe=>{const At=Fe.control,Si=this.form.get(Fe.path);At!==Si&&(bt(At||null,Fe),Qe(Si)&&(it(Si,Fe),Fe.control=Si))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(Fe){const At=this.form.get(Fe.path);Ft(At,Fe),At.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(Fe){if(this.form){const At=this.form.get(Fe.path);At&&function nt(je,We){return ke(je,We)}(At,Fe)&&At.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){Re(this.form,this),this._oldForm&&ke(this._oldForm,this)}_checkFormPresent(){}}return je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(Z,10),t.Y36(Y,10))},je.\u0275dir=t.lG2({type:je,selectors:[["","formGroup",""]],hostBindings:function(Fe,At){1&Fe&&t.NdJ("submit",function(Gi){return At.onSubmit(Gi)})("reset",function(){return At.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[t._Bn([na]),t.qOj,t.TTD]}),je})();const kr={provide:Me,useExisting:(0,t.Gpc)(()=>Wn)};let Wn=(()=>{class je extends Me{constructor(Fe,At,Si,Gi,Bn){super(),this._ngModelWarningConfig=Bn,this._added=!1,this.update=new t.vpe,this._ngModelWarningSent=!1,this._parent=Fe,this._setValidators(At),this._setAsyncValidators(Si),this.valueAccessor=Ct(0,Gi)}set isDisabled(Fe){}ngOnChanges(Fe){this._added||this._setUpControl(),Ge(Fe,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(Fe){this.viewModel=Fe,this.update.emit(Fe)}get path(){return gt(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return je._ngModelWarningSentOnce=!1,je.\u0275fac=function(Fe){return new(Fe||je)(t.Y36(J,13),t.Y36(Z,10),t.Y36(Y,10),t.Y36(R,10),t.Y36(ha,8))},je.\u0275dir=t.lG2({type:je,selectors:[["","formControlName",""]],inputs:{name:["formControlName","name"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[t._Bn([kr]),t.qOj,t.TTD]}),je})();function xa(je){return"number"==typeof je?je:parseFloat(je)}let or=(()=>{class je{constructor(){this._validator=r}ngOnChanges(Fe){if(this.inputName in Fe){const At=this.normalizeInput(Fe[this.inputName].currentValue);this._enabled=this.enabled(At),this._validator=this._enabled?this.createValidator(At):r,this._onChange&&this._onChange()}}validate(Fe){return this._validator(Fe)}registerOnValidatorChange(Fe){this._onChange=Fe}enabled(Fe){return null!=Fe}}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275dir=t.lG2({type:je,features:[t.TTD]}),je})();const sa={provide:Z,useExisting:(0,t.Gpc)(()=>Va),multi:!0};let Va=(()=>{class je extends or{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=Fe=>xa(Fe),this.createValidator=Fe=>ie(Fe)}}return je.\u0275fac=function(){let We;return function(At){return(We||(We=t.n5z(je)))(At||je)}}(),je.\u0275dir=t.lG2({type:je,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(Fe,At){2&Fe&&t.uIk("max",At._enabled?At.max:null)},inputs:{max:"max"},features:[t._Bn([sa]),t.qOj]}),je})();const ir={provide:Z,useExisting:(0,t.Gpc)(()=>oa),multi:!0};let oa=(()=>{class je extends or{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=Fe=>xa(Fe),this.createValidator=Fe=>ue(Fe)}}return je.\u0275fac=function(){let We;return function(At){return(We||(We=t.n5z(je)))(At||je)}}(),je.\u0275dir=t.lG2({type:je,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(Fe,At){2&Fe&&t.uIk("min",At._enabled?At.min:null)},inputs:{min:"min"},features:[t._Bn([ir]),t.qOj]}),je})();const Kr={provide:Z,useExisting:(0,t.Gpc)(()=>Gr),multi:!0},Rr={provide:Z,useExisting:(0,t.Gpc)(()=>Ta),multi:!0};let Gr=(()=>{class je extends or{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=Fe=>function ka(je){return null!=je&&!1!==je&&"false"!=`${je}`}(Fe),this.createValidator=Fe=>re}enabled(Fe){return Fe}}return je.\u0275fac=function(){let We;return function(At){return(We||(We=t.n5z(je)))(At||je)}}(),je.\u0275dir=t.lG2({type:je,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(Fe,At){2&Fe&&t.uIk("required",At._enabled?"":null)},inputs:{required:"required"},features:[t._Bn([Kr]),t.qOj]}),je})(),Ta=(()=>{class je extends Gr{constructor(){super(...arguments),this.createValidator=Fe=>ge}}return je.\u0275fac=function(){let We;return function(At){return(We||(We=t.n5z(je)))(At||je)}}(),je.\u0275dir=t.lG2({type:je,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(Fe,At){2&Fe&&t.uIk("required",At._enabled?"":null)},features:[t._Bn([Rr]),t.qOj]}),je})(),Vn=(()=>{class je{}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275mod=t.oAB({type:je}),je.\u0275inj=t.cJS({imports:[[Qn]]}),je})(),It=(()=>{class je{}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275mod=t.oAB({type:je}),je.\u0275inj=t.cJS({imports:[Vn]}),je})(),ci=(()=>{class je{static withConfig(Fe){return{ngModule:je,providers:[{provide:ha,useValue:Fe.warnOnNgModelWithFormControl}]}}}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275mod=t.oAB({type:je}),je.\u0275inj=t.cJS({imports:[Vn]}),je})(),jt=(()=>{class je{group(Fe,At=null){const Si=this._reduceControls(Fe);let yr,Gi=null,Bn=null;return null!=At&&(function vt(je){return void 0!==je.asyncValidators||void 0!==je.validators||void 0!==je.updateOn}(At)?(Gi=null!=At.validators?At.validators:null,Bn=null!=At.asyncValidators?At.asyncValidators:null,yr=null!=At.updateOn?At.updateOn:void 0):(Gi=null!=At.validator?At.validator:null,Bn=null!=At.asyncValidator?At.asyncValidator:null)),new $i(Si,{asyncValidators:Bn,updateOn:yr,validators:Gi})}control(Fe,At,Si){return new Ti(Fe,At,Si)}array(Fe,At,Si){const Gi=Fe.map(Bn=>this._createControl(Bn));return new Wi(Gi,At,Si)}_reduceControls(Fe){const At={};return Object.keys(Fe).forEach(Si=>{At[Si]=this._createControl(Fe[Si])}),At}_createControl(Fe){return Qe(Fe)||_t(Fe)||se(Fe)?Fe:Array.isArray(Fe)?this.control(Fe[0],Fe.length>1?Fe[1]:null,Fe.length>2?Fe[2]:null):this.control(Fe)}}return je.\u0275fac=function(Fe){return new(Fe||je)},je.\u0275prov=t.Yz7({token:je,factory:je.\u0275fac,providedIn:ci}),je})()},1079:(Be,K,p)=>{"use strict";p.d(K,{Bb:()=>j,XC:()=>n,ZL:()=>be});var t=p(5664),e=p(3191),f=p(5e3),M=p(508),a=p(727),C=p(7579),d=p(9770),R=p(6451),h=p(9646),L=p(4968),w=p(925),D=p(9808),S=p(9776),k=p(5303),E=p(1159),B=p(7429),Z=p(3075),Y=p(7322),ae=p(8675),ee=p(3900),ue=p(5698),ie=p(9300),re=p(4004),ge=p(8505),q=p(4086),_e=p(226);const x=["panel"];function i(Ve,Me){if(1&Ve&&(f.TgZ(0,"div",0,1),f.Hsn(2),f.qZA()),2&Ve){const J=Me.id,Ie=f.oxw();f.Q6J("id",Ie.id)("ngClass",Ie._classList),f.uIk("aria-label",Ie.ariaLabel||null)("aria-labelledby",Ie._getPanelAriaLabelledby(J))}}const r=["*"];let u=0;class c{constructor(Me,J){this.source=Me,this.option=J}}const v=(0,M.Kr)(class{}),T=new f.OlP("mat-autocomplete-default-options",{providedIn:"root",factory:function I(){return{autoActiveFirstOption:!1}}});let y=(()=>{class Ve extends v{constructor(J,Ie,ut,Oe){super(),this._changeDetectorRef=J,this._elementRef=Ie,this._activeOptionChanges=a.w0.EMPTY,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new f.vpe,this.opened=new f.vpe,this.closed=new f.vpe,this.optionActivated=new f.vpe,this._classList={},this.id="mat-autocomplete-"+u++,this.inertGroups=(null==Oe?void 0:Oe.SAFARI)||!1,this._autoActiveFirstOption=!!ut.autoActiveFirstOption}get isOpen(){return this._isOpen&&this.showPanel}get autoActiveFirstOption(){return this._autoActiveFirstOption}set autoActiveFirstOption(J){this._autoActiveFirstOption=(0,e.Ig)(J)}set classList(J){this._classList=J&&J.length?(0,e.du)(J).reduce((Ie,ut)=>(Ie[ut]=!0,Ie),{}):{},this._setVisibilityClasses(this._classList),this._elementRef.nativeElement.className=""}ngAfterContentInit(){this._keyManager=new t.s1(this.options).withWrap(),this._activeOptionChanges=this._keyManager.change.subscribe(J=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[J]||null})}),this._setVisibility()}ngOnDestroy(){this._activeOptionChanges.unsubscribe()}_setScrollTop(J){this.panel&&(this.panel.nativeElement.scrollTop=J)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._setVisibilityClasses(this._classList),this._changeDetectorRef.markForCheck()}_emitSelectEvent(J){const Ie=new c(this,J);this.optionSelected.emit(Ie)}_getPanelAriaLabelledby(J){return this.ariaLabel?null:this.ariaLabelledby?(J?J+" ":"")+this.ariaLabelledby:J}_setVisibilityClasses(J){J[this._visibleClass]=this.showPanel,J[this._hiddenClass]=!this.showPanel}}return Ve.\u0275fac=function(J){return new(J||Ve)(f.Y36(f.sBO),f.Y36(f.SBq),f.Y36(T),f.Y36(w.t4))},Ve.\u0275dir=f.lG2({type:Ve,viewQuery:function(J,Ie){if(1&J&&(f.Gf(f.Rgc,7),f.Gf(x,5)),2&J){let ut;f.iGM(ut=f.CRH())&&(Ie.template=ut.first),f.iGM(ut=f.CRH())&&(Ie.panel=ut.first)}},inputs:{ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:"autoActiveFirstOption",panelWidth:"panelWidth",classList:["class","classList"]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},features:[f.qOj]}),Ve})(),n=(()=>{class Ve extends y{constructor(){super(...arguments),this._visibleClass="mat-autocomplete-visible",this._hiddenClass="mat-autocomplete-hidden"}}return Ve.\u0275fac=function(){let Me;return function(Ie){return(Me||(Me=f.n5z(Ve)))(Ie||Ve)}}(),Ve.\u0275cmp=f.Xpm({type:Ve,selectors:[["mat-autocomplete"]],contentQueries:function(J,Ie,ut){if(1&J&&(f.Suo(ut,M.K7,5),f.Suo(ut,M.ey,5)),2&J){let Oe;f.iGM(Oe=f.CRH())&&(Ie.optionGroups=Oe),f.iGM(Oe=f.CRH())&&(Ie.options=Oe)}},hostAttrs:[1,"mat-autocomplete"],inputs:{disableRipple:"disableRipple"},exportAs:["matAutocomplete"],features:[f._Bn([{provide:M.HF,useExisting:Ve}]),f.qOj],ngContentSelectors:r,decls:1,vars:0,consts:[["role","listbox",1,"mat-autocomplete-panel",3,"id","ngClass"],["panel",""]],template:function(J,Ie){1&J&&(f.F$t(),f.YNc(0,i,3,4,"ng-template"))},directives:[D.mk],styles:[".mat-autocomplete-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;visibility:hidden;max-width:none;max-height:256px;position:relative;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mat-autocomplete-panel.mat-autocomplete-visible{visibility:visible}.mat-autocomplete-panel.mat-autocomplete-hidden{visibility:hidden}.mat-autocomplete-panel-above .mat-autocomplete-panel{border-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.mat-autocomplete-panel .mat-divider-horizontal{margin-top:-1px}.cdk-high-contrast-active .mat-autocomplete-panel{outline:solid 1px}mat-autocomplete{display:none}\n"],encapsulation:2,changeDetection:0}),Ve})();const _=new f.OlP("mat-autocomplete-scroll-strategy"),N={provide:_,deps:[S.aV],useFactory:function V(Ve){return()=>Ve.scrollStrategies.reposition()}},H={provide:Z.JU,useExisting:(0,f.Gpc)(()=>be),multi:!0};let he=(()=>{class Ve{constructor(J,Ie,ut,Oe,we,ce,Te,xe,W,te,Ce){this._element=J,this._overlay=Ie,this._viewContainerRef=ut,this._zone=Oe,this._changeDetectorRef=we,this._dir=Te,this._formField=xe,this._document=W,this._viewportRuler=te,this._defaults=Ce,this._componentDestroyed=!1,this._autocompleteDisabled=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=a.w0.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new C.x,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._overlayAttached=!1,this.optionSelections=(0,d.P)(()=>{const fe=this.autocomplete?this.autocomplete.options:null;return fe?fe.changes.pipe((0,ae.O)(fe),(0,ee.w)(()=>(0,R.T)(...fe.map(Q=>Q.onSelectionChange)))):this._zone.onStable.pipe((0,ue.q)(1),(0,ee.w)(()=>this.optionSelections))}),this._scrollStrategy=ce}get autocompleteDisabled(){return this._autocompleteDisabled}set autocompleteDisabled(J){this._autocompleteDisabled=(0,e.Ig)(J)}ngAfterViewInit(){const J=this._getWindow();void 0!==J&&this._zone.runOutsideAngular(()=>J.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(J){J.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const J=this._getWindow();void 0!==J&&J.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}openPanel(){this._attachOverlay(),this._floatLabel()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._isOpen=this._overlayAttached=!1,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._componentDestroyed||this._changeDetectorRef.detectChanges())}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,R.T)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ie.h)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ie.h)(()=>this._overlayAttached)):(0,h.of)()).pipe((0,re.U)(J=>J instanceof M.rN?J:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,R.T)((0,L.R)(this._document,"click"),(0,L.R)(this._document,"auxclick"),(0,L.R)(this._document,"touchend")).pipe((0,ie.h)(J=>{const Ie=(0,w.sA)(J),ut=this._formField?this._formField._elementRef.nativeElement:null,Oe=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&Ie!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!ut||!ut.contains(Ie))&&(!Oe||!Oe.contains(Ie))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(Ie)}))}writeValue(J){Promise.resolve().then(()=>this._setTriggerValue(J))}registerOnChange(J){this._onChange=J}registerOnTouched(J){this._onTouched=J}setDisabledState(J){this._element.nativeElement.disabled=J}_handleKeydown(J){const Ie=J.keyCode,ut=(0,E.Vb)(J);if(Ie===E.hY&&!ut&&J.preventDefault(),this.activeOption&&Ie===E.K5&&this.panelOpen&&!ut)this.activeOption._selectViaInteraction(),this._resetActiveItem(),J.preventDefault();else if(this.autocomplete){const Oe=this.autocomplete._keyManager.activeItem,we=Ie===E.LH||Ie===E.JH;Ie===E.Mf||we&&!ut&&this.panelOpen?this.autocomplete._keyManager.onKeydown(J):we&&this._canOpen()&&this.openPanel(),(we||this.autocomplete._keyManager.activeItem!==Oe)&&this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0)}}_handleInput(J){let Ie=J.target,ut=Ie.value;"number"===Ie.type&&(ut=""==ut?null:parseFloat(ut)),this._previousValue!==ut&&(this._previousValue=ut,this._onChange(ut),this._canOpen()&&this._document.activeElement===J.target&&this.openPanel())}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this.openPanel()}_floatLabel(J=!1){this._formField&&"auto"===this._formField.floatLabel&&(J?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField.floatLabel="auto",this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const J=this._zone.onStable.pipe((0,ue.q)(1)),Ie=this.autocomplete.options.changes.pipe((0,ge.b)(()=>this._positionStrategy.reapplyLastPosition()),(0,q.g)(0));return(0,R.T)(J,Ie).pipe((0,ee.w)(()=>(this._zone.run(()=>{const ut=this.panelOpen;this._resetActiveItem(),this.autocomplete._setVisibility(),this._changeDetectorRef.detectChanges(),this.panelOpen&&(this._overlayRef.updatePosition(),ut!==this.panelOpen&&this.autocomplete.opened.emit())}),this.panelClosingActions)),(0,ue.q)(1)).subscribe(ut=>this._setValueAndClose(ut))}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_setTriggerValue(J){const Ie=this.autocomplete&&this.autocomplete.displayWith?this.autocomplete.displayWith(J):J,ut=null!=Ie?Ie:"";this._formField?this._formField._control.value=ut:this._element.nativeElement.value=ut,this._previousValue=ut}_setValueAndClose(J){const Ie=J&&J.source;Ie&&(this._clearPreviousSelectedOption(Ie),this._setTriggerValue(Ie.value),this._onChange(Ie.value),this.autocomplete._emitSelectEvent(Ie),this._element.nativeElement.focus()),this.closePanel()}_clearPreviousSelectedOption(J){this.autocomplete.options.forEach(Ie=>{Ie!==J&&Ie.selected&&Ie.deselect()})}_attachOverlay(){var J;let Ie=this._overlayRef;Ie?(this._positionStrategy.setOrigin(this._getConnectedElement()),Ie.updateSize({width:this._getPanelWidth()})):(this._portal=new B.UE(this.autocomplete.template,this._viewContainerRef,{id:null===(J=this._formField)||void 0===J?void 0:J.getLabelId()}),Ie=this._overlay.create(this._getOverlayConfig()),this._overlayRef=Ie,Ie.keydownEvents().subscribe(Oe=>{(Oe.keyCode===E.hY&&!(0,E.Vb)(Oe)||Oe.keyCode===E.LH&&(0,E.Vb)(Oe,"altKey"))&&(this._closeKeyEventStream.next(),this._resetActiveItem(),Oe.stopPropagation(),Oe.preventDefault())}),this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&Ie&&Ie.updateSize({width:this._getPanelWidth()})})),Ie&&!Ie.hasAttached()&&(Ie.attach(this._portal),this._closingActionsSubscription=this._subscribeToClosingActions());const ut=this.panelOpen;this.autocomplete._setVisibility(),this.autocomplete._isOpen=this._overlayAttached=!0,this.panelOpen&&ut!==this.panelOpen&&this.autocomplete.opened.emit()}_getOverlayConfig(){var J;return new S.X_({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir,panelClass:null===(J=this._defaults)||void 0===J?void 0:J.overlayPanelClass})}_getOverlayPosition(){const J=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(J),this._positionStrategy=J,J}_setStrategyPositions(J){const Ie=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],ut=this._aboveClass,Oe=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:ut},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:ut}];let we;we="above"===this.position?Oe:"below"===this.position?Ie:[...Ie,...Oe],J.withPositions(we)}_getConnectedElement(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element}_getPanelWidth(){return this.autocomplete.panelWidth||this._getHostWidth()}_getHostWidth(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width}_resetActiveItem(){const J=this.autocomplete;J.autoActiveFirstOption?J._keyManager.setFirstItemActive():J._keyManager.setActiveItem(-1)}_canOpen(){const J=this._element.nativeElement;return!J.readOnly&&!J.disabled&&!this._autocompleteDisabled}_getWindow(){var J;return(null===(J=this._document)||void 0===J?void 0:J.defaultView)||window}_scrollToOption(J){const Ie=this.autocomplete,ut=(0,M.CB)(J,Ie.options,Ie.optionGroups);if(0===J&&1===ut)Ie._setScrollTop(0);else if(Ie.panel){const Oe=Ie.options.toArray()[J];if(Oe){const we=Oe._getHostElement(),ce=(0,M.jH)(we.offsetTop,we.offsetHeight,Ie._getScrollTop(),Ie.panel.nativeElement.offsetHeight);Ie._setScrollTop(ce)}}}}return Ve.\u0275fac=function(J){return new(J||Ve)(f.Y36(f.SBq),f.Y36(S.aV),f.Y36(f.s_b),f.Y36(f.R0b),f.Y36(f.sBO),f.Y36(_),f.Y36(_e.Is,8),f.Y36(Y.G_,9),f.Y36(D.K0,8),f.Y36(k.rL),f.Y36(T,8))},Ve.\u0275dir=f.lG2({type:Ve,inputs:{autocomplete:["matAutocomplete","autocomplete"],position:["matAutocompletePosition","position"],connectedTo:["matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:["autocomplete","autocompleteAttribute"],autocompleteDisabled:["matAutocompleteDisabled","autocompleteDisabled"]},features:[f.TTD]}),Ve})(),be=(()=>{class Ve extends he{constructor(){super(...arguments),this._aboveClass="mat-autocomplete-panel-above"}}return Ve.\u0275fac=function(){let Me;return function(Ie){return(Me||(Me=f.n5z(Ve)))(Ie||Ve)}}(),Ve.\u0275dir=f.lG2({type:Ve,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-autocomplete-trigger"],hostVars:7,hostBindings:function(J,Ie){1&J&&f.NdJ("focusin",function(){return Ie._handleFocus()})("blur",function(){return Ie._onTouched()})("input",function(Oe){return Ie._handleInput(Oe)})("keydown",function(Oe){return Ie._handleKeydown(Oe)})("click",function(){return Ie._handleClick()}),2&J&&f.uIk("autocomplete",Ie.autocompleteAttribute)("role",Ie.autocompleteDisabled?null:"combobox")("aria-autocomplete",Ie.autocompleteDisabled?null:"list")("aria-activedescendant",Ie.panelOpen&&Ie.activeOption?Ie.activeOption.id:null)("aria-expanded",Ie.autocompleteDisabled?null:Ie.panelOpen.toString())("aria-owns",Ie.autocompleteDisabled||!Ie.panelOpen||null==Ie.autocomplete?null:Ie.autocomplete.id)("aria-haspopup",Ie.autocompleteDisabled?null:"listbox")},exportAs:["matAutocompleteTrigger"],features:[f._Bn([H]),f.qOj]}),Ve})(),j=(()=>{class Ve{}return Ve.\u0275fac=function(J){return new(J||Ve)},Ve.\u0275mod=f.oAB({type:Ve}),Ve.\u0275inj=f.cJS({providers:[N],imports:[[S.U8,M.Ng,M.BQ,D.ez],k.ZD,M.Ng,M.BQ]}),Ve})()},7544:(Be,K,p)=>{"use strict";p.d(K,{g:()=>L,k:()=>h});var t=p(5e3),e=p(508),f=p(5664),M=p(3191),a=p(6360);let C=0;const d=(0,e.Id)(class{}),R="mat-badge-content";let h=(()=>{class w extends d{constructor(S,k,E,B,Z){super(),this._ngZone=S,this._elementRef=k,this._ariaDescriber=E,this._renderer=B,this._animationMode=Z,this._color="primary",this._overlap=!0,this.position="above after",this.size="medium",this._id=C++,this._isInitialized=!1}get color(){return this._color}set color(S){this._setColor(S),this._color=S}get overlap(){return this._overlap}set overlap(S){this._overlap=(0,M.Ig)(S)}get content(){return this._content}set content(S){this._updateRenderedContent(S)}get description(){return this._description}set description(S){this._updateHostAriaDescription(S)}get hidden(){return this._hidden}set hidden(S){this._hidden=(0,M.Ig)(S)}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&this._renderer.destroyNode(this._badgeElement),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_createBadgeElement(){const S=this._renderer.createElement("span"),k="mat-badge-active";return S.setAttribute("id",`mat-badge-content-${this._id}`),S.setAttribute("aria-hidden","true"),S.classList.add(R),"NoopAnimations"===this._animationMode&&S.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(S),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{S.classList.add(k)})}):S.classList.add(k),S}_updateRenderedContent(S){const k=`${null!=S?S:""}`.trim();this._isInitialized&&k&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=k),this._content=k}_updateHostAriaDescription(S){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),S&&this._ariaDescriber.describe(this._elementRef.nativeElement,S),this._description=S}_setColor(S){const k=this._elementRef.nativeElement.classList;k.remove(`mat-badge-${this._color}`),S&&k.add(`mat-badge-${S}`)}_clearExistingBadges(){const S=this._elementRef.nativeElement.querySelectorAll(`:scope > .${R}`);for(const k of Array.from(S))k!==this._badgeElement&&k.remove()}}return w.\u0275fac=function(S){return new(S||w)(t.Y36(t.R0b),t.Y36(t.SBq),t.Y36(f.$s),t.Y36(t.Qsj),t.Y36(a.Qb,8))},w.\u0275dir=t.lG2({type:w,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(S,k){2&S&&t.ekj("mat-badge-overlap",k.overlap)("mat-badge-above",k.isAbove())("mat-badge-below",!k.isAbove())("mat-badge-before",!k.isAfter())("mat-badge-after",k.isAfter())("mat-badge-small","small"===k.size)("mat-badge-medium","medium"===k.size)("mat-badge-large","large"===k.size)("mat-badge-hidden",k.hidden||!k.content)("mat-badge-disabled",k.disabled)},inputs:{disabled:["matBadgeDisabled","disabled"],color:["matBadgeColor","color"],overlap:["matBadgeOverlap","overlap"],position:["matBadgePosition","position"],content:["matBadge","content"],description:["matBadgeDescription","description"],size:["matBadgeSize","size"],hidden:["matBadgeHidden","hidden"]},features:[t.qOj]}),w})(),L=(()=>{class w{}return w.\u0275fac=function(S){return new(S||w)},w.\u0275mod=t.oAB({type:w}),w.\u0275inj=t.cJS({imports:[[f.rt,e.BQ],e.BQ]}),w})()},7423:(Be,K,p)=>{"use strict";p.d(K,{lW:()=>w,ot:()=>S});var t=p(5e3),e=p(508),f=p(6360),M=p(5664);const a=["mat-button",""],C=["*"],h=["mat-button","mat-flat-button","mat-icon-button","mat-raised-button","mat-stroked-button","mat-mini-fab","mat-fab"],L=(0,e.pj)((0,e.Id)((0,e.Kr)(class{constructor(k){this._elementRef=k}})));let w=(()=>{class k extends L{constructor(B,Z,Y){super(B),this._focusMonitor=Z,this._animationMode=Y,this.isRoundButton=this._hasHostAttributes("mat-fab","mat-mini-fab"),this.isIconButton=this._hasHostAttributes("mat-icon-button");for(const ae of h)this._hasHostAttributes(ae)&&this._getHostElement().classList.add(ae);B.nativeElement.classList.add("mat-button-base"),this.isRoundButton&&(this.color="accent")}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(B,Z){B?this._focusMonitor.focusVia(this._getHostElement(),B,Z):this._getHostElement().focus(Z)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...B){return B.some(Z=>this._getHostElement().hasAttribute(Z))}}return k.\u0275fac=function(B){return new(B||k)(t.Y36(t.SBq),t.Y36(M.tE),t.Y36(f.Qb,8))},k.\u0275cmp=t.Xpm({type:k,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-icon-button",""],["button","mat-fab",""],["button","mat-mini-fab",""],["button","mat-stroked-button",""],["button","mat-flat-button",""]],viewQuery:function(B,Z){if(1&B&&t.Gf(e.wG,5),2&B){let Y;t.iGM(Y=t.CRH())&&(Z.ripple=Y.first)}},hostAttrs:[1,"mat-focus-indicator"],hostVars:5,hostBindings:function(B,Z){2&B&&(t.uIk("disabled",Z.disabled||null),t.ekj("_mat-animation-noopable","NoopAnimations"===Z._animationMode)("mat-button-disabled",Z.disabled))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color"},exportAs:["matButton"],features:[t.qOj],attrs:a,ngContentSelectors:C,decls:4,vars:5,consts:[[1,"mat-button-wrapper"],["matRipple","",1,"mat-button-ripple",3,"matRippleDisabled","matRippleCentered","matRippleTrigger"],[1,"mat-button-focus-overlay"]],template:function(B,Z){1&B&&(t.F$t(),t.TgZ(0,"span",0),t.Hsn(1),t.qZA(),t._UZ(2,"span",1)(3,"span",2)),2&B&&(t.xp6(2),t.ekj("mat-button-ripple-round",Z.isRoundButton||Z.isIconButton),t.Q6J("matRippleDisabled",Z._isRippleDisabled())("matRippleCentered",Z.isIconButton)("matRippleTrigger",Z._getHostElement()))},directives:[e.wG],styles:[".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button.mat-button-disabled,.mat-icon-button.mat-button-disabled,.mat-stroked-button.mat-button-disabled,.mat-flat-button.mat-button-disabled{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button.mat-button-disabled{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab.mat-button-disabled{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab.mat-button-disabled{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:inline-flex;justify-content:center;align-items:center;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}.cdk-high-contrast-active .mat-button-base.cdk-keyboard-focused,.cdk-high-contrast-active .mat-button-base.cdk-program-focused{outline:solid 3px}\n"],encapsulation:2,changeDetection:0}),k})(),S=(()=>{class k{}return k.\u0275fac=function(B){return new(B||k)},k.\u0275mod=t.oAB({type:k}),k.\u0275inj=t.cJS({imports:[[e.si,e.BQ],e.BQ]}),k})()},9224:(Be,K,p)=>{"use strict";p.d(K,{$j:()=>D,QW:()=>ge,a8:()=>ue,dk:()=>ie,dn:()=>L,n5:()=>w});var t=p(5e3),e=p(6360),f=p(508);const M=["*",[["mat-card-footer"]]],a=["*","mat-card-footer"],C=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],d=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"];let L=(()=>{class q{}return q.\u0275fac=function(x){return new(x||q)},q.\u0275dir=t.lG2({type:q,selectors:[["mat-card-content"],["","mat-card-content",""],["","matCardContent",""]],hostAttrs:[1,"mat-card-content"]}),q})(),w=(()=>{class q{}return q.\u0275fac=function(x){return new(x||q)},q.\u0275dir=t.lG2({type:q,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-card-title"]}),q})(),D=(()=>{class q{}return q.\u0275fac=function(x){return new(x||q)},q.\u0275dir=t.lG2({type:q,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-card-subtitle"]}),q})(),ue=(()=>{class q{constructor(x){this._animationMode=x}}return q.\u0275fac=function(x){return new(x||q)(t.Y36(e.Qb,8))},q.\u0275cmp=t.Xpm({type:q,selectors:[["mat-card"]],hostAttrs:[1,"mat-card","mat-focus-indicator"],hostVars:2,hostBindings:function(x,i){2&x&&t.ekj("_mat-animation-noopable","NoopAnimations"===i._animationMode)},exportAs:["matCard"],ngContentSelectors:a,decls:2,vars:0,template:function(x,i){1&x&&(t.F$t(M),t.Hsn(0),t.Hsn(1,1))},styles:[".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px;display:block;overflow:hidden}.mat-card-image img{width:100%}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions:not(.mat-card-actions-align-end) .mat-button:first-child,.mat-card-actions:not(.mat-card-actions-align-end) .mat-raised-button:first-child,.mat-card-actions:not(.mat-card-actions-align-end) .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-actions-align-end .mat-button:last-child,.mat-card-actions-align-end .mat-raised-button:last-child,.mat-card-actions-align-end .mat-stroked-button:last-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\n"],encapsulation:2,changeDetection:0}),q})(),ie=(()=>{class q{}return q.\u0275fac=function(x){return new(x||q)},q.\u0275cmp=t.Xpm({type:q,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-card-header"],ngContentSelectors:d,decls:4,vars:0,consts:[[1,"mat-card-header-text"]],template:function(x,i){1&x&&(t.F$t(C),t.Hsn(0),t.TgZ(1,"div",0),t.Hsn(2,1),t.qZA(),t.Hsn(3,2))},encapsulation:2,changeDetection:0}),q})(),ge=(()=>{class q{}return q.\u0275fac=function(x){return new(x||q)},q.\u0275mod=t.oAB({type:q}),q.\u0275inj=t.cJS({imports:[[f.BQ],f.BQ]}),q})()},7446:(Be,K,p)=>{"use strict";p.d(K,{oG:()=>Y,p9:()=>ie});var t=p(3191),e=p(5e3),f=p(3075),M=p(508),a=p(6360),C=p(5664),d=p(7144);const R=["input"],h=function(re){return{enterDuration:re}},L=["*"],w=new e.OlP("mat-checkbox-default-options",{providedIn:"root",factory:D});function D(){return{color:"accent",clickAction:"check-indeterminate"}}let S=0;const k=D(),E={provide:f.JU,useExisting:(0,e.Gpc)(()=>Y),multi:!0};class B{}const Z=(0,M.sb)((0,M.pj)((0,M.Kr)((0,M.Id)(class{constructor(re){this._elementRef=re}}))));let Y=(()=>{class re extends Z{constructor(q,_e,x,i,r,u,c){super(q),this._changeDetectorRef=_e,this._focusMonitor=x,this._ngZone=i,this._animationMode=u,this._options=c,this.ariaLabel="",this.ariaLabelledby=null,this._uniqueId="mat-checkbox-"+ ++S,this.id=this._uniqueId,this.labelPosition="after",this.name=null,this.change=new e.vpe,this.indeterminateChange=new e.vpe,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||k,this.color=this.defaultColor=this._options.color||k.color,this.tabIndex=parseInt(r)||0}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(q){this._required=(0,t.Ig)(q)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(q=>{q||Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}),this._syncIndeterminate(this._indeterminate)}ngAfterViewChecked(){}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}get checked(){return this._checked}set checked(q){const _e=(0,t.Ig)(q);_e!=this.checked&&(this._checked=_e,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(q){const _e=(0,t.Ig)(q);_e!==this.disabled&&(this._disabled=_e,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(q){const _e=q!=this._indeterminate;this._indeterminate=(0,t.Ig)(q),_e&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(q){this.checked=!!q}registerOnChange(q){this._controlValueAccessorChangeFn=q}registerOnTouched(q){this._onTouched=q}setDisabledState(q){this.disabled=q}_getAriaChecked(){return this.checked?"true":this.indeterminate?"mixed":"false"}_transitionCheckState(q){let _e=this._currentCheckState,x=this._elementRef.nativeElement;if(_e!==q&&(this._currentAnimationClass.length>0&&x.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(_e,q),this._currentCheckState=q,this._currentAnimationClass.length>0)){x.classList.add(this._currentAnimationClass);const i=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{x.classList.remove(i)},1e3)})}}_emitChangeEvent(){const q=new B;q.source=this,q.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(q),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_onInputClick(q){var _e;const x=null===(_e=this._options)||void 0===_e?void 0:_e.clickAction;q.stopPropagation(),this.disabled||"noop"===x?!this.disabled&&"noop"===x&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==x&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}focus(q,_e){q?this._focusMonitor.focusVia(this._inputElement,q,_e):this._inputElement.nativeElement.focus(_e)}_onInteractionEvent(q){q.stopPropagation()}_getAnimationClassForCheckStateTransition(q,_e){if("NoopAnimations"===this._animationMode)return"";let x="";switch(q){case 0:if(1===_e)x="unchecked-checked";else{if(3!=_e)return"";x="unchecked-indeterminate"}break;case 2:x=1===_e?"unchecked-checked":"unchecked-indeterminate";break;case 1:x=2===_e?"checked-unchecked":"checked-indeterminate";break;case 3:x=1===_e?"indeterminate-checked":"indeterminate-unchecked"}return`mat-checkbox-anim-${x}`}_syncIndeterminate(q){const _e=this._inputElement;_e&&(_e.nativeElement.indeterminate=q)}}return re.\u0275fac=function(q){return new(q||re)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(C.tE),e.Y36(e.R0b),e.$8M("tabindex"),e.Y36(a.Qb,8),e.Y36(w,8))},re.\u0275cmp=e.Xpm({type:re,selectors:[["mat-checkbox"]],viewQuery:function(q,_e){if(1&q&&(e.Gf(R,5),e.Gf(M.wG,5)),2&q){let x;e.iGM(x=e.CRH())&&(_e._inputElement=x.first),e.iGM(x=e.CRH())&&(_e.ripple=x.first)}},hostAttrs:[1,"mat-checkbox"],hostVars:14,hostBindings:function(q,_e){2&q&&(e.Ikx("id",_e.id),e.uIk("tabindex",null)("aria-label",null)("aria-labelledby",null),e.ekj("mat-checkbox-indeterminate",_e.indeterminate)("mat-checkbox-checked",_e.checked)("mat-checkbox-disabled",_e.disabled)("mat-checkbox-label-before","before"==_e.labelPosition)("_mat-animation-noopable","NoopAnimations"===_e._animationMode))},inputs:{disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],id:"id",required:"required",labelPosition:"labelPosition",name:"name",value:"value",checked:"checked",disabled:"disabled",indeterminate:"indeterminate"},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],features:[e._Bn([E]),e.qOj],ngContentSelectors:L,decls:17,vars:21,consts:[[1,"mat-checkbox-layout"],["label",""],[1,"mat-checkbox-inner-container"],["type","checkbox",1,"mat-checkbox-input","cdk-visually-hidden",3,"id","required","checked","disabled","tabIndex","change","click"],["input",""],["matRipple","",1,"mat-checkbox-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleRadius","matRippleCentered","matRippleAnimation"],[1,"mat-ripple-element","mat-checkbox-persistent-ripple"],[1,"mat-checkbox-frame"],[1,"mat-checkbox-background"],["version","1.1","focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mat-checkbox-checkmark"],["fill","none","stroke","white","d","M4.1,12.7 9,17.6 20.3,6.3",1,"mat-checkbox-checkmark-path"],[1,"mat-checkbox-mixedmark"],[1,"mat-checkbox-label",3,"cdkObserveContent"],["checkboxLabel",""],[2,"display","none"]],template:function(q,_e){if(1&q&&(e.F$t(),e.TgZ(0,"label",0,1)(2,"span",2)(3,"input",3,4),e.NdJ("change",function(i){return _e._onInteractionEvent(i)})("click",function(i){return _e._onInputClick(i)}),e.qZA(),e.TgZ(5,"span",5),e._UZ(6,"span",6),e.qZA(),e._UZ(7,"span",7),e.TgZ(8,"span",8),e.O4$(),e.TgZ(9,"svg",9),e._UZ(10,"path",10),e.qZA(),e.kcU(),e._UZ(11,"span",11),e.qZA()(),e.TgZ(12,"span",12,13),e.NdJ("cdkObserveContent",function(){return _e._onLabelTextChange()}),e.TgZ(14,"span",14),e._uU(15,"\xa0"),e.qZA(),e.Hsn(16),e.qZA()()),2&q){const x=e.MAs(1),i=e.MAs(13);e.uIk("for",_e.inputId),e.xp6(2),e.ekj("mat-checkbox-inner-container-no-side-margin",!i.textContent||!i.textContent.trim()),e.xp6(1),e.Q6J("id",_e.inputId)("required",_e.required)("checked",_e.checked)("disabled",_e.disabled)("tabIndex",_e.tabIndex),e.uIk("value",_e.value)("name",_e.name)("aria-label",_e.ariaLabel||null)("aria-labelledby",_e.ariaLabelledby)("aria-checked",_e._getAriaChecked())("aria-describedby",_e.ariaDescribedby),e.xp6(2),e.Q6J("matRippleTrigger",x)("matRippleDisabled",_e._isRippleDisabled())("matRippleRadius",20)("matRippleCentered",!0)("matRippleAnimation",e.VKq(19,h,"NoopAnimations"===_e._animationMode?0:150))}},directives:[M.wG,d.wD],styles:["@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{display:inline-block;transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.cdk-high-contrast-active .mat-checkbox.cdk-keyboard-focused .mat-checkbox-ripple{outline:solid 3px}.mat-checkbox-layout{-webkit-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1);-webkit-print-color-adjust:exact;color-adjust:exact}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{display:block;width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}\n"],encapsulation:2,changeDetection:0}),re})(),ue=(()=>{class re{}return re.\u0275fac=function(q){return new(q||re)},re.\u0275mod=e.oAB({type:re}),re.\u0275inj=e.cJS({}),re})(),ie=(()=>{class re{}return re.\u0275fac=function(q){return new(q||re)},re.\u0275mod=e.oAB({type:re}),re.\u0275inj=e.cJS({imports:[[M.si,M.BQ,d.Q8,ue],M.BQ,ue]}),re})()},6688:(Be,K,p)=>{"use strict";p.d(K,{HS:()=>x,Hi:()=>_,qn:()=>y});var t=p(1159),e=p(5e3),f=p(508),M=p(3191),a=p(9808),C=p(6360),d=p(7579),R=p(6451),h=p(5698),L=p(2722),w=p(8675),D=p(925),S=p(5664),k=p(449),E=p(3075),B=p(7322),Z=p(226);const Y=["*"],ee=new e.OlP("MatChipRemove"),ue=new e.OlP("MatChipAvatar"),ie=new e.OlP("MatChipTrailingIcon");class re{constructor(N){this._elementRef=N}}const ge=(0,f.sb)((0,f.pj)((0,f.Kr)(re),"primary"),-1);let x=(()=>{class V extends ge{constructor(H,X,he,be,Pe,Ee,j,Ve){super(H),this._ngZone=X,this._changeDetectorRef=Pe,this._hasFocus=!1,this.chipListSelectable=!0,this._chipListMultiple=!1,this._chipListDisabled=!1,this._selected=!1,this._selectable=!0,this._disabled=!1,this._removable=!0,this._onFocus=new d.x,this._onBlur=new d.x,this.selectionChange=new e.vpe,this.destroyed=new e.vpe,this.removed=new e.vpe,this._addHostClassName(),this._chipRippleTarget=Ee.createElement("div"),this._chipRippleTarget.classList.add("mat-chip-ripple"),this._elementRef.nativeElement.appendChild(this._chipRippleTarget),this._chipRipple=new f.IR(this,X,this._chipRippleTarget,he),this._chipRipple.setupTriggerEvents(H),this.rippleConfig=be||{},this._animationsDisabled="NoopAnimations"===j,this.tabIndex=null!=Ve&&parseInt(Ve)||-1}get rippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||!!this.rippleConfig.disabled}get selected(){return this._selected}set selected(H){const X=(0,M.Ig)(H);X!==this._selected&&(this._selected=X,this._dispatchSelectionChange())}get value(){return void 0!==this._value?this._value:this._elementRef.nativeElement.textContent}set value(H){this._value=H}get selectable(){return this._selectable&&this.chipListSelectable}set selectable(H){this._selectable=(0,M.Ig)(H)}get disabled(){return this._chipListDisabled||this._disabled}set disabled(H){this._disabled=(0,M.Ig)(H)}get removable(){return this._removable}set removable(H){this._removable=(0,M.Ig)(H)}get ariaSelected(){return this.selectable&&(this._chipListMultiple||this.selected)?this.selected.toString():null}_addHostClassName(){const H="mat-basic-chip",X=this._elementRef.nativeElement;X.hasAttribute(H)||X.tagName.toLowerCase()===H?X.classList.add(H):X.classList.add("mat-standard-chip")}ngOnDestroy(){this.destroyed.emit({chip:this}),this._chipRipple._removeTriggerEvents()}select(){this._selected||(this._selected=!0,this._dispatchSelectionChange(),this._changeDetectorRef.markForCheck())}deselect(){this._selected&&(this._selected=!1,this._dispatchSelectionChange(),this._changeDetectorRef.markForCheck())}selectViaInteraction(){this._selected||(this._selected=!0,this._dispatchSelectionChange(!0),this._changeDetectorRef.markForCheck())}toggleSelected(H=!1){return this._selected=!this.selected,this._dispatchSelectionChange(H),this._changeDetectorRef.markForCheck(),this.selected}focus(){this._hasFocus||(this._elementRef.nativeElement.focus(),this._onFocus.next({chip:this})),this._hasFocus=!0}remove(){this.removable&&this.removed.emit({chip:this})}_handleClick(H){this.disabled&&H.preventDefault()}_handleKeydown(H){if(!this.disabled)switch(H.keyCode){case t.yY:case t.ZH:this.remove(),H.preventDefault();break;case t.L_:this.selectable&&this.toggleSelected(!0),H.preventDefault()}}_blur(){this._ngZone.onStable.pipe((0,h.q)(1)).subscribe(()=>{this._ngZone.run(()=>{this._hasFocus=!1,this._onBlur.next({chip:this})})})}_dispatchSelectionChange(H=!1){this.selectionChange.emit({source:this,isUserInput:H,selected:this._selected})}}return V.\u0275fac=function(H){return new(H||V)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(D.t4),e.Y36(f.Y2,8),e.Y36(e.sBO),e.Y36(a.K0),e.Y36(C.Qb,8),e.$8M("tabindex"))},V.\u0275dir=e.lG2({type:V,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(H,X,he){if(1&H&&(e.Suo(he,ue,5),e.Suo(he,ie,5),e.Suo(he,ee,5)),2&H){let be;e.iGM(be=e.CRH())&&(X.avatar=be.first),e.iGM(be=e.CRH())&&(X.trailingIcon=be.first),e.iGM(be=e.CRH())&&(X.removeIcon=be.first)}},hostAttrs:["role","option",1,"mat-chip","mat-focus-indicator"],hostVars:14,hostBindings:function(H,X){1&H&&e.NdJ("click",function(be){return X._handleClick(be)})("keydown",function(be){return X._handleKeydown(be)})("focus",function(){return X.focus()})("blur",function(){return X._blur()}),2&H&&(e.uIk("tabindex",X.disabled?null:X.tabIndex)("disabled",X.disabled||null)("aria-disabled",X.disabled.toString())("aria-selected",X.ariaSelected),e.ekj("mat-chip-selected",X.selected)("mat-chip-with-avatar",X.avatar)("mat-chip-with-trailing-icon",X.trailingIcon||X.removeIcon)("mat-chip-disabled",X.disabled)("_mat-animation-noopable",X._animationsDisabled))},inputs:{color:"color",disableRipple:"disableRipple",tabIndex:"tabIndex",selected:"selected",value:"value",selectable:"selectable",disabled:"disabled",removable:"removable"},outputs:{selectionChange:"selectionChange",destroyed:"destroyed",removed:"removed"},exportAs:["matChip"],features:[e.qOj]}),V})();const r=new e.OlP("mat-chips-default-options"),v=(0,f.FD)(class{constructor(V,N,H,X){this._defaultErrorStateMatcher=V,this._parentForm=N,this._parentFormGroup=H,this.ngControl=X}});let T=0;class I{constructor(N,H){this.source=N,this.value=H}}let y=(()=>{class V extends v{constructor(H,X,he,be,Pe,Ee,j){super(Ee,be,Pe,j),this._elementRef=H,this._changeDetectorRef=X,this._dir=he,this.controlType="mat-chip-list",this._lastDestroyedChipIndex=null,this._destroyed=new d.x,this._uid="mat-chip-list-"+T++,this._tabIndex=0,this._userTabIndex=null,this._onTouched=()=>{},this._onChange=()=>{},this._multiple=!1,this._compareWith=(Ve,Me)=>Ve===Me,this._disabled=!1,this.ariaOrientation="horizontal",this._selectable=!0,this.change=new e.vpe,this.valueChange=new e.vpe,this.ngControl&&(this.ngControl.valueAccessor=this)}get selected(){var H,X;return this.multiple?(null===(H=this._selectionModel)||void 0===H?void 0:H.selected)||[]:null===(X=this._selectionModel)||void 0===X?void 0:X.selected[0]}get role(){return this.empty?null:"listbox"}get multiple(){return this._multiple}set multiple(H){this._multiple=(0,M.Ig)(H),this._syncChipsState()}get compareWith(){return this._compareWith}set compareWith(H){this._compareWith=H,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(H){this.writeValue(H),this._value=H}get id(){return this._chipInput?this._chipInput.id:this._uid}get required(){var H,X,he,be;return null!==(be=null!==(H=this._required)&&void 0!==H?H:null===(he=null===(X=this.ngControl)||void 0===X?void 0:X.control)||void 0===he?void 0:he.hasValidator(E.kI.required))&&void 0!==be&&be}set required(H){this._required=(0,M.Ig)(H),this.stateChanges.next()}get placeholder(){return this._chipInput?this._chipInput.placeholder:this._placeholder}set placeholder(H){this._placeholder=H,this.stateChanges.next()}get focused(){return this._chipInput&&this._chipInput.focused||this._hasFocusedChip()}get empty(){return(!this._chipInput||this._chipInput.empty)&&(!this.chips||0===this.chips.length)}get shouldLabelFloat(){return!this.empty||this.focused}get disabled(){return this.ngControl?!!this.ngControl.disabled:this._disabled}set disabled(H){this._disabled=(0,M.Ig)(H),this._syncChipsState()}get selectable(){return this._selectable}set selectable(H){this._selectable=(0,M.Ig)(H),this.chips&&this.chips.forEach(X=>X.chipListSelectable=this._selectable)}set tabIndex(H){this._userTabIndex=H,this._tabIndex=H}get chipSelectionChanges(){return(0,R.T)(...this.chips.map(H=>H.selectionChange))}get chipFocusChanges(){return(0,R.T)(...this.chips.map(H=>H._onFocus))}get chipBlurChanges(){return(0,R.T)(...this.chips.map(H=>H._onBlur))}get chipRemoveChanges(){return(0,R.T)(...this.chips.map(H=>H.destroyed))}ngAfterContentInit(){this._keyManager=new S.Em(this.chips).withWrap().withVerticalOrientation().withHomeAndEnd().withHorizontalOrientation(this._dir?this._dir.value:"ltr"),this._dir&&this._dir.change.pipe((0,L.R)(this._destroyed)).subscribe(H=>this._keyManager.withHorizontalOrientation(H)),this._keyManager.tabOut.pipe((0,L.R)(this._destroyed)).subscribe(()=>{this._allowFocusEscape()}),this.chips.changes.pipe((0,w.O)(null),(0,L.R)(this._destroyed)).subscribe(()=>{this.disabled&&Promise.resolve().then(()=>{this._syncChipsState()}),this._resetChips(),this._initializeSelection(),this._updateTabIndex(),this._updateFocusForDestroyedChips(),this.stateChanges.next()})}ngOnInit(){this._selectionModel=new k.Ov(this.multiple,void 0,!1),this.stateChanges.next()}ngDoCheck(){this.ngControl&&(this.updateErrorState(),this.ngControl.disabled!==this._disabled&&(this.disabled=!!this.ngControl.disabled))}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),this.stateChanges.complete(),this._dropSubscriptions()}registerInput(H){this._chipInput=H,this._elementRef.nativeElement.setAttribute("data-mat-chip-input",H.id)}setDescribedByIds(H){this._ariaDescribedby=H.join(" ")}writeValue(H){this.chips&&this._setSelectionByValue(H,!1)}registerOnChange(H){this._onChange=H}registerOnTouched(H){this._onTouched=H}setDisabledState(H){this.disabled=H,this.stateChanges.next()}onContainerClick(H){this._originatesFromChip(H)||this.focus()}focus(H){this.disabled||this._chipInput&&this._chipInput.focused||(this.chips.length>0?(this._keyManager.setFirstItemActive(),this.stateChanges.next()):(this._focusInput(H),this.stateChanges.next()))}_focusInput(H){this._chipInput&&this._chipInput.focus(H)}_keydown(H){const X=H.target;X&&X.classList.contains("mat-chip")&&(this._keyManager.onKeydown(H),this.stateChanges.next())}_updateTabIndex(){this._tabIndex=this._userTabIndex||(0===this.chips.length?-1:0)}_updateFocusForDestroyedChips(){if(null!=this._lastDestroyedChipIndex)if(this.chips.length){const H=Math.min(this._lastDestroyedChipIndex,this.chips.length-1);this._keyManager.setActiveItem(H)}else this.focus();this._lastDestroyedChipIndex=null}_isValidIndex(H){return H>=0&&Hhe.deselect()),Array.isArray(H))H.forEach(he=>this._selectValue(he,X)),this._sortValues();else{const he=this._selectValue(H,X);he&&X&&this._keyManager.setActiveItem(he)}}_selectValue(H,X=!0){const he=this.chips.find(be=>null!=be.value&&this._compareWith(be.value,H));return he&&(X?he.selectViaInteraction():he.select(),this._selectionModel.select(he)),he}_initializeSelection(){Promise.resolve().then(()=>{(this.ngControl||this._value)&&(this._setSelectionByValue(this.ngControl?this.ngControl.value:this._value,!1),this.stateChanges.next())})}_clearSelection(H){this._selectionModel.clear(),this.chips.forEach(X=>{X!==H&&X.deselect()}),this.stateChanges.next()}_sortValues(){this._multiple&&(this._selectionModel.clear(),this.chips.forEach(H=>{H.selected&&this._selectionModel.select(H)}),this.stateChanges.next())}_propagateChanges(H){let X=null;X=Array.isArray(this.selected)?this.selected.map(he=>he.value):this.selected?this.selected.value:H,this._value=X,this.change.emit(new I(this,X)),this.valueChange.emit(X),this._onChange(X),this._changeDetectorRef.markForCheck()}_blur(){this._hasFocusedChip()||this._keyManager.setActiveItem(-1),this.disabled||(this._chipInput?setTimeout(()=>{this.focused||this._markAsTouched()}):this._markAsTouched())}_markAsTouched(){this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next()}_allowFocusEscape(){-1!==this._tabIndex&&(this._tabIndex=-1,setTimeout(()=>{this._tabIndex=this._userTabIndex||0,this._changeDetectorRef.markForCheck()}))}_resetChips(){this._dropSubscriptions(),this._listenToChipsFocus(),this._listenToChipsSelection(),this._listenToChipsRemoved()}_dropSubscriptions(){this._chipFocusSubscription&&(this._chipFocusSubscription.unsubscribe(),this._chipFocusSubscription=null),this._chipBlurSubscription&&(this._chipBlurSubscription.unsubscribe(),this._chipBlurSubscription=null),this._chipSelectionSubscription&&(this._chipSelectionSubscription.unsubscribe(),this._chipSelectionSubscription=null),this._chipRemoveSubscription&&(this._chipRemoveSubscription.unsubscribe(),this._chipRemoveSubscription=null)}_listenToChipsSelection(){this._chipSelectionSubscription=this.chipSelectionChanges.subscribe(H=>{H.source.selected?this._selectionModel.select(H.source):this._selectionModel.deselect(H.source),this.multiple||this.chips.forEach(X=>{!this._selectionModel.isSelected(X)&&X.selected&&X.deselect()}),H.isUserInput&&this._propagateChanges()})}_listenToChipsFocus(){this._chipFocusSubscription=this.chipFocusChanges.subscribe(H=>{let X=this.chips.toArray().indexOf(H.chip);this._isValidIndex(X)&&this._keyManager.updateActiveItem(X),this.stateChanges.next()}),this._chipBlurSubscription=this.chipBlurChanges.subscribe(()=>{this._blur(),this.stateChanges.next()})}_listenToChipsRemoved(){this._chipRemoveSubscription=this.chipRemoveChanges.subscribe(H=>{const X=H.chip,he=this.chips.toArray().indexOf(H.chip);this._isValidIndex(he)&&X._hasFocus&&(this._lastDestroyedChipIndex=he)})}_originatesFromChip(H){let X=H.target;for(;X&&X!==this._elementRef.nativeElement;){if(X.classList.contains("mat-chip"))return!0;X=X.parentElement}return!1}_hasFocusedChip(){return this.chips&&this.chips.some(H=>H._hasFocus)}_syncChipsState(){this.chips&&this.chips.forEach(H=>{H._chipListDisabled=this._disabled,H._chipListMultiple=this.multiple})}}return V.\u0275fac=function(H){return new(H||V)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(Z.Is,8),e.Y36(E.F,8),e.Y36(E.sg,8),e.Y36(f.rD),e.Y36(E.a5,10))},V.\u0275cmp=e.Xpm({type:V,selectors:[["mat-chip-list"]],contentQueries:function(H,X,he){if(1&H&&e.Suo(he,x,5),2&H){let be;e.iGM(be=e.CRH())&&(X.chips=be)}},hostAttrs:[1,"mat-chip-list"],hostVars:15,hostBindings:function(H,X){1&H&&e.NdJ("focus",function(){return X.focus()})("blur",function(){return X._blur()})("keydown",function(be){return X._keydown(be)}),2&H&&(e.Ikx("id",X._uid),e.uIk("tabindex",X.disabled?null:X._tabIndex)("aria-describedby",X._ariaDescribedby||null)("aria-required",X.role?X.required:null)("aria-disabled",X.disabled.toString())("aria-invalid",X.errorState)("aria-multiselectable",X.multiple)("role",X.role)("aria-orientation",X.ariaOrientation),e.ekj("mat-chip-list-disabled",X.disabled)("mat-chip-list-invalid",X.errorState)("mat-chip-list-required",X.required))},inputs:{errorStateMatcher:"errorStateMatcher",multiple:"multiple",compareWith:"compareWith",value:"value",required:"required",placeholder:"placeholder",disabled:"disabled",ariaOrientation:["aria-orientation","ariaOrientation"],selectable:"selectable",tabIndex:"tabIndex"},outputs:{change:"change",valueChange:"valueChange"},exportAs:["matChipList"],features:[e._Bn([{provide:B.Eo,useExisting:V}]),e.qOj],ngContentSelectors:Y,decls:2,vars:0,consts:[[1,"mat-chip-list-wrapper"]],template:function(H,X){1&H&&(e.F$t(),e.TgZ(0,"div",0),e.Hsn(1),e.qZA())},styles:['.mat-chip{position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;border:none;-webkit-appearance:none;-moz-appearance:none}.mat-standard-chip{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:inline-flex;padding:7px 12px;border-radius:16px;align-items:center;cursor:default;min-height:32px;height:1px}._mat-animation-noopable.mat-standard-chip{transition:none;animation:none}.mat-standard-chip .mat-chip-remove{border:none;-webkit-appearance:none;-moz-appearance:none;padding:0;background:none}.mat-standard-chip .mat-chip-remove.mat-icon,.mat-standard-chip .mat-chip-remove .mat-icon{width:18px;height:18px;font-size:18px}.mat-standard-chip::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;opacity:0;content:"";pointer-events:none;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-standard-chip:hover::after{opacity:.12}.mat-standard-chip:focus{outline:none}.mat-standard-chip:focus::after{opacity:.16}.cdk-high-contrast-active .mat-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-standard-chip:focus{outline:dotted 2px}.cdk-high-contrast-active .mat-standard-chip.mat-chip-selected{outline-width:3px}.mat-standard-chip.mat-chip-disabled::after{opacity:0}.mat-standard-chip.mat-chip-disabled .mat-chip-remove,.mat-standard-chip.mat-chip-disabled .mat-chip-trailing-icon{cursor:default}.mat-standard-chip.mat-chip-with-trailing-icon.mat-chip-with-avatar,.mat-standard-chip.mat-chip-with-avatar{padding-top:0;padding-bottom:0}.mat-standard-chip.mat-chip-with-trailing-icon.mat-chip-with-avatar{padding-right:8px;padding-left:0}[dir=rtl] .mat-standard-chip.mat-chip-with-trailing-icon.mat-chip-with-avatar{padding-left:8px;padding-right:0}.mat-standard-chip.mat-chip-with-trailing-icon{padding-top:7px;padding-bottom:7px;padding-right:8px;padding-left:12px}[dir=rtl] .mat-standard-chip.mat-chip-with-trailing-icon{padding-left:8px;padding-right:12px}.mat-standard-chip.mat-chip-with-avatar{padding-left:0;padding-right:12px}[dir=rtl] .mat-standard-chip.mat-chip-with-avatar{padding-right:0;padding-left:12px}.mat-standard-chip .mat-chip-avatar{width:24px;height:24px;margin-right:8px;margin-left:4px}[dir=rtl] .mat-standard-chip .mat-chip-avatar{margin-left:8px;margin-right:4px}.mat-standard-chip .mat-chip-remove,.mat-standard-chip .mat-chip-trailing-icon{width:18px;height:18px;cursor:pointer}.mat-standard-chip .mat-chip-remove,.mat-standard-chip .mat-chip-trailing-icon{margin-left:8px;margin-right:0}[dir=rtl] .mat-standard-chip .mat-chip-remove,[dir=rtl] .mat-standard-chip .mat-chip-trailing-icon{margin-right:8px;margin-left:0}.mat-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit;overflow:hidden;transform:translateZ(0)}.mat-chip-list-wrapper{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;margin:-4px}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:4px}.mat-chip-list-stacked .mat-chip-list-wrapper{flex-direction:column;align-items:flex-start}.mat-chip-list-stacked .mat-chip-list-wrapper .mat-standard-chip{width:100%}.mat-chip-avatar{border-radius:50%;justify-content:center;align-items:center;display:flex;overflow:hidden;object-fit:cover}input.mat-chip-input{width:150px;margin:4px;flex:1 0 150px}\n'],encapsulation:2,changeDetection:0}),V})(),_=(()=>{class V{}return V.\u0275fac=function(H){return new(H||V)},V.\u0275mod=e.oAB({type:V}),V.\u0275inj=e.cJS({providers:[f.rD,{provide:r,useValue:{separatorKeyCodes:[t.K5]}}],imports:[[f.BQ]]}),V})()},508:(Be,K,p)=>{"use strict";p.d(K,{yN:()=>ae,mZ:()=>ee,_A:()=>y,rD:()=>Pe,sG:()=>n,K7:()=>Zt,HF:()=>tt,Y2:()=>te,BQ:()=>re,X2:()=>Ee,uc:()=>Me,XK:()=>he,ey:()=>it,Ng:()=>Qt,rN:()=>Nt,nP:()=>Q,us:()=>ft,wG:()=>Ce,si:()=>fe,LF:()=>N,IR:()=>Te,CB:()=>bt,jH:()=>ei,pj:()=>i,Kr:()=>r,Id:()=>x,FD:()=>c,dB:()=>v,sb:()=>u,E0:()=>j});var t=p(5e3),e=p(226),M=p(9808),a=p(925),C=p(5664),d=p(3191),R=p(7579),h=p(8306),L=p(8675),w=p(6360),D=p(1159);function E(Re,ke){if(1&Re&&t._UZ(0,"mat-pseudo-checkbox",4),2&Re){const de=t.oxw();t.Q6J("state",de.selected?"checked":"unchecked")("disabled",de.disabled)}}function B(Re,ke){if(1&Re&&(t.TgZ(0,"span",5),t._uU(1),t.qZA()),2&Re){const de=t.oxw();t.xp6(1),t.hij("(",de.group.label,")")}}const Z=["*"];let ae=(()=>{class Re{}return Re.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)",Re.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)",Re.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)",Re.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)",Re})(),ee=(()=>{class Re{}return Re.COMPLEX="375ms",Re.ENTERING="225ms",Re.EXITING="195ms",Re})();const ie=new t.OlP("mat-sanity-checks",{providedIn:"root",factory:function ue(){return!0}});let re=(()=>{class Re{constructor(de,ye,ht){this._sanityChecks=ye,this._document=ht,this._hasDoneGlobalChecks=!1,de._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(de){return!(0,a.Oy)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[de])}}return Re.\u0275fac=function(de){return new(de||Re)(t.LFG(C.qm),t.LFG(ie,8),t.LFG(M.K0))},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({imports:[[e.vT],e.vT]}),Re})();function x(Re){return class extends Re{constructor(...ke){super(...ke),this._disabled=!1}get disabled(){return this._disabled}set disabled(ke){this._disabled=(0,d.Ig)(ke)}}}function i(Re,ke){return class extends Re{constructor(...de){super(...de),this.defaultColor=ke,this.color=ke}get color(){return this._color}set color(de){const ye=de||this.defaultColor;ye!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),ye&&this._elementRef.nativeElement.classList.add(`mat-${ye}`),this._color=ye)}}}function r(Re){return class extends Re{constructor(...ke){super(...ke),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(ke){this._disableRipple=(0,d.Ig)(ke)}}}function u(Re,ke=0){return class extends Re{constructor(...de){super(...de),this._tabIndex=ke,this.defaultTabIndex=ke}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(de){this._tabIndex=null!=de?(0,d.su)(de):this.defaultTabIndex}}}function c(Re){return class extends Re{constructor(...ke){super(...ke),this.stateChanges=new R.x,this.errorState=!1}updateErrorState(){const ke=this.errorState,mt=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);mt!==ke&&(this.errorState=mt,this.stateChanges.next())}}}function v(Re){return class extends Re{constructor(...ke){super(...ke),this._isInitialized=!1,this._pendingSubscribers=[],this.initialized=new h.y(de=>{this._isInitialized?this._notifySubscriber(de):this._pendingSubscribers.push(de)})}_markInitialized(){this._isInitialized=!0,this._pendingSubscribers.forEach(this._notifySubscriber),this._pendingSubscribers=null}_notifySubscriber(ke){ke.next(),ke.complete()}}}const T=new t.OlP("MAT_DATE_LOCALE",{providedIn:"root",factory:function I(){return(0,t.f3M)(t.soG)}});class y{constructor(){this._localeChanges=new R.x,this.localeChanges=this._localeChanges}getValidDateOrNull(ke){return this.isDateInstance(ke)&&this.isValid(ke)?ke:null}deserialize(ke){return null==ke||this.isDateInstance(ke)&&this.isValid(ke)?ke:this.invalid()}setLocale(ke){this.locale=ke,this._localeChanges.next()}compareDate(ke,de){return this.getYear(ke)-this.getYear(de)||this.getMonth(ke)-this.getMonth(de)||this.getDate(ke)-this.getDate(de)}sameDate(ke,de){if(ke&&de){let ye=this.isValid(ke),ht=this.isValid(de);return ye&&ht?!this.compareDate(ke,de):ye==ht}return ke==de}clampDate(ke,de,ye){return de&&this.compareDate(ke,de)<0?de:ye&&this.compareDate(ke,ye)>0?ye:ke}}const n=new t.OlP("mat-date-formats"),_=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function V(Re,ke){const de=Array(Re);for(let ye=0;ye{class Re extends y{constructor(de,ye){super(),this.useUtcForDisplay=!1,super.setLocale(de)}getYear(de){return de.getFullYear()}getMonth(de){return de.getMonth()}getDate(de){return de.getDate()}getDayOfWeek(de){return de.getDay()}getMonthNames(de){const ye=new Intl.DateTimeFormat(this.locale,{month:de,timeZone:"utc"});return V(12,ht=>this._format(ye,new Date(2017,ht,1)))}getDateNames(){const de=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return V(31,ye=>this._format(de,new Date(2017,0,ye+1)))}getDayOfWeekNames(de){const ye=new Intl.DateTimeFormat(this.locale,{weekday:de,timeZone:"utc"});return V(7,ht=>this._format(ye,new Date(2017,0,ht+1)))}getYearName(de){const ye=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(ye,de)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(de){return this.getDate(this._createDateWithOverflow(this.getYear(de),this.getMonth(de)+1,0))}clone(de){return new Date(de.getTime())}createDate(de,ye,ht){let mt=this._createDateWithOverflow(de,ye,ht);return mt.getMonth(),mt}today(){return new Date}parse(de){return"number"==typeof de?new Date(de):de?new Date(Date.parse(de)):null}format(de,ye){if(!this.isValid(de))throw Error("NativeDateAdapter: Cannot format invalid date.");const ht=new Intl.DateTimeFormat(this.locale,Object.assign(Object.assign({},ye),{timeZone:"utc"}));return this._format(ht,de)}addCalendarYears(de,ye){return this.addCalendarMonths(de,12*ye)}addCalendarMonths(de,ye){let ht=this._createDateWithOverflow(this.getYear(de),this.getMonth(de)+ye,this.getDate(de));return this.getMonth(ht)!=((this.getMonth(de)+ye)%12+12)%12&&(ht=this._createDateWithOverflow(this.getYear(ht),this.getMonth(ht),0)),ht}addCalendarDays(de,ye){return this._createDateWithOverflow(this.getYear(de),this.getMonth(de),this.getDate(de)+ye)}toIso8601(de){return[de.getUTCFullYear(),this._2digit(de.getUTCMonth()+1),this._2digit(de.getUTCDate())].join("-")}deserialize(de){if("string"==typeof de){if(!de)return null;if(_.test(de)){let ye=new Date(de);if(this.isValid(ye))return ye}}return super.deserialize(de)}isDateInstance(de){return de instanceof Date}isValid(de){return!isNaN(de.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(de,ye,ht){const mt=new Date;return mt.setFullYear(de,ye,ht),mt.setHours(0,0,0,0),mt}_2digit(de){return("00"+de).slice(-2)}_format(de,ye){const ht=new Date;return ht.setUTCFullYear(ye.getFullYear(),ye.getMonth(),ye.getDate()),ht.setUTCHours(ye.getHours(),ye.getMinutes(),ye.getSeconds(),ye.getMilliseconds()),de.format(ht)}}return Re.\u0275fac=function(de){return new(de||Re)(t.LFG(T,8),t.LFG(a.t4))},Re.\u0275prov=t.Yz7({token:Re,factory:Re.\u0275fac}),Re})();const H={parse:{dateInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"}}};let X=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({providers:[{provide:y,useClass:N}]}),Re})(),he=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({providers:[{provide:n,useValue:H}],imports:[[X]]}),Re})(),Pe=(()=>{class Re{isErrorState(de,ye){return!!(de&&de.invalid&&(de.touched||ye&&ye.submitted))}}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275prov=t.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"}),Re})(),Ee=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275dir=t.lG2({type:Re,selectors:[["","mat-line",""],["","matLine",""]],hostAttrs:[1,"mat-line"]}),Re})();function j(Re,ke,de="mat"){Re.changes.pipe((0,L.O)(Re)).subscribe(({length:ye})=>{Ve(ke,`${de}-2-line`,!1),Ve(ke,`${de}-3-line`,!1),Ve(ke,`${de}-multi-line`,!1),2===ye||3===ye?Ve(ke,`${de}-${ye}-line`,!0):ye>3&&Ve(ke,`${de}-multi-line`,!0)})}function Ve(Re,ke,de){Re.nativeElement.classList.toggle(ke,de)}let Me=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({imports:[[re],re]}),Re})();class J{constructor(ke,de,ye){this._renderer=ke,this.element=de,this.config=ye,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const Ie={enterDuration:225,exitDuration:150},Oe=(0,a.i$)({passive:!0}),we=["mousedown","touchstart"],ce=["mouseup","mouseleave","touchend","touchcancel"];class Te{constructor(ke,de,ye,ht){this._target=ke,this._ngZone=de,this._isPointerDown=!1,this._activeRipples=new Set,this._pointerUpEventsRegistered=!1,ht.isBrowser&&(this._containerElement=(0,d.fI)(ye))}fadeInRipple(ke,de,ye={}){const ht=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),mt=Object.assign(Object.assign({},Ie),ye.animation);ye.centered&&(ke=ht.left+ht.width/2,de=ht.top+ht.height/2);const Ft=ye.radius||function W(Re,ke,de){const ye=Math.max(Math.abs(Re-de.left),Math.abs(Re-de.right)),ht=Math.max(Math.abs(ke-de.top),Math.abs(ke-de.bottom));return Math.sqrt(ye*ye+ht*ht)}(ke,de,ht),nt=ke-ht.left,He=de-ht.top,rt=mt.enterDuration,et=document.createElement("div");et.classList.add("mat-ripple-element"),et.style.left=nt-Ft+"px",et.style.top=He-Ft+"px",et.style.height=2*Ft+"px",et.style.width=2*Ft+"px",null!=ye.color&&(et.style.backgroundColor=ye.color),et.style.transitionDuration=`${rt}ms`,this._containerElement.appendChild(et),function xe(Re){window.getComputedStyle(Re).getPropertyValue("opacity")}(et),et.style.transform="scale(1)";const Ae=new J(this,et,ye);return Ae.state=0,this._activeRipples.add(Ae),ye.persistent||(this._mostRecentTransientRipple=Ae),this._runTimeoutOutsideZone(()=>{const Ge=Ae===this._mostRecentTransientRipple;Ae.state=1,!ye.persistent&&(!Ge||!this._isPointerDown)&&Ae.fadeOut()},rt),Ae}fadeOutRipple(ke){const de=this._activeRipples.delete(ke);if(ke===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),!de)return;const ye=ke.element,ht=Object.assign(Object.assign({},Ie),ke.config.animation);ye.style.transitionDuration=`${ht.exitDuration}ms`,ye.style.opacity="0",ke.state=2,this._runTimeoutOutsideZone(()=>{ke.state=3,ye.remove()},ht.exitDuration)}fadeOutAll(){this._activeRipples.forEach(ke=>ke.fadeOut())}fadeOutAllNonPersistent(){this._activeRipples.forEach(ke=>{ke.config.persistent||ke.fadeOut()})}setupTriggerEvents(ke){const de=(0,d.fI)(ke);!de||de===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=de,this._registerEvents(we))}handleEvent(ke){"mousedown"===ke.type?this._onMousedown(ke):"touchstart"===ke.type?this._onTouchStart(ke):this._onPointerUp(),this._pointerUpEventsRegistered||(this._registerEvents(ce),this._pointerUpEventsRegistered=!0)}_onMousedown(ke){const de=(0,C.X6)(ke),ye=this._lastTouchStartEvent&&Date.now(){!ke.config.persistent&&(1===ke.state||ke.config.terminateOnPointerUp&&0===ke.state)&&ke.fadeOut()}))}_runTimeoutOutsideZone(ke,de=0){this._ngZone.runOutsideAngular(()=>setTimeout(ke,de))}_registerEvents(ke){this._ngZone.runOutsideAngular(()=>{ke.forEach(de=>{this._triggerElement.addEventListener(de,this,Oe)})})}_removeTriggerEvents(){this._triggerElement&&(we.forEach(ke=>{this._triggerElement.removeEventListener(ke,this,Oe)}),this._pointerUpEventsRegistered&&ce.forEach(ke=>{this._triggerElement.removeEventListener(ke,this,Oe)}))}}const te=new t.OlP("mat-ripple-global-options");let Ce=(()=>{class Re{constructor(de,ye,ht,mt,Ft){this._elementRef=de,this._animationMode=Ft,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=mt||{},this._rippleRenderer=new Te(this,ye,de,ht)}get disabled(){return this._disabled}set disabled(de){de&&this.fadeOutAllNonPersistent(),this._disabled=de,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(de){this._trigger=de,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign(Object.assign({},this._globalOptions.animation),"NoopAnimations"===this._animationMode?{enterDuration:0,exitDuration:0}:{}),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(de,ye=0,ht){return"number"==typeof de?this._rippleRenderer.fadeInRipple(de,ye,Object.assign(Object.assign({},this.rippleConfig),ht)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),de))}}return Re.\u0275fac=function(de){return new(de||Re)(t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(a.t4),t.Y36(te,8),t.Y36(w.Qb,8))},Re.\u0275dir=t.lG2({type:Re,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(de,ye){2&de&&t.ekj("mat-ripple-unbounded",ye.unbounded)},inputs:{color:["matRippleColor","color"],unbounded:["matRippleUnbounded","unbounded"],centered:["matRippleCentered","centered"],radius:["matRippleRadius","radius"],animation:["matRippleAnimation","animation"],disabled:["matRippleDisabled","disabled"],trigger:["matRippleTrigger","trigger"]},exportAs:["matRipple"]}),Re})(),fe=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({imports:[[re],re]}),Re})(),Q=(()=>{class Re{constructor(de){this._animationMode=de,this.state="unchecked",this.disabled=!1}}return Re.\u0275fac=function(de){return new(de||Re)(t.Y36(w.Qb,8))},Re.\u0275cmp=t.Xpm({type:Re,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:8,hostBindings:function(de,ye){2&de&&t.ekj("mat-pseudo-checkbox-indeterminate","indeterminate"===ye.state)("mat-pseudo-checkbox-checked","checked"===ye.state)("mat-pseudo-checkbox-disabled",ye.disabled)("_mat-animation-noopable","NoopAnimations"===ye._animationMode)},inputs:{state:"state",disabled:"disabled"},decls:0,vars:0,template:function(de,ye){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:"";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\n'],encapsulation:2,changeDetection:0}),Re})(),ft=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({imports:[[re]]}),Re})();const tt=new t.OlP("MAT_OPTION_PARENT_COMPONENT"),Zt=new t.OlP("MatOptgroup");let Ot=0;class Nt{constructor(ke,de=!1){this.source=ke,this.isUserInput=de}}let gt=(()=>{class Re{constructor(de,ye,ht,mt){this._element=de,this._changeDetectorRef=ye,this._parent=ht,this.group=mt,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+Ot++,this.onSelectionChange=new t.vpe,this._stateChanges=new R.x}get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(de){this._disabled=(0,d.Ig)(de)}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get active(){return this._active}get viewValue(){return(this._getHostElement().textContent||"").trim()}select(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}deselect(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}focus(de,ye){const ht=this._getHostElement();"function"==typeof ht.focus&&ht.focus(ye)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(de){(de.keyCode===D.K5||de.keyCode===D.L_)&&!(0,D.Vb)(de)&&(this._selectViaInteraction(),de.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getAriaSelected(){return this.selected||!this.multiple&&null}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const de=this.viewValue;de!==this._mostRecentViewValue&&(this._mostRecentViewValue=de,this._stateChanges.next())}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(de=!1){this.onSelectionChange.emit(new Nt(this,de))}}return Re.\u0275fac=function(de){t.$Z()},Re.\u0275dir=t.lG2({type:Re,inputs:{value:"value",id:"id",disabled:"disabled"},outputs:{onSelectionChange:"onSelectionChange"}}),Re})(),it=(()=>{class Re extends gt{constructor(de,ye,ht,mt){super(de,ye,ht,mt)}}return Re.\u0275fac=function(de){return new(de||Re)(t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(tt,8),t.Y36(Zt,8))},Re.\u0275cmp=t.Xpm({type:Re,selectors:[["mat-option"]],hostAttrs:["role","option",1,"mat-option","mat-focus-indicator"],hostVars:12,hostBindings:function(de,ye){1&de&&t.NdJ("click",function(){return ye._selectViaInteraction()})("keydown",function(mt){return ye._handleKeydown(mt)}),2&de&&(t.Ikx("id",ye.id),t.uIk("tabindex",ye._getTabIndex())("aria-selected",ye._getAriaSelected())("aria-disabled",ye.disabled.toString()),t.ekj("mat-selected",ye.selected)("mat-option-multiple",ye.multiple)("mat-active",ye.active)("mat-option-disabled",ye.disabled))},exportAs:["matOption"],features:[t.qOj],ngContentSelectors:Z,decls:5,vars:4,consts:[["class","mat-option-pseudo-checkbox",3,"state","disabled",4,"ngIf"],[1,"mat-option-text"],["class","cdk-visually-hidden",4,"ngIf"],["mat-ripple","",1,"mat-option-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-option-pseudo-checkbox",3,"state","disabled"],[1,"cdk-visually-hidden"]],template:function(de,ye){1&de&&(t.F$t(),t.YNc(0,E,1,2,"mat-pseudo-checkbox",0),t.TgZ(1,"span",1),t.Hsn(2),t.qZA(),t.YNc(3,B,2,1,"span",2),t._UZ(4,"div",3)),2&de&&(t.Q6J("ngIf",ye.multiple),t.xp6(3),t.Q6J("ngIf",ye.group&&ye.group._inert),t.xp6(1),t.Q6J("matRippleTrigger",ye._getHostElement())("matRippleDisabled",ye.disabled||ye.disableRipple))},directives:[Q,M.O5,Ce],styles:[".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.cdk-high-contrast-active .mat-option[aria-disabled=true]{opacity:.5}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\n"],encapsulation:2,changeDetection:0}),Re})();function bt(Re,ke,de){if(de.length){let ye=ke.toArray(),ht=de.toArray(),mt=0;for(let Ft=0;Ftde+ye?Math.max(0,Re-ye+ke):de}let Qt=(()=>{class Re{}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=t.oAB({type:Re}),Re.\u0275inj=t.cJS({imports:[[fe,M.ez,re,ft]]}),Re})()},6856:(Be,K,p)=>{"use strict";p.d(K,{FA:()=>ve,Mq:()=>He,hl:()=>lt,nW:()=>mi});var t=p(5664),e=p(9776),f=p(7429),M=p(9808),a=p(5e3),C=p(7423),d=p(5303),R=p(508),h=p(7579),L=p(727),w=p(6451),D=p(9646),S=p(1159),k=p(5698),E=p(8675),B=p(9300),Z=p(226),Y=p(3191),ae=p(925),ee=p(1777),ue=p(3075),ie=p(7322),re=p(7531);const ge=["mat-calendar-body",""];function q(Qe,_t){if(1&Qe&&(a.TgZ(0,"tr",2)(1,"td",3),a._uU(2),a.qZA()()),2&Qe){const se=a.oxw();a.xp6(1),a.Udp("padding-top",se._cellPadding)("padding-bottom",se._cellPadding),a.uIk("colspan",se.numCols),a.xp6(1),a.hij(" ",se.label," ")}}function _e(Qe,_t){if(1&Qe&&(a.TgZ(0,"td",3),a._uU(1),a.qZA()),2&Qe){const se=a.oxw(2);a.Udp("padding-top",se._cellPadding)("padding-bottom",se._cellPadding),a.uIk("colspan",se._firstRowOffset),a.xp6(1),a.hij(" ",se._firstRowOffset>=se.labelMinRequiredCells?se.label:""," ")}}function x(Qe,_t){if(1&Qe){const se=a.EpF();a.TgZ(0,"td",7)(1,"button",8),a.NdJ("click",function(xt){const xi=a.CHM(se).$implicit;return a.oxw(2)._cellClicked(xi,xt)}),a.TgZ(2,"div",9),a._uU(3),a.qZA(),a._UZ(4,"div",10),a.qZA()()}if(2&Qe){const se=_t.$implicit,Je=_t.index,xt=a.oxw().index,Bt=a.oxw();a.Udp("width",Bt._cellWidth)("padding-top",Bt._cellPadding)("padding-bottom",Bt._cellPadding),a.uIk("data-mat-row",xt)("data-mat-col",Je),a.xp6(1),a.ekj("mat-calendar-body-disabled",!se.enabled)("mat-calendar-body-active",Bt._isActiveCell(xt,Je))("mat-calendar-body-range-start",Bt._isRangeStart(se.compareValue))("mat-calendar-body-range-end",Bt._isRangeEnd(se.compareValue))("mat-calendar-body-in-range",Bt._isInRange(se.compareValue))("mat-calendar-body-comparison-bridge-start",Bt._isComparisonBridgeStart(se.compareValue,xt,Je))("mat-calendar-body-comparison-bridge-end",Bt._isComparisonBridgeEnd(se.compareValue,xt,Je))("mat-calendar-body-comparison-start",Bt._isComparisonStart(se.compareValue))("mat-calendar-body-comparison-end",Bt._isComparisonEnd(se.compareValue))("mat-calendar-body-in-comparison-range",Bt._isInComparisonRange(se.compareValue))("mat-calendar-body-preview-start",Bt._isPreviewStart(se.compareValue))("mat-calendar-body-preview-end",Bt._isPreviewEnd(se.compareValue))("mat-calendar-body-in-preview",Bt._isInPreview(se.compareValue)),a.Q6J("ngClass",se.cssClasses)("tabindex",Bt._isActiveCell(xt,Je)?0:-1),a.uIk("aria-label",se.ariaLabel)("aria-disabled",!se.enabled||null)("aria-pressed",Bt._isSelected(se.compareValue))("aria-current",Bt.todayValue===se.compareValue?"date":null),a.xp6(1),a.ekj("mat-calendar-body-selected",Bt._isSelected(se.compareValue))("mat-calendar-body-comparison-identical",Bt._isComparisonIdentical(se.compareValue))("mat-calendar-body-today",Bt.todayValue===se.compareValue),a.xp6(1),a.hij(" ",se.displayValue," ")}}function i(Qe,_t){if(1&Qe&&(a.TgZ(0,"tr",4),a.YNc(1,_e,2,6,"td",5),a.YNc(2,x,5,47,"td",6),a.qZA()),2&Qe){const se=_t.$implicit,Je=_t.index,xt=a.oxw();a.xp6(1),a.Q6J("ngIf",0===Je&&xt._firstRowOffset),a.xp6(1),a.Q6J("ngForOf",se)}}function r(Qe,_t){if(1&Qe&&(a.TgZ(0,"th",5)(1,"span",6),a._uU(2),a.qZA(),a.TgZ(3,"span",7),a._uU(4),a.qZA()()),2&Qe){const se=_t.$implicit;a.xp6(2),a.Oqu(se.long),a.xp6(2),a.Oqu(se.narrow)}}const u=["*"];function c(Qe,_t){}function v(Qe,_t){if(1&Qe){const se=a.EpF();a.TgZ(0,"mat-month-view",5),a.NdJ("activeDateChange",function(xt){return a.CHM(se),a.oxw().activeDate=xt})("_userSelection",function(xt){return a.CHM(se),a.oxw()._dateSelected(xt)}),a.qZA()}if(2&Qe){const se=a.oxw();a.Q6J("activeDate",se.activeDate)("selected",se.selected)("dateFilter",se.dateFilter)("maxDate",se.maxDate)("minDate",se.minDate)("dateClass",se.dateClass)("comparisonStart",se.comparisonStart)("comparisonEnd",se.comparisonEnd)}}function T(Qe,_t){if(1&Qe){const se=a.EpF();a.TgZ(0,"mat-year-view",6),a.NdJ("activeDateChange",function(xt){return a.CHM(se),a.oxw().activeDate=xt})("monthSelected",function(xt){return a.CHM(se),a.oxw()._monthSelectedInYearView(xt)})("selectedChange",function(xt){return a.CHM(se),a.oxw()._goToDateInView(xt,"month")}),a.qZA()}if(2&Qe){const se=a.oxw();a.Q6J("activeDate",se.activeDate)("selected",se.selected)("dateFilter",se.dateFilter)("maxDate",se.maxDate)("minDate",se.minDate)("dateClass",se.dateClass)}}function I(Qe,_t){if(1&Qe){const se=a.EpF();a.TgZ(0,"mat-multi-year-view",7),a.NdJ("activeDateChange",function(xt){return a.CHM(se),a.oxw().activeDate=xt})("yearSelected",function(xt){return a.CHM(se),a.oxw()._yearSelectedInMultiYearView(xt)})("selectedChange",function(xt){return a.CHM(se),a.oxw()._goToDateInView(xt,"year")}),a.qZA()}if(2&Qe){const se=a.oxw();a.Q6J("activeDate",se.activeDate)("selected",se.selected)("dateFilter",se.dateFilter)("maxDate",se.maxDate)("minDate",se.minDate)("dateClass",se.dateClass)}}function y(Qe,_t){}const n=["button"];function _(Qe,_t){1&Qe&&(a.O4$(),a.TgZ(0,"svg",3),a._UZ(1,"path",4),a.qZA())}const V=[[["","matDatepickerToggleIcon",""]]],N=["[matDatepickerToggleIcon]"];class Pe{constructor(_t,se,Je,xt,Bt={},xi=_t,Ti){this.value=_t,this.displayValue=se,this.ariaLabel=Je,this.enabled=xt,this.cssClasses=Bt,this.compareValue=xi,this.rawValue=Ti}}let Ee=(()=>{class Qe{constructor(se,Je){this._elementRef=se,this._ngZone=Je,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new a.vpe,this.previewChange=new a.vpe,this._enterHandler=xt=>{if(this._skipNextFocus&&"focus"===xt.type)this._skipNextFocus=!1;else if(xt.target&&this.isRange){const Bt=this._getCellFromElement(xt.target);Bt&&this._ngZone.run(()=>this.previewChange.emit({value:Bt.enabled?Bt:null,event:xt}))}},this._leaveHandler=xt=>{null!==this.previewEnd&&this.isRange&&xt.target&&this._getCellFromElement(xt.target)&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:xt}))},Je.runOutsideAngular(()=>{const xt=se.nativeElement;xt.addEventListener("mouseenter",this._enterHandler,!0),xt.addEventListener("focus",this._enterHandler,!0),xt.addEventListener("mouseleave",this._leaveHandler,!0),xt.addEventListener("blur",this._leaveHandler,!0)})}_cellClicked(se,Je){se.enabled&&this.selectedValueChange.emit({value:se.value,event:Je})}_isSelected(se){return this.startValue===se||this.endValue===se}ngOnChanges(se){const Je=se.numCols,{rows:xt,numCols:Bt}=this;(se.rows||Je)&&(this._firstRowOffset=xt&&xt.length&&xt[0].length?Bt-xt[0].length:0),(se.cellAspectRatio||Je||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/Bt+"%"),(Je||!this._cellWidth)&&(this._cellWidth=100/Bt+"%")}ngOnDestroy(){const se=this._elementRef.nativeElement;se.removeEventListener("mouseenter",this._enterHandler,!0),se.removeEventListener("focus",this._enterHandler,!0),se.removeEventListener("mouseleave",this._leaveHandler,!0),se.removeEventListener("blur",this._leaveHandler,!0)}_isActiveCell(se,Je){let xt=se*this.numCols+Je;return se&&(xt-=this._firstRowOffset),xt==this.activeCell}_focusActiveCell(se=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(()=>{setTimeout(()=>{const Je=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");Je&&(se||(this._skipNextFocus=!0),Je.focus())})})})}_isRangeStart(se){return Ve(se,this.startValue,this.endValue)}_isRangeEnd(se){return Me(se,this.startValue,this.endValue)}_isInRange(se){return J(se,this.startValue,this.endValue,this.isRange)}_isComparisonStart(se){return Ve(se,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(se,Je,xt){if(!this._isComparisonStart(se)||this._isRangeStart(se)||!this._isInRange(se))return!1;let Bt=this.rows[Je][xt-1];if(!Bt){const xi=this.rows[Je-1];Bt=xi&&xi[xi.length-1]}return Bt&&!this._isRangeEnd(Bt.compareValue)}_isComparisonBridgeEnd(se,Je,xt){if(!this._isComparisonEnd(se)||this._isRangeEnd(se)||!this._isInRange(se))return!1;let Bt=this.rows[Je][xt+1];if(!Bt){const xi=this.rows[Je+1];Bt=xi&&xi[0]}return Bt&&!this._isRangeStart(Bt.compareValue)}_isComparisonEnd(se){return Me(se,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(se){return J(se,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(se){return this.comparisonStart===this.comparisonEnd&&se===this.comparisonStart}_isPreviewStart(se){return Ve(se,this.previewStart,this.previewEnd)}_isPreviewEnd(se){return Me(se,this.previewStart,this.previewEnd)}_isInPreview(se){return J(se,this.previewStart,this.previewEnd,this.isRange)}_getCellFromElement(se){let Je;if(j(se)?Je=se:j(se.parentNode)&&(Je=se.parentNode),Je){const xt=Je.getAttribute("data-mat-row"),Bt=Je.getAttribute("data-mat-col");if(xt&&Bt)return this.rows[parseInt(xt)][parseInt(Bt)]}return null}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(a.SBq),a.Y36(a.R0b))},Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange"},exportAs:["matCalendarBody"],features:[a.TTD],attrs:ge,decls:2,vars:2,consts:[["aria-hidden","true",4,"ngIf"],["role","row",4,"ngFor","ngForOf"],["aria-hidden","true"],[1,"mat-calendar-body-label"],["role","row"],["class","mat-calendar-body-label",3,"paddingTop","paddingBottom",4,"ngIf"],["role","gridcell","class","mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom",4,"ngFor","ngForOf"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"ngClass","tabindex","click"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(se,Je){1&se&&(a.YNc(0,q,3,6,"tr",0),a.YNc(1,i,3,2,"tr",1)),2&se&&(a.Q6J("ngIf",Je._firstRowOffset.mat-calendar-body-cell-content,.cdk-high-contrast-active .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content{outline:dotted 2px}.cdk-high-contrast-active .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content.mat-calendar-body-selected,.cdk-high-contrast-active .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content.mat-calendar-body-selected{outline:solid 3px}.cdk-high-contrast-active .mat-calendar-body-cell::before,.cdk-high-contrast-active .mat-calendar-body-cell::after,.cdk-high-contrast-active .mat-calendar-body-selected{background:none}.cdk-high-contrast-active .mat-calendar-body-in-range::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-start::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.cdk-high-contrast-active .mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}[dir=rtl] .mat-calendar-body-label{text-align:right}\n'],encapsulation:2,changeDetection:0}),Qe})();function j(Qe){return"TD"===Qe.nodeName}function Ve(Qe,_t,se){return null!==se&&_t!==se&&Qe=_t&&Qe===se}function J(Qe,_t,se,Je){return Je&&null!==_t&&null!==se&&_t!==se&&Qe>=_t&&Qe<=se}class Ie{constructor(_t,se){this.start=_t,this.end=se}}let ut=(()=>{class Qe{constructor(se,Je){this.selection=se,this._adapter=Je,this._selectionChanged=new h.x,this.selectionChanged=this._selectionChanged,this.selection=se}updateSelection(se,Je){const xt=this.selection;this.selection=se,this._selectionChanged.next({selection:se,source:Je,oldValue:xt})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(se){return this._adapter.isDateInstance(se)&&this._adapter.isValid(se)}}return Qe.\u0275fac=function(se){a.$Z()},Qe.\u0275prov=a.Yz7({token:Qe,factory:Qe.\u0275fac}),Qe})(),Oe=(()=>{class Qe extends ut{constructor(se){super(null,se)}add(se){super.updateSelection(se,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const se=new Qe(this._adapter);return se.updateSelection(this.selection,this),se}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.LFG(R._A))},Qe.\u0275prov=a.Yz7({token:Qe,factory:Qe.\u0275fac}),Qe})();const Te={provide:ut,deps:[[new a.FiY,new a.tp0,ut],R._A],useFactory:function ce(Qe,_t){return Qe||new Oe(_t)}},te=new a.OlP("MAT_DATE_RANGE_SELECTION_STRATEGY");let tt=(()=>{class Qe{constructor(se,Je,xt,Bt,xi){this._changeDetectorRef=se,this._dateFormats=Je,this._dateAdapter=xt,this._dir=Bt,this._rangeStrategy=xi,this._rerenderSubscription=L.w0.EMPTY,this.selectedChange=new a.vpe,this._userSelection=new a.vpe,this.activeDateChange=new a.vpe,this._activeDate=this._dateAdapter.today()}get activeDate(){return this._activeDate}set activeDate(se){const Je=this._activeDate,xt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(xt,this.minDate,this.maxDate),this._hasSameMonthAndYear(Je,this._activeDate)||this._init()}get selected(){return this._selected}set selected(se){this._selected=se instanceof Ie?se:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se)),this._setRanges(this._selected)}get minDate(){return this._minDate}set minDate(se){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get maxDate(){return this._maxDate}set maxDate(se){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,E.O)(null)).subscribe(()=>this._init())}ngOnChanges(se){const Je=se.comparisonStart||se.comparisonEnd;Je&&!Je.firstChange&&this._setRanges(this.selected)}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(se){const Je=se.value,xt=this._dateAdapter.getYear(this.activeDate),Bt=this._dateAdapter.getMonth(this.activeDate),xi=this._dateAdapter.createDate(xt,Bt,Je);let Ti,$i;this._selected instanceof Ie?(Ti=this._getDateInCurrentMonth(this._selected.start),$i=this._getDateInCurrentMonth(this._selected.end)):Ti=$i=this._getDateInCurrentMonth(this._selected),(Ti!==Je||$i!==Je)&&this.selectedChange.emit(xi),this._userSelection.emit({value:xi,event:se.event}),this._previewStart=this._previewEnd=null,this._changeDetectorRef.markForCheck()}_handleCalendarBodyKeydown(se){const Je=this._activeDate,xt=this._isRtl();switch(se.keyCode){case S.oh:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,xt?1:-1);break;case S.SV:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,xt?-1:1);break;case S.LH:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case S.JH:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case S.Sd:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case S.uR:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case S.Ku:this.activeDate=se.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case S.VM:this.activeDate=se.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case S.K5:case S.L_:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&se.preventDefault());case S.hY:return void(null!=this._previewEnd&&!(0,S.Vb)(se)&&(this._previewStart=this._previewEnd=null,this.selectedChange.emit(null),this._userSelection.emit({value:null,event:se}),se.preventDefault(),se.stopPropagation()));default:return}this._dateAdapter.compareDate(Je,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),se.preventDefault()}_handleCalendarBodyKeyup(se){(se.keyCode===S.L_||se.keyCode===S.K5)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:se}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate=this._getCellCompareValue(this._dateAdapter.today()),this._monthLabel=this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase();let se=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset=(7+this._dateAdapter.getDayOfWeek(se)-this._dateAdapter.getFirstDayOfWeek())%7,this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(se){this._matCalendarBody._focusActiveCell(se)}_previewChanged({event:se,value:Je}){if(this._rangeStrategy){const Bt=this._rangeStrategy.createPreview(Je?Je.rawValue:null,this.selected,se);this._previewStart=this._getCellCompareValue(Bt.start),this._previewEnd=this._getCellCompareValue(Bt.end),this._changeDetectorRef.detectChanges()}}_initWeekdays(){const se=this._dateAdapter.getFirstDayOfWeek(),Je=this._dateAdapter.getDayOfWeekNames("narrow");let Bt=this._dateAdapter.getDayOfWeekNames("long").map((xi,Ti)=>({long:xi,narrow:Je[Ti]}));this._weekdays=Bt.slice(se).concat(Bt.slice(0,se))}_createWeekCells(){const se=this._dateAdapter.getNumDaysInMonth(this.activeDate),Je=this._dateAdapter.getDateNames();this._weeks=[[]];for(let xt=0,Bt=this._firstWeekOffset;xt=0)&&(!this.maxDate||this._dateAdapter.compareDate(se,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(se))}_getDateInCurrentMonth(se){return se&&this._hasSameMonthAndYear(se,this.activeDate)?this._dateAdapter.getDate(se):null}_hasSameMonthAndYear(se,Je){return!(!se||!Je||this._dateAdapter.getMonth(se)!=this._dateAdapter.getMonth(Je)||this._dateAdapter.getYear(se)!=this._dateAdapter.getYear(Je))}_getCellCompareValue(se){if(se){const Je=this._dateAdapter.getYear(se),xt=this._dateAdapter.getMonth(se),Bt=this._dateAdapter.getDate(se);return new Date(Je,xt,Bt).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(se){se instanceof Ie?(this._rangeStart=this._getCellCompareValue(se.start),this._rangeEnd=this._getCellCompareValue(se.end),this._isRange=!0):(this._rangeStart=this._rangeEnd=this._getCellCompareValue(se),this._isRange=!1),this._comparisonRangeStart=this._getCellCompareValue(this.comparisonStart),this._comparisonRangeEnd=this._getCellCompareValue(this.comparisonEnd)}_canSelect(se){return!this.dateFilter||this.dateFilter(se)}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(a.sBO),a.Y36(R.sG,8),a.Y36(R._A,8),a.Y36(Z.Is,8),a.Y36(te,8))},Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["mat-month-view"]],viewQuery:function(se,Je){if(1&se&&a.Gf(Ee,5),2&se){let xt;a.iGM(xt=a.CRH())&&(Je._matCalendarBody=xt.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[a.TTD],decls:7,vars:13,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col",4,"ngFor","ngForOf"],["aria-hidden","true","colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","selectedValueChange","previewChange","keyup","keydown"],["scope","col"],[1,"cdk-visually-hidden"],["aria-hidden","true"]],template:function(se,Je){1&se&&(a.TgZ(0,"table",0)(1,"thead",1)(2,"tr"),a.YNc(3,r,5,2,"th",2),a.qZA(),a.TgZ(4,"tr"),a._UZ(5,"th",3),a.qZA()(),a.TgZ(6,"tbody",4),a.NdJ("selectedValueChange",function(Bt){return Je._dateSelected(Bt)})("previewChange",function(Bt){return Je._previewChanged(Bt)})("keyup",function(Bt){return Je._handleCalendarBodyKeyup(Bt)})("keydown",function(Bt){return Je._handleCalendarBodyKeydown(Bt)}),a.qZA()()),2&se&&(a.xp6(3),a.Q6J("ngForOf",Je._weekdays),a.xp6(3),a.Q6J("label",Je._monthLabel)("rows",Je._weeks)("todayValue",Je._todayDate)("startValue",Je._rangeStart)("endValue",Je._rangeEnd)("comparisonStart",Je._comparisonRangeStart)("comparisonEnd",Je._comparisonRangeEnd)("previewStart",Je._previewStart)("previewEnd",Je._previewEnd)("isRange",Je._isRange)("labelMinRequiredCells",3)("activeCell",Je._dateAdapter.getDate(Je.activeDate)-1))},directives:[Ee,M.sg],encapsulation:2,changeDetection:0}),Qe})(),Yt=(()=>{class Qe{constructor(se,Je,xt){this._changeDetectorRef=se,this._dateAdapter=Je,this._dir=xt,this._rerenderSubscription=L.w0.EMPTY,this.selectedChange=new a.vpe,this.yearSelected=new a.vpe,this.activeDateChange=new a.vpe,this._activeDate=this._dateAdapter.today()}get activeDate(){return this._activeDate}set activeDate(se){let Je=this._activeDate;const xt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(xt,this.minDate,this.maxDate),Zt(this._dateAdapter,Je,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(se){this._selected=se instanceof Ie?se:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se)),this._setSelectedYear(se)}get minDate(){return this._minDate}set minDate(se){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get maxDate(){return this._maxDate}set maxDate(se){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,E.O)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const Je=this._dateAdapter.getYear(this._activeDate)-ui(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let xt=0,Bt=[];xt<24;xt++)Bt.push(Je+xt),4==Bt.length&&(this._years.push(Bt.map(xi=>this._createCellForYear(xi))),Bt=[]);this._changeDetectorRef.markForCheck()}_yearSelected(se){const Je=se.value;this.yearSelected.emit(this._dateAdapter.createDate(Je,0,1));let xt=this._dateAdapter.getMonth(this.activeDate),Bt=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(Je,xt,1));this.selectedChange.emit(this._dateAdapter.createDate(Je,xt,Math.min(this._dateAdapter.getDate(this.activeDate),Bt)))}_handleCalendarBodyKeydown(se){const Je=this._activeDate,xt=this._isRtl();switch(se.keyCode){case S.oh:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,xt?1:-1);break;case S.SV:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,xt?-1:1);break;case S.LH:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case S.JH:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case S.Sd:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-ui(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case S.uR:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-ui(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case S.Ku:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,se.altKey?-240:-24);break;case S.VM:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,se.altKey?240:24);break;case S.K5:case S.L_:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(Je,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),se.preventDefault()}_handleCalendarBodyKeyup(se){(se.keyCode===S.L_||se.keyCode===S.K5)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:se}),this._selectionKeyPressed=!1)}_getActiveCell(){return ui(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_createCellForYear(se){const Je=this._dateAdapter.createDate(se,0,1),xt=this._dateAdapter.getYearName(Je),Bt=this.dateClass?this.dateClass(Je,"multi-year"):void 0;return new Pe(se,xt,xt,this._shouldEnableYear(se),Bt)}_shouldEnableYear(se){if(null==se||this.maxDate&&se>this._dateAdapter.getYear(this.maxDate)||this.minDate&&se{class Qe{constructor(se,Je,xt,Bt){this._changeDetectorRef=se,this._dateFormats=Je,this._dateAdapter=xt,this._dir=Bt,this._rerenderSubscription=L.w0.EMPTY,this.selectedChange=new a.vpe,this.monthSelected=new a.vpe,this.activeDateChange=new a.vpe,this._activeDate=this._dateAdapter.today()}get activeDate(){return this._activeDate}set activeDate(se){let Je=this._activeDate;const xt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(xt,this.minDate,this.maxDate),this._dateAdapter.getYear(Je)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(se){this._selected=se instanceof Ie?se:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se)),this._setSelectedMonth(se)}get minDate(){return this._minDate}set minDate(se){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get maxDate(){return this._maxDate}set maxDate(se){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,E.O)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(se){const Je=se.value,xt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Je,1);this.monthSelected.emit(xt);const Bt=this._dateAdapter.getNumDaysInMonth(xt);this.selectedChange.emit(this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Je,Math.min(this._dateAdapter.getDate(this.activeDate),Bt)))}_handleCalendarBodyKeydown(se){const Je=this._activeDate,xt=this._isRtl();switch(se.keyCode){case S.oh:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,xt?1:-1);break;case S.SV:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,xt?-1:1);break;case S.LH:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case S.JH:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case S.Sd:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case S.uR:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case S.Ku:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,se.altKey?-10:-1);break;case S.VM:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,se.altKey?10:1);break;case S.K5:case S.L_:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(Je,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),se.preventDefault()}_handleCalendarBodyKeyup(se){(se.keyCode===S.L_||se.keyCode===S.K5)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:se}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth=this._getMonthInCurrentYear(this._dateAdapter.today()),this._yearLabel=this._dateAdapter.getYearName(this.activeDate);let se=this._dateAdapter.getMonthNames("short");this._months=[[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(Je=>Je.map(xt=>this._createCellForMonth(xt,se[xt]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_getMonthInCurrentYear(se){return se&&this._dateAdapter.getYear(se)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(se):null}_createCellForMonth(se,Je){const xt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),se,1),Bt=this._dateAdapter.format(xt,this._dateFormats.display.monthYearA11yLabel),xi=this.dateClass?this.dateClass(xt,"year"):void 0;return new Pe(se,Je.toLocaleUpperCase(),Bt,this._shouldEnableMonth(se),xi)}_shouldEnableMonth(se){const Je=this._dateAdapter.getYear(this.activeDate);if(null==se||this._isYearAndMonthAfterMaxDate(Je,se)||this._isYearAndMonthBeforeMinDate(Je,se))return!1;if(!this.dateFilter)return!0;for(let Bt=this._dateAdapter.createDate(Je,se,1);this._dateAdapter.getMonth(Bt)==se;Bt=this._dateAdapter.addCalendarDays(Bt,1))if(this.dateFilter(Bt))return!0;return!1}_isYearAndMonthAfterMaxDate(se,Je){if(this.maxDate){const xt=this._dateAdapter.getYear(this.maxDate),Bt=this._dateAdapter.getMonth(this.maxDate);return se>xt||se===xt&&Je>Bt}return!1}_isYearAndMonthBeforeMinDate(se,Je){if(this.minDate){const xt=this._dateAdapter.getYear(this.minDate),Bt=this._dateAdapter.getMonth(this.minDate);return se{class Qe{constructor(){this.changes=new h.x,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year"}formatYearRange(se,Je){return`${se} \u2013 ${Je}`}}return Qe.\u0275fac=function(se){return new(se||Qe)},Qe.\u0275prov=a.Yz7({token:Qe,factory:Qe.\u0275fac,providedIn:"root"}),Qe})(),bt=0,ei=(()=>{class Qe{constructor(se,Je,xt,Bt,xi){this._intl=se,this.calendar=Je,this._dateAdapter=xt,this._dateFormats=Bt,this._buttonDescriptionId="mat-calendar-button-"+bt++,this.calendar.stateChanges.subscribe(()=>xi.markForCheck())}get periodButtonText(){if("month"==this.calendar.currentView)return this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase();if("year"==this.calendar.currentView)return this._dateAdapter.getYearName(this.calendar.activeDate);const Je=this._dateAdapter.getYear(this.calendar.activeDate)-ui(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),xt=Je+24-1,Bt=this._dateAdapter.getYearName(this._dateAdapter.createDate(Je,0,1)),xi=this._dateAdapter.getYearName(this._dateAdapter.createDate(xt,0,1));return this._intl.formatYearRange(Bt,xi)}get periodButtonLabel(){return"month"==this.calendar.currentView?this._intl.switchToMultiYearViewLabel:this._intl.switchToMonthViewLabel}get prevButtonLabel(){return{month:this._intl.prevMonthLabel,year:this._intl.prevYearLabel,"multi-year":this._intl.prevMultiYearLabel}[this.calendar.currentView]}get nextButtonLabel(){return{month:this._intl.nextMonthLabel,year:this._intl.nextYearLabel,"multi-year":this._intl.nextMultiYearLabel}[this.calendar.currentView]}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-24)}nextClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:24)}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_isSameView(se,Je){return"month"==this.calendar.currentView?this._dateAdapter.getYear(se)==this._dateAdapter.getYear(Je)&&this._dateAdapter.getMonth(se)==this._dateAdapter.getMonth(Je):"year"==this.calendar.currentView?this._dateAdapter.getYear(se)==this._dateAdapter.getYear(Je):Zt(this._dateAdapter,se,Je,this.calendar.minDate,this.calendar.maxDate)}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(it),a.Y36((0,a.Gpc)(()=>Qt)),a.Y36(R._A,8),a.Y36(R.sG,8),a.Y36(a.sBO))},Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:u,decls:11,vars:10,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["mat-button","","type","button","aria-live","polite",1,"mat-calendar-period-button",3,"click"],["viewBox","0 0 10 5","focusable","false",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["mat-icon-button","","type","button",1,"mat-calendar-previous-button",3,"disabled","click"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"disabled","click"]],template:function(se,Je){1&se&&(a.F$t(),a.TgZ(0,"div",0)(1,"div",1)(2,"button",2),a.NdJ("click",function(){return Je.currentPeriodClicked()}),a.TgZ(3,"span"),a._uU(4),a.qZA(),a.O4$(),a.TgZ(5,"svg",3),a._UZ(6,"polygon",4),a.qZA()(),a.kcU(),a._UZ(7,"div",5),a.Hsn(8),a.TgZ(9,"button",6),a.NdJ("click",function(){return Je.previousClicked()}),a.qZA(),a.TgZ(10,"button",7),a.NdJ("click",function(){return Je.nextClicked()}),a.qZA()()()),2&se&&(a.xp6(2),a.uIk("aria-label",Je.periodButtonLabel)("aria-describedby",Je._buttonDescriptionId),a.xp6(1),a.uIk("id",Je._buttonDescriptionId),a.xp6(1),a.Oqu(Je.periodButtonText),a.xp6(1),a.ekj("mat-calendar-invert","month"!==Je.calendar.currentView),a.xp6(4),a.Q6J("disabled",!Je.previousEnabled()),a.uIk("aria-label",Je.prevButtonLabel),a.xp6(1),a.Q6J("disabled",!Je.nextEnabled()),a.uIk("aria-label",Je.nextButtonLabel))},directives:[C.lW],encapsulation:2,changeDetection:0}),Qe})(),Qt=(()=>{class Qe{constructor(se,Je,xt,Bt){this._dateAdapter=Je,this._dateFormats=xt,this._changeDetectorRef=Bt,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new a.vpe,this.yearSelected=new a.vpe,this.monthSelected=new a.vpe,this.viewChanged=new a.vpe(!0),this._userSelection=new a.vpe,this.stateChanges=new h.x,this._intlChanges=se.changes.subscribe(()=>{Bt.markForCheck(),this.stateChanges.next()})}get startAt(){return this._startAt}set startAt(se){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get selected(){return this._selected}set selected(se){this._selected=se instanceof Ie?se:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get minDate(){return this._minDate}set minDate(se){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get maxDate(){return this._maxDate}set maxDate(se){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get activeDate(){return this._clampedActiveDate}set activeDate(se){this._clampedActiveDate=this._dateAdapter.clampDate(se,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}get currentView(){return this._currentView}set currentView(se){const Je=this._currentView!==se?se:null;this._currentView=se,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),Je&&this.viewChanged.emit(Je)}ngAfterContentInit(){this._calendarHeaderPortal=new f.C5(this.headerComponent||ei),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(se){const Je=se.minDate&&!this._dateAdapter.sameDate(se.minDate.previousValue,se.minDate.currentValue)?se.minDate:void 0,xt=se.maxDate&&!this._dateAdapter.sameDate(se.maxDate.previousValue,se.maxDate.currentValue)?se.maxDate:void 0,Bt=Je||xt||se.dateFilter;if(Bt&&!Bt.firstChange){const xi=this._getCurrentViewComponent();xi&&(this._changeDetectorRef.detectChanges(),xi._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(se){const Je=se.value;(this.selected instanceof Ie||Je&&!this._dateAdapter.sameDate(Je,this.selected))&&this.selectedChange.emit(Je),this._userSelection.emit(se)}_yearSelectedInMultiYearView(se){this.yearSelected.emit(se)}_monthSelectedInYearView(se){this.monthSelected.emit(se)}_goToDateInView(se,Je){this.activeDate=se,this.currentView=Je}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(it),a.Y36(R._A,8),a.Y36(R.sG,8),a.Y36(a.sBO))},Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["mat-calendar"]],viewQuery:function(se,Je){if(1&se&&(a.Gf(tt,5),a.Gf(gt,5),a.Gf(Yt,5)),2&se){let xt;a.iGM(xt=a.CRH())&&(Je.monthView=xt.first),a.iGM(xt=a.CRH())&&(Je.yearView=xt.first),a.iGM(xt=a.CRH())&&(Je.multiYearView=xt.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection"},exportAs:["matCalendar"],features:[a._Bn([Te]),a.TTD],decls:5,vars:5,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content",3,"ngSwitch"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","activeDateChange","_userSelection",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","activeDateChange","_userSelection"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange"]],template:function(se,Je){1&se&&(a.YNc(0,c,0,0,"ng-template",0),a.TgZ(1,"div",1),a.YNc(2,v,1,8,"mat-month-view",2),a.YNc(3,T,1,6,"mat-year-view",3),a.YNc(4,I,1,6,"mat-multi-year-view",4),a.qZA()),2&se&&(a.Q6J("cdkPortalOutlet",Je._calendarHeaderPortal),a.xp6(1),a.Q6J("ngSwitch",Je.currentView),a.xp6(1),a.Q6J("ngSwitchCase","month"),a.xp6(1),a.Q6J("ngSwitchCase","year"),a.xp6(1),a.Q6J("ngSwitchCase","multi-year"))},directives:[tt,gt,Yt,f.Pl,t.kH,M.RF,M.n9],styles:['.mat-calendar{display:block}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-controls .mat-icon-button:hover .mat-button-focus-overlay{opacity:.04}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.cdk-high-contrast-active .mat-calendar-arrow{fill:CanvasText}.mat-calendar-previous-button,.mat-calendar-next-button{position:relative}.mat-calendar-previous-button::after,.mat-calendar-next-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:"";margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px}\n'],encapsulation:2,changeDetection:0}),Qe})();const Re={transformPanel:(0,ee.X$)("transformPanel",[(0,ee.eR)("void => enter-dropdown",(0,ee.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.F4)([(0,ee.oB)({opacity:0,transform:"scale(1, 0.8)"}),(0,ee.oB)({opacity:1,transform:"scale(1, 1)"})]))),(0,ee.eR)("void => enter-dialog",(0,ee.jt)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.F4)([(0,ee.oB)({opacity:0,transform:"scale(0.7)"}),(0,ee.oB)({transform:"none",opacity:1})]))),(0,ee.eR)("* => void",(0,ee.jt)("100ms linear",(0,ee.oB)({opacity:0})))]),fadeInCalendar:(0,ee.X$)("fadeInCalendar",[(0,ee.SB)("void",(0,ee.oB)({opacity:0})),(0,ee.SB)("enter",(0,ee.oB)({opacity:1})),(0,ee.eR)("void => *",(0,ee.jt)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let ke=0;const de=new a.OlP("mat-datepicker-scroll-strategy"),ht={provide:de,deps:[e.aV],useFactory:function ye(Qe){return()=>Qe.scrollStrategies.reposition()}},mt=(0,R.pj)(class{constructor(Qe){this._elementRef=Qe}});let Ft=(()=>{class Qe extends mt{constructor(se,Je,xt,Bt,xi,Ti){super(se),this._changeDetectorRef=Je,this._globalModel=xt,this._dateAdapter=Bt,this._rangeSelectionStrategy=xi,this._subscriptions=new L.w0,this._animationDone=new h.x,this._actionsPortal=null,this._closeButtonText=Ti.closeCalendarLabel}ngOnInit(){this._model=this._actionsPortal?this._globalModel.clone():this._globalModel,this._animationState=this.datepicker.touchUi?"enter-dialog":"enter-dropdown"}ngAfterViewInit(){this._subscriptions.add(this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})),this._calendar.focusActiveCell()}ngOnDestroy(){this._subscriptions.unsubscribe(),this._animationDone.complete()}_handleUserSelection(se){const Je=this._model.selection,xt=se.value,Bt=Je instanceof Ie;if(Bt&&this._rangeSelectionStrategy){const xi=this._rangeSelectionStrategy.selectionFinished(xt,Je,se.event);this._model.updateSelection(xi,this)}else xt&&(Bt||!this._dateAdapter.sameDate(xt,Je))&&this._model.add(xt);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(ut),a.Y36(R._A),a.Y36(te,8),a.Y36(it))},Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["mat-datepicker-content"]],viewQuery:function(se,Je){if(1&se&&a.Gf(Qt,5),2&se){let xt;a.iGM(xt=a.CRH())&&(Je._calendar=xt.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:3,hostBindings:function(se,Je){1&se&&a.WFA("@transformPanel.done",function(){return Je._animationDone.next()}),2&se&&(a.d8E("@transformPanel",Je._animationState),a.ekj("mat-datepicker-content-touch",Je.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],features:[a.qOj],decls:5,vars:24,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"id","ngClass","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","yearSelected","monthSelected","viewChanged","_userSelection"],[3,"cdkPortalOutlet"],["type","button","mat-raised-button","",1,"mat-datepicker-close-button",3,"color","focus","blur","click"]],template:function(se,Je){if(1&se&&(a.TgZ(0,"div",0)(1,"mat-calendar",1),a.NdJ("yearSelected",function(Bt){return Je.datepicker._selectYear(Bt)})("monthSelected",function(Bt){return Je.datepicker._selectMonth(Bt)})("viewChanged",function(Bt){return Je.datepicker._viewChanged(Bt)})("_userSelection",function(Bt){return Je._handleUserSelection(Bt)}),a.qZA(),a.YNc(2,y,0,0,"ng-template",2),a.TgZ(3,"button",3),a.NdJ("focus",function(){return Je._closeButtonFocused=!0})("blur",function(){return Je._closeButtonFocused=!1})("click",function(){return Je.datepicker.close()}),a._uU(4),a.qZA()()),2&se){let xt;a.ekj("mat-datepicker-content-container-with-custom-header",Je.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",Je._actionsPortal),a.uIk("aria-modal",!0)("aria-labelledby",null!==(xt=Je._dialogLabelId)&&void 0!==xt?xt:void 0),a.xp6(1),a.Q6J("id",Je.datepicker.id)("ngClass",Je.datepicker.panelClass)("startAt",Je.datepicker.startAt)("startView",Je.datepicker.startView)("minDate",Je.datepicker._getMinDate())("maxDate",Je.datepicker._getMaxDate())("dateFilter",Je.datepicker._getDateFilter())("headerComponent",Je.datepicker.calendarHeaderComponent)("selected",Je._getSelected())("dateClass",Je.datepicker.dateClass)("comparisonStart",Je.comparisonStart)("comparisonEnd",Je.comparisonEnd)("@fadeInCalendar","enter"),a.xp6(1),a.Q6J("cdkPortalOutlet",Je._actionsPortal),a.xp6(1),a.ekj("cdk-visually-hidden",!Je._closeButtonFocused),a.Q6J("color",Je.color||"primary"),a.xp6(1),a.Oqu(Je._closeButtonText)}},directives:[Qt,C.lW,t.mK,M.mk,f.Pl],styles:[".mat-datepicker-content{display:block;border-radius:4px}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.ng-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{display:block;max-height:80vh;position:relative;overflow:visible}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}\n"],encapsulation:2,data:{animation:[Re.transformPanel,Re.fadeInCalendar]},changeDetection:0}),Qe})(),nt=(()=>{class Qe{constructor(se,Je,xt,Bt,xi,Ti,$i){this._overlay=se,this._ngZone=Je,this._viewContainerRef=xt,this._dateAdapter=xi,this._dir=Ti,this._model=$i,this._inputStateChanges=L.w0.EMPTY,this.startView="month",this._touchUi=!1,this.xPosition="start",this.yPosition="below",this._restoreFocus=!0,this.yearSelected=new a.vpe,this.monthSelected=new a.vpe,this.viewChanged=new a.vpe(!0),this.openedStream=new a.vpe,this.closedStream=new a.vpe,this._opened=!1,this.id="mat-datepicker-"+ke++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new h.x,this._scrollStrategy=Bt}get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(se){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se))}get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(se){this._color=se}get touchUi(){return this._touchUi}set touchUi(se){this._touchUi=(0,Y.Ig)(se)}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(se){const Je=(0,Y.Ig)(se);Je!==this._disabled&&(this._disabled=Je,this.stateChanges.next(void 0))}get restoreFocus(){return this._restoreFocus}set restoreFocus(se){this._restoreFocus=(0,Y.Ig)(se)}get panelClass(){return this._panelClass}set panelClass(se){this._panelClass=(0,Y.du)(se)}get opened(){return this._opened}set opened(se){(0,Y.Ig)(se)?this.open():this.close()}_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}ngOnChanges(se){const Je=se.xPosition||se.yPosition;if(Je&&!Je.firstChange&&this._overlayRef){const xt=this._overlayRef.getConfig().positionStrategy;xt instanceof e._G&&(this._setConnectedPositions(xt),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(se){this._model.add(se)}_selectYear(se){this.yearSelected.emit(se)}_selectMonth(se){this.monthSelected.emit(se)}_viewChanged(se){this.viewChanged.emit(se)}registerInput(se){return this._inputStateChanges.unsubscribe(),this.datepickerInput=se,this._inputStateChanges=se.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(se){this._actionsPortal=se}removeActions(se){se===this._actionsPortal&&(this._actionsPortal=null)}open(){this._opened||this.disabled||(this._focusedElementBeforeOpen=(0,ae.ht)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened)return;if(this._componentRef){const Je=this._componentRef.instance;Je._startExitAnimation(),Je._animationDone.pipe((0,k.q)(1)).subscribe(()=>this._destroyOverlay())}const se=()=>{this._opened&&(this._opened=!1,this.closedStream.emit(),this._focusedElementBeforeOpen=null)};this._restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus?(this._focusedElementBeforeOpen.focus(),setTimeout(se)):se()}_applyPendingSelection(){var se,Je;null===(Je=null===(se=this._componentRef)||void 0===se?void 0:se.instance)||void 0===Je||Je._applyPendingSelection()}_forwardContentValues(se){se.datepicker=this,se.color=this.color,se._actionsPortal=this._actionsPortal,se._dialogLabelId=this.datepickerInput.getOverlayLabelId()}_openOverlay(){this._destroyOverlay();const se=this.touchUi,Je=new f.C5(Ft,this._viewContainerRef),xt=this._overlayRef=this._overlay.create(new e.X_({positionStrategy:se?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[se?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir,scrollStrategy:se?this._overlay.scrollStrategies.block():this._scrollStrategy(),panelClass:"mat-datepicker-"+(se?"dialog":"popup")}));this._getCloseStream(xt).subscribe(Bt=>{Bt&&Bt.preventDefault(),this.close()}),xt.keydownEvents().subscribe(Bt=>{const xi=Bt.keyCode;(xi===S.LH||xi===S.JH||xi===S.oh||xi===S.SV||xi===S.Ku||xi===S.VM)&&Bt.preventDefault()}),this._componentRef=xt.attach(Je),this._forwardContentValues(this._componentRef.instance),se||this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(()=>xt.updatePosition())}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return this._overlay.position().global().centerHorizontally().centerVertically()}_getDropdownStrategy(){const se=this._overlay.position().flexibleConnectedTo(this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(se)}_setConnectedPositions(se){const Je="end"===this.xPosition?"end":"start",xt="start"===Je?"end":"start",Bt="above"===this.yPosition?"bottom":"top",xi="top"===Bt?"bottom":"top";return se.withPositions([{originX:Je,originY:xi,overlayX:Je,overlayY:Bt},{originX:Je,originY:Bt,overlayX:Je,overlayY:xi},{originX:xt,originY:xi,overlayX:xt,overlayY:Bt},{originX:xt,originY:Bt,overlayX:xt,overlayY:xi}])}_getCloseStream(se){return(0,w.T)(se.backdropClick(),se.detachments(),se.keydownEvents().pipe((0,B.h)(Je=>Je.keyCode===S.hY&&!(0,S.Vb)(Je)||this.datepickerInput&&(0,S.Vb)(Je,"altKey")&&Je.keyCode===S.LH)))}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(e.aV),a.Y36(a.R0b),a.Y36(a.s_b),a.Y36(de),a.Y36(R._A,8),a.Y36(Z.Is,8),a.Y36(ut))},Qe.\u0275dir=a.lG2({type:Qe,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:"touchUi",disabled:"disabled",xPosition:"xPosition",yPosition:"yPosition",restoreFocus:"restoreFocus",dateClass:"dateClass",panelClass:"panelClass",opened:"opened"},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[a.TTD]}),Qe})(),He=(()=>{class Qe extends nt{}return Qe.\u0275fac=function(){let _t;return function(Je){return(_t||(_t=a.n5z(Qe)))(Je||Qe)}}(),Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[a._Bn([Te,{provide:nt,useExisting:Qe}]),a.qOj],decls:0,vars:0,template:function(se,Je){},encapsulation:2,changeDetection:0}),Qe})();class rt{constructor(_t,se){this.target=_t,this.targetElement=se,this.value=this.target.value}}let et=(()=>{class Qe{constructor(se,Je,xt){this._elementRef=se,this._dateAdapter=Je,this._dateFormats=xt,this.dateChange=new a.vpe,this.dateInput=new a.vpe,this.stateChanges=new h.x,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=L.w0.EMPTY,this._localeSubscription=L.w0.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=Bt=>{const xi=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Bt.value));return!xi||this._matchesFilter(xi)?null:{matDatepickerFilter:!0}},this._minValidator=Bt=>{const xi=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Bt.value)),Ti=this._getMinDate();return!Ti||!xi||this._dateAdapter.compareDate(Ti,xi)<=0?null:{matDatepickerMin:{min:Ti,actual:xi}}},this._maxValidator=Bt=>{const xi=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Bt.value)),Ti=this._getMaxDate();return!Ti||!xi||this._dateAdapter.compareDate(Ti,xi)>=0?null:{matDatepickerMax:{max:Ti,actual:xi}}},this._lastValueValid=!1,this._localeSubscription=Je.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(se){this._assignValueProgrammatically(se)}get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(se){const Je=(0,Y.Ig)(se),xt=this._elementRef.nativeElement;this._disabled!==Je&&(this._disabled=Je,this.stateChanges.next(void 0)),Je&&this._isInitialized&&xt.blur&&xt.blur()}_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(se){this._model=se,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(Je=>{if(this._shouldHandleChangeEvent(Je)){const xt=this._getValueFromModel(Je.selection);this._lastValueValid=this._isValidValue(xt),this._cvaOnChange(xt),this._onTouched(),this._formatValue(xt),this.dateInput.emit(new rt(this,this._elementRef.nativeElement)),this.dateChange.emit(new rt(this,this._elementRef.nativeElement))}})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(se){(function Ae(Qe,_t){const se=Object.keys(Qe);for(let Je of se){const{previousValue:xt,currentValue:Bt}=Qe[Je];if(!_t.isDateInstance(xt)||!_t.isDateInstance(Bt))return!0;if(!_t.sameDate(xt,Bt))return!0}return!1})(se,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(se){this._validatorOnChange=se}validate(se){return this._validator?this._validator(se):null}writeValue(se){this._assignValueProgrammatically(se)}registerOnChange(se){this._cvaOnChange=se}registerOnTouched(se){this._onTouched=se}setDisabledState(se){this.disabled=se}_onKeydown(se){se.altKey&&se.keyCode===S.JH&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),se.preventDefault())}_onInput(se){const Je=this._lastValueValid;let xt=this._dateAdapter.parse(se,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(xt),xt=this._dateAdapter.getValidDateOrNull(xt);const Bt=!this._dateAdapter.sameDate(xt,this.value);!xt||Bt?this._cvaOnChange(xt):(se&&!this.value&&this._cvaOnChange(xt),Je!==this._lastValueValid&&this._validatorOnChange()),Bt&&(this._assignValue(xt),this.dateInput.emit(new rt(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new rt(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(se){this._elementRef.nativeElement.value=null!=se?this._dateAdapter.format(se,this._dateFormats.display.dateInput):""}_assignValue(se){this._model?(this._assignValueToModel(se),this._pendingValue=null):this._pendingValue=se}_isValidValue(se){return!se||this._dateAdapter.isValid(se)}_parentDisabled(){return!1}_assignValueProgrammatically(se){se=this._dateAdapter.deserialize(se),this._lastValueValid=this._isValidValue(se),se=this._dateAdapter.getValidDateOrNull(se),this._assignValue(se),this._formatValue(se)}_matchesFilter(se){const Je=this._getDateFilter();return!Je||Je(se)}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(a.SBq),a.Y36(R._A,8),a.Y36(R.sG,8))},Qe.\u0275dir=a.lG2({type:Qe,inputs:{value:"value",disabled:"disabled"},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[a.TTD]}),Qe})();const Ge={provide:ue.JU,useExisting:(0,a.Gpc)(()=>lt),multi:!0},ot={provide:ue.Cf,useExisting:(0,a.Gpc)(()=>lt),multi:!0};let lt=(()=>{class Qe extends et{constructor(se,Je,xt,Bt){super(se,Je,xt),this._formField=Bt,this._closedSubscription=L.w0.EMPTY,this._validator=ue.kI.compose(super._getValidators())}set matDatepicker(se){se&&(this._datepicker=se,this._closedSubscription=se.closedStream.subscribe(()=>this._onTouched()),this._registerModel(se.registerInput(this)))}get min(){return this._min}set min(se){const Je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se));this._dateAdapter.sameDate(Je,this._min)||(this._min=Je,this._validatorOnChange())}get max(){return this._max}set max(se){const Je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(se));this._dateAdapter.sameDate(Je,this._max)||(this._max=Je,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(se){const Je=this._matchesFilter(this.value);this._dateFilter=se,this._matchesFilter(this.value)!==Je&&this._validatorOnChange()}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(se){return se}_assignValueToModel(se){this._model&&this._model.updateSelection(se,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(se){return se.source!==this}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(a.SBq),a.Y36(R._A,8),a.Y36(R.sG,8),a.Y36(ie.G_,8))},Qe.\u0275dir=a.lG2({type:Qe,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(se,Je){1&se&&a.NdJ("input",function(Bt){return Je._onInput(Bt.target.value)})("change",function(){return Je._onChange()})("blur",function(){return Je._onBlur()})("keydown",function(Bt){return Je._onKeydown(Bt)}),2&se&&(a.Ikx("disabled",Je.disabled),a.uIk("aria-haspopup",Je._datepicker?"dialog":null)("aria-owns",(null==Je._datepicker?null:Je._datepicker.opened)&&Je._datepicker.id||null)("min",Je.min?Je._dateAdapter.toIso8601(Je.min):null)("max",Je.max?Je._dateAdapter.toIso8601(Je.max):null)("data-mat-calendar",Je._datepicker?Je._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:["matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[a._Bn([Ge,ot,{provide:re.Jk,useExisting:Qe}]),a.qOj]}),Qe})(),Ct=(()=>{class Qe{}return Qe.\u0275fac=function(se){return new(se||Qe)},Qe.\u0275dir=a.lG2({type:Qe,selectors:[["","matDatepickerToggleIcon",""]]}),Qe})(),mi=(()=>{class Qe{constructor(se,Je,xt){this._intl=se,this._changeDetectorRef=Je,this._stateChanges=L.w0.EMPTY;const Bt=Number(xt);this.tabIndex=Bt||0===Bt?Bt:null}get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(se){this._disabled=(0,Y.Ig)(se)}ngOnChanges(se){se.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(se){this.datepicker&&!this.disabled&&(this.datepicker.open(),se.stopPropagation())}_watchStateChanges(){const se=this.datepicker?this.datepicker.stateChanges:(0,D.of)(),Je=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,D.of)(),xt=this.datepicker?(0,w.T)(this.datepicker.openedStream,this.datepicker.closedStream):(0,D.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,w.T)(this._intl.changes,se,Je,xt).subscribe(()=>this._changeDetectorRef.markForCheck())}}return Qe.\u0275fac=function(se){return new(se||Qe)(a.Y36(it),a.Y36(a.sBO),a.$8M("tabindex"))},Qe.\u0275cmp=a.Xpm({type:Qe,selectors:[["mat-datepicker-toggle"]],contentQueries:function(se,Je,xt){if(1&se&&a.Suo(xt,Ct,5),2&se){let Bt;a.iGM(Bt=a.CRH())&&(Je._customIcon=Bt.first)}},viewQuery:function(se,Je){if(1&se&&a.Gf(n,5),2&se){let xt;a.iGM(xt=a.CRH())&&(Je._button=xt.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(se,Je){1&se&&a.NdJ("click",function(Bt){return Je._open(Bt)}),2&se&&(a.uIk("tabindex",null)("data-mat-calendar",Je.datepicker?Je.datepicker.id:null),a.ekj("mat-datepicker-toggle-active",Je.datepicker&&Je.datepicker.opened)("mat-accent",Je.datepicker&&"accent"===Je.datepicker.color)("mat-warn",Je.datepicker&&"warn"===Je.datepicker.color))},inputs:{datepicker:["for","datepicker"],tabIndex:"tabIndex",ariaLabel:["aria-label","ariaLabel"],disabled:"disabled",disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[a.TTD],ngContentSelectors:N,decls:4,vars:6,consts:[["mat-icon-button","","type","button",3,"disabled","disableRipple"],["button",""],["class","mat-datepicker-toggle-default-icon","viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false",4,"ngIf"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(se,Je){1&se&&(a.F$t(V),a.TgZ(0,"button",0,1),a.YNc(2,_,2,0,"svg",2),a.Hsn(3),a.qZA()),2&se&&(a.Q6J("disabled",Je.disabled)("disableRipple",Je.disableRipple),a.uIk("aria-haspopup",Je.datepicker?"dialog":null)("aria-label",Je.ariaLabel||Je._intl.openCalendarLabel)("tabindex",Je.disabled?-1:Je.tabIndex),a.xp6(2),a.Q6J("ngIf",!Je._customIcon))},directives:[C.lW,M.O5],styles:[".mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-datepicker-toggle-default-icon{display:block;width:1.5em;height:1.5em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-datepicker-toggle-default-icon{margin:auto}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}\n"],encapsulation:2,changeDetection:0}),Qe})(),ve=(()=>{class Qe{}return Qe.\u0275fac=function(se){return new(se||Qe)},Qe.\u0275mod=a.oAB({type:Qe}),Qe.\u0275inj=a.cJS({providers:[it,ht],imports:[[M.ez,C.ot,e.U8,t.rt,f.eL,R.BQ],d.ZD]}),Qe})()},8966:(Be,K,p)=>{"use strict";p.d(K,{Bq:()=>i,Is:()=>he,WI:()=>x,ZT:()=>_,so:()=>q,uw:()=>I});var t=p(9776),e=p(7429),f=p(5e3),M=p(508),a=p(226),C=p(7579),d=p(9770),R=p(9646),h=p(9300),L=p(5698),w=p(8675),D=p(925),S=p(9808),k=p(1777),E=p(5664),B=p(1159),Z=p(6360);function Y(be,Pe){}class ae{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.maxWidth="80vw",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const ee={dialogContainer:(0,k.X$)("dialogContainer",[(0,k.SB)("void, exit",(0,k.oB)({opacity:0,transform:"scale(0.7)"})),(0,k.SB)("enter",(0,k.oB)({transform:"none"})),(0,k.eR)("* => enter",(0,k.ru)([(0,k.jt)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,k.oB)({transform:"none",opacity:1})),(0,k.IO)("@*",(0,k.pV)(),{optional:!0})])),(0,k.eR)("* => void, * => exit",(0,k.ru)([(0,k.jt)("75ms cubic-bezier(0.4, 0.0, 0.2, 1)",(0,k.oB)({opacity:0})),(0,k.IO)("@*",(0,k.pV)(),{optional:!0})]))])};let ie=(()=>{class be extends e.en{constructor(Ee,j,Ve,Me,J,Ie,ut,Oe){super(),this._elementRef=Ee,this._focusTrapFactory=j,this._changeDetectorRef=Ve,this._config=J,this._interactivityChecker=Ie,this._ngZone=ut,this._focusMonitor=Oe,this._animationStateChanged=new f.vpe,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this.attachDomPortal=we=>(this._portalOutlet.hasAttached(),this._portalOutlet.attachDomPortal(we)),this._ariaLabelledBy=J.ariaLabelledBy||null,this._document=Me}_initializeWithAttachedContent(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,D.ht)())}attachComponentPortal(Ee){return this._portalOutlet.hasAttached(),this._portalOutlet.attachComponentPortal(Ee)}attachTemplatePortal(Ee){return this._portalOutlet.hasAttached(),this._portalOutlet.attachTemplatePortal(Ee)}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ee,j){this._interactivityChecker.isFocusable(Ee)||(Ee.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Ve=()=>{Ee.removeEventListener("blur",Ve),Ee.removeEventListener("mousedown",Ve),Ee.removeAttribute("tabindex")};Ee.addEventListener("blur",Ve),Ee.addEventListener("mousedown",Ve)})),Ee.focus(j)}_focusByCssSelector(Ee,j){let Ve=this._elementRef.nativeElement.querySelector(Ee);Ve&&this._forceFocus(Ve,j)}_trapFocus(){const Ee=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||Ee.focus();break;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(j=>{j||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const Ee=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&Ee&&"function"==typeof Ee.focus){const j=(0,D.ht)(),Ve=this._elementRef.nativeElement;(!j||j===this._document.body||j===Ve||Ve.contains(j))&&(this._focusMonitor?(this._focusMonitor.focusVia(Ee,this._closeInteractionType),this._closeInteractionType=null):Ee.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const Ee=this._elementRef.nativeElement,j=(0,D.ht)();return Ee===j||Ee.contains(j)}}return be.\u0275fac=function(Ee){return new(Ee||be)(f.Y36(f.SBq),f.Y36(E.qV),f.Y36(f.sBO),f.Y36(S.K0,8),f.Y36(ae),f.Y36(E.ic),f.Y36(f.R0b),f.Y36(E.tE))},be.\u0275dir=f.lG2({type:be,viewQuery:function(Ee,j){if(1&Ee&&f.Gf(e.Pl,7),2&Ee){let Ve;f.iGM(Ve=f.CRH())&&(j._portalOutlet=Ve.first)}},features:[f.qOj]}),be})(),re=(()=>{class be extends ie{constructor(){super(...arguments),this._state="enter"}_onAnimationDone({toState:Ee,totalTime:j}){"enter"===Ee?(this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:j})):"exit"===Ee&&(this._restoreFocus(),this._animationStateChanged.next({state:"closed",totalTime:j}))}_onAnimationStart({toState:Ee,totalTime:j}){"enter"===Ee?this._animationStateChanged.next({state:"opening",totalTime:j}):("exit"===Ee||"void"===Ee)&&this._animationStateChanged.next({state:"closing",totalTime:j})}_startExitAnimation(){this._state="exit",this._changeDetectorRef.markForCheck()}_initializeWithAttachedContent(){super._initializeWithAttachedContent(),this._config.delayFocusTrap||this._trapFocus()}}return be.\u0275fac=function(){let Pe;return function(j){return(Pe||(Pe=f.n5z(be)))(j||be)}}(),be.\u0275cmp=f.Xpm({type:be,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1","aria-modal","true",1,"mat-dialog-container"],hostVars:6,hostBindings:function(Ee,j){1&Ee&&f.WFA("@dialogContainer.start",function(Me){return j._onAnimationStart(Me)})("@dialogContainer.done",function(Me){return j._onAnimationDone(Me)}),2&Ee&&(f.Ikx("id",j._id),f.uIk("role",j._config.role)("aria-labelledby",j._config.ariaLabel?null:j._ariaLabelledBy)("aria-label",j._config.ariaLabel)("aria-describedby",j._config.ariaDescribedBy||null),f.d8E("@dialogContainer",j._state))},features:[f.qOj],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(Ee,j){1&Ee&&f.YNc(0,Y,0,0,"ng-template",0)},directives:[e.Pl],styles:[".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;box-sizing:content-box;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\n"],encapsulation:2,data:{animation:[ee.dialogContainer]}}),be})(),ge=0;class q{constructor(Pe,Ee,j="mat-dialog-"+ge++){this._overlayRef=Pe,this._containerInstance=Ee,this.id=j,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new C.x,this._afterClosed=new C.x,this._beforeClosed=new C.x,this._state=0,Ee._id=j,Ee._animationStateChanged.pipe((0,h.h)(Ve=>"opened"===Ve.state),(0,L.q)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),Ee._animationStateChanged.pipe((0,h.h)(Ve=>"closed"===Ve.state),(0,L.q)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),Pe.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._afterClosed.next(this._result),this._afterClosed.complete(),this.componentInstance=null,this._overlayRef.dispose()}),Pe.keydownEvents().pipe((0,h.h)(Ve=>Ve.keyCode===B.hY&&!this.disableClose&&!(0,B.Vb)(Ve))).subscribe(Ve=>{Ve.preventDefault(),_e(this,"keyboard")}),Pe.backdropClick().subscribe(()=>{this.disableClose?this._containerInstance._recaptureFocus():_e(this,"mouse")})}close(Pe){this._result=Pe,this._containerInstance._animationStateChanged.pipe((0,h.h)(Ee=>"closing"===Ee.state),(0,L.q)(1)).subscribe(Ee=>{this._beforeClosed.next(Pe),this._beforeClosed.complete(),this._overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),Ee.totalTime+100)}),this._state=1,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._afterClosed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._overlayRef.backdropClick()}keydownEvents(){return this._overlayRef.keydownEvents()}updatePosition(Pe){let Ee=this._getPositionStrategy();return Pe&&(Pe.left||Pe.right)?Pe.left?Ee.left(Pe.left):Ee.right(Pe.right):Ee.centerHorizontally(),Pe&&(Pe.top||Pe.bottom)?Pe.top?Ee.top(Pe.top):Ee.bottom(Pe.bottom):Ee.centerVertically(),this._overlayRef.updatePosition(),this}updateSize(Pe="",Ee=""){return this._overlayRef.updateSize({width:Pe,height:Ee}),this._overlayRef.updatePosition(),this}addPanelClass(Pe){return this._overlayRef.addPanelClass(Pe),this}removePanelClass(Pe){return this._overlayRef.removePanelClass(Pe),this}getState(){return this._state}_finishDialogClose(){this._state=2,this._overlayRef.dispose()}_getPositionStrategy(){return this._overlayRef.getConfig().positionStrategy}}function _e(be,Pe,Ee){return void 0!==be._containerInstance&&(be._containerInstance._closeInteractionType=Pe),be.close(Ee)}const x=new f.OlP("MatDialogData"),i=new f.OlP("mat-dialog-default-options"),r=new f.OlP("mat-dialog-scroll-strategy"),v={provide:r,deps:[t.aV],useFactory:function c(be){return()=>be.scrollStrategies.block()}};let T=(()=>{class be{constructor(Ee,j,Ve,Me,J,Ie,ut,Oe,we,ce){this._overlay=Ee,this._injector=j,this._defaultOptions=Ve,this._parentDialog=Me,this._overlayContainer=J,this._dialogRefConstructor=ut,this._dialogContainerType=Oe,this._dialogDataToken=we,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new C.x,this._afterOpenedAtThisLevel=new C.x,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,d.P)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,w.O)(void 0))),this._scrollStrategy=Ie}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ee=this._parentDialog;return Ee?Ee._getAfterAllClosed():this._afterAllClosedAtThisLevel}open(Ee,j){j=function y(be,Pe){return Object.assign(Object.assign({},Pe),be)}(j,this._defaultOptions||new ae),j.id&&this.getDialogById(j.id);const Ve=this._createOverlay(j),Me=this._attachDialogContainer(Ve,j),J=this._attachDialogContent(Ee,Me,Ve,j);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(J),J.afterClosed().subscribe(()=>this._removeOpenDialog(J)),this.afterOpened.next(J),Me._initializeWithAttachedContent(),J}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ee){return this.openDialogs.find(j=>j.id===Ee)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_createOverlay(Ee){const j=this._getOverlayConfig(Ee);return this._overlay.create(j)}_getOverlayConfig(Ee){const j=new t.X_({positionStrategy:this._overlay.position().global(),scrollStrategy:Ee.scrollStrategy||this._scrollStrategy(),panelClass:Ee.panelClass,hasBackdrop:Ee.hasBackdrop,direction:Ee.direction,minWidth:Ee.minWidth,minHeight:Ee.minHeight,maxWidth:Ee.maxWidth,maxHeight:Ee.maxHeight,disposeOnNavigation:Ee.closeOnNavigation});return Ee.backdropClass&&(j.backdropClass=Ee.backdropClass),j}_attachDialogContainer(Ee,j){const Me=f.zs3.create({parent:j&&j.viewContainerRef&&j.viewContainerRef.injector||this._injector,providers:[{provide:ae,useValue:j}]}),J=new e.C5(this._dialogContainerType,j.viewContainerRef,Me,j.componentFactoryResolver);return Ee.attach(J).instance}_attachDialogContent(Ee,j,Ve,Me){const J=new this._dialogRefConstructor(Ve,j,Me.id);if(Ee instanceof f.Rgc)j.attachTemplatePortal(new e.UE(Ee,null,{$implicit:Me.data,dialogRef:J}));else{const Ie=this._createInjector(Me,J,j),ut=j.attachComponentPortal(new e.C5(Ee,Me.viewContainerRef,Ie,Me.componentFactoryResolver));J.componentInstance=ut.instance}return J.updateSize(Me.width,Me.height).updatePosition(Me.position),J}_createInjector(Ee,j,Ve){const Me=Ee&&Ee.viewContainerRef&&Ee.viewContainerRef.injector,J=[{provide:this._dialogContainerType,useValue:Ve},{provide:this._dialogDataToken,useValue:Ee.data},{provide:this._dialogRefConstructor,useValue:j}];return Ee.direction&&(!Me||!Me.get(a.Is,null,f.XFs.Optional))&&J.push({provide:a.Is,useValue:{value:Ee.direction,change:(0,R.of)()}}),f.zs3.create({parent:Me||this._injector,providers:J})}_removeOpenDialog(Ee){const j=this.openDialogs.indexOf(Ee);j>-1&&(this.openDialogs.splice(j,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Ve,Me)=>{Ve?Me.setAttribute("aria-hidden",Ve):Me.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const Ee=this._overlayContainer.getContainerElement();if(Ee.parentElement){const j=Ee.parentElement.children;for(let Ve=j.length-1;Ve>-1;Ve--){let Me=j[Ve];Me!==Ee&&"SCRIPT"!==Me.nodeName&&"STYLE"!==Me.nodeName&&!Me.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Me,Me.getAttribute("aria-hidden")),Me.setAttribute("aria-hidden","true"))}}}_closeDialogs(Ee){let j=Ee.length;for(;j--;)Ee[j].close()}}return be.\u0275fac=function(Ee){f.$Z()},be.\u0275dir=f.lG2({type:be}),be})(),I=(()=>{class be extends T{constructor(Ee,j,Ve,Me,J,Ie,ut,Oe){super(Ee,j,Me,Ie,ut,J,q,re,x,Oe)}}return be.\u0275fac=function(Ee){return new(Ee||be)(f.LFG(t.aV),f.LFG(f.zs3),f.LFG(S.Ye,8),f.LFG(i,8),f.LFG(r),f.LFG(be,12),f.LFG(t.Xj),f.LFG(Z.Qb,8))},be.\u0275prov=f.Yz7({token:be,factory:be.\u0275fac}),be})(),_=(()=>{class be{constructor(Ee,j,Ve){this.dialogRef=Ee,this._elementRef=j,this._dialog=Ve,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function X(be,Pe){let Ee=be.nativeElement.parentElement;for(;Ee&&!Ee.classList.contains("mat-dialog-container");)Ee=Ee.parentElement;return Ee?Pe.find(j=>j.id===Ee.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ee){const j=Ee._matDialogClose||Ee._matDialogCloseResult;j&&(this.dialogResult=j.currentValue)}_onButtonClick(Ee){_e(this.dialogRef,0===Ee.screenX&&0===Ee.screenY?"keyboard":"mouse",this.dialogResult)}}return be.\u0275fac=function(Ee){return new(Ee||be)(f.Y36(q,8),f.Y36(f.SBq),f.Y36(I))},be.\u0275dir=f.lG2({type:be,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(Ee,j){1&Ee&&f.NdJ("click",function(Me){return j._onButtonClick(Me)}),2&Ee&&f.uIk("aria-label",j.ariaLabel||null)("type",j.type)},inputs:{ariaLabel:["aria-label","ariaLabel"],type:"type",dialogResult:["mat-dialog-close","dialogResult"],_matDialogClose:["matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],features:[f.TTD]}),be})(),he=(()=>{class be{}return be.\u0275fac=function(Ee){return new(Ee||be)},be.\u0275mod=f.oAB({type:be}),be.\u0275inj=f.cJS({providers:[I,v],imports:[[t.U8,e.eL,M.BQ],M.BQ]}),be})()},4834:(Be,K,p)=>{"use strict";p.d(K,{d:()=>M,t:()=>a});var t=p(5e3),e=p(3191),f=p(508);let M=(()=>{class C{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(R){this._vertical=(0,e.Ig)(R)}get inset(){return this._inset}set inset(R){this._inset=(0,e.Ig)(R)}}return C.\u0275fac=function(R){return new(R||C)},C.\u0275cmp=t.Xpm({type:C,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(R,h){2&R&&(t.uIk("aria-orientation",h.vertical?"vertical":"horizontal"),t.ekj("mat-divider-vertical",h.vertical)("mat-divider-horizontal",!h.vertical)("mat-divider-inset",h.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(R,h){},styles:[".mat-divider{display:block;margin:0;border-top-width:1px;border-top-style:solid}.mat-divider.mat-divider-vertical{border-top:0;border-right-width:1px;border-right-style:solid}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}\n"],encapsulation:2,changeDetection:0}),C})(),a=(()=>{class C{}return C.\u0275fac=function(R){return new(R||C)},C.\u0275mod=t.oAB({type:C}),C.\u0275inj=t.cJS({imports:[[f.BQ],f.BQ]}),C})()},1125:(Be,K,p)=>{"use strict";p.d(K,{pp:()=>Ee,To:()=>j,ib:()=>V,u4:()=>be,yz:()=>he,yK:()=>Pe});var t=p(5e3),e=p(3191),f=p(7579),M=p(727),a=p(449);let C=0;const d=new t.OlP("CdkAccordion");let R=(()=>{class Ve{constructor(){this._stateChanges=new f.x,this._openCloseAllActions=new f.x,this.id="cdk-accordion-"+C++,this._multi=!1}get multi(){return this._multi}set multi(J){this._multi=(0,e.Ig)(J)}openAll(){this._multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(J){this._stateChanges.next(J)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}}return Ve.\u0275fac=function(J){return new(J||Ve)},Ve.\u0275dir=t.lG2({type:Ve,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:"multi"},exportAs:["cdkAccordion"],features:[t._Bn([{provide:d,useExisting:Ve}]),t.TTD]}),Ve})(),h=0,L=(()=>{class Ve{constructor(J,Ie,ut){this.accordion=J,this._changeDetectorRef=Ie,this._expansionDispatcher=ut,this._openCloseAllSubscription=M.w0.EMPTY,this.closed=new t.vpe,this.opened=new t.vpe,this.destroyed=new t.vpe,this.expandedChange=new t.vpe,this.id="cdk-accordion-child-"+h++,this._expanded=!1,this._disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=ut.listen((Oe,we)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===we&&this.id!==Oe&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}get expanded(){return this._expanded}set expanded(J){J=(0,e.Ig)(J),this._expanded!==J&&(this._expanded=J,this.expandedChange.emit(J),J?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(J){this._disabled=(0,e.Ig)(J)}ngOnDestroy(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()}toggle(){this.disabled||(this.expanded=!this.expanded)}close(){this.disabled||(this.expanded=!1)}open(){this.disabled||(this.expanded=!0)}_subscribeToOpenCloseAllActions(){return this.accordion._openCloseAllActions.subscribe(J=>{this.disabled||(this.expanded=J)})}}return Ve.\u0275fac=function(J){return new(J||Ve)(t.Y36(d,12),t.Y36(t.sBO),t.Y36(a.A8))},Ve.\u0275dir=t.lG2({type:Ve,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:"expanded",disabled:"disabled"},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],features:[t._Bn([{provide:d,useValue:void 0}])]}),Ve})(),w=(()=>{class Ve{}return Ve.\u0275fac=function(J){return new(J||Ve)},Ve.\u0275mod=t.oAB({type:Ve}),Ve.\u0275inj=t.cJS({}),Ve})();var D=p(7429),S=p(9808),k=p(508),E=p(5664),B=p(1884),Z=p(8675),Y=p(9300),ae=p(5698),ee=p(1159),ue=p(6360),ie=p(515),re=p(6451),ge=p(1777);const q=["body"];function _e(Ve,Me){}const x=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],i=["mat-expansion-panel-header","*","mat-action-row"];function r(Ve,Me){if(1&Ve&&t._UZ(0,"span",2),2&Ve){const J=t.oxw();t.Q6J("@indicatorRotate",J._getExpandedState())}}const u=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],c=["mat-panel-title","mat-panel-description","*"],v=new t.OlP("MAT_ACCORDION"),T="225ms cubic-bezier(0.4,0.0,0.2,1)",I={indicatorRotate:(0,ge.X$)("indicatorRotate",[(0,ge.SB)("collapsed, void",(0,ge.oB)({transform:"rotate(0deg)"})),(0,ge.SB)("expanded",(0,ge.oB)({transform:"rotate(180deg)"})),(0,ge.eR)("expanded <=> collapsed, void => collapsed",(0,ge.jt)(T))]),bodyExpansion:(0,ge.X$)("bodyExpansion",[(0,ge.SB)("collapsed, void",(0,ge.oB)({height:"0px",visibility:"hidden"})),(0,ge.SB)("expanded",(0,ge.oB)({height:"*",visibility:"visible"})),(0,ge.eR)("expanded <=> collapsed, void => collapsed",(0,ge.jt)(T))])};let y=(()=>{class Ve{constructor(J){this._template=J}}return Ve.\u0275fac=function(J){return new(J||Ve)(t.Y36(t.Rgc))},Ve.\u0275dir=t.lG2({type:Ve,selectors:[["ng-template","matExpansionPanelContent",""]]}),Ve})(),n=0;const _=new t.OlP("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let V=(()=>{class Ve extends L{constructor(J,Ie,ut,Oe,we,ce,Te){super(J,Ie,ut),this._viewContainerRef=Oe,this._animationMode=ce,this._hideToggle=!1,this.afterExpand=new t.vpe,this.afterCollapse=new t.vpe,this._inputChanges=new f.x,this._headerId="mat-expansion-panel-header-"+n++,this._bodyAnimationDone=new f.x,this.accordion=J,this._document=we,this._bodyAnimationDone.pipe((0,B.x)((xe,W)=>xe.fromState===W.fromState&&xe.toState===W.toState)).subscribe(xe=>{"void"!==xe.fromState&&("expanded"===xe.toState?this.afterExpand.emit():"collapsed"===xe.toState&&this.afterCollapse.emit())}),Te&&(this.hideToggle=Te.hideToggle)}get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(J){this._hideToggle=(0,e.Ig)(J)}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(J){this._togglePosition=J}_hasSpacing(){return!!this.accordion&&this.expanded&&"default"===this.accordion.displayMode}_getExpandedState(){return this.expanded?"expanded":"collapsed"}toggle(){this.expanded=!this.expanded}close(){this.expanded=!1}open(){this.expanded=!0}ngAfterContentInit(){this._lazyContent&&this.opened.pipe((0,Z.O)(null),(0,Y.h)(()=>this.expanded&&!this._portal),(0,ae.q)(1)).subscribe(()=>{this._portal=new D.UE(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(J){this._inputChanges.next(J)}ngOnDestroy(){super.ngOnDestroy(),this._bodyAnimationDone.complete(),this._inputChanges.complete()}_containsFocus(){if(this._body){const J=this._document.activeElement,Ie=this._body.nativeElement;return J===Ie||Ie.contains(J)}return!1}}return Ve.\u0275fac=function(J){return new(J||Ve)(t.Y36(v,12),t.Y36(t.sBO),t.Y36(a.A8),t.Y36(t.s_b),t.Y36(S.K0),t.Y36(ue.Qb,8),t.Y36(_,8))},Ve.\u0275cmp=t.Xpm({type:Ve,selectors:[["mat-expansion-panel"]],contentQueries:function(J,Ie,ut){if(1&J&&t.Suo(ut,y,5),2&J){let Oe;t.iGM(Oe=t.CRH())&&(Ie._lazyContent=Oe.first)}},viewQuery:function(J,Ie){if(1&J&&t.Gf(q,5),2&J){let ut;t.iGM(ut=t.CRH())&&(Ie._body=ut.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(J,Ie){2&J&&t.ekj("mat-expanded",Ie.expanded)("_mat-animation-noopable","NoopAnimations"===Ie._animationMode)("mat-expansion-panel-spacing",Ie._hasSpacing())},inputs:{disabled:"disabled",expanded:"expanded",hideToggle:"hideToggle",togglePosition:"togglePosition"},outputs:{opened:"opened",closed:"closed",expandedChange:"expandedChange",afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],features:[t._Bn([{provide:v,useValue:void 0}]),t.qOj,t.TTD],ngContentSelectors:i,decls:7,vars:4,consts:[["role","region",1,"mat-expansion-panel-content",3,"id"],["body",""],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(J,Ie){1&J&&(t.F$t(x),t.Hsn(0),t.TgZ(1,"div",0,1),t.NdJ("@bodyExpansion.done",function(Oe){return Ie._bodyAnimationDone.next(Oe)}),t.TgZ(3,"div",2),t.Hsn(4,1),t.YNc(5,_e,0,0,"ng-template",3),t.qZA(),t.Hsn(6,2),t.qZA()),2&J&&(t.xp6(1),t.Q6J("@bodyExpansion",Ie._getExpandedState())("id",Ie.id),t.uIk("aria-labelledby",Ie._headerId),t.xp6(4),t.Q6J("cdkPortalOutlet",Ie._portal))},directives:[D.Pl],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;border-radius:4px;overflow:hidden;transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);position:relative}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:4px;border-top-left-radius:4px}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.cdk-high-contrast-active .mat-expansion-panel{outline:solid 1px}.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel,.mat-expansion-panel._mat-animation-noopable{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible}.mat-expansion-panel-content[style*="visibility: hidden"] *{visibility:hidden !important}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px}.mat-action-row .mat-button-base,.mat-action-row .mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-action-row .mat-button-base,[dir=rtl] .mat-action-row .mat-mdc-button-base{margin-left:0;margin-right:8px}\n'],encapsulation:2,data:{animation:[I.bodyExpansion]},changeDetection:0}),Ve})();class H{}const X=(0,k.sb)(H);let he=(()=>{class Ve extends X{constructor(J,Ie,ut,Oe,we,ce,Te){super(),this.panel=J,this._element=Ie,this._focusMonitor=ut,this._changeDetectorRef=Oe,this._animationMode=ce,this._parentChangeSubscription=M.w0.EMPTY;const xe=J.accordion?J.accordion._stateChanges.pipe((0,Y.h)(W=>!(!W.hideToggle&&!W.togglePosition))):ie.E;this.tabIndex=parseInt(Te||"")||0,this._parentChangeSubscription=(0,re.T)(J.opened,J.closed,xe,J._inputChanges.pipe((0,Y.h)(W=>!!(W.hideToggle||W.disabled||W.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),J.closed.pipe((0,Y.h)(()=>J._containsFocus())).subscribe(()=>ut.focusVia(Ie,"program")),we&&(this.expandedHeight=we.expandedHeight,this.collapsedHeight=we.collapsedHeight)}get disabled(){return this.panel.disabled}_toggle(){this.disabled||this.panel.toggle()}_isExpanded(){return this.panel.expanded}_getExpandedState(){return this.panel._getExpandedState()}_getPanelId(){return this.panel.id}_getTogglePosition(){return this.panel.togglePosition}_showToggle(){return!this.panel.hideToggle&&!this.panel.disabled}_getHeaderHeight(){const J=this._isExpanded();return J&&this.expandedHeight?this.expandedHeight:!J&&this.collapsedHeight?this.collapsedHeight:null}_keydown(J){switch(J.keyCode){case ee.L_:case ee.K5:(0,ee.Vb)(J)||(J.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(J))}}focus(J,Ie){J?this._focusMonitor.focusVia(this._element,J,Ie):this._element.nativeElement.focus(Ie)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(J=>{J&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}}return Ve.\u0275fac=function(J){return new(J||Ve)(t.Y36(V,1),t.Y36(t.SBq),t.Y36(E.tE),t.Y36(t.sBO),t.Y36(_,8),t.Y36(ue.Qb,8),t.$8M("tabindex"))},Ve.\u0275cmp=t.Xpm({type:Ve,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(J,Ie){1&J&&t.NdJ("click",function(){return Ie._toggle()})("keydown",function(Oe){return Ie._keydown(Oe)}),2&J&&(t.uIk("id",Ie.panel._headerId)("tabindex",Ie.tabIndex)("aria-controls",Ie._getPanelId())("aria-expanded",Ie._isExpanded())("aria-disabled",Ie.panel.disabled),t.Udp("height",Ie._getHeaderHeight()),t.ekj("mat-expanded",Ie._isExpanded())("mat-expansion-toggle-indicator-after","after"===Ie._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===Ie._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===Ie._animationMode))},inputs:{tabIndex:"tabIndex",expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight"},features:[t.qOj],ngContentSelectors:c,decls:5,vars:1,consts:[[1,"mat-content"],["class","mat-expansion-indicator",4,"ngIf"],[1,"mat-expansion-indicator"]],template:function(J,Ie){1&J&&(t.F$t(u),t.TgZ(0,"span",0),t.Hsn(1),t.Hsn(2,1),t.Hsn(3,2),t.qZA(),t.YNc(4,r,1,1,"span",1)),2&J&&(t.xp6(4),t.Q6J("ngIf",Ie._showToggle()))},directives:[S.O5],styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header._mat-animation-noopable{transition:none}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:none}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before{flex-direction:row-reverse}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 16px 0 0}[dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 0 0 16px}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;margin-right:16px;align-items:center}[dir=rtl] .mat-expansion-panel-header-title,[dir=rtl] .mat-expansion-panel-header-description{margin-right:0;margin-left:16px}.mat-expansion-panel-header-description{flex-grow:2}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle}.cdk-high-contrast-active .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true])::before,.cdk-high-contrast-active .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true])::before,.cdk-high-contrast-active .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true])::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;border:3px solid;border-radius:4px;content:""}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}\n'],encapsulation:2,data:{animation:[I.indicatorRotate]},changeDetection:0}),Ve})(),be=(()=>{class Ve{}return Ve.\u0275fac=function(J){return new(J||Ve)},Ve.\u0275dir=t.lG2({type:Ve,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"]}),Ve})(),Pe=(()=>{class Ve{}return Ve.\u0275fac=function(J){return new(J||Ve)},Ve.\u0275dir=t.lG2({type:Ve,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"]}),Ve})(),Ee=(()=>{class Ve extends R{constructor(){super(...arguments),this._ownHeaders=new t.n_E,this._hideToggle=!1,this.displayMode="default",this.togglePosition="after"}get hideToggle(){return this._hideToggle}set hideToggle(J){this._hideToggle=(0,e.Ig)(J)}ngAfterContentInit(){this._headers.changes.pipe((0,Z.O)(this._headers)).subscribe(J=>{this._ownHeaders.reset(J.filter(Ie=>Ie.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new E.Em(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(J){this._keyManager.onKeydown(J)}_handleHeaderFocus(J){this._keyManager.updateActiveItem(J)}ngOnDestroy(){super.ngOnDestroy(),this._ownHeaders.destroy()}}return Ve.\u0275fac=function(){let Me;return function(Ie){return(Me||(Me=t.n5z(Ve)))(Ie||Ve)}}(),Ve.\u0275dir=t.lG2({type:Ve,selectors:[["mat-accordion"]],contentQueries:function(J,Ie,ut){if(1&J&&t.Suo(ut,he,5),2&J){let Oe;t.iGM(Oe=t.CRH())&&(Ie._headers=Oe)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(J,Ie){2&J&&t.ekj("mat-accordion-multi",Ie.multi)},inputs:{multi:"multi",hideToggle:"hideToggle",displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],features:[t._Bn([{provide:v,useExisting:Ve}]),t.qOj]}),Ve})(),j=(()=>{class Ve{}return Ve.\u0275fac=function(J){return new(J||Ve)},Ve.\u0275mod=t.oAB({type:Ve}),Ve.\u0275inj=t.cJS({imports:[[S.ez,k.BQ,w,D.eL]]}),Ve})()},7322:(Be,K,p)=>{"use strict";p.d(K,{Eo:()=>n,G_:()=>ce,KE:()=>Te,R9:()=>Me,TO:()=>I,bx:()=>he,lN:()=>xe});var t=p(7144),e=p(9808),f=p(5e3),M=p(508),a=p(3191),C=p(7579),d=p(6451),R=p(4968),h=p(8675),L=p(2722),w=p(5698),D=p(1777),S=p(6360),k=p(226),E=p(925);const B=["connectionContainer"],Z=["inputContainer"],Y=["label"];function ae(W,te){1&W&&(f.ynx(0),f.TgZ(1,"div",14),f._UZ(2,"div",15)(3,"div",16)(4,"div",17),f.qZA(),f.TgZ(5,"div",18),f._UZ(6,"div",15)(7,"div",16)(8,"div",17),f.qZA(),f.BQk())}function ee(W,te){if(1&W){const Ce=f.EpF();f.TgZ(0,"div",19),f.NdJ("cdkObserveContent",function(){return f.CHM(Ce),f.oxw().updateOutlineGap()}),f.Hsn(1,1),f.qZA()}if(2&W){const Ce=f.oxw();f.Q6J("cdkObserveContentDisabled","outline"!=Ce.appearance)}}function ue(W,te){if(1&W&&(f.ynx(0),f.Hsn(1,2),f.TgZ(2,"span"),f._uU(3),f.qZA(),f.BQk()),2&W){const Ce=f.oxw(2);f.xp6(3),f.Oqu(Ce._control.placeholder)}}function ie(W,te){1&W&&f.Hsn(0,3,["*ngSwitchCase","true"])}function re(W,te){1&W&&(f.TgZ(0,"span",23),f._uU(1," *"),f.qZA())}function ge(W,te){if(1&W){const Ce=f.EpF();f.TgZ(0,"label",20,21),f.NdJ("cdkObserveContent",function(){return f.CHM(Ce),f.oxw().updateOutlineGap()}),f.YNc(2,ue,4,1,"ng-container",12),f.YNc(3,ie,1,0,"ng-content",12),f.YNc(4,re,2,0,"span",22),f.qZA()}if(2&W){const Ce=f.oxw();f.ekj("mat-empty",Ce._control.empty&&!Ce._shouldAlwaysFloat())("mat-form-field-empty",Ce._control.empty&&!Ce._shouldAlwaysFloat())("mat-accent","accent"==Ce.color)("mat-warn","warn"==Ce.color),f.Q6J("cdkObserveContentDisabled","outline"!=Ce.appearance)("id",Ce._labelId)("ngSwitch",Ce._hasLabel()),f.uIk("for",Ce._control.id)("aria-owns",Ce._control.id),f.xp6(2),f.Q6J("ngSwitchCase",!1),f.xp6(1),f.Q6J("ngSwitchCase",!0),f.xp6(1),f.Q6J("ngIf",!Ce.hideRequiredMarker&&Ce._control.required&&!Ce._control.disabled)}}function q(W,te){1&W&&(f.TgZ(0,"div",24),f.Hsn(1,4),f.qZA())}function _e(W,te){if(1&W&&(f.TgZ(0,"div",25),f._UZ(1,"span",26),f.qZA()),2&W){const Ce=f.oxw();f.xp6(1),f.ekj("mat-accent","accent"==Ce.color)("mat-warn","warn"==Ce.color)}}function x(W,te){if(1&W&&(f.TgZ(0,"div"),f.Hsn(1,5),f.qZA()),2&W){const Ce=f.oxw();f.Q6J("@transitionMessages",Ce._subscriptAnimationState)}}function i(W,te){if(1&W&&(f.TgZ(0,"div",30),f._uU(1),f.qZA()),2&W){const Ce=f.oxw(2);f.Q6J("id",Ce._hintLabelId),f.xp6(1),f.Oqu(Ce.hintLabel)}}function r(W,te){if(1&W&&(f.TgZ(0,"div",27),f.YNc(1,i,2,2,"div",28),f.Hsn(2,6),f._UZ(3,"div",29),f.Hsn(4,7),f.qZA()),2&W){const Ce=f.oxw();f.Q6J("@transitionMessages",Ce._subscriptAnimationState),f.xp6(1),f.Q6J("ngIf",Ce.hintLabel)}}const u=["*",[["","matPrefix",""]],[["mat-placeholder"]],[["mat-label"]],[["","matSuffix",""]],[["mat-error"]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],c=["*","[matPrefix]","mat-placeholder","mat-label","[matSuffix]","mat-error","mat-hint:not([align='end'])","mat-hint[align='end']"];let v=0;const T=new f.OlP("MatError");let I=(()=>{class W{constructor(Ce,fe){this.id="mat-error-"+v++,Ce||fe.nativeElement.setAttribute("aria-live","polite")}}return W.\u0275fac=function(Ce){return new(Ce||W)(f.$8M("aria-live"),f.Y36(f.SBq))},W.\u0275dir=f.lG2({type:W,selectors:[["mat-error"]],hostAttrs:["aria-atomic","true",1,"mat-error"],hostVars:1,hostBindings:function(Ce,fe){2&Ce&&f.uIk("id",fe.id)},inputs:{id:"id"},features:[f._Bn([{provide:T,useExisting:W}])]}),W})();const y={transitionMessages:(0,D.X$)("transitionMessages",[(0,D.SB)("enter",(0,D.oB)({opacity:1,transform:"translateY(0%)"})),(0,D.eR)("void => enter",[(0,D.oB)({opacity:0,transform:"translateY(-5px)"}),(0,D.jt)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let n=(()=>{class W{}return W.\u0275fac=function(Ce){return new(Ce||W)},W.\u0275dir=f.lG2({type:W}),W})(),H=0;const X=new f.OlP("MatHint");let he=(()=>{class W{constructor(){this.align="start",this.id="mat-hint-"+H++}}return W.\u0275fac=function(Ce){return new(Ce||W)},W.\u0275dir=f.lG2({type:W,selectors:[["mat-hint"]],hostAttrs:[1,"mat-hint"],hostVars:4,hostBindings:function(Ce,fe){2&Ce&&(f.uIk("id",fe.id)("align",null),f.ekj("mat-form-field-hint-end","end"===fe.align))},inputs:{align:"align",id:"id"},features:[f._Bn([{provide:X,useExisting:W}])]}),W})(),be=(()=>{class W{}return W.\u0275fac=function(Ce){return new(Ce||W)},W.\u0275dir=f.lG2({type:W,selectors:[["mat-label"]]}),W})(),Pe=(()=>{class W{}return W.\u0275fac=function(Ce){return new(Ce||W)},W.\u0275dir=f.lG2({type:W,selectors:[["mat-placeholder"]]}),W})();const Ee=new f.OlP("MatPrefix"),Ve=new f.OlP("MatSuffix");let Me=(()=>{class W{}return W.\u0275fac=function(Ce){return new(Ce||W)},W.\u0275dir=f.lG2({type:W,selectors:[["","matSuffix",""]],features:[f._Bn([{provide:Ve,useExisting:W}])]}),W})(),J=0;const Oe=(0,M.pj)(class{constructor(W){this._elementRef=W}},"primary"),we=new f.OlP("MAT_FORM_FIELD_DEFAULT_OPTIONS"),ce=new f.OlP("MatFormField");let Te=(()=>{class W extends Oe{constructor(Ce,fe,Q,ft,tt,Dt,di){super(Ce),this._changeDetectorRef=fe,this._dir=Q,this._defaults=ft,this._platform=tt,this._ngZone=Dt,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new C.x,this._showAlwaysAnimate=!1,this._subscriptAnimationState="",this._hintLabel="",this._hintLabelId="mat-hint-"+J++,this._labelId="mat-form-field-label-"+J++,this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled="NoopAnimations"!==di,this.appearance=ft&&ft.appearance?ft.appearance:"legacy",this._hideRequiredMarker=!(!ft||null==ft.hideRequiredMarker)&&ft.hideRequiredMarker}get appearance(){return this._appearance}set appearance(Ce){const fe=this._appearance;this._appearance=Ce||this._defaults&&this._defaults.appearance||"legacy","outline"===this._appearance&&fe!==Ce&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(Ce){this._hideRequiredMarker=(0,a.Ig)(Ce)}_shouldAlwaysFloat(){return"always"===this.floatLabel&&!this._showAlwaysAnimate}_canLabelFloat(){return"never"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(Ce){this._hintLabel=Ce,this._processHints()}get floatLabel(){return"legacy"!==this.appearance&&"never"===this._floatLabel?"auto":this._floatLabel}set floatLabel(Ce){Ce!==this._floatLabel&&(this._floatLabel=Ce||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(Ce){this._explicitFormFieldControl=Ce}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const Ce=this._control;Ce.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${Ce.controlType}`),Ce.stateChanges.pipe((0,h.O)(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),Ce.ngControl&&Ce.ngControl.valueChanges&&Ce.ngControl.valueChanges.pipe((0,L.R)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,L.R)(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),(0,d.T)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe((0,h.O)(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe((0,h.O)(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe((0,L.R)(this._destroyed)).subscribe(()=>{"function"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(Ce){const fe=this._control?this._control.ngControl:null;return fe&&fe[Ce]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!(!this._labelChildNonStatic&&!this._labelChildStatic)}_shouldLabelFloat(){return this._canLabelFloat()&&(this._control&&this._control.shouldLabelFloat||this._shouldAlwaysFloat())}_hideControlPlaceholder(){return"legacy"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||"legacy"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat()&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,(0,R.R)(this._label.nativeElement,"transitionend").pipe((0,w.q)(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel="always",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||"auto"}_syncDescribedByIds(){if(this._control){let Ce=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&Ce.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const fe=this._hintChildren?this._hintChildren.find(ft=>"start"===ft.align):null,Q=this._hintChildren?this._hintChildren.find(ft=>"end"===ft.align):null;fe?Ce.push(fe.id):this._hintLabel&&Ce.push(this._hintLabelId),Q&&Ce.push(Q.id)}else this._errorChildren&&Ce.push(...this._errorChildren.map(fe=>fe.id));this._control.setDescribedByIds(Ce)}}_validateControlChild(){}updateOutlineGap(){const Ce=this._label?this._label.nativeElement:null,fe=this._connectionContainerRef.nativeElement,Q=".mat-form-field-outline-start",ft=".mat-form-field-outline-gap";if("outline"!==this.appearance||!this._platform.isBrowser)return;if(!Ce||!Ce.children.length||!Ce.textContent.trim()){const Zt=fe.querySelectorAll(`${Q}, ${ft}`);for(let ui=0;ui0?.75*gt+10:0}for(let Zt=0;Zt{class W{}return W.\u0275fac=function(Ce){return new(Ce||W)},W.\u0275mod=f.oAB({type:W}),W.\u0275inj=f.cJS({imports:[[e.ez,M.BQ,t.Q8],M.BQ]}),W})()},3954:(Be,K,p)=>{"use strict";p.d(K,{DX:()=>D,Il:()=>q,N6:()=>_e});var t=p(5e3),e=p(508),f=p(3191),M=p(226);const a=["*"];class h{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const r=Math.max(...this.tracker);return r>1?this.rowCount+r-1:this.rowCount}update(r,u){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(r),this.tracker.fill(0,0,this.tracker.length),this.positions=u.map(c=>this._trackTile(c))}_trackTile(r){const u=this._findMatchingGap(r.colspan);return this._markTilePosition(u,r),this.columnIndex=u+r.colspan,new L(this.rowIndex,u)}_findMatchingGap(r){let u=-1,c=-1;do{this.columnIndex+r>this.tracker.length?(this._nextRow(),u=this.tracker.indexOf(0,this.columnIndex),c=this._findGapEndIndex(u)):(u=this.tracker.indexOf(0,this.columnIndex),-1!=u?(c=this._findGapEndIndex(u),this.columnIndex=u+1):(this._nextRow(),u=this.tracker.indexOf(0,this.columnIndex),c=this._findGapEndIndex(u)))}while(c-u{class i{constructor(u,c){this._element=u,this._gridList=c,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(u){this._rowspan=Math.round((0,f.su)(u))}get colspan(){return this._colspan}set colspan(u){this._colspan=Math.round((0,f.su)(u))}_setStyle(u,c){this._element.nativeElement.style[u]=c}}return i.\u0275fac=function(u){return new(u||i)(t.Y36(t.SBq),t.Y36(w,8))},i.\u0275cmp=t.Xpm({type:i,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(u,c){2&u&&t.uIk("rowspan",c.rowspan)("colspan",c.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:a,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(u,c){1&u&&(t.F$t(),t.TgZ(0,"div",0),t.Hsn(1),t.qZA())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0}),i})();const Z=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Y{constructor(){this._rows=0,this._rowspan=0}init(r,u,c,v){this._gutterSize=re(r),this._rows=u.rowCount,this._rowspan=u.rowspan,this._cols=c,this._direction=v}getBaseTileSize(r,u){return`(${r}% - (${this._gutterSize} * ${u}))`}getTilePosition(r,u){return 0===u?"0":ie(`(${r} + ${this._gutterSize}) * ${u}`)}getTileSize(r,u){return`(${r} * ${u}) + (${u-1} * ${this._gutterSize})`}setStyle(r,u,c){let v=100/this._cols,T=(this._cols-1)/this._cols;this.setColStyles(r,c,v,T),this.setRowStyles(r,u,v,T)}setColStyles(r,u,c,v){let T=this.getBaseTileSize(c,v);r._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(T,u)),r._setStyle("width",ie(this.getTileSize(T,r.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(r){return`${this._rowspan} * ${this.getTileSize(r,1)}`}getComputedHeight(){return null}}class ae extends Y{constructor(r){super(),this.fixedRowHeight=r}init(r,u,c,v){super.init(r,u,c,v),this.fixedRowHeight=re(this.fixedRowHeight),Z.test(this.fixedRowHeight)}setRowStyles(r,u){r._setStyle("top",this.getTilePosition(this.fixedRowHeight,u)),r._setStyle("height",ie(this.getTileSize(this.fixedRowHeight,r.rowspan)))}getComputedHeight(){return["height",ie(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(r){r._setListStyle(["height",null]),r._tiles&&r._tiles.forEach(u=>{u._setStyle("top",null),u._setStyle("height",null)})}}class ee extends Y{constructor(r){super(),this._parseRatio(r)}setRowStyles(r,u,c,v){this.baseTileHeight=this.getBaseTileSize(c/this.rowHeightRatio,v),r._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,u)),r._setStyle("paddingTop",ie(this.getTileSize(this.baseTileHeight,r.rowspan)))}getComputedHeight(){return["paddingBottom",ie(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(r){r._setListStyle(["paddingBottom",null]),r._tiles.forEach(u=>{u._setStyle("marginTop",null),u._setStyle("paddingTop",null)})}_parseRatio(r){const u=r.split(":");this.rowHeightRatio=parseFloat(u[0])/parseFloat(u[1])}}class ue extends Y{setRowStyles(r,u){let T=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);r._setStyle("top",this.getTilePosition(T,u)),r._setStyle("height",ie(this.getTileSize(T,r.rowspan)))}reset(r){r._tiles&&r._tiles.forEach(u=>{u._setStyle("top",null),u._setStyle("height",null)})}}function ie(i){return`calc(${i})`}function re(i){return i.match(/([A-Za-z%]+)$/)?i:`${i}px`}let q=(()=>{class i{constructor(u,c){this._element=u,this._dir=c,this._gutter="1px"}get cols(){return this._cols}set cols(u){this._cols=Math.max(1,Math.round((0,f.su)(u)))}get gutterSize(){return this._gutter}set gutterSize(u){this._gutter=`${null==u?"":u}`}get rowHeight(){return this._rowHeight}set rowHeight(u){const c=`${null==u?"":u}`;c!==this._rowHeight&&(this._rowHeight=c,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(u){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===u?new ue:u&&u.indexOf(":")>-1?new ee(u):new ae(u)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new h);const u=this._tileCoordinator,c=this._tiles.filter(T=>!T._gridList||T._gridList===this),v=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,c),this._tileStyler.init(this.gutterSize,u,this.cols,v),c.forEach((T,I)=>{const y=u.positions[I];this._tileStyler.setStyle(T,y.row,y.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(u){u&&(this._element.nativeElement.style[u[0]]=u[1])}}return i.\u0275fac=function(u){return new(u||i)(t.Y36(t.SBq),t.Y36(M.Is,8))},i.\u0275cmp=t.Xpm({type:i,selectors:[["mat-grid-list"]],contentQueries:function(u,c,v){if(1&u&&t.Suo(v,D,5),2&u){let T;t.iGM(T=t.CRH())&&(c._tiles=T)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(u,c){2&u&&t.uIk("cols",c.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[t._Bn([{provide:w,useExisting:i}])],ngContentSelectors:a,decls:2,vars:0,template:function(u,c){1&u&&(t.F$t(),t.TgZ(0,"div"),t.Hsn(1),t.qZA())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0}),i})(),_e=(()=>{class i{}return i.\u0275fac=function(u){return new(u||i)},i.\u0275mod=t.oAB({type:i}),i.\u0275inj=t.cJS({imports:[[e.uc,e.BQ],e.uc,e.BQ]}),i})()},5245:(Be,K,p)=>{"use strict";p.d(K,{Hw:()=>V,Ps:()=>N});var t=p(5e3),e=p(508),f=p(3191),M=p(9808),a=p(9646),C=p(2843),d=p(4128),R=p(727),h=p(8505),L=p(4004),w=p(262),D=p(8746),S=p(3099),k=p(5698),E=p(8138),B=p(2313);const Z=["*"];let Y;function ee(H){var X;return(null===(X=function ae(){if(void 0===Y&&(Y=null,"undefined"!=typeof window)){const H=window;void 0!==H.trustedTypes&&(Y=H.trustedTypes.createPolicy("angular#components",{createHTML:X=>X}))}return Y}())||void 0===X?void 0:X.createHTML(H))||H}function ue(H){return Error(`Unable to find icon with the name "${H}"`)}function re(H){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${H}".`)}function ge(H){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${H}".`)}class q{constructor(X,he,be){this.url=X,this.svgText=he,this.options=be}}let _e=(()=>{class H{constructor(he,be,Pe,Ee){this._httpClient=he,this._sanitizer=be,this._errorHandler=Ee,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass="material-icons",this._document=Pe}addSvgIcon(he,be,Pe){return this.addSvgIconInNamespace("",he,be,Pe)}addSvgIconLiteral(he,be,Pe){return this.addSvgIconLiteralInNamespace("",he,be,Pe)}addSvgIconInNamespace(he,be,Pe,Ee){return this._addSvgIconConfig(he,be,new q(Pe,null,Ee))}addSvgIconResolver(he){return this._resolvers.push(he),this}addSvgIconLiteralInNamespace(he,be,Pe,Ee){const j=this._sanitizer.sanitize(t.q3G.HTML,Pe);if(!j)throw ge(Pe);const Ve=ee(j);return this._addSvgIconConfig(he,be,new q("",Ve,Ee))}addSvgIconSet(he,be){return this.addSvgIconSetInNamespace("",he,be)}addSvgIconSetLiteral(he,be){return this.addSvgIconSetLiteralInNamespace("",he,be)}addSvgIconSetInNamespace(he,be,Pe){return this._addSvgIconSetConfig(he,new q(be,null,Pe))}addSvgIconSetLiteralInNamespace(he,be,Pe){const Ee=this._sanitizer.sanitize(t.q3G.HTML,be);if(!Ee)throw ge(be);const j=ee(Ee);return this._addSvgIconSetConfig(he,new q("",j,Pe))}registerFontClassAlias(he,be=he){return this._fontCssClassesByAlias.set(he,be),this}classNameForFontAlias(he){return this._fontCssClassesByAlias.get(he)||he}setDefaultFontSetClass(he){return this._defaultFontSetClass=he,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(he){const be=this._sanitizer.sanitize(t.q3G.RESOURCE_URL,he);if(!be)throw re(he);const Pe=this._cachedIconsByUrl.get(be);return Pe?(0,a.of)(r(Pe)):this._loadSvgIconFromConfig(new q(he,null)).pipe((0,h.b)(Ee=>this._cachedIconsByUrl.set(be,Ee)),(0,L.U)(Ee=>r(Ee)))}getNamedSvgIcon(he,be=""){const Pe=u(be,he);let Ee=this._svgIconConfigs.get(Pe);if(Ee)return this._getSvgFromConfig(Ee);if(Ee=this._getIconConfigFromResolvers(be,he),Ee)return this._svgIconConfigs.set(Pe,Ee),this._getSvgFromConfig(Ee);const j=this._iconSetConfigs.get(be);return j?this._getSvgFromIconSetConfigs(he,j):(0,C._)(ue(Pe))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(he){return he.svgText?(0,a.of)(r(this._svgElementFromConfig(he))):this._loadSvgIconFromConfig(he).pipe((0,L.U)(be=>r(be)))}_getSvgFromIconSetConfigs(he,be){const Pe=this._extractIconWithNameFromAnySet(he,be);if(Pe)return(0,a.of)(Pe);const Ee=be.filter(j=>!j.svgText).map(j=>this._loadSvgIconSetFromConfig(j).pipe((0,w.K)(Ve=>{const J=`Loading icon set URL: ${this._sanitizer.sanitize(t.q3G.RESOURCE_URL,j.url)} failed: ${Ve.message}`;return this._errorHandler.handleError(new Error(J)),(0,a.of)(null)})));return(0,d.D)(Ee).pipe((0,L.U)(()=>{const j=this._extractIconWithNameFromAnySet(he,be);if(!j)throw ue(he);return j}))}_extractIconWithNameFromAnySet(he,be){for(let Pe=be.length-1;Pe>=0;Pe--){const Ee=be[Pe];if(Ee.svgText&&Ee.svgText.toString().indexOf(he)>-1){const j=this._svgElementFromConfig(Ee),Ve=this._extractSvgIconFromSet(j,he,Ee.options);if(Ve)return Ve}}return null}_loadSvgIconFromConfig(he){return this._fetchIcon(he).pipe((0,h.b)(be=>he.svgText=be),(0,L.U)(()=>this._svgElementFromConfig(he)))}_loadSvgIconSetFromConfig(he){return he.svgText?(0,a.of)(null):this._fetchIcon(he).pipe((0,h.b)(be=>he.svgText=be))}_extractSvgIconFromSet(he,be,Pe){const Ee=he.querySelector(`[id="${be}"]`);if(!Ee)return null;const j=Ee.cloneNode(!0);if(j.removeAttribute("id"),"svg"===j.nodeName.toLowerCase())return this._setSvgAttributes(j,Pe);if("symbol"===j.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(j),Pe);const Ve=this._svgElementFromString(ee(""));return Ve.appendChild(j),this._setSvgAttributes(Ve,Pe)}_svgElementFromString(he){const be=this._document.createElement("DIV");be.innerHTML=he;const Pe=be.querySelector("svg");if(!Pe)throw Error(" tag not found");return Pe}_toSvgElement(he){const be=this._svgElementFromString(ee("")),Pe=he.attributes;for(let Ee=0;Eeee(Ie)),(0,D.x)(()=>this._inProgressUrlFetches.delete(Ve)),(0,S.B)());return this._inProgressUrlFetches.set(Ve,J),J}_addSvgIconConfig(he,be,Pe){return this._svgIconConfigs.set(u(he,be),Pe),this}_addSvgIconSetConfig(he,be){const Pe=this._iconSetConfigs.get(he);return Pe?Pe.push(be):this._iconSetConfigs.set(he,[be]),this}_svgElementFromConfig(he){if(!he.svgElement){const be=this._svgElementFromString(he.svgText);this._setSvgAttributes(be,he.options),he.svgElement=be}return he.svgElement}_getIconConfigFromResolvers(he,be){for(let Pe=0;PeX?X.pathname+X.search:""}}}),y=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],n=y.map(H=>`[${H}]`).join(", "),_=/^url\(['"]?#(.*?)['"]?\)$/;let V=(()=>{class H extends v{constructor(he,be,Pe,Ee,j){super(he),this._iconRegistry=be,this._location=Ee,this._errorHandler=j,this._inline=!1,this._currentIconFetch=R.w0.EMPTY,Pe||he.nativeElement.setAttribute("aria-hidden","true")}get inline(){return this._inline}set inline(he){this._inline=(0,f.Ig)(he)}get svgIcon(){return this._svgIcon}set svgIcon(he){he!==this._svgIcon&&(he?this._updateSvgIcon(he):this._svgIcon&&this._clearSvgElement(),this._svgIcon=he)}get fontSet(){return this._fontSet}set fontSet(he){const be=this._cleanupFontValue(he);be!==this._fontSet&&(this._fontSet=be,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(he){const be=this._cleanupFontValue(he);be!==this._fontIcon&&(this._fontIcon=be,this._updateFontIconClasses())}_splitIconName(he){if(!he)return["",""];const be=he.split(":");switch(be.length){case 1:return["",be[0]];case 2:return be;default:throw Error(`Invalid icon name: "${he}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const he=this._elementsWithExternalReferences;if(he&&he.size){const be=this._location.getPathname();be!==this._previousPath&&(this._previousPath=be,this._prependPathToReferences(be))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(he){this._clearSvgElement();const be=this._location.getPathname();this._previousPath=be,this._cacheChildrenWithExternalReferences(he),this._prependPathToReferences(be),this._elementRef.nativeElement.appendChild(he)}_clearSvgElement(){const he=this._elementRef.nativeElement;let be=he.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();be--;){const Pe=he.childNodes[be];(1!==Pe.nodeType||"svg"===Pe.nodeName.toLowerCase())&&Pe.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const he=this._elementRef.nativeElement,be=this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet):this._iconRegistry.getDefaultFontSetClass();be!=this._previousFontSetClass&&(this._previousFontSetClass&&he.classList.remove(this._previousFontSetClass),be&&he.classList.add(be),this._previousFontSetClass=be),this.fontIcon!=this._previousFontIconClass&&(this._previousFontIconClass&&he.classList.remove(this._previousFontIconClass),this.fontIcon&&he.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(he){return"string"==typeof he?he.trim().split(" ")[0]:he}_prependPathToReferences(he){const be=this._elementsWithExternalReferences;be&&be.forEach((Pe,Ee)=>{Pe.forEach(j=>{Ee.setAttribute(j.name,`url('${he}#${j.value}')`)})})}_cacheChildrenWithExternalReferences(he){const be=he.querySelectorAll(n),Pe=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let Ee=0;Ee{const Ve=be[Ee],Me=Ve.getAttribute(j),J=Me?Me.match(_):null;if(J){let Ie=Pe.get(Ve);Ie||(Ie=[],Pe.set(Ve,Ie)),Ie.push({name:j,value:J[1]})}})}_updateSvgIcon(he){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),he){const[be,Pe]=this._splitIconName(he);be&&(this._svgNamespace=be),Pe&&(this._svgName=Pe),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(Pe,be).pipe((0,k.q)(1)).subscribe(Ee=>this._setSvgElement(Ee),Ee=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${be}:${Pe}! ${Ee.message}`))})}}}return H.\u0275fac=function(he){return new(he||H)(t.Y36(t.SBq),t.Y36(_e),t.$8M("aria-hidden"),t.Y36(T),t.Y36(t.qLn))},H.\u0275cmp=t.Xpm({type:H,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:7,hostBindings:function(he,be){2&he&&(t.uIk("data-mat-icon-type",be._usingFontIcon()?"font":"svg")("data-mat-icon-name",be._svgName||be.fontIcon)("data-mat-icon-namespace",be._svgNamespace||be.fontSet),t.ekj("mat-icon-inline",be.inline)("mat-icon-no-color","primary"!==be.color&&"accent"!==be.color&&"warn"!==be.color))},inputs:{color:"color",inline:"inline",svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],features:[t.qOj],ngContentSelectors:Z,decls:1,vars:0,template:function(he,be){1&he&&(t.F$t(),t.Hsn(0))},styles:[".mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\n"],encapsulation:2,changeDetection:0}),H})(),N=(()=>{class H{}return H.\u0275fac=function(he){return new(he||H)},H.\u0275mod=t.oAB({type:H}),H.\u0275inj=t.cJS({imports:[[e.BQ],e.BQ]}),H})()},7531:(Be,K,p)=>{"use strict";p.d(K,{Jk:()=>E,Nt:()=>ae,c:()=>ee});var t=p(3191),e=p(925),f=p(5e3),M=p(3075),a=p(508),C=p(7322),d=p(7579),R=p(515);const h=(0,e.i$)({passive:!0});let L=(()=>{class ue{constructor(re,ge){this._platform=re,this._ngZone=ge,this._monitoredElements=new Map}monitor(re){if(!this._platform.isBrowser)return R.E;const ge=(0,t.fI)(re),q=this._monitoredElements.get(ge);if(q)return q.subject;const _e=new d.x,x="cdk-text-field-autofilled",i=r=>{"cdk-text-field-autofill-start"!==r.animationName||ge.classList.contains(x)?"cdk-text-field-autofill-end"===r.animationName&&ge.classList.contains(x)&&(ge.classList.remove(x),this._ngZone.run(()=>_e.next({target:r.target,isAutofilled:!1}))):(ge.classList.add(x),this._ngZone.run(()=>_e.next({target:r.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{ge.addEventListener("animationstart",i,h),ge.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(ge,{subject:_e,unlisten:()=>{ge.removeEventListener("animationstart",i,h)}}),_e}stopMonitoring(re){const ge=(0,t.fI)(re),q=this._monitoredElements.get(ge);q&&(q.unlisten(),q.subject.complete(),ge.classList.remove("cdk-text-field-autofill-monitored"),ge.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(ge))}ngOnDestroy(){this._monitoredElements.forEach((re,ge)=>this.stopMonitoring(ge))}}return ue.\u0275fac=function(re){return new(re||ue)(f.LFG(e.t4),f.LFG(f.R0b))},ue.\u0275prov=f.Yz7({token:ue,factory:ue.\u0275fac,providedIn:"root"}),ue})(),S=(()=>{class ue{}return ue.\u0275fac=function(re){return new(re||ue)},ue.\u0275mod=f.oAB({type:ue}),ue.\u0275inj=f.cJS({}),ue})();const E=new f.OlP("MAT_INPUT_VALUE_ACCESSOR"),B=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let Z=0;const Y=(0,a.FD)(class{constructor(ue,ie,re,ge){this._defaultErrorStateMatcher=ue,this._parentForm=ie,this._parentFormGroup=re,this.ngControl=ge}});let ae=(()=>{class ue extends Y{constructor(re,ge,q,_e,x,i,r,u,c,v){super(i,_e,x,q),this._elementRef=re,this._platform=ge,this._autofillMonitor=u,this._formField=v,this._uid="mat-input-"+Z++,this.focused=!1,this.stateChanges=new d.x,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(y=>(0,e.qK)().has(y)),this._iOSKeyupListener=y=>{const n=y.target;!n.value&&0===n.selectionStart&&0===n.selectionEnd&&(n.setSelectionRange(1,1),n.setSelectionRange(0,0))};const T=this._elementRef.nativeElement,I=T.nodeName.toLowerCase();this._inputValueAccessor=r||T,this._previousNativeValue=this.value,this.id=this.id,ge.IOS&&c.runOutsideAngular(()=>{re.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===I,this._isTextarea="textarea"===I,this._isInFormField=!!v,this._isNativeSelect&&(this.controlType=T.multiple?"mat-native-select-multiple":"mat-native-select")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(re){this._disabled=(0,t.Ig)(re),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(re){this._id=re||this._uid}get required(){var re,ge,q,_e;return null!==(_e=null!==(re=this._required)&&void 0!==re?re:null===(q=null===(ge=this.ngControl)||void 0===ge?void 0:ge.control)||void 0===q?void 0:q.hasValidator(M.kI.required))&&void 0!==_e&&_e}set required(re){this._required=(0,t.Ig)(re)}get type(){return this._type}set type(re){this._type=re||"text",this._validateType(),!this._isTextarea&&(0,e.qK)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(re){re!==this.value&&(this._inputValueAccessor.value=re,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(re){this._readonly=(0,t.Ig)(re)}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(re=>{this.autofilled=re.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(re){this._elementRef.nativeElement.focus(re)}_focusChanged(re){re!==this.focused&&(this.focused=re,this.stateChanges.next())}_onInput(){}_dirtyCheckPlaceholder(){var re,ge;const q=(null===(ge=null===(re=this._formField)||void 0===re?void 0:re._hideControlPlaceholder)||void 0===ge?void 0:ge.call(re))?null:this.placeholder;if(q!==this._previousPlaceholder){const _e=this._elementRef.nativeElement;this._previousPlaceholder=q,q?_e.setAttribute("placeholder",q):_e.removeAttribute("placeholder")}}_dirtyCheckNativeValue(){const re=this._elementRef.nativeElement.value;this._previousNativeValue!==re&&(this._previousNativeValue=re,this.stateChanges.next())}_validateType(){B.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let re=this._elementRef.nativeElement.validity;return re&&re.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const re=this._elementRef.nativeElement,ge=re.options[0];return this.focused||re.multiple||!this.empty||!!(re.selectedIndex>-1&&ge&&ge.label)}return this.focused||!this.empty}setDescribedByIds(re){re.length?this._elementRef.nativeElement.setAttribute("aria-describedby",re.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const re=this._elementRef.nativeElement;return this._isNativeSelect&&(re.multiple||re.size>1)}}return ue.\u0275fac=function(re){return new(re||ue)(f.Y36(f.SBq),f.Y36(e.t4),f.Y36(M.a5,10),f.Y36(M.F,8),f.Y36(M.sg,8),f.Y36(a.rD),f.Y36(E,10),f.Y36(L),f.Y36(f.R0b),f.Y36(C.G_,8))},ue.\u0275dir=f.lG2({type:ue,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-input-element","mat-form-field-autofill-control"],hostVars:12,hostBindings:function(re,ge){1&re&&f.NdJ("focus",function(){return ge._focusChanged(!0)})("blur",function(){return ge._focusChanged(!1)})("input",function(){return ge._onInput()}),2&re&&(f.Ikx("disabled",ge.disabled)("required",ge.required),f.uIk("id",ge.id)("data-placeholder",ge.placeholder)("name",ge.name||null)("readonly",ge.readonly&&!ge._isNativeSelect||null)("aria-invalid",ge.empty&&ge.required?null:ge.errorState)("aria-required",ge.required),f.ekj("mat-input-server",ge._isServer)("mat-native-select-inline",ge._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],features:[f._Bn([{provide:C.Eo,useExisting:ue}]),f.qOj,f.TTD]}),ue})(),ee=(()=>{class ue{}return ue.\u0275fac=function(re){return new(re||ue)},ue.\u0275mod=f.oAB({type:ue}),ue.\u0275inj=f.cJS({providers:[a.rD],imports:[[S,C.lN,a.BQ],S,C.lN]}),ue})()},4623:(Be,K,p)=>{"use strict";p.d(K,{Tg:()=>u,i$:()=>_e,ie:()=>_});var t=p(9808),e=p(5e3),f=p(508),M=p(3191),a=p(7579),C=p(2722),D=(p(8675),p(5664),p(449),p(1159),p(3075),p(4834));const S=["*"],E=[[["","mat-list-avatar",""],["","mat-list-icon",""],["","matListAvatar",""],["","matListIcon",""]],[["","mat-line",""],["","matLine",""]],"*"],B=["[mat-list-avatar], [mat-list-icon], [matListAvatar], [matListIcon]","[mat-line], [matLine]","*"],ue=(0,f.Id)((0,f.Kr)(class{})),ie=(0,f.Kr)(class{}),re=new e.OlP("MatList"),ge=new e.OlP("MatNavList");let _e=(()=>{class V extends ue{constructor(H){super(),this._elementRef=H,this._stateChanges=new a.x,"action-list"===this._getListType()&&H.nativeElement.classList.add("mat-action-list")}_getListType(){const H=this._elementRef.nativeElement.nodeName.toLowerCase();return"mat-list"===H?"list":"mat-action-list"===H?"action-list":null}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}}return V.\u0275fac=function(H){return new(H||V)(e.Y36(e.SBq))},V.\u0275cmp=e.Xpm({type:V,selectors:[["mat-list"],["mat-action-list"]],hostAttrs:[1,"mat-list","mat-list-base"],inputs:{disableRipple:"disableRipple",disabled:"disabled"},exportAs:["matList"],features:[e._Bn([{provide:re,useExisting:V}]),e.qOj,e.TTD],ngContentSelectors:S,decls:1,vars:0,template:function(H,X){1&H&&(e.F$t(),e.Hsn(0))},styles:['.mat-subheader{display:flex;box-sizing:border-box;padding:16px;align-items:center}.mat-list-base .mat-subheader{margin:0}button.mat-list-item,button.mat-list-option{padding:0;width:100%;background:none;color:inherit;border:none;outline:inherit;-webkit-tap-highlight-color:transparent;text-align:left}[dir=rtl] button.mat-list-item,[dir=rtl] button.mat-list-option{text-align:right}button.mat-list-item::-moz-focus-inner,button.mat-list-option::-moz-focus-inner{border:0}.mat-list-base{padding-top:8px;display:block;-webkit-tap-highlight-color:transparent}.mat-list-base .mat-subheader{height:48px;line-height:16px}.mat-list-base .mat-subheader:first-child{margin-top:-8px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{display:block;height:48px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base .mat-list-item .mat-list-item-content,.mat-list-base .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base .mat-list-item .mat-list-item-ripple,.mat-list-base .mat-list-option .mat-list-item-ripple{display:block;top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar,.mat-list-base .mat-list-option.mat-list-item-with-avatar{height:56px}.mat-list-base .mat-list-item.mat-2-line,.mat-list-base .mat-list-option.mat-2-line{height:72px}.mat-list-base .mat-list-item.mat-3-line,.mat-list-base .mat-list-option.mat-3-line{height:88px}.mat-list-base .mat-list-item.mat-multi-line,.mat-list-base .mat-list-option.mat-multi-line{height:auto}.mat-list-base .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base .mat-list-item .mat-list-text,.mat-list-base .mat-list-option .mat-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base .mat-list-item .mat-list-text>*,.mat-list-base .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-list-base .mat-list-item .mat-list-text:empty,.mat-list-base .mat-list-option .mat-list-text:empty{display:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base .mat-list-item .mat-list-avatar,.mat-list-base .mat-list-option .mat-list-avatar{flex-shrink:0;width:40px;height:40px;border-radius:50%;object-fit:cover}.mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:72px;width:calc(100% - 72px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:72px}.mat-list-base .mat-list-item .mat-list-icon,.mat-list-base .mat-list-option .mat-list-icon{flex-shrink:0;width:24px;height:24px;font-size:24px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:64px;width:calc(100% - 64px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:64px}.mat-list-base .mat-list-item .mat-divider,.mat-list-base .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base .mat-list-item .mat-divider,[dir=rtl] .mat-list-base .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-list-base[dense]{padding-top:4px;display:block}.mat-list-base[dense] .mat-subheader{height:40px;line-height:8px}.mat-list-base[dense] .mat-subheader:first-child{margin-top:-4px}.mat-list-base[dense] .mat-list-item,.mat-list-base[dense] .mat-list-option{display:block;height:40px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-item-content,.mat-list-base[dense] .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base[dense] .mat-list-item .mat-list-item-content-reverse,.mat-list-base[dense] .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base[dense] .mat-list-item .mat-list-item-ripple,.mat-list-base[dense] .mat-list-option .mat-list-item-ripple{display:block;top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar{height:48px}.mat-list-base[dense] .mat-list-item.mat-2-line,.mat-list-base[dense] .mat-list-option.mat-2-line{height:60px}.mat-list-base[dense] .mat-list-item.mat-3-line,.mat-list-base[dense] .mat-list-option.mat-3-line{height:76px}.mat-list-base[dense] .mat-list-item.mat-multi-line,.mat-list-base[dense] .mat-list-option.mat-multi-line{height:auto}.mat-list-base[dense] .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base[dense] .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base[dense] .mat-list-item .mat-list-text,.mat-list-base[dense] .mat-list-option .mat-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-text>*,.mat-list-base[dense] .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-list-base[dense] .mat-list-item .mat-list-text:empty,.mat-list-base[dense] .mat-list-option .mat-list-text:empty{display:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base[dense] .mat-list-item .mat-list-avatar,.mat-list-base[dense] .mat-list-option .mat-list-avatar{flex-shrink:0;width:36px;height:36px;border-radius:50%;object-fit:cover}.mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:68px;width:calc(100% - 68px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:68px}.mat-list-base[dense] .mat-list-item .mat-list-icon,.mat-list-base[dense] .mat-list-option .mat-list-icon{flex-shrink:0;width:20px;height:20px;font-size:20px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:60px;width:calc(100% - 60px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:60px}.mat-list-base[dense] .mat-list-item .mat-divider,.mat-list-base[dense] .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-divider,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base[dense] .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-nav-list a{text-decoration:none;color:inherit}.mat-nav-list .mat-list-item{cursor:pointer;outline:none}mat-action-list .mat-list-item{cursor:pointer;outline:inherit}.mat-list-option:not(.mat-list-item-disabled){cursor:pointer;outline:none}.mat-list-item-disabled{pointer-events:none}.cdk-high-contrast-active .mat-list-item-disabled{opacity:.5}.cdk-high-contrast-active :host .mat-list-item-disabled{opacity:.5}.cdk-high-contrast-active .mat-selection-list:focus{outline-style:dotted}.cdk-high-contrast-active .mat-list-option:hover,.cdk-high-contrast-active .mat-list-option:focus,.cdk-high-contrast-active .mat-nav-list .mat-list-item:hover,.cdk-high-contrast-active .mat-nav-list .mat-list-item:focus,.cdk-high-contrast-active mat-action-list .mat-list-item:hover,.cdk-high-contrast-active mat-action-list .mat-list-item:focus{outline:dotted 1px;z-index:1}.cdk-high-contrast-active .mat-list-single-selected-option::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}.cdk-high-contrast-active [dir=rtl] .mat-list-single-selected-option::after{right:auto;left:16px}@media(hover: none){.mat-list-option:not(.mat-list-single-selected-option):not(.mat-list-item-disabled):hover,.mat-nav-list .mat-list-item:not(.mat-list-item-disabled):hover,.mat-action-list .mat-list-item:not(.mat-list-item-disabled):hover{background:none}}\n'],encapsulation:2,changeDetection:0}),V})(),x=(()=>{class V{}return V.\u0275fac=function(H){return new(H||V)},V.\u0275dir=e.lG2({type:V,selectors:[["","mat-list-avatar",""],["","matListAvatar",""]],hostAttrs:[1,"mat-list-avatar"]}),V})(),i=(()=>{class V{}return V.\u0275fac=function(H){return new(H||V)},V.\u0275dir=e.lG2({type:V,selectors:[["","mat-list-icon",""],["","matListIcon",""]],hostAttrs:[1,"mat-list-icon"]}),V})(),u=(()=>{class V extends ie{constructor(H,X,he,be){super(),this._element=H,this._isInteractiveList=!1,this._destroyed=new a.x,this._disabled=!1,this._isInteractiveList=!!(he||be&&"action-list"===be._getListType()),this._list=he||be;const Pe=this._getHostElement();"button"===Pe.nodeName.toLowerCase()&&!Pe.hasAttribute("type")&&Pe.setAttribute("type","button"),this._list&&this._list._stateChanges.pipe((0,C.R)(this._destroyed)).subscribe(()=>{X.markForCheck()})}get disabled(){return this._disabled||!(!this._list||!this._list.disabled)}set disabled(H){this._disabled=(0,M.Ig)(H)}ngAfterContentInit(){(0,f.E0)(this._lines,this._element)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_isRippleDisabled(){return!this._isInteractiveList||this.disableRipple||!(!this._list||!this._list.disableRipple)}_getHostElement(){return this._element.nativeElement}}return V.\u0275fac=function(H){return new(H||V)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(ge,8),e.Y36(re,8))},V.\u0275cmp=e.Xpm({type:V,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(H,X,he){if(1&H&&(e.Suo(he,x,5),e.Suo(he,i,5),e.Suo(he,f.X2,5)),2&H){let be;e.iGM(be=e.CRH())&&(X._avatar=be.first),e.iGM(be=e.CRH())&&(X._icon=be.first),e.iGM(be=e.CRH())&&(X._lines=be)}},hostAttrs:[1,"mat-list-item","mat-focus-indicator"],hostVars:6,hostBindings:function(H,X){2&H&&e.ekj("mat-list-item-disabled",X.disabled)("mat-list-item-avatar",X._avatar||X._icon)("mat-list-item-with-avatar",X._avatar||X._icon)},inputs:{disableRipple:"disableRipple",disabled:"disabled"},exportAs:["matListItem"],features:[e.qOj],ngContentSelectors:B,decls:6,vars:2,consts:[[1,"mat-list-item-content"],["mat-ripple","",1,"mat-list-item-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-list-text"]],template:function(H,X){1&H&&(e.F$t(E),e.TgZ(0,"span",0),e._UZ(1,"span",1),e.Hsn(2),e.TgZ(3,"span",2),e.Hsn(4,1),e.qZA(),e.Hsn(5,2),e.qZA()),2&H&&(e.xp6(1),e.Q6J("matRippleTrigger",X._getHostElement())("matRippleDisabled",X._isRippleDisabled()))},directives:[f.wG],encapsulation:2,changeDetection:0}),V})(),_=(()=>{class V{}return V.\u0275fac=function(H){return new(H||V)},V.\u0275mod=e.oAB({type:V}),V.\u0275inj=e.cJS({imports:[[f.uc,f.si,f.BQ,f.us,t.ez],f.uc,f.BQ,f.us,D.t]}),V})()},2181:(Be,K,p)=>{"use strict";p.d(K,{OP:()=>H,Tx:()=>we,VK:()=>Ee,p6:()=>Oe});var t=p(5664),e=p(3191),f=p(1159),M=p(5e3),a=p(7579),C=p(727),d=p(6451),R=p(9646),h=p(3101),L=p(8675),w=p(3900),D=p(5698),S=p(2722),k=p(9300),E=p(4086),B=p(1777),Z=p(7429),Y=p(9808),ae=p(508),ee=p(9776),ue=p(925),ie=p(226),re=p(5303);const ge=["mat-menu-item",""];function q(ce,Te){1&ce&&(M.O4$(),M.TgZ(0,"svg",2),M._UZ(1,"polygon",3),M.qZA())}const _e=["*"];function x(ce,Te){if(1&ce){const xe=M.EpF();M.TgZ(0,"div",0),M.NdJ("keydown",function(te){return M.CHM(xe),M.oxw()._handleKeydown(te)})("click",function(){return M.CHM(xe),M.oxw().closed.emit("click")})("@transformMenu.start",function(te){return M.CHM(xe),M.oxw()._onAnimationStart(te)})("@transformMenu.done",function(te){return M.CHM(xe),M.oxw()._onAnimationDone(te)}),M.TgZ(1,"div",1),M.Hsn(2),M.qZA()()}if(2&ce){const xe=M.oxw();M.Q6J("id",xe.panelId)("ngClass",xe._classList)("@transformMenu",xe._panelAnimationState),M.uIk("aria-label",xe.ariaLabel||null)("aria-labelledby",xe.ariaLabelledby||null)("aria-describedby",xe.ariaDescribedby||null)}}const i={transformMenu:(0,B.X$)("transformMenu",[(0,B.SB)("void",(0,B.oB)({opacity:0,transform:"scale(0.8)"})),(0,B.eR)("void => enter",(0,B.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,B.oB)({opacity:1,transform:"scale(1)"}))),(0,B.eR)("* => void",(0,B.jt)("100ms 25ms linear",(0,B.oB)({opacity:0})))]),fadeInItems:(0,B.X$)("fadeInItems",[(0,B.SB)("showing",(0,B.oB)({opacity:1})),(0,B.eR)("void => *",[(0,B.oB)({opacity:0}),(0,B.jt)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])},c=new M.OlP("MatMenuContent"),V=new M.OlP("MAT_MENU_PANEL"),N=(0,ae.Kr)((0,ae.Id)(class{}));let H=(()=>{class ce extends N{constructor(xe,W,te,Ce,fe){var Q;super(),this._elementRef=xe,this._document=W,this._focusMonitor=te,this._parentMenu=Ce,this._changeDetectorRef=fe,this.role="menuitem",this._hovered=new a.x,this._focused=new a.x,this._highlighted=!1,this._triggersSubmenu=!1,null===(Q=null==Ce?void 0:Ce.addItem)||void 0===Q||Q.call(Ce,this)}focus(xe,W){this._focusMonitor&&xe?this._focusMonitor.focusVia(this._getHostElement(),xe,W):this._getHostElement().focus(W),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(xe){this.disabled&&(xe.preventDefault(),xe.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){var xe;const W=this._elementRef.nativeElement.cloneNode(!0),te=W.querySelectorAll("mat-icon, .material-icons");for(let Ce=0;Ce{class ce{constructor(xe,W,te,Ce){this._elementRef=xe,this._ngZone=W,this._defaultOptions=te,this._changeDetectorRef=Ce,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new M.n_E,this._tabSubscription=C.w0.EMPTY,this._classList={},this._panelAnimationState="void",this._animationDone=new a.x,this.overlayPanelClass=this._defaultOptions.overlayPanelClass||"",this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new M.vpe,this.close=this.closed,this.panelId="mat-menu-panel-"+be++}get xPosition(){return this._xPosition}set xPosition(xe){this._xPosition=xe,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(xe){this._yPosition=xe,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(xe){this._overlapTrigger=(0,e.Ig)(xe)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(xe){this._hasBackdrop=(0,e.Ig)(xe)}set panelClass(xe){const W=this._previousPanelClass;W&&W.length&&W.split(" ").forEach(te=>{this._classList[te]=!1}),this._previousPanelClass=xe,xe&&xe.length&&(xe.split(" ").forEach(te=>{this._classList[te]=!0}),this._elementRef.nativeElement.className="")}get classList(){return this.panelClass}set classList(xe){this.panelClass=xe}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Em(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,L.O)(this._directDescendantItems),(0,w.w)(xe=>(0,d.T)(...xe.map(W=>W._focused)))).subscribe(xe=>this._keyManager.updateActiveItem(xe)),this._directDescendantItems.changes.subscribe(xe=>{var W;const te=this._keyManager;if("enter"===this._panelAnimationState&&(null===(W=te.activeItem)||void 0===W?void 0:W._hasFocus())){const Ce=xe.toArray(),fe=Math.max(0,Math.min(Ce.length-1,te.activeItemIndex||0));Ce[fe]&&!Ce[fe].disabled?te.setActiveItem(fe):te.setNextItemActive()}})}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe((0,L.O)(this._directDescendantItems),(0,w.w)(W=>(0,d.T)(...W.map(te=>te._hovered))))}addItem(xe){}removeItem(xe){}_handleKeydown(xe){const W=xe.keyCode,te=this._keyManager;switch(W){case f.hY:(0,f.Vb)(xe)||(xe.preventDefault(),this.closed.emit("keydown"));break;case f.oh:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case f.SV:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(W===f.LH||W===f.JH)&&te.setFocusOrigin("keyboard"),void te.onKeydown(xe)}xe.stopPropagation()}focusFirstItem(xe="program"){this._ngZone.onStable.pipe((0,D.q)(1)).subscribe(()=>{let W=null;if(this._directDescendantItems.length&&(W=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!W||!W.contains(document.activeElement)){const te=this._keyManager;te.setFocusOrigin(xe).setFirstItemActive(),!te.activeItem&&W&&W.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(xe){const W=Math.min(this._baseElevation+xe,24),te=`${this._elevationPrefix}${W}`,Ce=Object.keys(this._classList).find(fe=>fe.startsWith(this._elevationPrefix));(!Ce||Ce===this._previousElevation)&&(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[te]=!0,this._previousElevation=te)}setPositionClasses(xe=this.xPosition,W=this.yPosition){var te;const Ce=this._classList;Ce["mat-menu-before"]="before"===xe,Ce["mat-menu-after"]="after"===xe,Ce["mat-menu-above"]="above"===W,Ce["mat-menu-below"]="below"===W,null===(te=this._changeDetectorRef)||void 0===te||te.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(xe){this._animationDone.next(xe),this._isAnimating=!1}_onAnimationStart(xe){this._isAnimating=!0,"enter"===xe.toState&&0===this._keyManager.activeItemIndex&&(xe.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,L.O)(this._allItems)).subscribe(xe=>{this._directDescendantItems.reset(xe.filter(W=>W._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return ce.\u0275fac=function(xe){return new(xe||ce)(M.Y36(M.SBq),M.Y36(M.R0b),M.Y36(X),M.Y36(M.sBO))},ce.\u0275dir=M.lG2({type:ce,contentQueries:function(xe,W,te){if(1&xe&&(M.Suo(te,c,5),M.Suo(te,H,5),M.Suo(te,H,4)),2&xe){let Ce;M.iGM(Ce=M.CRH())&&(W.lazyContent=Ce.first),M.iGM(Ce=M.CRH())&&(W._allItems=Ce),M.iGM(Ce=M.CRH())&&(W.items=Ce)}},viewQuery:function(xe,W){if(1&xe&&M.Gf(M.Rgc,5),2&xe){let te;M.iGM(te=M.CRH())&&(W.templateRef=te.first)}},inputs:{backdropClass:"backdropClass",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:"overlapTrigger",hasBackdrop:"hasBackdrop",panelClass:["class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"}}),ce})(),Ee=(()=>{class ce extends Pe{constructor(xe,W,te,Ce){super(xe,W,te,Ce),this._elevationPrefix="mat-elevation-z",this._baseElevation=4}}return ce.\u0275fac=function(xe){return new(xe||ce)(M.Y36(M.SBq),M.Y36(M.R0b),M.Y36(X),M.Y36(M.sBO))},ce.\u0275cmp=M.Xpm({type:ce,selectors:[["mat-menu"]],hostVars:3,hostBindings:function(xe,W){2&xe&&M.uIk("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},exportAs:["matMenu"],features:[M._Bn([{provide:V,useExisting:ce}]),M.qOj],ngContentSelectors:_e,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-menu-panel",3,"id","ngClass","keydown","click"],[1,"mat-menu-content"]],template:function(xe,W){1&xe&&(M.F$t(),M.YNc(0,x,3,6,"ng-template"))},directives:[Y.mk],styles:['mat-menu{display:none}.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]::before{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.cdk-high-contrast-active .mat-menu-item{margin-top:1px}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}.mat-menu-submenu-icon{position:absolute;top:50%;right:16px;transform:translateY(-50%);width:5px;height:10px;fill:currentColor}[dir=rtl] .mat-menu-submenu-icon{right:auto;left:16px;transform:translateY(-50%) scaleX(-1)}.cdk-high-contrast-active .mat-menu-submenu-icon{fill:CanvasText}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n'],encapsulation:2,data:{animation:[i.transformMenu,i.fadeInItems]},changeDetection:0}),ce})();const j=new M.OlP("mat-menu-scroll-strategy"),Me={provide:j,deps:[ee.aV],useFactory:function Ve(ce){return()=>ce.scrollStrategies.reposition()}},Ie=(0,ue.i$)({passive:!0});let ut=(()=>{class ce{constructor(xe,W,te,Ce,fe,Q,ft,tt,Dt){this._overlay=xe,this._element=W,this._viewContainerRef=te,this._menuItemInstance=Q,this._dir=ft,this._focusMonitor=tt,this._ngZone=Dt,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=C.w0.EMPTY,this._hoverSubscription=C.w0.EMPTY,this._menuCloseSubscription=C.w0.EMPTY,this._handleTouchStart=di=>{(0,t.yG)(di)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new M.vpe,this.onMenuOpen=this.menuOpened,this.menuClosed=new M.vpe,this.onMenuClose=this.menuClosed,this._scrollStrategy=Ce,this._parentMaterialMenu=fe instanceof Pe?fe:void 0,W.nativeElement.addEventListener("touchstart",this._handleTouchStart,Ie),Q&&(Q._triggersSubmenu=this.triggersSubmenu())}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(xe){this.menu=xe}get menu(){return this._menu}set menu(xe){xe!==this._menu&&(this._menu=xe,this._menuCloseSubscription.unsubscribe(),xe&&(this._menuCloseSubscription=xe.close.subscribe(W=>{this._destroyMenu(W),("click"===W||"tab"===W)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(W)})))}ngAfterContentInit(){this._checkMenu(),this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,Ie),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMaterialMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){if(this._menuOpen)return;this._checkMenu();const xe=this._createOverlay(),W=xe.getConfig(),te=W.positionStrategy;this._setPosition(te),W.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,xe.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(),this.menu instanceof Pe&&(this.menu._startAnimation(),this.menu._directDescendantItems.changes.pipe((0,S.R)(this.menu.close)).subscribe(()=>{te.withLockedPosition(!1).reapplyLastPosition(),te.withLockedPosition(!0)}))}closeMenu(){this.menu.close.emit()}focus(xe,W){this._focusMonitor&&xe?this._focusMonitor.focusVia(this._element,xe,W):this._element.nativeElement.focus(W)}updatePosition(){var xe;null===(xe=this._overlayRef)||void 0===xe||xe.updatePosition()}_destroyMenu(xe){if(!this._overlayRef||!this.menuOpen)return;const W=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===xe||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,W instanceof Pe?(W._resetAnimation(),W.lazyContent?W._animationDone.pipe((0,k.h)(te=>"void"===te.toState),(0,D.q)(1),(0,S.R)(W.lazyContent._attached)).subscribe({next:()=>W.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),W.lazyContent&&W.lazyContent.detach())}_initMenu(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this.menu.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(){if(this.menu.setElevation){let xe=0,W=this.menu.parentMenu;for(;W;)xe++,W=W.parentMenu;this.menu.setElevation(xe)}}_setIsMenuOpen(xe){this._menuOpen=xe,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(xe)}_checkMenu(){}_createOverlay(){if(!this._overlayRef){const xe=this._getOverlayConfig();this._subscribeToPositions(xe.positionStrategy),this._overlayRef=this._overlay.create(xe),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(){return new ee.X_({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:this.menu.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:this.menu.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(xe){this.menu.setPositionClasses&&xe.positionChanges.subscribe(W=>{const te="start"===W.connectionPair.overlayX?"after":"before",Ce="top"===W.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>this.menu.setPositionClasses(te,Ce)):this.menu.setPositionClasses(te,Ce)})}_setPosition(xe){let[W,te]="before"===this.menu.xPosition?["end","start"]:["start","end"],[Ce,fe]="above"===this.menu.yPosition?["bottom","top"]:["top","bottom"],[Q,ft]=[Ce,fe],[tt,Dt]=[W,te],di=0;this.triggersSubmenu()?(Dt=W="before"===this.menu.xPosition?"start":"end",te=tt="end"===W?"start":"end",di="bottom"===Ce?8:-8):this.menu.overlapTrigger||(Q="top"===Ce?"bottom":"top",ft="top"===fe?"bottom":"top"),xe.withPositions([{originX:W,originY:Q,overlayX:tt,overlayY:Ce,offsetY:di},{originX:te,originY:Q,overlayX:Dt,overlayY:Ce,offsetY:di},{originX:W,originY:ft,overlayX:tt,overlayY:fe,offsetY:-di},{originX:te,originY:ft,overlayX:Dt,overlayY:fe,offsetY:-di}])}_menuClosingActions(){const xe=this._overlayRef.backdropClick(),W=this._overlayRef.detachments(),te=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,R.of)(),Ce=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,k.h)(fe=>fe!==this._menuItemInstance),(0,k.h)(()=>this._menuOpen)):(0,R.of)();return(0,d.T)(xe,te,Ce,W)}_handleMousedown(xe){(0,t.X6)(xe)||(this._openedBy=0===xe.button?"mouse":void 0,this.triggersSubmenu()&&xe.preventDefault())}_handleKeydown(xe){const W=xe.keyCode;(W===f.K5||W===f.L_)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(W===f.SV&&"ltr"===this.dir||W===f.oh&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(xe){this.triggersSubmenu()?(xe.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,k.h)(xe=>xe===this._menuItemInstance&&!xe.disabled),(0,E.g)(0,h.E)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof Pe&&this.menu._isAnimating?this.menu._animationDone.pipe((0,D.q)(1),(0,E.g)(0,h.E),(0,S.R)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(){return(!this._portal||this._portal.templateRef!==this.menu.templateRef)&&(this._portal=new Z.UE(this.menu.templateRef,this._viewContainerRef)),this._portal}}return ce.\u0275fac=function(xe){return new(xe||ce)(M.Y36(ee.aV),M.Y36(M.SBq),M.Y36(M.s_b),M.Y36(j),M.Y36(V,8),M.Y36(H,10),M.Y36(ie.Is,8),M.Y36(t.tE),M.Y36(M.R0b))},ce.\u0275dir=M.lG2({type:ce,hostAttrs:["aria-haspopup","true"],hostVars:2,hostBindings:function(xe,W){1&xe&&M.NdJ("click",function(Ce){return W._handleClick(Ce)})("mousedown",function(Ce){return W._handleMousedown(Ce)})("keydown",function(Ce){return W._handleKeydown(Ce)}),2&xe&&M.uIk("aria-expanded",W.menuOpen||null)("aria-controls",W.menuOpen?W.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:["mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:["matMenuTriggerFor","menu"],menuData:["matMenuTriggerData","menuData"],restoreFocus:["matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"}}),ce})(),Oe=(()=>{class ce extends ut{}return ce.\u0275fac=function(){let Te;return function(W){return(Te||(Te=M.n5z(ce)))(W||ce)}}(),ce.\u0275dir=M.lG2({type:ce,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-menu-trigger"],exportAs:["matMenuTrigger"],features:[M.qOj]}),ce})(),we=(()=>{class ce{}return ce.\u0275fac=function(xe){return new(xe||ce)},ce.\u0275mod=M.oAB({type:ce}),ce.\u0275inj=M.cJS({providers:[Me],imports:[[Y.ez,ae.BQ,ae.si,ee.U8],re.ZD,ae.BQ]}),ce})()},6087:(Be,K,p)=>{"use strict";p.d(K,{NW:()=>ge,TU:()=>q,ye:()=>B});var t=p(9808),e=p(5e3),f=p(508),M=p(7423),a=p(4107),C=p(7238),d=p(3191),R=p(7579),h=p(7322);function L(_e,x){if(1&_e&&(e.TgZ(0,"mat-option",19),e._uU(1),e.qZA()),2&_e){const i=x.$implicit;e.Q6J("value",i),e.xp6(1),e.hij(" ",i," ")}}function w(_e,x){if(1&_e){const i=e.EpF();e.TgZ(0,"mat-form-field",16)(1,"mat-select",17),e.NdJ("selectionChange",function(u){return e.CHM(i),e.oxw(2)._changePageSize(u.value)}),e.YNc(2,L,2,2,"mat-option",18),e.qZA()()}if(2&_e){const i=e.oxw(2);e.Q6J("appearance",i._formFieldAppearance)("color",i.color),e.xp6(1),e.Q6J("value",i.pageSize)("disabled",i.disabled)("aria-label",i._intl.itemsPerPageLabel),e.xp6(1),e.Q6J("ngForOf",i._displayedPageSizeOptions)}}function D(_e,x){if(1&_e&&(e.TgZ(0,"div",20),e._uU(1),e.qZA()),2&_e){const i=e.oxw(2);e.xp6(1),e.Oqu(i.pageSize)}}function S(_e,x){if(1&_e&&(e.TgZ(0,"div",12)(1,"div",13),e._uU(2),e.qZA(),e.YNc(3,w,3,6,"mat-form-field",14),e.YNc(4,D,2,1,"div",15),e.qZA()),2&_e){const i=e.oxw();e.xp6(2),e.hij(" ",i._intl.itemsPerPageLabel," "),e.xp6(1),e.Q6J("ngIf",i._displayedPageSizeOptions.length>1),e.xp6(1),e.Q6J("ngIf",i._displayedPageSizeOptions.length<=1)}}function k(_e,x){if(1&_e){const i=e.EpF();e.TgZ(0,"button",21),e.NdJ("click",function(){return e.CHM(i),e.oxw().firstPage()}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",22),e.qZA()()}if(2&_e){const i=e.oxw();e.Q6J("matTooltip",i._intl.firstPageLabel)("matTooltipDisabled",i._previousButtonsDisabled())("matTooltipPosition","above")("disabled",i._previousButtonsDisabled()),e.uIk("aria-label",i._intl.firstPageLabel)}}function E(_e,x){if(1&_e){const i=e.EpF();e.O4$(),e.kcU(),e.TgZ(0,"button",23),e.NdJ("click",function(){return e.CHM(i),e.oxw().lastPage()}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",24),e.qZA()()}if(2&_e){const i=e.oxw();e.Q6J("matTooltip",i._intl.lastPageLabel)("matTooltipDisabled",i._nextButtonsDisabled())("matTooltipPosition","above")("disabled",i._nextButtonsDisabled()),e.uIk("aria-label",i._intl.lastPageLabel)}}let B=(()=>{class _e{constructor(){this.changes=new R.x,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(i,r,u)=>{if(0==u||0==r)return`0 of ${u}`;const c=i*r;return`${c+1} \u2013 ${c<(u=Math.max(u,0))?Math.min(c+r,u):c+r} of ${u}`}}}return _e.\u0275fac=function(i){return new(i||_e)},_e.\u0275prov=e.Yz7({token:_e,factory:_e.\u0275fac,providedIn:"root"}),_e})();const Y={provide:B,deps:[[new e.FiY,new e.tp0,B]],useFactory:function Z(_e){return _e||new B}},ue=new e.OlP("MAT_PAGINATOR_DEFAULT_OPTIONS"),ie=(0,f.Id)((0,f.dB)(class{}));let re=(()=>{class _e extends ie{constructor(i,r,u){if(super(),this._intl=i,this._changeDetectorRef=r,this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this._hidePageSize=!1,this._showFirstLastButtons=!1,this.page=new e.vpe,this._intlChanges=i.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),u){const{pageSize:c,pageSizeOptions:v,hidePageSize:T,showFirstLastButtons:I}=u;null!=c&&(this._pageSize=c),null!=v&&(this._pageSizeOptions=v),null!=T&&(this._hidePageSize=T),null!=I&&(this._showFirstLastButtons=I)}}get pageIndex(){return this._pageIndex}set pageIndex(i){this._pageIndex=Math.max((0,d.su)(i),0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(i){this._length=(0,d.su)(i),this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(i){this._pageSize=Math.max((0,d.su)(i),0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(i){this._pageSizeOptions=(i||[]).map(r=>(0,d.su)(r)),this._updateDisplayedPageSizeOptions()}get hidePageSize(){return this._hidePageSize}set hidePageSize(i){this._hidePageSize=(0,d.Ig)(i)}get showFirstLastButtons(){return this._showFirstLastButtons}set showFirstLastButtons(i){this._showFirstLastButtons=(0,d.Ig)(i)}ngOnInit(){this._initialized=!0,this._updateDisplayedPageSizeOptions(),this._markInitialized()}ngOnDestroy(){this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const i=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(i)}previousPage(){if(!this.hasPreviousPage())return;const i=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(i)}firstPage(){if(!this.hasPreviousPage())return;const i=this.pageIndex;this.pageIndex=0,this._emitPageEvent(i)}lastPage(){if(!this.hasNextPage())return;const i=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(i)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const i=this.getNumberOfPages()-1;return this.pageIndexi-r),this._changeDetectorRef.markForCheck())}_emitPageEvent(i){this.page.emit({previousPageIndex:i,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}}return _e.\u0275fac=function(i){e.$Z()},_e.\u0275dir=e.lG2({type:_e,inputs:{color:"color",pageIndex:"pageIndex",length:"length",pageSize:"pageSize",pageSizeOptions:"pageSizeOptions",hidePageSize:"hidePageSize",showFirstLastButtons:"showFirstLastButtons"},outputs:{page:"page"},features:[e.qOj]}),_e})(),ge=(()=>{class _e extends re{constructor(i,r,u){super(i,r,u),u&&null!=u.formFieldAppearance&&(this._formFieldAppearance=u.formFieldAppearance)}}return _e.\u0275fac=function(i){return new(i||_e)(e.Y36(B),e.Y36(e.sBO),e.Y36(ue,8))},_e.\u0275cmp=e.Xpm({type:_e,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-paginator"],inputs:{disabled:"disabled"},exportAs:["matPaginator"],features:[e.qOj],decls:14,vars:14,consts:[[1,"mat-paginator-outer-container"],[1,"mat-paginator-container"],["class","mat-paginator-page-size",4,"ngIf"],[1,"mat-paginator-range-actions"],[1,"mat-paginator-range-label"],["mat-icon-button","","type","button","class","mat-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click",4,"ngIf"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-previous",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["viewBox","0 0 24 24","focusable","false",1,"mat-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-next",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button","class","mat-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click",4,"ngIf"],[1,"mat-paginator-page-size"],[1,"mat-paginator-page-size-label"],["class","mat-paginator-page-size-select",3,"appearance","color",4,"ngIf"],["class","mat-paginator-page-size-value",4,"ngIf"],[1,"mat-paginator-page-size-select",3,"appearance","color"],[3,"value","disabled","aria-label","selectionChange"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],[1,"mat-paginator-page-size-value"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(i,r){1&i&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,S,5,3,"div",2),e.TgZ(3,"div",3)(4,"div",4),e._uU(5),e.qZA(),e.YNc(6,k,3,5,"button",5),e.TgZ(7,"button",6),e.NdJ("click",function(){return r.previousPage()}),e.O4$(),e.TgZ(8,"svg",7),e._UZ(9,"path",8),e.qZA()(),e.kcU(),e.TgZ(10,"button",9),e.NdJ("click",function(){return r.nextPage()}),e.O4$(),e.TgZ(11,"svg",7),e._UZ(12,"path",10),e.qZA()(),e.YNc(13,E,3,5,"button",11),e.qZA()()()),2&i&&(e.xp6(2),e.Q6J("ngIf",!r.hidePageSize),e.xp6(3),e.hij(" ",r._intl.getRangeLabel(r.pageIndex,r.pageSize,r.length)," "),e.xp6(1),e.Q6J("ngIf",r.showFirstLastButtons),e.xp6(1),e.Q6J("matTooltip",r._intl.previousPageLabel)("matTooltipDisabled",r._previousButtonsDisabled())("matTooltipPosition","above")("disabled",r._previousButtonsDisabled()),e.uIk("aria-label",r._intl.previousPageLabel),e.xp6(3),e.Q6J("matTooltip",r._intl.nextPageLabel)("matTooltipDisabled",r._nextButtonsDisabled())("matTooltipPosition","above")("disabled",r._nextButtonsDisabled()),e.uIk("aria-label",r._intl.nextPageLabel),e.xp6(3),e.Q6J("ngIf",r.showFirstLastButtons))},directives:[h.KE,a.gD,f.ey,M.lW,t.O5,t.sg,C.gM],styles:[".mat-paginator{display:block}.mat-paginator-outer-container{display:flex}.mat-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap-reverse;width:100%}.mat-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-paginator-page-size{margin-right:0;margin-left:8px}.mat-paginator-page-size-label{margin:0 4px}.mat-paginator-page-size-select{margin:6px 4px 0 4px;width:56px}.mat-paginator-page-size-select.mat-form-field-appearance-outline{width:64px}.mat-paginator-page-size-select.mat-form-field-appearance-fill{width:64px}.mat-paginator-range-label{margin:0 32px 0 24px}.mat-paginator-range-actions{display:flex;align-items:center}.mat-paginator-icon{width:28px;fill:currentColor}[dir=rtl] .mat-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-paginator-icon{fill:CanvasText}\n"],encapsulation:2,changeDetection:0}),_e})(),q=(()=>{class _e{}return _e.\u0275fac=function(i){return new(i||_e)},_e.\u0275mod=e.oAB({type:_e}),_e.\u0275inj=e.cJS({providers:[Y],imports:[[t.ez,M.ot,a.LD,C.AV,f.BQ]]}),_e})()},5899:(Be,K,p)=>{"use strict";p.d(K,{Cv:()=>Z,pW:()=>E});var t=p(5e3),e=p(9808),f=p(508),M=p(3191),a=p(6360),C=p(727),d=p(4968),R=p(9300);const h=["primaryValueBar"],L=(0,f.pj)(class{constructor(Y){this._elementRef=Y}},"primary"),w=new t.OlP("mat-progress-bar-location",{providedIn:"root",factory:function D(){const Y=(0,t.f3M)(e.K0),ae=Y?Y.location:null;return{getPathname:()=>ae?ae.pathname+ae.search:""}}}),S=new t.OlP("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let k=0,E=(()=>{class Y extends L{constructor(ee,ue,ie,re,ge,q){super(ee),this._ngZone=ue,this._animationMode=ie,this._changeDetectorRef=q,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new t.vpe,this._animationEndSubscription=C.w0.EMPTY,this.mode="determinate",this.progressbarId="mat-progress-bar-"+k++;const _e=re?re.getPathname().split("#")[0]:"";this._rectangleFillValue=`url('${_e}#${this.progressbarId}')`,this._isNoopAnimation="NoopAnimations"===ie,ge&&(ge.color&&(this.color=this.defaultColor=ge.color),this.mode=ge.mode||this.mode)}get value(){return this._value}set value(ee){var ue;this._value=B((0,M.su)(ee)||0),null===(ue=this._changeDetectorRef)||void 0===ue||ue.markForCheck()}get bufferValue(){return this._bufferValue}set bufferValue(ee){var ue;this._bufferValue=B(ee||0),null===(ue=this._changeDetectorRef)||void 0===ue||ue.markForCheck()}_primaryTransform(){return{transform:`scale3d(${this.value/100}, 1, 1)`}}_bufferTransform(){return"buffer"===this.mode?{transform:`scale3d(${this.bufferValue/100}, 1, 1)`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const ee=this._primaryValueBar.nativeElement;this._animationEndSubscription=(0,d.R)(ee,"transitionend").pipe((0,R.h)(ue=>ue.target===ee)).subscribe(()=>{0!==this.animationEnd.observers.length&&("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return Y.\u0275fac=function(ee){return new(ee||Y)(t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(a.Qb,8),t.Y36(w,8),t.Y36(S,8),t.Y36(t.sBO))},Y.\u0275cmp=t.Xpm({type:Y,selectors:[["mat-progress-bar"]],viewQuery:function(ee,ue){if(1&ee&&t.Gf(h,5),2&ee){let ie;t.iGM(ie=t.CRH())&&(ue._primaryValueBar=ie.first)}},hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-progress-bar"],hostVars:4,hostBindings:function(ee,ue){2&ee&&(t.uIk("aria-valuenow","indeterminate"===ue.mode||"query"===ue.mode?null:ue.value)("mode",ue.mode),t.ekj("_mat-animation-noopable",ue._isNoopAnimation))},inputs:{color:"color",value:"value",bufferValue:"bufferValue",mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],features:[t.qOj],decls:10,vars:4,consts:[["aria-hidden","true"],["width","100%","height","4","focusable","false",1,"mat-progress-bar-background","mat-progress-bar-element"],["x","4","y","0","width","8","height","4","patternUnits","userSpaceOnUse",3,"id"],["cx","2","cy","2","r","2"],["width","100%","height","100%"],[1,"mat-progress-bar-buffer","mat-progress-bar-element",3,"ngStyle"],[1,"mat-progress-bar-primary","mat-progress-bar-fill","mat-progress-bar-element",3,"ngStyle"],["primaryValueBar",""],[1,"mat-progress-bar-secondary","mat-progress-bar-fill","mat-progress-bar-element"]],template:function(ee,ue){1&ee&&(t.TgZ(0,"div",0),t.O4$(),t.TgZ(1,"svg",1)(2,"defs")(3,"pattern",2),t._UZ(4,"circle",3),t.qZA()(),t._UZ(5,"rect",4),t.qZA(),t.kcU(),t._UZ(6,"div",5)(7,"div",6,7)(9,"div",8),t.qZA()),2&ee&&(t.xp6(3),t.Q6J("id",ue.progressbarId),t.xp6(2),t.uIk("fill",ue._rectangleFillValue),t.xp6(1),t.Q6J("ngStyle",ue._bufferTransform()),t.xp6(1),t.Q6J("ngStyle",ue._primaryTransform()))},directives:[e.PC],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:"";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\n'],encapsulation:2,changeDetection:0}),Y})();function B(Y,ae=0,ee=100){return Math.max(ae,Math.min(ee,Y))}let Z=(()=>{class Y{}return Y.\u0275fac=function(ee){return new(ee||Y)},Y.\u0275mod=t.oAB({type:Y}),Y.\u0275inj=t.cJS({imports:[[e.ez,f.BQ],f.BQ]}),Y})()},773:(Be,K,p)=>{"use strict";p.d(K,{Cq:()=>Y,Ou:()=>Z});var t=p(3191),e=p(925),f=p(9808),M=p(5e3),a=p(508),C=p(6360),d=p(727),R=p(5303);function h(ee,ue){if(1&ee&&(M.O4$(),M._UZ(0,"circle",4)),2&ee){const ie=M.oxw(),re=M.MAs(1);M.Udp("animation-name","mat-progress-spinner-stroke-rotate-"+ie._spinnerAnimationLabel)("stroke-dashoffset",ie._getStrokeDashOffset(),"px")("stroke-dasharray",ie._getStrokeCircumference(),"px")("stroke-width",ie._getCircleStrokeWidth(),"%")("transform-origin",ie._getCircleTransformOrigin(re)),M.uIk("r",ie._getCircleRadius())}}function L(ee,ue){if(1&ee&&(M.O4$(),M._UZ(0,"circle",4)),2&ee){const ie=M.oxw(),re=M.MAs(1);M.Udp("stroke-dashoffset",ie._getStrokeDashOffset(),"px")("stroke-dasharray",ie._getStrokeCircumference(),"px")("stroke-width",ie._getCircleStrokeWidth(),"%")("transform-origin",ie._getCircleTransformOrigin(re)),M.uIk("r",ie._getCircleRadius())}}const S=(0,a.pj)(class{constructor(ee){this._elementRef=ee}},"primary"),k=new M.OlP("mat-progress-spinner-default-options",{providedIn:"root",factory:function E(){return{diameter:100}}});class Z extends S{constructor(ue,ie,re,ge,q,_e,x,i){super(ue),this._document=re,this._diameter=100,this._value=0,this._resizeSubscription=d.w0.EMPTY,this.mode="determinate";const r=Z._diameters;this._spinnerAnimationLabel=this._getSpinnerAnimationLabel(),r.has(re.head)||r.set(re.head,new Set([100])),this._noopAnimations="NoopAnimations"===ge&&!!q&&!q._forceAnimations,"mat-spinner"===ue.nativeElement.nodeName.toLowerCase()&&(this.mode="indeterminate"),q&&(q.diameter&&(this.diameter=q.diameter),q.strokeWidth&&(this.strokeWidth=q.strokeWidth)),ie.isBrowser&&ie.SAFARI&&x&&_e&&i&&(this._resizeSubscription=x.change(150).subscribe(()=>{"indeterminate"===this.mode&&i.run(()=>_e.markForCheck())}))}get diameter(){return this._diameter}set diameter(ue){this._diameter=(0,t.su)(ue),this._spinnerAnimationLabel=this._getSpinnerAnimationLabel(),this._styleRoot&&this._attachStyleNode()}get strokeWidth(){return this._strokeWidth||this.diameter/10}set strokeWidth(ue){this._strokeWidth=(0,t.su)(ue)}get value(){return"determinate"===this.mode?this._value:0}set value(ue){this._value=Math.max(0,Math.min(100,(0,t.su)(ue)))}ngOnInit(){const ue=this._elementRef.nativeElement;this._styleRoot=(0,e.kV)(ue)||this._document.head,this._attachStyleNode(),ue.classList.add("mat-progress-spinner-indeterminate-animation")}ngOnDestroy(){this._resizeSubscription.unsubscribe()}_getCircleRadius(){return(this.diameter-10)/2}_getViewBox(){const ue=2*this._getCircleRadius()+this.strokeWidth;return`0 0 ${ue} ${ue}`}_getStrokeCircumference(){return 2*Math.PI*this._getCircleRadius()}_getStrokeDashOffset(){return"determinate"===this.mode?this._getStrokeCircumference()*(100-this._value)/100:null}_getCircleStrokeWidth(){return this.strokeWidth/this.diameter*100}_getCircleTransformOrigin(ue){var ie;const re=50*(null!==(ie=ue.currentScale)&&void 0!==ie?ie:1);return`${re}% ${re}%`}_attachStyleNode(){const ue=this._styleRoot,ie=this._diameter,re=Z._diameters;let ge=re.get(ue);if(!ge||!ge.has(ie)){const q=this._document.createElement("style");q.setAttribute("mat-spinner-animation",this._spinnerAnimationLabel),q.textContent=this._getAnimationText(),ue.appendChild(q),ge||(ge=new Set,re.set(ue,ge)),ge.add(ie)}}_getAnimationText(){const ue=this._getStrokeCircumference();return"\n @keyframes mat-progress-spinner-stroke-rotate-DIAMETER {\n 0% { stroke-dashoffset: START_VALUE; transform: rotate(0); }\n 12.5% { stroke-dashoffset: END_VALUE; transform: rotate(0); }\n 12.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n 25% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n\n 25.0001% { stroke-dashoffset: START_VALUE; transform: rotate(270deg); }\n 37.5% { stroke-dashoffset: END_VALUE; transform: rotate(270deg); }\n 37.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n 50% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n\n 50.0001% { stroke-dashoffset: START_VALUE; transform: rotate(180deg); }\n 62.5% { stroke-dashoffset: END_VALUE; transform: rotate(180deg); }\n 62.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n 75% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n\n 75.0001% { stroke-dashoffset: START_VALUE; transform: rotate(90deg); }\n 87.5% { stroke-dashoffset: END_VALUE; transform: rotate(90deg); }\n 87.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n 100% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n }\n".replace(/START_VALUE/g,""+.95*ue).replace(/END_VALUE/g,""+.2*ue).replace(/DIAMETER/g,`${this._spinnerAnimationLabel}`)}_getSpinnerAnimationLabel(){return this.diameter.toString().replace(".","_")}}Z._diameters=new WeakMap,Z.\u0275fac=function(ue){return new(ue||Z)(M.Y36(M.SBq),M.Y36(e.t4),M.Y36(f.K0,8),M.Y36(C.Qb,8),M.Y36(k),M.Y36(M.sBO),M.Y36(R.rL),M.Y36(M.R0b))},Z.\u0275cmp=M.Xpm({type:Z,selectors:[["mat-progress-spinner"],["mat-spinner"]],hostAttrs:["role","progressbar","tabindex","-1",1,"mat-progress-spinner","mat-spinner"],hostVars:10,hostBindings:function(ue,ie){2&ue&&(M.uIk("aria-valuemin","determinate"===ie.mode?0:null)("aria-valuemax","determinate"===ie.mode?100:null)("aria-valuenow","determinate"===ie.mode?ie.value:null)("mode",ie.mode),M.Udp("width",ie.diameter,"px")("height",ie.diameter,"px"),M.ekj("_mat-animation-noopable",ie._noopAnimations))},inputs:{color:"color",diameter:"diameter",strokeWidth:"strokeWidth",mode:"mode",value:"value"},exportAs:["matProgressSpinner"],features:[M.qOj],decls:4,vars:8,consts:[["preserveAspectRatio","xMidYMid meet","focusable","false","aria-hidden","true",3,"ngSwitch"],["svg",""],["cx","50%","cy","50%",3,"animation-name","stroke-dashoffset","stroke-dasharray","stroke-width","transform-origin",4,"ngSwitchCase"],["cx","50%","cy","50%",3,"stroke-dashoffset","stroke-dasharray","stroke-width","transform-origin",4,"ngSwitchCase"],["cx","50%","cy","50%"]],template:function(ue,ie){1&ue&&(M.O4$(),M.TgZ(0,"svg",0,1),M.YNc(2,h,1,11,"circle",2),M.YNc(3,L,1,9,"circle",3),M.qZA()),2&ue&&(M.Udp("width",ie.diameter,"px")("height",ie.diameter,"px"),M.Q6J("ngSwitch","indeterminate"===ie.mode),M.uIk("viewBox",ie._getViewBox()),M.xp6(2),M.Q6J("ngSwitchCase",!0),M.xp6(1),M.Q6J("ngSwitchCase",!1))},directives:[f.RF,f.n9],styles:[".mat-progress-spinner{display:block;position:relative;overflow:hidden}.mat-progress-spinner svg{position:absolute;transform:rotate(-90deg);top:0;left:0;transform-origin:center;overflow:visible}.mat-progress-spinner circle{fill:transparent;transition:stroke-dashoffset 225ms linear}._mat-animation-noopable.mat-progress-spinner circle{transition:none;animation:none}.cdk-high-contrast-active .mat-progress-spinner circle{stroke:CanvasText}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] svg{animation:mat-progress-spinner-linear-rotate 2000ms linear infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] svg{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition-property:stroke;animation-duration:4000ms;animation-timing-function:cubic-bezier(0.35, 0, 0.25, 1);animation-iteration-count:infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition:none;animation:none}@keyframes mat-progress-spinner-linear-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes mat-progress-spinner-stroke-rotate-100{0%{stroke-dashoffset:268.606171575px;transform:rotate(0)}12.5%{stroke-dashoffset:56.5486677px;transform:rotate(0)}12.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(72.5deg)}25%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(72.5deg)}25.0001%{stroke-dashoffset:268.606171575px;transform:rotate(270deg)}37.5%{stroke-dashoffset:56.5486677px;transform:rotate(270deg)}37.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(161.5deg)}50%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(161.5deg)}50.0001%{stroke-dashoffset:268.606171575px;transform:rotate(180deg)}62.5%{stroke-dashoffset:56.5486677px;transform:rotate(180deg)}62.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(251.5deg)}75%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(251.5deg)}75.0001%{stroke-dashoffset:268.606171575px;transform:rotate(90deg)}87.5%{stroke-dashoffset:56.5486677px;transform:rotate(90deg)}87.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(341.5deg)}100%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(341.5deg)}}\n"],encapsulation:2,changeDetection:0});let Y=(()=>{class ee{}return ee.\u0275fac=function(ie){return new(ie||ee)},ee.\u0275mod=M.oAB({type:ee}),ee.\u0275inj=M.cJS({imports:[[a.BQ,f.ez],a.BQ]}),ee})()},9814:(Be,K,p)=>{"use strict";p.d(K,{Fk:()=>re,U0:()=>ie,VQ:()=>Y});var t=p(5e3),e=p(508),f=p(3191),M=p(3075),a=p(6360),C=p(5664),d=p(449);const R=["input"],h=function(ge){return{enterDuration:ge}},L=["*"],w=new t.OlP("mat-radio-default-options",{providedIn:"root",factory:function D(){return{color:"accent"}}});let S=0;const k={provide:M.JU,useExisting:(0,t.Gpc)(()=>Y),multi:!0};class E{constructor(q,_e){this.source=q,this.value=_e}}const B=new t.OlP("MatRadioGroup");let Z=(()=>{class ge{constructor(_e){this._changeDetector=_e,this._value=null,this._name="mat-radio-group-"+S++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new t.vpe}get name(){return this._name}set name(_e){this._name=_e,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(_e){this._labelPosition="before"===_e?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(_e){this._value!==_e&&(this._value=_e,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(_e){this._selected=_e,this.value=_e?_e.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(_e){this._disabled=(0,f.Ig)(_e),this._markRadiosForCheck()}get required(){return this._required}set required(_e){this._required=(0,f.Ig)(_e),this._markRadiosForCheck()}ngAfterContentInit(){this._isInitialized=!0}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(_e=>{_e.name=this.name,_e._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(x=>{x.checked=this.value===x.value,x.checked&&(this._selected=x)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new E(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(_e=>_e._markForCheck())}writeValue(_e){this.value=_e,this._changeDetector.markForCheck()}registerOnChange(_e){this._controlValueAccessorChangeFn=_e}registerOnTouched(_e){this.onTouched=_e}setDisabledState(_e){this.disabled=_e,this._changeDetector.markForCheck()}}return ge.\u0275fac=function(_e){return new(_e||ge)(t.Y36(t.sBO))},ge.\u0275dir=t.lG2({type:ge,inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:"disabled",required:"required"},outputs:{change:"change"}}),ge})(),Y=(()=>{class ge extends Z{}return ge.\u0275fac=function(){let q;return function(x){return(q||(q=t.n5z(ge)))(x||ge)}}(),ge.\u0275dir=t.lG2({type:ge,selectors:[["mat-radio-group"]],contentQueries:function(_e,x,i){if(1&_e&&t.Suo(i,ie,5),2&_e){let r;t.iGM(r=t.CRH())&&(x._radios=r)}},hostAttrs:["role","radiogroup",1,"mat-radio-group"],exportAs:["matRadioGroup"],features:[t._Bn([k,{provide:B,useExisting:ge}]),t.qOj]}),ge})();class ae{constructor(q){this._elementRef=q}}const ee=(0,e.Kr)((0,e.sb)(ae));let ue=(()=>{class ge extends ee{constructor(_e,x,i,r,u,c,v,T){super(x),this._changeDetector=i,this._focusMonitor=r,this._radioDispatcher=u,this._providerOverride=v,this._uniqueId="mat-radio-"+ ++S,this.id=this._uniqueId,this.change=new t.vpe,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=_e,this._noopAnimations="NoopAnimations"===c,T&&(this.tabIndex=(0,f.su)(T,0)),this._removeUniqueSelectionListener=u.listen((I,y)=>{I!==this.id&&y===this.name&&(this.checked=!1)})}get checked(){return this._checked}set checked(_e){const x=(0,f.Ig)(_e);this._checked!==x&&(this._checked=x,x&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!x&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),x&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(_e){this._value!==_e&&(this._value=_e,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===_e),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(_e){this._labelPosition=_e}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(_e){this._setDisabled((0,f.Ig)(_e))}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(_e){this._required=(0,f.Ig)(_e)}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(_e){this._color=_e}get inputId(){return`${this.id||this._uniqueId}-input`}focus(_e,x){x?this._focusMonitor.focusVia(this._inputElement,x,_e):this._inputElement.nativeElement.focus(_e)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name)}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(_e=>{!_e&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new E(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(_e){_e.stopPropagation()}_onInputInteraction(_e){if(_e.stopPropagation(),!this.checked&&!this.disabled){const x=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),x&&this.radioGroup._emitChangeEvent())}}_setDisabled(_e){this._disabled!==_e&&(this._disabled=_e,this._changeDetector.markForCheck())}_updateTabIndex(){var _e;const x=this.radioGroup;let i;if(i=x&&x.selected&&!this.disabled?x.selected===this?this.tabIndex:-1:this.tabIndex,i!==this._previousTabIndex){const r=null===(_e=this._inputElement)||void 0===_e?void 0:_e.nativeElement;r&&(r.setAttribute("tabindex",i+""),this._previousTabIndex=i)}}}return ge.\u0275fac=function(_e){t.$Z()},ge.\u0275dir=t.lG2({type:ge,viewQuery:function(_e,x){if(1&_e&&t.Gf(R,5),2&_e){let i;t.iGM(i=t.CRH())&&(x._inputElement=i.first)}},inputs:{id:"id",name:"name",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],checked:"checked",value:"value",labelPosition:"labelPosition",disabled:"disabled",required:"required",color:"color"},outputs:{change:"change"},features:[t.qOj]}),ge})(),ie=(()=>{class ge extends ue{constructor(_e,x,i,r,u,c,v,T){super(_e,x,i,r,u,c,v,T)}}return ge.\u0275fac=function(_e){return new(_e||ge)(t.Y36(B,8),t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(C.tE),t.Y36(d.A8),t.Y36(a.Qb,8),t.Y36(w,8),t.$8M("tabindex"))},ge.\u0275cmp=t.Xpm({type:ge,selectors:[["mat-radio-button"]],hostAttrs:[1,"mat-radio-button"],hostVars:17,hostBindings:function(_e,x){1&_e&&t.NdJ("focus",function(){return x._inputElement.nativeElement.focus()}),2&_e&&(t.uIk("tabindex",null)("id",x.id)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),t.ekj("mat-radio-checked",x.checked)("mat-radio-disabled",x.disabled)("_mat-animation-noopable",x._noopAnimations)("mat-primary","primary"===x.color)("mat-accent","accent"===x.color)("mat-warn","warn"===x.color))},inputs:{disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matRadioButton"],features:[t.qOj],ngContentSelectors:L,decls:13,vars:19,consts:[[1,"mat-radio-label"],["label",""],[1,"mat-radio-container"],[1,"mat-radio-outer-circle"],[1,"mat-radio-inner-circle"],["type","radio",1,"mat-radio-input",3,"id","checked","disabled","required","change","click"],["input",""],["mat-ripple","",1,"mat-radio-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered","matRippleRadius","matRippleAnimation"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mat-radio-label-content"],[2,"display","none"]],template:function(_e,x){if(1&_e&&(t.F$t(),t.TgZ(0,"label",0,1)(2,"span",2),t._UZ(3,"span",3)(4,"span",4),t.TgZ(5,"input",5,6),t.NdJ("change",function(r){return x._onInputInteraction(r)})("click",function(r){return x._onInputClick(r)}),t.qZA(),t.TgZ(7,"span",7),t._UZ(8,"span",8),t.qZA()(),t.TgZ(9,"span",9)(10,"span",10),t._uU(11,"\xa0"),t.qZA(),t.Hsn(12),t.qZA()()),2&_e){const i=t.MAs(1);t.uIk("for",x.inputId),t.xp6(5),t.Q6J("id",x.inputId)("checked",x.checked)("disabled",x.disabled)("required",x.required),t.uIk("name",x.name)("value",x.value)("aria-label",x.ariaLabel)("aria-labelledby",x.ariaLabelledby)("aria-describedby",x.ariaDescribedby),t.xp6(2),t.Q6J("matRippleTrigger",i)("matRippleDisabled",x._isRippleDisabled())("matRippleCentered",!0)("matRippleRadius",20)("matRippleAnimation",t.VKq(17,h,x._noopAnimations?0:150)),t.xp6(2),t.ekj("mat-radio-label-before","before"==x.labelPosition)}},directives:[e.wG],styles:[".mat-radio-button{display:inline-block;-webkit-tap-highlight-color:transparent;outline:0}.mat-radio-label{-webkit-user-select:none;user-select:none;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;vertical-align:middle;width:100%}.mat-radio-container{box-sizing:border-box;display:inline-block;position:relative;width:20px;height:20px;flex-shrink:0}.mat-radio-outer-circle{box-sizing:border-box;display:block;height:20px;left:0;position:absolute;top:0;transition:border-color ease 280ms;width:20px;border-width:2px;border-style:solid;border-radius:50%}._mat-animation-noopable .mat-radio-outer-circle{transition:none}.mat-radio-inner-circle{border-radius:50%;box-sizing:border-box;display:block;height:20px;left:0;position:absolute;top:0;opacity:0;transition:transform ease 280ms,background-color ease 280ms,opacity linear 1ms 280ms;width:20px;transform:scale(0.001);-webkit-print-color-adjust:exact;color-adjust:exact}.mat-radio-checked .mat-radio-inner-circle{transform:scale(0.5);opacity:1;transition:transform ease 280ms,background-color ease 280ms}.cdk-high-contrast-active .mat-radio-checked .mat-radio-inner-circle{border:solid 10px}._mat-animation-noopable .mat-radio-inner-circle{transition:none}.mat-radio-label-content{-webkit-user-select:auto;user-select:auto;display:inline-block;order:0;line-height:inherit;padding-left:8px;padding-right:0}[dir=rtl] .mat-radio-label-content{padding-right:8px;padding-left:0}.mat-radio-label-content.mat-radio-label-before{order:-1;padding-left:0;padding-right:8px}[dir=rtl] .mat-radio-label-content.mat-radio-label-before{padding-right:0;padding-left:8px}.mat-radio-disabled,.mat-radio-disabled .mat-radio-label{cursor:default}.mat-radio-button .mat-radio-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-radio-button .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple){opacity:.16}.mat-radio-persistent-ripple{width:100%;height:100%;transform:none;top:0;left:0}.mat-radio-container:hover .mat-radio-persistent-ripple{opacity:.04}.mat-radio-button:not(.mat-radio-disabled).cdk-keyboard-focused .mat-radio-persistent-ripple,.mat-radio-button:not(.mat-radio-disabled).cdk-program-focused .mat-radio-persistent-ripple{opacity:.12}.mat-radio-persistent-ripple,.mat-radio-disabled .mat-radio-container:hover .mat-radio-persistent-ripple{opacity:0}@media(hover: none){.mat-radio-container:hover .mat-radio-persistent-ripple{display:none}}.mat-radio-input{opacity:0;position:absolute;top:0;left:0;margin:0;width:100%;height:100%;cursor:inherit;z-index:-1}.cdk-high-contrast-active .mat-radio-button:not(.mat-radio-disabled).cdk-keyboard-focused .mat-radio-ripple,.cdk-high-contrast-active .mat-radio-button:not(.mat-radio-disabled).cdk-program-focused .mat-radio-ripple{outline:solid 3px}.cdk-high-contrast-active .mat-radio-disabled{opacity:.5}\n"],encapsulation:2,changeDetection:0}),ge})(),re=(()=>{class ge{}return ge.\u0275fac=function(_e){return new(_e||ge)},ge.\u0275mod=t.oAB({type:ge}),ge.\u0275inj=t.cJS({imports:[[e.si,e.BQ],e.BQ]}),ge})()},4107:(Be,K,p)=>{"use strict";p.d(K,{$L:()=>ut,LD:()=>ce,gD:()=>we});var t=p(9776),e=p(9808),f=p(5e3),M=p(508),a=p(7322),C=p(5303),d=p(5664),R=p(3191),h=p(449),L=p(1159),w=p(3075),D=p(7579),S=p(9770),k=p(6451),E=p(8675),B=p(3900),Z=p(5698),Y=p(9300),ae=p(4004),ee=p(1884),ue=p(2722),ie=p(1777),re=p(226);const ge=["trigger"],q=["panel"];function _e(Te,xe){if(1&Te&&(f.TgZ(0,"span",8),f._uU(1),f.qZA()),2&Te){const W=f.oxw();f.xp6(1),f.Oqu(W.placeholder)}}function x(Te,xe){if(1&Te&&(f.TgZ(0,"span",12),f._uU(1),f.qZA()),2&Te){const W=f.oxw(2);f.xp6(1),f.Oqu(W.triggerValue)}}function i(Te,xe){1&Te&&f.Hsn(0,0,["*ngSwitchCase","true"])}function r(Te,xe){if(1&Te&&(f.TgZ(0,"span",9),f.YNc(1,x,2,1,"span",10),f.YNc(2,i,1,0,"ng-content",11),f.qZA()),2&Te){const W=f.oxw();f.Q6J("ngSwitch",!!W.customTrigger),f.xp6(2),f.Q6J("ngSwitchCase",!0)}}function u(Te,xe){if(1&Te){const W=f.EpF();f.TgZ(0,"div",13)(1,"div",14,15),f.NdJ("@transformPanel.done",function(Ce){return f.CHM(W),f.oxw()._panelDoneAnimatingStream.next(Ce.toState)})("keydown",function(Ce){return f.CHM(W),f.oxw()._handleKeydown(Ce)}),f.Hsn(3,1),f.qZA()()}if(2&Te){const W=f.oxw();f.Q6J("@transformPanelWrap",void 0),f.xp6(1),f.Gre("mat-select-panel ",W._getPanelTheme(),""),f.Udp("transform-origin",W._transformOrigin)("font-size",W._triggerFontSize,"px"),f.Q6J("ngClass",W.panelClass)("@transformPanel",W.multiple?"showing-multiple":"showing"),f.uIk("id",W.id+"-panel")("aria-multiselectable",W.multiple)("aria-label",W.ariaLabel||null)("aria-labelledby",W._getPanelAriaLabelledby())}}const c=[[["mat-select-trigger"]],"*"],v=["mat-select-trigger","*"],T={transformPanelWrap:(0,ie.X$)("transformPanelWrap",[(0,ie.eR)("* => void",(0,ie.IO)("@transformPanel",[(0,ie.pV)()],{optional:!0}))]),transformPanel:(0,ie.X$)("transformPanel",[(0,ie.SB)("void",(0,ie.oB)({transform:"scaleY(0.8)",minWidth:"100%",opacity:0})),(0,ie.SB)("showing",(0,ie.oB)({opacity:1,minWidth:"calc(100% + 32px)",transform:"scaleY(1)"})),(0,ie.SB)("showing-multiple",(0,ie.oB)({opacity:1,minWidth:"calc(100% + 64px)",transform:"scaleY(1)"})),(0,ie.eR)("void => *",(0,ie.jt)("120ms cubic-bezier(0, 0, 0.2, 1)")),(0,ie.eR)("* => void",(0,ie.jt)("100ms 25ms linear",(0,ie.oB)({opacity:0})))])};let _=0;const V=256,Pe=new f.OlP("mat-select-scroll-strategy"),j=new f.OlP("MAT_SELECT_CONFIG"),Ve={provide:Pe,deps:[t.aV],useFactory:function Ee(Te){return()=>Te.scrollStrategies.reposition()}};class Me{constructor(xe,W){this.source=xe,this.value=W}}const J=(0,M.Kr)((0,M.sb)((0,M.Id)((0,M.FD)(class{constructor(Te,xe,W,te,Ce){this._elementRef=Te,this._defaultErrorStateMatcher=xe,this._parentForm=W,this._parentFormGroup=te,this.ngControl=Ce}})))),Ie=new f.OlP("MatSelectTrigger");let ut=(()=>{class Te{}return Te.\u0275fac=function(W){return new(W||Te)},Te.\u0275dir=f.lG2({type:Te,selectors:[["mat-select-trigger"]],features:[f._Bn([{provide:Ie,useExisting:Te}])]}),Te})(),Oe=(()=>{class Te extends J{constructor(W,te,Ce,fe,Q,ft,tt,Dt,di,Yt,Zt,ui,Ot,Nt){var gt,it,bt;super(Q,fe,tt,Dt,Yt),this._viewportRuler=W,this._changeDetectorRef=te,this._ngZone=Ce,this._dir=ft,this._parentFormField=di,this._liveAnnouncer=Ot,this._defaultOptions=Nt,this._panelOpen=!1,this._compareWith=(ei,Qt)=>ei===Qt,this._uid="mat-select-"+_++,this._triggerAriaLabelledBy=null,this._destroy=new D.x,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+_++,this._panelDoneAnimatingStream=new D.x,this._overlayPanelClass=(null===(gt=this._defaultOptions)||void 0===gt?void 0:gt.overlayPanelClass)||"",this._focused=!1,this.controlType="mat-select",this._multiple=!1,this._disableOptionCentering=null!==(bt=null===(it=this._defaultOptions)||void 0===it?void 0:it.disableOptionCentering)&&void 0!==bt&&bt,this.ariaLabel="",this.optionSelectionChanges=(0,S.P)(()=>{const ei=this.options;return ei?ei.changes.pipe((0,E.O)(ei),(0,B.w)(()=>(0,k.T)(...ei.map(Qt=>Qt.onSelectionChange)))):this._ngZone.onStable.pipe((0,Z.q)(1),(0,B.w)(()=>this.optionSelectionChanges))}),this.openedChange=new f.vpe,this._openedStream=this.openedChange.pipe((0,Y.h)(ei=>ei),(0,ae.U)(()=>{})),this._closedStream=this.openedChange.pipe((0,Y.h)(ei=>!ei),(0,ae.U)(()=>{})),this.selectionChange=new f.vpe,this.valueChange=new f.vpe,this.ngControl&&(this.ngControl.valueAccessor=this),null!=(null==Nt?void 0:Nt.typeaheadDebounceInterval)&&(this._typeaheadDebounceInterval=Nt.typeaheadDebounceInterval),this._scrollStrategyFactory=ui,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(Zt)||0,this.id=this.id}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(W){this._placeholder=W,this.stateChanges.next()}get required(){var W,te,Ce,fe;return null!==(fe=null!==(W=this._required)&&void 0!==W?W:null===(Ce=null===(te=this.ngControl)||void 0===te?void 0:te.control)||void 0===Ce?void 0:Ce.hasValidator(w.kI.required))&&void 0!==fe&&fe}set required(W){this._required=(0,R.Ig)(W),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(W){this._multiple=(0,R.Ig)(W)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(W){this._disableOptionCentering=(0,R.Ig)(W)}get compareWith(){return this._compareWith}set compareWith(W){this._compareWith=W,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(W){this._assignValue(W)&&this._onChange(W)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(W){this._typeaheadDebounceInterval=(0,R.su)(W)}get id(){return this._id}set id(W){this._id=W||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new h.Ov(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,ee.x)(),(0,ue.R)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen))}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe((0,ue.R)(this._destroy)).subscribe(W=>{W.added.forEach(te=>te.select()),W.removed.forEach(te=>te.deselect())}),this.options.changes.pipe((0,E.O)(null),(0,ue.R)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const W=this._getTriggerAriaLabelledby(),te=this.ngControl;if(W!==this._triggerAriaLabelledBy){const Ce=this._elementRef.nativeElement;this._triggerAriaLabelledBy=W,W?Ce.setAttribute("aria-labelledby",W):Ce.removeAttribute("aria-labelledby")}te&&(this._previousControl!==te.control&&(void 0!==this._previousControl&&null!==te.disabled&&te.disabled!==this.disabled&&(this.disabled=te.disabled),this._previousControl=te.control),this.updateErrorState())}ngOnChanges(W){W.disabled&&this.stateChanges.next(),W.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck())}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(W){this._assignValue(W)}registerOnChange(W){this._onChange=W}registerOnTouched(W){this._onTouched=W}setDisabledState(W){this.disabled=W,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){var W,te;return this.multiple?(null===(W=this._selectionModel)||void 0===W?void 0:W.selected)||[]:null===(te=this._selectionModel)||void 0===te?void 0:te.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const W=this._selectionModel.selected.map(te=>te.viewValue);return this._isRtl()&&W.reverse(),W.join(", ")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(W){this.disabled||(this.panelOpen?this._handleOpenKeydown(W):this._handleClosedKeydown(W))}_handleClosedKeydown(W){const te=W.keyCode,Ce=te===L.JH||te===L.LH||te===L.oh||te===L.SV,fe=te===L.K5||te===L.L_,Q=this._keyManager;if(!Q.isTyping()&&fe&&!(0,L.Vb)(W)||(this.multiple||W.altKey)&&Ce)W.preventDefault(),this.open();else if(!this.multiple){const ft=this.selected;Q.onKeydown(W);const tt=this.selected;tt&&ft!==tt&&this._liveAnnouncer.announce(tt.viewValue,1e4)}}_handleOpenKeydown(W){const te=this._keyManager,Ce=W.keyCode,fe=Ce===L.JH||Ce===L.LH,Q=te.isTyping();if(fe&&W.altKey)W.preventDefault(),this.close();else if(Q||Ce!==L.K5&&Ce!==L.L_||!te.activeItem||(0,L.Vb)(W))if(!Q&&this._multiple&&Ce===L.A&&W.ctrlKey){W.preventDefault();const ft=this.options.some(tt=>!tt.disabled&&!tt.selected);this.options.forEach(tt=>{tt.disabled||(ft?tt.select():tt.deselect())})}else{const ft=te.activeItemIndex;te.onKeydown(W),this._multiple&&fe&&W.shiftKey&&te.activeItem&&te.activeItemIndex!==ft&&te.activeItem._selectViaInteraction()}else W.preventDefault(),te.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,Z.q)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(W){if(this._selectionModel.selected.forEach(te=>te.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&W)Array.isArray(W),W.forEach(te=>this._selectOptionByValue(te)),this._sortValues();else{const te=this._selectOptionByValue(W);te?this._keyManager.updateActiveItem(te):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(W){const te=this.options.find(Ce=>{if(this._selectionModel.isSelected(Ce))return!1;try{return null!=Ce.value&&this._compareWith(Ce.value,W)}catch(fe){return!1}});return te&&this._selectionModel.select(te),te}_assignValue(W){return!!(W!==this._value||this._multiple&&Array.isArray(W))&&(this.options&&this._setSelectionByValue(W),this._value=W,!0)}_initKeyManager(){this._keyManager=new d.s1(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withAllowedModifierKeys(["shiftKey"]),this._keyManager.tabOut.pipe((0,ue.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.pipe((0,ue.R)(this._destroy)).subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const W=(0,k.T)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,ue.R)(W)).subscribe(te=>{this._onSelect(te.source,te.isUserInput),te.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,k.T)(...this.options.map(te=>te._stateChanges)).pipe((0,ue.R)(W)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}_onSelect(W,te){const Ce=this._selectionModel.isSelected(W);null!=W.value||this._multiple?(Ce!==W.selected&&(W.selected?this._selectionModel.select(W):this._selectionModel.deselect(W)),te&&this._keyManager.setActiveItem(W),this.multiple&&(this._sortValues(),te&&this.focus())):(W.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(W.value)),Ce!==this._selectionModel.isSelected(W)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const W=this.options.toArray();this._selectionModel.sort((te,Ce)=>this.sortComparator?this.sortComparator(te,Ce,W):W.indexOf(te)-W.indexOf(Ce)),this.stateChanges.next()}}_propagateChanges(W){let te=null;te=this.multiple?this.selected.map(Ce=>Ce.value):this.selected?this.selected.value:W,this._value=te,this.valueChange.emit(te),this._onChange(te),this.selectionChange.emit(this._getChangeEvent(te)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_canOpen(){var W;return!this._panelOpen&&!this.disabled&&(null===(W=this.options)||void 0===W?void 0:W.length)>0}focus(W){this._elementRef.nativeElement.focus(W)}_getPanelAriaLabelledby(){var W;if(this.ariaLabel)return null;const te=null===(W=this._parentFormField)||void 0===W?void 0:W.getLabelId();return this.ariaLabelledby?(te?te+" ":"")+this.ariaLabelledby:te}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){var W;if(this.ariaLabel)return null;const te=null===(W=this._parentFormField)||void 0===W?void 0:W.getLabelId();let Ce=(te?te+" ":"")+this._valueId;return this.ariaLabelledby&&(Ce+=" "+this.ariaLabelledby),Ce}_panelDoneAnimating(W){this.openedChange.emit(W)}setDescribedByIds(W){this._ariaDescribedby=W.join(" ")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty||this._focused&&!!this._placeholder}}return Te.\u0275fac=function(W){return new(W||Te)(f.Y36(C.rL),f.Y36(f.sBO),f.Y36(f.R0b),f.Y36(M.rD),f.Y36(f.SBq),f.Y36(re.Is,8),f.Y36(w.F,8),f.Y36(w.sg,8),f.Y36(a.G_,8),f.Y36(w.a5,10),f.$8M("tabindex"),f.Y36(Pe),f.Y36(d.Kd),f.Y36(j,8))},Te.\u0275dir=f.lG2({type:Te,viewQuery:function(W,te){if(1&W&&(f.Gf(ge,5),f.Gf(q,5),f.Gf(t.pI,5)),2&W){let Ce;f.iGM(Ce=f.CRH())&&(te.trigger=Ce.first),f.iGM(Ce=f.CRH())&&(te.panel=Ce.first),f.iGM(Ce=f.CRH())&&(te._overlayDir=Ce.first)}},inputs:{panelClass:"panelClass",placeholder:"placeholder",required:"required",multiple:"multiple",disableOptionCentering:"disableOptionCentering",compareWith:"compareWith",value:"value",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:"typeaheadDebounceInterval",sortComparator:"sortComparator",id:"id"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},features:[f.qOj,f.TTD]}),Te})(),we=(()=>{class Te extends Oe{constructor(){super(...arguments),this._scrollTop=0,this._triggerFontSize=0,this._transformOrigin="top",this._offsetY=0,this._positions=[{originX:"start",originY:"top",overlayX:"start",overlayY:"top"},{originX:"start",originY:"bottom",overlayX:"start",overlayY:"bottom"}]}_calculateOverlayScroll(W,te,Ce){const fe=this._getItemHeight();return Math.min(Math.max(0,fe*W-te+fe/2),Ce)}ngOnInit(){super.ngOnInit(),this._viewportRuler.change().pipe((0,ue.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._changeDetectorRef.markForCheck())})}open(){super._canOpen()&&(super.open(),this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||"0"),this._calculateOverlayPosition(),this._ngZone.onStable.pipe((0,Z.q)(1)).subscribe(()=>{this._triggerFontSize&&this._overlayDir.overlayRef&&this._overlayDir.overlayRef.overlayElement&&(this._overlayDir.overlayRef.overlayElement.style.fontSize=`${this._triggerFontSize}px`)}))}_scrollOptionIntoView(W){const te=(0,M.CB)(W,this.options,this.optionGroups),Ce=this._getItemHeight();this.panel.nativeElement.scrollTop=0===W&&1===te?0:(0,M.jH)((W+te)*Ce,Ce,this.panel.nativeElement.scrollTop,V)}_positioningSettled(){this._calculateOverlayOffsetX(),this.panel.nativeElement.scrollTop=this._scrollTop}_panelDoneAnimating(W){this.panelOpen?this._scrollTop=0:(this._overlayDir.offsetX=0,this._changeDetectorRef.markForCheck()),super._panelDoneAnimating(W)}_getChangeEvent(W){return new Me(this,W)}_calculateOverlayOffsetX(){const W=this._overlayDir.overlayRef.overlayElement.getBoundingClientRect(),te=this._viewportRuler.getViewportSize(),Ce=this._isRtl(),fe=this.multiple?56:32;let Q;if(this.multiple)Q=40;else if(this.disableOptionCentering)Q=16;else{let Dt=this._selectionModel.selected[0]||this.options.first;Q=Dt&&Dt.group?32:16}Ce||(Q*=-1);const ft=0-(W.left+Q-(Ce?fe:0)),tt=W.right+Q-te.width+(Ce?0:fe);ft>0?Q+=ft+8:tt>0&&(Q-=tt+8),this._overlayDir.offsetX=Math.round(Q),this._overlayDir.overlayRef.updatePosition()}_calculateOverlayOffsetY(W,te,Ce){const fe=this._getItemHeight(),Q=(fe-this._triggerRect.height)/2,ft=Math.floor(V/fe);let tt;return this.disableOptionCentering?0:(tt=0===this._scrollTop?W*fe:this._scrollTop===Ce?(W-(this._getItemCount()-ft))*fe+(fe-(this._getItemCount()*fe-V)%fe):te-fe/2,Math.round(-1*tt-Q))}_checkOverlayWithinViewport(W){const te=this._getItemHeight(),Ce=this._viewportRuler.getViewportSize(),fe=this._triggerRect.top-8,Q=Ce.height-this._triggerRect.bottom-8,ft=Math.abs(this._offsetY),Dt=Math.min(this._getItemCount()*te,V)-ft-this._triggerRect.height;Dt>Q?this._adjustPanelUp(Dt,Q):ft>fe?this._adjustPanelDown(ft,fe,W):this._transformOrigin=this._getOriginBasedOnOption()}_adjustPanelUp(W,te){const Ce=Math.round(W-te);this._scrollTop-=Ce,this._offsetY-=Ce,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin="50% bottom 0px")}_adjustPanelDown(W,te,Ce){const fe=Math.round(W-te);if(this._scrollTop+=fe,this._offsetY+=fe,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=Ce)return this._scrollTop=Ce,this._offsetY=0,void(this._transformOrigin="50% top 0px")}_calculateOverlayPosition(){const W=this._getItemHeight(),te=this._getItemCount(),Ce=Math.min(te*W,V),Q=te*W-Ce;let ft;ft=this.empty?0:Math.max(this.options.toArray().indexOf(this._selectionModel.selected[0]),0),ft+=(0,M.CB)(ft,this.options,this.optionGroups);const tt=Ce/2;this._scrollTop=this._calculateOverlayScroll(ft,tt,Q),this._offsetY=this._calculateOverlayOffsetY(ft,tt,Q),this._checkOverlayWithinViewport(Q)}_getOriginBasedOnOption(){const W=this._getItemHeight(),te=(W-this._triggerRect.height)/2;return`50% ${Math.abs(this._offsetY)-te+W/2}px 0px`}_getItemHeight(){return 3*this._triggerFontSize}_getItemCount(){return this.options.length+this.optionGroups.length}}return Te.\u0275fac=function(){let xe;return function(te){return(xe||(xe=f.n5z(Te)))(te||Te)}}(),Te.\u0275cmp=f.Xpm({type:Te,selectors:[["mat-select"]],contentQueries:function(W,te,Ce){if(1&W&&(f.Suo(Ce,Ie,5),f.Suo(Ce,M.ey,5),f.Suo(Ce,M.K7,5)),2&W){let fe;f.iGM(fe=f.CRH())&&(te.customTrigger=fe.first),f.iGM(fe=f.CRH())&&(te.options=fe),f.iGM(fe=f.CRH())&&(te.optionGroups=fe)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","true",1,"mat-select"],hostVars:20,hostBindings:function(W,te){1&W&&f.NdJ("keydown",function(fe){return te._handleKeydown(fe)})("focus",function(){return te._onFocus()})("blur",function(){return te._onBlur()}),2&W&&(f.uIk("id",te.id)("tabindex",te.tabIndex)("aria-controls",te.panelOpen?te.id+"-panel":null)("aria-expanded",te.panelOpen)("aria-label",te.ariaLabel||null)("aria-required",te.required.toString())("aria-disabled",te.disabled.toString())("aria-invalid",te.errorState)("aria-describedby",te._ariaDescribedby||null)("aria-activedescendant",te._getAriaActiveDescendant()),f.ekj("mat-select-disabled",te.disabled)("mat-select-invalid",te.errorState)("mat-select-required",te.required)("mat-select-empty",te.empty)("mat-select-multiple",te.multiple))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matSelect"],features:[f._Bn([{provide:a.Eo,useExisting:Te},{provide:M.HF,useExisting:Te}]),f.qOj],ngContentSelectors:v,decls:9,vars:12,consts:[["cdk-overlay-origin","",1,"mat-select-trigger",3,"click"],["origin","cdkOverlayOrigin","trigger",""],[1,"mat-select-value",3,"ngSwitch"],["class","mat-select-placeholder mat-select-min-line",4,"ngSwitchCase"],["class","mat-select-value-text",3,"ngSwitch",4,"ngSwitchCase"],[1,"mat-select-arrow-wrapper"],[1,"mat-select-arrow"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayMinWidth","cdkConnectedOverlayOffsetY","backdropClick","attach","detach"],[1,"mat-select-placeholder","mat-select-min-line"],[1,"mat-select-value-text",3,"ngSwitch"],["class","mat-select-min-line",4,"ngSwitchDefault"],[4,"ngSwitchCase"],[1,"mat-select-min-line"],[1,"mat-select-panel-wrap"],["role","listbox","tabindex","-1",3,"ngClass","keydown"],["panel",""]],template:function(W,te){if(1&W&&(f.F$t(c),f.TgZ(0,"div",0,1),f.NdJ("click",function(){return te.toggle()}),f.TgZ(3,"div",2),f.YNc(4,_e,2,1,"span",3),f.YNc(5,r,3,2,"span",4),f.qZA(),f.TgZ(6,"div",5),f._UZ(7,"div",6),f.qZA()(),f.YNc(8,u,4,14,"ng-template",7),f.NdJ("backdropClick",function(){return te.close()})("attach",function(){return te._onAttached()})("detach",function(){return te.close()})),2&W){const Ce=f.MAs(1);f.uIk("aria-owns",te.panelOpen?te.id+"-panel":null),f.xp6(3),f.Q6J("ngSwitch",te.empty),f.uIk("id",te._valueId),f.xp6(1),f.Q6J("ngSwitchCase",!0),f.xp6(1),f.Q6J("ngSwitchCase",!1),f.xp6(3),f.Q6J("cdkConnectedOverlayPanelClass",te._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",te._scrollStrategy)("cdkConnectedOverlayOrigin",Ce)("cdkConnectedOverlayOpen",te.panelOpen)("cdkConnectedOverlayPositions",te._positions)("cdkConnectedOverlayMinWidth",null==te._triggerRect?null:te._triggerRect.width)("cdkConnectedOverlayOffsetY",te._offsetY)}},directives:[t.xu,e.RF,e.n9,e.ED,t.pI,e.mk],styles:['.mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{height:16px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-form-field.mat-focused .mat-select-arrow{transform:translateX(0)}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px;outline:0}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}.mat-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}\n'],encapsulation:2,data:{animation:[T.transformPanelWrap,T.transformPanel]},changeDetection:0}),Te})(),ce=(()=>{class Te{}return Te.\u0275fac=function(W){return new(W||Te)},Te.\u0275mod=f.oAB({type:Te}),Te.\u0275inj=f.cJS({providers:[Ve],imports:[[e.ez,t.U8,M.Ng,M.BQ],C.ZD,a.lN,M.Ng,M.BQ]}),Te})()},2638:(Be,K,p)=>{"use strict";p.d(K,{JX:()=>be,Rh:()=>he,SJ:()=>Ee,TM:()=>Pe});var t=p(5303),e=p(9808),f=p(5e3),M=p(508),a=p(3191),C=p(1159),d=p(7579),R=p(4968),h=p(6451),L=p(9300),w=p(4004),D=p(9718),S=p(2722),k=p(1884),E=p(5698),B=p(8675),Z=p(8372),Y=p(1777),ae=p(6360),ee=p(5664),ue=p(925),ie=p(226);const re=["*"],ge=["content"];function q(j,Ve){if(1&j){const Me=f.EpF();f.TgZ(0,"div",2),f.NdJ("click",function(){return f.CHM(Me),f.oxw()._onBackdropClicked()}),f.qZA()}if(2&j){const Me=f.oxw();f.ekj("mat-drawer-shown",Me._isShowingBackdrop())}}function _e(j,Ve){1&j&&(f.TgZ(0,"mat-drawer-content"),f.Hsn(1,2),f.qZA())}const x=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],i=["mat-drawer","mat-drawer-content","*"];function r(j,Ve){if(1&j){const Me=f.EpF();f.TgZ(0,"div",2),f.NdJ("click",function(){return f.CHM(Me),f.oxw()._onBackdropClicked()}),f.qZA()}if(2&j){const Me=f.oxw();f.ekj("mat-drawer-shown",Me._isShowingBackdrop())}}function u(j,Ve){1&j&&(f.TgZ(0,"mat-sidenav-content"),f.Hsn(1,2),f.qZA())}const c=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],v=["mat-sidenav","mat-sidenav-content","*"],I={transformDrawer:(0,Y.X$)("transform",[(0,Y.SB)("open, open-instant",(0,Y.oB)({transform:"none",visibility:"visible"})),(0,Y.SB)("void",(0,Y.oB)({"box-shadow":"none",visibility:"hidden"})),(0,Y.eR)("void => open-instant",(0,Y.jt)("0ms")),(0,Y.eR)("void <=> open, open-instant => void",(0,Y.jt)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},n=new f.OlP("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function V(){return!1}}),_=new f.OlP("MAT_DRAWER_CONTAINER");let N=(()=>{class j extends t.PQ{constructor(Me,J,Ie,ut,Oe){super(Ie,ut,Oe),this._changeDetectorRef=Me,this._container=J}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}}return j.\u0275fac=function(Me){return new(Me||j)(f.Y36(f.sBO),f.Y36((0,f.Gpc)(()=>X)),f.Y36(f.SBq),f.Y36(t.mF),f.Y36(f.R0b))},j.\u0275cmp=f.Xpm({type:j,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:4,hostBindings:function(Me,J){2&Me&&f.Udp("margin-left",J._container._contentMargins.left,"px")("margin-right",J._container._contentMargins.right,"px")},features:[f._Bn([{provide:t.PQ,useExisting:j}]),f.qOj],ngContentSelectors:re,decls:1,vars:0,template:function(Me,J){1&Me&&(f.F$t(),f.Hsn(0))},encapsulation:2,changeDetection:0}),j})(),H=(()=>{class j{constructor(Me,J,Ie,ut,Oe,we,ce,Te){this._elementRef=Me,this._focusTrapFactory=J,this._focusMonitor=Ie,this._platform=ut,this._ngZone=Oe,this._interactivityChecker=we,this._doc=ce,this._container=Te,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new d.x,this._animationEnd=new d.x,this._animationState="void",this.openedChange=new f.vpe(!0),this._openedStream=this.openedChange.pipe((0,L.h)(xe=>xe),(0,w.U)(()=>{})),this.openedStart=this._animationStarted.pipe((0,L.h)(xe=>xe.fromState!==xe.toState&&0===xe.toState.indexOf("open")),(0,D.h)(void 0)),this._closedStream=this.openedChange.pipe((0,L.h)(xe=>!xe),(0,w.U)(()=>{})),this.closedStart=this._animationStarted.pipe((0,L.h)(xe=>xe.fromState!==xe.toState&&"void"===xe.toState),(0,D.h)(void 0)),this._destroyed=new d.x,this.onPositionChanged=new f.vpe,this._modeChanged=new d.x,this.openedChange.subscribe(xe=>{xe?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,R.R)(this._elementRef.nativeElement,"keydown").pipe((0,L.h)(xe=>xe.keyCode===C.hY&&!this.disableClose&&!(0,C.Vb)(xe)),(0,S.R)(this._destroyed)).subscribe(xe=>this._ngZone.run(()=>{this.close(),xe.stopPropagation(),xe.preventDefault()}))}),this._animationEnd.pipe((0,k.x)((xe,W)=>xe.fromState===W.fromState&&xe.toState===W.toState)).subscribe(xe=>{const{fromState:W,toState:te}=xe;(0===te.indexOf("open")&&"void"===W||"void"===te&&0===W.indexOf("open"))&&this.openedChange.emit(this._opened)})}get position(){return this._position}set position(Me){(Me="end"===Me?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(Me),this._position=Me,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(Me){this._mode=Me,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(Me){this._disableClose=(0,a.Ig)(Me)}get autoFocus(){const Me=this._autoFocus;return null==Me?"side"===this.mode?"dialog":"first-tabbable":Me}set autoFocus(Me){("true"===Me||"false"===Me||null==Me)&&(Me=(0,a.Ig)(Me)),this._autoFocus=Me}get opened(){return this._opened}set opened(Me){this.toggle((0,a.Ig)(Me))}_forceFocus(Me,J){this._interactivityChecker.isFocusable(Me)||(Me.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Ie=()=>{Me.removeEventListener("blur",Ie),Me.removeEventListener("mousedown",Ie),Me.removeAttribute("tabindex")};Me.addEventListener("blur",Ie),Me.addEventListener("mousedown",Ie)})),Me.focus(J)}_focusByCssSelector(Me,J){let Ie=this._elementRef.nativeElement.querySelector(Me);Ie&&this._forceFocus(Ie,J)}_takeFocus(){if(!this._focusTrap)return;const Me=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(J=>{!J&&"function"==typeof this._elementRef.nativeElement.focus&&Me.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(Me){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,Me):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const Me=this._doc.activeElement;return!!Me&&this._elementRef.nativeElement.contains(Me)}ngAfterViewInit(){this._isAttached=!0,this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState(),"end"===this._position&&this._updatePositionInParent("end")}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){var Me;this._focusTrap&&this._focusTrap.destroy(),null===(Me=this._anchor)||void 0===Me||Me.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(Me){return this.toggle(!0,Me)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(Me=!this.opened,J){Me&&J&&(this._openedVia=J);const Ie=this._setOpen(Me,!Me&&this._isFocusWithinDrawer(),this._openedVia||"program");return Me||(this._openedVia=null),Ie}_setOpen(Me,J,Ie){return this._opened=Me,Me?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",J&&this._restoreFocus(Ie)),this._updateFocusTrapState(),new Promise(ut=>{this.openedChange.pipe((0,E.q)(1)).subscribe(Oe=>ut(Oe?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&"side"!==this.mode)}_updatePositionInParent(Me){const J=this._elementRef.nativeElement,Ie=J.parentNode;"end"===Me?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),Ie.insertBefore(this._anchor,J)),Ie.appendChild(J)):this._anchor&&this._anchor.parentNode.insertBefore(J,this._anchor)}}return j.\u0275fac=function(Me){return new(Me||j)(f.Y36(f.SBq),f.Y36(ee.qV),f.Y36(ee.tE),f.Y36(ue.t4),f.Y36(f.R0b),f.Y36(ee.ic),f.Y36(e.K0,8),f.Y36(_,8))},j.\u0275cmp=f.Xpm({type:j,selectors:[["mat-drawer"]],viewQuery:function(Me,J){if(1&Me&&f.Gf(ge,5),2&Me){let Ie;f.iGM(Ie=f.CRH())&&(J._content=Ie.first)}},hostAttrs:["tabIndex","-1",1,"mat-drawer"],hostVars:12,hostBindings:function(Me,J){1&Me&&f.WFA("@transform.start",function(ut){return J._animationStarted.next(ut)})("@transform.done",function(ut){return J._animationEnd.next(ut)}),2&Me&&(f.uIk("align",null),f.d8E("@transform",J._animationState),f.ekj("mat-drawer-end","end"===J.position)("mat-drawer-over","over"===J.mode)("mat-drawer-push","push"===J.mode)("mat-drawer-side","side"===J.mode)("mat-drawer-opened",J.opened))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],ngContentSelectors:re,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(Me,J){1&Me&&(f.F$t(),f.TgZ(0,"div",0,1),f.Hsn(2),f.qZA())},directives:[t.PQ],encapsulation:2,data:{animation:[I.transformDrawer]},changeDetection:0}),j})(),X=(()=>{class j{constructor(Me,J,Ie,ut,Oe,we=!1,ce){this._dir=Me,this._element=J,this._ngZone=Ie,this._changeDetectorRef=ut,this._animationMode=ce,this._drawers=new f.n_E,this.backdropClick=new f.vpe,this._destroyed=new d.x,this._doCheckSubject=new d.x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new d.x,Me&&Me.change.pipe((0,S.R)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),Oe.change().pipe((0,S.R)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=we}get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(Me){this._autosize=(0,a.Ig)(Me)}get hasBackdrop(){return null==this._backdropOverride?!this._start||"side"!==this._start.mode||!this._end||"side"!==this._end.mode:this._backdropOverride}set hasBackdrop(Me){this._backdropOverride=null==Me?null:(0,a.Ig)(Me)}get scrollable(){return this._userContent||this._content}ngAfterContentInit(){this._allDrawers.changes.pipe((0,B.O)(this._allDrawers),(0,S.R)(this._destroyed)).subscribe(Me=>{this._drawers.reset(Me.filter(J=>!J._container||J._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,B.O)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(Me=>{this._watchDrawerToggle(Me),this._watchDrawerPosition(Me),this._watchDrawerMode(Me)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,Z.b)(10),(0,S.R)(this._destroyed)).subscribe(()=>this.updateContentMargins())})}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(Me=>Me.open())}close(){this._drawers.forEach(Me=>Me.close())}updateContentMargins(){let Me=0,J=0;if(this._left&&this._left.opened)if("side"==this._left.mode)Me+=this._left._getWidth();else if("push"==this._left.mode){const Ie=this._left._getWidth();Me+=Ie,J-=Ie}if(this._right&&this._right.opened)if("side"==this._right.mode)J+=this._right._getWidth();else if("push"==this._right.mode){const Ie=this._right._getWidth();J+=Ie,Me-=Ie}Me=Me||null,J=J||null,(Me!==this._contentMargins.left||J!==this._contentMargins.right)&&(this._contentMargins={left:Me,right:J},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(Me){Me._animationStarted.pipe((0,L.h)(J=>J.fromState!==J.toState),(0,S.R)(this._drawers.changes)).subscribe(J=>{"open-instant"!==J.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==Me.mode&&Me.openedChange.pipe((0,S.R)(this._drawers.changes)).subscribe(()=>this._setContainerClass(Me.opened))}_watchDrawerPosition(Me){!Me||Me.onPositionChanged.pipe((0,S.R)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,E.q)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(Me){Me&&Me._modeChanged.pipe((0,S.R)((0,h.T)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(Me){const J=this._element.nativeElement.classList,Ie="mat-drawer-container-has-open";Me?J.add(Ie):J.remove(Ie)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(Me=>{"end"==Me.position?this._end=Me:this._start=Me}),this._right=this._left=null,this._dir&&"rtl"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&"over"!=this._start.mode||this._isDrawerOpen(this._end)&&"over"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(Me=>Me&&!Me.disableClose&&this._canHaveBackdrop(Me)).forEach(Me=>Me._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}_canHaveBackdrop(Me){return"side"!==Me.mode||!!this._backdropOverride}_isDrawerOpen(Me){return null!=Me&&Me.opened}}return j.\u0275fac=function(Me){return new(Me||j)(f.Y36(ie.Is,8),f.Y36(f.SBq),f.Y36(f.R0b),f.Y36(f.sBO),f.Y36(t.rL),f.Y36(n),f.Y36(ae.Qb,8))},j.\u0275cmp=f.Xpm({type:j,selectors:[["mat-drawer-container"]],contentQueries:function(Me,J,Ie){if(1&Me&&(f.Suo(Ie,N,5),f.Suo(Ie,H,5)),2&Me){let ut;f.iGM(ut=f.CRH())&&(J._content=ut.first),f.iGM(ut=f.CRH())&&(J._allDrawers=ut)}},viewQuery:function(Me,J){if(1&Me&&f.Gf(N,5),2&Me){let Ie;f.iGM(Ie=f.CRH())&&(J._userContent=Ie.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(Me,J){2&Me&&f.ekj("mat-drawer-container-explicit-backdrop",J._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[f._Bn([{provide:_,useExisting:j}])],ngContentSelectors:i,decls:4,vars:2,consts:[["class","mat-drawer-backdrop",3,"mat-drawer-shown","click",4,"ngIf"],[4,"ngIf"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Me,J){1&Me&&(f.F$t(x),f.YNc(0,q,1,2,"div",0),f.Hsn(1),f.Hsn(2,1),f.YNc(3,_e,2,0,"mat-drawer-content",1)),2&Me&&(f.Q6J("ngIf",J.hasBackdrop),f.xp6(3),f.Q6J("ngIf",!J._content))},directives:[N,e.O5],styles:['.mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\n'],encapsulation:2,changeDetection:0}),j})(),he=(()=>{class j extends N{constructor(Me,J,Ie,ut,Oe){super(Me,J,Ie,ut,Oe)}}return j.\u0275fac=function(Me){return new(Me||j)(f.Y36(f.sBO),f.Y36((0,f.Gpc)(()=>Pe)),f.Y36(f.SBq),f.Y36(t.mF),f.Y36(f.R0b))},j.\u0275cmp=f.Xpm({type:j,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(Me,J){2&Me&&f.Udp("margin-left",J._container._contentMargins.left,"px")("margin-right",J._container._contentMargins.right,"px")},features:[f._Bn([{provide:t.PQ,useExisting:j}]),f.qOj],ngContentSelectors:re,decls:1,vars:0,template:function(Me,J){1&Me&&(f.F$t(),f.Hsn(0))},encapsulation:2,changeDetection:0}),j})(),be=(()=>{class j extends H{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(Me){this._fixedInViewport=(0,a.Ig)(Me)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(Me){this._fixedTopGap=(0,a.su)(Me)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(Me){this._fixedBottomGap=(0,a.su)(Me)}}return j.\u0275fac=function(){let Ve;return function(J){return(Ve||(Ve=f.n5z(j)))(J||j)}}(),j.\u0275cmp=f.Xpm({type:j,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(Me,J){2&Me&&(f.uIk("align",null),f.Udp("top",J.fixedInViewport?J.fixedTopGap:null,"px")("bottom",J.fixedInViewport?J.fixedBottomGap:null,"px"),f.ekj("mat-drawer-end","end"===J.position)("mat-drawer-over","over"===J.mode)("mat-drawer-push","push"===J.mode)("mat-drawer-side","side"===J.mode)("mat-drawer-opened",J.opened)("mat-sidenav-fixed",J.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[f.qOj],ngContentSelectors:re,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(Me,J){1&Me&&(f.F$t(),f.TgZ(0,"div",0,1),f.Hsn(2),f.qZA())},directives:[t.PQ],encapsulation:2,data:{animation:[I.transformDrawer]},changeDetection:0}),j})(),Pe=(()=>{class j extends X{}return j.\u0275fac=function(){let Ve;return function(J){return(Ve||(Ve=f.n5z(j)))(J||j)}}(),j.\u0275cmp=f.Xpm({type:j,selectors:[["mat-sidenav-container"]],contentQueries:function(Me,J,Ie){if(1&Me&&(f.Suo(Ie,he,5),f.Suo(Ie,be,5)),2&Me){let ut;f.iGM(ut=f.CRH())&&(J._content=ut.first),f.iGM(ut=f.CRH())&&(J._allDrawers=ut)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(Me,J){2&Me&&f.ekj("mat-drawer-container-explicit-backdrop",J._backdropOverride)},exportAs:["matSidenavContainer"],features:[f._Bn([{provide:_,useExisting:j}]),f.qOj],ngContentSelectors:v,decls:4,vars:2,consts:[["class","mat-drawer-backdrop",3,"mat-drawer-shown","click",4,"ngIf"],[4,"ngIf"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Me,J){1&Me&&(f.F$t(c),f.YNc(0,r,1,2,"div",0),f.Hsn(1),f.Hsn(2,1),f.YNc(3,u,2,0,"mat-sidenav-content",1)),2&Me&&(f.Q6J("ngIf",J.hasBackdrop),f.xp6(3),f.Q6J("ngIf",!J._content))},directives:[he,e.O5],styles:['.mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\n'],encapsulation:2,changeDetection:0}),j})(),Ee=(()=>{class j{}return j.\u0275fac=function(Me){return new(Me||j)},j.\u0275mod=f.oAB({type:j}),j.\u0275inj=f.cJS({imports:[[e.ez,M.BQ,t.ZD],t.ZD,M.BQ]}),j})()},2368:(Be,K,p)=>{"use strict";p.d(K,{Rr:()=>Y,rP:()=>ie});var t=p(7144),e=p(5e3),f=p(508),M=p(3191),a=p(3075),C=p(6360),d=p(5664);const R=["thumbContainer"],h=["toggleBar"],L=["input"],w=function(re){return{enterDuration:re}},D=["*"],S=new e.OlP("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1})});let k=0;const E={provide:a.JU,useExisting:(0,e.Gpc)(()=>Y),multi:!0};class B{constructor(ge,q){this.source=ge,this.checked=q}}const Z=(0,f.sb)((0,f.pj)((0,f.Kr)((0,f.Id)(class{constructor(re){this._elementRef=re}}))));let Y=(()=>{class re extends Z{constructor(q,_e,x,i,r,u){super(q),this._focusMonitor=_e,this._changeDetectorRef=x,this.defaults=r,this._onChange=c=>{},this._onTouched=()=>{},this._uniqueId="mat-slide-toggle-"+ ++k,this._required=!1,this._checked=!1,this.name=null,this.id=this._uniqueId,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.change=new e.vpe,this.toggleChange=new e.vpe,this.tabIndex=parseInt(i)||0,this.color=this.defaultColor=r.color||"accent",this._noopAnimations="NoopAnimations"===u}get required(){return this._required}set required(q){this._required=(0,M.Ig)(q)}get checked(){return this._checked}set checked(q){this._checked=(0,M.Ig)(q),this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(q=>{q||Promise.resolve().then(()=>this._onTouched())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}_onChangeEvent(q){q.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}_onInputClick(q){q.stopPropagation()}writeValue(q){this.checked=!!q}registerOnChange(q){this._onChange=q}registerOnTouched(q){this._onTouched=q}setDisabledState(q){this.disabled=q,this._changeDetectorRef.markForCheck()}focus(q,_e){_e?this._focusMonitor.focusVia(this._inputElement,_e,q):this._inputElement.nativeElement.focus(q)}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(new B(this,this.checked))}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}}return re.\u0275fac=function(q){return new(q||re)(e.Y36(e.SBq),e.Y36(d.tE),e.Y36(e.sBO),e.$8M("tabindex"),e.Y36(S),e.Y36(C.Qb,8))},re.\u0275cmp=e.Xpm({type:re,selectors:[["mat-slide-toggle"]],viewQuery:function(q,_e){if(1&q&&(e.Gf(R,5),e.Gf(h,5),e.Gf(L,5)),2&q){let x;e.iGM(x=e.CRH())&&(_e._thumbEl=x.first),e.iGM(x=e.CRH())&&(_e._thumbBarEl=x.first),e.iGM(x=e.CRH())&&(_e._inputElement=x.first)}},hostAttrs:[1,"mat-slide-toggle"],hostVars:13,hostBindings:function(q,_e){2&q&&(e.Ikx("id",_e.id),e.uIk("tabindex",null)("aria-label",null)("aria-labelledby",null)("name",null),e.ekj("mat-checked",_e.checked)("mat-disabled",_e.disabled)("mat-slide-toggle-label-before","before"==_e.labelPosition)("_mat-animation-noopable",_e._noopAnimations))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex",name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],required:"required",checked:"checked"},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],features:[e._Bn([E]),e.qOj],ngContentSelectors:D,decls:16,vars:20,consts:[[1,"mat-slide-toggle-label"],["label",""],[1,"mat-slide-toggle-bar"],["toggleBar",""],["type","checkbox","role","switch",1,"mat-slide-toggle-input","cdk-visually-hidden",3,"id","required","tabIndex","checked","disabled","change","click"],["input",""],[1,"mat-slide-toggle-thumb-container"],["thumbContainer",""],[1,"mat-slide-toggle-thumb"],["mat-ripple","",1,"mat-slide-toggle-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered","matRippleRadius","matRippleAnimation"],[1,"mat-ripple-element","mat-slide-toggle-persistent-ripple"],[1,"mat-slide-toggle-content",3,"cdkObserveContent"],["labelContent",""],[2,"display","none"]],template:function(q,_e){if(1&q&&(e.F$t(),e.TgZ(0,"label",0,1)(2,"span",2,3)(4,"input",4,5),e.NdJ("change",function(i){return _e._onChangeEvent(i)})("click",function(i){return _e._onInputClick(i)}),e.qZA(),e.TgZ(6,"span",6,7),e._UZ(8,"span",8),e.TgZ(9,"span",9),e._UZ(10,"span",10),e.qZA()()(),e.TgZ(11,"span",11,12),e.NdJ("cdkObserveContent",function(){return _e._onLabelTextChange()}),e.TgZ(13,"span",13),e._uU(14,"\xa0"),e.qZA(),e.Hsn(15),e.qZA()()),2&q){const x=e.MAs(1),i=e.MAs(12);e.uIk("for",_e.inputId),e.xp6(2),e.ekj("mat-slide-toggle-bar-no-side-margin",!i.textContent||!i.textContent.trim()),e.xp6(2),e.Q6J("id",_e.inputId)("required",_e.required)("tabIndex",_e.tabIndex)("checked",_e.checked)("disabled",_e.disabled),e.uIk("name",_e.name)("aria-checked",_e.checked)("aria-label",_e.ariaLabel)("aria-labelledby",_e.ariaLabelledby)("aria-describedby",_e.ariaDescribedby),e.xp6(5),e.Q6J("matRippleTrigger",x)("matRippleDisabled",_e.disableRipple||_e.disabled)("matRippleCentered",!0)("matRippleRadius",20)("matRippleAnimation",e.VKq(18,w,_e._noopAnimations?0:150))}},directives:[f.wG,t.wD],styles:[".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{-webkit-user-select:none;user-select:none;display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%;display:block}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\n"],encapsulation:2,changeDetection:0}),re})(),ue=(()=>{class re{}return re.\u0275fac=function(q){return new(q||re)},re.\u0275mod=e.oAB({type:re}),re.\u0275inj=e.cJS({}),re})(),ie=(()=>{class re{}return re.\u0275fac=function(q){return new(q||re)},re.\u0275mod=e.oAB({type:re}),re.\u0275inj=e.cJS({imports:[[ue,f.si,f.BQ,t.Q8],ue,f.BQ]}),re})()},7261:(Be,K,p)=>{"use strict";p.d(K,{Ve:()=>ge,ZX:()=>re,ux:()=>x});var t=p(9776),e=p(7429),f=p(9808),M=p(5e3),a=p(508),C=p(7423),d=p(7579),R=p(5698),h=p(2722),L=p(1777),w=p(925),D=p(5113),S=p(5664);function k(i,r){if(1&i){const u=M.EpF();M.TgZ(0,"div",2)(1,"button",3),M.NdJ("click",function(){return M.CHM(u),M.oxw().action()}),M._uU(2),M.qZA()()}if(2&i){const u=M.oxw();M.xp6(2),M.Oqu(u.data.action)}}function E(i,r){}const B=new M.OlP("MatSnackBarData");class Z{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}const Y=Math.pow(2,31)-1;class ae{constructor(r,u){this._overlayRef=u,this._afterDismissed=new d.x,this._afterOpened=new d.x,this._onAction=new d.x,this._dismissedByAction=!1,this.containerInstance=r,r._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(r){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(r,Y))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}let ee=(()=>{class i{constructor(u,c){this.snackBarRef=u,this.data=c}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}}return i.\u0275fac=function(u){return new(u||i)(M.Y36(ae),M.Y36(B))},i.\u0275cmp=M.Xpm({type:i,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-simple-snackbar"],decls:3,vars:2,consts:[[1,"mat-simple-snack-bar-content"],["class","mat-simple-snackbar-action",4,"ngIf"],[1,"mat-simple-snackbar-action"],["mat-button","",3,"click"]],template:function(u,c){1&u&&(M.TgZ(0,"span",0),M._uU(1),M.qZA(),M.YNc(2,k,3,1,"div",1)),2&u&&(M.xp6(1),M.Oqu(c.data.message),M.xp6(1),M.Q6J("ngIf",c.hasAction))},directives:[C.lW,f.O5],styles:[".mat-simple-snackbar{display:flex;justify-content:space-between;align-items:center;line-height:20px;opacity:1}.mat-simple-snackbar-action{flex-shrink:0;margin:-8px -8px -8px 8px}.mat-simple-snackbar-action button{max-height:36px;min-width:0}[dir=rtl] .mat-simple-snackbar-action{margin-left:-8px;margin-right:8px}.mat-simple-snack-bar-content{overflow:hidden;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}),i})();const ue={snackBarState:(0,L.X$)("state",[(0,L.SB)("void, hidden",(0,L.oB)({transform:"scale(0.8)",opacity:0})),(0,L.SB)("visible",(0,L.oB)({transform:"scale(1)",opacity:1})),(0,L.eR)("* => visible",(0,L.jt)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,L.eR)("* => void, * => hidden",(0,L.jt)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,L.oB)({opacity:0})))])};let ie=(()=>{class i extends e.en{constructor(u,c,v,T,I){super(),this._ngZone=u,this._elementRef=c,this._changeDetectorRef=v,this._platform=T,this.snackBarConfig=I,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new d.x,this._onExit=new d.x,this._onEnter=new d.x,this._animationState="void",this.attachDomPortal=y=>(this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachDomPortal(y)),this._live="assertive"!==I.politeness||I.announcementMessage?"off"===I.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(u){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachComponentPortal(u)}attachTemplatePortal(u){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachTemplatePortal(u)}onAnimationEnd(u){const{fromState:c,toState:v}=u;if(("void"===v&&"void"!==c||"hidden"===v)&&this._completeExit(),"visible"===v){const T=this._onEnter;this._ngZone.run(()=>{T.next(),T.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._completeExit()}_completeExit(){this._ngZone.onMicrotaskEmpty.pipe((0,R.q)(1)).subscribe(()=>{this._ngZone.run(()=>{this._onExit.next(),this._onExit.complete()})})}_applySnackBarClasses(){const u=this._elementRef.nativeElement,c=this.snackBarConfig.panelClass;c&&(Array.isArray(c)?c.forEach(v=>u.classList.add(v)):u.classList.add(c)),"center"===this.snackBarConfig.horizontalPosition&&u.classList.add("mat-snack-bar-center"),"top"===this.snackBarConfig.verticalPosition&&u.classList.add("mat-snack-bar-top")}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const u=this._elementRef.nativeElement.querySelector("[aria-hidden]"),c=this._elementRef.nativeElement.querySelector("[aria-live]");if(u&&c){let v=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&u.contains(document.activeElement)&&(v=document.activeElement),u.removeAttribute("aria-hidden"),c.appendChild(u),null==v||v.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}}return i.\u0275fac=function(u){return new(u||i)(M.Y36(M.R0b),M.Y36(M.SBq),M.Y36(M.sBO),M.Y36(w.t4),M.Y36(Z))},i.\u0275cmp=M.Xpm({type:i,selectors:[["snack-bar-container"]],viewQuery:function(u,c){if(1&u&&M.Gf(e.Pl,7),2&u){let v;M.iGM(v=M.CRH())&&(c._portalOutlet=v.first)}},hostAttrs:[1,"mat-snack-bar-container"],hostVars:1,hostBindings:function(u,c){1&u&&M.WFA("@state.done",function(T){return c.onAnimationEnd(T)}),2&u&&M.d8E("@state",c._animationState)},features:[M.qOj],decls:3,vars:2,consts:[["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(u,c){1&u&&(M.TgZ(0,"div",0),M.YNc(1,E,0,0,"ng-template",1),M.qZA(),M._UZ(2,"div")),2&u&&(M.xp6(2),M.uIk("aria-live",c._live)("role",c._role))},directives:[e.Pl],styles:[".mat-snack-bar-container{border-radius:4px;box-sizing:border-box;display:block;margin:24px;max-width:33vw;min-width:344px;padding:14px 16px;min-height:48px;transform-origin:center}.cdk-high-contrast-active .mat-snack-bar-container{border:solid 1px}.mat-snack-bar-handset{width:100%}.mat-snack-bar-handset .mat-snack-bar-container{margin:8px;max-width:100%;min-width:0;width:100%}\n"],encapsulation:2,data:{animation:[ue.snackBarState]}}),i})(),re=(()=>{class i{}return i.\u0275fac=function(u){return new(u||i)},i.\u0275mod=M.oAB({type:i}),i.\u0275inj=M.cJS({imports:[[t.U8,e.eL,f.ez,C.ot,a.BQ],a.BQ]}),i})();const ge=new M.OlP("mat-snack-bar-default-options",{providedIn:"root",factory:function q(){return new Z}});let _e=(()=>{class i{constructor(u,c,v,T,I,y){this._overlay=u,this._live=c,this._injector=v,this._breakpointObserver=T,this._parentSnackBar=I,this._defaultConfig=y,this._snackBarRefAtThisLevel=null}get _openedSnackBarRef(){const u=this._parentSnackBar;return u?u._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(u){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=u:this._snackBarRefAtThisLevel=u}openFromComponent(u,c){return this._attach(u,c)}openFromTemplate(u,c){return this._attach(u,c)}open(u,c="",v){const T=Object.assign(Object.assign({},this._defaultConfig),v);return T.data={message:u,action:c},T.announcementMessage===u&&(T.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,T)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(u,c){const T=M.zs3.create({parent:c&&c.viewContainerRef&&c.viewContainerRef.injector||this._injector,providers:[{provide:Z,useValue:c}]}),I=new e.C5(this.snackBarContainerComponent,c.viewContainerRef,T),y=u.attach(I);return y.instance.snackBarConfig=c,y.instance}_attach(u,c){const v=Object.assign(Object.assign(Object.assign({},new Z),this._defaultConfig),c),T=this._createOverlay(v),I=this._attachSnackBarContainer(T,v),y=new ae(I,T);if(u instanceof M.Rgc){const n=new e.UE(u,null,{$implicit:v.data,snackBarRef:y});y.instance=I.attachTemplatePortal(n)}else{const n=this._createInjector(v,y),_=new e.C5(u,void 0,n),V=I.attachComponentPortal(_);y.instance=V.instance}return this._breakpointObserver.observe(D.u3.HandsetPortrait).pipe((0,h.R)(T.detachments())).subscribe(n=>{T.overlayElement.classList.toggle(this.handsetCssClass,n.matches)}),v.announcementMessage&&I._onAnnounce.subscribe(()=>{this._live.announce(v.announcementMessage,v.politeness)}),this._animateSnackBar(y,v),this._openedSnackBarRef=y,this._openedSnackBarRef}_animateSnackBar(u,c){u.afterDismissed().subscribe(()=>{this._openedSnackBarRef==u&&(this._openedSnackBarRef=null),c.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{u.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):u.containerInstance.enter(),c.duration&&c.duration>0&&u.afterOpened().subscribe(()=>u._dismissAfter(c.duration))}_createOverlay(u){const c=new t.X_;c.direction=u.direction;let v=this._overlay.position().global();const T="rtl"===u.direction,I="left"===u.horizontalPosition||"start"===u.horizontalPosition&&!T||"end"===u.horizontalPosition&&T,y=!I&&"center"!==u.horizontalPosition;return I?v.left("0"):y?v.right("0"):v.centerHorizontally(),"top"===u.verticalPosition?v.top("0"):v.bottom("0"),c.positionStrategy=v,this._overlay.create(c)}_createInjector(u,c){return M.zs3.create({parent:u&&u.viewContainerRef&&u.viewContainerRef.injector||this._injector,providers:[{provide:ae,useValue:c},{provide:B,useValue:u.data}]})}}return i.\u0275fac=function(u){return new(u||i)(M.LFG(t.aV),M.LFG(S.Kd),M.LFG(M.zs3),M.LFG(D.Yg),M.LFG(i,12),M.LFG(ge))},i.\u0275prov=M.Yz7({token:i,factory:i.\u0275fac}),i})(),x=(()=>{class i extends _e{constructor(u,c,v,T,I,y){super(u,c,v,T,I,y),this.simpleSnackBarComponent=ee,this.snackBarContainerComponent=ie,this.handsetCssClass="mat-snack-bar-handset"}}return i.\u0275fac=function(u){return new(u||i)(M.LFG(t.aV),M.LFG(S.Kd),M.LFG(M.zs3),M.LFG(D.Yg),M.LFG(i,12),M.LFG(ge))},i.\u0275prov=M.Yz7({token:i,factory:i.\u0275fac,providedIn:re}),i})()},4847:(Be,K,p)=>{"use strict";p.d(K,{JX:()=>i,YE:()=>ge,nU:()=>x});var t=p(5e3),e=p(3191),f=p(1159),M=p(508),a=p(7579),C=p(6451),d=p(1777),R=p(5664),h=p(9808);const L=["mat-sort-header",""];function w(r,u){if(1&r){const c=t.EpF();t.TgZ(0,"div",3),t.NdJ("@arrowPosition.start",function(){return t.CHM(c),t.oxw()._disableViewStateAnimation=!0})("@arrowPosition.done",function(){return t.CHM(c),t.oxw()._disableViewStateAnimation=!1}),t._UZ(1,"div",4),t.TgZ(2,"div",5),t._UZ(3,"div",6)(4,"div",7)(5,"div",8),t.qZA()()}if(2&r){const c=t.oxw();t.Q6J("@arrowOpacity",c._getArrowViewState())("@arrowPosition",c._getArrowViewState())("@allowChildren",c._getArrowDirectionState()),t.xp6(2),t.Q6J("@indicator",c._getArrowDirectionState()),t.xp6(1),t.Q6J("@leftPointer",c._getArrowDirectionState()),t.xp6(1),t.Q6J("@rightPointer",c._getArrowDirectionState())}}const D=["*"],S=M.mZ.ENTERING+" "+M.yN.STANDARD_CURVE,k={indicator:(0,d.X$)("indicator",[(0,d.SB)("active-asc, asc",(0,d.oB)({transform:"translateY(0px)"})),(0,d.SB)("active-desc, desc",(0,d.oB)({transform:"translateY(10px)"})),(0,d.eR)("active-asc <=> active-desc",(0,d.jt)(S))]),leftPointer:(0,d.X$)("leftPointer",[(0,d.SB)("active-asc, asc",(0,d.oB)({transform:"rotate(-45deg)"})),(0,d.SB)("active-desc, desc",(0,d.oB)({transform:"rotate(45deg)"})),(0,d.eR)("active-asc <=> active-desc",(0,d.jt)(S))]),rightPointer:(0,d.X$)("rightPointer",[(0,d.SB)("active-asc, asc",(0,d.oB)({transform:"rotate(45deg)"})),(0,d.SB)("active-desc, desc",(0,d.oB)({transform:"rotate(-45deg)"})),(0,d.eR)("active-asc <=> active-desc",(0,d.jt)(S))]),arrowOpacity:(0,d.X$)("arrowOpacity",[(0,d.SB)("desc-to-active, asc-to-active, active",(0,d.oB)({opacity:1})),(0,d.SB)("desc-to-hint, asc-to-hint, hint",(0,d.oB)({opacity:.54})),(0,d.SB)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,d.oB)({opacity:0})),(0,d.eR)("* => asc, * => desc, * => active, * => hint, * => void",(0,d.jt)("0ms")),(0,d.eR)("* <=> *",(0,d.jt)(S))]),arrowPosition:(0,d.X$)("arrowPosition",[(0,d.eR)("* => desc-to-hint, * => desc-to-active",(0,d.jt)(S,(0,d.F4)([(0,d.oB)({transform:"translateY(-25%)"}),(0,d.oB)({transform:"translateY(0)"})]))),(0,d.eR)("* => hint-to-desc, * => active-to-desc",(0,d.jt)(S,(0,d.F4)([(0,d.oB)({transform:"translateY(0)"}),(0,d.oB)({transform:"translateY(25%)"})]))),(0,d.eR)("* => asc-to-hint, * => asc-to-active",(0,d.jt)(S,(0,d.F4)([(0,d.oB)({transform:"translateY(25%)"}),(0,d.oB)({transform:"translateY(0)"})]))),(0,d.eR)("* => hint-to-asc, * => active-to-asc",(0,d.jt)(S,(0,d.F4)([(0,d.oB)({transform:"translateY(0)"}),(0,d.oB)({transform:"translateY(-25%)"})]))),(0,d.SB)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,d.oB)({transform:"translateY(0)"})),(0,d.SB)("hint-to-desc, active-to-desc, desc",(0,d.oB)({transform:"translateY(-25%)"})),(0,d.SB)("hint-to-asc, active-to-asc, asc",(0,d.oB)({transform:"translateY(25%)"}))]),allowChildren:(0,d.X$)("allowChildren",[(0,d.eR)("* <=> *",[(0,d.IO)("@*",(0,d.pV)(),{optional:!0})])])};let ae=(()=>{class r{constructor(){this.changes=new a.x}}return r.\u0275fac=function(c){return new(c||r)},r.\u0275prov=t.Yz7({token:r,factory:r.\u0275fac,providedIn:"root"}),r})();const ue={provide:ae,deps:[[new t.FiY,new t.tp0,ae]],useFactory:function ee(r){return r||new ae}},ie=new t.OlP("MAT_SORT_DEFAULT_OPTIONS"),re=(0,M.dB)((0,M.Id)(class{}));let ge=(()=>{class r extends re{constructor(c){super(),this._defaultOptions=c,this.sortables=new Map,this._stateChanges=new a.x,this.start="asc",this._direction="",this.sortChange=new t.vpe}get direction(){return this._direction}set direction(c){this._direction=c}get disableClear(){return this._disableClear}set disableClear(c){this._disableClear=(0,e.Ig)(c)}register(c){this.sortables.set(c.id,c)}deregister(c){this.sortables.delete(c.id)}sort(c){this.active!=c.id?(this.active=c.id,this.direction=c.start?c.start:this.start):this.direction=this.getNextSortDirection(c),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(c){var v,T,I;if(!c)return"";const y=null!==(T=null!==(v=null==c?void 0:c.disableClear)&&void 0!==v?v:this.disableClear)&&void 0!==T?T:!!(null===(I=this._defaultOptions)||void 0===I?void 0:I.disableClear);let n=function q(r,u){let c=["asc","desc"];return"desc"==r&&c.reverse(),u||c.push(""),c}(c.start||this.start,y),_=n.indexOf(this.direction)+1;return _>=n.length&&(_=0),n[_]}ngOnInit(){this._markInitialized()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}}return r.\u0275fac=function(c){return new(c||r)(t.Y36(ie,8))},r.\u0275dir=t.lG2({type:r,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{disabled:["matSortDisabled","disabled"],active:["matSortActive","active"],start:["matSortStart","start"],direction:["matSortDirection","direction"],disableClear:["matSortDisableClear","disableClear"]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],features:[t.qOj,t.TTD]}),r})();const _e=(0,M.Id)(class{});let x=(()=>{class r extends _e{constructor(c,v,T,I,y,n,_){super(),this._intl=c,this._changeDetectorRef=v,this._sort=T,this._columnDef=I,this._focusMonitor=y,this._elementRef=n,this._ariaDescriber=_,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this._sortActionDescription="Sort",this._handleStateChanges()}get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(c){this._updateSortActionDescription(c)}get disableClear(){return this._disableClear}set disableClear(c){this._disableClear=(0,e.Ig)(c)}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(c=>{const v=!!c;v!==this._showIndicatorHint&&(this._setIndicatorHintVisible(v),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe()}_setIndicatorHintVisible(c){this._isDisabled()&&c||(this._showIndicatorHint=c,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(c){this._viewState=c||{},this._disableViewStateAnimation&&(this._viewState={toState:c.toState})}_toggleOnInteraction(){this._sort.sort(this),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0)}_handleClick(){this._isDisabled()||this._sort.sort(this)}_handleKeydown(c){!this._isDisabled()&&(c.keyCode===f.L_||c.keyCode===f.K5)&&(c.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_getArrowDirectionState(){return`${this._isSorted()?"active-":""}${this._arrowDirection}`}_getArrowViewState(){const c=this._viewState.fromState;return(c?`${c}-to-`:"")+this._viewState.toState}_updateArrowDirection(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(c){var v,T;this._sortButton&&(null===(v=this._ariaDescriber)||void 0===v||v.removeDescription(this._sortButton,this._sortActionDescription),null===(T=this._ariaDescriber)||void 0===T||T.describe(this._sortButton,c)),this._sortActionDescription=c}_handleStateChanges(){this._rerenderSubscription=(0,C.T)(this._sort.sortChange,this._sort._stateChanges,this._intl.changes).subscribe(()=>{this._isSorted()&&(this._updateArrowDirection(),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0),this._setAnimationTransitionState({fromState:this._arrowDirection,toState:"active"}),this._showIndicatorHint=!1),!this._isSorted()&&this._viewState&&"active"===this._viewState.toState&&(this._disableViewStateAnimation=!1,this._setAnimationTransitionState({fromState:"active",toState:this._arrowDirection})),this._changeDetectorRef.markForCheck()})}}return r.\u0275fac=function(c){return new(c||r)(t.Y36(ae),t.Y36(t.sBO),t.Y36(ge,8),t.Y36("MAT_SORT_HEADER_COLUMN_DEF",8),t.Y36(R.tE),t.Y36(t.SBq),t.Y36(R.$s,8))},r.\u0275cmp=t.Xpm({type:r,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(c,v){1&c&&t.NdJ("click",function(){return v._handleClick()})("keydown",function(I){return v._handleKeydown(I)})("mouseenter",function(){return v._setIndicatorHintVisible(!0)})("mouseleave",function(){return v._setIndicatorHintVisible(!1)}),2&c&&(t.uIk("aria-sort",v._getAriaSortAttribute()),t.ekj("mat-sort-header-disabled",v._isDisabled()))},inputs:{disabled:"disabled",id:["mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",sortActionDescription:"sortActionDescription",disableClear:"disableClear"},exportAs:["matSortHeader"],features:[t.qOj],attrs:L,ngContentSelectors:D,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],["class","mat-sort-header-arrow",4,"ngIf"],[1,"mat-sort-header-arrow"],[1,"mat-sort-header-stem"],[1,"mat-sort-header-indicator"],[1,"mat-sort-header-pointer-left"],[1,"mat-sort-header-pointer-right"],[1,"mat-sort-header-pointer-middle"]],template:function(c,v){1&c&&(t.F$t(),t.TgZ(0,"div",0)(1,"div",1),t.Hsn(2),t.qZA(),t.YNc(3,w,6,6,"div",2),t.qZA()),2&c&&(t.ekj("mat-sort-header-sorted",v._isSorted())("mat-sort-header-position-before","before"==v.arrowPosition),t.uIk("tabindex",v._isDisabled()?null:0)("role",v._isDisabled()?null:"button"),t.xp6(3),t.Q6J("ngIf",v._renderArrow()))},directives:[h.O5],styles:[".mat-sort-header-container{display:flex;cursor:pointer;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-content{text-align:center;display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;opacity:0}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}.cdk-high-contrast-active .mat-sort-header-stem{width:0;border-left:solid 2px}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}.cdk-high-contrast-active .mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}.cdk-high-contrast-active .mat-sort-header-pointer-left,.cdk-high-contrast-active .mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}\n"],encapsulation:2,data:{animation:[k.indicator,k.leftPointer,k.rightPointer,k.arrowOpacity,k.arrowPosition,k.allowChildren]},changeDetection:0}),r})(),i=(()=>{class r{}return r.\u0275fac=function(c){return new(c||r)},r.\u0275mod=t.oAB({type:r}),r.\u0275inj=t.cJS({providers:[ue],imports:[[h.ez,M.BQ]]}),r})()},5615:(Be,K,p)=>{"use strict";p.d(K,{C0:()=>Me,Ic:()=>we,T5:()=>Te,VY:()=>N,Vq:()=>Oe,fd:()=>ce,z9:()=>j});var t=p(7429),e=p(1555),f=p(9808),M=p(5e3),a=p(7423),C=p(508),d=p(5245),R=p(7579),h=p(727),L=p(5664),w=p(3900),D=p(4004),S=p(8675),k=p(2722),E=p(1884),B=p(1777),Z=p(226);function Y(xe,W){if(1&xe&&M.GkF(0,8),2&xe){const te=M.oxw();M.Q6J("ngTemplateOutlet",te.iconOverrides[te.state])("ngTemplateOutletContext",te._getIconContext())}}function ae(xe,W){if(1&xe&&(M.TgZ(0,"span",13),M._uU(1),M.qZA()),2&xe){const te=M.oxw(2);M.xp6(1),M.Oqu(te._getDefaultTextForState(te.state))}}function ee(xe,W){if(1&xe&&(M.TgZ(0,"span",14),M._uU(1),M.qZA()),2&xe){const te=M.oxw(2);M.xp6(1),M.Oqu(te._intl.completedLabel)}}function ue(xe,W){if(1&xe&&(M.TgZ(0,"span",14),M._uU(1),M.qZA()),2&xe){const te=M.oxw(2);M.xp6(1),M.Oqu(te._intl.editableLabel)}}function ie(xe,W){if(1&xe&&(M.TgZ(0,"mat-icon",13),M._uU(1),M.qZA()),2&xe){const te=M.oxw(2);M.xp6(1),M.Oqu(te._getDefaultTextForState(te.state))}}function re(xe,W){if(1&xe&&(M.ynx(0,9),M.YNc(1,ae,2,1,"span",10),M.YNc(2,ee,2,1,"span",11),M.YNc(3,ue,2,1,"span",11),M.YNc(4,ie,2,1,"mat-icon",12),M.BQk()),2&xe){const te=M.oxw();M.Q6J("ngSwitch",te.state),M.xp6(1),M.Q6J("ngSwitchCase","number"),M.xp6(1),M.Q6J("ngIf","done"===te.state),M.xp6(1),M.Q6J("ngIf","edit"===te.state)}}function ge(xe,W){if(1&xe&&(M.TgZ(0,"div",15),M.GkF(1,16),M.qZA()),2&xe){const te=M.oxw();M.xp6(1),M.Q6J("ngTemplateOutlet",te._templateLabel().template)}}function q(xe,W){if(1&xe&&(M.TgZ(0,"div",15),M._uU(1),M.qZA()),2&xe){const te=M.oxw();M.xp6(1),M.Oqu(te.label)}}function _e(xe,W){if(1&xe&&(M.TgZ(0,"div",17),M._uU(1),M.qZA()),2&xe){const te=M.oxw();M.xp6(1),M.Oqu(te._intl.optionalLabel)}}function x(xe,W){if(1&xe&&(M.TgZ(0,"div",18),M._uU(1),M.qZA()),2&xe){const te=M.oxw();M.xp6(1),M.Oqu(te.errorMessage)}}function i(xe,W){}function r(xe,W){if(1&xe&&(M.Hsn(0),M.YNc(1,i,0,0,"ng-template",0)),2&xe){const te=M.oxw();M.xp6(1),M.Q6J("cdkPortalOutlet",te._portal)}}const u=["*"];function c(xe,W){1&xe&&M._UZ(0,"div",9)}const v=function(xe,W){return{step:xe,i:W}};function T(xe,W){if(1&xe&&(M.ynx(0),M.GkF(1,7),M.YNc(2,c,1,0,"div",8),M.BQk()),2&xe){const te=W.$implicit,Ce=W.index,fe=W.last;M.oxw(2);const Q=M.MAs(4);M.xp6(1),M.Q6J("ngTemplateOutlet",Q)("ngTemplateOutletContext",M.WLB(3,v,te,Ce)),M.xp6(1),M.Q6J("ngIf",!fe)}}function I(xe,W){if(1&xe){const te=M.EpF();M.TgZ(0,"div",10),M.NdJ("@horizontalStepTransition.done",function(fe){return M.CHM(te),M.oxw(2)._animationDone.next(fe)}),M.GkF(1,11),M.qZA()}if(2&xe){const te=W.$implicit,Ce=W.index,fe=M.oxw(2);M.Q6J("@horizontalStepTransition",fe._getAnimationDirection(Ce))("id",fe._getStepContentId(Ce)),M.uIk("aria-labelledby",fe._getStepLabelId(Ce))("aria-expanded",fe.selectedIndex===Ce),M.xp6(1),M.Q6J("ngTemplateOutlet",te.content)}}function y(xe,W){if(1&xe&&(M.ynx(0),M.TgZ(1,"div",3),M.YNc(2,T,3,6,"ng-container",4),M.qZA(),M.TgZ(3,"div",5),M.YNc(4,I,2,5,"div",6),M.qZA(),M.BQk()),2&xe){const te=M.oxw();M.xp6(2),M.Q6J("ngForOf",te.steps),M.xp6(2),M.Q6J("ngForOf",te.steps)}}function n(xe,W){if(1&xe){const te=M.EpF();M.TgZ(0,"div",13),M.GkF(1,7),M.TgZ(2,"div",14)(3,"div",15),M.NdJ("@verticalStepTransition.done",function(fe){return M.CHM(te),M.oxw(2)._animationDone.next(fe)}),M.TgZ(4,"div",16),M.GkF(5,11),M.qZA()()()()}if(2&xe){const te=W.$implicit,Ce=W.index,fe=W.last,Q=M.oxw(2),ft=M.MAs(4);M.xp6(1),M.Q6J("ngTemplateOutlet",ft)("ngTemplateOutletContext",M.WLB(9,v,te,Ce)),M.xp6(1),M.ekj("mat-stepper-vertical-line",!fe),M.xp6(1),M.Q6J("@verticalStepTransition",Q._getAnimationDirection(Ce))("id",Q._getStepContentId(Ce)),M.uIk("aria-labelledby",Q._getStepLabelId(Ce))("aria-expanded",Q.selectedIndex===Ce),M.xp6(2),M.Q6J("ngTemplateOutlet",te.content)}}function _(xe,W){if(1&xe&&(M.ynx(0),M.YNc(1,n,6,12,"div",12),M.BQk()),2&xe){const te=M.oxw();M.xp6(1),M.Q6J("ngForOf",te.steps)}}function V(xe,W){if(1&xe){const te=M.EpF();M.TgZ(0,"mat-step-header",17),M.NdJ("click",function(){return M.CHM(te).step.select()})("keydown",function(fe){return M.CHM(te),M.oxw()._onKeydown(fe)}),M.qZA()}if(2&xe){const te=W.step,Ce=W.i,fe=M.oxw();M.ekj("mat-horizontal-stepper-header","horizontal"===fe.orientation)("mat-vertical-stepper-header","vertical"===fe.orientation),M.Q6J("tabIndex",fe._getFocusIndex()===Ce?0:-1)("id",fe._getStepLabelId(Ce))("index",Ce)("state",fe._getIndicatorType(Ce,te.state))("label",te.stepLabel||te.label)("selected",fe.selectedIndex===Ce)("active",fe._stepIsNavigable(Ce,te))("optional",te.optional)("errorMessage",te.errorMessage)("iconOverrides",fe._iconOverrides)("disableRipple",fe.disableRipple||!fe._stepIsNavigable(Ce,te))("color",te.color||fe.color),M.uIk("aria-posinset",Ce+1)("aria-setsize",fe.steps.length)("aria-controls",fe._getStepContentId(Ce))("aria-selected",fe.selectedIndex==Ce)("aria-label",te.ariaLabel||null)("aria-labelledby",!te.ariaLabel&&te.ariaLabelledby?te.ariaLabelledby:null)("aria-disabled",!fe._stepIsNavigable(Ce,te)||null)}}let N=(()=>{class xe extends e.u6{}return xe.\u0275fac=function(){let W;return function(Ce){return(W||(W=M.n5z(xe)))(Ce||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["","matStepLabel",""]],features:[M.qOj]}),xe})(),H=(()=>{class xe{constructor(){this.changes=new R.x,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}}return xe.\u0275fac=function(te){return new(te||xe)},xe.\u0275prov=M.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})();const he={provide:H,deps:[[new M.FiY,new M.tp0,H]],useFactory:function X(xe){return xe||new H}},be=(0,C.pj)(class extends e.KL{constructor(W){super(W)}},"primary");let Pe=(()=>{class xe extends be{constructor(te,Ce,fe,Q){super(fe),this._intl=te,this._focusMonitor=Ce,this._intlSubscription=te.changes.subscribe(()=>Q.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(te,Ce){te?this._focusMonitor.focusVia(this._elementRef,te,Ce):this._elementRef.nativeElement.focus(Ce)}_stringLabel(){return this.label instanceof N?null:this.label}_templateLabel(){return this.label instanceof N?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(te){return"number"==te?`${this.index+1}`:"edit"==te?"create":"error"==te?"warning":te}}return xe.\u0275fac=function(te){return new(te||xe)(M.Y36(H),M.Y36(L.tE),M.Y36(M.SBq),M.Y36(M.sBO))},xe.\u0275cmp=M.Xpm({type:xe,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],inputs:{color:"color",state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple"},features:[M.qOj],decls:10,vars:19,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content",3,"ngSwitch"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngSwitchCase"],[3,"ngSwitch",4,"ngSwitchDefault"],[1,"mat-step-label"],["class","mat-step-text-label",4,"ngIf"],["class","mat-step-optional",4,"ngIf"],["class","mat-step-sub-label-error",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"ngSwitch"],["aria-hidden","true",4,"ngSwitchCase"],["class","cdk-visually-hidden",4,"ngIf"],["aria-hidden","true",4,"ngSwitchDefault"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[1,"mat-step-text-label"],[3,"ngTemplateOutlet"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"]],template:function(te,Ce){1&te&&(M._UZ(0,"div",0),M.TgZ(1,"div")(2,"div",1),M.YNc(3,Y,1,2,"ng-container",2),M.YNc(4,re,5,4,"ng-container",3),M.qZA()(),M.TgZ(5,"div",4),M.YNc(6,ge,2,1,"div",5),M.YNc(7,q,2,1,"div",5),M.YNc(8,_e,2,1,"div",6),M.YNc(9,x,2,1,"div",7),M.qZA()),2&te&&(M.Q6J("matRippleTrigger",Ce._getHostElement())("matRippleDisabled",Ce.disableRipple),M.xp6(1),M.Gre("mat-step-icon-state-",Ce.state," mat-step-icon"),M.ekj("mat-step-icon-selected",Ce.selected),M.xp6(1),M.Q6J("ngSwitch",!(!Ce.iconOverrides||!Ce.iconOverrides[Ce.state])),M.xp6(1),M.Q6J("ngSwitchCase",!0),M.xp6(2),M.ekj("mat-step-label-active",Ce.active)("mat-step-label-selected",Ce.selected)("mat-step-label-error","error"==Ce.state),M.xp6(1),M.Q6J("ngIf",Ce._templateLabel()),M.xp6(1),M.Q6J("ngIf",Ce._stringLabel()),M.xp6(1),M.Q6J("ngIf",Ce.optional&&"error"!=Ce.state),M.xp6(1),M.Q6J("ngIf","error"==Ce.state))},directives:[d.Hw,C.wG,f.RF,f.n9,f.tP,f.ED,f.O5],styles:[".mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:transparent}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header.cdk-keyboard-focused,.cdk-high-contrast-active .mat-step-header.cdk-program-focused{outline:solid 3px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.mat-step-optional,.mat-step-sub-label-error{font-size:12px}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative}.mat-step-icon-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex}.mat-step-icon .mat-icon{font-size:16px;height:16px;width:16px}.mat-step-icon-state-error .mat-icon{font-size:24px;height:24px;width:24px}.mat-step-label{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px;vertical-align:middle}.mat-step-text-label{text-overflow:ellipsis;overflow:hidden}.mat-step-header .mat-step-header-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n"],encapsulation:2,changeDetection:0}),xe})();const Ee={horizontalStepTransition:(0,B.X$)("horizontalStepTransition",[(0,B.SB)("previous",(0,B.oB)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,B.SB)("current",(0,B.oB)({transform:"none",visibility:"inherit"})),(0,B.SB)("next",(0,B.oB)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,B.eR)("* => *",(0,B.jt)("500ms cubic-bezier(0.35, 0, 0.25, 1)"))]),verticalStepTransition:(0,B.X$)("verticalStepTransition",[(0,B.SB)("previous",(0,B.oB)({height:"0px",visibility:"hidden"})),(0,B.SB)("next",(0,B.oB)({height:"0px",visibility:"hidden"})),(0,B.SB)("current",(0,B.oB)({height:"*",visibility:"inherit"})),(0,B.eR)("* <=> current",(0,B.jt)("225ms cubic-bezier(0.4, 0.0, 0.2, 1)"))])};let j=(()=>{class xe{constructor(te){this.templateRef=te}}return xe.\u0275fac=function(te){return new(te||xe)(M.Y36(M.Rgc))},xe.\u0275dir=M.lG2({type:xe,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:["matStepperIcon","name"]}}),xe})(),Ve=(()=>{class xe{constructor(te){this._template=te}}return xe.\u0275fac=function(te){return new(te||xe)(M.Y36(M.Rgc))},xe.\u0275dir=M.lG2({type:xe,selectors:[["ng-template","matStepContent",""]]}),xe})(),Me=(()=>{class xe extends e.be{constructor(te,Ce,fe,Q){super(te,Q),this._errorStateMatcher=Ce,this._viewContainerRef=fe,this._isSelected=h.w0.EMPTY}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,w.w)(()=>this._stepper.selectionChange.pipe((0,D.U)(te=>te.selectedStep===this),(0,S.O)(this._stepper.selected===this)))).subscribe(te=>{te&&this._lazyContent&&!this._portal&&(this._portal=new t.UE(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(te,Ce){return this._errorStateMatcher.isErrorState(te,Ce)||!!(te&&te.invalid&&this.interacted)}}return xe.\u0275fac=function(te){return new(te||xe)(M.Y36((0,M.Gpc)(()=>Oe)),M.Y36(C.rD,4),M.Y36(M.s_b),M.Y36(e.gx,8))},xe.\u0275cmp=M.Xpm({type:xe,selectors:[["mat-step"]],contentQueries:function(te,Ce,fe){if(1&te&&(M.Suo(fe,N,5),M.Suo(fe,Ve,5)),2&te){let Q;M.iGM(Q=M.CRH())&&(Ce.stepLabel=Q.first),M.iGM(Q=M.CRH())&&(Ce._lazyContent=Q.first)}},inputs:{color:"color"},exportAs:["matStep"],features:[M._Bn([{provide:C.rD,useExisting:xe},{provide:e.be,useExisting:xe}]),M.qOj],ngContentSelectors:u,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(te,Ce){1&te&&(M.F$t(),M.YNc(0,r,2,1,"ng-template"))},directives:[t.Pl],encapsulation:2,changeDetection:0}),xe})(),J=(()=>{class xe extends e.B8{}return xe.\u0275fac=function(){let W;return function(Ce){return(W||(W=M.n5z(xe)))(Ce||xe)}}(),xe.\u0275dir=M.lG2({type:xe,features:[M.qOj]}),xe})(),Ie=(()=>{class xe extends J{}return xe.\u0275fac=function(){let W;return function(Ce){return(W||(W=M.n5z(xe)))(Ce||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["mat-horizontal-stepper"]],features:[M.qOj]}),xe})(),ut=(()=>{class xe extends J{}return xe.\u0275fac=function(){let W;return function(Ce){return(W||(W=M.n5z(xe)))(Ce||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["mat-vertical-stepper"]],features:[M.qOj]}),xe})(),Oe=(()=>{class xe extends e.B8{constructor(te,Ce,fe,Q){super(te,Ce,fe,Q),this.steps=new M.n_E,this.animationDone=new M.vpe,this.labelPosition="end",this._iconOverrides={},this._animationDone=new R.x;const ft=fe.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===ft?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:te,templateRef:Ce})=>this._iconOverrides[te]=Ce),this.steps.changes.pipe((0,k.R)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,E.x)((te,Ce)=>te.fromState===Ce.fromState&&te.toState===Ce.toState),(0,k.R)(this._destroyed)).subscribe(te=>{"current"===te.toState&&this.animationDone.emit()})}_stepIsNavigable(te,Ce){return Ce.completed||this.selectedIndex===te||!this.linear}}return xe.\u0275fac=function(te){return new(te||xe)(M.Y36(Z.Is,8),M.Y36(M.sBO),M.Y36(M.SBq),M.Y36(f.K0))},xe.\u0275cmp=M.Xpm({type:xe,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(te,Ce,fe){if(1&te&&(M.Suo(fe,Me,5),M.Suo(fe,j,5)),2&te){let Q;M.iGM(Q=M.CRH())&&(Ce._steps=Q),M.iGM(Q=M.CRH())&&(Ce._icons=Q)}},viewQuery:function(te,Ce){if(1&te&&M.Gf(Pe,5),2&te){let fe;M.iGM(fe=M.CRH())&&(Ce._stepHeader=fe)}},hostAttrs:["role","tablist"],hostVars:9,hostBindings:function(te,Ce){2&te&&(M.uIk("aria-orientation",Ce.orientation),M.ekj("mat-stepper-horizontal","horizontal"===Ce.orientation)("mat-stepper-vertical","vertical"===Ce.orientation)("mat-stepper-label-position-end","horizontal"===Ce.orientation&&"end"==Ce.labelPosition)("mat-stepper-label-position-bottom","horizontal"===Ce.orientation&&"bottom"==Ce.labelPosition))},inputs:{selectedIndex:"selectedIndex",disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],features:[M._Bn([{provide:e.B8,useExisting:xe},{provide:Ie,useExisting:xe},{provide:ut,useExisting:xe}]),M.qOj],decls:5,vars:3,consts:[[3,"ngSwitch"],[4,"ngSwitchCase"],["stepTemplate",""],[1,"mat-horizontal-stepper-header-container"],[4,"ngFor","ngForOf"],[1,"mat-horizontal-content-container"],["class","mat-horizontal-stepper-content","role","tabpanel",3,"id",4,"ngFor","ngForOf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["class","mat-stepper-horizontal-line",4,"ngIf"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],["class","mat-step",4,"ngFor","ngForOf"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color","click","keydown"]],template:function(te,Ce){1&te&&(M.ynx(0,0),M.YNc(1,y,5,2,"ng-container",1),M.YNc(2,_,2,1,"ng-container",1),M.BQk(),M.YNc(3,V,1,23,"ng-template",null,2,M.W1O)),2&te&&(M.Q6J("ngSwitch",Ce.orientation),M.xp6(1),M.Q6J("ngSwitchCase","horizontal"),M.xp6(1),M.Q6J("ngSwitchCase","vertical"))},directives:[Pe,f.RF,f.n9,f.sg,f.tP,f.O5],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block}.mat-horizontal-stepper-header-container{white-space:nowrap;display:flex;align-items:center}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container{align-items:flex-start}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{border-top-width:1px;border-top-style:solid;content:"";display:inline-block;height:0;position:absolute;width:calc(50% - 20px)}.mat-horizontal-stepper-header{display:flex;height:72px;overflow:hidden;align-items:center;padding:0 24px}.mat-horizontal-stepper-header .mat-step-icon{margin-right:8px;flex:none}[dir=rtl] .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:8px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{box-sizing:border-box;flex-direction:column;height:auto}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{right:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before{left:0}[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:last-child::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:first-child::after{display:none}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-label{padding:16px 0 0 0;text-align:center;width:100%}.mat-vertical-stepper-header{display:flex;align-items:center;height:24px}.mat-vertical-stepper-header .mat-step-icon{margin-right:12px}[dir=rtl] .mat-vertical-stepper-header .mat-step-icon{margin-right:0;margin-left:12px}.mat-horizontal-stepper-content{outline:0}.mat-horizontal-stepper-content[aria-expanded=false]{height:0;overflow:hidden}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-active .mat-horizontal-content-container{outline:solid 1px}.mat-vertical-content-container{margin-left:36px;border:0;position:relative}.cdk-high-contrast-active .mat-vertical-content-container{outline:solid 1px}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}.mat-stepper-vertical-line::before{content:"";position:absolute;left:0;border-left-width:1px;border-left-style:solid}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}\n'],encapsulation:2,data:{animation:[Ee.horizontalStepTransition,Ee.verticalStepTransition]},changeDetection:0}),xe})(),we=(()=>{class xe extends e.st{}return xe.\u0275fac=function(){let W;return function(Ce){return(W||(W=M.n5z(xe)))(Ce||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(te,Ce){2&te&&M.Ikx("type",Ce.type)},inputs:{type:"type"},features:[M.qOj]}),xe})(),ce=(()=>{class xe extends e.po{}return xe.\u0275fac=function(){let W;return function(Ce){return(W||(W=M.n5z(xe)))(Ce||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(te,Ce){2&te&&M.Ikx("type",Ce.type)},inputs:{type:"type"},features:[M.qOj]}),xe})(),Te=(()=>{class xe{}return xe.\u0275fac=function(te){return new(te||xe)},xe.\u0275mod=M.oAB({type:xe}),xe.\u0275inj=M.cJS({providers:[he,C.rD],imports:[[C.BQ,f.ez,t.eL,a.ot,e.U5,d.Ps,C.si],C.BQ]}),xe})()},2075:(Be,K,p)=>{"use strict";p.d(K,{ev:()=>Ge,Dz:()=>Ft,w1:()=>rt,yh:()=>Ae,mD:()=>He,Q2:()=>Jt,Ke:()=>lt,ge:()=>et,fO:()=>nt,XQ:()=>mi,as:()=>ot,Gk:()=>$t,nj:()=>Ct,BZ:()=>mt,by:()=>Ui,p0:()=>Ji});var t=p(5e3),e=p(3191),f=p(449),M=p(9808),a=p(7579),C=p(457),d=p(1135),R=p(5191),h=p(9646),L=p(2722),w=p(5698),D=p(226),S=p(925),k=p(5303);const E=[[["caption"]],[["colgroup"],["col"]]],B=["caption","colgroup, col"];function ae(Ue){return class extends Ue{constructor(...Tt){super(...Tt),this._sticky=!1,this._hasStickyChanged=!1}get sticky(){return this._sticky}set sticky(Tt){const ve=this._sticky;this._sticky=(0,e.Ig)(Tt),this._hasStickyChanged=ve!==this._sticky}hasStickyChanged(){const Tt=this._hasStickyChanged;return this._hasStickyChanged=!1,Tt}resetStickyChanged(){this._hasStickyChanged=!1}}}const ee=new t.OlP("CDK_TABLE");let ie=(()=>{class Ue{constructor(ve){this.template=ve}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkCellDef",""]]}),Ue})(),re=(()=>{class Ue{constructor(ve){this.template=ve}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkHeaderCellDef",""]]}),Ue})(),ge=(()=>{class Ue{constructor(ve){this.template=ve}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkFooterCellDef",""]]}),Ue})();class q{}const _e=ae(q);let x=(()=>{class Ue extends _e{constructor(ve){super(),this._table=ve,this._stickyEnd=!1}get name(){return this._name}set name(ve){this._setNameInput(ve)}get stickyEnd(){return this._stickyEnd}set stickyEnd(ve){const Qe=this._stickyEnd;this._stickyEnd=(0,e.Ig)(ve),this._hasStickyChanged=Qe!==this._stickyEnd}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(ve){ve&&(this._name=ve,this.cssClassFriendlyName=ve.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(ee,8))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkColumnDef",""]],contentQueries:function(ve,Qe,_t){if(1&ve&&(t.Suo(_t,ie,5),t.Suo(_t,re,5),t.Suo(_t,ge,5)),2&ve){let se;t.iGM(se=t.CRH())&&(Qe.cell=se.first),t.iGM(se=t.CRH())&&(Qe.headerCell=se.first),t.iGM(se=t.CRH())&&(Qe.footerCell=se.first)}},inputs:{sticky:"sticky",name:["cdkColumnDef","name"],stickyEnd:"stickyEnd"},features:[t._Bn([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Ue}]),t.qOj]}),Ue})();class i{constructor(Tt,ve){ve.nativeElement.classList.add(...Tt._columnCssClassName)}}let r=(()=>{class Ue extends i{constructor(ve,Qe){super(ve,Qe)}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(x),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[t.qOj]}),Ue})(),u=(()=>{class Ue extends i{constructor(ve,Qe){var _t;if(super(ve,Qe),1===(null===(_t=ve._table)||void 0===_t?void 0:_t._elementRef.nativeElement.nodeType)){const se=ve._table._elementRef.nativeElement.getAttribute("role");Qe.nativeElement.setAttribute("role","grid"===se||"treegrid"===se?"gridcell":"cell")}}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(x),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],features:[t.qOj]}),Ue})(),c=(()=>{class Ue extends i{constructor(ve,Qe){var _t;if(super(ve,Qe),1===(null===(_t=ve._table)||void 0===_t?void 0:_t._elementRef.nativeElement.nodeType)){const se=ve._table._elementRef.nativeElement.getAttribute("role");Qe.nativeElement.setAttribute("role","grid"===se||"treegrid"===se?"gridcell":"cell")}}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(x),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[t.qOj]}),Ue})();class v{constructor(){this.tasks=[],this.endTasks=[]}}const T=new t.OlP("_COALESCED_STYLE_SCHEDULER");let I=(()=>{class Ue{constructor(ve){this._ngZone=ve,this._currentSchedule=null,this._destroyed=new a.x}schedule(ve){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(ve)}scheduleEnd(ve){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(ve)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new v,this._getScheduleObservable().pipe((0,L.R)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const ve=this._currentSchedule;this._currentSchedule=new v;for(const Qe of ve.tasks)Qe();for(const Qe of ve.endTasks)Qe()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,C.D)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,w.q)(1))}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.LFG(t.R0b))},Ue.\u0275prov=t.Yz7({token:Ue,factory:Ue.\u0275fac}),Ue})(),n=(()=>{class Ue{constructor(ve,Qe){this.template=ve,this._differs=Qe}ngOnChanges(ve){if(!this._columnsDiffer){const Qe=ve.columns&&ve.columns.currentValue||[];this._columnsDiffer=this._differs.find(Qe).create(),this._columnsDiffer.diff(Qe)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(ve){return this instanceof N?ve.headerCell.template:this instanceof he?ve.footerCell.template:ve.cell.template}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc),t.Y36(t.ZZ4))},Ue.\u0275dir=t.lG2({type:Ue,features:[t.TTD]}),Ue})();class _ extends n{}const V=ae(_);let N=(()=>{class Ue extends V{constructor(ve,Qe,_t){super(ve,Qe),this._table=_t}ngOnChanges(ve){super.ngOnChanges(ve)}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc),t.Y36(t.ZZ4),t.Y36(ee,8))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:["cdkHeaderRowDef","columns"],sticky:["cdkHeaderRowDefSticky","sticky"]},features:[t.qOj,t.TTD]}),Ue})();class H extends n{}const X=ae(H);let he=(()=>{class Ue extends X{constructor(ve,Qe,_t){super(ve,Qe),this._table=_t}ngOnChanges(ve){super.ngOnChanges(ve)}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc),t.Y36(t.ZZ4),t.Y36(ee,8))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:["cdkFooterRowDef","columns"],sticky:["cdkFooterRowDefSticky","sticky"]},features:[t.qOj,t.TTD]}),Ue})(),be=(()=>{class Ue extends n{constructor(ve,Qe,_t){super(ve,Qe),this._table=_t}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc),t.Y36(t.ZZ4),t.Y36(ee,8))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkRowDef",""]],inputs:{columns:["cdkRowDefColumns","columns"],when:["cdkRowDefWhen","when"]},features:[t.qOj]}),Ue})(),Pe=(()=>{class Ue{constructor(ve){this._viewContainer=ve,Ue.mostRecentCellOutlet=this}ngOnDestroy(){Ue.mostRecentCellOutlet===this&&(Ue.mostRecentCellOutlet=null)}}return Ue.mostRecentCellOutlet=null,Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.s_b))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","cdkCellOutlet",""]]}),Ue})(),Ee=(()=>{class Ue{}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ve,Qe){1&ve&&t.GkF(0,0)},directives:[Pe],encapsulation:2}),Ue})(),j=(()=>{class Ue{}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ve,Qe){1&ve&&t.GkF(0,0)},directives:[Pe],encapsulation:2}),Ue})(),Ve=(()=>{class Ue{}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ve,Qe){1&ve&&t.GkF(0,0)},directives:[Pe],encapsulation:2}),Ue})(),Me=(()=>{class Ue{constructor(ve){this.templateRef=ve,this._contentClassName="cdk-no-data-row"}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.Rgc))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["ng-template","cdkNoDataRow",""]]}),Ue})();const J=["top","bottom","left","right"];class Ie{constructor(Tt,ve,Qe,_t,se=!0,Je=!0,xt){this._isNativeHtmlTable=Tt,this._stickCellCss=ve,this.direction=Qe,this._coalescedStyleScheduler=_t,this._isBrowser=se,this._needsPositionStickyOnElement=Je,this._positionListener=xt,this._cachedCellWidths=[],this._borderCellCss={top:`${ve}-border-elem-top`,bottom:`${ve}-border-elem-bottom`,left:`${ve}-border-elem-left`,right:`${ve}-border-elem-right`}}clearStickyPositioning(Tt,ve){const Qe=[];for(const _t of Tt)if(_t.nodeType===_t.ELEMENT_NODE){Qe.push(_t);for(let se=0;se<_t.children.length;se++)Qe.push(_t.children[se])}this._coalescedStyleScheduler.schedule(()=>{for(const _t of Qe)this._removeStickyStyle(_t,ve)})}updateStickyColumns(Tt,ve,Qe,_t=!0){if(!Tt.length||!this._isBrowser||!ve.some(Wi=>Wi)&&!Qe.some(Wi=>Wi))return void(this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]})));const se=Tt[0],Je=se.children.length,xt=this._getCellWidths(se,_t),Bt=this._getStickyStartColumnPositions(xt,ve),xi=this._getStickyEndColumnPositions(xt,Qe),Ti=ve.lastIndexOf(!0),$i=Qe.indexOf(!0);this._coalescedStyleScheduler.schedule(()=>{const Wi="rtl"===this.direction,on=Wi?"right":"left",fn=Wi?"left":"right";for(const ti of Tt)for(let Ri=0;Rive[Ri]?ti:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===$i?[]:xt.slice($i).map((ti,Ri)=>Qe[Ri+$i]?ti:null).reverse()}))})}stickRows(Tt,ve,Qe){if(!this._isBrowser)return;const _t="bottom"===Qe?Tt.slice().reverse():Tt,se="bottom"===Qe?ve.slice().reverse():ve,Je=[],xt=[],Bt=[];for(let Ti=0,$i=0;Ti<_t.length;Ti++){if(!se[Ti])continue;Je[Ti]=$i;const Wi=_t[Ti];Bt[Ti]=this._isNativeHtmlTable?Array.from(Wi.children):[Wi];const on=Wi.getBoundingClientRect().height;$i+=on,xt[Ti]=on}const xi=se.lastIndexOf(!0);this._coalescedStyleScheduler.schedule(()=>{var Ti,$i;for(let Wi=0;Wi<_t.length;Wi++){if(!se[Wi])continue;const on=Je[Wi],fn=Wi===xi;for(const ti of Bt[Wi])this._addStickyStyle(ti,Qe,on,fn)}"top"===Qe?null===(Ti=this._positionListener)||void 0===Ti||Ti.stickyHeaderRowsUpdated({sizes:xt,offsets:Je,elements:Bt}):null===($i=this._positionListener)||void 0===$i||$i.stickyFooterRowsUpdated({sizes:xt,offsets:Je,elements:Bt})})}updateStickyFooterContainer(Tt,ve){if(!this._isNativeHtmlTable)return;const Qe=Tt.querySelector("tfoot");this._coalescedStyleScheduler.schedule(()=>{ve.some(_t=>!_t)?this._removeStickyStyle(Qe,["bottom"]):this._addStickyStyle(Qe,"bottom",0,!1)})}_removeStickyStyle(Tt,ve){for(const _t of ve)Tt.style[_t]="",Tt.classList.remove(this._borderCellCss[_t]);J.some(_t=>-1===ve.indexOf(_t)&&Tt.style[_t])?Tt.style.zIndex=this._getCalculatedZIndex(Tt):(Tt.style.zIndex="",this._needsPositionStickyOnElement&&(Tt.style.position=""),Tt.classList.remove(this._stickCellCss))}_addStickyStyle(Tt,ve,Qe,_t){Tt.classList.add(this._stickCellCss),_t&&Tt.classList.add(this._borderCellCss[ve]),Tt.style[ve]=`${Qe}px`,Tt.style.zIndex=this._getCalculatedZIndex(Tt),this._needsPositionStickyOnElement&&(Tt.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(Tt){const ve={top:100,bottom:10,left:1,right:1};let Qe=0;for(const _t of J)Tt.style[_t]&&(Qe+=ve[_t]);return Qe?`${Qe}`:""}_getCellWidths(Tt,ve=!0){if(!ve&&this._cachedCellWidths.length)return this._cachedCellWidths;const Qe=[],_t=Tt.children;for(let se=0;se<_t.length;se++)Qe.push(_t[se].getBoundingClientRect().width);return this._cachedCellWidths=Qe,Qe}_getStickyStartColumnPositions(Tt,ve){const Qe=[];let _t=0;for(let se=0;se0;se--)ve[se]&&(Qe[se]=_t,_t+=Tt[se]);return Qe}}const Ce=new t.OlP("CDK_SPL");let Q=(()=>{class Ue{constructor(ve,Qe){this.viewContainer=ve,this.elementRef=Qe}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.s_b),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","rowOutlet",""]]}),Ue})(),ft=(()=>{class Ue{constructor(ve,Qe){this.viewContainer=ve,this.elementRef=Qe}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.s_b),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","headerRowOutlet",""]]}),Ue})(),tt=(()=>{class Ue{constructor(ve,Qe){this.viewContainer=ve,this.elementRef=Qe}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.s_b),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","footerRowOutlet",""]]}),Ue})(),Dt=(()=>{class Ue{constructor(ve,Qe){this.viewContainer=ve,this.elementRef=Qe}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.s_b),t.Y36(t.SBq))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","noDataRowOutlet",""]]}),Ue})(),Zt=(()=>{class Ue{constructor(ve,Qe,_t,se,Je,xt,Bt,xi,Ti,$i,Wi,on){this._differs=ve,this._changeDetectorRef=Qe,this._elementRef=_t,this._dir=Je,this._platform=Bt,this._viewRepeater=xi,this._coalescedStyleScheduler=Ti,this._viewportRuler=$i,this._stickyPositioningListener=Wi,this._ngZone=on,this._onDestroy=new a.x,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._stickyColumnStylesNeedReset=!0,this._forceRecalculateCellWidths=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this.needsPositionStickyOnElement=!0,this._isShowingNoDataRow=!1,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new t.vpe,this.viewChange=new d.X({start:0,end:Number.MAX_VALUE}),se||this._elementRef.nativeElement.setAttribute("role","table"),this._document=xt,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName}get trackBy(){return this._trackByFn}set trackBy(ve){this._trackByFn=ve}get dataSource(){return this._dataSource}set dataSource(ve){this._dataSource!==ve&&this._switchDataSource(ve)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(ve){this._multiTemplateDataRows=(0,e.Ig)(ve),this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(ve){this._fixedLayout=(0,e.Ig)(ve),this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}ngOnInit(){this._setupStickyStyler(),this._isNativeHtmlTable&&this._applyNativeTableSections(),this._dataDiffer=this._differs.find([]).create((ve,Qe)=>this.trackBy?this.trackBy(Qe.dataIndex,Qe.data):Qe),this._viewportRuler.change().pipe((0,L.R)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentChecked(){this._cacheRowDefs(),this._cacheColumnDefs();const Qe=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||Qe,this._forceRecalculateCellWidths=Qe,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}ngOnDestroy(){[this._rowOutlet.viewContainer,this._headerRowOutlet.viewContainer,this._footerRowOutlet.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(ve=>{ve.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,f.Z9)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const ve=this._dataDiffer.diff(this._renderRows);if(!ve)return this._updateNoDataRow(),void this.contentChanged.next();const Qe=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(ve,Qe,(_t,se,Je)=>this._getEmbeddedViewArgs(_t.item,Je),_t=>_t.item.data,_t=>{1===_t.operation&&_t.context&&this._renderCellTemplateForItem(_t.record.item.rowDef,_t.context)}),this._updateRowIndexContext(),ve.forEachIdentityChange(_t=>{Qe.get(_t.currentIndex).context.$implicit=_t.item.data}),this._updateNoDataRow(),this._ngZone&&t.R0b.isInAngularZone()?this._ngZone.onStable.pipe((0,w.q)(1),(0,L.R)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(ve){this._customColumnDefs.add(ve)}removeColumnDef(ve){this._customColumnDefs.delete(ve)}addRowDef(ve){this._customRowDefs.add(ve)}removeRowDef(ve){this._customRowDefs.delete(ve)}addHeaderRowDef(ve){this._customHeaderRowDefs.add(ve),this._headerRowDefChanged=!0}removeHeaderRowDef(ve){this._customHeaderRowDefs.delete(ve),this._headerRowDefChanged=!0}addFooterRowDef(ve){this._customFooterRowDefs.add(ve),this._footerRowDefChanged=!0}removeFooterRowDef(ve){this._customFooterRowDefs.delete(ve),this._footerRowDefChanged=!0}setNoDataRow(ve){this._customNoDataRow=ve}updateStickyHeaderRowStyles(){const ve=this._getRenderedRows(this._headerRowOutlet),_t=this._elementRef.nativeElement.querySelector("thead");_t&&(_t.style.display=ve.length?"":"none");const se=this._headerRowDefs.map(Je=>Je.sticky);this._stickyStyler.clearStickyPositioning(ve,["top"]),this._stickyStyler.stickRows(ve,se,"top"),this._headerRowDefs.forEach(Je=>Je.resetStickyChanged())}updateStickyFooterRowStyles(){const ve=this._getRenderedRows(this._footerRowOutlet),_t=this._elementRef.nativeElement.querySelector("tfoot");_t&&(_t.style.display=ve.length?"":"none");const se=this._footerRowDefs.map(Je=>Je.sticky);this._stickyStyler.clearStickyPositioning(ve,["bottom"]),this._stickyStyler.stickRows(ve,se,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,se),this._footerRowDefs.forEach(Je=>Je.resetStickyChanged())}updateStickyColumnStyles(){const ve=this._getRenderedRows(this._headerRowOutlet),Qe=this._getRenderedRows(this._rowOutlet),_t=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...ve,...Qe,..._t],["left","right"]),this._stickyColumnStylesNeedReset=!1),ve.forEach((se,Je)=>{this._addStickyColumnStyles([se],this._headerRowDefs[Je])}),this._rowDefs.forEach(se=>{const Je=[];for(let xt=0;xt{this._addStickyColumnStyles([se],this._footerRowDefs[Je])}),Array.from(this._columnDefsByName.values()).forEach(se=>se.resetStickyChanged())}_getAllRenderRows(){const ve=[],Qe=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let _t=0;_t{const xt=_t&&_t.has(Je)?_t.get(Je):[];if(xt.length){const Bt=xt.shift();return Bt.dataIndex=Qe,Bt}return{data:ve,rowDef:Je,dataIndex:Qe}})}_cacheColumnDefs(){this._columnDefsByName.clear(),ui(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(Qe=>{this._columnDefsByName.has(Qe.name),this._columnDefsByName.set(Qe.name,Qe)})}_cacheRowDefs(){this._headerRowDefs=ui(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=ui(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=ui(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const ve=this._rowDefs.filter(Qe=>!Qe.when);this._defaultRowDef=ve[0]}_renderUpdatedColumns(){const ve=(Je,xt)=>Je||!!xt.getColumnsDiff(),Qe=this._rowDefs.reduce(ve,!1);Qe&&this._forceRenderDataRows();const _t=this._headerRowDefs.reduce(ve,!1);_t&&this._forceRenderHeaderRows();const se=this._footerRowDefs.reduce(ve,!1);return se&&this._forceRenderFooterRows(),Qe||_t||se}_switchDataSource(ve){this._data=[],(0,f.Z9)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),ve||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear()),this._dataSource=ve}_observeRenderChanges(){if(!this.dataSource)return;let ve;(0,f.Z9)(this.dataSource)?ve=this.dataSource.connect(this):(0,R.b)(this.dataSource)?ve=this.dataSource:Array.isArray(this.dataSource)&&(ve=(0,h.of)(this.dataSource)),this._renderChangeSubscription=ve.pipe((0,L.R)(this._onDestroy)).subscribe(Qe=>{this._data=Qe||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((ve,Qe)=>this._renderRow(this._headerRowOutlet,ve,Qe)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((ve,Qe)=>this._renderRow(this._footerRowOutlet,ve,Qe)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(ve,Qe){const _t=Array.from(Qe.columns||[]).map(xt=>this._columnDefsByName.get(xt)),se=_t.map(xt=>xt.sticky),Je=_t.map(xt=>xt.stickyEnd);this._stickyStyler.updateStickyColumns(ve,se,Je,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(ve){const Qe=[];for(let _t=0;_t!se.when||se.when(Qe,ve));else{let se=this._rowDefs.find(Je=>Je.when&&Je.when(Qe,ve))||this._defaultRowDef;se&&_t.push(se)}return _t}_getEmbeddedViewArgs(ve,Qe){return{templateRef:ve.rowDef.template,context:{$implicit:ve.data},index:Qe}}_renderRow(ve,Qe,_t,se={}){const Je=ve.viewContainer.createEmbeddedView(Qe.template,se,_t);return this._renderCellTemplateForItem(Qe,se),Je}_renderCellTemplateForItem(ve,Qe){for(let _t of this._getCellTemplates(ve))Pe.mostRecentCellOutlet&&Pe.mostRecentCellOutlet._viewContainer.createEmbeddedView(_t,Qe);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const ve=this._rowOutlet.viewContainer;for(let Qe=0,_t=ve.length;Qe<_t;Qe++){const Je=ve.get(Qe).context;Je.count=_t,Je.first=0===Qe,Je.last=Qe===_t-1,Je.even=Qe%2==0,Je.odd=!Je.even,this.multiTemplateDataRows?(Je.dataIndex=this._renderRows[Qe].dataIndex,Je.renderIndex=Qe):Je.index=this._renderRows[Qe].dataIndex}}_getCellTemplates(ve){return ve&&ve.columns?Array.from(ve.columns,Qe=>{const _t=this._columnDefsByName.get(Qe);return ve.extractCellTemplate(_t)}):[]}_applyNativeTableSections(){const ve=this._document.createDocumentFragment(),Qe=[{tag:"thead",outlets:[this._headerRowOutlet]},{tag:"tbody",outlets:[this._rowOutlet,this._noDataRowOutlet]},{tag:"tfoot",outlets:[this._footerRowOutlet]}];for(const _t of Qe){const se=this._document.createElement(_t.tag);se.setAttribute("role","rowgroup");for(const Je of _t.outlets)se.appendChild(Je.elementRef.nativeElement);ve.appendChild(se)}this._elementRef.nativeElement.appendChild(ve)}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const ve=(Qe,_t)=>Qe||_t.hasStickyChanged();this._headerRowDefs.reduce(ve,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(ve,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(ve,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new Ie(this._isNativeHtmlTable,this.stickyCssClass,this._dir?this._dir.value:"ltr",this._coalescedStyleScheduler,this._platform.isBrowser,this.needsPositionStickyOnElement,this._stickyPositioningListener),(this._dir?this._dir.change:(0,h.of)()).pipe((0,L.R)(this._onDestroy)).subscribe(Qe=>{this._stickyStyler.direction=Qe,this.updateStickyColumnStyles()})}_getOwnDefs(ve){return ve.filter(Qe=>!Qe._table||Qe._table===this)}_updateNoDataRow(){const ve=this._customNoDataRow||this._noDataRow;if(!ve)return;const Qe=0===this._rowOutlet.viewContainer.length;if(Qe===this._isShowingNoDataRow)return;const _t=this._noDataRowOutlet.viewContainer;if(Qe){const se=_t.createEmbeddedView(ve.templateRef),Je=se.rootNodes[0];1===se.rootNodes.length&&(null==Je?void 0:Je.nodeType)===this._document.ELEMENT_NODE&&(Je.setAttribute("role","row"),Je.classList.add(ve._contentClassName))}else _t.clear();this._isShowingNoDataRow=Qe}}return Ue.\u0275fac=function(ve){return new(ve||Ue)(t.Y36(t.ZZ4),t.Y36(t.sBO),t.Y36(t.SBq),t.$8M("role"),t.Y36(D.Is,8),t.Y36(M.K0),t.Y36(S.t4),t.Y36(f.k),t.Y36(T),t.Y36(k.rL),t.Y36(Ce,12),t.Y36(t.R0b,8))},Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(ve,Qe,_t){if(1&ve&&(t.Suo(_t,Me,5),t.Suo(_t,x,5),t.Suo(_t,be,5),t.Suo(_t,N,5),t.Suo(_t,he,5)),2&ve){let se;t.iGM(se=t.CRH())&&(Qe._noDataRow=se.first),t.iGM(se=t.CRH())&&(Qe._contentColumnDefs=se),t.iGM(se=t.CRH())&&(Qe._contentRowDefs=se),t.iGM(se=t.CRH())&&(Qe._contentHeaderRowDefs=se),t.iGM(se=t.CRH())&&(Qe._contentFooterRowDefs=se)}},viewQuery:function(ve,Qe){if(1&ve&&(t.Gf(Q,7),t.Gf(ft,7),t.Gf(tt,7),t.Gf(Dt,7)),2&ve){let _t;t.iGM(_t=t.CRH())&&(Qe._rowOutlet=_t.first),t.iGM(_t=t.CRH())&&(Qe._headerRowOutlet=_t.first),t.iGM(_t=t.CRH())&&(Qe._footerRowOutlet=_t.first),t.iGM(_t=t.CRH())&&(Qe._noDataRowOutlet=_t.first)}},hostAttrs:[1,"cdk-table"],hostVars:2,hostBindings:function(ve,Qe){2&ve&&t.ekj("cdk-table-fixed-layout",Qe.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:"multiTemplateDataRows",fixedLayout:"fixedLayout"},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],features:[t._Bn([{provide:ee,useExisting:Ue},{provide:f.k,useClass:f.yy},{provide:T,useClass:I},{provide:Ce,useValue:null}])],ngContentSelectors:B,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(ve,Qe){1&ve&&(t.F$t(E),t.Hsn(0),t.Hsn(1,1),t.GkF(2,0)(3,1)(4,2)(5,3))},directives:[ft,Q,Dt,tt],styles:[".cdk-table-fixed-layout{table-layout:fixed}\n"],encapsulation:2}),Ue})();function ui(Ue,Tt){return Ue.concat(Array.from(Tt))}let gt=(()=>{class Ue{}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275mod=t.oAB({type:Ue}),Ue.\u0275inj=t.cJS({imports:[[k.Cl]]}),Ue})();var it=p(508),bt=p(6451),ei=p(9841),Qt=p(4004);const Re=[[["caption"]],[["colgroup"],["col"]]],ke=["caption","colgroup, col"];let mt=(()=>{class Ue extends Zt{constructor(){super(...arguments),this.stickyCssClass="mat-table-sticky",this.needsPositionStickyOnElement=!1}}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-table"],hostVars:2,hostBindings:function(ve,Qe){2&ve&&t.ekj("mat-table-fixed-layout",Qe.fixedLayout)},exportAs:["matTable"],features:[t._Bn([{provide:f.k,useClass:f.yy},{provide:Zt,useExisting:Ue},{provide:ee,useExisting:Ue},{provide:T,useClass:I},{provide:Ce,useValue:null}]),t.qOj],ngContentSelectors:ke,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(ve,Qe){1&ve&&(t.F$t(Re),t.Hsn(0),t.Hsn(1,1),t.GkF(2,0)(3,1)(4,2)(5,3))},directives:[ft,Q,Dt,tt],styles:["mat-table{display:block}mat-header-row{min-height:56px}mat-row,mat-footer-row{min-height:48px}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}table.mat-table{border-spacing:0}tr.mat-header-row{height:56px}tr.mat-row,tr.mat-footer-row{height:48px}th.mat-header-cell{text-align:left}[dir=rtl] th.mat-header-cell{text-align:right}th.mat-header-cell,td.mat-cell,td.mat-footer-cell{padding:0;border-bottom-width:1px;border-bottom-style:solid}th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] th.mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] td.mat-cell:first-of-type:not(:only-of-type),[dir=rtl] td.mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] th.mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] td.mat-cell:last-of-type:not(:only-of-type),[dir=rtl] td.mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}.mat-table-sticky{position:sticky !important}.mat-table-fixed-layout{table-layout:fixed}\n"],encapsulation:2}),Ue})(),Ft=(()=>{class Ue extends ie{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matCellDef",""]],features:[t._Bn([{provide:ie,useExisting:Ue}]),t.qOj]}),Ue})(),nt=(()=>{class Ue extends re{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matHeaderCellDef",""]],features:[t._Bn([{provide:re,useExisting:Ue}]),t.qOj]}),Ue})(),He=(()=>{class Ue extends ge{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matFooterCellDef",""]],features:[t._Bn([{provide:ge,useExisting:Ue}]),t.qOj]}),Ue})(),rt=(()=>{class Ue extends x{get name(){return this._name}set name(ve){this._setNameInput(ve)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matColumnDef",""]],inputs:{sticky:"sticky",name:["matColumnDef","name"]},features:[t._Bn([{provide:x,useExisting:Ue},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Ue}]),t.qOj]}),Ue})(),et=(()=>{class Ue extends r{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-header-cell"],features:[t.qOj]}),Ue})(),Ae=(()=>{class Ue extends u{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:["role","gridcell",1,"mat-footer-cell"],features:[t.qOj]}),Ue})(),Ge=(()=>{class Ue extends c{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:["role","gridcell",1,"mat-cell"],features:[t.qOj]}),Ue})(),ot=(()=>{class Ue extends N{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matHeaderRowDef",""]],inputs:{columns:["matHeaderRowDef","columns"],sticky:["matHeaderRowDefSticky","sticky"]},features:[t._Bn([{provide:N,useExisting:Ue}]),t.qOj]}),Ue})(),lt=(()=>{class Ue extends he{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matFooterRowDef",""]],inputs:{columns:["matFooterRowDef","columns"],sticky:["matFooterRowDefSticky","sticky"]},features:[t._Bn([{provide:he,useExisting:Ue}]),t.qOj]}),Ue})(),Ct=(()=>{class Ue extends be{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["","matRowDef",""]],inputs:{columns:["matRowDefColumns","columns"],when:["matRowDefWhen","when"]},features:[t._Bn([{provide:be,useExisting:Ue}]),t.qOj]}),Ue})(),mi=(()=>{class Ue extends Ee{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-header-row"],exportAs:["matHeaderRow"],features:[t._Bn([{provide:Ee,useExisting:Ue}]),t.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ve,Qe){1&ve&&t.GkF(0,0)},directives:[Pe],encapsulation:2}),Ue})(),Jt=(()=>{class Ue extends j{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-footer-row"],exportAs:["matFooterRow"],features:[t._Bn([{provide:j,useExisting:Ue}]),t.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ve,Qe){1&ve&&t.GkF(0,0)},directives:[Pe],encapsulation:2}),Ue})(),$t=(()=>{class Ue extends Ve{}return Ue.\u0275fac=function(){let Tt;return function(Qe){return(Tt||(Tt=t.n5z(Ue)))(Qe||Ue)}}(),Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-row"],exportAs:["matRow"],features:[t._Bn([{provide:Ve,useExisting:Ue}]),t.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ve,Qe){1&ve&&t.GkF(0,0)},directives:[Pe],encapsulation:2}),Ue})(),Ji=(()=>{class Ue{}return Ue.\u0275fac=function(ve){return new(ve||Ue)},Ue.\u0275mod=t.oAB({type:Ue}),Ue.\u0275inj=t.cJS({imports:[[gt,it.BQ],it.BQ]}),Ue})();class Vi extends f.o2{constructor(Tt=[]){super(),this._renderData=new d.X([]),this._filter=new d.X(""),this._internalPageChanges=new a.x,this._renderChangesSubscription=null,this.sortingDataAccessor=(ve,Qe)=>{const _t=ve[Qe];if((0,e.t6)(_t)){const se=Number(_t);return se<9007199254740991?se:_t}return _t},this.sortData=(ve,Qe)=>{const _t=Qe.active,se=Qe.direction;return _t&&""!=se?ve.sort((Je,xt)=>{let Bt=this.sortingDataAccessor(Je,_t),xi=this.sortingDataAccessor(xt,_t);const Ti=typeof Bt,$i=typeof xi;Ti!==$i&&("number"===Ti&&(Bt+=""),"number"===$i&&(xi+=""));let Wi=0;return null!=Bt&&null!=xi?Bt>xi?Wi=1:Bt{const _t=Object.keys(ve).reduce((Je,xt)=>Je+ve[xt]+"\u25ec","").toLowerCase(),se=Qe.trim().toLowerCase();return-1!=_t.indexOf(se)},this._data=new d.X(Tt),this._updateChangeSubscription()}get data(){return this._data.value}set data(Tt){Tt=Array.isArray(Tt)?Tt:[],this._data.next(Tt),this._renderChangesSubscription||this._filterData(Tt)}get filter(){return this._filter.value}set filter(Tt){this._filter.next(Tt),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(Tt){this._sort=Tt,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(Tt){this._paginator=Tt,this._updateChangeSubscription()}_updateChangeSubscription(){var Tt;const ve=this._sort?(0,bt.T)(this._sort.sortChange,this._sort.initialized):(0,h.of)(null),Qe=this._paginator?(0,bt.T)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,h.of)(null),se=(0,ei.a)([this._data,this._filter]).pipe((0,Qt.U)(([Bt])=>this._filterData(Bt))),Je=(0,ei.a)([se,ve]).pipe((0,Qt.U)(([Bt])=>this._orderData(Bt))),xt=(0,ei.a)([Je,Qe]).pipe((0,Qt.U)(([Bt])=>this._pageData(Bt)));null===(Tt=this._renderChangesSubscription)||void 0===Tt||Tt.unsubscribe(),this._renderChangesSubscription=xt.subscribe(Bt=>this._renderData.next(Bt))}_filterData(Tt){return this.filteredData=null==this.filter||""===this.filter?Tt:Tt.filter(ve=>this.filterPredicate(ve,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(Tt){return this.sort?this.sortData(Tt.slice(),this.sort):Tt}_pageData(Tt){if(!this.paginator)return Tt;const ve=this.paginator.pageIndex*this.paginator.pageSize;return Tt.slice(ve,ve+this.paginator.pageSize)}_updatePaginator(Tt){Promise.resolve().then(()=>{const ve=this.paginator;if(ve&&(ve.length=Tt,ve.pageIndex>0)){const Qe=Math.ceil(ve.length/ve.pageSize)-1||0,_t=Math.min(ve.pageIndex,Qe);_t!==ve.pageIndex&&(ve.pageIndex=_t,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){var Tt;null===(Tt=this._renderChangesSubscription)||void 0===Tt||Tt.unsubscribe(),this._renderChangesSubscription=null}}class Ui extends Vi{}},3251:(Be,K,p)=>{"use strict";p.d(K,{BU:()=>de,Nh:()=>nt,Nj:()=>mt,SP:()=>Qt,uD:()=>we,uX:()=>xe});var t=p(5664),e=p(7144),f=p(7429),M=p(9808),a=p(5e3),C=p(508),d=p(6360),R=p(5698),h=p(8675),L=p(1884),w=p(2722),D=p(3900),S=p(5684),k=p(7579),E=p(727),B=p(4968),Z=p(9646),Y=p(6451),ae=p(515),ee=p(8306),ue=p(2805),ie=p(1777),re=p(226),ge=p(3191),q=p(1159),_e=p(925),x=p(5303);function i(He,rt){1&He&&a.Hsn(0)}const r=["*"];function u(He,rt){}const c=function(He){return{animationDuration:He}},v=function(He,rt){return{value:He,params:rt}},T=["tabListContainer"],I=["tabList"],y=["tabListInner"],n=["nextPaginator"],_=["previousPaginator"],V=["tabBodyWrapper"],N=["tabHeader"];function H(He,rt){}function X(He,rt){if(1&He&&a.YNc(0,H,0,0,"ng-template",10),2&He){const et=a.oxw().$implicit;a.Q6J("cdkPortalOutlet",et.templateLabel)}}function he(He,rt){if(1&He&&a._uU(0),2&He){const et=a.oxw().$implicit;a.Oqu(et.textLabel)}}function be(He,rt){if(1&He){const et=a.EpF();a.TgZ(0,"div",6),a.NdJ("click",function(){const Ge=a.CHM(et),ot=Ge.$implicit,lt=Ge.index,Ct=a.oxw(),mi=a.MAs(1);return Ct._handleClick(ot,mi,lt)})("cdkFocusChange",function(Ge){const lt=a.CHM(et).index;return a.oxw()._tabFocusChanged(Ge,lt)}),a.TgZ(1,"div",7),a.YNc(2,X,1,1,"ng-template",8),a.YNc(3,he,1,1,"ng-template",null,9,a.W1O),a.qZA()()}if(2&He){const et=rt.$implicit,Ae=rt.index,Ge=a.MAs(4),ot=a.oxw();a.ekj("mat-tab-label-active",ot.selectedIndex===Ae),a.Q6J("id",ot._getTabLabelId(Ae))("ngClass",et.labelClass)("disabled",et.disabled)("matRippleDisabled",et.disabled||ot.disableRipple),a.uIk("tabIndex",ot._getTabIndex(et,Ae))("aria-posinset",Ae+1)("aria-setsize",ot._tabs.length)("aria-controls",ot._getTabContentId(Ae))("aria-selected",ot.selectedIndex===Ae)("aria-label",et.ariaLabel||null)("aria-labelledby",!et.ariaLabel&&et.ariaLabelledby?et.ariaLabelledby:null),a.xp6(2),a.Q6J("ngIf",et.templateLabel)("ngIfElse",Ge)}}function Pe(He,rt){if(1&He){const et=a.EpF();a.TgZ(0,"mat-tab-body",11),a.NdJ("_onCentered",function(){return a.CHM(et),a.oxw()._removeTabBodyWrapperHeight()})("_onCentering",function(Ge){return a.CHM(et),a.oxw()._setTabBodyWrapperHeight(Ge)}),a.qZA()}if(2&He){const et=rt.$implicit,Ae=rt.index,Ge=a.oxw();a.ekj("mat-tab-body-active",Ge.selectedIndex===Ae),a.Q6J("id",Ge._getTabContentId(Ae))("ngClass",et.bodyClass)("content",et.content)("position",et.position)("origin",et.origin)("animationDuration",Ge.animationDuration),a.uIk("tabindex",null!=Ge.contentTabIndex&&Ge.selectedIndex===Ae?Ge.contentTabIndex:null)("aria-labelledby",Ge._getTabLabelId(Ae))}}const Ee=["mat-tab-nav-bar",""],j=new a.OlP("MatInkBarPositioner",{providedIn:"root",factory:function Ve(){return rt=>({left:rt?(rt.offsetLeft||0)+"px":"0",width:rt?(rt.offsetWidth||0)+"px":"0"})}});let Me=(()=>{class He{constructor(et,Ae,Ge,ot){this._elementRef=et,this._ngZone=Ae,this._inkBarPositioner=Ge,this._animationMode=ot}alignToElement(et){this.show(),this._ngZone.onStable.pipe((0,R.q)(1)).subscribe(()=>{const Ae=this._inkBarPositioner(et),Ge=this._elementRef.nativeElement;Ge.style.left=Ae.left,Ge.style.width=Ae.width})}show(){this._elementRef.nativeElement.style.visibility="visible"}hide(){this._elementRef.nativeElement.style.visibility="hidden"}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(a.R0b),a.Y36(j),a.Y36(d.Qb,8))},He.\u0275dir=a.lG2({type:He,selectors:[["mat-ink-bar"]],hostAttrs:[1,"mat-ink-bar"],hostVars:2,hostBindings:function(et,Ae){2&et&&a.ekj("_mat-animation-noopable","NoopAnimations"===Ae._animationMode)}}),He})();const J=new a.OlP("MatTabContent"),ut=new a.OlP("MatTabLabel"),Oe=new a.OlP("MAT_TAB");let we=(()=>{class He extends f.ig{constructor(et,Ae,Ge){super(et,Ae),this._closestTab=Ge}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.Rgc),a.Y36(a.s_b),a.Y36(Oe,8))},He.\u0275dir=a.lG2({type:He,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[a._Bn([{provide:ut,useExisting:He}]),a.qOj]}),He})();const ce=(0,C.Id)(class{}),Te=new a.OlP("MAT_TAB_GROUP");let xe=(()=>{class He extends ce{constructor(et,Ae){super(),this._viewContainerRef=et,this._closestTabGroup=Ae,this.textLabel="",this._contentPortal=null,this._stateChanges=new k.x,this.position=null,this.origin=null,this.isActive=!1}get templateLabel(){return this._templateLabel}set templateLabel(et){this._setTemplateLabelInput(et)}get content(){return this._contentPortal}ngOnChanges(et){(et.hasOwnProperty("textLabel")||et.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new f.UE(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(et){et&&et._closestTab===this&&(this._templateLabel=et)}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.s_b),a.Y36(Te,8))},He.\u0275cmp=a.Xpm({type:He,selectors:[["mat-tab"]],contentQueries:function(et,Ae,Ge){if(1&et&&(a.Suo(Ge,ut,5),a.Suo(Ge,J,7,a.Rgc)),2&et){let ot;a.iGM(ot=a.CRH())&&(Ae.templateLabel=ot.first),a.iGM(ot=a.CRH())&&(Ae._explicitContent=ot.first)}},viewQuery:function(et,Ae){if(1&et&&a.Gf(a.Rgc,7),2&et){let Ge;a.iGM(Ge=a.CRH())&&(Ae._implicitContent=Ge.first)}},inputs:{disabled:"disabled",textLabel:["label","textLabel"],ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],features:[a._Bn([{provide:Oe,useExisting:He}]),a.qOj,a.TTD],ngContentSelectors:r,decls:1,vars:0,template:function(et,Ae){1&et&&(a.F$t(),a.YNc(0,i,1,0,"ng-template"))},encapsulation:2}),He})();const W={translateTab:(0,ie.X$)("translateTab",[(0,ie.SB)("center, void, left-origin-center, right-origin-center",(0,ie.oB)({transform:"none"})),(0,ie.SB)("left",(0,ie.oB)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px"})),(0,ie.SB)("right",(0,ie.oB)({transform:"translate3d(100%, 0, 0)",minHeight:"1px"})),(0,ie.eR)("* => left, * => right, left => center, right => center",(0,ie.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,ie.eR)("void => left-origin-center",[(0,ie.oB)({transform:"translate3d(-100%, 0, 0)"}),(0,ie.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,ie.eR)("void => right-origin-center",[(0,ie.oB)({transform:"translate3d(100%, 0, 0)"}),(0,ie.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let te=(()=>{class He extends f.Pl{constructor(et,Ae,Ge,ot){super(et,Ae,ot),this._host=Ge,this._centeringSub=E.w0.EMPTY,this._leavingSub=E.w0.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,h.O)(this._host._isCenterPosition(this._host._position))).subscribe(et=>{et&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a._Vd),a.Y36(a.s_b),a.Y36((0,a.Gpc)(()=>fe)),a.Y36(M.K0))},He.\u0275dir=a.lG2({type:He,selectors:[["","matTabBodyHost",""]],features:[a.qOj]}),He})(),Ce=(()=>{class He{constructor(et,Ae,Ge){this._elementRef=et,this._dir=Ae,this._dirChangeSubscription=E.w0.EMPTY,this._translateTabComplete=new k.x,this._onCentering=new a.vpe,this._beforeCentering=new a.vpe,this._afterLeavingCenter=new a.vpe,this._onCentered=new a.vpe(!0),this.animationDuration="500ms",Ae&&(this._dirChangeSubscription=Ae.change.subscribe(ot=>{this._computePositionAnimationState(ot),Ge.markForCheck()})),this._translateTabComplete.pipe((0,L.x)((ot,lt)=>ot.fromState===lt.fromState&&ot.toState===lt.toState)).subscribe(ot=>{this._isCenterPosition(ot.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(ot.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}set position(et){this._positionIndex=et,this._computePositionAnimationState()}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(et){const Ae=this._isCenterPosition(et.toState);this._beforeCentering.emit(Ae),Ae&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(et){return"center"==et||"left-origin-center"==et||"right-origin-center"==et}_computePositionAnimationState(et=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==et?"left":"right":this._positionIndex>0?"ltr"==et?"right":"left":"center"}_computePositionFromOrigin(et){const Ae=this._getLayoutDirection();return"ltr"==Ae&&et<=0||"rtl"==Ae&&et>0?"left-origin-center":"right-origin-center"}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(re.Is,8),a.Y36(a.sBO))},He.\u0275dir=a.lG2({type:He,inputs:{_content:["content","_content"],origin:"origin",animationDuration:"animationDuration",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"}}),He})(),fe=(()=>{class He extends Ce{constructor(et,Ae,Ge){super(et,Ae,Ge)}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(re.Is,8),a.Y36(a.sBO))},He.\u0275cmp=a.Xpm({type:He,selectors:[["mat-tab-body"]],viewQuery:function(et,Ae){if(1&et&&a.Gf(f.Pl,5),2&et){let Ge;a.iGM(Ge=a.CRH())&&(Ae._portalHost=Ge.first)}},hostAttrs:[1,"mat-tab-body"],features:[a.qOj],decls:3,vars:6,consts:[["cdkScrollable","",1,"mat-tab-body-content"],["content",""],["matTabBodyHost",""]],template:function(et,Ae){1&et&&(a.TgZ(0,"div",0,1),a.NdJ("@translateTab.start",function(ot){return Ae._onTranslateTabStarted(ot)})("@translateTab.done",function(ot){return Ae._translateTabComplete.next(ot)}),a.YNc(2,u,0,0,"ng-template",2),a.qZA()),2&et&&a.Q6J("@translateTab",a.WLB(3,v,Ae._position,a.VKq(1,c,Ae.animationDuration)))},directives:[te],styles:['.mat-tab-body-content{height:100%;overflow:auto}.mat-tab-group-dynamic-height .mat-tab-body-content{overflow:hidden}.mat-tab-body-content[style*="visibility: hidden"]{display:none}\n'],encapsulation:2,data:{animation:[W.translateTab]}}),He})();const Q=new a.OlP("MAT_TABS_CONFIG"),ft=(0,C.Id)(class{});let tt=(()=>{class He extends ft{constructor(et){super(),this.elementRef=et}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq))},He.\u0275dir=a.lG2({type:He,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(et,Ae){2&et&&(a.uIk("aria-disabled",!!Ae.disabled),a.ekj("mat-tab-disabled",Ae.disabled))},inputs:{disabled:"disabled"},features:[a.qOj]}),He})();const Dt=(0,_e.i$)({passive:!0});let ui=(()=>{class He{constructor(et,Ae,Ge,ot,lt,Ct,mi){this._elementRef=et,this._changeDetectorRef=Ae,this._viewportRuler=Ge,this._dir=ot,this._ngZone=lt,this._platform=Ct,this._animationMode=mi,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new k.x,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new k.x,this.disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new a.vpe,this.indexFocused=new a.vpe,lt.runOutsideAngular(()=>{(0,B.R)(et.nativeElement,"mouseleave").pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}get selectedIndex(){return this._selectedIndex}set selectedIndex(et){et=(0,ge.su)(et),this._selectedIndex!=et&&(this._selectedIndexChanged=!0,this._selectedIndex=et,this._keyManager&&this._keyManager.updateActiveItem(et))}ngAfterViewInit(){(0,B.R)(this._previousPaginator.nativeElement,"touchstart",Dt).pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,B.R)(this._nextPaginator.nativeElement,"touchstart",Dt).pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const et=this._dir?this._dir.change:(0,Z.of)("ltr"),Ae=this._viewportRuler.change(150),Ge=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new t.Em(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap(),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,R.q)(1)).subscribe(Ge),(0,Y.T)(et,Ae,this._items.changes,this._itemsResized()).pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ge()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.pipe((0,w.R)(this._destroyed)).subscribe(ot=>{this.indexFocused.emit(ot),this._setTabFocus(ot)})}_itemsResized(){return"function"!=typeof ResizeObserver?ae.E:this._items.changes.pipe((0,h.O)(this._items),(0,D.w)(et=>new ee.y(Ae=>this._ngZone.runOutsideAngular(()=>{const Ge=new ResizeObserver(()=>{Ae.next()});return et.forEach(ot=>{Ge.observe(ot.elementRef.nativeElement)}),()=>{Ge.disconnect()}}))),(0,S.T)(1))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(et){if(!(0,q.Vb)(et))switch(et.keyCode){case q.K5:case q.L_:this.focusIndex!==this.selectedIndex&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(et));break;default:this._keyManager.onKeydown(et)}}_onContentChanges(){const et=this._elementRef.nativeElement.textContent;et!==this._currentTextContent&&(this._currentTextContent=et||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(et){!this._isValidIndex(et)||this.focusIndex===et||!this._keyManager||this._keyManager.setActiveItem(et)}_isValidIndex(et){if(!this._items)return!0;const Ae=this._items?this._items.toArray()[et]:null;return!!Ae&&!Ae.disabled}_setTabFocus(et){if(this._showPaginationControls&&this._scrollToLabel(et),this._items&&this._items.length){this._items.toArray()[et].focus();const Ae=this._tabListContainer.nativeElement;Ae.scrollLeft="ltr"==this._getLayoutDirection()?0:Ae.scrollWidth-Ae.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const et=this.scrollDistance,Ae="ltr"===this._getLayoutDirection()?-et:et;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Ae)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(et){this._scrollTo(et)}_scrollHeader(et){return this._scrollTo(this._scrollDistance+("before"==et?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(et){this._stopInterval(),this._scrollHeader(et)}_scrollToLabel(et){if(this.disablePagination)return;const Ae=this._items?this._items.toArray()[et]:null;if(!Ae)return;const Ge=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:ot,offsetWidth:lt}=Ae.elementRef.nativeElement;let Ct,mi;"ltr"==this._getLayoutDirection()?(Ct=ot,mi=Ct+lt):(mi=this._tabListInner.nativeElement.offsetWidth-ot,Ct=mi-lt);const Jt=this.scrollDistance,$t=this.scrollDistance+Ge;Ct$t&&(this.scrollDistance+=mi-$t+60)}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const et=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;et||(this.scrollDistance=0),et!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=et}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const et=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Ae=et?et.elementRef.nativeElement:null;Ae?this._inkBar.alignToElement(Ae):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(et,Ae){Ae&&null!=Ae.button&&0!==Ae.button||(this._stopInterval(),(0,ue.H)(650,100).pipe((0,w.R)((0,Y.T)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Ge,distance:ot}=this._scrollHeader(et);(0===ot||ot>=Ge)&&this._stopInterval()}))}_scrollTo(et){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Ae=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Ae,et)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Ae,distance:this._scrollDistance}}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(x.rL),a.Y36(re.Is,8),a.Y36(a.R0b),a.Y36(_e.t4),a.Y36(d.Qb,8))},He.\u0275dir=a.lG2({type:He,inputs:{disablePagination:"disablePagination"}}),He})(),Ot=(()=>{class He extends ui{constructor(et,Ae,Ge,ot,lt,Ct,mi){super(et,Ae,Ge,ot,lt,Ct,mi),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(et){this._disableRipple=(0,ge.Ig)(et)}_itemSelected(et){et.preventDefault()}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(x.rL),a.Y36(re.Is,8),a.Y36(a.R0b),a.Y36(_e.t4),a.Y36(d.Qb,8))},He.\u0275dir=a.lG2({type:He,inputs:{disableRipple:"disableRipple"},features:[a.qOj]}),He})(),Nt=(()=>{class He extends Ot{constructor(et,Ae,Ge,ot,lt,Ct,mi){super(et,Ae,Ge,ot,lt,Ct,mi)}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(x.rL),a.Y36(re.Is,8),a.Y36(a.R0b),a.Y36(_e.t4),a.Y36(d.Qb,8))},He.\u0275cmp=a.Xpm({type:He,selectors:[["mat-tab-header"]],contentQueries:function(et,Ae,Ge){if(1&et&&a.Suo(Ge,tt,4),2&et){let ot;a.iGM(ot=a.CRH())&&(Ae._items=ot)}},viewQuery:function(et,Ae){if(1&et&&(a.Gf(Me,7),a.Gf(T,7),a.Gf(I,7),a.Gf(y,7),a.Gf(n,5),a.Gf(_,5)),2&et){let Ge;a.iGM(Ge=a.CRH())&&(Ae._inkBar=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabListContainer=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabList=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabListInner=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._nextPaginator=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._previousPaginator=Ge.first)}},hostAttrs:[1,"mat-tab-header"],hostVars:4,hostBindings:function(et,Ae){2&et&&a.ekj("mat-tab-header-pagination-controls-enabled",Ae._showPaginationControls)("mat-tab-header-rtl","rtl"==Ae._getLayoutDirection())},inputs:{selectedIndex:"selectedIndex"},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[a.qOj],ngContentSelectors:r,decls:14,vars:10,consts:[["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-before","mat-elevation-z4",3,"matRippleDisabled","disabled","click","mousedown","touchend"],["previousPaginator",""],[1,"mat-tab-header-pagination-chevron"],[1,"mat-tab-label-container",3,"keydown"],["tabListContainer",""],["role","tablist",1,"mat-tab-list",3,"cdkObserveContent"],["tabList",""],[1,"mat-tab-labels"],["tabListInner",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-after","mat-elevation-z4",3,"matRippleDisabled","disabled","mousedown","click","touchend"],["nextPaginator",""]],template:function(et,Ae){1&et&&(a.F$t(),a.TgZ(0,"button",0,1),a.NdJ("click",function(){return Ae._handlePaginatorClick("before")})("mousedown",function(ot){return Ae._handlePaginatorPress("before",ot)})("touchend",function(){return Ae._stopInterval()}),a._UZ(2,"div",2),a.qZA(),a.TgZ(3,"div",3,4),a.NdJ("keydown",function(ot){return Ae._handleKeydown(ot)}),a.TgZ(5,"div",5,6),a.NdJ("cdkObserveContent",function(){return Ae._onContentChanges()}),a.TgZ(7,"div",7,8),a.Hsn(9),a.qZA(),a._UZ(10,"mat-ink-bar"),a.qZA()(),a.TgZ(11,"button",9,10),a.NdJ("mousedown",function(ot){return Ae._handlePaginatorPress("after",ot)})("click",function(){return Ae._handlePaginatorClick("after")})("touchend",function(){return Ae._stopInterval()}),a._UZ(13,"div",2),a.qZA()),2&et&&(a.ekj("mat-tab-header-pagination-disabled",Ae._disableScrollBefore),a.Q6J("matRippleDisabled",Ae._disableScrollBefore||Ae.disableRipple)("disabled",Ae._disableScrollBefore||null),a.xp6(5),a.ekj("_mat-animation-noopable","NoopAnimations"===Ae._animationMode),a.xp6(6),a.ekj("mat-tab-header-pagination-disabled",Ae._disableScrollAfter),a.Q6J("matRippleDisabled",Ae._disableScrollAfter||Ae.disableRipple)("disabled",Ae._disableScrollAfter||null))},directives:[C.wG,e.wD,Me],styles:[".mat-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mat-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:transparent;touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-tab-header-pagination::-moz-focus-inner{border:0}.mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination{display:flex}.mat-tab-header-pagination-before,.mat-tab-header-rtl .mat-tab-header-pagination-after{padding-left:4px}.mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-rtl .mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-tab-header-rtl .mat-tab-header-pagination-before,.mat-tab-header-pagination-after{padding-right:4px}.mat-tab-header-rtl .mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px}.mat-tab-header-pagination-disabled{box-shadow:none;cursor:default}.mat-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-ink-bar{position:absolute;bottom:0;height:2px;transition:500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable.mat-ink-bar{transition:none;animation:none}.mat-tab-group-inverted-header .mat-ink-bar{bottom:auto;top:0}.cdk-high-contrast-active .mat-ink-bar{outline:solid 2px;height:0}.mat-tab-labels{display:flex}[mat-align-tabs=center]>.mat-tab-header .mat-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-tab-header .mat-tab-labels{justify-content:flex-end}.mat-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}._mat-animation-noopable.mat-tab-list{transition:none;animation:none}.mat-tab-label{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;position:relative}.mat-tab-label:focus{outline:none}.mat-tab-label:focus:not(.mat-tab-disabled){opacity:1}.cdk-high-contrast-active .mat-tab-label:focus{outline:dotted 2px;outline-offset:-2px}.mat-tab-label.mat-tab-disabled{cursor:default}.cdk-high-contrast-active .mat-tab-label.mat-tab-disabled{opacity:.5}.mat-tab-label .mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}.cdk-high-contrast-active .mat-tab-label{opacity:1}@media(max-width: 599px){.mat-tab-label{min-width:72px}}\n"],encapsulation:2}),He})(),gt=0;class it{}const bt=(0,C.pj)((0,C.Kr)(class{constructor(He){this._elementRef=He}}),"primary");let ei=(()=>{class He extends bt{constructor(et,Ae,Ge,ot){var lt;super(et),this._changeDetectorRef=Ae,this._animationMode=ot,this._tabs=new a.n_E,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=E.w0.EMPTY,this._tabLabelSubscription=E.w0.EMPTY,this._selectedIndex=null,this.headerPosition="above",this.selectedIndexChange=new a.vpe,this.focusChange=new a.vpe,this.animationDone=new a.vpe,this.selectedTabChange=new a.vpe(!0),this._groupId=gt++,this.animationDuration=Ge&&Ge.animationDuration?Ge.animationDuration:"500ms",this.disablePagination=!(!Ge||null==Ge.disablePagination)&&Ge.disablePagination,this.dynamicHeight=!(!Ge||null==Ge.dynamicHeight)&&Ge.dynamicHeight,this.contentTabIndex=null!==(lt=null==Ge?void 0:Ge.contentTabIndex)&&void 0!==lt?lt:null}get dynamicHeight(){return this._dynamicHeight}set dynamicHeight(et){this._dynamicHeight=(0,ge.Ig)(et)}get selectedIndex(){return this._selectedIndex}set selectedIndex(et){this._indexToSelect=(0,ge.su)(et,null)}get animationDuration(){return this._animationDuration}set animationDuration(et){this._animationDuration=/^\d+$/.test(et+"")?et+"ms":et}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(et){this._contentTabIndex=(0,ge.su)(et,null)}get backgroundColor(){return this._backgroundColor}set backgroundColor(et){const Ae=this._elementRef.nativeElement;Ae.classList.remove(`mat-background-${this.backgroundColor}`),et&&Ae.classList.add(`mat-background-${et}`),this._backgroundColor=et}ngAfterContentChecked(){const et=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=et){const Ae=null==this._selectedIndex;if(!Ae){this.selectedTabChange.emit(this._createChangeEvent(et));const Ge=this._tabBodyWrapper.nativeElement;Ge.style.minHeight=Ge.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Ge,ot)=>Ge.isActive=ot===et),Ae||(this.selectedIndexChange.emit(et),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Ae,Ge)=>{Ae.position=Ge-et,null!=this._selectedIndex&&0==Ae.position&&!Ae.origin&&(Ae.origin=et-this._selectedIndex)}),this._selectedIndex!==et&&(this._selectedIndex=et,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const et=this._clampTabIndex(this._indexToSelect);if(et===this._selectedIndex){const Ae=this._tabs.toArray();let Ge;for(let ot=0;ot{Ae[et].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(et))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,h.O)(this._allTabs)).subscribe(et=>{this._tabs.reset(et.filter(Ae=>Ae._closestTabGroup===this||!Ae._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(et){const Ae=this._tabHeader;Ae&&(Ae.focusIndex=et)}_focusChanged(et){this._lastFocusedTabIndex=et,this.focusChange.emit(this._createChangeEvent(et))}_createChangeEvent(et){const Ae=new it;return Ae.index=et,this._tabs&&this._tabs.length&&(Ae.tab=this._tabs.toArray()[et]),Ae}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,Y.T)(...this._tabs.map(et=>et._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(et){return Math.min(this._tabs.length-1,Math.max(et||0,0))}_getTabLabelId(et){return`mat-tab-label-${this._groupId}-${et}`}_getTabContentId(et){return`mat-tab-content-${this._groupId}-${et}`}_setTabBodyWrapperHeight(et){if(!this._dynamicHeight||!this._tabBodyWrapperHeight)return;const Ae=this._tabBodyWrapper.nativeElement;Ae.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Ae.style.height=et+"px")}_removeTabBodyWrapperHeight(){const et=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=et.clientHeight,et.style.height="",this.animationDone.emit()}_handleClick(et,Ae,Ge){et.disabled||(this.selectedIndex=Ae.focusIndex=Ge)}_getTabIndex(et,Ae){var Ge;return et.disabled?null:Ae===(null!==(Ge=this._lastFocusedTabIndex)&&void 0!==Ge?Ge:this.selectedIndex)?0:-1}_tabFocusChanged(et,Ae){et&&"mouse"!==et&&"touch"!==et&&(this._tabHeader.focusIndex=Ae)}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(Q,8),a.Y36(d.Qb,8))},He.\u0275dir=a.lG2({type:He,inputs:{dynamicHeight:"dynamicHeight",selectedIndex:"selectedIndex",headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:"contentTabIndex",disablePagination:"disablePagination",backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},features:[a.qOj]}),He})(),Qt=(()=>{class He extends ei{constructor(et,Ae,Ge,ot){super(et,Ae,Ge,ot)}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(Q,8),a.Y36(d.Qb,8))},He.\u0275cmp=a.Xpm({type:He,selectors:[["mat-tab-group"]],contentQueries:function(et,Ae,Ge){if(1&et&&a.Suo(Ge,xe,5),2&et){let ot;a.iGM(ot=a.CRH())&&(Ae._allTabs=ot)}},viewQuery:function(et,Ae){if(1&et&&(a.Gf(V,5),a.Gf(N,5)),2&et){let Ge;a.iGM(Ge=a.CRH())&&(Ae._tabBodyWrapper=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabHeader=Ge.first)}},hostAttrs:[1,"mat-tab-group"],hostVars:4,hostBindings:function(et,Ae){2&et&&a.ekj("mat-tab-group-dynamic-height",Ae.dynamicHeight)("mat-tab-group-inverted-header","below"===Ae.headerPosition)},inputs:{color:"color",disableRipple:"disableRipple"},exportAs:["matTabGroup"],features:[a._Bn([{provide:Te,useExisting:He}]),a.qOj],decls:6,vars:7,consts:[[3,"selectedIndex","disableRipple","disablePagination","indexFocused","selectFocusedIndex"],["tabHeader",""],["class","mat-tab-label mat-focus-indicator","role","tab","matTabLabelWrapper","","mat-ripple","","cdkMonitorElementFocus","",3,"id","mat-tab-label-active","ngClass","disabled","matRippleDisabled","click","cdkFocusChange",4,"ngFor","ngForOf"],[1,"mat-tab-body-wrapper"],["tabBodyWrapper",""],["role","tabpanel",3,"id","mat-tab-body-active","ngClass","content","position","origin","animationDuration","_onCentered","_onCentering",4,"ngFor","ngForOf"],["role","tab","matTabLabelWrapper","","mat-ripple","","cdkMonitorElementFocus","",1,"mat-tab-label","mat-focus-indicator",3,"id","ngClass","disabled","matRippleDisabled","click","cdkFocusChange"],[1,"mat-tab-label-content"],[3,"ngIf","ngIfElse"],["tabTextLabel",""],[3,"cdkPortalOutlet"],["role","tabpanel",3,"id","ngClass","content","position","origin","animationDuration","_onCentered","_onCentering"]],template:function(et,Ae){1&et&&(a.TgZ(0,"mat-tab-header",0,1),a.NdJ("indexFocused",function(ot){return Ae._focusChanged(ot)})("selectFocusedIndex",function(ot){return Ae.selectedIndex=ot}),a.YNc(2,be,5,15,"div",2),a.qZA(),a.TgZ(3,"div",3,4),a.YNc(5,Pe,1,10,"mat-tab-body",5),a.qZA()),2&et&&(a.Q6J("selectedIndex",Ae.selectedIndex||0)("disableRipple",Ae.disableRipple)("disablePagination",Ae.disablePagination),a.xp6(2),a.Q6J("ngForOf",Ae._tabs),a.xp6(1),a.ekj("_mat-animation-noopable","NoopAnimations"===Ae._animationMode),a.xp6(2),a.Q6J("ngForOf",Ae._tabs))},directives:[Nt,fe,M.sg,tt,C.wG,t.kH,M.mk,M.O5,f.Pl],styles:[".mat-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-tab-group.mat-tab-group-inverted-header{flex-direction:column-reverse}.mat-tab-label{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;position:relative}.mat-tab-label:focus{outline:none}.mat-tab-label:focus:not(.mat-tab-disabled){opacity:1}.cdk-high-contrast-active .mat-tab-label:focus{outline:dotted 2px;outline-offset:-2px}.mat-tab-label.mat-tab-disabled{cursor:default}.cdk-high-contrast-active .mat-tab-label.mat-tab-disabled{opacity:.5}.mat-tab-label .mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}.cdk-high-contrast-active .mat-tab-label{opacity:1}@media(max-width: 599px){.mat-tab-label{padding:0 12px}}@media(max-width: 959px){.mat-tab-label{padding:0 12px}}.mat-tab-group[mat-stretch-tabs]>.mat-tab-header .mat-tab-label{flex-basis:0;flex-grow:1}.mat-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable.mat-tab-body-wrapper{transition:none;animation:none}.mat-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-tab-body.mat-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-tab-group.mat-tab-group-dynamic-height .mat-tab-body.mat-tab-body-active{overflow-y:hidden}\n"],encapsulation:2}),He})(),Re=0,ke=(()=>{class He extends ui{constructor(et,Ae,Ge,ot,lt,Ct,mi){super(et,ot,lt,Ae,Ge,Ct,mi),this._disableRipple=!1,this.color="primary"}get backgroundColor(){return this._backgroundColor}set backgroundColor(et){const Ae=this._elementRef.nativeElement.classList;Ae.remove(`mat-background-${this.backgroundColor}`),et&&Ae.add(`mat-background-${et}`),this._backgroundColor=et}get disableRipple(){return this._disableRipple}set disableRipple(et){this._disableRipple=(0,ge.Ig)(et)}_itemSelected(){}ngAfterContentInit(){this._items.changes.pipe((0,h.O)(null),(0,w.R)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}updateActiveLink(){if(!this._items)return;const et=this._items.toArray();for(let Ae=0;Ae{class He extends ke{constructor(et,Ae,Ge,ot,lt,Ct,mi){super(et,Ae,Ge,ot,lt,Ct,mi)}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(a.SBq),a.Y36(re.Is,8),a.Y36(a.R0b),a.Y36(a.sBO),a.Y36(x.rL),a.Y36(_e.t4),a.Y36(d.Qb,8))},He.\u0275cmp=a.Xpm({type:He,selectors:[["","mat-tab-nav-bar",""]],contentQueries:function(et,Ae,Ge){if(1&et&&a.Suo(Ge,mt,5),2&et){let ot;a.iGM(ot=a.CRH())&&(Ae._items=ot)}},viewQuery:function(et,Ae){if(1&et&&(a.Gf(Me,7),a.Gf(T,7),a.Gf(I,7),a.Gf(y,7),a.Gf(n,5),a.Gf(_,5)),2&et){let Ge;a.iGM(Ge=a.CRH())&&(Ae._inkBar=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabListContainer=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabList=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._tabListInner=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._nextPaginator=Ge.first),a.iGM(Ge=a.CRH())&&(Ae._previousPaginator=Ge.first)}},hostAttrs:[1,"mat-tab-nav-bar","mat-tab-header"],hostVars:11,hostBindings:function(et,Ae){2&et&&(a.uIk("role",Ae._getRole()),a.ekj("mat-tab-header-pagination-controls-enabled",Ae._showPaginationControls)("mat-tab-header-rtl","rtl"==Ae._getLayoutDirection())("mat-primary","warn"!==Ae.color&&"accent"!==Ae.color)("mat-accent","accent"===Ae.color)("mat-warn","warn"===Ae.color))},inputs:{color:"color"},exportAs:["matTabNavBar","matTabNav"],features:[a.qOj],attrs:Ee,ngContentSelectors:r,decls:14,vars:10,consts:[["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-before","mat-elevation-z4",3,"matRippleDisabled","disabled","click","mousedown","touchend"],["previousPaginator",""],[1,"mat-tab-header-pagination-chevron"],[1,"mat-tab-link-container",3,"keydown"],["tabListContainer",""],[1,"mat-tab-list",3,"cdkObserveContent"],["tabList",""],[1,"mat-tab-links"],["tabListInner",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-after","mat-elevation-z4",3,"matRippleDisabled","disabled","mousedown","click","touchend"],["nextPaginator",""]],template:function(et,Ae){1&et&&(a.F$t(),a.TgZ(0,"button",0,1),a.NdJ("click",function(){return Ae._handlePaginatorClick("before")})("mousedown",function(ot){return Ae._handlePaginatorPress("before",ot)})("touchend",function(){return Ae._stopInterval()}),a._UZ(2,"div",2),a.qZA(),a.TgZ(3,"div",3,4),a.NdJ("keydown",function(ot){return Ae._handleKeydown(ot)}),a.TgZ(5,"div",5,6),a.NdJ("cdkObserveContent",function(){return Ae._onContentChanges()}),a.TgZ(7,"div",7,8),a.Hsn(9),a.qZA(),a._UZ(10,"mat-ink-bar"),a.qZA()(),a.TgZ(11,"button",9,10),a.NdJ("mousedown",function(ot){return Ae._handlePaginatorPress("after",ot)})("click",function(){return Ae._handlePaginatorClick("after")})("touchend",function(){return Ae._stopInterval()}),a._UZ(13,"div",2),a.qZA()),2&et&&(a.ekj("mat-tab-header-pagination-disabled",Ae._disableScrollBefore),a.Q6J("matRippleDisabled",Ae._disableScrollBefore||Ae.disableRipple)("disabled",Ae._disableScrollBefore||null),a.xp6(5),a.ekj("_mat-animation-noopable","NoopAnimations"===Ae._animationMode),a.xp6(6),a.ekj("mat-tab-header-pagination-disabled",Ae._disableScrollAfter),a.Q6J("matRippleDisabled",Ae._disableScrollAfter||Ae.disableRipple)("disabled",Ae._disableScrollAfter||null))},directives:[C.wG,e.wD,Me],styles:[".mat-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mat-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:transparent;touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-tab-header-pagination::-moz-focus-inner{border:0}.mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination{display:flex}.mat-tab-header-pagination-before,.mat-tab-header-rtl .mat-tab-header-pagination-after{padding-left:4px}.mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-rtl .mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-tab-header-rtl .mat-tab-header-pagination-before,.mat-tab-header-pagination-after{padding-right:4px}.mat-tab-header-rtl .mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px}.mat-tab-header-pagination-disabled{box-shadow:none;cursor:default}.mat-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-tab-links{display:flex}[mat-align-tabs=center]>.mat-tab-link-container .mat-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-tab-link-container .mat-tab-links{justify-content:flex-end}.mat-ink-bar{position:absolute;bottom:0;height:2px;transition:500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable.mat-ink-bar{transition:none;animation:none}.mat-tab-group-inverted-header .mat-ink-bar{bottom:auto;top:0}.cdk-high-contrast-active .mat-ink-bar{outline:solid 2px;height:0}.mat-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}.mat-tab-link{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;vertical-align:top;text-decoration:none;position:relative;overflow:hidden;-webkit-tap-highlight-color:transparent}.mat-tab-link:focus{outline:none}.mat-tab-link:focus:not(.mat-tab-disabled){opacity:1}.cdk-high-contrast-active .mat-tab-link:focus{outline:dotted 2px;outline-offset:-2px}.mat-tab-link.mat-tab-disabled{cursor:default}.cdk-high-contrast-active .mat-tab-link.mat-tab-disabled{opacity:.5}.mat-tab-link .mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}.cdk-high-contrast-active .mat-tab-link{opacity:1}[mat-stretch-tabs] .mat-tab-link{flex-basis:0;flex-grow:1}.mat-tab-link.mat-tab-disabled{pointer-events:none}@media(max-width: 599px){.mat-tab-link{min-width:72px}}\n"],encapsulation:2}),He})();const ye=(0,C.sb)((0,C.Kr)((0,C.Id)(class{})));let ht=(()=>{class He extends ye{constructor(et,Ae,Ge,ot,lt,Ct){super(),this._tabNavBar=et,this.elementRef=Ae,this._focusMonitor=lt,this._isActive=!1,this.id="mat-tab-link-"+Re++,this.rippleConfig=Ge||{},this.tabIndex=parseInt(ot)||0,"NoopAnimations"===Ct&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0})}get active(){return this._isActive}set active(et){const Ae=(0,ge.Ig)(et);Ae!==this._isActive&&(this._isActive=Ae,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(et){this._tabNavBar.tabPanel&&et.keyCode===q.L_&&this.elementRef.nativeElement.click()}_getAriaControls(){var et;return this._tabNavBar.tabPanel?null===(et=this._tabNavBar.tabPanel)||void 0===et?void 0:et.id:this.elementRef.nativeElement.getAttribute("aria-controls")}_getAriaSelected(){return this._tabNavBar.tabPanel?this.active?"true":"false":this.elementRef.nativeElement.getAttribute("aria-selected")}_getAriaCurrent(){return this.active&&!this._tabNavBar.tabPanel?"page":null}_getRole(){return this._tabNavBar.tabPanel?"tab":this.elementRef.nativeElement.getAttribute("role")}_getTabIndex(){return this._tabNavBar.tabPanel?this._isActive?0:-1:this.tabIndex}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(ke),a.Y36(a.SBq),a.Y36(C.Y2,8),a.$8M("tabindex"),a.Y36(t.tE),a.Y36(d.Qb,8))},He.\u0275dir=a.lG2({type:He,inputs:{active:"active",id:"id"},features:[a.qOj]}),He})(),mt=(()=>{class He extends ht{constructor(et,Ae,Ge,ot,lt,Ct,mi,Jt){super(et,Ae,lt,Ct,mi,Jt),this._tabLinkRipple=new C.IR(this,Ge,Ae,ot),this._tabLinkRipple.setupTriggerEvents(Ae.nativeElement)}ngOnDestroy(){super.ngOnDestroy(),this._tabLinkRipple._removeTriggerEvents()}}return He.\u0275fac=function(et){return new(et||He)(a.Y36(de),a.Y36(a.SBq),a.Y36(a.R0b),a.Y36(_e.t4),a.Y36(C.Y2,8),a.$8M("tabindex"),a.Y36(t.tE),a.Y36(d.Qb,8))},He.\u0275dir=a.lG2({type:He,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mat-tab-link","mat-focus-indicator"],hostVars:11,hostBindings:function(et,Ae){1&et&&a.NdJ("focus",function(){return Ae._handleFocus()})("keydown",function(ot){return Ae._handleKeydown(ot)}),2&et&&(a.uIk("aria-controls",Ae._getAriaControls())("aria-current",Ae._getAriaCurrent())("aria-disabled",Ae.disabled)("aria-selected",Ae._getAriaSelected())("id",Ae.id)("tabIndex",Ae._getTabIndex())("role",Ae._getRole()),a.ekj("mat-tab-disabled",Ae.disabled)("mat-tab-label-active",Ae.active))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matTabLink"],features:[a.qOj]}),He})(),nt=(()=>{class He{}return He.\u0275fac=function(et){return new(et||He)},He.\u0275mod=a.oAB({type:He}),He.\u0275inj=a.cJS({imports:[[M.ez,C.BQ,f.eL,C.si,e.Q8,t.rt],C.BQ]}),He})()},4594:(Be,K,p)=>{"use strict";p.d(K,{Ye:()=>h,g0:()=>w});var t=p(5e3),e=p(508),f=p(9808),M=p(925);const a=["*",[["mat-toolbar-row"]]],C=["*","mat-toolbar-row"],d=(0,e.pj)(class{constructor(D){this._elementRef=D}});let R=(()=>{class D{}return D.\u0275fac=function(k){return new(k||D)},D.\u0275dir=t.lG2({type:D,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]}),D})(),h=(()=>{class D extends d{constructor(k,E,B){super(k),this._platform=E,this._document=B}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}}return D.\u0275fac=function(k){return new(k||D)(t.Y36(t.SBq),t.Y36(M.t4),t.Y36(f.K0))},D.\u0275cmp=t.Xpm({type:D,selectors:[["mat-toolbar"]],contentQueries:function(k,E,B){if(1&k&&t.Suo(B,R,5),2&k){let Z;t.iGM(Z=t.CRH())&&(E._toolbarRows=Z)}},hostAttrs:[1,"mat-toolbar"],hostVars:4,hostBindings:function(k,E){2&k&&t.ekj("mat-toolbar-multiple-rows",E._toolbarRows.length>0)("mat-toolbar-single-row",0===E._toolbarRows.length)},inputs:{color:"color"},exportAs:["matToolbar"],features:[t.qOj],ngContentSelectors:C,decls:2,vars:0,template:function(k,E){1&k&&(t.F$t(a),t.Hsn(0),t.Hsn(1,1))},styles:[".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}\n"],encapsulation:2,changeDetection:0}),D})(),w=(()=>{class D{}return D.\u0275fac=function(k){return new(k||D)},D.\u0275mod=t.oAB({type:D}),D.\u0275inj=t.cJS({imports:[[e.BQ],e.BQ]}),D})()},7238:(Be,K,p)=>{"use strict";p.d(K,{AV:()=>I,gM:()=>c});var t=p(9776),e=p(5664),f=p(9808),M=p(5e3),a=p(508),C=p(5303),d=p(3191),R=p(1159),h=p(5113),L=p(925),w=p(7429),D=p(6360),S=p(7579),k=p(2722),E=p(5698),B=p(226);p(1777);const Y=["tooltip"],ue="tooltip-panel",ie=(0,L.i$)({passive:!0}),q=new M.OlP("mat-tooltip-scroll-strategy"),x={provide:q,deps:[t.aV],useFactory:function _e(n){return()=>n.scrollStrategies.reposition({scrollThrottle:20})}},i=new M.OlP("mat-tooltip-default-options",{providedIn:"root",factory:function r(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}});let u=(()=>{class n{constructor(V,N,H,X,he,be,Pe,Ee,j,Ve,Me,J){this._overlay=V,this._elementRef=N,this._scrollDispatcher=H,this._viewContainerRef=X,this._ngZone=he,this._platform=be,this._ariaDescriber=Pe,this._focusMonitor=Ee,this._dir=Ve,this._defaultOptions=Me,this._position="below",this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._viewportMargin=8,this._cssClassPrefix="mat",this._showDelay=this._defaultOptions.showDelay,this._hideDelay=this._defaultOptions.hideDelay,this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new S.x,this._scrollStrategy=j,this._document=J,Me&&(Me.position&&(this.position=Me.position),Me.touchGestures&&(this.touchGestures=Me.touchGestures)),Ve.change.pipe((0,k.R)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})}get position(){return this._position}set position(V){var N;V!==this._position&&(this._position=V,this._overlayRef&&(this._updatePosition(this._overlayRef),null===(N=this._tooltipInstance)||void 0===N||N.show(0),this._overlayRef.updatePosition()))}get disabled(){return this._disabled}set disabled(V){this._disabled=(0,d.Ig)(V),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(V){this._showDelay=(0,d.su)(V)}get hideDelay(){return this._hideDelay}set hideDelay(V){this._hideDelay=(0,d.su)(V),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(V){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=V?String(V).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(V){this._tooltipClass=V,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,k.R)(this._destroyed)).subscribe(V=>{V?"keyboard"===V&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const V=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([N,H])=>{V.removeEventListener(N,H,ie)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(V,this.message,"tooltip"),this._focusMonitor.stopMonitoring(V)}show(V=this.showDelay){if(this.disabled||!this.message||this._isTooltipVisible()&&!this._tooltipInstance._showTimeoutId&&!this._tooltipInstance._hideTimeoutId)return;const N=this._createOverlay();this._detach(),this._portal=this._portal||new w.C5(this._tooltipComponent,this._viewContainerRef);const H=this._tooltipInstance=N.attach(this._portal).instance;H._triggerElement=this._elementRef.nativeElement,H._mouseLeaveHideDelay=this._hideDelay,H.afterHidden().pipe((0,k.R)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),H.show(V)}hide(V=this.hideDelay){this._tooltipInstance&&this._tooltipInstance.hide(V)}toggle(){this._isTooltipVisible()?this.hide():this.show()}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(){var V;if(this._overlayRef)return this._overlayRef;const N=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),H=this._overlay.position().flexibleConnectedTo(this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(N);return H.positionChanges.pipe((0,k.R)(this._destroyed)).subscribe(X=>{this._updateCurrentPositionClass(X.connectionPair),this._tooltipInstance&&X.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:H,panelClass:`${this._cssClassPrefix}-${ue}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,k.R)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,k.R)(this._destroyed)).subscribe(()=>{var X;return null===(X=this._tooltipInstance)||void 0===X?void 0:X._handleBodyInteraction()}),this._overlayRef.keydownEvents().pipe((0,k.R)(this._destroyed)).subscribe(X=>{this._isTooltipVisible()&&X.keyCode===R.hY&&!(0,R.Vb)(X)&&(X.preventDefault(),X.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),(null===(V=this._defaultOptions)||void 0===V?void 0:V.disableTooltipInteractivity)&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(V){const N=V.getConfig().positionStrategy,H=this._getOrigin(),X=this._getOverlayPosition();N.withPositions([this._addOffset(Object.assign(Object.assign({},H.main),X.main)),this._addOffset(Object.assign(Object.assign({},H.fallback),X.fallback))])}_addOffset(V){return V}_getOrigin(){const V=!this._dir||"ltr"==this._dir.value,N=this.position;let H;"above"==N||"below"==N?H={originX:"center",originY:"above"==N?"top":"bottom"}:"before"==N||"left"==N&&V||"right"==N&&!V?H={originX:"start",originY:"center"}:("after"==N||"right"==N&&V||"left"==N&&!V)&&(H={originX:"end",originY:"center"});const{x:X,y:he}=this._invertPosition(H.originX,H.originY);return{main:H,fallback:{originX:X,originY:he}}}_getOverlayPosition(){const V=!this._dir||"ltr"==this._dir.value,N=this.position;let H;"above"==N?H={overlayX:"center",overlayY:"bottom"}:"below"==N?H={overlayX:"center",overlayY:"top"}:"before"==N||"left"==N&&V||"right"==N&&!V?H={overlayX:"end",overlayY:"center"}:("after"==N||"right"==N&&V||"left"==N&&!V)&&(H={overlayX:"start",overlayY:"center"});const{x:X,y:he}=this._invertPosition(H.overlayX,H.overlayY);return{main:H,fallback:{overlayX:X,overlayY:he}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,E.q)(1),(0,k.R)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(V){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=V,this._tooltipInstance._markForCheck())}_invertPosition(V,N){return"above"===this.position||"below"===this.position?"top"===N?N="bottom":"bottom"===N&&(N="top"):"end"===V?V="start":"start"===V&&(V="end"),{x:V,y:N}}_updateCurrentPositionClass(V){const{overlayY:N,originX:H,originY:X}=V;let he;if(he="center"===N?this._dir&&"rtl"===this._dir.value?"end"===H?"left":"right":"start"===H?"left":"right":"bottom"===N&&"top"===X?"above":"below",he!==this._currentPosition){const be=this._overlayRef;if(be){const Pe=`${this._cssClassPrefix}-${ue}-`;be.removePanelClass(Pe+this._currentPosition),be.addPanelClass(Pe+he)}this._currentPosition=he}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",()=>{this._setupPointerExitEventsIfNeeded(),this.show()}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",()=>{this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(),500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const V=[];if(this._platformSupportsMouseEvents())V.push(["mouseleave",N=>{var H;const X=N.relatedTarget;(!X||!(null===(H=this._overlayRef)||void 0===H?void 0:H.overlayElement.contains(X)))&&this.hide()}],["wheel",N=>this._wheelListener(N)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const N=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};V.push(["touchend",N],["touchcancel",N])}this._addListeners(V),this._passiveListeners.push(...V)}_addListeners(V){V.forEach(([N,H])=>{this._elementRef.nativeElement.addEventListener(N,H,ie)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(V){if(this._isTooltipVisible()){const N=this._document.elementFromPoint(V.clientX,V.clientY),H=this._elementRef.nativeElement;N!==H&&!H.contains(N)&&this.hide()}}_disableNativeGesturesIfNecessary(){const V=this.touchGestures;if("off"!==V){const N=this._elementRef.nativeElement,H=N.style;("on"===V||"INPUT"!==N.nodeName&&"TEXTAREA"!==N.nodeName)&&(H.userSelect=H.msUserSelect=H.webkitUserSelect=H.MozUserSelect="none"),("on"===V||!N.draggable)&&(H.webkitUserDrag="none"),H.touchAction="none",H.webkitTapHighlightColor="transparent"}}}return n.\u0275fac=function(V){M.$Z()},n.\u0275dir=M.lG2({type:n,inputs:{position:["matTooltipPosition","position"],disabled:["matTooltipDisabled","disabled"],showDelay:["matTooltipShowDelay","showDelay"],hideDelay:["matTooltipHideDelay","hideDelay"],touchGestures:["matTooltipTouchGestures","touchGestures"],message:["matTooltip","message"],tooltipClass:["matTooltipClass","tooltipClass"]}}),n})(),c=(()=>{class n extends u{constructor(V,N,H,X,he,be,Pe,Ee,j,Ve,Me,J){super(V,N,H,X,he,be,Pe,Ee,j,Ve,Me,J),this._tooltipComponent=T}}return n.\u0275fac=function(V){return new(V||n)(M.Y36(t.aV),M.Y36(M.SBq),M.Y36(C.mF),M.Y36(M.s_b),M.Y36(M.R0b),M.Y36(L.t4),M.Y36(e.$s),M.Y36(e.tE),M.Y36(q),M.Y36(B.Is,8),M.Y36(i,8),M.Y36(f.K0))},n.\u0275dir=M.lG2({type:n,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-tooltip-trigger"],exportAs:["matTooltip"],features:[M.qOj]}),n})(),v=(()=>{class n{constructor(V,N){this._changeDetectorRef=V,this._visibility="initial",this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new S.x,this._animationsDisabled="NoopAnimations"===N}show(V){clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},V)}hide(V){clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},V)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){clearTimeout(this._showTimeoutId),clearTimeout(this._hideTimeoutId),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:V}){(!V||!this._triggerElement.contains(V))&&this.hide(this._mouseLeaveHideDelay)}_onShow(){}_handleAnimationEnd({animationName:V}){(V===this._showAnimation||V===this._hideAnimation)&&this._finalizeAnimation(V===this._showAnimation)}_finalizeAnimation(V){V?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(V){const N=this._tooltip.nativeElement,H=this._showAnimation,X=this._hideAnimation;if(N.classList.remove(V?X:H),N.classList.add(V?H:X),this._isVisible=V,V&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const he=getComputedStyle(N);("0s"===he.getPropertyValue("animation-duration")||"none"===he.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}V&&this._onShow(),this._animationsDisabled&&(N.classList.add("_mat-animation-noopable"),this._finalizeAnimation(V))}}return n.\u0275fac=function(V){return new(V||n)(M.Y36(M.sBO),M.Y36(D.Qb,8))},n.\u0275dir=M.lG2({type:n}),n})(),T=(()=>{class n extends v{constructor(V,N,H){super(V,H),this._breakpointObserver=N,this._isHandset=this._breakpointObserver.observe(h.u3.Handset),this._showAnimation="mat-tooltip-show",this._hideAnimation="mat-tooltip-hide"}}return n.\u0275fac=function(V){return new(V||n)(M.Y36(M.sBO),M.Y36(h.Yg),M.Y36(D.Qb,8))},n.\u0275cmp=M.Xpm({type:n,selectors:[["mat-tooltip-component"]],viewQuery:function(V,N){if(1&V&&M.Gf(Y,7),2&V){let H;M.iGM(H=M.CRH())&&(N._tooltip=H.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(V,N){1&V&&M.NdJ("mouseleave",function(X){return N._handleMouseLeave(X)}),2&V&&M.Udp("zoom",N.isVisible()?1:null)},features:[M.qOj],decls:4,vars:6,consts:[[1,"mat-tooltip",3,"ngClass","animationend"],["tooltip",""]],template:function(V,N){if(1&V&&(M.TgZ(0,"div",0,1),M.NdJ("animationend",function(X){return N._handleAnimationEnd(X)}),M.ALo(2,"async"),M._uU(3),M.qZA()),2&V){let H;M.ekj("mat-tooltip-handset",null==(H=M.lcZ(2,4,N._isHandset))?null:H.matches),M.Q6J("ngClass",N.tooltipClass),M.xp6(3),M.Oqu(N.message)}},directives:[f.mk],pipes:[f.Ov],styles:[".mat-tooltip{color:#fff;border-radius:4px;margin:14px;max-width:250px;padding-left:8px;padding-right:8px;overflow:hidden;text-overflow:ellipsis;transform:scale(0)}.mat-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.cdk-high-contrast-active .mat-tooltip{outline:solid 1px}.mat-tooltip-handset{margin:24px;padding-left:16px;padding-right:16px}.mat-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-tooltip-show{0%{opacity:0;transform:scale(0)}50%{opacity:.5;transform:scale(0.99)}100%{opacity:1;transform:scale(1)}}@keyframes mat-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1)}}.mat-tooltip-show{animation:mat-tooltip-show 200ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-tooltip-hide{animation:mat-tooltip-hide 100ms cubic-bezier(0, 0, 0.2, 1) forwards}\n"],encapsulation:2,changeDetection:0}),n})(),I=(()=>{class n{}return n.\u0275fac=function(V){return new(V||n)},n.\u0275mod=M.oAB({type:n}),n.\u0275inj=M.cJS({providers:[x],imports:[[e.rt,f.ez,t.U8,a.BQ],a.BQ,C.ZD]}),n})()},149:(Be,K,p)=>{"use strict";p.d(K,{Ar:()=>k,GZ:()=>D,WX:()=>ue,dp:()=>Y,eu:()=>B,fQ:()=>w,gi:()=>E,uo:()=>L});var t=p(8258),e=p(5e3),f=p(508),M=p(3191),a=p(449),C=p(1135),d=p(6451),R=p(4004);const h=(0,f.sb)((0,f.Id)(t.Hs));let L=(()=>{class ie extends h{constructor(ge,q,_e){super(ge,q),this.tabIndex=Number(_e)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}}return ie.\u0275fac=function(ge){return new(ge||ie)(e.Y36(e.SBq),e.Y36(t._0),e.$8M("tabindex"))},ie.\u0275dir=e.lG2({type:ie,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex"},exportAs:["matTreeNode"],features:[e._Bn([{provide:t.Hs,useExisting:ie}]),e.qOj]}),ie})(),w=(()=>{class ie extends t.rO{}return ie.\u0275fac=function(){let re;return function(q){return(re||(re=e.n5z(ie)))(q||ie)}}(),ie.\u0275dir=e.lG2({type:ie,selectors:[["","matTreeNodeDef",""]],inputs:{when:["matTreeNodeDefWhen","when"],data:["matTreeNode","data"]},features:[e._Bn([{provide:t.rO,useExisting:ie}]),e.qOj]}),ie})(),D=(()=>{class ie extends t.Xx{constructor(ge,q,_e,x){super(ge,q,_e),this._disabled=!1,this.tabIndex=Number(x)||0}get disabled(){return this._disabled}set disabled(ge){this._disabled=(0,M.Ig)(ge)}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(ge){this._tabIndex=null!=ge?ge:0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}}return ie.\u0275fac=function(ge){return new(ge||ie)(e.Y36(e.SBq),e.Y36(t._0),e.Y36(e.ZZ4),e.$8M("tabindex"))},ie.\u0275dir=e.lG2({type:ie,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex",node:["matNestedTreeNode","node"]},exportAs:["matNestedTreeNode"],features:[e._Bn([{provide:t.Xx,useExisting:ie},{provide:t.Hs,useExisting:ie},{provide:t.HI,useExisting:ie}]),e.qOj]}),ie})(),k=(()=>{class ie{constructor(ge,q){this.viewContainer=ge,this._node=q}}return ie.\u0275fac=function(ge){return new(ge||ie)(e.Y36(e.s_b),e.Y36(t.HI,8))},ie.\u0275dir=e.lG2({type:ie,selectors:[["","matTreeNodeOutlet",""]],features:[e._Bn([{provide:t.cu,useExisting:ie}])]}),ie})(),E=(()=>{class ie extends t._0{}return ie.\u0275fac=function(){let re;return function(q){return(re||(re=e.n5z(ie)))(q||ie)}}(),ie.\u0275cmp=e.Xpm({type:ie,selectors:[["mat-tree"]],viewQuery:function(ge,q){if(1&ge&&e.Gf(k,7),2&ge){let _e;e.iGM(_e=e.CRH())&&(q._nodeOutlet=_e.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],features:[e._Bn([{provide:t._0,useExisting:ie}]),e.qOj],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ge,q){1&ge&&e.GkF(0,0)},directives:[k],styles:[".mat-tree{display:block}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word}.mat-nested-tree-node{border-bottom-width:0}\n"],encapsulation:2}),ie})(),B=(()=>{class ie extends t.Ud{}return ie.\u0275fac=function(){let re;return function(q){return(re||(re=e.n5z(ie)))(q||ie)}}(),ie.\u0275dir=e.lG2({type:ie,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:["matTreeNodeToggleRecursive","recursive"]},features:[e._Bn([{provide:t.Ud,useExisting:ie}]),e.qOj]}),ie})(),Y=(()=>{class ie{}return ie.\u0275fac=function(ge){return new(ge||ie)},ie.\u0275mod=e.oAB({type:ie}),ie.\u0275inj=e.cJS({imports:[[t.nZ,f.BQ],f.BQ]}),ie})();class ue extends a.o2{constructor(){super(...arguments),this._data=new C.X([])}get data(){return this._data.value}set data(re){this._data.next(re)}connect(re){return(0,d.T)(re.viewChange,this._data).pipe((0,R.U)(()=>this.data))}disconnect(){}}},6360:(Be,K,p)=>{"use strict";p.d(K,{Qb:()=>Vs,PW:()=>Zr});var t=p(5e3),e=p(2313),f=p(1777);const M=!1;function C(yt){return new t.vHH(3e3,M)}function he(){return"undefined"!=typeof window&&void 0!==window.document}function be(){return"undefined"!=typeof process&&"[object process]"==={}.toString.call(process)}function Pe(yt){switch(yt.length){case 0:return new f.ZN;case 1:return yt[0];default:return new f.ZE(yt)}}function Ee(yt,oe,pe,Ke,Mt={},Vt={}){const ni=[],ri=[];let gi=-1,Ai=null;if(Ke.forEach(Xi=>{const dn=Xi.offset,An=dn==gi,Un=An&&Ai||{};Object.keys(Xi).forEach(En=>{let Pn=En,ar=Xi[En];if("offset"!==En)switch(Pn=oe.normalizePropertyName(Pn,ni),ar){case f.k1:ar=Mt[En];break;case f.l3:ar=Vt[En];break;default:ar=oe.normalizeStyleValue(En,Pn,ar,ni)}Un[Pn]=ar}),An||ri.push(Un),Ai=Un,gi=dn}),ni.length)throw function u(yt){return new t.vHH(3502,M)}();return ri}function j(yt,oe,pe,Ke){switch(oe){case"start":yt.onStart(()=>Ke(pe&&Ve(pe,"start",yt)));break;case"done":yt.onDone(()=>Ke(pe&&Ve(pe,"done",yt)));break;case"destroy":yt.onDestroy(()=>Ke(pe&&Ve(pe,"destroy",yt)))}}function Ve(yt,oe,pe){const Ke=pe.totalTime,Vt=Me(yt.element,yt.triggerName,yt.fromState,yt.toState,oe||yt.phaseName,null==Ke?yt.totalTime:Ke,!!pe.disabled),ni=yt._data;return null!=ni&&(Vt._data=ni),Vt}function Me(yt,oe,pe,Ke,Mt="",Vt=0,ni){return{element:yt,triggerName:oe,fromState:pe,toState:Ke,phaseName:Mt,totalTime:Vt,disabled:!!ni}}function J(yt,oe,pe){let Ke;return yt instanceof Map?(Ke=yt.get(oe),Ke||yt.set(oe,Ke=pe)):(Ke=yt[oe],Ke||(Ke=yt[oe]=pe)),Ke}function Ie(yt){const oe=yt.indexOf(":");return[yt.substring(1,oe),yt.substr(oe+1)]}let ut=(yt,oe)=>!1,Oe=(yt,oe,pe)=>[],we=null;function ce(yt){const oe=yt.parentNode||yt.host;return oe===we?null:oe}(be()||"undefined"!=typeof Element)&&(he()?(we=(()=>document.documentElement)(),ut=(yt,oe)=>{for(;oe;){if(oe===yt)return!0;oe=ce(oe)}return!1}):ut=(yt,oe)=>yt.contains(oe),Oe=(yt,oe,pe)=>{if(pe)return Array.from(yt.querySelectorAll(oe));const Ke=yt.querySelector(oe);return Ke?[Ke]:[]});let W=null,te=!1;function Ce(yt){W||(W=function fe(){return"undefined"!=typeof document?document.body:null}()||{},te=!!W.style&&"WebkitAppearance"in W.style);let oe=!0;return W.style&&!function xe(yt){return"ebkit"==yt.substring(1,6)}(yt)&&(oe=yt in W.style,!oe&&te&&(oe="Webkit"+yt.charAt(0).toUpperCase()+yt.substr(1)in W.style)),oe}const Q=ut,ft=Oe;let Dt=(()=>{class yt{validateStyleProperty(pe){return Ce(pe)}matchesElement(pe,Ke){return!1}containsElement(pe,Ke){return Q(pe,Ke)}getParentElement(pe){return ce(pe)}query(pe,Ke,Mt){return ft(pe,Ke,Mt)}computeStyle(pe,Ke,Mt){return Mt||""}animate(pe,Ke,Mt,Vt,ni,ri=[],gi){return new f.ZN(Mt,Vt)}}return yt.\u0275fac=function(pe){return new(pe||yt)},yt.\u0275prov=t.Yz7({token:yt,factory:yt.\u0275fac}),yt})(),di=(()=>{class yt{}return yt.NOOP=new Dt,yt})();const Ot="ng-enter",Nt="ng-leave",gt="ng-trigger",it=".ng-trigger",bt="ng-animating",ei=".ng-animating";function Qt(yt){if("number"==typeof yt)return yt;const oe=yt.match(/^(-?[\.\d]+)(m?s)/);return!oe||oe.length<2?0:Re(parseFloat(oe[1]),oe[2])}function Re(yt,oe){return"s"===oe?1e3*yt:yt}function ke(yt,oe,pe){return yt.hasOwnProperty("duration")?yt:function de(yt,oe,pe){let Mt,Vt=0,ni="";if("string"==typeof yt){const ri=yt.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===ri)return oe.push(C()),{duration:0,delay:0,easing:""};Mt=Re(parseFloat(ri[1]),ri[2]);const gi=ri[3];null!=gi&&(Vt=Re(parseFloat(gi),ri[4]));const Ai=ri[5];Ai&&(ni=Ai)}else Mt=yt;if(!pe){let ri=!1,gi=oe.length;Mt<0&&(oe.push(function d(){return new t.vHH(3100,M)}()),ri=!0),Vt<0&&(oe.push(function R(){return new t.vHH(3101,M)}()),ri=!0),ri&&oe.splice(gi,0,C())}return{duration:Mt,delay:Vt,easing:ni}}(yt,oe,pe)}function ye(yt,oe={}){return Object.keys(yt).forEach(pe=>{oe[pe]=yt[pe]}),oe}function mt(yt,oe,pe={}){if(oe)for(let Ke in yt)pe[Ke]=yt[Ke];else ye(yt,pe);return pe}function Ft(yt,oe,pe){return pe?oe+":"+pe+";":""}function nt(yt){let oe="";for(let pe=0;pe{const Mt=Jt(Ke);pe&&!pe.hasOwnProperty(Ke)&&(pe[Ke]=yt.style[Mt]),yt.style[Mt]=oe[Ke]}),be()&&nt(yt))}function rt(yt,oe){yt.style&&(Object.keys(oe).forEach(pe=>{const Ke=Jt(pe);yt.style[Ke]=""}),be()&&nt(yt))}function et(yt){return Array.isArray(yt)?1==yt.length?yt[0]:(0,f.vP)(yt):yt}const Ge=new RegExp("{{\\s*(.+?)\\s*}}","g");function ot(yt){let oe=[];if("string"==typeof yt){let pe;for(;pe=Ge.exec(yt);)oe.push(pe[1]);Ge.lastIndex=0}return oe}function lt(yt,oe,pe){const Ke=yt.toString(),Mt=Ke.replace(Ge,(Vt,ni)=>{let ri=oe[ni];return oe.hasOwnProperty(ni)||(pe.push(function L(yt){return new t.vHH(3003,M)}()),ri=""),ri.toString()});return Mt==Ke?yt:Mt}function Ct(yt){const oe=[];let pe=yt.next();for(;!pe.done;)oe.push(pe.value),pe=yt.next();return oe}const mi=/-+([a-z0-9])/g;function Jt(yt){return yt.replace(mi,(...oe)=>oe[1].toUpperCase())}function $t(yt){return yt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}function si(yt,oe,pe){switch(oe.type){case 7:return yt.visitTrigger(oe,pe);case 0:return yt.visitState(oe,pe);case 1:return yt.visitTransition(oe,pe);case 2:return yt.visitSequence(oe,pe);case 3:return yt.visitGroup(oe,pe);case 4:return yt.visitAnimate(oe,pe);case 5:return yt.visitKeyframes(oe,pe);case 6:return yt.visitStyle(oe,pe);case 8:return yt.visitReference(oe,pe);case 9:return yt.visitAnimateChild(oe,pe);case 10:return yt.visitAnimateRef(oe,pe);case 11:return yt.visitQuery(oe,pe);case 12:return yt.visitStagger(oe,pe);default:throw function w(yt){return new t.vHH(3004,M)}()}}function Ji(yt,oe){return window.getComputedStyle(yt)[oe]}function se(yt,oe){const pe=[];return"string"==typeof yt?yt.split(/\s*,\s*/).forEach(Ke=>function Je(yt,oe,pe){if(":"==yt[0]){const gi=function xt(yt,oe){switch(yt){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(pe,Ke)=>parseFloat(Ke)>parseFloat(pe);case":decrement":return(pe,Ke)=>parseFloat(Ke) *"}}(yt,pe);if("function"==typeof gi)return void oe.push(gi);yt=gi}const Ke=yt.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==Ke||Ke.length<4)return pe.push(function q(yt){return new t.vHH(3015,M)}()),oe;const Mt=Ke[1],Vt=Ke[2],ni=Ke[3];oe.push(Ti(Mt,ni));"<"==Vt[0]&&!("*"==Mt&&"*"==ni)&&oe.push(Ti(ni,Mt))}(Ke,pe,oe)):pe.push(yt),pe}const Bt=new Set(["true","1"]),xi=new Set(["false","0"]);function Ti(yt,oe){const pe=Bt.has(yt)||xi.has(yt),Ke=Bt.has(oe)||xi.has(oe);return(Mt,Vt)=>{let ni="*"==yt||yt==Mt,ri="*"==oe||oe==Vt;return!ni&&pe&&"boolean"==typeof Mt&&(ni=Mt?Bt.has(yt):xi.has(yt)),!ri&&Ke&&"boolean"==typeof Vt&&(ri=Vt?Bt.has(oe):xi.has(oe)),ni&&ri}}const Wi=new RegExp("s*:selfs*,?","g");function on(yt,oe,pe,Ke){return new ti(yt).build(oe,pe,Ke)}class ti{constructor(oe){this._driver=oe}build(oe,pe,Ke){const Mt=new Rt(pe);this._resetContextStyleTimingState(Mt);const Vt=si(this,et(oe),Mt);return Mt.unsupportedCSSPropertiesFound.size&&Mt.unsupportedCSSPropertiesFound.keys(),Vt}_resetContextStyleTimingState(oe){oe.currentQuerySelector="",oe.collectedStyles={},oe.collectedStyles[""]={},oe.currentTime=0}visitTrigger(oe,pe){let Ke=pe.queryCount=0,Mt=pe.depCount=0;const Vt=[],ni=[];return"@"==oe.name.charAt(0)&&pe.errors.push(function S(){return new t.vHH(3006,M)}()),oe.definitions.forEach(ri=>{if(this._resetContextStyleTimingState(pe),0==ri.type){const gi=ri,Ai=gi.name;Ai.toString().split(/\s*,\s*/).forEach(Xi=>{gi.name=Xi,Vt.push(this.visitState(gi,pe))}),gi.name=Ai}else if(1==ri.type){const gi=this.visitTransition(ri,pe);Ke+=gi.queryCount,Mt+=gi.depCount,ni.push(gi)}else pe.errors.push(function k(){return new t.vHH(3007,M)}())}),{type:7,name:oe.name,states:Vt,transitions:ni,queryCount:Ke,depCount:Mt,options:null}}visitState(oe,pe){const Ke=this.visitStyle(oe.styles,pe),Mt=oe.options&&oe.options.params||null;if(Ke.containsDynamicStyles){const Vt=new Set,ni=Mt||{};Ke.styles.forEach(ri=>{if(fi(ri)){const gi=ri;Object.keys(gi).forEach(Ai=>{ot(gi[Ai]).forEach(Xi=>{ni.hasOwnProperty(Xi)||Vt.add(Xi)})})}}),Vt.size&&(Ct(Vt.values()),pe.errors.push(function E(yt,oe){return new t.vHH(3008,M)}()))}return{type:0,name:oe.name,style:Ke,options:Mt?{params:Mt}:null}}visitTransition(oe,pe){pe.queryCount=0,pe.depCount=0;const Ke=si(this,et(oe.animation),pe);return{type:1,matchers:se(oe.expr,pe.errors),animation:Ke,queryCount:pe.queryCount,depCount:pe.depCount,options:Ni(oe.options)}}visitSequence(oe,pe){return{type:2,steps:oe.steps.map(Ke=>si(this,Ke,pe)),options:Ni(oe.options)}}visitGroup(oe,pe){const Ke=pe.currentTime;let Mt=0;const Vt=oe.steps.map(ni=>{pe.currentTime=Ke;const ri=si(this,ni,pe);return Mt=Math.max(Mt,pe.currentTime),ri});return pe.currentTime=Mt,{type:3,steps:Vt,options:Ni(oe.options)}}visitAnimate(oe,pe){const Ke=function Li(yt,oe){if(yt.hasOwnProperty("duration"))return yt;if("number"==typeof yt)return pn(ke(yt,oe).duration,0,"");const pe=yt;if(pe.split(/\s+/).some(Vt=>"{"==Vt.charAt(0)&&"{"==Vt.charAt(1))){const Vt=pn(0,0,"");return Vt.dynamic=!0,Vt.strValue=pe,Vt}const Mt=ke(pe,oe);return pn(Mt.duration,Mt.delay,Mt.easing)}(oe.timings,pe.errors);pe.currentAnimateTimings=Ke;let Mt,Vt=oe.styles?oe.styles:(0,f.oB)({});if(5==Vt.type)Mt=this.visitKeyframes(Vt,pe);else{let ni=oe.styles,ri=!1;if(!ni){ri=!0;const Ai={};Ke.easing&&(Ai.easing=Ke.easing),ni=(0,f.oB)(Ai)}pe.currentTime+=Ke.duration+Ke.delay;const gi=this.visitStyle(ni,pe);gi.isEmptyStep=ri,Mt=gi}return pe.currentAnimateTimings=null,{type:4,timings:Ke,style:Mt,options:null}}visitStyle(oe,pe){const Ke=this._makeStyleAst(oe,pe);return this._validateStyleAst(Ke,pe),Ke}_makeStyleAst(oe,pe){const Ke=[];Array.isArray(oe.styles)?oe.styles.forEach(ni=>{"string"==typeof ni?ni==f.l3?Ke.push(ni):pe.errors.push(function B(yt){return new t.vHH(3002,M)}()):Ke.push(ni)}):Ke.push(oe.styles);let Mt=!1,Vt=null;return Ke.forEach(ni=>{if(fi(ni)){const ri=ni,gi=ri.easing;if(gi&&(Vt=gi,delete ri.easing),!Mt)for(let Ai in ri)if(ri[Ai].toString().indexOf("{{")>=0){Mt=!0;break}}}),{type:6,styles:Ke,easing:Vt,offset:oe.offset,containsDynamicStyles:Mt,options:null}}_validateStyleAst(oe,pe){const Ke=pe.currentAnimateTimings;let Mt=pe.currentTime,Vt=pe.currentTime;Ke&&Vt>0&&(Vt-=Ke.duration+Ke.delay),oe.styles.forEach(ni=>{"string"!=typeof ni&&Object.keys(ni).forEach(ri=>{if(!this._driver.validateStyleProperty(ri))return delete ni[ri],void pe.unsupportedCSSPropertiesFound.add(ri);const gi=pe.collectedStyles[pe.currentQuerySelector],Ai=gi[ri];let Xi=!0;Ai&&(Vt!=Mt&&Vt>=Ai.startTime&&Mt<=Ai.endTime&&(pe.errors.push(function Y(yt,oe,pe,Ke,Mt){return new t.vHH(3010,M)}()),Xi=!1),Vt=Ai.startTime),Xi&&(gi[ri]={startTime:Vt,endTime:Mt}),pe.options&&function Ae(yt,oe,pe){const Ke=oe.params||{},Mt=ot(yt);Mt.length&&Mt.forEach(Vt=>{Ke.hasOwnProperty(Vt)||pe.push(function h(yt){return new t.vHH(3001,M)}())})}(ni[ri],pe.options,pe.errors)})})}visitKeyframes(oe,pe){const Ke={type:5,styles:[],options:null};if(!pe.currentAnimateTimings)return pe.errors.push(function ae(){return new t.vHH(3011,M)}()),Ke;let Vt=0;const ni=[];let ri=!1,gi=!1,Ai=0;const Xi=oe.steps.map(Hr=>{const Cr=this._makeStyleAst(Hr,pe);let la=null!=Cr.offset?Cr.offset:function Wt(yt){if("string"==typeof yt)return null;let oe=null;if(Array.isArray(yt))yt.forEach(pe=>{if(fi(pe)&&pe.hasOwnProperty("offset")){const Ke=pe;oe=parseFloat(Ke.offset),delete Ke.offset}});else if(fi(yt)&&yt.hasOwnProperty("offset")){const pe=yt;oe=parseFloat(pe.offset),delete pe.offset}return oe}(Cr.styles),Ir=0;return null!=la&&(Vt++,Ir=Cr.offset=la),gi=gi||Ir<0||Ir>1,ri=ri||Ir0&&Vt{const la=An>0?Cr==Un?1:An*Cr:ni[Cr],Ir=la*ar;pe.currentTime=En+Pn.delay+Ir,Pn.duration=Ir,this._validateStyleAst(Hr,pe),Hr.offset=la,Ke.styles.push(Hr)}),Ke}visitReference(oe,pe){return{type:8,animation:si(this,et(oe.animation),pe),options:Ni(oe.options)}}visitAnimateChild(oe,pe){return pe.depCount++,{type:9,options:Ni(oe.options)}}visitAnimateRef(oe,pe){return{type:10,animation:this.visitReference(oe.animation,pe),options:Ni(oe.options)}}visitQuery(oe,pe){const Ke=pe.currentQuerySelector,Mt=oe.options||{};pe.queryCount++,pe.currentQuery=oe;const[Vt,ni]=function Ri(yt){const oe=!!yt.split(/\s*,\s*/).find(pe=>":self"==pe);return oe&&(yt=yt.replace(Wi,"")),yt=yt.replace(/@\*/g,it).replace(/@\w+/g,pe=>it+"-"+pe.substr(1)).replace(/:animating/g,ei),[yt,oe]}(oe.selector);pe.currentQuerySelector=Ke.length?Ke+" "+Vt:Vt,J(pe.collectedStyles,pe.currentQuerySelector,{});const ri=si(this,et(oe.animation),pe);return pe.currentQuery=null,pe.currentQuerySelector=Ke,{type:11,selector:Vt,limit:Mt.limit||0,optional:!!Mt.optional,includeSelf:ni,animation:ri,originalSelector:oe.selector,options:Ni(oe.options)}}visitStagger(oe,pe){pe.currentQuery||pe.errors.push(function re(){return new t.vHH(3013,M)}());const Ke="full"===oe.timings?{duration:0,delay:0,easing:"full"}:ke(oe.timings,pe.errors,!0);return{type:12,animation:si(this,et(oe.animation),pe),timings:Ke,options:null}}}class Rt{constructor(oe){this.errors=oe,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function fi(yt){return!Array.isArray(yt)&&"object"==typeof yt}function Ni(yt){return yt?(yt=ye(yt)).params&&(yt.params=function st(yt){return yt?ye(yt):null}(yt.params)):yt={},yt}function pn(yt,oe,pe){return{duration:yt,delay:oe,easing:pe}}function Dn(yt,oe,pe,Ke,Mt,Vt,ni=null,ri=!1){return{type:1,element:yt,keyframes:oe,preStyleProps:pe,postStyleProps:Ke,duration:Mt,delay:Vt,totalTime:Mt+Vt,easing:ni,subTimeline:ri}}class Nn{constructor(){this._map=new Map}get(oe){return this._map.get(oe)||[]}append(oe,pe){let Ke=this._map.get(oe);Ke||this._map.set(oe,Ke=[]),Ke.push(...pe)}has(oe){return this._map.has(oe)}clear(){this._map.clear()}}const Ei=new RegExp(":enter","g"),Sn=new RegExp(":leave","g");function Qn(yt,oe,pe,Ke,Mt,Vt={},ni={},ri,gi,Ai=[]){return(new sr).buildKeyframes(yt,oe,pe,Ke,Mt,Vt,ni,ri,gi,Ai)}class sr{buildKeyframes(oe,pe,Ke,Mt,Vt,ni,ri,gi,Ai,Xi=[]){Ai=Ai||new Nn;const dn=new va(oe,pe,Ai,Mt,Vt,Xi,[]);dn.options=gi,dn.currentTimeline.setStyles([ni],null,dn.errors,gi),si(this,Ke,dn);const An=dn.timelines.filter(Un=>Un.containsAnimation());if(Object.keys(ri).length){let Un;for(let En=An.length-1;En>=0;En--){const Pn=An[En];if(Pn.element===pe){Un=Pn;break}}Un&&!Un.allowOnlyTimelineStyles()&&Un.setStyles([ri],null,dn.errors,gi)}return An.length?An.map(Un=>Un.buildKeyframes()):[Dn(pe,[],[],[],0,0,"",!1)]}visitTrigger(oe,pe){}visitState(oe,pe){}visitTransition(oe,pe){}visitAnimateChild(oe,pe){const Ke=pe.subInstructions.get(pe.element);if(Ke){const Mt=pe.createSubContext(oe.options),Vt=pe.currentTimeline.currentTime,ni=this._visitSubInstructions(Ke,Mt,Mt.options);Vt!=ni&&pe.transformIntoNewTimeline(ni)}pe.previousNode=oe}visitAnimateRef(oe,pe){const Ke=pe.createSubContext(oe.options);Ke.transformIntoNewTimeline(),this.visitReference(oe.animation,Ke),pe.transformIntoNewTimeline(Ke.currentTimeline.currentTime),pe.previousNode=oe}_visitSubInstructions(oe,pe,Ke){let Vt=pe.currentTimeline.currentTime;const ni=null!=Ke.duration?Qt(Ke.duration):null,ri=null!=Ke.delay?Qt(Ke.delay):null;return 0!==ni&&oe.forEach(gi=>{const Ai=pe.appendInstructionToTimeline(gi,ni,ri);Vt=Math.max(Vt,Ai.duration+Ai.delay)}),Vt}visitReference(oe,pe){pe.updateOptions(oe.options,!0),si(this,oe.animation,pe),pe.previousNode=oe}visitSequence(oe,pe){const Ke=pe.subContextCount;let Mt=pe;const Vt=oe.options;if(Vt&&(Vt.params||Vt.delay)&&(Mt=pe.createSubContext(Vt),Mt.transformIntoNewTimeline(),null!=Vt.delay)){6==Mt.previousNode.type&&(Mt.currentTimeline.snapshotCurrentStyles(),Mt.previousNode=ua);const ni=Qt(Vt.delay);Mt.delayNextStep(ni)}oe.steps.length&&(oe.steps.forEach(ni=>si(this,ni,Mt)),Mt.currentTimeline.applyStylesToKeyframe(),Mt.subContextCount>Ke&&Mt.transformIntoNewTimeline()),pe.previousNode=oe}visitGroup(oe,pe){const Ke=[];let Mt=pe.currentTimeline.currentTime;const Vt=oe.options&&oe.options.delay?Qt(oe.options.delay):0;oe.steps.forEach(ni=>{const ri=pe.createSubContext(oe.options);Vt&&ri.delayNextStep(Vt),si(this,ni,ri),Mt=Math.max(Mt,ri.currentTimeline.currentTime),Ke.push(ri.currentTimeline)}),Ke.forEach(ni=>pe.currentTimeline.mergeTimelineCollectedStyles(ni)),pe.transformIntoNewTimeline(Mt),pe.previousNode=oe}_visitTiming(oe,pe){if(oe.dynamic){const Ke=oe.strValue;return ke(pe.params?lt(Ke,pe.params,pe.errors):Ke,pe.errors)}return{duration:oe.duration,delay:oe.delay,easing:oe.easing}}visitAnimate(oe,pe){const Ke=pe.currentAnimateTimings=this._visitTiming(oe.timings,pe),Mt=pe.currentTimeline;Ke.delay&&(pe.incrementTime(Ke.delay),Mt.snapshotCurrentStyles());const Vt=oe.style;5==Vt.type?this.visitKeyframes(Vt,pe):(pe.incrementTime(Ke.duration),this.visitStyle(Vt,pe),Mt.applyStylesToKeyframe()),pe.currentAnimateTimings=null,pe.previousNode=oe}visitStyle(oe,pe){const Ke=pe.currentTimeline,Mt=pe.currentAnimateTimings;!Mt&&Ke.getCurrentStyleProperties().length&&Ke.forwardFrame();const Vt=Mt&&Mt.easing||oe.easing;oe.isEmptyStep?Ke.applyEmptyStep(Vt):Ke.setStyles(oe.styles,Vt,pe.errors,pe.options),pe.previousNode=oe}visitKeyframes(oe,pe){const Ke=pe.currentAnimateTimings,Mt=pe.currentTimeline.duration,Vt=Ke.duration,ri=pe.createSubContext().currentTimeline;ri.easing=Ke.easing,oe.styles.forEach(gi=>{ri.forwardTime((gi.offset||0)*Vt),ri.setStyles(gi.styles,gi.easing,pe.errors,pe.options),ri.applyStylesToKeyframe()}),pe.currentTimeline.mergeTimelineCollectedStyles(ri),pe.transformIntoNewTimeline(Mt+Vt),pe.previousNode=oe}visitQuery(oe,pe){const Ke=pe.currentTimeline.currentTime,Mt=oe.options||{},Vt=Mt.delay?Qt(Mt.delay):0;Vt&&(6===pe.previousNode.type||0==Ke&&pe.currentTimeline.getCurrentStyleProperties().length)&&(pe.currentTimeline.snapshotCurrentStyles(),pe.previousNode=ua);let ni=Ke;const ri=pe.invokeQuery(oe.selector,oe.originalSelector,oe.limit,oe.includeSelf,!!Mt.optional,pe.errors);pe.currentQueryTotal=ri.length;let gi=null;ri.forEach((Ai,Xi)=>{pe.currentQueryIndex=Xi;const dn=pe.createSubContext(oe.options,Ai);Vt&&dn.delayNextStep(Vt),Ai===pe.element&&(gi=dn.currentTimeline),si(this,oe.animation,dn),dn.currentTimeline.applyStylesToKeyframe(),ni=Math.max(ni,dn.currentTimeline.currentTime)}),pe.currentQueryIndex=0,pe.currentQueryTotal=0,pe.transformIntoNewTimeline(ni),gi&&(pe.currentTimeline.mergeTimelineCollectedStyles(gi),pe.currentTimeline.snapshotCurrentStyles()),pe.previousNode=oe}visitStagger(oe,pe){const Ke=pe.parentContext,Mt=pe.currentTimeline,Vt=oe.timings,ni=Math.abs(Vt.duration),ri=ni*(pe.currentQueryTotal-1);let gi=ni*pe.currentQueryIndex;switch(Vt.duration<0?"reverse":Vt.easing){case"reverse":gi=ri-gi;break;case"full":gi=Ke.currentStaggerTime}const Xi=pe.currentTimeline;gi&&Xi.delayNextStep(gi);const dn=Xi.currentTime;si(this,oe.animation,pe),pe.previousNode=oe,Ke.currentStaggerTime=Mt.currentTime-dn+(Mt.startTime-Ke.currentTimeline.startTime)}}const ua={};class va{constructor(oe,pe,Ke,Mt,Vt,ni,ri,gi){this._driver=oe,this.element=pe,this.subInstructions=Ke,this._enterClassName=Mt,this._leaveClassName=Vt,this.errors=ni,this.timelines=ri,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=ua,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=gi||new Sr(this._driver,pe,0),ri.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(oe,pe){if(!oe)return;const Ke=oe;let Mt=this.options;null!=Ke.duration&&(Mt.duration=Qt(Ke.duration)),null!=Ke.delay&&(Mt.delay=Qt(Ke.delay));const Vt=Ke.params;if(Vt){let ni=Mt.params;ni||(ni=this.options.params={}),Object.keys(Vt).forEach(ri=>{(!pe||!ni.hasOwnProperty(ri))&&(ni[ri]=lt(Vt[ri],ni,this.errors))})}}_copyOptions(){const oe={};if(this.options){const pe=this.options.params;if(pe){const Ke=oe.params={};Object.keys(pe).forEach(Mt=>{Ke[Mt]=pe[Mt]})}}return oe}createSubContext(oe=null,pe,Ke){const Mt=pe||this.element,Vt=new va(this._driver,Mt,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(Mt,Ke||0));return Vt.previousNode=this.previousNode,Vt.currentAnimateTimings=this.currentAnimateTimings,Vt.options=this._copyOptions(),Vt.updateOptions(oe),Vt.currentQueryIndex=this.currentQueryIndex,Vt.currentQueryTotal=this.currentQueryTotal,Vt.parentContext=this,this.subContextCount++,Vt}transformIntoNewTimeline(oe){return this.previousNode=ua,this.currentTimeline=this.currentTimeline.fork(this.element,oe),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(oe,pe,Ke){const Mt={duration:null!=pe?pe:oe.duration,delay:this.currentTimeline.currentTime+(null!=Ke?Ke:0)+oe.delay,easing:""},Vt=new ha(this._driver,oe.element,oe.keyframes,oe.preStyleProps,oe.postStyleProps,Mt,oe.stretchStartingKeyframe);return this.timelines.push(Vt),Mt}incrementTime(oe){this.currentTimeline.forwardTime(this.currentTimeline.duration+oe)}delayNextStep(oe){oe>0&&this.currentTimeline.delayNextStep(oe)}invokeQuery(oe,pe,Ke,Mt,Vt,ni){let ri=[];if(Mt&&ri.push(this.element),oe.length>0){oe=(oe=oe.replace(Ei,"."+this._enterClassName)).replace(Sn,"."+this._leaveClassName);let Ai=this._driver.query(this.element,oe,1!=Ke);0!==Ke&&(Ai=Ke<0?Ai.slice(Ai.length+Ke,Ai.length):Ai.slice(0,Ke)),ri.push(...Ai)}return!Vt&&0==ri.length&&ni.push(function ge(yt){return new t.vHH(3014,M)}()),ri}}class Sr{constructor(oe,pe,Ke,Mt){this._driver=oe,this.element=pe,this.startTime=Ke,this._elementTimelineStylesLookup=Mt,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(pe),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(pe,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}getCurrentStyleProperties(){return Object.keys(this._currentKeyframe)}get currentTime(){return this.startTime+this.duration}delayNextStep(oe){const pe=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||pe?(this.forwardTime(this.currentTime+oe),pe&&this.snapshotCurrentStyles()):this.startTime+=oe}fork(oe,pe){return this.applyStylesToKeyframe(),new Sr(this._driver,oe,pe||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(oe){this.applyStylesToKeyframe(),this.duration=oe,this._loadKeyframe()}_updateStyle(oe,pe){this._localTimelineStyles[oe]=pe,this._globalTimelineStyles[oe]=pe,this._styleSummary[oe]={time:this.currentTime,value:pe}}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(oe){oe&&(this._previousKeyframe.easing=oe),Object.keys(this._globalTimelineStyles).forEach(pe=>{this._backFill[pe]=this._globalTimelineStyles[pe]||f.l3,this._currentKeyframe[pe]=f.l3}),this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(oe,pe,Ke,Mt){pe&&(this._previousKeyframe.easing=pe);const Vt=Mt&&Mt.params||{},ni=function ia(yt,oe){const pe={};let Ke;return yt.forEach(Mt=>{"*"===Mt?(Ke=Ke||Object.keys(oe),Ke.forEach(Vt=>{pe[Vt]=f.l3})):mt(Mt,!1,pe)}),pe}(oe,this._globalTimelineStyles);Object.keys(ni).forEach(ri=>{const gi=lt(ni[ri],Vt,Ke);this._pendingStyles[ri]=gi,this._localTimelineStyles.hasOwnProperty(ri)||(this._backFill[ri]=this._globalTimelineStyles.hasOwnProperty(ri)?this._globalTimelineStyles[ri]:f.l3),this._updateStyle(ri,gi)})}applyStylesToKeyframe(){const oe=this._pendingStyles,pe=Object.keys(oe);0!=pe.length&&(this._pendingStyles={},pe.forEach(Ke=>{this._currentKeyframe[Ke]=oe[Ke]}),Object.keys(this._localTimelineStyles).forEach(Ke=>{this._currentKeyframe.hasOwnProperty(Ke)||(this._currentKeyframe[Ke]=this._localTimelineStyles[Ke])}))}snapshotCurrentStyles(){Object.keys(this._localTimelineStyles).forEach(oe=>{const pe=this._localTimelineStyles[oe];this._pendingStyles[oe]=pe,this._updateStyle(oe,pe)})}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const oe=[];for(let pe in this._currentKeyframe)oe.push(pe);return oe}mergeTimelineCollectedStyles(oe){Object.keys(oe._styleSummary).forEach(pe=>{const Ke=this._styleSummary[pe],Mt=oe._styleSummary[pe];(!Ke||Mt.time>Ke.time)&&this._updateStyle(pe,Mt.value)})}buildKeyframes(){this.applyStylesToKeyframe();const oe=new Set,pe=new Set,Ke=1===this._keyframes.size&&0===this.duration;let Mt=[];this._keyframes.forEach((ri,gi)=>{const Ai=mt(ri,!0);Object.keys(Ai).forEach(Xi=>{const dn=Ai[Xi];dn==f.k1?oe.add(Xi):dn==f.l3&&pe.add(Xi)}),Ke||(Ai.offset=gi/this.duration),Mt.push(Ai)});const Vt=oe.size?Ct(oe.values()):[],ni=pe.size?Ct(pe.values()):[];if(Ke){const ri=Mt[0],gi=ye(ri);ri.offset=0,gi.offset=1,Mt=[ri,gi]}return Dn(this.element,Mt,Vt,ni,this.duration,this.startTime,this.easing,!1)}}class ha extends Sr{constructor(oe,pe,Ke,Mt,Vt,ni,ri=!1){super(oe,pe,ni.delay),this.keyframes=Ke,this.preStyleProps=Mt,this.postStyleProps=Vt,this._stretchStartingKeyframe=ri,this.timings={duration:ni.duration,delay:ni.delay,easing:ni.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let oe=this.keyframes,{delay:pe,duration:Ke,easing:Mt}=this.timings;if(this._stretchStartingKeyframe&&pe){const Vt=[],ni=Ke+pe,ri=pe/ni,gi=mt(oe[0],!1);gi.offset=0,Vt.push(gi);const Ai=mt(oe[0],!1);Ai.offset=Br(ri),Vt.push(Ai);const Xi=oe.length-1;for(let dn=1;dn<=Xi;dn++){let An=mt(oe[dn],!1);An.offset=Br((pe+An.offset*Ke)/ni),Vt.push(An)}Ke=ni,pe=0,Mt="",oe=Vt}return Dn(this.element,oe,this.preStyleProps,this.postStyleProps,Ke,pe,Mt,!0)}}function Br(yt,oe=3){const pe=Math.pow(10,oe-1);return Math.round(yt*pe)/pe}class ra{}class Xr extends ra{normalizePropertyName(oe,pe){return Jt(oe)}normalizeStyleValue(oe,pe,Ke,Mt){let Vt="";const ni=Ke.toString().trim();if(Sa[pe]&&0!==Ke&&"0"!==Ke)if("number"==typeof Ke)Vt="px";else{const ri=Ke.match(/^[+-]?[\d\.]+([a-z]*)$/);ri&&0==ri[1].length&&Mt.push(function D(yt,oe){return new t.vHH(3005,M)}())}return ni+Vt}}const Sa=(()=>function fa(yt){const oe={};return yt.forEach(pe=>oe[pe]=!0),oe}("width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective".split(",")))();function Wa(yt,oe,pe,Ke,Mt,Vt,ni,ri,gi,Ai,Xi,dn,An){return{type:0,element:yt,triggerName:oe,isRemovalTransition:Mt,fromState:pe,fromStyles:Vt,toState:Ke,toStyles:ni,timelines:ri,queriedElements:gi,preStyleProps:Ai,postStyleProps:Xi,totalTime:dn,errors:An}}const kr={};class Wn{constructor(oe,pe,Ke){this._triggerName=oe,this.ast=pe,this._stateStyles=Ke}match(oe,pe,Ke,Mt){return function Ur(yt,oe,pe,Ke,Mt){return yt.some(Vt=>Vt(oe,pe,Ke,Mt))}(this.ast.matchers,oe,pe,Ke,Mt)}buildStyles(oe,pe,Ke){const Mt=this._stateStyles["*"],Vt=this._stateStyles[oe],ni=Mt?Mt.buildStyles(pe,Ke):{};return Vt?Vt.buildStyles(pe,Ke):ni}build(oe,pe,Ke,Mt,Vt,ni,ri,gi,Ai,Xi){const dn=[],An=this.ast.options&&this.ast.options.params||kr,En=this.buildStyles(Ke,ri&&ri.params||kr,dn),Pn=gi&&gi.params||kr,ar=this.buildStyles(Mt,Pn,dn),Hr=new Set,Cr=new Map,la=new Map,Ir="void"===Mt,Mr={params:Object.assign(Object.assign({},An),Pn)},Qr=Xi?[]:Qn(oe,pe,this.ast.animation,Vt,ni,En,ar,Mr,Ai,dn);let Gn=0;if(Qr.forEach(Ka=>{Gn=Math.max(Ka.duration+Ka.delay,Gn)}),dn.length)return Wa(pe,this._triggerName,Ke,Mt,Ir,En,ar,[],[],Cr,la,Gn,dn);Qr.forEach(Ka=>{const Ra=Ka.element,Ss=J(Cr,Ra,{});Ka.preStyleProps.forEach(La=>Ss[La]=!0);const Ma=J(la,Ra,{});Ka.postStyleProps.forEach(La=>Ma[La]=!0),Ra!==pe&&Hr.add(Ra)});const br=Ct(Hr.values());return Wa(pe,this._triggerName,Ke,Mt,Ir,En,ar,Qr,br,Cr,la,Gn)}}class lr{constructor(oe,pe,Ke){this.styles=oe,this.defaultParams=pe,this.normalizer=Ke}buildStyles(oe,pe){const Ke={},Mt=ye(this.defaultParams);return Object.keys(oe).forEach(Vt=>{const ni=oe[Vt];null!=ni&&(Mt[Vt]=ni)}),this.styles.styles.forEach(Vt=>{if("string"!=typeof Vt){const ni=Vt;Object.keys(ni).forEach(ri=>{let gi=ni[ri];gi.length>1&&(gi=lt(gi,Mt,pe));const Ai=this.normalizer.normalizePropertyName(ri,pe);gi=this.normalizer.normalizeStyleValue(ri,Ai,gi,pe),Ke[Ai]=gi})}}),Ke}}class jr{constructor(oe,pe,Ke){this.name=oe,this.ast=pe,this._normalizer=Ke,this.transitionFactories=[],this.states={},pe.states.forEach(Mt=>{this.states[Mt.name]=new lr(Mt.style,Mt.options&&Mt.options.params||{},Ke)}),ya(this.states,"true","1"),ya(this.states,"false","0"),pe.transitions.forEach(Mt=>{this.transitionFactories.push(new Wn(oe,Mt,this.states))}),this.fallbackTransition=function ja(yt,oe,pe){return new Wn(yt,{type:1,animation:{type:2,steps:[],options:null},matchers:[(ni,ri)=>!0],options:null,queryCount:0,depCount:0},oe)}(oe,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(oe,pe,Ke,Mt){return this.transitionFactories.find(ni=>ni.match(oe,pe,Ke,Mt))||null}matchStyles(oe,pe,Ke){return this.fallbackTransition.buildStyles(oe,pe,Ke)}}function ya(yt,oe,pe){yt.hasOwnProperty(oe)?yt.hasOwnProperty(pe)||(yt[pe]=yt[oe]):yt.hasOwnProperty(pe)&&(yt[oe]=yt[pe])}const cr=new Nn;class ba{constructor(oe,pe,Ke){this.bodyNode=oe,this._driver=pe,this._normalizer=Ke,this._animations={},this._playersById={},this.players=[]}register(oe,pe){const Ke=[],Vt=on(this._driver,pe,Ke,[]);if(Ke.length)throw function c(yt){return new t.vHH(3503,M)}();this._animations[oe]=Vt}_buildPlayer(oe,pe,Ke){const Mt=oe.element,Vt=Ee(0,this._normalizer,0,oe.keyframes,pe,Ke);return this._driver.animate(Mt,Vt,oe.duration,oe.delay,oe.easing,[],!0)}create(oe,pe,Ke={}){const Mt=[],Vt=this._animations[oe];let ni;const ri=new Map;if(Vt?(ni=Qn(this._driver,pe,Vt,Ot,Nt,{},{},Ke,cr,Mt),ni.forEach(Xi=>{const dn=J(ri,Xi.element,{});Xi.postStyleProps.forEach(An=>dn[An]=null)})):(Mt.push(function v(){return new t.vHH(3300,M)}()),ni=[]),Mt.length)throw function T(yt){return new t.vHH(3504,M)}();ri.forEach((Xi,dn)=>{Object.keys(Xi).forEach(An=>{Xi[An]=this._driver.computeStyle(dn,An,f.l3)})});const Ai=Pe(ni.map(Xi=>{const dn=ri.get(Xi.element);return this._buildPlayer(Xi,{},dn)}));return this._playersById[oe]=Ai,Ai.onDestroy(()=>this.destroy(oe)),this.players.push(Ai),Ai}destroy(oe){const pe=this._getPlayer(oe);pe.destroy(),delete this._playersById[oe];const Ke=this.players.indexOf(pe);Ke>=0&&this.players.splice(Ke,1)}_getPlayer(oe){const pe=this._playersById[oe];if(!pe)throw function I(yt){return new t.vHH(3301,M)}();return pe}listen(oe,pe,Ke,Mt){const Vt=Me(pe,"","","");return j(this._getPlayer(oe),Ke,Vt,Mt),()=>{}}command(oe,pe,Ke,Mt){if("register"==Ke)return void this.register(oe,Mt[0]);if("create"==Ke)return void this.create(oe,pe,Mt[0]||{});const Vt=this._getPlayer(oe);switch(Ke){case"play":Vt.play();break;case"pause":Vt.pause();break;case"reset":Vt.reset();break;case"restart":Vt.restart();break;case"finish":Vt.finish();break;case"init":Vt.init();break;case"setPosition":Vt.setPosition(parseFloat(Mt[0]));break;case"destroy":this.destroy(oe)}}}const Nr="ng-animate-queued",aa="ng-animate-disabled",or=[],sa={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Va={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},ir="__ng_removed";class oa{constructor(oe,pe=""){this.namespaceId=pe;const Ke=oe&&oe.hasOwnProperty("value");if(this.value=function $e(yt){return null!=yt?yt:null}(Ke?oe.value:oe),Ke){const Vt=ye(oe);delete Vt.value,this.options=Vt}else this.options={};this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(oe){const pe=oe.params;if(pe){const Ke=this.options.params;Object.keys(pe).forEach(Mt=>{null==Ke[Mt]&&(Ke[Mt]=pe[Mt])})}}}const Kr="void",Rr=new oa(Kr);class Gr{constructor(oe,pe,Ke){this.id=oe,this.hostElement=pe,this._engine=Ke,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+oe,yi(pe,this._hostClassName)}listen(oe,pe,Ke,Mt){if(!this._triggers.hasOwnProperty(pe))throw function y(yt,oe){return new t.vHH(3302,M)}();if(null==Ke||0==Ke.length)throw function n(yt){return new t.vHH(3303,M)}();if(!function Xe(yt){return"start"==yt||"done"==yt}(Ke))throw function _(yt,oe){return new t.vHH(3400,M)}();const Vt=J(this._elementListeners,oe,[]),ni={name:pe,phase:Ke,callback:Mt};Vt.push(ni);const ri=J(this._engine.statesByElement,oe,{});return ri.hasOwnProperty(pe)||(yi(oe,gt),yi(oe,gt+"-"+pe),ri[pe]=Rr),()=>{this._engine.afterFlush(()=>{const gi=Vt.indexOf(ni);gi>=0&&Vt.splice(gi,1),this._triggers[pe]||delete ri[pe]})}}register(oe,pe){return!this._triggers[oe]&&(this._triggers[oe]=pe,!0)}_getTrigger(oe){const pe=this._triggers[oe];if(!pe)throw function V(yt){return new t.vHH(3401,M)}();return pe}trigger(oe,pe,Ke,Mt=!0){const Vt=this._getTrigger(pe),ni=new Ja(this.id,pe,oe);let ri=this._engine.statesByElement.get(oe);ri||(yi(oe,gt),yi(oe,gt+"-"+pe),this._engine.statesByElement.set(oe,ri={}));let gi=ri[pe];const Ai=new oa(Ke,this.id);if(!(Ke&&Ke.hasOwnProperty("value"))&&gi&&Ai.absorbOptions(gi.options),ri[pe]=Ai,gi||(gi=Rr),Ai.value!==Kr&&gi.value===Ai.value){if(!function ci(yt,oe){const pe=Object.keys(yt),Ke=Object.keys(oe);if(pe.length!=Ke.length)return!1;for(let Mt=0;Mt{rt(oe,ar),He(oe,Hr)})}return}const An=J(this._engine.playersByElement,oe,[]);An.forEach(Pn=>{Pn.namespaceId==this.id&&Pn.triggerName==pe&&Pn.queued&&Pn.destroy()});let Un=Vt.matchTransition(gi.value,Ai.value,oe,Ai.params),En=!1;if(!Un){if(!Mt)return;Un=Vt.fallbackTransition,En=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:oe,triggerName:pe,transition:Un,fromState:gi,toState:Ai,player:ni,isFallbackTransition:En}),En||(yi(oe,Nr),ni.onStart(()=>{en(oe,Nr)})),ni.onDone(()=>{let Pn=this.players.indexOf(ni);Pn>=0&&this.players.splice(Pn,1);const ar=this._engine.playersByElement.get(oe);if(ar){let Hr=ar.indexOf(ni);Hr>=0&&ar.splice(Hr,1)}}),this.players.push(ni),An.push(ni),ni}deregister(oe){delete this._triggers[oe],this._engine.statesByElement.forEach((pe,Ke)=>{delete pe[oe]}),this._elementListeners.forEach((pe,Ke)=>{this._elementListeners.set(Ke,pe.filter(Mt=>Mt.name!=oe))})}clearElementCache(oe){this._engine.statesByElement.delete(oe),this._elementListeners.delete(oe);const pe=this._engine.playersByElement.get(oe);pe&&(pe.forEach(Ke=>Ke.destroy()),this._engine.playersByElement.delete(oe))}_signalRemovalForInnerTriggers(oe,pe){const Ke=this._engine.driver.query(oe,it,!0);Ke.forEach(Mt=>{if(Mt[ir])return;const Vt=this._engine.fetchNamespacesByElement(Mt);Vt.size?Vt.forEach(ni=>ni.triggerLeaveAnimation(Mt,pe,!1,!0)):this.clearElementCache(Mt)}),this._engine.afterFlushAnimationsDone(()=>Ke.forEach(Mt=>this.clearElementCache(Mt)))}triggerLeaveAnimation(oe,pe,Ke,Mt){const Vt=this._engine.statesByElement.get(oe),ni=new Map;if(Vt){const ri=[];if(Object.keys(Vt).forEach(gi=>{if(ni.set(gi,Vt[gi].value),this._triggers[gi]){const Ai=this.trigger(oe,gi,Kr,Mt);Ai&&ri.push(Ai)}}),ri.length)return this._engine.markElementAsRemoved(this.id,oe,!0,pe,ni),Ke&&Pe(ri).onDone(()=>this._engine.processLeaveNode(oe)),!0}return!1}prepareLeaveAnimationListeners(oe){const pe=this._elementListeners.get(oe),Ke=this._engine.statesByElement.get(oe);if(pe&&Ke){const Mt=new Set;pe.forEach(Vt=>{const ni=Vt.name;if(Mt.has(ni))return;Mt.add(ni);const gi=this._triggers[ni].fallbackTransition,Ai=Ke[ni]||Rr,Xi=new oa(Kr),dn=new Ja(this.id,ni,oe);this._engine.totalQueuedPlayers++,this._queue.push({element:oe,triggerName:ni,transition:gi,fromState:Ai,toState:Xi,player:dn,isFallbackTransition:!0})})}}removeNode(oe,pe){const Ke=this._engine;if(oe.childElementCount&&this._signalRemovalForInnerTriggers(oe,pe),this.triggerLeaveAnimation(oe,pe,!0))return;let Mt=!1;if(Ke.totalAnimations){const Vt=Ke.players.length?Ke.playersByQueriedElement.get(oe):[];if(Vt&&Vt.length)Mt=!0;else{let ni=oe;for(;ni=ni.parentNode;)if(Ke.statesByElement.get(ni)){Mt=!0;break}}}if(this.prepareLeaveAnimationListeners(oe),Mt)Ke.markElementAsRemoved(this.id,oe,!1,pe);else{const Vt=oe[ir];(!Vt||Vt===sa)&&(Ke.afterFlush(()=>this.clearElementCache(oe)),Ke.destroyInnerAnimations(oe),Ke._onRemovalComplete(oe,pe))}}insertNode(oe,pe){yi(oe,this._hostClassName)}drainQueuedTransitions(oe){const pe=[];return this._queue.forEach(Ke=>{const Mt=Ke.player;if(Mt.destroyed)return;const Vt=Ke.element,ni=this._elementListeners.get(Vt);ni&&ni.forEach(ri=>{if(ri.name==Ke.triggerName){const gi=Me(Vt,Ke.triggerName,Ke.fromState.value,Ke.toState.value);gi._data=oe,j(Ke.player,ri.phase,gi,ri.callback)}}),Mt.markedForDestroy?this._engine.afterFlush(()=>{Mt.destroy()}):pe.push(Ke)}),this._queue=[],pe.sort((Ke,Mt)=>{const Vt=Ke.transition.ast.depCount,ni=Mt.transition.ast.depCount;return 0==Vt||0==ni?Vt-ni:this._engine.driver.containsElement(Ke.element,Mt.element)?1:-1})}destroy(oe){this.players.forEach(pe=>pe.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,oe)}elementContainsData(oe){let pe=!1;return this._elementListeners.has(oe)&&(pe=!0),pe=!!this._queue.find(Ke=>Ke.element===oe)||pe,pe}}class Ta{constructor(oe,pe,Ke){this.bodyNode=oe,this.driver=pe,this._normalizer=Ke,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(Mt,Vt)=>{}}_onRemovalComplete(oe,pe){this.onRemovalComplete(oe,pe)}get queuedPlayers(){const oe=[];return this._namespaceList.forEach(pe=>{pe.players.forEach(Ke=>{Ke.queued&&oe.push(Ke)})}),oe}createNamespace(oe,pe){const Ke=new Gr(oe,pe,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,pe)?this._balanceNamespaceList(Ke,pe):(this.newHostElements.set(pe,Ke),this.collectEnterElement(pe)),this._namespaceLookup[oe]=Ke}_balanceNamespaceList(oe,pe){const Ke=this._namespaceList,Mt=this.namespacesByHostElement,Vt=Ke.length-1;if(Vt>=0){let ni=!1;if(void 0!==this.driver.getParentElement){let ri=this.driver.getParentElement(pe);for(;ri;){const gi=Mt.get(ri);if(gi){const Ai=Ke.indexOf(gi);Ke.splice(Ai+1,0,oe),ni=!0;break}ri=this.driver.getParentElement(ri)}}else for(let ri=Vt;ri>=0;ri--)if(this.driver.containsElement(Ke[ri].hostElement,pe)){Ke.splice(ri+1,0,oe),ni=!0;break}ni||Ke.unshift(oe)}else Ke.push(oe);return Mt.set(pe,oe),oe}register(oe,pe){let Ke=this._namespaceLookup[oe];return Ke||(Ke=this.createNamespace(oe,pe)),Ke}registerTrigger(oe,pe,Ke){let Mt=this._namespaceLookup[oe];Mt&&Mt.register(pe,Ke)&&this.totalAnimations++}destroy(oe,pe){if(!oe)return;const Ke=this._fetchNamespace(oe);this.afterFlush(()=>{this.namespacesByHostElement.delete(Ke.hostElement),delete this._namespaceLookup[oe];const Mt=this._namespaceList.indexOf(Ke);Mt>=0&&this._namespaceList.splice(Mt,1)}),this.afterFlushAnimationsDone(()=>Ke.destroy(pe))}_fetchNamespace(oe){return this._namespaceLookup[oe]}fetchNamespacesByElement(oe){const pe=new Set,Ke=this.statesByElement.get(oe);if(Ke){const Mt=Object.keys(Ke);for(let Vt=0;Vt=0&&this.collectedLeaveElements.splice(ni,1)}if(oe){const ni=this._fetchNamespace(oe);ni&&ni.insertNode(pe,Ke)}Mt&&this.collectEnterElement(pe)}collectEnterElement(oe){this.collectedEnterElements.push(oe)}markElementAsDisabled(oe,pe){pe?this.disabledNodes.has(oe)||(this.disabledNodes.add(oe),yi(oe,aa)):this.disabledNodes.has(oe)&&(this.disabledNodes.delete(oe),en(oe,aa))}removeNode(oe,pe,Ke,Mt){if(Et(pe)){const Vt=oe?this._fetchNamespace(oe):null;if(Vt?Vt.removeNode(pe,Mt):this.markElementAsRemoved(oe,pe,!1,Mt),Ke){const ni=this.namespacesByHostElement.get(pe);ni&&ni.id!==oe&&ni.removeNode(pe,Mt)}}else this._onRemovalComplete(pe,Mt)}markElementAsRemoved(oe,pe,Ke,Mt,Vt){this.collectedLeaveElements.push(pe),pe[ir]={namespaceId:oe,setForRemoval:Mt,hasAnimation:Ke,removedBeforeQueried:!1,previousTriggersValues:Vt}}listen(oe,pe,Ke,Mt,Vt){return Et(pe)?this._fetchNamespace(oe).listen(pe,Ke,Mt,Vt):()=>{}}_buildInstruction(oe,pe,Ke,Mt,Vt){return oe.transition.build(this.driver,oe.element,oe.fromState.value,oe.toState.value,Ke,Mt,oe.fromState.options,oe.toState.options,pe,Vt)}destroyInnerAnimations(oe){let pe=this.driver.query(oe,it,!0);pe.forEach(Ke=>this.destroyActiveAnimationsForElement(Ke)),0!=this.playersByQueriedElement.size&&(pe=this.driver.query(oe,ei,!0),pe.forEach(Ke=>this.finishActiveQueriedAnimationOnElement(Ke)))}destroyActiveAnimationsForElement(oe){const pe=this.playersByElement.get(oe);pe&&pe.forEach(Ke=>{Ke.queued?Ke.markedForDestroy=!0:Ke.destroy()})}finishActiveQueriedAnimationOnElement(oe){const pe=this.playersByQueriedElement.get(oe);pe&&pe.forEach(Ke=>Ke.finish())}whenRenderingDone(){return new Promise(oe=>{if(this.players.length)return Pe(this.players).onDone(()=>oe());oe()})}processLeaveNode(oe){var pe;const Ke=oe[ir];if(Ke&&Ke.setForRemoval){if(oe[ir]=sa,Ke.namespaceId){this.destroyInnerAnimations(oe);const Mt=this._fetchNamespace(Ke.namespaceId);Mt&&Mt.clearElementCache(oe)}this._onRemovalComplete(oe,Ke.setForRemoval)}(null===(pe=oe.classList)||void 0===pe?void 0:pe.contains(aa))&&this.markElementAsDisabled(oe,!1),this.driver.query(oe,".ng-animate-disabled",!0).forEach(Mt=>{this.markElementAsDisabled(Mt,!1)})}flush(oe=-1){let pe=[];if(this.newHostElements.size&&(this.newHostElements.forEach((Ke,Mt)=>this._balanceNamespaceList(Ke,Mt)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let Ke=0;KeKe()),this._flushFns=[],this._whenQuietFns.length){const Ke=this._whenQuietFns;this._whenQuietFns=[],pe.length?Pe(pe).onDone(()=>{Ke.forEach(Mt=>Mt())}):Ke.forEach(Mt=>Mt())}}reportError(oe){throw function N(yt){return new t.vHH(3402,M)}()}_flushAnimations(oe,pe){const Ke=new Nn,Mt=[],Vt=new Map,ni=[],ri=new Map,gi=new Map,Ai=new Map,Xi=new Set;this.disabledNodes.forEach(cn=>{Xi.add(cn);const xn=this.driver.query(cn,".ng-animate-queued",!0);for(let Tn=0;Tn{const Tn=Ot+Pn++;En.set(xn,Tn),cn.forEach($n=>yi($n,Tn))});const ar=[],Hr=new Set,Cr=new Set;for(let cn=0;cnHr.add($n)):Cr.add(xn))}const la=new Map,Ir=wi(An,Array.from(Hr));Ir.forEach((cn,xn)=>{const Tn=Nt+Pn++;la.set(xn,Tn),cn.forEach($n=>yi($n,Tn))}),oe.push(()=>{Un.forEach((cn,xn)=>{const Tn=En.get(xn);cn.forEach($n=>en($n,Tn))}),Ir.forEach((cn,xn)=>{const Tn=la.get(xn);cn.forEach($n=>en($n,Tn))}),ar.forEach(cn=>{this.processLeaveNode(cn)})});const Mr=[],Qr=[];for(let cn=this._namespaceList.length-1;cn>=0;cn--)this._namespaceList[cn].drainQueuedTransitions(pe).forEach(Tn=>{const $n=Tn.player,mr=Tn.element;if(Mr.push($n),this.collectedEnterElements.length){const wt=mr[ir];if(wt&&wt.setForMove){if(wt.previousTriggersValues&&wt.previousTriggersValues.has(Tn.triggerName)){const zt=wt.previousTriggersValues.get(Tn.triggerName),Xt=this.statesByElement.get(Tn.element);Xt&&Xt[Tn.triggerName]&&(Xt[Tn.triggerName].value=zt)}return void $n.destroy()}}const Da=!dn||!this.driver.containsElement(dn,mr),Wr=la.get(mr),$a=En.get(mr),dr=this._buildInstruction(Tn,Ke,$a,Wr,Da);if(dr.errors&&dr.errors.length)return void Qr.push(dr);if(Da)return $n.onStart(()=>rt(mr,dr.fromStyles)),$n.onDestroy(()=>He(mr,dr.toStyles)),void Mt.push($n);if(Tn.isFallbackTransition)return $n.onStart(()=>rt(mr,dr.fromStyles)),$n.onDestroy(()=>He(mr,dr.toStyles)),void Mt.push($n);const at=[];dr.timelines.forEach(wt=>{wt.stretchStartingKeyframe=!0,this.disabledNodes.has(wt.element)||at.push(wt)}),dr.timelines=at,Ke.append(mr,dr.timelines),ni.push({instruction:dr,player:$n,element:mr}),dr.queriedElements.forEach(wt=>J(ri,wt,[]).push($n)),dr.preStyleProps.forEach((wt,zt)=>{const Xt=Object.keys(wt);if(Xt.length){let pi=gi.get(zt);pi||gi.set(zt,pi=new Set),Xt.forEach(_i=>pi.add(_i))}}),dr.postStyleProps.forEach((wt,zt)=>{const Xt=Object.keys(wt);let pi=Ai.get(zt);pi||Ai.set(zt,pi=new Set),Xt.forEach(_i=>pi.add(_i))})});if(Qr.length){const cn=[];Qr.forEach(xn=>{cn.push(function X(yt,oe){return new t.vHH(3505,M)}())}),Mr.forEach(xn=>xn.destroy()),this.reportError(cn)}const Gn=new Map,br=new Map;ni.forEach(cn=>{const xn=cn.element;Ke.has(xn)&&(br.set(xn,xn),this._beforeAnimationBuild(cn.player.namespaceId,cn.instruction,Gn))}),Mt.forEach(cn=>{const xn=cn.element;this._getPreviousPlayers(xn,!1,cn.namespaceId,cn.triggerName,null).forEach($n=>{J(Gn,xn,[]).push($n),$n.destroy()})});const Ka=ar.filter(cn=>vt(cn,gi,Ai)),Ra=new Map;ii(Ra,this.driver,Cr,Ai,f.l3).forEach(cn=>{vt(cn,gi,Ai)&&Ka.push(cn)});const Ma=new Map;Un.forEach((cn,xn)=>{ii(Ma,this.driver,new Set(cn),gi,f.k1)}),Ka.forEach(cn=>{const xn=Ra.get(cn),Tn=Ma.get(cn);Ra.set(cn,Object.assign(Object.assign({},xn),Tn))});const La=[],gs=[],_s={};ni.forEach(cn=>{const{element:xn,player:Tn,instruction:$n}=cn;if(Ke.has(xn)){if(Xi.has(xn))return Tn.onDestroy(()=>He(xn,$n.toStyles)),Tn.disabled=!0,Tn.overrideTotalTime($n.totalTime),void Mt.push(Tn);let mr=_s;if(br.size>1){let Wr=xn;const $a=[];for(;Wr=Wr.parentNode;){const dr=br.get(Wr);if(dr){mr=dr;break}$a.push(Wr)}$a.forEach(dr=>br.set(dr,mr))}const Da=this._buildAnimation(Tn.namespaceId,$n,Gn,Vt,Ma,Ra);if(Tn.setRealPlayer(Da),mr===_s)La.push(Tn);else{const Wr=this.playersByElement.get(mr);Wr&&Wr.length&&(Tn.parentPlayer=Pe(Wr)),Mt.push(Tn)}}else rt(xn,$n.fromStyles),Tn.onDestroy(()=>He(xn,$n.toStyles)),gs.push(Tn),Xi.has(xn)&&Mt.push(Tn)}),gs.forEach(cn=>{const xn=Vt.get(cn.element);if(xn&&xn.length){const Tn=Pe(xn);cn.setRealPlayer(Tn)}}),Mt.forEach(cn=>{cn.parentPlayer?cn.syncPlayerEvents(cn.parentPlayer):cn.destroy()});for(let cn=0;cn!Da.destroyed);mr.length?nr(this,xn,mr):this.processLeaveNode(xn)}return ar.length=0,La.forEach(cn=>{this.players.push(cn),cn.onDone(()=>{cn.destroy();const xn=this.players.indexOf(cn);this.players.splice(xn,1)}),cn.play()}),La}elementContainsData(oe,pe){let Ke=!1;const Mt=pe[ir];return Mt&&Mt.setForRemoval&&(Ke=!0),this.playersByElement.has(pe)&&(Ke=!0),this.playersByQueriedElement.has(pe)&&(Ke=!0),this.statesByElement.has(pe)&&(Ke=!0),this._fetchNamespace(oe).elementContainsData(pe)||Ke}afterFlush(oe){this._flushFns.push(oe)}afterFlushAnimationsDone(oe){this._whenQuietFns.push(oe)}_getPreviousPlayers(oe,pe,Ke,Mt,Vt){let ni=[];if(pe){const ri=this.playersByQueriedElement.get(oe);ri&&(ni=ri)}else{const ri=this.playersByElement.get(oe);if(ri){const gi=!Vt||Vt==Kr;ri.forEach(Ai=>{Ai.queued||!gi&&Ai.triggerName!=Mt||ni.push(Ai)})}}return(Ke||Mt)&&(ni=ni.filter(ri=>!(Ke&&Ke!=ri.namespaceId||Mt&&Mt!=ri.triggerName))),ni}_beforeAnimationBuild(oe,pe,Ke){const Vt=pe.element,ni=pe.isRemovalTransition?void 0:oe,ri=pe.isRemovalTransition?void 0:pe.triggerName;for(const gi of pe.timelines){const Ai=gi.element,Xi=Ai!==Vt,dn=J(Ke,Ai,[]);this._getPreviousPlayers(Ai,Xi,ni,ri,pe.toState).forEach(Un=>{const En=Un.getRealPlayer();En.beforeDestroy&&En.beforeDestroy(),Un.destroy(),dn.push(Un)})}rt(Vt,pe.fromStyles)}_buildAnimation(oe,pe,Ke,Mt,Vt,ni){const ri=pe.triggerName,gi=pe.element,Ai=[],Xi=new Set,dn=new Set,An=pe.timelines.map(En=>{const Pn=En.element;Xi.add(Pn);const ar=Pn[ir];if(ar&&ar.removedBeforeQueried)return new f.ZN(En.duration,En.delay);const Hr=Pn!==gi,Cr=function Vn(yt){const oe=[];return It(yt,oe),oe}((Ke.get(Pn)||or).map(Gn=>Gn.getRealPlayer())).filter(Gn=>!!Gn.element&&Gn.element===Pn),la=Vt.get(Pn),Ir=ni.get(Pn),Mr=Ee(0,this._normalizer,0,En.keyframes,la,Ir),Qr=this._buildPlayer(En,Mr,Cr);if(En.subTimeline&&Mt&&dn.add(Pn),Hr){const Gn=new Ja(oe,ri,Pn);Gn.setRealPlayer(Qr),Ai.push(Gn)}return Qr});Ai.forEach(En=>{J(this.playersByQueriedElement,En.element,[]).push(En),En.onDone(()=>function Xn(yt,oe,pe){let Ke;if(yt instanceof Map){if(Ke=yt.get(oe),Ke){if(Ke.length){const Mt=Ke.indexOf(pe);Ke.splice(Mt,1)}0==Ke.length&&yt.delete(oe)}}else if(Ke=yt[oe],Ke){if(Ke.length){const Mt=Ke.indexOf(pe);Ke.splice(Mt,1)}0==Ke.length&&delete yt[oe]}return Ke}(this.playersByQueriedElement,En.element,En))}),Xi.forEach(En=>yi(En,bt));const Un=Pe(An);return Un.onDestroy(()=>{Xi.forEach(En=>en(En,bt)),He(gi,pe.toStyles)}),dn.forEach(En=>{J(Mt,En,[]).push(Un)}),Un}_buildPlayer(oe,pe,Ke){return pe.length>0?this.driver.animate(oe.element,pe,oe.duration,oe.delay,oe.easing,Ke):new f.ZN(oe.duration,oe.delay)}}class Ja{constructor(oe,pe,Ke){this.namespaceId=oe,this.triggerName=pe,this.element=Ke,this._player=new f.ZN,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(oe){this._containsRealPlayer||(this._player=oe,Object.keys(this._queuedCallbacks).forEach(pe=>{this._queuedCallbacks[pe].forEach(Ke=>j(oe,pe,void 0,Ke))}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(oe.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(oe){this.totalTime=oe}syncPlayerEvents(oe){const pe=this._player;pe.triggerCallback&&oe.onStart(()=>pe.triggerCallback("start")),oe.onDone(()=>this.finish()),oe.onDestroy(()=>this.destroy())}_queueEvent(oe,pe){J(this._queuedCallbacks,oe,[]).push(pe)}onDone(oe){this.queued&&this._queueEvent("done",oe),this._player.onDone(oe)}onStart(oe){this.queued&&this._queueEvent("start",oe),this._player.onStart(oe)}onDestroy(oe){this.queued&&this._queueEvent("destroy",oe),this._player.onDestroy(oe)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(oe){this.queued||this._player.setPosition(oe)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(oe){const pe=this._player;pe.triggerCallback&&pe.triggerCallback(oe)}}function Et(yt){return yt&&1===yt.nodeType}function kt(yt,oe){const pe=yt.style.display;return yt.style.display=null!=oe?oe:"none",pe}function ii(yt,oe,pe,Ke,Mt){const Vt=[];pe.forEach(gi=>Vt.push(kt(gi)));const ni=[];Ke.forEach((gi,Ai)=>{const Xi={};gi.forEach(dn=>{const An=Xi[dn]=oe.computeStyle(Ai,dn,Mt);(!An||0==An.length)&&(Ai[ir]=Va,ni.push(Ai))}),yt.set(Ai,Xi)});let ri=0;return pe.forEach(gi=>kt(gi,Vt[ri++])),ni}function wi(yt,oe){const pe=new Map;if(yt.forEach(ri=>pe.set(ri,[])),0==oe.length)return pe;const Mt=new Set(oe),Vt=new Map;function ni(ri){if(!ri)return 1;let gi=Vt.get(ri);if(gi)return gi;const Ai=ri.parentNode;return gi=pe.has(Ai)?Ai:Mt.has(Ai)?1:ni(Ai),Vt.set(ri,gi),gi}return oe.forEach(ri=>{const gi=ni(ri);1!==gi&&pe.get(gi).push(ri)}),pe}function yi(yt,oe){var pe;null===(pe=yt.classList)||void 0===pe||pe.add(oe)}function en(yt,oe){var pe;null===(pe=yt.classList)||void 0===pe||pe.remove(oe)}function nr(yt,oe,pe){Pe(pe).onDone(()=>yt.processLeaveNode(oe))}function It(yt,oe){for(let pe=0;peMt.add(Vt)):oe.set(yt,Ke),pe.delete(yt),!0}class jt{constructor(oe,pe,Ke){this.bodyNode=oe,this._driver=pe,this._normalizer=Ke,this._triggerCache={},this.onRemovalComplete=(Mt,Vt)=>{},this._transitionEngine=new Ta(oe,pe,Ke),this._timelineEngine=new ba(oe,pe,Ke),this._transitionEngine.onRemovalComplete=(Mt,Vt)=>this.onRemovalComplete(Mt,Vt)}registerTrigger(oe,pe,Ke,Mt,Vt){const ni=oe+"-"+Mt;let ri=this._triggerCache[ni];if(!ri){const gi=[],Xi=on(this._driver,Vt,gi,[]);if(gi.length)throw function r(yt,oe){return new t.vHH(3404,M)}();ri=function Ya(yt,oe,pe){return new jr(yt,oe,pe)}(Mt,Xi,this._normalizer),this._triggerCache[ni]=ri}this._transitionEngine.registerTrigger(pe,Mt,ri)}register(oe,pe){this._transitionEngine.register(oe,pe)}destroy(oe,pe){this._transitionEngine.destroy(oe,pe)}onInsert(oe,pe,Ke,Mt){this._transitionEngine.insertNode(oe,pe,Ke,Mt)}onRemove(oe,pe,Ke,Mt){this._transitionEngine.removeNode(oe,pe,Mt||!1,Ke)}disableAnimations(oe,pe){this._transitionEngine.markElementAsDisabled(oe,pe)}process(oe,pe,Ke,Mt){if("@"==Ke.charAt(0)){const[Vt,ni]=Ie(Ke);this._timelineEngine.command(Vt,pe,ni,Mt)}else this._transitionEngine.trigger(oe,pe,Ke,Mt)}listen(oe,pe,Ke,Mt,Vt){if("@"==Ke.charAt(0)){const[ni,ri]=Ie(Ke);return this._timelineEngine.listen(ni,pe,ri,Vt)}return this._transitionEngine.listen(oe,pe,Ke,Mt,Vt)}flush(oe=-1){this._transitionEngine.flush(oe)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}let je=(()=>{class yt{constructor(pe,Ke,Mt){this._element=pe,this._startStyles=Ke,this._endStyles=Mt,this._state=0;let Vt=yt.initialStylesByElement.get(pe);Vt||yt.initialStylesByElement.set(pe,Vt={}),this._initialStyles=Vt}start(){this._state<1&&(this._startStyles&&He(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(He(this._element,this._initialStyles),this._endStyles&&(He(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(yt.initialStylesByElement.delete(this._element),this._startStyles&&(rt(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(rt(this._element,this._endStyles),this._endStyles=null),He(this._element,this._initialStyles),this._state=3)}}return yt.initialStylesByElement=new WeakMap,yt})();function We(yt){let oe=null;const pe=Object.keys(yt);for(let Ke=0;Keoe()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const oe=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,oe,this.options),this._finalKeyframe=oe.length?oe[oe.length-1]:{},this.domPlayer.addEventListener("finish",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_triggerWebAnimation(oe,pe,Ke){return oe.animate(pe,Ke)}onStart(oe){this._onStartFns.push(oe)}onDone(oe){this._onDoneFns.push(oe)}onDestroy(oe){this._onDestroyFns.push(oe)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(oe=>oe()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(oe=>oe()),this._onDestroyFns=[])}setPosition(oe){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=oe*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const oe={};if(this.hasStarted()){const pe=this._finalKeyframe;Object.keys(pe).forEach(Ke=>{"offset"!=Ke&&(oe[Ke]=this._finished?pe[Ke]:Ji(this.element,Ke))})}this.currentSnapshot=oe}triggerCallback(oe){const pe="start"==oe?this._onStartFns:this._onDoneFns;pe.forEach(Ke=>Ke()),pe.length=0}}class Si{validateStyleProperty(oe){return Ce(oe)}matchesElement(oe,pe){return!1}containsElement(oe,pe){return Q(oe,pe)}getParentElement(oe){return ce(oe)}query(oe,pe,Ke){return ft(oe,pe,Ke)}computeStyle(oe,pe,Ke){return window.getComputedStyle(oe)[pe]}animate(oe,pe,Ke,Mt,Vt,ni=[]){const gi={duration:Ke,delay:Mt,fill:0==Mt?"both":"forwards"};Vt&&(gi.easing=Vt);const Ai={},Xi=ni.filter(An=>An instanceof At);(function Qi(yt,oe){return 0===yt||0===oe})(Ke,Mt)&&Xi.forEach(An=>{let Un=An.currentSnapshot;Object.keys(Un).forEach(En=>Ai[En]=Un[En])}),pe=function hi(yt,oe,pe){const Ke=Object.keys(pe);if(Ke.length&&oe.length){let Vt=oe[0],ni=[];if(Ke.forEach(ri=>{Vt.hasOwnProperty(ri)||ni.push(ri),Vt[ri]=pe[ri]}),ni.length)for(var Mt=1;Mtmt(An,!1)),Ai);const dn=function ki(yt,oe){let pe=null,Ke=null;return Array.isArray(oe)&&oe.length?(pe=We(oe[0]),oe.length>1&&(Ke=We(oe[oe.length-1]))):oe&&(pe=We(oe)),pe||Ke?new je(yt,pe,Ke):null}(oe,pe);return new At(oe,pe,gi,dn)}}var Gi=p(9808);let Bn=(()=>{class yt extends f._j{constructor(pe,Ke){super(),this._nextAnimationId=0,this._renderer=pe.createRenderer(Ke.body,{id:"0",encapsulation:t.ifc.None,styles:[],data:{animation:[]}})}build(pe){const Ke=this._nextAnimationId.toString();this._nextAnimationId++;const Mt=Array.isArray(pe)?(0,f.vP)(pe):pe;return Ca(this._renderer,null,Ke,"register",[Mt]),new yr(Ke,this._renderer)}}return yt.\u0275fac=function(pe){return new(pe||yt)(t.LFG(t.FYo),t.LFG(Gi.K0))},yt.\u0275prov=t.Yz7({token:yt,factory:yt.\u0275fac}),yt})();class yr extends f.LC{constructor(oe,pe){super(),this._id=oe,this._renderer=pe}create(oe,pe){return new Xa(this._id,oe,pe||{},this._renderer)}}class Xa{constructor(oe,pe,Ke,Mt){this.id=oe,this.element=pe,this._renderer=Mt,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command("create",Ke)}_listen(oe,pe){return this._renderer.listen(this.element,`@@${this.id}:${oe}`,pe)}_command(oe,...pe){return Ca(this._renderer,this.element,this.id,oe,pe)}onDone(oe){this._listen("done",oe)}onStart(oe){this._listen("start",oe)}onDestroy(oe){this._listen("destroy",oe)}init(){this._command("init")}hasStarted(){return this._started}play(){this._command("play"),this._started=!0}pause(){this._command("pause")}restart(){this._command("restart")}finish(){this._command("finish")}destroy(){this._command("destroy")}reset(){this._command("reset"),this._started=!1}setPosition(oe){this._command("setPosition",oe)}getPosition(){var oe,pe;return null!==(pe=null===(oe=this._renderer.engine.players[+this.id])||void 0===oe?void 0:oe.getPosition())&&void 0!==pe?pe:0}}function Ca(yt,oe,pe,Ke,Mt){return yt.setProperty(oe,`@@${pe}:${Ke}`,Mt)}const Fi="@.disabled";let Yn=(()=>{class yt{constructor(pe,Ke,Mt){this.delegate=pe,this.engine=Ke,this._zone=Mt,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),Ke.onRemovalComplete=(Vt,ni)=>{const ri=null==ni?void 0:ni.parentNode(Vt);ri&&ni.removeChild(ri,Vt)}}createRenderer(pe,Ke){const Vt=this.delegate.createRenderer(pe,Ke);if(!(pe&&Ke&&Ke.data&&Ke.data.animation)){let Xi=this._rendererCache.get(Vt);return Xi||(Xi=new zs("",Vt,this.engine),this._rendererCache.set(Vt,Xi)),Xi}const ni=Ke.id,ri=Ke.id+"-"+this._currentId;this._currentId++,this.engine.register(ri,pe);const gi=Xi=>{Array.isArray(Xi)?Xi.forEach(gi):this.engine.registerTrigger(ni,ri,pe,Xi.name,Xi)};return Ke.data.animation.forEach(gi),new Er(this,ri,Vt,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(pe,Ke,Mt){pe>=0&&peKe(Mt)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(Vt=>{const[ni,ri]=Vt;ni(ri)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([Ke,Mt]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return yt.\u0275fac=function(pe){return new(pe||yt)(t.LFG(t.FYo),t.LFG(jt),t.LFG(t.R0b))},yt.\u0275prov=t.Yz7({token:yt,factory:yt.\u0275fac}),yt})();class zs{constructor(oe,pe,Ke){this.namespaceId=oe,this.delegate=pe,this.engine=Ke,this.destroyNode=this.delegate.destroyNode?Mt=>pe.destroyNode(Mt):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy()}createElement(oe,pe){return this.delegate.createElement(oe,pe)}createComment(oe){return this.delegate.createComment(oe)}createText(oe){return this.delegate.createText(oe)}appendChild(oe,pe){this.delegate.appendChild(oe,pe),this.engine.onInsert(this.namespaceId,pe,oe,!1)}insertBefore(oe,pe,Ke,Mt=!0){this.delegate.insertBefore(oe,pe,Ke),this.engine.onInsert(this.namespaceId,pe,oe,Mt)}removeChild(oe,pe,Ke){this.engine.onRemove(this.namespaceId,pe,this.delegate,Ke)}selectRootElement(oe,pe){return this.delegate.selectRootElement(oe,pe)}parentNode(oe){return this.delegate.parentNode(oe)}nextSibling(oe){return this.delegate.nextSibling(oe)}setAttribute(oe,pe,Ke,Mt){this.delegate.setAttribute(oe,pe,Ke,Mt)}removeAttribute(oe,pe,Ke){this.delegate.removeAttribute(oe,pe,Ke)}addClass(oe,pe){this.delegate.addClass(oe,pe)}removeClass(oe,pe){this.delegate.removeClass(oe,pe)}setStyle(oe,pe,Ke,Mt){this.delegate.setStyle(oe,pe,Ke,Mt)}removeStyle(oe,pe,Ke){this.delegate.removeStyle(oe,pe,Ke)}setProperty(oe,pe,Ke){"@"==pe.charAt(0)&&pe==Fi?this.disableAnimations(oe,!!Ke):this.delegate.setProperty(oe,pe,Ke)}setValue(oe,pe){this.delegate.setValue(oe,pe)}listen(oe,pe,Ke){return this.delegate.listen(oe,pe,Ke)}disableAnimations(oe,pe){this.engine.disableAnimations(oe,pe)}}class Er extends zs{constructor(oe,pe,Ke,Mt){super(pe,Ke,Mt),this.factory=oe,this.namespaceId=pe}setProperty(oe,pe,Ke){"@"==pe.charAt(0)?"."==pe.charAt(1)&&pe==Fi?this.disableAnimations(oe,Ke=void 0===Ke||!!Ke):this.engine.process(this.namespaceId,oe,pe.substr(1),Ke):this.delegate.setProperty(oe,pe,Ke)}listen(oe,pe,Ke){if("@"==pe.charAt(0)){const Mt=function io(yt){switch(yt){case"body":return document.body;case"document":return document;case"window":return window;default:return yt}}(oe);let Vt=pe.substr(1),ni="";return"@"!=Vt.charAt(0)&&([Vt,ni]=function ms(yt){const oe=yt.indexOf(".");return[yt.substring(0,oe),yt.substr(oe+1)]}(Vt)),this.engine.listen(this.namespaceId,Mt,Vt,ni,ri=>{this.factory.scheduleListenerCallback(ri._data||-1,Ke,ri)})}return this.delegate.listen(oe,pe,Ke)}}let Aa=(()=>{class yt extends jt{constructor(pe,Ke,Mt){super(pe.body,Ke,Mt)}ngOnDestroy(){this.flush()}}return yt.\u0275fac=function(pe){return new(pe||yt)(t.LFG(Gi.K0),t.LFG(di),t.LFG(ra))},yt.\u0275prov=t.Yz7({token:yt,factory:yt.\u0275fac}),yt})();const Vs=new t.OlP("AnimationModuleType"),Bs=[{provide:f._j,useClass:Bn},{provide:ra,useFactory:function Os(){return new Xr}},{provide:jt,useClass:Aa},{provide:t.FYo,useFactory:function Ps(yt,oe,pe){return new Yn(yt,oe,pe)},deps:[e.se,jt,t.R0b]}],Us=[{provide:di,useFactory:()=>new Si},{provide:Vs,useValue:"BrowserAnimations"},...Bs],ss=[{provide:di,useClass:Dt},{provide:Vs,useValue:"NoopAnimations"},...Bs];let Zr=(()=>{class yt{static withConfig(pe){return{ngModule:yt,providers:pe.disableAnimations?ss:Us}}}return yt.\u0275fac=function(pe){return new(pe||yt)},yt.\u0275mod=t.oAB({type:yt}),yt.\u0275inj=t.cJS({providers:Us,imports:[e.b2]}),yt})()},2313:(Be,K,p)=>{"use strict";p.d(K,{H7:()=>nt,b2:()=>ut,q6:()=>J,se:()=>c,t6:()=>Ft});var t=p(9808),e=p(5e3);class f extends t.w_{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class M extends f{static makeCurrent(){(0,t.HT)(new M)}onAndCancel(Ge,ot,lt){return Ge.addEventListener(ot,lt,!1),()=>{Ge.removeEventListener(ot,lt,!1)}}dispatchEvent(Ge,ot){Ge.dispatchEvent(ot)}remove(Ge){Ge.parentNode&&Ge.parentNode.removeChild(Ge)}createElement(Ge,ot){return(ot=ot||this.getDefaultDocument()).createElement(Ge)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(Ge){return Ge.nodeType===Node.ELEMENT_NODE}isShadowRoot(Ge){return Ge instanceof DocumentFragment}getGlobalEventTarget(Ge,ot){return"window"===ot?window:"document"===ot?Ge:"body"===ot?Ge.body:null}getBaseHref(Ge){const ot=function C(){return a=a||document.querySelector("base"),a?a.getAttribute("href"):null}();return null==ot?null:function R(Ae){d=d||document.createElement("a"),d.setAttribute("href",Ae);const Ge=d.pathname;return"/"===Ge.charAt(0)?Ge:`/${Ge}`}(ot)}resetBaseElement(){a=null}getUserAgent(){return window.navigator.userAgent}getCookie(Ge){return(0,t.Mx)(document.cookie,Ge)}}let d,a=null;const h=new e.OlP("TRANSITION_ID"),w=[{provide:e.ip1,useFactory:function L(Ae,Ge,ot){return()=>{ot.get(e.CZH).donePromise.then(()=>{const lt=(0,t.q)(),Ct=Ge.querySelectorAll(`style[ng-transition="${Ae}"]`);for(let mi=0;mi{const mi=Ge.findTestabilityInTree(lt,Ct);if(null==mi)throw new Error("Could not find testability for element.");return mi},e.dqk.getAllAngularTestabilities=()=>Ge.getAllTestabilities(),e.dqk.getAllAngularRootElements=()=>Ge.getAllRootElements(),e.dqk.frameworkStabilizers||(e.dqk.frameworkStabilizers=[]),e.dqk.frameworkStabilizers.push(lt=>{const Ct=e.dqk.getAllAngularTestabilities();let mi=Ct.length,Jt=!1;const $t=function(Qi){Jt=Jt||Qi,mi--,0==mi&<(Jt)};Ct.forEach(function(Qi){Qi.whenStable($t)})})}findTestabilityInTree(Ge,ot,lt){if(null==ot)return null;const Ct=Ge.getTestability(ot);return null!=Ct?Ct:lt?(0,t.q)().isShadowRoot(ot)?this.findTestabilityInTree(Ge,ot.host,!0):this.findTestabilityInTree(Ge,ot.parentElement,!0):null}}let S=(()=>{class Ae{build(){return new XMLHttpRequest}}return Ae.\u0275fac=function(ot){return new(ot||Ae)},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})();const k=new e.OlP("EventManagerPlugins");let E=(()=>{class Ae{constructor(ot,lt){this._zone=lt,this._eventNameToPlugin=new Map,ot.forEach(Ct=>Ct.manager=this),this._plugins=ot.slice().reverse()}addEventListener(ot,lt,Ct){return this._findPluginFor(lt).addEventListener(ot,lt,Ct)}addGlobalEventListener(ot,lt,Ct){return this._findPluginFor(lt).addGlobalEventListener(ot,lt,Ct)}getZone(){return this._zone}_findPluginFor(ot){const lt=this._eventNameToPlugin.get(ot);if(lt)return lt;const Ct=this._plugins;for(let mi=0;mi{class Ae{constructor(){this._stylesSet=new Set}addStyles(ot){const lt=new Set;ot.forEach(Ct=>{this._stylesSet.has(Ct)||(this._stylesSet.add(Ct),lt.add(Ct))}),this.onStylesAdded(lt)}onStylesAdded(ot){}getAllStyles(){return Array.from(this._stylesSet)}}return Ae.\u0275fac=function(ot){return new(ot||Ae)},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})(),Y=(()=>{class Ae extends Z{constructor(ot){super(),this._doc=ot,this._hostNodes=new Map,this._hostNodes.set(ot.head,[])}_addStylesToHost(ot,lt,Ct){ot.forEach(mi=>{const Jt=this._doc.createElement("style");Jt.textContent=mi,Ct.push(lt.appendChild(Jt))})}addHost(ot){const lt=[];this._addStylesToHost(this._stylesSet,ot,lt),this._hostNodes.set(ot,lt)}removeHost(ot){const lt=this._hostNodes.get(ot);lt&<.forEach(ae),this._hostNodes.delete(ot)}onStylesAdded(ot){this._hostNodes.forEach((lt,Ct)=>{this._addStylesToHost(ot,Ct,lt)})}ngOnDestroy(){this._hostNodes.forEach(ot=>ot.forEach(ae))}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(t.K0))},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})();function ae(Ae){(0,t.q)().remove(Ae)}const ee={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/MathML/"},ue=/%COMP%/g;function i(Ae,Ge,ot){for(let lt=0;lt{if("__ngUnwrap__"===Ge)return Ae;!1===Ae(Ge)&&(Ge.preventDefault(),Ge.returnValue=!1)}}let c=(()=>{class Ae{constructor(ot,lt,Ct){this.eventManager=ot,this.sharedStylesHost=lt,this.appId=Ct,this.rendererByCompId=new Map,this.defaultRenderer=new v(ot)}createRenderer(ot,lt){if(!ot||!lt)return this.defaultRenderer;switch(lt.encapsulation){case e.ifc.Emulated:{let Ct=this.rendererByCompId.get(lt.id);return Ct||(Ct=new y(this.eventManager,this.sharedStylesHost,lt,this.appId),this.rendererByCompId.set(lt.id,Ct)),Ct.applyToHost(ot),Ct}case 1:case e.ifc.ShadowDom:return new n(this.eventManager,this.sharedStylesHost,ot,lt);default:if(!this.rendererByCompId.has(lt.id)){const Ct=i(lt.id,lt.styles,[]);this.sharedStylesHost.addStyles(Ct),this.rendererByCompId.set(lt.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(E),e.LFG(Y),e.LFG(e.AFp))},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})();class v{constructor(Ge){this.eventManager=Ge,this.data=Object.create(null),this.destroyNode=null}destroy(){}createElement(Ge,ot){return ot?document.createElementNS(ee[ot]||ot,Ge):document.createElement(Ge)}createComment(Ge){return document.createComment(Ge)}createText(Ge){return document.createTextNode(Ge)}appendChild(Ge,ot){Ge.appendChild(ot)}insertBefore(Ge,ot,lt){Ge&&Ge.insertBefore(ot,lt)}removeChild(Ge,ot){Ge&&Ge.removeChild(ot)}selectRootElement(Ge,ot){let lt="string"==typeof Ge?document.querySelector(Ge):Ge;if(!lt)throw new Error(`The selector "${Ge}" did not match any elements`);return ot||(lt.textContent=""),lt}parentNode(Ge){return Ge.parentNode}nextSibling(Ge){return Ge.nextSibling}setAttribute(Ge,ot,lt,Ct){if(Ct){ot=Ct+":"+ot;const mi=ee[Ct];mi?Ge.setAttributeNS(mi,ot,lt):Ge.setAttribute(ot,lt)}else Ge.setAttribute(ot,lt)}removeAttribute(Ge,ot,lt){if(lt){const Ct=ee[lt];Ct?Ge.removeAttributeNS(Ct,ot):Ge.removeAttribute(`${lt}:${ot}`)}else Ge.removeAttribute(ot)}addClass(Ge,ot){Ge.classList.add(ot)}removeClass(Ge,ot){Ge.classList.remove(ot)}setStyle(Ge,ot,lt,Ct){Ct&(e.JOm.DashCase|e.JOm.Important)?Ge.style.setProperty(ot,lt,Ct&e.JOm.Important?"important":""):Ge.style[ot]=lt}removeStyle(Ge,ot,lt){lt&e.JOm.DashCase?Ge.style.removeProperty(ot):Ge.style[ot]=""}setProperty(Ge,ot,lt){Ge[ot]=lt}setValue(Ge,ot){Ge.nodeValue=ot}listen(Ge,ot,lt){return"string"==typeof Ge?this.eventManager.addGlobalEventListener(Ge,ot,r(lt)):this.eventManager.addEventListener(Ge,ot,r(lt))}}class y extends v{constructor(Ge,ot,lt,Ct){super(Ge),this.component=lt;const mi=i(Ct+"-"+lt.id,lt.styles,[]);ot.addStyles(mi),this.contentAttr=function _e(Ae){return"_ngcontent-%COMP%".replace(ue,Ae)}(Ct+"-"+lt.id),this.hostAttr=function x(Ae){return"_nghost-%COMP%".replace(ue,Ae)}(Ct+"-"+lt.id)}applyToHost(Ge){super.setAttribute(Ge,this.hostAttr,"")}createElement(Ge,ot){const lt=super.createElement(Ge,ot);return super.setAttribute(lt,this.contentAttr,""),lt}}class n extends v{constructor(Ge,ot,lt,Ct){super(Ge),this.sharedStylesHost=ot,this.hostEl=lt,this.shadowRoot=lt.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const mi=i(Ct.id,Ct.styles,[]);for(let Jt=0;Jt{class Ae extends B{constructor(ot){super(ot)}supports(ot){return!0}addEventListener(ot,lt,Ct){return ot.addEventListener(lt,Ct,!1),()=>this.removeEventListener(ot,lt,Ct)}removeEventListener(ot,lt,Ct){return ot.removeEventListener(lt,Ct)}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(t.K0))},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})();const V=["alt","control","meta","shift"],H={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},X={A:"1",B:"2",C:"3",D:"4",E:"5",F:"6",G:"7",H:"8",I:"9",J:"*",K:"+",M:"-",N:".",O:"/","`":"0","\x90":"NumLock"},he={alt:Ae=>Ae.altKey,control:Ae=>Ae.ctrlKey,meta:Ae=>Ae.metaKey,shift:Ae=>Ae.shiftKey};let be=(()=>{class Ae extends B{constructor(ot){super(ot)}supports(ot){return null!=Ae.parseEventName(ot)}addEventListener(ot,lt,Ct){const mi=Ae.parseEventName(lt),Jt=Ae.eventCallback(mi.fullKey,Ct,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,t.q)().onAndCancel(ot,mi.domEventName,Jt))}static parseEventName(ot){const lt=ot.toLowerCase().split("."),Ct=lt.shift();if(0===lt.length||"keydown"!==Ct&&"keyup"!==Ct)return null;const mi=Ae._normalizeKey(lt.pop());let Jt="";if(V.forEach(Qi=>{const hi=lt.indexOf(Qi);hi>-1&&(lt.splice(hi,1),Jt+=Qi+".")}),Jt+=mi,0!=lt.length||0===mi.length)return null;const $t={};return $t.domEventName=Ct,$t.fullKey=Jt,$t}static getEventFullKey(ot){let lt="",Ct=function Pe(Ae){let Ge=Ae.key;if(null==Ge){if(Ge=Ae.keyIdentifier,null==Ge)return"Unidentified";Ge.startsWith("U+")&&(Ge=String.fromCharCode(parseInt(Ge.substring(2),16)),3===Ae.location&&X.hasOwnProperty(Ge)&&(Ge=X[Ge]))}return H[Ge]||Ge}(ot);return Ct=Ct.toLowerCase()," "===Ct?Ct="space":"."===Ct&&(Ct="dot"),V.forEach(mi=>{mi!=Ct&&he[mi](ot)&&(lt+=mi+".")}),lt+=Ct,lt}static eventCallback(ot,lt,Ct){return mi=>{Ae.getEventFullKey(mi)===ot&&Ct.runGuarded(()=>lt(mi))}}static _normalizeKey(ot){return"esc"===ot?"escape":ot}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(t.K0))},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})();const J=(0,e.eFA)(e._c5,"browser",[{provide:e.Lbi,useValue:t.bD},{provide:e.g9A,useValue:function Ee(){M.makeCurrent(),D.init()},multi:!0},{provide:t.K0,useFactory:function Ve(){return(0,e.RDi)(document),document},deps:[]}]),Ie=[{provide:e.zSh,useValue:"root"},{provide:e.qLn,useFactory:function j(){return new e.qLn},deps:[]},{provide:k,useClass:_,multi:!0,deps:[t.K0,e.R0b,e.Lbi]},{provide:k,useClass:be,multi:!0,deps:[t.K0]},{provide:c,useClass:c,deps:[E,Y,e.AFp]},{provide:e.FYo,useExisting:c},{provide:Z,useExisting:Y},{provide:Y,useClass:Y,deps:[t.K0]},{provide:e.dDg,useClass:e.dDg,deps:[e.R0b]},{provide:E,useClass:E,deps:[k,e.R0b]},{provide:t.JF,useClass:S,deps:[]}];let ut=(()=>{class Ae{constructor(ot){if(ot)throw new Error("BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.")}static withServerTransition(ot){return{ngModule:Ae,providers:[{provide:e.AFp,useValue:ot.appId},{provide:h,useExisting:e.AFp},w]}}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(Ae,12))},Ae.\u0275mod=e.oAB({type:Ae}),Ae.\u0275inj=e.cJS({providers:Ie,imports:[t.ez,e.hGG]}),Ae})();"undefined"!=typeof window&&window;const ke={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},de=new e.OlP("HammerGestureConfig"),ye=new e.OlP("HammerLoader");let ht=(()=>{class Ae{constructor(){this.events=[],this.overrides={}}buildHammer(ot){const lt=new Hammer(ot,this.options);lt.get("pinch").set({enable:!0}),lt.get("rotate").set({enable:!0});for(const Ct in this.overrides)lt.get(Ct).set(this.overrides[Ct]);return lt}}return Ae.\u0275fac=function(ot){return new(ot||Ae)},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})(),mt=(()=>{class Ae extends B{constructor(ot,lt,Ct,mi){super(ot),this._config=lt,this.console=Ct,this.loader=mi,this._loaderPromise=null}supports(ot){return!(!ke.hasOwnProperty(ot.toLowerCase())&&!this.isCustomEvent(ot)||!window.Hammer&&!this.loader)}addEventListener(ot,lt,Ct){const mi=this.manager.getZone();if(lt=lt.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||this.loader();let Jt=!1,$t=()=>{Jt=!0};return this._loaderPromise.then(()=>{window.Hammer?Jt||($t=this.addEventListener(ot,lt,Ct)):$t=()=>{}}).catch(()=>{$t=()=>{}}),()=>{$t()}}return mi.runOutsideAngular(()=>{const Jt=this._config.buildHammer(ot),$t=function(Qi){mi.runGuarded(function(){Ct(Qi)})};return Jt.on(lt,$t),()=>{Jt.off(lt,$t),"function"==typeof Jt.destroy&&Jt.destroy()}})}isCustomEvent(ot){return this._config.events.indexOf(ot)>-1}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(t.K0),e.LFG(de),e.LFG(e.c2e),e.LFG(ye,8))},Ae.\u0275prov=e.Yz7({token:Ae,factory:Ae.\u0275fac}),Ae})(),Ft=(()=>{class Ae{}return Ae.\u0275fac=function(ot){return new(ot||Ae)},Ae.\u0275mod=e.oAB({type:Ae}),Ae.\u0275inj=e.cJS({providers:[{provide:k,useClass:mt,multi:!0,deps:[t.K0,de,e.c2e,[new e.FiY,ye]]},{provide:de,useClass:ht,deps:[]}]}),Ae})(),nt=(()=>{class Ae{}return Ae.\u0275fac=function(ot){return new(ot||Ae)},Ae.\u0275prov=e.Yz7({token:Ae,factory:function(ot){let lt=null;return lt=ot?new(ot||Ae):e.LFG(rt),lt},providedIn:"root"}),Ae})(),rt=(()=>{class Ae extends nt{constructor(ot){super(),this._doc=ot}sanitize(ot,lt){if(null==lt)return null;switch(ot){case e.q3G.NONE:return lt;case e.q3G.HTML:return(0,e.qzn)(lt,"HTML")?(0,e.z3N)(lt):(0,e.EiD)(this._doc,String(lt)).toString();case e.q3G.STYLE:return(0,e.qzn)(lt,"Style")?(0,e.z3N)(lt):lt;case e.q3G.SCRIPT:if((0,e.qzn)(lt,"Script"))return(0,e.z3N)(lt);throw new Error("unsafe value used in a script context");case e.q3G.URL:return(0,e.yhl)(lt),(0,e.qzn)(lt,"URL")?(0,e.z3N)(lt):(0,e.mCW)(String(lt));case e.q3G.RESOURCE_URL:if((0,e.qzn)(lt,"ResourceURL"))return(0,e.z3N)(lt);throw new Error("unsafe value used in a resource URL context (see https://g.co/ng/security#xss)");default:throw new Error(`Unexpected SecurityContext ${ot} (see https://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(ot){return(0,e.JVY)(ot)}bypassSecurityTrustStyle(ot){return(0,e.L6k)(ot)}bypassSecurityTrustScript(ot){return(0,e.eBb)(ot)}bypassSecurityTrustUrl(ot){return(0,e.LAX)(ot)}bypassSecurityTrustResourceUrl(ot){return(0,e.pB0)(ot)}}return Ae.\u0275fac=function(ot){return new(ot||Ae)(e.LFG(t.K0))},Ae.\u0275prov=e.Yz7({token:Ae,factory:function(ot){let lt=null;return lt=ot?new ot:function He(Ae){return new rt(Ae.get(t.K0))}(e.LFG(e.zs3)),lt},providedIn:"root"}),Ae})()},1402:(Be,K,p)=>{"use strict";p.d(K,{gz:()=>Wi,gk:()=>H,m2:()=>N,Q3:()=>X,OD:()=>V,Av:()=>j,F0:()=>br,rH:()=>Ss,Od:()=>gs,yS:()=>Ma,Bz:()=>St,lC:()=>aa});var t=p(5e3),e=p(8306),f=p(727),M=p(4482),a=p(5403);function C(){return(0,M.e)((ze,Se)=>{let me=null;ze._refCount++;const qe=(0,a.x)(Se,void 0,void 0,void 0,()=>{if(!ze||ze._refCount<=0||0<--ze._refCount)return void(me=null);const ct=ze._connection,Pt=me;me=null,ct&&(!Pt||ct===Pt)&&ct.unsubscribe(),Se.unsubscribe()});ze.subscribe(qe),qe.closed||(me=ze.connect())})}class d extends e.y{constructor(Se,me){super(),this.source=Se,this.subjectFactory=me,this._subject=null,this._refCount=0,this._connection=null,(0,M.A)(Se)&&(this.lift=Se.lift)}_subscribe(Se){return this.getSubject().subscribe(Se)}getSubject(){const Se=this._subject;return(!Se||Se.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:Se}=this;this._subject=this._connection=null,null==Se||Se.unsubscribe()}connect(){let Se=this._connection;if(!Se){Se=this._connection=new f.w0;const me=this.getSubject();Se.add(this.source.subscribe((0,a.x)(me,void 0,()=>{this._teardown(),me.complete()},qe=>{this._teardown(),me.error(qe)},()=>this._teardown()))),Se.closed&&(this._connection=null,Se=f.w0.EMPTY)}return Se}refCount(){return C()(this)}}var R=p(457),h=p(9646),L=p(1135),w=p(9841),D=p(2843),S=p(6805),k=p(7272),E=p(9770),B=p(515),Z=p(7579),Y=p(9300);function ae(ze){return ze<=0?()=>B.E:(0,M.e)((Se,me)=>{let qe=[];Se.subscribe((0,a.x)(me,ct=>{qe.push(ct),ze{for(const ct of qe)me.next(ct);me.complete()},void 0,()=>{qe=null}))})}var ee=p(8068),ue=p(6590),ie=p(4671),ge=p(4004),q=p(3900),_e=p(5698),x=p(8675),i=p(5026),r=p(262),u=p(4351),c=p(590),v=p(5577),T=p(8505),I=p(8746),y=p(8189),n=p(9808);class _{constructor(Se,me){this.id=Se,this.url=me}}class V extends _{constructor(Se,me,qe="imperative",ct=null){super(Se,me),this.navigationTrigger=qe,this.restoredState=ct}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class N extends _{constructor(Se,me,qe){super(Se,me),this.urlAfterRedirects=qe}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class H extends _{constructor(Se,me,qe){super(Se,me),this.reason=qe}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class X extends _{constructor(Se,me,qe){super(Se,me),this.error=qe}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class he extends _{constructor(Se,me,qe,ct){super(Se,me),this.urlAfterRedirects=qe,this.state=ct}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class be extends _{constructor(Se,me,qe,ct){super(Se,me),this.urlAfterRedirects=qe,this.state=ct}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Pe extends _{constructor(Se,me,qe,ct,Pt){super(Se,me),this.urlAfterRedirects=qe,this.state=ct,this.shouldActivate=Pt}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class Ee extends _{constructor(Se,me,qe,ct){super(Se,me),this.urlAfterRedirects=qe,this.state=ct}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class j extends _{constructor(Se,me,qe,ct){super(Se,me),this.urlAfterRedirects=qe,this.state=ct}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Ve{constructor(Se){this.route=Se}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class Me{constructor(Se){this.route=Se}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class J{constructor(Se){this.snapshot=Se}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ie{constructor(Se){this.snapshot=Se}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class ut{constructor(Se){this.snapshot=Se}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Oe{constructor(Se){this.snapshot=Se}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class we{constructor(Se,me,qe){this.routerEvent=Se,this.position=me,this.anchor=qe}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}const ce="primary";class Te{constructor(Se){this.params=Se||{}}has(Se){return Object.prototype.hasOwnProperty.call(this.params,Se)}get(Se){if(this.has(Se)){const me=this.params[Se];return Array.isArray(me)?me[0]:me}return null}getAll(Se){if(this.has(Se)){const me=this.params[Se];return Array.isArray(me)?me:[me]}return[]}get keys(){return Object.keys(this.params)}}function xe(ze){return new Te(ze)}const W="ngNavigationCancelingError";function te(ze){const Se=Error("NavigationCancelingError: "+ze);return Se[W]=!0,Se}function fe(ze,Se,me){const qe=me.path.split("/");if(qe.length>ze.length||"full"===me.pathMatch&&(Se.hasChildren()||qe.lengthqe[Pt]===ct)}return ze===Se}function Dt(ze){return Array.prototype.concat.apply([],ze)}function di(ze){return ze.length>0?ze[ze.length-1]:null}function Zt(ze,Se){for(const me in ze)ze.hasOwnProperty(me)&&Se(ze[me],me)}function ui(ze){return(0,t.CqO)(ze)?ze:(0,t.QGY)(ze)?(0,R.D)(Promise.resolve(ze)):(0,h.of)(ze)}const Nt={exact:function ei(ze,Se,me){if(!nt(ze.segments,Se.segments)||!de(ze.segments,Se.segments,me)||ze.numberOfChildren!==Se.numberOfChildren)return!1;for(const qe in Se.children)if(!ze.children[qe]||!ei(ze.children[qe],Se.children[qe],me))return!1;return!0},subset:Re},gt={exact:function bt(ze,Se){return ft(ze,Se)},subset:function Qt(ze,Se){return Object.keys(Se).length<=Object.keys(ze).length&&Object.keys(Se).every(me=>tt(ze[me],Se[me]))},ignored:()=>!0};function it(ze,Se,me){return Nt[me.paths](ze.root,Se.root,me.matrixParams)&>[me.queryParams](ze.queryParams,Se.queryParams)&&!("exact"===me.fragment&&ze.fragment!==Se.fragment)}function Re(ze,Se,me){return ke(ze,Se,Se.segments,me)}function ke(ze,Se,me,qe){if(ze.segments.length>me.length){const ct=ze.segments.slice(0,me.length);return!(!nt(ct,me)||Se.hasChildren()||!de(ct,me,qe))}if(ze.segments.length===me.length){if(!nt(ze.segments,me)||!de(ze.segments,me,qe))return!1;for(const ct in Se.children)if(!ze.children[ct]||!Re(ze.children[ct],Se.children[ct],qe))return!1;return!0}{const ct=me.slice(0,ze.segments.length),Pt=me.slice(ze.segments.length);return!!(nt(ze.segments,ct)&&de(ze.segments,ct,qe)&&ze.children[ce])&&ke(ze.children[ce],Se,Pt,qe)}}function de(ze,Se,me){return Se.every((qe,ct)=>gt[me](ze[ct].parameters,qe.parameters))}class ye{constructor(Se,me,qe){this.root=Se,this.queryParams=me,this.fragment=qe}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=xe(this.queryParams)),this._queryParamMap}toString(){return Ae.serialize(this)}}class ht{constructor(Se,me){this.segments=Se,this.children=me,this.parent=null,Zt(me,(qe,ct)=>qe.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ge(this)}}class mt{constructor(Se,me){this.path=Se,this.parameters=me}get parameterMap(){return this._parameterMap||(this._parameterMap=xe(this.parameters)),this._parameterMap}toString(){return hi(this)}}function nt(ze,Se){return ze.length===Se.length&&ze.every((me,qe)=>me.path===Se[qe].path)}class rt{}class et{parse(Se){const me=new Qe(Se);return new ye(me.parseRootSegment(),me.parseQueryParams(),me.parseFragment())}serialize(Se){const me=`/${ot(Se.root,!0)}`,qe=function Ji(ze){const Se=Object.keys(ze).map(me=>{const qe=ze[me];return Array.isArray(qe)?qe.map(ct=>`${Ct(me)}=${Ct(ct)}`).join("&"):`${Ct(me)}=${Ct(qe)}`}).filter(me=>!!me);return Se.length?`?${Se.join("&")}`:""}(Se.queryParams);return`${me}${qe}${"string"==typeof Se.fragment?`#${function mi(ze){return encodeURI(ze)}(Se.fragment)}`:""}`}}const Ae=new et;function Ge(ze){return ze.segments.map(Se=>hi(Se)).join("/")}function ot(ze,Se){if(!ze.hasChildren())return Ge(ze);if(Se){const me=ze.children[ce]?ot(ze.children[ce],!1):"",qe=[];return Zt(ze.children,(ct,Pt)=>{Pt!==ce&&qe.push(`${Pt}:${ot(ct,!1)}`)}),qe.length>0?`${me}(${qe.join("//")})`:me}{const me=function He(ze,Se){let me=[];return Zt(ze.children,(qe,ct)=>{ct===ce&&(me=me.concat(Se(qe,ct)))}),Zt(ze.children,(qe,ct)=>{ct!==ce&&(me=me.concat(Se(qe,ct)))}),me}(ze,(qe,ct)=>ct===ce?[ot(ze.children[ce],!1)]:[`${ct}:${ot(qe,!1)}`]);return 1===Object.keys(ze.children).length&&null!=ze.children[ce]?`${Ge(ze)}/${me[0]}`:`${Ge(ze)}/(${me.join("//")})`}}function lt(ze){return encodeURIComponent(ze).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function Ct(ze){return lt(ze).replace(/%3B/gi,";")}function Jt(ze){return lt(ze).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function $t(ze){return decodeURIComponent(ze)}function Qi(ze){return $t(ze.replace(/\+/g,"%20"))}function hi(ze){return`${Jt(ze.path)}${function si(ze){return Object.keys(ze).map(Se=>`;${Jt(Se)}=${Jt(ze[Se])}`).join("")}(ze.parameters)}`}const Zi=/^[^\/()?;=#]+/;function Vi(ze){const Se=ze.match(Zi);return Se?Se[0]:""}const Ui=/^[^=?&#]+/,Tt=/^[^&#]+/;class Qe{constructor(Se){this.url=Se,this.remaining=Se}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new ht([],{}):new ht([],this.parseChildren())}parseQueryParams(){const Se={};if(this.consumeOptional("?"))do{this.parseQueryParam(Se)}while(this.consumeOptional("&"));return Se}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const Se=[];for(this.peekStartsWith("(")||Se.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),Se.push(this.parseSegment());let me={};this.peekStartsWith("/(")&&(this.capture("/"),me=this.parseParens(!0));let qe={};return this.peekStartsWith("(")&&(qe=this.parseParens(!1)),(Se.length>0||Object.keys(me).length>0)&&(qe[ce]=new ht(Se,me)),qe}parseSegment(){const Se=Vi(this.remaining);if(""===Se&&this.peekStartsWith(";"))throw new Error(`Empty path url segment cannot have parameters: '${this.remaining}'.`);return this.capture(Se),new mt($t(Se),this.parseMatrixParams())}parseMatrixParams(){const Se={};for(;this.consumeOptional(";");)this.parseParam(Se);return Se}parseParam(Se){const me=Vi(this.remaining);if(!me)return;this.capture(me);let qe="";if(this.consumeOptional("=")){const ct=Vi(this.remaining);ct&&(qe=ct,this.capture(qe))}Se[$t(me)]=$t(qe)}parseQueryParam(Se){const me=function Ue(ze){const Se=ze.match(Ui);return Se?Se[0]:""}(this.remaining);if(!me)return;this.capture(me);let qe="";if(this.consumeOptional("=")){const qt=function ve(ze){const Se=ze.match(Tt);return Se?Se[0]:""}(this.remaining);qt&&(qe=qt,this.capture(qe))}const ct=Qi(me),Pt=Qi(qe);if(Se.hasOwnProperty(ct)){let qt=Se[ct];Array.isArray(qt)||(qt=[qt],Se[ct]=qt),qt.push(Pt)}else Se[ct]=Pt}parseParens(Se){const me={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const qe=Vi(this.remaining),ct=this.remaining[qe.length];if("/"!==ct&&")"!==ct&&";"!==ct)throw new Error(`Cannot parse url '${this.url}'`);let Pt;qe.indexOf(":")>-1?(Pt=qe.substr(0,qe.indexOf(":")),this.capture(Pt),this.capture(":")):Se&&(Pt=ce);const qt=this.parseChildren();me[Pt]=1===Object.keys(qt).length?qt[ce]:new ht([],qt),this.consumeOptional("//")}return me}peekStartsWith(Se){return this.remaining.startsWith(Se)}consumeOptional(Se){return!!this.peekStartsWith(Se)&&(this.remaining=this.remaining.substring(Se.length),!0)}capture(Se){if(!this.consumeOptional(Se))throw new Error(`Expected "${Se}".`)}}class _t{constructor(Se){this._root=Se}get root(){return this._root.value}parent(Se){const me=this.pathFromRoot(Se);return me.length>1?me[me.length-2]:null}children(Se){const me=se(Se,this._root);return me?me.children.map(qe=>qe.value):[]}firstChild(Se){const me=se(Se,this._root);return me&&me.children.length>0?me.children[0].value:null}siblings(Se){const me=Je(Se,this._root);return me.length<2?[]:me[me.length-2].children.map(ct=>ct.value).filter(ct=>ct!==Se)}pathFromRoot(Se){return Je(Se,this._root).map(me=>me.value)}}function se(ze,Se){if(ze===Se.value)return Se;for(const me of Se.children){const qe=se(ze,me);if(qe)return qe}return null}function Je(ze,Se){if(ze===Se.value)return[Se];for(const me of Se.children){const qe=Je(ze,me);if(qe.length)return qe.unshift(Se),qe}return[]}class xt{constructor(Se,me){this.value=Se,this.children=me}toString(){return`TreeNode(${this.value})`}}function Bt(ze){const Se={};return ze&&ze.children.forEach(me=>Se[me.value.outlet]=me),Se}class xi extends _t{constructor(Se,me){super(Se),this.snapshot=me,st(this,Se)}toString(){return this.snapshot.toString()}}function Ti(ze,Se){const me=function $i(ze,Se){const qt=new ti([],{},{},"",{},ce,Se,null,ze.root,-1,{});return new Ri("",new xt(qt,[]))}(ze,Se),qe=new L.X([new mt("",{})]),ct=new L.X({}),Pt=new L.X({}),qt=new L.X({}),ai=new L.X(""),Oi=new Wi(qe,ct,qt,ai,Pt,ce,Se,me.root);return Oi.snapshot=me.root,new xi(new xt(Oi,[]),me)}class Wi{constructor(Se,me,qe,ct,Pt,qt,ai,Oi){this.url=Se,this.params=me,this.queryParams=qe,this.fragment=ct,this.data=Pt,this.outlet=qt,this.component=ai,this._futureSnapshot=Oi}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe((0,ge.U)(Se=>xe(Se)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe((0,ge.U)(Se=>xe(Se)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function on(ze,Se="emptyOnly"){const me=ze.pathFromRoot;let qe=0;if("always"!==Se)for(qe=me.length-1;qe>=1;){const ct=me[qe],Pt=me[qe-1];if(ct.routeConfig&&""===ct.routeConfig.path)qe--;else{if(Pt.component)break;qe--}}return function fn(ze){return ze.reduce((Se,me)=>({params:Object.assign(Object.assign({},Se.params),me.params),data:Object.assign(Object.assign({},Se.data),me.data),resolve:Object.assign(Object.assign({},Se.resolve),me._resolvedData)}),{params:{},data:{},resolve:{}})}(me.slice(qe))}class ti{constructor(Se,me,qe,ct,Pt,qt,ai,Oi,an,On,Cn){this.url=Se,this.params=me,this.queryParams=qe,this.fragment=ct,this.data=Pt,this.outlet=qt,this.component=ai,this.routeConfig=Oi,this._urlSegment=an,this._lastPathIndex=On,this._resolve=Cn}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=xe(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=xe(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(qe=>qe.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class Ri extends _t{constructor(Se,me){super(me),this.url=Se,st(this,me)}toString(){return Rt(this._root)}}function st(ze,Se){Se.value._routerState=ze,Se.children.forEach(me=>st(ze,me))}function Rt(ze){const Se=ze.children.length>0?` { ${ze.children.map(Rt).join(", ")} } `:"";return`${ze.value}${Se}`}function Wt(ze){if(ze.snapshot){const Se=ze.snapshot,me=ze._futureSnapshot;ze.snapshot=me,ft(Se.queryParams,me.queryParams)||ze.queryParams.next(me.queryParams),Se.fragment!==me.fragment&&ze.fragment.next(me.fragment),ft(Se.params,me.params)||ze.params.next(me.params),function Q(ze,Se){if(ze.length!==Se.length)return!1;for(let me=0;meft(me.parameters,Se[qe].parameters))}(ze.url,Se.url);return me&&!(!ze.parent!=!Se.parent)&&(!ze.parent||fi(ze.parent,Se.parent))}function Ni(ze,Se,me){if(me&&ze.shouldReuseRoute(Se.value,me.value.snapshot)){const qe=me.value;qe._futureSnapshot=Se.value;const ct=function pn(ze,Se,me){return Se.children.map(qe=>{for(const ct of me.children)if(ze.shouldReuseRoute(qe.value,ct.value.snapshot))return Ni(ze,qe,ct);return Ni(ze,qe)})}(ze,Se,me);return new xt(qe,ct)}{if(ze.shouldAttach(Se.value)){const Pt=ze.retrieve(Se.value);if(null!==Pt){const qt=Pt.route;return qt.value._futureSnapshot=Se.value,qt.children=Se.children.map(ai=>Ni(ze,ai)),qt}}const qe=function Dn(ze){return new Wi(new L.X(ze.url),new L.X(ze.params),new L.X(ze.queryParams),new L.X(ze.fragment),new L.X(ze.data),ze.outlet,ze.component,ze)}(Se.value),ct=Se.children.map(Pt=>Ni(ze,Pt));return new xt(qe,ct)}}function tr(ze){return"object"==typeof ze&&null!=ze&&!ze.outlets&&!ze.segmentPath}function gn(ze){return"object"==typeof ze&&null!=ze&&ze.outlets}function Ei(ze,Se,me,qe,ct){let Pt={};if(qe&&Zt(qe,(ai,Oi)=>{Pt[Oi]=Array.isArray(ai)?ai.map(an=>`${an}`):`${ai}`}),ze===Se)return new ye(me,Pt,ct);const qt=ji(ze,Se,me);return new ye(qt,Pt,ct)}function ji(ze,Se,me){const qe={};return Zt(ze.children,(ct,Pt)=>{qe[Pt]=ct===Se?me:ji(ct,Se,me)}),new ht(ze.segments,qe)}class Sn{constructor(Se,me,qe){if(this.isAbsolute=Se,this.numberOfDoubleDots=me,this.commands=qe,Se&&qe.length>0&&tr(qe[0]))throw new Error("Root segment cannot have matrix parameters");const ct=qe.find(gn);if(ct&&ct!==di(qe))throw new Error("{outlets:{}} has to be the last command")}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class sr{constructor(Se,me,qe){this.segmentGroup=Se,this.processChildren=me,this.index=qe}}function ha(ze,Se,me){if(ze||(ze=new ht([],{})),0===ze.segments.length&&ze.hasChildren())return Br(ze,Se,me);const qe=function ia(ze,Se,me){let qe=0,ct=Se;const Pt={match:!1,pathIndex:0,commandIndex:0};for(;ct=me.length)return Pt;const qt=ze.segments[ct],ai=me[qe];if(gn(ai))break;const Oi=`${ai}`,an=qe0&&void 0===Oi)break;if(Oi&&an&&"object"==typeof an&&void 0===an.outlets){if(!Xr(Oi,an,qt))return Pt;qe+=2}else{if(!Xr(Oi,{},qt))return Pt;qe++}ct++}return{match:!0,pathIndex:ct,commandIndex:qe}}(ze,Se,me),ct=me.slice(qe.commandIndex);if(qe.match&&qe.pathIndex{"string"==typeof Pt&&(Pt=[Pt]),null!==Pt&&(ct[qt]=ha(ze.children[qt],Se,Pt))}),Zt(ze.children,(Pt,qt)=>{void 0===qe[qt]&&(ct[qt]=Pt)}),new ht(ze.segments,ct)}}function na(ze,Se,me){const qe=ze.segments.slice(0,Se);let ct=0;for(;ct{"string"==typeof me&&(me=[me]),null!==me&&(Se[qe]=na(new ht([],{}),0,me))}),Se}function Jr(ze){const Se={};return Zt(ze,(me,qe)=>Se[qe]=`${me}`),Se}function Xr(ze,Se,me){return ze==me.path&&ft(Se,me.parameters)}class fa{constructor(Se,me,qe,ct){this.routeReuseStrategy=Se,this.futureState=me,this.currState=qe,this.forwardEvent=ct}activate(Se){const me=this.futureState._root,qe=this.currState?this.currState._root:null;this.deactivateChildRoutes(me,qe,Se),Wt(this.futureState.root),this.activateChildRoutes(me,qe,Se)}deactivateChildRoutes(Se,me,qe){const ct=Bt(me);Se.children.forEach(Pt=>{const qt=Pt.value.outlet;this.deactivateRoutes(Pt,ct[qt],qe),delete ct[qt]}),Zt(ct,(Pt,qt)=>{this.deactivateRouteAndItsChildren(Pt,qe)})}deactivateRoutes(Se,me,qe){const ct=Se.value,Pt=me?me.value:null;if(ct===Pt)if(ct.component){const qt=qe.getContext(ct.outlet);qt&&this.deactivateChildRoutes(Se,me,qt.children)}else this.deactivateChildRoutes(Se,me,qe);else Pt&&this.deactivateRouteAndItsChildren(me,qe)}deactivateRouteAndItsChildren(Se,me){Se.value.component&&this.routeReuseStrategy.shouldDetach(Se.value.snapshot)?this.detachAndStoreRouteSubtree(Se,me):this.deactivateRouteAndOutlet(Se,me)}detachAndStoreRouteSubtree(Se,me){const qe=me.getContext(Se.value.outlet),ct=qe&&Se.value.component?qe.children:me,Pt=Bt(Se);for(const qt of Object.keys(Pt))this.deactivateRouteAndItsChildren(Pt[qt],ct);if(qe&&qe.outlet){const qt=qe.outlet.detach(),ai=qe.children.onOutletDeactivated();this.routeReuseStrategy.store(Se.value.snapshot,{componentRef:qt,route:Se,contexts:ai})}}deactivateRouteAndOutlet(Se,me){const qe=me.getContext(Se.value.outlet),ct=qe&&Se.value.component?qe.children:me,Pt=Bt(Se);for(const qt of Object.keys(Pt))this.deactivateRouteAndItsChildren(Pt[qt],ct);qe&&qe.outlet&&(qe.outlet.deactivate(),qe.children.onOutletDeactivated(),qe.attachRef=null,qe.resolver=null,qe.route=null)}activateChildRoutes(Se,me,qe){const ct=Bt(me);Se.children.forEach(Pt=>{this.activateRoutes(Pt,ct[Pt.value.outlet],qe),this.forwardEvent(new Oe(Pt.value.snapshot))}),Se.children.length&&this.forwardEvent(new Ie(Se.value.snapshot))}activateRoutes(Se,me,qe){const ct=Se.value,Pt=me?me.value:null;if(Wt(ct),ct===Pt)if(ct.component){const qt=qe.getOrCreateContext(ct.outlet);this.activateChildRoutes(Se,me,qt.children)}else this.activateChildRoutes(Se,me,qe);else if(ct.component){const qt=qe.getOrCreateContext(ct.outlet);if(this.routeReuseStrategy.shouldAttach(ct.snapshot)){const ai=this.routeReuseStrategy.retrieve(ct.snapshot);this.routeReuseStrategy.store(ct.snapshot,null),qt.children.onOutletReAttached(ai.contexts),qt.attachRef=ai.componentRef,qt.route=ai.route.value,qt.outlet&&qt.outlet.attach(ai.componentRef,ai.route.value),Wt(ai.route.value),this.activateChildRoutes(Se,null,qt.children)}else{const ai=function Wa(ze){for(let Se=ze.parent;Se;Se=Se.parent){const me=Se.routeConfig;if(me&&me._loadedConfig)return me._loadedConfig;if(me&&me.component)return null}return null}(ct.snapshot),Oi=ai?ai.module.componentFactoryResolver:null;qt.attachRef=null,qt.route=ct,qt.resolver=Oi,qt.outlet&&qt.outlet.activateWith(ct,Oi),this.activateChildRoutes(Se,null,qt.children)}}else this.activateChildRoutes(Se,null,qe)}}class kr{constructor(Se,me){this.routes=Se,this.module=me}}function Wn(ze){return"function"==typeof ze}function lr(ze){return ze instanceof ye}const cr=Symbol("INITIAL_VALUE");function ba(){return(0,q.w)(ze=>(0,w.a)(ze.map(Se=>Se.pipe((0,_e.q)(1),(0,x.O)(cr)))).pipe((0,i.R)((Se,me)=>{let qe=!1;return me.reduce((ct,Pt,qt)=>ct!==cr?ct:(Pt===cr&&(qe=!0),qe||!1!==Pt&&qt!==me.length-1&&!lr(Pt)?ct:Pt),Se)},cr),(0,Y.h)(Se=>Se!==cr),(0,ge.U)(Se=>lr(Se)?Se:!0===Se),(0,_e.q)(1)))}class Nr{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.children=new Dr,this.attachRef=null}}class Dr{constructor(){this.contexts=new Map}onChildOutletCreated(Se,me){const qe=this.getOrCreateContext(Se);qe.outlet=me,this.contexts.set(Se,qe)}onChildOutletDestroyed(Se){const me=this.getContext(Se);me&&(me.outlet=null,me.attachRef=null)}onOutletDeactivated(){const Se=this.contexts;return this.contexts=new Map,Se}onOutletReAttached(Se){this.contexts=Se}getOrCreateContext(Se){let me=this.getContext(Se);return me||(me=new Nr,this.contexts.set(Se,me)),me}getContext(Se){return this.contexts.get(Se)||null}}let aa=(()=>{class ze{constructor(me,qe,ct,Pt,qt){this.parentContexts=me,this.location=qe,this.resolver=ct,this.changeDetector=qt,this.activated=null,this._activatedRoute=null,this.activateEvents=new t.vpe,this.deactivateEvents=new t.vpe,this.attachEvents=new t.vpe,this.detachEvents=new t.vpe,this.name=Pt||ce,me.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const me=this.parentContexts.getContext(this.name);me&&me.route&&(me.attachRef?this.attach(me.attachRef,me.route):this.activateWith(me.route,me.resolver||null))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new Error("Outlet is not activated");return this.activated.instance}get activatedRoute(){if(!this.activated)throw new Error("Outlet is not activated");return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new Error("Outlet is not activated");this.location.detach();const me=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(me.instance),me}attach(me,qe){this.activated=me,this._activatedRoute=qe,this.location.insert(me.hostView),this.attachEvents.emit(me.instance)}deactivate(){if(this.activated){const me=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(me)}}activateWith(me,qe){if(this.isActivated)throw new Error("Cannot activate an already activated outlet");this._activatedRoute=me;const qt=(qe=qe||this.resolver).resolveComponentFactory(me._futureSnapshot.routeConfig.component),ai=this.parentContexts.getOrCreateContext(this.name).children,Oi=new Ea(me,ai,this.location.injector);this.activated=this.location.createComponent(qt,this.location.length,Oi),this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return ze.\u0275fac=function(me){return new(me||ze)(t.Y36(Dr),t.Y36(t.s_b),t.Y36(t._Vd),t.$8M("name"),t.Y36(t.sBO))},ze.\u0275dir=t.lG2({type:ze,selectors:[["router-outlet"]],outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"]}),ze})();class Ea{constructor(Se,me,qe){this.route=Se,this.childContexts=me,this.parent=qe}get(Se,me){return Se===Wi?this.route:Se===Dr?this.childContexts:this.parent.get(Se,me)}}let ka=(()=>{class ze{}return ze.\u0275fac=function(me){return new(me||ze)},ze.\u0275cmp=t.Xpm({type:ze,selectors:[["ng-component"]],decls:1,vars:0,template:function(me,qe){1&me&&t._UZ(0,"router-outlet")},directives:[aa],encapsulation:2}),ze})();function xa(ze,Se=""){for(let me=0;meir(qe)===Se);return me.push(...ze.filter(qe=>ir(qe)!==Se)),me}const Kr={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Rr(ze,Se,me){var qe;if(""===Se.path)return"full"===Se.pathMatch&&(ze.hasChildren()||me.length>0)?Object.assign({},Kr):{matched:!0,consumedSegments:[],remainingSegments:me,parameters:{},positionalParamSegments:{}};const Pt=(Se.matcher||fe)(me,ze,Se);if(!Pt)return Object.assign({},Kr);const qt={};Zt(Pt.posParams,(Oi,an)=>{qt[an]=Oi.path});const ai=Pt.consumed.length>0?Object.assign(Object.assign({},qt),Pt.consumed[Pt.consumed.length-1].parameters):qt;return{matched:!0,consumedSegments:Pt.consumed,remainingSegments:me.slice(Pt.consumed.length),parameters:ai,positionalParamSegments:null!==(qe=Pt.posParams)&&void 0!==qe?qe:{}}}function Gr(ze,Se,me,qe,ct="corrected"){if(me.length>0&&function Xn(ze,Se,me){return me.some(qe=>Et(ze,Se,qe)&&ir(qe)!==ce)}(ze,me,qe)){const qt=new ht(Se,function Ja(ze,Se,me,qe){const ct={};ct[ce]=qe,qe._sourceSegment=ze,qe._segmentIndexShift=Se.length;for(const Pt of me)if(""===Pt.path&&ir(Pt)!==ce){const qt=new ht([],{});qt._sourceSegment=ze,qt._segmentIndexShift=Se.length,ct[ir(Pt)]=qt}return ct}(ze,Se,qe,new ht(me,ze.children)));return qt._sourceSegment=ze,qt._segmentIndexShift=Se.length,{segmentGroup:qt,slicedSegments:[]}}if(0===me.length&&function $e(ze,Se,me){return me.some(qe=>Et(ze,Se,qe))}(ze,me,qe)){const qt=new ht(ze.segments,function Ta(ze,Se,me,qe,ct,Pt){const qt={};for(const ai of qe)if(Et(ze,me,ai)&&!ct[ir(ai)]){const Oi=new ht([],{});Oi._sourceSegment=ze,Oi._segmentIndexShift="legacy"===Pt?ze.segments.length:Se.length,qt[ir(ai)]=Oi}return Object.assign(Object.assign({},ct),qt)}(ze,Se,me,qe,ze.children,ct));return qt._sourceSegment=ze,qt._segmentIndexShift=Se.length,{segmentGroup:qt,slicedSegments:me}}const Pt=new ht(ze.segments,ze.children);return Pt._sourceSegment=ze,Pt._segmentIndexShift=Se.length,{segmentGroup:Pt,slicedSegments:me}}function Et(ze,Se,me){return(!(ze.hasChildren()||Se.length>0)||"full"!==me.pathMatch)&&""===me.path}function Xe(ze,Se,me,qe){return!!(ir(ze)===qe||qe!==ce&&Et(Se,me,ze))&&("**"===ze.path||Rr(Se,ze,me).matched)}function kt(ze,Se,me){return 0===Se.length&&!ze.children[me]}class ii{constructor(Se){this.segmentGroup=Se||null}}class wi{constructor(Se){this.urlTree=Se}}function yi(ze){return(0,D._)(new ii(ze))}function en(ze){return(0,D._)(new wi(ze))}class ci{constructor(Se,me,qe,ct,Pt){this.configLoader=me,this.urlSerializer=qe,this.urlTree=ct,this.config=Pt,this.allowRedirects=!0,this.ngModule=Se.get(t.h0i)}apply(){const Se=Gr(this.urlTree.root,[],[],this.config).segmentGroup,me=new ht(Se.segments,Se.children);return this.expandSegmentGroup(this.ngModule,this.config,me,ce).pipe((0,ge.U)(Pt=>this.createUrlTree(jt(Pt),this.urlTree.queryParams,this.urlTree.fragment))).pipe((0,r.K)(Pt=>{if(Pt instanceof wi)return this.allowRedirects=!1,this.match(Pt.urlTree);throw Pt instanceof ii?this.noMatchError(Pt):Pt}))}match(Se){return this.expandSegmentGroup(this.ngModule,this.config,Se.root,ce).pipe((0,ge.U)(ct=>this.createUrlTree(jt(ct),Se.queryParams,Se.fragment))).pipe((0,r.K)(ct=>{throw ct instanceof ii?this.noMatchError(ct):ct}))}noMatchError(Se){return new Error(`Cannot match any routes. URL Segment: '${Se.segmentGroup}'`)}createUrlTree(Se,me,qe){const ct=Se.segments.length>0?new ht([],{[ce]:Se}):Se;return new ye(ct,me,qe)}expandSegmentGroup(Se,me,qe,ct){return 0===qe.segments.length&&qe.hasChildren()?this.expandChildren(Se,me,qe).pipe((0,ge.U)(Pt=>new ht([],Pt))):this.expandSegment(Se,qe,me,qe.segments,ct,!0)}expandChildren(Se,me,qe){const ct=[];for(const Pt of Object.keys(qe.children))"primary"===Pt?ct.unshift(Pt):ct.push(Pt);return(0,R.D)(ct).pipe((0,u.b)(Pt=>{const qt=qe.children[Pt],ai=oa(me,Pt);return this.expandSegmentGroup(Se,ai,qt,Pt).pipe((0,ge.U)(Oi=>({segment:Oi,outlet:Pt})))}),(0,i.R)((Pt,qt)=>(Pt[qt.outlet]=qt.segment,Pt),{}),function re(ze,Se){const me=arguments.length>=2;return qe=>qe.pipe(ze?(0,Y.h)((ct,Pt)=>ze(ct,Pt,qe)):ie.y,ae(1),me?(0,ue.d)(Se):(0,ee.T)(()=>new S.K))}())}expandSegment(Se,me,qe,ct,Pt,qt){return(0,R.D)(qe).pipe((0,u.b)(ai=>this.expandSegmentAgainstRoute(Se,me,qe,ai,ct,Pt,qt).pipe((0,r.K)(an=>{if(an instanceof ii)return(0,h.of)(null);throw an}))),(0,c.P)(ai=>!!ai),(0,r.K)((ai,Oi)=>{if(ai instanceof S.K||"EmptyError"===ai.name)return kt(me,ct,Pt)?(0,h.of)(new ht([],{})):yi(me);throw ai}))}expandSegmentAgainstRoute(Se,me,qe,ct,Pt,qt,ai){return Xe(ct,me,Pt,qt)?void 0===ct.redirectTo?this.matchSegmentAgainstRoute(Se,me,ct,Pt,qt):ai&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(Se,me,qe,ct,Pt,qt):yi(me):yi(me)}expandSegmentAgainstRouteUsingRedirect(Se,me,qe,ct,Pt,qt){return"**"===ct.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(Se,qe,ct,qt):this.expandRegularSegmentAgainstRouteUsingRedirect(Se,me,qe,ct,Pt,qt)}expandWildCardWithParamsAgainstRouteUsingRedirect(Se,me,qe,ct){const Pt=this.applyRedirectCommands([],qe.redirectTo,{});return qe.redirectTo.startsWith("/")?en(Pt):this.lineralizeSegments(qe,Pt).pipe((0,v.z)(qt=>{const ai=new ht(qt,{});return this.expandSegment(Se,ai,me,qt,ct,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(Se,me,qe,ct,Pt,qt){const{matched:ai,consumedSegments:Oi,remainingSegments:an,positionalParamSegments:On}=Rr(me,ct,Pt);if(!ai)return yi(me);const Cn=this.applyRedirectCommands(Oi,ct.redirectTo,On);return ct.redirectTo.startsWith("/")?en(Cn):this.lineralizeSegments(ct,Cn).pipe((0,v.z)(_r=>this.expandSegment(Se,me,qe,_r.concat(an),qt,!1)))}matchSegmentAgainstRoute(Se,me,qe,ct,Pt){if("**"===qe.path)return qe.loadChildren?(qe._loadedConfig?(0,h.of)(qe._loadedConfig):this.configLoader.load(Se.injector,qe)).pipe((0,ge.U)(Cn=>(qe._loadedConfig=Cn,new ht(ct,{})))):(0,h.of)(new ht(ct,{}));const{matched:qt,consumedSegments:ai,remainingSegments:Oi}=Rr(me,qe,ct);return qt?this.getChildConfig(Se,qe,ct).pipe((0,v.z)(On=>{const Cn=On.module,_r=On.routes,{segmentGroup:ur,slicedSegments:os}=Gr(me,ai,Oi,_r),ks=new ht(ur.segments,ur.children);if(0===os.length&&ks.hasChildren())return this.expandChildren(Cn,_r,ks).pipe((0,ge.U)(Gs=>new ht(ai,Gs)));if(0===_r.length&&0===os.length)return(0,h.of)(new ht(ai,{}));const Qo=ir(qe)===Pt;return this.expandSegment(Cn,ks,_r,os,Qo?ce:Pt,!0).pipe((0,ge.U)(Ia=>new ht(ai.concat(Ia.segments),Ia.children)))})):yi(me)}getChildConfig(Se,me,qe){return me.children?(0,h.of)(new kr(me.children,Se)):me.loadChildren?void 0!==me._loadedConfig?(0,h.of)(me._loadedConfig):this.runCanLoadGuards(Se.injector,me,qe).pipe((0,v.z)(ct=>ct?this.configLoader.load(Se.injector,me).pipe((0,ge.U)(Pt=>(me._loadedConfig=Pt,Pt))):function Vn(ze){return(0,D._)(te(`Cannot load children because the guard of the route "path: '${ze.path}'" returned false`))}(me))):(0,h.of)(new kr([],Se))}runCanLoadGuards(Se,me,qe){const ct=me.canLoad;if(!ct||0===ct.length)return(0,h.of)(!0);const Pt=ct.map(qt=>{const ai=Se.get(qt);let Oi;if(function Ya(ze){return ze&&Wn(ze.canLoad)}(ai))Oi=ai.canLoad(me,qe);else{if(!Wn(ai))throw new Error("Invalid CanLoad guard");Oi=ai(me,qe)}return ui(Oi)});return(0,h.of)(Pt).pipe(ba(),(0,T.b)(qt=>{if(!lr(qt))return;const ai=te(`Redirecting to "${this.urlSerializer.serialize(qt)}"`);throw ai.url=qt,ai}),(0,ge.U)(qt=>!0===qt))}lineralizeSegments(Se,me){let qe=[],ct=me.root;for(;;){if(qe=qe.concat(ct.segments),0===ct.numberOfChildren)return(0,h.of)(qe);if(ct.numberOfChildren>1||!ct.children[ce])return(0,D._)(new Error(`Only absolute redirects can have named outlets. redirectTo: '${Se.redirectTo}'`));ct=ct.children[ce]}}applyRedirectCommands(Se,me,qe){return this.applyRedirectCreatreUrlTree(me,this.urlSerializer.parse(me),Se,qe)}applyRedirectCreatreUrlTree(Se,me,qe,ct){const Pt=this.createSegmentGroup(Se,me.root,qe,ct);return new ye(Pt,this.createQueryParams(me.queryParams,this.urlTree.queryParams),me.fragment)}createQueryParams(Se,me){const qe={};return Zt(Se,(ct,Pt)=>{if("string"==typeof ct&&ct.startsWith(":")){const ai=ct.substring(1);qe[Pt]=me[ai]}else qe[Pt]=ct}),qe}createSegmentGroup(Se,me,qe,ct){const Pt=this.createSegments(Se,me.segments,qe,ct);let qt={};return Zt(me.children,(ai,Oi)=>{qt[Oi]=this.createSegmentGroup(Se,ai,qe,ct)}),new ht(Pt,qt)}createSegments(Se,me,qe,ct){return me.map(Pt=>Pt.path.startsWith(":")?this.findPosParam(Se,Pt,ct):this.findOrReturn(Pt,qe))}findPosParam(Se,me,qe){const ct=qe[me.path.substring(1)];if(!ct)throw new Error(`Cannot redirect to '${Se}'. Cannot find '${me.path}'.`);return ct}findOrReturn(Se,me){let qe=0;for(const ct of me){if(ct.path===Se.path)return me.splice(qe),ct;qe++}return Se}}function jt(ze){const Se={};for(const qe of Object.keys(ze.children)){const Pt=jt(ze.children[qe]);(Pt.segments.length>0||Pt.hasChildren())&&(Se[qe]=Pt)}return function vt(ze){if(1===ze.numberOfChildren&&ze.children[ce]){const Se=ze.children[ce];return new ht(ze.segments.concat(Se.segments),Se.children)}return ze}(new ht(ze.segments,Se))}class je{constructor(Se){this.path=Se,this.route=this.path[this.path.length-1]}}class We{constructor(Se,me){this.component=Se,this.route=me}}function Fe(ze,Se,me){const qe=ze._root;return Bn(qe,Se?Se._root:null,me,[qe.value])}function Si(ze,Se,me){const qe=function Gi(ze){if(!ze)return null;for(let Se=ze.parent;Se;Se=Se.parent){const me=Se.routeConfig;if(me&&me._loadedConfig)return me._loadedConfig}return null}(Se);return(qe?qe.module.injector:me).get(ze)}function Bn(ze,Se,me,qe,ct={canDeactivateChecks:[],canActivateChecks:[]}){const Pt=Bt(Se);return ze.children.forEach(qt=>{(function yr(ze,Se,me,qe,ct={canDeactivateChecks:[],canActivateChecks:[]}){const Pt=ze.value,qt=Se?Se.value:null,ai=me?me.getContext(ze.value.outlet):null;if(qt&&Pt.routeConfig===qt.routeConfig){const Oi=function Xa(ze,Se,me){if("function"==typeof me)return me(ze,Se);switch(me){case"pathParamsChange":return!nt(ze.url,Se.url);case"pathParamsOrQueryParamsChange":return!nt(ze.url,Se.url)||!ft(ze.queryParams,Se.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!fi(ze,Se)||!ft(ze.queryParams,Se.queryParams);default:return!fi(ze,Se)}}(qt,Pt,Pt.routeConfig.runGuardsAndResolvers);Oi?ct.canActivateChecks.push(new je(qe)):(Pt.data=qt.data,Pt._resolvedData=qt._resolvedData),Bn(ze,Se,Pt.component?ai?ai.children:null:me,qe,ct),Oi&&ai&&ai.outlet&&ai.outlet.isActivated&&ct.canDeactivateChecks.push(new We(ai.outlet.component,qt))}else qt&&Ca(Se,ai,ct),ct.canActivateChecks.push(new je(qe)),Bn(ze,null,Pt.component?ai?ai.children:null:me,qe,ct)})(qt,Pt[qt.value.outlet],me,qe.concat([qt.value]),ct),delete Pt[qt.value.outlet]}),Zt(Pt,(qt,ai)=>Ca(qt,me.getContext(ai),ct)),ct}function Ca(ze,Se,me){const qe=Bt(ze),ct=ze.value;Zt(qe,(Pt,qt)=>{Ca(Pt,ct.component?Se?Se.children.getContext(qt):null:Se,me)}),me.canDeactivateChecks.push(new We(ct.component&&Se&&Se.outlet&&Se.outlet.isActivated?Se.outlet.component:null,ct))}class Os{}function Ps(ze){return new e.y(Se=>Se.error(ze))}class Bs{constructor(Se,me,qe,ct,Pt,qt){this.rootComponentType=Se,this.config=me,this.urlTree=qe,this.url=ct,this.paramsInheritanceStrategy=Pt,this.relativeLinkResolution=qt}recognize(){const Se=Gr(this.urlTree.root,[],[],this.config.filter(qt=>void 0===qt.redirectTo),this.relativeLinkResolution).segmentGroup,me=this.processSegmentGroup(this.config,Se,ce);if(null===me)return null;const qe=new ti([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},ce,this.rootComponentType,null,this.urlTree.root,-1,{}),ct=new xt(qe,me),Pt=new Ri(this.url,ct);return this.inheritParamsAndData(Pt._root),Pt}inheritParamsAndData(Se){const me=Se.value,qe=on(me,this.paramsInheritanceStrategy);me.params=Object.freeze(qe.params),me.data=Object.freeze(qe.data),Se.children.forEach(ct=>this.inheritParamsAndData(ct))}processSegmentGroup(Se,me,qe){return 0===me.segments.length&&me.hasChildren()?this.processChildren(Se,me):this.processSegment(Se,me,me.segments,qe)}processChildren(Se,me){const qe=[];for(const Pt of Object.keys(me.children)){const qt=me.children[Pt],ai=oa(Se,Pt),Oi=this.processSegmentGroup(ai,qt,Pt);if(null===Oi)return null;qe.push(...Oi)}const ct=Na(qe);return function Us(ze){ze.sort((Se,me)=>Se.value.outlet===ce?-1:me.value.outlet===ce?1:Se.value.outlet.localeCompare(me.value.outlet))}(ct),ct}processSegment(Se,me,qe,ct){for(const Pt of Se){const qt=this.processSegmentAgainstRoute(Pt,me,qe,ct);if(null!==qt)return qt}return kt(me,qe,ct)?[]:null}processSegmentAgainstRoute(Se,me,qe,ct){if(Se.redirectTo||!Xe(Se,me,qe,ct))return null;let Pt,qt=[],ai=[];if("**"===Se.path){const ur=qe.length>0?di(qe).parameters:{};Pt=new ti(qe,ur,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,Ke(Se),ir(Se),Se.component,Se,oe(me),pe(me)+qe.length,Mt(Se))}else{const ur=Rr(me,Se,qe);if(!ur.matched)return null;qt=ur.consumedSegments,ai=ur.remainingSegments,Pt=new ti(qt,ur.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,Ke(Se),ir(Se),Se.component,Se,oe(me),pe(me)+qt.length,Mt(Se))}const Oi=function ss(ze){return ze.children?ze.children:ze.loadChildren?ze._loadedConfig.routes:[]}(Se),{segmentGroup:an,slicedSegments:On}=Gr(me,qt,ai,Oi.filter(ur=>void 0===ur.redirectTo),this.relativeLinkResolution);if(0===On.length&&an.hasChildren()){const ur=this.processChildren(Oi,an);return null===ur?null:[new xt(Pt,ur)]}if(0===Oi.length&&0===On.length)return[new xt(Pt,[])];const Cn=ir(Se)===ct,_r=this.processSegment(Oi,an,On,Cn?ce:ct);return null===_r?null:[new xt(Pt,_r)]}}function Zr(ze){const Se=ze.value.routeConfig;return Se&&""===Se.path&&void 0===Se.redirectTo}function Na(ze){const Se=[],me=new Set;for(const qe of ze){if(!Zr(qe)){Se.push(qe);continue}const ct=Se.find(Pt=>qe.value.routeConfig===Pt.value.routeConfig);void 0!==ct?(ct.children.push(...qe.children),me.add(ct)):Se.push(qe)}for(const qe of me){const ct=Na(qe.children);Se.push(new xt(qe.value,ct))}return Se.filter(qe=>!me.has(qe))}function oe(ze){let Se=ze;for(;Se._sourceSegment;)Se=Se._sourceSegment;return Se}function pe(ze){let Se=ze,me=Se._segmentIndexShift?Se._segmentIndexShift:0;for(;Se._sourceSegment;)Se=Se._sourceSegment,me+=Se._segmentIndexShift?Se._segmentIndexShift:0;return me-1}function Ke(ze){return ze.data||{}}function Mt(ze){return ze.resolve||{}}function Ai(ze){return[...Object.keys(ze),...Object.getOwnPropertySymbols(ze)]}function dn(ze){return(0,q.w)(Se=>{const me=ze(Se);return me?(0,R.D)(me).pipe((0,ge.U)(()=>Se)):(0,h.of)(Se)})}class En extends class Un{shouldDetach(Se){return!1}store(Se,me){}shouldAttach(Se){return!1}retrieve(Se){return null}shouldReuseRoute(Se,me){return Se.routeConfig===me.routeConfig}}{}const Pn=new t.OlP("ROUTES");class ar{constructor(Se,me,qe,ct){this.injector=Se,this.compiler=me,this.onLoadStartListener=qe,this.onLoadEndListener=ct}load(Se,me){if(me._loader$)return me._loader$;this.onLoadStartListener&&this.onLoadStartListener(me);const ct=this.loadModuleFactory(me.loadChildren).pipe((0,ge.U)(Pt=>{this.onLoadEndListener&&this.onLoadEndListener(me);const qt=Pt.create(Se);return new kr(Dt(qt.injector.get(Pn,void 0,t.XFs.Self|t.XFs.Optional)).map(Va),qt)}),(0,r.K)(Pt=>{throw me._loader$=void 0,Pt}));return me._loader$=new d(ct,()=>new Z.x).pipe(C()),me._loader$}loadModuleFactory(Se){return ui(Se()).pipe((0,v.z)(me=>me instanceof t.YKP?(0,h.of)(me):(0,R.D)(this.compiler.compileModuleAsync(me))))}}class Cr{shouldProcessUrl(Se){return!0}extract(Se){return Se}merge(Se,me){return Se}}function la(ze){throw ze}function Ir(ze,Se,me){return Se.parse("/")}function Mr(ze,Se){return(0,h.of)(null)}const Qr={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},Gn={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let br=(()=>{class ze{constructor(me,qe,ct,Pt,qt,ai,Oi){this.rootComponentType=me,this.urlSerializer=qe,this.rootContexts=ct,this.location=Pt,this.config=Oi,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.disposed=!1,this.navigationId=0,this.currentPageId=0,this.isNgZoneEnabled=!1,this.events=new Z.x,this.errorHandler=la,this.malformedUriErrorHandler=Ir,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:Mr,afterPreactivation:Mr},this.urlHandlingStrategy=new Cr,this.routeReuseStrategy=new En,this.onSameUrlNavigation="ignore",this.paramsInheritanceStrategy="emptyOnly",this.urlUpdateStrategy="deferred",this.relativeLinkResolution="corrected",this.canceledNavigationResolution="replace",this.ngModule=qt.get(t.h0i),this.console=qt.get(t.c2e);const Cn=qt.get(t.R0b);this.isNgZoneEnabled=Cn instanceof t.R0b&&t.R0b.isInAngularZone(),this.resetConfig(Oi),this.currentUrlTree=function Ot(){return new ye(new ht([],{}),{},null)}(),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new ar(qt,ai,_r=>this.triggerEvent(new Ve(_r)),_r=>this.triggerEvent(new Me(_r))),this.routerState=Ti(this.currentUrlTree,this.rootComponentType),this.transitions=new L.X({id:0,targetPageId:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:"imperative",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}get browserPageId(){var me;return null===(me=this.location.getState())||void 0===me?void 0:me.\u0275routerPageId}setupNavigations(me){const qe=this.events;return me.pipe((0,Y.h)(ct=>0!==ct.id),(0,ge.U)(ct=>Object.assign(Object.assign({},ct),{extractedUrl:this.urlHandlingStrategy.extract(ct.rawUrl)})),(0,q.w)(ct=>{let Pt=!1,qt=!1;return(0,h.of)(ct).pipe((0,T.b)(ai=>{this.currentNavigation={id:ai.id,initialUrl:ai.currentRawUrl,extractedUrl:ai.extractedUrl,trigger:ai.source,extras:ai.extras,previousNavigation:this.lastSuccessfulNavigation?Object.assign(Object.assign({},this.lastSuccessfulNavigation),{previousNavigation:null}):null}}),(0,q.w)(ai=>{const Oi=this.browserUrlTree.toString(),an=!this.navigated||ai.extractedUrl.toString()!==Oi||Oi!==this.currentUrlTree.toString();if(("reload"===this.onSameUrlNavigation||an)&&this.urlHandlingStrategy.shouldProcessUrl(ai.rawUrl))return Ra(ai.source)&&(this.browserUrlTree=ai.extractedUrl),(0,h.of)(ai).pipe((0,q.w)(Cn=>{const _r=this.transitions.getValue();return qe.next(new V(Cn.id,this.serializeUrl(Cn.extractedUrl),Cn.source,Cn.restoredState)),_r!==this.transitions.getValue()?B.E:Promise.resolve(Cn)}),function ki(ze,Se,me,qe){return(0,q.w)(ct=>function It(ze,Se,me,qe,ct){return new ci(ze,Se,me,qe,ct).apply()}(ze,Se,me,ct.extractedUrl,qe).pipe((0,ge.U)(Pt=>Object.assign(Object.assign({},ct),{urlAfterRedirects:Pt}))))}(this.ngModule.injector,this.configLoader,this.urlSerializer,this.config),(0,T.b)(Cn=>{this.currentNavigation=Object.assign(Object.assign({},this.currentNavigation),{finalUrl:Cn.urlAfterRedirects})}),function Vt(ze,Se,me,qe,ct){return(0,v.z)(Pt=>function Vs(ze,Se,me,qe,ct="emptyOnly",Pt="legacy"){try{const qt=new Bs(ze,Se,me,qe,ct,Pt).recognize();return null===qt?Ps(new Os):(0,h.of)(qt)}catch(qt){return Ps(qt)}}(ze,Se,Pt.urlAfterRedirects,me(Pt.urlAfterRedirects),qe,ct).pipe((0,ge.U)(qt=>Object.assign(Object.assign({},Pt),{targetSnapshot:qt}))))}(this.rootComponentType,this.config,Cn=>this.serializeUrl(Cn),this.paramsInheritanceStrategy,this.relativeLinkResolution),(0,T.b)(Cn=>{if("eager"===this.urlUpdateStrategy){if(!Cn.extras.skipLocationChange){const ur=this.urlHandlingStrategy.merge(Cn.urlAfterRedirects,Cn.rawUrl);this.setBrowserUrl(ur,Cn)}this.browserUrlTree=Cn.urlAfterRedirects}const _r=new he(Cn.id,this.serializeUrl(Cn.extractedUrl),this.serializeUrl(Cn.urlAfterRedirects),Cn.targetSnapshot);qe.next(_r)}));if(an&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:_r,extractedUrl:ur,source:os,restoredState:ks,extras:Qo}=ai,Es=new V(_r,this.serializeUrl(ur),os,ks);qe.next(Es);const Ia=Ti(ur,this.rootComponentType).snapshot;return(0,h.of)(Object.assign(Object.assign({},ai),{targetSnapshot:Ia,urlAfterRedirects:ur,extras:Object.assign(Object.assign({},Qo),{skipLocationChange:!1,replaceUrl:!1})}))}return this.rawUrlTree=ai.rawUrl,ai.resolve(null),B.E}),dn(ai=>{const{targetSnapshot:Oi,id:an,extractedUrl:On,rawUrl:Cn,extras:{skipLocationChange:_r,replaceUrl:ur}}=ai;return this.hooks.beforePreactivation(Oi,{navigationId:an,appliedUrlTree:On,rawUrlTree:Cn,skipLocationChange:!!_r,replaceUrl:!!ur})}),(0,T.b)(ai=>{const Oi=new be(ai.id,this.serializeUrl(ai.extractedUrl),this.serializeUrl(ai.urlAfterRedirects),ai.targetSnapshot);this.triggerEvent(Oi)}),(0,ge.U)(ai=>Object.assign(Object.assign({},ai),{guards:Fe(ai.targetSnapshot,ai.currentSnapshot,this.rootContexts)})),function pa(ze,Se){return(0,v.z)(me=>{const{targetSnapshot:qe,currentSnapshot:ct,guards:{canActivateChecks:Pt,canDeactivateChecks:qt}}=me;return 0===qt.length&&0===Pt.length?(0,h.of)(Object.assign(Object.assign({},me),{guardsResult:!0})):function Fi(ze,Se,me,qe){return(0,R.D)(ze).pipe((0,v.z)(ct=>function Aa(ze,Se,me,qe,ct){const Pt=Se&&Se.routeConfig?Se.routeConfig.canDeactivate:null;if(!Pt||0===Pt.length)return(0,h.of)(!0);const qt=Pt.map(ai=>{const Oi=Si(ai,Se,ct);let an;if(function ya(ze){return ze&&Wn(ze.canDeactivate)}(Oi))an=ui(Oi.canDeactivate(ze,Se,me,qe));else{if(!Wn(Oi))throw new Error("Invalid CanDeactivate guard");an=ui(Oi(ze,Se,me,qe))}return an.pipe((0,c.P)())});return(0,h.of)(qt).pipe(ba())}(ct.component,ct.route,me,Se,qe)),(0,c.P)(ct=>!0!==ct,!0))}(qt,qe,ct,ze).pipe((0,v.z)(ai=>ai&&function Ur(ze){return"boolean"==typeof ze}(ai)?function Yn(ze,Se,me,qe){return(0,R.D)(Se).pipe((0,u.b)(ct=>(0,k.z)(function Er(ze,Se){return null!==ze&&Se&&Se(new J(ze)),(0,h.of)(!0)}(ct.route.parent,qe),function zs(ze,Se){return null!==ze&&Se&&Se(new ut(ze)),(0,h.of)(!0)}(ct.route,qe),function ms(ze,Se,me){const qe=Se[Se.length-1],Pt=Se.slice(0,Se.length-1).reverse().map(qt=>function At(ze){const Se=ze.routeConfig?ze.routeConfig.canActivateChild:null;return Se&&0!==Se.length?{node:ze,guards:Se}:null}(qt)).filter(qt=>null!==qt).map(qt=>(0,E.P)(()=>{const ai=qt.guards.map(Oi=>{const an=Si(Oi,qt.node,me);let On;if(function ja(ze){return ze&&Wn(ze.canActivateChild)}(an))On=ui(an.canActivateChild(qe,ze));else{if(!Wn(an))throw new Error("Invalid CanActivateChild guard");On=ui(an(qe,ze))}return On.pipe((0,c.P)())});return(0,h.of)(ai).pipe(ba())}));return(0,h.of)(Pt).pipe(ba())}(ze,ct.path,me),function io(ze,Se,me){const qe=Se.routeConfig?Se.routeConfig.canActivate:null;if(!qe||0===qe.length)return(0,h.of)(!0);const ct=qe.map(Pt=>(0,E.P)(()=>{const qt=Si(Pt,Se,me);let ai;if(function jr(ze){return ze&&Wn(ze.canActivate)}(qt))ai=ui(qt.canActivate(Se,ze));else{if(!Wn(qt))throw new Error("Invalid CanActivate guard");ai=ui(qt(Se,ze))}return ai.pipe((0,c.P)())}));return(0,h.of)(ct).pipe(ba())}(ze,ct.route,me))),(0,c.P)(ct=>!0!==ct,!0))}(qe,Pt,ze,Se):(0,h.of)(ai)),(0,ge.U)(ai=>Object.assign(Object.assign({},me),{guardsResult:ai})))})}(this.ngModule.injector,ai=>this.triggerEvent(ai)),(0,T.b)(ai=>{if(lr(ai.guardsResult)){const an=te(`Redirecting to "${this.serializeUrl(ai.guardsResult)}"`);throw an.url=ai.guardsResult,an}const Oi=new Pe(ai.id,this.serializeUrl(ai.extractedUrl),this.serializeUrl(ai.urlAfterRedirects),ai.targetSnapshot,!!ai.guardsResult);this.triggerEvent(Oi)}),(0,Y.h)(ai=>!!ai.guardsResult||(this.restoreHistory(ai),this.cancelNavigationTransition(ai,""),!1)),dn(ai=>{if(ai.guards.canActivateChecks.length)return(0,h.of)(ai).pipe((0,T.b)(Oi=>{const an=new Ee(Oi.id,this.serializeUrl(Oi.extractedUrl),this.serializeUrl(Oi.urlAfterRedirects),Oi.targetSnapshot);this.triggerEvent(an)}),(0,q.w)(Oi=>{let an=!1;return(0,h.of)(Oi).pipe(function ni(ze,Se){return(0,v.z)(me=>{const{targetSnapshot:qe,guards:{canActivateChecks:ct}}=me;if(!ct.length)return(0,h.of)(me);let Pt=0;return(0,R.D)(ct).pipe((0,u.b)(qt=>function ri(ze,Se,me,qe){return function gi(ze,Se,me,qe){const ct=Ai(ze);if(0===ct.length)return(0,h.of)({});const Pt={};return(0,R.D)(ct).pipe((0,v.z)(qt=>function Xi(ze,Se,me,qe){const ct=Si(ze,Se,qe);return ui(ct.resolve?ct.resolve(Se,me):ct(Se,me))}(ze[qt],Se,me,qe).pipe((0,T.b)(ai=>{Pt[qt]=ai}))),ae(1),(0,v.z)(()=>Ai(Pt).length===ct.length?(0,h.of)(Pt):B.E))}(ze._resolve,ze,Se,qe).pipe((0,ge.U)(Pt=>(ze._resolvedData=Pt,ze.data=Object.assign(Object.assign({},ze.data),on(ze,me).resolve),null)))}(qt.route,qe,ze,Se)),(0,T.b)(()=>Pt++),ae(1),(0,v.z)(qt=>Pt===ct.length?(0,h.of)(me):B.E))})}(this.paramsInheritanceStrategy,this.ngModule.injector),(0,T.b)({next:()=>an=!0,complete:()=>{an||(this.restoreHistory(Oi),this.cancelNavigationTransition(Oi,"At least one route resolver didn't emit any value."))}}))}),(0,T.b)(Oi=>{const an=new j(Oi.id,this.serializeUrl(Oi.extractedUrl),this.serializeUrl(Oi.urlAfterRedirects),Oi.targetSnapshot);this.triggerEvent(an)}))}),dn(ai=>{const{targetSnapshot:Oi,id:an,extractedUrl:On,rawUrl:Cn,extras:{skipLocationChange:_r,replaceUrl:ur}}=ai;return this.hooks.afterPreactivation(Oi,{navigationId:an,appliedUrlTree:On,rawUrlTree:Cn,skipLocationChange:!!_r,replaceUrl:!!ur})}),(0,ge.U)(ai=>{const Oi=function Li(ze,Se,me){const qe=Ni(ze,Se._root,me?me._root:void 0);return new xi(qe,Se)}(this.routeReuseStrategy,ai.targetSnapshot,ai.currentRouterState);return Object.assign(Object.assign({},ai),{targetRouterState:Oi})}),(0,T.b)(ai=>{this.currentUrlTree=ai.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(ai.urlAfterRedirects,ai.rawUrl),this.routerState=ai.targetRouterState,"deferred"===this.urlUpdateStrategy&&(ai.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,ai),this.browserUrlTree=ai.urlAfterRedirects)}),((ze,Se,me)=>(0,ge.U)(qe=>(new fa(Se,qe.targetRouterState,qe.currentRouterState,me).activate(ze),qe)))(this.rootContexts,this.routeReuseStrategy,ai=>this.triggerEvent(ai)),(0,T.b)({next(){Pt=!0},complete(){Pt=!0}}),(0,I.x)(()=>{var ai;Pt||qt||this.cancelNavigationTransition(ct,`Navigation ID ${ct.id} is not equal to the current navigation id ${this.navigationId}`),(null===(ai=this.currentNavigation)||void 0===ai?void 0:ai.id)===ct.id&&(this.currentNavigation=null)}),(0,r.K)(ai=>{if(qt=!0,function Ce(ze){return ze&&ze[W]}(ai)){const Oi=lr(ai.url);Oi||(this.navigated=!0,this.restoreHistory(ct,!0));const an=new H(ct.id,this.serializeUrl(ct.extractedUrl),ai.message);qe.next(an),Oi?setTimeout(()=>{const On=this.urlHandlingStrategy.merge(ai.url,this.rawUrlTree),Cn={skipLocationChange:ct.extras.skipLocationChange,replaceUrl:"eager"===this.urlUpdateStrategy||Ra(ct.source)};this.scheduleNavigation(On,"imperative",null,Cn,{resolve:ct.resolve,reject:ct.reject,promise:ct.promise})},0):ct.resolve(!1)}else{this.restoreHistory(ct,!0);const Oi=new X(ct.id,this.serializeUrl(ct.extractedUrl),ai);qe.next(Oi);try{ct.resolve(this.errorHandler(ai))}catch(an){ct.reject(an)}}return B.E}))}))}resetRootComponentType(me){this.rootComponentType=me,this.routerState.root.component=this.rootComponentType}setTransition(me){this.transitions.next(Object.assign(Object.assign({},this.transitions.value),me))}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(me=>{const qe="popstate"===me.type?"popstate":"hashchange";"popstate"===qe&&setTimeout(()=>{var ct;const Pt={replaceUrl:!0},qt=(null===(ct=me.state)||void 0===ct?void 0:ct.navigationId)?me.state:null;if(qt){const Oi=Object.assign({},qt);delete Oi.navigationId,delete Oi.\u0275routerPageId,0!==Object.keys(Oi).length&&(Pt.state=Oi)}const ai=this.parseUrl(me.url);this.scheduleNavigation(ai,qe,qt,Pt)},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(me){this.events.next(me)}resetConfig(me){xa(me),this.config=me.map(Va),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.transitions.complete(),this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=void 0),this.disposed=!0}createUrlTree(me,qe={}){const{relativeTo:ct,queryParams:Pt,fragment:qt,queryParamsHandling:ai,preserveFragment:Oi}=qe,an=ct||this.routerState.root,On=Oi?this.currentUrlTree.fragment:qt;let Cn=null;switch(ai){case"merge":Cn=Object.assign(Object.assign({},this.currentUrlTree.queryParams),Pt);break;case"preserve":Cn=this.currentUrlTree.queryParams;break;default:Cn=Pt||null}return null!==Cn&&(Cn=this.removeEmptyProps(Cn)),function Nn(ze,Se,me,qe,ct){if(0===me.length)return Ei(Se.root,Se.root,Se.root,qe,ct);const Pt=function Qn(ze){if("string"==typeof ze[0]&&1===ze.length&&"/"===ze[0])return new Sn(!0,0,ze);let Se=0,me=!1;const qe=ze.reduce((ct,Pt,qt)=>{if("object"==typeof Pt&&null!=Pt){if(Pt.outlets){const ai={};return Zt(Pt.outlets,(Oi,an)=>{ai[an]="string"==typeof Oi?Oi.split("/"):Oi}),[...ct,{outlets:ai}]}if(Pt.segmentPath)return[...ct,Pt.segmentPath]}return"string"!=typeof Pt?[...ct,Pt]:0===qt?(Pt.split("/").forEach((ai,Oi)=>{0==Oi&&"."===ai||(0==Oi&&""===ai?me=!0:".."===ai?Se++:""!=ai&&ct.push(ai))}),ct):[...ct,Pt]},[]);return new Sn(me,Se,qe)}(me);if(Pt.toRoot())return Ei(Se.root,Se.root,new ht([],{}),qe,ct);const qt=function ua(ze,Se,me){if(ze.isAbsolute)return new sr(Se.root,!0,0);if(-1===me.snapshot._lastPathIndex){const Pt=me.snapshot._urlSegment;return new sr(Pt,Pt===Se.root,0)}const qe=tr(ze.commands[0])?0:1;return function va(ze,Se,me){let qe=ze,ct=Se,Pt=me;for(;Pt>ct;){if(Pt-=ct,qe=qe.parent,!qe)throw new Error("Invalid number of '../'");ct=qe.segments.length}return new sr(qe,!1,ct-Pt)}(me.snapshot._urlSegment,me.snapshot._lastPathIndex+qe,ze.numberOfDoubleDots)}(Pt,Se,ze),ai=qt.processChildren?Br(qt.segmentGroup,qt.index,Pt.commands):ha(qt.segmentGroup,qt.index,Pt.commands);return Ei(Se.root,qt.segmentGroup,ai,qe,ct)}(an,this.currentUrlTree,me,Cn,null!=On?On:null)}navigateByUrl(me,qe={skipLocationChange:!1}){const ct=lr(me)?me:this.parseUrl(me),Pt=this.urlHandlingStrategy.merge(ct,this.rawUrlTree);return this.scheduleNavigation(Pt,"imperative",null,qe)}navigate(me,qe={skipLocationChange:!1}){return function Ka(ze){for(let Se=0;Se{const Pt=me[ct];return null!=Pt&&(qe[ct]=Pt),qe},{})}processNavigations(){this.navigations.subscribe(me=>{this.navigated=!0,this.lastSuccessfulId=me.id,this.currentPageId=me.targetPageId,this.events.next(new N(me.id,this.serializeUrl(me.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,me.resolve(!0)},me=>{this.console.warn(`Unhandled Navigation Error: ${me}`)})}scheduleNavigation(me,qe,ct,Pt,qt){var ai,Oi;if(this.disposed)return Promise.resolve(!1);let an,On,Cn;qt?(an=qt.resolve,On=qt.reject,Cn=qt.promise):Cn=new Promise((os,ks)=>{an=os,On=ks});const _r=++this.navigationId;let ur;return"computed"===this.canceledNavigationResolution?(0===this.currentPageId&&(ct=this.location.getState()),ur=ct&&ct.\u0275routerPageId?ct.\u0275routerPageId:Pt.replaceUrl||Pt.skipLocationChange?null!==(ai=this.browserPageId)&&void 0!==ai?ai:0:(null!==(Oi=this.browserPageId)&&void 0!==Oi?Oi:0)+1):ur=0,this.setTransition({id:_r,targetPageId:ur,source:qe,restoredState:ct,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:me,extras:Pt,resolve:an,reject:On,promise:Cn,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),Cn.catch(os=>Promise.reject(os))}setBrowserUrl(me,qe){const ct=this.urlSerializer.serialize(me),Pt=Object.assign(Object.assign({},qe.extras.state),this.generateNgRouterState(qe.id,qe.targetPageId));this.location.isCurrentPathEqualTo(ct)||qe.extras.replaceUrl?this.location.replaceState(ct,"",Pt):this.location.go(ct,"",Pt)}restoreHistory(me,qe=!1){var ct,Pt;if("computed"===this.canceledNavigationResolution){const qt=this.currentPageId-me.targetPageId;"popstate"!==me.source&&"eager"!==this.urlUpdateStrategy&&this.currentUrlTree!==(null===(ct=this.currentNavigation)||void 0===ct?void 0:ct.finalUrl)||0===qt?this.currentUrlTree===(null===(Pt=this.currentNavigation)||void 0===Pt?void 0:Pt.finalUrl)&&0===qt&&(this.resetState(me),this.browserUrlTree=me.currentUrlTree,this.resetUrlToCurrentUrlTree()):this.location.historyGo(qt)}else"replace"===this.canceledNavigationResolution&&(qe&&this.resetState(me),this.resetUrlToCurrentUrlTree())}resetState(me){this.routerState=me.currentRouterState,this.currentUrlTree=me.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,me.rawUrl)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}cancelNavigationTransition(me,qe){const ct=new H(me.id,this.serializeUrl(me.extractedUrl),qe);this.triggerEvent(ct),me.resolve(!1)}generateNgRouterState(me,qe){return"computed"===this.canceledNavigationResolution?{navigationId:me,\u0275routerPageId:qe}:{navigationId:me}}}return ze.\u0275fac=function(me){t.$Z()},ze.\u0275prov=t.Yz7({token:ze,factory:ze.\u0275fac}),ze})();function Ra(ze){return"imperative"!==ze}let Ss=(()=>{class ze{constructor(me,qe,ct,Pt,qt){this.router=me,this.route=qe,this.tabIndexAttribute=ct,this.renderer=Pt,this.el=qt,this.commands=null,this.onChanges=new Z.x,this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(me){if(null!=this.tabIndexAttribute)return;const qe=this.renderer,ct=this.el.nativeElement;null!==me?qe.setAttribute(ct,"tabindex",me):qe.removeAttribute(ct,"tabindex")}ngOnChanges(me){this.onChanges.next(this)}set routerLink(me){null!=me?(this.commands=Array.isArray(me)?me:[me],this.setTabIndexIfNotOnNativeEl("0")):(this.commands=null,this.setTabIndexIfNotOnNativeEl(null))}onClick(){if(null===this.urlTree)return!0;const me={skipLocationChange:La(this.skipLocationChange),replaceUrl:La(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,me),!0}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:La(this.preserveFragment)})}}return ze.\u0275fac=function(me){return new(me||ze)(t.Y36(br),t.Y36(Wi),t.$8M("tabindex"),t.Y36(t.Qsj),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","routerLink","",5,"a",5,"area"]],hostBindings:function(me,qe){1&me&&t.NdJ("click",function(){return qe.onClick()})},inputs:{queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",preserveFragment:"preserveFragment",skipLocationChange:"skipLocationChange",replaceUrl:"replaceUrl",state:"state",relativeTo:"relativeTo",routerLink:"routerLink"},features:[t.TTD]}),ze})(),Ma=(()=>{class ze{constructor(me,qe,ct){this.router=me,this.route=qe,this.locationStrategy=ct,this.commands=null,this.href=null,this.onChanges=new Z.x,this.subscription=me.events.subscribe(Pt=>{Pt instanceof N&&this.updateTargetUrlAndHref()})}set routerLink(me){this.commands=null!=me?Array.isArray(me)?me:[me]:null}ngOnChanges(me){this.updateTargetUrlAndHref(),this.onChanges.next(this)}ngOnDestroy(){this.subscription.unsubscribe()}onClick(me,qe,ct,Pt,qt){if(0!==me||qe||ct||Pt||qt||"string"==typeof this.target&&"_self"!=this.target||null===this.urlTree)return!0;const ai={skipLocationChange:La(this.skipLocationChange),replaceUrl:La(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,ai),!1}updateTargetUrlAndHref(){this.href=null!==this.urlTree?this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree)):null}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:La(this.preserveFragment)})}}return ze.\u0275fac=function(me){return new(me||ze)(t.Y36(br),t.Y36(Wi),t.Y36(n.S$))},ze.\u0275dir=t.lG2({type:ze,selectors:[["a","routerLink",""],["area","routerLink",""]],hostVars:2,hostBindings:function(me,qe){1&me&&t.NdJ("click",function(Pt){return qe.onClick(Pt.button,Pt.ctrlKey,Pt.shiftKey,Pt.altKey,Pt.metaKey)}),2&me&&t.uIk("target",qe.target)("href",qe.href,t.LSH)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",preserveFragment:"preserveFragment",skipLocationChange:"skipLocationChange",replaceUrl:"replaceUrl",state:"state",relativeTo:"relativeTo",routerLink:"routerLink"},features:[t.TTD]}),ze})();function La(ze){return""===ze||!!ze}let gs=(()=>{class ze{constructor(me,qe,ct,Pt,qt,ai){this.router=me,this.element=qe,this.renderer=ct,this.cdr=Pt,this.link=qt,this.linkWithHref=ai,this.classes=[],this.isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new t.vpe,this.routerEventsSubscription=me.events.subscribe(Oi=>{Oi instanceof N&&this.update()})}ngAfterContentInit(){(0,h.of)(this.links.changes,this.linksWithHrefs.changes,(0,h.of)(null)).pipe((0,y.J)()).subscribe(me=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){var me;null===(me=this.linkInputChangesSubscription)||void 0===me||me.unsubscribe();const qe=[...this.links.toArray(),...this.linksWithHrefs.toArray(),this.link,this.linkWithHref].filter(ct=>!!ct).map(ct=>ct.onChanges);this.linkInputChangesSubscription=(0,R.D)(qe).pipe((0,y.J)()).subscribe(ct=>{this.isActive!==this.isLinkActive(this.router)(ct)&&this.update()})}set routerLinkActive(me){const qe=Array.isArray(me)?me:me.split(" ");this.classes=qe.filter(ct=>!!ct)}ngOnChanges(me){this.update()}ngOnDestroy(){var me;this.routerEventsSubscription.unsubscribe(),null===(me=this.linkInputChangesSubscription)||void 0===me||me.unsubscribe()}update(){!this.links||!this.linksWithHrefs||!this.router.navigated||Promise.resolve().then(()=>{const me=this.hasActiveLinks();this.isActive!==me&&(this.isActive=me,this.cdr.markForCheck(),this.classes.forEach(qe=>{me?this.renderer.addClass(this.element.nativeElement,qe):this.renderer.removeClass(this.element.nativeElement,qe)}),this.isActiveChange.emit(me))})}isLinkActive(me){const qe=function _s(ze){return!!ze.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return ct=>!!ct.urlTree&&me.isActive(ct.urlTree,qe)}hasActiveLinks(){const me=this.isLinkActive(this.router);return this.link&&me(this.link)||this.linkWithHref&&me(this.linkWithHref)||this.links.some(me)||this.linksWithHrefs.some(me)}}return ze.\u0275fac=function(me){return new(me||ze)(t.Y36(br),t.Y36(t.SBq),t.Y36(t.Qsj),t.Y36(t.sBO),t.Y36(Ss,8),t.Y36(Ma,8))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","routerLinkActive",""]],contentQueries:function(me,qe,ct){if(1&me&&(t.Suo(ct,Ss,5),t.Suo(ct,Ma,5)),2&me){let Pt;t.iGM(Pt=t.CRH())&&(qe.links=Pt),t.iGM(Pt=t.CRH())&&(qe.linksWithHrefs=Pt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],features:[t.TTD]}),ze})();class cn{}class Tn{preload(Se,me){return(0,h.of)(null)}}let $n=(()=>{class ze{constructor(me,qe,ct,Pt){this.router=me,this.injector=ct,this.preloadingStrategy=Pt,this.loader=new ar(ct,qe,Oi=>me.triggerEvent(new Ve(Oi)),Oi=>me.triggerEvent(new Me(Oi)))}setUpPreloading(){this.subscription=this.router.events.pipe((0,Y.h)(me=>me instanceof N),(0,u.b)(()=>this.preload())).subscribe(()=>{})}preload(){const me=this.injector.get(t.h0i);return this.processRoutes(me,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(me,qe){const ct=[];for(const Pt of qe)if(Pt.loadChildren&&!Pt.canLoad&&Pt._loadedConfig){const qt=Pt._loadedConfig;ct.push(this.processRoutes(qt.module,qt.routes))}else Pt.loadChildren&&!Pt.canLoad?ct.push(this.preloadConfig(me,Pt)):Pt.children&&ct.push(this.processRoutes(me,Pt.children));return(0,R.D)(ct).pipe((0,y.J)(),(0,ge.U)(Pt=>{}))}preloadConfig(me,qe){return this.preloadingStrategy.preload(qe,()=>(qe._loadedConfig?(0,h.of)(qe._loadedConfig):this.loader.load(me.injector,qe)).pipe((0,v.z)(Pt=>(qe._loadedConfig=Pt,this.processRoutes(Pt.module,Pt.routes)))))}}return ze.\u0275fac=function(me){return new(me||ze)(t.LFG(br),t.LFG(t.Sil),t.LFG(t.zs3),t.LFG(cn))},ze.\u0275prov=t.Yz7({token:ze,factory:ze.\u0275fac}),ze})(),mr=(()=>{class ze{constructor(me,qe,ct={}){this.router=me,this.viewportScroller=qe,this.options=ct,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},ct.scrollPositionRestoration=ct.scrollPositionRestoration||"disabled",ct.anchorScrolling=ct.anchorScrolling||"disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(me=>{me instanceof V?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=me.navigationTrigger,this.restoredId=me.restoredState?me.restoredState.navigationId:0):me instanceof N&&(this.lastId=me.id,this.scheduleScrollEvent(me,this.router.parseUrl(me.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(me=>{me instanceof we&&(me.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(me.position):me.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(me.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(me,qe){this.router.triggerEvent(new we(me,"popstate"===this.lastSource?this.store[this.restoredId]:null,qe))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return ze.\u0275fac=function(me){t.$Z()},ze.\u0275prov=t.Yz7({token:ze,factory:ze.\u0275fac}),ze})();const Wr=new t.OlP("ROUTER_CONFIGURATION"),$a=new t.OlP("ROUTER_FORROOT_GUARD"),dr=[n.Ye,{provide:rt,useClass:et},{provide:br,useFactory:function _i(ze,Se,me,qe,ct,Pt,qt={},ai,Oi){const an=new br(null,ze,Se,me,qe,ct,Dt(Pt));return ai&&(an.urlHandlingStrategy=ai),Oi&&(an.routeReuseStrategy=Oi),function Pi(ze,Se){ze.errorHandler&&(Se.errorHandler=ze.errorHandler),ze.malformedUriErrorHandler&&(Se.malformedUriErrorHandler=ze.malformedUriErrorHandler),ze.onSameUrlNavigation&&(Se.onSameUrlNavigation=ze.onSameUrlNavigation),ze.paramsInheritanceStrategy&&(Se.paramsInheritanceStrategy=ze.paramsInheritanceStrategy),ze.relativeLinkResolution&&(Se.relativeLinkResolution=ze.relativeLinkResolution),ze.urlUpdateStrategy&&(Se.urlUpdateStrategy=ze.urlUpdateStrategy),ze.canceledNavigationResolution&&(Se.canceledNavigationResolution=ze.canceledNavigationResolution)}(qt,an),qt.enableTracing&&an.events.subscribe(On=>{var Cn,_r;null===(Cn=console.group)||void 0===Cn||Cn.call(console,`Router Event: ${On.constructor.name}`),console.log(On.toString()),console.log(On),null===(_r=console.groupEnd)||void 0===_r||_r.call(console)}),an},deps:[rt,Dr,n.Ye,t.zs3,t.Sil,Pn,Wr,[class Hr{},new t.FiY],[class An{},new t.FiY]]},Dr,{provide:Wi,useFactory:function zi(ze){return ze.routerState.root},deps:[br]},$n,Tn,class xn{preload(Se,me){return me().pipe((0,r.K)(()=>(0,h.of)(null)))}},{provide:Wr,useValue:{enableTracing:!1}}];function at(){return new t.PXZ("Router",br)}let St=(()=>{class ze{constructor(me,qe){}static forRoot(me,qe){return{ngModule:ze,providers:[dr,pi(me),{provide:$a,useFactory:Xt,deps:[[br,new t.FiY,new t.tp0]]},{provide:Wr,useValue:qe||{}},{provide:n.S$,useFactory:zt,deps:[n.lw,[new t.tBr(n.mr),new t.FiY],Wr]},{provide:mr,useFactory:wt,deps:[br,n.EM,Wr]},{provide:cn,useExisting:qe&&qe.preloadingStrategy?qe.preloadingStrategy:Tn},{provide:t.PXZ,multi:!0,useFactory:at},[ln,{provide:t.ip1,multi:!0,useFactory:nn,deps:[ln]},{provide:qn,useFactory:un,deps:[ln]},{provide:t.tb,multi:!0,useExisting:qn}]]}}static forChild(me){return{ngModule:ze,providers:[pi(me)]}}}return ze.\u0275fac=function(me){return new(me||ze)(t.LFG($a,8),t.LFG(br,8))},ze.\u0275mod=t.oAB({type:ze}),ze.\u0275inj=t.cJS({}),ze})();function wt(ze,Se,me){return me.scrollOffset&&Se.setOffset(me.scrollOffset),new mr(ze,Se,me)}function zt(ze,Se,me={}){return me.useHash?new n.Do(ze,Se):new n.b0(ze,Se)}function Xt(ze){return"guarded"}function pi(ze){return[{provide:t.deG,multi:!0,useValue:ze},{provide:Pn,multi:!0,useValue:ze}]}let ln=(()=>{class ze{constructor(me){this.injector=me,this.initNavigation=!1,this.destroyed=!1,this.resultOfPreactivationDone=new Z.x}appInitializer(){return this.injector.get(n.V_,Promise.resolve(null)).then(()=>{if(this.destroyed)return Promise.resolve(!0);let qe=null;const ct=new Promise(ai=>qe=ai),Pt=this.injector.get(br),qt=this.injector.get(Wr);return"disabled"===qt.initialNavigation?(Pt.setUpLocationChangeListener(),qe(!0)):"enabled"===qt.initialNavigation||"enabledBlocking"===qt.initialNavigation?(Pt.hooks.afterPreactivation=()=>this.initNavigation?(0,h.of)(null):(this.initNavigation=!0,qe(!0),this.resultOfPreactivationDone),Pt.initialNavigation()):qe(!0),ct})}bootstrapListener(me){const qe=this.injector.get(Wr),ct=this.injector.get($n),Pt=this.injector.get(mr),qt=this.injector.get(br),ai=this.injector.get(t.z2F);me===ai.components[0]&&(("enabledNonBlocking"===qe.initialNavigation||void 0===qe.initialNavigation)&&qt.initialNavigation(),ct.setUpPreloading(),Pt.init(),qt.resetRootComponentType(ai.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}ngOnDestroy(){this.destroyed=!0}}return ze.\u0275fac=function(me){return new(me||ze)(t.LFG(t.zs3))},ze.\u0275prov=t.Yz7({token:ze,factory:ze.\u0275fac}),ze})();function nn(ze){return ze.appInitializer.bind(ze)}function un(ze){return ze.bootstrapListener.bind(ze)}const qn=new t.OlP("Router Initializer")},9546:(Be,K,p)=>{"use strict";p.d(K,{BN:()=>Tn,uH:()=>dr});var t=p(5e3);function e(at,St){var wt=Object.keys(at);if(Object.getOwnPropertySymbols){var zt=Object.getOwnPropertySymbols(at);St&&(zt=zt.filter(function(Xt){return Object.getOwnPropertyDescriptor(at,Xt).enumerable})),wt.push.apply(wt,zt)}return wt}function f(at){for(var St=1;Stat.length)&&(St=at.length);for(var wt=0,zt=new Array(St);wt0;)St+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return St}function Ae(at){for(var St=[],wt=(at||[]).length>>>0;wt--;)St[wt]=at[wt];return St}function Ge(at){return at.classList?Ae(at.classList):(at.getAttribute("class")||"").split(" ").filter(function(St){return St})}function ot(at){return"".concat(at).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function Ct(at){return Object.keys(at||{}).reduce(function(St,wt){return St+"".concat(wt,": ").concat(at[wt].trim(),";")},"")}function mi(at){return at.size!==nt.size||at.x!==nt.x||at.y!==nt.y||at.rotate!==nt.rotate||at.flipX||at.flipY}function hi(){var St=Ee,wt=ye.cssPrefix,zt=ye.replacementClass,Xt=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";\n --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n transition-delay: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}';if("fa"!==wt||zt!==St){var pi=new RegExp("\\.".concat("fa","\\-"),"g"),_i=new RegExp("\\--".concat("fa","\\-"),"g"),Pi=new RegExp("\\.".concat(St),"g");Xt=Xt.replace(pi,".".concat(wt,"-")).replace(_i,"--".concat(wt,"-")).replace(Pi,".".concat(zt))}return Xt}var si=!1;function Ji(){ye.autoAddCss&&!si&&(function He(at){if(at&&y){var St=c.createElement("style");St.setAttribute("type","text/css"),St.innerHTML=at;for(var wt=c.head.childNodes,zt=null,Xt=wt.length-1;Xt>-1;Xt--){var pi=wt[Xt],_i=(pi.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(_i)>-1&&(zt=pi)}c.head.insertBefore(St,zt)}}(hi()),si=!0)}var Zi={mixout:function(){return{dom:{css:hi,insertCss:Ji}}},hooks:function(){return{beforeDOMElementCreation:function(){Ji()},beforeI2svg:function(){Ji()}}}},Vi=u||{};Vi[he]||(Vi[he]={}),Vi[he].styles||(Vi[he].styles={}),Vi[he].hooks||(Vi[he].hooks={}),Vi[he].shims||(Vi[he].shims=[]);var Ui=Vi[he],Ue=[],ve=!1;function Qe(at){!y||(ve?setTimeout(at,0):Ue.push(at))}function _t(at){var St=at.tag,wt=at.attributes,zt=void 0===wt?{}:wt,Xt=at.children,pi=void 0===Xt?[]:Xt;return"string"==typeof at?ot(at):"<".concat(St," ").concat(function lt(at){return Object.keys(at||{}).reduce(function(St,wt){return St+"".concat(wt,'="').concat(ot(at[wt]),'" ')},"").trim()}(zt),">").concat(pi.map(_t).join(""),"")}function se(at,St,wt){if(at&&at[St]&&at[St][wt])return{prefix:St,iconName:wt,icon:at[St][wt]}}y&&((ve=(c.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(c.readyState))||c.addEventListener("DOMContentLoaded",function at(){c.removeEventListener("DOMContentLoaded",at),ve=1,Ue.map(function(St){return St()})}));var xt=function(St,wt,zt,Xt){var zi,ln,nn,pi=Object.keys(St),_i=pi.length,Pi=void 0!==Xt?function(St,wt){return function(zt,Xt,pi,_i){return St.call(wt,zt,Xt,pi,_i)}}(wt,Xt):wt;for(void 0===zt?(zi=1,nn=St[pi[0]]):(zi=0,nn=zt);zi<_i;zi++)nn=Pi(nn,St[ln=pi[zi]],ln,St);return nn};function xi(at){var St=function Bt(at){for(var St=[],wt=0,zt=at.length;wt=55296&&Xt<=56319&&wt2&&void 0!==arguments[2]?arguments[2]:{},zt=wt.skipHooks,Xt=void 0!==zt&&zt,pi=$i(St);"function"!=typeof Ui.hooks.addPack||Xt?Ui.styles[at]=f(f({},Ui.styles[at]||{}),pi):Ui.hooks.addPack(at,$i(St)),"fas"===at&&Wi("fa",St)}var fn,ti,Ri,st=Ui.styles,Rt=Ui.shims,Wt=(h(fn={},Te,Object.values(Q[Te])),h(fn,xe,Object.values(Q[xe])),fn),fi=null,Li={},Ni={},pn={},Dn={},Nn={},tr=(h(ti={},Te,Object.keys(Ce[Te])),h(ti,xe,Object.keys(Ce[xe])),ti);function Ei(at,St){var wt=St.split("-"),zt=wt[0],Xt=wt.slice(1).join("-");return zt!==at||""===Xt||function gn(at){return~it.indexOf(at)}(Xt)?null:Xt}var ji=function(){var St=function(pi){return xt(st,function(_i,Pi,zi){return _i[zi]=xt(Pi,pi,{}),_i},{})};Li=St(function(Xt,pi,_i){return pi[3]&&(Xt[pi[3]]=_i),pi[2]&&pi[2].filter(function(zi){return"number"==typeof zi}).forEach(function(zi){Xt[zi.toString(16)]=_i}),Xt}),Ni=St(function(Xt,pi,_i){return Xt[_i]=_i,pi[2]&&pi[2].filter(function(zi){return"string"==typeof zi}).forEach(function(zi){Xt[zi]=_i}),Xt}),Nn=St(function(Xt,pi,_i){var Pi=pi[2];return Xt[_i]=_i,Pi.forEach(function(zi){Xt[zi]=_i}),Xt});var wt="far"in st||ye.autoFetchSvg,zt=xt(Rt,function(Xt,pi){var _i=pi[0],Pi=pi[1],zi=pi[2];return"far"===Pi&&!wt&&(Pi="fas"),"string"==typeof _i&&(Xt.names[_i]={prefix:Pi,iconName:zi}),"number"==typeof _i&&(Xt.unicodes[_i.toString(16)]={prefix:Pi,iconName:zi}),Xt},{names:{},unicodes:{}});pn=zt.names,Dn=zt.unicodes,fi=Br(ye.styleDefault,{family:ye.familyDefault})};function Sn(at,St){return(Li[at]||{})[St]}function sr(at,St){return(Nn[at]||{})[St]}function ua(at){return pn[at]||{prefix:null,iconName:null}}function Sr(){return fi}function Br(at){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},wt=St.family,zt=void 0===wt?Te:wt,Xt=Ce[zt][at],pi=fe[zt][at]||fe[zt][Xt],_i=at in Ui.styles?at:null;return pi||_i||null}(function mt(at){ht.push(at)})(function(at){fi=Br(at.styleDefault,{family:ye.familyDefault})}),ji();var ia=(h(Ri={},Te,Object.keys(Q[Te])),h(Ri,xe,Object.keys(Q[xe])),Ri);function na(at){var St,wt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},zt=wt.skipLookups,Xt=void 0!==zt&&zt,pi=(h(St={},Te,"".concat(ye.cssPrefix,"-").concat(Te)),h(St,xe,"".concat(ye.cssPrefix,"-").concat(xe)),St),_i=null,Pi=Te;(at.includes(pi[Te])||at.some(function(ln){return ia[Te].includes(ln)}))&&(Pi=Te),(at.includes(pi[xe])||at.some(function(ln){return ia[xe].includes(ln)}))&&(Pi=xe);var zi=at.reduce(function(ln,nn){var un=Ei(ye.cssPrefix,nn);if(st[nn]?(nn=Wt[Pi].includes(nn)?ft[Pi][nn]:nn,_i=nn,ln.prefix=nn):tr[Pi].indexOf(nn)>-1?(_i=nn,ln.prefix=Br(nn,{family:Pi})):un?ln.iconName=un:nn!==ye.replacementClass&&nn!==pi[Te]&&nn!==pi[xe]&&ln.rest.push(nn),!Xt&&ln.prefix&&ln.iconName){var qn="fa"===_i?ua(ln.iconName):{},rr=sr(ln.prefix,ln.iconName);qn.prefix&&(_i=null),ln.iconName=qn.iconName||rr||ln.iconName,ln.prefix=qn.prefix||ln.prefix,"far"===ln.prefix&&!st.far&&st.fas&&!ye.autoFetchSvg&&(ln.prefix="fas")}return ln},{prefix:null,iconName:null,rest:[]});return(at.includes("fa-brands")||at.includes("fab"))&&(zi.prefix="fab"),(at.includes("fa-duotone")||at.includes("fad"))&&(zi.prefix="fad"),!zi.prefix&&Pi===xe&&(st.fass||ye.autoFetchSvg)&&(zi.prefix="fass",zi.iconName=sr(zi.prefix,zi.iconName)||zi.iconName),("fa"===zi.prefix||"fa"===_i)&&(zi.prefix=Sr()||"fas"),zi}var ra=function(){function at(){(function C(at,St){if(!(at instanceof St))throw new TypeError("Cannot call a class as a function")})(this,at),this.definitions={}}return function R(at,St,wt){St&&d(at.prototype,St),wt&&d(at,wt),Object.defineProperty(at,"prototype",{writable:!1})}(at,[{key:"add",value:function(){for(var wt=this,zt=arguments.length,Xt=new Array(zt),pi=0;pi0&&nn.forEach(function(un){"string"==typeof un&&(wt[Pi][un]=ln)}),wt[Pi][zi]=ln}),wt}}]),at}(),Jr=[],Xr={},Sa={},fa=Object.keys(Sa);function kr(at,St){for(var wt=arguments.length,zt=new Array(wt>2?wt-2:0),Xt=2;Xt1?St-1:0),zt=1;zt0&&void 0!==arguments[0]?arguments[0]:{};return y?(Wn("beforeI2svg",St),Ur("pseudoElements2svg",St),Ur("i2svg",St)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var St=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},wt=St.autoReplaceSvgRoot;!1===ye.autoReplaceSvg&&(ye.autoReplaceSvg=!0),ye.observeMutations=!0,Qe(function(){ba({autoReplaceSvgRoot:wt}),Wn("watch",St)})}},cr={noAuto:function(){ye.autoReplaceSvg=!1,ye.observeMutations=!1,Wn("noAuto")},config:ye,dom:ja,parse:{icon:function(St){if(null===St)return null;if("object"===M(St)&&St.prefix&&St.iconName)return{prefix:St.prefix,iconName:sr(St.prefix,St.iconName)||St.iconName};if(Array.isArray(St)&&2===St.length){var wt=0===St[1].indexOf("fa-")?St[1].slice(3):St[1],zt=Br(St[0]);return{prefix:zt,iconName:sr(zt,wt)||wt}}if("string"==typeof St&&(St.indexOf("".concat(ye.cssPrefix,"-"))>-1||St.match(tt))){var Xt=na(St.split(" "),{skipLookups:!0});return{prefix:Xt.prefix||Sr(),iconName:sr(Xt.prefix,Xt.iconName)||Xt.iconName}}if("string"==typeof St){var pi=Sr();return{prefix:pi,iconName:sr(pi,St)||St}}}},library:Ya,findIconDefinition:lr,toHtml:_t},ba=function(){var St=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},wt=St.autoReplaceSvgRoot,zt=void 0===wt?c:wt;(Object.keys(Ui.styles).length>0||ye.autoFetchSvg)&&y&&ye.autoReplaceSvg&&cr.dom.i2svg({node:zt})};function Nr(at,St){return Object.defineProperty(at,"abstract",{get:St}),Object.defineProperty(at,"html",{get:function(){return at.abstract.map(function(zt){return _t(zt)})}}),Object.defineProperty(at,"node",{get:function(){if(y){var zt=c.createElement("div");return zt.innerHTML=at.html,zt.children}}}),at}function Ea(at){var St=at.icons,wt=St.main,zt=St.mask,Xt=at.prefix,pi=at.iconName,_i=at.transform,Pi=at.symbol,zi=at.title,ln=at.maskId,nn=at.titleId,un=at.extra,qn=at.watchable,rr=void 0!==qn&&qn,ca=zt.found?zt:wt,ze=ca.width,Se=ca.height,me="fak"===Xt,qe=[ye.replacementClass,pi?"".concat(ye.cssPrefix,"-").concat(pi):""].filter(function(On){return-1===un.classes.indexOf(On)}).filter(function(On){return""!==On||!!On}).concat(un.classes).join(" "),ct={children:[],attributes:f(f({},un.attributes),{},{"data-prefix":Xt,"data-icon":pi,class:qe,role:un.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(ze," ").concat(Se)})},Pt=me&&!~un.classes.indexOf("fa-fw")?{width:"".concat(ze/Se*16*.0625,"em")}:{};rr&&(ct.attributes[j]=""),zi&&(ct.children.push({tag:"title",attributes:{id:ct.attributes["aria-labelledby"]||"title-".concat(nn||et())},children:[zi]}),delete ct.attributes.title);var qt=f(f({},ct),{},{prefix:Xt,iconName:pi,main:wt,mask:zt,maskId:ln,transform:_i,symbol:Pi,styles:f(f({},Pt),un.styles)}),ai=zt.found&&wt.found?Ur("generateAbstractMask",qt)||{children:[],attributes:{}}:Ur("generateAbstractIcon",qt)||{children:[],attributes:{}},an=ai.attributes;return qt.children=ai.children,qt.attributes=an,Pi?function aa(at){var wt=at.iconName,zt=at.children,Xt=at.attributes,pi=at.symbol,_i=!0===pi?"".concat(at.prefix,"-").concat(ye.cssPrefix,"-").concat(wt):pi;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:f(f({},Xt),{},{id:_i}),children:zt}]}]}(qt):function Dr(at){var St=at.children,wt=at.main,zt=at.mask,Xt=at.attributes,pi=at.styles,_i=at.transform;if(mi(_i)&&wt.found&&!zt.found){var ln={x:wt.width/wt.height/2,y:.5};Xt.style=Ct(f(f({},pi),{},{"transform-origin":"".concat(ln.x+_i.x/16,"em ").concat(ln.y+_i.y/16,"em")}))}return[{tag:"svg",attributes:Xt,children:St}]}(qt)}function ka(at){var St=at.content,wt=at.width,zt=at.height,Xt=at.transform,pi=at.title,_i=at.extra,Pi=at.watchable,zi=void 0!==Pi&&Pi,ln=f(f(f({},_i.attributes),pi?{title:pi}:{}),{},{class:_i.classes.join(" ")});zi&&(ln[j]="");var nn=f({},_i.styles);mi(Xt)&&(nn.transform=function $t(at){var St=at.transform,wt=at.width,Xt=at.height,pi=void 0===Xt?16:Xt,_i=at.startCentered,Pi=void 0!==_i&&_i,zi="";return zi+=Pi&&n?"translate(".concat(St.x/16-(void 0===wt?16:wt)/2,"em, ").concat(St.y/16-pi/2,"em) "):Pi?"translate(calc(-50% + ".concat(St.x/16,"em), calc(-50% + ").concat(St.y/16,"em)) "):"translate(".concat(St.x/16,"em, ").concat(St.y/16,"em) "),(zi+="scale(".concat(St.size/16*(St.flipX?-1:1),", ").concat(St.size/16*(St.flipY?-1:1),") "))+"rotate(".concat(St.rotate,"deg) ")}({transform:Xt,startCentered:!0,width:wt,height:zt}),nn["-webkit-transform"]=nn.transform);var un=Ct(nn);un.length>0&&(ln.style=un);var qn=[];return qn.push({tag:"span",attributes:ln,children:[St]}),pi&&qn.push({tag:"span",attributes:{class:"sr-only"},children:[pi]}),qn}function xa(at){var St=at.content,wt=at.title,zt=at.extra,Xt=f(f(f({},zt.attributes),wt?{title:wt}:{}),{},{class:zt.classes.join(" ")}),pi=Ct(zt.styles);pi.length>0&&(Xt.style=pi);var _i=[];return _i.push({tag:"span",attributes:Xt,children:[St]}),wt&&_i.push({tag:"span",attributes:{class:"sr-only"},children:[wt]}),_i}var or=Ui.styles;function sa(at){var St=at[0],wt=at[1],pi=D(at.slice(4),1)[0];return{found:!0,width:St,height:wt,icon:Array.isArray(pi)?{tag:"g",attributes:{class:"".concat(ye.cssPrefix,"-").concat("duotone-group")},children:[{tag:"path",attributes:{class:"".concat(ye.cssPrefix,"-").concat("secondary"),fill:"currentColor",d:pi[0]}},{tag:"path",attributes:{class:"".concat(ye.cssPrefix,"-").concat("primary"),fill:"currentColor",d:pi[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:pi}}}}var Va={found:!1,width:512,height:512};function oa(at,St){var wt=St;return"fa"===St&&null!==ye.styleDefault&&(St=Sr()),new Promise(function(zt,Xt){if(Ur("missingIconAbstract"),"fa"===wt){var _i=ua(at)||{};at=_i.iconName||at,St=_i.prefix||St}if(at&&St&&or[St]&&or[St][at])return zt(sa(or[St][at]));(function ir(at,St){!ce&&!ye.showMissingIcons&&at&&console.error('Icon with name "'.concat(at,'" and prefix "').concat(St,'" is missing.'))})(at,St),zt(f(f({},Va),{},{icon:ye.showMissingIcons&&at&&Ur("missingIconAbstract")||{}}))})}var Kr=function(){},Rr=ye.measurePerformance&&T&&T.mark&&T.measure?T:{mark:Kr,measure:Kr},Gr='FA "6.2.1"',Xn_begin=function(St){return Rr.mark("".concat(Gr," ").concat(St," begins")),function(){return function(St){Rr.mark("".concat(Gr," ").concat(St," ends")),Rr.measure("".concat(Gr," ").concat(St),"".concat(Gr," ").concat(St," begins"),"".concat(Gr," ").concat(St," ends"))}(St)}},$e=function(){};function Et(at){return"string"==typeof(at.getAttribute?at.getAttribute(j):null)}function wi(at){return c.createElementNS("http://www.w3.org/2000/svg",at)}function yi(at){return c.createElement(at)}function en(at){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},wt=St.ceFn,zt=void 0===wt?"svg"===at.tag?wi:yi:wt;if("string"==typeof at)return c.createTextNode(at);var Xt=zt(at.tag);Object.keys(at.attributes||[]).forEach(function(_i){Xt.setAttribute(_i,at.attributes[_i])});var pi=at.children||[];return pi.forEach(function(_i){Xt.appendChild(en(_i,{ceFn:zt}))}),Xt}var Vn={replace:function(St){var wt=St[0];if(wt.parentNode)if(St[1].forEach(function(Xt){wt.parentNode.insertBefore(en(Xt),wt)}),null===wt.getAttribute(j)&&ye.keepOriginalSource){var zt=c.createComment(function nr(at){var St=" ".concat(at.outerHTML," ");return"".concat(St,"Font Awesome fontawesome.com ")}(wt));wt.parentNode.replaceChild(zt,wt)}else wt.remove()},nest:function(St){var wt=St[0],zt=St[1];if(~Ge(wt).indexOf(ye.replacementClass))return Vn.replace(St);var Xt=new RegExp("".concat(ye.cssPrefix,"-.*"));if(delete zt[0].attributes.id,zt[0].attributes.class){var pi=zt[0].attributes.class.split(" ").reduce(function(Pi,zi){return zi===ye.replacementClass||zi.match(Xt)?Pi.toSvg.push(zi):Pi.toNode.push(zi),Pi},{toNode:[],toSvg:[]});zt[0].attributes.class=pi.toSvg.join(" "),0===pi.toNode.length?wt.removeAttribute("class"):wt.setAttribute("class",pi.toNode.join(" "))}var _i=zt.map(function(Pi){return _t(Pi)}).join("\n");wt.setAttribute(j,""),wt.innerHTML=_i}};function It(at){at()}function ci(at,St){var wt="function"==typeof St?St:$e;if(0===at.length)wt();else{var zt=It;"async"===ye.mutateApproach&&(zt=u.requestAnimationFrame||It),zt(function(){var Xt=function ii(){return!0===ye.autoReplaceSvg?Vn.replace:Vn[ye.autoReplaceSvg]||Vn.replace}(),pi=Xn_begin("mutate");at.map(Xt),pi(),wt()})}}var vt=!1;function jt(){vt=!0}function ki(){vt=!1}var je=null;function We(at){if(v&&ye.observeMutations){var St=at.treeCallback,wt=void 0===St?$e:St,zt=at.nodeCallback,Xt=void 0===zt?$e:zt,pi=at.pseudoElementsCallback,_i=void 0===pi?$e:pi,Pi=at.observeMutationsRoot,zi=void 0===Pi?c:Pi;je=new v(function(ln){if(!vt){var nn=Sr();Ae(ln).forEach(function(un){if("childList"===un.type&&un.addedNodes.length>0&&!Et(un.addedNodes[0])&&(ye.searchPseudoElements&&_i(un.target),wt(un.target)),"attributes"===un.type&&un.target.parentNode&&ye.searchPseudoElements&&_i(un.target.parentNode),"attributes"===un.type&&Et(un.target)&&~Ot.indexOf(un.attributeName))if("class"===un.attributeName&&function Xe(at){var St=at.getAttribute?at.getAttribute(J):null,wt=at.getAttribute?at.getAttribute(Ie):null;return St&&wt}(un.target)){var qn=na(Ge(un.target)),ca=qn.iconName;un.target.setAttribute(J,qn.prefix||nn),ca&&un.target.setAttribute(Ie,ca)}else(function kt(at){return at&&at.classList&&at.classList.contains&&at.classList.contains(ye.replacementClass)})(un.target)&&Xt(un.target)})}}),y&&je.observe(zi,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function At(at){var St=at.getAttribute("style"),wt=[];return St&&(wt=St.split(";").reduce(function(zt,Xt){var pi=Xt.split(":"),_i=pi[0],Pi=pi.slice(1);return _i&&Pi.length>0&&(zt[_i]=Pi.join(":").trim()),zt},{})),wt}function Si(at){var St=at.getAttribute("data-prefix"),wt=at.getAttribute("data-icon"),zt=void 0!==at.innerText?at.innerText.trim():"",Xt=na(Ge(at));return Xt.prefix||(Xt.prefix=Sr()),St&&wt&&(Xt.prefix=St,Xt.iconName=wt),Xt.iconName&&Xt.prefix||(Xt.prefix&&zt.length>0&&(Xt.iconName=function Qn(at,St){return(Ni[at]||{})[St]}(Xt.prefix,at.innerText)||Sn(Xt.prefix,xi(at.innerText))),!Xt.iconName&&ye.autoFetchSvg&&at.firstChild&&at.firstChild.nodeType===Node.TEXT_NODE&&(Xt.iconName=at.firstChild.data)),Xt}function Gi(at){var St=Ae(at.attributes).reduce(function(Xt,pi){return"class"!==Xt.name&&"style"!==Xt.name&&(Xt[pi.name]=pi.value),Xt},{}),wt=at.getAttribute("title"),zt=at.getAttribute("data-fa-title-id");return ye.autoA11y&&(wt?St["aria-labelledby"]="".concat(ye.replacementClass,"-title-").concat(zt||et()):(St["aria-hidden"]="true",St.focusable="false")),St}function yr(at){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},wt=Si(at),zt=wt.iconName,Xt=wt.prefix,pi=wt.rest,_i=Gi(at),Pi=kr("parseNodeAttributes",{},at),zi=St.styleParser?At(at):[];return f({iconName:zt,title:at.getAttribute("title"),titleId:at.getAttribute("data-fa-title-id"),prefix:Xt,transform:nt,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:pi,styles:zi,attributes:_i}},Pi)}var Xa=Ui.styles;function Ca(at){var St="nest"===ye.autoReplaceSvg?yr(at,{styleParser:!1}):yr(at);return~St.extra.classes.indexOf(Dt)?Ur("generateLayersText",at,St):Ur("generateSvgReplacementMutation",at,St)}var pa=new Set;function Fi(at){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!y)return Promise.resolve();var wt=c.documentElement.classList,zt=function(un){return wt.add("".concat(ut,"-").concat(un))},Xt=function(un){return wt.remove("".concat(ut,"-").concat(un))},pi=ye.autoFetchSvg?pa:W.map(function(nn){return"fa-".concat(nn)}).concat(Object.keys(Xa));pi.includes("fa")||pi.push("fa");var _i=[".".concat(Dt,":not([").concat(j,"])")].concat(pi.map(function(nn){return".".concat(nn,":not([").concat(j,"])")})).join(", ");if(0===_i.length)return Promise.resolve();var Pi=[];try{Pi=Ae(at.querySelectorAll(_i))}catch(nn){}if(!(Pi.length>0))return Promise.resolve();zt("pending"),Xt("complete");var zi=Xn_begin("onTree"),ln=Pi.reduce(function(nn,un){try{var qn=Ca(un);qn&&nn.push(qn)}catch(rr){ce||"MissingIcon"===rr.name&&console.error(rr)}return nn},[]);return new Promise(function(nn,un){Promise.all(ln).then(function(qn){ci(qn,function(){zt("active"),zt("complete"),Xt("pending"),"function"==typeof St&&St(),zi(),nn()})}).catch(function(qn){zi(),un(qn)})})}function Yn(at){var St=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Ca(at).then(function(wt){wt&&ci([wt],St)})}W.map(function(at){pa.add("fa-".concat(at))}),Object.keys(Ce[Te]).map(pa.add.bind(pa)),Object.keys(Ce[xe]).map(pa.add.bind(pa)),pa=S(pa);var Er=function(St){var wt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},zt=wt.transform,Xt=void 0===zt?nt:zt,pi=wt.symbol,_i=void 0!==pi&&pi,Pi=wt.mask,zi=void 0===Pi?null:Pi,ln=wt.maskId,nn=void 0===ln?null:ln,un=wt.title,qn=void 0===un?null:un,rr=wt.titleId,ca=void 0===rr?null:rr,ze=wt.classes,Se=void 0===ze?[]:ze,me=wt.attributes,qe=void 0===me?{}:me,ct=wt.styles,Pt=void 0===ct?{}:ct;if(St){var qt=St.prefix,ai=St.iconName,Oi=St.icon;return Nr(f({type:"icon"},St),function(){return Wn("beforeDOMElementCreation",{iconDefinition:St,params:wt}),ye.autoA11y&&(qn?qe["aria-labelledby"]="".concat(ye.replacementClass,"-title-").concat(ca||et()):(qe["aria-hidden"]="true",qe.focusable="false")),Ea({icons:{main:sa(Oi),mask:zi?sa(zi.icon):{found:!1,width:null,height:null,icon:{}}},prefix:qt,iconName:ai,transform:f(f({},nt),Xt),symbol:_i,title:qn,maskId:nn,titleId:ca,extra:{attributes:qe,styles:Pt,classes:Se}})})}},io={mixout:function(){return{icon:(at=Er,function(St){var wt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},zt=(St||{}).icon?St:lr(St||{}),Xt=wt.mask;return Xt&&(Xt=(Xt||{}).icon?Xt:lr(Xt||{})),at(zt,f(f({},wt),{},{mask:Xt}))})};var at},hooks:function(){return{mutationObserverCallbacks:function(wt){return wt.treeCallback=Fi,wt.nodeCallback=Yn,wt}}},provides:function(St){St.i2svg=function(wt){var zt=wt.node,pi=wt.callback;return Fi(void 0===zt?c:zt,void 0===pi?function(){}:pi)},St.generateSvgReplacementMutation=function(wt,zt){var Xt=zt.iconName,pi=zt.title,_i=zt.titleId,Pi=zt.prefix,zi=zt.transform,ln=zt.symbol,nn=zt.mask,un=zt.maskId,qn=zt.extra;return new Promise(function(rr,ca){Promise.all([oa(Xt,Pi),nn.iconName?oa(nn.iconName,nn.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(ze){var Se=D(ze,2);rr([wt,Ea({icons:{main:Se[0],mask:Se[1]},prefix:Pi,iconName:Xt,transform:zi,symbol:ln,maskId:un,title:pi,titleId:_i,extra:qn,watchable:!0})])}).catch(ca)})},St.generateAbstractIcon=function(wt){var ln,zt=wt.children,Xt=wt.attributes,pi=wt.main,_i=wt.transform,zi=Ct(wt.styles);return zi.length>0&&(Xt.style=zi),mi(_i)&&(ln=Ur("generateAbstractTransformGrouping",{main:pi,transform:_i,containerWidth:pi.width,iconWidth:pi.width})),zt.push(ln||pi.icon),{children:zt,attributes:Xt}}}},ms={mixout:function(){return{layer:function(wt){var zt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Xt=zt.classes,pi=void 0===Xt?[]:Xt;return Nr({type:"layer"},function(){Wn("beforeDOMElementCreation",{assembler:wt,params:zt});var _i=[];return wt(function(Pi){Array.isArray(Pi)?Pi.map(function(zi){_i=_i.concat(zi.abstract)}):_i=_i.concat(Pi.abstract)}),[{tag:"span",attributes:{class:["".concat(ye.cssPrefix,"-layers")].concat(S(pi)).join(" ")},children:_i}]})}}}},Aa={mixout:function(){return{counter:function(wt){var zt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Xt=zt.title,pi=void 0===Xt?null:Xt,_i=zt.classes,Pi=void 0===_i?[]:_i,zi=zt.attributes,ln=void 0===zi?{}:zi,nn=zt.styles,un=void 0===nn?{}:nn;return Nr({type:"counter",content:wt},function(){return Wn("beforeDOMElementCreation",{content:wt,params:zt}),xa({content:wt.toString(),title:pi,extra:{attributes:ln,styles:un,classes:["".concat(ye.cssPrefix,"-layers-counter")].concat(S(Pi))}})})}}}},Os={mixout:function(){return{text:function(wt){var zt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Xt=zt.transform,pi=void 0===Xt?nt:Xt,_i=zt.title,Pi=void 0===_i?null:_i,zi=zt.classes,ln=void 0===zi?[]:zi,nn=zt.attributes,un=void 0===nn?{}:nn,qn=zt.styles,rr=void 0===qn?{}:qn;return Nr({type:"text",content:wt},function(){return Wn("beforeDOMElementCreation",{content:wt,params:zt}),ka({content:wt,transform:f(f({},nt),pi),title:Pi,extra:{attributes:un,styles:rr,classes:["".concat(ye.cssPrefix,"-layers-text")].concat(S(ln))}})})}}},provides:function(St){St.generateLayersText=function(wt,zt){var Xt=zt.title,pi=zt.transform,_i=zt.extra,Pi=null,zi=null;if(n){var ln=parseInt(getComputedStyle(wt).fontSize,10),nn=wt.getBoundingClientRect();Pi=nn.width/ln,zi=nn.height/ln}return ye.autoA11y&&!Xt&&(_i.attributes["aria-hidden"]="true"),Promise.resolve([wt,ka({content:wt.innerHTML,width:Pi,height:zi,transform:pi,title:Xt,extra:_i,watchable:!0})])}}},Ps=new RegExp('"',"ug"),Vs=[1105920,1112319];function Us(at,St){var wt="".concat("data-fa-pseudo-element-pending").concat(St.replace(":","-"));return new Promise(function(zt,Xt){if(null!==at.getAttribute(wt))return zt();var _i=Ae(at.children).filter(function(Oi){return Oi.getAttribute(Ve)===St})[0],Pi=u.getComputedStyle(at,St),zi=Pi.getPropertyValue("font-family").match(di),ln=Pi.getPropertyValue("font-weight"),nn=Pi.getPropertyValue("content");if(_i&&!zi)return at.removeChild(_i),zt();if(zi&&"none"!==nn&&""!==nn){var un=Pi.getPropertyValue("content"),qn=~["Sharp"].indexOf(zi[2])?xe:Te,rr=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(zi[2])?fe[qn][zi[2].toLowerCase()]:Yt[qn][ln],ca=function Bs(at){var St=at.replace(Ps,""),wt=function Ti(at,St){var Xt,wt=at.length,zt=at.charCodeAt(St);return zt>=55296&&zt<=56319&&wt>St+1&&(Xt=at.charCodeAt(St+1))>=56320&&Xt<=57343?1024*(zt-55296)+Xt-56320+65536:zt}(St,0),zt=wt>=Vs[0]&&wt<=Vs[1],Xt=2===St.length&&St[0]===St[1];return{value:xi(Xt?St[0]:St),isSecondary:zt||Xt}}(un),ze=ca.value,Se=ca.isSecondary,me=zi[0].startsWith("FontAwesome"),qe=Sn(rr,ze),ct=qe;if(me){var Pt=function va(at){var St=Dn[at],wt=Sn("fas",at);return St||(wt?{prefix:"fas",iconName:wt}:null)||{prefix:null,iconName:null}}(ze);Pt.iconName&&Pt.prefix&&(qe=Pt.iconName,rr=Pt.prefix)}if(!qe||Se||_i&&_i.getAttribute(J)===rr&&_i.getAttribute(Ie)===ct)zt();else{at.setAttribute(wt,ct),_i&&at.removeChild(_i);var qt=function Bn(){return{iconName:null,title:null,titleId:null,prefix:null,transform:nt,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),ai=qt.extra;ai.attributes[Ve]=St,oa(qe,rr).then(function(Oi){var an=Ea(f(f({},qt),{},{icons:{main:Oi,mask:{prefix:null,iconName:null,rest:[]}},prefix:rr,iconName:ct,extra:ai,watchable:!0})),On=c.createElement("svg");"::before"===St?at.insertBefore(On,at.firstChild):at.appendChild(On),On.outerHTML=an.map(function(Cn){return _t(Cn)}).join("\n"),at.removeAttribute(wt),zt()}).catch(Xt)}}else zt()})}function ss(at){return Promise.all([Us(at,"::before"),Us(at,"::after")])}function Zr(at){return!(at.parentNode===document.head||~we.indexOf(at.tagName.toUpperCase())||at.getAttribute(Ve)||at.parentNode&&"svg"===at.parentNode.tagName)}function Na(at){if(y)return new Promise(function(St,wt){var zt=Ae(at.querySelectorAll("*")).filter(Zr).map(ss),Xt=Xn_begin("searchPseudoElements");jt(),Promise.all(zt).then(function(){Xt(),ki(),St()}).catch(function(){Xt(),ki(),wt()})})}var oe=!1,Ke=function(St){return St.toLowerCase().split(" ").reduce(function(zt,Xt){var pi=Xt.toLowerCase().split("-"),_i=pi[0],Pi=pi.slice(1).join("-");if(_i&&"h"===Pi)return zt.flipX=!0,zt;if(_i&&"v"===Pi)return zt.flipY=!0,zt;if(Pi=parseFloat(Pi),isNaN(Pi))return zt;switch(_i){case"grow":zt.size=zt.size+Pi;break;case"shrink":zt.size=zt.size-Pi;break;case"left":zt.x=zt.x-Pi;break;case"right":zt.x=zt.x+Pi;break;case"up":zt.y=zt.y-Pi;break;case"down":zt.y=zt.y+Pi;break;case"rotate":zt.rotate=zt.rotate+Pi}return zt},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},Vt={x:0,y:0,width:"100%",height:"100%"};function ni(at){var St=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return at.attributes&&(at.attributes.fill||St)&&(at.attributes.fill="black"),at}!function Wa(at,St){var wt=St.mixoutsTo;Jr=at,Xr={},Object.keys(Sa).forEach(function(zt){-1===fa.indexOf(zt)&&delete Sa[zt]}),Jr.forEach(function(zt){var Xt=zt.mixout?zt.mixout():{};if(Object.keys(Xt).forEach(function(_i){"function"==typeof Xt[_i]&&(wt[_i]=Xt[_i]),"object"===M(Xt[_i])&&Object.keys(Xt[_i]).forEach(function(Pi){wt[_i]||(wt[_i]={}),wt[_i][Pi]=Xt[_i][Pi]})}),zt.hooks){var pi=zt.hooks();Object.keys(pi).forEach(function(_i){Xr[_i]||(Xr[_i]=[]),Xr[_i].push(pi[_i])})}zt.provides&&zt.provides(Sa)})}([Zi,io,ms,Aa,Os,{hooks:function(){return{mutationObserverCallbacks:function(wt){return wt.pseudoElementsCallback=Na,wt}}},provides:function(St){St.pseudoElements2svg=function(wt){var zt=wt.node;ye.searchPseudoElements&&Na(void 0===zt?c:zt)}}},{mixout:function(){return{dom:{unwatch:function(){jt(),oe=!0}}}},hooks:function(){return{bootstrap:function(){We(kr("mutationObserverCallbacks",{}))},noAuto:function(){!function Fe(){!je||je.disconnect()}()},watch:function(wt){var zt=wt.observeMutationsRoot;oe?ki():We(kr("mutationObserverCallbacks",{observeMutationsRoot:zt}))}}}},{mixout:function(){return{parse:{transform:function(wt){return Ke(wt)}}}},hooks:function(){return{parseNodeAttributes:function(wt,zt){var Xt=zt.getAttribute("data-fa-transform");return Xt&&(wt.transform=Ke(Xt)),wt}}},provides:function(St){St.generateAbstractTransformGrouping=function(wt){var zt=wt.main,Xt=wt.transform,_i=wt.iconWidth,Pi={transform:"translate(".concat(wt.containerWidth/2," 256)")},zi="translate(".concat(32*Xt.x,", ").concat(32*Xt.y,") "),ln="scale(".concat(Xt.size/16*(Xt.flipX?-1:1),", ").concat(Xt.size/16*(Xt.flipY?-1:1),") "),nn="rotate(".concat(Xt.rotate," 0 0)"),rr={outer:Pi,inner:{transform:"".concat(zi," ").concat(ln," ").concat(nn)},path:{transform:"translate(".concat(_i/2*-1," -256)")}};return{tag:"g",attributes:f({},rr.outer),children:[{tag:"g",attributes:f({},rr.inner),children:[{tag:zt.icon.tag,children:zt.icon.children,attributes:f(f({},zt.icon.attributes),rr.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(wt,zt){var Xt=zt.getAttribute("data-fa-mask"),pi=Xt?na(Xt.split(" ").map(function(_i){return _i.trim()})):{prefix:null,iconName:null,rest:[]};return pi.prefix||(pi.prefix=Sr()),wt.mask=pi,wt.maskId=zt.getAttribute("data-fa-mask-id"),wt}}},provides:function(St){St.generateAbstractMask=function(wt){var at,zt=wt.children,Xt=wt.attributes,pi=wt.main,_i=wt.mask,Pi=wt.maskId,nn=pi.icon,qn=_i.icon,rr=function Jt(at){var St=at.transform,zt=at.iconWidth,Xt={transform:"translate(".concat(at.containerWidth/2," 256)")},pi="translate(".concat(32*St.x,", ").concat(32*St.y,") "),_i="scale(".concat(St.size/16*(St.flipX?-1:1),", ").concat(St.size/16*(St.flipY?-1:1),") "),Pi="rotate(".concat(St.rotate," 0 0)");return{outer:Xt,inner:{transform:"".concat(pi," ").concat(_i," ").concat(Pi)},path:{transform:"translate(".concat(zt/2*-1," -256)")}}}({transform:wt.transform,containerWidth:_i.width,iconWidth:pi.width}),ca={tag:"rect",attributes:f(f({},Vt),{},{fill:"white"})},ze=nn.children?{children:nn.children.map(ni)}:{},Se={tag:"g",attributes:f({},rr.inner),children:[ni(f({tag:nn.tag,attributes:f(f({},nn.attributes),rr.path)},ze))]},me={tag:"g",attributes:f({},rr.outer),children:[Se]},qe="mask-".concat(Pi||et()),ct="clip-".concat(Pi||et()),Pt={tag:"mask",attributes:f(f({},Vt),{},{id:qe,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[ca,me]},qt={tag:"defs",children:[{tag:"clipPath",attributes:{id:ct},children:(at=qn,"g"===at.tag?at.children:[at])},Pt]};return zt.push(qt,{tag:"rect",attributes:f({fill:"currentColor","clip-path":"url(#".concat(ct,")"),mask:"url(#".concat(qe,")")},Vt)}),{children:zt,attributes:Xt}}}},{provides:function(St){var wt=!1;u.matchMedia&&(wt=u.matchMedia("(prefers-reduced-motion: reduce)").matches),St.missingIconAbstract=function(){var zt=[],Xt={fill:"currentColor"},pi={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};zt.push({tag:"path",attributes:f(f({},Xt),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var _i=f(f({},pi),{},{attributeName:"opacity"}),Pi={tag:"circle",attributes:f(f({},Xt),{},{cx:"256",cy:"364",r:"28"}),children:[]};return wt||Pi.children.push({tag:"animate",attributes:f(f({},pi),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:f(f({},_i),{},{values:"1;0;1;1;0;1;"})}),zt.push(Pi),zt.push({tag:"path",attributes:f(f({},Xt),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:wt?[]:[{tag:"animate",attributes:f(f({},_i),{},{values:"1;0;0;0;0;1;"})}]}),wt||zt.push({tag:"path",attributes:f(f({},Xt),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:f(f({},_i),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:zt}}}},{hooks:function(){return{parseNodeAttributes:function(wt,zt){var Xt=zt.getAttribute("data-fa-symbol");return wt.symbol=null!==Xt&&(""===Xt||Xt),wt}}}}],{mixoutsTo:cr});var ar=cr.parse,la=cr.icon,Gn=p(2313);const br=["*"],Ss=at=>{const St={"fa-spin":at.spin,"fa-pulse":at.pulse,"fa-fw":at.fixedWidth,"fa-border":at.border,"fa-inverse":at.inverse,"fa-layers-counter":at.counter,"fa-flip-horizontal":"horizontal"===at.flip||"both"===at.flip,"fa-flip-vertical":"vertical"===at.flip||"both"===at.flip,[`fa-${at.size}`]:null!==at.size,[`fa-rotate-${at.rotate}`]:null!==at.rotate,[`fa-pull-${at.pull}`]:null!==at.pull,[`fa-stack-${at.stackItemSize}`]:null!=at.stackItemSize};return Object.keys(St).map(wt=>St[wt]?wt:null).filter(wt=>wt)};let gs=(()=>{class at{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null}}return at.\u0275fac=function(wt){return new(wt||at)},at.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"}),at})(),_s=(()=>{class at{constructor(){this.definitions={}}addIcons(...wt){for(const zt of wt){zt.prefix in this.definitions||(this.definitions[zt.prefix]={}),this.definitions[zt.prefix][zt.iconName]=zt;for(const Xt of zt.icon[2])"string"==typeof Xt&&(this.definitions[zt.prefix][Xt]=zt)}}addIconPacks(...wt){for(const zt of wt){const Xt=Object.keys(zt).map(pi=>zt[pi]);this.addIcons(...Xt)}}getIconDefinition(wt,zt){return wt in this.definitions&&zt in this.definitions[wt]?this.definitions[wt][zt]:null}}return at.\u0275fac=function(wt){return new(wt||at)},at.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"}),at})(),cn=(()=>{class at{constructor(){this.stackItemSize="1x"}ngOnChanges(wt){if("size"in wt)throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')}}return at.\u0275fac=function(wt){return new(wt||at)},at.\u0275dir=t.lG2({type:at,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},features:[t.TTD]}),at})(),xn=(()=>{class at{constructor(wt,zt){this.renderer=wt,this.elementRef=zt}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(wt){"size"in wt&&(null!=wt.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${wt.size.currentValue}`),null!=wt.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${wt.size.previousValue}`))}}return at.\u0275fac=function(wt){return new(wt||at)(t.Y36(t.Qsj),t.Y36(t.SBq))},at.\u0275cmp=t.Xpm({type:at,selectors:[["fa-stack"]],inputs:{size:"size"},features:[t.TTD],ngContentSelectors:br,decls:1,vars:0,template:function(wt,zt){1&wt&&(t.F$t(),t.Hsn(0))},encapsulation:2}),at})(),Tn=(()=>{class at{constructor(wt,zt,Xt,pi,_i){this.sanitizer=wt,this.config=zt,this.iconLibrary=Xt,this.stackItem=pi,this.classes=[],null!=_i&&null==pi&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(wt){if(null==this.icon&&null==this.config.fallbackIcon)return(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})();let zt=null;if(zt=null==this.icon?this.config.fallbackIcon:this.icon,wt){const Xt=this.findIconDefinition(zt);if(null!=Xt){const pi=this.buildParams();this.renderIcon(Xt,pi)}}}render(){this.ngOnChanges({})}findIconDefinition(wt){const zt=((at,St)=>(at=>void 0!==at.prefix&&void 0!==at.iconName)(at)?at:Array.isArray(at)&&2===at.length?{prefix:at[0],iconName:at[1]}:"string"==typeof at?{prefix:St,iconName:at}:void 0)(wt,this.config.defaultPrefix);if("icon"in zt)return zt;const Xt=this.iconLibrary.getIconDefinition(zt.prefix,zt.iconName);return null!=Xt?Xt:((at=>{throw new Error(`Could not find icon with iconName=${at.iconName} and prefix=${at.prefix} in the icon library.`)})(zt),null)}buildParams(){const wt={flip:this.flip,spin:this.spin,pulse:this.pulse,border:this.border,inverse:this.inverse,size:this.size||null,pull:this.pull||null,rotate:this.rotate||null,fixedWidth:"boolean"==typeof this.fixedWidth?this.fixedWidth:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize:null},zt="string"==typeof this.transform?ar.transform(this.transform):this.transform;return{title:this.title,transform:zt,classes:[...Ss(wt),...this.classes],mask:null!=this.mask?this.findIconDefinition(this.mask):null,styles:null!=this.styles?this.styles:{},symbol:this.symbol,attributes:{role:this.a11yRole}}}renderIcon(wt,zt){const Xt=la(wt,zt);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(Xt.html.join("\n"))}}return at.\u0275fac=function(wt){return new(wt||at)(t.Y36(Gn.H7),t.Y36(gs),t.Y36(_s),t.Y36(cn,8),t.Y36(xn,8))},at.\u0275cmp=t.Xpm({type:at,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(wt,zt){2&wt&&(t.Ikx("innerHTML",zt.renderedIconHTML,t.oJD),t.uIk("title",zt.title))},inputs:{icon:"icon",title:"title",spin:"spin",pulse:"pulse",mask:"mask",styles:"styles",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",classes:"classes",transform:"transform",a11yRole:"a11yRole"},features:[t.TTD],decls:0,vars:0,template:function(wt,zt){},encapsulation:2}),at})(),dr=(()=>{class at{}return at.\u0275fac=function(wt){return new(wt||at)},at.\u0275mod=t.oAB({type:at}),at.\u0275inj=t.cJS({}),at})()},2687:(Be,K,p)=>{"use strict";p.d(K,{Acd:()=>yo,Aq:()=>ml,B$L:()=>Vt,BDt:()=>P4,CgH:()=>us,CvI:()=>y4,DL8:()=>h9,FJU:()=>In,FVb:()=>Wl,FlN:()=>g4,FpQ:()=>s4,HLz:()=>W7,KOR:()=>Ul,Krp:()=>M0,Mdf:()=>wr,N2j:()=>sr,NBC:()=>y_,OS1:()=>R1,Psp:()=>Ad,Pyt:()=>Ze,Sbq:()=>it,SoD:()=>sa,Ssp:()=>w9,SuH:()=>Ud,TmZ:()=>f_,USL:()=>I_,Vei:()=>u0,Vfw:()=>r5,X5K:()=>Gh,XsY:()=>un,aj4:()=>p2,b7W:()=>Nf,byT:()=>qn,co4:()=>Of,d63:()=>p0,dLy:()=>e_,dT$:()=>T0,eHv:()=>C9,gNZ:()=>Mp,hkK:()=>Wt,hnx:()=>N9,kXW:()=>U5,kZ_:()=>p_,koM:()=>Vo,mh3:()=>W0,nNP:()=>Ig,q7m:()=>Bm,qO$:()=>G_,r8p:()=>Hg,sqG:()=>em,vqe:()=>t9,wn1:()=>q7,wyP:()=>B3,xf3:()=>Jn});var it={prefix:"fas",iconName:"angles-down",icon:[448,512,["angle-double-down"],"f103","M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7 361.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},Wt={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M352 128c0 70.7-57.3 128-128 128s-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},sr={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z"]},sa={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z"]},Vt={prefix:"fas",iconName:"unlock-keyhole",icon:[448,512,["unlock-alt"],"f13e","M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z"]},un={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M371.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L600.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S549.7-4.4 531.1 9.6L294.4 187.2c-24 18-38.2 46.1-38.4 76.1L371.3 367.1zm-19.6 25.4l-116-104.4C175.9 290.3 128 339.6 128 400c0 3.9 .2 7.8 .6 11.6c1.8 17.5-10.2 36.4-27.8 36.4H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H240c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},qn={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z"]},Wl={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 160c-44.2 0-80-35.8-80-80S99.8 0 144 0s80 35.8 80 80s-35.8 80-80 80zm368 0c-44.2 0-80-35.8-80-80s35.8-80 80-80s80 35.8 80 80s-35.8 80-80 80zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM416 224c0 53-43 96-96 96s-96-43-96-96s43-96 96-96s96 43 96 96zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z"]},ml={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c5.2-11.8 8-24.8 8-38.5c0-53-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zm223.1 298L373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5z"]},yo={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z"]},p2={prefix:"fas",iconName:"money-bill-wave",icon:[576,512,[],"f53a","M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z"]},Jn={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM344 152c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm96-24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zM344 408c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm104-24c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},Vo={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},B3={prefix:"fas",iconName:"window-restore",icon:[512,512,[],"f2d2","M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z"]},u0={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z"]},p0={prefix:"fas",iconName:"arrows-turn-right",icon:[512,512,[],"e4c0","M329.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L370.7 160H160c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C32 153.3 89.3 96 160 96H370.7L329.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L274.7 416H128c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H274.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},M0={prefix:"fas",iconName:"layer-group",icon:[576,512,[],"f5fd","M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z"]},Ad={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M96 96c-17.7 0-32 14.3-32 32s-14.3 32-32 32s-32-14.3-32-32C0 75 43 32 96 32h97c70.1 0 127 56.9 127 127c0 52.4-32.2 99.4-81 118.4l-63 24.5 0 18.1c0 17.7-14.3 32-32 32s-32-14.3-32-32V301.9c0-26.4 16.2-50.1 40.8-59.6l63-24.5C240 208.3 256 185 256 159c0-34.8-28.2-63-63-63H96zm48 384c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40z"]},T0={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"]},R1={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M304 240V16.6c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16H304zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4V288L412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288H558.4z"]},Ul={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"]},Ud={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M224 32H64C46.3 32 32 46.3 32 64v64c0 17.7 14.3 32 32 32H441.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H288c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 256c0-17.7-14.3-32-32-32H288V192H224v32H70.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H448c17.7 0 32-14.3 32-32V256zM288 480V384H224v96c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},us={prefix:"fas",iconName:"screwdriver-wrench",icon:[512,512,["tools"],"f7d9","M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM104 432c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z"]},Gh={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 336c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},W0={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM80 456c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z"]},s4={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M416 256s96-96 96-160c0-53-43-96-96-96s-96 43-96 96c0 29.4 20.2 65.5 42.1 96H320c-53 0-96 43-96 96s43 96 96 96h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H188.6c-6.2 9.6-12.6 18.8-19 27.2c-10.7 14.2-21.3 26.9-30 36.8H416c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h96zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM149.9 448c21.9-30.5 42.1-66.6 42.1-96c0-53-43-96-96-96s-96 43-96 96c0 64 96 160 96 160s3.5-3.5 9.2-9.6c.4-.4 .7-.8 1.1-1.2c3.3-3.5 7.1-7.8 11.4-12.8c.2-.2 .4-.4 .6-.6c9.4-10.8 20.7-24.6 31.6-39.8zM96 384c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},wr={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"]},Mp={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 256c-70.7 0-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128s-57.3 128-128 128zm-45.7 48h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V454.8c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9V218.2zm92.1 133.5c0-26.5-21.5-48-48.1-48s-48.1 21.5-48.1 48s21.5 48 48.1 48s48.1-21.5 48.1-48z"]},r5={prefix:"fas",iconName:"angles-up",icon:[448,512,["angle-double-up"],"f102","M246.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 109.3 361.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 301.3 361.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},em={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"]},g4={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M112 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32V224v64V416c0 17.7-14.3 32-32 32H144c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32h48V96zm416 0v32h48c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H528v32c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z"]},y4={prefix:"fas",iconName:"money-bill-1",icon:[576,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM400 256c0 61.9-50.1 112-112 112s-112-50.1-112-112s50.1-112 112-112s112 50.1 112 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z"]},Of=y4,Nf={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80z"]},U5={prefix:"fas",iconName:"network-wired",icon:[640,512,[],"f6ff","M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z"]},Bm={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zM432 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"]},P4={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288H175.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5L349.4 44.6z"]},Ze={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[512,512,[],"e4c1","M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM512 384c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM64 64c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64S28.7 64 64 64z"]},In={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0S96 57.3 96 128s57.3 128 128 128zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},W7={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM96 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm352-32c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},Ig={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"]},q7={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z"]},e_={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.2 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z"]},f_={prefix:"fas",iconName:"diagram-project",icon:[576,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z"]},p_={prefix:"fas",iconName:"copy",icon:[512,512,[],"f0c5","M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z"]},Hg={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"]},y_={prefix:"fas",iconName:"xmark",icon:[320,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z"]},I_={prefix:"fas",iconName:"percent",icon:[384,512,[62101,62785,"percentage"],"25","M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128c0-35.3-28.7-64-64-64S0 92.7 0 128s28.7 64 64 64s64-28.7 64-64zM384 384c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"]},G_={prefix:"fas",iconName:"clock-rotate-left",icon:[512,512,["history"],"f1da","M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z"]},t9={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z"]},h9={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zM125.8 177.3L51.1 320H204.9L130.2 177.3c-.4-.8-1.3-1.3-2.2-1.3s-1.7 .5-2.2 1.3zM128 128c18.8 0 36 10.4 44.7 27l77.8 148.5c3.1 5.8 6.1 14 5.5 23.8c-.7 12.1-4.8 35.2-24.8 55.1C210.9 402.6 178.2 416 128 416s-82.9-13.4-103.2-33.5c-20-20-24.2-43-24.8-55.1c-.6-9.8 2.5-18 5.5-23.8L83.3 155c8.7-16.6 25.9-27 44.7-27zm384 48c-.9 0-1.7 .5-2.2 1.3L435.1 320H588.9L514.2 177.3c-.4-.8-1.3-1.3-2.2-1.3zm-44.7-21c8.7-16.6 25.9-27 44.7-27s36 10.4 44.7 27l77.8 148.5c3.1 5.8 6.1 14 5.5 23.8c-.7 12.1-4.8 35.2-24.8 55.1C594.9 402.6 562.2 416 512 416s-82.9-13.4-103.2-33.5c-20-20-24.2-43-24.8-55.1c-.6-9.8 2.5-18 5.5-23.8L467.3 155z"]},C9={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32z"]},w9={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z"]},N9={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 256c-70.7 0-128-57.3-128-128S153.3 0 224 0s128 57.3 128 128s-57.3 128-128 128zm-45.7 48h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM640 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM496 288c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z"]}},6642:(Be,K,p)=>{"use strict";p.d(K,{eX:()=>he,sQ:()=>Nt,GW:()=>i,l4:()=>be});var t=p(5620),e=p(6451),f=p(8306),M=p(7579),a=p(515),C=p(9646),d=p(2843),R=p(576);class L{constructor(ke,de,ye){this.kind=ke,this.value=de,this.error=ye,this.hasValue="N"===ke}observe(ke){return w(this,ke)}do(ke,de,ye){const{kind:ht,value:mt,error:Ft}=this;return"N"===ht?null==ke?void 0:ke(mt):"E"===ht?null==de?void 0:de(Ft):null==ye?void 0:ye()}accept(ke,de,ye){var ht;return(0,R.m)(null===(ht=ke)||void 0===ht?void 0:ht.next)?this.observe(ke):this.do(ke,de,ye)}toObservable(){const{kind:ke,value:de,error:ye}=this,ht="N"===ke?(0,C.of)(de):"E"===ke?(0,d._)(()=>ye):"C"===ke?a.E:0;if(!ht)throw new TypeError(`Unexpected notification kind ${ke}`);return ht}static createNext(ke){return new L("N",ke)}static createError(ke){return new L("E",void 0,ke)}static createComplete(){return L.completeNotification}}function w(Re,ke){var de,ye,ht;const{kind:mt,value:Ft,error:nt}=Re;if("string"!=typeof mt)throw new TypeError('Invalid notification, missing "kind"');"N"===mt?null===(de=ke.next)||void 0===de||de.call(ke,Ft):"E"===mt?null===(ye=ke.error)||void 0===ye||ye.call(ke,nt):null===(ht=ke.complete)||void 0===ht||ht.call(ke)}L.completeNotification=new L("C");var D=p(4482),S=p(5403),E=p(8421);function B(Re,ke,de,ye){return(0,D.e)((ht,mt)=>{let Ft;ke&&"function"!=typeof ke?({duration:de,element:Ft,connector:ye}=ke):Ft=ke;const nt=new Map,He=lt=>{nt.forEach(lt),lt(mt)},rt=lt=>He(Ct=>Ct.error(lt));let et=0,Ae=!1;const Ge=new S.Q(mt,lt=>{try{const Ct=Re(lt);let mi=nt.get(Ct);if(!mi){nt.set(Ct,mi=ye?ye():new M.x);const Jt=function ot(lt,Ct){const mi=new f.y(Jt=>{et++;const $t=Ct.subscribe(Jt);return()=>{$t.unsubscribe(),0==--et&&Ae&&Ge.unsubscribe()}});return mi.key=lt,mi}(Ct,mi);if(mt.next(Jt),de){const $t=(0,S.x)(mi,()=>{mi.complete(),null==$t||$t.unsubscribe()},void 0,void 0,()=>nt.delete(Ct));Ge.add((0,E.Xf)(de(Jt)).subscribe($t))}}mi.next(Ft?Ft(lt):lt)}catch(Ct){rt(Ct)}},()=>He(lt=>lt.complete()),rt,()=>nt.clear(),()=>(Ae=!0,0===et));ht.subscribe(Ge)})}var Z=p(4004);function Y(Re,ke){return ke?de=>de.pipe(Y((ye,ht)=>(0,E.Xf)(Re(ye,ht)).pipe((0,Z.U)((mt,Ft)=>ke(ye,mt,ht,Ft))))):(0,D.e)((de,ye)=>{let ht=0,mt=null,Ft=!1;de.subscribe((0,S.x)(ye,nt=>{mt||(mt=(0,S.x)(ye,void 0,()=>{mt=null,Ft&&ye.complete()}),(0,E.Xf)(Re(nt,ht++)).subscribe(mt))},()=>{Ft=!0,!mt&&ye.complete()}))})}var ee=p(8502),ue=p(262),ie=p(9300),re=p(5577),ge=p(5698),q=p(5e3);const _e={dispatch:!0,useEffectsErrorHandler:!0},x="__@ngrx/effects_create__";function i(Re,ke){const de=Re(),ye=Object.assign(Object.assign({},_e),ke);return Object.defineProperty(de,x,{value:ye}),de}function r(Re){return Object.getOwnPropertyNames(Re).filter(ye=>!(!Re[ye]||!Re[ye].hasOwnProperty(x))&&Re[ye][x].hasOwnProperty("dispatch")).map(ye=>Object.assign({propertyName:ye},Re[ye][x]))}function u(Re){return Object.getPrototypeOf(Re)}const c="__@ngrx/effects__";function T(Re){return(0,t.qC)(n,u)(Re)}function n(Re){return function I(Re){return Re.constructor.hasOwnProperty(c)}(Re)?Re.constructor[c]:[]}function N(Re,ke,de){const ye=u(Re).constructor.name,ht=function V(Re){return[T,r].reduce((de,ye)=>de.concat(ye(Re)),[])}(Re).map(({propertyName:mt,dispatch:Ft,useEffectsErrorHandler:nt})=>{const He="function"==typeof Re[mt]?Re[mt]():Re[mt],rt=nt?de(He,ke):He;return!1===Ft?rt.pipe((0,ee.l)()):rt.pipe(function k(){return(0,D.e)((Re,ke)=>{Re.subscribe((0,S.x)(ke,de=>{ke.next(L.createNext(de))},()=>{ke.next(L.createComplete()),ke.complete()},de=>{ke.next(L.createError(de)),ke.complete()}))})}()).pipe((0,Z.U)(Ae=>({effect:Re[mt],notification:Ae,propertyName:mt,sourceName:ye,sourceInstance:Re})))});return(0,e.T)(...ht)}function X(Re,ke,de=10){return Re.pipe((0,ue.K)(ye=>(ke&&ke.handleError(ye),de<=1?Re:X(Re,ke,de-1))))}let he=(()=>{class Re extends f.y{constructor(de){super(),de&&(this.source=de)}lift(de){const ye=new Re;return ye.source=this,ye.operator=de,ye}}return Re.\u0275fac=function(de){return new(de||Re)(q.LFG(t.Y$))},Re.\u0275prov=q.Yz7({token:Re,factory:Re.\u0275fac}),Re})();function be(...Re){return(0,ie.h)(ke=>Re.some(de=>"string"==typeof de?de===ke.type:de.type===ke.type))}function we(Re){return ce(Re,"ngrxOnInitEffects")}function ce(Re,ke){return Re&&ke in Re&&"function"==typeof Re[ke]}const Te=new q.OlP("@ngrx/effects Internal Root Guard"),xe=new q.OlP("@ngrx/effects User Provided Effects"),W=new q.OlP("@ngrx/effects Internal Root Effects"),te=new q.OlP("@ngrx/effects Root Effects"),Ce=new q.OlP("@ngrx/effects Internal Feature Effects"),fe=new q.OlP("@ngrx/effects Feature Effects"),Q=new q.OlP("@ngrx/effects Effects Error Handler");let ft=(()=>{class Re extends M.x{constructor(de,ye){super(),this.errorHandler=de,this.effectsErrorHandler=ye}addEffects(de){this.next(de)}toActions(){return this.pipe(B(u),(0,re.z)(de=>de.pipe(B(tt))),(0,re.z)(de=>{const ye=de.pipe(Y(mt=>function Dt(Re,ke){return de=>{const ye=N(de,Re,ke);return function ut(Re){return ce(Re,"ngrxOnRunEffects")}(de)?de.ngrxOnRunEffects(ye):ye}}(this.errorHandler,this.effectsErrorHandler)(mt)),(0,Z.U)(mt=>(function Pe(Re,ke){if("N"===Re.notification.kind){const de=Re.notification.value;!function Ee(Re){return"function"!=typeof Re&&Re&&Re.type&&"string"==typeof Re.type}(de)&&ke.handleError(new Error(`Effect ${function j({propertyName:Re,sourceInstance:ke,sourceName:de}){const ye="function"==typeof ke[Re];return`"${de}.${String(Re)}${ye?"()":""}"`}(Re)} dispatched an invalid action: ${function Ve(Re){try{return JSON.stringify(Re)}catch(ke){return Re}}(de)}`))}}(mt,this.errorHandler),mt.notification)),(0,ie.h)(mt=>"N"===mt.kind&&null!=mt.value),function ae(){return(0,D.e)((Re,ke)=>{Re.subscribe((0,S.x)(ke,de=>w(de,ke)))})}()),ht=de.pipe((0,ge.q)(1),(0,ie.h)(we),(0,Z.U)(mt=>mt.ngrxOnInitEffects()));return(0,e.T)(ye,ht)}))}}return Re.\u0275fac=function(de){return new(de||Re)(q.LFG(q.qLn),q.LFG(Q))},Re.\u0275prov=q.Yz7({token:Re,factory:Re.\u0275fac}),Re})();function tt(Re){return function J(Re){return ce(Re,"ngrxOnIdentifyEffects")}(Re)?Re.ngrxOnIdentifyEffects():""}let di=(()=>{class Re{constructor(de,ye){this.effectSources=de,this.store=ye,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}}return Re.\u0275fac=function(de){return new(de||Re)(q.LFG(ft),q.LFG(t.yh))},Re.\u0275prov=q.Yz7({token:Re,factory:Re.\u0275fac}),Re})();const Yt="@ngrx/effects/init";(0,t.PH)(Yt);let ui=(()=>{class Re{constructor(de,ye,ht,mt,Ft,nt,He){this.sources=de,ye.start(),mt.forEach(rt=>de.addEffects(rt)),ht.dispatch({type:Yt})}addEffects(de){this.sources.addEffects(de)}}return Re.\u0275fac=function(de){return new(de||Re)(q.LFG(ft),q.LFG(di),q.LFG(t.yh),q.LFG(te),q.LFG(t.cr,8),q.LFG(t.CK,8),q.LFG(Te,8))},Re.\u0275mod=q.oAB({type:Re}),Re.\u0275inj=q.cJS({}),Re})(),Ot=(()=>{class Re{constructor(de,ye,ht,mt){ye.forEach(Ft=>Ft.forEach(nt=>de.addEffects(nt)))}}return Re.\u0275fac=function(de){return new(de||Re)(q.LFG(ui),q.LFG(fe),q.LFG(t.cr,8),q.LFG(t.CK,8))},Re.\u0275mod=q.oAB({type:Re}),Re.\u0275inj=q.cJS({}),Re})(),Nt=(()=>{class Re{static forFeature(de=[]){return{ngModule:Ot,providers:[de,{provide:Ce,multi:!0,useValue:de},{provide:xe,multi:!0,useValue:[]},{provide:fe,multi:!0,useFactory:gt,deps:[q.zs3,Ce,xe]}]}}static forRoot(de=[]){return{ngModule:ui,providers:[{provide:Q,useValue:X},di,ft,he,de,{provide:W,useValue:[de]},{provide:Te,useFactory:bt,deps:[[di,new q.FiY,new q.tp0],[W,new q.PiD]]},{provide:xe,multi:!0,useValue:[]},{provide:te,useFactory:gt,deps:[q.zs3,W,xe]}]}}}return Re.\u0275fac=function(de){return new(de||Re)},Re.\u0275mod=q.oAB({type:Re}),Re.\u0275inj=q.cJS({}),Re})();function gt(Re,ke,de){const ye=[];for(const ht of ke)ye.push(...ht);for(const ht of de)ye.push(...ht);return function it(Re,ke){return ke.map(de=>Re.get(de))}(Re,ye)}function bt(Re,ke){if((1!==ke.length||0!==ke[0].length)&&Re)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9565:(__unused_webpack___webpack_module__,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{FT:()=>StoreDevtoolsModule});var _angular_core__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(5e3),_ngrx_store__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(5620),rxjs__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(515),rxjs__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(8306),rxjs__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(9646),rxjs__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(6451),rxjs__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(233),rxjs__WEBPACK_IMPORTED_MODULE_19__=__webpack_require__(4707),rxjs_operators__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(3099),rxjs_operators__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(9300),rxjs_operators__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(4004),rxjs_operators__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(4351),rxjs_operators__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(7414),rxjs_operators__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(8372),rxjs_operators__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(262),rxjs_operators__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(5698),rxjs_operators__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(2722),rxjs_operators__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(3900),rxjs_operators__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(5684),rxjs_operators__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(5363),rxjs_operators__WEBPACK_IMPORTED_MODULE_20__=__webpack_require__(1365),rxjs_operators__WEBPACK_IMPORTED_MODULE_21__=__webpack_require__(5026);class StoreDevtoolsConfig{constructor(){this.maxAge=!1}}const STORE_DEVTOOLS_CONFIG=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Options"),INITIAL_OPTIONS=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Initial Config");function noMonitor(){return null}const DEFAULT_NAME="NgRx Store DevTools";function createConfig(Be){const K={maxAge:!1,monitor:noMonitor,actionSanitizer:void 0,stateSanitizer:void 0,name:DEFAULT_NAME,serialize:!1,logOnly:!1,autoPause:!1,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0}},p="function"==typeof Be?Be():Be,f=Object.assign({},K,{features:p.features||!!p.logOnly&&{pause:!0,export:!0,test:!0}||K.features},p);if(f.maxAge&&f.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${f.maxAge}`);return f}const PERFORM_ACTION="PERFORM_ACTION",REFRESH="REFRESH",RESET="RESET",ROLLBACK="ROLLBACK",COMMIT="COMMIT",SWEEP="SWEEP",TOGGLE_ACTION="TOGGLE_ACTION",SET_ACTIONS_ACTIVE="SET_ACTIONS_ACTIVE",JUMP_TO_STATE="JUMP_TO_STATE",JUMP_TO_ACTION="JUMP_TO_ACTION",IMPORT_STATE="IMPORT_STATE",LOCK_CHANGES="LOCK_CHANGES",PAUSE_RECORDING="PAUSE_RECORDING";class PerformAction{constructor(K,p){if(this.action=K,this.timestamp=p,this.type=PERFORM_ACTION,void 0===K.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class Refresh{constructor(){this.type=REFRESH}}class Reset{constructor(K){this.timestamp=K,this.type=RESET}}class Rollback{constructor(K){this.timestamp=K,this.type=ROLLBACK}}class Commit{constructor(K){this.timestamp=K,this.type=COMMIT}}class Sweep{constructor(){this.type=SWEEP}}class ToggleAction{constructor(K){this.id=K,this.type=TOGGLE_ACTION}}class SetActionsActive{constructor(K,p,t=!0){this.start=K,this.end=p,this.active=t,this.type=SET_ACTIONS_ACTIVE}}class JumpToState{constructor(K){this.index=K,this.type=JUMP_TO_STATE}}class JumpToAction{constructor(K){this.actionId=K,this.type=JUMP_TO_ACTION}}class ImportState{constructor(K){this.nextLiftedState=K,this.type=IMPORT_STATE}}class LockChanges{constructor(K){this.status=K,this.type=LOCK_CHANGES}}class PauseRecording{constructor(K){this.status=K,this.type=PAUSE_RECORDING}}function difference(Be,K){return Be.filter(p=>K.indexOf(p)<0)}function unliftState(Be){const{computedStates:K,currentStateIndex:p}=Be;if(p>=K.length){const{state:e}=K[K.length-1];return e}const{state:t}=K[p];return t}function unliftAction(Be){return Be.actionsById[Be.nextActionId-1]}function liftAction(Be){return new PerformAction(Be,+Date.now())}function sanitizeActions(Be,K){return Object.keys(K).reduce((p,t)=>{const e=Number(t);return p[e]=sanitizeAction(Be,K[e],e),p},{})}function sanitizeAction(Be,K,p){return Object.assign(Object.assign({},K),{action:Be(K.action,p)})}function sanitizeStates(Be,K){return K.map((p,t)=>({state:sanitizeState(Be,p.state,t),error:p.error}))}function sanitizeState(Be,K,p){return Be(K,p)}function shouldFilterActions(Be){return Be.predicate||Be.actionsSafelist||Be.actionsBlocklist}function filterLiftedState(Be,K,p,t){const e=[],f={},M=[];return Be.stagedActionIds.forEach((a,C)=>{const d=Be.actionsById[a];!d||C&&isActionFiltered(Be.computedStates[C],d,K,p,t)||(f[a]=d,e.push(a),M.push(Be.computedStates[C]))}),Object.assign(Object.assign({},Be),{stagedActionIds:e,actionsById:f,computedStates:M})}function isActionFiltered(Be,K,p,t,e){const f=p&&!p(Be,K.action),M=t&&!K.action.type.match(t.map(C=>escapeRegExp(C)).join("|")),a=e&&K.action.type.match(e.map(C=>escapeRegExp(C)).join("|"));return f||M||a}function escapeRegExp(Be){return Be.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}const INIT_ACTION={type:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.qg},RECOMPUTE="@ngrx/store-devtools/recompute",RECOMPUTE_ACTION={type:RECOMPUTE};function computeNextEntry(Be,K,p,t,e){if(t)return{state:p,error:"Interrupted by an error up the chain"};let M,f=p;try{f=Be(p,K)}catch(a){M=a.toString(),e.handleError(a)}return{state:f,error:M}}function recomputeStates(Be,K,p,t,e,f,M,a,C){if(K>=Be.length&&Be.length===f.length)return Be;const d=Be.slice(0,K),R=f.length-(C?1:0);for(let h=K;h-1?D:computeNextEntry(p,w,S,k,a);d.push(B)}return C&&d.push(Be[Be.length-1]),d}function liftInitialState(Be,K){return{monitorState:K(void 0,{}),nextActionId:1,actionsById:{0:liftAction(INIT_ACTION)},stagedActionIds:[0],skippedActionIds:[],committedState:Be,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}function liftReducerWith(Be,K,p,t,e={}){return f=>(M,a)=>{let{monitorState:C,actionsById:d,nextActionId:R,stagedActionIds:h,skippedActionIds:L,committedState:w,currentStateIndex:D,computedStates:S,isLocked:k,isPaused:E}=M||K;function B(ae){let ee=ae,ue=h.slice(1,ee+1);for(let ie=0;ie-1===ue.indexOf(ie)),h=[0,...h.slice(ee+1)],w=S[ee].state,S=S.slice(ee),D=D>ee?D-ee:0}function Z(){d={0:liftAction(INIT_ACTION)},R=1,h=[0],L=[],w=S[D].state,D=0,S=[]}M||(d=Object.create(d));let Y=0;switch(a.type){case LOCK_CHANGES:k=a.status,Y=1/0;break;case PAUSE_RECORDING:E=a.status,E?(h=[...h,R],d[R]=new PerformAction({type:"@ngrx/devtools/pause"},+Date.now()),R++,Y=h.length-1,S=S.concat(S[S.length-1]),D===h.length-2&&D++,Y=1/0):Z();break;case RESET:d={0:liftAction(INIT_ACTION)},R=1,h=[0],L=[],w=Be,D=0,S=[];break;case COMMIT:Z();break;case ROLLBACK:d={0:liftAction(INIT_ACTION)},R=1,h=[0],L=[],D=0,S=[];break;case TOGGLE_ACTION:{const{id:ae}=a;L=-1===L.indexOf(ae)?[ae,...L]:L.filter(ue=>ue!==ae),Y=h.indexOf(ae);break}case SET_ACTIONS_ACTIVE:{const{start:ae,end:ee,active:ue}=a,ie=[];for(let re=ae;ree.maxAge&&(S=recomputeStates(S,Y,f,w,d,h,L,p,E),B(h.length-e.maxAge),Y=1/0);break;case _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.wb:if(S.filter(ee=>ee.error).length>0)Y=0,e.maxAge&&h.length>e.maxAge&&(S=recomputeStates(S,Y,f,w,d,h,L,p,E),B(h.length-e.maxAge),Y=1/0);else{if(!E&&!k){D===h.length-1&&D++;const ee=R++;d[ee]=new PerformAction(a,+Date.now()),h=[...h,ee],Y=h.length-1,S=recomputeStates(S,Y,f,w,d,h,L,p,E)}S=S.map(ee=>Object.assign(Object.assign({},ee),{state:f(ee.state,RECOMPUTE_ACTION)})),D=h.length-1,e.maxAge&&h.length>e.maxAge&&B(h.length-e.maxAge),Y=1/0}break;default:Y=1/0}return S=recomputeStates(S,Y,f,w,d,h,L,p,E),C=t(C,a),{monitorState:C,actionsById:d,nextActionId:R,stagedActionIds:h,skippedActionIds:L,committedState:w,currentStateIndex:D,computedStates:S,isLocked:k,isPaused:E}}}let DevtoolsDispatcher=(()=>{class Be extends _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.UO{}return Be.\u0275fac=function(){let K;return function(t){return(K||(K=_angular_core__WEBPACK_IMPORTED_MODULE_0__.n5z(Be)))(t||Be)}}(),Be.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:Be,factory:Be.\u0275fac}),Be})();const ExtensionActionTypes={START:"START",DISPATCH:"DISPATCH",STOP:"STOP",ACTION:"ACTION"},REDUX_DEVTOOLS_EXTENSION=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Redux Devtools Extension");let DevtoolsExtension=(()=>{class DevtoolsExtension{constructor(Be,K,p){this.config=K,this.dispatcher=p,this.devtoolsExtension=Be,this.createActionStreams()}notify(Be,K){if(this.devtoolsExtension)if(Be.type===PERFORM_ACTION){if(K.isLocked||K.isPaused)return;const p=unliftState(K);if(shouldFilterActions(this.config)&&isActionFiltered(p,Be,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const t=this.config.stateSanitizer?sanitizeState(this.config.stateSanitizer,p,K.currentStateIndex):p,e=this.config.actionSanitizer?sanitizeAction(this.config.actionSanitizer,Be,K.nextActionId):Be;this.sendToReduxDevtools(()=>this.extensionConnection.send(e,t))}else{const p=Object.assign(Object.assign({},K),{stagedActionIds:K.stagedActionIds,actionsById:this.config.actionSanitizer?sanitizeActions(this.config.actionSanitizer,K.actionsById):K.actionsById,computedStates:this.config.stateSanitizer?sanitizeStates(this.config.stateSanitizer,K.computedStates):K.computedStates});this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,p,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new rxjs__WEBPACK_IMPORTED_MODULE_3__.y(Be=>{const K=this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=K,K.init(),K.subscribe(p=>Be.next(p)),K.unsubscribe}):rxjs__WEBPACK_IMPORTED_MODULE_2__.E}createActionStreams(){const Be=this.createChangesObservable().pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_4__.B)()),K=Be.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.START)),p=Be.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.STOP)),t=Be.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.DISPATCH),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(a=>this.unwrapAction(a.payload)),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.b)(a=>a.type===IMPORT_STATE?this.dispatcher.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(C=>C.type===_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.wb),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_8__.V)(1e3),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_9__.b)(1e3),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(()=>a),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_10__.K)(()=>(0,rxjs__WEBPACK_IMPORTED_MODULE_11__.of)(a)),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_12__.q)(1)):(0,rxjs__WEBPACK_IMPORTED_MODULE_11__.of)(a))),f=Be.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.ACTION),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(a=>this.unwrapAction(a.payload))).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p)),M=t.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p));this.start$=K.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p)),this.actions$=this.start$.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.w)(()=>f)),this.liftedActions$=this.start$.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.w)(()=>M))}unwrapAction(action){return"string"==typeof action?eval(`(${action})`):action}getExtensionConfig(Be){var K;const p={name:Be.name,features:Be.features,serialize:Be.serialize,autoPause:null!==(K=Be.autoPause)&&void 0!==K&&K};return!1!==Be.maxAge&&(p.maxAge=Be.maxAge),p}sendToReduxDevtools(Be){try{Be()}catch(K){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",K)}}}return DevtoolsExtension.\u0275fac=function Be(K){return new(K||DevtoolsExtension)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(REDUX_DEVTOOLS_EXTENSION),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(STORE_DEVTOOLS_CONFIG),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(DevtoolsDispatcher))},DevtoolsExtension.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:DevtoolsExtension,factory:DevtoolsExtension.\u0275fac}),DevtoolsExtension})(),StoreDevtools=(()=>{class Be{constructor(p,t,e,f,M,a,C,d){const R=liftInitialState(C,d.monitor),h=liftReducerWith(C,R,a,d.monitor,d),L=(0,rxjs__WEBPACK_IMPORTED_MODULE_15__.T)((0,rxjs__WEBPACK_IMPORTED_MODULE_15__.T)(t.asObservable().pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.T)(1)),f.actions$).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(liftAction)),p,f.liftedActions$).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.Q)(rxjs__WEBPACK_IMPORTED_MODULE_18__.N)),w=e.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(h)),D=new rxjs__WEBPACK_IMPORTED_MODULE_19__.t(1),S=L.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_20__.M)(w),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_21__.R)(({state:Z},[Y,ae])=>{let ee=ae(Z,Y);return Y.type!==PERFORM_ACTION&&shouldFilterActions(d)&&(ee=filterLiftedState(ee,d.predicate,d.actionsSafelist,d.actionsBlocklist)),f.notify(Y,ee),{state:ee,action:Y}},{state:R,action:null})).subscribe(({state:Z,action:Y})=>{D.next(Z),Y.type===PERFORM_ACTION&&M.next(Y.action)}),k=f.start$.subscribe(()=>{this.refresh()}),E=D.asObservable(),B=E.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(unliftState));this.extensionStartSubscription=k,this.stateSubscription=S,this.dispatcher=p,this.liftedState=E,this.state=B}dispatch(p){this.dispatcher.next(p)}next(p){this.dispatcher.next(p)}error(p){}complete(){}performAction(p){this.dispatch(new PerformAction(p,+Date.now()))}refresh(){this.dispatch(new Refresh)}reset(){this.dispatch(new Reset(+Date.now()))}rollback(){this.dispatch(new Rollback(+Date.now()))}commit(){this.dispatch(new Commit(+Date.now()))}sweep(){this.dispatch(new Sweep)}toggleAction(p){this.dispatch(new ToggleAction(p))}jumpToAction(p){this.dispatch(new JumpToAction(p))}jumpToState(p){this.dispatch(new JumpToState(p))}importState(p){this.dispatch(new ImportState(p))}lockChanges(p){this.dispatch(new LockChanges(p))}pauseRecording(p){this.dispatch(new PauseRecording(p))}}return Be.\u0275fac=function(p){return new(p||Be)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(DevtoolsDispatcher),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.UO),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.n$),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(DevtoolsExtension),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.Y$),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_angular_core__WEBPACK_IMPORTED_MODULE_0__.qLn),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.Y6),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(STORE_DEVTOOLS_CONFIG))},Be.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:Be,factory:Be.\u0275fac}),Be})();const IS_EXTENSION_OR_MONITOR_PRESENT=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function createIsExtensionOrMonitorPresent(Be,K){return Boolean(Be)||K.monitor!==noMonitor}function createReduxDevtoolsExtension(){const Be="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&void 0!==window[Be]?window[Be]:null}function createStateObservable(Be){return Be.state}let StoreDevtoolsModule=(()=>{class Be{static instrument(p={}){return{ngModule:Be,providers:[DevtoolsExtension,DevtoolsDispatcher,StoreDevtools,{provide:INITIAL_OPTIONS,useValue:p},{provide:IS_EXTENSION_OR_MONITOR_PRESENT,deps:[REDUX_DEVTOOLS_EXTENSION,STORE_DEVTOOLS_CONFIG],useFactory:createIsExtensionOrMonitorPresent},{provide:REDUX_DEVTOOLS_EXTENSION,useFactory:createReduxDevtoolsExtension},{provide:STORE_DEVTOOLS_CONFIG,deps:[INITIAL_OPTIONS],useFactory:createConfig},{provide:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.FR,deps:[StoreDevtools],useFactory:createStateObservable},{provide:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.mK,useExisting:DevtoolsDispatcher}]}}}return Be.\u0275fac=function(p){return new(p||Be)},Be.\u0275mod=_angular_core__WEBPACK_IMPORTED_MODULE_0__.oAB({type:Be}),Be.\u0275inj=_angular_core__WEBPACK_IMPORTED_MODULE_0__.cJS({}),Be})()},5620:(Be,K,p)=>{"use strict";p.d(K,{UO:()=>ge,qg:()=>re,Y6:()=>i,mK:()=>we,n$:()=>Oe,Y$:()=>W,FR:()=>Ce,yh:()=>tt,CK:()=>xt,Aw:()=>Bt,cr:()=>Je,wb:()=>ce,qC:()=>J,PH:()=>k,ZF:()=>ot,Lq:()=>Ri,P1:()=>et,on:()=>ti,Ky:()=>E});var t=p(5e3),e=p(1135),f=p(8306),M=p(7579),a=p(233),C=p(4004),R=p(5363),h=p(1365),L=p(5026),w=p(1884);const D={};function k(st,Rt){if(D[st]=(D[st]||0)+1,"function"==typeof Rt)return Z(st,(...fi)=>Object.assign(Object.assign({},Rt(...fi)),{type:st}));switch(Rt?Rt._as:"empty"){case"empty":return Z(st,()=>({type:st}));case"props":return Z(st,fi=>Object.assign(Object.assign({},fi),{type:st}));default:throw new Error("Unexpected config.")}}function E(){return{_as:"props",_p:void 0}}function Z(st,Rt){return Object.defineProperty(Rt,"type",{value:st,writable:!1})}const re="@ngrx/store/init";let ge=(()=>{class st extends e.X{constructor(){super({type:re})}next(Wt){if("function"==typeof Wt)throw new TypeError("\n Dispatch expected an object, instead it received a function.\n If you're using the createAction function, make sure to invoke the function\n before dispatching the action. For example, someAction should be someAction().");if(void 0===Wt)throw new TypeError("Actions must be objects");if(void 0===Wt.type)throw new TypeError("Actions must have a type property");super.next(Wt)}complete(){}ngOnDestroy(){super.complete()}}return st.\u0275fac=function(Wt){return new(Wt||st)},st.\u0275prov=t.Yz7({token:st,factory:st.\u0275fac}),st})();const q=[ge],_e=new t.OlP("@ngrx/store Internal Root Guard"),x=new t.OlP("@ngrx/store Internal Initial State"),i=new t.OlP("@ngrx/store Initial State"),r=new t.OlP("@ngrx/store Reducer Factory"),u=new t.OlP("@ngrx/store Internal Reducer Factory Provider"),c=new t.OlP("@ngrx/store Initial Reducers"),v=new t.OlP("@ngrx/store Internal Initial Reducers"),T=new t.OlP("@ngrx/store Store Features"),I=new t.OlP("@ngrx/store Internal Store Reducers"),y=new t.OlP("@ngrx/store Internal Feature Reducers"),n=new t.OlP("@ngrx/store Internal Feature Configs"),_=new t.OlP("@ngrx/store Internal Store Features"),V=new t.OlP("@ngrx/store Internal Feature Reducers Token"),N=new t.OlP("@ngrx/store Feature Reducers"),H=new t.OlP("@ngrx/store User Provided Meta Reducers"),X=new t.OlP("@ngrx/store Meta Reducers"),he=new t.OlP("@ngrx/store Internal Resolved Meta Reducers"),be=new t.OlP("@ngrx/store User Runtime Checks Config"),Pe=new t.OlP("@ngrx/store Internal User Runtime Checks Config"),Ee=new t.OlP("@ngrx/store Internal Runtime Checks"),j=new t.OlP("@ngrx/store Check if Action types are unique");function Ve(st,Rt={}){const Wt=Object.keys(st),fi={};for(let Ni=0;NiNi(Li),Wt(Rt))}}function Ie(st,Rt){return Array.isArray(Rt)&&Rt.length>0&&(st=J.apply(null,[...Rt,st])),(Wt,fi)=>{const Li=st(Wt);return(Ni,pn)=>Li(Ni=void 0===Ni?fi:Ni,pn)}}class Oe extends f.y{}class we extends ge{}const ce="@ngrx/store/update-reducers";let Te=(()=>{class st extends e.X{constructor(Wt,fi,Li,Ni){super(Ni(Li,fi)),this.dispatcher=Wt,this.initialState=fi,this.reducers=Li,this.reducerFactory=Ni}get currentReducers(){return this.reducers}addFeature(Wt){this.addFeatures([Wt])}addFeatures(Wt){const fi=Wt.reduce((Li,{reducers:Ni,reducerFactory:pn,metaReducers:Dn,initialState:Nn,key:tr})=>{const gn="function"==typeof Ni?function ut(st){const Rt=Array.isArray(st)&&st.length>0?J(...st):Wt=>Wt;return(Wt,fi)=>(Wt=Rt(Wt),(Li,Ni)=>Wt(Li=void 0===Li?fi:Li,Ni))}(Dn)(Ni,Nn):Ie(pn,Dn)(Ni,Nn);return Li[tr]=gn,Li},{});this.addReducers(fi)}removeFeature(Wt){this.removeFeatures([Wt])}removeFeatures(Wt){this.removeReducers(Wt.map(fi=>fi.key))}addReducer(Wt,fi){this.addReducers({[Wt]:fi})}addReducers(Wt){this.reducers=Object.assign(Object.assign({},this.reducers),Wt),this.updateReducers(Object.keys(Wt))}removeReducer(Wt){this.removeReducers([Wt])}removeReducers(Wt){Wt.forEach(fi=>{this.reducers=function Me(st,Rt){return Object.keys(st).filter(Wt=>Wt!==Rt).reduce((Wt,fi)=>Object.assign(Wt,{[fi]:st[fi]}),{})}(this.reducers,fi)}),this.updateReducers(Wt)}updateReducers(Wt){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:ce,features:Wt})}ngOnDestroy(){this.complete()}}return st.\u0275fac=function(Wt){return new(Wt||st)(t.LFG(we),t.LFG(i),t.LFG(c),t.LFG(r))},st.\u0275prov=t.Yz7({token:st,factory:st.\u0275fac}),st})();const xe=[Te,{provide:Oe,useExisting:Te},{provide:we,useExisting:ge}];let W=(()=>{class st extends M.x{ngOnDestroy(){this.complete()}}return st.\u0275fac=function(){let Rt;return function(fi){return(Rt||(Rt=t.n5z(st)))(fi||st)}}(),st.\u0275prov=t.Yz7({token:st,factory:st.\u0275fac}),st})();const te=[W];class Ce extends f.y{}let fe=(()=>{class st extends e.X{constructor(Wt,fi,Li,Ni){super(Ni);const tr=Wt.pipe((0,R.Q)(a.N)).pipe((0,h.M)(fi)).pipe((0,L.R)(Q,{state:Ni}));this.stateSubscription=tr.subscribe(({state:gn,action:Ei})=>{this.next(gn),Li.next(Ei)})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}}return st.INIT=re,st.\u0275fac=function(Wt){return new(Wt||st)(t.LFG(ge),t.LFG(Oe),t.LFG(W),t.LFG(i))},st.\u0275prov=t.Yz7({token:st,factory:st.\u0275fac}),st})();function Q(st={state:void 0},[Rt,Wt]){const{state:fi}=st;return{state:Wt(fi,Rt),action:Rt}}const ft=[fe,{provide:Ce,useExisting:fe}];let tt=(()=>{class st extends f.y{constructor(Wt,fi,Li){super(),this.actionsObserver=fi,this.reducerManager=Li,this.source=Wt}select(Wt,...fi){return di.call(null,Wt,...fi)(this)}lift(Wt){const fi=new st(this,this.actionsObserver,this.reducerManager);return fi.operator=Wt,fi}dispatch(Wt){this.actionsObserver.next(Wt)}next(Wt){this.actionsObserver.next(Wt)}error(Wt){this.actionsObserver.error(Wt)}complete(){this.actionsObserver.complete()}addReducer(Wt,fi){this.reducerManager.addReducer(Wt,fi)}removeReducer(Wt){this.reducerManager.removeReducer(Wt)}}return st.\u0275fac=function(Wt){return new(Wt||st)(t.LFG(Ce),t.LFG(ge),t.LFG(Te))},st.\u0275prov=t.Yz7({token:st,factory:st.\u0275fac}),st})();const Dt=[tt];function di(st,Rt,...Wt){return function(Li){let Ni;if("string"==typeof st){const pn=[Rt,...Wt].filter(Boolean);Ni=Li.pipe(function d(...st){const Rt=st.length;if(0===Rt)throw new Error("list of properties cannot be empty.");return(0,C.U)(Wt=>{let fi=Wt;for(let Li=0;List(pn,Rt)))}return Ni.pipe((0,w.x)())}}const Yt="https://ngrx.io/guide/store/configuration/runtime-checks";function Zt(st){return void 0===st}function ui(st){return null===st}function Ot(st){return Array.isArray(st)}function bt(st){return"object"==typeof st&&null!==st}function Re(st){return"function"==typeof st}function Ft(st,Rt){return st===Rt}function nt(st,Rt,Wt){for(let fi=0;fign.release&&"function"==typeof gn.release),Dn=st(function(...gn){return Ni.apply(null,gn)}),Nn=rt(function(gn,Ei){return Rt.stateFn.apply(null,[gn,Li,Ei,Dn])});return Object.assign(Nn.memoized,{release:function tr(){Nn.reset(),Dn.reset(),pn.forEach(gn=>gn.release())},projector:Dn.memoized,setResult:Nn.setResult,clearResult:Nn.clearResult})}}(rt)(...st)}function Ae(st,Rt,Wt,fi){if(void 0===Wt){const Ni=Rt.map(pn=>pn(st));return fi.memoized.apply(null,Ni)}const Li=Rt.map(Ni=>Ni(st,Wt));return fi.memoized.apply(null,[...Li,Wt])}function ot(st){return et(Rt=>{const Wt=Rt[st];return(0,t.X6Q)()&&!(st in Rt)&&console.warn(`@ngrx/store: The feature name "${st}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${st}', ...) or StoreModule.forFeature('${st}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),Wt},Rt=>Rt)}function $t(st){Object.freeze(st);const Rt=Re(st);return Object.getOwnPropertyNames(st).forEach(Wt=>{if(!Wt.startsWith("\u0275")&&function de(st,Rt){return Object.prototype.hasOwnProperty.call(st,Rt)}(st,Wt)&&(!Rt||"caller"!==Wt&&"callee"!==Wt&&"arguments"!==Wt)){const fi=st[Wt];(bt(fi)||Re(fi))&&!Object.isFrozen(fi)&&$t(fi)}}),st}function hi(st,Rt=[]){return(Zt(st)||ui(st))&&0===Rt.length?{path:["root"],value:st}:Object.keys(st).reduce((fi,Li)=>{if(fi)return fi;const Ni=st[Li];return function ke(st){return Re(st)&&st.hasOwnProperty("\u0275cmp")}(Ni)?fi:!(Zt(Ni)||ui(Ni)||function it(st){return"number"==typeof st}(Ni)||function gt(st){return"boolean"==typeof st}(Ni)||function Nt(st){return"string"==typeof st}(Ni)||Ot(Ni))&&(function Qt(st){if(!function ei(st){return bt(st)&&!Ot(st)}(st))return!1;const Rt=Object.getPrototypeOf(st);return Rt===Object.prototype||null===Rt}(Ni)?hi(Ni,[...Rt,Li]):{path:[...Rt,Li],value:Ni})},!1)}function si(st,Rt){if(!1===st)return;const Wt=st.path.join("."),fi=new Error(`Detected unserializable ${Rt} at "${Wt}". ${Yt}#strict${Rt}serializability`);throw fi.value=st.value,fi.unserializablePath=Wt,fi}function Zi(st){return(0,t.X6Q)()?Object.assign({strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1},st):{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function Vi({strictActionSerializability:st,strictStateSerializability:Rt}){return Wt=>st||Rt?function Qi(st,Rt){return function(Wt,fi){Rt.action(fi)&&si(hi(fi),"action");const Li=st(Wt,fi);return Rt.state()&&si(hi(Li),"state"),Li}}(Wt,{action:fi=>st&&!Ue(fi),state:()=>Rt}):Wt}function Ui({strictActionImmutability:st,strictStateImmutability:Rt}){return Wt=>st||Rt?function Jt(st,Rt){return function(Wt,fi){const Li=Rt.action(fi)?$t(fi):fi,Ni=st(Wt,Li);return Rt.state()?$t(Ni):Ni}}(Wt,{action:fi=>st&&!Ue(fi),state:()=>Rt}):Wt}function Ue(st){return st.type.startsWith("@ngrx")}function Tt({strictActionWithinNgZone:st}){return Rt=>st?function Ji(st,Rt){return function(Wt,fi){if(Rt.action(fi)&&!t.R0b.isInAngularZone())throw new Error(`Action '${fi.type}' running outside NgZone. ${Yt}#strictactionwithinngzone`);return st(Wt,fi)}}(Rt,{action:Wt=>st&&!Ue(Wt)}):Rt}function ve(st){return[{provide:Pe,useValue:st},{provide:be,useFactory:_t,deps:[Pe]},{provide:Ee,deps:[be],useFactory:Zi},{provide:X,multi:!0,deps:[Ee],useFactory:Ui},{provide:X,multi:!0,deps:[Ee],useFactory:Vi},{provide:X,multi:!0,deps:[Ee],useFactory:Tt}]}function Qe(){return[{provide:j,multi:!0,deps:[Ee],useFactory:se}]}function _t(st){return st}function se(st){if(!st.strictActionTypeUniqueness)return;const Rt=Object.entries(D).filter(([,Wt])=>Wt>1).map(([Wt])=>Wt);if(Rt.length)throw new Error(`Action types are registered more than once, ${Rt.map(Wt=>`"${Wt}"`).join(", ")}. ${Yt}#strictactiontypeuniqueness`)}let Je=(()=>{class st{constructor(Wt,fi,Li,Ni,pn,Dn){}}return st.\u0275fac=function(Wt){return new(Wt||st)(t.LFG(ge),t.LFG(Oe),t.LFG(W),t.LFG(tt),t.LFG(_e,8),t.LFG(j,8))},st.\u0275mod=t.oAB({type:st}),st.\u0275inj=t.cJS({}),st})(),xt=(()=>{class st{constructor(Wt,fi,Li,Ni,pn){this.features=Wt,this.featureReducers=fi,this.reducerManager=Li;const Dn=Wt.map((Nn,tr)=>{const Ei=fi.shift()[tr];return Object.assign(Object.assign({},Nn),{reducers:Ei,initialState:Wi(Nn.initialState)})});Li.addFeatures(Dn)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}}return st.\u0275fac=function(Wt){return new(Wt||st)(t.LFG(_),t.LFG(N),t.LFG(Te),t.LFG(Je),t.LFG(j,8))},st.\u0275mod=t.oAB({type:st}),st.\u0275inj=t.cJS({}),st})(),Bt=(()=>{class st{static forRoot(Wt,fi={}){return{ngModule:Je,providers:[{provide:_e,useFactory:fn,deps:[[tt,new t.FiY,new t.tp0]]},{provide:x,useValue:fi.initialState},{provide:i,useFactory:Wi,deps:[x]},{provide:v,useValue:Wt},{provide:I,useExisting:Wt instanceof t.OlP?Wt:v},{provide:c,deps:[t.zs3,v,[new t.tBr(I)]],useFactory:xi},{provide:H,useValue:fi.metaReducers?fi.metaReducers:[]},{provide:he,deps:[X,H],useFactory:on},{provide:u,useValue:fi.reducerFactory?fi.reducerFactory:Ve},{provide:r,deps:[u,he],useFactory:Ie},q,xe,te,ft,Dt,ve(fi.runtimeChecks),Qe()]}}static forFeature(Wt,fi,Li={}){return{ngModule:xt,providers:[{provide:n,multi:!0,useValue:Wt instanceof Object?{}:Li},{provide:T,multi:!0,useValue:{key:Wt instanceof Object?Wt.name:Wt,reducerFactory:Li instanceof t.OlP||!Li.reducerFactory?Ve:Li.reducerFactory,metaReducers:Li instanceof t.OlP||!Li.metaReducers?[]:Li.metaReducers,initialState:Li instanceof t.OlP||!Li.initialState?void 0:Li.initialState}},{provide:_,deps:[t.zs3,n,T],useFactory:Ti},{provide:y,multi:!0,useValue:Wt instanceof Object?Wt.reducer:fi},{provide:V,multi:!0,useExisting:fi instanceof t.OlP?fi:y},{provide:N,multi:!0,deps:[t.zs3,y,[new t.tBr(V)]],useFactory:$i},Qe()]}}}return st.\u0275fac=function(Wt){return new(Wt||st)},st.\u0275mod=t.oAB({type:st}),st.\u0275inj=t.cJS({}),st})();function xi(st,Rt){return Rt instanceof t.OlP?st.get(Rt):Rt}function Ti(st,Rt,Wt){return Wt.map((fi,Li)=>{if(Rt[Li]instanceof t.OlP){const Ni=st.get(Rt[Li]);return{key:fi.key,reducerFactory:Ni.reducerFactory?Ni.reducerFactory:Ve,metaReducers:Ni.metaReducers?Ni.metaReducers:[],initialState:Ni.initialState}}return fi})}function $i(st,Rt){return Rt.map(fi=>fi instanceof t.OlP?st.get(fi):fi)}function Wi(st){return"function"==typeof st?st():st}function on(st,Rt){return st.concat(Rt)}function fn(st){if(st)throw new TypeError("StoreModule.forRoot() called twice. Feature modules should use StoreModule.forFeature() instead.");return"guarded"}function ti(...st){return{reducer:st.pop(),types:st.map(fi=>fi.type)}}function Ri(st,...Rt){const Wt=new Map;for(const fi of Rt)for(const Li of fi.types){const Ni=Wt.get(Li);Wt.set(Li,Ni?(Dn,Nn)=>fi.reducer(Ni(Dn,Nn),Nn):fi.reducer)}return function(fi=st,Li){const Ni=Wt.get(Li.type);return Ni?Ni(fi,Li):fi}}},1210:(Be,K,p)=>{"use strict";p.d(K,{H5:()=>$d,K$:()=>Oh,a4:()=>tf});var t=p(5e3),e=p(9808),f=p(655),M=p(7429),a=p(4968),C=p(8372),d=p(1777);function R(){}function h(m){return null==m?R:function(){return this.querySelector(m)}}function w(m){return"object"==typeof m&&"length"in m?m:Array.from(m)}function D(){return[]}function S(m){return null==m?D:function(){return this.querySelectorAll(m)}}function B(m){return function(){return this.matches(m)}}function Z(m){return function(O){return O.matches(m)}}var Y=Array.prototype.find;function ee(){return this.firstElementChild}var ie=Array.prototype.filter;function re(){return this.children}function x(m){return new Array(m.length)}function r(m,O){this.ownerDocument=m.ownerDocument,this.namespaceURI=m.namespaceURI,this._next=null,this._parent=m,this.__data__=O}function u(m){return function(){return m}}function c(m,O,o,b,z,$){for(var dt,Ne=0,Gt=O.length,Ut=$.length;NeO?1:m>=O?0:NaN}r.prototype={constructor:r,appendChild:function(m){return this._parent.insertBefore(m,this._next)},insertBefore:function(m,O){return this._parent.insertBefore(m,O)},querySelector:function(m){return this._parent.querySelector(m)},querySelectorAll:function(m){return this._parent.querySelectorAll(m)}};var Ve="http://www.w3.org/1999/xhtml";const Me={svg:"http://www.w3.org/2000/svg",xhtml:Ve,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function J(m){var O=m+="",o=O.indexOf(":");return o>=0&&"xmlns"!==(O=m.slice(0,o))&&(m=m.slice(o+1)),Me.hasOwnProperty(O)?{space:Me[O],local:m}:m}function Ie(m){return function(){this.removeAttribute(m)}}function ut(m){return function(){this.removeAttributeNS(m.space,m.local)}}function Oe(m,O){return function(){this.setAttribute(m,O)}}function we(m,O){return function(){this.setAttributeNS(m.space,m.local,O)}}function ce(m,O){return function(){var o=O.apply(this,arguments);null==o?this.removeAttribute(m):this.setAttribute(m,o)}}function Te(m,O){return function(){var o=O.apply(this,arguments);null==o?this.removeAttributeNS(m.space,m.local):this.setAttributeNS(m.space,m.local,o)}}function W(m){return m.ownerDocument&&m.ownerDocument.defaultView||m.document&&m||m.defaultView}function te(m){return function(){this.style.removeProperty(m)}}function Ce(m,O,o){return function(){this.style.setProperty(m,O,o)}}function fe(m,O,o){return function(){var b=O.apply(this,arguments);null==b?this.style.removeProperty(m):this.style.setProperty(m,b,o)}}function ft(m,O){return m.style.getPropertyValue(O)||W(m).getComputedStyle(m,null).getPropertyValue(O)}function tt(m){return function(){delete this[m]}}function Dt(m,O){return function(){this[m]=O}}function di(m,O){return function(){var o=O.apply(this,arguments);null==o?delete this[m]:this[m]=o}}function Zt(m){return m.trim().split(/^|\s+/)}function ui(m){return m.classList||new Ot(m)}function Ot(m){this._node=m,this._names=Zt(m.getAttribute("class")||"")}function Nt(m,O){for(var o=ui(m),b=-1,z=O.length;++b=0&&(o=O.slice(b+1),O=O.slice(0,b)),{type:O,name:o}})}function Ue(m){return function(){var O=this.__on;if(O){for(var $,o=0,b=-1,z=O.length;o=0&&(this._names.splice(O,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(m){return this._names.indexOf(m)>=0}};var Bt=[null];function xi(m,O){this._groups=m,this._parents=O}function Ti(){return new xi([[document.documentElement]],Bt)}xi.prototype=Ti.prototype={constructor:xi,select:function L(m){"function"!=typeof m&&(m=h(m));for(var O=this._groups,o=O.length,b=new Array(o),z=0;z=yn&&(yn=vn+1);!(kn=Ii[yn])&&++yn=0;)(Ne=b[z])&&($&&4^Ne.compareDocumentPosition($)&&$.parentNode.insertBefore(Ne,$),$=Ne);return this},sort:function N(m){function O(bi,Ci){return bi&&Ci?m(bi.__data__,Ci.__data__):!bi-!Ci}m||(m=H);for(var o=this._groups,b=o.length,z=new Array(b),$=0;$1?this.each((null==O?te:"function"==typeof O?fe:Ce)(m,O,null==o?"":o)):ft(this.node(),m)},property:function Yt(m,O){return arguments.length>1?this.each((null==O?tt:"function"==typeof O?di:Dt)(m,O)):this.node()[m]},classed:function Qt(m,O){var o=Zt(m+"");if(arguments.length<2){for(var b=ui(this.node()),z=-1,$=o.length;++z<$;)if(!b.contains(o[z]))return!1;return!0}return this.each(("function"==typeof O?ei:O?it:bt)(o,O))},text:function ye(m){return arguments.length?this.each(null==m?Re:("function"==typeof m?de:ke)(m)):this.node().textContent},html:function nt(m){return arguments.length?this.each(null==m?ht:("function"==typeof m?Ft:mt)(m)):this.node().innerHTML},raise:function rt(){return this.each(He)},lower:function Ae(){return this.each(et)},append:function Ct(m){var O="function"==typeof m?m:lt(m);return this.select(function(){return this.appendChild(O.apply(this,arguments))})},insert:function Jt(m,O){var o="function"==typeof m?m:lt(m),b=null==O?mi:"function"==typeof O?O:h(O);return this.select(function(){return this.insertBefore(o.apply(this,arguments),b.apply(this,arguments)||null)})},remove:function Qi(){return this.each($t)},clone:function Ji(m){return this.select(m?si:hi)},datum:function Zi(m){return arguments.length?this.property("__data__",m):this.node().__data__},on:function ve(m,O,o){var z,Ne,b=Ui(m+""),$=b.length;if(!(arguments.length<2)){for(dt=O?Tt:Ue,z=0;z<$;++z)this.each(dt(b[z],O,o));return this}var dt=this.node().__on;if(dt)for(var oi,Gt=0,Ut=dt.length;Gt{}};function ti(){for(var b,m=0,O=arguments.length,o={};m=0&&(b=o.slice(z+1),o=o.slice(0,z)),o&&!O.hasOwnProperty(o))throw new Error("unknown type: "+o);return{type:o,name:b}})}function Rt(m,O){for(var z,o=0,b=m.length;o0)for(var z,$,o=new Array(z),b=0;b>8&15|O>>4&240,O>>4&15|240&O,(15&O)<<4|15&O,1):8===o?kr(O>>24&255,O>>16&255,O>>8&255,(255&O)/255):4===o?kr(O>>12&15|O>>8&240,O>>8&15|O>>4&240,O>>4&15|240&O,((15&O)<<4|15&O)/255):null):(O=va.exec(m))?new lr(O[1],O[2],O[3],1):(O=Sr.exec(m))?new lr(255*O[1]/100,255*O[2]/100,255*O[3]/100,1):(O=ha.exec(m))?kr(O[1],O[2],O[3],O[4]):(O=Br.exec(m))?kr(255*O[1]/100,255*O[2]/100,255*O[3]/100,O[4]):(O=ia.exec(m))?ya(O[1],O[2]/100,O[3]/100,1):(O=na.exec(m))?ya(O[1],O[2]/100,O[3]/100,O[4]):ra.hasOwnProperty(m)?Wa(ra[m]):"transparent"===m?new lr(NaN,NaN,NaN,0):null}function Wa(m){return new lr(m>>16&255,m>>8&255,255&m,1)}function kr(m,O,o,b){return b<=0&&(m=O=o=NaN),new lr(m,O,o,b)}function Wn(m){return m instanceof gn||(m=fa(m)),m?new lr((m=m.rgb()).r,m.g,m.b,m.opacity):new lr}function Ur(m,O,o,b){return 1===arguments.length?Wn(m):new lr(m,O,o,null==b?1:b)}function lr(m,O,o,b){this.r=+m,this.g=+O,this.b=+o,this.opacity=+b}function Ya(){return"#"+ja(this.r)+ja(this.g)+ja(this.b)}function jr(){var m=this.opacity;return(1===(m=isNaN(m)?1:Math.max(0,Math.min(1,m)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===m?")":", "+m+")")}function ja(m){return((m=Math.max(0,Math.min(255,Math.round(m)||0)))<16?"0":"")+m.toString(16)}function ya(m,O,o,b){return b<=0?m=O=o=NaN:o<=0||o>=1?m=O=NaN:O<=0&&(m=NaN),new Nr(m,O,o,b)}function cr(m){if(m instanceof Nr)return new Nr(m.h,m.s,m.l,m.opacity);if(m instanceof gn||(m=fa(m)),!m)return new Nr;if(m instanceof Nr)return m;var O=(m=m.rgb()).r/255,o=m.g/255,b=m.b/255,z=Math.min(O,o,b),$=Math.max(O,o,b),Ne=NaN,dt=$-z,Gt=($+z)/2;return dt?(Ne=O===$?(o-b)/dt+6*(o0&&Gt<1?0:Ne,new Nr(Ne,dt,Gt,m.opacity)}function Nr(m,O,o,b){this.h=+m,this.s=+O,this.l=+o,this.opacity=+b}function Dr(m,O,o){return 255*(m<60?O+(o-O)*m/60:m<180?o:m<240?O+(o-O)*(240-m)/60:O)}function aa(m,O,o,b,z){var $=m*m,Ne=$*m;return((1-3*m+3*$-Ne)*O+(4-6*$+3*Ne)*o+(1+3*m+3*$-3*Ne)*b+Ne*z)/6}Nn(gn,fa,{copy:function(m){return Object.assign(new this.constructor,this,m)},displayable:function(){return this.rgb().displayable()},hex:Jr,formatHex:Jr,formatHsl:function Xr(){return cr(this).formatHsl()},formatRgb:Sa,toString:Sa}),Nn(lr,Ur,tr(gn,{brighter:function(m){return m=null==m?ji:Math.pow(ji,m),new lr(this.r*m,this.g*m,this.b*m,this.opacity)},darker:function(m){return m=null==m?.7:Math.pow(.7,m),new lr(this.r*m,this.g*m,this.b*m,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Ya,formatHex:Ya,formatRgb:jr,toString:jr})),Nn(Nr,function ba(m,O,o,b){return 1===arguments.length?cr(m):new Nr(m,O,o,null==b?1:b)},tr(gn,{brighter:function(m){return m=null==m?ji:Math.pow(ji,m),new Nr(this.h,this.s,this.l*m,this.opacity)},darker:function(m){return m=null==m?.7:Math.pow(.7,m),new Nr(this.h,this.s,this.l*m,this.opacity)},rgb:function(){var m=this.h%360+360*(this.h<0),O=isNaN(m)||isNaN(this.s)?0:this.s,o=this.l,b=o+(o<.5?o:1-o)*O,z=2*o-b;return new lr(Dr(m>=240?m-240:m+120,z,b),Dr(m,z,b),Dr(m<120?m+240:m-120,z,b),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var m=this.opacity;return(1===(m=isNaN(m)?1:Math.max(0,Math.min(1,m)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===m?")":", "+m+")")}}));const xa=m=>()=>m;function oa(m,O){var o=O-m;return o?function or(m,O){return function(o){return m+o*O}}(m,o):xa(isNaN(m)?O:m)}const Kr=function m(O){var o=function ir(m){return 1==(m=+m)?oa:function(O,o){return o-O?function sa(m,O,o){return m=Math.pow(m,o),O=Math.pow(O,o)-m,o=1/o,function(b){return Math.pow(m+b*O,o)}}(O,o,m):xa(isNaN(O)?o:O)}}(O);function b(z,$){var Ne=o((z=Ur(z)).r,($=Ur($)).r),dt=o(z.g,$.g),Gt=o(z.b,$.b),Ut=oa(z.opacity,$.opacity);return function(oi){return z.r=Ne(oi),z.g=dt(oi),z.b=Gt(oi),z.opacity=Ut(oi),z+""}}return b.gamma=m,b}(1);function Rr(m){return function(O){var Ne,dt,o=O.length,b=new Array(o),z=new Array(o),$=new Array(o);for(Ne=0;Ne=1?(o=1,O-1):Math.floor(o*O),z=m[b],$=m[b+1];return aa((o-b/O)*O,b>0?m[b-1]:2*z-$,z,$,bo&&($=O.slice(o,$),dt[Ne]?dt[Ne]+=$:dt[++Ne]=$),(b=b[0])===(z=z[0])?dt[Ne]?dt[Ne]+=z:dt[++Ne]=z:(dt[++Ne]=null,Gt.push({i:Ne,x:Et(b,z)})),o=ii.lastIndex;return o=0&&m._call.call(null,O),m=m._next;--jt}()}finally{jt=0,function ms(){for(var m,o,O=Fe,b=1/0;O;)O._call?(b>O._time&&(b=O._time),m=O,O=O._next):(o=O._next,O._next=null,O=m?m._next=o:Fe=o);At=m,Aa(b)}(),Gi=0}}function io(){var m=yr.now(),O=m-Si;O>1e3&&(Bn-=O,Si=m)}function Aa(m){jt||(ki&&(ki=clearTimeout(ki)),m-Gi>24?(m<1/0&&(ki=setTimeout(Er,m-yr.now()-Bn)),je&&(je=clearInterval(je))):(je||(Si=yr.now(),je=setInterval(io,1e3)),jt=1,Xa(Er)))}function Os(m,O,o){var b=new Fi;return b.restart(z=>{b.stop(),m(z+O)},O=null==O?0:+O,o),b}Fi.prototype=Yn.prototype={constructor:Fi,restart:function(m,O,o){if("function"!=typeof m)throw new TypeError("callback is not a function");o=(null==o?Ca():+o)+(null==O?0:+O),!this._next&&At!==this&&(At?At._next=this:Fe=this,At=this),this._call=m,this._time=o,Aa()},stop:function(){this._call&&(this._call=null,this._time=1/0,Aa())}};var Ps=fi("start","end","cancel","interrupt"),Vs=[];function pe(m,O,o,b,z,$){var Ne=m.__transition;if(Ne){if(o in Ne)return}else m.__transition={};!function ni(m,O,o){var z,b=m.__transition;function Ne(Ut){var oi,bi,Ci,Di;if(1!==o.state)return Gt();for(oi in b)if((Di=b[oi]).name===o.name){if(3===Di.state)return Os(Ne);4===Di.state?(Di.state=6,Di.timer.stop(),Di.on.call("interrupt",m,m.__data__,Di.index,Di.group),delete b[oi]):+oi0)throw new Error("too late; already scheduled");return o}function Mt(m,O){var o=Vt(m,O);if(o.state>3)throw new Error("too late; already running");return o}function Vt(m,O){var o=m.__transition;if(!o||!(o=o[O]))throw new Error("transition not found");return o}var An,Ai=180/Math.PI,Xi={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function dn(m,O,o,b,z,$){var Ne,dt,Gt;return(Ne=Math.sqrt(m*m+O*O))&&(m/=Ne,O/=Ne),(Gt=m*o+O*b)&&(o-=m*Gt,b-=O*Gt),(dt=Math.sqrt(o*o+b*b))&&(o/=dt,b/=dt,Gt/=dt),m*b180?oi+=360:oi-Ut>180&&(Ut+=360),Ci.push({i:bi.push(z(bi)+"rotate(",null,b)-2,x:Et(Ut,oi)})):oi&&bi.push(z(bi)+"rotate("+oi+b)}(Ut.rotate,oi.rotate,bi,Ci),function dt(Ut,oi,bi,Ci){Ut!==oi?Ci.push({i:bi.push(z(bi)+"skewX(",null,b)-2,x:Et(Ut,oi)}):oi&&bi.push(z(bi)+"skewX("+oi+b)}(Ut.skewX,oi.skewX,bi,Ci),function Gt(Ut,oi,bi,Ci,Di,tn){if(Ut!==bi||oi!==Ci){var Mn=Di.push(z(Di)+"scale(",null,",",null,")");tn.push({i:Mn-4,x:Et(Ut,bi)},{i:Mn-2,x:Et(oi,Ci)})}else(1!==bi||1!==Ci)&&Di.push(z(Di)+"scale("+bi+","+Ci+")")}(Ut.scaleX,Ut.scaleY,oi.scaleX,oi.scaleY,bi,Ci),Ut=oi=null,function(Di){for(var Ii,tn=-1,Mn=Ci.length;++tn=0&&(O=O.slice(0,o)),!O||"start"===O})}(O)?Ke:Mt;return function(){var Ne=$(this,m),dt=Ne.on;dt!==b&&(z=(b=dt).copy()).on(O,o),Ne.on=z}}var rr=Wi.prototype.constructor;function Se(m){return function(){this.style.removeProperty(m)}}function qt(m,O,o){return function(b){this.style.setProperty(m,O.call(this,b),o)}}function ai(m,O,o){var b,z;function $(){var Ne=O.apply(this,arguments);return Ne!==z&&(b=(z=Ne)&&qt(m,Ne,o)),b}return $._value=O,$}function _r(m){return function(O){this.textContent=m.call(this,O)}}function ur(m){var O,o;function b(){var z=m.apply(this,arguments);return z!==o&&(O=(o=z)&&_r(z)),O}return b._value=m,b}var Es=0;function Ia(m,O,o,b){this._groups=m,this._parents=O,this._name=o,this._id=b}function jc(){return++Es}var no=Wi.prototype;Ia.prototype=function Gs(m){return Wi().transition(m)}.prototype={constructor:Ia,select:function un(m){var O=this._name,o=this._id;"function"!=typeof m&&(m=h(m));for(var b=this._groups,z=b.length,$=new Array(z),Ne=0;Ne2&&b.state<5,b.state=6,b.timer.stop(),b.on.call(z?"interrupt":"cancel",m,m.__data__,b.index,b.group),delete o[Ne]):$=!1;$&&delete m.__transition}}(this,m)})},Wi.prototype.transition=function mo(m){var O,o;m instanceof Ia?(O=m._id,m=m._name):(O=jc(),(o=ml).time=Ca(),m=null==m?null:m+"");for(var b=this._groups,z=b.length,$=0;$O?1:m>=O?0:NaN}function Fr(m){let O=m,o=m;function b(Ne,dt,Gt,Ut){for(null==Gt&&(Gt=0),null==Ut&&(Ut=Ne.length);Gt>>1;o(Ne[oi],dt)<0?Gt=oi+1:Ut=oi}return Gt}return 1===m.length&&(O=(Ne,dt)=>m(Ne)-dt,o=function l3(m){return(O,o)=>yl(m(O),o)}(m)),{left:b,center:function $(Ne,dt,Gt,Ut){null==Gt&&(Gt=0),null==Ut&&(Ut=Ne.length);const oi=b(Ne,dt,Gt,Ut-1);return oi>Gt&&O(Ne[oi-1],dt)>-O(Ne[oi],dt)?oi-1:oi},right:function z(Ne,dt,Gt,Ut){for(null==Gt&&(Gt=0),null==Ut&&(Ut=Ne.length);Gt>>1;o(Ne[oi],dt)>0?Ut=oi:Gt=oi+1}return Gt}}}["w","e"].map(es),["n","s"].map(es),["n","w","e","s","nw","ne","sw","se"].map(es);var bl=Math.sqrt(50),Oo=Math.sqrt(10),Ql=Math.sqrt(2);function Jc(m,O,o){var b=(O-m)/Math.max(0,o),z=Math.floor(Math.log(b)/Math.LN10),$=b/Math.pow(10,z);return z>=0?($>=bl?10:$>=Oo?5:$>=Ql?2:1)*Math.pow(10,z):-Math.pow(10,-z)/($>=bl?10:$>=Oo?5:$>=Ql?2:1)}function ql(m,O,o){var b=Math.abs(O-m)/Math.max(0,o),z=Math.pow(10,Math.floor(Math.log(b)/Math.LN10)),$=b/z;return $>=bl?z*=10:$>=Oo?z*=5:$>=Ql&&(z*=2),O0))return Gt;do{Gt.push(Ut=new Date(+$)),O($,dt),m($)}while(Ut<$&&$=Ne)for(;m(Ne),!$(Ne);)Ne.setTime(Ne-1)},function(Ne,dt){if(Ne>=Ne)if(dt<0)for(;++dt<=0;)for(;O(Ne,-1),!$(Ne););else for(;--dt>=0;)for(;O(Ne,1),!$(Ne););})},o&&(z.count=function($,Ne){return Cl.setTime(+$),Jl.setTime(+Ne),m(Cl),m(Jl),Math.floor(o(Cl,Jl))},z.every=function($){return $=Math.floor($),isFinite($)&&$>0?$>1?z.filter(b?function(Ne){return b(Ne)%$==0}:function(Ne){return z.count(0,Ne)%$==0}):z:null}),z}var el=Oa(function(){},function(m,O){m.setTime(+m+O)},function(m,O){return O-m});el.every=function(m){return m=Math.floor(m),isFinite(m)&&m>0?m>1?Oa(function(O){O.setTime(Math.floor(O/m)*m)},function(O,o){O.setTime(+O+o*m)},function(O,o){return(o-O)/m}):el:null};const r2=el;const ao=Oa(function(m){m.setTime(m-m.getMilliseconds())},function(m,O){m.setTime(+m+O*As)},function(m,O){return(O-m)/As},function(m){return m.getUTCSeconds()});const ec=Oa(function(m){m.setTime(m-m.getMilliseconds()-m.getSeconds()*As)},function(m,O){m.setTime(+m+O*is)},function(m,O){return(O-m)/is},function(m){return m.getMinutes()});const tc=Oa(function(m){m.setTime(m-m.getMilliseconds()-m.getSeconds()*As-m.getMinutes()*is)},function(m,O){m.setTime(+m+O*vs)},function(m,O){return(O-m)/vs},function(m){return m.getHours()});const vo=Oa(m=>m.setHours(0,0,0,0),(m,O)=>m.setDate(m.getDate()+O),(m,O)=>(O-m-(O.getTimezoneOffset()-m.getTimezoneOffset())*is)/Po,m=>m.getDate()-1);function Zs(m){return Oa(function(O){O.setDate(O.getDate()-(O.getDay()+7-m)%7),O.setHours(0,0,0,0)},function(O,o){O.setDate(O.getDate()+7*o)},function(O,o){return(o-O-(o.getTimezoneOffset()-O.getTimezoneOffset())*is)/_o})}var so=Zs(0),Sl=Zs(1),Ws=(Zs(2),Zs(3),Zs(4));const Ls=(Zs(5),Zs(6),Oa(function(m){m.setDate(1),m.setHours(0,0,0,0)},function(m,O){m.setMonth(m.getMonth()+O)},function(m,O){return O.getMonth()-m.getMonth()+12*(O.getFullYear()-m.getFullYear())},function(m){return m.getMonth()}));var a1=Oa(function(m){m.setMonth(0,1),m.setHours(0,0,0,0)},function(m,O){m.setFullYear(m.getFullYear()+O)},function(m,O){return O.getFullYear()-m.getFullYear()},function(m){return m.getFullYear()});a1.every=function(m){return isFinite(m=Math.floor(m))&&m>0?Oa(function(O){O.setFullYear(Math.floor(O.getFullYear()/m)*m),O.setMonth(0,1),O.setHours(0,0,0,0)},function(O,o){O.setFullYear(O.getFullYear()+o*m)}):null};const Ha=a1;const l2=Oa(function(m){m.setUTCSeconds(0,0)},function(m,O){m.setTime(+m+O*is)},function(m,O){return(O-m)/is},function(m){return m.getUTCMinutes()});const Tl=Oa(function(m){m.setUTCMinutes(0,0,0)},function(m,O){m.setTime(+m+O*vs)},function(m,O){return(O-m)/vs},function(m){return m.getUTCHours()});const Al=Oa(function(m){m.setUTCHours(0,0,0,0)},function(m,O){m.setUTCDate(m.getUTCDate()+O)},function(m,O){return(O-m)/Po},function(m){return m.getUTCDate()-1});function ns(m){return Oa(function(O){O.setUTCDate(O.getUTCDate()-(O.getUTCDay()+7-m)%7),O.setUTCHours(0,0,0,0)},function(O,o){O.setUTCDate(O.getUTCDate()+7*o)},function(O,o){return(o-O)/_o})}var sc=ns(0),Ll=ns(1),Ro=(ns(2),ns(3),ns(4));const f2=(ns(5),ns(6),Oa(function(m){m.setUTCDate(1),m.setUTCHours(0,0,0,0)},function(m,O){m.setUTCMonth(m.getUTCMonth()+O)},function(m,O){return O.getUTCMonth()-m.getUTCMonth()+12*(O.getUTCFullYear()-m.getUTCFullYear())},function(m){return m.getUTCMonth()}));var Dl=Oa(function(m){m.setUTCMonth(0,1),m.setUTCHours(0,0,0,0)},function(m,O){m.setUTCFullYear(m.getUTCFullYear()+O)},function(m,O){return O.getUTCFullYear()-m.getUTCFullYear()},function(m){return m.getUTCFullYear()});Dl.every=function(m){return isFinite(m=Math.floor(m))&&m>0?Oa(function(O){O.setUTCFullYear(Math.floor(O.getUTCFullYear()/m)*m),O.setUTCMonth(0,1),O.setUTCHours(0,0,0,0)},function(O,o){O.setUTCFullYear(O.getUTCFullYear()+o*m)}):null};const tl=Dl;function Ho(m,O,o,b,z,$){const Ne=[[ao,1,As],[ao,5,5e3],[ao,15,15e3],[ao,30,3e4],[$,1,is],[$,5,5*is],[$,15,15*is],[$,30,30*is],[z,1,vs],[z,3,3*vs],[z,6,6*vs],[z,12,12*vs],[b,1,Po],[b,2,2*Po],[o,1,_o],[O,1,xl],[O,3,3*xl],[m,1,$r]];function Gt(Ut,oi,bi){const Ci=Math.abs(oi-Ut)/bi,Di=Fr(([,,Ii])=>Ii).right(Ne,Ci);if(Di===Ne.length)return m.every(ql(Ut/$r,oi/$r,bi));if(0===Di)return r2.every(Math.max(ql(Ut,oi,bi),1));const[tn,Mn]=Ne[Ci/Ne[Di-1][2][O.toLowerCase(),o]))}function g2(m,O,o){var b=ma.exec(O.slice(o,o+1));return b?(m.w=+b[0],o+b[0].length):-1}function f1(m,O,o){var b=ma.exec(O.slice(o,o+1));return b?(m.u=+b[0],o+b[0].length):-1}function p1(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.U=+b[0],o+b[0].length):-1}function lc(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.V=+b[0],o+b[0].length):-1}function al(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.W=+b[0],o+b[0].length):-1}function cc(m,O,o){var b=ma.exec(O.slice(o,o+4));return b?(m.y=+b[0],o+b[0].length):-1}function U(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.y=+b[0]+(+b[0]>68?1900:2e3),o+b[0].length):-1}function Le(m,O,o){var b=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(O.slice(o,o+6));return b?(m.Z=b[1]?0:-(b[2]+(b[3]||"00")),o+b[0].length):-1}function P(m,O,o){var b=ma.exec(O.slice(o,o+1));return b?(m.q=3*b[0]-3,o+b[0].length):-1}function ne(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.m=b[0]-1,o+b[0].length):-1}function Ye(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.d=+b[0],o+b[0].length):-1}function Ht(m,O,o){var b=ma.exec(O.slice(o,o+3));return b?(m.m=0,m.d=+b[0],o+b[0].length):-1}function Mi(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.H=+b[0],o+b[0].length):-1}function Ki(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.M=+b[0],o+b[0].length):-1}function mn(m,O,o){var b=ma.exec(O.slice(o,o+2));return b?(m.S=+b[0],o+b[0].length):-1}function Fn(m,O,o){var b=ma.exec(O.slice(o,o+3));return b?(m.L=+b[0],o+b[0].length):-1}function cs(m,O,o){var b=ma.exec(O.slice(o,o+6));return b?(m.L=Math.floor(b[0]/1e3),o+b[0].length):-1}function Ds(m,O,o){var b=rl.exec(O.slice(o,o+1));return b?o+b[0].length:-1}function ys(m,O,o){var b=ma.exec(O.slice(o));return b?(m.Q=+b[0],o+b[0].length):-1}function bs(m,O,o){var b=ma.exec(O.slice(o));return b?(m.s=+b[0],o+b[0].length):-1}function Jn(m,O){return gr(m.getDate(),O,2)}function vr(m,O){return gr(m.getHours(),O,2)}function Rn(m,O){return gr(m.getHours()%12||12,O,2)}function hr(m,O){return gr(1+vo.count(Ha(m),m),O,3)}function Fa(m,O){return gr(m.getMilliseconds(),O,3)}function rs(m,O){return Fa(m,O)+"000"}function dc(m,O){return gr(m.getMonth()+1,O,2)}function _2(m,O){return gr(m.getMinutes(),O,2)}function v3(m,O){return gr(m.getSeconds(),O,2)}function V4(m){var O=m.getDay();return 0===O?7:O}function y3(m,O){return gr(so.count(Ha(m)-1,m),O,2)}function b3(m){var O=m.getDay();return O>=4||0===O?Ws(m):Ws.ceil(m)}function v2(m,O){return m=b3(m),gr(Ws.count(Ha(m),m)+(4===Ha(m).getDay()),O,2)}function B4(m){return m.getDay()}function y2(m,O){return gr(Sl.count(Ha(m)-1,m),O,2)}function U4(m,O){return gr(m.getFullYear()%100,O,2)}function G4(m,O){return gr((m=b3(m)).getFullYear()%100,O,2)}function b2(m,O){return gr(m.getFullYear()%1e4,O,4)}function Z4(m,O){var o=m.getDay();return gr((m=o>=4||0===o?Ws(m):Ws.ceil(m)).getFullYear()%1e4,O,4)}function W4(m){var O=m.getTimezoneOffset();return(O>0?"-":(O*=-1,"+"))+gr(O/60|0,"0",2)+gr(O%60,"0",2)}function m1(m,O){return gr(m.getUTCDate(),O,2)}function Y4(m,O){return gr(m.getUTCHours(),O,2)}function x3(m,O){return gr(m.getUTCHours()%12||12,O,2)}function g1(m,O){return gr(1+Al.count(tl(m),m),O,3)}function x2(m,O){return gr(m.getUTCMilliseconds(),O,3)}function j4(m,O){return x2(m,O)+"000"}function C3(m,O){return gr(m.getUTCMonth()+1,O,2)}function K4(m,O){return gr(m.getUTCMinutes(),O,2)}function Q4(m,O){return gr(m.getUTCSeconds(),O,2)}function C2(m){var O=m.getUTCDay();return 0===O?7:O}function q4(m,O){return gr(sc.count(tl(m)-1,m),O,2)}function M3(m){var O=m.getUTCDay();return O>=4||0===O?Ro(m):Ro.ceil(m)}function w3(m,O){return m=M3(m),gr(Ro.count(tl(m),m)+(4===tl(m).getUTCDay()),O,2)}function J4(m){return m.getUTCDay()}function X4(m,O){return gr(Ll.count(tl(m)-1,m),O,2)}function M2(m,O){return gr(m.getUTCFullYear()%100,O,2)}function $4(m,O){return gr((m=M3(m)).getUTCFullYear()%100,O,2)}function eu(m,O){return gr(m.getUTCFullYear()%1e4,O,4)}function kl(m,O){var o=m.getUTCDay();return gr((m=o>=4||0===o?Ro(m):Ro.ceil(m)).getUTCFullYear()%1e4,O,4)}function Ks(){return"+0000"}function tu(){return"%"}function S3(m){return+m}function w2(m){return Math.floor(+m/1e3)}function sl(m){return null===m?NaN:+m}!function E3(m){(function m2(m){var O=m.dateTime,o=m.date,b=m.time,z=m.periods,$=m.days,Ne=m.shortDays,dt=m.months,Gt=m.shortMonths,Ut=Fo(z),oi=bo(z),bi=Fo($),Ci=bo($),Di=Fo(Ne),tn=bo(Ne),Mn=Fo(dt),Ii=bo(dt),_n=Fo(Gt),vn=bo(Gt),yn={a:function sn(hn){return Ne[hn.getDay()]},A:function fs(hn){return $[hn.getDay()]},b:function Ar(hn){return Gt[hn.getMonth()]},B:function za(hn){return dt[hn.getMonth()]},c:null,d:Jn,e:Jn,f:rs,g:G4,G:Z4,H:vr,I:Rn,j:hr,L:Fa,m:dc,M:_2,p:function ea(hn){return z[+(hn.getHours()>=12)]},q:function ga(hn){return 1+~~(hn.getMonth()/3)},Q:S3,s:w2,S:v3,u:V4,U:y3,V:v2,w:B4,W:y2,x:null,X:null,y:U4,Y:b2,Z:W4,"%":tu},Zn={a:function Yo(hn){return Ne[hn.getUTCDay()]},A:function To(hn){return $[hn.getUTCDay()]},b:function Or(hn){return Gt[hn.getUTCMonth()]},B:function Vc(hn){return dt[hn.getUTCMonth()]},c:null,d:m1,e:m1,f:j4,g:$4,G:kl,H:Y4,I:x3,j:g1,L:x2,m:C3,M:K4,p:function qa(hn){return z[+(hn.getUTCHours()>=12)]},q:function Bc(hn){return 1+~~(hn.getUTCMonth()/3)},Q:S3,s:w2,S:Q4,u:C2,U:q4,V:w3,w:J4,W:X4,x:null,X:null,y:M2,Y:eu,Z:Ks,"%":tu},kn={a:function zr(hn,Kn,fr){var Yi=Di.exec(Kn.slice(fr));return Yi?(hn.w=tn.get(Yi[0].toLowerCase()),fr+Yi[0].length):-1},A:function Hn(hn,Kn,fr){var Yi=bi.exec(Kn.slice(fr));return Yi?(hn.w=Ci.get(Yi[0].toLowerCase()),fr+Yi[0].length):-1},b:function Pa(hn,Kn,fr){var Yi=_n.exec(Kn.slice(fr));return Yi?(hn.m=vn.get(Yi[0].toLowerCase()),fr+Yi[0].length):-1},B:function xr(hn,Kn,fr){var Yi=Mn.exec(Kn.slice(fr));return Yi?(hn.m=Ii.get(Yi[0].toLowerCase()),fr+Yi[0].length):-1},c:function Vr(hn,Kn,fr){return Tr(hn,O,Kn,fr)},d:Ye,e:Ye,f:cs,g:U,G:cc,H:Mi,I:Mi,j:Ht,L:Fn,m:ne,M:Ki,p:function hs(hn,Kn,fr){var Yi=Ut.exec(Kn.slice(fr));return Yi?(hn.p=oi.get(Yi[0].toLowerCase()),fr+Yi[0].length):-1},q:P,Q:ys,s:bs,S:mn,u:f1,U:p1,V:lc,w:g2,W:al,x:function Ms(hn,Kn,fr){return Tr(hn,o,Kn,fr)},X:function da(hn,Kn,fr){return Tr(hn,b,Kn,fr)},y:U,Y:cc,Z:Le,"%":Ds};function wn(hn,Kn){return function(fr){var ps,zn,_a,Yi=[],ta=-1,Lr=0,as=hn.length;for(fr instanceof Date||(fr=new Date(+fr));++ta53)return null;"w"in Yi||(Yi.w=1),"Z"in Yi?(as=(Lr=Ol(nl(Yi.y,0,1))).getUTCDay(),Lr=as>4||0===as?Ll.ceil(Lr):Ll(Lr),Lr=Al.offset(Lr,7*(Yi.V-1)),Yi.y=Lr.getUTCFullYear(),Yi.m=Lr.getUTCMonth(),Yi.d=Lr.getUTCDate()+(Yi.w+6)%7):(as=(Lr=Il(nl(Yi.y,0,1))).getDay(),Lr=as>4||0===as?Sl.ceil(Lr):Sl(Lr),Lr=vo.offset(Lr,7*(Yi.V-1)),Yi.y=Lr.getFullYear(),Yi.m=Lr.getMonth(),Yi.d=Lr.getDate()+(Yi.w+6)%7)}else("W"in Yi||"U"in Yi)&&("w"in Yi||(Yi.w="u"in Yi?Yi.u%7:"W"in Yi?1:0),as="Z"in Yi?Ol(nl(Yi.y,0,1)).getUTCDay():Il(nl(Yi.y,0,1)).getDay(),Yi.m=0,Yi.d="W"in Yi?(Yi.w+6)%7+7*Yi.W-(as+5)%7:Yi.w+7*Yi.U-(as+6)%7);return"Z"in Yi?(Yi.H+=Yi.Z/100|0,Yi.M+=Yi.Z%100,Ol(Yi)):Il(Yi)}}function Tr(hn,Kn,fr,Yi){for(var ps,zn,ta=0,Lr=Kn.length,as=fr.length;ta=as)return-1;if(37===(ps=Kn.charCodeAt(ta++))){if(ps=Kn.charAt(ta++),!(zn=kn[ps in h1?Kn.charAt(ta++):ps])||(Yi=zn(hn,fr,Yi))<0)return-1}else if(ps!=fr.charCodeAt(Yi++))return-1}return Yi}return yn.x=wn(o,yn),yn.X=wn(b,yn),yn.c=wn(O,yn),Zn.x=wn(o,Zn),Zn.X=wn(b,Zn),Zn.c=wn(O,Zn),{format:function(hn){var Kn=wn(hn+="",yn);return Kn.toString=function(){return hn},Kn},parse:function(hn){var Kn=wr(hn+="",!1);return Kn.toString=function(){return hn},Kn},utcFormat:function(hn){var Kn=wn(hn+="",Zn);return Kn.toString=function(){return hn},Kn},utcParse:function(hn){var Kn=wr(hn+="",!0);return Kn.toString=function(){return hn},Kn}}})(m)}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});const A2=Fr(yl).right,au=(Fr(sl),A2);function Rl(m,O){return m=+m,O=+O,function(o){return Math.round(m*(1-o)+O*o)}}function D2(m){return+m}var A3=[0,1];function xo(m){return m}function I2(m,O){return(O-=m=+m)?function(o){return(o-m)/O}:function L2(m){return function(){return m}}(isNaN(O)?NaN:.5)}function ou(m,O,o){var b=m[0],z=m[1],$=O[0],Ne=O[1];return zO&&(o=m,m=O,O=o),function(b){return Math.max(m,Math.min(O,b))}}(m[0],m[Ci-1])),dt=Ci>2?L3:ou,Gt=Ut=null,bi}function bi(Ci){return null==Ci||isNaN(Ci=+Ci)?$:(Gt||(Gt=dt(m.map(b),O,o)))(b(Ne(Ci)))}return bi.invert=function(Ci){return Ne(z((Ut||(Ut=dt(O,m.map(b),Et)))(Ci)))},bi.domain=function(Ci){return arguments.length?(m=Array.from(Ci,D2),oi()):m.slice()},bi.range=function(Ci){return arguments.length?(O=Array.from(Ci),oi()):O.slice()},bi.rangeRound=function(Ci){return O=Array.from(Ci),o=Rl,oi()},bi.clamp=function(Ci){return arguments.length?(Ne=!!Ci||xo,oi()):Ne!==xo},bi.interpolate=function(Ci){return arguments.length?(o=Ci,oi()):o},bi.unknown=function(Ci){return arguments.length?($=Ci,bi):$},function(Ci,Di){return b=Ci,z=Di,oi()}}()(xo,xo)}function ol(m,O){switch(arguments.length){case 0:break;case 1:this.range(m);break;default:this.range(O).domain(m)}return this}var z2,ll=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function uc(m){if(!(O=ll.exec(m)))throw new Error("invalid format: "+m);var O;return new _1({fill:O[1],align:O[2],sign:O[3],symbol:O[4],zero:O[5],width:O[6],comma:O[7],precision:O[8]&&O[8].slice(1),trim:O[9],type:O[10]})}function _1(m){this.fill=void 0===m.fill?" ":m.fill+"",this.align=void 0===m.align?">":m.align+"",this.sign=void 0===m.sign?"-":m.sign+"",this.symbol=void 0===m.symbol?"":m.symbol+"",this.zero=!!m.zero,this.width=void 0===m.width?void 0:+m.width,this.comma=!!m.comma,this.precision=void 0===m.precision?void 0:+m.precision,this.trim=!!m.trim,this.type=void 0===m.type?"":m.type+""}function cl(m,O){if((o=(m=O?m.toExponential(O-1):m.toExponential()).indexOf("e"))<0)return null;var o,b=m.slice(0,o);return[b.length>1?b[0]+b.slice(2):b,+m.slice(o+1)]}function Hl(m){return(m=cl(Math.abs(m)))?m[1]:NaN}function fc(m,O){var o=cl(m,O);if(!o)return m+"";var b=o[0],z=o[1];return z<0?"0."+new Array(-z).join("0")+b:b.length>z+1?b.slice(0,z+1)+"."+b.slice(z+1):b+new Array(z-b.length+2).join("0")}uc.prototype=_1.prototype,_1.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const V2={"%":(m,O)=>(100*m).toFixed(O),b:m=>Math.round(m).toString(2),c:m=>m+"",d:function cu(m){return Math.abs(m=Math.round(m))>=1e21?m.toLocaleString("en").replace(/,/g,""):m.toString(10)},e:(m,O)=>m.toExponential(O),f:(m,O)=>m.toFixed(O),g:(m,O)=>m.toPrecision(O),o:m=>Math.round(m).toString(8),p:(m,O)=>fc(100*m,O),r:fc,s:function hc(m,O){var o=cl(m,O);if(!o)return m+"";var b=o[0],z=o[1],$=z-(z2=3*Math.max(-8,Math.min(8,Math.floor(z/3))))+1,Ne=b.length;return $===Ne?b:$>Ne?b+new Array($-Ne+1).join("0"):$>0?b.slice(0,$)+"."+b.slice($):"0."+new Array(1-$).join("0")+cl(m,Math.max(0,O+$-1))[0]},X:m=>Math.round(m).toString(16).toUpperCase(),x:m=>Math.round(m).toString(16)};function pc(m){return m}var y1,U2,N3,B2=Array.prototype.map,v1=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function uu(m){var O=m.domain;return m.ticks=function(o){var b=O();return function n2(m,O,o){var b,$,Ne,dt,z=-1;if(o=+o,(m=+m)==(O=+O)&&o>0)return[m];if((b=O0){let Gt=Math.round(m/dt),Ut=Math.round(O/dt);for(Gt*dtO&&--Ut,Ne=new Array($=Ut-Gt+1);++z<$;)Ne[z]=(Gt+z)*dt}else{dt=-dt;let Gt=Math.round(m*dt),Ut=Math.round(O*dt);for(Gt/dtO&&--Ut,Ne=new Array($=Ut-Gt+1);++z<$;)Ne[z]=(Gt+z)/dt}return b&&Ne.reverse(),Ne}(b[0],b[b.length-1],null==o?10:o)},m.tickFormat=function(o,b){var z=O();return function H3(m,O,o,b){var $,z=ql(m,O,o);switch((b=uc(null==b?",f":b)).type){case"s":var Ne=Math.max(Math.abs(m),Math.abs(O));return null==b.precision&&!isNaN($=function R2(m,O){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Hl(O)/3)))-Hl(Math.abs(m)))}(z,Ne))&&(b.precision=$),N3(b,Ne);case"":case"e":case"g":case"p":case"r":null==b.precision&&!isNaN($=function R3(m,O){return m=Math.abs(m),O=Math.abs(O)-m,Math.max(0,Hl(O)-Hl(m))+1}(z,Math.max(Math.abs(m),Math.abs(O))))&&(b.precision=$-("e"===b.type));break;case"f":case"%":null==b.precision&&!isNaN($=function b1(m){return Math.max(0,-Hl(Math.abs(m)))}(z))&&(b.precision=$-2*("%"===b.type))}return U2(b)}(z[0],z[z.length-1],null==o?10:o,b)},m.nice=function(o){null==o&&(o=10);var Gt,Ut,b=O(),z=0,$=b.length-1,Ne=b[z],dt=b[$],oi=10;for(dt0;){if((Ut=Jc(Ne,dt,o))===Gt)return b[z]=Ne,b[$]=dt,O(b);if(Ut>0)Ne=Math.floor(Ne/Ut)*Ut,dt=Math.ceil(dt/Ut)*Ut;else{if(!(Ut<0))break;Ne=Math.ceil(Ne*Ut)/Ut,dt=Math.floor(dt*Ut)/Ut}Gt=Ut}return m},m}function zo(){var m=P2();return m.copy=function(){return D3(m,zo())},ol.apply(m,arguments),uu(m)}function G2(m,O,o){m=+m,O=+O,o=(z=arguments.length)<2?(O=m,m=0,1):z<3?1:+o;for(var b=-1,z=0|Math.max(0,Math.ceil((O-m)/o)),$=new Array(z);++b0&&dt>0&&(Gt+dt+1>b&&(dt=Math.max(1,b-Gt)),$.push(o.substring(z-=dt,z+dt)),!((Gt+=dt+1)>b));)dt=m[Ne=(Ne+1)%m.length];return $.reverse().join(O)}}(B2.call(m.grouping,Number),m.thousands+""),o=void 0===m.currency?"":m.currency[0]+"",b=void 0===m.currency?"":m.currency[1]+"",z=void 0===m.decimal?".":m.decimal+"",$=void 0===m.numerals?pc:function H2(m){return function(O){return O.replace(/[0-9]/g,function(o){return m[+o]})}}(B2.call(m.numerals,String)),Ne=void 0===m.percent?"%":m.percent+"",dt=void 0===m.minus?"\u2212":m.minus+"",Gt=void 0===m.nan?"NaN":m.nan+"";function Ut(bi){var Ci=(bi=uc(bi)).fill,Di=bi.align,tn=bi.sign,Mn=bi.symbol,Ii=bi.zero,_n=bi.width,vn=bi.comma,yn=bi.precision,Zn=bi.trim,kn=bi.type;"n"===kn?(vn=!0,kn="g"):V2[kn]||(void 0===yn&&(yn=12),Zn=!0,kn="g"),(Ii||"0"===Ci&&"="===Di)&&(Ii=!0,Ci="0",Di="=");var wn="$"===Mn?o:"#"===Mn&&/[boxX]/.test(kn)?"0"+kn.toLowerCase():"",wr="$"===Mn?b:/[%p]/.test(kn)?Ne:"",Tr=V2[kn],hs=/[defgprs%]/.test(kn);function zr(Hn){var Vr,Ms,da,Pa=wn,xr=wr;if("c"===kn)xr=Tr(Hn)+xr,Hn="";else{var sn=(Hn=+Hn)<0||1/Hn<0;if(Hn=isNaN(Hn)?Gt:Tr(Math.abs(Hn),yn),Zn&&(Hn=function F2(m){e:for(var z,O=m.length,o=1,b=-1;o0&&(b=0)}return b>0?m.slice(0,b)+m.slice(z+1):m}(Hn)),sn&&0==+Hn&&"+"!==tn&&(sn=!1),Pa=(sn?"("===tn?tn:dt:"-"===tn||"("===tn?"":tn)+Pa,xr=("s"===kn?v1[8+z2/3]:"")+xr+(sn&&"("===tn?")":""),hs)for(Vr=-1,Ms=Hn.length;++Vr(da=Hn.charCodeAt(Vr))||da>57){xr=(46===da?z+Hn.slice(Vr+1):Hn.slice(Vr))+xr,Hn=Hn.slice(0,Vr);break}}vn&&!Ii&&(Hn=O(Hn,1/0));var fs=Pa.length+Hn.length+xr.length,Ar=fs<_n?new Array(_n-fs+1).join(Ci):"";switch(vn&&Ii&&(Hn=O(Ar+Hn,Ar.length?_n-xr.length:1/0),Ar=""),Di){case"<":Hn=Pa+Hn+xr+Ar;break;case"=":Hn=Pa+Ar+Hn+xr;break;case"^":Hn=Ar.slice(0,fs=Ar.length>>1)+Pa+Hn+xr+Ar.slice(fs);break;default:Hn=Ar+Pa+Hn+xr}return $(Hn)}return yn=void 0===yn?6:/[gprs]/.test(kn)?Math.max(1,Math.min(21,yn)):Math.max(0,Math.min(20,yn)),zr.toString=function(){return bi+""},zr}return{format:Ut,formatPrefix:function oi(bi,Ci){var Di=Ut(((bi=uc(bi)).type="f",bi)),tn=3*Math.max(-8,Math.min(8,Math.floor(Hl(Ci)/3))),Mn=Math.pow(10,-tn),Ii=v1[8+tn/3];return function(_n){return Di(Mn*_n)+Ii}}}}(m),U2=y1.format,N3=y1.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});const Z2=Symbol("implicit");function W2(){var m=new Map,O=[],o=[],b=Z2;function z($){var Ne=$+"",dt=m.get(Ne);if(!dt){if(b!==Z2)return b;m.set(Ne,dt=O.push($))}return o[(dt-1)%o.length]}return z.domain=function($){if(!arguments.length)return O.slice();O=[],m=new Map;for(const Ne of $){const dt=Ne+"";m.has(dt)||m.set(dt,O.push(Ne))}return z},z.range=function($){return arguments.length?(o=Array.from($),z):o.slice()},z.unknown=function($){return arguments.length?(b=$,z):b},z.copy=function(){return W2(O,o).unknown(b)},ol.apply(z,arguments),z}function Vo(){var $,Ne,m=W2().unknown(void 0),O=m.domain,o=m.range,b=0,z=1,dt=!1,Gt=0,Ut=0,oi=.5;function bi(){var Ci=O().length,Di=z=1)return+o(m[b-1],b-1,m);var b,z=(b-1)*O,$=Math.floor(z),Ne=+o(m[$],$,m);return Ne+(+o(m[$+1],$+1,m)-Ne)*(z-$)}}function z3(){var b,m=[],O=[],o=[];function z(){var Ne=0,dt=Math.max(1,O.length);for(o=new Array(dt-1);++Ne0?o[dt-1]:m[0],dt{return(m=er||(er={})).Top="top",m.Bottom="bottom",m.Left="left",m.Right="right",m.Center="center",er;var m})();function S0(m,O,o){return o===er.Top?m.top-7:o===er.Bottom?m.top+m.height-O.height+7:o===er.Center?m.top+m.height/2-O.height/2:void 0}function E0(m,O,o){return o===er.Left?m.left-7:o===er.Right?m.left+m.width-O.width+7:o===er.Center?m.left+m.width/2-O.width/2:void 0}class Cs{static calculateVerticalAlignment(O,o,b){let z=S0(O,o,b);return z+o.height>window.innerHeight&&(z=window.innerHeight-o.height),z}static calculateVerticalCaret(O,o,b,z){let $;z===er.Top&&($=O.height/2-b.height/2+7),z===er.Bottom&&($=o.height-O.height/2-b.height/2-7),z===er.Center&&($=o.height/2-b.height/2);const Ne=S0(O,o,z);return Ne+o.height>window.innerHeight&&($+=Ne+o.height-window.innerHeight),$}static calculateHorizontalAlignment(O,o,b){let z=E0(O,o,b);return z+o.width>window.innerWidth&&(z=window.innerWidth-o.width),z}static calculateHorizontalCaret(O,o,b,z){let $;z===er.Left&&($=O.width/2-b.width/2+7),z===er.Right&&($=o.width-O.width/2-b.width/2-7),z===er.Center&&($=o.width/2-b.width/2);const Ne=E0(O,o,z);return Ne+o.width>window.innerWidth&&($+=Ne+o.width-window.innerWidth),$}static shouldFlip(O,o,b,z){let $=!1;return b===er.Right&&O.left+O.width+o.width+z>window.innerWidth&&($=!0),b===er.Left&&O.left-o.width-z<0&&($=!0),b===er.Top&&O.top-o.height-z<0&&($=!0),b===er.Bottom&&O.top+O.height+o.height+z>window.innerHeight&&($=!0),$}static positionCaret(O,o,b,z,$){let Ne=0,dt=0;return O===er.Right?(dt=-7,Ne=Cs.calculateVerticalCaret(b,o,z,$)):O===er.Left?(dt=o.width,Ne=Cs.calculateVerticalCaret(b,o,z,$)):O===er.Top?(Ne=o.height,dt=Cs.calculateHorizontalCaret(b,o,z,$)):O===er.Bottom&&(Ne=-7,dt=Cs.calculateHorizontalCaret(b,o,z,$)),{top:Ne,left:dt}}static positionContent(O,o,b,z,$){let Ne=0,dt=0;return O===er.Right?(dt=b.left+b.width+z,Ne=Cs.calculateVerticalAlignment(b,o,$)):O===er.Left?(dt=b.left-o.width-z,Ne=Cs.calculateVerticalAlignment(b,o,$)):O===er.Top?(Ne=b.top-o.height-z,dt=Cs.calculateHorizontalAlignment(b,o,$)):O===er.Bottom&&(Ne=b.top+b.height+z,dt=Cs.calculateHorizontalAlignment(b,o,$)),{top:Ne,left:dt}}static determinePlacement(O,o,b,z){if(Cs.shouldFlip(b,o,O,z)){if(O===er.Right)return er.Left;if(O===er.Left)return er.Right;if(O===er.Top)return er.Bottom;if(O===er.Bottom)return er.Top}return O}}let T0=(()=>{class m{constructor(o,b,z){this.element=o,this.renderer=b,this.platformId=z}get cssClasses(){let o="ngx-charts-tooltip-content";return o+=` position-${this.placement}`,o+=` type-${this.type}`,o+=` ${this.cssClass}`,o}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,e.NF)(this.platformId))return;const o=this.element.nativeElement,b=this.host.nativeElement.getBoundingClientRect();if(!b.height&&!b.width)return;const z=o.getBoundingClientRect();this.checkFlip(b,z),this.positionContent(o,b,z),this.showCaret&&this.positionCaret(b,z),setTimeout(()=>this.renderer.addClass(o,"animate"),1)}positionContent(o,b,z){const{top:$,left:Ne}=Cs.positionContent(this.placement,z,b,this.spacing,this.alignment);this.renderer.setStyle(o,"top",`${$}px`),this.renderer.setStyle(o,"left",`${Ne}px`)}positionCaret(o,b){const z=this.caretElm.nativeElement,$=z.getBoundingClientRect(),{top:Ne,left:dt}=Cs.positionCaret(this.placement,b,o,$,this.alignment);this.renderer.setStyle(z,"top",`${Ne}px`),this.renderer.setStyle(z,"left",`${dt}px`)}checkFlip(o,b){this.placement=Cs.determinePlacement(this.placement,b,o,this.spacing)}onWindowResize(){this.position()}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq),t.Y36(t.Qsj),t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-tooltip-content"]],viewQuery:function(o,b){if(1&o&&t.Gf(mu,5),2&o){let z;t.iGM(z=t.CRH())&&(b.caretElm=z.first)}},hostVars:2,hostBindings:function(o,b){1&o&&t.NdJ("resize",function(){return b.onWindowResize()},!1,t.Jf7),2&o&&t.Tol(b.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},decls:6,vars:6,consts:[[3,"hidden"],["caretElm",""],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(o,b){1&o&&(t.TgZ(0,"div"),t._UZ(1,"span",0,1),t.TgZ(3,"div",2),t.YNc(4,B3,2,4,"span",3),t.YNc(5,U3,1,1,"span",4),t.qZA()()),2&o&&(t.xp6(1),t.Gre("tooltip-caret position-",b.placement,""),t.Q6J("hidden",!b.showCaret),t.xp6(3),t.Q6J("ngIf",!b.title),t.xp6(1),t.Q6J("ngIf",b.title))},directives:[e.O5,e.tP],styles:[".ngx-charts-tooltip-content{position:fixed;border-radius:3px;z-index:5000;display:block;font-weight:400;opacity:0;pointer-events:none!important}.ngx-charts-tooltip-content.type-popover{background:#fff;color:#060709;border:1px solid #72809b;box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;font-size:13px;padding:4px}.ngx-charts-tooltip-content.type-popover .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff}.ngx-charts-tooltip-content.type-tooltip{color:#fff;background:rgba(0,0,0,.75);font-size:12px;padding:0 10px;text-align:center;pointer-events:auto}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content .tooltip-label{display:block;line-height:1em;padding:8px 5px 5px;font-size:1em}.ngx-charts-tooltip-content .tooltip-val{display:block;font-size:1.3em;line-height:1em;padding:0 5px 8px}.ngx-charts-tooltip-content .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.position-right{transform:translate(10px)}.ngx-charts-tooltip-content.position-left{transform:translate(-10px)}.ngx-charts-tooltip-content.position-top{transform:translateY(-10px)}.ngx-charts-tooltip-content.position-bottom{transform:translateY(10px)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translate(0);pointer-events:auto}.area-tooltip-container{padding:5px 0;pointer-events:none}.tooltip-item{text-align:left;line-height:1.2em;padding:5px 0}.tooltip-item .tooltip-item-color{display:inline-block;height:12px;width:12px;margin-right:5px;color:#5b646b;border-radius:3px}\n"],encapsulation:2}),(0,f.gn)([Id(100)],m.prototype,"onWindowResize",null),m})(),A0=(()=>{class m{constructor(o,b,z){this.applicationRef=o,this.componentFactoryResolver=b,this.injector=z}static setGlobalRootViewContainer(o){m.globalRootViewContainer=o}getRootViewContainer(){if(this._container)return this._container;if(m.globalRootViewContainer)return m.globalRootViewContainer;if(this.applicationRef.components.length)return this.applicationRef.components[0];throw new Error("View Container not found! ngUpgrade needs to manually set this via setRootViewContainer or setGlobalRootViewContainer.")}setRootViewContainer(o){this._container=o}getComponentRootNode(o){return function Ch(m){return m.element}(o)?o.element.nativeElement:o.hostView&&o.hostView.rootNodes.length>0?o.hostView.rootNodes[0]:o.location.nativeElement}getRootViewContainerNode(o){return this.getComponentRootNode(o)}projectComponentBindings(o,b){if(b){if(void 0!==b.inputs){const z=Object.getOwnPropertyNames(b.inputs);for(const $ of z)o.instance[$]=b.inputs[$]}if(void 0!==b.outputs){const z=Object.getOwnPropertyNames(b.outputs);for(const $ of z)o.instance[$]=b.outputs[$]}}return o}appendComponent(o,b={},z){z||(z=this.getRootViewContainer());const $=this.getComponentRootNode(z),Ne=new M.u0($,this.componentFactoryResolver,this.applicationRef,this.injector),dt=new M.C5(o),Gt=Ne.attach(dt);return this.projectComponentBindings(Gt,b),Gt}}return m.globalRootViewContainer=null,m.\u0275fac=function(o){return new(o||m)(t.LFG(t.z2F),t.LFG(t._Vd),t.LFG(t.zs3))},m.\u0275prov=t.Yz7({token:m,factory:m.\u0275fac}),m})(),L0=(()=>{class m extends class Od{constructor(O){this.injectionService=O,this.defaults={},this.components=new Map}getByType(O=this.type){return this.components.get(O)}create(O){return this.createByType(this.type,O)}createByType(O,o){o=this.assignDefaults(o);const b=this.injectComponent(O,o);return this.register(O,b),b}destroy(O){const o=this.components.get(O.componentType);if(o&&o.length){const b=o.indexOf(O);b>-1&&(o[b].destroy(),o.splice(b,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(O){const o=this.components.get(O);if(o&&o.length){let b=o.length-1;for(;b>=0;)this.destroy(o[b--])}}injectComponent(O,o){return this.injectionService.appendComponent(O,o)}assignDefaults(O){const o=Object.assign({},this.defaults.inputs),b=Object.assign({},this.defaults.outputs);return!O.inputs&&!O.outputs&&(O={inputs:O}),o&&(O.inputs=Object.assign(Object.assign({},o),O.inputs)),b&&(O.outputs=Object.assign(Object.assign({},b),O.outputs)),O}register(O,o){this.components.has(O)||this.components.set(O,[]),this.components.get(O).push(o)}}{constructor(o){super(o),this.type=T0}}return m.\u0275fac=function(o){return new(o||m)(t.LFG(A0))},m.\u0275prov=t.Yz7({token:m,factory:m.\u0275fac}),m})();var Hs=(()=>{return(m=Hs||(Hs={})).Right="right",m.Below="below",Hs;var m})(),hl=(()=>{return(m=hl||(hl={})).ScaleLegend="scaleLegend",m.Legend="legend",hl;var m})(),Ln=(()=>{return(m=Ln||(Ln={})).Time="time",m.Linear="linear",m.Ordinal="ordinal",m.Quantile="quantile",Ln;var m})();let D0=(()=>{class m{constructor(){this.horizontal=!1}ngOnChanges(o){const b=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${b})`}gradientString(o,b){b.push(1);const z=[];return o.reverse().forEach(($,Ne)=>{z.push(`${$} ${Math.round(100*b[Ne])}%`)}),z.join(", ")}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[t.TTD],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(o,b){1&o&&(t.TgZ(0,"div",0)(1,"div",1)(2,"span"),t._uU(3),t.qZA()(),t._UZ(4,"div",2),t.TgZ(5,"div",1)(6,"span"),t._uU(7),t.qZA()()()),2&o&&(t.Udp("height",b.horizontal?void 0:b.height,"px")("width",b.width,"px"),t.ekj("horizontal-legend",b.horizontal),t.xp6(3),t.Oqu(b.valueRange[1].toLocaleString()),t.xp6(1),t.Udp("background",b.gradient),t.xp6(3),t.Oqu(b.valueRange[0].toLocaleString()))},styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .scale-legend{text-align:center;display:flex;flex-direction:column}.chart-legend .scale-legend-wrap{display:inline-block;flex:1;width:30px;border-radius:5px;margin:0 auto}.chart-legend .scale-legend-label{font-size:12px}.chart-legend .horizontal-legend.scale-legend{flex-direction:row}.chart-legend .horizontal-legend .scale-legend-wrap{width:auto;height:30px;margin:0 16px}\n"],encapsulation:2,changeDetection:0}),m})();function Dc(m){return m instanceof Date?m.toLocaleDateString():m.toLocaleString()}let k1=(()=>{class m{constructor(){this.isActive=!1,this.select=new t.vpe,this.activate=new t.vpe,this.deactivate=new t.vpe,this.toggle=new t.vpe}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(o,b){1&o&&t.NdJ("mouseenter",function(){return b.onMouseEnter()})("mouseleave",function(){return b.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},decls:4,vars:6,consts:[["tabindex","-1",3,"title","click"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(o,b){1&o&&(t.TgZ(0,"span",0),t.NdJ("click",function(){return b.select.emit(b.formattedLabel)}),t.TgZ(1,"span",1),t.NdJ("click",function(){return b.toggle.emit(b.formattedLabel)}),t.qZA(),t.TgZ(2,"span",2),t._uU(3),t.qZA()()),2&o&&(t.ekj("active",b.isActive),t.Q6J("title",b.formattedLabel),t.xp6(1),t.Udp("background-color",b.color),t.xp6(2),t.hij(" ",b.trimmedLabel," "))},encapsulation:2,changeDetection:0}),m})(),Pd=(()=>{class m{constructor(o){this.cd=o,this.horizontal=!1,this.labelClick=new t.vpe,this.labelActivate=new t.vpe,this.labelDeactivate=new t.vpe,this.legendEntries=[]}ngOnChanges(o){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const o=[];for(const b of this.data){const z=Dc(b);-1===o.findIndex(Ne=>Ne.label===z)&&o.push({label:b,formattedLabel:z,color:this.colors.getColor(b)})}return o}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(z=>o.label===z.name)}activate(o){this.labelActivate.emit(o)}deactivate(o){this.labelDeactivate.emit(o)}trackBy(o,b){return b.label}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.sBO))},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-legend"]],inputs:{data:"data",title:"title",colors:"colors",height:"height",width:"width",activeEntries:"activeEntries",horizontal:"horizontal"},outputs:{labelClick:"labelClick",labelActivate:"labelActivate",labelDeactivate:"labelDeactivate"},features:[t.TTD],decls:5,vars:9,consts:[["class","legend-title",4,"ngIf"],[1,"legend-wrap"],[1,"legend-labels"],["class","legend-label",4,"ngFor","ngForOf","ngForTrackBy"],[1,"legend-title"],[1,"legend-title-text"],[1,"legend-label"],[3,"label","formattedLabel","color","isActive","select","activate","deactivate"]],template:function(o,b){1&o&&(t.TgZ(0,"div"),t.YNc(1,jn,3,1,"header",0),t.TgZ(2,"div",1)(3,"ul",2),t.YNc(4,G3,2,4,"li",3),t.qZA()()()),2&o&&(t.Udp("width",b.width,"px"),t.xp6(1),t.Q6J("ngIf",(null==b.title?null:b.title.length)>0),t.xp6(2),t.Udp("max-height",b.height-45,"px"),t.ekj("horizontal-legend",b.horizontal),t.xp6(1),t.Q6J("ngForOf",b.legendEntries)("ngForTrackBy",b.trackBy))},directives:[k1,e.O5,e.sg],styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .legend-title{white-space:nowrap;overflow:hidden;margin-left:10px;margin-bottom:5px;font-size:14px;font-weight:700}.chart-legend ul,.chart-legend li{padding:0;margin:0;list-style:none}.chart-legend .horizontal-legend li{display:inline-block}.chart-legend .legend-wrap{width:calc(100% - 10px)}.chart-legend .legend-labels{line-height:85%;list-style:none;text-align:left;float:left;width:100%;border-radius:3px;overflow-y:auto;overflow-x:hidden;white-space:nowrap;background:rgba(0,0,0,.05)}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;transition:.2s}.chart-legend .legend-label .active .legend-label-text{color:#000}.chart-legend .legend-label-color{display:inline-block;height:15px;width:15px;margin-right:5px;color:#5b646b;border-radius:3px}.chart-legend .legend-label-text{display:inline-block;vertical-align:top;line-height:15px;font-size:12px;width:calc(100% - 20px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.chart-legend .legend-title-text{vertical-align:bottom;display:inline-block;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}),m})(),kd=(()=>{class m{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new t.vpe,this.legendLabelActivate=new t.vpe,this.legendLabelDeactivate=new t.vpe,this.LegendPosition=Hs,this.LegendType=hl}ngOnChanges(o){this.update()}update(){let o=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===Hs.Right)&&(o=this.legendType===hl.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-o)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==Hs.Right?this.chartWidth:Math.floor(this.view[0]*o/12)}getLegendType(){return this.legendOptions.scaleType===Ln.Linear?hl.ScaleLegend:hl.Legend}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},features:[t._Bn([L0]),t.TTD],ngContentSelectors:gc,decls:5,vars:6,consts:[[1,"ngx-charts-outer"],[1,"ngx-charts"],["class","chart-legend",3,"horizontal","valueRange","colors","height","width",4,"ngIf"],["class","chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate",4,"ngIf"],[1,"chart-legend",3,"horizontal","valueRange","colors","height","width"],[1,"chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate"]],template:function(o,b){1&o&&(t.F$t(),t.TgZ(0,"div",0),t.O4$(),t.TgZ(1,"svg",1),t.Hsn(2),t.qZA(),t.YNc(3,Z3,1,5,"ngx-charts-scale-legend",2),t.YNc(4,W3,1,7,"ngx-charts-legend",3),t.qZA()),2&o&&(t.Udp("width",b.view[0],"px"),t.xp6(1),t.uIk("width",b.chartWidth)("height",b.view[1]),t.xp6(2),t.Q6J("ngIf",b.showLegend&&b.legendType===b.LegendType.ScaleLegend),t.xp6(1),t.Q6J("ngIf",b.showLegend&&b.legendType===b.LegendType.Legend))},directives:[D0,Pd,e.O5],encapsulation:2,changeDetection:0}),m})(),tp=(()=>{class m{constructor(o,b){this.element=o,this.zone=b,this.visible=new t.vpe,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const o=()=>{if(!this.element)return;const{offsetHeight:b,offsetWidth:z}=this.element.nativeElement;b&&z?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o())})}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq),t.Y36(t.R0b))},m.\u0275dir=t.lG2({type:m,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),m})();function Mh(m){return"[object Date]"===toString.call(m)}let N1=(()=>{class m{constructor(o,b,z,$){this.chartElement=o,this.zone=b,this.cd=z,this.platformId=$,this.scheme="cool",this.schemeType=Ln.Ordinal,this.animations=!0,this.select=new t.vpe}ngOnInit(){(0,e.PM)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new tp(this.chartElement,this.zone),this.visibilityObserver.visible.subscribe(this.update.bind(this))}ngOnDestroy(){this.unbindEvents(),this.visibilityObserver&&(this.visibilityObserver.visible.unsubscribe(),this.visibilityObserver.destroy())}ngOnChanges(o){this.update()}update(){if(this.results=this.results?this.cloneData(this.results):[],this.view)this.width=this.view[0],this.height=this.view[1];else{const o=this.getContainerDims();o&&(this.width=o.width,this.height=o.height)}this.width||(this.width=600),this.height||(this.height=400),this.width=Math.floor(this.width),this.height=Math.floor(this.height),this.cd&&this.cd.markForCheck()}getContainerDims(){let o,b;const z=this.chartElement.nativeElement;if((0,e.NF)(this.platformId)&&null!==z.parentNode){const $=z.parentNode.getBoundingClientRect();o=$.width,b=$.height}return o&&b?{width:o,height:b}:null}formatDates(){for(let o=0;o{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=b}cloneData(o){const b=[];for(const z of o){const $={name:z.name};if(void 0!==z.value&&($.value=z.value),void 0!==z.series){$.series=[];for(const Ne of z.series){const dt=Object.assign({},Ne);$.series.push(dt)}}void 0!==z.extra&&($.extra=JSON.parse(JSON.stringify(z.extra))),b.push($)}return b}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(t.sBO),t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[t.TTD],decls:1,vars:0,template:function(o,b){1&o&&t._UZ(0,"div")},encapsulation:2}),m})();var Ga=(()=>{return(m=Ga||(Ga={})).Top="top",m.Bottom="bottom",m.Left="left",m.Right="right",Ga;var m})();let R1=(()=>{class m{constructor(o){this.textHeight=25,this.margin=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Ga.Top:case Ga.Bottom:this.y=this.offset,this.x=this.width/2;break;case Ga.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Ga.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[t.TTD],attrs:qs,decls:2,vars:6,template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"text"),t._uU(1),t.qZA()),2&o&&(t.uIk("stroke-width",b.strokeWidth)("x",b.x)("y",b.y)("text-anchor",b.textAnchor)("transform",b.transform),t.xp6(1),t.hij(" ",b.label," "))},encapsulation:2,changeDetection:0}),m})();function Zo(m,O=16){return"string"!=typeof m?"number"==typeof m?m+"":"":(m=m.trim()).length<=O?m:`${m.slice(0,O)}...`}function Nd(m,O){if(m.length>O){const o=[],b=Math.floor(m.length/O);for(let z=0;z{return(m=Fs||(Fs={})).Start="start",m.Middle="middle",m.End="end",Fs;var m})();let Rd=(()=>{class m{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.dimensionsChanged=new t.vpe,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=Fs.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,e.NF)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);o!==this.height&&(this.height=o,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const o=this.scale;this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(z){return"Date"===z.constructor.name?z.toLocaleDateString():z.toLocaleString()};const b=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(z){return this.scale(z)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",b&&0!==b?(this.textTransform=`rotate(${b})`,this.textAnchor=Fs.End,this.verticalSpacing=10):this.textAnchor=Fs.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(o){let b=0;this.maxTicksLength=0;for(let Ut=0;Utthis.maxTicksLength&&(this.maxTicksLength=bi)}const Ne=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let dt=Ne;const Gt=Math.floor(this.width/o.length);for(;dt>Gt&&b>-90;)b-=30,dt=Math.cos(b*(Math.PI/180))*Ne;return this.approxHeight=Math.max(Math.abs(Math.sin(b*(Math.PI/180))*Ne),10),b}getTicks(){let o;const b=this.getMaxTicks(20),z=this.getMaxTicks(100);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[z]):(o=this.scale.domain(),o=Nd(o,b)),o}getMaxTicks(o){return Math.floor(this.width/o)}tickTransform(o){return"translate("+this.adjustedScale(o)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(o){return this.trimTicks?Zo(o,this.maxTickLength):o}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(o,b){if(1&o&&t.Gf(Y2,5),2&o){let z;t.iGM(z=t.CRH())&&(b.ticksElement=z.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineHeight:"gridLineHeight",width:"width",rotateTicks:"rotateTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:_u,decls:4,vars:2,consts:[["ticksel",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],[1,"tick"],["stroke-width","0.01"],[4,"ngIf"],["y2","0",1,"gridline-path","gridline-path-vertical"]],template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"g",null,0),t.YNc(2,j2,5,7,"g",1),t.qZA(),t.YNc(3,K2,2,2,"g",2)),2&o&&(t.xp6(2),t.Q6J("ngForOf",b.ticks),t.xp6(1),t.Q6J("ngForOf",b.ticks))},directives:[e.sg,e.O5],encapsulation:2,changeDetection:0}),m})(),I0=(()=>{class m{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Ga.Bottom,this.xAxisOffset=0,this.dimensionsChanged=new t.vpe,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=Ga}ngOnChanges(o){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,void 0!==this.xAxisTickCount&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:o}){const b=o+25+5;b!==this.labelOffset&&(this.labelOffset=b,setTimeout(()=>{this.dimensionsChanged.emit({height:o})},0))}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(o,b){if(1&o&&t.Gf(Rd,5),2&o){let z;t.iGM(z=t.CRH())&&(b.ticksComponent=z.first)}},inputs:{xScale:"xScale",dims:"dims",trimTicks:"trimTicks",rotateTicks:"rotateTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",ticks:"ticks",xAxisTickCount:"xAxisTickCount",xOrient:"xOrient",xAxisOffset:"xAxisOffset"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:Y3,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","dimensionsChanged"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"g"),t.YNc(1,Q2,1,12,"g",0),t.YNc(2,vu,1,5,"g",1),t.qZA()),2&o&&(t.uIk("class",b.xAxisClassName)("transform",b.transform),t.xp6(1),t.Q6J("ngIf",b.xScale),t.xp6(1),t.Q6J("ngIf",b.showLabel))},directives:[Rd,R1,e.O5],encapsulation:2,changeDetection:0}),m})();function Js(m,O,o,b,z,[$,Ne,dt,Gt]){let Ut="";return Ut=`M${[m+z,O]}`,Ut+="h"+((o=0===(o=Math.floor(o))?1:o)-2*z),Ut+=Ne?`a${[z,z]} 0 0 1 ${[z,z]}`:`h${z}v${z}`,Ut+="v"+((b=0===(b=Math.floor(b))?1:b)-2*z),Ut+=Gt?`a${[z,z]} 0 0 1 ${[-z,z]}`:`v${z}h${-z}`,Ut+="h"+(2*z-o),Ut+=dt?`a${[z,z]} 0 0 1 ${[-z,-z]}`:`h${-z}v${-z}`,Ut+="v"+(2*z-b),Ut+=$?`a${[z,z]} 0 0 1 ${[z,-z]}`:`v${-z}h${z}`,Ut+="z",Ut}let Hd=(()=>{class m{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.showRefLabels=!1,this.showRefLines=!1,this.dimensionsChanged=new t.vpe,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=Fs.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Ga}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,e.NF)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);o!==this.width&&(this.width=o,this.dimensionsChanged.emit({width:o}),setTimeout(()=>this.updateDims()))}update(){let o;const b=this.orient===Ga.Top||this.orient===Ga.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,o=this.scale,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(z){return"Date"===z.constructor.name?z.toLocaleDateString():z.toLocaleString()},this.adjustedScale=o.bandwidth?function(z){return o(z)+.5*o.bandwidth()}:o,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Ga.Top:case Ga.Bottom:this.transform=function(z){return"translate("+this.adjustedScale(z)+",0)"},this.textAnchor=Fs.Middle,this.y2=this.innerTickSize*b,this.y1=this.tickSpacing*b,this.dy=b<0?"0em":".71em";break;case Ga.Left:this.transform=function(z){return"translate(0,"+this.adjustedScale(z)+")"},this.textAnchor=Fs.End,this.x2=this.innerTickSize*-b,this.x1=this.tickSpacing*-b,this.dy=".32em";break;case Ga.Right:this.transform=function(z){return"translate(0,"+this.adjustedScale(z)+")"},this.textAnchor=Fs.Start,this.x2=this.innerTickSize*-b,this.x1=this.tickSpacing*-b,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(o=>o.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(o=>o.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=Js(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let o;const b=this.getMaxTicks(20),z=this.getMaxTicks(50);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[z]):(o=this.scale.domain(),o=Nd(o,b)),o}getMaxTicks(o){return Math.floor(this.height/o)}tickTransform(o){return`translate(${this.adjustedScale(o)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(o){return this.trimTicks?Zo(o,this.maxTickLength):o}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(z=>this.tickTrim(this.tickFormat(z)).length))}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(o,b){if(1&o&&t.Gf(Y2,5),2&o){let z;t.iGM(z=t.CRH())&&(b.ticksElement=z.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineWidth:"gridLineWidth",height:"height",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:j3,decls:6,vars:4,consts:[["ticksel",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],[1,"tick"],["stroke-width","0.01"],[1,"reference-area"],[4,"ngIf"],["class","gridline-path gridline-path-horizontal","x1","0",4,"ngIf"],["x1","0",1,"gridline-path","gridline-path-horizontal"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"g",null,0),t.YNc(2,q2,5,9,"g",1),t.qZA(),t.YNc(3,x1,1,2,"path",2),t.YNc(4,X2,2,2,"g",3),t.YNc(5,bu,2,1,"g",3)),2&o&&(t.xp6(2),t.Q6J("ngForOf",b.ticks),t.xp6(1),t.Q6J("ngIf",b.referenceLineLength>1&&b.refMax&&b.refMin&&b.showRefLines),t.xp6(1),t.Q6J("ngForOf",b.ticks),t.xp6(1),t.Q6J("ngForOf",b.referenceLines))},directives:[e.sg,e.O5],encapsulation:2,changeDetection:0}),m})(),H1=(()=>{class m{constructor(){this.showGridLines=!1,this.yOrient=Ga.Left,this.yAxisOffset=0,this.dimensionsChanged=new t.vpe,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(o){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Ga.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):(this.offset=this.offset,this.transform=`translate(${this.offset} , 0)`),void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:o}){o!==this.labelOffset&&this.yOrient===Ga.Right?(this.labelOffset=o+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0)):o!==this.labelOffset&&(this.labelOffset=o,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0))}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(o,b){if(1&o&&t.Gf(Hd,5),2&o){let z;t.iGM(z=t.CRH())&&(b.ticksComponent=z.first)}},inputs:{yScale:"yScale",dims:"dims",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",ticks:"ticks",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",yAxisTickCount:"yAxisTickCount",yOrient:"yOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",yAxisOffset:"yAxisOffset"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:xu,decls:3,vars:4,consts:[["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","dimensionsChanged"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"g"),t.YNc(1,K3,1,14,"g",0),t.YNc(2,Q3,1,5,"g",1),t.qZA()),2&o&&(t.uIk("class",b.yAxisClassName)("transform",b.transform),t.xp6(1),t.Q6J("ngIf",b.yScale),t.xp6(1),t.Q6J("ngIf",b.showLabel))},directives:[Hd,R1,e.O5],encapsulation:2,changeDetection:0}),m})(),Fd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[e.ez]]}),m})();var fl=(()=>{return(m=fl||(fl={})).popover="popover",m.tooltip="tooltip",fl;var m})(),Wo=(()=>{return(m=Wo||(Wo={}))[m.all="all"]="all",m[m.focus="focus"]="focus",m[m.mouseover="mouseover"]="mouseover",Wo;var m})();let F1=(()=>{class m{constructor(o,b,z){this.tooltipService=o,this.viewContainerRef=b,this.renderer=z,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=er.Top,this.tooltipAlignment=er.Center,this.tooltipType=fl.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=Wo.all,this.tooltipImmediateExit=!1,this.show=new t.vpe,this.hide=new t.vpe}get listensForFocus(){return this.tooltipShowEvent===Wo.all||this.tooltipShowEvent===Wo.focus}get listensForHover(){return this.tooltipShowEvent===Wo.all||this.tooltipShowEvent===Wo.mouseover}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(o){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(o))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(o){if(this.component||this.tooltipDisabled)return;const b=o?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?300:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const z=this.createBoundOptions();this.component=this.tooltipService.create(z),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},b)}addHideListeners(o){this.mouseEnterContentEvent=this.renderer.listen(o,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(o,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",b=>{o.contains(b.target)||this.hideTooltip()}))}hideTooltip(o=!1){if(!this.component)return;const b=()=>{this.mouseLeaveContentEvent&&this.mouseLeaveContentEvent(),this.mouseEnterContentEvent&&this.mouseEnterContentEvent(),this.documentClickEvent&&this.documentClickEvent(),this.hide.emit(!0),this.tooltipService.destroy(this.component),this.component=void 0};clearTimeout(this.timeout),o?b():this.timeout=setTimeout(b,this.tooltipHideTimeout)}createBoundOptions(){return{title:this.tooltipTitle,template:this.tooltipTemplate,host:this.viewContainerRef.element,placement:this.tooltipPlacement,alignment:this.tooltipAlignment,type:this.tooltipType,showCaret:this.tooltipShowCaret,cssClass:this.tooltipCssClass,spacing:this.tooltipSpacing,context:this.tooltipContext}}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(L0),t.Y36(t.s_b),t.Y36(t.Qsj))},m.\u0275dir=t.lG2({type:m,selectors:[["","ngx-tooltip",""]],hostBindings:function(o,b){1&o&&t.NdJ("focusin",function(){return b.onFocus()})("blur",function(){return b.onBlur()})("mouseenter",function(){return b.onMouseEnter()})("mouseleave",function($){return b.onMouseLeave($.target)})("click",function(){return b.onMouseClick()})},inputs:{tooltipCssClass:"tooltipCssClass",tooltipTitle:"tooltipTitle",tooltipAppendToBody:"tooltipAppendToBody",tooltipSpacing:"tooltipSpacing",tooltipDisabled:"tooltipDisabled",tooltipShowCaret:"tooltipShowCaret",tooltipPlacement:"tooltipPlacement",tooltipAlignment:"tooltipAlignment",tooltipType:"tooltipType",tooltipCloseOnClickOutside:"tooltipCloseOnClickOutside",tooltipCloseOnMouseLeave:"tooltipCloseOnMouseLeave",tooltipHideTimeout:"tooltipHideTimeout",tooltipShowTimeout:"tooltipShowTimeout",tooltipTemplate:"tooltipTemplate",tooltipShowEvent:"tooltipShowEvent",tooltipContext:"tooltipContext",tooltipImmediateExit:"tooltipImmediateExit"},outputs:{show:"show",hide:"hide"}}),m})(),zd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({providers:[A0,L0],imports:[[e.ez]]}),m})();const O0={};function Oc(){let m=("0000"+(Math.random()*Math.pow(36,4)<<0).toString(36)).slice(-4);return m=`a${m}`,O0[m]?Oc():(O0[m]=!0,m)}var qr=(()=>{return(m=qr||(qr={})).Vertical="vertical",m.Horizontal="horizontal",qr;var m})();let Pc=(()=>{class m{constructor(){this.orientation=qr.Vertical}ngOnChanges(o){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===qr.Horizontal?this.x2="100%":this.orientation===qr.Vertical&&(this.y1="100%")}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[t.TTD],attrs:_6,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"linearGradient",0),t.YNc(1,q3,1,5,"stop",1),t.qZA()),2&o&&(t.Q6J("id",b.name),t.uIk("x1",b.x1)("y1",b.y1)("x2",b.x2)("y2",b.y2),t.xp6(1),t.Q6J("ngForOf",b.stops))},directives:[e.sg],encapsulation:2,changeDetection:0}),m})(),Vd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:Cu,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(o,b){1&o&&(t.O4$(),t._UZ(0,"rect",0)),2&o&&t.uIk("height",b.height)("width",b.width)("x",b.x)("y",b.y)},encapsulation:2,changeDetection:0}),m})();var kc=(()=>{return(m=kc||(kc={})).Odd="odd",m.Even="even",kc;var m})();let Gl,pl=(()=>{class m{ngOnChanges(o){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(o=>{let b,z,$,Ne,dt,Gt=kc.Odd;if(this.orient===qr.Vertical){const Ut=this.xScale(o.name);Number.parseInt((Ut/this.xScale.step()).toString(),10)%2==1&&(Gt=kc.Even),b=this.xScale.bandwidth()*this.xScale.paddingInner(),z=this.xScale.bandwidth()+b,$=this.dims.height,Ne=this.xScale(o.name)-b/2,dt=0}else if(this.orient===qr.Horizontal){const Ut=this.yScale(o.name);Number.parseInt((Ut/this.yScale.step()).toString(),10)%2==1&&(Gt=kc.Even),b=this.yScale.bandwidth()*this.yScale.paddingInner(),z=this.dims.width,$=this.yScale.bandwidth()+b,Ne=0,dt=this.yScale(o.name)-b/2}return{name:o.name,class:Gt,height:$,width:z,x:Ne,y:dt}})}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[t.TTD],attrs:b6,decls:1,vars:1,consts:[["ngx-charts-grid-panel","",3,"height","width","x","y","grid-panel","odd","even",4,"ngFor","ngForOf"],["ngx-charts-grid-panel","",3,"height","width","x","y"]],template:function(o,b){1&o&&t.YNc(0,x6,1,10,"g",0),2&o&&t.Q6J("ngForOf",b.gridPanels)},directives:[Vd,e.sg],encapsulation:2,changeDetection:0}),m})();"undefined"!=typeof window?Gl=window:"undefined"!=typeof global&&(Gl=global);let us=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[e.ez,Fd,zd],e.ez,Fd,zd]}),m})();function H0({width:m,height:O,margins:o,showXAxis:b=!1,showYAxis:z=!1,xAxisHeight:$=0,yAxisWidth:Ne=0,showXLabel:dt=!1,showYLabel:Gt=!1,showLegend:Ut=!1,legendType:oi=Ln.Ordinal,legendPosition:bi=Hs.Right,columns:Ci=12}){let Di=o[3],tn=m,Mn=O-o[0]-o[2];return Ut&&bi===Hs.Right&&(Ci-=oi===Ln.Ordinal?2:1),tn=tn*Ci/12,tn=tn-o[1]-o[3],b&&(Mn-=5,Mn-=$,dt&&(Mn-=30)),z&&(tn-=5,tn-=Ne,Di+=Ne,Di+=10,Gt&&(tn-=30,Di+=30)),tn=Math.max(0,tn),Mn=Math.max(0,Mn),{width:Math.floor(tn),height:Math.floor(Mn),xOffset:Math.floor(Di)}}let F0=[{name:"vivid",selectable:!0,group:Ln.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:Ln.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:Ln.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:Ln.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:Ln.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:Ln.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:Ln.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:Ln.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:Ln.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:Ln.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:Ln.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:Ln.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:Ln.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:Ln.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:Ln.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class U1{constructor(O,o,b,z){"string"==typeof O&&(O=F0.find($=>$.name===O)),this.colorDomain=O.domain,this.scaleType=o,this.domain=b,this.customColors=z,this.scale=this.generateColorScheme(O,o,this.domain)}generateColorScheme(O,o,b){let z;switch("string"==typeof O&&(O=F0.find($=>$.name===O)),o){case Ln.Quantile:z=z3().range(O.domain).domain(b);break;case Ln.Ordinal:z=W2().range(O.domain).domain(b);break;case Ln.Linear:{const $=[...O.domain];1===$.length&&($.push($[0]),this.colorDomain=$);const Ne=G2(0,1,1/$.length);z=zo().range($).domain(Ne)}}return z}getColor(O){if(null==O)throw new Error("Value can not be null");if(this.scaleType===Ln.Linear){const o=zo().domain(this.domain).range([0,1]);return this.scale(o(O))}{if("function"==typeof this.customColors)return this.customColors(O);const o=O.toString();let b;return this.customColors&&this.customColors.length>0&&(b=this.customColors.find(z=>z.name.toLowerCase()===o.toLowerCase())),b?b.value:this.scale(O)}}getLinearGradientStops(O,o){void 0===o&&(o=this.domain[0]);const b=zo().domain(this.domain).range([0,1]),z=Vo().domain(this.colorDomain).range([0,1]),$=this.getColor(O),Ne=b(o),dt=this.getColor(o),Gt=b(O);let Ut=1,oi=Ne;const bi=[];for(bi.push({color:dt,offset:Ne,originalOffset:Ne,opacity:1});oi=(Gt-z.bandwidth()).toFixed(4))break;bi.push({color:Ci,offset:Di,opacity:1}),oi=Di,Ut++}}if(bi[bi.length-1].offset<100&&bi.push({color:$,offset:Gt,opacity:1}),Gt===Ne)bi[0].offset=0,bi[1].offset=100;else if(100!==bi[bi.length-1].offset)for(const Ci of bi)Ci.offset=(Ci.offset-Ne)/(Gt-Ne)*100;return bi}}let Hc=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),z0=(()=>{class m{constructor(o){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new t.vpe,this.activate=new t.vpe,this.deactivate=new t.vpe,this.hasGradient=!1,this.hideBar=!1,this.element=o.nativeElement}ngOnChanges(o){o.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+Oc().toString(),this.gradientFill=`url(#${this.gradientId})`,this.gradient||this.stops?(this.gradientStops=this.getGradient(),this.hasGradient=!0):this.hasGradient=!1,this.updatePathEl(),this.checkToHideBar()}loadAnimation(){this.path=this.getStartingPath(),setTimeout(this.update.bind(this),100)}updatePathEl(){const o=function on(m){return"string"==typeof m?new xi([[document.querySelector(m)]],[document.documentElement]):new xi([[m]],Bt)}(this.element).select(".bar"),b=this.getPath();this.animations?o.transition().duration(500).attr("d",b):o.attr("d",b)}getGradient(){return this.stops?this.stops:[{offset:0,color:this.fill,opacity:this.getStartOpacity()},{offset:100,color:this.fill,opacity:1}]}getStartingPath(){if(!this.animations)return this.getPath();let b,o=this.getRadius();return this.roundEdges?this.orientation===qr.Vertical?(o=Math.min(this.height,o),b=Js(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===qr.Horizontal&&(o=Math.min(this.width,o),b=Js(this.x,this.y,1,this.height,0,this.edges)):this.orientation===qr.Vertical?b=Js(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===qr.Horizontal&&(b=Js(this.x,this.y,1,this.height,0,this.edges)),b}getPath(){let b,o=this.getRadius();return this.roundEdges?this.orientation===qr.Vertical?(o=Math.min(this.height,o),b=Js(this.x,this.y,this.width,this.height,o,this.edges)):this.orientation===qr.Horizontal&&(o=Math.min(this.width,o),b=Js(this.x,this.y,this.width,this.height,o,this.edges)):b=Js(this.x,this.y,this.width,this.height,o,this.edges),b}getRadius(){let o=0;return this.roundEdges&&this.height>5&&this.width>5&&(o=Math.floor(Math.min(5,this.height/2,this.width/2))),o}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let o=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===qr.Vertical?o=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===qr.Horizontal&&(o=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),o}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===qr.Vertical&&0===this.height||this.orientation===qr.Horizontal&&0===this.width)}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(o,b){1&o&&t.NdJ("mouseenter",function(){return b.onMouseEnter()})("mouseleave",function(){return b.onMouseLeave()})},inputs:{fill:"fill",data:"data",width:"width",height:"height",x:"x",y:"y",orientation:"orientation",roundEdges:"roundEdges",gradient:"gradient",offset:"offset",isActive:"isActive",stops:"stops",animations:"animations",ariaLabel:"ariaLabel",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate"},features:[t.TTD],attrs:Ou,decls:2,vars:8,consts:[[4,"ngIf"],["stroke","none","role","img","tabIndex","-1",1,"bar",3,"click"],["ngx-charts-svg-linear-gradient","",3,"orientation","name","stops"]],template:function(o,b){1&o&&(t.YNc(0,xs,2,3,"defs",0),t.O4$(),t.TgZ(1,"path",1),t.NdJ("click",function(){return b.select.emit(b.data)}),t.qZA()),2&o&&(t.Q6J("ngIf",b.hasGradient),t.xp6(1),t.ekj("active",b.isActive)("hidden",b.hideBar),t.uIk("d",b.path)("aria-label",b.ariaLabel)("fill",b.hasGradient?b.gradientFill:b.fill))},directives:[Pc,e.O5],encapsulation:2,changeDetection:0}),m})();var Xs=(()=>{return(m=Xs||(Xs={})).Standard="standard",m.Normalized="normalized",m.Stacked="stacked",Xs;var m})(),uo=(()=>{return(m=uo||(uo={})).positive="positive",m.negative="negative",uo;var m})();let Jd=(()=>{class m{constructor(o){this.dimensionsChanged=new t.vpe,this.horizontalPadding=2,this.verticalPadding=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}getSize(){return{height:this.element.getBoundingClientRect().height,width:this.element.getBoundingClientRect().width,negative:this.value<0}}ngAfterViewInit(){this.dimensionsChanged.emit(this.getSize())}update(){this.formatedValue=this.valueFormatting?this.valueFormatting(this.value):Dc(this.value),"horizontal"===this.orientation?(this.x=this.barX+this.barWidth,this.value<0?(this.x=this.x-this.horizontalPadding,this.textAnchor="end"):(this.x=this.x+this.horizontalPadding,this.textAnchor="start"),this.y=this.barY+this.barHeight/2):(this.x=this.barX+this.barWidth/2,this.y=this.barY+this.barHeight,this.value<0?(this.y=this.y+this.verticalPadding,this.textAnchor="end"):(this.y=this.y-this.verticalPadding,this.textAnchor="start"),this.transform=`rotate(-45, ${this.x} , ${this.y})`)}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:Pu,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(o,b){1&o&&(t.O4$(),t.TgZ(0,"text",0),t._uU(1),t.qZA()),2&o&&(t.uIk("text-anchor",b.textAnchor)("transform",b.transform)("x",b.x)("y",b.y),t.xp6(1),t.hij(" ",b.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),m})(),Xd=(()=>{class m{constructor(o){this.platformId=o,this.type=Xs.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new t.vpe,this.activate=new t.vpe,this.deactivate=new t.vpe,this.dataLabelHeightChanged=new t.vpe,this.barsForDataLabels=[],this.barOrientation=qr,this.isSSR=!1}ngOnInit(){(0,e.PM)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(o){this.update()}update(){let o;this.updateTooltipSettings(),this.series.length&&(o=this.xScale.bandwidth()),o=Math.round(o);const b=Math.max(this.yScale.domain()[0],0),z={[uo.positive]:0,[uo.negative]:0};let Ne,$=uo.positive;this.type===Xs.Normalized&&(Ne=this.series.map(dt=>dt.value).reduce((dt,Gt)=>dt+Gt,0)),this.bars=this.series.map((dt,Gt)=>{let Ut=dt.value;const oi=this.getLabel(dt),bi=Dc(oi);$=Ut>0?uo.positive:uo.negative;const Di={value:Ut,label:oi,roundEdges:this.roundEdges,data:dt,width:o,formattedLabel:bi,height:0,x:0,y:0};if(this.type===Xs.Standard)Di.height=Math.abs(this.yScale(Ut)-this.yScale(b)),Di.x=this.xScale(oi),Di.y=this.yScale(Ut<0?0:Ut);else if(this.type===Xs.Stacked){const Mn=z[$],Ii=Mn+Ut;z[$]+=Ut,Di.height=this.yScale(Mn)-this.yScale(Ii),Di.x=0,Di.y=this.yScale(Ii),Di.offset0=Mn,Di.offset1=Ii}else if(this.type===Xs.Normalized){let Mn=z[$],Ii=Mn+Ut;z[$]+=Ut,Ne>0?(Mn=100*Mn/Ne,Ii=100*Ii/Ne):(Mn=0,Ii=0),Di.height=this.yScale(Mn)-this.yScale(Ii),Di.x=0,Di.y=this.yScale(Ii),Di.offset0=Mn,Di.offset1=Ii,Ut=(Ii-Mn).toFixed(2)+"%"}this.colors.scaleType===Ln.Ordinal?Di.color=this.colors.getColor(oi):this.type===Xs.Standard?(Di.color=this.colors.getColor(Ut),Di.gradientStops=this.colors.getLinearGradientStops(Ut)):(Di.color=this.colors.getColor(Di.offset1),Di.gradientStops=this.colors.getLinearGradientStops(Di.offset1,Di.offset0));let tn=bi;return Di.ariaLabel=bi+" "+Ut.toLocaleString(),null!=this.seriesName&&(tn=`${this.seriesName} \u2022 ${bi}`,Di.data.series=this.seriesName,Di.ariaLabel=this.seriesName+" "+Di.ariaLabel),Di.tooltipText=this.tooltipDisabled?void 0:`\n ${function Ic(m){return m.toLocaleString().replace(/[&'`"<>]/g,O=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[O]))}(tn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Ut):Ut.toLocaleString()}\n `,Di}),this.updateDataLabels()}updateDataLabels(){if(this.type===Xs.Stacked){this.barsForDataLabels=[];const o={};o.series=this.seriesName;const b=this.series.map($=>$.value).reduce(($,Ne)=>Ne>0?$+Ne:$,0),z=this.series.map($=>$.value).reduce(($,Ne)=>Ne<0?$+Ne:$,0);o.total=b+z,o.x=0,o.y=0,o.height=this.yScale(o.total>0?b:z),o.width=this.xScale.bandwidth(),this.barsForDataLabels.push(o)}else this.barsForDataLabels=this.series.map(o=>{var b;const z={};return z.series=null!==(b=this.seriesName)&&void 0!==b?b:o.label,z.total=o.value,z.x=this.xScale(o.label),z.y=this.yScale(0),z.height=this.yScale(z.total)-this.yScale(0),z.width=this.xScale.bandwidth(),z})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:er.Top,this.tooltipType=this.tooltipDisabled?void 0:fl.tooltip}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(z=>o.name===z.name&&o.value===z.value)}onClick(o){this.select.emit(o)}getLabel(o){return o.label?o.label:o.name}trackBy(o,b){return b.label}trackDataLabelBy(o,b){return o+"#"+b.series+"#"+b.total}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-series-vertical",""]],inputs:{dims:"dims",type:"type",series:"series",xScale:"xScale",yScale:"yScale",colors:"colors",gradient:"gradient",activeEntries:"activeEntries",seriesName:"seriesName",tooltipDisabled:"tooltipDisabled",tooltipTemplate:"tooltipTemplate",roundEdges:"roundEdges",animations:"animations",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",dataLabelHeightChanged:"dataLabelHeightChanged"},features:[t.TTD],attrs:u0,decls:3,vars:3,consts:[[4,"ngIf"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged"]],template:function(o,b){1&o&&(t.YNc(0,Gu,2,2,"g",0),t.YNc(1,h0,2,2,"g",0),t.YNc(2,Wu,2,2,"g",0)),2&o&&(t.Q6J("ngIf",!b.isSSR),t.xp6(1),t.Q6J("ngIf",b.isSSR),t.xp6(1),t.Q6J("ngIf",b.showDataLabel))},directives:[z0,Jd,e.O5,e.sg,F1],encapsulation:2,data:{animation:[(0,d.X$)("animationState",[(0,d.eR)(":leave",[(0,d.oB)({opacity:1}),(0,d.jt)(500,(0,d.oB)({opacity:0}))])])]},changeDetection:0}),m})(),Oh=(()=>{class m extends N1{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Hs.Right,this.tooltipDisabled=!1,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.activate=new t.vpe,this.deactivate=new t.vpe,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0}}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=H0({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.formatDates(),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.xScale=this.getXScale(),this.yScale=this.getYScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}getXScale(){this.xDomain=this.getXDomain();const o=this.xDomain.length/(this.dims.width/this.barPadding+1);return Vo().range([0,this.dims.width]).paddingInner(o).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const o=zo().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?o.nice():o}getXDomain(){return this.results.map(o=>o.label)}getYDomain(){const o=this.results.map($=>$.value);let b=this.yScaleMin?Math.min(this.yScaleMin,...o):Math.min(0,...o);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(b=Math.min(b,...this.yAxisTicks));let z=this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(z=Math.max(z,...this.yAxisTicks)),[b,z]}onClick(o){this.select.emit(o)}setColors(){let o;o=this.schemeType===Ln.Ordinal?this.xDomain:this.yDomain,this.colors=new U1(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===Ln.Ordinal?(o.domain=this.xDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.yDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onDataLabelMaxHeightChanged(o){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),o.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(o,b=!1){o=this.results.find($=>b?$.label===o.name:$.name===o.name),!(this.activeEntries.findIndex($=>$.name===o.name&&$.value===o.value&&$.series===o.series)>-1)&&(this.activeEntries=[o,...this.activeEntries],this.activate.emit({value:o,entries:this.activeEntries}))}onDeactivate(o,b=!1){o=this.results.find($=>b?$.label===o.name:$.name===o.name);const z=this.activeEntries.findIndex($=>$.name===o.name&&$.value===o.value&&$.series===o.series);this.activeEntries.splice(z,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:o,entries:this.activeEntries})}}return m.\u0275fac=function(){let O;return function(b){return(O||(O=t.n5z(m)))(b||m)}}(),m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(o,b,z){if(1&o&&t.Suo(z,nd,5),2&o){let $;t.iGM($=t.CRH())&&(b.tooltipTemplate=$.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{activate:"activate",deactivate:"deactivate"},features:[t.qOj],decls:5,vars:25,consts:[[3,"view","showLegend","legendOptions","activeEntries","animations","legendLabelClick","legendLabelActivate","legendLabelDeactivate"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero","activate","deactivate","select","dataLabelHeightChanged"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged"]],template:function(o,b){1&o&&(t.TgZ(0,"ngx-charts-chart",0),t.NdJ("legendLabelClick",function($){return b.onClick($)})("legendLabelActivate",function($){return b.onActivate($,!0)})("legendLabelDeactivate",function($){return b.onDeactivate($,!0)}),t.O4$(),t.TgZ(1,"g",1),t.YNc(2,A1,1,11,"g",2),t.YNc(3,vc,1,9,"g",3),t.TgZ(4,"g",4),t.NdJ("activate",function($){return b.onActivate($)})("deactivate",function($){return b.onDeactivate($)})("select",function($){return b.onClick($)})("dataLabelHeightChanged",function($){return b.onDataLabelMaxHeightChanged($)}),t.qZA()()()),2&o&&(t.Q6J("view",t.WLB(22,Rs,b.width,b.height))("showLegend",b.legend)("legendOptions",b.legendOptions)("activeEntries",b.activeEntries)("animations",b.animations),t.xp6(1),t.uIk("transform",b.transform),t.xp6(1),t.Q6J("ngIf",b.xAxis),t.xp6(1),t.Q6J("ngIf",b.yAxis),t.xp6(1),t.Q6J("xScale",b.xScale)("yScale",b.yScale)("colors",b.colors)("series",b.results)("dims",b.dims)("gradient",b.gradient)("tooltipDisabled",b.tooltipDisabled)("tooltipTemplate",b.tooltipTemplate)("showDataLabel",b.showDataLabel)("dataLabelFormatting",b.dataLabelFormatting)("activeEntries",b.activeEntries)("roundEdges",b.roundEdges)("animations",b.animations)("noBarWhenZero",b.noBarWhenZero))},directives:[kd,I0,H1,Xd,e.O5],styles:[sd],encapsulation:2,changeDetection:0}),m})(),$d=(()=>{class m extends N1{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Hs.Right,this.tooltipDisabled=!1,this.scaleType=Ln.Ordinal,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.groupPadding=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.activate=new t.vpe,this.deactivate=new t.vpe,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=qr,this.trackBy=(o,b)=>b.name}ngOnInit(){(0,e.PM)(this.platformId)&&(this.isSSR=!0)}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=H0({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.formatDates(),this.groupDomain=this.getGroupDomain(),this.innerDomain=this.getInnerDomain(),this.valueDomain=this.getValueDomain(),this.groupScale=this.getGroupScale(),this.innerScale=this.getInnerScale(),this.valueScale=this.getValueScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}onDataLabelMaxHeightChanged(o,b){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),b===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const o=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Vo().rangeRound([0,this.dims.width]).paddingInner(o).paddingOuter(o/2).domain(this.groupDomain)}getInnerScale(){const o=this.groupScale.bandwidth(),b=this.innerDomain.length/(o/this.barPadding+1);return Vo().rangeRound([0,o]).paddingInner(b).domain(this.innerDomain)}getValueScale(){const o=zo().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?o.nice():o}getGroupDomain(){const o=[];for(const b of this.results)o.includes(b.label)||o.push(b.label);return o}getInnerDomain(){const o=[];for(const b of this.results)for(const z of b.series)o.includes(z.label)||o.push(z.label);return o}getValueDomain(){const o=[];for(const $ of this.results)for(const Ne of $.series)o.includes(Ne.value)||o.push(Ne.value);return[Math.min(0,...o),this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o)]}groupTransform(o){return`translate(${this.groupScale(o.label)}, 0)`}onClick(o,b){b&&(o.series=b.name),this.select.emit(o)}setColors(){let o;o=this.schemeType===Ln.Ordinal?this.innerDomain:this.valueDomain,this.colors=new U1(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===Ln.Ordinal?(o.domain=this.innerDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.valueDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onActivate(o,b,z=!1){const $=Object.assign({},o);b&&($.series=b.name);const Ne=this.results.map(dt=>dt.series).flat().filter(dt=>z?dt.label===$.name:dt.name===$.name&&dt.series===$.series);this.activeEntries=[...Ne],this.activate.emit({value:$,entries:this.activeEntries})}onDeactivate(o,b,z=!1){const $=Object.assign({},o);b&&($.series=b.name),this.activeEntries=this.activeEntries.filter(Ne=>z?Ne.label!==$.name:!(Ne.name===$.name&&Ne.series===$.series)),this.deactivate.emit({value:$,entries:this.activeEntries})}}return m.\u0275fac=function(){let O;return function(b){return(O||(O=t.n5z(m)))(b||m)}}(),m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(o,b,z){if(1&o&&t.Suo(z,nd,5),2&o){let $;t.iGM($=t.CRH())&&(b.tooltipTemplate=$.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",scaleType:"scaleType",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",groupPadding:"groupPadding",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{activate:"activate",deactivate:"deactivate"},features:[t.qOj],decls:7,vars:18,consts:[[3,"view","showLegend","legendOptions","activeEntries","animations","legendLabelActivate","legendLabelDeactivate","legendLabelClick"],[1,"bar-chart","chart"],["ngx-charts-grid-panel-series","",3,"xScale","yScale","data","dims","orient"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged"]],template:function(o,b){1&o&&(t.TgZ(0,"ngx-charts-chart",0),t.NdJ("legendLabelActivate",function($){return b.onActivate($,void 0,!0)})("legendLabelDeactivate",function($){return b.onDeactivate($,void 0,!0)})("legendLabelClick",function($){return b.onClick($)}),t.O4$(),t.TgZ(1,"g",1),t._UZ(2,"g",2),t.YNc(3,Yu,1,10,"g",3),t.YNc(4,f0,1,9,"g",4),t.YNc(5,hd,2,2,"g",5),t.qZA(),t.YNc(6,H6,2,2,"g",5),t.qZA()),2&o&&(t.Q6J("view",t.WLB(15,Rs,b.width,b.height))("showLegend",b.legend)("legendOptions",b.legendOptions)("activeEntries",b.activeEntries)("animations",b.animations),t.xp6(1),t.uIk("transform",b.transform),t.xp6(1),t.Q6J("xScale",b.groupScale)("yScale",b.valueScale)("data",b.results)("dims",b.dims)("orient",b.barOrientation.Vertical),t.xp6(1),t.Q6J("ngIf",b.xAxis),t.xp6(1),t.Q6J("ngIf",b.yAxis),t.xp6(1),t.Q6J("ngIf",!b.isSSR),t.xp6(1),t.Q6J("ngIf",b.isSSR))},directives:[kd,pl,I0,H1,Xd,e.O5,e.sg],styles:[sd],encapsulation:2,data:{animation:[(0,d.X$)("animationState",[(0,d.eR)(":leave",[(0,d.oB)({opacity:1,transform:"*"}),(0,d.jt)(500,(0,d.oB)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),m})(),V0=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),kh=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),Hh=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),op=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),U0=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})();Math;let zc=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),Yh=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us,zc,U0]]}),m})(),j0=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),a4=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us]]}),m})(),$h=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[us,zc,V0]]}),m})(),tf=(()=>{class m{constructor(){!function ef(){"undefined"!=typeof SVGElement&&void 0===SVGElement.prototype.contains&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[us,Hc,V0,kh,Hh,op,U0,Yh,j0,zc,a4,$h]}),m})()},159:(Be,K,p)=>{"use strict";p.d(K,{OF:()=>L,uU:()=>h});var t=p(5e3),e=p(9808),f=p(655),M=p(3259);function a(w,D){if(1&w&&t._UZ(0,"canvas",1),2&w){const S=t.oxw();t.Q6J("qrCode",S.value)("qrCodeErrorCorrectionLevel",S.errorCorrectionLevel)("qrCodeCenterImageSrc",S.centerImageSrc)("qrCodeCenterImageWidth",S.centerImageSize)("qrCodeCenterImageHeight",S.centerImageSize)("qrCodeMargin",S.margin)("width",S.size)("height",S.size)("darkColor",S.darkColor)("lightColor",S.lightColor)}}const C=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let d=(()=>{class w{constructor(S){this.viewContainerRef=S,this.errorCorrectionLevel=w.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var S,k;return(0,f.mG)(this,void 0,void 0,function*(){if(!this.value)return;this.version&&this.version>40?(console.warn("[qrCode] max version is 40, clamping"),this.version=40):this.version&&this.version<1?(console.warn("[qrCode] min version is 1, clamping"),this.version=1):void 0!==this.version&&isNaN(this.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),this.version=void 0);const E=this.viewContainerRef.element.nativeElement;if(!E)return;const B=E.getContext("2d");B&&B.clearRect(0,0,B.canvas.width,B.canvas.height);const Z=null!==(S=this.errorCorrectionLevel)&&void 0!==S?S:w.DEFAULT_ERROR_CORRECTION_LEVEL,Y=C.test(this.darkColor)?this.darkColor:void 0,ae=C.test(this.lightColor)?this.lightColor:void 0;(0,t.X6Q)()&&(!Y&&this.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!ae&&this.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield M.toCanvas(E,this.value,{version:this.version,errorCorrectionLevel:Z,width:this.width,margin:this.margin,color:{dark:Y,light:ae}});const ee=this.centerImageSrc,ue=R(this.centerImageWidth,w.DEFAULT_CENTER_IMAGE_SIZE),ie=R(this.centerImageHeight,w.DEFAULT_CENTER_IMAGE_SIZE);if(ee&&B){this.centerImage||(this.centerImage=new Image(ue,ie)),ee!==(null===(k=this.centerImage)||void 0===k?void 0:k.src)&&(this.centerImage.src=ee),ue!==this.centerImage.width&&(this.centerImage.width=ue),ie!==this.centerImage.height&&(this.centerImage.height=ie);const re=this.centerImage;re.onload=()=>{B.drawImage(re,E.width/2-ue/2,E.height/2-ie/2,ue,ie)}}})}}return w.DEFAULT_ERROR_CORRECTION_LEVEL="M",w.DEFAULT_CENTER_IMAGE_SIZE=40,w.\u0275fac=function(S){return new(S||w)(t.Y36(t.s_b))},w.\u0275dir=t.lG2({type:w,selectors:[["canvas","qrCode",""]],inputs:{value:["qrCode","value"],version:["qrCodeVersion","version"],errorCorrectionLevel:["qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:["qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:["qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:["qrCodeCenterImageHeight","centerImageHeight"],margin:["qrCodeMargin","margin"]},features:[t.TTD]}),w})();function R(w,D){return void 0===w||""===w?D:"string"==typeof w?parseInt(w,10):w}let h=(()=>{class w{}return w.\u0275fac=function(S){return new(S||w)},w.\u0275cmp=t.Xpm({type:w,selectors:[["qr-code"]],inputs:{value:"value",size:"size",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","darkColor","lightColor",4,"ngIf"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","darkColor","lightColor"]],template:function(S,k){1&S&&t.YNc(0,a,1,10,"canvas",0),2&S&&t.Q6J("ngIf",k.value)},directives:[e.O5,d],encapsulation:2}),w})(),L=(()=>{class w{}return w.\u0275fac=function(S){return new(S||w)},w.\u0275mod=t.oAB({type:w}),w.\u0275inj=t.cJS({imports:[[e.ez]]}),w})()},8129:(Be,K,p)=>{"use strict";p.d(K,{op:()=>ei,$V:()=>ye,Xd:()=>Ft});var t=p(7579),e=p(4968),f=p(3601),M=p(2722),a=p(5e3),C=p(9808);function d(nt){return getComputedStyle(nt)}function R(nt,He){for(var rt in He){var et=He[rt];"number"==typeof et&&(et+="px"),nt.style[rt]=et}return nt}function h(nt){var He=document.createElement("div");return He.className=nt,He}var L="undefined"!=typeof Element&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function w(nt,He){if(!L)throw new Error("No element matching method supported");return L.call(nt,He)}function D(nt){nt.remove?nt.remove():nt.parentNode&&nt.parentNode.removeChild(nt)}function S(nt,He){return Array.prototype.filter.call(nt.children,function(rt){return w(rt,He)})}var k_element_thumb=function(nt){return"ps__thumb-"+nt},k_element_rail=function(nt){return"ps__rail-"+nt},k_element_consuming="ps__child--consume",k_state_focus="ps--focus",k_state_clicking="ps--clicking",k_state_active=function(nt){return"ps--active-"+nt},k_state_scrolling=function(nt){return"ps--scrolling-"+nt},E={x:null,y:null};function B(nt,He){var rt=nt.element.classList,et=k_state_scrolling(He);rt.contains(et)?clearTimeout(E[He]):rt.add(et)}function Z(nt,He){E[He]=setTimeout(function(){return nt.isAlive&&nt.element.classList.remove(k_state_scrolling(He))},nt.settings.scrollingThreshold)}var ae=function(He){this.element=He,this.handlers={}},ee={isEmpty:{configurable:!0}};ae.prototype.bind=function(He,rt){void 0===this.handlers[He]&&(this.handlers[He]=[]),this.handlers[He].push(rt),this.element.addEventListener(He,rt,!1)},ae.prototype.unbind=function(He,rt){var et=this;this.handlers[He]=this.handlers[He].filter(function(Ae){return!(!rt||Ae===rt)||(et.element.removeEventListener(He,Ae,!1),!1)})},ae.prototype.unbindAll=function(){for(var He in this.handlers)this.unbind(He)},ee.isEmpty.get=function(){var nt=this;return Object.keys(this.handlers).every(function(He){return 0===nt.handlers[He].length})},Object.defineProperties(ae.prototype,ee);var ue=function(){this.eventElements=[]};function ie(nt){if("function"==typeof window.CustomEvent)return new CustomEvent(nt);var He=document.createEvent("CustomEvent");return He.initCustomEvent(nt,!1,!1,void 0),He}function re(nt,He,rt,et,Ae){var Ge;if(void 0===et&&(et=!0),void 0===Ae&&(Ae=!1),"top"===He)Ge=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==He)throw new Error("A proper axis should be provided");Ge=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function ge(nt,He,rt,et,Ae){var Ge=rt[0],ot=rt[1],lt=rt[2],Ct=rt[3],mi=rt[4],Jt=rt[5];void 0===et&&(et=!0),void 0===Ae&&(Ae=!1);var $t=nt.element;nt.reach[Ct]=null,$t[lt]<1&&(nt.reach[Ct]="start"),$t[lt]>nt[Ge]-nt[ot]-1&&(nt.reach[Ct]="end"),He&&($t.dispatchEvent(ie("ps-scroll-"+Ct)),He<0?$t.dispatchEvent(ie("ps-scroll-"+mi)):He>0&&$t.dispatchEvent(ie("ps-scroll-"+Jt)),et&&function Y(nt,He){B(nt,He),Z(nt,He)}(nt,Ct)),nt.reach[Ct]&&(He||Ae)&&$t.dispatchEvent(ie("ps-"+Ct+"-reach-"+nt.reach[Ct]))}(nt,rt,Ge,et,Ae)}function q(nt){return parseInt(nt,10)||0}ue.prototype.eventElement=function(He){var rt=this.eventElements.filter(function(et){return et.element===He})[0];return rt||(rt=new ae(He),this.eventElements.push(rt)),rt},ue.prototype.bind=function(He,rt,et){this.eventElement(He).bind(rt,et)},ue.prototype.unbind=function(He,rt,et){var Ae=this.eventElement(He);Ae.unbind(rt,et),Ae.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(Ae),1)},ue.prototype.unbindAll=function(){this.eventElements.forEach(function(He){return He.unbindAll()}),this.eventElements=[]},ue.prototype.once=function(He,rt,et){var Ae=this.eventElement(He),Ge=function(ot){Ae.unbind(rt,Ge),et(ot)};Ae.bind(rt,Ge)};var i={isWebKit:"undefined"!=typeof document&&"WebkitAppearance"in document.documentElement.style,supportsTouch:"undefined"!=typeof window&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:"undefined"!=typeof navigator&&navigator.msMaxTouchPoints,isChrome:"undefined"!=typeof navigator&&/Chrome/i.test(navigator&&navigator.userAgent)};function r(nt){var He=nt.element,rt=Math.floor(He.scrollTop),et=He.getBoundingClientRect();nt.containerWidth=Math.round(et.width),nt.containerHeight=Math.round(et.height),nt.contentWidth=He.scrollWidth,nt.contentHeight=He.scrollHeight,He.contains(nt.scrollbarXRail)||(S(He,k_element_rail("x")).forEach(function(Ae){return D(Ae)}),He.appendChild(nt.scrollbarXRail)),He.contains(nt.scrollbarYRail)||(S(He,k_element_rail("y")).forEach(function(Ae){return D(Ae)}),He.appendChild(nt.scrollbarYRail)),!nt.settings.suppressScrollX&&nt.containerWidth+nt.settings.scrollXMarginOffset=nt.railXWidth-nt.scrollbarXWidth&&(nt.scrollbarXLeft=nt.railXWidth-nt.scrollbarXWidth),nt.scrollbarYTop>=nt.railYHeight-nt.scrollbarYHeight&&(nt.scrollbarYTop=nt.railYHeight-nt.scrollbarYHeight),function c(nt,He){var rt={width:He.railXWidth},et=Math.floor(nt.scrollTop);rt.left=He.isRtl?He.negativeScrollAdjustment+nt.scrollLeft+He.containerWidth-He.contentWidth:nt.scrollLeft,He.isScrollbarXUsingBottom?rt.bottom=He.scrollbarXBottom-et:rt.top=He.scrollbarXTop+et,R(He.scrollbarXRail,rt);var Ae={top:et,height:He.railYHeight};He.isScrollbarYUsingRight?Ae.right=He.isRtl?He.contentWidth-(He.negativeScrollAdjustment+nt.scrollLeft)-He.scrollbarYRight-He.scrollbarYOuterWidth-9:He.scrollbarYRight-nt.scrollLeft:Ae.left=He.isRtl?He.negativeScrollAdjustment+nt.scrollLeft+2*He.containerWidth-He.contentWidth-He.scrollbarYLeft-He.scrollbarYOuterWidth:He.scrollbarYLeft+nt.scrollLeft,R(He.scrollbarYRail,Ae),R(He.scrollbarX,{left:He.scrollbarXLeft,width:He.scrollbarXWidth-He.railBorderXWidth}),R(He.scrollbarY,{top:He.scrollbarYTop,height:He.scrollbarYHeight-He.railBorderYWidth})}(He,nt),nt.scrollbarXActive?He.classList.add(k_state_active("x")):(He.classList.remove(k_state_active("x")),nt.scrollbarXWidth=0,nt.scrollbarXLeft=0,He.scrollLeft=!0===nt.isRtl?nt.contentWidth:0),nt.scrollbarYActive?He.classList.add(k_state_active("y")):(He.classList.remove(k_state_active("y")),nt.scrollbarYHeight=0,nt.scrollbarYTop=0,He.scrollTop=0)}function u(nt,He){return nt.settings.minScrollbarLength&&(He=Math.max(He,nt.settings.minScrollbarLength)),nt.settings.maxScrollbarLength&&(He=Math.min(He,nt.settings.maxScrollbarLength)),He}function I(nt,He){var rt=He[0],et=He[1],Ae=He[2],Ge=He[3],ot=He[4],lt=He[5],Ct=He[6],mi=He[7],Jt=He[8],$t=nt.element,Qi=null,hi=null,si=null;function Ji(Ui){Ui.touches&&Ui.touches[0]&&(Ui[Ae]=Ui.touches[0].pageY),$t[Ct]=Qi+si*(Ui[Ae]-hi),B(nt,mi),r(nt),Ui.stopPropagation(),Ui.type.startsWith("touch")&&Ui.changedTouches.length>1&&Ui.preventDefault()}function Zi(){Z(nt,mi),nt[Jt].classList.remove(k_state_clicking),nt.event.unbind(nt.ownerDocument,"mousemove",Ji)}function Vi(Ui,Ue){Qi=$t[Ct],Ue&&Ui.touches&&(Ui[Ae]=Ui.touches[0].pageY),hi=Ui[Ae],si=(nt[et]-nt[rt])/(nt[Ge]-nt[lt]),Ue?nt.event.bind(nt.ownerDocument,"touchmove",Ji):(nt.event.bind(nt.ownerDocument,"mousemove",Ji),nt.event.once(nt.ownerDocument,"mouseup",Zi),Ui.preventDefault()),nt[Jt].classList.add(k_state_clicking),Ui.stopPropagation()}nt.event.bind(nt[ot],"mousedown",function(Ui){Vi(Ui)}),nt.event.bind(nt[ot],"touchstart",function(Ui){Vi(Ui,!0)})}var N={"click-rail":function v(nt){nt.event.bind(nt.scrollbarY,"mousedown",function(rt){return rt.stopPropagation()}),nt.event.bind(nt.scrollbarYRail,"mousedown",function(rt){var et=rt.pageY-window.pageYOffset-nt.scrollbarYRail.getBoundingClientRect().top;nt.element.scrollTop+=(et>nt.scrollbarYTop?1:-1)*nt.containerHeight,r(nt),rt.stopPropagation()}),nt.event.bind(nt.scrollbarX,"mousedown",function(rt){return rt.stopPropagation()}),nt.event.bind(nt.scrollbarXRail,"mousedown",function(rt){var et=rt.pageX-window.pageXOffset-nt.scrollbarXRail.getBoundingClientRect().left;nt.element.scrollLeft+=(et>nt.scrollbarXLeft?1:-1)*nt.containerWidth,r(nt),rt.stopPropagation()})},"drag-thumb":function T(nt){I(nt,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),I(nt,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function y(nt){var He=nt.element;nt.event.bind(nt.ownerDocument,"keydown",function(Ge){if(!(Ge.isDefaultPrevented&&Ge.isDefaultPrevented()||Ge.defaultPrevented)&&(w(He,":hover")||w(nt.scrollbarX,":focus")||w(nt.scrollbarY,":focus"))){var ot=document.activeElement?document.activeElement:nt.ownerDocument.activeElement;if(ot){if("IFRAME"===ot.tagName)ot=ot.contentDocument.activeElement;else for(;ot.shadowRoot;)ot=ot.shadowRoot.activeElement;if(function _e(nt){return w(nt,"input,[contenteditable]")||w(nt,"select,[contenteditable]")||w(nt,"textarea,[contenteditable]")||w(nt,"button,[contenteditable]")}(ot))return}var lt=0,Ct=0;switch(Ge.which){case 37:lt=Ge.metaKey?-nt.contentWidth:Ge.altKey?-nt.containerWidth:-30;break;case 38:Ct=Ge.metaKey?nt.contentHeight:Ge.altKey?nt.containerHeight:30;break;case 39:lt=Ge.metaKey?nt.contentWidth:Ge.altKey?nt.containerWidth:30;break;case 40:Ct=Ge.metaKey?-nt.contentHeight:Ge.altKey?-nt.containerHeight:-30;break;case 32:Ct=Ge.shiftKey?nt.containerHeight:-nt.containerHeight;break;case 33:Ct=nt.containerHeight;break;case 34:Ct=-nt.containerHeight;break;case 36:Ct=nt.contentHeight;break;case 35:Ct=-nt.contentHeight;break;default:return}nt.settings.suppressScrollX&&0!==lt||nt.settings.suppressScrollY&&0!==Ct||(He.scrollTop-=Ct,He.scrollLeft+=lt,r(nt),function Ae(Ge,ot){var lt=Math.floor(He.scrollTop);if(0===Ge){if(!nt.scrollbarYActive)return!1;if(0===lt&&ot>0||lt>=nt.contentHeight-nt.containerHeight&&ot<0)return!nt.settings.wheelPropagation}var Ct=He.scrollLeft;if(0===ot){if(!nt.scrollbarXActive)return!1;if(0===Ct&&Ge<0||Ct>=nt.contentWidth-nt.containerWidth&&Ge>0)return!nt.settings.wheelPropagation}return!0}(lt,Ct)&&Ge.preventDefault())}})},wheel:function n(nt){var He=nt.element;function Ge(ot){var lt=function et(ot){var lt=ot.deltaX,Ct=-1*ot.deltaY;return(void 0===lt||void 0===Ct)&&(lt=-1*ot.wheelDeltaX/6,Ct=ot.wheelDeltaY/6),ot.deltaMode&&1===ot.deltaMode&&(lt*=10,Ct*=10),lt!=lt&&Ct!=Ct&&(lt=0,Ct=ot.wheelDelta),ot.shiftKey?[-Ct,-lt]:[lt,Ct]}(ot),Ct=lt[0],mi=lt[1];if(!function Ae(ot,lt,Ct){if(!i.isWebKit&&He.querySelector("select:focus"))return!0;if(!He.contains(ot))return!1;for(var mi=ot;mi&&mi!==He;){if(mi.classList.contains(k_element_consuming))return!0;var Jt=d(mi);if(Ct&&Jt.overflowY.match(/(scroll|auto)/)){var $t=mi.scrollHeight-mi.clientHeight;if($t>0&&(mi.scrollTop>0&&Ct<0||mi.scrollTop<$t&&Ct>0))return!0}if(lt&&Jt.overflowX.match(/(scroll|auto)/)){var Qi=mi.scrollWidth-mi.clientWidth;if(Qi>0&&(mi.scrollLeft>0&<<0||mi.scrollLeft0))return!0}mi=mi.parentNode}return!1}(ot.target,Ct,mi)){var Jt=!1;nt.settings.useBothWheelAxes?nt.scrollbarYActive&&!nt.scrollbarXActive?(mi?He.scrollTop-=mi*nt.settings.wheelSpeed:He.scrollTop+=Ct*nt.settings.wheelSpeed,Jt=!0):nt.scrollbarXActive&&!nt.scrollbarYActive&&(Ct?He.scrollLeft+=Ct*nt.settings.wheelSpeed:He.scrollLeft-=mi*nt.settings.wheelSpeed,Jt=!0):(He.scrollTop-=mi*nt.settings.wheelSpeed,He.scrollLeft+=Ct*nt.settings.wheelSpeed),r(nt),Jt=Jt||function rt(ot,lt){var Ct=Math.floor(He.scrollTop),mi=0===He.scrollTop,Jt=Ct+He.offsetHeight===He.scrollHeight,$t=0===He.scrollLeft,Qi=He.scrollLeft+He.offsetWidth===He.scrollWidth;return!(Math.abs(lt)>Math.abs(ot)?mi||Jt:$t||Qi)||!nt.settings.wheelPropagation}(Ct,mi),Jt&&!ot.ctrlKey&&(ot.stopPropagation(),ot.preventDefault())}}void 0!==window.onwheel?nt.event.bind(He,"wheel",Ge):void 0!==window.onmousewheel&&nt.event.bind(He,"mousewheel",Ge)},touch:function _(nt){if(i.supportsTouch||i.supportsIePointer){var He=nt.element,Ae={},Ge=0,ot={},lt=null;i.supportsTouch?(nt.event.bind(He,"touchstart",Jt),nt.event.bind(He,"touchmove",Qi),nt.event.bind(He,"touchend",hi)):i.supportsIePointer&&(window.PointerEvent?(nt.event.bind(He,"pointerdown",Jt),nt.event.bind(He,"pointermove",Qi),nt.event.bind(He,"pointerup",hi)):window.MSPointerEvent&&(nt.event.bind(He,"MSPointerDown",Jt),nt.event.bind(He,"MSPointerMove",Qi),nt.event.bind(He,"MSPointerUp",hi)))}function et(si,Ji){He.scrollTop-=Ji,He.scrollLeft-=si,r(nt)}function Ct(si){return si.targetTouches?si.targetTouches[0]:si}function mi(si){return!(si.pointerType&&"pen"===si.pointerType&&0===si.buttons||!(si.targetTouches&&1===si.targetTouches.length||si.pointerType&&"mouse"!==si.pointerType&&si.pointerType!==si.MSPOINTER_TYPE_MOUSE))}function Jt(si){if(mi(si)){var Ji=Ct(si);Ae.pageX=Ji.pageX,Ae.pageY=Ji.pageY,Ge=(new Date).getTime(),null!==lt&&clearInterval(lt)}}function Qi(si){if(mi(si)){var Ji=Ct(si),Zi={pageX:Ji.pageX,pageY:Ji.pageY},Vi=Zi.pageX-Ae.pageX,Ui=Zi.pageY-Ae.pageY;if(function $t(si,Ji,Zi){if(!He.contains(si))return!1;for(var Vi=si;Vi&&Vi!==He;){if(Vi.classList.contains(k_element_consuming))return!0;var Ui=d(Vi);if(Zi&&Ui.overflowY.match(/(scroll|auto)/)){var Ue=Vi.scrollHeight-Vi.clientHeight;if(Ue>0&&(Vi.scrollTop>0&&Zi<0||Vi.scrollTop0))return!0}if(Ji&&Ui.overflowX.match(/(scroll|auto)/)){var Tt=Vi.scrollWidth-Vi.clientWidth;if(Tt>0&&(Vi.scrollLeft>0&&Ji<0||Vi.scrollLeft0))return!0}Vi=Vi.parentNode}return!1}(si.target,Vi,Ui))return;et(Vi,Ui),Ae=Zi;var Ue=(new Date).getTime(),Tt=Ue-Ge;Tt>0&&(ot.x=Vi/Tt,ot.y=Ui/Tt,Ge=Ue),function rt(si,Ji){var Zi=Math.floor(He.scrollTop),Vi=He.scrollLeft,Ui=Math.abs(si),Ue=Math.abs(Ji);if(Ue>Ui){if(Ji<0&&Zi===nt.contentHeight-nt.containerHeight||Ji>0&&0===Zi)return 0===window.scrollY&&Ji>0&&i.isChrome}else if(Ui>Ue&&(si<0&&Vi===nt.contentWidth-nt.containerWidth||si>0&&0===Vi))return!0;return!0}(Vi,Ui)&&si.preventDefault()}}function hi(){nt.settings.swipeEasing&&(clearInterval(lt),lt=setInterval(function(){nt.isInitialized?clearInterval(lt):ot.x||ot.y?Math.abs(ot.x)<.01&&Math.abs(ot.y)<.01?clearInterval(lt):nt.element?(et(30*ot.x,30*ot.y),ot.x*=.8,ot.y*=.8):clearInterval(lt):clearInterval(lt)},10))}}},H=function(He,rt){var et=this;if(void 0===rt&&(rt={}),"string"==typeof He&&(He=document.querySelector(He)),!He||!He.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var Ae in this.element=He,He.classList.add("ps"),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1},rt)this.settings[Ae]=rt[Ae];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var Jt,mi,Ge=function(){return He.classList.add(k_state_focus)},ot=function(){return He.classList.remove(k_state_focus)};this.isRtl="rtl"===d(He).direction,!0===this.isRtl&&He.classList.add("ps__rtl"),this.isNegativeScroll=(mi=He.scrollLeft,He.scrollLeft=-1,Jt=He.scrollLeft<0,He.scrollLeft=mi,Jt),this.negativeScrollAdjustment=this.isNegativeScroll?He.scrollWidth-He.clientWidth:0,this.event=new ue,this.ownerDocument=He.ownerDocument||document,this.scrollbarXRail=h(k_element_rail("x")),He.appendChild(this.scrollbarXRail),this.scrollbarX=h(k_element_thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Ge),this.event.bind(this.scrollbarX,"blur",ot),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var lt=d(this.scrollbarXRail);this.scrollbarXBottom=parseInt(lt.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=q(lt.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=q(lt.borderLeftWidth)+q(lt.borderRightWidth),R(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=q(lt.marginLeft)+q(lt.marginRight),R(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=h(k_element_rail("y")),He.appendChild(this.scrollbarYRail),this.scrollbarY=h(k_element_thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Ge),this.event.bind(this.scrollbarY,"blur",ot),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var Ct=d(this.scrollbarYRail);this.scrollbarYRight=parseInt(Ct.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=q(Ct.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function x(nt){var He=d(nt);return q(He.width)+q(He.paddingLeft)+q(He.paddingRight)+q(He.borderLeftWidth)+q(He.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=q(Ct.borderTopWidth)+q(Ct.borderBottomWidth),R(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=q(Ct.marginTop)+q(Ct.marginBottom),R(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:He.scrollLeft<=0?"start":He.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:He.scrollTop<=0?"start":He.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(mi){return N[mi](et)}),this.lastScrollTop=Math.floor(He.scrollTop),this.lastScrollLeft=He.scrollLeft,this.event.bind(this.element,"scroll",function(mi){return et.onScroll(mi)}),r(this)};H.prototype.update=function(){!this.isAlive||(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,R(this.scrollbarXRail,{display:"block"}),R(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=q(d(this.scrollbarXRail).marginLeft)+q(d(this.scrollbarXRail).marginRight),this.railYMarginHeight=q(d(this.scrollbarYRail).marginTop)+q(d(this.scrollbarYRail).marginBottom),R(this.scrollbarXRail,{display:"none"}),R(this.scrollbarYRail,{display:"none"}),r(this),re(this,"top",0,!1,!0),re(this,"left",0,!1,!0),R(this.scrollbarXRail,{display:""}),R(this.scrollbarYRail,{display:""}))},H.prototype.onScroll=function(He){!this.isAlive||(r(this),re(this,"top",this.element.scrollTop-this.lastScrollTop),re(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},H.prototype.destroy=function(){!this.isAlive||(this.event.unbindAll(),D(this.scrollbarX),D(this.scrollbarY),D(this.scrollbarXRail),D(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},H.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(He){return!He.match(/^ps([-_].+|)$/)}).join(" ")};const X=H;var he=function(){if("undefined"!=typeof Map)return Map;function nt(He,rt){var et=-1;return He.some(function(Ae,Ge){return Ae[0]===rt&&(et=Ge,!0)}),et}return function(){function He(){this.__entries__=[]}return Object.defineProperty(He.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),He.prototype.get=function(rt){var et=nt(this.__entries__,rt),Ae=this.__entries__[et];return Ae&&Ae[1]},He.prototype.set=function(rt,et){var Ae=nt(this.__entries__,rt);~Ae?this.__entries__[Ae][1]=et:this.__entries__.push([rt,et])},He.prototype.delete=function(rt){var et=this.__entries__,Ae=nt(et,rt);~Ae&&et.splice(Ae,1)},He.prototype.has=function(rt){return!!~nt(this.__entries__,rt)},He.prototype.clear=function(){this.__entries__.splice(0)},He.prototype.forEach=function(rt,et){void 0===et&&(et=null);for(var Ae=0,Ge=this.__entries__;Ae0},nt.prototype.connect_=function(){!be||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),Ie?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},nt.prototype.disconnect_=function(){!be||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},nt.prototype.onTransitionEnd_=function(He){var rt=He.propertyName,et=void 0===rt?"":rt;J.some(function(Ge){return!!~et.indexOf(Ge)})&&this.refresh()},nt.getInstance=function(){return this.instance_||(this.instance_=new nt),this.instance_},nt.instance_=null,nt}(),Oe=function(nt,He){for(var rt=0,et=Object.keys(He);rt0},nt}(),ui="undefined"!=typeof WeakMap?new WeakMap:new he,Ot=function nt(He){if(!(this instanceof nt))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var rt=ut.getInstance(),et=new Zt(He,rt,this);ui.set(this,et)};["observe","unobserve","disconnect"].forEach(function(nt){Ot.prototype[nt]=function(){var He;return(He=ui.get(this))[nt].apply(He,arguments)}});const gt=void 0!==Pe.ResizeObserver?Pe.ResizeObserver:Ot,ei=new a.OlP("PERFECT_SCROLLBAR_CONFIG");class Qt{constructor(He,rt,et,Ae){this.x=He,this.y=rt,this.w=et,this.h=Ae}}class Re{constructor(He,rt){this.x=He,this.y=rt}}const ke=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class de{constructor(He={}){this.assign(He)}assign(He={}){for(const rt in He)this[rt]=He[rt]}}let ye=(()=>{class nt{constructor(rt,et,Ae,Ge,ot){this.zone=rt,this.differs=et,this.elementRef=Ae,this.platformId=Ge,this.defaults=ot,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new t.x,this.disabled=!1,this.psScrollY=new a.vpe,this.psScrollX=new a.vpe,this.psScrollUp=new a.vpe,this.psScrollDown=new a.vpe,this.psScrollLeft=new a.vpe,this.psScrollRight=new a.vpe,this.psYReachEnd=new a.vpe,this.psYReachStart=new a.vpe,this.psXReachEnd=new a.vpe,this.psXReachStart=new a.vpe}ngOnInit(){if(!this.disabled&&(0,C.NF)(this.platformId)){const rt=new de(this.defaults);rt.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new X(this.elementRef.nativeElement,rt)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new gt(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{ke.forEach(et=>{const Ae=et.replace(/([A-Z])/g,Ge=>`-${Ge.toLowerCase()}`);(0,e.R)(this.elementRef.nativeElement,Ae).pipe((0,f.e)(20),(0,M.R)(this.ngDestroy)).subscribe(Ge=>{this[et].emit(Ge)})})})}}ngOnDestroy(){(0,C.NF)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&"undefined"!=typeof window&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,C.NF)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(rt){rt.disabled&&!rt.disabled.isFirstChange()&&(0,C.NF)(this.platformId)&&rt.disabled.currentValue!==rt.disabled.previousValue&&(!0===rt.disabled.currentValue?this.ngOnDestroy():!1===rt.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){"undefined"!=typeof window&&(this.timeout&&window.clearTimeout(this.timeout),this.timeout=window.setTimeout(()=>{if(!this.disabled&&this.configDiff)try{this.zone.runOutsideAngular(()=>{this.instance&&this.instance.update()})}catch(rt){}},0))}geometry(rt="scroll"){return new Qt(this.elementRef.nativeElement[rt+"Left"],this.elementRef.nativeElement[rt+"Top"],this.elementRef.nativeElement[rt+"Width"],this.elementRef.nativeElement[rt+"Height"])}position(rt=!1){return!rt&&this.instance?new Re(this.instance.reach.x||0,this.instance.reach.y||0):new Re(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(rt="any"){const et=this.elementRef.nativeElement;return"any"===rt?et.classList.contains("ps--active-x")||et.classList.contains("ps--active-y"):"both"===rt?et.classList.contains("ps--active-x")&&et.classList.contains("ps--active-y"):et.classList.contains("ps--active-"+rt)}scrollTo(rt,et,Ae){this.disabled||(null==et&&null==Ae?this.animateScrolling("scrollTop",rt,Ae):(null!=rt&&this.animateScrolling("scrollLeft",rt,Ae),null!=et&&this.animateScrolling("scrollTop",et,Ae)))}scrollToX(rt,et){this.animateScrolling("scrollLeft",rt,et)}scrollToY(rt,et){this.animateScrolling("scrollTop",rt,et)}scrollToTop(rt,et){this.animateScrolling("scrollTop",rt||0,et)}scrollToLeft(rt,et){this.animateScrolling("scrollLeft",rt||0,et)}scrollToRight(rt,et){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(rt||0),et)}scrollToBottom(rt,et){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(rt||0),et)}scrollToElement(rt,et,Ae){if("string"==typeof rt&&(rt=this.elementRef.nativeElement.querySelector(rt)),rt){const Ge=rt.getBoundingClientRect(),ot=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Ge.left-ot.left+this.elementRef.nativeElement.scrollLeft+(et||0),Ae),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Ge.top-ot.top+this.elementRef.nativeElement.scrollTop+(et||0),Ae)}}animateScrolling(rt,et,Ae){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),Ae&&"undefined"!=typeof window){if(et!==this.elementRef.nativeElement[rt]){let Ge=0,ot=0,lt=performance.now(),Ct=this.elementRef.nativeElement[rt];const mi=(Ct-et)/2,Jt=$t=>{ot+=Math.PI/(Ae/($t-lt)),Ge=Math.round(et+mi+mi*Math.cos(ot)),this.elementRef.nativeElement[rt]===Ct&&(ot>=Math.PI?this.animateScrolling(rt,et,0):(this.elementRef.nativeElement[rt]=Ge,Ct=this.elementRef.nativeElement[rt],lt=$t,this.animation=window.requestAnimationFrame(Jt)))};window.requestAnimationFrame(Jt)}}else this.elementRef.nativeElement[rt]=et}}return nt.\u0275fac=function(rt){return new(rt||nt)(a.Y36(a.R0b),a.Y36(a.aQg),a.Y36(a.SBq),a.Y36(a.Lbi),a.Y36(ei,8))},nt.\u0275dir=a.lG2({type:nt,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:["perfectScrollbar","config"]},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],features:[a.TTD]}),nt})(),Ft=(()=>{class nt{}return nt.\u0275fac=function(rt){return new(rt||nt)},nt.\u0275mod=a.oAB({type:nt}),nt.\u0275inj=a.cJS({imports:[[C.ez],C.ez]}),nt})()},4946:Be=>{"use strict";Be.exports=JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}')},5207:Be=>{"use strict";Be.exports=JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}')},1308:Be=>{"use strict";Be.exports=JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}')},9799:Be=>{"use strict";Be.exports=JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}')},8597:Be=>{"use strict";Be.exports={i8:"6.5.4"}},2562:Be=>{"use strict";Be.exports=JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}')}},Be=>{Be(Be.s=7999)}]); \ No newline at end of file diff --git a/frontend/main.9b30da1402d5f9f2.js b/frontend/main.9b30da1402d5f9f2.js deleted file mode 100644 index ca0a274c..00000000 --- a/frontend/main.9b30da1402d5f9f2.js +++ /dev/null @@ -1 +0,0 @@ -var wL=Object.defineProperty,LL=Object.defineProperties,SL=Object.getOwnPropertyDescriptors,JC=Object.getOwnPropertySymbols,EL=Object.prototype.hasOwnProperty,TL=Object.prototype.propertyIsEnumerable,XC=(Ve,j,p)=>j in Ve?wL(Ve,j,{enumerable:!0,configurable:!0,writable:!0,value:p}):Ve[j]=p,js=(Ve,j)=>{for(var p in j||(j={}))EL.call(j,p)&&XC(Ve,p,j[p]);if(JC)for(var p of JC(j))TL.call(j,p)&&XC(Ve,p,j[p]);return Ve},$C=(Ve,j)=>LL(Ve,SL(j));(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[179],{801:(Ve,j,p)=>{"use strict";p.d(j,{Acd:()=>k2,Aq:()=>K3,B$L:()=>gC,BDt:()=>Ts,CgH:()=>Xm,DL8:()=>jm,FJU:()=>DC,FVb:()=>kC,FlN:()=>pl,FpQ:()=>Gm,HLz:()=>p4,KOR:()=>m5,Krp:()=>C8,Mdf:()=>Gs,N2j:()=>pi,NBC:()=>qC,OS1:()=>Y1,Psp:()=>vi,Sbq:()=>_,Ssp:()=>Vm,SuH:()=>fg,TmZ:()=>cl,USL:()=>Tf,Vfw:()=>B,X5K:()=>BC,XsY:()=>Iu,aj4:()=>lf,b7W:()=>Nl,byT:()=>k8,co4:()=>Mu,dLy:()=>D1,dT$:()=>y0,eHv:()=>lC,gNZ:()=>SC,hkK:()=>bC,hnx:()=>MC,kXW:()=>Tu,kZ_:()=>L3,koM:()=>Ps,mh3:()=>x0,nNP:()=>s6,q7m:()=>io,qO$:()=>p0,r8p:()=>Jf,sqG:()=>w6,uli:()=>x8,vqe:()=>Jd,wn1:()=>H8,wyP:()=>KC,xf3:()=>tg});var _={prefix:"fas",iconName:"angles-down",icon:[384,512,["angle-double-down"],"f103","M169.4 278.6C175.6 284.9 183.8 288 192 288s16.38-3.125 22.62-9.375l160-160c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0L192 210.8L54.63 73.38c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25L169.4 278.6zM329.4 265.4L192 402.8L54.63 265.4c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25l160 160C175.6 476.9 183.8 480 192 480s16.38-3.125 22.62-9.375l160-160c12.5-12.5 12.5-32.75 0-45.25S341.9 252.9 329.4 265.4z"]},B={prefix:"fas",iconName:"angles-up",icon:[384,512,["angle-double-up"],"f102","M54.63 246.6L192 109.3l137.4 137.4C335.6 252.9 343.8 256 352 256s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25l-160-160c-12.5-12.5-32.75-12.5-45.25 0l-160 160c-12.5 12.5-12.5 32.75 0 45.25S42.13 259.1 54.63 246.6zM214.6 233.4c-12.5-12.5-32.75-12.5-45.25 0l-160 160c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0L192 301.3l137.4 137.4C335.6 444.9 343.8 448 352 448s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25L214.6 233.4z"]},Ts={prefix:"fas",iconName:"bolt",icon:[384,512,[9889,"zap"],"f0e7","M240.5 224H352C365.3 224 377.3 232.3 381.1 244.7C386.6 257.2 383.1 271.3 373.1 280.1L117.1 504.1C105.8 513.9 89.27 514.7 77.19 505.9C65.1 497.1 60.7 481.1 66.59 467.4L143.5 288H31.1C18.67 288 6.733 279.7 2.044 267.3C-2.645 254.8 .8944 240.7 10.93 231.9L266.9 7.918C278.2-1.92 294.7-2.669 306.8 6.114C318.9 14.9 323.3 30.87 317.4 44.61L240.5 224z"]},pi={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M32 432C32 458.5 53.49 480 80 480h352c26.51 0 48-21.49 48-48V160H32V432zM160 236C160 229.4 165.4 224 172 224h168C346.6 224 352 229.4 352 236v8C352 250.6 346.6 256 340 256h-168C165.4 256 160 250.6 160 244V236zM480 32H32C14.31 32 0 46.31 0 64v48C0 120.8 7.188 128 16 128h480C504.8 128 512 120.8 512 112V64C512 46.31 497.7 32 480 32z"]},k2={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128363,128226],"f0a1","M480 179.6C498.6 188.4 512 212.1 512 240C512 267.9 498.6 291.6 480 300.4V448C480 460.9 472.2 472.6 460.2 477.6C448.3 482.5 434.5 479.8 425.4 470.6L381.7 426.1C333.7 378.1 268.6 352 200.7 352H192V480C192 497.7 177.7 512 160 512H96C78.33 512 64 497.7 64 480V352C28.65 352 0 323.3 0 288V192C0 156.7 28.65 128 64 128H200.7C268.6 128 333.7 101 381.7 53.02L425.4 9.373C434.5 .2215 448.3-2.516 460.2 2.437C472.2 7.39 480 19.06 480 32V179.6zM200.7 192H192V288H200.7C280.5 288 357.2 317.8 416 371.3V108.7C357.2 162.2 280.5 192 200.7 192V192z"]},Ps={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32C49.67 32 64 46.33 64 64V400C64 408.8 71.16 416 80 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H80C35.82 480 0 444.2 0 400V64C0 46.33 14.33 32 32 32zM128 128C128 110.3 142.3 96 160 96H352C369.7 96 384 110.3 384 128C384 145.7 369.7 160 352 160H160C142.3 160 128 145.7 128 128zM288 192C305.7 192 320 206.3 320 224C320 241.7 305.7 256 288 256H160C142.3 256 128 241.7 128 224C128 206.3 142.3 192 160 192H288zM416 288C433.7 288 448 302.3 448 320C448 337.7 433.7 352 416 352H160C142.3 352 128 337.7 128 320C128 302.3 142.3 288 160 288H416z"]},Y1={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M304 16.58C304 7.555 310.1 0 320 0C443.7 0 544 100.3 544 224C544 233 536.4 240 527.4 240H304V16.58zM32 272C32 150.7 122.1 50.34 238.1 34.25C248.2 32.99 256 40.36 256 49.61V288L412.5 444.5C419.2 451.2 418.7 462.2 411 467.7C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zM558.4 288C567.6 288 575 295.8 573.8 305C566.1 360.9 539.1 410.6 499.9 447.3C493.9 452.1 484.5 452.5 478.7 446.7L320 288H558.4z"]},w6={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 128c17.67 0 32 14.33 32 32c0 17.67-14.33 32-32 32S224 177.7 224 160C224 142.3 238.3 128 256 128zM296 384h-80C202.8 384 192 373.3 192 360s10.75-24 24-24h16v-64H224c-13.25 0-24-10.75-24-24S210.8 224 224 224h32c13.25 0 24 10.75 24 24v88h16c13.25 0 24 10.75 24 24S309.3 384 296 384z"]},p0={prefix:"fas",iconName:"clock-rotate-left",icon:[512,512,["history"],"f1da","M256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C201.7 512 151.2 495 109.7 466.1C95.2 455.1 91.64 436 101.8 421.5C111.9 407 131.8 403.5 146.3 413.6C177.4 435.3 215.2 448 256 448C362 448 448 362 448 256C448 149.1 362 64 256 64C202.1 64 155 85.46 120.2 120.2L151 151C166.1 166.1 155.4 192 134.1 192H24C10.75 192 0 181.3 0 168V57.94C0 36.56 25.85 25.85 40.97 40.97L74.98 74.98C121.3 28.69 185.3 0 255.1 0L256 0zM256 128C269.3 128 280 138.7 280 152V246.1L344.1 311C354.3 320.4 354.3 335.6 344.1 344.1C335.6 354.3 320.4 354.3 311 344.1L239 272.1C234.5 268.5 232 262.4 232 256V152C232 138.7 242.7 128 256 128V128z"]},y0={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M414.8 40.79L286.8 488.8C281.9 505.8 264.2 515.6 247.2 510.8C230.2 505.9 220.4 488.2 225.2 471.2L353.2 23.21C358.1 6.216 375.8-3.624 392.8 1.232C409.8 6.087 419.6 23.8 414.8 40.79H414.8zM518.6 121.4L630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L518.6 390.6C506.1 403.1 485.9 403.1 473.4 390.6C460.9 378.1 460.9 357.9 473.4 345.4L562.7 256L473.4 166.6C460.9 154.1 460.9 133.9 473.4 121.4C485.9 108.9 506.1 108.9 518.6 121.4V121.4zM166.6 166.6L77.25 256L166.6 345.4C179.1 357.9 179.1 378.1 166.6 390.6C154.1 403.1 133.9 403.1 121.4 390.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4L121.4 121.4C133.9 108.9 154.1 108.9 166.6 121.4C179.1 133.9 179.1 154.1 166.6 166.6V166.6z"]},x0={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M160 80C160 112.8 140.3 140.1 112 153.3V241.1C130.8 230.2 152.7 224 176 224H272C307.3 224 336 195.3 336 160V153.3C307.7 140.1 288 112.8 288 80C288 35.82 323.8 0 368 0C412.2 0 448 35.82 448 80C448 112.8 428.3 140.1 400 153.3V160C400 230.7 342.7 288 272 288H176C140.7 288 112 316.7 112 352V358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 0 80 0C124.2 0 160 35.82 160 80V80zM80 104C93.25 104 104 93.25 104 80C104 66.75 93.25 56 80 56C66.75 56 56 66.75 56 80C56 93.25 66.75 104 80 104zM368 56C354.7 56 344 66.75 344 80C344 93.25 354.7 104 368 104C381.3 104 392 93.25 392 80C392 66.75 381.3 56 368 56zM80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408C66.75 408 56 418.7 56 432C56 445.3 66.75 456 80 456z"]},L3={prefix:"fas",iconName:"copy",icon:[512,512,[],"f0c5","M384 96L384 0h-112c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48H464c26.51 0 48-21.49 48-48V128h-95.1C398.4 128 384 113.6 384 96zM416 0v96h96L416 0zM192 352V128h-144c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h192c26.51 0 48-21.49 48-48L288 416h-32C220.7 416 192 387.3 192 352z"]},cl={prefix:"fas",iconName:"diagram-project",icon:[576,512,["project-diagram"],"f542","M0 80C0 53.49 21.49 32 48 32H144C170.5 32 192 53.49 192 80V96H384V80C384 53.49 405.5 32 432 32H528C554.5 32 576 53.49 576 80V176C576 202.5 554.5 224 528 224H432C405.5 224 384 202.5 384 176V160H192V176C192 177.7 191.9 179.4 191.7 180.1L272 288H368C394.5 288 416 309.5 416 336V432C416 458.5 394.5 480 368 480H272C245.5 480 224 458.5 224 432V336C224 334.3 224.1 332.6 224.3 331L144 224H48C21.49 224 0 202.5 0 176V80z"]},io={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M480 352h-133.5l-45.25 45.25C289.2 409.3 273.1 416 256 416s-33.16-6.656-45.25-18.75L165.5 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96C512 366.3 497.7 352 480 352zM432 456c-13.2 0-24-10.8-24-24c0-13.2 10.8-24 24-24s24 10.8 24 24C456 445.2 445.2 456 432 456zM233.4 374.6C239.6 380.9 247.8 384 256 384s16.38-3.125 22.62-9.375l128-128c12.49-12.5 12.49-32.75 0-45.25c-12.5-12.5-32.76-12.5-45.25 0L288 274.8V32c0-17.67-14.33-32-32-32C238.3 0 224 14.33 224 32v242.8L150.6 201.4c-12.49-12.5-32.75-12.5-45.25 0c-12.49 12.5-12.49 32.75 0 45.25L233.4 374.6z"]},pl={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M104 96h-48C42.75 96 32 106.8 32 120V224C14.33 224 0 238.3 0 256c0 17.67 14.33 32 31.1 32L32 392C32 405.3 42.75 416 56 416h48C117.3 416 128 405.3 128 392v-272C128 106.8 117.3 96 104 96zM456 32h-48C394.8 32 384 42.75 384 56V224H256V56C256 42.75 245.3 32 232 32h-48C170.8 32 160 42.75 160 56v400C160 469.3 170.8 480 184 480h48C245.3 480 256 469.3 256 456V288h128v168c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24V56C480 42.75 469.3 32 456 32zM608 224V120C608 106.8 597.3 96 584 96h-48C522.8 96 512 106.8 512 120v272c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24V288c17.67 0 32-14.33 32-32C640 238.3 625.7 224 608 224z"]},m5={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M48.01 319.1h351.1c41.62 0 63.49-49.63 35.37-80.38l-175.1-192.1c-19-20.62-51.75-20.62-70.75 0L12.64 239.6C-15.48 270.2 6.393 319.1 48.01 319.1zM399.1 384H48.01c-26.39 0-47.99 21.59-47.99 47.98C.0117 458.4 21.61 480 48.01 480h351.1c26.39 0 47.99-21.6 47.99-47.99C447.1 405.6 426.4 384 399.1 384z"]},Gs={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M279.6 160.4C282.4 160.1 285.2 160 288 160C341 160 384 202.1 384 256C384 309 341 352 288 352C234.1 352 192 309 192 256C192 253.2 192.1 250.4 192.4 247.6C201.7 252.1 212.5 256 224 256C259.3 256 288 227.3 288 192C288 180.5 284.1 169.7 279.6 160.4zM480.6 112.6C527.4 156 558.7 207.1 573.5 243.7C576.8 251.6 576.8 260.4 573.5 268.3C558.7 304 527.4 355.1 480.6 399.4C433.5 443.2 368.8 480 288 480C207.2 480 142.5 443.2 95.42 399.4C48.62 355.1 17.34 304 2.461 268.3C-.8205 260.4-.8205 251.6 2.461 243.7C17.34 207.1 48.62 156 95.42 112.6C142.5 68.84 207.2 32 288 32C368.8 32 433.5 68.84 480.6 112.6V112.6zM288 112C208.5 112 144 176.5 144 256C144 335.5 208.5 400 288 400C367.5 400 432 335.5 432 256C432 176.5 367.5 112 288 112z"]},K3={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M150.7 92.77C195 58.27 251.8 32 320 32C400.8 32 465.5 68.84 512.6 112.6C559.4 156 590.7 207.1 605.5 243.7C608.8 251.6 608.8 260.4 605.5 268.3C592.1 300.6 565.2 346.1 525.6 386.7L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L150.7 92.77zM223.1 149.5L313.4 220.3C317.6 211.8 320 202.2 320 191.1C320 180.5 316.1 169.7 311.6 160.4C314.4 160.1 317.2 159.1 320 159.1C373 159.1 416 202.1 416 255.1C416 269.7 413.1 282.7 407.1 294.5L446.6 324.7C457.7 304.3 464 280.9 464 255.1C464 176.5 399.5 111.1 320 111.1C282.7 111.1 248.6 126.2 223.1 149.5zM320 480C239.2 480 174.5 443.2 127.4 399.4C80.62 355.1 49.34 304 34.46 268.3C31.18 260.4 31.18 251.6 34.46 243.7C44 220.8 60.29 191.2 83.09 161.5L177.4 235.8C176.5 242.4 176 249.1 176 255.1C176 335.5 240.5 400 320 400C338.7 400 356.6 396.4 373 389.9L446.2 447.5C409.9 467.1 367.8 480 320 480H320z"]},p4={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 64C238.3 64 224 78.33 224 96C224 113.7 238.3 128 256 128C273.7 128 288 113.7 288 96C288 78.33 273.7 64 256 64zM256 416C291.3 416 320 387.3 320 352C320 334.6 313.1 318.9 301.9 307.4L365.1 161.7C371.3 149.5 365.8 135.4 353.7 130C341.5 124.7 327.4 130.2 322 142.3L257.9 288C257.3 288 256.6 287.1 256 287.1C220.7 287.1 192 316.7 192 352C192 387.3 220.7 416 256 416V416zM144 112C126.3 112 112 126.3 112 144C112 161.7 126.3 176 144 176C161.7 176 176 161.7 176 144C176 126.3 161.7 112 144 112zM96 288C113.7 288 128 273.7 128 256C128 238.3 113.7 224 96 224C78.33 224 64 238.3 64 256C64 273.7 78.33 288 96 288zM416 224C398.3 224 384 238.3 384 256C384 273.7 398.3 288 416 288C433.7 288 448 273.7 448 256C448 238.3 433.7 224 416 224z"]},Nl={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z"]},Jd={prefix:"fas",iconName:"infinity",icon:[640,512,[9854,8734],"f534","M494.9 96.01c-38.78 0-75.22 15.09-102.6 42.5L320 210.8L247.8 138.5c-27.41-27.41-63.84-42.5-102.6-42.5C65.11 96.01 0 161.1 0 241.1v29.75c0 80.03 65.11 145.1 145.1 145.1c38.78 0 75.22-15.09 102.6-42.5L320 301.3l72.23 72.25c27.41 27.41 63.84 42.5 102.6 42.5C574.9 416 640 350.9 640 270.9v-29.75C640 161.1 574.9 96.01 494.9 96.01zM202.5 328.3c-15.31 15.31-35.69 23.75-57.38 23.75C100.4 352 64 315.6 64 270.9v-29.75c0-44.72 36.41-81.13 81.14-81.13c21.69 0 42.06 8.438 57.38 23.75l72.23 72.25L202.5 328.3zM576 270.9c0 44.72-36.41 81.13-81.14 81.13c-21.69 0-42.06-8.438-57.38-23.75l-72.23-72.25l72.23-72.25c15.31-15.31 35.69-23.75 57.38-23.75C539.6 160 576 196.4 576 241.1V270.9z"]},C8={prefix:"fas",iconName:"layer-group",icon:[512,512,[],"f5fd","M232.5 5.171C247.4-1.718 264.6-1.718 279.5 5.171L498.1 106.2C506.6 110.1 512 118.6 512 127.1C512 137.3 506.6 145.8 498.1 149.8L279.5 250.8C264.6 257.7 247.4 257.7 232.5 250.8L13.93 149.8C5.438 145.8 0 137.3 0 127.1C0 118.6 5.437 110.1 13.93 106.2L232.5 5.171zM498.1 234.2C506.6 238.1 512 246.6 512 255.1C512 265.3 506.6 273.8 498.1 277.8L279.5 378.8C264.6 385.7 247.4 385.7 232.5 378.8L13.93 277.8C5.438 273.8 0 265.3 0 255.1C0 246.6 5.437 238.1 13.93 234.2L67.13 209.6L219.1 279.8C242.5 290.7 269.5 290.7 292.9 279.8L444.9 209.6L498.1 234.2zM292.9 407.8L444.9 337.6L498.1 362.2C506.6 366.1 512 374.6 512 383.1C512 393.3 506.6 401.8 498.1 405.8L279.5 506.8C264.6 513.7 247.4 513.7 232.5 506.8L13.93 405.8C5.438 401.8 0 393.3 0 383.1C0 374.6 5.437 366.1 13.93 362.2L67.13 337.6L219.1 407.8C242.5 418.7 269.5 418.7 292.9 407.8V407.8z"]},x8={prefix:"fas",iconName:"life-ring",icon:[512,512,[],"f1cd","M470.6 425.4C483.1 437.9 483.1 458.1 470.6 470.6C458.1 483.1 437.9 483.1 425.4 470.6L412.1 458.2C369.6 491.9 315.2 512 255.1 512C196.8 512 142.4 491.9 99.02 458.2L86.63 470.6C74.13 483.1 53.87 483.1 41.37 470.6C28.88 458.1 28.88 437.9 41.37 425.4L53.76 412.1C20.07 369.6 0 315.2 0 255.1C0 196.8 20.07 142.4 53.76 99.02L41.37 86.63C28.88 74.13 28.88 53.87 41.37 41.37C53.87 28.88 74.13 28.88 86.63 41.37L99.02 53.76C142.4 20.07 196.8 0 255.1 0C315.2 0 369.6 20.07 412.1 53.76L425.4 41.37C437.9 28.88 458.1 28.88 470.6 41.37C483.1 53.87 483.1 74.13 470.6 86.63L458.2 99.02C491.9 142.4 512 196.8 512 255.1C512 315.2 491.9 369.6 458.2 412.1L470.6 425.4zM309.3 354.5C293.4 363.1 275.3 368 255.1 368C236.7 368 218.6 363.1 202.7 354.5L144.8 412.5C176.1 434.9 214.5 448 255.1 448C297.5 448 335.9 434.9 367.2 412.5L309.3 354.5zM448 255.1C448 214.5 434.9 176.1 412.5 144.8L354.5 202.7C363.1 218.6 368 236.7 368 256C368 275.3 363.1 293.4 354.5 309.3L412.5 367.2C434.9 335.9 448 297.5 448 256V255.1zM255.1 63.1C214.5 63.1 176.1 77.14 144.8 99.5L202.7 157.5C218.6 148.9 236.7 143.1 255.1 143.1C275.3 143.1 293.4 148.9 309.3 157.5L367.2 99.5C335.9 77.14 297.5 63.1 256 63.1H255.1zM157.5 309.3C148.9 293.4 143.1 275.3 143.1 255.1C143.1 236.7 148.9 218.6 157.5 202.7L99.5 144.8C77.14 176.1 63.1 214.5 63.1 255.1C63.1 297.5 77.14 335.9 99.5 367.2L157.5 309.3zM255.1 207.1C229.5 207.1 207.1 229.5 207.1 255.1C207.1 282.5 229.5 303.1 255.1 303.1C282.5 303.1 304 282.5 304 255.1C304 229.5 282.5 207.1 255.1 207.1z"]},s6={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M172.5 131.1C228.1 75.51 320.5 75.51 376.1 131.1C426.1 181.1 433.5 260.8 392.4 318.3L391.3 319.9C381 334.2 361 337.6 346.7 327.3C332.3 317 328.9 297 339.2 282.7L340.3 281.1C363.2 249 359.6 205.1 331.7 177.2C300.3 145.8 249.2 145.8 217.7 177.2L105.5 289.5C73.99 320.1 73.99 372 105.5 403.5C133.3 431.4 177.3 435 209.3 412.1L210.9 410.1C225.3 400.7 245.3 404 255.5 418.4C265.8 432.8 262.5 452.8 248.1 463.1L246.5 464.2C188.1 505.3 110.2 498.7 60.21 448.8C3.741 392.3 3.741 300.7 60.21 244.3L172.5 131.1zM467.5 380C411 436.5 319.5 436.5 263 380C213 330 206.5 251.2 247.6 193.7L248.7 192.1C258.1 177.8 278.1 174.4 293.3 184.7C307.7 194.1 311.1 214.1 300.8 229.3L299.7 230.9C276.8 262.1 280.4 306.9 308.3 334.8C339.7 366.2 390.8 366.2 422.3 334.8L534.5 222.5C566 191 566 139.1 534.5 108.5C506.7 80.63 462.7 76.99 430.7 99.9L429.1 101C414.7 111.3 394.7 107.1 384.5 93.58C374.2 79.2 377.5 59.21 391.9 48.94L393.5 47.82C451 6.731 529.8 13.25 579.8 63.24C636.3 119.7 636.3 211.3 579.8 267.7L467.5 380z"]},k8={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M80 192V144C80 64.47 144.5 0 224 0C303.5 0 368 64.47 368 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80zM144 192H304V144C304 99.82 268.2 64 224 64C179.8 64 144 99.82 144 144V192z"]},H8={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7C401.8 87.79 326.8 13.32 235.2 1.723C99.01-15.51-15.51 99.01 1.724 235.2c11.6 91.64 86.08 166.7 177.6 178.9c53.8 7.189 104.3-6.236 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0C515.9 484.7 515.9 459.3 500.3 443.7zM79.1 208c0-70.58 57.42-128 128-128s128 57.42 128 128c0 70.58-57.42 128-128 128S79.1 278.6 79.1 208z"]},Mu={prefix:"fas",iconName:"money-bill-1",icon:[576,512,["money-bill-alt"],"f3d1","M252 208C252 196.1 260.1 188 272 188H288C299 188 308 196.1 308 208V276H312C323 276 332 284.1 332 296C332 307 323 316 312 316H264C252.1 316 244 307 244 296C244 284.1 252.1 276 264 276H268V227.6C258.9 225.7 252 217.7 252 208zM512 64C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H512zM128 384C128 348.7 99.35 320 64 320V384H128zM64 192C99.35 192 128 163.3 128 128H64V192zM512 384V320C476.7 320 448 348.7 448 384H512zM512 128H448C448 163.3 476.7 192 512 192V128zM288 144C226.1 144 176 194.1 176 256C176 317.9 226.1 368 288 368C349.9 368 400 317.9 400 256C400 194.1 349.9 144 288 144z"]},lf={prefix:"fas",iconName:"money-bill-wave",icon:[576,512,[],"f53a","M48.66 79.13C128.4 100.9 208.2 80.59 288 60.25C375 38.08 462 15.9 549 48.38C565.9 54.69 576 71.62 576 89.66V399.5C576 423.4 550.4 439.2 527.3 432.9C447.6 411.1 367.8 431.4 288 451.7C200.1 473.9 113.1 496.1 26.97 463.6C10.06 457.3 0 440.4 0 422.3V112.5C0 88.59 25.61 72.83 48.66 79.13L48.66 79.13zM287.1 352C332.2 352 368 309 368 255.1C368 202.1 332.2 159.1 287.1 159.1C243.8 159.1 207.1 202.1 207.1 255.1C207.1 309 243.8 352 287.1 352zM63.1 416H127.1C127.1 380.7 99.35 352 63.1 352V416zM63.1 143.1V207.1C99.35 207.1 127.1 179.3 127.1 143.1H63.1zM512 303.1C476.7 303.1 448 332.7 448 368H512V303.1zM448 95.1C448 131.3 476.7 159.1 512 159.1V95.1H448z"]},Tu={prefix:"fas",iconName:"network-wired",icon:[640,512,[],"f6ff","M400 0C426.5 0 448 21.49 448 48V144C448 170.5 426.5 192 400 192H352V224H608C625.7 224 640 238.3 640 256C640 273.7 625.7 288 608 288H512V320H560C586.5 320 608 341.5 608 368V464C608 490.5 586.5 512 560 512H400C373.5 512 352 490.5 352 464V368C352 341.5 373.5 320 400 320H448V288H192V320H240C266.5 320 288 341.5 288 368V464C288 490.5 266.5 512 240 512H80C53.49 512 32 490.5 32 464V368C32 341.5 53.49 320 80 320H128V288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H288V192H240C213.5 192 192 170.5 192 144V48C192 21.49 213.5 0 240 0H400zM256 64V128H384V64H256zM224 448V384H96V448H224zM416 384V448H544V384H416z"]},Iu={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M224 263.3C224.2 233.3 238.4 205.2 262.4 187.2L499.1 9.605C517.7-4.353 543.6-2.965 560.7 12.9C577.7 28.76 580.8 54.54 568.2 74.07L406.5 324.1C391.3 347.7 366.6 363.2 339.3 367.1L224 263.3zM320 400C320 461.9 269.9 512 208 512H64C46.33 512 32 497.7 32 480C32 462.3 46.33 448 64 448H68.81C86.44 448 98.4 429.1 96.59 411.6C96.2 407.8 96 403.9 96 400C96 339.6 143.9 290.3 203.7 288.1L319.8 392.5C319.9 394.1 320 397.5 320 400V400z"]},Tf={prefix:"fas",iconName:"percent",icon:[384,512,[62101,62785,"percentage"],"25","M374.6 73.39c-12.5-12.5-32.75-12.5-45.25 0l-320 320c-12.5 12.5-12.5 32.75 0 45.25C15.63 444.9 23.81 448 32 448s16.38-3.125 22.62-9.375l320-320C387.1 106.1 387.1 85.89 374.6 73.39zM64 192c35.3 0 64-28.72 64-64S99.3 64.01 64 64.01S0 92.73 0 128S28.7 192 64 192zM320 320c-35.3 0-64 28.72-64 64s28.7 64 64 64s64-28.72 64-64S355.3 320 320 320z"]},Jf={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z"]},vi={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M204.3 32.01H96c-52.94 0-96 43.06-96 96c0 17.67 14.31 31.1 32 31.1s32-14.32 32-31.1c0-17.64 14.34-32 32-32h108.3C232.8 96.01 256 119.2 256 147.8c0 19.72-10.97 37.47-30.5 47.33L127.8 252.4C117.1 258.2 112 268.7 112 280v40c0 17.67 14.31 31.99 32 31.99s32-14.32 32-31.99V298.3L256 251.3c39.47-19.75 64-59.42 64-103.5C320 83.95 268.1 32.01 204.3 32.01zM144 400c-22.09 0-40 17.91-40 40s17.91 39.1 40 39.1s40-17.9 40-39.1S166.1 400 144 400z"]},D1={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M13.97 2.196C22.49-1.72 32.5-.3214 39.62 5.778L80 40.39L120.4 5.778C129.4-1.926 142.6-1.926 151.6 5.778L192 40.39L232.4 5.778C241.4-1.926 254.6-1.926 263.6 5.778L304 40.39L344.4 5.778C351.5-.3214 361.5-1.72 370 2.196C378.5 6.113 384 14.63 384 24V488C384 497.4 378.5 505.9 370 509.8C361.5 513.7 351.5 512.3 344.4 506.2L304 471.6L263.6 506.2C254.6 513.9 241.4 513.9 232.4 506.2L192 471.6L151.6 506.2C142.6 513.9 129.4 513.9 120.4 506.2L80 471.6L39.62 506.2C32.5 512.3 22.49 513.7 13.97 509.8C5.456 505.9 0 497.4 0 488V24C0 14.63 5.456 6.112 13.97 2.196V2.196zM96 144C87.16 144 80 151.2 80 160C80 168.8 87.16 176 96 176H288C296.8 176 304 168.8 304 160C304 151.2 296.8 144 288 144H96zM96 368H288C296.8 368 304 360.8 304 352C304 343.2 296.8 336 288 336H96C87.16 336 80 343.2 80 352C80 360.8 87.16 368 96 368zM96 240C87.16 240 80 247.2 80 256C80 264.8 87.16 272 96 272H288C296.8 272 304 264.8 304 256C304 247.2 296.8 240 288 240H96z"]},Vm={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 160h319.9l.0791 72c0 9.547 5.652 18.19 14.41 22c8.754 3.812 18.93 2.078 25.93-4.406l112-104c10.24-9.5 10.24-25.69 0-35.19l-112-104c-6.992-6.484-17.17-8.217-25.93-4.408c-8.758 3.816-14.41 12.46-14.41 22L351.9 96H32C14.31 96 0 110.3 0 127.1S14.31 160 32 160zM480 352H160.1L160 279.1c0-9.547-5.652-18.19-14.41-22C136.9 254.2 126.7 255.9 119.7 262.4l-112 104c-10.24 9.5-10.24 25.69 0 35.19l112 104c6.992 6.484 17.17 8.219 25.93 4.406C154.4 506.2 160 497.5 160 488L160.1 416H480c17.69 0 32-14.31 32-32S497.7 352 480 352z"]},Gm={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M320 256C302.3 256 288 270.3 288 288C288 305.7 302.3 320 320 320H416C469 320 512 362.1 512 416C512 469 469 512 416 512H139.6C148.3 502.1 158.9 489.4 169.6 475.2C175.9 466.8 182.4 457.6 188.6 448H416C433.7 448 448 433.7 448 416C448 398.3 433.7 384 416 384H320C266.1 384 223.1 341 223.1 288C223.1 234.1 266.1 192 320 192H362.1C340.2 161.5 320 125.4 320 96C320 42.98 362.1 0 416 0C469 0 512 42.98 512 96C512 160 416 256 416 256H320zM416 128C433.7 128 448 113.7 448 96C448 78.33 433.7 64 416 64C398.3 64 384 78.33 384 96C384 113.7 398.3 128 416 128zM118.3 487.8C118.1 488 117.9 488.2 117.7 488.4C113.4 493.4 109.5 497.7 106.3 501.2C105.9 501.6 105.5 502 105.2 502.4C99.5 508.5 96 512 96 512C96 512 0 416 0 352C0 298.1 42.98 255.1 96 255.1C149 255.1 192 298.1 192 352C192 381.4 171.8 417.5 149.9 448C138.1 463.2 127.7 476.9 118.3 487.8L118.3 487.8zM95.1 384C113.7 384 127.1 369.7 127.1 352C127.1 334.3 113.7 320 95.1 320C78.33 320 63.1 334.3 63.1 352C63.1 369.7 78.33 384 95.1 384z"]},jm={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M554.9 154.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 128 80s127.1-35.88 127.1-80C639.1 319.9 641.4 327.3 554.9 154.5zM439.1 320l71.96-144l72.17 144H439.1zM256 336c0-16.12 1.375-8.75-85.12-181.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 127.1 80S256 380.1 256 336zM127.9 176L200.1 320H55.96L127.9 176zM495.1 448h-143.1V153.3C375.5 143 393.1 121.8 398.4 96h113.6c17.67 0 31.1-14.33 31.1-32s-14.33-32-31.1-32h-128.4c-14.62-19.38-37.5-32-63.62-32S270.1 12.62 256.4 32H128C110.3 32 96 46.33 96 64S110.3 96 127.1 96h113.6c5.25 25.75 22.87 47 46.37 57.25V448H144c-26.51 0-48.01 21.49-48.01 48c0 8.836 7.165 16 16 16h416c8.836 0 16-7.164 16-16C544 469.5 522.5 448 495.1 448z"]},Xm={prefix:"fas",iconName:"screwdriver-wrench",icon:[512,512,["tools"],"f7d9","M331.8 224.1c28.29 0 54.88 10.99 74.86 30.97l19.59 19.59c40.01-17.74 71.25-53.3 81.62-96.65c5.725-23.92 5.34-47.08 .2148-68.4c-2.613-10.88-16.43-14.51-24.34-6.604l-68.9 68.9h-75.6V97.2l68.9-68.9c7.912-7.912 4.275-21.73-6.604-24.34c-21.32-5.125-44.48-5.51-68.4 .2148c-55.3 13.23-98.39 60.22-107.2 116.4C224.5 128.9 224.2 137 224.3 145l82.78 82.86C315.2 225.1 323.5 224.1 331.8 224.1zM384 278.6c-23.16-23.16-57.57-27.57-85.39-13.9L191.1 158L191.1 95.99l-127.1-95.99L0 63.1l96 127.1l62.04 .0077l106.7 106.6c-13.67 27.82-9.251 62.23 13.91 85.39l117 117.1c14.62 14.5 38.21 14.5 52.71-.0016l52.75-52.75c14.5-14.5 14.5-38.08-.0016-52.71L384 278.6zM227.9 307L168.7 247.9l-148.9 148.9c-26.37 26.37-26.37 69.08 0 95.45C32.96 505.4 50.21 512 67.5 512s34.54-6.592 47.72-19.78l119.1-119.1C225.5 352.3 222.6 329.4 227.9 307zM64 472c-13.25 0-24-10.75-24-24c0-13.26 10.75-24 24-24S88 434.7 88 448C88 461.3 77.25 472 64 472z"]},tg={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M480 288H32c-17.62 0-32 14.38-32 32v128c0 17.62 14.38 32 32 32h448c17.62 0 32-14.38 32-32v-128C512 302.4 497.6 288 480 288zM352 408c-13.25 0-24-10.75-24-24s10.75-24 24-24s24 10.75 24 24S365.3 408 352 408zM416 408c-13.25 0-24-10.75-24-24s10.75-24 24-24s24 10.75 24 24S429.3 408 416 408zM480 32H32C14.38 32 0 46.38 0 64v128c0 17.62 14.38 32 32 32h448c17.62 0 32-14.38 32-32V64C512 46.38 497.6 32 480 32zM352 152c-13.25 0-24-10.75-24-24S338.8 104 352 104S376 114.8 376 128S365.3 152 352 152zM416 152c-13.25 0-24-10.75-24-24S402.8 104 416 104S440 114.8 440 128S429.3 152 416 152z"]},fg={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M223.1 32C223.1 14.33 238.3 0 255.1 0C273.7 0 288 14.33 288 32H441.4C445.6 32 449.7 33.69 452.7 36.69L500.7 84.69C506.9 90.93 506.9 101.1 500.7 107.3L452.7 155.3C449.7 158.3 445.6 160 441.4 160H63.1C46.33 160 31.1 145.7 31.1 128V64C31.1 46.33 46.33 32 63.1 32L223.1 32zM480 320C480 337.7 465.7 352 448 352H70.63C66.38 352 62.31 350.3 59.31 347.3L11.31 299.3C5.065 293.1 5.065 282.9 11.31 276.7L59.31 228.7C62.31 225.7 66.38 223.1 70.63 223.1H223.1V191.1H288V223.1H448C465.7 223.1 480 238.3 480 255.1V320zM255.1 512C238.3 512 223.1 497.7 223.1 480V384H288V480C288 497.7 273.7 512 255.1 512z"]},lC={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M506.3 417l-213.3-364c-16.33-28-57.54-28-73.98 0l-213.2 364C-10.59 444.9 9.849 480 42.74 480h426.6C502.1 480 522.6 445 506.3 417zM232 168c0-13.25 10.75-24 24-24S280 154.8 280 168v128c0 13.25-10.75 24-23.1 24S232 309.3 232 296V168zM256 416c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 401.9 273.4 416 256 416z"]},gC={prefix:"fas",iconName:"unlock-keyhole",icon:[448,512,["unlock-alt"],"f13e","M224 64C179.8 64 144 99.82 144 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80V144C80 64.47 144.5 0 224 0C281.5 0 331 33.69 354.1 82.27C361.7 98.23 354.9 117.3 338.1 124.9C322.1 132.5 303.9 125.7 296.3 109.7C283.4 82.63 255.9 64 224 64H224zM256 384C273.7 384 288 369.7 288 352C288 334.3 273.7 320 256 320H192C174.3 320 160 334.3 160 352C160 369.7 174.3 384 192 384H256z"]},bC={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M274.7 304H173.3C77.61 304 0 381.6 0 477.3C0 496.5 15.52 512 34.66 512H413.3C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM632.3 134.4c-9.703-9-24.91-8.453-33.92 1.266l-87.05 93.75l-38.39-38.39c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94l56 56C499.5 285.5 505.6 288 512 288h.4375c6.531-.125 12.72-2.891 17.16-7.672l104-112C642.6 158.6 642 143.4 632.3 134.4z"]},MC={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M496 224c-79.63 0-144 64.38-144 144s64.38 144 144 144s144-64.38 144-144S575.6 224 496 224zM544 384h-54.25C484.4 384 480 379.6 480 374.3V304c0-8.836 7.164-16 16-16c8.838 0 16 7.164 16 16v48h32c8.838 0 16 7.164 16 15.1S552.8 384 544 384zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM320 368c0-19.3 3.221-37.82 8.961-55.2C311.9 307.2 293.6 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512H395C349.7 480.2 320 427.6 320 368z"]},SC={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M425.1 482.6c-2.303-1.25-4.572-2.559-6.809-3.93l-7.818 4.493c-6.002 3.504-12.83 5.352-19.75 5.352c-10.71 0-21.13-4.492-28.97-12.75c-18.41-20.09-32.29-44.15-40.22-69.9c-5.352-18.06 2.343-36.87 17.83-45.24l8.018-4.669c-.0664-2.621-.0664-5.242 0-7.859l-7.655-4.461c-12.3-6.953-19.4-19.66-19.64-33.38C305.6 306.3 290.4 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512H413.3c5.727 0 10.9-1.727 15.66-4.188c-2.271-4.984-3.86-10.3-3.86-16.06V482.6zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM610.5 373.3c2.625-14 2.625-28.5 0-42.5l25.75-15c3-1.625 4.375-5.125 3.375-8.5c-6.75-21.5-18.25-41.13-33.25-57.38c-2.25-2.5-6-3.125-9-1.375l-25.75 14.88c-10.88-9.25-23.38-16.5-36.88-21.25V212.3c0-3.375-2.5-6.375-5.75-7c-22.25-5-45-4.875-66.25 0c-3.25 .625-5.625 3.625-5.625 7v29.88c-13.5 4.75-26 12-36.88 21.25L394.4 248.5c-2.875-1.75-6.625-1.125-9 1.375c-15 16.25-26.5 35.88-33.13 57.38c-1 3.375 .3751 6.875 3.25 8.5l25.75 15c-2.5 14-2.5 28.5 0 42.5l-25.75 15c-3 1.625-4.25 5.125-3.25 8.5c6.625 21.5 18.13 41 33.13 57.38c2.375 2.5 6 3.125 9 1.375l25.88-14.88c10.88 9.25 23.38 16.5 36.88 21.25v29.88c0 3.375 2.375 6.375 5.625 7c22.38 5 45 4.875 66.25 0c3.25-.625 5.75-3.625 5.75-7v-29.88c13.5-4.75 26-12 36.88-21.25l25.75 14.88c2.875 1.75 6.75 1.125 9-1.375c15-16.25 26.5-35.88 33.25-57.38c1-3.375-.3751-6.875-3.375-8.5L610.5 373.3zM496 400.5c-26.75 0-48.5-21.75-48.5-48.5s21.75-48.5 48.5-48.5c26.75 0 48.5 21.75 48.5 48.5S522.8 400.5 496 400.5z"]},DC={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M592 288H576V212.7c0-41.84-30.03-80.04-71.66-84.27C456.5 123.6 416 161.1 416 208V288h-16C373.6 288 352 309.6 352 336v128c0 26.4 21.6 48 48 48h192c26.4 0 48-21.6 48-48v-128C640 309.6 618.4 288 592 288zM496 432c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S513.6 432 496 432zM528 288h-64V208c0-17.62 14.38-32 32-32s32 14.38 32 32V288zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM320 336c0-8.672 1.738-16.87 4.303-24.7C308.6 306.6 291.9 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512h301.7C326.3 498.6 320 482.1 320 464V336z"]},kC={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M319.9 320c57.41 0 103.1-46.56 103.1-104c0-57.44-46.54-104-103.1-104c-57.41 0-103.1 46.56-103.1 104C215.9 273.4 262.5 320 319.9 320zM369.9 352H270.1C191.6 352 128 411.7 128 485.3C128 500.1 140.7 512 156.4 512h327.2C499.3 512 512 500.1 512 485.3C512 411.7 448.4 352 369.9 352zM512 160c44.18 0 80-35.82 80-80S556.2 0 512 0c-44.18 0-80 35.82-80 80S467.8 160 512 160zM183.9 216c0-5.449 .9824-10.63 1.609-15.91C174.6 194.1 162.6 192 149.9 192H88.08C39.44 192 0 233.8 0 285.3C0 295.6 7.887 304 17.62 304h199.5C196.7 280.2 183.9 249.7 183.9 216zM128 160c44.18 0 80-35.82 80-80S172.2 0 128 0C83.82 0 48 35.82 48 80S83.82 160 128 160zM551.9 192h-61.84c-12.8 0-24.88 3.037-35.86 8.24C454.8 205.5 455.8 210.6 455.8 216c0 33.71-12.78 64.21-33.16 88h199.7C632.1 304 640 295.6 640 285.3C640 233.8 600.6 192 551.9 192z"]},BC={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M448 32C465.7 32 480 46.33 480 64C480 81.67 465.7 96 448 96H80C71.16 96 64 103.2 64 112C64 120.8 71.16 128 80 128H448C483.3 128 512 156.7 512 192V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM416 336C433.7 336 448 321.7 448 304C448 286.3 433.7 272 416 272C398.3 272 384 286.3 384 304C384 321.7 398.3 336 416 336z"]},KC={prefix:"fas",iconName:"window-restore",icon:[512,512,[],"f2d2","M432 64H208C199.2 64 192 71.16 192 80V96H128V80C128 35.82 163.8 0 208 0H432C476.2 0 512 35.82 512 80V304C512 348.2 476.2 384 432 384H416V320H432C440.8 320 448 312.8 448 304V80C448 71.16 440.8 64 432 64zM0 192C0 156.7 28.65 128 64 128H320C355.3 128 384 156.7 384 192V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V192zM96 256H288C305.7 256 320 241.7 320 224C320 206.3 305.7 192 288 192H96C78.33 192 64 206.3 64 224C64 241.7 78.33 256 96 256z"]},qC={prefix:"fas",iconName:"xmark",icon:[320,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z"]}},429:(Ve,j,p)=>{"use strict";p.d(j,{$A:()=>B,$W:()=>Y,BL:()=>v,CN:()=>b,CX:()=>d,EG:()=>D,EK:()=>oe,El:()=>$,HI:()=>me,HJ:()=>A,I8:()=>w,JK:()=>Ce,Lu:()=>L,Ly:()=>dt,Ni:()=>f,Nr:()=>Ne,OG:()=>n,QJ:()=>he,RX:()=>h,Rd:()=>we,SN:()=>N,Sf:()=>C,TM:()=>i,UH:()=>Ie,UR:()=>c,VD:()=>le,WM:()=>_e,WO:()=>r,Wi:()=>V,X3:()=>te,YP:()=>Q,YX:()=>I,Z8:()=>ne,ZH:()=>ee,Zu:()=>xe,_9:()=>It,_E:()=>U,aL:()=>Ue,as:()=>_,cQ:()=>X,d7:()=>ut,dh:()=>W,e9:()=>ht,eM:()=>Ae,en:()=>ui,g3:()=>k,g6:()=>ve,i9:()=>ue,kL:()=>u,n7:()=>P,oV:()=>y,oo:()=>a,pW:()=>E,u0:()=>q,uT:()=>Le,v_:()=>H,xH:()=>M,xS:()=>S,yl:()=>Te,z:()=>ie});var t=p(5620),e=p(7731);const f=(0,t.PH)(e.AB.UPDATE_API_CALL_STATUS_CLN,(0,t.Ky)()),M=(0,t.PH)(e.AB.RESET_CLN_STORE,(0,t.Ky)()),a=(0,t.PH)(e.AB.SET_CHILD_NODE_SETTINGS_CLN,(0,t.Ky)()),b=(0,t.PH)(e.AB.FETCH_INFO_CLN,(0,t.Ky)()),d=(0,t.PH)(e.AB.SET_INFO_CLN,(0,t.Ky)()),N=(0,t.PH)(e.AB.FETCH_FEES_CLN),h=(0,t.PH)(e.AB.SET_FEES_CLN,(0,t.Ky)()),A=(0,t.PH)(e.AB.FETCH_FEE_RATES_CLN,(0,t.Ky)()),w=(0,t.PH)(e.AB.SET_FEE_RATES_CLN,(0,t.Ky)()),D=(0,t.PH)(e.AB.FETCH_BALANCE_CLN),L=(0,t.PH)(e.AB.SET_BALANCE_CLN,(0,t.Ky)()),k=(0,t.PH)(e.AB.FETCH_LOCAL_REMOTE_BALANCE_CLN),S=(0,t.PH)(e.AB.SET_LOCAL_REMOTE_BALANCE_CLN,(0,t.Ky)()),U=(0,t.PH)(e.AB.GET_NEW_ADDRESS_CLN,(0,t.Ky)()),Y=((0,t.PH)(e.AB.SET_NEW_ADDRESS_CLN,(0,t.Ky)()),(0,t.PH)(e.AB.FETCH_PEERS_CLN)),ne=(0,t.PH)(e.AB.SET_PEERS_CLN,(0,t.Ky)()),$=(0,t.PH)(e.AB.SAVE_NEW_PEER_CLN,(0,t.Ky)()),te=((0,t.PH)(e.AB.NEWLY_ADDED_PEER_CLN,(0,t.Ky)()),(0,t.PH)(e.AB.ADD_PEER_CLN,(0,t.Ky)())),ie=(0,t.PH)(e.AB.DETACH_PEER_CLN,(0,t.Ky)()),oe=(0,t.PH)(e.AB.REMOVE_PEER_CLN,(0,t.Ky)()),X=(0,t.PH)(e.AB.FETCH_PAYMENTS_CLN),me=(0,t.PH)(e.AB.SET_PAYMENTS_CLN,(0,t.Ky)()),y=(0,t.PH)(e.AB.SEND_PAYMENT_CLN,(0,t.Ky)()),i=(0,t.PH)(e.AB.SEND_PAYMENT_STATUS_CLN,(0,t.Ky)()),r=(0,t.PH)(e.AB.GET_QUERY_ROUTES_CLN,(0,t.Ky)()),u=(0,t.PH)(e.AB.SET_QUERY_ROUTES_CLN,(0,t.Ky)()),c=(0,t.PH)(e.AB.FETCH_CHANNELS_CLN),_=(0,t.PH)(e.AB.SET_CHANNELS_CLN,(0,t.Ky)()),E=(0,t.PH)(e.AB.UPDATE_CHANNEL_CLN,(0,t.Ky)()),I=(0,t.PH)(e.AB.SAVE_NEW_CHANNEL_CLN,(0,t.Ky)()),v=(0,t.PH)(e.AB.CLOSE_CHANNEL_CLN,(0,t.Ky)()),n=(0,t.PH)(e.AB.REMOVE_CHANNEL_CLN,(0,t.Ky)()),C=(0,t.PH)(e.AB.PEER_LOOKUP_CLN,(0,t.Ky)()),B=(0,t.PH)(e.AB.CHANNEL_LOOKUP_CLN,(0,t.Ky)()),P=(0,t.PH)(e.AB.INVOICE_LOOKUP_CLN,(0,t.Ky)()),H=(0,t.PH)(e.AB.SET_LOOKUP_CLN,(0,t.Ky)()),q=(0,t.PH)(e.AB.GET_FORWARDING_HISTORY_CLN,(0,t.Ky)()),he=(0,t.PH)(e.AB.SET_FORWARDING_HISTORY_CLN,(0,t.Ky)()),_e=(0,t.PH)(e.AB.FETCH_INVOICES_CLN,(0,t.Ky)()),Ne=(0,t.PH)(e.AB.SET_INVOICES_CLN,(0,t.Ky)()),we=(0,t.PH)(e.AB.SAVE_NEW_INVOICE_CLN,(0,t.Ky)()),Q=(0,t.PH)(e.AB.ADD_INVOICE_CLN,(0,t.Ky)()),Ue=(0,t.PH)(e.AB.UPDATE_INVOICE_CLN,(0,t.Ky)()),ve=(0,t.PH)(e.AB.DELETE_EXPIRED_INVOICE_CLN,(0,t.Ky)()),V=(0,t.PH)(e.AB.SET_CHANNEL_TRANSACTION_CLN,(0,t.Ky)()),dt=((0,t.PH)(e.AB.SET_CHANNEL_TRANSACTION_RES_CLN,(0,t.Ky)()),(0,t.PH)(e.AB.FETCH_UTXOS_CLN)),Ie=(0,t.PH)(e.AB.SET_UTXOS_CLN,(0,t.Ky)()),Ae=(0,t.PH)(e.AB.FETCH_OFFER_INVOICE_CLN,(0,t.Ky)()),le=(0,t.PH)(e.AB.SET_OFFER_INVOICE_CLN,(0,t.Ky)()),Te=(0,t.PH)(e.AB.FETCH_OFFERS_CLN),xe=(0,t.PH)(e.AB.SET_OFFERS_CLN,(0,t.Ky)()),W=(0,t.PH)(e.AB.SAVE_NEW_OFFER_CLN,(0,t.Ky)()),ee=(0,t.PH)(e.AB.ADD_OFFER_CLN,(0,t.Ky)()),ue=(0,t.PH)(e.AB.DISABLE_OFFER_CLN,(0,t.Ky)()),Ce=(0,t.PH)(e.AB.UPDATE_OFFER_CLN,(0,t.Ky)()),Le=(0,t.PH)(e.AB.FETCH_OFFER_BOOKMARKS_CLN),ut=(0,t.PH)(e.AB.SET_OFFER_BOOKMARKS_CLN,(0,t.Ky)()),ht=(0,t.PH)(e.AB.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,t.Ky)()),It=(0,t.PH)(e.AB.DELETE_OFFER_BOOKMARK_CLN,(0,t.Ky)()),ui=(0,t.PH)(e.AB.REMOVE_OFFER_BOOKMARK_CLN,(0,t.Ky)())},4947:(Ve,j,p)=>{"use strict";p.d(j,{J:()=>X});var t=p(6642),e=p(7579),f=p(9646),M=p(5577),a=p(2722),b=p(4004),d=p(262),N=p(2340),h=p(1786),A=p(5566),w=p(7731),D=p(7861),L=p(429),k=p(9828),S=p(1462),U=p(5e3),Z=p(8138),Y=p(5620),ne=p(5986),$=p(62),de=p(5043),te=p(1402),ie=p(7998),oe=p(9808);let X=(()=>{class me{constructor(i,r,u,c,_,E,I,v,n){this.actions=i,this.httpClient=r,this.store=u,this.sessionService=c,this.commonService=_,this.logger=E,this.router=I,this.wsService=v,this.location=n,this.CHILD_API_URL=N.T5+"/cln",this.flgInitialized=!1,this.unSubs=[new e.x,new e.x,new e.x],this.infoFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_INFO_CLN),(0,M.z)(C=>(this.flgInitialized=!1,this.store.dispatch((0,D.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,L.Ni)({payload:{action:"FetchInfo",status:w.Bn.INITIATED}})),this.store.dispatch((0,D.ac)({payload:w.m6.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+N.NZ.GETINFO_API).pipe((0,a.R)(this.actions.pipe((0,t.l4)(w.pg.SET_SELECTED_NODE))),(0,b.U)(B=>(this.logger.info(B),B.chains&&B.chains.length&&B.chains[0]&&"object"==typeof B.chains[0]&&B.chains[0].hasOwnProperty("chain")&&(null==B?void 0:B.chains[0].chain)&&(null==B?void 0:B.chains[0].chain.toLowerCase().indexOf("bitcoin"))<0?(this.store.dispatch((0,L.Ni)({payload:{action:"FetchInfo",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.GET_NODE_INFO})),this.store.dispatch((0,D.ts)()),setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{type:w.n_.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:w.pg.LOGOUT}):(this.initializeRemainingData(B,C.payload.loadPage),this.store.dispatch((0,L.Ni)({payload:{action:"FetchInfo",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.GET_NODE_INFO})),{type:w.AB.SET_INFO_CLN,payload:B||{}}))),(0,d.K)(B=>{const P=this.commonService.extractErrorCode(B),H="ETIMEDOUT"===P?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(B);return this.router.navigate(["/error"],{state:{errorCode:P,errorMessage:H}}),this.handleErrorWithoutAlert("FetchInfo",w.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:P,error:H}),(0,f.of)({type:w.pg.VOID})})))))),this.fetchFeesCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_FEES_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchFees",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.FEES_API))),(0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchFees",status:w.Bn.COMPLETED}})),{type:w.AB.SET_FEES_CLN,payload:C||{}})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchFees",w.m6.NO_SPINNER,"Fetching Fees Failed.",C),(0,f.of)({type:w.pg.VOID}))))),this.fetchFeeRatesCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_FEE_RATES_CLN),(0,M.z)(C=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchFeeRates"+C.payload,status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.NETWORK_API+"/feeRates/"+C.payload).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"FetchFeeRates"+C.payload,status:w.Bn.COMPLETED}})),{type:w.AB.SET_FEE_RATES_CLN,payload:B||{}})),(0,d.K)(B=>(this.handleErrorWithoutAlert("FetchFeeRates"+C.payload,w.m6.NO_SPINNER,"Fetching Fee Rates Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.fetchBalanceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_BALANCE_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchBalance",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.BALANCE_API))),(0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchBalance",status:w.Bn.COMPLETED}})),{type:w.AB.SET_BALANCE_CLN,payload:C||{}})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchBalance",w.m6.NO_SPINNER,"Fetching Balances Failed.",C),(0,f.of)({type:w.pg.VOID}))))),this.fetchLocalRemoteBalanceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_LOCAL_REMOTE_BALANCE_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchLocalRemoteBalance",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.CHANNELS_API+"/localRemoteBalance"))),(0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchLocalRemoteBalance",status:w.Bn.COMPLETED}})),{type:w.AB.SET_LOCAL_REMOTE_BALANCE_CLN,payload:C||{}})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchLocalRemoteBalance",w.m6.NO_SPINNER,"Fetching Balances Failed.",C),(0,f.of)({type:w.pg.VOID}))))),this.getNewAddressCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.GET_NEW_ADDRESS_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+N.NZ.ON_CHAIN_API+"?type="+C.payload.addressCode).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,D.uO)({payload:w.m6.GENERATE_NEW_ADDRESS})),{type:w.AB.SET_NEW_ADDRESS_CLN,payload:B&&B.address?B.address:{}})),(0,d.K)(B=>(this.handleErrorWithAlert("GenerateNewAddress",w.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+N.NZ.ON_CHAIN_API+"?type="+C.payload.addressId,B),(0,f.of)({type:w.pg.VOID})))))))),this.setNewAddressCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_NEW_ADDRESS_CLN),(0,b.U)(C=>(this.logger.info(C.payload),C.payload))),{dispatch:!1}),this.peersFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_PEERS_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchPeers",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.PEERS_API).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchPeers",status:w.Bn.COMPLETED}})),{type:w.AB.SET_PEERS_CLN,payload:C||[]})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchPeers",w.m6.NO_SPINNER,"Fetching Peers Failed.",C),(0,f.of)({type:w.pg.VOID})))))))),this.saveNewPeerCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_PEER_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.CONNECT_PEER})),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewPeer",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.PEERS_API,{id:C.payload.id}).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewPeer",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.CONNECT_PEER})),this.store.dispatch((0,L.Z8)({payload:B||[]})),{type:w.AB.NEWLY_ADDED_PEER_CLN,payload:{peer:B.find(P=>0===C.payload.id.indexOf(P.id?P.id:""))}})),(0,d.K)(B=>(this.handleErrorWithoutAlert("SaveNewPeer",w.m6.CONNECT_PEER,"Peer Connection Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.detachPeerCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DETACH_PEER_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.PEERS_API+"/"+C.payload.id+"?force="+C.payload.force).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,D.uO)({payload:w.m6.DISCONNECT_PEER})),this.store.dispatch((0,D.jW)({payload:"Peer Disconnected Successfully!"})),{type:w.AB.REMOVE_PEER_CLN,payload:{id:C.payload.id}})),(0,d.K)(B=>(this.handleErrorWithAlert("PeerDisconnect",w.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+N.NZ.PEERS_API+"/"+C.payload.id,B),(0,f.of)({type:w.pg.VOID})))))))),this.channelsFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_CHANNELS_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchChannels",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.CHANNELS_API+"/listChannels"))),(0,b.U)(C=>{this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchChannels",status:w.Bn.COMPLETED}}));const B={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return C.forEach(P=>{"CHANNELD_NORMAL"===P.state?P.connected?B.activeChannels.push(P):B.inactiveChannels.push(P):B.pendingChannels.push(P)}),{type:w.AB.SET_CHANNELS_CLN,payload:B}}),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchChannels",w.m6.NO_SPINNER,"Fetching Channels Failed.",C),(0,f.of)({type:w.pg.VOID}))))),this.openNewChannelCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_CHANNEL_CLN),(0,M.z)(C=>{this.store.dispatch((0,D.ac)({payload:w.m6.OPEN_CHANNEL})),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewChannel",status:w.Bn.INITIATED}}));const B={id:C.payload.peerId,satoshis:C.payload.satoshis,feeRate:C.payload.feeRate,announce:C.payload.announce};return C.payload.minconf&&(B.minconf=C.payload.minconf),C.payload.utxos&&(B.utxos=C.payload.utxos),C.payload.requestAmount&&(B.request_amt=C.payload.requestAmount),C.payload.compactLease&&(B.compact_lease=C.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+N.NZ.CHANNELS_API,B).pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewChannel",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.OPEN_CHANNEL})),this.store.dispatch((0,D.jW)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,L.EG)()),this.store.dispatch((0,L.Ly)()),{type:w.AB.FETCH_CHANNELS_CLN})),(0,d.K)(P=>(this.handleErrorWithoutAlert("SaveNewChannel",w.m6.OPEN_CHANNEL,"Opening Channel Failed.",P),(0,f.of)({type:w.pg.VOID}))))}))),this.updateChannelCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.UPDATE_CHANNEL_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+N.NZ.CHANNELS_API+"/setChannelFee",{id:C.payload.channelId,base:C.payload.baseFeeMsat,ppm:C.payload.feeRate}).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,D.uO)({payload:w.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,D.jW)("all"===C.payload.channelId?{payload:{message:"All Channels Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}}:{payload:{message:"Channel Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}})),{type:w.AB.FETCH_CHANNELS_CLN})),(0,d.K)(B=>(this.handleErrorWithAlert("UpdateChannel",w.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+N.NZ.CHANNELS_API,B),(0,f.of)({type:w.pg.VOID})))))))),this.closeChannelCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.CLOSE_CHANNEL_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:C.payload.force?w.m6.FORCE_CLOSE_CHANNEL:w.m6.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.CHANNELS_API+"/"+C.payload.channelId+(C.payload.force?"?force="+C.payload.force:"")).pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,D.uO)({payload:C.payload.force?w.m6.FORCE_CLOSE_CHANNEL:w.m6.CLOSE_CHANNEL})),this.store.dispatch((0,L.UR)()),this.store.dispatch((0,L.g3)()),this.store.dispatch((0,D.jW)({payload:"Channel Closed Successfully!"})),{type:w.AB.REMOVE_CHANNEL_CLN,payload:C.payload})),(0,d.K)(P=>(this.handleErrorWithAlert("CloseChannel",C.payload.force?w.m6.FORCE_CLOSE_CHANNEL:w.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+N.NZ.CHANNELS_API,P),(0,f.of)({type:w.pg.VOID})))))))),this.paymentsFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_PAYMENTS_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchPayments",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.PAYMENTS_API))),(0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchPayments",status:w.Bn.COMPLETED}})),{type:w.AB.SET_PAYMENTS_CLN,payload:C||[]})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchPayments",w.m6.NO_SPINNER,"Fetching Payments Failed.",C),(0,f.of)({type:w.pg.VOID}))))),this.fetchOfferInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_OFFER_INVOICE_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.FETCH_INVOICE})),this.store.dispatch((0,L.Ni)({payload:{action:"FetchOfferInvoice",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.OFFERS_API+"/fetchOfferInvoice",C.payload).pipe((0,b.U)(B=>{this.logger.info(B),setTimeout(()=>{this.store.dispatch((0,L.Ni)({payload:{action:"FetchOfferInvoice",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.FETCH_INVOICE})),this.store.dispatch((0,L.VD)({payload:B||{}}))},500)}),(0,d.K)(B=>(this.handleErrorWithoutAlert("FetchOfferInvoice",w.m6.FETCH_INVOICE,"Offer Invoice Fetch Failed",B),(0,f.of)({type:w.pg.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_OFFER_INVOICE_CLN),(0,b.U)(C=>(this.logger.info(C.payload),C.payload))),{dispatch:!1}),this.sendPaymentCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SEND_PAYMENT_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:C.payload.uiMessage})),this.store.dispatch((0,L.Ni)({payload:{action:"SendPayment",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.PAYMENTS_API,C.payload).pipe((0,b.U)(B=>{this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"SendPayment",status:w.Bn.COMPLETED}}));let P="Payment Sent Successfully!";B.saveToDBError&&(P="Payment Sent Successfully but Offer Saving to Database Failed."),B.saveToDBResponse&&"NA"!==B.saveToDBResponse&&(this.store.dispatch((0,L.e9)({payload:B.saveToDBResponse})),P="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,L.UR)()),this.store.dispatch((0,L.EG)()),this.store.dispatch((0,L.cQ)()),this.store.dispatch((0,D.uO)({payload:C.payload.uiMessage})),this.store.dispatch((0,D.jW)({payload:P})),this.store.dispatch((0,L.TM)({payload:B.paymentResponse}))},1e3)}),(0,d.K)(B=>(this.logger.error("Error: "+JSON.stringify(B)),C.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",C.payload.uiMessage,"Send Payment Failed.",B):this.handleErrorWithAlert("SendPayment",C.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+N.NZ.PAYMENTS_API,B),(0,f.of)({type:w.pg.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.GET_QUERY_ROUTES_CLN),(0,M.z)(C=>(this.store.dispatch((0,L.Ni)({payload:{action:"GetQueryRoutes",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.NETWORK_API+"/getRoute/"+C.payload.destPubkey+"/"+C.payload.amount).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"GetQueryRoutes",status:w.Bn.COMPLETED}})),{type:w.AB.SET_QUERY_ROUTES_CLN,payload:B})),(0,d.K)(B=>(this.store.dispatch((0,L.kL)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",w.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+N.NZ.NETWORK_API+"/getRoute/"+C.payload.destPubkey+"/"+C.payload.amount,B),(0,f.of)({type:w.pg.VOID})))))))),this.setQueryRoutesCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_QUERY_ROUTES_CLN),(0,b.U)(C=>C.payload)),{dispatch:!1}),this.peerLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.PEER_LOOKUP_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.SEARCHING_NODE})),this.store.dispatch((0,L.Ni)({payload:{action:"Lookup",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.NETWORK_API+"/listNode/"+C.payload).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"Lookup",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.SEARCHING_NODE})),{type:w.AB.SET_LOOKUP_CLN,payload:B})),(0,d.K)(B=>(this.handleErrorWithAlert("Lookup",w.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+N.NZ.NETWORK_API+"/listNode/"+C.payload,B),(0,f.of)({type:w.pg.VOID})))))))),this.channelLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.CHANNEL_LOOKUP_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:C.payload.uiMessage})),this.store.dispatch((0,L.Ni)({payload:{action:"Lookup",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.NETWORK_API+"/listChannel/"+C.payload.shortChannelID).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"Lookup",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:C.payload.uiMessage})),{type:w.AB.SET_LOOKUP_CLN,payload:B})),(0,d.K)(B=>(C.payload.showError?this.handleErrorWithAlert("Lookup",C.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+N.NZ.NETWORK_API+"/listChannel/"+C.payload.shortChannelID,B):this.store.dispatch((0,D.uO)({payload:C.payload.uiMessage})),this.store.dispatch((0,L.v_)({payload:[]})),(0,f.of)({type:w.pg.VOID})))))))),this.invoiceLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.INVOICE_LOOKUP_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.SEARCHING_INVOICE})),this.store.dispatch((0,L.Ni)({payload:{action:"Lookup",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.INVOICES_API+"?label="+C.payload).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"Lookup",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.SEARCHING_INVOICE})),B.invoices&&B.invoices.length&&B.invoices.length>0&&this.store.dispatch((0,L.aL)({payload:B.invoices[0]})),{type:w.AB.SET_LOOKUP_CLN,payload:B.invoices&&B.invoices.length&&B.invoices.length>0?B.invoices[0]:B})),(0,d.K)(B=>(this.handleErrorWithoutAlert("Lookup",w.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",B),this.store.dispatch((0,D.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,f.of)({type:w.pg.VOID})))))))),this.setLookupCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_LOOKUP_CLN),(0,b.U)(C=>(this.logger.info(C.payload),C.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.GET_FORWARDING_HISTORY_CLN),(0,M.z)(C=>{const B=C.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,L.Ni)({payload:{action:"FetchForwardingHistory"+B,status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.CHANNELS_API+"/listForwards?status="+C.payload.status).pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,L.Ni)({payload:{action:"FetchForwardingHistory"+B,status:w.Bn.COMPLETED}})),C.payload.status===w.OO.FAILED?this.store.dispatch((0,L.QJ)({payload:{status:w.OO.FAILED,totalForwards:P.length,listForwards:P}})):C.payload.status===w.OO.LOCAL_FAILED?this.store.dispatch((0,L.QJ)({payload:{status:w.OO.LOCAL_FAILED,totalForwards:P.length,listForwards:P}})):C.payload.status===w.OO.SETTLED&&this.store.dispatch((0,L.QJ)({payload:{status:w.OO.SETTLED,totalForwards:P.length,listForwards:P}})),{type:w.pg.VOID})),(0,d.K)(P=>(this.handleErrorWithAlert("FetchForwardingHistory"+B,w.m6.NO_SPINNER,"Get "+C.payload.status+" Forwarding History Failed",this.CHILD_API_URL+N.NZ.CHANNELS_API+"/listForwards?status="+C.payload.status,P),(0,f.of)({type:w.pg.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DELETE_EXPIRED_INVOICE_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.DELETE_INVOICE})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.INVOICES_API+(C.payload?"?maxexpiry="+C.payload:"")).pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,D.uO)({payload:w.m6.DELETE_INVOICE})),this.store.dispatch((0,D.jW)({payload:"Invoices Deleted Successfully!"})),{type:w.AB.FETCH_INVOICES_CLN,payload:{num_max_invoices:1e6,reversed:!0}})),(0,d.K)(P=>(this.handleErrorWithAlert("DeleteInvoices",w.m6.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+N.NZ.INVOICES_API,P),(0,f.of)({type:w.pg.VOID})))))))),this.saveNewInvoiceCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_INVOICE_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.ADD_INVOICE})),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewInvoice",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.INVOICES_API,{label:C.payload.label,amount:C.payload.amount,description:C.payload.description,expiry:C.payload.expiry,private:C.payload.private}).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewInvoice",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.ADD_INVOICE})),B.msatoshi=C.payload.amount,B.label=C.payload.label,B.expires_at=Math.round((new Date).getTime()/1e3+C.payload.expiry),B.description=C.payload.description,B.status="unpaid",setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{invoice:B,newlyAdded:!0,component:A.y}}}))},100),{type:w.AB.ADD_INVOICE_CLN,payload:B})),(0,d.K)(B=>(this.handleErrorWithoutAlert("SaveNewInvoice",w.m6.ADD_INVOICE,"Add Invoice Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.saveNewOfferCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SAVE_NEW_OFFER_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.CREATE_OFFER})),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewOffer",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.OFFERS_API,{amount:C.payload.amount,description:C.payload.description,vendor:C.payload.vendor}).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"SaveNewOffer",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{offer:B,newlyAdded:!0,component:S.k}}}))},100),{type:w.AB.ADD_OFFER_CLN,payload:B})),(0,d.K)(B=>(this.handleErrorWithoutAlert("SaveNewOffer",w.m6.CREATE_OFFER,"Create Offer Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.invoicesFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_INVOICES_CLN),(0,M.z)(C=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchInvoices",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.INVOICES_API+"?num_max_invoices="+(C.payload.num_max_invoices?C.payload.num_max_invoices:1e6)+"&index_offset="+(C.payload.index_offset?C.payload.index_offset:0)+"&reversed="+(!C.payload.reversed||C.payload.reversed)).pipe((0,b.U)(q=>(this.logger.info(q),this.store.dispatch((0,L.Ni)({payload:{action:"FetchInvoices",status:w.Bn.COMPLETED}})),{type:w.AB.SET_INVOICES_CLN,payload:q})),(0,d.K)(q=>(this.handleErrorWithoutAlert("FetchInvoices",w.m6.NO_SPINNER,"Fetching Invoices Failed.",q),(0,f.of)({type:w.pg.VOID})))))))),this.offersFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_OFFERS_CLN),(0,M.z)(C=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchOffers",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.OFFERS_API).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"FetchOffers",status:w.Bn.COMPLETED}})),{type:w.AB.SET_OFFERS_CLN,payload:B.offers?B.offers:[]})),(0,d.K)(B=>(this.handleErrorWithoutAlert("FetchOffers",w.m6.NO_SPINNER,"Fetching Offers Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.offersDisableCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DISABLE_OFFER_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.DISABLE_OFFER})),this.store.dispatch((0,L.Ni)({payload:{action:"DisableOffer",status:w.Bn.INITIATED}})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.OFFERS_API+"/"+C.payload.offer_id).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"DisableOffer",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.DISABLE_OFFER})),this.store.dispatch((0,D.jW)({payload:"Offer Disabled Successfully!"})),{type:w.AB.UPDATE_OFFER_CLN,payload:{offer:B}})),(0,d.K)(B=>(this.handleErrorWithoutAlert("DisableOffer",w.m6.DISABLE_OFFER,"Disabling Offer Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.offerBookmarksFetchCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_OFFER_BOOKMARKS_CLN),(0,M.z)(C=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchOfferBookmarks",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.OFFERS_API+"/offerbookmarks").pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"FetchOfferBookmarks",status:w.Bn.COMPLETED}})),{type:w.AB.SET_OFFER_BOOKMARKS_CLN,payload:B||[]})),(0,d.K)(B=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",w.m6.NO_SPINNER,"Fetching Offer Bookmarks Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.peidOffersDeleteCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.DELETE_OFFER_BOOKMARK_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,L.Ni)({payload:{action:"DeleteOfferBookmark",status:w.Bn.INITIATED}})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.OFFERS_API+"/offerbookmark/"+C.payload.bolt12).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"DeleteOfferBookmark",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,D.jW)({payload:"Offer Bookmark Deleted Successfully!"})),{type:w.AB.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:C.payload.bolt12}})),(0,d.K)(B=>(this.handleErrorWithAlert("DeleteOfferBookmark",w.m6.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+N.NZ.OFFERS_API+"/offerbookmark/"+C.payload.bolt12,B),(0,f.of)({type:w.pg.VOID})))))))),this.SetChannelTransactionCL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.SET_CHANNEL_TRANSACTION_CLN),(0,M.z)(C=>(this.store.dispatch((0,D.ac)({payload:w.m6.SEND_FUNDS})),this.store.dispatch((0,L.Ni)({payload:{action:"SetChannelTransaction",status:w.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.ON_CHAIN_API,C.payload).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.Ni)({payload:{action:"SetChannelTransaction",status:w.Bn.COMPLETED}})),this.store.dispatch((0,D.uO)({payload:w.m6.SEND_FUNDS})),this.store.dispatch((0,L.EG)()),this.store.dispatch((0,L.Ly)()),{type:w.AB.SET_CHANNEL_TRANSACTION_RES_CLN,payload:B})),(0,d.K)(B=>(this.handleErrorWithoutAlert("SetChannelTransaction",w.m6.SEND_FUNDS,"Sending Fund Failed.",B),(0,f.of)({type:w.pg.VOID})))))))),this.utxosFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(w.AB.FETCH_UTXOS_CLN),(0,M.z)(()=>(this.store.dispatch((0,L.Ni)({payload:{action:"FetchUTXOs",status:w.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.ON_CHAIN_API+"/utxos"))),(0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.Ni)({payload:{action:"FetchUTXOs",status:w.Bn.COMPLETED}})),{type:w.AB.SET_UTXOS_CLN,payload:C.outputs||[]})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchUTXOs",w.m6.NO_SPINNER,"Fetching UTXOs Failed.",C),(0,f.of)({type:w.pg.VOID}))))),this.store.select(k.yA).pipe((0,a.R)(this.unSubs[0])).subscribe(C=>{C.FetchInfo.status!==w.Bn.COMPLETED&&C.FetchInfo.status!==w.Bn.ERROR||C.FetchFees.status!==w.Bn.COMPLETED&&C.FetchFees.status!==w.Bn.ERROR||C.FetchChannels.status!==w.Bn.COMPLETED&&C.FetchChannels.status!==w.Bn.ERROR||C.FetchBalance.status!==w.Bn.COMPLETED&&C.FetchBalance.status!==w.Bn.ERROR||C.FetchLocalRemoteBalance.status!==w.Bn.COMPLETED&&C.FetchLocalRemoteBalance.status!==w.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,D.uO)({payload:w.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,a.R)(this.unSubs[1])).subscribe(C=>{if(this.logger.info("Received new message from the service: "+JSON.stringify(C)),C)switch(C.event){case w.nM.INVOICE:this.logger.info(C),C&&C.data&&C.data.label&&this.store.dispatch((0,L.aL)({payload:C.data}));break;case w.nM.SEND_PAYMENT:case w.nM.BLOCK_HEIGHT:this.logger.info(C);break;default:this.logger.info("Received Event from WS: "+JSON.stringify(C))}})}initializeRemainingData(i,r){this.sessionService.setItem("clUnlocked","true");const u={identity_pubkey:i.id,alias:i.alias,testnet:"testnet"===i.network.toLowerCase(),chains:i.chains,uris:i.uris,version:i.version,api_version:i.api_version,numberOfPendingChannels:i.num_pending_channels};this.store.dispatch((0,D.ac)({payload:w.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,D._V)({payload:u}));let c=this.location.path();c.includes("/lnd/")?c=null==c?void 0:c.replace("/lnd/","/cln/"):c.includes("/ecl/")&&(c=null==c?void 0:c.replace("/ecl/","/cln/")),(c.includes("/login")||c.includes("/error")||""===c||"HOME"===r||c.includes("?access-key="))&&(c="/cln/home"),this.router.navigate([c]),this.store.dispatch((0,L.WM)({payload:{num_max_invoices:1e6,index_offset:0,reversed:!0}})),this.store.dispatch((0,L.SN)()),this.store.dispatch((0,L.UR)()),this.store.dispatch((0,L.EG)()),this.store.dispatch((0,L.g3)()),this.store.dispatch((0,L.HJ)({payload:"perkw"})),this.store.dispatch((0,L.HJ)({payload:"perkb"})),this.store.dispatch((0,L.$W)()),this.store.dispatch((0,L.Ly)()),this.store.dispatch((0,L.cQ)())}handleErrorWithoutAlert(i,r,u,c){if(this.logger.error("ERROR IN: "+i+"\n"+JSON.stringify(c)),401===c.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.ts)()),this.store.dispatch((0,D.kS)()),this.store.dispatch((0,D.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,D.uO)({payload:r}));const _=this.commonService.extractErrorMessage(c,u);this.store.dispatch((0,L.Ni)({payload:{action:i,status:w.Bn.ERROR,statusCode:c.status.toString(),message:_}}))}}handleErrorWithAlert(i,r,u,c,_){if(this.logger.error(_),401===_.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.ts)()),this.store.dispatch((0,D.kS)()),this.store.dispatch((0,D.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,D.uO)({payload:r}));const E=this.commonService.extractErrorMessage(_);this.store.dispatch((0,D.qR)({payload:{data:{type:"ERROR",alertTitle:u,message:{code:_.status,message:E,URL:c},component:h.H}}})),this.store.dispatch((0,L.Ni)({payload:{action:i,status:w.Bn.ERROR,statusCode:_.status.toString(),message:E,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}}return me.\u0275fac=function(i){return new(i||me)(U.LFG(t.eX),U.LFG(Z.eN),U.LFG(Y.yh),U.LFG(ne.m),U.LFG($.v),U.LFG(de.mQ),U.LFG(te.F0),U.LFG(ie.d),U.LFG(oe.Ye))},me.\u0275prov=U.Yz7({token:me,factory:me.\u0275fac}),me})()},9828:(Ve,j,p)=>{"use strict";p.d(j,{Ao:()=>te,Bo:()=>Z,EQ:()=>X,Hz:()=>ie,JG:()=>h,OL:()=>$,PP:()=>d,Rn:()=>S,T4:()=>L,Wi:()=>N,Wj:()=>U,Y_:()=>oe,ZW:()=>k,ey:()=>M,gc:()=>D,hx:()=>w,jK:()=>de,lK:()=>ne,lw:()=>f,xQ:()=>Y,yA:()=>b,zm:()=>A});var t=p(5620);const e=(0,t.ZF)("cln"),f=(0,t.P1)(e,y=>y.nodeSettings),M=(0,t.P1)(e,y=>y.information),b=((0,t.P1)(e,y=>y.apisCallStatus.FetchInfo),(0,t.P1)(e,y=>y.apisCallStatus)),d=(0,t.P1)(e,y=>({payments:y.payments,apiCallStatus:y.apisCallStatus.FetchPayments})),N=(0,t.P1)(e,y=>({peers:y.peers,apiCallStatus:y.apisCallStatus.FetchPeers})),h=(0,t.P1)(e,y=>({fees:y.fees,apiCallStatus:y.apisCallStatus.FetchFees})),A=(0,t.P1)(e,y=>({feeRatesPerKB:y.feeRatesPerKB,apiCallStatus:y.apisCallStatus.FetchFeeRatesperkb})),w=(0,t.P1)(e,y=>({feeRatesPerKW:y.feeRatesPerKW,apiCallStatus:y.apisCallStatus.FetchFeeRatesperkw})),D=(0,t.P1)(e,y=>({listInvoices:y.invoices,apiCallStatus:y.apisCallStatus.FetchInvoices})),L=(0,t.P1)(e,y=>({utxos:y.utxos,apiCallStatus:y.apisCallStatus.FetchUTXOs})),k=(0,t.P1)(e,y=>({activeChannels:y.activeChannels,pendingChannels:y.pendingChannels,inactiveChannels:y.inactiveChannels,apiCallStatus:y.apisCallStatus.FetchChannels})),S=(0,t.P1)(e,y=>({balance:y.balance,apiCallStatus:y.apisCallStatus.FetchBalance})),U=(0,t.P1)(e,y=>({localRemoteBalance:y.localRemoteBalance,apiCallStatus:y.apisCallStatus.FetchLocalRemoteBalance})),Z=(0,t.P1)(e,y=>({forwardingHistory:y.forwardingHistory,apiCallStatus:y.apisCallStatus.FetchForwardingHistoryS})),Y=(0,t.P1)(e,y=>({failedForwardingHistory:y.failedForwardingHistory,apiCallStatus:y.apisCallStatus.FetchForwardingHistoryF})),ne=(0,t.P1)(e,y=>({localFailedForwardingHistory:y.localFailedForwardingHistory,apiCallStatus:y.apisCallStatus.FetchForwardingHistoryL})),$=(0,t.P1)(e,y=>({information:y.information,nodeSettings:y.nodeSettings,balance:y.balance})),de=(0,t.P1)(e,y=>({information:y.information,balance:y.balance,numPeers:y.peers.length})),te=(0,t.P1)(e,y=>({information:y.information,balance:y.balance})),ie=(0,t.P1)(e,y=>({information:y.information,nodeSettings:y.nodeSettings,apisCallStatus:[y.apisCallStatus.FetchInfo,y.apisCallStatus.FetchForwardingHistoryS]})),oe=(0,t.P1)(e,y=>({offers:y.offers,apiCallStatus:y.apisCallStatus.FetchOffers})),X=(0,t.P1)(e,y=>({offersBookmarks:y.offersBookmarks,apiCallStatus:y.apisCallStatus.FetchOfferBookmarks}))},5566:(Ve,j,p)=>{"use strict";p.d(j,{y:()=>dt});var t=p(8966),e=p(801),f=p(7579),M=p(2722),a=p(7731),b=p(9828),d=p(5e3),N=p(5043),h=p(62),A=p(7261),w=p(5620),D=p(7093),L=p(9808),k=p(3322),S=p(159),U=p(9224),Z=p(9444),Y=p(7238),ne=p(7423),$=p(4834),de=p(773),te=p(3390),ie=p(6895);function oe(Ie,Ae){if(1&Ie&&d._UZ(0,"qr-code",33),2&Ie){const le=d.oxw();d.Q6J("value",(null==le.invoice?null:le.invoice.bolt11)||(null==le.invoice?null:le.invoice.bolt12))("size",le.qrWidth)("errorCorrectionLevel","L")}}function X(Ie,Ae){1&Ie&&(d.TgZ(0,"span",34),d._uU(1,"N/A"),d.qZA())}const me=function(Ie){return{"mr-0":Ie}};function y(Ie,Ae){if(1&Ie&&d._UZ(0,"span",35),2&Ie){const le=d.oxw();d.Q6J("ngClass",d.VKq(1,me,le.screenSize===le.screenSizeEnum.XS))}}function i(Ie,Ae){if(1&Ie&&d._UZ(0,"span",36),2&Ie){const le=d.oxw();d.Q6J("ngClass",d.VKq(1,me,le.screenSize===le.screenSizeEnum.XS))}}function r(Ie,Ae){if(1&Ie&&d._UZ(0,"span",37),2&Ie){const le=d.oxw();d.Q6J("ngClass",d.VKq(1,me,le.screenSize===le.screenSizeEnum.XS))}}function u(Ie,Ae){if(1&Ie&&d._UZ(0,"qr-code",33),2&Ie){const le=d.oxw();d.Q6J("value",(null==le.invoice?null:le.invoice.bolt11)||(null==le.invoice?null:le.invoice.bolt12))("size",le.qrWidth)("errorCorrectionLevel","L")}}function c(Ie,Ae){1&Ie&&(d.TgZ(0,"span",38),d._uU(1,"QR Code Not Applicable"),d.qZA())}function _(Ie,Ae){1&Ie&&d._UZ(0,"mat-divider",39),2&Ie&&d.Q6J("inset",!0)}function E(Ie,Ae){if(1&Ie&&(d.TgZ(0,"div",19)(1,"div",40),d._UZ(2,"fa-icon",41),d.TgZ(3,"span"),d._uU(4),d.qZA()()()),2&Ie){const le=d.oxw();d.xp6(2),d.Q6J("icon",le.faExclamationTriangle),d.xp6(2),d.Oqu(null==le.invoice?null:le.invoice.warning_capacity)}}function I(Ie,Ae){1&Ie&&(d.ynx(0),d._uU(1," (zero amount) "),d.BQk())}function v(Ie,Ae){1&Ie&&d._UZ(0,"span",47)}const n=function(){return[]};function C(Ie,Ae){if(1&Ie&&(d.TgZ(0,"div",43)(1,"div",44)(2,"span",45),d._uU(3),d.ALo(4,"number"),d.qZA(),d.YNc(5,v,1,0,"span",46),d.qZA()()),2&Ie){const le=d.oxw(2);d.xp6(3),d.hij("",d.lcZ(4,2,(null==le.invoice?null:le.invoice.msatoshi_received)/1e3)," Sats"),d.xp6(2),d.Q6J("ngForOf",d.DdM(4,n).constructor(35))}}function B(Ie,Ae){if(1&Ie&&(d.TgZ(0,"div"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&Ie){const le=d.oxw(2);d.xp6(1),d.hij("",d.lcZ(2,1,(null==le.invoice?null:le.invoice.msatoshi_received)/1e3)," Sats")}}function P(Ie,Ae){if(1&Ie&&(d.ynx(0),d.YNc(1,C,6,5,"div",42),d.YNc(2,B,3,3,"div",23),d.BQk()),2&Ie){const le=d.oxw();d.xp6(1),d.Q6J("ngIf",le.flgInvoicePaid),d.xp6(1),d.Q6J("ngIf",!le.flgInvoicePaid)}}function H(Ie,Ae){1&Ie&&(d.TgZ(0,"span"),d._uU(1,"-"),d.qZA())}function q(Ie,Ae){1&Ie&&d._UZ(0,"mat-spinner",49),2&Ie&&d.Q6J("diameter",20)}function he(Ie,Ae){if(1&Ie&&(d.ynx(0),d.YNc(1,H,2,0,"span",23),d.YNc(2,q,1,1,"mat-spinner",48),d.BQk()),2&Ie){const le=d.oxw();d.xp6(1),d.Q6J("ngIf","unpaid"!==(null==le.invoice?null:le.invoice.status)||!le.flgVersionCompatible),d.xp6(1),d.Q6J("ngIf","unpaid"===(null==le.invoice?null:le.invoice.status)&&le.flgVersionCompatible)}}function _e(Ie,Ae){if(1&Ie&&(d.TgZ(0,"div"),d._UZ(1,"mat-divider",25),d.TgZ(2,"div",19)(3,"div",26)(4,"h4",21),d._uU(5,"Payment Hash"),d.qZA(),d.TgZ(6,"span",24),d._uU(7),d.qZA()()(),d._UZ(8,"mat-divider",25),d.TgZ(9,"div",19)(10,"div",26)(11,"h4",21),d._uU(12,"Label"),d.qZA(),d.TgZ(13,"span",24),d._uU(14),d.qZA()()(),d._UZ(15,"mat-divider",25),d.qZA()),2&Ie){const le=d.oxw();d.xp6(7),d.Oqu(null==le.invoice?null:le.invoice.payment_hash),d.xp6(7),d.Oqu(null==le.invoice?null:le.invoice.label)}}function Ne(Ie,Ae){1&Ie&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function we(Ie,Ae){1&Ie&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function Q(Ie,Ae){if(1&Ie){const le=d.EpF();d.TgZ(0,"button",50),d.NdJ("copied",function(xe){return d.CHM(le),d.oxw().onCopyPayment(xe)}),d._uU(1,"Copy Invoice"),d.qZA()}if(2&Ie){const le=d.oxw();d.Q6J("payload",(null==le.invoice?null:le.invoice.bolt11)||(null==le.invoice?null:le.invoice.bolt12))}}function Ue(Ie,Ae){if(1&Ie){const le=d.EpF();d.TgZ(0,"button",51),d.NdJ("click",function(){return d.CHM(le),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const ve=function(Ie){return{"display-none":Ie}},V=function(Ie){return{"xs-scroll-y":Ie}},De=function(Ie,Ae){return{"mt-2":Ie,"mt-1":Ae}};let dt=(()=>{class Ie{constructor(le,Te,xe,W,ee,ue){this.dialogRef=le,this.data=Te,this.logger=xe,this.commonService=W,this.snackBar=ee,this.store=ue,this.faReceipt=e.dLy,this.faExclamationTriangle=e.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(b.ey).pipe((0,M.R)(this.unSubs[0])).subscribe(le=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(le.api_version,"0.6.0")}),this.store.select(b.gc).pipe((0,M.R)(this.unSubs[1])).subscribe(le=>{const Te=this.invoice.status,xe=le.listInvoices.invoices||[];this.invoice=null==xe?void 0:xe.find(W=>W.payment_hash===this.invoice.payment_hash),Te!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(le)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(le){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+le)}ngOnDestroy(){this.unSubs.forEach(le=>{le.next(null),le.complete()})}}return Ie.\u0275fac=function(le){return new(le||Ie)(d.Y36(t.so),d.Y36(t.WI),d.Y36(N.mQ),d.Y36(h.v),d.Y36(A.ux),d.Y36(w.yh))},Ie.\u0275cmp=d.Xpm({type:Ie,selectors:[["rtl-cln-invoice-information"]],decls:72,vars:49,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","dot green ml-1","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow ml-1","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red ml-1","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green","ml-1",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow","ml-1",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red","ml-1",3,"ngClass"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(le,Te){if(1&le&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,oe,1,3,"qr-code",2),d.YNc(3,X,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.YNc(10,y,1,3,"span",9),d.YNc(11,i,1,3,"span",10),d.YNc(12,r,1,3,"span",11),d.qZA()(),d.TgZ(13,"button",12),d.NdJ("click",function(){return Te.onClose()}),d._uU(14,"X"),d.qZA()(),d.TgZ(15,"mat-card-content",13)(16,"div",14)(17,"div",15),d.YNc(18,u,1,3,"qr-code",2),d.YNc(19,c,2,0,"span",16),d.qZA(),d.YNc(20,_,1,1,"mat-divider",17),d.YNc(21,E,5,2,"div",18),d.TgZ(22,"div",19)(23,"div",20)(24,"h4",21),d._uU(25),d.qZA(),d.TgZ(26,"span",22),d._uU(27),d.ALo(28,"number"),d.YNc(29,I,2,0,"ng-container",23),d.qZA()(),d.TgZ(30,"div",20)(31,"h4",21),d._uU(32,"Amount Received"),d.qZA(),d.TgZ(33,"span",24),d.YNc(34,P,3,2,"ng-container",23),d.YNc(35,he,3,2,"ng-container",23),d.qZA()()(),d._UZ(36,"mat-divider",25),d.TgZ(37,"div",19)(38,"div",20)(39,"h4",21),d._uU(40,"Date Expiry"),d.qZA(),d.TgZ(41,"span",22),d._uU(42),d.ALo(43,"date"),d.qZA()(),d.TgZ(44,"div",20)(45,"h4",21),d._uU(46,"Date Settled"),d.qZA(),d.TgZ(47,"span",22),d._uU(48),d.ALo(49,"date"),d.qZA()()(),d._UZ(50,"mat-divider",25),d.TgZ(51,"div",19)(52,"div",26)(53,"h4",21),d._uU(54,"Description"),d.qZA(),d.TgZ(55,"span",22),d._uU(56),d.qZA()()(),d._UZ(57,"mat-divider",25),d.TgZ(58,"div",19)(59,"div",26)(60,"h4",21),d._uU(61),d.qZA(),d.TgZ(62,"span",24),d._uU(63),d.qZA()()(),d.YNc(64,_e,16,2,"div",23),d.TgZ(65,"div",27)(66,"button",28),d.NdJ("click",function(){return Te.onShowAdvanced()}),d.YNc(67,Ne,2,0,"p",29),d.YNc(68,we,2,0,"ng-template",null,30,d.W1O),d.qZA(),d.YNc(70,Q,2,1,"button",31),d.YNc(71,Ue,2,0,"button",32),d.qZA()()()()()),2&le){const xe=d.MAs(69);d.xp6(1),d.Q6J("fxLayoutAlign",null!=Te.invoice&&Te.invoice.bolt11&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||null!=Te.invoice&&Te.invoice.bolt12&&""!==(null==Te.invoice?null:Te.invoice.bolt12)?"center start":"center center")("ngClass",d.VKq(40,ve,Te.screenSize===Te.screenSizeEnum.XS||Te.screenSize===Te.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Te.invoice?null:Te.invoice.bolt11)&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)&&""!==(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.bolt11||null!=Te.invoice&&Te.invoice.bolt12)),d.xp6(4),d.Q6J("icon",Te.faReceipt),d.xp6(2),d.hij(" ",Te.screenSize===Te.screenSizeEnum.XS?Te.newlyAdded?"Created":"Invoice":Te.newlyAdded?"Invoice Created":"Invoice Information"," "),d.xp6(1),d.Q6J("ngIf","paid"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(1),d.Q6J("ngIf","unpaid"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(1),d.Q6J("ngIf","expired"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(3),d.Q6J("ngClass",d.VKq(42,V,Te.screenSize===Te.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=Te.invoice&&Te.invoice.bolt11&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||null!=Te.invoice&&Te.invoice.bolt12&&""!==(null==Te.invoice?null:Te.invoice.bolt12)?"center start":"center center")("ngClass",d.VKq(44,ve,Te.screenSize!==Te.screenSizeEnum.XS&&Te.screenSize!==Te.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Te.invoice?null:Te.invoice.bolt11)&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)&&""!==(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.bolt11||null!=Te.invoice&&Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",Te.screenSize===Te.screenSizeEnum.XS||Te.screenSize===Te.screenSizeEnum.SM),d.xp6(1),d.Q6J("ngIf",null==Te.invoice?null:Te.invoice.warning_capacity),d.xp6(4),d.Oqu(Te.screenSize===Te.screenSizeEnum.XS?"Amount":"Amount Requested"),d.xp6(2),d.hij(" ",d.lcZ(28,32,(null==Te.invoice?null:Te.invoice.msatoshi)/1e3||0)," Sats"),d.xp6(2),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.msatoshi)||"0"===(null==Te.invoice?null:Te.invoice.msatoshi)),d.xp6(5),d.Q6J("ngIf","paid"===(null==Te.invoice?null:Te.invoice.status)),d.xp6(1),d.Q6J("ngIf","paid"!==(null==Te.invoice?null:Te.invoice.status)),d.xp6(7),d.Oqu(d.xi3(43,34,1e3*(null==Te.invoice?null:Te.invoice.expires_at),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(d.xi3(49,37,1e3*(null==Te.invoice?null:Te.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),d.xp6(8),d.Oqu((null==Te.invoice?null:Te.invoice.description)||"-"),d.xp6(5),d.hij("",null!=Te.invoice&&Te.invoice.bolt12?"Bolt12":null!=Te.invoice&&Te.invoice.bolt11&&!Te.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),d.xp6(2),d.Oqu((null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",Te.showAdvanced),d.xp6(1),d.Q6J("ngClass",d.WLB(46,De,!Te.showAdvanced,Te.showAdvanced)),d.xp6(2),d.Q6J("ngIf",!Te.showAdvanced)("ngIfElse",xe),d.xp6(3),d.Q6J("ngIf",(null==Te.invoice?null:Te.invoice.bolt11)&&""!==(null==Te.invoice?null:Te.invoice.bolt11)||(null==Te.invoice?null:Te.invoice.bolt12)&&""!==(null==Te.invoice?null:Te.invoice.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Te.invoice&&Te.invoice.bolt11||null!=Te.invoice&&Te.invoice.bolt12))}},directives:[D.xw,D.Wh,D.yH,L.mk,k.oO,L.O5,S.uU,U.dk,Z.BN,Y.gM,ne.lW,U.dn,$.d,L.sg,de.Ou,te.h,ie.y],pipes:[L.JJ,L.uU],styles:[""]}),Ie})()},1462:(Ve,j,p)=>{"use strict";p.d(j,{k:()=>H});var t=p(8966),e=p(801),f=p(7579),M=p(2722),a=p(7731),b=p(9828),d=p(5e3),N=p(5043),h=p(62),A=p(7261),w=p(5620),D=p(8104),L=p(7093),k=p(9808),S=p(3322),U=p(159),Z=p(9224),Y=p(9444),ne=p(7423),$=p(4834),de=p(3390),te=p(6895);function ie(q,he){if(1&q&&d._UZ(0,"qr-code",28),2&q){const _e=d.oxw();d.Q6J("value",null==_e.offer?null:_e.offer.bolt12)("size",_e.qrWidth)("errorCorrectionLevel","L")}}function oe(q,he){1&q&&(d.TgZ(0,"span",29),d._uU(1,"N/A"),d.qZA())}function X(q,he){if(1&q&&d._UZ(0,"qr-code",28),2&q){const _e=d.oxw();d.Q6J("value",null==_e.offer?null:_e.offer.bolt12)("size",_e.qrWidth)("errorCorrectionLevel","L")}}function me(q,he){1&q&&(d.TgZ(0,"span",30),d._uU(1,"QR Code Not Applicable"),d.qZA())}function y(q,he){1&q&&d._UZ(0,"mat-divider",31),2&q&&d.Q6J("inset",!0)}function i(q,he){1&q&&d._UZ(0,"mat-divider",19)}function r(q,he){if(1&q&&(d.TgZ(0,"div",15)(1,"div",16)(2,"h4",17),d._uU(3,"Used"),d.qZA(),d.TgZ(4,"span",18),d._uU(5),d.qZA()(),d.TgZ(6,"div",16)(7,"h4",17),d._uU(8,"Single Use"),d.qZA(),d.TgZ(9,"span",18),d._uU(10),d.qZA()()()),2&q){const _e=d.oxw(2);d.xp6(5),d.hij(" ",null!=_e.offer&&_e.offer.used?null!=_e.offer&&_e.offer.used?"Yes":"No":"N/K"," "),d.xp6(5),d.hij(" ",null!=_e.offer&&_e.offer.single_use?null!=_e.offer&&_e.offer.single_use?"Yes":"No":"N/K"," ")}}function u(q,he){1&q&&d._UZ(0,"mat-divider",19)}function c(q,he){if(1&q&&(d.TgZ(0,"div",15)(1,"div",20)(2,"h4",17),d._uU(3,"Vendor"),d.qZA(),d.TgZ(4,"span",34),d._uU(5),d.qZA()()()),2&q){const _e=d.oxw(2);d.xp6(5),d.Oqu((null==_e.offerDecoded?null:_e.offerDecoded.vendor)||(null==_e.offerDecoded?null:_e.offerDecoded.issuer))}}function _(q,he){if(1&q&&(d.TgZ(0,"div"),d.YNc(1,i,1,0,"mat-divider",32),d.YNc(2,r,11,2,"div",33),d.YNc(3,u,1,0,"mat-divider",32),d.YNc(4,c,6,1,"div",33),d._UZ(5,"mat-divider",19),d.TgZ(6,"div",15)(7,"div",20)(8,"h4",17),d._uU(9,"Offer ID"),d.qZA(),d.TgZ(10,"span",18),d._uU(11),d.qZA()()(),d._UZ(12,"mat-divider",19),d.qZA()),2&q){const _e=d.oxw();d.xp6(1),d.Q6J("ngIf",(null==_e.offer?null:_e.offer.used)||(null==_e.offer?null:_e.offer.single_use)),d.xp6(1),d.Q6J("ngIf",(null==_e.offer?null:_e.offer.used)||(null==_e.offer?null:_e.offer.single_use)),d.xp6(1),d.Q6J("ngIf",(null==_e.offerDecoded?null:_e.offerDecoded.vendor)||(null==_e.offerDecoded?null:_e.offerDecoded.issuer)),d.xp6(1),d.Q6J("ngIf",(null==_e.offerDecoded?null:_e.offerDecoded.vendor)||(null==_e.offerDecoded?null:_e.offerDecoded.issuer)),d.xp6(7),d.Oqu(_e.offerDecoded.offer_id)}}function E(q,he){1&q&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function I(q,he){1&q&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function v(q,he){if(1&q){const _e=d.EpF();d.TgZ(0,"button",35),d.NdJ("copied",function(we){return d.CHM(_e),d.oxw().onCopyOffer(we)}),d._uU(1,"Copy Offer"),d.qZA()}if(2&q){const _e=d.oxw();d.Q6J("payload",null==_e.offer?null:_e.offer.bolt12)}}function n(q,he){if(1&q){const _e=d.EpF();d.TgZ(0,"button",36),d.NdJ("click",function(){return d.CHM(_e),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const C=function(q){return{"display-none":q}},B=function(q){return{"xs-scroll-y":q}},P=function(q,he){return{"mt-2":q,"mt-1":he}};let H=(()=>{class q{constructor(_e,Ne,we,Q,Ue,ve,V){this.dialogRef=_e,this.data=Ne,this.logger=we,this.commonService=Q,this.snackBar=Ue,this.store=ve,this.dataService=V,this.faReceipt=e.dLy,this.faExclamationTriangle=e.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgOfferPaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(b.ey).pipe((0,M.R)(this.unSubs[0])).subscribe(_e=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(_e.api_version,"0.6.0")}),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,M.R)(this.unSubs[1])).subscribe(_e=>{var Ne;this.offerDecoded=_e,this.offerDecoded.offer_id&&!this.offerDecoded.amount_msat?(this.offerDecoded.amount_msat="0msat",this.offerDecoded.amount=0):this.offerDecoded.amount=this.offerDecoded.amount?+this.offerDecoded.amount:this.offerDecoded.amount_msat?+(null===(Ne=this.offerDecoded.amount_msat)||void 0===Ne?void 0:Ne.slice(0,-4)):null})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(_e){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+_e)}ngOnDestroy(){this.unSubs.forEach(_e=>{_e.next(null),_e.complete()})}}return q.\u0275fac=function(_e){return new(_e||q)(d.Y36(t.so),d.Y36(t.WI),d.Y36(N.mQ),d.Y36(h.v),d.Y36(A.ux),d.Y36(w.yh),d.Y36(D.D))},q.\u0275cmp=d.Xpm({type:q,selectors:[["rtl-cln-offer-information"]],decls:52,vars:33,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(_e,Ne){if(1&_e&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,ie,1,3,"qr-code",2),d.YNc(3,oe,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.qZA()(),d.TgZ(10,"button",9),d.NdJ("click",function(){return Ne.onClose()}),d._uU(11,"X"),d.qZA()(),d.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),d.YNc(15,X,1,3,"qr-code",2),d.YNc(16,me,2,0,"span",13),d.qZA(),d.YNc(17,y,1,1,"mat-divider",14),d.TgZ(18,"div",15)(19,"div",16)(20,"h4",17),d._uU(21,"Amount Requested (Sats)"),d.qZA(),d.TgZ(22,"span",18),d._uU(23),d.ALo(24,"number"),d.qZA()(),d.TgZ(25,"div",16)(26,"h4",17),d._uU(27,"Active"),d.qZA(),d.TgZ(28,"span",18),d._uU(29),d.qZA()()(),d._UZ(30,"mat-divider",19),d.TgZ(31,"div",15)(32,"div",20)(33,"h4",17),d._uU(34,"Description"),d.qZA(),d.TgZ(35,"span",18),d._uU(36),d.qZA()()(),d._UZ(37,"mat-divider",19),d.TgZ(38,"div",15)(39,"div",20)(40,"h4",17),d._uU(41,"Offer Request"),d.qZA(),d.TgZ(42,"span",18),d._uU(43),d.qZA()()(),d.YNc(44,_,13,5,"div",21),d.TgZ(45,"div",22)(46,"button",23),d.NdJ("click",function(){return Ne.onShowAdvanced()}),d.YNc(47,E,2,0,"p",24),d.YNc(48,I,2,0,"ng-template",null,25,d.W1O),d.qZA(),d.YNc(50,v,2,1,"button",26),d.YNc(51,n,2,0,"button",27),d.qZA()()()()()),2&_e){const we=d.MAs(49);d.xp6(1),d.Q6J("fxLayoutAlign",null!=Ne.offer&&Ne.offer.bolt12&&""!==(null==Ne.offer?null:Ne.offer.bolt12)?"center start":"center center")("ngClass",d.VKq(24,C,Ne.screenSize===Ne.screenSizeEnum.XS||Ne.screenSize===Ne.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Ne.offer?null:Ne.offer.bolt12)&&""!==(null==Ne.offer?null:Ne.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Ne.offer&&Ne.offer.bolt12)||""===(null==Ne.offer?null:Ne.offer.bolt12)),d.xp6(4),d.Q6J("icon",Ne.faReceipt),d.xp6(2),d.Oqu(Ne.screenSize===Ne.screenSizeEnum.XS?Ne.newlyAdded?"Created":"Offer":Ne.newlyAdded?"Offer Created":"Offer Information"),d.xp6(3),d.Q6J("ngClass",d.VKq(26,B,Ne.screenSize===Ne.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=Ne.offer&&Ne.offer.bolt12&&""!==(null==Ne.offer?null:Ne.offer.bolt12)?"center start":"center center")("ngClass",d.VKq(28,C,Ne.screenSize!==Ne.screenSizeEnum.XS&&Ne.screenSize!==Ne.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==Ne.offer?null:Ne.offer.bolt12)&&""!==(null==Ne.offer?null:Ne.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Ne.offer&&Ne.offer.bolt12)||""===(null==Ne.offer?null:Ne.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",Ne.screenSize===Ne.screenSizeEnum.XS||Ne.screenSize===Ne.screenSizeEnum.SM),d.xp6(6),d.hij(" ",null!=Ne.offerDecoded&&Ne.offerDecoded.amount_msat&&0!==(null==Ne.offerDecoded?null:Ne.offerDecoded.amount)?d.lcZ(24,22,(null==Ne.offerDecoded?null:Ne.offerDecoded.amount)/1e3):"Open Offer"," "),d.xp6(6),d.hij(" ",null!=Ne.offer&&Ne.offer.active?null!=Ne.offer&&Ne.offer.active?"Active":"Inactive":"N/K"," "),d.xp6(7),d.hij(" ",null==Ne.offerDecoded?null:Ne.offerDecoded.description," "),d.xp6(7),d.Oqu(null==Ne.offer?null:Ne.offer.bolt12),d.xp6(1),d.Q6J("ngIf",Ne.showAdvanced),d.xp6(1),d.Q6J("ngClass",d.WLB(30,P,!Ne.showAdvanced,Ne.showAdvanced)),d.xp6(2),d.Q6J("ngIf",!Ne.showAdvanced)("ngIfElse",we),d.xp6(3),d.Q6J("ngIf",(null==Ne.offer?null:Ne.offer.bolt12)&&""!==(null==Ne.offer?null:Ne.offer.bolt12)),d.xp6(1),d.Q6J("ngIf",!(null!=Ne.offer&&Ne.offer.bolt12)||""===(null==Ne.offer?null:Ne.offer.bolt12))}},directives:[L.xw,L.Wh,L.yH,k.mk,S.oO,k.O5,U.uU,Z.dk,Y.BN,ne.lW,Z.dn,$.d,de.h,te.y],pipes:[k.JJ],styles:[""]}),q})()},2994:(Ve,j,p)=>{"use strict";p.d(j,{$W:()=>Y,BL:()=>r,Bw:()=>S,CX:()=>d,DJ:()=>V,EK:()=>oe,El:()=>$,Fd:()=>M,GD:()=>ie,HG:()=>Z,HI:()=>_,Iy:()=>P,Lf:()=>B,Nr:()=>he,OG:()=>u,On:()=>U,QZ:()=>f,RX:()=>h,SN:()=>N,Sf:()=>Q,TM:()=>n,TW:()=>D,UR:()=>A,WM:()=>q,WO:()=>E,YP:()=>Ne,YX:()=>y,Z$:()=>_e,Z8:()=>ne,Zr:()=>a,_E:()=>X,aL:()=>we,cQ:()=>c,eN:()=>w,i:()=>L,iL:()=>k,iz:()=>b,kL:()=>I,mC:()=>C,n7:()=>Ue,oV:()=>v,pW:()=>i,ti:()=>De});var t=p(5620),e=p(7731);const f=(0,t.PH)(e.lr.UPDATE_API_CALL_STATUS_ECL,(0,t.Ky)()),M=(0,t.PH)(e.lr.RESET_ECL_STORE,(0,t.Ky)()),a=(0,t.PH)(e.lr.SET_CHILD_NODE_SETTINGS_ECL,(0,t.Ky)()),b=(0,t.PH)(e.lr.FETCH_INFO_ECL,(0,t.Ky)()),d=(0,t.PH)(e.lr.SET_INFO_ECL,(0,t.Ky)()),N=(0,t.PH)(e.lr.FETCH_FEES_ECL),h=(0,t.PH)(e.lr.SET_FEES_ECL,(0,t.Ky)()),A=(0,t.PH)(e.lr.FETCH_CHANNELS_ECL,(0,t.Ky)()),w=(0,t.PH)(e.lr.SET_ACTIVE_CHANNELS_ECL,(0,t.Ky)()),D=(0,t.PH)(e.lr.SET_PENDING_CHANNELS_ECL,(0,t.Ky)()),L=(0,t.PH)(e.lr.SET_INACTIVE_CHANNELS_ECL,(0,t.Ky)()),k=(0,t.PH)(e.lr.FETCH_ONCHAIN_BALANCE_ECL),S=(0,t.PH)(e.lr.SET_ONCHAIN_BALANCE_ECL,(0,t.Ky)()),U=(0,t.PH)(e.lr.SET_LIGHTNING_BALANCE_ECL,(0,t.Ky)()),Z=(0,t.PH)(e.lr.SET_CHANNELS_STATUS_ECL,(0,t.Ky)()),Y=(0,t.PH)(e.lr.FETCH_PEERS_ECL),ne=(0,t.PH)(e.lr.SET_PEERS_ECL,(0,t.Ky)()),$=(0,t.PH)(e.lr.SAVE_NEW_PEER_ECL,(0,t.Ky)()),ie=((0,t.PH)(e.lr.NEWLY_ADDED_PEER_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.ADD_PEER_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.DETACH_PEER_ECL,(0,t.Ky)())),oe=(0,t.PH)(e.lr.REMOVE_PEER_ECL,(0,t.Ky)()),X=(0,t.PH)(e.lr.GET_NEW_ADDRESS_ECL),y=((0,t.PH)(e.lr.SET_NEW_ADDRESS_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.SAVE_NEW_CHANNEL_ECL,(0,t.Ky)())),i=(0,t.PH)(e.lr.UPDATE_CHANNEL_ECL,(0,t.Ky)()),r=(0,t.PH)(e.lr.CLOSE_CHANNEL_ECL,(0,t.Ky)()),u=(0,t.PH)(e.lr.REMOVE_CHANNEL_ECL,(0,t.Ky)()),c=(0,t.PH)(e.lr.FETCH_PAYMENTS_ECL),_=(0,t.PH)(e.lr.SET_PAYMENTS_ECL,(0,t.Ky)()),E=(0,t.PH)(e.lr.GET_QUERY_ROUTES_ECL,(0,t.Ky)()),I=(0,t.PH)(e.lr.SET_QUERY_ROUTES_ECL,(0,t.Ky)()),v=(0,t.PH)(e.lr.SEND_PAYMENT_ECL,(0,t.Ky)()),n=(0,t.PH)(e.lr.SEND_PAYMENT_STATUS_ECL,(0,t.Ky)()),C=(0,t.PH)(e.lr.FETCH_TRANSACTIONS_ECL),B=(0,t.PH)(e.lr.SET_TRANSACTIONS_ECL,(0,t.Ky)()),P=(0,t.PH)(e.lr.SEND_ONCHAIN_FUNDS_ECL,(0,t.Ky)()),q=((0,t.PH)(e.lr.SEND_ONCHAIN_FUNDS_RES_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.FETCH_INVOICES_ECL)),he=(0,t.PH)(e.lr.SET_INVOICES_ECL,(0,t.Ky)()),_e=(0,t.PH)(e.lr.CREATE_INVOICE_ECL,(0,t.Ky)()),Ne=(0,t.PH)(e.lr.ADD_INVOICE_ECL,(0,t.Ky)()),we=(0,t.PH)(e.lr.UPDATE_INVOICE_ECL,(0,t.Ky)()),Q=(0,t.PH)(e.lr.PEER_LOOKUP_ECL,(0,t.Ky)()),Ue=(0,t.PH)(e.lr.INVOICE_LOOKUP_ECL,(0,t.Ky)()),V=((0,t.PH)(e.lr.SET_LOOKUP_ECL,(0,t.Ky)()),(0,t.PH)(e.lr.UPDATE_CHANNEL_STATE_ECL,(0,t.Ky)())),De=(0,t.PH)(e.lr.UPDATE_RELAYED_PAYMENT_ECL,(0,t.Ky)())},3289:(Ve,j,p)=>{"use strict";p.d(j,{o:()=>oe});var t=p(6642),e=p(7579),f=p(9646),M=p(5577),a=p(2722),b=p(4004),d=p(262),N=p(2340),h=p(1786),A=p(7731),w=p(7861),D=p(7766),L=p(2994),k=p(2501),S=p(5e3),U=p(8138),Z=p(5620),Y=p(5986),ne=p(62),$=p(5043),de=p(1402),te=p(7998),ie=p(9808);let oe=(()=>{class X{constructor(y,i,r,u,c,_,E,I,v){this.actions=y,this.httpClient=i,this.store=r,this.sessionService=u,this.commonService=c,this.logger=_,this.router=E,this.wsService=I,this.location=v,this.CHILD_API_URL=N.T5+"/ecl",this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new e.x,new e.x,new e.x],this.infoFetchECL=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_INFO_ECL),(0,M.z)(n=>(this.flgInitialized=!1,this.store.dispatch((0,w.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,w.ac)({payload:A.m6.GET_NODE_INFO})),this.store.dispatch((0,L.QZ)({payload:{action:"FetchInfo",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.GETINFO_API).pipe((0,a.R)(this.actions.pipe((0,t.l4)(A.pg.SET_SELECTED_NODE))),(0,b.U)(C=>(this.logger.info(C),this.initializeRemainingData(C,n.payload.loadPage),this.store.dispatch((0,L.QZ)({payload:{action:"FetchInfo",status:A.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:A.m6.GET_NODE_INFO})),{type:A.lr.SET_INFO_ECL,payload:C||{}})),(0,d.K)(C=>{const B=this.commonService.extractErrorCode(C),P=503===B?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(C);return this.router.navigate(["/error"],{state:{errorCode:B,errorMessage:P}}),this.handleErrorWithoutAlert("FetchInfo",A.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:B,error:P}),(0,f.of)({type:A.pg.VOID})})))))),this.fetchFees=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_FEES_ECL),(0,M.z)(()=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchFees",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.FEES_API+"/fees").pipe((0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,L.QZ)({payload:{action:"FetchFees",status:A.Bn.COMPLETED}})),{type:A.lr.SET_FEES_ECL,payload:n||{}})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchFees",A.m6.NO_SPINNER,"Fetching Fees Failed.",n),(0,f.of)({type:A.pg.VOID})))))))),this.fetchPayments=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_PAYMENTS_ECL),(0,M.z)(()=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchPayments",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.FEES_API+"/payments").pipe((0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,L.QZ)({payload:{action:"FetchPayments",status:A.Bn.COMPLETED}})),{type:A.lr.SET_PAYMENTS_ECL,payload:n||{}})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchPayments",A.m6.NO_SPINNER,"Fetching Payments Failed.",n),(0,f.of)({type:A.pg.VOID})))))))),this.channelsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_CHANNELS_ECL),(0,M.z)(n=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchChannels",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.CHANNELS_API).pipe((0,b.U)(C=>(this.logger.info(C),this.rawChannelsList=C,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,L.QZ)({payload:{action:"FetchChannels",status:A.Bn.COMPLETED}})),n.payload&&n.payload.fetchPayments&&this.store.dispatch((0,L.cQ)()),{type:A.pg.VOID})),(0,d.K)(C=>(this.handleErrorWithoutAlert("FetchChannels",A.m6.NO_SPINNER,"Fetching Channels Failed.",C),(0,f.of)({type:A.pg.VOID})))))))),this.fetchOnchainBalance=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_ONCHAIN_BALANCE_ECL),(0,M.z)(()=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchOnchainBalance",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.ON_CHAIN_API+"/balance"))),(0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,L.QZ)({payload:{action:"FetchOnchainBalance",status:A.Bn.COMPLETED}})),{type:A.lr.SET_ONCHAIN_BALANCE_ECL,payload:n||{}})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchOnchainBalance",A.m6.NO_SPINNER,"Fetching Onchain Balances Failed.",n),(0,f.of)({type:A.pg.VOID}))))),this.peersFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_PEERS_ECL),(0,M.z)(()=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchPeers",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.PEERS_API).pipe((0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,L.QZ)({payload:{action:"FetchPeers",status:A.Bn.COMPLETED}})),{type:A.lr.SET_PEERS_ECL,payload:n||[]})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchPeers",A.m6.NO_SPINNER,"Fetching Peers Failed.",n),(0,f.of)({type:A.pg.VOID})))))))),this.getNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.GET_NEW_ADDRESS_ECL),(0,M.z)(()=>(this.store.dispatch((0,w.ac)({payload:A.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+N.NZ.ON_CHAIN_API).pipe((0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,w.uO)({payload:A.m6.GENERATE_NEW_ADDRESS})),{type:A.lr.SET_NEW_ADDRESS_ECL,payload:n})),(0,d.K)(n=>(this.handleErrorWithAlert("GetNewAddress",A.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+N.NZ.ON_CHAIN_API,n),(0,f.of)({type:A.pg.VOID})))))))),this.setNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SET_NEW_ADDRESS_ECL),(0,b.U)(n=>(this.logger.info(n.payload),n.payload))),{dispatch:!1}),this.saveNewPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SAVE_NEW_PEER_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.CONNECT_PEER})),this.store.dispatch((0,L.QZ)({payload:{action:"SaveNewPeer",status:A.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.PEERS_API+(n.payload.id.includes("@")?"?uri=":"?nodeId=")+n.payload.id,{}).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.QZ)({payload:{action:"SaveNewPeer",status:A.Bn.COMPLETED}})),C=C||[],this.store.dispatch((0,w.uO)({payload:A.m6.CONNECT_PEER})),this.store.dispatch((0,L.Z8)({payload:C})),{type:A.lr.NEWLY_ADDED_PEER_ECL,payload:{peer:C.find(B=>B.nodeId===(n.payload.id.includes("@")?n.payload.id.substring(0,n.payload.id.indexOf("@")):n.payload.id))}})),(0,d.K)(C=>(this.handleErrorWithoutAlert("SaveNewPeer",A.m6.CONNECT_PEER,"Peer Connection Failed.",C),(0,f.of)({type:A.pg.VOID})))))))),this.detachPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.DETACH_PEER_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.PEERS_API+"/"+n.payload.nodeId).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,w.uO)({payload:A.m6.DISCONNECT_PEER})),this.store.dispatch((0,w.jW)({payload:"Disconnecting Peer!"})),{type:A.lr.REMOVE_PEER_ECL,payload:{nodeId:n.payload.nodeId}})),(0,d.K)(C=>(this.handleErrorWithAlert("DisconnectPeer",A.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+N.NZ.PEERS_API+"/"+n.payload.nodeId,C),(0,f.of)({type:A.pg.VOID})))))))),this.openNewChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SAVE_NEW_CHANNEL_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.OPEN_CHANNEL})),this.store.dispatch((0,L.QZ)({payload:{action:"SaveNewChannel",status:A.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.CHANNELS_API,n.payload.feeRate&&n.payload.feeRate>0?{nodeId:n.payload.nodeId,fundingSatoshis:n.payload.amount,channelFlags:+!n.payload.private,fundingFeerateSatByte:n.payload.feeRate}:{nodeId:n.payload.nodeId,fundingSatoshis:n.payload.amount,channelFlags:+!n.payload.private}).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,L.QZ)({payload:{action:"SaveNewChannel",status:A.Bn.COMPLETED}})),this.store.dispatch((0,L.$W)()),this.store.dispatch((0,L.iL)()),this.store.dispatch((0,w.uO)({payload:A.m6.OPEN_CHANNEL})),this.store.dispatch((0,w.jW)({payload:"Channel Added Successfully!"})),{type:A.lr.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,d.K)(B=>(this.handleErrorWithoutAlert("SaveNewChannel",A.m6.OPEN_CHANNEL,"Opening Channel Failed.",B),(0,f.of)({type:A.pg.VOID})))))))),this.updateChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.UPDATE_CHANNEL_ECL),(0,M.z)(n=>{this.store.dispatch((0,w.ac)({payload:A.m6.UPDATE_CHAN_POLICY}));let C="?feeBaseMsat="+n.payload.baseFeeMsat+"&feeProportionalMillionths="+n.payload.feeRate;return C=n.payload.nodeIds?C+"&nodeIds="+n.payload.nodeIds:n.payload.nodeId?C+"&nodeId="+n.payload.nodeId:n.payload.channelIds?C+"&channelIds="+n.payload.channelIds:C+"&channelId="+n.payload.channelId,this.httpClient.post(this.CHILD_API_URL+N.NZ.CHANNELS_API+"/updateRelayFee"+C,{}).pipe((0,b.U)(B=>(this.logger.info(B),this.store.dispatch((0,w.uO)({payload:A.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,w.jW)(n.payload.nodeIds||n.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:A.lr.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,d.K)(B=>(this.handleErrorWithAlert("UpdateChannels",A.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+N.NZ.CHANNELS_API,B),(0,f.of)({type:A.pg.VOID}))))}))),this.closeChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.CLOSE_CHANNEL_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:n.payload.force?A.m6.FORCE_CLOSE_CHANNEL:A.m6.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+N.NZ.CHANNELS_API+"?channelId="+n.payload.channelId+"&force="+n.payload.force).pipe((0,b.U)(C=>(this.logger.info(C),setTimeout(()=>{this.store.dispatch((0,w.uO)({payload:n.payload.force?A.m6.FORCE_CLOSE_CHANNEL:A.m6.CLOSE_CHANNEL})),this.store.dispatch((0,L.UR)({payload:{fetchPayments:!1}})),this.store.dispatch((0,w.jW)({payload:n.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:A.pg.VOID})),(0,d.K)(C=>(this.handleErrorWithAlert("CloseChannel",n.payload.force?A.m6.FORCE_CLOSE_CHANNEL:A.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+N.NZ.CHANNELS_API,C),(0,f.of)({type:A.pg.VOID})))))))),this.queryRoutesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.GET_QUERY_ROUTES_ECL),(0,M.z)(n=>this.httpClient.get(this.CHILD_API_URL+N.NZ.PAYMENTS_API+"/route?nodeId="+n.payload.nodeId+"&amountMsat="+n.payload.amount).pipe((0,b.U)(C=>(this.logger.info(C),{type:A.lr.SET_QUERY_ROUTES_ECL,payload:C})),(0,d.K)(C=>(this.store.dispatch((0,L.kL)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",A.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+N.NZ.PAYMENTS_API+"/route?nodeId="+n.payload.nodeId+"&amountMsat="+n.payload.amount,C),(0,f.of)({type:A.pg.VOID}))))))),this.setQueryRoutes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SET_QUERY_ROUTES_ECL),(0,b.U)(n=>n.payload)),{dispatch:!1}),this.sendPayment=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SEND_PAYMENT_ECL),(0,M.z)(n=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,w.ac)({payload:A.m6.SEND_PAYMENT})),this.store.dispatch((0,L.QZ)({payload:{action:"SendPayment",status:A.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.PAYMENTS_API,n.payload).pipe((0,b.U)(C=>(this.logger.info(C),this.latestPaymentRes=C,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:A.pg.VOID})),(0,d.K)(C=>(this.logger.error("Error: "+JSON.stringify(C)),n.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",A.m6.SEND_PAYMENT,"Send Payment Failed.",C):this.handleErrorWithAlert("SendPayment",A.m6.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+N.NZ.PAYMENTS_API,C),(0,f.of)({type:A.pg.VOID})))))))),this.transactionsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_TRANSACTIONS_ECL),(0,M.z)(()=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchTransactions",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.ON_CHAIN_API+"/transactions?count=1000&skip=0"))),(0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,L.QZ)({payload:{action:"FetchTransactions",status:A.Bn.COMPLETED}})),{type:A.lr.SET_TRANSACTIONS_ECL,payload:n||[]})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchTransactions",A.m6.NO_SPINNER,"Fetching Transactions Failed.",n),(0,f.of)({type:A.pg.VOID}))))),this.SendOnchainFunds=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SEND_ONCHAIN_FUNDS_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.SEND_FUNDS})),this.store.dispatch((0,L.QZ)({payload:{action:"SendOnchainFunds",status:A.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.ON_CHAIN_API,n.payload).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.QZ)({payload:{action:"SendOnchainFunds",status:A.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:A.m6.SEND_FUNDS})),this.store.dispatch((0,L.iL)()),{type:A.lr.SEND_ONCHAIN_FUNDS_RES_ECL,payload:C})),(0,d.K)(C=>(this.handleErrorWithoutAlert("SendOnchainFunds",A.m6.SEND_FUNDS,"Sending Fund Failed.",C),(0,f.of)({type:A.pg.VOID})))))))),this.createInvoice=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.CREATE_INVOICE_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.CREATE_INVOICE})),this.store.dispatch((0,L.QZ)({payload:{action:"CreateInvoice",status:A.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+N.NZ.INVOICES_API,n.payload).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.QZ)({payload:{action:"CreateInvoice",status:A.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:A.m6.CREATE_INVOICE})),C.timestamp=Math.round((new Date).getTime()/1e3),C.expiresAt=Math.round(C.timestamp+n.payload.expireIn),C.description=n.payload.description,C.status="unpaid",setTimeout(()=>{this.store.dispatch((0,w.qR)({payload:{data:{invoice:C,newlyAdded:!0,component:D.R}}}))},100),{type:A.lr.ADD_INVOICE_ECL,payload:C})),(0,d.K)(C=>(this.handleErrorWithoutAlert("CreateInvoice",A.m6.CREATE_INVOICE,"Create Invoice Failed.",C),(0,f.of)({type:A.pg.VOID})))))))),this.invoicesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.FETCH_INVOICES_ECL),(0,M.z)(()=>(this.store.dispatch((0,L.QZ)({payload:{action:"FetchInvoices",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.INVOICES_API).pipe((0,b.U)(n=>(this.logger.info(n),this.store.dispatch((0,L.QZ)({payload:{action:"FetchInvoices",status:A.Bn.COMPLETED}})),{type:A.lr.SET_INVOICES_ECL,payload:n})),(0,d.K)(n=>(this.handleErrorWithoutAlert("FetchInvoices",A.m6.NO_SPINNER,"Fetching Invoices Failed.",n),(0,f.of)({type:A.pg.VOID})))))))),this.peerLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.PEER_LOOKUP_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.SEARCHING_NODE})),this.store.dispatch((0,L.QZ)({payload:{action:"Lookup",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.NETWORK_API+"/nodes/"+n.payload).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.QZ)({payload:{action:"Lookup",status:A.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:A.m6.SEARCHING_NODE})),{type:A.lr.SET_LOOKUP_ECL,payload:C})),(0,d.K)(C=>(this.handleErrorWithAlert("Lookup",A.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+N.NZ.NETWORK_API+"/nodes/"+n.payload,C),(0,f.of)({type:A.pg.VOID})))))))),this.invoiceLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.INVOICE_LOOKUP_ECL),(0,M.z)(n=>(this.store.dispatch((0,w.ac)({payload:A.m6.SEARCHING_INVOICE})),this.store.dispatch((0,L.QZ)({payload:{action:"Lookup",status:A.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+N.NZ.INVOICES_API+"/"+n.payload).pipe((0,b.U)(C=>(this.logger.info(C),this.store.dispatch((0,L.QZ)({payload:{action:"Lookup",status:A.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:A.m6.SEARCHING_INVOICE})),this.store.dispatch((0,L.aL)({payload:C})),{type:A.lr.SET_LOOKUP_ECL,payload:C})),(0,d.K)(C=>(this.handleErrorWithoutAlert("Lookup",A.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",C),this.store.dispatch((0,w.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,f.of)({type:A.pg.VOID})))))))),this.setLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(A.lr.SET_LOOKUP_ECL),(0,b.U)(n=>(this.logger.info(n.payload),n.payload))),{dispatch:!1}),this.handleSendPaymentStatus=n=>{this.store.dispatch((0,L.QZ)({payload:{action:"SendPayment",status:A.Bn.COMPLETED}})),this.store.dispatch((0,w.uO)({payload:A.m6.SEND_PAYMENT})),this.store.dispatch((0,L.TM)({payload:this.latestPaymentRes})),this.store.dispatch((0,L.UR)({payload:{fetchPayments:!0}})),this.store.dispatch((0,w.jW)({payload:n}))},this.store.select(k.yA).pipe((0,a.R)(this.unSubs[0])).subscribe(n=>{n.FetchInfo.status!==A.Bn.COMPLETED&&n.FetchInfo.status!==A.Bn.ERROR||n.FetchFees.status!==A.Bn.COMPLETED&&n.FetchFees.status!==A.Bn.ERROR||n.FetchOnchainBalance.status!==A.Bn.COMPLETED&&n.FetchOnchainBalance.status!==A.Bn.ERROR||n.FetchChannels.status!==A.Bn.COMPLETED&&n.FetchChannels.status!==A.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,w.uO)({payload:A.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,a.R)(this.unSubs[1])).subscribe(n=>{var C;this.logger.info("Received new message from the service: "+JSON.stringify(n));let B="";if(n)switch(n.type){case A.$v.PAYMENT_SENT:n&&n.id&&this.latestPaymentRes===n.id&&(this.flgReceivedPaymentUpdateFromWS=!0,B="Payment Sent: "+(n.paymentHash?"with payment hash "+n.paymentHash:JSON.stringify(n)),this.handleSendPaymentStatus(B));break;case A.$v.PAYMENT_FAILED:n&&n.id&&this.latestPaymentRes===n.id&&(this.flgReceivedPaymentUpdateFromWS=!0,B="Payment Failed: "+(n.failures&&n.failures.length&&n.failures.length>0&&n.failures[0].t?n.failures[0].t:n.failures&&n.failures.length&&n.failures.length>0&&n.failures[0].e&&n.failures[0].e.failureMessage?n.failures[0].e.failureMessage:JSON.stringify(n)),this.handleSendPaymentStatus(B));break;case A.$v.PAYMENT_RECEIVED:this.store.dispatch((0,L.aL)({payload:n}));break;case A.$v.PAYMENT_RELAYED:delete n.source,this.store.dispatch((0,L.ti)({payload:n}));break;case A.$v.CHANNEL_STATE_CHANGED:"NORMAL"===n.currentState||"CLOSED"===n.currentState?(this.rawChannelsList=null===(C=this.rawChannelsList)||void 0===C?void 0:C.map(P=>(P.channelId===n.channelId&&P.nodeId===n.remoteNodeId&&(P.state=n.currentState),P)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,L.DJ)({payload:n}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(n))}})}setChannelsAndStatusAndBalances(){let y=0,i=0,r=0,u={localBalance:0,remoteBalance:0},c=[];const _=[],E=[],I={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((v,n)=>{var C,B,P,H,q;v&&("NORMAL"===v.state?(y=(v.toLocal||0)+(v.toRemote||0),i+=v.toLocal||0,r+=v.toRemote||0,v.balancedness=0===y?1:+(1-Math.abs(((v.toLocal||0)-(v.toRemote||0))/y)).toFixed(3),c.push(v),I.active.channels=I.active.channels+1,I.active.capacity=I.active.capacity+(v.toLocal||0)):(null===(C=v.state)||void 0===C?void 0:C.includes("WAIT"))||(null===(B=v.state)||void 0===B?void 0:B.includes("CLOSING"))||(null===(P=v.state)||void 0===P?void 0:P.includes("SYNCING"))?(v.state=null===(H=v.state)||void 0===H?void 0:H.replace(/_/g," "),_.push(v),I.pending.channels=I.pending.channels+1,I.pending.capacity=I.pending.capacity+(v.toLocal||0)):(v.state=null===(q=v.state)||void 0===q?void 0:q.replace(/_/g," "),E.push(v),I.inactive.channels=I.inactive.channels+1,I.inactive.capacity=I.inactive.capacity+(v.toLocal||0)))}),u={localBalance:i,remoteBalance:r},c=this.commonService.sortDescByKey(c,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(c)),this.logger.info("Pending Channels: "+JSON.stringify(_)),this.logger.info("Inactive Channels: "+JSON.stringify(E)),this.logger.info("Lightning Balances: "+JSON.stringify(u)),this.logger.info("Channels Status: "+JSON.stringify(I)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:c,pending:_,inactive:E,balances:u,status:I})),this.store.dispatch((0,L.eN)({payload:c})),this.store.dispatch((0,L.TW)({payload:_})),this.store.dispatch((0,L.i)({payload:E})),this.store.dispatch((0,L.On)({payload:u})),this.store.dispatch((0,L.HG)({payload:I}))}initializeRemainingData(y,i){this.sessionService.setItem("eclUnlocked","true");const r={identity_pubkey:y.nodeId,alias:y.alias,testnet:"testnet"===y.network,chains:y.publicAddresses,uris:y.uris,version:y.version,numberOfPendingChannels:0};this.store.dispatch((0,w.ac)({payload:A.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,w._V)({payload:r}));let u=this.location.path();u.includes("/lnd/")?u=null==u?void 0:u.replace("/lnd/","/ecl/"):u.includes("/cln/")&&(u=null==u?void 0:u.replace("/cln/","/ecl/")),(u.includes("/login")||u.includes("/error")||""===u||"HOME"===i||u.includes("?access-key="))&&(u="/ecl/home"),this.router.navigate([u]),this.store.dispatch((0,L.WM)()),this.store.dispatch((0,L.UR)({payload:{fetchPayments:!0}})),this.store.dispatch((0,L.SN)()),this.store.dispatch((0,L.iL)()),this.store.dispatch((0,L.$W)())}handleErrorWithoutAlert(y,i,r,u){this.logger.error("ERROR IN: "+y+"\n"+JSON.stringify(u)),401===u.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,w.ts)()),this.store.dispatch((0,w.kS)()),this.store.dispatch((0,w.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,w.uO)({payload:i})),this.store.dispatch((0,L.QZ)({payload:{action:y,status:A.Bn.ERROR,statusCode:u.status.toString(),message:this.commonService.extractErrorMessage(u,r)}})))}handleErrorWithAlert(y,i,r,u,c){if(this.logger.error(c),401===c.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,w.ts)()),this.store.dispatch((0,w.kS)()),this.store.dispatch((0,w.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,w.uO)({payload:i}));const _=this.commonService.extractErrorMessage(c);this.store.dispatch((0,w.qR)({payload:{data:{type:"ERROR",alertTitle:r,message:{code:c.status,message:_,URL:u},component:h.H}}})),this.store.dispatch((0,L.QZ)({payload:{action:y,status:A.Bn.ERROR,statusCode:c.status.toString(),message:_,URL:u}}))}}ngOnDestroy(){this.unSubs.forEach(y=>{y.next(null),y.complete()})}}return X.\u0275fac=function(y){return new(y||X)(S.LFG(t.eX),S.LFG(U.eN),S.LFG(Z.yh),S.LFG(Y.m),S.LFG(ne.v),S.LFG($.mQ),S.LFG(de.F0),S.LFG(te.d),S.LFG(ie.Ye))},X.\u0275prov=S.Yz7({token:X,factory:X.\u0275fac}),X})()},2501:(Ve,j,p)=>{"use strict";p.d(j,{Bo:()=>L,Ef:()=>D,JG:()=>h,PP:()=>N,T$:()=>a,Xz:()=>A,dx:()=>w,kY:()=>k,pg:()=>f,yA:()=>d,yD:()=>M});var t=p(5620);const e=(0,t.ZF)("ecl"),f=(0,t.P1)(e,S=>S.nodeSettings),M=(0,t.P1)(e,S=>S.information),a=(0,t.P1)(e,S=>({information:S.information,apiCallStatus:S.apisCallStatus.FetchInfo})),d=((0,t.P1)(e,S=>S.apisCallStatus.FetchInfo),(0,t.P1)(e,S=>S.apisCallStatus)),N=(0,t.P1)(e,S=>({payments:S.payments,apiCallStatus:S.apisCallStatus.FetchPayments})),h=(0,t.P1)(e,S=>({fees:S.fees,apiCallStatus:S.apisCallStatus.FetchFees})),A=(0,t.P1)(e,S=>({activeChannels:S.activeChannels,pendingChannels:S.pendingChannels,inactiveChannels:S.inactiveChannels,lightningBalance:S.lightningBalance,channelsStatus:S.channelsStatus,apiCallStatus:S.apisCallStatus.FetchChannels})),w=(0,t.P1)(e,S=>({transactions:S.transactions,apiCallStatus:S.apisCallStatus.FetchTransactions})),D=(0,t.P1)(e,S=>({invoices:S.invoices,apiCallStatus:S.apisCallStatus.FetchInvoices})),L=(0,t.P1)(e,S=>({peers:S.peers,apiCallStatus:S.apisCallStatus.FetchPeers})),k=(0,t.P1)(e,S=>({onchainBalance:S.onchainBalance,apiCallStatus:S.apisCallStatus.FetchOnchainBalance}))},7766:(Ve,j,p)=>{"use strict";p.d(j,{R:()=>we});var t=p(8966),e=p(801),f=p(7579),M=p(2722),a=p(7731),b=p(2501),d=p(5e3),N=p(5043),h=p(62),A=p(7261),w=p(5620),D=p(7093),L=p(9808),k=p(3322),S=p(159),U=p(9224),Z=p(9444),Y=p(7423),ne=p(4834),$=p(773),de=p(3390),te=p(6895);function ie(Q,Ue){if(1&Q&&d._UZ(0,"qr-code",29),2&Q){const ve=d.oxw();d.Q6J("value",null==ve.invoice?null:ve.invoice.serialized)("size",ve.qrWidth)("errorCorrectionLevel","L")}}function oe(Q,Ue){1&Q&&(d.TgZ(0,"span",30),d._uU(1,"N/A"),d.qZA())}function X(Q,Ue){if(1&Q&&d._UZ(0,"qr-code",29),2&Q){const ve=d.oxw();d.Q6J("value",null==ve.invoice?null:ve.invoice.serialized)("size",ve.qrWidth)("errorCorrectionLevel","L")}}function me(Q,Ue){1&Q&&(d.TgZ(0,"span",31),d._uU(1,"QR Code Not Applicable"),d.qZA())}function y(Q,Ue){1&Q&&d._UZ(0,"mat-divider",32),2&Q&&d.Q6J("inset",!0)}function i(Q,Ue){1&Q&&(d.ynx(0),d._uU(1," (zero amount) "),d.BQk())}function r(Q,Ue){1&Q&&d._UZ(0,"span",38)}const u=function(){return[]};function c(Q,Ue){if(1&Q&&(d.TgZ(0,"div",34)(1,"div",35)(2,"span",36),d._uU(3),d.ALo(4,"number"),d.qZA(),d.YNc(5,r,1,0,"span",37),d.qZA()()),2&Q){const ve=d.oxw(2);d.xp6(3),d.hij("",d.lcZ(4,2,null==ve.invoice?null:ve.invoice.amountSettled)," Sats"),d.xp6(2),d.Q6J("ngForOf",d.DdM(4,u).constructor(35))}}function _(Q,Ue){if(1&Q&&(d.TgZ(0,"div"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&Q){const ve=d.oxw(2);d.xp6(1),d.hij("",d.lcZ(2,1,null==ve.invoice?null:ve.invoice.amountSettled)," Sats")}}function E(Q,Ue){if(1&Q&&(d.ynx(0),d.YNc(1,c,6,5,"div",33),d.YNc(2,_,3,3,"div",19),d.BQk()),2&Q){const ve=d.oxw();d.xp6(1),d.Q6J("ngIf",ve.flgInvoicePaid),d.xp6(1),d.Q6J("ngIf",!ve.flgInvoicePaid)}}function I(Q,Ue){1&Q&&(d.TgZ(0,"span"),d._uU(1,"-"),d.qZA())}function v(Q,Ue){1&Q&&d._UZ(0,"mat-spinner",40),2&Q&&d.Q6J("diameter",20)}function n(Q,Ue){if(1&Q&&(d.ynx(0),d.YNc(1,I,2,0,"span",19),d.YNc(2,v,1,1,"mat-spinner",39),d.BQk()),2&Q){const ve=d.oxw();d.xp6(1),d.Q6J("ngIf","unpaid"!==(null==ve.invoice?null:ve.invoice.status)||!ve.flgVersionCompatible),d.xp6(1),d.Q6J("ngIf","unpaid"===(null==ve.invoice?null:ve.invoice.status)&&ve.flgVersionCompatible)}}function C(Q,Ue){if(1&Q&&(d.TgZ(0,"div"),d._UZ(1,"mat-divider",20),d.TgZ(2,"div",15)(3,"div",41)(4,"h4",17),d._uU(5,"Date Expiry"),d.qZA(),d.TgZ(6,"span",18),d._uU(7),d.ALo(8,"date"),d.qZA()(),d.TgZ(9,"div",42)(10,"h4",17),d._uU(11,"Date Settled"),d.qZA(),d.TgZ(12,"span",21),d._uU(13),d.ALo(14,"date"),d.qZA()()(),d._UZ(15,"mat-divider",20),d.TgZ(16,"div",15)(17,"div",22)(18,"h4",17),d._uU(19,"Payment Hash"),d.qZA(),d.TgZ(20,"span",21),d._uU(21),d.qZA()()(),d._UZ(22,"mat-divider",20),d.TgZ(23,"div",15)(24,"div",22)(25,"h4",17),d._uU(26,"Node Id"),d.qZA(),d.TgZ(27,"span",21),d._uU(28),d.qZA()()(),d._UZ(29,"mat-divider",20),d.qZA()),2&Q){const ve=d.oxw();d.xp6(7),d.Oqu(d.xi3(8,4,1e3*(null==ve.invoice?null:ve.invoice.expiresAt),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(d.xi3(14,7,1e3*(null==ve.invoice?null:ve.invoice.receivedAt),"dd/MMM/y HH:mm")),d.xp6(8),d.Oqu(null==ve.invoice?null:ve.invoice.paymentHash),d.xp6(7),d.Oqu(null==ve.invoice?null:ve.invoice.nodeId)}}function B(Q,Ue){1&Q&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function P(Q,Ue){1&Q&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function H(Q,Ue){if(1&Q){const ve=d.EpF();d.TgZ(0,"button",43),d.NdJ("copied",function(De){return d.CHM(ve),d.oxw().onCopyPayment(De)}),d._uU(1,"Copy Invoice"),d.qZA()}if(2&Q){const ve=d.oxw();d.Q6J("payload",null==ve.invoice?null:ve.invoice.serialized)}}function q(Q,Ue){if(1&Q){const ve=d.EpF();d.TgZ(0,"button",44),d.NdJ("click",function(){return d.CHM(ve),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const he=function(Q){return{"display-none":Q}},_e=function(Q){return{"xs-scroll-y":Q}},Ne=function(Q,Ue){return{"mt-2":Q,"mt-1":Ue}};let we=(()=>{class Q{constructor(ve,V,De,dt,Ie,Ae){this.dialogRef=ve,this.data=V,this.logger=De,this.commonService=dt,this.snackBar=Ie,this.store=Ae,this.faReceipt=e.dLy,this.faExclamationTriangle=e.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(b.yD).pipe((0,M.R)(this.unSubs[0])).subscribe(ve=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ve.version,"0.5.0")}),this.store.select(b.Ef).pipe((0,M.R)(this.unSubs[1])).subscribe(ve=>{const V=this.invoice.status,De=ve.invoices&&ve.invoices.length>0?ve.invoices:[];this.invoice=(null==De?void 0:De.find(dt=>dt.paymentHash===this.invoice.paymentHash))||{},V!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ve)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ve){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ve)}ngOnDestroy(){this.unSubs.forEach(ve=>{ve.next(null),ve.complete()})}}return Q.\u0275fac=function(ve){return new(ve||Q)(d.Y36(t.so),d.Y36(t.WI),d.Y36(N.mQ),d.Y36(h.v),d.Y36(A.ux),d.Y36(w.yh))},Q.\u0275cmp=d.Xpm({type:Q,selectors:[["rtl-ecl-invoice-information"]],decls:68,vars:42,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","40"],["fxFlex","60"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(ve,V){if(1&ve&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,ie,1,3,"qr-code",2),d.YNc(3,oe,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.qZA()(),d.TgZ(10,"button",9),d.NdJ("click",function(){return V.onClose()}),d._uU(11,"X"),d.qZA()(),d.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),d.YNc(15,X,1,3,"qr-code",2),d.YNc(16,me,2,0,"span",13),d.qZA(),d.YNc(17,y,1,1,"mat-divider",14),d.TgZ(18,"div",15)(19,"div",16)(20,"h4",17),d._uU(21,"Amount Requested"),d.qZA(),d.TgZ(22,"span",18),d._uU(23),d.ALo(24,"number"),d.YNc(25,i,2,0,"ng-container",19),d.qZA()(),d.TgZ(26,"div",16)(27,"h4",17),d._uU(28,"Amount Settled"),d.qZA(),d.TgZ(29,"span",18),d.YNc(30,E,3,2,"ng-container",19),d.YNc(31,n,3,2,"ng-container",19),d.qZA()()(),d._UZ(32,"mat-divider",20),d.TgZ(33,"div",15)(34,"div",16)(35,"h4",17),d._uU(36,"Date Created"),d.qZA(),d.TgZ(37,"span",21),d._uU(38),d.ALo(39,"date"),d.qZA()(),d.TgZ(40,"div",16)(41,"h4",17),d._uU(42,"Status"),d.qZA(),d.TgZ(43,"span",21),d._uU(44),d.ALo(45,"titlecase"),d.qZA()()(),d._UZ(46,"mat-divider",20),d.TgZ(47,"div",15)(48,"div",22)(49,"h4",17),d._uU(50,"Description"),d.qZA(),d.TgZ(51,"span",18),d._uU(52),d.qZA()()(),d._UZ(53,"mat-divider",20),d.TgZ(54,"div",15)(55,"div",22)(56,"h4",17),d._uU(57,"Invoice"),d.qZA(),d.TgZ(58,"span",21),d._uU(59),d.qZA()()(),d.YNc(60,C,30,10,"div",19),d.TgZ(61,"div",23)(62,"button",24),d.NdJ("click",function(){return V.onShowAdvanced()}),d.YNc(63,B,2,0,"p",25),d.YNc(64,P,2,0,"ng-template",null,26,d.W1O),d.qZA(),d.YNc(66,H,2,1,"button",27),d.YNc(67,q,2,0,"button",28),d.qZA()()()()()),2&ve){const De=d.MAs(65);d.xp6(1),d.Q6J("fxLayoutAlign",null!=V.invoice&&V.invoice.serialized&&""!==(null==V.invoice?null:V.invoice.serialized)?"center start":"center center")("ngClass",d.VKq(33,he,V.screenSize===V.screenSizeEnum.XS||V.screenSize===V.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==V.invoice?null:V.invoice.serialized)&&""!==(null==V.invoice?null:V.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",!(null!=V.invoice&&V.invoice.serialized)||""===(null==V.invoice?null:V.invoice.serialized)),d.xp6(4),d.Q6J("icon",V.faReceipt),d.xp6(2),d.Oqu(V.screenSize===V.screenSizeEnum.XS?V.newlyAdded?"Created":"Invoice":V.newlyAdded?"Invoice Created":"Invoice Information"),d.xp6(3),d.Q6J("ngClass",d.VKq(35,_e,V.screenSize===V.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=V.invoice&&V.invoice.serialized&&""!==(null==V.invoice?null:V.invoice.serialized)?"center start":"center center")("ngClass",d.VKq(37,he,V.screenSize!==V.screenSizeEnum.XS&&V.screenSize!==V.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==V.invoice?null:V.invoice.serialized)&&""!==(null==V.invoice?null:V.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",!(null!=V.invoice&&V.invoice.serialized)||""===(null==V.invoice?null:V.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",V.screenSize===V.screenSizeEnum.XS||V.screenSize===V.screenSizeEnum.SM),d.xp6(6),d.hij("",d.lcZ(24,26,(null==V.invoice?null:V.invoice.amount)||0)," Sats"),d.xp6(2),d.Q6J("ngIf",!(null!=V.invoice&&V.invoice.amount)||"0"===(null==V.invoice?null:V.invoice.amount)),d.xp6(5),d.Q6J("ngIf",null==V.invoice?null:V.invoice.amountSettled),d.xp6(1),d.Q6J("ngIf",!(null!=V.invoice&&V.invoice.amountSettled)),d.xp6(7),d.Oqu(d.xi3(39,28,1e3*(null==V.invoice?null:V.invoice.timestamp),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(d.lcZ(45,31,null==V.invoice?null:V.invoice.status)),d.xp6(8),d.Oqu((null==V.invoice?null:V.invoice.description)||"-"),d.xp6(7),d.Oqu((null==V.invoice?null:V.invoice.serialized)||"N/A"),d.xp6(1),d.Q6J("ngIf",V.showAdvanced),d.xp6(1),d.Q6J("ngClass",d.WLB(39,Ne,!V.showAdvanced,V.showAdvanced)),d.xp6(2),d.Q6J("ngIf",!V.showAdvanced)("ngIfElse",De),d.xp6(3),d.Q6J("ngIf",(null==V.invoice?null:V.invoice.serialized)&&""!==(null==V.invoice?null:V.invoice.serialized)),d.xp6(1),d.Q6J("ngIf",!(null!=V.invoice&&V.invoice.serialized)||""===(null==V.invoice?null:V.invoice.serialized))}},directives:[D.xw,D.Wh,D.yH,L.mk,k.oO,L.O5,S.uU,U.dk,Z.BN,Y.lW,U.dn,ne.d,L.sg,$.Ou,de.h,te.y],pipes:[L.JJ,L.uU,L.rS],styles:[""]}),Q})()},6523:(Ve,j,p)=>{"use strict";p.d(j,{$A:()=>ui,$W:()=>N,BL:()=>c,B_:()=>B,Bl:()=>ne,CX:()=>d,Cp:()=>I,EK:()=>L,El:()=>A,Fr:()=>ei,HI:()=>De,JT:()=>a,Jl:()=>$,Jo:()=>yt,Lf:()=>Q,Ll:()=>M,Ly:()=>Ue,Nr:()=>he,OG:()=>_,PC:()=>f,QJ:()=>Nt,RX:()=>Y,Rd:()=>k,Rv:()=>de,SN:()=>Z,Sf:()=>It,TW:()=>me,UH:()=>ve,UR:()=>ie,Vv:()=>E,WM:()=>q,WO:()=>Ct,Wi:()=>W,YP:()=>U,YX:()=>u,Z7:()=>X,Z8:()=>h,Zh:()=>y,_E:()=>Te,_L:()=>i,aL:()=>_e,as:()=>oe,cQ:()=>V,dV:()=>Ae,fu:()=>ue,kL:()=>et,ks:()=>te,mC:()=>we,n7:()=>Wt,oV:()=>dt,pW:()=>r,qY:()=>Ne,sQ:()=>b,tb:()=>C,u0:()=>xt,vV:()=>P,xG:()=>ht,y2:()=>Le,yZ:()=>Gt,z:()=>D});var t=p(5620),e=p(7731);const f=(0,t.PH)(e.uR.UPDATE_API_CALL_STATUS_LND,(0,t.Ky)()),M=(0,t.PH)(e.uR.RESET_LND_STORE,(0,t.Ky)()),a=(0,t.PH)(e.uR.SET_CHILD_NODE_SETTINGS_LND,(0,t.Ky)()),b=(0,t.PH)(e.uR.FETCH_INFO_LND,(0,t.Ky)()),d=(0,t.PH)(e.uR.SET_INFO_LND,(0,t.Ky)()),N=(0,t.PH)(e.uR.FETCH_PEERS_LND),h=(0,t.PH)(e.uR.SET_PEERS_LND,(0,t.Ky)()),A=(0,t.PH)(e.uR.SAVE_NEW_PEER_LND,(0,t.Ky)()),D=((0,t.PH)(e.uR.NEWLY_ADDED_PEER_LND,(0,t.Ky)()),(0,t.PH)(e.uR.DETACH_PEER_LND,(0,t.Ky)())),L=(0,t.PH)(e.uR.REMOVE_PEER_LND,(0,t.Ky)()),k=(0,t.PH)(e.uR.SAVE_NEW_INVOICE_LND,(0,t.Ky)()),U=((0,t.PH)(e.uR.NEWLY_SAVED_INVOICE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.ADD_INVOICE_LND,(0,t.Ky)())),Z=(0,t.PH)(e.uR.FETCH_FEES_LND),Y=(0,t.PH)(e.uR.SET_FEES_LND,(0,t.Ky)()),ne=(0,t.PH)(e.uR.FETCH_BLOCKCHAIN_BALANCE_LND),$=(0,t.PH)(e.uR.SET_BLOCKCHAIN_BALANCE_LND,(0,t.Ky)()),de=(0,t.PH)(e.uR.FETCH_NETWORK_LND),te=(0,t.PH)(e.uR.SET_NETWORK_LND,(0,t.Ky)()),ie=(0,t.PH)(e.uR.FETCH_CHANNELS_LND),oe=(0,t.PH)(e.uR.SET_CHANNELS_LND,(0,t.Ky)()),X=(0,t.PH)(e.uR.FETCH_PENDING_CHANNELS_LND),me=(0,t.PH)(e.uR.SET_PENDING_CHANNELS_LND,(0,t.Ky)()),y=(0,t.PH)(e.uR.FETCH_CLOSED_CHANNELS_LND),i=(0,t.PH)(e.uR.SET_CLOSED_CHANNELS_LND,(0,t.Ky)()),r=(0,t.PH)(e.uR.UPDATE_CHANNEL_LND,(0,t.Ky)()),u=(0,t.PH)(e.uR.SAVE_NEW_CHANNEL_LND,(0,t.Ky)()),c=(0,t.PH)(e.uR.CLOSE_CHANNEL_LND,(0,t.Ky)()),_=(0,t.PH)(e.uR.REMOVE_CHANNEL_LND,(0,t.Ky)()),E=(0,t.PH)(e.uR.BACKUP_CHANNELS_LND,(0,t.Ky)()),I=(0,t.PH)(e.uR.VERIFY_CHANNEL_LND,(0,t.Ky)()),C=((0,t.PH)(e.uR.BACKUP_CHANNELS_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.VERIFY_CHANNEL_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.RESTORE_CHANNELS_LIST_LND)),B=(0,t.PH)(e.uR.SET_RESTORE_CHANNELS_LIST_LND,(0,t.Ky)()),P=(0,t.PH)(e.uR.RESTORE_CHANNELS_LND,(0,t.Ky)()),q=((0,t.PH)(e.uR.RESTORE_CHANNELS_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.FETCH_INVOICES_LND,(0,t.Ky)())),he=(0,t.PH)(e.uR.SET_INVOICES_LND,(0,t.Ky)()),_e=(0,t.PH)(e.uR.UPDATE_INVOICE_LND,(0,t.Ky)()),Ne=(0,t.PH)(e.uR.UPDATE_PAYMENT_LND,(0,t.Ky)()),we=(0,t.PH)(e.uR.FETCH_TRANSACTIONS_LND),Q=(0,t.PH)(e.uR.SET_TRANSACTIONS_LND,(0,t.Ky)()),Ue=(0,t.PH)(e.uR.FETCH_UTXOS_LND),ve=(0,t.PH)(e.uR.SET_UTXOS_LND,(0,t.Ky)()),V=(0,t.PH)(e.uR.FETCH_PAYMENTS_LND,(0,t.Ky)()),De=(0,t.PH)(e.uR.SET_PAYMENTS_LND,(0,t.Ky)()),dt=(0,t.PH)(e.uR.SEND_PAYMENT_LND,(0,t.Ky)()),Ae=((0,t.PH)(e.uR.SEND_PAYMENT_STATUS_LND,(0,t.Ky)()),(0,t.PH)(e.uR.FETCH_GRAPH_NODE_LND,(0,t.Ky)())),Te=((0,t.PH)(e.uR.SET_GRAPH_NODE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.GET_NEW_ADDRESS_LND,(0,t.Ky)())),W=((0,t.PH)(e.uR.SET_NEW_ADDRESS_LND,(0,t.Ky)()),(0,t.PH)(e.uR.SET_CHANNEL_TRANSACTION_LND,(0,t.Ky)())),ue=((0,t.PH)(e.uR.SET_CHANNEL_TRANSACTION_RES_LND,(0,t.Ky)()),(0,t.PH)(e.uR.GEN_SEED_LND,(0,t.Ky)())),Le=((0,t.PH)(e.uR.GEN_SEED_RESPONSE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.INIT_WALLET_LND,(0,t.Ky)())),ht=((0,t.PH)(e.uR.INIT_WALLET_RESPONSE_LND,(0,t.Ky)()),(0,t.PH)(e.uR.UNLOCK_WALLET_LND,(0,t.Ky)())),It=(0,t.PH)(e.uR.PEER_LOOKUP_LND,(0,t.Ky)()),ui=(0,t.PH)(e.uR.CHANNEL_LOOKUP_LND,(0,t.Ky)()),Wt=(0,t.PH)(e.uR.INVOICE_LOOKUP_LND,(0,t.Ky)()),Gt=(0,t.PH)(e.uR.PAYMENT_LOOKUP_LND,(0,t.Ky)()),xt=((0,t.PH)(e.uR.SET_LOOKUP_LND,(0,t.Ky)()),(0,t.PH)(e.uR.GET_FORWARDING_HISTORY_LND,(0,t.Ky)())),Nt=(0,t.PH)(e.uR.SET_FORWARDING_HISTORY_LND,(0,t.Ky)()),Ct=(0,t.PH)(e.uR.GET_QUERY_ROUTES_LND,(0,t.Ky)()),et=(0,t.PH)(e.uR.SET_QUERY_ROUTES_LND,(0,t.Ky)()),yt=(0,t.PH)(e.uR.GET_ALL_LIGHTNING_TRANSATIONS_LND),ei=(0,t.PH)(e.uR.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,t.Ky)())},711:(Ve,j,p)=>{"use strict";p.d(j,{l:()=>me});var t=p(6642),e=p(7579),f=p(9646),M=p(5577),a=p(2722),b=p(4004),d=p(262),N=p(1365),h=p(2340),A=p(8627),w=p(1786),D=p(7731),L=p(7861),k=p(6523),S=p(6529),U=p(5e3),Z=p(8138),Y=p(5620),ne=p(5043),$=p(62),de=p(5986),te=p(8966),ie=p(1402),oe=p(7998),X=p(9808);let me=(()=>{class y{constructor(r,u,c,_,E,I,v,n,C,B){this.actions=r,this.httpClient=u,this.store=c,this.logger=_,this.commonService=E,this.sessionService=I,this.dialog=v,this.router=n,this.wsService=C,this.location=B,this.CHILD_API_URL=h.T5+"/lnd",this.flgInitialized=!1,this.unSubs=[new e.x,new e.x],this.infoFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_INFO_LND),(0,M.z)(P=>(this.flgInitialized=!1,this.store.dispatch((0,L.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,L.ts)()),this.store.dispatch((0,L.ac)({payload:D.m6.GET_NODE_INFO})),this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.GETINFO_API).pipe((0,a.R)(this.actions.pipe((0,t.l4)(D.pg.SET_SELECTED_NODE))),(0,b.U)(H=>(this.logger.info(H),H.chains&&H.chains.length&&H.chains[0]&&("string"==typeof H.chains[0]&&H.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof H.chains[0]&&H.chains[0].hasOwnProperty("chain")&&H.chains[0].chain&&H.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.ts)()),this.store.dispatch((0,L.qR)({payload:{data:{type:D.n_.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:D.pg.LOGOUT}):H.identity_pubkey?(H.lnImplementation="LND",this.initializeRemainingData(H,P.payload.loadPage),this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.ts)()),{type:D.uR.SET_INFO_LND,payload:H||{}}):(this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.ts)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:D.uR.SET_INFO_LND,payload:{}}))),(0,d.K)(H=>{if("string"==typeof H.error.error&&H.error.error.includes("Not Found")||"string"==typeof H.error.error&&H.error.error.includes("wallet locked")||502===H.status&&!H.error.message.includes("Bad or Missing Macaroon"))this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),this.handleErrorWithoutAlert("FetchInfo",D.m6.GET_NODE_INFO,"Fetching Node Info Failed.",H);else if("string"==typeof H.error.error&&H.error.error.includes("starting up")&&500===H.status)setTimeout(()=>{this.store.dispatch((0,k.sQ)({payload:{loadPage:"HOME"}}))},2e3);else{const q=this.commonService.extractErrorCode(H),he=503===q?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(H);this.router.navigate(["/error"],{state:{errorCode:q,errorMessage:he}}),this.handleErrorWithoutAlert("FetchInfo",D.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:q,error:he})}return(0,f.of)({type:D.pg.VOID})})))))),this.peersFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PEERS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPeers",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PEERS_API).pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchPeers",status:D.Bn.COMPLETED}})),{type:D.uR.SET_PEERS_LND,payload:P||[]})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchPeers",D.m6.NO_SPINNER,"Fetching Peers Failed.",P),(0,f.of)({type:D.pg.VOID})))))))),this.saveNewPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_NEW_PEER_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.CONNECT_PEER})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewPeer",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.PEERS_API,{pubkey:P.payload.pubkey,host:P.payload.host,perm:P.payload.perm}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewPeer",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.uO)({payload:D.m6.CONNECT_PEER})),this.store.dispatch((0,k.Z8)({payload:H||[]})),{type:D.uR.NEWLY_ADDED_PEER_LND,payload:{peer:H[0]}})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SaveNewPeer",D.m6.CONNECT_PEER,"Peer Connection Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.detachPeer=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.DETACH_PEER_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+h.NZ.PEERS_API+"/"+P.payload.pubkey).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.DISCONNECT_PEER})),this.store.dispatch((0,L.jW)({payload:"Peer Disconnected Successfully."})),{type:D.uR.REMOVE_PEER_LND,payload:{pubkey:P.payload.pubkey}})),(0,d.K)(H=>(this.handleErrorWithAlert("DetachPeer",D.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+h.NZ.PEERS_API+"/"+P.payload.pubkey,H),(0,f.of)({type:D.pg.VOID})))))))),this.saveNewInvoice=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_NEW_INVOICE_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewInvoice",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.INVOICES_API,{memo:P.payload.memo,amount:P.payload.invoiceValue,private:P.payload.private,expiry:P.payload.expiry}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewInvoice",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:P.payload.pageSize,reversed:!0}})),P.payload.openModal?(H.memo=P.payload.memo,H.value=P.payload.invoiceValue,H.expiry=P.payload.expiry,H.cltv_expiry="144",H.private=P.payload.private,H.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,L.qR)({payload:{data:{invoice:H,newlyAdded:!0,component:A.v}}}))},100),{type:D.pg.CLOSE_SPINNER,payload:P.payload.uiMessage}):{type:D.uR.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:H.payment_request}})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SaveNewInvoice",P.payload.uiMessage,"Add Invoice Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.openNewChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SAVE_NEW_CHANNEL_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.OPEN_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewChannel",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_API,{node_pubkey:P.payload.selectedPeerPubkey,local_funding_amount:P.payload.fundingAmount,private:P.payload.private,trans_type:P.payload.transType,trans_type_value:P.payload.transTypeValue,spend_unconfirmed:P.payload.spendUnconfirmed}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewChannel",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.uO)({payload:D.m6.OPEN_CHANNEL})),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Vv)({payload:{uiMessage:D.m6.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:D.uR.FETCH_PENDING_CHANNELS_LND})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SaveNewChannel",D.m6.OPEN_CHANNEL,"Opening Channel Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.updateChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.UPDATE_CHANNEL_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/chanPolicy",{baseFeeMsat:P.payload.baseFeeMsat,feeRate:P.payload.feeRate,timeLockDelta:P.payload.timeLockDelta,max_htlc_msat:P.payload.maxHtlcMsat,min_htlc_msat:P.payload.minHtlcMsat,chanPoint:P.payload.chanPoint}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,L.jW)("all"===P.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:D.uR.FETCH_CHANNELS_LND})),(0,d.K)(H=>(this.handleErrorWithAlert("UpdateChannels",D.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/chanPolicy",H),(0,f.of)({type:D.pg.VOID})))))))),this.closeChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.CLOSE_CHANNEL_LND),(0,M.z)(P=>{this.store.dispatch((0,L.ac)({payload:P.payload.forcibly?D.m6.FORCE_CLOSE_CHANNEL:D.m6.CLOSE_CHANNEL}));let H=this.CHILD_API_URL+h.NZ.CHANNELS_API+"/"+P.payload.channelPoint+"?force="+P.payload.forcibly;return P.payload.targetConf&&(H=H+"&target_conf="+P.payload.targetConf),P.payload.satPerByte&&(H=H+"&sat_per_byte="+P.payload.satPerByte),this.httpClient.delete(H).pipe((0,b.U)(q=>(this.logger.info(q),this.store.dispatch((0,L.uO)({payload:P.payload.forcibly?D.m6.FORCE_CLOSE_CHANNEL:D.m6.CLOSE_CHANNEL})),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Z7)()),this.store.dispatch((0,k.Vv)({payload:{uiMessage:D.m6.NO_SPINNER,channelPoint:"ALL",showMessage:q.message}})),{type:D.pg.VOID})),(0,d.K)(q=>(this.handleErrorWithAlert("CloseChannel",P.payload.forcibly?D.m6.FORCE_CLOSE_CHANNEL:D.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/"+P.payload.channelPoint+"?force="+P.payload.forcibly,q),(0,f.of)({type:D.pg.VOID}))))}))),this.backupChannels=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.BACKUP_CHANNELS_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"BackupChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/"+P.payload.channelPoint).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"BackupChannels",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.uO)({payload:P.payload.uiMessage})),this.store.dispatch((0,L.jW)({payload:P.payload.showMessage+" "+H.message})),{type:D.uR.BACKUP_CHANNELS_RES_LND,payload:H.message})),(0,d.K)(H=>(this.handleErrorWithAlert("BackupChannels",P.payload.uiMessage,P.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/"+P.payload.channelPoint,H),(0,f.of)({type:D.pg.VOID})))))))),this.verifyChannel=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.VERIFY_CHANNEL_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.VERIFY_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"VerifyChannel",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/verify/"+P.payload.channelPoint,{}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"VerifyChannel",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.uO)({payload:D.m6.VERIFY_CHANNEL})),this.store.dispatch((0,L.jW)({payload:H.message})),{type:D.uR.VERIFY_CHANNEL_RES_LND,payload:H.message})),(0,d.K)(H=>(this.handleErrorWithAlert("VerifyChannel",D.m6.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/verify/"+P.payload.channelPoint,H),(0,f.of)({type:D.pg.VOID})))))))),this.restoreChannels=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.RESTORE_CHANNELS_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.RESTORE_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannels",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/restore/"+P.payload.channelPoint,{}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannels",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.uO)({payload:D.m6.RESTORE_CHANNEL})),this.store.dispatch((0,L.jW)({payload:H.message})),this.store.dispatch((0,k.B_)({payload:H.list})),{type:D.uR.RESTORE_CHANNELS_RES_LND,payload:H.message})),(0,d.K)(H=>(this.handleErrorWithAlert("RestoreChannels",D.m6.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/restore/"+P.payload.channelPoint,H),(0,f.of)({type:D.pg.VOID})))))))),this.fetchFees=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_FEES_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchFees",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.FEES_API))),(0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchFees",status:D.Bn.COMPLETED}})),P.forwarding_events_history&&(this.store.dispatch((0,k.QJ)({payload:P.forwarding_events_history})),delete P.forwarding_events_history),{type:D.uR.SET_FEES_LND,payload:P||{}})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchFees",D.m6.NO_SPINNER,"Fetching Fees Failed.",P),(0,f.of)({type:D.pg.VOID}))))),this.balanceBlockchainFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_BLOCKCHAIN_BALANCE_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchBalance",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.BALANCE_API))),(0,b.U)(P=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchBalance",status:D.Bn.COMPLETED}})),this.logger.info(P),{type:D.uR.SET_BLOCKCHAIN_BALANCE_LND,payload:P||{total_balance:""}})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchBalance",D.m6.NO_SPINNER,"Fetching Blockchain Balance Failed.",P),(0,f.of)({type:D.pg.VOID}))))),this.networkInfoFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_NETWORK_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchNetwork",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/info"))),(0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchNetwork",status:D.Bn.COMPLETED}})),{type:D.uR.SET_NETWORK_LND,payload:P||{}})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchNetwork",D.m6.NO_SPINNER,"Fetching Network Failed.",P),(0,f.of)({type:D.pg.VOID}))))),this.channelsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_CHANNELS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_API).pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchChannels",status:D.Bn.COMPLETED}})),{type:D.uR.SET_CHANNELS_LND,payload:P.channels||[]})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchChannels",D.m6.NO_SPINNER,"Fetching Channels Failed.",P),(0,f.of)({type:D.pg.VOID})))))))),this.channelsPendingFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PENDING_CHANNELS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPendingChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/pending").pipe((0,b.U)(P=>{this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchPendingChannels",status:D.Bn.COMPLETED}}));const H={open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0};return P&&(H.total_limbo_balance=P.total_limbo_balance,P.pending_closing_channels&&(H.closing.num_channels=P.pending_closing_channels.length,H.total_channels=H.total_channels+P.pending_closing_channels.length,P.pending_closing_channels.forEach(q=>{H.closing.limbo_balance=+H.closing.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)})),P.pending_force_closing_channels&&(H.force_closing.num_channels=P.pending_force_closing_channels.length,H.total_channels=H.total_channels+P.pending_force_closing_channels.length,P.pending_force_closing_channels.forEach(q=>{H.force_closing.limbo_balance=+H.force_closing.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)})),P.pending_open_channels&&(H.open.num_channels=P.pending_open_channels.length,H.total_channels=H.total_channels+P.pending_open_channels.length,P.pending_open_channels.forEach(q=>{H.open.limbo_balance=+H.open.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)})),P.waiting_close_channels&&(H.waiting_close.num_channels=P.waiting_close_channels.length,H.total_channels=H.total_channels+P.waiting_close_channels.length,P.waiting_close_channels.forEach(q=>{H.waiting_close.limbo_balance=+H.waiting_close.limbo_balance+(q.channel.local_balance?+q.channel.local_balance:0)}))),{type:D.uR.SET_PENDING_CHANNELS_LND,payload:P?{pendingChannels:P,pendingChannelsSummary:H}:{pendingChannels:{},pendingChannelsSummary:H}}}),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchPendingChannels",D.m6.NO_SPINNER,"Fetching Pending Channels Failed.",P),(0,f.of)({type:D.pg.VOID})))))))),this.channelsClosedFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_CLOSED_CHANNELS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchClosedChannels",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/closed").pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchClosedChannels",status:D.Bn.COMPLETED}})),{type:D.uR.SET_CLOSED_CHANNELS_LND,payload:P.channels||[]})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchClosedChannels",D.m6.NO_SPINNER,"Fetching Closed Channels Failed.",P),(0,f.of)({type:D.pg.VOID})))))))),this.invoicesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_INVOICES_LND),(0,M.z)(P=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchInvoices",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.INVOICES_API+"?num_max_invoices="+(P.payload.num_max_invoices?P.payload.num_max_invoices:100)+"&index_offset="+(P.payload.index_offset?P.payload.index_offset:0)+"&reversed="+(!!P.payload.reversed&&P.payload.reversed)).pipe((0,b.U)(_e=>(this.logger.info(_e),this.store.dispatch((0,k.PC)({payload:{action:"FetchInvoices",status:D.Bn.COMPLETED}})),P.payload.reversed&&!P.payload.index_offset&&(_e.total_invoices=+(_e.last_index_offset||0)),{type:D.uR.SET_INVOICES_LND,payload:_e})),(0,d.K)(_e=>(this.handleErrorWithoutAlert("FetchInvoices",D.m6.NO_SPINNER,"Fetching Invoices Failed.",_e),(0,f.of)({type:D.pg.VOID})))))))),this.transactionsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_TRANSACTIONS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchTransactions",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.TRANSACTIONS_API))),(0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchTransactions",status:D.Bn.COMPLETED}})),{type:D.uR.SET_TRANSACTIONS_LND,payload:P||[]})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchTransactions",D.m6.NO_SPINNER,"Fetching Transactions Failed.",P),(0,f.of)({type:D.pg.VOID}))))),this.utxosFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_UTXOS_LND),(0,N.M)(this.store.select(S.Q5)),(0,M.z)(([P,H])=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchUTXOs",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.WALLET_API+"/getUTXOs?max_confs="+(H&&H.block_height?H.block_height:1e9)))),(0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchUTXOs",status:D.Bn.COMPLETED}})),{type:D.uR.SET_UTXOS_LND,payload:P||[]})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchUTXOs",D.m6.NO_SPINNER,"Fetching UTXOs Failed.",P),(0,f.of)({type:D.pg.VOID}))))),this.paymentsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_PAYMENTS_LND),(0,M.z)(P=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPayments",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PAYMENTS_API+"?max_payments="+(P.payload.max_payments?P.payload.max_payments:100)+"&index_offset="+(P.payload.index_offset?P.payload.index_offset:0)+"&reversed="+(!!P.payload.reversed&&P.payload.reversed)).pipe((0,b.U)(_e=>(this.logger.info(_e),this.store.dispatch((0,k.PC)({payload:{action:"FetchPayments",status:D.Bn.COMPLETED}})),{type:D.uR.SET_PAYMENTS_LND,payload:_e})),(0,d.K)(_e=>(this.handleErrorWithoutAlert("FetchPayments",D.m6.NO_SPINNER,"Fetching Payments Failed.",_e),(0,f.of)({type:D.uR.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SEND_PAYMENT_LND),(0,M.z)(P=>{this.store.dispatch((0,L.ac)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:D.Bn.INITIATED}}));const H={};return H.paymentReq=P.payload.paymentReq,P.payload.paymentAmount&&(H.paymentAmount=P.payload.paymentAmount),P.payload.outgoingChannel&&(H.outgoingChannel=P.payload.outgoingChannel.chan_id),P.payload.allowSelfPayment&&(H.allowSelfPayment=P.payload.allowSelfPayment),P.payload.lastHopPubkey&&(H.lastHopPubkey=P.payload.lastHopPubkey),P.payload.feeLimitType&&P.payload.feeLimitType!==D.Vc[0].id&&(H.feeLimit={},H.feeLimit[P.payload.feeLimitType]=P.payload.feeLimit),this.httpClient.post(this.CHILD_API_URL+h.NZ.CHANNELS_API+"/transactions",H).pipe((0,b.U)(q=>{if(this.logger.info(q),this.store.dispatch((0,L.uO)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:D.Bn.COMPLETED}})),q.payment_error)return P.payload.allowSelfPayment?(this.store.dispatch((0,k.WM)({payload:{num_max_invoices:D.IV,reversed:!0}})),{type:D.uR.SEND_PAYMENT_STATUS_LND,payload:q}):(P.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",q.payment_error):this.handleErrorWithAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/transactions",q.payment_error),{type:D.pg.VOID});if(this.store.dispatch((0,L.uO)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.cQ)({payload:{max_payments:D.IV,reversed:!0}})),P.payload.allowSelfPayment)this.store.dispatch((0,k.WM)({payload:{num_max_invoices:D.IV,reversed:!0}}));else{let he="Payment Sent Successfully.";q.payment_route&&q.payment_route.total_fees_msat&&(he="Payment sent successfully with the total fee "+q.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,L.jW)({payload:he}))}return{type:D.uR.SEND_PAYMENT_STATUS_LND,payload:q}}),(0,d.K)(q=>(this.logger.error("Error: "+JSON.stringify(q)),P.payload.allowSelfPayment?(this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",q),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:D.IV,reversed:!0}})),(0,f.of)({type:D.uR.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(q)}})):(P.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",q):this.handleErrorWithAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+h.NZ.CHANNELS_API+"/transactions",q),(0,f.of)({type:D.pg.VOID})))))}))),this.graphNodeFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.FETCH_GRAPH_NODE_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.GET_NODE_ADDRESS})),this.store.dispatch((0,k.PC)({payload:{action:"FetchGraphNode",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/node/"+P.payload.pubkey).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.GET_NODE_ADDRESS})),this.store.dispatch((0,k.PC)({payload:{action:"FetchGraphNode",status:D.Bn.COMPLETED}})),{type:D.uR.SET_GRAPH_NODE_LND,payload:H&&H.node?{node:H.node}:{node:null}})),(0,d.K)(H=>(this.handleErrorWithoutAlert("FetchGraphNode",D.m6.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.setGraphNode=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_GRAPH_NODE_LND),(0,b.U)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.getNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_NEW_ADDRESS_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NEW_ADDRESS_API+"?type="+P.payload.addressId).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.GENERATE_NEW_ADDRESS})),{type:D.uR.SET_NEW_ADDRESS_LND,payload:H&&H.address?H.address:{}})),(0,d.K)(H=>(this.handleErrorWithAlert("GetNewAddress",D.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+h.NZ.NEW_ADDRESS_API+"?type="+P.payload.addressId,H),(0,f.of)({type:D.pg.VOID})))))))),this.setNewAddress=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_NEW_ADDRESS_LND),(0,b.U)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_CHANNEL_TRANSACTION_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.SEND_FUNDS})),this.store.dispatch((0,k.PC)({payload:{action:"SetChannelTransaction",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.TRANSACTIONS_API,{amount:P.payload.amount,address:P.payload.address,sendAll:P.payload.sendAll,fees:P.payload.fees,blocks:P.payload.blocks}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"SetChannelTransaction",status:D.Bn.COMPLETED}})),this.store.dispatch((0,L.uO)({payload:D.m6.SEND_FUNDS})),this.store.dispatch((0,k.mC)()),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),{type:D.uR.SET_CHANNEL_TRANSACTION_RES_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithoutAlert("SetChannelTransaction",D.m6.SEND_FUNDS,"Sending Fund Failed.",H),(0,f.of)({type:D.pg.VOID})))))))),this.fetchForwardingHistory=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_FORWARDING_HISTORY_LND),(0,M.z)(P=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchForwardingHistory",status:D.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+h.NZ.SWITCH_API,{num_max_events:P.payload.num_max_events,index_offset:P.payload.index_offset,end_time:P.payload.end_time,start_time:P.payload.start_time}).pipe((0,b.U)(q=>(this.logger.info(q),this.store.dispatch((0,k.PC)({payload:{action:"FetchForwardingHistory",status:D.Bn.COMPLETED}})),{type:D.uR.SET_FORWARDING_HISTORY_LND,payload:q})),(0,d.K)(q=>(this.handleErrorWithAlert("FetchForwardingHistory",D.m6.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+h.NZ.SWITCH_API,q),(0,f.of)({type:D.pg.VOID})))))))),this.queryRoutesFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_QUERY_ROUTES_LND),(0,M.z)(P=>{let H=this.CHILD_API_URL+h.NZ.NETWORK_API+"/routes/"+P.payload.destPubkey+"/"+P.payload.amount;return P.payload.outgoingChanId&&(H=H+"?outgoing_chan_id="+P.payload.outgoingChanId),this.httpClient.get(H).pipe((0,b.U)(q=>(this.logger.info(q),{type:D.uR.SET_QUERY_ROUTES_LND,payload:q})),(0,d.K)(q=>(this.store.dispatch((0,k.kL)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",D.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+h.NZ.NETWORK_API,q),(0,f.of)({type:D.pg.VOID}))))}))),this.setQueryRoutes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_QUERY_ROUTES_LND),(0,b.U)(P=>P.payload)),{dispatch:!1}),this.genSeed=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GEN_SEED_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+h.NZ.WALLET_API+"/genseed/"+P.payload).pipe((0,b.U)(H=>(this.logger.info("Generated GenSeed!"),this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.GEN_SEED})),{type:D.uR.GEN_SEED_RESPONSE_LND,payload:H.cipher_seed_mnemonic})),(0,d.K)(H=>(this.handleErrorWithAlert("GenSeed",D.m6.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+h.NZ.WALLET_API+"/genseed/"+P.payload,H),(0,f.of)({type:D.pg.VOID})))))))),this.updateSelNodeOptions=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.pg.UPDATE_SELECTED_NODE_OPTIONS),(0,M.z)(()=>this.httpClient.get(this.CHILD_API_URL+h.NZ.WALLET_API+"/updateSelNodeOptions").pipe((0,b.U)(P=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(P),{type:D.pg.VOID})),(0,d.K)(P=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",D.m6.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",P),(0,f.of)({type:D.pg.VOID}))))))),this.genSeedResponse=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GEN_SEED_RESPONSE_LND),(0,b.U)(P=>P.payload)),{dispatch:!1}),this.initWalletRes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.INIT_WALLET_RESPONSE_LND),(0,b.U)(P=>P.payload)),{dispatch:!1}),this.initWallet=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.INIT_WALLET_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+h.NZ.WALLET_API+"/wallet/initwallet",{wallet_password:P.payload.pwd,cipher_seed_mnemonic:P.payload.cipher?P.payload.cipher:"",aezeed_passphrase:P.payload.passphrase?P.payload.passphrase:""}).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.INITIALIZE_WALLET})),{type:D.uR.INIT_WALLET_RESPONSE_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithAlert("InitWallet",D.m6.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+h.NZ.WALLET_API+"/initwallet",H),(0,f.of)({type:D.pg.VOID})))))))),this.unlockWallet=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.UNLOCK_WALLET_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+h.NZ.WALLET_API+"/wallet/unlockwallet",{wallet_password:P.payload.pwd}).pipe((0,b.U)(H=>(this.logger.info(H),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,L.uO)({payload:D.m6.UNLOCK_WALLET})),this.store.dispatch((0,L.ac)({payload:D.m6.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,L.uO)({payload:D.m6.WAIT_SYNC_NODE})),this.store.dispatch((0,k.sQ)({payload:{loadPage:"HOME"}}))},5e3),{type:D.pg.VOID})),(0,d.K)(H=>(this.handleErrorWithAlert("UnlockWallet",D.m6.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+h.NZ.WALLET_API+"/unlockwallet",H),(0,f.of)({type:D.pg.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.PEER_LOOKUP_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.SEARCHING_NODE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/node/"+P.payload).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.SEARCHING_NODE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),{type:D.uR.SET_LOOKUP_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithAlert("Lookup",D.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+h.NZ.NETWORK_API+"/node/"+P.payload,H),(0,f.of)({type:D.pg.VOID})))))))),this.channelLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.CHANNEL_LOOKUP_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.NETWORK_API+"/edge/"+P.payload.channelID).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:P.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),{type:D.uR.SET_LOOKUP_LND,payload:H})),(0,d.K)(H=>(this.handleErrorWithAlert("Lookup",P.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+h.NZ.NETWORK_API+"/edge/"+P.payload.channelID,H),(0,f.of)({type:D.pg.VOID})))))))),this.invoiceLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.INVOICE_LOOKUP_LND),(0,M.z)(P=>{this.store.dispatch((0,L.ac)({payload:D.m6.SEARCHING_INVOICE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}}));let H=this.CHILD_API_URL+h.NZ.INVOICES_API+"/lookup";return H=P.payload.paymentAddress&&""!==P.payload.paymentAddress?H+"?payment_addr="+P.payload.paymentAddress:H+"?payment_hash="+P.payload.paymentHash,this.httpClient.get(H).pipe((0,b.U)(q=>(this.logger.info(q),this.store.dispatch((0,L.uO)({payload:D.m6.SEARCHING_INVOICE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.aL)({payload:q})),{type:D.uR.SET_LOOKUP_LND,payload:q})),(0,d.K)(q=>(this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.ERROR}})),this.handleErrorWithoutAlert("Lookup",D.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",q),P.payload.openSnackBar&&this.store.dispatch((0,L.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,f.of)({type:D.uR.SET_LOOKUP_LND,payload:{error:q}}))))}))),this.paymentLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.PAYMENT_LOOKUP_LND),(0,M.z)(P=>(this.store.dispatch((0,L.ac)({payload:D.m6.SEARCHING_PAYMENT})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PAYMENTS_API+"/lookup/"+P.payload).pipe((0,b.U)(H=>(this.logger.info(H),this.store.dispatch((0,L.uO)({payload:D.m6.SEARCHING_PAYMENT})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.COMPLETED}})),this.store.dispatch((0,k.qY)({payload:H})),{type:D.uR.SET_LOOKUP_LND,payload:H})),(0,d.K)(H=>(this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:D.Bn.ERROR}})),this.handleErrorWithoutAlert("Lookup",D.m6.SEARCHING_PAYMENT,"Payment Lookup Failed",H),(0,f.of)({type:D.uR.SET_LOOKUP_LND,payload:{error:H}})))))))),this.setLookup=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_LOOKUP_LND),(0,b.U)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.RESTORE_CHANNELS_LIST_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannelsList",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API+"/restore/list").pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannelsList",status:D.Bn.COMPLETED}})),{type:D.uR.SET_RESTORE_CHANNELS_LIST_LND,payload:P||{all_restore_exists:!1,files:[]}})),(0,d.K)(P=>(this.handleErrorWithAlert("RestoreChannelsList",D.m6.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+h.NZ.CHANNELS_BACKUP_API,P),(0,f.of)({type:D.pg.VOID})))))))),this.setRestoreChannelList=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.SET_RESTORE_CHANNELS_LIST_LND),(0,b.U)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(D.uR.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,M.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchLightningTransactions",status:D.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+h.NZ.PAYMENTS_API+"/alltransactions").pipe((0,b.U)(P=>(this.logger.info(P),this.store.dispatch((0,k.PC)({payload:{action:"FetchLightningTransactions",status:D.Bn.COMPLETED}})),{type:D.uR.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:P})),(0,d.K)(P=>(this.handleErrorWithoutAlert("FetchLightningTransactions",D.m6.NO_SPINNER,"Fetching All Lightning Transaction Failed.",P),(0,f.of)({type:D.pg.VOID})))))))),this.store.select(S.yA).pipe((0,a.R)(this.unSubs[0])).subscribe(P=>{P.FetchInfo.status!==D.Bn.COMPLETED&&P.FetchInfo.status!==D.Bn.ERROR||P.FetchFees.status!==D.Bn.COMPLETED&&P.FetchFees.status!==D.Bn.ERROR||P.FetchBalanceBlockchain.status!==D.Bn.COMPLETED&&P.FetchBalanceBlockchain.status!==D.Bn.ERROR||P.FetchAllChannels.status!==D.Bn.COMPLETED&&P.FetchAllChannels.status!==D.Bn.ERROR||P.FetchPendingChannels.status!==D.Bn.COMPLETED&&P.FetchPendingChannels.status!==D.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,L.uO)({payload:D.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,a.R)(this.unSubs[1])).subscribe(P=>{this.logger.info("Received new message from the service: "+JSON.stringify(P)),P&&(P.type===D.g8.INVOICE?(this.logger.info(P),P&&P.result&&P.result.payment_request&&this.store.dispatch((0,k.aL)({payload:P.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(P)))})}initializeRemainingData(r,u){this.sessionService.setItem("lndUnlocked","true");const c={identity_pubkey:r.identity_pubkey,alias:r.alias,testnet:r.testnet,chains:r.chains,uris:r.uris,version:r.version?r.version.split(" ")[0]:""};this.store.dispatch((0,L.ac)({payload:D.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,L._V)({payload:c}));let _=this.location.path();_.includes("/cln/")?_=null==_?void 0:_.replace("/cln/","/lnd/"):_.includes("/ecl/")&&(_=null==_?void 0:_.replace("/ecl/","/lnd/")),(_.includes("/unlock")||_.includes("/login")||_.includes("/error")||""===_||"HOME"===u||_.includes("?access-key="))&&(_="/lnd/home"),this.router.navigate([_]),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Z7)()),this.store.dispatch((0,k.Zh)()),this.store.dispatch((0,k.$W)()),this.store.dispatch((0,k.Rv)()),this.store.dispatch((0,k.SN)()),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:10,reversed:!0}})),this.store.dispatch((0,k.cQ)({payload:{max_payments:1e5,reversed:!0}}))}handleErrorWithoutAlert(r,u,c,_){this.logger.error("ERROR IN: "+r+"\n"+JSON.stringify(_)),401===_.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,L.ts)()),this.store.dispatch((0,L.kS)()),this.store.dispatch((0,L.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,L.uO)({payload:u})),this.store.dispatch((0,k.PC)({payload:{action:r,status:D.Bn.ERROR,statusCode:_.status.toString(),message:this.commonService.extractErrorMessage(_,c)}})))}handleErrorWithAlert(r,u,c,_,E){if(this.logger.error(E),401===E.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,L.ts)()),this.store.dispatch((0,L.kS)()),this.store.dispatch((0,L.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,L.uO)({payload:u}));const I=this.commonService.extractErrorMessage(E);this.store.dispatch((0,L.qR)({payload:{data:{type:"ERROR",alertTitle:c,message:{code:E.status,message:I,URL:_},component:w.H}}})),this.store.dispatch((0,k.PC)({payload:{action:r,status:D.Bn.ERROR,statusCode:E.status.toString(),message:I,URL:_}}))}}ngOnDestroy(){this.unSubs.forEach(r=>{r.next(null),r.complete()})}}return y.\u0275fac=function(r){return new(r||y)(U.LFG(t.eX),U.LFG(Z.eN),U.LFG(Y.yh),U.LFG(ne.mQ),U.LFG($.v),U.LFG(de.m),U.LFG(te.uw),U.LFG(ie.F0),U.LFG(oe.d),U.LFG(X.Ye))},y.\u0275prov=U.Yz7({token:y,factory:y.\u0275fac}),y})()},6529:(Ve,j,p)=>{"use strict";p.d(j,{$k:()=>f,Bo:()=>d,Ef:()=>D,JG:()=>h,N7:()=>$,P2:()=>U,PP:()=>N,Q5:()=>M,T4:()=>ne,Wi:()=>A,ZW:()=>L,_f:()=>te,bx:()=>ie,dx:()=>w,l5:()=>de,ni:()=>S,qU:()=>Z,yA:()=>b});var t=p(5620);const e=(0,t.ZF)("lnd"),f=(0,t.P1)(e,oe=>oe.nodeSettings),M=(0,t.P1)(e,oe=>oe.information),b=((0,t.P1)(e,oe=>({information:oe.information,apiCallStatus:oe.apisCallStatus.FetchInfo})),(0,t.P1)(e,oe=>oe.apisCallStatus)),d=(0,t.P1)(e,oe=>({forwardingHistory:oe.forwardingHistory,apiCallStatus:oe.apisCallStatus.FetchForwardingHistory})),N=(0,t.P1)(e,oe=>({listPayments:oe.listPayments,apiCallStatus:oe.apisCallStatus.FetchPayments})),h=(0,t.P1)(e,oe=>({fees:oe.fees,apiCallStatus:oe.apisCallStatus.FetchFees})),A=(0,t.P1)(e,oe=>({peers:oe.peers,apiCallStatus:oe.apisCallStatus.FetchPeers})),w=(0,t.P1)(e,oe=>({transactions:oe.transactions,apiCallStatus:oe.apisCallStatus.FetchTransactions})),D=(0,t.P1)(e,oe=>({listInvoices:oe.listInvoices,apiCallStatus:oe.apisCallStatus.FetchInvoices})),L=(0,t.P1)(e,oe=>({channels:oe.channels,channelsSummary:oe.channelsSummary,lightningBalance:oe.lightningBalance,apiCallStatus:oe.apisCallStatus.FetchAllChannels})),S=((0,t.P1)(e,oe=>({channelsSummary:oe.channelsSummary,pendingChannels:oe.pendingChannels,closedChannels:oe.closedChannels,apiCallStatus:oe.apisCallStatus.FetchAllChannels})),(0,t.P1)(e,oe=>({pendingChannels:oe.pendingChannels,pendingChannelsSummary:oe.pendingChannelsSummary,apiCallStatus:oe.apisCallStatus.FetchPendingChannels}))),U=(0,t.P1)(e,oe=>({closedChannels:oe.closedChannels,apiCallStatus:oe.apisCallStatus.FetchClosedChannels})),Z=(0,t.P1)(e,oe=>({blockchainBalance:oe.blockchainBalance,apiCallStatus:oe.apisCallStatus.FetchBalanceBlockchain})),ne=((0,t.P1)(e,oe=>({lightningBalance:oe.lightningBalance,apiCallStatus:oe.apisCallStatus.FetchAllChannels})),(0,t.P1)(e,oe=>({utxos:oe.utxos,apiCallStatus:oe.apisCallStatus.FetchUTXOs}))),$=(0,t.P1)(e,oe=>({networkInfo:oe.networkInfo,apiCallStatus:oe.apisCallStatus.FetchNetwork})),de=(0,t.P1)(e,oe=>({allLightningTransactions:oe.allLightningTransactions,apiCallStatus:oe.apisCallStatus.FetchLightningTransactions})),te=(0,t.P1)(e,oe=>({channels:oe.channels,pendingChannels:oe.pendingChannels,closedChannels:oe.closedChannels})),ie=(0,t.P1)(e,oe=>({information:oe.information,nodeSettings:oe.nodeSettings,apiCallStatus:oe.apisCallStatus.FetchInfo}))},8627:(Ve,j,p)=>{"use strict";p.d(j,{v:()=>ee});var t=p(8966),e=p(801),f=p(7579),M=p(2722),a=p(7731),b=p(6529),d=p(5e3),N=p(5043),h=p(62),A=p(7261),w=p(5620),D=p(7093),L=p(9808),k=p(3322),S=p(159),U=p(9224),Z=p(9444),Y=p(7423),ne=p(4834),$=p(8129),de=p(773),te=p(1125),ie=p(7238),oe=p(5245),X=p(3390),me=p(6895);const y=["scrollContainer"];function i(ue,Ce){if(1&ue&&d._UZ(0,"qr-code",32),2&ue){const Le=d.oxw();d.Q6J("value",null==Le.invoice?null:Le.invoice.payment_request)("size",Le.qrWidth)("errorCorrectionLevel","L")}}function r(ue,Ce){1&ue&&(d.TgZ(0,"span",33),d._uU(1,"N/A"),d.qZA())}function u(ue,Ce){if(1&ue&&d._UZ(0,"qr-code",32),2&ue){const Le=d.oxw();d.Q6J("value",null==Le.invoice?null:Le.invoice.payment_request)("size",Le.qrWidth)("errorCorrectionLevel","L")}}function c(ue,Ce){1&ue&&(d.TgZ(0,"span",34),d._uU(1,"QR Code Not Applicable"),d.qZA())}function _(ue,Ce){1&ue&&d._UZ(0,"mat-divider",22),2&ue&&d.Q6J("inset",!0)}function E(ue,Ce){1&ue&&(d.ynx(0),d._uU(1," (zero amount) "),d.BQk())}function I(ue,Ce){1&ue&&d._UZ(0,"span",40)}const v=function(){return[]};function n(ue,Ce){if(1&ue&&(d.TgZ(0,"div",36)(1,"div",37)(2,"span",38),d._uU(3),d.ALo(4,"number"),d.qZA(),d.YNc(5,I,1,0,"span",39),d.qZA()()),2&ue){const Le=d.oxw(2);d.xp6(3),d.hij("",d.lcZ(4,2,null==Le.invoice?null:Le.invoice.amt_paid_sat)," Sats"),d.xp6(2),d.Q6J("ngForOf",d.DdM(4,v).constructor(35))}}function C(ue,Ce){if(1&ue&&(d.TgZ(0,"div"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&ue){const Le=d.oxw(2);d.xp6(1),d.hij("",d.lcZ(2,1,null==Le.invoice?null:Le.invoice.amt_paid_sat)," Sats")}}function B(ue,Ce){if(1&ue&&(d.ynx(0),d.YNc(1,n,6,5,"div",35),d.YNc(2,C,3,3,"div",21),d.BQk()),2&ue){const Le=d.oxw();d.xp6(1),d.Q6J("ngIf",Le.flgInvoicePaid),d.xp6(1),d.Q6J("ngIf",!Le.flgInvoicePaid)}}function P(ue,Ce){1&ue&&(d.TgZ(0,"span"),d._uU(1,"-"),d.qZA())}function H(ue,Ce){1&ue&&d._UZ(0,"mat-spinner",42),2&ue&&d.Q6J("diameter",20)}function q(ue,Ce){if(1&ue&&(d.ynx(0),d.YNc(1,P,2,0,"span",21),d.YNc(2,H,1,1,"mat-spinner",41),d.BQk()),2&ue){const Le=d.oxw();d.xp6(1),d.Q6J("ngIf","OPEN"!==(null==Le.invoice?null:Le.invoice.state)||!Le.flgVersionCompatible),d.xp6(1),d.Q6J("ngIf","OPEN"===(null==Le.invoice?null:Le.invoice.state)&&Le.flgVersionCompatible)}}const he=function(ue){return{"mr-0":ue}};function _e(ue,Ce){if(1&ue&&d._UZ(0,"span",59),2&ue){const Le=d.oxw(4);d.Q6J("ngClass",d.VKq(1,he,Le.screenSize===Le.screenSizeEnum.XS))}}function Ne(ue,Ce){if(1&ue&&d._UZ(0,"span",60),2&ue){const Le=d.oxw(4);d.Q6J("ngClass",d.VKq(1,he,Le.screenSize===Le.screenSizeEnum.XS))}}function we(ue,Ce){if(1&ue&&d._UZ(0,"span",61),2&ue){const Le=d.oxw(4);d.Q6J("ngClass",d.VKq(1,he,Le.screenSize===Le.screenSizeEnum.XS))}}function Q(ue,Ce){if(1&ue&&(d.TgZ(0,"div",48)(1,"div",53)(2,"span",54),d.YNc(3,_e,1,3,"span",55),d.YNc(4,Ne,1,3,"span",56),d.YNc(5,we,1,3,"span",57),d._uU(6),d.qZA(),d.TgZ(7,"span",58),d._uU(8),d.ALo(9,"number"),d.qZA()(),d._UZ(10,"mat-divider",22),d.qZA()),2&ue){const Le=Ce.$implicit,ut=d.oxw(3);d.xp6(3),d.Q6J("ngIf","SETTLED"===Le.state),d.xp6(1),d.Q6J("ngIf","ACCEPTED"===Le.state),d.xp6(1),d.Q6J("ngIf","CANCELED"===Le.state),d.xp6(1),d.hij(" ",Le.chan_id," "),d.xp6(2),d.Oqu(d.xi3(9,6,+Le.amt_msat/1e3||0,ut.getDecimalFormat(Le))),d.xp6(2),d.Q6J("inset",!0)}}function Ue(ue,Ce){if(1&ue){const Le=d.EpF();d.TgZ(0,"div",17)(1,"mat-expansion-panel",46),d.NdJ("opened",function(){return d.CHM(Le),d.oxw(2).flgOpened=!0})("closed",function(){return d.CHM(Le),d.oxw(2).onExpansionClosed()}),d.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",47),d._uU(5,"HTLCs"),d.qZA()()(),d.TgZ(6,"div",48)(7,"div",49)(8,"span",50),d._uU(9,"Channel ID"),d.qZA(),d.TgZ(10,"span",51),d._uU(11,"Amount (Sats)"),d.qZA()(),d._UZ(12,"mat-divider",22),d.YNc(13,Q,11,9,"div",52),d.qZA()()()}if(2&ue){const Le=d.oxw(2);d.xp6(12),d.Q6J("inset",!0),d.xp6(1),d.Q6J("ngForOf",null==Le.invoice?null:Le.invoice.htlcs)}}function ve(ue,Ce){1&ue&&d._UZ(0,"mat-divider",22),2&ue&&d.Q6J("inset",!0)}function V(ue,Ce){if(1&ue&&(d.TgZ(0,"div"),d._UZ(1,"mat-divider",22),d.TgZ(2,"div",17)(3,"div",23)(4,"h4",19),d._uU(5,"Preimage"),d.qZA(),d.TgZ(6,"span",24),d._uU(7),d.qZA()()(),d._UZ(8,"mat-divider",22),d.TgZ(9,"div",17)(10,"div",43)(11,"h4",19),d._uU(12,"State"),d.qZA(),d.TgZ(13,"span",24),d._uU(14),d.qZA()(),d.TgZ(15,"div",44)(16,"h4",19),d._uU(17,"Expiry"),d.qZA(),d.TgZ(18,"span",24),d._uU(19),d.qZA()(),d.TgZ(20,"div",44)(21,"h4",19),d._uU(22,"Private Routing Hints"),d.qZA(),d.TgZ(23,"span",24),d._uU(24),d.qZA()()(),d._UZ(25,"mat-divider",22),d.YNc(26,Ue,14,2,"div",45),d.YNc(27,ve,1,1,"mat-divider",14),d.qZA()),2&ue){const Le=d.oxw();d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu((null==Le.invoice?null:Le.invoice.r_preimage)||"-"),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu(null==Le.invoice?null:Le.invoice.state),d.xp6(5),d.Oqu(null==Le.invoice?null:Le.invoice.expiry),d.xp6(5),d.Oqu(null!=Le.invoice&&Le.invoice.private?"Yes":"No"),d.xp6(1),d.Q6J("inset",!0),d.xp6(1),d.Q6J("ngIf",(null==Le.invoice?null:Le.invoice.htlcs)&&(null==Le.invoice?null:Le.invoice.htlcs.length)>0),d.xp6(1),d.Q6J("ngIf",(null==Le.invoice?null:Le.invoice.htlcs)&&(null==Le.invoice?null:Le.invoice.htlcs.length)>0)}}function De(ue,Ce){if(1&ue){const Le=d.EpF();d.TgZ(0,"div",62)(1,"button",63),d.NdJ("click",function(){return d.CHM(Le),d.oxw().onScrollDown()}),d.TgZ(2,"mat-icon",64),d._uU(3,"arrow_downward"),d.qZA()()()}}function dt(ue,Ce){1&ue&&(d.TgZ(0,"p"),d._uU(1,"Show Advanced"),d.qZA())}function Ie(ue,Ce){1&ue&&(d.TgZ(0,"p"),d._uU(1,"Hide Advanced"),d.qZA())}function Ae(ue,Ce){if(1&ue){const Le=d.EpF();d.TgZ(0,"button",65),d.NdJ("copied",function(ht){return d.CHM(Le),d.oxw().onCopyPayment(ht)}),d._uU(1),d.qZA()}if(2&ue){const Le=d.oxw();d.Q6J("payload",null==Le.invoice?null:Le.invoice.payment_request),d.xp6(1),d.Oqu(Le.screenSize===Le.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function le(ue,Ce){if(1&ue){const Le=d.EpF();d.TgZ(0,"button",66),d.NdJ("click",function(){return d.CHM(Le),d.oxw().onClose()}),d._uU(1,"OK"),d.qZA()}}const Te=function(ue){return{"display-none":ue}},xe=function(ue){return{"xs-scroll-y":ue}},W=function(ue){return{"h-50":ue}};let ee=(()=>{class ue{constructor(Le,ut,ht,It,ui,Wt){this.dialogRef=Le,this.data=ut,this.logger=ht,this.commonService=It,this.snackBar=ui,this.store=Wt,this.faReceipt=e.dLy,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=a.cu,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}set container(Le){Le&&(this.scrollContainer=Le)}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===a.cu.XS&&(this.qrWidth=220),this.store.select(b.Q5).pipe((0,M.R)(this.unSubs[0])).subscribe(ut=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ut.version,"0.11.0")});const Le=JSON.parse(JSON.stringify(this.invoice));this.store.select(b.Ef).pipe((0,M.R)(this.unSubs[1])).subscribe(ut=>{var ht,It,ui;const Wt=null===(ht=this.invoice)||void 0===ht?void 0:ht.state,hi=(ut.listInvoices.invoices||[]).find(xt=>xt.r_hash===Le.r_hash)||null;this.invoice=hi,Wt!==(null===(It=this.invoice)||void 0===It?void 0:It.state)&&"SETTLED"===(null===(ui=this.invoice)||void 0===ui?void 0:ui.state)&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ut)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced,this.flgOpened=!1}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+60}onExpansionClosed(){this.flgOpened=!1,this.scrollContainer.nativeElement.scrollTop=0}onCopyPayment(Le){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+Le)}getDecimalFormat(Le){return Le.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(Le=>{Le.next(null),Le.complete()})}}return ue.\u0275fac=function(Le){return new(Le||ue)(d.Y36(t.so),d.Y36(t.WI),d.Y36(N.mQ),d.Y36(h.v),d.Y36(A.ux),d.Y36(w.yh))},ue.\u0275cmp=d.Xpm({type:ue,selectors:[["rtl-invoice-information"]],viewQuery:function(Le,ut){if(1&Le&&d.Gf(y,5),2&Le){let ht;d.iGM(ht=d.CRH())&&(ut.container=ht.first)}},decls:78,vars:49,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar","ngClass"],["scrollContainer",""],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Le,ut){if(1&Le&&(d.TgZ(0,"div",0)(1,"div",1),d.YNc(2,i,1,3,"qr-code",2),d.YNc(3,r,2,0,"span",3),d.qZA(),d.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),d._UZ(7,"fa-icon",7),d.TgZ(8,"span",8),d._uU(9),d.qZA()(),d.TgZ(10,"button",9),d.NdJ("click",function(){return ut.onClose()}),d._uU(11,"X"),d.qZA()(),d.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),d.YNc(15,u,1,3,"qr-code",2),d.YNc(16,c,2,0,"span",13),d.qZA(),d.YNc(17,_,1,1,"mat-divider",14),d.TgZ(18,"div",15,16)(20,"div",17)(21,"div",18)(22,"h4",19),d._uU(23),d.qZA(),d.TgZ(24,"span",20),d._uU(25),d.ALo(26,"number"),d.YNc(27,E,2,0,"ng-container",21),d.qZA()(),d.TgZ(28,"div",18)(29,"h4",19),d._uU(30,"Amount Settled"),d.qZA(),d.TgZ(31,"span",20),d.YNc(32,B,3,2,"ng-container",21),d.YNc(33,q,3,2,"ng-container",21),d.qZA()()(),d._UZ(34,"mat-divider",22),d.TgZ(35,"div",17)(36,"div",18)(37,"h4",19),d._uU(38,"Date Created"),d.qZA(),d.TgZ(39,"span",20),d._uU(40),d.ALo(41,"date"),d.qZA()(),d.TgZ(42,"div",18)(43,"h4",19),d._uU(44,"Date Settled"),d.qZA(),d.TgZ(45,"span",20),d._uU(46),d.ALo(47,"date"),d.qZA()()(),d._UZ(48,"mat-divider",22),d.TgZ(49,"div",17)(50,"div",23)(51,"h4",19),d._uU(52,"Memo"),d.qZA(),d.TgZ(53,"span",20),d._uU(54),d.qZA()()(),d._UZ(55,"mat-divider",22),d.TgZ(56,"div",17)(57,"div",23)(58,"h4",19),d._uU(59,"Payment Request"),d.qZA(),d.TgZ(60,"span",24),d._uU(61),d.qZA()()(),d._UZ(62,"mat-divider",22),d.TgZ(63,"div",17)(64,"div",23)(65,"h4",19),d._uU(66,"Payment Hash"),d.qZA(),d.TgZ(67,"span",24),d._uU(68),d.qZA()()(),d.YNc(69,V,28,9,"div",21),d.qZA()()(),d.YNc(70,De,4,0,"div",25),d.TgZ(71,"div",26)(72,"button",27),d.NdJ("click",function(){return ut.onShowAdvanced()}),d.YNc(73,dt,2,0,"p",28),d.YNc(74,Ie,2,0,"ng-template",null,29,d.W1O),d.qZA(),d.YNc(76,Ae,2,2,"button",30),d.YNc(77,le,2,0,"button",31),d.qZA()()()),2&Le){const ht=d.MAs(75);d.xp6(1),d.Q6J("fxLayoutAlign",null!=ut.invoice&&ut.invoice.payment_request&&""!==(null==ut.invoice?null:ut.invoice.payment_request)?"center start":"center center")("ngClass",d.VKq(41,Te,ut.screenSize===ut.screenSizeEnum.XS||ut.screenSize===ut.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==ut.invoice?null:ut.invoice.payment_request)&&""!==(null==ut.invoice?null:ut.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",!(null!=ut.invoice&&ut.invoice.payment_request)||""===(null==ut.invoice?null:ut.invoice.payment_request)),d.xp6(4),d.Q6J("icon",ut.faReceipt),d.xp6(2),d.Oqu(ut.screenSize===ut.screenSizeEnum.XS?ut.newlyAdded?"Created":"Invoice":ut.newlyAdded?"Invoice Created":"Invoice Information"),d.xp6(3),d.Q6J("ngClass",d.VKq(43,xe,ut.screenSize===ut.screenSizeEnum.XS)),d.xp6(2),d.Q6J("fxLayoutAlign",null!=ut.invoice&&ut.invoice.payment_request&&""!==(null==ut.invoice?null:ut.invoice.payment_request)?"center start":"center center")("ngClass",d.VKq(45,Te,ut.screenSize!==ut.screenSizeEnum.XS&&ut.screenSize!==ut.screenSizeEnum.SM)),d.xp6(1),d.Q6J("ngIf",(null==ut.invoice?null:ut.invoice.payment_request)&&""!==(null==ut.invoice?null:ut.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",!(null!=ut.invoice&&ut.invoice.payment_request)||""===(null==ut.invoice?null:ut.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",ut.screenSize===ut.screenSizeEnum.XS||ut.screenSize===ut.screenSizeEnum.SM),d.xp6(1),d.Q6J("ngClass",d.VKq(47,W,(null==ut.invoice?null:ut.invoice.htlcs)&&(null==ut.invoice?null:ut.invoice.htlcs.length)>0&&ut.showAdvanced)),d.xp6(5),d.Oqu(ut.screenSize===ut.screenSizeEnum.XS?"Amount":"Amount Requested"),d.xp6(2),d.hij("",d.lcZ(26,33,(null==ut.invoice?null:ut.invoice.value)||0)," Sats"),d.xp6(2),d.Q6J("ngIf",!(null!=ut.invoice&&ut.invoice.value)||"0"===(null==ut.invoice?null:ut.invoice.value)),d.xp6(5),d.Q6J("ngIf",(null==ut.invoice?null:ut.invoice.amt_paid_sat)&&"OPEN"!==(null==ut.invoice?null:ut.invoice.state)),d.xp6(1),d.Q6J("ngIf",!(null!=ut.invoice&&ut.invoice.amt_paid_sat)||"0"===(null==ut.invoice?null:ut.invoice.amt_paid_sat)),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu(d.xi3(41,35,1e3*(null==ut.invoice?null:ut.invoice.creation_date),"dd/MMM/y HH:mm")),d.xp6(6),d.Oqu(0!=+(null==ut.invoice?null:ut.invoice.settle_date)?d.xi3(47,38,1e3*+(null==ut.invoice?null:ut.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),d.xp6(2),d.Q6J("inset",!0),d.xp6(6),d.Oqu(null==ut.invoice?null:ut.invoice.memo),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu((null==ut.invoice?null:ut.invoice.payment_request)||"N/A"),d.xp6(1),d.Q6J("inset",!0),d.xp6(6),d.Oqu((null==ut.invoice?null:ut.invoice.r_hash)||""),d.xp6(1),d.Q6J("ngIf",ut.showAdvanced),d.xp6(1),d.Q6J("ngIf",(null==ut.invoice?null:ut.invoice.htlcs)&&(null==ut.invoice?null:ut.invoice.htlcs.length)>0&&ut.showAdvanced&&ut.flgOpened),d.xp6(3),d.Q6J("ngIf",!ut.showAdvanced)("ngIfElse",ht),d.xp6(3),d.Q6J("ngIf",(null==ut.invoice?null:ut.invoice.payment_request)&&""!==(null==ut.invoice?null:ut.invoice.payment_request)),d.xp6(1),d.Q6J("ngIf",!(null!=ut.invoice&&ut.invoice.payment_request)||""===(null==ut.invoice?null:ut.invoice.payment_request))}},directives:[D.xw,D.Wh,D.yH,L.mk,k.oO,L.O5,S.uU,U.dk,Z.BN,Y.lW,U.dn,ne.d,$.$V,L.sg,de.Ou,te.ib,te.yz,te.yK,ie.gM,oe.Hw,X.h,me.y],pipes:[L.JJ,L.uU],styles:[""]}),ue})()},7772:(Ve,j,p)=>{"use strict";p.d(j,{J:()=>f,_:()=>e});var t=p(1777);const e=[(0,t.X$)("opacityAnimation",[(0,t.eR)(":enter",[(0,t.oB)({opacity:0}),(0,t.jt)("1000ms ease-in",(0,t.oB)({opacity:1}))]),(0,t.eR)(":leave",[(0,t.jt)("0ms",(0,t.oB)({opacity:0}))])])],f=[(0,t.X$)("fadeIn",[(0,t.eR)("void => *",[]),(0,t.eR)("* => void",[]),(0,t.eR)("* => *",[(0,t.jt)(800,(0,t.F4)([(0,t.oB)({opacity:0,transform:"translateY(100%)"}),(0,t.oB)({opacity:1,transform:"translateY(0%)"})]))])])]},8878:(Ve,j,p)=>{"use strict";p.d(j,{g:()=>e});var t=p(1777);const e=(0,t.X$)("routeAnimation",[(0,t.eR)("* => *",[(0,t.IO)(":enter, :leave",(0,t.oB)({position:"fixed",width:"100%"}),{optional:!0}),(0,t.ru)([(0,t.IO)(":enter",[(0,t.oB)({transform:"translateX(100%)"}),(0,t.jt)("1000ms ease-in-out",(0,t.oB)({transform:"translateX(0%)"}))],{optional:!0}),(0,t.IO)(":leave",[(0,t.oB)({transform:"translateX(0%)"}),(0,t.jt)("1000ms ease-in-out",(0,t.oB)({transform:"translateX(-100%)"}))],{optional:!0})])])])},113:(Ve,j,p)=>{"use strict";p.d(j,{l:()=>e});var t=p(1777);const e=[(0,t.X$)("sliderAnimation",[(0,t.SB)("*",(0,t.oB)({transform:"translateX(0)"})),(0,t.eR)("void => backward",[(0,t.oB)({transform:"translateX(-100%"}),(0,t.jt)("800ms")]),(0,t.eR)("backward => void",[(0,t.jt)("0ms",(0,t.oB)({transform:"translateX(100%)"}))]),(0,t.eR)("void => forward",[(0,t.oB)({transform:"translateX(100%"}),(0,t.jt)("800ms")]),(0,t.eR)("forward => void",[(0,t.jt)("0ms",(0,t.oB)({transform:"translateX(-100%)"}))])])]},1786:(Ve,j,p)=>{"use strict";p.d(j,{H:()=>w});var t=p(8966),e=p(5e3),f=p(5043),M=p(7093),a=p(9224),b=p(7423),d=p(9808),N=p(4834),h=p(3390);function A(D,L){if(1&D&&(e.TgZ(0,"p",14),e._uU(1),e.qZA()),2&D){const k=e.oxw();e.xp6(1),e.Oqu(k.data.titleMessage)}}let w=(()=>{class D{constructor(k,S,U){this.dialogRef=k,this.data=S,this.logger=U,this.errorMessage=""}ngOnInit(){this.errorMessage=this.data.message&&this.data.message.message&&"object"==typeof this.data.message.message?JSON.stringify(this.data.message.message):this.data.message&&this.data.message.message?this.data.message.message:"",!this.data.message&&!this.data.titleMessage&&!this.data.message&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.data.message)}onClose(){this.dialogRef.close(!1)}}return D.\u0275fac=function(k){return new(k||D)(e.Y36(t.so),e.Y36(t.WI),e.Y36(f.mQ))},D.\u0275cmp=e.Xpm({type:D,selectors:[["rtl-error-message"]],decls:29,vars:6,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large","error-alert-block"],["fxLayout","column"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],[1,"word-break"],["fxLayout","row","fxLayoutAlign","end center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","start center",1,"pb-1"]],template:function(k,S){1&k&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return S.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"div",7),e.YNc(10,A,2,1,"p",8),e.TgZ(11,"h4",9),e._uU(12,"Error Code"),e.qZA(),e.TgZ(13,"span"),e._uU(14),e.qZA(),e._UZ(15,"mat-divider",10),e.TgZ(16,"h4",9),e._uU(17,"Error Message"),e.qZA(),e.TgZ(18,"span",11),e._uU(19),e.qZA(),e._UZ(20,"mat-divider",10),e.TgZ(21,"h4",9),e._uU(22,"API URL"),e.qZA(),e.TgZ(23,"span",11),e._uU(24),e.qZA(),e._UZ(25,"mat-divider",10),e.TgZ(26,"div",12)(27,"button",13),e._uU(28,"OK"),e.qZA()()()()()()),2&k&&(e.xp6(5),e.Oqu(S.data.alertTitle||"ERROR"),e.xp6(5),e.Q6J("ngIf",S.data.titleMessage),e.xp6(4),e.Oqu(S.data.message.code),e.xp6(5),e.Oqu(S.errorMessage),e.xp6(5),e.Oqu(S.data.message.URL),e.xp6(3),e.Q6J("mat-dialog-close",!1))},directives:[M.xw,M.yH,a.dk,M.Wh,b.lW,a.dn,d.O5,N.d,h.h,t.ZT],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}),D})()},2615:(Ve,j,p)=>{"use strict";p.d(j,{a:()=>Ui});var t=p(3075),e=p(7579),f=p(2722),M=p(8966),a=p(801),b=p(7772),d=p(7731),N=p(6529),h=p(5e3),A=p(5620),w=p(9107),D=p(9808),L=p(5043),k=p(1402),S=p(62),U=p(7093),Z=p(9224),Y=p(7423),ne=p(5615),$=p(1125),de=p(3322),te=p(5245),ie=p(7238),oe=p(4834);function X(ze,Tt){1&ze&&h.GkF(0)}function me(ze,Tt){1&ze&&h.GkF(0)}const y=function(ze){return{"h-5":ze}};function i(ze,Tt){if(1&ze&&(h.TgZ(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),h._uU(4),h.ALo(5,"number"),h.qZA()()(),h.YNc(6,me,1,0,"ng-container",0),h.qZA()),2&ze){const pe=h.oxw(),je=h.MAs(4);h.Q6J("expanded",pe.panelExpanded)("ngClass",h.VKq(7,y,!pe.flgShowPanel)),h.xp6(4),h.AsE("Quote for ",pe.termCaption," amount (",h.lcZ(5,5,pe.quote.amount)," Sats)"),h.xp6(2),h.Q6J("ngTemplateOutlet",je)}}function r(ze,Tt){if(1&ze&&(h.TgZ(0,"div",19)(1,"h4",8),h._uU(2," Prepay Amount (Sats) "),h.TgZ(3,"mat-icon",20),h._uU(4,"info_outline"),h.qZA()(),h.TgZ(5,"span",10),h._uU(6),h.ALo(7,"number"),h.qZA()()),2&ze){const pe=h.oxw(2);h.xp6(6),h.Oqu(h.lcZ(7,1,null==pe.quote?null:pe.quote.prepay_amt_sat))}}function u(ze,Tt){1&ze&&h._UZ(0,"mat-divider",13)}function c(ze,Tt){if(1&ze&&(h.TgZ(0,"div",6)(1,"div",21)(2,"h4",8),h._uU(3," Swap Server Node Pubkey "),h.TgZ(4,"mat-icon",22),h._uU(5,"info_outline"),h.qZA()(),h.TgZ(6,"span",10),h._uU(7),h.qZA()()()),2&ze){const pe=h.oxw(2);h.xp6(7),h.Oqu(null==pe.quote?null:pe.quote.swap_payment_dest)}}function _(ze,Tt){if(1&ze&&(h.TgZ(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),h._uU(4," Swap Fee (Sats) "),h.TgZ(5,"mat-icon",9),h._uU(6,"info_outline"),h.qZA()(),h.TgZ(7,"span",10),h._uU(8),h.ALo(9,"number"),h.qZA()(),h.TgZ(10,"div",7)(11,"h4",8),h._uU(12),h.TgZ(13,"mat-icon",11),h._uU(14,"info_outline"),h.qZA()(),h.TgZ(15,"span",10),h._uU(16),h.ALo(17,"number"),h.qZA()(),h.YNc(18,r,8,3,"div",12),h.qZA(),h._UZ(19,"mat-divider",13),h.TgZ(20,"div",6)(21,"div",14)(22,"h4",8),h._uU(23," Max Off-chain Swap Routing Fee (Sats) "),h.TgZ(24,"mat-icon",15),h._uU(25,"info_outline"),h.qZA()(),h.TgZ(26,"span",10),h._uU(27),h.ALo(28,"number"),h.qZA()(),h.TgZ(29,"div",14)(30,"h4",8),h._uU(31," Max Off-chain Prepay Routing Fee (Sats) "),h.TgZ(32,"mat-icon",16),h._uU(33,"info_outline"),h.qZA()(),h.TgZ(34,"span",10),h._uU(35,"36"),h.qZA()()(),h.YNc(36,u,1,0,"mat-divider",17),h.YNc(37,c,8,1,"div",18),h.qZA()),2&ze){const pe=h.oxw();h.xp6(2),h.Q6J("fxFlex",null!=pe.quote&&pe.quote.prepay_amt_sat?"30":"50"),h.xp6(6),h.Oqu(h.lcZ(9,9,null==pe.quote?null:pe.quote.swap_fee_sat)),h.xp6(2),h.Q6J("fxFlex",null!=pe.quote&&pe.quote.prepay_amt_sat?"35":"50"),h.xp6(2),h.hij(" ",null!=pe.quote&&pe.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=pe.quote&&pe.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),h.xp6(4),h.Oqu(h.lcZ(17,11,null!=pe.quote&&pe.quote.htlc_sweep_fee_sat?pe.quote.htlc_sweep_fee_sat:null!=pe.quote&&pe.quote.htlc_publish_fee_sat?pe.quote.htlc_publish_fee_sat:0)),h.xp6(2),h.Q6J("ngIf",null==pe.quote?null:pe.quote.prepay_amt_sat),h.xp6(9),h.Oqu(h.lcZ(28,13,(null==pe.quote?null:pe.quote.amount)*((null!=pe.quote&&pe.quote.off_chain_swap_routing_fee_percentage?null==pe.quote?null:pe.quote.off_chain_swap_routing_fee_percentage:2)/100))),h.xp6(9),h.Q6J("ngIf",""!==(null==pe.quote?null:pe.quote.swap_payment_dest)),h.xp6(1),h.Q6J("ngIf",""!==(null==pe.quote?null:pe.quote.swap_payment_dest))}}let E=(()=>{class ze{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275cmp=h.Xpm({type:ze,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},decls:5,vars:1,consts:[[4,"ngTemplateOutlet"],["informationBlock",""],["quoteDetailsBlock",""],["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded","ngClass"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],[3,"fxFlex"],["fxLayoutAlign","start center",1,"font-bold-500"],["matTooltip","Estimated fee charged by the loop server for the swap",1,"info-icon","info-icon-text"],[1,"foreground-secondary-text"],["matTooltip","An estimate of the on-chain fee that needs to be paid to sweep the HTLC",1,"info-icon","info-icon-text"],["fxFlex","35",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","50"],["matTooltip","Maximum off-chain fee that may be paid for routing the payment amount to the server",1,"info-icon","info-icon-text"],["matTooltip","Maximum off-chain fee that may be paid for routing the pre-payment amount to the server","matTooltipPosition","before",1,"info-icon","info-icon-text"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxFlex","35"],["matTooltip","The part of the swap fee that is requested as a prepayment","matTooltipPosition","before",1,"info-icon","info-icon-text"],["fxFlex","100"],["matTooltip","The node pubkey, where the swap payments will be sent",1,"info-icon","info-icon-text"]],template:function(pe,je){if(1&pe&&(h.YNc(0,X,1,0,"ng-container",0),h.YNc(1,i,7,9,"ng-template",null,1,h.W1O),h.YNc(3,_,38,15,"ng-template",null,2,h.W1O)),2&pe){const _t=h.MAs(2),re=h.MAs(4);h.Q6J("ngTemplateOutlet",je.showPanel?_t:re)}},directives:[D.tP,$.ib,U.yH,D.mk,de.oO,$.yz,$.yK,U.Wh,U.xw,te.Hw,ie.gM,D.O5,oe.d],pipes:[D.JJ],styles:[""]}),ze})();var I=p(7322),v=p(7531),n=p(3390),C=p(2368),B=p(9814),P=p(5899);function H(ze,Tt){1&ze&&h.GkF(0)}function q(ze,Tt){if(1&ze&&(h.TgZ(0,"div",3)(1,"span",4),h._uU(2),h.qZA()()),2&ze){const pe=h.oxw();h.xp6(2),h.Oqu(null!=pe.loopStatus&&pe.loopStatus.error?null==pe.loopStatus?null:pe.loopStatus.error:"Unknown Error.")}}function he(ze,Tt){if(1&ze&&(h.TgZ(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),h._uU(4,"ID"),h.qZA(),h.TgZ(5,"span",4),h._uU(6),h.qZA()()(),h._UZ(7,"mat-divider",8),h.TgZ(8,"div",5)(9,"div",6)(10,"h4",7),h._uU(11,"HTLC Address"),h.qZA(),h.TgZ(12,"span",4),h._uU(13),h.qZA()()()()),2&ze){const pe=h.oxw();h.xp6(6),h.Oqu(null==pe.loopStatus?null:pe.loopStatus.id_bytes),h.xp6(7),h.Oqu(null==pe.loopStatus?null:pe.loopStatus.htlc_address)}}let _e=(()=>{class ze{constructor(){}}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275cmp=h.Xpm({type:ze,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},decls:5,vars:1,consts:[[4,"ngTemplateOutlet"],["loopFailedBlock",""],["loopSuccessfulBlock",""],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(pe,je){if(1&pe&&(h.YNc(0,H,1,0,"ng-container",0),h.YNc(1,q,3,1,"ng-template",null,1,h.W1O),h.YNc(3,he,14,2,"ng-template",null,2,h.W1O)),2&pe){const _t=h.MAs(2),re=h.MAs(4);h.Q6J("ngTemplateOutlet",null!=je.loopStatus&&je.loopStatus.error?_t:re)}},directives:[D.tP,U.xw,U.yH,U.Wh,oe.d],styles:[""]}),ze})();var Ne=p(113);function we(ze,Tt){1&ze&&h.GkF(0)}const Q=function(ze,Tt){return{"small-svg":ze,"large-svg":Tt}};function Ue(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",7)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),h._UZ(8,"circle",12)(9,"path",13),h.qZA(),h.TgZ(10,"g",14),h._UZ(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),h.qZA()()()()(),h.kcU(),h.TgZ(26,"div",30)(27,"mat-card-title"),h._uU(28,"Loop Out explained."),h.qZA()(),h.TgZ(29,"div",31)(30,"mat-card-subtitle",32),h._uU(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,Q,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function ve(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",33)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),h._UZ(15,"rect",43)(16,"rect",44)(17,"rect",45)(18,"circle",46)(19,"rect",47)(20,"rect",48)(21,"circle",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"rect",53)(26,"circle",54)(27,"circle",55),h.qZA(),h.TgZ(28,"g",56),h._UZ(29,"path",57)(30,"rect",58)(31,"polygon",59)(32,"circle",60)(33,"path",61)(34,"rect",62)(35,"rect",63)(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"path",69)(42,"path",70),h.qZA(),h._UZ(43,"path",71),h.qZA()(),h._UZ(44,"circle",72),h.qZA()()()(),h.kcU(),h.TgZ(45,"div",30)(46,"mat-card-title"),h._uU(47,"Step 1: Deciding to Loop Out"),h.qZA()(),h.TgZ(48,"div",31)(49,"mat-card-subtitle",32),h._uU(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,Q,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function V(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",73)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",74),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",75)(11,"g",76),h._UZ(12,"circle",77)(13,"path",78),h.TgZ(14,"g",79),h._UZ(15,"polygon",80)(16,"polygon",81)(17,"path",82),h.qZA(),h.TgZ(18,"g",83),h._UZ(19,"polygon",84)(20,"path",85)(21,"rect",86)(22,"path",87)(23,"rect",88)(24,"rect",89)(25,"rect",90)(26,"rect",91)(27,"circle",92)(28,"path",93),h.TgZ(29,"g",94)(30,"g",95),h._UZ(31,"g",96),h.qZA(),h._UZ(32,"g",97),h.qZA(),h._UZ(33,"path",98),h.qZA(),h.TgZ(34,"g",99)(35,"g",41)(36,"g",42),h._UZ(37,"rect",43)(38,"rect",44)(39,"rect",45)(40,"circle",46)(41,"rect",47)(42,"rect",48)(43,"circle",49)(44,"rect",50)(45,"rect",51)(46,"rect",52)(47,"rect",53)(48,"circle",100)(49,"circle",54)(50,"circle",55)(51,"circle",101),h.qZA(),h.TgZ(52,"g",56),h._UZ(53,"path",57)(54,"rect",102)(55,"polygon",103)(56,"circle",104)(57,"path",61)(58,"rect",105)(59,"rect",106)(60,"rect",107)(61,"rect",108)(62,"rect",109)(63,"rect",110)(64,"rect",68)(65,"path",69)(66,"path",70),h.qZA(),h._UZ(67,"path",111),h.qZA()()()()()(),h.kcU(),h.TgZ(68,"div",30)(69,"mat-card-title"),h._uU(70,"Step 2: Send lightning payment"),h.qZA()(),h.TgZ(71,"div",31)(72,"mat-card-subtitle",32),h._uU(73," Your node pays a lightning invoice for the amount requested via the loop service. This moves the local balance, for the amount paid, to the remote side of the channel. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,Q,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function De(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",112)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),h._UZ(9,"circle",12)(10,"path",117),h.qZA(),h.TgZ(11,"g",14),h._UZ(12,"ellipse",118)(13,"ellipse",16)(14,"rect",17)(15,"rect",18)(16,"rect",19)(17,"rect",20)(18,"rect",21)(19,"rect",22)(20,"rect",23)(21,"rect",24)(22,"rect",25)(23,"rect",26)(24,"rect",27)(25,"rect",28)(26,"rect",29),h.qZA()(),h.TgZ(27,"g",119),h._UZ(28,"polygon",80)(29,"polygon",120)(30,"path",82),h.qZA(),h.TgZ(31,"g",121),h._UZ(32,"polygon",84)(33,"path",85)(34,"rect",86)(35,"path",87)(36,"rect",88)(37,"rect",89)(38,"rect",90)(39,"rect",91)(40,"circle",122)(41,"path",93),h.TgZ(42,"g",94)(43,"g",95),h._UZ(44,"g",96),h.qZA(),h._UZ(45,"g",97),h.qZA(),h._UZ(46,"path",123),h.qZA()()()()(),h.kcU(),h.TgZ(47,"div",30)(48,"mat-card-title"),h._uU(49,"Step 3: Receive funds back"),h.qZA()(),h.TgZ(50,"div",31)(51,"mat-card-subtitle",32),h._uU(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,Q,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function dt(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",124)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),h._UZ(13,"rect",127)(14,"rect",128)(15,"rect",129)(16,"circle",130)(17,"rect",131)(18,"rect",132)(19,"circle",133)(20,"rect",134)(21,"rect",135)(22,"rect",136)(23,"rect",137)(24,"rect",138)(25,"circle",139)(26,"circle",140)(27,"circle",141),h.qZA(),h.TgZ(28,"g",142)(29,"g",143)(30,"g",144),h._UZ(31,"path",145)(32,"rect",146)(33,"polygon",147),h.TgZ(34,"g",148),h._UZ(35,"path",149),h.qZA(),h._UZ(36,"rect",150)(37,"rect",151)(38,"rect",152)(39,"rect",153)(40,"rect",154)(41,"rect",155)(42,"rect",156)(43,"path",157)(44,"path",158),h.qZA(),h.TgZ(45,"g",159),h._UZ(46,"path",160)(47,"path",161)(48,"path",162)(49,"path",163)(50,"path",164)(51,"path",165)(52,"path",166)(53,"path",167)(54,"path",168)(55,"path",169)(56,"path",170)(57,"circle",171)(58,"circle",172),h.qZA(),h._UZ(59,"path",173),h.qZA()()()()()(),h.kcU(),h.TgZ(60,"div",30)(61,"mat-card-title"),h._uU(62,"Done!"),h.qZA()(),h.TgZ(63,"div",31)(64,"mat-card-subtitle",32),h._uU(65," Final settlement occurs when your node sweeps the on-chain payment and the loop server settles the lightning invoice. You receive the payment on-chain in your wallet and also move local balance to the remote side of the channel, gaining inbound capacity. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,Q,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}let Ie=(()=>{class ze{constructor(pe){this.commonService=pe,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new h.vpe,this.screenSize="",this.screenSizeEnum=d.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(pe){2===pe.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===pe.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return ze.\u0275fac=function(pe){return new(pe||ze)(h.Y36(S.v))},ze.\u0275cmp=h.Xpm({type:ze,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopOut_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopOut_Step02","transform","translate(-540.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(540.000000, 210.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["fxFlex","30","viewBox","0 0 373 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","LoopOut_Step03","transform","translate(-460.000000, -210.000000)"],["id","Loop_Step03","transform","translate(460.000000, 210.000000)"],["id","Oval","fill-rule","nonzero","cx","330.487742","cy","57.4877419","r","42.4877419",1,"fill-color-2"],["d","M345.082742,43.5000036 C349.446821,43.5000036 352.999928,40.1343958 352.999928,36.0000215 C352.999928,31.8656472 349.446821,28.5000393 345.082742,28.5000393 C341.98433,28.5000393 339.560889,30.4359631 337.999964,32.1843872 C336.43904,30.4359631 334.015599,28.5000393 330.917187,28.5000393 C326.553107,28.5000393 323,31.8656472 323,36.0000215 C323,40.1343958 326.553107,43.5000036 330.917187,43.5000036 C334.015599,43.5000036 336.43904,41.5640798 337.999964,39.8156557 C339.560889,41.5640798 341.98433,43.5000036 345.082742,43.5000036 Z M330.917187,39.0000143 C329.032807,39.0000143 327.499989,37.6546959 327.499989,36.0000286 C327.499989,34.3453471 329.032807,33.0000286 330.917187,33.0000286 C332.707771,33.0000286 334.357776,34.6921938 335.323426,36.0000286 C334.36716,37.2937501 332.703102,39.0000143 330.917187,39.0000143 Z M345.082742,39.0000143 C343.292157,39.0000143 341.642152,37.3078492 340.676502,36.0000286 C341.632768,34.7062929 343.296827,33.0000286 345.082742,33.0000286 C346.967121,33.0000286 348.499939,34.3453471 348.499939,36.0000286 C348.499939,37.6546959 346.967121,39.0000143 345.082742,39.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(113.000000, 79.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-22"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(265.000000, 50.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-3"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["d","M46.60483,51.432122 C46.8713708,51.432122 47.1252368,51.2924832 47.2648756,51.0513229 L52.8499289,41.4044125 C53.145042,40.8998413 52.7801095,40.2620153 52.1930443,40.2620153 L48.5310139,40.2620153 L49.8828693,36.1430446 C50.0098023,35.6606929 49.6448699,35.184694 49.1466515,35.184694 L44.5770624,35.184694 C44.1962633,35.184694 43.8725779,35.4671324 43.8218171,35.8447396 L42.8063528,43.4607214 C42.7460473,43.9176927 43.1014659,44.3238722 43.5615982,44.3238722 L47.3283421,44.3238722 L45.8654203,50.4959909 C45.751193,50.9783426 46.1192864,51.432122 46.60483,51.432122 Z","id","b","fill-rule","nonzero","transform","translate(47.877046, 43.308408) rotate(14.000000) translate(-47.877046, -43.308408) ",1,"fill-color-12"],["id","Group-34","fill-rule","nonzero"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","17.5648113","r","8.78679245"],["id","Oval","cx","76.317438","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-8"],["id","Path","opacity","0.222721354","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-18"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-8"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-14"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step04","transform","translate(-503.000000, -212.000000)"],["id","Loop_Step04","transform","translate(503.000000, 212.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M46.519593,50.6740439 L46.519593,48.5460252 C46.9395628,48.5560039 47.349554,48.5560039 47.739557,48.5560039 L47.739557,50.6740439 L49.2794877,50.6740439 L49.2794877,48.5160274 C51.8593644,48.3760168 53.5840235,47.7260428 53.8140277,45.2961554 C53.9939838,43.3462645 53.0739982,42.476265 51.6140824,42.1263004 C52.4940295,41.6763328 53.054041,40.8763386 52.92404,39.5463928 C52.7540005,37.7264719 51.2593765,37.1164744 49.2794567,36.9465279 L49.2794567,34.4266159 L47.739526,34.4266159 L47.739526,36.8765226 C47.3395134,36.8765226 46.9295222,36.8865012 46.519562,36.8965108 L46.519562,34.4266159 L44.9796003,34.4266159 L44.9796003,36.9465279 C44.413422,36.9636341 43.7539962,36.9552669 41.8897293,36.9465279 L41.8897293,38.5864308 C43.1055717,38.564924 43.7434908,38.4867995 43.8896683,39.2663716 L43.8896683,46.1661239 C43.7968547,46.7846435 43.3018283,46.6955796 42.1997174,46.6760872 L41.8897293,48.5060178 C44.6975648,48.5060178 44.9796313,48.5160274 44.9796313,48.5160274 L44.9796313,50.6740439 L46.519593,50.6740439 Z M46.5495908,41.7662953 L46.5495908,38.6964125 C47.4195593,38.6964125 50.1394466,38.4264629 50.1394466,40.2363742 C50.1394466,41.9663016 47.4195903,41.7662953 46.5495908,41.7662953 Z M46.5495908,46.6860969 L46.5495908,43.306257 C47.5895368,43.306257 50.7741427,43.0162572 50.7741427,44.9962079 C50.7741427,46.9060914 47.5895368,46.6860969 46.5495908,46.6860969 Z","id","B","fill-rule","nonzero","transform","translate(47.863077, 42.550330) rotate(14.000000) translate(-47.863077, -42.550330) ",1,"fill-color-29"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step05","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step05","transform","translate(542.000000, 210.000000)"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"]],template:function(pe,je){if(1&pe&&(h.YNc(0,we,1,0,"ng-container",0),h.YNc(1,Ue,32,5,"ng-template",null,1,h.W1O),h.YNc(3,ve,51,5,"ng-template",null,2,h.W1O),h.YNc(5,V,74,5,"ng-template",null,3,h.W1O),h.YNc(7,De,53,5,"ng-template",null,4,h.W1O),h.YNc(9,dt,66,5,"ng-template",null,5,h.W1O)),2&pe){const _t=h.MAs(2),re=h.MAs(4),qe=h.MAs(6),Mt=h.MAs(8),zt=h.MAs(10);h.Q6J("ngTemplateOutlet",1===je.stepNumber?_t:2===je.stepNumber?re:3===je.stepNumber?qe:4===je.stepNumber?Mt:zt)}},directives:[D.tP,U.xw,U.yH,U.Wh,D.mk,de.oO,Z.n5,Z.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ne.l]}}),ze})();function Ae(ze,Tt){1&ze&&h.GkF(0)}const le=function(ze,Tt){return{"small-svg":ze,"large-svg":Tt}};function Te(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",7)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),h._UZ(8,"circle",12)(9,"path",13),h.qZA(),h.TgZ(10,"g",14),h._UZ(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),h.qZA()()()()(),h.kcU(),h.TgZ(26,"div",30)(27,"mat-card-title"),h._uU(28,"Loop In explained."),h.qZA()(),h.TgZ(29,"div",31)(30,"mat-card-subtitle",32),h._uU(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,le,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function xe(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",33)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),h._UZ(13,"rect",41)(14,"rect",42)(15,"rect",43)(16,"circle",44)(17,"rect",45)(18,"rect",46)(19,"circle",47)(20,"rect",48)(21,"rect",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"circle",53)(26,"circle",54)(27,"circle",55),h.qZA(),h.TgZ(28,"g",56)(29,"g",57)(30,"g",58),h._UZ(31,"path",59)(32,"rect",60)(33,"polygon",61),h.TgZ(34,"g",62),h._UZ(35,"path",63),h.qZA(),h._UZ(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"rect",69)(42,"rect",70)(43,"path",71)(44,"path",72),h.qZA(),h.TgZ(45,"g",73),h._UZ(46,"path",74)(47,"path",75)(48,"path",76)(49,"path",77)(50,"path",78)(51,"path",79)(52,"path",80)(53,"path",81)(54,"path",82)(55,"path",83)(56,"path",84)(57,"circle",85)(58,"circle",86),h.qZA(),h._UZ(59,"path",87),h.qZA()()()()()(),h.kcU(),h.TgZ(60,"div",30)(61,"mat-card-title"),h._uU(62,"Step 1: Deciding to Loop In"),h.qZA()(),h.TgZ(63,"div",31)(64,"mat-card-subtitle",32),h._uU(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,le,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function W(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",88)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",89),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),h._UZ(14,"circle",95)(15,"path",96),h.TgZ(16,"g",97),h._UZ(17,"polygon",98)(18,"polygon",99)(19,"path",100),h.qZA(),h.TgZ(20,"g",101),h._UZ(21,"polygon",102)(22,"path",103)(23,"rect",104)(24,"path",105)(25,"rect",106)(26,"rect",107)(27,"rect",108)(28,"rect",109)(29,"circle",110)(30,"path",111),h.TgZ(31,"g",112)(32,"g",113),h._UZ(33,"g",114),h.qZA(),h._UZ(34,"g",115),h.qZA()()(),h.TgZ(35,"g",116)(36,"g",40),h._UZ(37,"rect",117)(38,"rect",42)(39,"rect",43)(40,"circle",118)(41,"rect",45)(42,"rect",46)(43,"circle",119)(44,"rect",48)(45,"rect",49)(46,"rect",50)(47,"rect",51)(48,"rect",52)(49,"circle",120)(50,"circle",54)(51,"circle",55)(52,"circle",121),h.qZA(),h.TgZ(53,"g",56)(54,"g",57)(55,"g",58),h._UZ(56,"path",59)(57,"rect",60)(58,"polygon",61),h.TgZ(59,"g",122),h._UZ(60,"path",63),h.qZA(),h._UZ(61,"rect",123)(62,"rect",124)(63,"rect",125)(64,"rect",126)(65,"rect",127)(66,"rect",128)(67,"rect",129)(68,"path",130)(69,"path",72),h.qZA(),h.TgZ(70,"g",73),h._UZ(71,"path",131)(72,"path",132)(73,"path",133)(74,"path",134)(75,"path",135)(76,"path",136)(77,"path",80)(78,"path",81)(79,"path",137)(80,"path",83)(81,"path",138)(82,"circle",85)(83,"circle",86),h.qZA(),h._UZ(84,"path",139),h.qZA()()()(),h._UZ(85,"path",140)(86,"path",141),h.qZA()()()(),h.kcU(),h.TgZ(87,"div",30)(88,"mat-card-title"),h._uU(89,"Step 2: Send payment out"),h.qZA()(),h.TgZ(90,"div",31)(91,"mat-card-subtitle",32),h._uU(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,le,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function ee(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",142)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),h._UZ(10,"circle",12)(11,"path",147),h.qZA(),h.TgZ(12,"g",14),h._UZ(13,"ellipse",148)(14,"ellipse",16)(15,"rect",17)(16,"rect",18)(17,"rect",19)(18,"rect",20)(19,"rect",21)(20,"rect",22)(21,"rect",23)(22,"rect",24)(23,"rect",25)(24,"rect",26)(25,"rect",27)(26,"rect",28)(27,"rect",29),h.qZA()(),h.TgZ(28,"g",149),h._UZ(29,"polygon",150)(30,"polygon",99)(31,"path",151),h.qZA(),h.TgZ(32,"g",152),h._UZ(33,"polygon",102)(34,"path",103)(35,"rect",104)(36,"path",105)(37,"rect",106)(38,"rect",107)(39,"rect",108)(40,"rect",109)(41,"circle",110)(42,"path",111),h.TgZ(43,"g",112)(44,"g",113),h._UZ(45,"g",114),h.qZA(),h._UZ(46,"g",115),h.qZA()()(),h._UZ(47,"path",153),h.qZA()()()(),h.kcU(),h.TgZ(48,"div",30)(49,"mat-card-title"),h._uU(50,"Step 3: Recieve Funds Off-chain"),h.qZA()(),h.TgZ(51,"div",31)(52,"mat-card-subtitle",32),h._uU(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,le,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}function ue(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",6),h.NdJ("swipe",function(_t){return h.CHM(pe),h.oxw().onSwipe(_t)}),h.O4$(),h.TgZ(1,"svg",154)(2,"desc"),h._uU(3,"Created with Sketch."),h.qZA(),h.TgZ(4,"defs")(5,"linearGradient",34),h._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),h.qZA()(),h.TgZ(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),h._UZ(15,"rect",159)(16,"rect",160)(17,"rect",161)(18,"circle",162)(19,"rect",163)(20,"rect",164)(21,"circle",165)(22,"rect",166)(23,"rect",167)(24,"rect",168)(25,"rect",169)(26,"circle",170)(27,"circle",171),h.qZA(),h.TgZ(28,"g",172),h._UZ(29,"path",173)(30,"rect",174)(31,"polygon",175)(32,"circle",176)(33,"path",177)(34,"rect",178)(35,"rect",179)(36,"rect",180)(37,"rect",181)(38,"rect",182)(39,"rect",183)(40,"rect",184)(41,"path",185)(42,"path",186),h.qZA(),h._UZ(43,"path",187),h.qZA()(),h._UZ(44,"circle",188),h.qZA()()()(),h.kcU(),h.TgZ(45,"div",30)(46,"mat-card-title"),h._uU(47,"Done!"),h.qZA()(),h.TgZ(48,"div",31)(49,"mat-card-subtitle",32),h._uU(50," You send the payment on-chain from your wallet and also move remote balance to the local side of the node, gaining outgoing capacity. "),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@sliderAnimation",pe.animationDirection),h.xp6(1),h.Q6J("ngClass",h.WLB(2,le,pe.screenSize===pe.screenSizeEnum.XS,pe.screenSize!==pe.screenSizeEnum.XS))}}let Ce=(()=>{class ze{constructor(pe){this.commonService=pe,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new h.vpe,this.screenSize="",this.screenSizeEnum=d.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(pe){2===pe.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===pe.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return ze.\u0275fac=function(pe){return new(pe||ze)(h.Y36(S.v))},ze.\u0275cmp=h.Xpm({type:ze,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopIn_Step02","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(542.000000, 210.000000)"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"],["fxFlex","30","viewBox","0 0 364 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","Loopv0.3","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step03","transform","translate(-1127.000000, -164.000000)"],["id","LoopIn_Step03","transform","translate(1127.000000, 164.000000)"],["id","Group-21"],["id","Group-35","transform","translate(107.000000, 10.000000)"],["id","Oval","fill-rule","nonzero","cx","214.487742","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M232.082742,28.5000036 C236.446821,28.5000036 239.999928,25.1343958 239.999928,21.0000215 C239.999928,16.8656472 236.446821,13.5000393 232.082742,13.5000393 C228.98433,13.5000393 226.560889,15.4359631 224.999964,17.1843872 C223.43904,15.4359631 221.015599,13.5000393 217.917187,13.5000393 C213.553107,13.5000393 210,16.8656472 210,21.0000215 C210,25.1343958 213.553107,28.5000036 217.917187,28.5000036 C221.015599,28.5000036 223.43904,26.5640798 224.999964,24.8156557 C226.560889,26.5640798 228.98433,28.5000036 232.082742,28.5000036 Z M217.917187,24.0000143 C216.032807,24.0000143 214.499989,22.6546959 214.499989,21.0000286 C214.499989,19.3453471 216.032807,18.0000286 217.917187,18.0000286 C219.707771,18.0000286 221.357776,19.6921938 222.323426,21.0000286 C221.36716,22.2937501 219.703102,24.0000143 217.917187,24.0000143 Z M232.082742,24.0000143 C230.292157,24.0000143 228.642152,22.3078492 227.676502,21.0000286 C228.632768,19.7062929 230.296827,18.0000286 232.082742,18.0000286 C233.967121,18.0000286 235.499939,19.3453471 235.499939,21.0000286 C235.499939,22.6546959 233.967121,24.0000143 232.082742,24.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(0.000000, 64.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-20"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-20"],["id","Group-43","transform","translate(152.000000, 35.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["id","LoopIn_Step03","fill-rule","nonzero"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-10"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","15.8607624","r","7.93434243"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.35996418",1,"fill-color-31"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-4"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-20"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-20"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-16"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-9"],["d","M93.2292414,91.9116485 L93.2292414,89.7922708 C93.647506,89.8022089 94.0558324,89.8022089 94.4442517,89.8022089 L94.4442517,91.9116485 L95.9779294,91.9116485 L95.9779294,89.7623948 C98.5473303,89.6229527 100.264986,88.975618 100.494057,86.5555973 C100.673282,84.6136241 99.757032,83.7471573 98.3030443,83.3986138 C99.1794183,82.9504733 99.7371558,82.1537275 99.6076827,80.8291821 C99.4383337,79.0166511 97.9497787,78.4091306 95.9778985,78.2398742 L95.9778985,75.7301945 L94.4442208,75.7301945 L94.4442208,78.1701531 C94.0458325,78.1701531 93.6375061,78.1800912 93.2292106,78.1900602 L93.2292106,75.7301945 L91.695502,75.7301945 L91.695502,78.2398742 C91.1316227,78.2569109 90.4748746,78.2485777 88.6181777,78.2398742 L88.6181777,79.8731181 C89.8290831,79.8516987 90.4644118,79.7738914 90.6099957,80.5502979 L90.6099957,87.4220333 C90.517559,88.0380413 90.0245427,87.9493391 88.926907,87.9299259 L88.6181777,89.7524258 L89.5798445,89.7528809 C91.4824304,89.7548325 91.6955329,89.7623948 91.6955329,89.7623948 L91.6955329,91.9116485 L93.2292414,91.9116485 Z M93.2591175,83.0400705 L93.2591175,79.9826533 C94.1255534,79.9826533 96.8343964,79.7137998 96.8343964,81.5163618 C96.8343964,83.2392647 94.1255843,83.0400705 93.2591175,83.0400705 Z M93.2591175,87.9398948 L93.2591175,84.5737791 C94.2948407,84.5737791 97.4665153,84.2849568 97.4665153,86.2568678 C97.4665153,88.1589961 94.2948407,87.9398948 93.2591175,87.9398948 Z","id","b","fill-rule","nonzero","transform","translate(94.567271, 83.820921) rotate(14.000000) translate(-94.567271, -83.820921) ",1,"fill-color-9"],["d","M305.611064,96.181454 L305.611064,94.0620763 C306.029328,94.0720144 306.437655,94.0720144 306.826074,94.0720144 L306.826074,96.181454 L308.359752,96.181454 L308.359752,94.0322003 C310.929153,93.8927582 312.646809,93.2454235 312.875879,90.8254028 C313.055104,88.8834296 312.138854,88.0169628 310.684867,87.6684193 C311.561241,87.2202788 312.118978,86.423533 311.989505,85.0989876 C311.820156,83.2864566 310.331601,82.678936 308.359721,82.5096797 L308.359721,80 L306.826043,80 L306.826043,82.4399586 C306.427655,82.4399586 306.019328,82.4498967 305.611033,82.4598657 L305.611033,80 L304.077324,80 L304.077324,82.5096797 C303.513445,82.5267164 302.856697,82.5183832 301,82.5096797 L301,84.1429236 C302.210905,84.1215042 302.846234,84.0436969 302.991818,84.8201034 L302.991818,91.6918387 C302.899381,92.3078468 302.406365,92.2191446 301.308729,92.1997314 L301,94.0222313 L301.961667,94.0226864 C303.864253,94.024638 304.077355,94.0322003 304.077355,94.0322003 L304.077355,96.181454 L305.611064,96.181454 Z M305.64094,87.309876 L305.64094,84.2524587 C306.507376,84.2524587 309.216219,83.9836053 309.216219,85.7861673 C309.216219,87.5090702 306.507407,87.309876 305.64094,87.309876 Z M305.64094,92.2097003 L305.64094,88.8435846 C306.676663,88.8435846 309.848338,88.5547623 309.848338,90.5266733 C309.848338,92.4288016 306.676663,92.2097003 305.64094,92.2097003 Z","id","b","fill-rule","nonzero","transform","translate(306.949093, 88.090727) rotate(14.000000) translate(-306.949093, -88.090727) ",1,"fill-color-26"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step04","transform","translate(-1799.000000, -756.000000)"],["id","LoopIn_Step04","transform","translate(1799.000000, 756.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["d","M225.805162,92.2474279 C226.071703,92.2474279 226.325569,92.1077892 226.465207,91.8666288 L232.050261,82.2197185 C232.345374,81.7151473 231.980441,81.0773212 231.393376,81.0773212 L227.731346,81.0773212 L229.083201,76.9583506 C229.210134,76.4759989 228.845202,76 228.346983,76 L223.777394,76 C223.396595,76 223.07291,76.2824384 223.022149,76.6600456 L222.006685,84.2760274 C221.946379,84.7329987 222.301798,85.1391782 222.76193,85.1391782 L226.528674,85.1391782 L225.065752,91.3112968 C224.951525,91.7936485 225.319618,92.2474279 225.805162,92.2474279 Z","id","b","fill-rule","nonzero","transform","translate(227.077378, 84.123714) rotate(14.000000) translate(-227.077378, -84.123714) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step05","transform","translate(-2386.000000, -764.000000)","fill-rule","nonzero"],["id","LoopIn_Step05","transform","translate(2386.000000, 764.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"]],template:function(pe,je){if(1&pe&&(h.YNc(0,Ae,1,0,"ng-container",0),h.YNc(1,Te,32,5,"ng-template",null,1,h.W1O),h.YNc(3,xe,66,5,"ng-template",null,2,h.W1O),h.YNc(5,W,93,5,"ng-template",null,3,h.W1O),h.YNc(7,ee,54,5,"ng-template",null,4,h.W1O),h.YNc(9,ue,51,5,"ng-template",null,5,h.W1O)),2&pe){const _t=h.MAs(2),re=h.MAs(4),qe=h.MAs(6),Mt=h.MAs(8),zt=h.MAs(10);h.Q6J("ngTemplateOutlet",1===je.stepNumber?_t:2===je.stepNumber?re:3===je.stepNumber?qe:4===je.stepNumber?Mt:zt)}},directives:[D.tP,U.xw,U.yH,U.Wh,D.mk,de.oO,Z.n5,Z.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ne.l]}}),ze})();const Le=["stepper"];function ut(ze,Tt){if(1&ze&&(h.TgZ(0,"div",48)(1,"p",49)(2,"strong"),h._uU(3,"Channel Peer:\xa0"),h.qZA(),h._uU(4),h.ALo(5,"titlecase"),h.qZA(),h.TgZ(6,"p",50)(7,"strong"),h._uU(8,"Channel ID:\xa0"),h.qZA(),h._uU(9),h.qZA(),h._UZ(10,"p",50),h.qZA()),2&ze){const pe=h.oxw(2);h.xp6(4),h.Oqu(h.lcZ(5,2,pe.channel.remote_alias)),h.xp6(5),h.Oqu(pe.channel.chan_id)}}function ht(ze,Tt){if(1&ze&&h._uU(0),2&ze){const pe=h.oxw(2);h.Oqu(pe.inputFormLabel)}}function It(ze,Tt){1&ze&&(h.TgZ(0,"mat-error"),h._uU(1,"Amount is required."),h.qZA())}function ui(ze,Tt){if(1&ze&&(h.TgZ(0,"mat-error"),h._uU(1),h.ALo(2,"number"),h.qZA()),2&ze){const pe=h.oxw(2);h.xp6(1),h.hij("Amount must be greater than or equal to ",h.lcZ(2,1,pe.minQuote.amount),".")}}function Wt(ze,Tt){if(1&ze&&(h.TgZ(0,"mat-error"),h._uU(1),h.ALo(2,"number"),h.qZA()),2&ze){const pe=h.oxw(2);h.xp6(1),h.hij("Amount must be less than or equal to ",h.lcZ(2,1,pe.maxQuote.amount),".")}}function Gt(ze,Tt){1&ze&&(h.TgZ(0,"mat-error"),h._uU(1,"Confirmation target is required."),h.qZA())}function hi(ze,Tt){1&ze&&(h.TgZ(0,"mat-error"),h._uU(1,"Confirmation target must be a positive number."),h.qZA())}function xt(ze,Tt){1&ze&&(h.TgZ(0,"mat-error"),h._uU(1,"Percentage is required."),h.qZA())}function Nt(ze,Tt){1&ze&&(h.TgZ(0,"mat-error"),h._uU(1,"Percentage must be a positive number."),h.qZA())}function Ct(ze,Tt){if(1&ze&&(h.TgZ(0,"mat-form-field",50),h._UZ(1,"input",51),h.YNc(2,xt,2,0,"mat-error",25),h.YNc(3,Nt,2,0,"mat-error",25),h.qZA()),2&ze){const pe=h.oxw(2);h.xp6(1),h.Q6J("step",1),h.xp6(1),h.Q6J("ngIf",null==pe.inputFormGroup.controls.routingFeePercent.errors?null:pe.inputFormGroup.controls.routingFeePercent.errors.required),h.xp6(1),h.Q6J("ngIf",null==pe.inputFormGroup.controls.routingFeePercent.errors?null:pe.inputFormGroup.controls.routingFeePercent.errors.min)}}function et(ze,Tt){1&ze&&(h.TgZ(0,"div",52)(1,"mat-slide-toggle",53),h._uU(2,"Fast"),h.qZA(),h.TgZ(3,"mat-icon",54),h._uU(4,"info_outline"),h.qZA()())}function yt(ze,Tt){if(1&ze&&h._uU(0),2&ze){const pe=h.oxw(2);h.Oqu(pe.quoteFormLabel)}}function ei(ze,Tt){1&ze&&(h.TgZ(0,"p",55)(1,"mat-icon",56),h._uU(2,"close"),h.qZA(),h._uU(3,"Local balance amount is insufficient for swap."),h.qZA())}function Yt(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",57),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).onValidateAmount()}),h._uU(1,"Next"),h.qZA()}}function Pe(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",58),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).onLoop()}),h._uU(1),h.qZA()}if(2&ze){const pe=h.oxw(2);h.xp6(1),h.hij("Initiate ",pe.loopDirectionCaption,"")}}function Oe(ze,Tt){if(1&ze&&h._uU(0),2&ze){const pe=h.oxw(3);h.Oqu(pe.addressFormLabel)}}function ce(ze,Tt){1&ze&&(h.TgZ(0,"mat-error"),h._uU(1,"Address is required."),h.qZA())}function be(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"mat-step",16)(1,"form",17),h.YNc(2,Oe,1,1,"ng-template",18),h.TgZ(3,"div",59)(4,"mat-radio-group",60),h.NdJ("change",function(_t){return h.CHM(pe),h.oxw(2).onAddressTypeChange(_t)}),h.TgZ(5,"mat-radio-button",61),h._uU(6,"Node Local Address"),h.qZA(),h.TgZ(7,"mat-radio-button",62),h._uU(8,"External Address"),h.qZA()(),h.TgZ(9,"mat-form-field",63),h._UZ(10,"input",64),h.YNc(11,ce,2,0,"mat-error",25),h.qZA()(),h.TgZ(12,"div",29)(13,"button",65),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).onLoop()}),h._uU(14),h.qZA()()()()}if(2&ze){const pe=h.oxw(2);h.Q6J("stepControl",pe.addressFormGroup)("editable",pe.flgEditable),h.xp6(1),h.Q6J("formGroup",pe.addressFormGroup),h.xp6(9),h.Q6J("required","external"===pe.addressFormGroup.controls.addressType.value),h.xp6(1),h.Q6J("ngIf",null==pe.addressFormGroup.controls.address.errors?null:pe.addressFormGroup.controls.address.errors.required),h.xp6(3),h.hij("Initiate ",pe.loopDirectionCaption,"")}}function pt(ze,Tt){if(1&ze&&h._uU(0),2&ze){const pe=h.oxw(2);h.hij("",pe.loopDirectionCaption," Status")}}function mt(ze,Tt){if(1&ze&&(h.TgZ(0,"mat-icon",66),h._uU(1),h.qZA()),2&ze){const pe=h.oxw(2);h.xp6(1),h.Oqu(pe.loopStatus&&null!=pe.loopStatus&&pe.loopStatus.id_bytes?"check":"close")}}function Ht(ze,Tt){1&ze&&h._UZ(0,"div")}function it(ze,Tt){1&ze&&h._UZ(0,"mat-progress-bar",67)}function Re(ze,Tt){if(1&ze&&(h.TgZ(0,"h4",68),h._uU(1),h.qZA()),2&ze){const pe=h.oxw(2);h.xp6(1),h.Oqu(pe.loopStatus&&pe.loopStatus.error?pe.loopDirectionCaption+" failed.":pe.loopStatus&&pe.loopStatus.id_bytes&&pe.channel?pe.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":pe.loopDirectionCaption+" request placed successfully.")}}function tt(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",69),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).goToLoop()}),h._uU(1,"Check Status"),h.qZA()}}function Xe(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",70),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).onRestart()}),h._uU(1,"Start Again"),h.qZA()}}function Se(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),h._uU(5),h.qZA()(),h.TgZ(6,"div",8)(7,"button",9),h.NdJ("click",function(){return h.CHM(pe),h.oxw().showInfo()}),h._uU(8,"?"),h.qZA(),h.TgZ(9,"button",10),h.NdJ("click",function(){return h.CHM(pe),h.oxw().onClose()}),h._uU(10,"X"),h.qZA()()(),h.TgZ(11,"mat-card-content",11)(12,"div",12),h.YNc(13,ut,11,4,"div",13),h.TgZ(14,"mat-vertical-stepper",14,15),h.NdJ("selectionChange",function(_t){return h.CHM(pe),h.oxw().stepSelectionChanged(_t)}),h.TgZ(16,"mat-step",16)(17,"form",17),h.YNc(18,ht,1,1,"ng-template",18),h.TgZ(19,"div",19),h._UZ(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),h.qZA(),h.TgZ(22,"div",21)(23,"mat-form-field",22),h._UZ(24,"input",23),h.TgZ(25,"mat-hint"),h._uU(26),h.ALo(27,"number"),h.ALo(28,"number"),h.qZA(),h.TgZ(29,"span",24),h._uU(30,"Sats"),h.qZA(),h.YNc(31,It,2,0,"mat-error",25),h.YNc(32,ui,3,3,"mat-error",25),h.YNc(33,Wt,3,3,"mat-error",25),h.qZA(),h.TgZ(34,"mat-form-field",22),h._UZ(35,"input",26),h.YNc(36,Gt,2,0,"mat-error",25),h.YNc(37,hi,2,0,"mat-error",25),h.qZA(),h.YNc(38,Ct,4,3,"mat-form-field",27),h.qZA(),h.YNc(39,et,5,0,"div",28),h.TgZ(40,"div",29)(41,"button",30),h.NdJ("click",function(){return h.CHM(pe),h.oxw().onEstimateQuote()}),h._uU(42,"Estimate Quote"),h.qZA()()()(),h.TgZ(43,"mat-step",16)(44,"form",17),h.YNc(45,yt,1,1,"ng-template",18),h._UZ(46,"rtl-loop-quote",31),h.YNc(47,ei,4,0,"p",32),h.TgZ(48,"div",29),h.YNc(49,Yt,2,0,"button",33),h.YNc(50,Pe,2,1,"button",34),h.qZA()()(),h.YNc(51,be,15,6,"mat-step",35),h.TgZ(52,"mat-step",36)(53,"form",17),h.YNc(54,pt,1,1,"ng-template",18),h.TgZ(55,"div",37)(56,"mat-expansion-panel",38)(57,"mat-expansion-panel-header")(58,"mat-panel-title")(59,"span",39),h._uU(60),h.YNc(61,mt,2,1,"mat-icon",40),h.qZA()()(),h.YNc(62,Ht,1,0,"div",41),h.qZA(),h.YNc(63,it,1,0,"mat-progress-bar",42),h.qZA(),h.YNc(64,Re,2,1,"h4",43),h.TgZ(65,"div",29),h.YNc(66,tt,2,0,"button",44),h.YNc(67,Xe,2,0,"button",45),h.qZA()()()(),h.TgZ(68,"div",46)(69,"button",47),h._uU(70,"Close"),h.qZA()()()()()()}if(2&ze){const pe=h.oxw(),je=h.MAs(2);h.Q6J("@opacityAnimation",void 0),h.xp6(3),h.Q6J("fxFlex",pe.screenSize===pe.screenSizeEnum.XS||pe.screenSize===pe.screenSizeEnum.SM?"83":"91"),h.xp6(2),h.Oqu(pe.channel?"Channel "+pe.loopDirectionCaption:pe.loopDirectionCaption),h.xp6(1),h.Q6J("fxFlex",pe.screenSize===pe.screenSizeEnum.XS||pe.screenSize===pe.screenSizeEnum.SM?"17":"9"),h.xp6(7),h.Q6J("ngIf",pe.channel),h.xp6(1),h.Q6J("linear",!0),h.xp6(2),h.Q6J("stepControl",pe.inputFormGroup)("editable",pe.flgEditable),h.xp6(1),h.Q6J("formGroup",pe.inputFormGroup),h.xp6(3),h.Q6J("quote",pe.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),h.xp6(1),h.Q6J("quote",pe.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),h.xp6(2),h.Q6J("fxFlex",pe.direction===pe.LoopTypeEnum.LOOP_OUT?"35":"48"),h.xp6(1),h.Q6J("step",1e3),h.xp6(2),h.AsE("Range: ",h.lcZ(27,51,pe.minQuote.amount),"-",h.lcZ(28,53,pe.maxQuote.amount),""),h.xp6(5),h.Q6J("ngIf",null==pe.inputFormGroup.controls.amount.errors?null:pe.inputFormGroup.controls.amount.errors.required),h.xp6(1),h.Q6J("ngIf",null==pe.inputFormGroup.controls.amount.errors?null:pe.inputFormGroup.controls.amount.errors.min),h.xp6(1),h.Q6J("ngIf",null==pe.inputFormGroup.controls.amount.errors?null:pe.inputFormGroup.controls.amount.errors.max),h.xp6(1),h.Q6J("fxFlex",pe.direction===pe.LoopTypeEnum.LOOP_OUT?"30":"48"),h.xp6(1),h.Q6J("step",1),h.xp6(1),h.Q6J("ngIf",null==pe.inputFormGroup.controls.sweepConfTarget.errors?null:pe.inputFormGroup.controls.sweepConfTarget.errors.required),h.xp6(1),h.Q6J("ngIf",null==pe.inputFormGroup.controls.sweepConfTarget.errors?null:pe.inputFormGroup.controls.sweepConfTarget.errors.min),h.xp6(1),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_OUT),h.xp6(4),h.Q6J("stepControl",pe.quoteFormGroup)("editable",pe.flgEditable),h.xp6(1),h.Q6J("formGroup",pe.quoteFormGroup),h.xp6(2),h.Q6J("quote",pe.quote)("showPanel",!1),h.xp6(1),h.Q6J("ngIf",pe.inputFormGroup.controls.amount.value>pe.localBalanceToCompare),h.xp6(2),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_IN),h.xp6(1),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("stepControl",pe.statusFormGroup),h.xp6(1),h.Q6J("formGroup",pe.statusFormGroup),h.xp6(3),h.Q6J("expanded",!!pe.loopStatus),h.xp6(4),h.Oqu(pe.loopStatus?pe.loopStatus.id_bytes?pe.loopDirectionCaption+" request details":pe.loopDirectionCaption+" error details":"Waiting for "+pe.loopDirectionCaption+" request..."),h.xp6(1),h.Q6J("ngIf",pe.loopStatus),h.xp6(1),h.Q6J("ngIf",!pe.loopStatus)("ngIfElse",je),h.xp6(1),h.Q6J("ngIf",!pe.loopStatus),h.xp6(1),h.Q6J("ngIf",pe.loopStatus),h.xp6(2),h.Q6J("ngIf",pe.loopStatus&&pe.loopStatus.id_bytes&&pe.channel),h.xp6(1),h.Q6J("ngIf",pe.loopStatus&&(pe.loopStatus.error||!pe.loopStatus.id_bytes)),h.xp6(2),h.Q6J("mat-dialog-close",!1)}}function Ge(ze,Tt){if(1&ze&&h._UZ(0,"rtl-loop-status",71),2&ze){const pe=h.oxw();h.Q6J("loopStatus",pe.loopStatus)}}function at(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"rtl-loop-out-info-graphics",88),h.NdJ("stepNumberChange",function(_t){return h.CHM(pe),h.oxw(2).stepNumber=_t}),h.qZA()}if(2&ze){const pe=h.oxw(2);h.Q6J("stepNumber",pe.stepNumber)("animationDirection",pe.animationDirection)}}function st(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"rtl-loop-in-info-graphics",88),h.NdJ("stepNumberChange",function(_t){return h.CHM(pe),h.oxw(2).stepNumber=_t}),h.qZA()}if(2&ze){const pe=h.oxw(2);h.Q6J("stepNumber",pe.stepNumber)("animationDirection",pe.animationDirection)}}const bt=function(ze,Tt){return{"dot-primary":ze,"dot-primary-lighter":Tt}};function gi(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"span",89),h.NdJ("click",function(){const re=h.CHM(pe).$implicit;return h.oxw(2).onStepChanged(re)}),h._UZ(1,"p",90),h.qZA()}if(2&ze){const pe=Tt.$implicit,je=h.oxw(2);h.xp6(1),h.Q6J("ngClass",h.WLB(1,bt,je.stepNumber===pe,je.stepNumber!==pe))}}function qt(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",91),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).onReadMore()}),h._uU(1,"Read More"),h.qZA()}}function Xt(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",92),h.NdJ("click",function(){return h.CHM(pe),h.oxw(2).onStepChanged(4)}),h._uU(1,"Back"),h.qZA()}}function qi(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",93),h.NdJ("click",function(){h.CHM(pe);const _t=h.oxw(2);return _t.flgShowInfo=!1,_t.stepNumber=1}),h._uU(1,"Close"),h.qZA()}}function fi(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",94),h.NdJ("click",function(){h.CHM(pe);const _t=h.oxw(2);return _t.flgShowInfo=!1,_t.stepNumber=1}),h._uU(1,"Close"),h.qZA()}}function si(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",95),h.NdJ("click",function(){h.CHM(pe);const _t=h.oxw(2);return _t.onStepChanged(_t.stepNumber-1)}),h._uU(1,"Back"),h.qZA()}}function $i(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"button",96),h.NdJ("click",function(){h.CHM(pe);const _t=h.oxw(2);return _t.onStepChanged(_t.stepNumber+1)}),h._uU(1,"Next"),h.qZA()}}const Bi=function(){return[1,2,3,4,5]};function zi(ze,Tt){if(1&ze){const pe=h.EpF();h.TgZ(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),h._UZ(4,"span",7),h.qZA(),h.TgZ(5,"div",75)(6,"button",76),h.NdJ("click",function(){h.CHM(pe);const _t=h.oxw();return _t.flgShowInfo=!1,_t.stepNumber=1}),h._uU(7,"X"),h.qZA()()(),h.TgZ(8,"mat-card-content",77),h.YNc(9,at,1,2,"rtl-loop-out-info-graphics",78),h.YNc(10,st,1,2,"rtl-loop-in-info-graphics",78),h.qZA(),h.TgZ(11,"div",79),h.YNc(12,gi,2,4,"span",80),h.qZA(),h.TgZ(13,"div",81),h.YNc(14,qt,2,0,"button",82),h.YNc(15,Xt,2,0,"button",83),h.YNc(16,qi,2,0,"button",84),h.YNc(17,fi,2,0,"button",85),h.YNc(18,si,2,0,"button",86),h.YNc(19,$i,2,0,"button",87),h.qZA()()()}if(2&ze){const pe=h.oxw();h.Q6J("@opacityAnimation",void 0),h.xp6(9),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_OUT),h.xp6(1),h.Q6J("ngIf",pe.direction===pe.LoopTypeEnum.LOOP_IN),h.xp6(2),h.Q6J("ngForOf",h.DdM(10,Bi)),h.xp6(2),h.Q6J("ngIf",5===pe.stepNumber),h.xp6(1),h.Q6J("ngIf",5===pe.stepNumber),h.xp6(1),h.Q6J("ngIf",5===pe.stepNumber),h.xp6(1),h.Q6J("ngIf",pe.stepNumber<5),h.xp6(1),h.Q6J("ngIf",pe.stepNumber>1&&pe.stepNumber<5),h.xp6(1),h.Q6J("ngIf",pe.stepNumber<5)}}let Ui=(()=>{class ze{constructor(pe,je,_t,re,qe,Mt,zt,bi,Ei){this.dialogRef=pe,this.data=je,this.store=_t,this.loopService=re,this.formBuilder=qe,this.decimalPipe=Mt,this.logger=zt,this.router=bi,this.commonService=Ei,this.faInfoCircle=a.sqG,this.LoopTypeEnum=d.$I,this.direction=d.$I.LOOP_OUT,this.loopDirectionCaption="Loop out",this.loopStatus=null,this.inputFormLabel="Amount to loop out",this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address",this.prepayRoutingFee=36,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=d.cu,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.channel=this.data.channel,this.minQuote=this.data.minQuote?this.data.minQuote:{},this.maxQuote=this.data.maxQuote?this.data.maxQuote:{},this.direction=this.data.direction||d.$I.LOOP_OUT,this.loopDirectionCaption=this.direction===d.$I.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[t.kI.required,t.kI.min(this.minQuote.amount||0),t.kI.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[t.kI.required,t.kI.min(1)]],routingFeePercent:[2,[t.kI.required,t.kI.min(0)]],fast:[!1,[t.kI.required]]}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[t.kI.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(N.ZW).pipe((0,f.R)(this.unSubs[6])).subscribe(pe=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:pe.lightningBalance&&pe.lightningBalance.local?+pe.lightningBalance.local:null})}ngAfterViewInit(){this.inputFormGroup.setErrors({Invalid:!0}),this.direction===d.$I.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,f.R)(this.unSubs[4])).subscribe(pe=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===d.$I.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,f.R)(this.unSubs[5])).subscribe(pe=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(pe){"external"===pe.value?(this.addressFormGroup.controls.address.setValidators([t.kI.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onValidateAmount(){this.localBalanceToCompare&&this.inputFormGroup.controls.amount.value<=this.localBalanceToCompare&&this.stepper.next()}onLoop(){var pe;if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2||this.direction===d.$I.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===d.$I.LOOP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,null===(pe=this.stepper.selected)||void 0===pe||pe.stepControl.setErrors(null),this.stepper.next(),this.direction===d.$I.LOOP_IN)this.loopService.loopIn(this.inputFormGroup.controls.amount.value,+(this.quote.swap_fee_sat||0),+(this.quote.htlc_publish_fee_sat||0),"",!0).pipe((0,f.R)(this.unSubs[0])).subscribe({next:je=>{this.loopStatus=je,this.loopService.listSwaps(),this.flgEditable=!0},error:je=>{this.loopStatus={error:je},this.flgEditable=!0,this.logger.error(je)}});else{const je=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),_t="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",re=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.loopService.loopOut(this.inputFormGroup.controls.amount.value,this.channel&&this.channel.chan_id?this.channel.chan_id:"",this.inputFormGroup.controls.sweepConfTarget.value,je,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),re,_t).pipe((0,f.R)(this.unSubs[1])).subscribe({next:qe=>{this.loopStatus=qe,this.loopService.listSwaps(),this.flgEditable=!0},error:qe=>{this.loopStatus={error:qe},this.flgEditable=!0,this.logger.error(qe)}})}}onEstimateQuote(){var pe;if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2)return!0;const je=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===d.$I.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,je).pipe((0,f.R)(this.unSubs[2])).subscribe(_t=>{this.quote=_t,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}):this.loopService.getLoopOutQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,je).pipe((0,f.R)(this.unSubs[3])).subscribe(_t=>{this.quote=_t,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),null===(pe=this.stepper.selected)||void 0===pe||pe.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(pe){switch(pe.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===d.$I.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Percentage: "+(this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:"2")+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===d.$I.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel=this.quote&&this.quote.swap_fee_sat&&(this.quote.htlc_sweep_fee_sat||this.quote.htlc_publish_fee_sat)&&this.quote.prepay_amt_sat?"Quote confirmed | Estimated Fees: "+this.decimalPipe.transform(+this.quote.swap_fee_sat+ +(this.quote.htlc_sweep_fee_sat?this.quote.htlc_sweep_fee_sat:this.quote.htlc_publish_fee_sat?this.quote.htlc_publish_fee_sat:0))+" Sats":"Quote confirmed",this.addressFormLabel=this.addressFormGroup.controls.addressType.value?"Withdrawal Address | Type: "+this.addressFormGroup.controls.addressType.value:"Withdrawal Address"}(this.direction===d.$I.LOOP_OUT&&1!==pe.selectedIndex&&pe.selectedIndex{pe.next(null),pe.complete()})}}return ze.\u0275fac=function(pe){return new(pe||ze)(h.Y36(M.so),h.Y36(M.WI),h.Y36(A.yh),h.Y36(w.W),h.Y36(t.qu),h.Y36(D.JJ),h.Y36(L.mQ),h.Y36(k.F0),h.Y36(S.v))},ze.\u0275cmp=h.Xpm({type:ze,selectors:[["rtl-loop-modal"]],viewQuery:function(pe,je){if(1&pe&&h.Gf(Le,5),2&pe){let _t;h.iGM(_t=h.CRH())&&(je.stepper=_t.first)}},decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["loopStatusBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["class","padding-gap-large","fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngIf"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"quote","termCaption","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"fxFlex"],["autoFocus","","matInput","","placeholder","Amount","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","placeholder","Sweep Confirmation Target","type","number","tabindex","2","formControlName","sweepConfTarget","required","",3,"step"],["fxFlex","30",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","class","mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","5","type","button",3,"click"],[3,"quote","showPanel"],["fxFlex","100","class","color-warn mt-2","fxLayoutAlign","start center",4,"ngIf"],["mat-button","","color","primary","tabindex","6","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","7","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","12","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","40"],["fxFlex","30"],["matInput","","placeholder","Max Off-chain Routing Fee (%)","type","number","tabindex","3","formControlName","routingFeePercent","required","",3,"step"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","formControlName","fast","fxFlex","none"],["matTooltip","Swap immediately (Might end up paying a higher on-chain fee)","matTooltipPosition","above","fxFlex","none",1,"info-icon"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","mt-2"],[1,"mr-1","icon-small"],["mat-button","","color","primary","tabindex","6","type","button",3,"click"],["mat-button","","color","primary","tabindex","7","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxFlex","100",1,"mt-1"],["matInput","","placeholder","Address","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","12","type","button",3,"click"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"loopStatus"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["tabindex","19","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange"],["fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(pe,je){1&pe&&(h.YNc(0,Se,71,55,"div",0),h.YNc(1,Ge,1,1,"ng-template",null,1,h.W1O),h.YNc(3,zi,20,11,"div",2)),2&pe&&(h.Q6J("ngIf",!je.flgShowInfo),h.xp6(3),h.Q6J("ngIf",je.flgShowInfo))},directives:[D.O5,U.xw,U.yH,U.Wh,Z.dk,Y.lW,Z.dn,ne.Vq,ne.C0,t._Y,t.JL,t.sg,ne.VY,E,I.KE,v.Nt,t.wV,t.Fj,n.h,t.JJ,t.u,t.Q7,I.bx,I.R9,I.TO,C.Rr,te.Hw,ie.gM,B.VQ,B.U0,$.ib,$.yz,$.yK,P.pW,M.ZT,_e,Ie,Ce,D.sg,D.mk,de.oO],pipes:[D.rS,D.JJ],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:60rem;min-height:60rem}"],data:{animation:[b._]}}),ze})()},9442:(Ve,j,p)=>{"use strict";p.d(j,{w:()=>N});var t=p(801),e=p(5e3),f=p(1402),M=p(7093),a=p(9444),b=p(9224),d=p(7423);let N=(()=>{class h{constructor(w){this.router=w,this.faTimes=t.NBC}goToHelp(){this.router.navigate(["/help"])}}return h.\u0275fac=function(w){return new(w||h)(e.Y36(f.F0))},h.\u0275cmp=e.Xpm({type:h,selectors:[["rtl-not-found"]],decls:13,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(w,D){1&w&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Page Not Found"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),e._uU(9,"This page does not exist!"),e.qZA(),e.TgZ(10,"span",7)(11,"button",8),e.NdJ("click",function(){return D.goToHelp()}),e._uU(12,"Go To Help"),e.qZA()()()()()()),2&w&&(e.xp6(1),e.Q6J("icon",D.faTimes))},directives:[M.xw,M.Wh,a.BN,b.a8,b.dn,M.yH,d.lW],encapsulation:2}),h})()},3390:(Ve,j,p)=>{"use strict";p.d(j,{h:()=>e});var t=p(5e3);let e=(()=>{class f{constructor(a){this.el=a}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}}return f.\u0275fac=function(a){return new(a||f)(t.Y36(t.SBq))},f.\u0275dir=t.lG2({type:f,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}}),f})()},6895:(Ve,j,p)=>{"use strict";p.d(j,{y:()=>e});var t=p(5e3);let e=(()=>{class f{constructor(){this.copied=new t.vpe}onClick(a){a.preventDefault(),this.payload&&navigator.clipboard&&navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())},b=>{this.copied.emit("Error could not copy text: "+JSON.stringify(b))})}}return f.\u0275fac=function(a){return new(a||f)},f.\u0275dir=t.lG2({type:f,selectors:[["","rtlClipboard",""]],hostBindings:function(a,b){1&a&&t.NdJ("click",function(N){return b.onClick(N)})},inputs:{payload:"payload"},outputs:{copied:"copied"}}),f})()},9843:(Ve,j,p)=>{"use strict";p.d(j,{F:()=>f});var t=p(3075),e=p(5e3);let f=(()=>{class M{validate(b){return this.max?t.kI.max(+this.max)(b):null}}return M.\u0275fac=function(b){return new(b||M)},M.\u0275dir=e.lG2({type:M,selectors:[["input","max",""]],inputs:{max:"max"},features:[e._Bn([{provide:t.Cf,useExisting:M,multi:!0}])]}),M})()},6534:(Ve,j,p)=>{"use strict";p.d(j,{q:()=>f});var t=p(3075),e=p(5e3);let f=(()=>{class M{validate(b){return this.min?t.kI.min(+this.min)(b):null}}return M.\u0275fac=function(b){return new(b||M)},M.\u0275dir=e.lG2({type:M,selectors:[["input","min",""]],inputs:{min:"min"},features:[e._Bn([{provide:t.Cf,useExisting:M,multi:!0}])]}),M})()},1643:(Ve,j,p)=>{"use strict";p.d(j,{QM:()=>b,a1:()=>a,eQ:()=>d,fY:()=>N});var t=p(4004),e=p(5e3),f=p(1402),M=p(5986);let a=(()=>{class h{constructor(w,D){this.router=w,this.sessionService=D}canActivate(w){return!(!this.sessionService.getItem("token")||"settings"!==w.url[0].path&&"auth"!==w.url[0].path&&"true"===this.sessionService.getItem("defaultPassword")&&(this.router.navigate(["/settings/auth"]),1))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(f.F0),e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})(),b=(()=>{class h{constructor(w){this.sessionService=w}canActivate(){return!!this.sessionService.watchSession().pipe((0,t.U)(w=>w.lndUnlocked))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})(),d=(()=>{class h{constructor(w){this.sessionService=w}canActivate(){return!!this.sessionService.watchSession().pipe((0,t.U)(w=>w.clUnlocked))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})(),N=(()=>{class h{constructor(w){this.sessionService=w}canActivate(){return!!this.sessionService.watchSession().pipe((0,t.U)(w=>w.eclUnlocked))}}return h.\u0275fac=function(w){return new(w||h)(e.LFG(M.m))},h.\u0275prov=e.Yz7({token:h,factory:h.\u0275fac}),h})()},62:(Ve,j,p)=>{"use strict";p.d(j,{v:()=>w});var t=p(1135),e=p(9646),f=p(2843),M=p(5698),a=p(4004),b=p(262),d=p(7731),N=p(5e3),h=p(8104),A=p(5043);let w=(()=>{class D{constructor(k,S){this.dataService=k,this.logger=S,this.currencyUnits=[],this.CurrencyUnitEnum=d.NT,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=d.Bn.UN_INITIATED,this.screenSize=d.cu.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new t.X(this.containerSize)}getScreenSize(){return this.screenSize}setScreenSize(k){this.screenSize=k}getContainerSize(){return this.containerSize}setContainerSize(k,S){this.containerSize={width:k,height:S},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(k,S,U,Z="asc"){return k.sort("number"===U?"desc"===Z?(Y,ne)=>+Y[S]>+ne[S]?-1:1:(Y,ne)=>+Y[S]>+ne[S]?1:-1:"desc"===Z?(Y,ne)=>Y[S]>ne[S]?-1:1:(Y,ne)=>Y[S]>ne[S]?1:-1)}sortDescByKey(k,S){return k.sort((U,Z)=>{const Y=+U[S],ne=+Z[S];return Y>ne?-1:Y{const Y=+U[S],ne=+Z[S];return Yne?1:0})}camelCase(k){var S,U;return null===(U=null===(S=null==k?void 0:k.replace(/(?:^\w|[A-Z]|\b\w)/g,(Z,Y)=>Z.toUpperCase()))||void 0===S?void 0:S.replace(/\s+/g,""))||void 0===U?void 0:U.replace(/-/g," ")}titleCase(k,S,U){var Z,Y;return S&&U&&""!==S&&""!==U&&(k=null==k?void 0:k.replace(new RegExp(S,"g"),U)),k.indexOf("!\n")>0||k.indexOf(".\n")>0?null===(Z=k.split("\n"))||void 0===Z?void 0:Z.reduce((ne,$)=>ne+$.charAt(0).toUpperCase()+$.substring(1).toLowerCase()+"\n",""):k.indexOf(" ")>0?null===(Y=k.split(" "))||void 0===Y?void 0:Y.reduce((ne,$)=>ne+$.charAt(0).toUpperCase()+$.substring(1).toLowerCase()+" ",""):k.charAt(0).toUpperCase()+k.substring(1).toLowerCase()}convertCurrency(k,S,U,Z,Y){const ne=(new Date).valueOf();return Y&&Z&&this.ratesAPIStatus!==d.Bn.INITIATED&&(S===d.NT.OTHER||U===d.NT.OTHER)?this.conversionData.data&&this.conversionData.last_fetched&&ne(this.ratesAPIStatus=d.Bn.COMPLETED,this.conversionData.data=$&&"object"==typeof $?$:$&&"string"==typeof $?JSON.parse($):{},this.conversionData.last_fetched=ne,this.convertWithFiat(k,S,Z))),(0,b.K)($=>(this.ratesAPIStatus=d.Bn.ERROR,(0,f._)(()=>this.extractErrorMessage($,"Currency Conversion Error.")))))):(0,e.of)(this.convertWithoutFiat(k,S))}convertWithoutFiat(k,S){const U={};switch(U[d.NT.SATS]=0,U[d.NT.BTC]=0,S){case d.NT.SATS:U[d.NT.SATS]=k,U[d.NT.BTC]=1e-8*k;break;case d.NT.BTC:U[d.NT.SATS]=1e8*k,U[d.NT.BTC]=k}return U}convertWithFiat(k,S,U){const Z={unit:U,symbol:this.conversionData.data[U].symbol};switch(Z[d.NT.SATS]=0,Z[d.NT.BTC]=0,Z[d.NT.OTHER]=0,S){case d.NT.SATS:Z[d.NT.SATS]=k,Z[d.NT.BTC]=1e-8*k,Z[d.NT.OTHER]=1e-8*k*this.conversionData.data[U].last;break;case d.NT.BTC:Z[d.NT.SATS]=1e8*k,Z[d.NT.BTC]=k,Z[d.NT.OTHER]=k*this.conversionData.data[U].last;break;case d.NT.OTHER:Z[d.NT.SATS]=k/this.conversionData.data[U].last*1e8,Z[d.NT.BTC]=k/this.conversionData.data[U].last,Z[d.NT.OTHER]=k}return Z}convertTime(k,S,U){switch(S){case d.Qk.SECS:switch(U){case d.Qk.MINS:k/=60;break;case d.Qk.HOURS:k/=3600;break;case d.Qk.DAYS:k/=86400}break;case d.Qk.MINS:switch(U){case d.Qk.SECS:k*=60;break;case d.Qk.HOURS:k/=60;break;case d.Qk.DAYS:k/=1440}break;case d.Qk.HOURS:switch(U){case d.Qk.SECS:k*=3600;break;case d.Qk.MINS:k*=60;break;case d.Qk.DAYS:k/=24}break;case d.Qk.DAYS:switch(U){case d.Qk.SECS:k=3600*k*24;break;case d.Qk.MINS:k=60*k*24;break;case d.Qk.HOURS:k*=24}}return k}downloadFile(k,S,U=".json",Z=".csv"){let Y=new Blob;Y=".json"===U?new Blob(["\ufeff"+this.convertToCSV(k)],{type:"text/csv;charset=utf-8;"}):new Blob([k.toString()],{type:"text/plain;charset=utf-8"});const ne=document.createElement("a"),$=URL.createObjectURL(Y);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&ne.setAttribute("target","_blank"),ne.setAttribute("href",$),ne.setAttribute("download",S+Z),ne.style.visibility="hidden",document.body.appendChild(ne),ne.click(),document.body.removeChild(ne)}convertToCSV(k){const S=[];let U="",Z="",Y="";return"object"!=typeof k&&(k=JSON.parse(k)),k.forEach(($,de)=>{for(const te in $)S.findIndex(ie=>ie===te)<0&&S.push(te)}),Y=S.join(",")+"\r\n",k.forEach($=>{U="",S.forEach(de=>{var te;$.hasOwnProperty(de)?Array.isArray($[de])?(Z="",$[de].forEach((ie,oe)=>{var X;Z+="object"==typeof ie?"("+(null===(X=JSON.stringify(ie))||void 0===X?void 0:X.replace(/\,/g,";"))+")":"("+ie+")"}),U+=Z+","):U+="object"==typeof $[de]?(null===(te=JSON.stringify($[de]))||void 0===te?void 0:te.replace(/\,/g,";"))+",":$[de]+",":U+=","}),Y+=U.slice(0,-1)+"\r\n"}),Y}isVersionCompatible(k,S){var U;if(k){const Z=(null===(U=k.trim())||void 0===U?void 0:U.replace("v","").split("-")[0].split("."))||[],Y=S.split(".");return+Z[0]>+Y[0]||+Z[0]==+Y[0]&&+Z[1]>+Y[1]||+Z[0]==+Y[0]&&+Z[1]==+Y[1]&&+Z[2]>=+Y[2]}return!1}extractErrorMessage(k,S="Unknown Error."){const U=this.titleCase(k.error&&k.error.text&&"string"==typeof k.error.text&&k.error.text.includes('')?"API Route Does Not Exist.":k.error&&k.error.error&&k.error.error.error&&k.error.error.error.error&&k.error.error.error.error.error&&"string"==typeof k.error.error.error.error.error?k.error.error.error.error.error:k.error&&k.error.error&&k.error.error.error&&k.error.error.error.error&&"string"==typeof k.error.error.error.error?k.error.error.error.error:k.error&&k.error.error&&k.error.error.error&&"string"==typeof k.error.error.error?k.error.error.error:k.error&&k.error.error&&"string"==typeof k.error.error?k.error.error:k.error&&"string"==typeof k.error?k.error:k.error&&k.error.error&&k.error.error.error&&k.error.error.error.error&&k.error.error.error.error.message&&"string"==typeof k.error.error.error.error.message?k.error.error.error.error.message:k.error&&k.error.error&&k.error.error.error&&k.error.error.error.message&&"string"==typeof k.error.error.error.message?k.error.error.error.message:k.error&&k.error.error&&k.error.error.message&&"string"==typeof k.error.error.message?k.error.error.message:k.error&&k.error.message&&"string"==typeof k.error.message?k.error.message:k.message&&"string"==typeof k.message?k.message:S);return this.logger.info("Error Message: "+U),U}extractErrorCode(k,S=500){const U=k.error&&k.error.error&&k.error.error.message&&k.error.error.message.code?k.error.error.message.code:k.error&&k.error.error&&k.error.error.code?k.error.error.code:k.error&&k.error.code?k.error.code:k.code?k.code:k.status?k.status:S;return this.logger.info("Error Code: "+U),U}extractErrorNumber(k,S=500){const U=k.error&&k.error.error&&k.error.error.errno?k.error.error.errno:k.error&&k.error.errno?k.error.errno:k.errno?k.errno:k.status?k.status:S;return this.logger.info("Error Number: "+U),U}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}}return D.\u0275fac=function(k){return new(k||D)(N.LFG(h.D),N.LFG(A.mQ))},D.\u0275prov=N.Yz7({token:D,factory:D.\u0275fac}),D})()},7731:(Ve,j,p)=>{"use strict";p.d(j,{$I:()=>r,$v:()=>k,AB:()=>he,Bn:()=>n,Df:()=>Ne,Dr:()=>A,Er:()=>a,Fq:()=>i,Gi:()=>te,HW:()=>oe,H_:()=>we,IV:()=>d,IX:()=>B,JX:()=>I,LO:()=>b,NT:()=>de,OJ:()=>ne,OO:()=>ve,Qk:()=>$,Qw:()=>c,TJ:()=>N,Vc:()=>w,Xr:()=>P,Xz:()=>M,Zs:()=>y,_t:()=>h,cu:()=>ie,g8:()=>U,gB:()=>Ue,gg:()=>_,hZ:()=>Q,hc:()=>u,kO:()=>v,lr:()=>_e,m6:()=>C,nM:()=>S,n_:()=>Y,ol:()=>Z,op:()=>E,p7:()=>me,pg:()=>H,pt:()=>e,uA:()=>f,uR:()=>q,vn:()=>D,wZ:()=>L,x$:()=>X});var t=p(6087);function e(V){const De=new t.ye;return De.itemsPerPageLabel=V+" per page:",De}const f=["Sats","BTC"],M={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},a=[{id:"USD",name:"USD"},{id:"AUD",name:"AUD"},{id:"BRL",name:"BRL"},{id:"CAD",name:"CAD"},{id:"CHF",name:"CHF"},{id:"CLP",name:"CLP"},{id:"CNY",name:"CNY"},{id:"DKK",name:"DKK"},{id:"EUR",name:"EUR"},{id:"GBP",name:"GBP"},{id:"HKD",name:"HKD"},{id:"INR",name:"INR"},{id:"ISK",name:"ISK"},{id:"JPY",name:"JPY"},{id:"KRW",name:"KRW"},{id:"NZD",name:"NZD"},{id:"PLN",name:"PLN"},{id:"RUB",name:"RUB"},{id:"SEK",name:"SEK"},{id:"SGD",name:"SGD"},{id:"THB",name:"THB"},{id:"TWD",name:"TWD"}],b=["SECS","MINS","HOURS","DAYS"],d=10,N=[5,10,25,100],h=[{addressId:"0",addressCode:"bech32",addressTp:"Bech32 (P2WKH)",addressDetails:"Pay to witness key hash"},{addressId:"1",addressCode:"p2sh-segwit",addressTp:"P2SH (NP2WKH)",addressDetails:"Pay to nested witness key hash (default)"}],A=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],w=[{id:"none",name:"No Fee Limit",placeholder:"No Limit"},{id:"fixed",name:"Fixed Limit (Sats)",placeholder:"Fixed Limit in Sats"},{id:"percent",name:"Percentage of Payment Amount",placeholder:"Percentage Limit"}],D=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom (Sats/vByte)"}],L={themes:[{id:"PURPLE",name:"Diogo"},{id:"TEAL",name:"My2Sats"},{id:"INDIGO",name:"RTL"},{id:"PINK",name:"BK"},{id:"YELLOW",name:"Gold"}],modes:[{id:"DAY",name:"Day"},{id:"NIGHT",name:"Night"}]};var k=(()=>{return(V=k||(k={})).PAYMENT_RECEIVED="payment-received",V.PAYMENT_RELAYED="payment-relayed",V.PAYMENT_SENT="payment-sent",V.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",V.PAYMENT_FAILED="payment-failed",V.CHANNEL_OPENED="channel-opened",V.CHANNEL_STATE_CHANGED="channel-state-changed",V.CHANNEL_CLOSED="channel-closed",k;var V})(),S=(()=>{return(V=S||(S={})).INVOICE="invoice",V.BLOCK_HEIGHT="block-height",V.SEND_PAYMENT="send-payment",S;var V})(),U=(()=>((U||(U={})).INVOICE="invoice",U))(),Z=(()=>{return(V=Z||(Z={})).OPERATOR="OPERATOR",V.MERCHANT="MERCHANT",V.ALL="ALL",Z;var V})(),Y=(()=>{return(V=Y||(Y={})).INFORMATION="Information",V.WARNING="Warning",V.ERROR="Error",V.SUCCESS="Success",V.CONFIRM="Confirm",Y;var V})(),ne=(()=>{return(V=ne||(ne={})).JWT="JWT",V.PASSWORD="PASSWORD",ne;var V})(),$=(()=>{return(V=$||($={})).SECS="SECS",V.MINS="MINS",V.HOURS="HOURS",V.DAYS="DAYS",$;var V})(),de=(()=>{return(V=de||(de={})).SATS="Sats",V.BTC="BTC",V.OTHER="OTHER",de;var V})(),te=(()=>{return(V=te||(te={})).ARRAY="ARRAY",V.NUMBER="NUMBER",V.STRING="STRING",V.BOOLEAN="BOOLEAN",V.PASSWORD="PASSWORD",V.DATE="DATE",V.DATE_TIME="DATE_TIME",te;var V})(),ie=(()=>{return(V=ie||(ie={})).XS="XS",V.SM="SM",V.MD="MD",V.LG="LG",V.XL="XL",ie;var V})();const oe={COOPERATIVE_CLOSE:{name:"Co-operative Close",tooltip:"Channel closed cooperatively"},LOCAL_FORCE_CLOSE:{name:"Local Force Close",tooltip:"Channel force-closed by the local node"},REMOTE_FORCE_CLOSE:{name:"Remote Force Close",tooltip:"Channel force-closed by the remote node"},BREACH_CLOSE:{name:"Breach Close",tooltip:"Remote node attempted to broadcast a prior revoked channel state"},FUNDING_CANCELED:{name:"Funding Canceled",tooltip:"Channel never fully opened"},ABANDONED:{name:"Abandoned",tooltip:"Channel abandoned by the local node"}},X={WITNESS_PUBKEY_HASH:{name:"Witness Pubkey Hash",tooltip:""},NESTED_PUBKEY_HASH:{name:"Nested Pubkey Hash",tooltip:""},UNUSED_WITNESS_PUBKEY_HASH:{name:"Unused Witness Pubkey Hash",tooltip:""},UNUSED_NESTED_PUBKEY_HASH:{name:"Unused Nested Pubkey Hash",tooltip:""}};var me=(()=>{return(V=me||(me={})).WIRE_INVALID_ONION_VERSION="Invalid Onion Version",V.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",V.WIRE_INVALID_ONION_KEY="Invalid Onion Key",V.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",V.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",V.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",V.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",V.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",V.WIRE_FEE_INSUFFICIENT="Insufficient Fee",V.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",V.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",V.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",V.WIRE_CHANNEL_DISABLED="Channel Disabled",V.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",V.WIRE_INVALID_REALM="Invalid Realm",V.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",V.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",V.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",V.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",V.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",V.WIRE_MPP_TIMEOUT="MPP Timeout",V.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",V.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",me;var V})(),y=(()=>{return(V=y||(y={})).CHANNELD_NORMAL="Active",V.OPENINGD="Opening",V.CHANNELD_AWAITING_LOCKIN="Pending Open",V.CHANNELD_SHUTTING_DOWN="Shutting Down",V.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",V.CLOSINGD_COMPLETE="Closed",V.AWAITING_UNILATERAL="Awaiting Unilateral Close",V.FUNDING_SPEND_SEEN="Funding Spend Seen",V.ONCHAIN="Onchain",V.DUALOPEND_OPEN_INIT="Dual Open Initialized",V.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",y;var V})(),i=(()=>{return(V=i||(i={})).INITIATED="Initiated",V.PREIMAGE_REVEALED="Preimage Revealed",V.HTLC_PUBLISHED="HTLC Published",V.SUCCESS="Successful",V.FAILED="Failed",V.INVOICE_SETTLED="Invoice Settled",i;var V})(),r=(()=>{return(V=r||(r={})).LOOP_OUT="LOOP_OUT",V.LOOP_IN="LOOP_IN",r;var V})(),u=(()=>{return(V=u||(u={})).SWAP_OUT="SWAP_OUT",V.SWAP_IN="SWAP_IN",u;var V})(),c=(()=>{return(V=c||(c={}))["swap.created"]="Swap Created",V["swap.expired"]="Swap Expired",V["invoice.set"]="Invoice Set",V["invoice.paid"]="Invoice Paid",V["invoice.pending"]="Invoice Pending",V["invoice.settled"]="Invoice Settled",V["invoice.failedToPay"]="Invoice Failed To Pay",V["channel.created"]="Channel Created",V["transaction.failed"]="Transaction Failed",V["transaction.mempool"]="Transaction Mempool",V["transaction.claimed"]="Transaction Claimed",V["transaction.refunded"]="Transaction Refunded",V["transaction.confirmed"]="Transaction Confirmed",V["swap.refunded"]="Swap Refunded",V["swap.abandoned"]="Swap Abandoned",c;var V})();const _=[{name:"Jan",days:31},{name:"Feb",days:28},{name:"Mar",days:31},{name:"Apr",days:30},{name:"May",days:31},{name:"Jun",days:30},{name:"Jul",days:31},{name:"Aug",days:31},{name:"Sep",days:30},{name:"Oct",days:31},{name:"Nov",days:30},{name:"Dec",days:31}],E=["MONTHLY","YEARLY"];var I=(()=>{return(V=I||(I={})).LOOP="LOOP",V.BOLTZ="BOLTZ",V.OFFERS="OFFERS",I;var V})();const v=["password","changeme","moneyprintergobrrr"];var n=(()=>{return(V=n||(n={})).UN_INITIATED="UN_INITIATED",V.INITIATED="INITIATED",V.COMPLETED="COMPLETED",V.ERROR="ERROR",n;var V})();const C={NO_SPINNER:"No Spinner...",GET_NODE_INFO:"Getting Node Information...",INITALIZE_NODE_DATA:"Initializing Node Data...",GENERATE_NEW_ADDRESS:"Getting New Address...",SEND_FUNDS:"Sending Funds...",UPDATE_CHAN_POLICY:"Updating Channel Policy...",GET_CHAN_POLICY:"Fetching Channel Policy...",GET_REMOTE_POLICY:"Fetching Remote Policy...",CLOSE_CHANNEL:"Closing Channel...",FORCE_CLOSE_CHANNEL:"Force Closing Channel...",OPEN_CHANNEL:"Opening Channel...",CONNECT_PEER:"Connecting Peer...",DISCONNECT_PEER:"Disconnecting Peer...",ADD_INVOICE:"Adding Invoice...",CREATE_INVOICE:"Creating Invoice...",DELETE_INVOICE:"Deleting Invoices...",DECODE_PAYMENT:"Decoding Payment...",DECODE_OFFER:"Decoding Offer...",DECODE_PAYMENTS:"Decoding Payments...",FETCH_INVOICE:"Fetching Invoice...",GET_SENT_PAYMENTS:"Getting Sent Payments...",SEND_PAYMENT:"Sending Payment...",SEND_KEYSEND:"Sending Keysend Payment...",SEARCHING_NODE:"Searching Node...",SEARCHING_CHANNEL:"Searching Channel...",SEARCHING_INVOICE:"Searching Invoice...",SEARCHING_PAYMENT:"Searching Payment...",BACKUP_CHANNEL:"Backup Channels...",VERIFY_CHANNEL:"Verify Channel...",DOWNLOAD_BACKUP_FILE:"Downloading Backup File...",RESTORE_CHANNEL:"Restoring Channels...",GET_TERMS_QUOTES:"Getting Terms and Quotes...",LABEL_UTXO:"Labelling UTXO...",GET_NODE_ADDRESS:"Getting Node Address...",GEN_SEED:"Generating Seed...",INITIALIZE_WALLET:"Initializing Wallet...",UNLOCK_WALLET:"Unlocking Wallet...",WAIT_SYNC_NODE:"Waiting for Node Sync...",UPDATE_BOLTZ_SETTINGS:"Updating Boltz Service Settings...",UPDATE_LOOP_SETTINGS:"Updating Loop Service Settings...",UPDATE_SETTING:"Updating Setting...",UPDATE_UI_SETTINGS:"Updating Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_SERVICE_INFO:"Getting Service Info...",GET_QUOTE:"Getting Quotes...",UPDATE_DEFAULT_NODE_SETTING:"Updating Defaule Node Settings...",GET_BOLTZ_SWAPS:"Getting Boltz Swaps...",SIGN_MESSAGE:"Signing Message...",VERIFY_MESSAGE:"Verifying Message...",BUMP_FEE:"Bumping Fee...",LEASE_UTXO:"Leasing UTXO...",GET_LOOP_SWAPS:"Getting List Swaps...",GET_FORWARDING_HISTORY:"Getting Forwarding History...",GET_LOOKUP_DETAILS:"Getting Lookup Details...",GET_RTL_CONFIG:"Getting RTL Config...",VERIFY_TOKEN:"Verify Token...",DISABLE_OFFER:"Disabling Offer...",CREATE_OFFER:"Creating Offer...",DELETE_OFFER_BOOKMARK:"Deleting Bookmark...",GET_FUNDER_POLICY:"Getting Or Updating Funder Policy...",GET_LIST_CONFIGS:"Getting Configurations List...",LIST_NETWORK_NODES:"Getting Network Nodes List...",LOG_OUT:"Logging Out..."};var B=(()=>{return(V=B||(B={})).INVOICE="INVOICE",V.OFFER="OFFER",V.KEYSEND="KEYSEND",B;var V})(),P=(()=>{return(V=P||(P={})).FEES="FEES",V.EVENTS="EVENTS",P;var V})(),H=(()=>{return(V=H||(H={})).VOID="VOID",V.SET_API_URL_ECL="SET_API_URL_ECL",V.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",V.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",V.RESET_ROOT_STORE="RESET_ROOT_STORE",V.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",V.OPEN_SNACK_BAR="OPEN_SNACKBAR",V.OPEN_SPINNER="OPEN_SPINNER",V.CLOSE_SPINNER="CLOSE_SPINNER",V.OPEN_ALERT="OPEN_ALERT",V.CLOSE_ALERT="CLOSE_ALERT",V.OPEN_CONFIRMATION="OPEN_CONFIRMATION",V.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",V.SHOW_PUBKEY="SHOW_PUBKEY",V.FETCH_CONFIG="FETCH_CONFIG",V.SHOW_CONFIG="SHOW_CONFIG",V.FETCH_STORE="FETCH_STORE",V.SET_STORE="SET_STORE",V.FETCH_RTL_CONFIG="FETCH_RTL_CONFIG",V.SET_RTL_CONFIG="SET_RTL_CONFIG",V.SAVE_SSO="SAVE_SSO",V.SAVE_SETTINGS="SAVE_SETTINGS",V.TWO_FA_SAVE_SETTINGS="TWO_FA_SAVE_SETTINGS",V.SET_SELECTED_NODE="SET_SELECTED_NODE",V.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",V.UPDATE_SERVICE_SETTINGS="UPDATE_SERVICE_SETTINGS",V.SET_NODE_DATA="SET_NODE_DATA",V.IS_AUTHORIZED="IS_AUTHORIZED",V.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",V.LOGIN="LOGIN",V.VERIFY_TWO_FA="VERIFY_TWO_FA",V.LOGOUT="LOGOUT",V.RESET_PASSWORD="RESET_PASSWORD",V.RESET_PASSWORD_RES="RESET_PASSWORD_RES",V.FETCH_FILE="FETCH_FILE",V.SHOW_FILE="SHOW_FILE",H;var V})(),q=(()=>{return(V=q||(q={})).RESET_LND_STORE="RESET_LND_STORE",V.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",V.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",V.FETCH_INFO_LND="FETCH_INFO_LND",V.SET_INFO_LND="SET_INFO_LND",V.FETCH_PEERS_LND="FETCH_PEERS_LND",V.SET_PEERS_LND="SET_PEERS_LND",V.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",V.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",V.DETACH_PEER_LND="DETACH_PEER_LND",V.REMOVE_PEER_LND="REMOVE_PEER_LND",V.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",V.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",V.ADD_INVOICE_LND="ADD_INVOICE_LND",V.FETCH_FEES_LND="FETCH_FEES_LND",V.SET_FEES_LND="SET_FEES_LND",V.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",V.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",V.FETCH_NETWORK_LND="FETCH_NETWORK_LND",V.SET_NETWORK_LND="SET_NETWORK_LND",V.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",V.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",V.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",V.SET_CHANNELS_LND="SET_CHANNELS_LND",V.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",V.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",V.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",V.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",V.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",V.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",V.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",V.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",V.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",V.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",V.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",V.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",V.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",V.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",V.FETCH_INVOICES_LND="FETCH_INVOICES_LND",V.SET_INVOICES_LND="SET_INVOICES_LND",V.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",V.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",V.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",V.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",V.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",V.FETCH_UTXOS_LND="FETCH_UTXOS_LND",V.SET_UTXOS_LND="SET_UTXOS_LND",V.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",V.SET_PAYMENTS_LND="SET_PAYMENTS_LND",V.SEND_PAYMENT_LND="SEND_PAYMENT_LND",V.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",V.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",V.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",V.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",V.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",V.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",V.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",V.GEN_SEED_LND="GEN_SEED_LND",V.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",V.INIT_WALLET_LND="INIT_WALLET_LND",V.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",V.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",V.PEER_LOOKUP_LND="PEER_LOOKUP_LND",V.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",V.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",V.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",V.SET_LOOKUP_LND="SET_LOOKUP_LND",V.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",V.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",V.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",V.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",V.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",V.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",q;var V})(),he=(()=>{return(V=he||(he={})).RESET_CLN_STORE="RESET_CLN_STORE",V.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",V.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",V.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",V.SET_INFO_CLN="SET_INFO_CLN",V.FETCH_FEES_CLN="FETCH_FEES_CLN",V.SET_FEES_CLN="SET_FEES_CLN",V.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",V.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",V.FETCH_BALANCE_CLN="FETCH_BALANCE_CLN",V.SET_BALANCE_CLN="SET_BALANCE_CLN",V.FETCH_LOCAL_REMOTE_BALANCE_CLN="FETCH_LOCAL_REMOTE_BALANCE_CLN",V.SET_LOCAL_REMOTE_BALANCE_CLN="SET_LOCAL_REMOTE_BALANCE_CLN",V.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",V.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",V.FETCH_UTXOS_CLN="FETCH_UTXOS_CLN",V.SET_UTXOS_CLN="SET_UTXOS_CLN",V.FETCH_PEERS_CLN="FETCH_PEERS_CLN",V.SET_PEERS_CLN="SET_PEERS_CLN",V.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",V.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",V.ADD_PEER_CLN="ADD_PEER_CLN",V.DETACH_PEER_CLN="DETACH_PEER_CLN",V.REMOVE_PEER_CLN="REMOVE_PEER_CLN",V.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",V.SET_CHANNELS_CLN="SET_CHANNELS_CLN",V.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",V.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",V.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",V.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",V.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",V.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",V.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",V.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",V.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",V.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",V.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",V.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",V.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",V.SET_LOOKUP_CLN="SET_LOOKUP_CLN",V.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",V.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",V.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",V.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",V.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",V.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",V.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",V.SET_INVOICES_CLN="SET_INVOICES_CLN",V.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",V.ADD_INVOICE_CLN="ADD_INVOICE_CLN",V.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",V.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",V.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",V.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",V.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",V.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",V.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",V.SET_OFFERS_CLN="SET_OFFERS_CLN",V.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",V.ADD_OFFER_CLN="ADD_OFFER_CLN",V.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",V.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",V.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",V.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",V.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",V.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",V.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",he;var V})(),_e=(()=>{return(V=_e||(_e={})).RESET_ECL_STORE="RESET_ECL_STORE",V.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",V.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",V.FETCH_INFO_ECL="FETCH_INFO_ECL",V.SET_INFO_ECL="SET_INFO_ECL",V.FETCH_FEES_ECL="FETCH_FEES_ECL",V.SET_FEES_ECL="SET_FEES_ECL",V.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",V.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",V.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",V.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",V.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",V.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",V.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",V.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",V.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",V.FETCH_PEERS_ECL="FETCH_PEERS_ECL",V.SET_PEERS_ECL="SET_PEERS_ECL",V.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",V.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",V.ADD_PEER_ECL="ADD_PEER_ECL",V.DETACH_PEER_ECL="DETACH_PEER_ECL",V.REMOVE_PEER_ECL="REMOVE_PEER_ECL",V.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",V.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",V.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",V.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",V.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",V.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",V.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",V.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",V.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",V.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",V.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",V.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",V.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",V.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",V.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",V.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",V.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",V.SET_INVOICES_ECL="SET_INVOICES_ECL",V.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",V.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",V.ADD_INVOICE_ECL="ADD_INVOICE_ECL",V.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",V.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",V.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",V.SET_LOOKUP_ECL="SET_LOOKUP_ECL",V.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",V.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",_e;var V})();const Ne=[{range:{min:0,max:1},description:"Requires or supports extra channel re-establish fields"},{range:{min:4,max:5},description:"Commits to a shutdown script pubkey when opening channel"},{range:{min:6,max:7},description:"More sophisticated gossip control"},{range:{min:8,max:9},description:"Requires/supports variable-length routing onion payloads"},{range:{min:10,max:11},description:"Gossip queries can include additional information"},{range:{min:12,max:13},description:"Static key for remote output"},{range:{min:14,max:15},description:"Node supports payment secret field"},{range:{min:16,max:17},description:"Node can receive basic multi-part payments"},{range:{min:18,max:19},description:"Node can create large channels"},{range:{min:20,max:21},description:"Anchor outputs"},{range:{min:22,max:23},description:"Anchor commitment type with zero fee HTLC transactions"},{range:{min:26,max:27},description:"Future segwit versions allowed in shutdown"}];var we=(()=>{return(V=we||(we={})).gossip_queries_ex="Gossip queries including additional information",V.option_anchor_outputs="Anchor outputs",V.option_data_loss_protect="Extra channel re-establish fields",V.var_onion_optin="Variable-length routing onion payloads",V.option_static_remotekey="Static key for remote output",V.option_support_large_channel="Create large channels",V.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",V.payment_secret="Payment secret field",V.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",V.basic_mpp="Basic multi-part payments",V.gossip_queries="More sophisticated gossip control",V.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",V.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",V.amp="AMP",we;var V})(),Q=(()=>{return(V=Q||(Q={}))["data-loss-protect"]="Extra channel re-establish fields",V["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",V["gossip-queries"]="More sophisticated gossip control",V["tlv-onion"]="Variable-length routing onion payloads",V["ext-gossip-queries"]="Gossip queries can include additional information",V["static-remote-key"]="Static key for remote output",V["payment-addr"]="Payment secret field",V["multi-path-payments"]="Basic multi-part payments",V["wumbo-channels"]="Wumbo Channels",V.anchors="Anchor outputs",V["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",V.amp="AMP",Q;var V})();const Ue=[{id:"match",placeholder:"Policy Match (%age)",min:0,max:200},{id:"available",placeholder:"Policy Available (%age)",min:0,max:100},{id:"fixed",placeholder:"Fixed Policy (Sats)",min:0,max:100}];var ve=(()=>{return(V=ve||(ve={})).OFFERED="offered",V.SETTLED="settled",V.FAILED="failed",V.LOCAL_FAILED="local_failed",ve;var V})()},8104:(Ve,j,p)=>{"use strict";p.d(j,{D:()=>oe});var t=p(8138),e=p(1135),f=p(7579),M=p(2843),a=p(9646),b=p(590),d=p(5577),N=p(2722),h=p(4004),A=p(262),w=p(1365),D=p(2340),L=p(7731),k=p(1786),S=p(7861),U=p(6523),Z=p(6529),Y=p(9828),ne=p(5e3),$=p(5620),de=p(5043),te=p(7261),ie=p(9808);let oe=(()=>{class X{constructor(y,i,r,u,c){this.httpClient=y,this.store=i,this.logger=r,this.snackBar=u,this.titleCasePipe=c,this.APIUrl=D.T5,this.lnImplementation="",this.lnImplementationUpdated=new e.X(null),this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x,new f.x],this.mapAliases=(_,E)=>(_&&_.length>0?_.forEach((I,v)=>{var n;if(E&&E.length>0)for(let C=0;Cnull!==r),(0,d.z)(r=>{let u=this.APIUrl+"/"+r+D.NZ.PAYMENTS_API+"/decode/"+y;return"cln"===r&&(u=this.APIUrl+"/"+r+D.NZ.UTILITY_API+"/decode/"+y),this.store.dispatch((0,S.ac)({payload:L.m6.DECODE_PAYMENT})),this.httpClient.get(u).pipe((0,N.R)(this.unSubs[0]),(0,h.U)(c=>(this.store.dispatch((0,S.uO)({payload:L.m6.DECODE_PAYMENT})),c)),(0,A.K)(c=>(i?this.handleErrorWithoutAlert("Decode Payment",L.m6.DECODE_PAYMENT,c):this.handleErrorWithAlert("decodePaymentData",L.m6.DECODE_PAYMENT,"Decode Payment Failed",u,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}decodePayments(y){return this.lnImplementationUpdated.pipe((0,b.P)(i=>null!==i),(0,d.z)(i=>{let r="",u="";return"ecl"===i?(r=this.APIUrl+"/"+i+D.NZ.PAYMENTS_API+"/getsentinfos",u=L.m6.GET_SENT_PAYMENTS):"cln"===i?(r=this.APIUrl+"/"+i+D.NZ.UTILITY_API,u=L.m6.DECODE_PAYMENTS):(r=this.APIUrl+"/"+i+D.NZ.PAYMENTS_API,u=L.m6.DECODE_PAYMENTS),this.store.dispatch((0,S.ac)({payload:u})),this.httpClient.post(r,{payments:y}).pipe((0,N.R)(this.unSubs[1]),(0,h.U)(c=>(this.store.dispatch((0,S.uO)({payload:u})),c)),(0,A.K)(c=>(this.handleErrorWithAlert("decodePaymentsData",u,u+" Failed",r,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}getAliasesFromPubkeys(y,i){return this.lnImplementationUpdated.pipe((0,b.P)(r=>null!==r),(0,d.z)(r=>{if(i){const u=(new t.LE).set("pubkeys",y);return this.httpClient.get(this.APIUrl+"/"+r+D.NZ.NETWORK_API+"/nodes",{params:u})}return this.httpClient.get(this.APIUrl+"/"+r+D.NZ.NETWORK_API+"/node/"+y)}))}signMessage(y){return this.lnImplementationUpdated.pipe((0,b.P)(i=>null!==i),(0,d.z)(i=>{let r=this.APIUrl+"/"+i+D.NZ.MESSAGE_API+"/sign";return"cln"===i&&(r=this.APIUrl+"/"+i+D.NZ.UTILITY_API+"/sign"),this.store.dispatch((0,S.ac)({payload:L.m6.SIGN_MESSAGE})),this.httpClient.post(r,{message:y}).pipe((0,N.R)(this.unSubs[2]),(0,h.U)(u=>(this.store.dispatch((0,S.uO)({payload:L.m6.SIGN_MESSAGE})),u)),(0,A.K)(u=>(this.handleErrorWithAlert("signMessageData",L.m6.SIGN_MESSAGE,"Sign Message Failed",r,u),(0,M._)(()=>new Error(this.extractErrorMessage(u))))))}))}verifyMessage(y,i){return this.lnImplementationUpdated.pipe((0,b.P)(r=>null!==r),(0,d.z)(r=>{let u=this.APIUrl+"/"+r+D.NZ.MESSAGE_API+"/verify";return"cln"===r&&(u=this.APIUrl+"/"+r+D.NZ.UTILITY_API+"/verify"),this.store.dispatch((0,S.ac)({payload:L.m6.VERIFY_MESSAGE})),this.httpClient.post(u,{message:y,signature:i}).pipe((0,N.R)(this.unSubs[3]),(0,h.U)(c=>(this.store.dispatch((0,S.uO)({payload:L.m6.VERIFY_MESSAGE})),c)),(0,A.K)(c=>(this.handleErrorWithAlert("verifyMessageData",L.m6.VERIFY_MESSAGE,"Verify Message Failed",u,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}bumpFee(y,i,r,u){return this.lnImplementationUpdated.pipe((0,b.P)(c=>null!==c),(0,d.z)(c=>{const _={txid:y,outputIndex:i};return r&&(_.targetConf=r),u&&(_.satPerByte=u),this.store.dispatch((0,S.ac)({payload:L.m6.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+c+D.NZ.WALLET_API+"/bumpfee",_).pipe((0,N.R)(this.unSubs[4]),(0,h.U)(E=>(this.store.dispatch((0,S.uO)({payload:L.m6.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),E)),(0,A.K)(E=>(this.handleErrorWithoutAlert("Bump Fee",L.m6.BUMP_FEE,E),(0,M._)(()=>new Error(this.extractErrorMessage(E))))))}))}labelUTXO(y,i,r=!0){return this.lnImplementationUpdated.pipe((0,b.P)(u=>null!==u),(0,d.z)(u=>{const c={txid:y,label:i,overwrite:r};return this.store.dispatch((0,S.ac)({payload:L.m6.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+u+D.NZ.WALLET_API+"/label",c).pipe((0,N.R)(this.unSubs[5]),(0,h.U)(_=>(this.store.dispatch((0,S.uO)({payload:L.m6.LABEL_UTXO})),_)),(0,A.K)(_=>(this.handleErrorWithoutAlert("Lease UTXO",L.m6.LABEL_UTXO,_),(0,M._)(()=>new Error(this.extractErrorMessage(_))))))}))}leaseUTXO(y,i){return this.lnImplementationUpdated.pipe((0,b.P)(r=>null!==r),(0,d.z)(r=>{const u={txid:y,outputIndex:i};return this.store.dispatch((0,S.ac)({payload:L.m6.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+r+D.NZ.WALLET_API+"/lease",u).pipe((0,N.R)(this.unSubs[6]),(0,h.U)(c=>{this.store.dispatch((0,S.uO)({payload:L.m6.LEASE_UTXO})),this.store.dispatch((0,U.mC)()),this.store.dispatch((0,U.Ly)());const _=new Date(1e3*c.expiration),E=Math.round(_.getTime())-60*_.getTimezoneOffset();this.snackBar.open("The UTXO has been leased till "+new Date(E).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")}),(0,A.K)(c=>(this.handleErrorWithoutAlert("Lease UTXO",L.m6.LEASE_UTXO,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))}))}getForwardingHistory(y,i,r,u){if("LND"===y){const c={end_time:r,start_time:i};return this.store.dispatch((0,S.ac)({payload:L.m6.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+D.NZ.SWITCH_API,c).pipe((0,N.R)(this.unSubs[7]),(0,w.M)(this.store.select(Z._f)),(0,d.z)(([_,E])=>{if(_.forwarding_events){const I=[...E.channels,...E.closedChannels];_.forwarding_events.forEach(v=>{var n,C;if(I&&I.length>0)for(let B=0;B(this.handleErrorWithAlert("getForwardingHistoryData",L.m6.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+D.NZ.SWITCH_API,_),(0,M._)(()=>new Error(this.extractErrorMessage(_))))))}return"CLN"===y?(this.store.dispatch((0,S.ac)({payload:L.m6.GET_FORWARDING_HISTORY})),this.httpClient.get(this.APIUrl+"/cln"+D.NZ.CHANNELS_API+"/listForwards?status="+u).pipe((0,N.R)(this.unSubs[8]),(0,w.M)(this.store.select(Y.ZW)),(0,d.z)(([c,_])=>{const E=this.mapAliases(c,[..._.activeChannels,..._.pendingChannels,..._.inactiveChannels]);return this.store.dispatch((0,S.uO)({payload:L.m6.GET_FORWARDING_HISTORY})),(0,a.of)(E)}),(0,A.K)(c=>(this.handleErrorWithAlert("getForwardingHistoryData",L.m6.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+D.NZ.CHANNELS_API+"/listForwards?status="+u+"&start="+i+"&end="+r,c),(0,M._)(()=>new Error(this.extractErrorMessage(c))))))):(0,a.of)({})}listNetworkNodes(y=""){return this.lnImplementationUpdated.pipe((0,b.P)(i=>null!==i),(0,d.z)(i=>(this.store.dispatch((0,S.ac)({payload:L.m6.LIST_NETWORK_NODES})),this.httpClient.get(this.APIUrl+"/"+i+D.NZ.NETWORK_API+"/listNodes"+y).pipe((0,N.R)(this.unSubs[9]),(0,d.z)(r=>(this.store.dispatch((0,S.uO)({payload:L.m6.LIST_NETWORK_NODES})),(0,a.of)(r))),(0,A.K)(r=>(this.handleErrorWithoutAlert("List Network Nodes",L.m6.LIST_NETWORK_NODES,r),(0,M._)(()=>this.extractErrorMessage(r))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,b.P)(y=>null!==y),(0,d.z)(y=>(this.store.dispatch((0,S.ac)({payload:L.m6.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+y+D.NZ.UTILITY_API+"/listConfigs").pipe((0,N.R)(this.unSubs[10]),(0,d.z)(i=>(this.store.dispatch((0,S.uO)({payload:L.m6.GET_LIST_CONFIGS})),(0,a.of)(i))),(0,A.K)(i=>(this.handleErrorWithoutAlert("List Configurations",L.m6.GET_LIST_CONFIGS,i),(0,M._)(()=>this.extractErrorMessage(i))))))))}getOrUpdateFunderPolicy(y,i,r,u,c,_){return this.lnImplementationUpdated.pipe((0,b.P)(E=>null!==E),(0,d.z)(E=>{const I=y?{policy:y,policy_mod:i,lease_fee_base_msat:r,lease_fee_basis:u,channel_fee_max_base_msat:c,channel_fee_max_proportional_thousandths:_}:null;return this.store.dispatch((0,S.ac)({payload:L.m6.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+E+D.NZ.CHANNELS_API+"/funderUpdate",I).pipe((0,N.R)(this.unSubs[11]),(0,h.U)(v=>(this.store.dispatch((0,S.uO)({payload:L.m6.GET_FUNDER_POLICY})),I&&this.store.dispatch((0,S.jW)({payload:"Funder Policy Updated Successfully with Compact Lease: "+v.compact_lease+"!"})),v)),(0,A.K)(v=>(this.handleErrorWithoutAlert("Funder Policy",L.m6.GET_FUNDER_POLICY,v),(0,M._)(()=>new Error(this.extractErrorMessage(v))))))}))}extractErrorMessage(y,i="Unknown Error."){return this.titleCasePipe.transform(y.error.text&&"string"==typeof y.error.text&&y.error.text.includes('')?"API Route Does Not Exist.":y.error&&y.error.error&&y.error.error.error&&y.error.error.error.error&&y.error.error.error.error.error&&"string"==typeof y.error.error.error.error.error?y.error.error.error.error.error:y.error&&y.error.error&&y.error.error.error&&y.error.error.error.error&&"string"==typeof y.error.error.error.error?y.error.error.error.error:y.error&&y.error.error&&y.error.error.error&&"string"==typeof y.error.error.error?y.error.error.error:y.error&&y.error.error&&"string"==typeof y.error.error?y.error.error:y.error&&"string"==typeof y.error?y.error:y.error&&y.error.error&&y.error.error.error&&y.error.error.error.error&&y.error.error.error.error.message&&"string"==typeof y.error.error.error.error.message?y.error.error.error.error.message:y.error&&y.error.error&&y.error.error.error&&y.error.error.error.message&&"string"==typeof y.error.error.error.message?y.error.error.error.message:y.error&&y.error.error&&y.error.error.message&&"string"==typeof y.error.error.message?y.error.error.message:y.error&&y.error.message&&"string"==typeof y.error.message?y.error.message:y.message&&"string"==typeof y.message?y.message:i)}handleErrorWithoutAlert(y,i,r){r.error.text&&"string"==typeof r.error.text&&r.error.text.includes('')&&(r={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+y+"\n"+JSON.stringify(r)),401===r.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,S.ts)()),this.store.dispatch((0,S.kS)()),this.store.dispatch((0,S.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,S.uO)({payload:i})),this.store.dispatch((0,S.qi)({payload:{action:y,status:L.Bn.ERROR,statusCode:r.status.toString(),message:this.extractErrorMessage(r)}})))}handleErrorWithAlert(y,i,r,u,c){if(this.logger.error(c),401===c.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,S.ts)()),this.store.dispatch((0,S.kS)()),this.store.dispatch((0,S.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,S.uO)({payload:i}));const _=this.extractErrorMessage(c);this.store.dispatch((0,S.qR)({payload:{data:{type:"ERROR",alertTitle:r,message:{code:c.status?c.status:"Unknown Error",message:_,URL:u},component:k.H}}})),this.store.dispatch((0,S.qi)({payload:{action:y,status:L.Bn.ERROR,statusCode:c.status.toString(),message:_,URL:u}}))}}ngOnDestroy(){this.unSubs.forEach(y=>{y.next(null),y.complete()})}}return X.\u0275fac=function(y){return new(y||X)(ne.LFG(t.eN),ne.LFG($.yh),ne.LFG(de.mQ),ne.LFG(te.ux),ne.LFG(ie.rS))},X.\u0275prov=ne.Yz7({token:X,factory:X.\u0275fac}),X})()},5043:(Ve,j,p)=>{"use strict";p.d(j,{LG:()=>d,mQ:()=>b});var t=p(2340),e=p(5e3);const{isDebugMode:f}=t.NZ,M=()=>null;let b=(()=>{class N{invokeConsoleMethod(A,w){}}return N.\u0275fac=function(A){return new(A||N)},N.\u0275prov=e.Yz7({token:N,factory:N.\u0275fac}),N})(),d=(()=>{class N{get info(){return f?console.log.bind(console):M}get warn(){return f?console.warn.bind(console):M}get error(){return f?console.error.bind(console):M}invokeConsoleMethod(A,w){(console[A]||console.log||M).apply(console,[w])}}return N.\u0275fac=function(A){return new(A||N)},N.\u0275prov=e.Yz7({token:N,factory:N.\u0275fac}),N})()},9107:(Ve,j,p)=>{"use strict";p.d(j,{W:()=>Z});var t=p(8138),e=p(1135),f=p(7579),M=p(9646),a=p(2843),b=p(2722),d=p(262),N=p(4004),h=p(2340),A=p(7731),w=p(1786),D=p(7861),L=p(5e3),k=p(5043),S=p(5620),U=p(62);let Z=(()=>{class Y{constructor($,de,te,ie){this.httpClient=$,this.logger=de,this.store=te,this.commonService=ie,this.loopUrl="",this.swaps=[],this.swapsChanged=new e.X([]),this.unSubs=[new f.x,new f.x,new f.x,new f.x,new f.x]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,D.ac)({payload:A.m6.GET_LOOP_SWAPS})),this.loopUrl=h.T5+h.NZ.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,b.R)(this.unSubs[0])).subscribe({next:$=>{this.store.dispatch((0,D.uO)({payload:A.m6.GET_LOOP_SWAPS})),this.swaps=$,this.swapsChanged.next(this.swaps)},error:$=>this.swapsChanged.error(this.handleErrorWithAlert(A.m6.GET_LOOP_SWAPS,this.loopUrl,$))})}loopOut($,de,te,ie,oe,X,me,y,i,r){const u={amount:$,targetConf:te,swapRoutingFee:ie,minerFee:oe,prepayRoutingFee:X,prepayAmt:me,swapFee:y,swapPublicationDeadline:i,destAddress:r};return""!==de&&(u.chanId=de),this.loopUrl=h.T5+h.NZ.LOOP_API+"/out",this.httpClient.post(this.loopUrl,u).pipe((0,d.K)(c=>this.handleErrorWithoutAlert("Loop Out for Channel: "+de,A.m6.NO_SPINNER,c)))}getLoopOutTerms(){return this.loopUrl=h.T5+h.NZ.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,d.K)($=>this.handleErrorWithoutAlert("Loop Out Terms",A.m6.NO_SPINNER,$)))}getLoopOutQuote($,de,te){let ie=new t.LE;return ie=ie.append("targetConf",de.toString()),ie=ie.append("swapPublicationDeadline",te.toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/out/quote/"+$,this.store.dispatch((0,D.ac)({payload:A.m6.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ie}).pipe((0,b.R)(this.unSubs[1]),(0,N.U)(oe=>(this.store.dispatch((0,D.uO)({payload:A.m6.GET_QUOTE})),oe)),(0,d.K)(oe=>this.handleErrorWithoutAlert("Loop Out Quote",A.m6.GET_QUOTE,oe)))}getLoopOutTermsAndQuotes($){let de=new t.LE;return de=de.append("targetConf",$.toString()),de=de.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,D.ac)({payload:A.m6.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:de}).pipe((0,b.R)(this.unSubs[2]),(0,N.U)(te=>(this.store.dispatch((0,D.uO)({payload:A.m6.GET_TERMS_QUOTES})),te)),(0,d.K)(te=>(0,M.of)(this.handleErrorWithAlert(A.m6.GET_TERMS_QUOTES,this.loopUrl,te))))}loopIn($,de,te,ie,oe){const X={amount:$,swapFee:de,minerFee:te,lastHop:ie,externalHtlc:oe};return this.loopUrl=h.T5+h.NZ.LOOP_API+"/in",this.httpClient.post(this.loopUrl,X).pipe((0,d.K)(me=>this.handleErrorWithoutAlert("Loop In",A.m6.NO_SPINNER,me)))}getLoopInTerms(){return this.loopUrl=h.T5+h.NZ.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,d.K)($=>this.handleErrorWithoutAlert("Loop In Terms",A.m6.NO_SPINNER,$)))}getLoopInQuote($,de,te){let ie=new t.LE;return ie=ie.append("targetConf",de.toString()),ie=ie.append("swapPublicationDeadline",te.toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/in/quote/"+$,this.store.dispatch((0,D.ac)({payload:A.m6.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ie}).pipe((0,b.R)(this.unSubs[3]),(0,N.U)(oe=>(this.store.dispatch((0,D.uO)({payload:A.m6.GET_QUOTE})),oe)),(0,d.K)(oe=>this.handleErrorWithoutAlert("Loop In Qoute",A.m6.GET_QUOTE,oe)))}getLoopInTermsAndQuotes($){let de=new t.LE;return de=de.append("targetConf",$.toString()),de=de.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=h.T5+h.NZ.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,D.ac)({payload:A.m6.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:de}).pipe((0,b.R)(this.unSubs[4]),(0,N.U)(te=>(this.store.dispatch((0,D.uO)({payload:A.m6.GET_TERMS_QUOTES})),te)),(0,d.K)(te=>(0,M.of)(this.handleErrorWithAlert(A.m6.GET_TERMS_QUOTES,this.loopUrl,te))))}getSwap($){return this.loopUrl=h.T5+h.NZ.LOOP_API+"/swap/"+$,this.httpClient.get(this.loopUrl).pipe((0,d.K)(de=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+$,A.m6.NO_SPINNER,de)))}handleErrorWithoutAlert($,de,te){let ie="";return this.logger.error("ERROR IN: "+$+"\n"+JSON.stringify(te)),this.store.dispatch((0,D.uO)({payload:de})),401===te.status?(ie="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.kS)())):503===te.status?(ie="Unable to Connect to Loop Server.",this.store.dispatch((0,D.qR)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:te.status,message:"Unable to Connect to Loop Server",URL:$},component:w.H}}}))):ie=this.commonService.extractErrorMessage(te),(0,a._)(()=>new Error(ie))}handleErrorWithAlert($,de,te){let ie="";if(this.logger.error(te),this.store.dispatch((0,D.uO)({payload:$})),401===te.status)ie="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,D.kS)());else if(503===te.status)ie="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:te.status,message:"Unable to Connect to Loop Server",URL:de},component:w.H}}}))},100);else{ie=this.commonService.extractErrorMessage(te);const oe=te.error&&te.error.error&&te.error.error.code?te.error.error.code:te.error&&te.error.code?te.error.code:te.code?te.code:te.status;setTimeout(()=>{this.store.dispatch((0,D.qR)({payload:{data:{type:A.n_.ERROR,alertTitle:"ERROR",message:{code:oe,message:ie,URL:de},component:w.H}}}))},100)}return{message:ie}}ngOnDestroy(){this.unSubs.forEach($=>{$.next(null),$.complete()})}}return Y.\u0275fac=function($){return new($||Y)(L.LFG(t.eN),L.LFG(k.mQ),L.LFG(S.yh),L.LFG(U.v))},Y.\u0275prov=L.Yz7({token:Y,factory:Y.\u0275fac}),Y})()},5986:(Ve,j,p)=>{"use strict";p.d(j,{m:()=>f});var t=p(7579),e=p(5e3);let f=(()=>{class M{constructor(){this.sessionSub=new t.x}watchSession(){return this.sessionSub.asObservable()}getItem(b){return sessionStorage.getItem(b)}getAllItems(){return sessionStorage}setItem(b,d){sessionStorage.setItem(b,d),this.sessionSub.next(sessionStorage)}removeItem(b){sessionStorage.removeItem(b),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}}return M.\u0275fac=function(b){return new(b||M)},M.\u0275prov=e.Yz7({token:M,factory:M.\u0275fac}),M})()},7998:(Ve,j,p)=>{"use strict";p.d(j,{d:()=>k});var t=p(1135),e=p(7579),f=p(2722),M=p(930),a=p(8306),b=p(727),d=p(4707);const N={url:"",deserializer:S=>JSON.parse(S.data),serializer:S=>JSON.stringify(S)};class A extends e.u{constructor(U,Z){if(super(),this._socket=null,U instanceof a.y)this.destination=Z,this.source=U;else{const Y=this._config=Object.assign({},N);if(this._output=new e.x,"string"==typeof U)Y.url=U;else for(const ne in U)U.hasOwnProperty(ne)&&(Y[ne]=U[ne]);if(!Y.WebSocketCtor&&WebSocket)Y.WebSocketCtor=WebSocket;else if(!Y.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new d.t}}lift(U){const Z=new A(this._config,this.destination);return Z.operator=U,Z.source=this,Z}_resetState(){this._socket=null,this.source||(this.destination=new d.t),this._output=new e.x}multiplex(U,Z,Y){const ne=this;return new a.y($=>{try{ne.next(U())}catch(te){$.error(te)}const de=ne.subscribe({next:te=>{try{Y(te)&&$.next(te)}catch(ie){$.error(ie)}},error:te=>$.error(te),complete:()=>$.complete()});return()=>{try{ne.next(Z())}catch(te){$.error(te)}de.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:U,protocol:Z,url:Y,binaryType:ne}=this._config,$=this._output;let de=null;try{de=Z?new U(Y,Z):new U(Y),this._socket=de,ne&&(this._socket.binaryType=ne)}catch(ie){return void $.error(ie)}const te=new b.w0(()=>{this._socket=null,de&&1===de.readyState&&de.close()});de.onopen=ie=>{const{_socket:oe}=this;if(!oe)return de.close(),void this._resetState();const{openObserver:X}=this._config;X&&X.next(ie);const me=this.destination;this.destination=M.Lv.create(y=>{if(1===de.readyState)try{const{serializer:i}=this._config;de.send(i(y))}catch(i){this.destination.error(i)}},y=>{const{closingObserver:i}=this._config;i&&i.next(void 0),y&&y.code?de.close(y.code,y.reason):$.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),this._resetState()},()=>{const{closingObserver:y}=this._config;y&&y.next(void 0),de.close(),this._resetState()}),me&&me instanceof d.t&&te.add(me.subscribe(this.destination))},de.onerror=ie=>{this._resetState(),$.error(ie)},de.onclose=ie=>{de===this._socket&&this._resetState();const{closeObserver:oe}=this._config;oe&&oe.next(ie),ie.wasClean?$.complete():$.error(ie)},de.onmessage=ie=>{try{const{deserializer:oe}=this._config;$.next(oe(ie))}catch(oe){$.error(oe)}}}_subscribe(U){const{source:Z}=this;return Z?Z.subscribe(U):(this._socket||this._connectSocket(),this._output.subscribe(U),U.add(()=>{const{_socket:Y}=this;0===this._output.observers.length&&(Y&&(1===Y.readyState||0===Y.readyState)&&Y.close(),this._resetState())}),U)}unsubscribe(){const{_socket:U}=this;U&&(1===U.readyState||0===U.readyState)&&U.close(),this._resetState(),super.unsubscribe()}}var w=p(5e3),D=p(5043),L=p(5986);let k=(()=>{class S{constructor(Z,Y){this.logger=Z,this.sessionService=Y,this.clWSMessages=new t.X(null),this.eclWSMessages=new t.X(null),this.lndWSMessages=new t.X(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x,new e.x]}connectWebSocket(Z,Y){(!this.socket||this.socket.closed)&&(this.wsUrl=Z,this.nodeIndex=Y,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new A({url:Z,protocol:[this.sessionService.getItem("token")||"",Y]}),this.subscribeToMessages())}reconnectOnError(){this.RECONNECT_TIMEOUT||this.socket&&!this.socket.closed||(this.RETRY_SECONDS=this.RETRY_SECONDS>=160?160:2*this.RETRY_SECONDS,this.RECONNECT_TIMEOUT=setTimeout(()=>{this.logger.info("Reconnecting Web Socket."),this.connectWebSocket(this.wsUrl,this.nodeIndex),this.RECONNECT_TIMEOUT=null},1e3*this.RETRY_SECONDS))}closeConnection(){this.socket&&(this.socket.complete(),this.socket=null)}subscribeToMessages(){var Z;null===(Z=this.socket)||void 0===Z||Z.pipe((0,f.R)(this.unSubs[1])).subscribe({next:Y=>{if((Y="string"==typeof Y?JSON.parse(Y):Y).error)this.handleError(Y.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(Y)),Y.source){case"LND":this.lndWSMessages.next(Y);break;case"CLN":this.clWSMessages.next(Y);break;case"ECL":this.eclWSMessages.next(Y)}},error:Y=>this.handleError(Y),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(Z){this.logger.error(Z),this.clWSMessages.error(Z),this.eclWSMessages.error(Z),this.lndWSMessages.error(Z),this.reconnectOnError()}ngOnDestroy(){this.closeConnection(),this.clWSMessages.next(null),this.clWSMessages.complete(),this.eclWSMessages.next(null),this.eclWSMessages.complete(),this.lndWSMessages.next(null),this.lndWSMessages.complete()}}return S.\u0275fac=function(Z){return new(Z||S)(w.LFG(D.mQ),w.LFG(L.m))},S.\u0275prov=w.Yz7({token:S,factory:S.\u0275fac}),S})()},8750:(Ve,j,p)=>{"use strict";p.d(j,{m:()=>qn});var t=p(9808),e=p(1402),f=p(3075),M=p(8138),a=p(9444),b=p(5e3),d=p(3270),N=p(3322),h=p(7093);p(3191);let je=(()=>{class Ot{}return Ot.\u0275fac=function(gt){return new(gt||Ot)},Ot.\u0275mod=b.oAB({type:Ot}),Ot.\u0275inj=b.cJS({imports:[[d.IR]]}),Ot})(),re=(()=>{class Ot{constructor(gt,Qt){(0,t.PM)(Qt)&&!gt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(gt,Qt=[]){return{ngModule:Ot,providers:gt.serverLoaded?[{provide:d.WU,useValue:Object.assign(Object.assign({},d.g5),gt)},{provide:d.Bs,useValue:Qt,multi:!0},{provide:d.wY,useValue:!0}]:[{provide:d.WU,useValue:Object.assign(Object.assign({},d.g5),gt)},{provide:d.Bs,useValue:Qt,multi:!0}]}}}return Ot.\u0275fac=function(gt){return new(gt||Ot)(b.LFG(d.wY),b.LFG(b.Lbi))},Ot.\u0275mod=b.oAB({type:Ot}),Ot.\u0275inj=b.cJS({imports:[[h.ae,N.aT,je],h.ae,N.aT,je]}),Ot})();var qe=p(5113),Mt=p(508),zt=p(8966),bi=p(1079),Ei=p(7544),Xi=p(7423);p(449),p(5664);let Bn=(()=>{class Ot{}return Ot.\u0275fac=function(gt){return new(gt||Ot)},Ot.\u0275mod=b.oAB({type:Ot}),Ot.\u0275inj=b.cJS({imports:[[Mt.BQ,Mt.si],Mt.BQ]}),Ot})();var Dn=p(9224),Xn=p(7446),_n=p(6856),Si=p(1125),Wi=p(3954),Sn=p(5245),jn=p(7531),dr=p(4623),Fr=p(2181),Vr=p(6087),ua=p(5899),_a=p(773),va=p(9814),Va=p(4107),za=p(2638),cr=p(2368);p(1159),p(6360),p(925),p(727),p(226);let xa=(()=>{class Ot{}return Ot.\u0275fac=function(gt){return new(gt||Ot)},Ot.\u0275mod=b.oAB({type:Ot}),Ot.\u0275inj=b.cJS({imports:[[t.ez,Mt.BQ],Mt.BQ]}),Ot})();var nr=p(7261),Aa=p(4847),Oa=p(5615),$n=p(2075),oa=p(3251),Br=p(4594),Dr=p(7238),Ur=p(149),ba=p(6688),Ua=p(1210),Qn=p(159),Je=p(8129),St=p(9776);let Qe=(()=>{class Ot extends St.Xj{_createContainer(){const gt=document.createElement("div");gt.classList.add("cdk-overlay-container"),document.getElementById("rtl-container").appendChild(gt),this._containerElement=gt}}return Ot.\u0275fac=function(){let oi;return function(Qt){return(oi||(oi=b.n5z(Ot)))(Qt||Ot)}}(),Ot.\u0275prov=b.Yz7({token:Ot,factory:Ot.\u0275fac}),Ot})();var kt=p(5043),ai=p(7731);const Ti={suppressScrollX:!1,suppressScrollY:!1};let Oi=(()=>{class Ot extends Mt.LF{format(gt,Qt){if("input"===Qt){let Di=gt.getDate().toString();return Di=+Di<10?"0"+Di:Di,Di+"/"+ai.gg[gt.getMonth()].name.toUpperCase()+"/"+gt.getFullYear()}return ai.gg[gt.getMonth()].name.toUpperCase()+" "+gt.getFullYear()}}return Ot.\u0275fac=function(){let oi;return function(Qt){return(oi||(oi=b.n5z(Ot)))(Qt||Ot)}}(),Ot.\u0275prov=b.Yz7({token:Ot,factory:Ot.\u0275fac}),Ot})();const rn={parse:{dateInput:{day:"numeric",month:"short",year:"numeric"}},display:{dateInput:"input",monthYearLabel:{month:"short",year:"numeric"},dateA11yLabel:{day:"numeric",month:"short",year:"numeric"},monthYearA11yLabel:{month:"short",year:"numeric"}}};let qn=(()=>{class Ot{}return Ot.\u0275fac=function(gt){return new(gt||Ot)},Ot.\u0275mod=b.oAB({type:Ot}),Ot.\u0275inj=b.cJS({providers:[{provide:kt.mQ,useClass:kt.LG},{provide:Je.op,useValue:Ti},{provide:nr.Ve,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:zt.Bq,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog",width:"45%"}},{provide:Mt._A,useClass:Oi},{provide:Mt.sG,useValue:rn},{provide:St.Xj,useClass:Qe},t.JJ,t.rS,t.uU],imports:[[t.ez,f.u5,f.UX,a.uH,re,qe.xu,zt.Is,Xi.ot,Bn,Dn.QW,Xn.p9,Si.To,Wi.N6,_n.FA,Mt.XK,Sn.Ps,jn.c,dr.ie,Fr.Tx,ua.Cv,_a.Cq,va.Fk,Ur.dp,ba.Hi,Va.LD,za.SJ,cr.rP,Aa.JX,$n.p0,Br.g0,Dr.AV,Ei.g,Vr.TU,Oa.T5,xa,oa.Nh,nr.ZX,bi.Bb,Ua.a4,Qn.OF,e.Bz,M.JF,Je.Xd],f.u5,f.UX,a.uH,re,qe.xu,zt.Is,Xi.ot,Bn,Dn.QW,Xn.p9,Si.To,Wi.N6,_n.FA,Mt.XK,Sn.Ps,jn.c,dr.ie,Fr.Tx,ua.Cv,_a.Cq,va.Fk,Ur.dp,ba.Hi,Va.LD,za.SJ,cr.rP,Aa.JX,$n.p0,Br.g0,Dr.AV,Ei.g,Vr.TU,Oa.T5,xa,oa.Nh,nr.ZX,bi.Bb,Ua.a4,Qn.OF,Je.Xd]}),Ot})()},7861:(Ve,j,p)=>{"use strict";p.d(j,{M6:()=>w,Q2:()=>S,QO:()=>c,Tm:()=>oe,Uy:()=>te,XT:()=>$,_V:()=>me,ac:()=>N,c0:()=>r,c1:()=>D,dc:()=>v,ey:()=>ne,fk:()=>ie,jS:()=>X,jW:()=>d,kS:()=>i,lC:()=>M,qR:()=>A,qi:()=>a,tj:()=>k,ts:()=>b,tw:()=>Z,uO:()=>h,vI:()=>Y,x4:()=>E,yb:()=>L,zQ:()=>de});var t=p(5620),e=p(7731);(0,t.PH)(e.pg.VOID);const M=(0,t.PH)(e.pg.SET_API_URL_ECL,(0,t.Ky)()),a=(0,t.PH)(e.pg.UPDATE_API_CALL_STATUS_ROOT,(0,t.Ky)()),b=(0,t.PH)(e.pg.CLOSE_ALL_DIALOGS),d=(0,t.PH)(e.pg.OPEN_SNACK_BAR,(0,t.Ky)()),N=(0,t.PH)(e.pg.OPEN_SPINNER,(0,t.Ky)()),h=(0,t.PH)(e.pg.CLOSE_SPINNER,(0,t.Ky)()),A=(0,t.PH)(e.pg.OPEN_ALERT,(0,t.Ky)()),w=(0,t.PH)(e.pg.CLOSE_ALERT,(0,t.Ky)()),D=(0,t.PH)(e.pg.OPEN_CONFIRMATION,(0,t.Ky)()),L=(0,t.PH)(e.pg.CLOSE_CONFIRMATION,(0,t.Ky)()),k=(0,t.PH)(e.pg.SHOW_PUBKEY),S=(0,t.PH)(e.pg.FETCH_CONFIG,(0,t.Ky)()),Z=((0,t.PH)(e.pg.SHOW_CONFIG,(0,t.Ky)()),(0,t.PH)(e.pg.UPDATE_SELECTED_NODE_OPTIONS)),Y=(0,t.PH)(e.pg.RESET_ROOT_STORE,(0,t.Ky)()),ne=(0,t.PH)(e.pg.FETCH_RTL_CONFIG),$=(0,t.PH)(e.pg.SET_RTL_CONFIG,(0,t.Ky)()),de=(0,t.PH)(e.pg.SAVE_SETTINGS,(0,t.Ky)()),te=(0,t.PH)(e.pg.TWO_FA_SAVE_SETTINGS,(0,t.Ky)()),ie=(0,t.PH)(e.pg.SET_SELECTED_NODE,(0,t.Ky)()),oe=(0,t.PH)(e.pg.UPDATE_ROOT_NODE_SETTINGS,(0,t.Ky)()),X=(0,t.PH)(e.pg.UPDATE_SERVICE_SETTINGS,(0,t.Ky)()),me=(0,t.PH)(e.pg.SET_NODE_DATA,(0,t.Ky)()),i=((0,t.PH)(e.pg.SAVE_SSO,(0,t.Ky)()),(0,t.PH)(e.pg.LOGOUT)),r=(0,t.PH)(e.pg.RESET_PASSWORD,(0,t.Ky)()),c=((0,t.PH)(e.pg.RESET_PASSWORD_RES,(0,t.Ky)()),(0,t.PH)(e.pg.IS_AUTHORIZED,(0,t.Ky)())),E=((0,t.PH)(e.pg.IS_AUTHORIZED_RES,(0,t.Ky)()),(0,t.PH)(e.pg.LOGIN,(0,t.Ky)())),v=((0,t.PH)(e.pg.VERIFY_TWO_FA,(0,t.Ky)()),(0,t.PH)(e.pg.FETCH_FILE,(0,t.Ky)()));(0,t.PH)(e.pg.SHOW_FILE,(0,t.Ky)())},3093:(Ve,j,p)=>{"use strict";p.d(j,{V:()=>gn});var t=p(6642),e=p(7579),f=p(9646),M=p(8306),a=p(4128),b=p(4004),d=p(5698),N=p(1365),h=p(5577),A=p(262),w=p(2722),D=p(2340),L=p(7731),k=p(8966),S=p(5e3),U=p(7093),Z=p(773);let Y=(()=>{class jt{constructor(nt,Ft){this.dialogRef=nt,this.data=Ft}}return jt.\u0275fac=function(nt){return new(nt||jt)(S.Y36(k.so),S.Y36(k.WI))},jt.\u0275cmp=S.Xpm({type:jt,selectors:[["rtl-spinner-dialog"]],decls:5,vars:1,consts:[[1,"spinner-container"],["fxLayout","column","fxLayoutAlign","center center",1,"spinner-circle"]],template:function(nt,Ft){1&nt&&(S.TgZ(0,"div",0)(1,"div",1),S._UZ(2,"mat-spinner"),S.TgZ(3,"h1"),S._uU(4),S.qZA()()()),2&nt&&(S.xp6(4),S.Oqu(Ft.data.titleMessage))},directives:[U.xw,U.Wh,Z.Ou],styles:[".spinner-container[_ngcontent-%COMP%]{position:absolute;left:40%;top:35%}"]}),jt})();var ne=p(5043),$=p(7261),de=p(62),te=p(9808),ie=p(3322),oe=p(159),X=p(9224),me=p(7423),y=p(8129),i=p(5245),r=p(3390),u=p(6895),c=p(4834);const _=["scrollContainer"];function E(jt,wi){if(1&jt&&S._UZ(0,"qr-code",15),2&jt){const nt=S.oxw();S.Q6J("value",nt.showQRField)("size",200)("errorCorrectionLevel","L")}}function I(jt,wi){1&jt&&S.GkF(0)}const v=function(jt){return{"h-40":jt}};function n(jt,wi){if(1&jt&&(S.ynx(0),S.TgZ(1,"mat-card-content",16,17),S.YNc(3,I,1,0,"ng-container",18),S.qZA(),S.BQk()),2&jt){const nt=S.oxw(),Ft=S.MAs(20);S.xp6(1),S.Q6J("ngClass",S.VKq(2,v,nt.data.scrollable)),S.xp6(2),S.Q6J("ngTemplateOutlet",Ft)}}function C(jt,wi){1&jt&&S.GkF(0)}function B(jt,wi){if(1&jt&&(S.ynx(0),S.TgZ(1,"mat-card-content",19),S.YNc(2,C,1,0,"ng-container",18),S.qZA(),S.BQk()),2&jt){S.oxw();const nt=S.MAs(20);S.xp6(2),S.Q6J("ngTemplateOutlet",nt)}}function P(jt,wi){1&jt&&(S.TgZ(0,"mat-icon",23),S._uU(1,"arrow_downward"),S.qZA())}function H(jt,wi){1&jt&&(S.TgZ(0,"mat-icon",23),S._uU(1,"arrow_upward"),S.qZA())}function q(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"div",20)(1,"button",21),S.NdJ("click",function(){return S.CHM(nt),S.oxw().onScroll()}),S.YNc(2,P,2,0,"mat-icon",22),S.YNc(3,H,2,0,"mat-icon",22),S.qZA()()}if(2&jt){const nt=S.oxw();S.xp6(2),S.Q6J("ngIf","DOWN"===nt.scrollDirection),S.xp6(1),S.Q6J("ngIf","UP"===nt.scrollDirection)}}function he(jt,wi){1&jt&&(S.TgZ(0,"button",24),S._uU(1,"OK"),S.qZA()),2&jt&&S.Q6J("mat-dialog-close",!1)}function _e(jt,wi){1&jt&&(S.TgZ(0,"button",25),S._uU(1,"Close"),S.qZA()),2&jt&&S.Q6J("mat-dialog-close",!1)}function Ne(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"button",26),S.NdJ("copied",function(Kt){return S.CHM(nt),S.oxw().onCopyField(Kt)}),S._uU(1),S.qZA()}if(2&jt){const nt=S.oxw();S.Q6J("payload",nt.showCopyField),S.xp6(1),S.hij("Copy ",nt.showCopyName,"")}}function we(jt,wi){1&jt&&(S.TgZ(0,"button",25),S._uU(1,"Close"),S.qZA()),2&jt&&S.Q6J("mat-dialog-close",!1)}function Q(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"button",26),S.NdJ("copied",function(Kt){return S.CHM(nt),S.oxw().onCopyField(Kt)}),S._uU(1),S.qZA()}if(2&jt){const nt=S.oxw();S.Q6J("payload",nt.showQRField),S.xp6(1),S.hij("Copy ",nt.showQRName,"")}}function Ue(jt,wi){if(1&jt&&S._UZ(0,"qr-code",15),2&jt){const nt=S.oxw(2);S.Q6J("value",nt.showQRField)("size",200)("errorCorrectionLevel","L")}}function ve(jt,wi){if(1&jt&&(S.TgZ(0,"p",32),S._uU(1),S.qZA()),2&jt){const nt=S.oxw(2);S.xp6(1),S.Oqu(nt.data.titleMessage)}}function V(jt,wi){1&jt&&S._UZ(0,"span",46),2&jt&&S.Q6J("innerHTML",wi.$implicit,S.oJD)}function De(jt,wi){if(1&jt&&(S.ynx(0),S.YNc(1,V,1,1,"span",45),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Q6J("ngForOf",nt.value)}}function dt(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.ALo(2,"date"),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(S.xi3(2,1,1e3*nt.value,"dd/MMM/y HH:mm"))}}function Ie(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.ALo(2,"number"),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(S.xi3(2,1,nt.value,nt.digitsInfo?nt.digitsInfo:"1.0-3"))}}function Ae(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(nt.value?"True":"False")}}function le(jt,wi){1&jt&&(S.TgZ(0,"mat-icon",51),S._uU(1,"info"),S.qZA())}const Te=function(jt){return{"failed-status":jt}};function xe(jt,wi){if(1&jt&&(S.TgZ(0,"p",49),S._uU(1),S.YNc(2,le,2,0,"mat-icon",50),S.qZA()),2&jt){const nt=S.oxw(3).$implicit,Ft=S.oxw(4);S.Q6J("ngClass",S.VKq(3,Te,nt.value===Ft.LoopStateEnum.FAILED)),S.xp6(1),S.hij(" ",nt.value," "),S.xp6(1),S.Q6J("ngIf",nt.value===Ft.LoopStateEnum.FAILED)}}function W(jt,wi){if(1&jt&&S._uU(0),2&jt){const nt=S.oxw(3).$implicit;S.Oqu(nt.value)}}function ee(jt,wi){if(1&jt&&(S.ynx(0),S.YNc(1,xe,3,5,"p",47),S.YNc(2,W,1,1,"ng-template",null,48,S.W1O),S.BQk()),2&jt){const nt=S.MAs(3),Ft=S.oxw(2).$implicit,Kt=S.oxw(4);S.xp6(1),S.Q6J("ngIf","SWAP"===Kt.data.openedBy&&"state"===Ft.key)("ngIfElse",nt)}}function ue(jt,wi){if(1&jt&&(S.TgZ(0,"span")(1,"span",42),S.YNc(2,De,2,1,"ng-container",43),S.YNc(3,dt,3,4,"ng-container",43),S.YNc(4,Ie,3,4,"ng-container",43),S.YNc(5,Ae,2,1,"ng-container",43),S.YNc(6,ee,4,2,"ng-container",44),S.qZA()()),2&jt){const nt=S.oxw().$implicit,Ft=S.oxw(4);S.xp6(1),S.Q6J("ngSwitch",nt.type),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.ARRAY),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.DATE_TIME),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.NUMBER),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.BOOLEAN)}}function Ce(jt,wi){1&jt&&(S.TgZ(0,"span",52),S._uU(1,"\xa0"),S.qZA())}function Le(jt,wi){if(1&jt&&(S.TgZ(0,"div",37)(1,"h4",38),S._uU(2),S.qZA(),S.YNc(3,ue,7,5,"span",39),S.YNc(4,Ce,2,0,"ng-template",null,40,S.W1O),S._UZ(6,"mat-divider",41),S.qZA()),2&jt){const nt=wi.$implicit,Ft=S.MAs(5);S.s9C("fxFlex.gt-md",nt.width),S.xp6(2),S.Oqu(nt.title),S.xp6(1),S.Q6J("ngIf",nt&&(!!nt.value||0===nt.value))("ngIfElse",Ft)}}function ut(jt,wi){if(1&jt&&(S.TgZ(0,"div")(1,"div",35),S.YNc(2,Le,7,4,"div",36),S.qZA()()),2&jt){const nt=wi.$implicit;S.xp6(2),S.Q6J("ngForOf",nt)}}function ht(jt,wi){if(1&jt&&(S.TgZ(0,"div",33),S.YNc(1,ut,3,1,"div",34),S.qZA()),2&jt){const nt=S.oxw(2);S.xp6(1),S.Q6J("ngForOf",nt.messageObjs)}}const It=function(jt){return{"display-none":jt}};function ui(jt,wi){if(1&jt&&(S.TgZ(0,"div",27)(1,"div",28),S.YNc(2,Ue,1,3,"qr-code",2),S.qZA(),S.TgZ(3,"div",29),S.YNc(4,ve,2,1,"p",30),S.YNc(5,ht,2,1,"div",31),S.qZA()()),2&jt){const nt=S.oxw();S.xp6(1),S.Q6J("ngClass",S.VKq(4,It,""===nt.showQRField||nt.screenSize!==nt.screenSizeEnum.XS&&nt.screenSize!==nt.screenSizeEnum.SM)),S.xp6(1),S.Q6J("ngIf",""!==nt.showQRField),S.xp6(2),S.Q6J("ngIf",nt.data.titleMessage),S.xp6(1),S.Q6J("ngIf",(null==nt.messageObjs?null:nt.messageObjs.length)>0)}}let Wt=(()=>{class jt{constructor(nt,Ft,Kt,mi,Ni,ki){this.dialogRef=nt,this.data=Ft,this.logger=Kt,this.snackBar=mi,this.commonService=Ni,this.renderer=ki,this.LoopStateEnum=L.Fq,this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=L.n_,this.dataTypeEnum=L.Gi,this.screenSize="",this.screenSizeEnum=L.cu,this.scrollDirection="DOWN",this.shouldScroll=!0}set container(nt){nt&&(this.scrollContainer=nt,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",Ft=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",Ft=>{this.scrollDirection="DOWN"})))}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.showQRField=this.data.showQRField?this.data.showQRField:"",this.showQRName=this.data.showQRName?this.data.showQRName:"",this.showCopyName=this.data.showCopyName?this.data.showCopyName:"",this.showCopyField=this.data.showCopyField?this.data.showCopyField:"",this.data.type===L.n_.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs)}ngAfterViewChecked(){setTimeout(()=>{this.shouldScroll=this.scrollContainer&&this.scrollContainer.nativeElement&&this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")},500)}onScroll(){this.scrollContainer.nativeElement.scrollTop="DOWN"===this.scrollDirection?this.scrollContainer.nativeElement.scrollTop+62.6:this.scrollContainer.nativeElement.scrollTop-62.6}onCopyField(nt){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+nt)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd()}}return jt.\u0275fac=function(nt){return new(nt||jt)(S.Y36(k.so),S.Y36(k.WI),S.Y36(ne.mQ),S.Y36($.ux),S.Y36(de.v),S.Y36(S.Qsj))},jt.\u0275cmp=S.Xpm({type:jt,selectors:[["rtl-alert-message"]],viewQuery:function(nt,Ft){if(1&nt&&S.Gf(_,5),2&nt){let Kt;S.iGM(Kt=S.CRH())&&(Ft.container=Kt.first)}},decls:21,vars:14,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","ml-1",3,"ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],[3,"fxFlex"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close",4,"ngIf"],["class","mr-1","fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",3,"mat-dialog-close",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["contentBlock",""],[3,"value","size","errorCorrectionLevel"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],["scrollContainer",""],[4,"ngTemplateOutlet"],[1,"padding-gap-x-large"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","mb-1",3,"ngClass"],["fxLayout","column","fxFlex","100"],["fxLayoutAlign","start center","class","pb-2",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayoutAlign","start center",1,"pb-2"],["fxFlex","100"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],["emptyField",""],[1,"w-100","my-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["noStyleBlock",""],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(nt,Ft){1&nt&&(S.TgZ(0,"div",0)(1,"div",1),S.YNc(2,E,1,3,"qr-code",2),S.qZA(),S.TgZ(3,"div",3)(4,"mat-card-header",4)(5,"div",5)(6,"span",6),S._uU(7),S.qZA()(),S.TgZ(8,"button",7),S.NdJ("click",function(){return Ft.onClose()}),S._uU(9,"X"),S.qZA()(),S.YNc(10,n,4,4,"ng-container",8),S.YNc(11,B,3,1,"ng-container",8),S.YNc(12,q,4,2,"div",9),S.TgZ(13,"div",10),S.YNc(14,he,2,1,"button",11),S.YNc(15,_e,2,1,"button",12),S.YNc(16,Ne,2,2,"button",13),S.YNc(17,we,2,1,"button",12),S.YNc(18,Q,2,2,"button",13),S.qZA()()(),S.YNc(19,ui,6,6,"ng-template",null,14,S.W1O)),2&nt&&(S.xp6(1),S.Q6J("ngClass",S.VKq(12,It,""===Ft.showQRField||Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM)),S.xp6(1),S.Q6J("ngIf",""!==Ft.showQRField),S.xp6(1),S.Q6J("fxFlex",""===Ft.showQRField||Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM?"100":"70"),S.xp6(4),S.Oqu(Ft.data.alertTitle||Ft.alertTypeEnum[Ft.data.type]),S.xp6(3),S.Q6J("ngIf",Ft.data.scrollable),S.xp6(1),S.Q6J("ngIf",!Ft.data.scrollable),S.xp6(1),S.Q6J("ngIf",Ft.data.scrollable&&Ft.shouldScroll),S.xp6(2),S.Q6J("ngIf",(!Ft.showQRField||""===Ft.showQRField)&&""===Ft.showCopyName),S.xp6(1),S.Q6J("ngIf",""!==Ft.showCopyName),S.xp6(1),S.Q6J("ngIf",""!==Ft.showCopyName),S.xp6(1),S.Q6J("ngIf",""!==Ft.showQRField),S.xp6(1),S.Q6J("ngIf",""!==Ft.showQRField))},directives:[U.xw,U.Wh,U.yH,te.mk,ie.oO,te.O5,oe.uU,X.dk,me.lW,X.dn,y.$V,te.tP,i.Hw,r.h,k.ZT,u.y,te.sg,te.RF,te.n9,te.ED,c.d],pipes:[te.uU,te.JJ],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}),jt})();var Gt=p(801),hi=p(7861),xt=p(5620),Nt=p(3075),Ct=p(9444),et=p(7322),yt=p(7531),ei=p(6534);function Yt(jt,wi){if(1&jt&&(S.TgZ(0,"div",18),S._UZ(1,"fa-icon",19),S.TgZ(2,"span"),S._uU(3),S.qZA()()),2&jt){const nt=S.oxw();S.xp6(1),S.Q6J("icon",nt.faExclamationTriangle),S.xp6(2),S.Oqu(nt.warningMessage)}}function Pe(jt,wi){if(1&jt&&(S.TgZ(0,"div",20),S._UZ(1,"fa-icon",19),S.TgZ(2,"span"),S._uU(3),S.qZA()()),2&jt){const nt=S.oxw();S.xp6(1),S.Q6J("icon",nt.faInfoCircle),S.xp6(2),S.Oqu(nt.informationMessage)}}function Oe(jt,wi){if(1&jt&&(S.TgZ(0,"p",21),S._uU(1),S.qZA()),2&jt){const nt=S.oxw();S.xp6(1),S.Oqu(nt.data.titleMessage)}}function ce(jt,wi){1&jt&&S._UZ(0,"div",36),2&jt&&S.Q6J("innerHTML",wi.$implicit,S.oJD)}function be(jt,wi){if(1&jt&&(S.ynx(0,34),S.YNc(1,ce,1,1,"div",35),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Q6J("ngForOf",nt.value)}}function pt(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.ALo(2,"date"),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(S.xi3(2,1,1e3*nt.value,"dd/MMM/y HH:mm"))}}function mt(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.ALo(2,"number"),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(S.xi3(2,1,nt.value,"1.0-3"))}}function Ht(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(!0===nt.value?"True":"False")}}function it(jt,wi){if(1&jt&&(S.ynx(0),S._uU(1),S.BQk()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.Oqu(nt.value)}}function Re(jt,wi){if(1&jt&&(S.TgZ(0,"span")(1,"span",30),S.YNc(2,be,2,1,"ng-container",31),S.YNc(3,pt,3,4,"ng-container",32),S.YNc(4,mt,3,4,"ng-container",32),S.YNc(5,Ht,2,1,"ng-container",32),S.YNc(6,it,2,1,"ng-container",33),S.qZA()()),2&jt){const nt=S.oxw().$implicit,Ft=S.oxw(3);S.xp6(1),S.Q6J("ngSwitch",nt.type),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.ARRAY),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.DATE_TIME),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.NUMBER),S.xp6(1),S.Q6J("ngSwitchCase",Ft.dataTypeEnum.BOOLEAN)}}function tt(jt,wi){1&jt&&(S.TgZ(0,"span",37),S._uU(1,"\xa0"),S.qZA())}function Xe(jt,wi){if(1&jt&&(S.TgZ(0,"div",25)(1,"h4",26),S._uU(2),S.qZA(),S.YNc(3,Re,7,5,"span",27),S.YNc(4,tt,2,0,"ng-template",null,28,S.W1O),S._UZ(6,"mat-divider",29),S.qZA()),2&jt){const nt=wi.$implicit,Ft=S.MAs(5);S.s9C("fxFlex.gt-md",nt.width),S.xp6(2),S.Oqu(nt.title),S.xp6(1),S.Q6J("ngIf",nt&&(!!nt.value||0===nt.value))("ngIfElse",Ft)}}function Se(jt,wi){if(1&jt&&(S.TgZ(0,"div")(1,"div",23),S.YNc(2,Xe,7,4,"div",24),S.qZA()()),2&jt){const nt=wi.$implicit;S.xp6(2),S.Q6J("ngForOf",nt)}}function Ge(jt,wi){if(1&jt&&(S.TgZ(0,"div"),S.YNc(1,Se,3,1,"div",22),S.qZA()),2&jt){const nt=S.oxw();S.xp6(1),S.Q6J("ngForOf",nt.messageObjs)}}function at(jt,wi){if(1&jt&&(S.TgZ(0,"p",21),S._uU(1),S.qZA()),2&jt){const nt=S.oxw(2);S.xp6(1),S.Oqu(nt.data.titleMessage)}}function st(jt,wi){if(1&jt&&(S.TgZ(0,"mat-error"),S._uU(1),S.qZA()),2&jt){const nt=S.oxw(2).$implicit;S.xp6(1),S.hij("",nt.placeholder," is required.")}}function bt(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"mat-form-field",41)(1,"input",42),S.NdJ("ngModelChange",function(Kt){return S.CHM(nt),S.oxw().$implicit.inputValue=Kt}),S.ALo(2,"lowercase"),S.qZA(),S.YNc(3,st,2,1,"mat-error",11),S.TgZ(4,"mat-hint"),S._uU(5),S.qZA()()}if(2&jt){const nt=S.oxw(),Ft=nt.$implicit,Kt=nt.index;S.Q6J("fxFlex",Ft.width),S.xp6(1),S.MGl("name","input",Kt,""),S.Q6J("autoFocus",0===Kt)("placeholder",Ft.placeholder)("min",Ft.min)("step",Ft.step)("type",S.lcZ(2,11,Ft.inputType))("ngModel",Ft.inputValue)("tabindex",Kt+1),S.xp6(2),S.Q6J("ngIf",!Ft.inputValue),S.xp6(2),S.Oqu(Ft.hintFunction?Ft.hintFunction(Ft.inputValue):Ft.hintText)}}function gi(jt,wi){if(1&jt&&(S.ynx(0),S.YNc(1,bt,6,13,"mat-form-field",40),S.BQk()),2&jt){const nt=wi.$implicit,Ft=S.oxw(2);S.xp6(1),S.Q6J("ngIf",!nt.advancedField||Ft.showAdvanced)}}function qt(jt,wi){if(1&jt&&(S.TgZ(0,"div",38),S.YNc(1,at,2,1,"p",10),S.TgZ(2,"div",39),S.YNc(3,gi,2,1,"ng-container",22),S.qZA()()),2&jt){const nt=S.oxw();S.xp6(1),S.Q6J("ngIf",nt.data.titleMessage),S.xp6(2),S.Q6J("ngForOf",nt.getInputs)}}function Xt(jt,wi){1&jt&&(S.TgZ(0,"p"),S._uU(1,"Show Advanced"),S.qZA())}function qi(jt,wi){1&jt&&(S.TgZ(0,"p"),S._uU(1,"Hide Advanced"),S.qZA())}function fi(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"button",43),S.NdJ("click",function(){return S.CHM(nt),S.oxw().onShowAdvanced()}),S.YNc(1,Xt,2,0,"p",27),S.YNc(2,qi,2,0,"ng-template",null,44,S.W1O),S.qZA()}if(2&jt){const nt=S.MAs(3),Ft=S.oxw();S.xp6(1),S.Q6J("ngIf",!Ft.showAdvanced)("ngIfElse",nt)}}function si(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"button",45),S.NdJ("click",function(){S.CHM(nt);const Kt=S.oxw();return Kt.onClose(Kt.getInputs)}),S._uU(1),S.qZA()}if(2&jt){const nt=S.oxw();S.xp6(1),S.Oqu(nt.yesBtnText)}}function $i(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"button",46),S.NdJ("click",function(){return S.CHM(nt),S.oxw().onClose(!0)}),S._uU(1),S.qZA()}if(2&jt){const nt=S.oxw();S.xp6(1),S.Oqu(nt.yesBtnText)}}let Bi=(()=>{class jt{constructor(nt,Ft,Kt,mi){this.dialogRef=nt,this.data=Ft,this.logger=Kt,this.store=mi,this.faInfoCircle=Gt.sqG,this.faExclamationTriangle=Gt.eHv,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=L.n_,this.dataTypeEnum=L.Gi,this.getInputs=[{placeholder:"",inputType:"text",inputValue:"",hintText:"",hintFunction:null,advancedField:!1}],this.showAdvanced=!1}ngOnInit(){this.informationMessage=this.data.informationMessage||"",this.warningMessage=this.data.warningMessage||"",this.flgShowInput=!!this.data.flgShowInput,this.getInputs=this.data.getInputs||[],this.noBtnText=this.data.noBtnText?this.data.noBtnText:"No",this.yesBtnText=this.data.yesBtnText?this.data.yesBtnText:"Yes",this.hasAdvanced=!!this.data.hasAdvanced&&this.data.hasAdvanced,this.messageObjs=this.data.message,this.data.type===L.n_.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(nt){if(nt&&this.getInputs&&this.getInputs.some(Ft=>void 0===Ft.inputValue))return!0;!this.showAdvanced&&nt.length&&(nt=null==nt?void 0:nt.reduce((Ft,Kt)=>(Kt.advancedField||Ft.push(Kt),Ft),[])),this.store.dispatch((0,hi.yb)({payload:nt}))}}return jt.\u0275fac=function(nt){return new(nt||jt)(S.Y36(k.so),S.Y36(k.WI),S.Y36(ne.mQ),S.Y36(xt.yh))},jt.\u0275cmp=S.Xpm({type:jt,selectors:[["rtl-confirmation-message"]],decls:21,vars:10,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],[4,"ngIf"],["fxLayout","column","class","bordered-box my-2 p-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],["mat-button","","color","primary","type","button","class","mr-1","tabindex","2",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click",4,"ngIf"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayoutAlign","start center",1,"pb-1"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],["emptyField",""],[1,"w-100","my-1"],[1,"foreground-secondary-text",3,"ngSwitch"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngSwitchCase"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch"],[3,"innerHTML",4,"ngFor","ngForOf"],[3,"innerHTML"],["fxFlex","100",1,"foreground-secondary-text"],["fxLayout","column",1,"bordered-box","my-2","p-2"],["fxLayout","row wrap","fxLayoutAlign","space-between center"],[3,"fxFlex",4,"ngIf"],[3,"fxFlex"],["matInput","","required","",3,"autoFocus","placeholder","name","min","step","type","ngModel","tabindex","ngModelChange"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["hideAdvancedText",""],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click"]],template:function(nt,Ft){1&nt&&(S.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),S._uU(5),S.qZA()(),S.TgZ(6,"button",5),S.NdJ("click",function(){return Ft.onClose(!1)}),S._uU(7,"X"),S.qZA()(),S.TgZ(8,"mat-card-content",6)(9,"form",7),S.YNc(10,Yt,4,2,"div",8),S.YNc(11,Pe,4,2,"div",9),S.YNc(12,Oe,2,1,"p",10),S.YNc(13,Ge,2,1,"div",11),S.YNc(14,qt,4,2,"div",12),S.TgZ(15,"div",13)(16,"button",14),S.NdJ("click",function(){return Ft.onClose(!1)}),S._uU(17),S.qZA(),S.YNc(18,fi,4,2,"button",15),S.YNc(19,si,2,1,"button",16),S.YNc(20,$i,2,1,"button",17),S.qZA()()()()()),2&nt&&(S.xp6(5),S.Oqu(Ft.data.alertTitle||Ft.alertTypeEnum[Ft.data.type]),S.xp6(5),S.Q6J("ngIf",Ft.warningMessage&&""!==Ft.warningMessage),S.xp6(1),S.Q6J("ngIf",Ft.informationMessage&&""!==Ft.informationMessage),S.xp6(1),S.Q6J("ngIf",Ft.data.titleMessage&&!Ft.flgShowInput),S.xp6(1),S.Q6J("ngIf",(null==Ft.messageObjs?null:Ft.messageObjs.length)>0),S.xp6(1),S.Q6J("ngIf",Ft.flgShowInput),S.xp6(3),S.Oqu(Ft.noBtnText),S.xp6(1),S.Q6J("ngIf",Ft.hasAdvanced),S.xp6(1),S.Q6J("ngIf",Ft.flgShowInput),S.xp6(1),S.Q6J("ngIf",!Ft.flgShowInput))},directives:[U.xw,U.yH,X.dk,U.Wh,me.lW,X.dn,Nt._Y,Nt.JL,Nt.F,te.O5,Ct.BN,te.sg,te.RF,te.n9,te.ED,c.d,et.KE,yt.Nt,ei.q,Nt.Fj,Nt.Q7,r.h,Nt.JJ,Nt.On,et.TO,et.bx],pipes:[te.uU,te.JJ,te.i8],styles:[""]}),jt})();var zi=p(1786),Ui=p(4107),ze=p(508);function Tt(jt,wi){if(1&jt&&(S.TgZ(0,"mat-option",23),S._uU(1),S.qZA()),2&jt){const nt=wi.$implicit;S.Q6J("value",nt),S.xp6(1),S.hij(" ",nt.infoName," ")}}function pe(jt,wi){if(1&jt){const nt=S.EpF();S.TgZ(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),S.NdJ("valueChange",function(Kt){return S.CHM(nt),S.oxw().selInfoType=Kt}),S.YNc(3,Tt,2,2,"mat-option",22),S.qZA()()()}if(2&jt){const nt=S.oxw();S.xp6(2),S.Q6J("value",nt.selInfoType),S.xp6(1),S.Q6J("ngForOf",nt.infoTypes)}}const je=function(jt){return{"display-none":jt}};let _t=(()=>{class jt{constructor(nt,Ft,Kt,mi,Ni){this.dialogRef=nt,this.data=Ft,this.logger=Kt,this.snackBar=mi,this.commonService=Ni,this.faReceipt=Gt.dLy,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=L.cu}ngOnInit(){this.information=this.data.information,this.information.uris&&(1===this.information.uris.length?this.infoTypes.push({infoID:1,infoKey:"node URI",infoName:"Node URI"}):this.information.uris.length>1&&this.information.uris.forEach((nt,Ft)=>{this.infoTypes.push({infoID:Ft+1,infoKey:"node URI "+(Ft+1),infoName:"Node URI "+(Ft+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(nt){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+nt)}}return jt.\u0275fac=function(nt){return new(nt||jt)(S.Y36(k.so),S.Y36(k.WI),S.Y36(ne.mQ),S.Y36($.ux),S.Y36(de.v))},jt.\u0275cmp=S.Xpm({type:jt,selectors:[["rtl-show-pubkey"]],decls:26,vars:19,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[3,"value","size","errorCorrectionLevel"],["fxFlex","100","fxFlex.gt-sm","70"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied"],["fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],["tabindex","1",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(nt,Ft){1&nt&&(S.TgZ(0,"div",0)(1,"div",1),S._UZ(2,"qr-code",2),S.qZA(),S.TgZ(3,"div",3)(4,"mat-card-header",4)(5,"div",5),S._UZ(6,"fa-icon",6),S.TgZ(7,"span",7),S._uU(8),S.qZA()(),S.TgZ(9,"button",8),S.NdJ("click",function(){return Ft.onClose()}),S._uU(10,"X"),S.qZA()(),S.TgZ(11,"mat-card-content",9)(12,"div",10)(13,"div",11),S._UZ(14,"qr-code",2),S.qZA(),S.YNc(15,pe,4,2,"div",12),S.TgZ(16,"div",13)(17,"div",14)(18,"h4",15),S._uU(19),S.qZA(),S.TgZ(20,"span",16),S._uU(21),S.qZA()()(),S._UZ(22,"mat-divider",17),S.TgZ(23,"div",18)(24,"button",19),S.NdJ("copied",function(mi){return Ft.onCopyPubkey(mi)}),S._uU(25),S.qZA()()()()()()),2&nt&&(S.xp6(1),S.Q6J("ngClass",S.VKq(15,je,Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM)),S.xp6(1),S.s9C("value",0===Ft.selInfoType.infoID?Ft.information.identity_pubkey:Ft.information.uris[Ft.selInfoType.infoID-1]),S.Q6J("size",Ft.qrWidth)("errorCorrectionLevel","L"),S.xp6(4),S.Q6J("icon",Ft.faReceipt),S.xp6(2),S.Oqu(Ft.selInfoType.infoName),S.xp6(5),S.Q6J("ngClass",S.VKq(17,je,Ft.screenSize!==Ft.screenSizeEnum.XS&&Ft.screenSize!==Ft.screenSizeEnum.SM)),S.xp6(1),S.s9C("value",0===Ft.selInfoType.infoID?Ft.information.identity_pubkey:Ft.information.uris[Ft.selInfoType.infoID-1]),S.Q6J("size",Ft.qrWidth)("errorCorrectionLevel","L"),S.xp6(1),S.Q6J("ngIf",Ft.information.uris&&Ft.information.uris.length>0),S.xp6(4),S.Oqu(Ft.selInfoType.infoName),S.xp6(2),S.Oqu(0===Ft.selInfoType.infoID?Ft.information.identity_pubkey:Ft.information.uris[Ft.selInfoType.infoID-1]),S.xp6(3),S.s9C("payload",0===Ft.selInfoType.infoID?Ft.information.identity_pubkey:Ft.information.uris[Ft.selInfoType.infoID-1]),S.xp6(1),S.hij("Copy ",Ft.selInfoType.infoKey,""))},directives:[U.xw,U.Wh,U.yH,te.mk,ie.oO,oe.uU,X.dk,Ct.BN,me.lW,X.dn,te.O5,et.KE,Ui.gD,te.sg,ze.ey,c.d,r.h,u.y],styles:[""]}),jt})();var re=p(6523),qe=p(429),Mt=p(2994),zt=p(8377),bi=p(8138),Ei=p(7998),Xi=p(5986),Zi=p(8104),sn=p(1402);let gn=(()=>{class jt{constructor(nt,Ft,Kt,mi,Ni,ki,fn,Bn,Dn,Xn,_n){this.actions=nt,this.httpClient=Ft,this.store=Kt,this.logger=mi,this.wsService=Ni,this.sessionService=ki,this.commonService=fn,this.dataService=Bn,this.dialog=Dn,this.snackBar=Xn,this.router=_n,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new e.x,new e.x],this.closeAllDialogs=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.CLOSE_ALL_DIALOGS),(0,b.U)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.OPEN_SNACK_BAR),(0,b.U)(Si=>{"string"==typeof Si.payload?this.snackBar.open(Si.payload):this.snackBar.open(Si.payload.message,"","ERROR"===Si.payload.type?{duration:Si.payload.duration?Si.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===Si.payload.type?{duration:Si.payload.duration?Si.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:Si.payload.duration?Si.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.OPEN_SPINNER),(0,b.U)(Si=>{Si.payload!==L.m6.NO_SPINNER&&(this.dialogRef=this.dialog.open(Y,{data:{titleMessage:Si.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.CLOSE_SPINNER),(0,b.U)(Si=>{if(Si.payload!==L.m6.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===Si.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Wi=>{Wi.componentInstance&&Wi.componentInstance.data&&Wi.componentInstance.data.titleMessage&&Wi.componentInstance.data.titleMessage===Si.payload&&Wi.close()})}catch(Wi){this.logger.error(Wi)}})),{dispatch:!1}),this.openAlert=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.OPEN_ALERT),(0,b.U)(Si=>{const Wi=JSON.parse(JSON.stringify(Si.payload));Wi.width||(Wi.width=this.alertWidth),this.dialogRef=this.dialog.open(Si.payload.data.component?Si.payload.data.component:Wt,Wi)})),{dispatch:!1}),this.closeAlert=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.CLOSE_ALERT),(0,b.U)(Si=>(this.dialogRef&&this.dialogRef.close(),Si.payload))),{dispatch:!1}),this.openConfirm=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.OPEN_CONFIRMATION),(0,b.U)(Si=>{const Wi=JSON.parse(JSON.stringify(Si.payload));Wi.width||(Wi.width=this.confirmWidth),this.dialogRef=this.dialog.open(Bi,Wi)})),{dispatch:!1}),this.closeConfirm=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.CLOSE_CONFIRMATION),(0,d.q)(1),(0,b.U)(Si=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Si.payload),Si.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.SHOW_PUBKEY),(0,N.M)(this.store.select(zt.R4)),(0,h.z)(([Si,Wi])=>(this.sessionService.getItem("token")&&Wi.identity_pubkey?this.store.dispatch((0,hi.qR)({payload:{data:{information:Wi,component:_t}}})):this.snackBar.open("Node Pubkey does not exist."),(0,f.of)({type:L.pg.VOID}))))),this.appConfigFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.FETCH_RTL_CONFIG),(0,h.z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===L.cu.XS||this.screenSize===L.cu.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===L.cu.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="45%",this.confirmWidth="50%"),this.store.dispatch((0,hi.ac)({payload:L.m6.GET_RTL_CONFIG})),this.store.dispatch((0,hi.qi)({payload:{action:"FetchRTLConfig",status:L.Bn.INITIATED}})),this.sessionService.getItem("token")?this.httpClient.get(D.NZ.CONF_API+"/rtlconf"):this.httpClient.get(D.NZ.CONF_API+"/rtlconfinit"))),(0,b.U)(Si=>{this.logger.info(Si),this.store.dispatch((0,hi.uO)({payload:L.m6.GET_RTL_CONFIG})),this.store.dispatch((0,hi.qi)({payload:{action:"FetchRTLConfig",status:L.Bn.COMPLETED}}));let Wi=null;return Si.nodes.forEach(Sn=>{var jn,dr;Sn.settings.currencyUnits=[...L.uA,(null===(jn=Sn.settings)||void 0===jn?void 0:jn.currencyUnit)?null===(dr=Sn.settings)||void 0===dr?void 0:dr.currencyUnit:""],+(Sn.index||-1)===Si.selectedNodeIndex&&(Wi=Sn)}),Wi?(this.store.dispatch((0,hi.fk)({payload:{uiMessage:L.m6.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Wi,isInitialSetup:!0}})),{type:L.pg.SET_RTL_CONFIG,payload:Si}):{type:L.pg.VOID}}),(0,A.K)(Si=>(this.handleErrorWithAlert("FetchRTLConfig",L.m6.GET_RTL_CONFIG,"Fetch RTL Config Failed!",D.NZ.CONF_API,Si),(0,f.of)({type:L.pg.VOID}))))),this.settingSave=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.SAVE_SETTINGS),(0,h.z)(Si=>{this.store.dispatch((0,hi.ac)({payload:Si.payload.uiMessage})),this.store.dispatch((0,hi.qi)({payload:{action:"UpdateSettings",status:L.Bn.INITIATED}}));let Wi=new M.y;if(Si.payload.settings&&Si.payload.defaultNodeIndex){const Sn=this.httpClient.post(D.NZ.CONF_API,{updatedSettings:Si.payload.settings}),jn=this.httpClient.post(D.NZ.CONF_API+"/updateDefaultNode",{defaultNodeIndex:Si.payload.defaultNodeIndex});Wi=(0,a.D)([Sn,jn])}else Si.payload.settings&&!Si.payload.defaultNodeIndex?Wi=this.httpClient.post(D.NZ.CONF_API,{updatedSettings:Si.payload.settings}):!Si.payload.settings&&Si.payload.defaultNodeIndex&&(Wi=this.httpClient.post(D.NZ.CONF_API+"/updateDefaultNode",{defaultNodeIndex:Si.payload.defaultNodeIndex}));return Wi.pipe((0,b.U)(Sn=>(this.logger.info(Sn),this.store.dispatch((0,hi.qi)({payload:{action:"UpdateSettings",status:L.Bn.COMPLETED}})),this.store.dispatch((0,hi.uO)({payload:Si.payload.uiMessage})),{type:L.pg.OPEN_SNACK_BAR,payload:Sn.length?Sn[0].message+".":Sn.message+"."})),(0,A.K)(Sn=>(this.handleErrorWithAlert("UpdateSettings",Si.payload.uiMessage,"Update Settings Failed!",D.NZ.CONF_API,Sn.length?Sn[0]:Sn),(0,f.of)({type:L.pg.VOID}))))}))),this.updateServicesettings=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.UPDATE_SERVICE_SETTINGS),(0,h.z)(Si=>(this.store.dispatch((0,hi.ac)({payload:Si.payload.uiMessage})),this.store.dispatch((0,hi.qi)({payload:{action:"UpdateServiceSettings",status:L.Bn.INITIATED}})),this.httpClient.post(D.NZ.CONF_API+"/updateServiceSettings",Si.payload).pipe((0,b.U)(Wi=>(this.logger.info(Wi),this.store.dispatch((0,hi.qi)({payload:{action:"UpdateServiceSettings",status:L.Bn.COMPLETED}})),this.store.dispatch((0,hi.uO)({payload:Si.payload.uiMessage})),this.store.dispatch((0,hi.Tm)({payload:Si.payload})),{type:L.pg.OPEN_SNACK_BAR,payload:Wi.message+"."})),(0,A.K)(Wi=>(this.handleErrorWithAlert("UpdateServiceSettings",Si.payload.uiMessage,"Update Service Settings Failed!",D.NZ.CONF_API,Wi),(0,f.of)({type:L.pg.VOID})))))))),this.twoFASettingSave=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.TWO_FA_SAVE_SETTINGS),(0,h.z)(Si=>(this.store.dispatch((0,hi.ac)({payload:L.m6.UPDATE_UI_SETTINGS})),this.store.dispatch((0,hi.qi)({payload:{action:"Update2FASettings",status:L.Bn.INITIATED}})),this.httpClient.post(D.NZ.CONF_API+"/update2FA",{secret2fa:Si.payload.secret2fa}))),(0,N.M)(this.store.select(zt.Yj)),(0,b.U)(([Si,Wi])=>{this.logger.info(Si),Wi.enable2FA=!Wi.enable2FA,this.store.dispatch((0,hi.qi)({payload:{action:"Update2FASettings",status:L.Bn.COMPLETED}})),this.store.dispatch((0,hi.uO)({payload:L.m6.UPDATE_UI_SETTINGS})),this.store.dispatch((0,hi.XT)({payload:Wi}))}),(0,A.K)(Si=>(this.handleErrorWithAlert("Update2FASettings",L.m6.UPDATE_UI_SETTINGS,"Update 2FA Settings Failed!",D.NZ.CONF_API,Si),(0,f.of)({type:L.pg.VOID})))),{dispatch:!1}),this.configFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.FETCH_CONFIG),(0,h.z)(Si=>(this.store.dispatch((0,hi.ac)({payload:L.m6.OPEN_CONFIG_FILE})),this.store.dispatch((0,hi.qi)({payload:{action:"fetchConfig",status:L.Bn.INITIATED}})),this.httpClient.get(D.NZ.CONF_API+"/config/"+Si.payload).pipe((0,b.U)(Wi=>(this.store.dispatch((0,hi.qi)({payload:{action:"fetchConfig",status:L.Bn.COMPLETED}})),this.store.dispatch((0,hi.uO)({payload:L.m6.OPEN_CONFIG_FILE})),{type:L.pg.SHOW_CONFIG,payload:Wi})),(0,A.K)(Wi=>(this.handleErrorWithAlert("fetchConfig",L.m6.OPEN_CONFIG_FILE,"Fetch Config Failed!",D.NZ.CONF_API+"/config/"+Si.payload,Wi),(0,f.of)({type:L.pg.VOID})))))))),this.showLnConfig=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.SHOW_CONFIG),(0,b.U)(Si=>Si.payload)),{dispatch:!1}),this.isAuthorized=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.IS_AUTHORIZED),(0,h.z)(Si=>(this.store.dispatch((0,hi.qi)({payload:{action:"IsAuthorized",status:L.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API,{authenticateWith:Si.payload&&""!==Si.payload.trim()?L.OJ.PASSWORD:L.OJ.JWT,authenticationValue:Si.payload&&""!==Si.payload.trim()?Si.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,b.U)(Wi=>(this.logger.info(Wi),this.store.dispatch((0,hi.qi)({payload:{action:"IsAuthorized",status:L.Bn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:L.pg.IS_AUTHORIZED_RES,payload:Wi})),(0,A.K)(Wi=>(this.handleErrorWithAlert("IsAuthorized",L.m6.NO_SPINNER,"Authorization Failed",D.NZ.AUTHENTICATE_API,Wi),(0,f.of)({type:L.pg.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.IS_AUTHORIZED_RES),(0,b.U)(Si=>Si.payload)),{dispatch:!1}),this.authLogin=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.LOGIN),(0,N.M)(this.store.select(zt.Yj)),(0,h.z)(([Si,Wi])=>(this.store.dispatch((0,re.Ll)({payload:null})),this.store.dispatch((0,qe.xH)({payload:null})),this.store.dispatch((0,Mt.Fd)({payload:null})),this.store.dispatch((0,hi.qi)({payload:{action:"Login",status:L.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API,{authenticateWith:Si.payload.password?L.OJ.PASSWORD:L.OJ.JWT,authenticationValue:Si.payload.password?Si.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:Si.payload.twoFAToken?Si.payload.twoFAToken:""}).pipe((0,b.U)(Sn=>{this.logger.info(Sn),this.store.dispatch((0,hi.qi)({payload:{action:"Login",status:L.Bn.COMPLETED}})),this.setLoggedInDetails(Si.payload.defaultPassword,Sn)}),(0,A.K)(Sn=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",L.m6.NO_SPINNER,Sn),+Wi.sso.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:Sn.error&&Sn.error.error?Sn.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"]),(0,f.of)({type:L.pg.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.VERIFY_TWO_FA),(0,h.z)(Si=>(this.store.dispatch((0,hi.ac)({payload:L.m6.VERIFY_TOKEN})),this.store.dispatch((0,hi.qi)({payload:{action:"VerifyToken",status:L.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API+"/token",{authentication2FA:Si.payload.token}).pipe((0,b.U)(Wi=>{this.logger.info(Wi),this.store.dispatch((0,hi.uO)({payload:L.m6.VERIFY_TOKEN})),this.store.dispatch((0,hi.qi)({payload:{action:"VerifyToken",status:L.Bn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,Si.payload.authResponse)}),(0,A.K)(Wi=>(this.handleErrorWithAlert("VerifyToken",L.m6.VERIFY_TOKEN,"Authorization Failed!",D.NZ.AUTHENTICATE_API+"/token",Wi),(0,f.of)({type:L.pg.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.LOGOUT),(0,N.M)(this.store.select(zt.Yj)),(0,h.z)(([Si,Wi])=>(this.store.dispatch((0,hi.ac)({payload:L.m6.LOG_OUT})),this.httpClient.get(D.NZ.AUTHENTICATE_API+"/logout").pipe((0,b.U)(Sn=>{this.logger.info(Sn),this.store.dispatch((0,hi.uO)({payload:L.m6.LOG_OUT})),+Wi.sso.rtlSSO?window.location.href=Wi.sso.logoutRedirectLink:this.router.navigate(["./login"]),this.sessionService.clearAll(),this.store.dispatch((0,hi._V)({payload:{}})),this.logger.warn("LOGGED OUT")}))))),{dispatch:!1}),this.resetPassword=(0,t.GW)(()=>this.actions.pipe((0,w.R)(this.unSubs[1]),(0,t.l4)(L.pg.RESET_PASSWORD),(0,h.z)(Si=>(this.store.dispatch((0,hi.qi)({payload:{action:"ResetPassword",status:L.Bn.INITIATED}})),this.httpClient.post(D.NZ.AUTHENTICATE_API+"/reset",{currPassword:Si.payload.currPassword,newPassword:Si.payload.newPassword}).pipe((0,w.R)(this.unSubs[0]),(0,b.U)(Wi=>(this.logger.info(Wi),this.store.dispatch((0,hi.qi)({payload:{action:"ResetPassword",status:L.Bn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,hi.jW)({payload:"Password Reset Successful!"})),this.SetToken(Wi.token),{type:L.pg.RESET_PASSWORD_RES,payload:Wi.token})),(0,A.K)(Wi=>(this.handleErrorWithAlert("ResetPassword",L.m6.NO_SPINNER,"Password Reset Failed!",D.NZ.AUTHENTICATE_API+"/reset",Wi),(0,f.of)({type:L.pg.VOID})))))))),this.setSelectedNode=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.SET_SELECTED_NODE),(0,h.z)(Si=>(this.store.dispatch((0,hi.ac)({payload:Si.payload.uiMessage})),this.store.dispatch((0,hi.qi)({payload:{action:"UpdateSelNode",status:L.Bn.INITIATED}})),this.httpClient.get(D.NZ.CONF_API+"/updateSelNode/"+Si.payload.currentLnNode.index+"/"+Si.payload.prevLnNodeIndex).pipe((0,b.U)(Wi=>(this.logger.info(Wi),this.store.dispatch((0,hi.qi)({payload:{action:"UpdateSelNode",status:L.Bn.COMPLETED}})),this.store.dispatch((0,hi.uO)({payload:Si.payload.uiMessage})),this.initializeNode(Si.payload.currentLnNode,Si.payload.isInitialSetup),{type:L.pg.VOID})),(0,A.K)(Wi=>(this.handleErrorWithAlert("UpdateSelNode",Si.payload.uiMessage,"Update Selected Node Failed!",D.NZ.CONF_API+"/updateSelNode",Wi),(0,f.of)({type:L.pg.VOID})))))))),this.fetchFile=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.FETCH_FILE),(0,h.z)(Si=>{this.store.dispatch((0,hi.ac)({payload:L.m6.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,hi.qi)({payload:{action:"FetchFile",status:L.Bn.INITIATED}}));const Wi="?channel="+Si.payload.channelPoint+(Si.payload.path?"&path="+Si.payload.path:"");return this.httpClient.get(D.NZ.CONF_API+"/file"+Wi).pipe((0,b.U)(Sn=>(this.store.dispatch((0,hi.qi)({payload:{action:"FetchFile",status:L.Bn.COMPLETED}})),this.store.dispatch((0,hi.uO)({payload:L.m6.DOWNLOAD_BACKUP_FILE})),{type:L.pg.SHOW_FILE,payload:Sn})),(0,A.K)(Sn=>(this.handleErrorWithAlert("fetchFile",L.m6.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",D.NZ.CONF_API+"/file"+Wi,{status:this.commonService.extractErrorNumber(Sn),error:{error:this.commonService.extractErrorCode(Sn)}}),(0,f.of)({type:L.pg.VOID}))))}))),this.showFile=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(L.pg.SHOW_FILE),(0,b.U)(Si=>Si.payload)),{dispatch:!1})}initializeNode(nt,Ft){this.logger.info("Initializing node from RTL Effects.");const Kt=Ft?"":"HOME";let mi={};if(mi=nt.settings.fiatConversion&&nt.settings.currencyUnit?{userPersona:nt.settings.userPersona,channelBackupPath:nt.settings.channelBackupPath,selCurrencyUnit:nt.settings.currencyUnit,currencyUnits:[...L.uA,nt.settings.currencyUnit],fiatConversion:nt.settings.fiatConversion,lnImplementation:nt.lnImplementation,swapServerUrl:nt.settings.swapServerUrl,boltzServerUrl:nt.settings.boltzServerUrl,enableOffers:nt.settings.enableOffers}:{userPersona:nt.settings.userPersona,channelBackupPath:nt.settings.channelBackupPath,selCurrencyUnit:nt.settings.currencyUnit,currencyUnits:L.uA,fiatConversion:nt.settings.fiatConversion,lnImplementation:nt.lnImplementation,swapServerUrl:nt.settings.swapServerUrl,boltzServerUrl:nt.settings.boltzServerUrl,enableOffers:nt.settings.enableOffers},this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clUnlocked"),this.sessionService.removeItem("eclUnlocked"),this.store.dispatch((0,hi.vI)({payload:nt})),this.store.dispatch((0,re.Ll)({payload:mi})),this.store.dispatch((0,qe.xH)({payload:mi})),this.store.dispatch((0,Mt.Fd)({payload:mi})),this.sessionService.getItem("token")){const Ni=nt.lnImplementation?nt.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Ni);const ki=D.NZ.production&&window.location.origin?window.location.origin+"/rtl/api":D.T5;switch(this.wsService.connectWebSocket((null==ki?void 0:ki.replace(/^http/,"ws"))+D.NZ.Web_SOCKET_API,nt.index?nt.index.toString():"-1"),Ni){case"CLN":this.store.dispatch((0,qe.CN)({payload:{loadPage:Kt}}));break;case"ECL":this.store.dispatch((0,Mt.iz)({payload:{loadPage:Kt}}));break;default:this.store.dispatch((0,re.sQ)({payload:{loadPage:Kt}}))}}}SetToken(nt){nt?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",nt)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(nt,Ft){this.logger.info("Successfully Authorized!"),this.SetToken(Ft.token),this.sessionService.setItem("defaultPassword",nt),nt?(this.store.dispatch((0,hi.jW)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,hi.ey)())}handleErrorWithoutAlert(nt,Ft,Kt){this.logger.error("ERROR IN: "+nt+"\n"+JSON.stringify(Kt)),401===Kt.status&&"Login"!==nt?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,hi.ts)()),this.store.dispatch((0,hi.kS)()),this.store.dispatch((0,hi.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,hi.uO)({payload:Ft})),this.store.dispatch((0,hi.qi)({payload:{action:nt,status:L.Bn.ERROR,statusCode:Kt.status?Kt.status.toString():"",message:this.commonService.extractErrorMessage(Kt)}})))}handleErrorWithAlert(nt,Ft,Kt,mi,Ni){if(this.logger.error(Ni),0===Ni.status&&Ni.statusText&&"Unknown Error"===Ni.statusText&&(Ni={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===Ni.status&&"Login"!==nt)this.logger.info("Redirecting to Login"),this.store.dispatch((0,hi.ts)()),this.store.dispatch((0,hi.kS)()),this.store.dispatch((0,hi.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,hi.uO)({payload:Ft}));const ki=this.commonService.extractErrorMessage(Ni);this.store.dispatch((0,hi.qR)({payload:{data:{type:"ERROR",alertTitle:Kt,message:{code:Ni.status?Ni.status:"Unknown Error",message:ki,URL:mi},component:zi.H}}})),this.store.dispatch((0,hi.qi)({payload:{action:nt,status:L.Bn.ERROR,statusCode:Ni.status?Ni.status.toString():"",message:ki,URL:mi}}))}}ngOnDestroy(){this.unSubs.forEach(nt=>{nt.next(null),nt.complete()})}}return jt.\u0275fac=function(nt){return new(nt||jt)(S.LFG(t.eX),S.LFG(bi.eN),S.LFG(xt.yh),S.LFG(ne.mQ),S.LFG(Ei.d),S.LFG(Xi.m),S.LFG(de.v),S.LFG(Zi.D),S.LFG(k.uw),S.LFG($.ux),S.LFG(sn.F0))},jt.\u0275prov=S.Yz7({token:jt,factory:jt.\u0275fac}),jt})()},8377:(Ve,j,p)=>{"use strict";p.d(j,{R4:()=>b,Sr:()=>N,Yj:()=>a,dT:()=>M,gW:()=>h,ul:()=>d});var t=p(5620);const e=(0,t.ZF)("root"),M=((0,t.P1)(e,A=>A.apiURL),(0,t.P1)(e,A=>A.selNode)),a=(0,t.P1)(e,A=>A.appConfig),b=(0,t.P1)(e,A=>A.nodeData),d=(0,t.P1)(e,A=>A.apisCallStatus.Login),N=(0,t.P1)(e,A=>A.apisCallStatus.IsAuthorized),h=(0,t.P1)(e,A=>({nodeDate:A.nodeData,selNode:A.selNode}))},2340:(Ve,j,p)=>{"use strict";p.d(j,{NZ:()=>e,T5:()=>t,q4:()=>f});const t="./api",e={production:!0,isDebugMode:!1,AUTHENTICATE_API:t+"/authenticate",CONF_API:t+"/conf",BALANCE_API:"/balance",FEES_API:"/fees",PEERS_API:"/peers",CHANNELS_API:"/channels",CHANNELS_BACKUP_API:"/channels/backup",GETINFO_API:"/getinfo",WALLET_API:"/wallet",NETWORK_API:"/network",NEW_ADDRESS_API:"/newaddress",TRANSACTIONS_API:"/transactions",PAYMENTS_API:"/payments",INVOICES_API:"/invoices",SWITCH_API:"/switch",ON_CHAIN_API:"/onchain",MESSAGE_API:"/message",OFFERS_API:"/offers",UTILITY_API:"/utility",LOOP_API:"/loop",BOLTZ_API:"/boltz",Web_SOCKET_API:"/ws"},f="0.13.1-beta"},9115:(Ve,j,p)=>{"use strict";var t=p(2313),e=p(5e3),f=p(6360),M=p(8138),a=p(5113),b=p(5620),d=p(6642),N=p(9565),h=p(7579),A=p(6451),w=p(4968),D=p(457),L=p(4986),k=p(2805);function S(K=0,Fe=L.z){return K<0&&(K=0),(0,k.H)(K,K,Fe)}var U=p(9646),Z=p(727),Y=p(4482),ne=p(5403),$=p(8737),de=p(3269),te=p(9672),oe=p(9300),X=p(8505),me=p(3900),y=p(2722),i=p(8746),r=p(1884),u=p(4004);class c{}let _=(()=>{class K{constructor(F,ye){this._ngZone=ye,this.timerStart$=new h.x,this.idleDetected$=new h.x,this.timeout$=new h.x,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,F&&this.setConfig(F)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,A.T)((0,w.R)(window,"mousemove"),(0,w.R)(window,"resize"),(0,w.R)(document,"keydown"))),this.idle$=(0,D.D)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function ie(K,...Fe){var F,ye;const ot=null!==(F=(0,de.yG)(Fe))&&void 0!==F?F:L.z,ri=null!==(ye=Fe[0])&&void 0!==ye?ye:null,en=Fe[1]||1/0;return(0,Y.e)((Kn,Rn)=>{let sr=[],Wr=!1;const Na=or=>{const{buffer:as,subs:Pn}=or;Pn.unsubscribe(),(0,$.P)(sr,or),Rn.next(as),Wr&&rs()},rs=()=>{if(sr){const or=new Z.w0;Rn.add(or);const Pn={buffer:[],subs:or};sr.push(Pn),(0,te.f)(or,ot,()=>Na(Pn),K)}};null!==ri&&ri>=0?(0,te.f)(Rn,ot,rs,ri,!0):Wr=!0,rs();const Cs=(0,ne.x)(Rn,or=>{const as=sr.slice();for(const Pn of as){const{buffer:hr}=Pn;hr.push(or),en<=hr.length&&Na(Pn)}},()=>{for(;null==sr?void 0:sr.length;)Rn.next(sr.shift().buffer);null==Cs||Cs.unsubscribe(),Rn.complete(),Rn.unsubscribe()},void 0,()=>sr=null);Kn.subscribe(Cs)})}(this.idleSensitivityMillisec),(0,oe.h)(F=>!F.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,X.b)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,me.w)(()=>this._ngZone.runOutsideAngular(()=>S(1e3).pipe((0,y.R)((0,A.T)(this.activityEvents$,(0,k.H)(this.idleMillisec).pipe((0,X.b)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,i.x)(()=>{this.isIdleDetected=!1,this.idleDetected$.next(!1)}))))).subscribe(),this.setupTimer(this.timeout),this.setupPing(this.pingMillisec)}stopWatching(){this.stopTimer(),this.idleSubscription&&this.idleSubscription.unsubscribe()}stopTimer(){this.isInactivityTimer=!1,this.timerStart$.next(!1)}resetTimer(){this.stopTimer(),this.isTimeout=!1}onTimerStart(){return this.timerStart$.pipe((0,r.x)(),(0,me.w)(F=>F?this.timer$:(0,U.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,oe.h)(F=>!!F),(0,X.b)(()=>this.isTimeout=!0),(0,u.U)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(F){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(F):console.error("Call stopWatching() before set config values")}setConfig(F){F.idle&&(this.idleMillisec=1e3*F.idle),F.ping&&(this.pingMillisec=1e3*F.ping),F.idleSensitivity&&(this.idleSensitivityMillisec=1e3*F.idleSensitivity),F.timeout&&(this.timeout=F.timeout)}setCustomActivityEvents(F){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=F:console.error("Call stopWatching() before set custom activity events")}setupTimer(F){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,U.of)(()=>new Date).pipe((0,u.U)(ye=>ye()),(0,me.w)(ye=>S(1e3).pipe((0,u.U)(()=>Math.round(((new Date).valueOf()-ye.valueOf())/1e3)),(0,X.b)(ot=>{ot>=F&&this.timeout$.next(!0)}))))})}setupPing(F){this.ping$=S(F).pipe((0,oe.h)(()=>!this.isTimeout))}}return K.\u0275fac=function(F){return new(F||K)(e.LFG(c,8),e.LFG(e.R0b))},K.\u0275prov=e.Yz7({token:K,factory:K.\u0275fac,providedIn:"root"}),K})(),E=(()=>{class K{static forRoot(F){return{ngModule:K,providers:[{provide:c,useValue:F}]}}}return K.\u0275fac=function(F){return new(F||K)},K.\u0275mod=e.oAB({type:K}),K.\u0275inj=e.cJS({imports:[[]]}),K})();var I=p(1402),v=p(801),n=p(8377),C=p(7093),B=p(9444),P=p(9224),H=p(3251),q=p(9808);const he=function(){return{initial:!1}};function _e(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",10),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.activeLink=ot.links[1].link}),e._uU(1),e.qZA()}if(2&K){const F=e.oxw();e.s9C("routerLink",F.links[1].link),e.Q6J("active",F.activeLink===F.links[1].link)("state",e.DdM(4,he)),e.xp6(1),e.Oqu(F.links[1].name)}}function Ne(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.activeLink=ot.links[2].link}),e._uU(1),e.qZA()}if(2&K){const F=e.oxw();e.s9C("routerLink",F.links[2].link),e.Q6J("active",F.activeLink===F.links[2].link),e.xp6(1),e.Oqu(F.links[2].name)}}let we=(()=>{class K{constructor(F,ye){this.store=F,this.router=ye,this.faUserCog=v.gNZ,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){const F=this.links.find(ye=>this.router.url.includes(ye.link));this.activeLink=F?F.link:this.links[0].link,this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(ye=>ye instanceof I.Av)).subscribe({next:ye=>{const ot=this.links.find(ri=>ye.urlAfterRedirects.includes(ri.link));this.activeLink=ot?ot.link:this.links[0].link}}),this.store.select(n.Yj).pipe((0,y.R)(this.unSubs[1])).subscribe(ye=>{this.appConfig=ye}),this.store.select(n.dT).pipe((0,y.R)(this.unSubs[2])).subscribe(ye=>{this.showBitcoind=!1,this.selNode=ye,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(b.yh),e.Y36(I.F0))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-settings"]],decls:14,vars:6,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Settings"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),e.NdJ("click",function(){return ye.activeLink=ye.links[0].link}),e._uU(9),e.qZA(),e.YNc(10,_e,2,5,"div",7),e.YNc(11,Ne,2,3,"div",8),e.qZA(),e.TgZ(12,"div",9),e._UZ(13,"router-outlet"),e.qZA()()()()),2&F&&(e.xp6(1),e.Q6J("icon",ye.faUserCog),e.xp6(7),e.s9C("routerLink",ye.links[0].link),e.Q6J("active",ye.activeLink===ye.links[0].link),e.xp6(1),e.Oqu(ye.links[0].name),e.xp6(1),e.Q6J("ngIf",!+ye.appConfig.sso.rtlSSO),e.xp6(1),e.Q6J("ngIf",ye.showBitcoind))},directives:[C.xw,C.Wh,B.BN,P.a8,P.dn,H.BU,H.Nj,I.rH,q.O5,C.yH,I.lC],styles:[""]}),K})();var Q=p(7731),Ue=p(7861),ve=p(5043),V=p(8129),De=p(3075),dt=p(7322),Ie=p(4107),Ae=p(3390),le=p(508),Te=p(7423);function xe(K,Fe){if(1&K&&(e.TgZ(0,"mat-option",16),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.Q6J("value",F.index),e.xp6(1),e.AsE(" ",F.lnNode," (",F.lnImplementation,") ")}}function W(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"form",2,3)(2,"div",4),e._UZ(3,"fa-icon",5),e.TgZ(4,"span",6),e._uU(5,"Default Node"),e.qZA()(),e.TgZ(6,"div",7)(7,"div",8),e._UZ(8,"fa-icon",9),e.TgZ(9,"span"),e._uU(10,"The setting will apply after RTL server restarts."),e.qZA()(),e.TgZ(11,"div",10)(12,"mat-form-field",10)(13,"mat-select",11),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw().appConfig.defaultNodeIndex=ot}),e.YNc(14,xe,2,3,"mat-option",12),e.qZA()()(),e.TgZ(15,"div",13)(16,"div",10)(17,"button",14),e.NdJ("click",function(){return e.CHM(F),e.oxw().onResetSettings()}),e._uU(18,"Reset"),e.qZA(),e.TgZ(19,"button",15),e.NdJ("click",function(){return e.CHM(F),e.oxw().onUpdateSettings()}),e._uU(20,"Update"),e.qZA()()()()()}if(2&K){const F=e.oxw();e.xp6(3),e.Q6J("icon",F.faWindowRestore),e.xp6(5),e.Q6J("icon",F.faInfoCircle),e.xp6(5),e.Q6J("ngModel",F.appConfig.defaultNodeIndex),e.xp6(1),e.Q6J("ngForOf",F.appConfig.nodes)}}let ee=(()=>{class K{constructor(F,ye){this.logger=F,this.store=ye,this.faInfoCircle=v.sqG,this.faWindowRestore=v.wyP,this.faPlus=v.r8p,this.previousDefaultNode=0,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.select(n.Yj).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{this.appConfig=F,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(F)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateSettings(){this.store.dispatch((0,Ue.zQ)({payload:{uiMessage:Q.m6.UPDATE_DEFAULT_NODE_SETTING,defaultNodeIndex:this.appConfig.defaultNodeIndex?this.appConfig.defaultNodeIndex:this.appConfig&&this.appConfig.nodes&&this.appConfig.nodes.length&&this.appConfig.nodes.length>0&&this.appConfig.nodes[0].index?+this.appConfig.nodes[0].index:-1}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(b.yh))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-app-settings"]],decls:2,vars:1,consts:[["fxLayout","column","fxFlex","100",1,"padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","settings-container page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"my-2"],["fxLayout","row","fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row","fxLayoutAlign","start start"],["autoFocus","","tabindex","1","name","defaultNode",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],[3,"value"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e.YNc(1,W,21,4,"form",1),e.qZA()),2&F&&(e.xp6(1),e.Q6J("ngIf",ye.appConfig.nodes&&ye.appConfig.nodes.length&&ye.appConfig.nodes.length>0))},directives:[C.xw,C.yH,V.$V,q.O5,De._Y,De.JL,De.F,C.Wh,B.BN,dt.KE,Ie.gD,Ae.h,De.JJ,De.On,q.sg,le.ey,Te.lW],styles:[""]}),K})();var ue=p(8012),Ce=p(5698),Le=p(8966),ut=p(5768),ht=p(3093),It=p(7261),ui=p(5615),Wt=p(7531),Gt=p(159),hi=p(6895);const xt=["stepper"];function Nt(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw();e.Oqu(F.passwordFormLabel)}}function Ct(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function et(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw(2);e.Oqu(F.secretFormLabel)}}function yt(K,Fe){if(1&K&&e._UZ(0,"qr-code",32),2&K){const F=e.oxw(2);e.Q6J("value",F.otpauth)("size",180)("errorCorrectionLevel","L")}}function ei(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Secret Code is required."),e.qZA())}function Yt(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-step",10)(1,"form",21),e.YNc(2,et,1,1,"ng-template",22),e.TgZ(3,"div",23),e.YNc(4,yt,1,3,"qr-code",24),e.qZA(),e.TgZ(5,"div",25),e._UZ(6,"fa-icon",26),e.TgZ(7,"span"),e._uU(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),e.qZA()(),e.TgZ(9,"div",27)(10,"mat-form-field",1),e._UZ(11,"input",28),e.TgZ(12,"fa-icon",29),e.NdJ("copied",function(ot){return e.CHM(F),e.oxw().onCopySecret(ot)}),e.qZA(),e.YNc(13,ei,2,0,"mat-error",14),e.qZA()(),e.TgZ(14,"div",30)(15,"button",31),e._uU(16,"Next"),e.qZA()()()()}if(2&K){const F=e.oxw();e.Q6J("stepControl",F.secretFormGroup)("editable",F.flgEditable),e.xp6(1),e.Q6J("formGroup",F.secretFormGroup),e.xp6(3),e.Q6J("ngIf",F.otpauth),e.xp6(2),e.Q6J("icon",F.faInfoCircle),e.xp6(6),e.Q6J("icon",F.faCopy)("payload",null==F.secretFormGroup||null==F.secretFormGroup.controls||null==F.secretFormGroup.controls.secret?null:F.secretFormGroup.controls.secret.value),e.xp6(1),e.Q6J("ngIf",null==F.secretFormGroup||null==F.secretFormGroup.controls||null==F.secretFormGroup.controls.secret||null==F.secretFormGroup.controls.secret.errors?null:F.secretFormGroup.controls.secret.errors.required)}}function Pe(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw(2);e.Oqu(F.tokenFormLabel)}}function Oe(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Token is required."),e.qZA())}function ce(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Token is invalid."),e.qZA())}function be(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",7)(1,"div",27)(2,"mat-form-field",1),e._UZ(3,"input",36),e.YNc(4,Oe,2,0,"mat-error",14),e.YNc(5,ce,2,0,"mat-error",14),e.qZA()(),e.TgZ(6,"div",30)(7,"button",37),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onVerifyToken()}),e._uU(8),e.qZA()()()}if(2&K){const F=e.oxw(2);e.xp6(4),e.Q6J("ngIf",null==F.tokenFormGroup||null==F.tokenFormGroup.controls||null==F.tokenFormGroup.controls.token||null==F.tokenFormGroup.controls.token.errors?null:F.tokenFormGroup.controls.token.errors.required),e.xp6(1),e.Q6J("ngIf",null==F.tokenFormGroup||null==F.tokenFormGroup.controls||null==F.tokenFormGroup.controls.token||null==F.tokenFormGroup.controls.token.errors?null:F.tokenFormGroup.controls.token.errors.notValid),e.xp6(3),e.Oqu(null!=F.tokenFormGroup&&null!=F.tokenFormGroup.controls&&null!=F.tokenFormGroup.controls.token&&null!=F.tokenFormGroup.controls.token.errors&&F.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function pt(K,Fe){1&K&&(e.TgZ(0,"div")(1,"strong"),e._uU(2,"Success! You are all set."),e.qZA()())}function mt(K,Fe){if(1&K&&(e.TgZ(0,"mat-step",33)(1,"form",34),e.YNc(2,Pe,1,1,"ng-template",12),e.YNc(3,be,9,3,"div",35),e.YNc(4,pt,3,0,"div",14),e.qZA()()),2&K){const F=e.oxw();e.Q6J("stepControl",F.tokenFormGroup),e.xp6(1),e.Q6J("formGroup",F.tokenFormGroup),e.xp6(2),e.Q6J("ngIf",!F.flgValidated||!F.isTokenValid),e.xp6(1),e.Q6J("ngIf",F.flgValidated&&F.isTokenValid)}}function Ht(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw(2);e.Oqu(F.disableFormLabel)}}function it(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",7)(1,"div",38),e._UZ(2,"fa-icon",26),e.TgZ(3,"span"),e._uU(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),e.qZA()(),e.TgZ(5,"div",30)(6,"button",37),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onVerifyToken()}),e._uU(7,"Disable"),e.qZA()()()}if(2&K){const F=e.oxw(2);e.xp6(2),e.Q6J("icon",F.faExclamationTriangle)}}function Re(K,Fe){1&K&&(e.TgZ(0,"div")(1,"strong"),e._uU(2,"Two factor authentication removed from RTL."),e.qZA()())}function tt(K,Fe){if(1&K&&(e.TgZ(0,"mat-step",33)(1,"form",34),e.YNc(2,Ht,1,1,"ng-template",12),e.YNc(3,it,8,1,"div",35),e.YNc(4,Re,3,0,"div",14),e.qZA()()),2&K){const F=e.oxw();e.Q6J("stepControl",F.disableFormGroup),e.xp6(1),e.Q6J("formGroup",F.disableFormGroup),e.xp6(2),e.Q6J("ngIf",!F.flgValidated||!F.isTokenValid),e.xp6(1),e.Q6J("ngIf",F.flgValidated&&F.isTokenValid)}}let Xe=(()=>{class K{constructor(F,ye,ot,ri,en,Kn){this.dialogRef=F,this.data=ye,this.store=ot,this.formBuilder=ri,this.rtlEffects=en,this.snackBar=Kn,this.faExclamationTriangle=v.eHv,this.faCopy=v.kZ_,this.faInfoCircle=v.sqG,this.flgValidated=!1,this.isTokenValid=!0,this.otpauth="",this.appConfig=null,this.flgEditable=!0,this.showDisableStepper=!1,this.passwordFormLabel="Authenticate with your RTL password",this.secretFormLabel="Scan or copy the secret",this.tokenFormLabel="Verify your authentication is working",this.disableFormLabel="Disable two factor authentication",this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[De.kI.required]],password:["",[De.kI.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},De.kI.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",De.kI.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new h.x,new h.x]}ngOnInit(){var F,ye;this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!(null===(F=this.appConfig)||void 0===F?void 0:F.enable2FA),this.secretFormGroup=this.formBuilder.group({secret:[{value:(null===(ye=this.appConfig)||void 0===ye?void 0:ye.enable2FA)?"":this.generateSecret(),disabled:!0},De.kI.required]})}generateSecret(){const F=ut.authenticator.generateSecret();return this.otpauth=ut.authenticator.keyuri("","Ride The Lightning (RTL)",F),F}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Ue.QO)({payload:ue(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Ce.q)(1)).subscribe(F=>{"ERROR"!==F?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onCopySecret(F){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){var F,ye;if(null===(F=this.appConfig)||void 0===F?void 0:F.enable2FA)this.store.dispatch((0,Ue.Uy)({payload:{secret2fa:""}})),this.generateSecret(),this.isTokenValid=!0;else{if(!this.tokenFormGroup.controls.token.value)return!0;if(this.isTokenValid=ut.authenticator.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value),!this.isTokenValid)return this.tokenFormGroup.controls.token.setErrors({notValid:!0}),!0;this.store.dispatch((0,Ue.Uy)({payload:{secret2fa:this.secretFormGroup.controls.secret.value}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0,this.appConfig&&(this.appConfig.enable2FA=!(null===(ye=this.appConfig)||void 0===ye?void 0:ye.enable2FA))}stepSelectionChanged(F){switch(F.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}F.selectedIndex{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(Le.so),e.Y36(Le.WI),e.Y36(b.yh),e.Y36(De.qu),e.Y36(ht.V),e.Y36(It.ux))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-two-factor-auth"]],viewQuery:function(F,ye){if(1&F&&e.Gf(xt,5),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.stepper=ot.first)}},decls:28,vars:11,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","15","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["autoFocus","","matInput","","placeholder","Password","type","password","tabindex","1","formControlName","password","required",""],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["fxFlex","100",1,"w-100","alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["autoFocus","","matInput","","placeholder","Secret Code","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"icon","payload","copied"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","6","type","button","matStepperNext",""],[3,"value","size","errorCorrectionLevel"],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column",4,"ngIf"],["autoFocus","","matInput","","placeholder","Token","type","text","tabindex","7","formControlName","token","required",""],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxFlex","100",1,"w-100","alert","alert-warn"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Setup Two Factor Authentication"),e.qZA()(),e.TgZ(6,"button",5),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"div",7)(10,"mat-vertical-stepper",8,9),e.NdJ("selectionChange",function(ri){return ye.stepSelectionChanged(ri)}),e.TgZ(12,"mat-step",10)(13,"form",11),e.YNc(14,Nt,1,1,"ng-template",12),e.TgZ(15,"div",0)(16,"mat-form-field",1),e._UZ(17,"input",13),e.YNc(18,Ct,2,0,"mat-error",14),e.qZA()(),e.TgZ(19,"div",15)(20,"button",16),e.NdJ("click",function(){return ye.onAuthenticate()}),e._uU(21,"Confirm"),e.qZA()()()(),e.YNc(22,Yt,17,8,"mat-step",17),e.YNc(23,mt,5,4,"mat-step",18),e.YNc(24,tt,5,4,"mat-step",18),e.qZA(),e.TgZ(25,"div",19)(26,"button",20),e._uU(27),e.qZA()()()()()()),2&F&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(4),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",ye.passwordFormGroup)("editable",ye.flgEditable),e.xp6(1),e.Q6J("formGroup",ye.passwordFormGroup),e.xp6(5),e.Q6J("ngIf",null==ye.passwordFormGroup||null==ye.passwordFormGroup.controls||null==ye.passwordFormGroup.controls.password||null==ye.passwordFormGroup.controls.password.errors?null:ye.passwordFormGroup.controls.password.errors.required),e.xp6(4),e.Q6J("ngIf",!ye.showDisableStepper),e.xp6(1),e.Q6J("ngIf",!ye.showDisableStepper),e.xp6(1),e.Q6J("ngIf",ye.showDisableStepper),e.xp6(2),e.Q6J("mat-dialog-close",!1),e.xp6(1),e.Oqu(ye.flgValidated&&ye.isTokenValid?"Close":"Cancel"))},directives:[C.xw,C.yH,P.dk,C.Wh,Te.lW,Le.ZT,P.dn,ui.Vq,ui.C0,De._Y,De.JL,De.sg,ui.VY,dt.KE,Wt.Nt,De.Fj,Ae.h,De.JJ,De.u,De.Q7,q.O5,dt.TO,Gt.uU,B.BN,dt.R9,hi.y,ui.Ic],styles:[""]}),K})();var Se=p(5986),Ge=p(4834);const at=["authForm"];function st(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Current password is required."),e.qZA())}function bt(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.Oqu(F.errorMsg)}}function gi(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.Oqu(F.errorConfirmMsg)}}function qt(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"form",10,11)(2,"div",12),e._UZ(3,"fa-icon",4),e.TgZ(4,"span",5),e._uU(5,"Password"),e.qZA()(),e.TgZ(6,"mat-form-field")(7,"input",13),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw().currPassword=ot}),e.qZA(),e.YNc(8,st,2,0,"mat-error",14),e.qZA(),e.TgZ(9,"mat-form-field")(10,"input",15),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw().newPassword=ot}),e.qZA(),e.YNc(11,bt,2,1,"mat-error",14),e.qZA(),e.TgZ(12,"mat-form-field")(13,"input",16),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw().confirmPassword=ot}),e.qZA(),e.YNc(14,gi,2,1,"mat-error",14),e.qZA(),e.TgZ(15,"div",17)(16,"button",18),e.NdJ("click",function(){return e.CHM(F),e.oxw().onResetPassword()}),e._uU(17,"Reset"),e.qZA(),e.TgZ(18,"button",19),e.NdJ("click",function(){return e.CHM(F),e.oxw().onChangePassword()}),e._uU(19,"Change Password"),e.qZA()(),e.TgZ(20,"div",20),e._UZ(21,"mat-divider",21),e.qZA()()}if(2&K){const F=e.oxw();e.xp6(3),e.Q6J("icon",F.faLock),e.xp6(4),e.Q6J("ngModel",F.currPassword),e.xp6(1),e.Q6J("ngIf",!F.currPassword),e.xp6(2),e.Q6J("ngModel",F.newPassword),e.xp6(1),e.Q6J("ngIf",F.matchOldAndNewPasswords()),e.xp6(2),e.Q6J("ngModel",F.confirmPassword),e.xp6(1),e.Q6J("ngIf",F.matchNewPasswords()),e.xp6(7),e.Q6J("inset",!0)}}let Xt=(()=>{class K{constructor(F,ye,ot,ri,en){this.logger=F,this.store=ye,this.actions=ot,this.router=ri,this.sessionService=en,this.faInfoCircle=v.sqG,this.faUserLock=v.FJU,this.faUserClock=v.hnx,this.faLock=v.byT,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(n.Yj).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{this.appConfig=F,this.logger.info(this.appConfig)}),this.store.select(n.dT).pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{this.selNode=F}),this.actions.pipe((0,y.R)(this.unSubs[2]),(0,oe.h)(F=>F.type===Q.pg.RESET_PASSWORD_RES)).subscribe(F=>{var ye;if(Q.kO.includes(this.currPassword.toLowerCase()))switch(null===(ye=this.selNode.lnImplementation)||void 0===ye?void 0:ye.toUpperCase()){case"CLN":this.router.navigate(["/cln/home"]);break;case"ECL":this.router.navigate(["/ecl/home"]);break;default:this.router.navigate(["/lnd/home"])}this.form&&this.form.resetForm()})}onChangePassword(){if(!this.currPassword||!this.newPassword||!this.confirmPassword||this.currPassword===this.newPassword||this.newPassword!==this.confirmPassword||Q.kO.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Ue.c0)({payload:{currPassword:ue(this.currPassword).toString(),newPassword:ue(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let F=!1;return this.form&&this.form.controls&&this.form.controls.newpassword&&(this.newPassword?""!==this.currPassword&&""!==this.newPassword&&this.currPassword===this.newPassword?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="Old and New password cannot be same.",F=!0):Q.kO.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=null==Q.kO?void 0:Q.kO.reduce((ye,ot,ri)=>ri{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(b.yh),e.Y36(d.eX),e.Y36(I.F0),e.Y36(Se.m))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-auth-settings"]],viewQuery:function(F,ye){if(1&F&&e.Gf(at,5),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.form=ot.first)}},decls:14,vars:4,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],[1,"mb-1","settings-container","page-sub-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],[1,"mt-1"],["mat-flat-button","","color","primary","tabindex","6",1,"mb-2",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["authForm","ngForm"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","placeholder","Current Password","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["matInput","","placeholder","New Password","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModel","ngModelChange"],["matInput","","placeholder","Confirm New Password","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","5","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end stretch",1,"my-2"],[3,"inset"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e.YNc(1,qt,22,8,"form",1),e.TgZ(2,"div",2)(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6,"Two Factor Authentication"),e.qZA()(),e.TgZ(7,"div",6),e._UZ(8,"fa-icon",7),e.TgZ(9,"span"),e._uU(10,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),e.qZA()(),e.TgZ(11,"div",8)(12,"button",9),e.NdJ("click",function(){return ye.on2FAuth()}),e._uU(13),e.qZA()()()()),2&F&&(e.xp6(1),e.Q6J("ngIf",null==ye.appConfig?null:ye.appConfig.allowPasswordUpdate),e.xp6(3),e.Q6J("icon",ye.faUserClock),e.xp6(4),e.Q6J("icon",ye.faInfoCircle),e.xp6(5),e.Oqu(ye.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},directives:[C.xw,C.yH,C.Wh,q.O5,De._Y,De.JL,De.F,B.BN,dt.KE,Wt.Nt,De.Fj,Ae.h,De.Q7,De.JJ,De.On,dt.TO,Te.lW,Ge.d],styles:[""]}),K})();var qi=p(4623);function fi(K,Fe){1&K&&e._UZ(0,"mat-divider",7)}function si(K,Fe){if(1&K&&(e.TgZ(0,"div",4)(1,"pre",5),e._uU(2),e.ALo(3,"json"),e.qZA(),e.YNc(4,fi,1,0,"mat-divider",6),e.qZA()),2&K){const F=e.oxw();e.xp6(2),e.Oqu(e.lcZ(3,2,F.configData)),e.xp6(2),e.Q6J("ngIf",""!==F.configData)}}function $i(K,Fe){if(1&K&&(e.TgZ(0,"h2"),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Oqu(F)}}function Bi(K,Fe){if(1&K&&(e.TgZ(0,"h4",14),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Oqu(F)}}function zi(K,Fe){1&K&&e._UZ(0,"mat-divider",15),2&K&&e.Q6J("inset",!0)}function Ui(K,Fe){if(1&K&&(e.TgZ(0,"mat-list-item")(1,"mat-card-subtitle",7),e.YNc(2,$i,2,1,"h2",10),e.qZA(),e.TgZ(3,"mat-card-subtitle",11),e.YNc(4,Bi,2,1,"h4",12),e.qZA(),e.YNc(5,zi,1,1,"mat-divider",13),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(2),e.Q6J("ngIf",F.indexOf("[")>=0),e.xp6(2),e.Q6J("ngIf",F.indexOf("[")<0),e.xp6(1),e.Q6J("ngIf",F.indexOf("[")<0)}}function ze(K,Fe){if(1&K&&(e.TgZ(0,"div",8)(1,"mat-list"),e.YNc(2,Ui,6,3,"mat-list-item",9),e.qZA()()),2&K){const F=e.oxw();e.xp6(2),e.Q6J("ngForOf",F.configData)}}let Tt=(()=>{class K{constructor(F,ye,ot){this.store=F,this.rtlEffects=ye,this.router=ot,this.selectedNodeType="",this.configData="",this.fileFormat="INI",this.faCog=v.b7W,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.selectedNodeType=this.router.url.includes("bconfig")?"bitcoind":"ln",this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(F=>F instanceof I.Av)).subscribe({next:F=>{this.selectedNodeType=F.urlAfterRedirects.includes("bconfig")?"bitcoind":"ln"}}),this.store.dispatch((0,Ue.Q2)({payload:this.selectedNodeType})),this.rtlEffects.showLnConfig.pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{const ye=F.data;this.fileFormat=F.format,this.configData=""===ye||!ye||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==ye&&ye&&"JSON"===this.fileFormat?ye:"":ye.split("\n")})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(b.yh),e.Y36(ht.V),e.Y36(I.F0))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-bitcoin-config"]],decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,si,5,4,"div",2),e.YNc(3,ze,3,1,"div",3),e.qZA()()),2&F&&(e.xp6(2),e.Q6J("ngIf",""!==ye.configData&&"JSON"===ye.fileFormat),e.xp6(1),e.Q6J("ngIf",""!==ye.configData&&("INI"===ye.fileFormat||"HOCON"===ye.fileFormat)))},directives:[C.xw,C.yH,C.Wh,q.O5,Ge.d,qi.i$,q.sg,qi.Tg,P.$j],pipes:[q.Ts],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),K})();const pe=function(){return{initial:!1}};function je(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",10),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.activeLink=ot.links[1].link}),e._uU(1),e.qZA()}if(2&K){const F=e.oxw();e.s9C("routerLink",F.links[1].link),e.Q6J("active",F.activeLink===F.links[1].link)("state",e.DdM(4,pe)),e.xp6(1),e.Oqu(F.links[1].name)}}function _t(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.activeLink=ot.links[2].link}),e._uU(1),e.qZA()}if(2&K){const F=e.oxw();e.s9C("routerLink",F.links[2].link),e.Q6J("active",F.activeLink===F.links[2].link),e.xp6(1),e.Oqu(F.links[2].name)}}function re(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.activeLink=ot.links[3].link}),e._uU(1),e.qZA()}if(2&K){const F=e.oxw();e.s9C("routerLink",F.links[3].link),e.Q6J("active",F.activeLink===F.links[3].link),e.xp6(1),e.Oqu(F.links[3].name)}}let qe=(()=>{class K{constructor(F,ye){this.store=F,this.router=ye,this.faTools=v.CgH,this.showLnConfig=!1,this.lnImplementationStr="",this.links=[{link:"layout",name:"Layout"},{link:"services",name:"Services"},{link:"experimental",name:"Experimental"},{link:"lnconfig",name:this.lnImplementationStr}],this.activeLink="",this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){const F=this.links.find(ye=>this.router.url.includes(ye.link));this.activeLink=F?F.link:this.links[0].link,this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(ye=>ye instanceof I.Av)).subscribe({next:ye=>{const ot=this.links.find(ri=>ye.urlAfterRedirects.includes(ri.link));this.activeLink=ot?ot.link:this.links[0].link}}),this.store.select(n.dT).pipe((0,y.R)(this.unSubs[1])).subscribe(ye=>{var ot;switch(this.showLnConfig=!1,this.selNode=ye,null===(ot=this.selNode.lnImplementation)||void 0===ot?void 0:ot.toUpperCase()){case"CLN":this.lnImplementationStr="Core Lightning Config";break;case"ECL":this.lnImplementationStr="Eclair Config";break;default:this.lnImplementationStr="LND Config"}this.selNode.authentication&&this.selNode.authentication.configPath&&""!==this.selNode.authentication.configPath.trim()&&(this.links[3].name=this.lnImplementationStr,this.showLnConfig=!0)})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(b.yh),e.Y36(I.F0))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-node-config"]],decls:15,vars:7,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Node Config"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),e.NdJ("click",function(){return ye.activeLink=ye.links[0].link}),e._uU(9),e.qZA(),e.YNc(10,je,2,5,"div",7),e.YNc(11,_t,2,3,"div",8),e.YNc(12,re,2,3,"div",8),e.qZA(),e.TgZ(13,"div",9),e._UZ(14,"router-outlet"),e.qZA()()()()),2&F&&(e.xp6(1),e.Q6J("icon",ye.faTools),e.xp6(7),e.s9C("routerLink",ye.links[0].link),e.Q6J("active",ye.activeLink===ye.links[0].link),e.xp6(1),e.Oqu(ye.links[0].name),e.xp6(1),e.Q6J("ngIf","LND"===(null==ye.selNode||null==ye.selNode.lnImplementation?null:ye.selNode.lnImplementation.toUpperCase())),e.xp6(1),e.Q6J("ngIf","CLN"===(null==ye.selNode||null==ye.selNode.lnImplementation?null:ye.selNode.lnImplementation.toUpperCase())),e.xp6(1),e.Q6J("ngIf",ye.showLnConfig))},directives:[C.xw,C.Wh,B.BN,P.a8,P.dn,H.BU,H.Nj,I.rH,q.O5,C.yH,I.lC],styles:[""]}),K})();function Mt(K,Fe){1&K&&e._UZ(0,"mat-divider",7)}function zt(K,Fe){if(1&K&&(e.TgZ(0,"div",4)(1,"pre",5),e._uU(2),e.ALo(3,"json"),e.qZA(),e.YNc(4,Mt,1,0,"mat-divider",6),e.qZA()),2&K){const F=e.oxw();e.xp6(2),e.Oqu(e.lcZ(3,2,F.configData)),e.xp6(2),e.Q6J("ngIf",""!==F.configData)}}function bi(K,Fe){if(1&K&&(e.TgZ(0,"h2"),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Oqu(F)}}function Ei(K,Fe){if(1&K&&(e.TgZ(0,"h4",14),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Oqu(F)}}function Xi(K,Fe){1&K&&e._UZ(0,"mat-divider",15),2&K&&e.Q6J("inset",!0)}function Zi(K,Fe){if(1&K&&(e.TgZ(0,"mat-list-item")(1,"mat-card-subtitle",7),e.YNc(2,bi,2,1,"h2",10),e.qZA(),e.TgZ(3,"mat-card-subtitle",11),e.YNc(4,Ei,2,1,"h4",12),e.qZA(),e.YNc(5,Xi,1,1,"mat-divider",13),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(2),e.Q6J("ngIf",F.indexOf("[")>=0),e.xp6(2),e.Q6J("ngIf",F.indexOf("[")<0),e.xp6(1),e.Q6J("ngIf",F.indexOf("[")<0)}}function sn(K,Fe){if(1&K&&(e.TgZ(0,"div",8)(1,"mat-list"),e.YNc(2,Zi,6,3,"mat-list-item",9),e.qZA()()),2&K){const F=e.oxw();e.xp6(2),e.Q6J("ngForOf",F.configData)}}let gn=(()=>{class K{constructor(F,ye,ot){this.store=F,this.rtlEffects=ye,this.router=ot,this.selectedNodeType="",this.configData="",this.fileFormat="INI",this.faCog=v.b7W,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.selectedNodeType=this.router.url.includes("bconfig")?"bitcoind":"ln",this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(F=>F instanceof I.Av)).subscribe({next:F=>{this.selectedNodeType=F.urlAfterRedirects.includes("bconfig")?"bitcoind":"ln"}}),this.store.dispatch((0,Ue.Q2)({payload:this.selectedNodeType})),this.rtlEffects.showLnConfig.pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{const ye=F.data;this.fileFormat=F.format,this.configData=""===ye||!ye||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==ye&&ye&&"JSON"===this.fileFormat?ye:"":ye.split("\n")})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(b.yh),e.Y36(ht.V),e.Y36(I.F0))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-lnp-config"]],decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,zt,5,4,"div",2),e.YNc(3,sn,3,1,"div",3),e.qZA()()),2&F&&(e.xp6(2),e.Q6J("ngIf",""!==ye.configData&&"JSON"===ye.fileFormat),e.xp6(1),e.Q6J("ngIf",""!==ye.configData&&("INI"===ye.fileFormat||"HOCON"===ye.fileFormat)))},directives:[C.xw,C.yH,C.Wh,q.O5,Ge.d,qi.i$,q.sg,qi.Tg,P.$j],pipes:[q.Ts],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),K})();var jt=p(2994),wi=p(429),nt=p(6523),Ft=p(62),Kt=p(2368),mi=p(9814),Ni=p(3322);function ki(K,Fe){if(1&K&&(e.TgZ(0,"mat-option",35),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.Q6J("value",F.id),e.xp6(1),e.hij(" ",F.id," ")}}function fn(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Currency unit is required."),e.qZA())}function Bn(K,Fe){if(1&K&&(e.TgZ(0,"mat-radio-button",36),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&K){const F=Fe.$implicit,ye=e.oxw();e.Q6J("value",F)("checked",ye.selNode.settings.userPersona===F),e.xp6(1),e.hij(" ",e.lcZ(2,3,F)," ")}}const Dn=function(K){return{"mr-4":K}};function Xn(K,Fe){if(1&K&&(e.TgZ(0,"mat-radio-button",37),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit,ye=e.oxw();e.Q6J("value",F)("ngClass",e.VKq(3,Dn,ye.screenSize===ye.screenSizeEnum.XS||ye.screenSize===ye.screenSizeEnum.SM)),e.xp6(1),e.hij("",F.name," ")}}const _n=function(K){return{skin:!0,"selected-color":K}};function Si(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"span",38)(1,"div",39),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw().changeThemeColor(ri.id)}),e.ALo(2,"lowercase"),e.qZA(),e._uU(3),e.qZA()}if(2&K){const F=Fe.$implicit,ye=e.oxw();e.xp6(1),e.Tol(e.lcZ(2,4,F.id)),e.Q6J("ngClass",e.VKq(6,_n,ye.selectedThemeColor===F.id)),e.xp6(2),e.hij(" ",F.name," ")}}let Wi=(()=>{class K{constructor(F,ye,ot){this.logger=F,this.commonService=ye,this.store=ot,this.faExclamationTriangle=v.eHv,this.faMoneyBillAlt=v.co4,this.faPaintBrush=v.XsY,this.faInfoCircle=v.sqG,this.userPersonas=[Q.ol.OPERATOR,Q.ol.MERCHANT],this.currencyUnits=Q.Er,this.themeModes=Q.wZ.modes,this.themeColors=Q.wZ.themes,this.selectedThemeMode=Q.wZ.modes[0],this.selectedThemeColor=Q.wZ.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=Q.cu,this.unSubs=[new h.x,new h.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(n.dT).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{this.selNode=F,this.selectedThemeMode=this.themeModes.find(ye=>this.selNode.settings.themeMode===ye.id)||this.themeModes[0],this.selectedThemeColor=this.selNode.settings.themeColor,this.selNode.settings.fiatConversion||(this.selNode.settings.currencyUnit=""),this.previousSettings=JSON.parse(JSON.stringify(this.selNode.settings)),this.logger.info(F)})}onCurrencyChange(F){this.selNode.settings.currencyUnits=[...Q.uA,F.value],this.store.dispatch((0,nt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:F.value,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,wi.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:F.value,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,jt.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:F.value,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}}))}toggleSettings(F,ye){this.selNode.settings[F]=!this.selNode.settings[F]}changeThemeColor(F){this.selectedThemeColor=F,this.selNode.settings.themeColor=F}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onUpdateSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.logger.info(this.selNode.settings),this.store.dispatch((0,Ue.zQ)({payload:{uiMessage:Q.m6.UPDATE_NODE_SETTINGS,settings:this.selNode.settings}})),this.store.dispatch((0,nt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,wi.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}})),this.store.dispatch((0,jt.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl}}))}onResetSettings(){const F=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(ye=>ye.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Ue.fk)({payload:{uiMessage:Q.m6.NO_SPINNER,prevLnNodeIndex:+F,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(Ft.v),e.Y36(b.yh))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-node-settings"]],decls:60,vars:17,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["fxLayout","row wrap","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","fiatConversion",3,"ngModel","ngModelChange","change"],["autoFocus","","placeholder","Fiat Currency","tabindex","3","name","currencyUnit",3,"ngModel","disabled","required","ngModelChange","selectionChange"],["currencyUnit","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","space-between stretch",1,"settings-container","page-sub-title-container","mt-1"],[1,"mt-1"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",3,"ngModel","ngModelChange"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1",3,"inset"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["fxFlex.gt-xs","20","fxFlex.gt-md","15","fxLayout","column","fxLayoutAlign","space-between stretch"],["color","primary","name","themeMode",3,"ngModel","ngModelChange","change"],["tabindex","5",3,"value","ngClass",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex.gt-xs","50","fxFlex.gt-md","40","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","row","class","theme-name",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],[1,"mr-4",3,"value","checked"],["tabindex","5",3,"value","ngClass"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"ngClass","click"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"div",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6,"Balance Display"),e.qZA()(),e.TgZ(7,"div",6)(8,"div",7),e._UZ(9,"fa-icon",8),e.TgZ(10,"span"),e._uU(11,"Fiat conversion calls "),e.TgZ(12,"strong")(13,"a",9),e._uU(14,"Blockchain.com"),e.qZA()(),e._uU(15," API to get conversion rates."),e.qZA()(),e.TgZ(16,"div",10)(17,"mat-slide-toggle",11),e.NdJ("ngModelChange",function(ri){return ye.selNode.settings.fiatConversion=ri})("change",function(ri){return ye.selNode.settings.currencyUnit=ri.checked?ye.selNode.settings.currencyUnit:null}),e._uU(18,"Enable Fiat Conversion"),e.qZA(),e.TgZ(19,"mat-form-field")(20,"mat-select",12,13),e.NdJ("ngModelChange",function(ri){return ye.selNode.settings.currencyUnit=ri})("selectionChange",function(ri){return ye.onCurrencyChange(ri)}),e.YNc(22,ki,2,2,"mat-option",14),e.qZA(),e.YNc(23,fn,2,0,"mat-error",15),e.qZA()()(),e.TgZ(24,"div",16)(25,"div",17)(26,"div",18),e._UZ(27,"fa-icon",4),e.TgZ(28,"span",5),e._uU(29,"Customization"),e.qZA()(),e.TgZ(30,"div",6)(31,"div",19)(32,"div",20),e._UZ(33,"fa-icon",8),e.TgZ(34,"span"),e._uU(35,"Dashboard layout will be tailored based on the role selected to better serve its needs."),e.qZA()(),e.TgZ(36,"div",21)(37,"h4"),e._uU(38,"Dashboard Layout"),e.qZA(),e.TgZ(39,"mat-radio-group",22),e.NdJ("ngModelChange",function(ri){return ye.selNode.settings.userPersona=ri}),e.YNc(40,Bn,3,5,"mat-radio-button",23),e.qZA()()(),e._UZ(41,"mat-divider",24),e.TgZ(42,"div",25)(43,"div",26)(44,"h4"),e._uU(45,"Mode"),e.qZA(),e.TgZ(46,"mat-radio-group",27),e.NdJ("ngModelChange",function(ri){return ye.selectedThemeMode=ri})("change",function(){return ye.chooseThemeMode()}),e.YNc(47,Xn,2,5,"mat-radio-button",28),e.qZA()()(),e._UZ(48,"mat-divider",24),e.TgZ(49,"div",25)(50,"div",29)(51,"h4"),e._uU(52,"Themes"),e.qZA(),e.TgZ(53,"div",30),e.YNc(54,Si,4,8,"span",31),e.qZA()()()()()()(),e.TgZ(55,"div",32)(56,"button",33),e.NdJ("click",function(){return ye.onResetSettings()}),e._uU(57,"Reset"),e.qZA(),e.TgZ(58,"button",34),e.NdJ("click",function(){return ye.onUpdateSettings()}),e._uU(59,"Update"),e.qZA()()()),2&F&&(e.xp6(4),e.Q6J("icon",ye.faMoneyBillAlt),e.xp6(5),e.Q6J("icon",ye.faExclamationTriangle),e.xp6(8),e.Q6J("ngModel",ye.selNode.settings.fiatConversion),e.xp6(3),e.Q6J("ngModel",ye.selNode.settings.currencyUnit)("disabled",!ye.selNode.settings.fiatConversion)("required",ye.selNode.settings.fiatConversion),e.xp6(2),e.Q6J("ngForOf",ye.currencyUnits),e.xp6(1),e.Q6J("ngIf",ye.selNode.settings.fiatConversion&&!ye.selNode.settings.currencyUnit),e.xp6(4),e.Q6J("icon",ye.faPaintBrush),e.xp6(6),e.Q6J("icon",ye.faInfoCircle),e.xp6(6),e.Q6J("ngModel",ye.selNode.settings.userPersona),e.xp6(1),e.Q6J("ngForOf",ye.userPersonas),e.xp6(1),e.Q6J("inset",!0),e.xp6(5),e.Q6J("ngModel",ye.selectedThemeMode),e.xp6(1),e.Q6J("ngForOf",ye.themeModes),e.xp6(1),e.Q6J("inset",!0),e.xp6(6),e.Q6J("ngForOf",ye.themeColors))},directives:[C.xw,C.yH,V.$V,De._Y,De.JL,De.F,C.Wh,B.BN,Kt.Rr,De.JJ,De.On,dt.KE,Ie.gD,Ae.h,De.Q7,q.sg,le.ey,q.O5,dt.TO,mi.VQ,mi.U0,Ge.d,q.mk,Ni.oO,Te.lW],pipes:[q.rS,q.i8],styles:[""]}),K})();const Sn=function(){return{initial:!1}};let jn=(()=>{class K{constructor(F){this.router=F,this.faLayerGroup=v.Krp,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"}],this.activeLink="",this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){const F=this.links.find(ye=>this.router.url.includes(ye.link));this.activeLink=F?F.link:this.links[0].link,this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(ye=>ye instanceof I.Av)).subscribe({next:ye=>{const ot=this.links.find(ri=>ye.urlAfterRedirects.includes(ri.link));this.activeLink=ot?ot.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(I.F0))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-services-settings"]],decls:14,vars:9,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Services"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),e.NdJ("click",function(){return ye.activeLink=ye.links[0].link}),e._uU(9),e.qZA(),e.TgZ(10,"div",7),e.NdJ("click",function(){return ye.activeLink=ye.links[1].link}),e._uU(11),e.qZA()(),e.TgZ(12,"div",8),e._UZ(13,"router-outlet"),e.qZA()()()()),2&F&&(e.xp6(1),e.Q6J("icon",ye.faLayerGroup),e.xp6(7),e.s9C("routerLink",ye.links[0].link),e.Q6J("active",ye.activeLink===ye.links[0].link),e.xp6(1),e.Oqu(ye.links[0].name),e.xp6(1),e.s9C("routerLink",ye.links[1].link),e.Q6J("active",ye.activeLink===ye.links[1].link)("state",e.DdM(8,Sn)),e.xp6(1),e.Oqu(ye.links[1].name))},directives:[C.xw,C.Wh,B.BN,P.a8,P.dn,H.BU,H.Nj,I.rH,C.yH,I.lC],styles:[""]}),K})();const dr=["form"];function Fr(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Loop server URL is required."),e.qZA())}function Vr(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Specify the loop server url with 'https://'."),e.qZA())}function ua(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Loop macaroon path is required."),e.qZA())}let _a=(()=>{class K{constructor(F,ye){this.logger=F,this.store=ye,this.faInfoCircle=v.sqG,this.enableLoop=!1,this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.select(n.dT).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{this.selNode=F,this.enableLoop=!(!F.settings.swapServerUrl||""===F.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(F)})}onEnableServiceChanged(F){this.enableLoop=F.checked,this.enableLoop||(this.selNode.authentication.swapMacaroonPath="",this.selNode.settings.swapServerUrl="")}onUpdateService(){if(this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableLoop&&(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim()||!this.selNode.authentication.swapMacaroonPath||""===this.selNode.authentication.swapMacaroonPath.trim()))return!0;this.logger.info(this.selNode),this.store.dispatch((0,Ue.jS)({payload:{uiMessage:Q.m6.UPDATE_LOOP_SETTINGS,service:Q.JX.LOOP,settings:{enable:this.enableLoop,serverUrl:this.selNode.settings.swapServerUrl,macaroonPath:this.selNode.authentication.swapMacaroonPath}}})),this.store.dispatch((0,nt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,wi.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,jt.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.selNode.settings.enableOffers}}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(b.yh))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-loop-service-settings"]],viewQuery:function(F,ye){if(1&F&&e.Gf(dr,7),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.form=ot.first)}},decls:34,vars:11,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxFlex","100",1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://github.com/lightninglabs/loop","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"mb-1",3,"ngModel","ngModelChange","change"],[1,"mb-2"],["matInput","","placeholder","Loop Server URL","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModel","required","disabled","ngModelChange"],["srvrUrl","ngModel"],[4,"ngIf"],["matInput","","placeholder","Loop Macaroon Path","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModel","required","disabled","ngModelChange"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(F,ye){if(1&F&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Please ensure that "),e.TgZ(5,"strong"),e._uU(6,"loopd"),e.qZA(),e._uU(7," is running and accessible to RTL before enabling this service. Click "),e.TgZ(8,"strong")(9,"a",3),e._uU(10,"here"),e.qZA()(),e._uU(11," to learn more about the installation."),e.qZA()(),e.TgZ(12,"form",4,5)(14,"div",6)(15,"mat-slide-toggle",7),e.NdJ("ngModelChange",function(ri){return ye.enableLoop=ri})("change",function(ri){return ye.onEnableServiceChanged(ri)}),e._uU(16,"Enable Loop Service"),e.qZA(),e.TgZ(17,"mat-form-field",8)(18,"input",9,10),e.NdJ("ngModelChange",function(ri){return ye.selNode.settings.swapServerUrl=ri}),e.qZA(),e.TgZ(20,"mat-hint"),e._uU(21,"Service url for loop server REST APIs, eg. https://localhost:8081"),e.qZA(),e.YNc(22,Fr,2,0,"mat-error",11),e.YNc(23,Vr,2,0,"mat-error",11),e.qZA(),e.TgZ(24,"mat-form-field")(25,"input",12),e.NdJ("ngModelChange",function(ri){return ye.selNode.authentication.swapMacaroonPath=ri}),e.qZA(),e.TgZ(26,"mat-hint"),e._uU(27,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),e.qZA(),e.YNc(28,ua,2,0,"mat-error",11),e.qZA()()(),e.TgZ(29,"div",13)(30,"button",14),e.NdJ("click",function(){return ye.onReset()}),e._uU(31,"Reset"),e.qZA(),e.TgZ(32,"button",15),e.NdJ("click",function(){return ye.onUpdateService()}),e._uU(33,"Update"),e.qZA()()()),2&F){const ot=e.MAs(19);e.xp6(2),e.Q6J("icon",ye.faInfoCircle),e.xp6(13),e.Q6J("ngModel",ye.enableLoop),e.xp6(3),e.Q6J("ngModel",ye.selNode.settings.swapServerUrl)("required",ye.enableLoop)("disabled",!ye.enableLoop),e.xp6(4),e.Q6J("ngIf",!ye.selNode.settings.swapServerUrl&&ye.enableLoop),e.xp6(1),e.Q6J("ngIf",(null==ot||null==ot.errors?null:ot.errors.invalid)&&ye.enableLoop),e.xp6(2),e.Q6J("ngModel",ye.selNode.authentication.swapMacaroonPath)("required",ye.enableLoop)("disabled",!ye.enableLoop),e.xp6(3),e.Q6J("ngIf",!ye.selNode.authentication.swapMacaroonPath&&ye.enableLoop)}},directives:[C.xw,C.yH,V.$V,B.BN,De._Y,De.JL,De.F,C.Wh,Kt.Rr,Ae.h,De.JJ,De.On,dt.KE,Wt.Nt,De.Fj,De.Q7,dt.bx,q.O5,dt.TO,Te.lW],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),K})();const va=["form"];function Va(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Boltz server URL is required."),e.qZA())}function za(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Specify the boltz server url with 'https://'."),e.qZA())}function cr(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Boltz macaroon path is required."),e.qZA())}let $r=(()=>{class K{constructor(F,ye){this.logger=F,this.store=ye,this.faInfoCircle=v.sqG,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new h.x,new h.x]}ngOnInit(){this.store.select(n.dT).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{this.selNode=F,this.enableBoltz=!(!F.settings.boltzServerUrl||""===F.settings.boltzServerUrl.trim()),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(F)})}onEnableServiceChanged(F){this.enableBoltz=F.checked,this.enableBoltz||(this.macaroonPath="",this.serverUrl="")}onUpdateService(){if(this.serverUrl&&""!==this.serverUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableBoltz&&(!this.serverUrl||""===this.serverUrl.trim()||!this.serverUrl.includes("https://")||!this.macaroonPath||""===this.macaroonPath.trim()))return!0;this.logger.info(this.selNode),this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath,this.store.dispatch((0,Ue.jS)({payload:{uiMessage:Q.m6.UPDATE_BOLTZ_SETTINGS,service:Q.JX.BOLTZ,settings:{enable:this.enableBoltz,serverUrl:this.serverUrl,macaroonPath:this.macaroonPath}}})),this.store.dispatch((0,nt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.serverUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,wi.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.serverUrl,enableOffers:this.selNode.settings.enableOffers}})),this.store.dispatch((0,jt.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.serverUrl,enableOffers:this.selNode.settings.enableOffers}}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.enableBoltz=!(!this.serverUrl||""===this.serverUrl.trim())}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(b.yh))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(F,ye){if(1&F&&e.Gf(va,7),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.form=ot.first)}},decls:34,vars:11,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxFlex","100",1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://lnd.docs.boltz.exchange/en/latest/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"mb-1",3,"ngModel","ngModelChange","change"],[1,"mb-2"],["matInput","","placeholder","Boltz Server URL","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModel","required","disabled","ngModelChange"],["srvrUrl","ngModel"],[4,"ngIf"],["matInput","","placeholder","Boltz Macaroon Path","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModel","required","disabled","ngModelChange"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(F,ye){if(1&F&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Please ensure that "),e.TgZ(5,"strong"),e._uU(6,"boltzd"),e.qZA(),e._uU(7," is running and accessible to RTL before enabling this service. Click "),e.TgZ(8,"strong")(9,"a",3),e._uU(10,"here"),e.qZA()(),e._uU(11," to learn more about the installation."),e.qZA()(),e.TgZ(12,"form",4,5)(14,"div",6)(15,"mat-slide-toggle",7),e.NdJ("ngModelChange",function(ri){return ye.enableBoltz=ri})("change",function(ri){return ye.onEnableServiceChanged(ri)}),e._uU(16,"Enable Boltz Service"),e.qZA(),e.TgZ(17,"mat-form-field",8)(18,"input",9,10),e.NdJ("ngModelChange",function(ri){return ye.serverUrl=ri}),e.qZA(),e.TgZ(20,"mat-hint"),e._uU(21,"Service url for boltz server REST APIs, eg. https://localhost:9003"),e.qZA(),e.YNc(22,Va,2,0,"mat-error",11),e.YNc(23,za,2,0,"mat-error",11),e.qZA(),e.TgZ(24,"mat-form-field")(25,"input",12),e.NdJ("ngModelChange",function(ri){return ye.macaroonPath=ri}),e.qZA(),e.TgZ(26,"mat-hint"),e._uU(27,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),e.qZA(),e.YNc(28,cr,2,0,"mat-error",11),e.qZA()()(),e.TgZ(29,"div",13)(30,"button",14),e.NdJ("click",function(){return ye.onReset()}),e._uU(31,"Reset"),e.qZA(),e.TgZ(32,"button",15),e.NdJ("click",function(){return ye.onUpdateService()}),e._uU(33,"Update"),e.qZA()()()),2&F){const ot=e.MAs(19);e.xp6(2),e.Q6J("icon",ye.faInfoCircle),e.xp6(13),e.Q6J("ngModel",ye.enableBoltz),e.xp6(3),e.Q6J("ngModel",ye.serverUrl)("required",ye.enableBoltz)("disabled",!ye.enableBoltz),e.xp6(4),e.Q6J("ngIf",(!ye.serverUrl||""===ye.serverUrl.trim())&&ye.enableBoltz),e.xp6(1),e.Q6J("ngIf",(null==ot||null==ot.errors?null:ot.errors.invalid)&&ye.enableBoltz),e.xp6(2),e.Q6J("ngModel",ye.macaroonPath)("required",ye.enableBoltz)("disabled",!ye.enableBoltz),e.xp6(3),e.Q6J("ngIf",!ye.macaroonPath&&ye.enableBoltz)}},directives:[C.xw,C.yH,V.$V,B.BN,De._Y,De.JL,De.F,C.Wh,Kt.Rr,Ae.h,De.JJ,De.On,dt.KE,Wt.Nt,De.Fj,De.Q7,dt.bx,q.O5,dt.TO,Te.lW],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),K})(),ha=(()=>{class K{constructor(){}ngOnInit(){}ngOnDestroy(){}}return K.\u0275fac=function(F){return new(F||K)},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(F,ye){1&F&&e._UZ(0,"router-outlet")},directives:[I.lC],styles:[""]}),K})();var Ba=p(2615),Yr=p(9107),jr=p(6087),mr=p(4847),hn=p(2075),ea=p(5899);function ir(K,Fe){1&K&&e._UZ(0,"mat-progress-bar",34)}function Ka(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," Initiation Time "),e.qZA())}function Kr(K,Fe){if(1&K&&(e.TgZ(0,"td",36),e._uU(1),e.ALo(2,"date"),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,F.initiation_time/1e6,"dd/MMM/y HH:mm"))}}function Ta(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," Last Update Time "),e.qZA())}function ta(K,Fe){if(1&K&&(e.TgZ(0,"td",36),e._uU(1),e.ALo(2,"date"),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,F.last_update_time/1e6,"dd/MMM/y HH:mm"))}}function Pr(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," ID "),e.qZA())}function zr(K,Fe){if(1&K&&(e.TgZ(0,"td",36),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(F.id)}}function Qr(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," ID (Bytes) "),e.qZA())}function xr(K,Fe){if(1&K&&(e.TgZ(0,"td",36),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(F.id_bytes)}}function Nr(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," State "),e.qZA())}function fa(K,Fe){if(1&K&&(e.TgZ(0,"td",36),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit,ye=e.oxw();e.xp6(1),e.Oqu(ye.LoopStateEnum[F.state])}}function ya(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," HTLC Address "),e.qZA())}function xa(K,Fe){if(1&K&&(e.TgZ(0,"td",36),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(F.htlc_address)}}function nr(K,Fe){1&K&&(e.TgZ(0,"th",37),e._uU(1," Amount (Sats) "),e.qZA())}function Aa(K,Fe){if(1&K&&(e.TgZ(0,"td",36)(1,"span",38),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.amt))}}function Oa(K,Fe){1&K&&(e.TgZ(0,"th",37),e._uU(1," Cost Server (Sats) "),e.qZA())}function $n(K,Fe){if(1&K&&(e.TgZ(0,"td",36)(1,"span",38),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.cost_server))}}function oa(K,Fe){1&K&&(e.TgZ(0,"th",37),e._uU(1," Cost Offchain (Sats) "),e.qZA())}function Br(K,Fe){if(1&K&&(e.TgZ(0,"td",36)(1,"span",38),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.cost_offchain))}}function Dr(K,Fe){1&K&&(e.TgZ(0,"th",37),e._uU(1," Cost Onchain (Sats) "),e.qZA())}function Ur(K,Fe){if(1&K&&(e.TgZ(0,"td",36)(1,"span",38),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==F?null:F.cost_onchain)," ")}}function ba(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"th",39)(1,"div",40)(2,"mat-select",41),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",42),e.NdJ("click",function(){return e.CHM(F),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Ua(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"td",43)(1,"button",44),e.NdJ("click",function(ot){const en=e.CHM(F).$implicit;return e.oxw().onSwapClick(en,ot)}),e._uU(2,"View Info"),e.qZA()()}}function Qn(K,Fe){if(1&K&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.Oqu(F.emptyTableMessage)}}function Je(K,Fe){if(1&K&&(e.TgZ(0,"td",45),e.YNc(1,Qn,2,1,"p",46),e.qZA()),2&K){const F=e.oxw();e.xp6(1),e.Q6J("ngIf",!(null!=F.listSwaps&&F.listSwaps.data)||(null==F.listSwaps||null==F.listSwaps.data?null:F.listSwaps.data.length)<1)}}const St=function(K){return{"display-none":K}};function Qe(K,Fe){if(1&K&&e._UZ(0,"tr",47),2&K){const F=e.oxw();e.Q6J("ngClass",e.VKq(1,St,(null==F.listSwaps?null:F.listSwaps.data)&&(null==F.listSwaps||null==F.listSwaps.data?null:F.listSwaps.data.length)>0))}}function kt(K,Fe){1&K&&e._UZ(0,"tr",48)}function ai(K,Fe){1&K&&e._UZ(0,"tr",49)}const Ti=function(K){return{"overflow-auto error-border":K,"overflow-auto":!0}},Oi=function(){return["no_swap"]};let rn=(()=>{class K{constructor(F,ye,ot,ri){this.logger=F,this.commonService=ye,this.store=ot,this.loopService=ri,this.selectedSwapType=Q.$I.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.LoopStateEnum=Q.Fq,this.faHistory=v.qO$,this.swapCaption="Loop Out",this.displayedColumns=[],this.selFilter="",this.flgSticky=!1,this.pageSize=Q.IV,this.pageSizeOptions=Q.TJ,this.screenSize="",this.screenSizeEnum=Q.cu,this.unSubs=[new h.x,new h.x,new h.x],this.screenSize=this.commonService.getScreenSize(),this.screenSize===Q.cu.XS||this.screenSize===Q.cu.SM?(this.flgSticky=!1,this.displayedColumns=["state","amt","actions"]):this.screenSize===Q.cu.MD?(this.flgSticky=!1,this.displayedColumns=["state","initiation_time","amt","actions"]):(this.flgSticky=!0,this.displayedColumns=["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain","actions"])}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}ngOnChanges(F){this.swapCaption=this.selectedSwapType===Q.$I.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}onSwapClick(F,ye){var ot,ri;this.loopService.getSwap((null===(ri=null===(ot=F.id_bytes)||void 0===ot?void 0:ot.replace(/\//g,"_"))||void 0===ri?void 0:ri.replace(/\+/g,"-"))||"").pipe((0,y.R)(this.unSubs[2])).subscribe(en=>{this.store.dispatch((0,Ue.qR)({payload:{data:{type:Q.n_.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:Q.Fq[en.state||""],title:"Status",width:50,type:Q.Gi.STRING},{key:"amt",value:en.amt,title:"Amount (Sats)",width:50,type:Q.Gi.NUMBER}],[{key:"initiation_time",value:(en.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:Q.Gi.DATE_TIME},{key:"last_update_time",value:(en.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:Q.Gi.DATE_TIME}],[{key:"cost_server",value:en.cost_server,title:"Server Cost (Sats)",width:33,type:Q.Gi.NUMBER},{key:"cost_offchain",value:en.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:Q.Gi.NUMBER},{key:"cost_onchain",value:en.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:Q.Gi.NUMBER}],[{key:"id_bytes",value:en.id_bytes,title:"ID",width:100,type:Q.Gi.STRING}],[{key:"htlc_address",value:en.htlc_address,title:"HTLC Address",width:100,type:Q.Gi.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(F){this.listSwaps=new hn.by([...F]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(ye,ot)=>ye[ot]&&isNaN(ye[ot])?ye[ot].toLocaleLowerCase():ye[ot]?+ye[ot]:null,this.listSwaps.filterPredicate=(ye,ot)=>JSON.stringify(ye).toLowerCase().includes(ot),this.listSwaps.paginator=this.paginator,this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===Q.$I.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(Ft.v),e.Y36(b.yh),e.Y36(Yr.W))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-swaps"]],viewQuery:function(F,ye){if(1&F&&(e.Gf(mr.YE,5),e.Gf(jr.NW,5)),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.sort=ot.first),e.iGM(ot=e.CRH())&&(ye.paginator=ot.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[e._Bn([{provide:jr.ye,useValue:(0,Q.pt)("Swaps")}]),e.TTD],decls:52,vars:16,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","initiation_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","last_update_time"],["matColumnDef","id"],["matColumnDef","id_bytes"],["matColumnDef","state"],["matColumnDef","htlc_address"],["matColumnDef","amt"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cost_server"],["matColumnDef","cost_offchain"],["matColumnDef","cost_onchain"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"mat-form-field",5)(7,"input",6),e.NdJ("keyup",function(){return ye.applyFilter()})("ngModelChange",function(ri){return ye.selFilter=ri}),e.qZA()()(),e.TgZ(8,"div",7)(9,"div",8),e.YNc(10,ir,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,Ka,2,0,"th",13),e.YNc(15,Kr,3,4,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,Ta,2,0,"th",13),e.YNc(18,ta,3,4,"td",14),e.BQk(),e.ynx(19,16),e.YNc(20,Pr,2,0,"th",13),e.YNc(21,zr,2,1,"td",14),e.BQk(),e.ynx(22,17),e.YNc(23,Qr,2,0,"th",13),e.YNc(24,xr,2,1,"td",14),e.BQk(),e.ynx(25,18),e.YNc(26,Nr,2,0,"th",13),e.YNc(27,fa,2,1,"td",14),e.BQk(),e.ynx(28,19),e.YNc(29,ya,2,0,"th",13),e.YNc(30,xa,2,1,"td",14),e.BQk(),e.ynx(31,20),e.YNc(32,nr,2,0,"th",21),e.YNc(33,Aa,4,3,"td",14),e.BQk(),e.ynx(34,22),e.YNc(35,Oa,2,0,"th",21),e.YNc(36,$n,4,3,"td",14),e.BQk(),e.ynx(37,23),e.YNc(38,oa,2,0,"th",21),e.YNc(39,Br,4,3,"td",14),e.BQk(),e.ynx(40,24),e.YNc(41,Dr,2,0,"th",21),e.YNc(42,Ur,4,3,"td",14),e.BQk(),e.ynx(43,25),e.YNc(44,ba,6,0,"th",26),e.YNc(45,Ua,3,0,"td",27),e.BQk(),e.ynx(46,28),e.YNc(47,Je,2,1,"td",29),e.BQk(),e.YNc(48,Qe,1,3,"tr",30),e.YNc(49,kt,1,0,"tr",31),e.YNc(50,ai,1,0,"tr",32),e.qZA(),e._UZ(51,"mat-paginator",33),e.qZA()()()),2&F&&(e.xp6(3),e.Q6J("icon",ye.faHistory),e.xp6(2),e.hij("",ye.swapCaption," History"),e.xp6(2),e.Q6J("ngModel",ye.selFilter),e.xp6(3),e.Q6J("ngIf",!0===ye.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",ye.listSwaps)("ngClass",e.VKq(13,Ti,"error"===ye.flgLoading[0])),e.xp6(37),e.Q6J("matFooterRowDef",e.DdM(15,Oi)),e.xp6(1),e.Q6J("matHeaderRowDef",ye.displayedColumns)("matHeaderRowDefSticky",ye.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",ye.displayedColumns),e.xp6(1),e.Q6J("pageSize",ye.pageSize)("pageSizeOptions",ye.pageSizeOptions)("showFirstLastButtons",ye.screenSize!==ye.screenSizeEnum.XS))},directives:[C.xw,C.yH,C.Wh,B.BN,dt.KE,Wt.Nt,De.Fj,De.JJ,De.On,V.$V,q.O5,ea.pW,hn.BZ,mr.YE,q.mk,Ni.oO,hn.w1,hn.fO,hn.ge,mr.nU,hn.Dz,hn.ev,Ie.gD,Ie.$L,le.ey,Te.lW,hn.mD,hn.yh,hn.Ke,hn.Q2,hn.as,hn.XQ,hn.nj,hn.Gk,jr.NW],pipes:[q.uU,q.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),K})();const qn=function(K){return["../",K]};function Ot(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",10),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw().onSelectedIndexChange(ri)}),e._uU(1),e.qZA()}if(2&K){const F=Fe.$implicit,ye=e.oxw();e.Q6J("active",ye.activeTab.link===F.link)("routerLink",e.VKq(3,qn,F.link)),e.xp6(1),e.Oqu(F.name)}}let oi=(()=>{class K{constructor(F,ye,ot){this.router=F,this.loopService=ye,this.store=ot,this.faInfinity=v.vqe,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=Q.$I,this.selectedSwapType=Q.$I.LOOP_OUT,this.storedSwaps=[],this.filteredSwaps=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"loopout",name:"Loop Out"},{link:"loopin",name:"Loop In"}],this.activeTab=this.links[0],this.unSubs=[new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.loopService.listSwaps();const F=this.links.find(ye=>this.router.url.includes(ye.link));this.activeTab=F||this.links[0],this.selectedSwapType=F&&"loopin"===F.link?Q.$I.LOOP_IN:Q.$I.LOOP_OUT,this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(ye=>ye instanceof I.Av)).subscribe({next:ye=>{const ot=this.links.find(ri=>ye.urlAfterRedirects.includes(ri.link));this.activeTab=ot||this.links[0],this.selectedSwapType=ot&&"loopin"===ot.link?Q.$I.LOOP_IN:Q.$I.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,y.R)(this.unSubs[1])).subscribe({next:ye=>{var ot;this.flgLoading[0]=!1,this.storedSwaps=ye,this.filteredSwaps=null===(ot=this.storedSwaps)||void 0===ot?void 0:ot.filter(ri=>ri.type===this.selectedSwapType)},error:ye=>{this.flgLoading[0]="error",this.emptyTableMessage=ye.message?ye.message:"No loop "+(this.selectedSwapType===Q.$I.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(F){var ye;this.selectedSwapType="loopin"===F.link?Q.$I.LOOP_IN:Q.$I.LOOP_OUT,this.filteredSwaps=null===(ye=this.storedSwaps)||void 0===ye?void 0:ye.filter(ot=>ot.type===this.selectedSwapType)}onLoop(F){F===Q.$I.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,y.R)(this.unSubs[2])).subscribe({next:ye=>{this.store.dispatch((0,Ue.qR)({payload:{data:{minQuote:ye[0],maxQuote:ye[1],direction:F,component:Ba.a}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,y.R)(this.unSubs[3])).subscribe({next:ye=>{this.store.dispatch((0,Ue.qR)({payload:{data:{minQuote:ye[0],maxQuote:ye[1],direction:F,component:Ba.a}}}))}})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(I.F0),e.Y36(Yr.W),e.Y36(b.yh))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-loop"]],decls:13,vars:7,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e._UZ(1,"fa-icon",1),e.TgZ(2,"span",2),e._uU(3,"Loop"),e.qZA()(),e.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),e.YNc(8,Ot,2,5,"div",6),e.qZA(),e.TgZ(9,"div",7)(10,"button",8),e.NdJ("click",function(){return ye.onLoop(ye.selectedSwapType)}),e._uU(11),e.qZA()(),e._UZ(12,"rtl-swaps",9),e.qZA()()()),2&F&&(e.xp6(1),e.Q6J("icon",ye.faInfinity),e.xp6(7),e.Q6J("ngForOf",ye.links),e.xp6(3),e.hij("Start ",ye.activeTab.name,""),e.xp6(1),e.Q6J("selectedSwapType",ye.selectedSwapType)("swapsData",ye.filteredSwaps)("flgLoading",ye.flgLoading)("emptyTableMessage",ye.emptyTableMessage))},directives:[C.xw,C.Wh,B.BN,P.a8,P.dn,H.BU,q.sg,H.Nj,I.rH,Te.lW,rn,C.yH],styles:[""]}),K})();var gt=p(7772),Qt=p(1135),Di=p(2843),Gi=p(262),Ke=p(2340),We=p(1786);let He=(()=>{class K{constructor(F,ye,ot,ri){this.httpClient=F,this.logger=ye,this.store=ot,this.commonService=ri,this.swapUrl="",this.swaps={},this.swapsChanged=new Qt.X({}),this.unSubs=[new h.x,new h.x,new h.x]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Ue.ac)({payload:Q.m6.GET_BOLTZ_SWAPS})),this.swapUrl=Ke.T5+Ke.NZ.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,y.R)(this.unSubs[0])).subscribe({next:F=>{this.store.dispatch((0,Ue.uO)({payload:Q.m6.GET_BOLTZ_SWAPS})),this.swaps=F,this.swapsChanged.next(this.swaps)},error:F=>this.swapsChanged.error(this.handleErrorWithAlert(Q.m6.GET_BOLTZ_SWAPS,this.swapUrl,F))})}swapInfo(F){return this.swapUrl=Ke.T5+Ke.NZ.BOLTZ_API+"/swapInfo/"+F,this.httpClient.get(this.swapUrl).pipe((0,Gi.K)(ye=>(0,U.of)(this.handleErrorWithAlert(Q.m6.NO_SPINNER,this.swapUrl,ye))))}serviceInfo(){return this.store.dispatch((0,Ue.ac)({payload:Q.m6.GET_SERVICE_INFO})),this.swapUrl=Ke.T5+Ke.NZ.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,y.R)(this.unSubs[1]),(0,u.U)(F=>(this.store.dispatch((0,Ue.uO)({payload:Q.m6.GET_SERVICE_INFO})),F)),(0,Gi.K)(F=>(0,U.of)(this.handleErrorWithAlert(Q.m6.GET_SERVICE_INFO,this.swapUrl,F))))}swapOut(F,ye){const ot={amount:F,address:ye};return this.swapUrl=Ke.T5+Ke.NZ.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,ot).pipe((0,Gi.K)(ri=>this.handleErrorWithoutAlert("Swap Out for Address: "+ye,Q.m6.NO_SPINNER,ri)))}swapIn(F){const ye={amount:F};return this.swapUrl=Ke.T5+Ke.NZ.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,ye).pipe((0,Gi.K)(ot=>this.handleErrorWithoutAlert("Swap In for Amount: "+F,Q.m6.NO_SPINNER,ot)))}handleErrorWithoutAlert(F,ye,ot){let ri="";return this.logger.error("ERROR IN: "+F+"\n"+JSON.stringify(ot)),this.store.dispatch((0,Ue.uO)({payload:ye})),401===ot.status?(ri="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Ue.kS)())):503===ot.status?(ri="Unable to Connect to Boltz Server.",this.store.dispatch((0,Ue.qR)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:ot.status,message:"Unable to Connect to Boltz Server",URL:F},component:We.H}}}))):ri=this.commonService.extractErrorMessage(ot),(0,Di._)(()=>new Error(ri))}handleErrorWithAlert(F,ye,ot){let ri="";if(401===ot.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Ue.kS)())),this.logger.error(ot),this.store.dispatch((0,Ue.uO)({payload:F})),401===ot.status)ri="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Ue.kS)());else if(503===ot.status)ri="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Ue.qR)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:ot.status,message:"Unable to Connect to Boltz Server",URL:ye},component:We.H}}}))},100);else{ri=this.commonService.extractErrorMessage(ot);const en=ot.error&&ot.error.error&&ot.error.error.code?ot.error.error.code:ot.error&&ot.error.code?ot.error.code:ot.code?ot.code:ot.status;setTimeout(()=>{this.store.dispatch((0,Ue.qR)({payload:{data:{type:Q.n_.ERROR,alertTitle:"ERROR",message:{code:en,message:ri,URL:ye},component:We.H}}}))},100)}return{message:ri}}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.LFG(M.eN),e.LFG(ve.mQ),e.LFG(b.yh),e.LFG(Ft.v))},K.\u0275prov=e.Yz7({token:K,factory:K.\u0275fac}),K})();var Lt=p(1125);let yi=(()=>{class K{constructor(){this.serviceInfo={},this.direction=Q.hc.SWAP_OUT,this.swapTypeEnum=Q.hc}}return K.\u0275fac=function(F){return new(F||K)},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},decls:33,vars:13,consts:[["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"]],template:function(F,ye){1&F&&(e.TgZ(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),e._uU(4,"Service Information"),e.qZA()()(),e.TgZ(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),e._uU(9,"Minimum Amount (Sats)"),e.qZA(),e.TgZ(10,"span",6),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div",4)(14,"h4",5),e._uU(15,"Maximum Amount (Sats)"),e.qZA(),e.TgZ(16,"span",6),e._uU(17),e.ALo(18,"number"),e.qZA()()(),e._UZ(19,"mat-divider",7),e.TgZ(20,"div",3)(21,"div",4)(22,"h4",5),e._uU(23,"Fee Percentage"),e.qZA(),e.TgZ(24,"span",6),e._uU(25),e.ALo(26,"number"),e.qZA()(),e.TgZ(27,"div",4)(28,"h4",5),e._uU(29,"Miner Fee (Sats)"),e.qZA(),e.TgZ(30,"span",6),e._uU(31),e.ALo(32,"number"),e.qZA()()()()()),2&F&&(e.Q6J("expanded",!0),e.xp6(11),e.Oqu(e.lcZ(12,5,null==ye.serviceInfo||null==ye.serviceInfo.limits?null:ye.serviceInfo.limits.minimal)),e.xp6(6),e.Oqu(e.lcZ(18,7,null==ye.serviceInfo||null==ye.serviceInfo.limits?null:ye.serviceInfo.limits.maximal)),e.xp6(8),e.Oqu(e.lcZ(26,9,null==ye.serviceInfo||null==ye.serviceInfo.fees?null:ye.serviceInfo.fees.percentage)),e.xp6(6),e.Oqu(e.lcZ(32,11,ye.direction===ye.swapTypeEnum.SWAP_OUT?null==ye.serviceInfo||null==ye.serviceInfo.fees||null==ye.serviceInfo.fees.miner?null:ye.serviceInfo.fees.miner.reverse:null==ye.serviceInfo||null==ye.serviceInfo.fees||null==ye.serviceInfo.fees.miner?null:ye.serviceInfo.fees.miner.normal)))},directives:[Lt.ib,C.yH,Lt.yz,Lt.yK,C.Wh,C.xw,Ge.d],pipes:[q.JJ],styles:[""]}),K})();var Yi=p(5245);function Fn(K,Fe){1&K&&e.GkF(0)}function Rr(K,Fe){if(1&K&&(e.TgZ(0,"div",4)(1,"span",5),e._uU(2),e.qZA()()),2&K){const F=e.oxw();e.xp6(2),e.Oqu(null!=F.swapStatus&&F.swapStatus.error?null==F.swapStatus?null:F.swapStatus.error:"Unknown Error.")}}function Qa(K,Fe){if(1&K&&(e.TgZ(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e._uU(4,"ID"),e.qZA(),e.TgZ(5,"span",5),e._uU(6),e.qZA()(),e.TgZ(7,"div",7)(8,"h4",8),e._uU(9,"Routing Fee (mSats)"),e.qZA(),e.TgZ(10,"span",5),e._uU(11),e.ALo(12,"number"),e.qZA()()(),e._UZ(13,"mat-divider",9),e.TgZ(14,"div",6)(15,"div",7)(16,"h4",8),e._uU(17,"Claim Transaction ID"),e.qZA(),e.TgZ(18,"span",5),e._uU(19),e.qZA()(),e.TgZ(20,"div",7)(21,"h4",8),e._uU(22,"Lockup Address"),e.qZA(),e.TgZ(23,"span",5),e._uU(24),e.qZA()()()()),2&K){const F=e.oxw();e.xp6(6),e.Oqu(null==F.swapStatus?null:F.swapStatus.id),e.xp6(5),e.Oqu(e.lcZ(12,4,null==F.swapStatus?null:F.swapStatus.routingFeeMilliSat)),e.xp6(8),e.Oqu(null==F.swapStatus?null:F.swapStatus.claimTransactionId),e.xp6(5),e.Oqu(null==F.swapStatus?null:F.swapStatus.lockupAddress)}}function Ma(K,Fe){if(1&K&&(e.TgZ(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e._uU(4,"ID"),e.qZA(),e.TgZ(5,"span",5),e._uU(6),e.qZA()(),e.TgZ(7,"div",7)(8,"h4",8),e._uU(9,"Expected Amount (Sats)"),e.qZA(),e.TgZ(10,"span",5),e._uU(11),e.ALo(12,"number"),e.qZA()()(),e._UZ(13,"mat-divider",9),e.TgZ(14,"div",6)(15,"div",10)(16,"h4",8),e._uU(17,"Address"),e.qZA(),e.TgZ(18,"span",5),e._uU(19),e.qZA()()(),e._UZ(20,"mat-divider",9),e.TgZ(21,"div",6)(22,"div",10)(23,"h4",8),e._uU(24,"BIP 21"),e.qZA(),e.TgZ(25,"span",5),e._uU(26),e.qZA()()()()),2&K){const F=e.oxw();e.xp6(6),e.Oqu(null==F.swapStatus?null:F.swapStatus.id),e.xp6(5),e.Oqu(e.lcZ(12,4,null==F.swapStatus?null:F.swapStatus.expectedAmount)),e.xp6(8),e.Oqu(null==F.swapStatus?null:F.swapStatus.address),e.xp6(7),e.Oqu(null==F.swapStatus?null:F.swapStatus.bip21)}}let hs=(()=>{class K{constructor(){this.swapStatus=null,this.direction=Q.hc.SWAP_OUT,this.swapTypeEnum=Q.hc}}return K.\u0275fac=function(F){return new(F||K)},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction"},decls:7,vars:1,consts:[[4,"ngTemplateOutlet"],["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"]],template:function(F,ye){if(1&F&&(e.YNc(0,Fn,1,0,"ng-container",0),e.YNc(1,Rr,3,1,"ng-template",null,1,e.W1O),e.YNc(3,Qa,25,6,"ng-template",null,2,e.W1O),e.YNc(5,Ma,27,6,"ng-template",null,3,e.W1O)),2&F){const ot=e.MAs(2),ri=e.MAs(4),en=e.MAs(6);e.Q6J("ngTemplateOutlet",null!=ye.swapStatus&&ye.swapStatus.error?ot:ye.direction===ye.swapTypeEnum.SWAP_OUT?ri:en)}},directives:[q.tP,C.xw,C.yH,C.Wh,Ge.d],pipes:[q.JJ],styles:[""]}),K})();var Fi=p(113);function Gn(K,Fe){1&K&&e.GkF(0)}const es=function(K,Fe){return{"small-svg":K,"large-svg":Fe}};function br(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.qZA(),e.kcU(),e.TgZ(12,"div",18)(13,"mat-card-title"),e._uU(14,"Boltz Reverse Submarine Swap explained."),e.qZA()(),e.TgZ(15,"div",19)(16,"mat-card-subtitle",20),e._uU(17," Boltz is a privacy-first account free exchange and a Lightning Service Provider. By doing a Reverse Submarine Swap on Boltz, you can swap your Lightning Bitcoin for on-chain Bitcoin. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,es,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function Ks(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",21)(2,"g",22),e._UZ(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.qZA(),e._UZ(9,"path",29),e.TgZ(10,"defs")(11,"clipPath",30),e._UZ(12,"rect",31),e.qZA()()(),e.kcU(),e.TgZ(13,"div",18)(14,"mat-card-title"),e._uU(15,"Step 1: Deciding to Reverse Submarine Swap"),e.qZA()(),e.TgZ(16,"div",19)(17,"mat-card-subtitle",20),e._uU(18," You have one or more channels that are running low on inbound capacity or you want to move some of your Lightning Bitcoin to your onchain wallet. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,es,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function ts(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",32),e._UZ(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),e.TgZ(9,"defs")(10,"pattern",40),e._UZ(11,"use",41),e.qZA(),e._UZ(12,"image",42),e.qZA()(),e.kcU(),e.TgZ(13,"div",18)(14,"mat-card-title"),e._uU(15,"Step 2: Paying the Lightning Invoice"),e.qZA()(),e.TgZ(16,"div",19)(17,"mat-card-subtitle",20),e._uU(18," Your Boltz client generates a secret which is sent to Boltz. In return Boltz sends a Lightning invoice based on that secret. Your Lightning node pays that invoice which moves some of your local balance to the other side of the channel. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,es,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function pa(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",43)(2,"g",22),e._UZ(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),e.qZA(),e.TgZ(8,"defs")(9,"clipPath",30),e._UZ(10,"rect",49),e.qZA()()(),e.kcU(),e.TgZ(11,"div",18)(12,"mat-card-title"),e._uU(13,"Step 3: Receiving the funds on-chain"),e.qZA()(),e.TgZ(14,"div",19)(15,"mat-card-subtitle",20),e._uU(16," In return for paying the invoice, Boltz locks on-chain BTC. Your node claims that onchain BTC to your wallet and by doing that, reveals the secret. With that secret Boltz can settle the Lightning invoice paid by your node. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,es,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function Ss(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",50),e._UZ(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),e.qZA(),e.kcU(),e.TgZ(7,"div",18)(8,"mat-card-title"),e._uU(9,"Done!"),e.qZA()(),e.TgZ(10,"div",19)(11,"mat-card-subtitle",20),e._uU(12," You have now successfully received your funds in your on-chain wallet and also spent your local balance to increase the inbound capacity of your node - all in a non-custodial manner. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,es,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}let Es=(()=>{class K{constructor(F){this.commonService=F,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.vpe,this.screenSize="",this.screenSizeEnum=Q.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(F){2===F.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===F.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(Ft.v))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","368","height","368","viewBox","0 0 368 368","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M306.667 153.333H276L260.667 184L233.797 153.763C229.441 148.861 224.595 144.24 218.529 141.746C212.54 139.284 206.099 138 199.561 138H92C41.19 138 1.52588e-05 179.19 1.52588e-05 230C1.52588e-05 280.81 41.19 322 92 322H199.561C206.099 322 212.54 320.715 218.529 318.254C224.595 315.761 229.441 311.139 233.797 306.237L260.667 276L276 306.667H306.667L291.333 260.667L306.667 230L291.333 199.333L306.667 153.333Z",1,"fill-color-0"],["d","M337.333 122.667H306.667L291.333 153.333L264.464 123.097C260.107 118.194 255.261 113.573 249.195 111.079C243.206 108.618 236.766 107.333 230.228 107.333H122.667C71.8566 107.333 30.6667 148.523 30.6667 199.333C30.6667 250.143 71.8566 291.333 122.667 291.333H230.228C236.766 291.333 243.206 290.048 249.195 287.587C255.261 285.094 260.107 280.473 264.464 275.571L291.333 245.333L306.667 276H337.333L322 230L337.333 199.333L322 168.667L337.333 122.667Z",1,"stroke-color-thicker"],["d","M214.667 245.333C206.198 245.333 199.333 238.468 199.333 230C199.333 221.532 206.198 214.667 214.667 214.667C223.135 214.667 230 221.532 230 230C230 238.468 223.135 245.333 214.667 245.333Z",1,"fill-color-15"],["d","M245.333 214.667C236.865 214.667 230 207.802 230 199.333C230 190.865 236.865 184 245.333 184C253.802 184 260.667 190.865 260.667 199.333C260.667 207.802 253.802 214.667 245.333 214.667Z",1,"stroke-color-thicker"],["d","M138 245.333C129.532 245.333 122.667 238.468 122.667 230C122.667 221.532 129.532 214.667 138 214.667C146.468 214.667 153.333 221.532 153.333 230C153.333 238.468 146.468 245.333 138 245.333Z",1,"fill-color-15"],["d","M168.667 214.667C160.198 214.667 153.333 207.802 153.333 199.333C153.333 190.865 160.198 184 168.667 184C177.135 184 184 190.865 184 199.333C184 207.802 177.135 214.667 168.667 214.667Z",1,"stroke-color-thicker"],["d","M61.3334 245.333C52.865 245.333 46 238.468 46 230C46 221.532 52.865 214.667 61.3334 214.667C69.8017 214.667 76.6667 221.532 76.6667 230C76.6667 238.468 69.8017 245.333 61.3334 245.333Z",1,"fill-color-15"],["d","M92 214.667C83.5316 214.667 76.6666 207.802 76.6666 199.333C76.6666 190.865 83.5316 184 92 184C100.468 184 107.333 190.865 107.333 199.333C107.333 207.802 100.468 214.667 92 214.667Z",1,"stroke-color-thicker"],["d","M239.077 111C241.796 111 244 113.204 244 115.923V126.077C244 128.796 241.796 131 239.077 131H191.923C189.204 131 187 128.796 187 126.077V115.923C187 113.204 189.204 111 191.923 111H239.077Z",1,"fill-color-15"],["d","M184 76.6666V107.333H122.667V76.6666H184Z",1,"stroke-color-thicker"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","383","height","279","viewBox","0 0 383 279","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M267.882 220.417V104.583C267.882 98.2125 263.809 93 258.832 93H114.029C109.051 93 104.978 98.2125 104.978 104.583V220.417C104.978 226.787 109.051 232 114.029 232H258.832C263.809 232 267.882 226.787 267.882 220.417Z",1,"fill-color-0"],["d","M357.75 197.625V81.375C357.75 74.9812 352.069 69.75 345.125 69.75H143.125C136.181 69.75 130.5 74.9812 130.5 81.375V197.625C130.5 204.019 136.181 209.25 143.125 209.25H345.125C352.069 209.25 357.75 204.019 357.75 197.625Z",1,"stroke-color-thin"],["d","M86.3125 186H105.25V139.5H86.3125C82.7775 139.5 80 142.057 80 145.312V180.188C80 183.443 82.7775 186 86.3125 186Z",1,"fill-color-15"],["d","M111.562 162.75H130.5V116.25H111.562C108.027 116.25 105.25 118.807 105.25 122.062V156.938C105.25 160.193 108.027 162.75 111.562 162.75Z",1,"stroke-color-thin"],["d","M205.979 116V150.875",1,"stroke-color-thin"],["d","M205.979 185.634V185.749",1,"stroke-color-thin"],["d","M2.44963 159.45C0.488815 161.41 0.488815 164.59 2.44963 166.55L34.403 198.504C36.3638 200.465 39.5429 200.465 41.5037 198.504C43.4645 196.543 43.4645 193.364 41.5037 191.403L13.1007 163L41.5037 134.597C43.4645 132.636 43.4645 129.457 41.5037 127.496C39.5429 125.535 36.3638 125.535 34.403 127.496L2.44963 159.45ZM65 157.979H6V168.021H65V157.979Z",1,"fill-color-15"],["id","clip0"],["width","303","height","279","transform","matrix(-1 0 0 1 383 0)",1,"fill-color-30"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["d","M138.762 67C136.099 73.913 133.436 81.3578 130.24 88.8025C130.24 88.8025 130.24 89.8661 131.305 89.8661H153.143C153.143 89.8661 153.143 90.3979 153.676 90.9296L121.718 126.558C121.185 126.026 121.185 125.495 121.185 124.963L132.371 101.033V98.9062H110V96.7791L137.164 67H138.762Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","317","y","81","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["fill-rule","evenodd","clip-rule","evenodd","d","M169.522 122.093C171.059 115.241 166.054 111.136 159.022 108.13L162.04 98.916L156.431 97.0797L153.493 106.051C152.019 105.569 150.502 105.104 148.995 104.643L151.953 95.613L146.348 93.7769L143.329 102.988C142.106 102.615 140.906 102.247 139.743 101.867L139.752 101.838L132.017 99.3019L130.057 105.293C130.057 105.293 134.224 106.57 134.131 106.624C136.402 107.369 136.71 108.93 136.552 110.138L133.115 120.635C133.271 120.687 133.473 120.761 133.695 120.869C133.66 120.857 133.626 120.846 133.591 120.834C133.562 120.825 133.534 120.816 133.505 120.806C133.375 120.763 133.24 120.719 133.102 120.675L128.284 135.38C127.95 136.062 127.157 137.065 125.569 136.548C125.62 136.635 121.492 135.211 121.492 135.211L118.184 141.544L125.483 143.935C126.298 144.203 127.103 144.476 127.899 144.746L127.901 144.747C128.431 144.927 128.956 145.105 129.479 145.28L126.429 154.6L132.031 156.436L135.051 147.215C136.579 147.75 138.064 148.25 139.517 148.725L136.509 157.902L142.118 159.739L145.166 150.437C154.773 152.984 162.15 152.77 165.87 144.183C168.867 137.27 166.555 132.99 161.623 129.952C165.417 129.361 168.406 127.109 169.522 122.093ZM155.149 139.449C153.059 145.84 143.068 142.413 138.496 140.845L138.496 140.845C138.085 140.704 137.718 140.578 137.404 140.476L141.449 128.129C141.831 128.254 142.299 128.395 142.829 128.555L142.829 128.555C147.571 129.985 157.289 132.916 155.149 139.449ZM144.22 122.79C148.031 124.108 156.343 126.982 158.247 121.175C160.192 115.234 152.086 112.815 148.127 111.634C147.682 111.501 147.289 111.383 146.969 111.279L143.301 122.477C143.565 122.563 143.874 122.67 144.22 122.79Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["width","225.692","height","225.692","transform","translate(0 85.983) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","298","height","300","viewBox","0 0 298 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M248.333 237.5V112.5C248.333 105.625 242.746 100 235.917 100H37.2501C30.421 100 24.8335 105.625 24.8335 112.5V237.5C24.8335 244.375 30.421 250 37.2501 250H235.917C242.746 250 248.333 244.375 248.333 237.5Z",1,"fill-color-0"],["d","M273.167 212.5V87.5C273.167 80.625 267.579 75 260.75 75H62.0832C55.254 75 49.6665 80.625 49.6665 87.5V212.5C49.6665 219.375 55.254 225 62.0832 225H260.75C267.579 225 273.167 219.375 273.167 212.5Z",1,"stroke-color"],["d","M6.20851 200H24.8335V150H6.20851C2.73185 150 0.000183105 152.75 0.000183105 156.25V193.75C0.000183105 197.25 2.73185 200 6.20851 200Z",1,"fill-color-0"],["d","M31.0415 175H49.6665V125H31.0415C27.5648 125 24.8331 127.75 24.8331 131.25V168.75C24.8331 172.25 27.5648 175 31.0415 175Z",1,"stroke-color"],["d","M161.417 187.5L142.792 150H180.042L161.417 112.5",1,"stroke-color"]],template:function(F,ye){if(1&F&&(e.YNc(0,Gn,1,0,"ng-container",0),e.YNc(1,br,18,5,"ng-template",null,1,e.W1O),e.YNc(3,Ks,19,5,"ng-template",null,2,e.W1O),e.YNc(5,ts,19,5,"ng-template",null,3,e.W1O),e.YNc(7,pa,17,5,"ng-template",null,4,e.W1O),e.YNc(9,Ss,13,5,"ng-template",null,5,e.W1O)),2&F){const ot=e.MAs(2),ri=e.MAs(4),en=e.MAs(6),Kn=e.MAs(8),Rn=e.MAs(10);e.Q6J("ngTemplateOutlet",1===ye.stepNumber?ot:2===ye.stepNumber?ri:3===ye.stepNumber?en:4===ye.stepNumber?Kn:Rn)}},directives:[q.tP,C.xw,C.yH,C.Wh,q.mk,Ni.oO,P.n5,P.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Fi.l]}}),K})();function Qs(K,Fe){1&K&&e.GkF(0)}const is=function(K,Fe){return{"small-svg":K,"large-svg":Fe}};function Ts(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.qZA(),e.kcU(),e.TgZ(12,"div",18)(13,"mat-card-title"),e._uU(14,"Boltz Submarine Swaps explained."),e.qZA()(),e.TgZ(15,"div",19)(16,"mat-card-subtitle",20),e._uU(17," Boltz is a privacy-first account free exchange and a Lightning service provider. By doing a Submarine Swap on Boltz, you can swap your on-chain Bitcoin for Lightning Bitcoin. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,is,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function xs(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",21),e._UZ(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.qZA(),e.kcU(),e.TgZ(9,"div",18)(10,"mat-card-title"),e._uU(11,"Step 1: Deciding to Submarine Swap"),e.qZA()(),e.TgZ(12,"div",19)(13,"mat-card-subtitle",20),e._uU(14," You have one or more Lightning channels that are running low on outbound liquidity and you want to fund it using your on-chain Bitcoin. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,is,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function Gr(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",29),e._UZ(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),e.TgZ(9,"defs")(10,"pattern",37),e._UZ(11,"use",38),e.qZA(),e._UZ(12,"image",39),e.qZA()(),e.kcU(),e.TgZ(13,"div",18)(14,"mat-card-title"),e._uU(15,"Step 2: Sending the on-chain funds"),e.qZA()(),e.TgZ(16,"div",19)(17,"mat-card-subtitle",20),e._uU(18," You send the on-chain funds to an address which can only be spent by Boltz when it pays a Lightning invoice to your node. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,is,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function Ga(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",40)(2,"g",41),e._UZ(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),e.qZA(),e.TgZ(8,"defs")(9,"clipPath",47),e._UZ(10,"rect",48),e.qZA()()(),e.kcU(),e.TgZ(11,"div",18)(12,"mat-card-title"),e._uU(13,"Step 3: Receiving the funds on Lightning"),e.qZA()(),e.TgZ(14,"div",19)(15,"mat-card-subtitle",20),e._uU(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,is,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}function vt(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(ot){return e.CHM(F),e.oxw().onSwipe(ot)}),e.O4$(),e.TgZ(1,"svg",49),e._UZ(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),e.qZA(),e.kcU(),e.TgZ(7,"div",18)(8,"mat-card-title"),e._uU(9,"Done!"),e.qZA()(),e.TgZ(10,"div",19)(11,"mat-card-subtitle",20),e._uU(12," You swapped your on-chain Bitcoin for Lightning Bitcoin, while also adding outbound capacity for your channels in the process - all in a non-custodial manner. "),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@sliderAnimation",F.animationDirection),e.xp6(1),e.Q6J("ngClass",e.WLB(2,is,F.screenSize===F.screenSizeEnum.XS,F.screenSize!==F.screenSizeEnum.XS))}}let ae=(()=>{class K{constructor(F){this.commonService=F,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.vpe,this.screenSize="",this.screenSizeEnum=Q.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(F){2===F.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===F.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(Ft.v))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[[4,"ngTemplateOutlet"],["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","323","height","323","viewBox","0 0 323 323","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M53.8333 134.583H80.75L94.2083 161.5L117.792 134.961C121.616 130.658 125.869 126.602 131.194 124.413C136.45 122.252 142.103 121.125 147.842 121.125H242.25C286.847 121.125 323 157.278 323 201.875C323 246.472 286.847 282.625 242.25 282.625H147.842C142.103 282.625 136.45 281.497 131.194 279.337C125.869 277.149 121.616 273.092 117.792 268.79L94.2083 242.25L80.75 269.167H53.8333L67.2917 228.792L53.8333 201.875L67.2917 174.958L53.8333 134.583Z",1,"fill-color-0"],["d","M26.9167 107.667H53.8333L67.2917 134.583L90.8755 108.044C94.6993 103.741 98.9527 99.6849 104.277 97.4963C109.534 95.3357 115.187 94.2083 120.925 94.2083H215.333C259.93 94.2083 296.083 130.361 296.083 174.958C296.083 219.555 259.93 255.708 215.333 255.708H120.925C115.187 255.708 109.534 254.581 104.277 252.42C98.9527 250.232 94.6993 246.176 90.8755 241.873L67.2917 215.333L53.8333 242.25H26.9167L40.375 201.875L26.9167 174.958L40.375 148.042L26.9167 107.667Z",1,"stroke-color-thick"],["d","M134.583 215.333C142.016 215.333 148.042 209.308 148.042 201.875C148.042 194.442 142.016 188.417 134.583 188.417C127.151 188.417 121.125 194.442 121.125 201.875C121.125 209.308 127.151 215.333 134.583 215.333Z",1,"fill-color-15"],["d","M107.667 188.417C115.1 188.417 121.125 182.391 121.125 174.958C121.125 167.526 115.1 161.5 107.667 161.5C100.234 161.5 94.2083 167.526 94.2083 174.958C94.2083 182.391 100.234 188.417 107.667 188.417Z",1,"stroke-color-thick"],["d","M201.875 215.333C209.308 215.333 215.333 209.308 215.333 201.875C215.333 194.442 209.308 188.417 201.875 188.417C194.442 188.417 188.417 194.442 188.417 201.875C188.417 209.308 194.442 215.333 201.875 215.333Z",1,"fill-color-15"],["d","M174.958 188.417C182.391 188.417 188.417 182.391 188.417 174.958C188.417 167.526 182.391 161.5 174.958 161.5C167.526 161.5 161.5 167.526 161.5 174.958C161.5 182.391 167.526 188.417 174.958 188.417Z",1,"stroke-color-thick"],["d","M269.167 215.333C276.599 215.333 282.625 209.308 282.625 201.875C282.625 194.442 276.599 188.417 269.167 188.417C261.734 188.417 255.708 194.442 255.708 201.875C255.708 209.308 261.734 215.333 269.167 215.333Z",1,"fill-color-15"],["d","M242.25 188.417C249.683 188.417 255.708 182.391 255.708 174.958C255.708 167.526 249.683 161.5 242.25 161.5C234.817 161.5 228.792 167.526 228.792 174.958C228.792 182.391 234.817 188.417 242.25 188.417Z",1,"stroke-color-thick"],["d","M189.321 97C186.935 97 185 98.9345 185 101.321V112.679C185 115.065 186.935 117 189.321 117H237.679C240.065 117 242 115.065 242 112.679V101.321C242 98.9345 240.065 97 237.679 97H189.321Z",1,"fill-color-15"],["d","M161.5 67.2917V94.2083H215.333V67.2917H161.5Z",1,"stroke-color-thick"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","347","height","169","viewBox","0 0 347 169","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M89 157.417V41.5833C89 35.2125 92.75 30 97.3333 30H230.667C235.25 30 239 35.2125 239 41.5833V157.417C239 163.787 235.25 169 230.667 169H97.3333C92.75 169 89 163.787 89 157.417Z",1,"fill-color-0"],["d","M6.25 134.625V18.375C6.25 11.9812 11.4812 6.75 17.875 6.75H203.875C210.269 6.75 215.5 11.9812 215.5 18.375V134.625C215.5 141.019 210.269 146.25 203.875 146.25H17.875C11.4812 146.25 6.25 141.019 6.25 134.625Z",1,"stroke-color-thin"],["d","M256.188 123H238.75V76.5H256.188C259.442 76.5 262 79.0575 262 82.3125V117.188C262 120.443 259.442 123 256.188 123Z",1,"fill-color-15"],["d","M232.938 99.75H215.5V53.25H232.938C236.193 53.25 238.75 55.8075 238.75 59.0625V93.9375C238.75 97.1925 236.193 99.75 232.938 99.75Z",1,"stroke-color-thin"],["d","M146 53V87.875",1,"stroke-color-thin"],["d","M146 122.634V122.749",1,"stroke-color-thin"],["d","M344.698 95.3022C346.74 97.3445 346.74 100.656 344.698 102.698L311.418 135.978C309.376 138.02 306.065 138.02 304.022 135.978C301.98 133.935 301.98 130.624 304.022 128.582L333.604 99L304.022 69.418C301.98 67.3758 301.98 64.0647 304.022 62.0225C306.065 59.9803 309.376 59.9803 311.418 62.0225L344.698 95.3022ZM277 93.7706L341 93.7706V104.229L277 104.229V93.7706Z",1,"fill-color-15"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["fill-rule","evenodd","clip-rule","evenodd","d","M161.033 82.5635C162.307 74.0523 155.826 69.4769 146.965 66.4247L149.84 54.8952L142.822 53.1462L140.023 64.3718C138.178 63.9121 136.283 63.4783 134.4 63.0486L137.219 51.749L130.205 50L127.328 61.5255C125.801 61.1777 124.302 60.8338 122.847 60.4721L122.855 60.4361L113.177 58.0194L111.31 65.5152C111.31 65.5152 116.517 66.7085 116.407 66.7825C119.249 67.4921 119.763 69.373 119.677 70.8641L116.403 83.9987C116.599 84.0487 116.852 84.1206 117.132 84.2326C117.096 84.2236 117.06 84.2146 117.023 84.2054C116.981 84.1948 116.938 84.184 116.894 84.1731C116.732 84.1323 116.563 84.09 116.391 84.0487L111.801 102.448C111.453 103.312 110.572 104.607 108.585 104.115C108.655 104.217 103.484 102.842 103.484 102.842L100 110.875L109.133 113.152C110.152 113.408 111.16 113.67 112.156 113.93L112.158 113.931L112.159 113.931C112.823 114.104 113.481 114.276 114.136 114.443L111.232 126.105L118.242 127.854L121.118 116.316C123.033 116.836 124.892 117.316 126.711 117.768L123.844 129.251L130.862 131L133.767 119.361C145.734 121.625 154.733 120.712 158.521 109.888C161.573 101.173 158.369 96.1458 152.072 92.8677C156.658 91.8103 160.112 88.794 161.033 82.5635ZM144.998 105.049C143.008 113.044 130.493 109.739 124.766 108.226L124.766 108.226C124.251 108.09 123.791 107.969 123.398 107.871L127.252 92.4219C127.73 92.5412 128.314 92.6723 128.976 92.8208L128.976 92.8208C134.899 94.1498 147.037 96.8734 144.998 105.049ZM130.167 85.6513C134.942 86.9255 145.356 89.7047 147.17 82.4376C149.022 75.0044 138.901 72.7637 133.957 71.6694C133.401 71.5463 132.911 71.4377 132.51 71.3379L129.016 85.3499C129.346 85.4322 129.733 85.5356 130.167 85.6513Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","313.615","y","82.836","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["d","M154.81 93.8059C152.146 100.719 149.483 108.164 146.287 115.608C146.287 115.608 146.287 116.672 147.353 116.672H169.191C169.191 116.672 169.191 117.204 169.723 117.736L137.765 153.364C137.233 152.832 137.233 152.301 137.233 151.769L148.418 127.839V125.712H126.047V123.585L153.212 93.8059H154.81Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["id","clip0"],["width","225.692","height","225.692","transform","translate(0 85.9831) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","300","height","300","viewBox","0 0 300 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M50 237.5V112.5C50 105.625 55.625 100 62.5 100H262.5C269.375 100 275 105.625 275 112.5V237.5C275 244.375 269.375 250 262.5 250H62.5C55.625 250 50 244.375 50 237.5Z",1,"fill-color-0"],["d","M25 212.5V87.5C25 80.625 30.625 75 37.5 75H237.5C244.375 75 250 80.625 250 87.5V212.5C250 219.375 244.375 225 237.5 225H37.5C30.625 225 25 219.375 25 212.5Z",1,"stroke-color"],["d","M293.75 200H275V150H293.75C297.25 150 300 152.75 300 156.25V193.75C300 197.25 297.25 200 293.75 200Z",1,"fill-color-0"],["d","M268.75 175H250V125H268.75C272.25 125 275 127.75 275 131.25V168.75C275 172.25 272.25 175 268.75 175Z",1,"stroke-color"],["d","M137.5 187.5L156.25 150H118.75L137.5 112.5",1,"stroke-color"]],template:function(F,ye){if(1&F&&(e.YNc(0,Qs,1,0,"ng-container",0),e.YNc(1,Ts,18,5,"ng-template",null,1,e.W1O),e.YNc(3,xs,15,5,"ng-template",null,2,e.W1O),e.YNc(5,Gr,19,5,"ng-template",null,3,e.W1O),e.YNc(7,Ga,17,5,"ng-template",null,4,e.W1O),e.YNc(9,vt,13,5,"ng-template",null,5,e.W1O)),2&F){const ot=e.MAs(2),ri=e.MAs(4),en=e.MAs(6),Kn=e.MAs(8),Rn=e.MAs(10);e.Q6J("ngTemplateOutlet",1===ye.stepNumber?ot:2===ye.stepNumber?ri:3===ye.stepNumber?en:4===ye.stepNumber?Kn:Rn)}},directives:[q.tP,C.xw,C.yH,C.Wh,q.mk,Ni.oO,P.n5,P.$j],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Fi.l]}}),K})();const fe=["stepper"];function Ye(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw(2);e.Oqu(F.inputFormLabel)}}function wt(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function Vt(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.ALo(2,"number"),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.hij("Amount must be greater than or equal to ",e.lcZ(2,1,null==F.serviceInfo||null==F.serviceInfo.limits?null:F.serviceInfo.limits.minimal),".")}}function ii(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.ALo(2,"number"),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.hij("Amount must be less than or equal to ",e.lcZ(2,1,null==F.serviceInfo||null==F.serviceInfo.limits?null:F.serviceInfo.limits.maximal),".")}}function ni(K,Fe){1&K&&(e.TgZ(0,"button",40),e._uU(1,"Next"),e.qZA())}function _i(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",41),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onSwap()}),e._uU(1),e.qZA()}if(2&K){const F=e.oxw(2);e.xp6(1),e.hij("Initiate ",F.swapDirectionCaption,"")}}function Pi(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw(3);e.Oqu(F.addressFormLabel)}}function tn(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Address is required."),e.qZA())}function dn(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-step",15)(1,"form",16),e.YNc(2,Pi,1,1,"ng-template",17),e.TgZ(3,"div",42)(4,"mat-radio-group",43),e.NdJ("change",function(ot){return e.CHM(F),e.oxw(2).onAddressTypeChange(ot)}),e.TgZ(5,"mat-radio-button",44),e._uU(6,"Node Local Address"),e.qZA(),e.TgZ(7,"mat-radio-button",45),e._uU(8,"External Address"),e.qZA()(),e.TgZ(9,"mat-form-field",46),e._UZ(10,"input",47),e.YNc(11,tn,2,0,"mat-error",24),e.qZA()(),e.TgZ(12,"div",25)(13,"button",48),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onSwap()}),e._uU(14),e.qZA()()()()}if(2&K){const F=e.oxw(2);e.Q6J("stepControl",F.addressFormGroup)("editable",F.flgEditable),e.xp6(1),e.Q6J("formGroup",F.addressFormGroup),e.xp6(9),e.Q6J("required","external"===F.addressFormGroup.controls.addressType.value),e.xp6(1),e.Q6J("ngIf",null==F.addressFormGroup.controls.address.errors?null:F.addressFormGroup.controls.address.errors.required),e.xp6(3),e.hij("Initiate ",F.swapDirectionCaption,"")}}function Ln(K,Fe){if(1&K&&e._uU(0),2&K){const F=e.oxw(2);e.hij("",F.swapDirectionCaption," Status")}}function Nn(K,Fe){if(1&K&&(e.TgZ(0,"mat-icon",49),e._uU(1),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.Oqu(F.swapStatus&&null!=F.swapStatus&&F.swapStatus.id?"check":"close")}}function xn(K,Fe){1&K&&e._UZ(0,"div")}function Tn(K,Fe){1&K&&e._UZ(0,"mat-progress-bar",50)}function tr(K,Fe){if(1&K&&(e.TgZ(0,"h4",51),e._uU(1),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.Oqu(F.swapStatus&&F.swapStatus.error?F.swapDirectionCaption+" failed.":F.swapStatus&&F.swapStatus.id?F.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":F.swapDirectionCaption+" request placed successfully.")}}function Lr(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",52),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onRestart()}),e._uU(1,"Start Again"),e.qZA()}}function gr(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e._uU(5),e.qZA()(),e.TgZ(6,"div",8)(7,"button",9),e.NdJ("click",function(){return e.CHM(F),e.oxw().showInfo()}),e._uU(8,"?"),e.qZA(),e.TgZ(9,"button",10),e.NdJ("click",function(){return e.CHM(F),e.oxw().onClose()}),e._uU(10,"X"),e.qZA()()(),e.TgZ(11,"mat-card-content",11)(12,"div",12)(13,"mat-vertical-stepper",13,14),e.NdJ("selectionChange",function(ot){return e.CHM(F),e.oxw().stepSelectionChanged(ot)}),e.TgZ(15,"mat-step",15)(16,"form",16),e.YNc(17,Ye,1,1,"ng-template",17),e.TgZ(18,"div",18),e._UZ(19,"rtl-boltz-service-info",19),e.qZA(),e.TgZ(20,"div",20)(21,"mat-form-field",21),e._UZ(22,"input",22),e.TgZ(23,"mat-hint"),e._uU(24),e.ALo(25,"number"),e.ALo(26,"number"),e.qZA(),e.TgZ(27,"span",23),e._uU(28,"Sats"),e.qZA(),e.YNc(29,wt,2,0,"mat-error",24),e.YNc(30,Vt,3,3,"mat-error",24),e.YNc(31,ii,3,3,"mat-error",24),e.qZA()(),e.TgZ(32,"div",25),e.YNc(33,ni,2,0,"button",26),e.YNc(34,_i,2,1,"button",27),e.qZA()()(),e.YNc(35,dn,15,6,"mat-step",28),e.TgZ(36,"mat-step",29)(37,"form",16),e.YNc(38,Ln,1,1,"ng-template",17),e.TgZ(39,"div",30)(40,"mat-expansion-panel",31)(41,"mat-expansion-panel-header")(42,"mat-panel-title")(43,"span",32),e._uU(44),e.YNc(45,Nn,2,1,"mat-icon",33),e.qZA()()(),e.YNc(46,xn,1,0,"div",34),e.qZA(),e.YNc(47,Tn,1,0,"mat-progress-bar",35),e.qZA(),e.YNc(48,tr,2,1,"h4",36),e.TgZ(49,"div",25),e.YNc(50,Lr,2,0,"button",37),e.qZA()()()(),e.TgZ(51,"div",38)(52,"button",39),e._uU(53,"Close"),e.qZA()()()()()()}if(2&K){const F=e.oxw(),ye=e.MAs(2);e.Q6J("@opacityAnimation",void 0),e.xp6(3),e.Q6J("fxFlex",F.screenSize===F.screenSizeEnum.XS||F.screenSize===F.screenSizeEnum.SM?"83":"91"),e.xp6(2),e.Oqu(F.swapDirectionCaption),e.xp6(1),e.Q6J("fxFlex",F.screenSize===F.screenSizeEnum.XS||F.screenSize===F.screenSizeEnum.SM?"17":"9"),e.xp6(7),e.Q6J("linear",!0),e.xp6(2),e.Q6J("stepControl",F.inputFormGroup)("editable",F.flgEditable),e.xp6(1),e.Q6J("formGroup",F.inputFormGroup),e.xp6(3),e.Q6J("serviceInfo",F.serviceInfo)("direction",F.direction),e.xp6(3),e.Q6J("step",1e3),e.xp6(2),e.AsE("Range: ",e.lcZ(25,30,null==F.serviceInfo||null==F.serviceInfo.limits?null:F.serviceInfo.limits.minimal),"-",e.lcZ(26,32,null==F.serviceInfo||null==F.serviceInfo.limits?null:F.serviceInfo.limits.maximal),""),e.xp6(5),e.Q6J("ngIf",null==F.inputFormGroup||null==F.inputFormGroup.controls||null==F.inputFormGroup.controls.amount||null==F.inputFormGroup.controls.amount.errors?null:F.inputFormGroup.controls.amount.errors.required),e.xp6(1),e.Q6J("ngIf",null==F.inputFormGroup||null==F.inputFormGroup.controls||null==F.inputFormGroup.controls.amount||null==F.inputFormGroup.controls.amount.errors?null:F.inputFormGroup.controls.amount.errors.min),e.xp6(1),e.Q6J("ngIf",null==F.inputFormGroup||null==F.inputFormGroup.controls||null==F.inputFormGroup.controls.amount||null==F.inputFormGroup.controls.amount.errors?null:F.inputFormGroup.controls.amount.errors.max),e.xp6(2),e.Q6J("ngIf",F.direction===F.swapTypeEnum.SWAP_OUT),e.xp6(1),e.Q6J("ngIf",F.direction===F.swapTypeEnum.SWAP_IN),e.xp6(1),e.Q6J("ngIf",F.direction===F.swapTypeEnum.SWAP_OUT),e.xp6(1),e.Q6J("stepControl",F.statusFormGroup),e.xp6(1),e.Q6J("formGroup",F.statusFormGroup),e.xp6(3),e.Q6J("expanded",!!F.swapStatus),e.xp6(4),e.Oqu(F.swapStatus?F.swapStatus.id?F.swapDirectionCaption+" request details":F.swapDirectionCaption+" error details":"Waiting for "+F.swapDirectionCaption+" request..."),e.xp6(1),e.Q6J("ngIf",F.swapStatus),e.xp6(1),e.Q6J("ngIf",!F.swapStatus)("ngIfElse",ye),e.xp6(1),e.Q6J("ngIf",!F.swapStatus),e.xp6(1),e.Q6J("ngIf",F.swapStatus),e.xp6(2),e.Q6J("ngIf",F.swapStatus&&(F.swapStatus.error||!F.swapStatus.id)),e.xp6(2),e.Q6J("mat-dialog-close",!1)}}function ia(K,Fe){if(1&K&&e._UZ(0,"rtl-boltz-swap-status",53),2&K){const F=e.oxw();e.Q6J("swapStatus",F.swapStatus)("direction",F.direction)}}function qr(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"rtl-boltz-swapout-info-graphics",70),e.NdJ("stepNumberChange",function(ot){return e.CHM(F),e.oxw(2).stepNumber=ot}),e.qZA()}if(2&K){const F=e.oxw(2);e.Q6J("stepNumber",F.stepNumber)("animationDirection",F.animationDirection)}}function Cr(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"rtl-boltz-swapin-info-graphics",70),e.NdJ("stepNumberChange",function(ot){return e.CHM(F),e.oxw(2).stepNumber=ot}),e.qZA()}if(2&K){const F=e.oxw(2);e.Q6J("stepNumber",F.stepNumber)("animationDirection",F.animationDirection)}}const Zr=function(K,Fe){return{"dot-primary":K,"dot-primary-lighter":Fe}};function Zn(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"span",71),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw(2).onStepChanged(ri)}),e._UZ(1,"p",72),e.qZA()}if(2&K){const F=Fe.$implicit,ye=e.oxw(2);e.xp6(1),e.Q6J("ngClass",e.WLB(1,Zr,ye.stepNumber===F,ye.stepNumber!==F))}}function _r(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",73),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onReadMore()}),e._uU(1,"Read More"),e.qZA()}}function Za(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",74),e.NdJ("click",function(){return e.CHM(F),e.oxw(2).onStepChanged(4)}),e._uU(1,"Back"),e.qZA()}}function rt(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",75),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw(2);return ot.flgShowInfo=!1,ot.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function Et(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",76),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw(2);return ot.flgShowInfo=!1,ot.stepNumber=1}),e._uU(1,"Close"),e.qZA()}}function Dt(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",77),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw(2);return ot.onStepChanged(ot.stepNumber-1)}),e._uU(1,"Back"),e.qZA()}}function Rt(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",78),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw(2);return ot.onStepChanged(ot.stepNumber+1)}),e._uU(1,"Next"),e.qZA()}}const Jt=function(){return[1,2,3,4,5]};function Ci(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",54)(1,"div",18)(2,"mat-card-header",55)(3,"div",56),e._UZ(4,"span",7),e.qZA(),e.TgZ(5,"div",57)(6,"button",58),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.flgShowInfo=!1,ot.stepNumber=1}),e._uU(7,"X"),e.qZA()()(),e.TgZ(8,"mat-card-content",59),e.YNc(9,qr,1,2,"rtl-boltz-swapout-info-graphics",60),e.YNc(10,Cr,1,2,"rtl-boltz-swapin-info-graphics",60),e.qZA(),e.TgZ(11,"div",61),e.YNc(12,Zn,2,4,"span",62),e.qZA(),e.TgZ(13,"div",63),e.YNc(14,_r,2,0,"button",64),e.YNc(15,Za,2,0,"button",65),e.YNc(16,rt,2,0,"button",66),e.YNc(17,Et,2,0,"button",67),e.YNc(18,Dt,2,0,"button",68),e.YNc(19,Rt,2,0,"button",69),e.qZA()()()}if(2&K){const F=e.oxw();e.Q6J("@opacityAnimation",void 0),e.xp6(9),e.Q6J("ngIf",F.direction===F.swapTypeEnum.SWAP_OUT),e.xp6(1),e.Q6J("ngIf",F.direction===F.swapTypeEnum.SWAP_IN),e.xp6(2),e.Q6J("ngForOf",e.DdM(10,Jt)),e.xp6(2),e.Q6J("ngIf",5===F.stepNumber),e.xp6(1),e.Q6J("ngIf",5===F.stepNumber),e.xp6(1),e.Q6J("ngIf",5===F.stepNumber),e.xp6(1),e.Q6J("ngIf",F.stepNumber<5),e.xp6(1),e.Q6J("ngIf",F.stepNumber>1&&F.stepNumber<5),e.xp6(1),e.Q6J("ngIf",F.stepNumber<5)}}let ti=(()=>{class K{constructor(F,ye,ot,ri,en,Kn,Rn,sr,Wr){this.dialogRef=F,this.data=ye,this.store=ot,this.boltzService=ri,this.formBuilder=en,this.decimalPipe=Kn,this.logger=Rn,this.router=sr,this.commonService=Wr,this.faInfoCircle=v.sqG,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=Q.hc,this.direction=Q.hc.SWAP_OUT,this.swapDirectionCaption="Swap out",this.swapStatus=null,this.inputFormLabel="Amount to swap out",this.addressFormLabel="Withdrawal Address",this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=Q.cu,this.animationDirection="forward",this.flgEditable=!0,this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x,new h.x]}ngOnInit(){var F,ye,ot;this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||Q.hc.SWAP_OUT,this.swapDirectionCaption=this.direction===Q.hc.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[null===(F=this.serviceInfo.limits)||void 0===F?void 0:F.minimal,[De.kI.required,De.kI.min((null===(ye=this.serviceInfo.limits)||void 0===ye?void 0:ye.minimal)||0),De.kI.max((null===(ot=this.serviceInfo.limits)||void 0===ot?void 0:ot.maximal)||0)]]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[De.kI.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges()}ngAfterViewInit(){this.direction===Q.hc.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===Q.hc.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,y.R)(this.unSubs[2])).subscribe(F=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(F){"external"===F.value?(this.addressFormGroup.controls.address.setValidators([De.kI.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onSwap(){var F,ye,ot;if(!this.inputFormGroup.controls.amount.value||(null===(F=this.serviceInfo.limits)||void 0===F?void 0:F.minimal)&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||(null===(ye=this.serviceInfo.limits)||void 0===ye?void 0:ye.maximal)&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===Q.hc.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;this.flgEditable=!1,null===(ot=this.stepper.selected)||void 0===ot||ot.stepControl.setErrors(null),this.stepper.next(),this.direction===Q.hc.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value).pipe((0,y.R)(this.unSubs[3])).subscribe({next:ri=>{this.swapStatus=ri,this.boltzService.listSwaps(),this.flgEditable=!0},error:ri=>{this.swapStatus={error:ri},this.flgEditable=!0,this.logger.error(ri)}}):this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"").pipe((0,y.R)(this.unSubs[4])).subscribe({next:en=>{this.swapStatus=en,this.boltzService.listSwaps(),this.flgEditable=!0},error:en=>{this.swapStatus={error:en},this.flgEditable=!0,this.logger.error(en)}})}stepSelectionChanged(F){switch(F.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value?this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats":"Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address"}F.selectedIndex{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(Le.so),e.Y36(Le.WI),e.Y36(b.yh),e.Y36(He),e.Y36(De.qu),e.Y36(q.JJ),e.Y36(ve.mQ),e.Y36(I.F0),e.Y36(Ft.v))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(F,ye){if(1&F&&e.Gf(fe,5),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.stepper=ot.first)}},decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["swapStatusBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"linear","selectionChange"],["stepper",""],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"serviceInfo","direction"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxFlex","48"],["autoFocus","","matInput","","placeholder","Amount","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext","",4,"ngIf"],["mat-button","","color","primary","tabindex","3","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext",""],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxFlex","100",1,"mt-1"],["matInput","","placeholder","Address","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"swapStatus","direction"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["tabindex","19","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumber","animationDirection","stepNumberChange"],["fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(F,ye){1&F&&(e.YNc(0,gr,54,34,"div",0),e.YNc(1,ia,1,2,"ng-template",null,1,e.W1O),e.YNc(3,Ci,20,11,"div",2)),2&F&&(e.Q6J("ngIf",!ye.flgShowInfo),e.xp6(3),e.Q6J("ngIf",ye.flgShowInfo))},directives:[q.O5,C.xw,C.yH,C.Wh,P.dk,Te.lW,P.dn,ui.Vq,ui.C0,De._Y,De.JL,De.sg,ui.VY,yi,dt.KE,Wt.Nt,De.wV,De.Fj,Ae.h,De.JJ,De.u,De.Q7,dt.bx,dt.R9,dt.TO,ui.Ic,mi.VQ,mi.U0,Lt.ib,Lt.yz,Lt.yK,Yi.Hw,ea.pW,Le.ZT,hs,Es,ae,q.sg,q.mk,Ni.oO],pipes:[q.JJ],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:60rem;min-height:60rem}"],data:{animation:[gt._]}}),K})();function pi(K,Fe){1&K&&e._UZ(0,"mat-progress-bar",32)}function Li(K,Fe){1&K&&(e.TgZ(0,"th",33),e._uU(1," Status "),e.qZA())}function Ki(K,Fe){if(1&K&&(e.TgZ(0,"td",34),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit,ye=e.oxw();e.xp6(1),e.Oqu(ye.swapStateEnum[F.status])}}function Ji(K,Fe){1&K&&(e.TgZ(0,"th",33),e._uU(1," Swap ID "),e.qZA())}function on(K,Fe){if(1&K&&(e.TgZ(0,"td",34),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(F.id)}}function bn(K,Fe){1&K&&(e.TgZ(0,"th",33),e._uU(1," Claim Address "),e.qZA())}function er(K,Fe){if(1&K&&(e.TgZ(0,"td",34),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(F.claimAddress)}}function kn(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," Onchain Amount (Sats) "),e.qZA())}function la(K,Fe){if(1&K&&(e.TgZ(0,"td",34)(1,"span",36),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.onchainAmount))}}function Da(K,Fe){1&K&&(e.TgZ(0,"th",33),e._uU(1," Lockup Address "),e.qZA())}function ar(K,Fe){if(1&K&&(e.TgZ(0,"td",34),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.xp6(1),e.Oqu(F.lockupAddress)}}function Sr(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," Expected Amount (Sats) "),e.qZA())}function vr(K,Fe){if(1&K&&(e.TgZ(0,"td",34)(1,"span",36),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.expectedAmount))}}function Hr(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," Timeout Block Height "),e.qZA())}function Jr(K,Fe){if(1&K&&(e.TgZ(0,"td",34)(1,"span",36),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.timeoutBlockHeight))}}function qa(K,Fe){1&K&&(e.TgZ(0,"th",35),e._uU(1," Amount (Sats) "),e.qZA())}function fs(K,Fe){if(1&K&&(e.TgZ(0,"td",34)(1,"span",36),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&K){const F=Fe.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,F.amt))}}function ps(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"th",37)(1,"div",38)(2,"mat-select",39),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",40),e.NdJ("click",function(){return e.CHM(F),e.oxw().onDownloadCSV()}),e._uU(5,"Download CSV"),e.qZA()()()()}}function bs(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"td",41)(1,"button",42),e.NdJ("click",function(ot){const en=e.CHM(F).$implicit;return e.oxw().onSwapClick(en,ot)}),e._uU(2,"View Info"),e.qZA()()}}function qs(K,Fe){if(1&K&&(e.TgZ(0,"p"),e._uU(1),e.qZA()),2&K){const F=e.oxw(2);e.xp6(1),e.Oqu(F.emptyTableMessage)}}function So(K,Fe){if(1&K&&(e.TgZ(0,"td",43),e.YNc(1,qs,2,1,"p",44),e.qZA()),2&K){const F=e.oxw();e.xp6(1),e.Q6J("ngIf",!(null!=F.listSwaps&&F.listSwaps.data)||(null==F.listSwaps||null==F.listSwaps.data?null:F.listSwaps.data.length)<1)}}const Js=function(K){return{"display-none":K}};function s1(K,Fe){if(1&K&&e._UZ(0,"tr",45),2&K){const F=e.oxw();e.Q6J("ngClass",e.VKq(1,Js,(null==F.listSwaps?null:F.listSwaps.data)&&(null==F.listSwaps||null==F.listSwaps.data?null:F.listSwaps.data.length)>0))}}function Be(K,Fe){1&K&&e._UZ(0,"tr",46)}function Me(K,Fe){1&K&&e._UZ(0,"tr",47)}const ge=function(K){return{"overflow-auto error-border":K,"overflow-auto":!0}},$e=function(){return["no_swap"]};let ct=(()=>{class K{constructor(F,ye,ot,ri){this.logger=F,this.commonService=ye,this.store=ot,this.boltzService=ri,this.selectedSwapType=Q.hc.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.swapStateEnum=Q.Qw,this.faHistory=v.qO$,this.swapCaption="Swap Out",this.displayedColumns=[],this.selFilter="",this.flgSticky=!1,this.pageSize=Q.IV,this.pageSizeOptions=Q.TJ,this.screenSize="",this.screenSizeEnum=Q.cu,this.unSubs=[new h.x,new h.x,new h.x],this.screenSize=this.commonService.getScreenSize(),this.setTableColumns()}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}ngOnChanges(F){F.selectedSwapType&&!F.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===Q.hc.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}setTableColumns(){this.screenSize===Q.cu.XS||this.screenSize===Q.cu.SM?(this.flgSticky=!1,this.displayedColumns=this.selectedSwapType===Q.hc.SWAP_IN?["status","id","expectedAmount","actions"]:["status","id","onchainAmount","actions"]):this.screenSize===Q.cu.MD?(this.flgSticky=!1,this.displayedColumns=this.selectedSwapType===Q.hc.SWAP_IN?["status","id","expectedAmount","timeoutBlockHeight","actions"]:["status","id","onchainAmount","timeoutBlockHeight","actions"]):(this.flgSticky=!0,this.displayedColumns=this.selectedSwapType===Q.hc.SWAP_IN?["status","id","lockupAddress","expectedAmount","timeoutBlockHeight","actions"]:["status","id","claimAddress","onchainAmount","timeoutBlockHeight","actions"])}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}onSwapClick(F,ye){this.boltzService.swapInfo(F.id||"").pipe((0,y.R)(this.unSubs[1])).subscribe(ot=>{this.store.dispatch((0,Ue.qR)({payload:{data:{type:Q.n_.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:Q.Qw[(ot=this.selectedSwapType===Q.hc.SWAP_IN?ot.swap:ot.reverseSwap).status],title:"Status",width:50,type:Q.Gi.STRING},{key:"id",value:ot.id,title:"ID",width:50,type:Q.Gi.STRING}],[{key:"amount",value:ot.onchainAmount?ot.onchainAmount:ot.expectedAmount?ot.expectedAmount:0,title:ot.onchainAmount?"Onchain Amount (Sats)":ot.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:Q.Gi.NUMBER},{key:"timeoutBlockHeight",value:ot.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:Q.Gi.NUMBER}],[{key:"address",value:ot.claimAddress?ot.claimAddress:ot.lockupAddress?ot.lockupAddress:"",title:ot.claimAddress?"Claim Address":ot.lockupAddress?"Lockup Address":"Address",width:100,type:Q.Gi.STRING}],[{key:"invoice",value:ot.invoice,title:"Invoice",width:100,type:Q.Gi.STRING}],[{key:"privateKey",value:ot.privateKey,title:"Private Key",width:100,type:Q.Gi.STRING}],[{key:"preimage",value:ot.preimage,title:"Preimage",width:100,type:Q.Gi.STRING}],[{key:"redeemScript",value:ot.redeemScript,title:"Redeem Script",width:100,type:Q.Gi.STRING}],[{key:"lockupTransactionId",value:ot.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:Q.Gi.STRING},{key:"transactionId",value:ot.claimTransactionId?ot.claimTransactionId:ot.refundTransactionId?ot.refundTransactionId:"",title:ot.claimTransactionId?"Claim Transaction ID":ot.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:Q.Gi.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(F){this.listSwaps=new hn.by(F?[...F]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(ye,ot)=>ye[ot]&&isNaN(ye[ot])?ye[ot].toLocaleLowerCase():ye[ot]?+ye[ot]:null,this.listSwaps.filterPredicate=(ye,ot)=>JSON.stringify(ye).toLowerCase().includes(ot),this.paginator&&this.paginator.firstPage(),this.listSwaps.paginator=this.paginator,this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===Q.hc.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(Ft.v),e.Y36(b.yh),e.Y36(He))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-swaps"]],viewQuery:function(F,ye){if(1&F&&(e.Gf(mr.YE,5),e.Gf(jr.NW,5)),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.sort=ot.first),e.iGM(ot=e.CRH())&&(ye.paginator=ot.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[e._Bn([{provide:jr.ye,useValue:(0,Q.pt)("Swaps")}]),e.TTD],decls:46,vars:16,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","30"],["matInput","","placeholder","Filter",3,"ngModel","keyup","ngModelChange"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["table",""],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","claimAddress"],["matColumnDef","onchainAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lockupAddress"],["matColumnDef","expectedAmount"],["matColumnDef","timeoutBlockHeight"],["matColumnDef","amt"],["matColumnDef","actions"],["mat-header-cell","","class","px-3",4,"matHeaderCellDef"],["mat-cell","","class","pl-3","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef","matHeaderRowDefSticky"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","",1,"px-3"],[1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center",1,"pl-3"],["mat-stroked-button","","color","primary","type","button","tabindex","4",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span",4),e._uU(5),e.qZA()(),e.TgZ(6,"mat-form-field",5)(7,"input",6),e.NdJ("keyup",function(){return ye.applyFilter()})("ngModelChange",function(ri){return ye.selFilter=ri}),e.qZA()()(),e.TgZ(8,"div",7)(9,"div",8),e.YNc(10,pi,1,0,"mat-progress-bar",9),e.TgZ(11,"table",10,11),e.ynx(13,12),e.YNc(14,Li,2,0,"th",13),e.YNc(15,Ki,2,1,"td",14),e.BQk(),e.ynx(16,15),e.YNc(17,Ji,2,0,"th",13),e.YNc(18,on,2,1,"td",14),e.BQk(),e.ynx(19,16),e.YNc(20,bn,2,0,"th",13),e.YNc(21,er,2,1,"td",14),e.BQk(),e.ynx(22,17),e.YNc(23,kn,2,0,"th",18),e.YNc(24,la,4,3,"td",14),e.BQk(),e.ynx(25,19),e.YNc(26,Da,2,0,"th",13),e.YNc(27,ar,2,1,"td",14),e.BQk(),e.ynx(28,20),e.YNc(29,Sr,2,0,"th",18),e.YNc(30,vr,4,3,"td",14),e.BQk(),e.ynx(31,21),e.YNc(32,Hr,2,0,"th",18),e.YNc(33,Jr,4,3,"td",14),e.BQk(),e.ynx(34,22),e.YNc(35,qa,2,0,"th",18),e.YNc(36,fs,4,3,"td",14),e.BQk(),e.ynx(37,23),e.YNc(38,ps,6,0,"th",24),e.YNc(39,bs,3,0,"td",25),e.BQk(),e.ynx(40,26),e.YNc(41,So,2,1,"td",27),e.BQk(),e.YNc(42,s1,1,3,"tr",28),e.YNc(43,Be,1,0,"tr",29),e.YNc(44,Me,1,0,"tr",30),e.qZA(),e._UZ(45,"mat-paginator",31),e.qZA()()()),2&F&&(e.xp6(3),e.Q6J("icon",ye.faHistory),e.xp6(2),e.hij("",ye.swapCaption," History"),e.xp6(2),e.Q6J("ngModel",ye.selFilter),e.xp6(3),e.Q6J("ngIf",!0===ye.flgLoading[0]),e.xp6(1),e.Q6J("dataSource",ye.listSwaps)("ngClass",e.VKq(13,ge,"error"===ye.flgLoading[0])),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(15,$e)),e.xp6(1),e.Q6J("matHeaderRowDef",ye.displayedColumns)("matHeaderRowDefSticky",ye.flgSticky),e.xp6(1),e.Q6J("matRowDefColumns",ye.displayedColumns),e.xp6(1),e.Q6J("pageSize",ye.pageSize)("pageSizeOptions",ye.pageSizeOptions)("showFirstLastButtons",ye.screenSize!==ye.screenSizeEnum.XS))},directives:[C.xw,C.yH,C.Wh,B.BN,dt.KE,Wt.Nt,De.Fj,De.JJ,De.On,V.$V,q.O5,ea.pW,hn.BZ,mr.YE,q.mk,Ni.oO,hn.w1,hn.fO,hn.ge,mr.nU,hn.Dz,hn.ev,Ie.gD,Ie.$L,le.ey,Te.lW,hn.mD,hn.yh,hn.Ke,hn.Q2,hn.as,hn.XQ,hn.nj,hn.Gk,jr.NW],pipes:[q.JJ],styles:[".mat-column-actions[_ngcontent-%COMP%]{min-height:4.8rem}"]}),K})();const Pt=function(K){return["../",K]};function $t(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",15),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw().onSelectedIndexChange(ri)}),e._uU(1),e.qZA()}if(2&K){const F=Fe.$implicit,ye=e.oxw();e.Q6J("active",ye.activeTab.link===F.link)("routerLink",e.VKq(3,Pt,F.link)),e.xp6(1),e.Oqu(F.name)}}let li=(()=>{class K{constructor(F,ye,ot){this.router=F,this.store=ye,this.boltzService=ot,this.swapTypeEnum=Q.hc,this.selectedSwapType=Q.hc.SWAP_OUT,this.swaps={},this.swapsData=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"swapout",name:"Swap Out"},{link:"swapin",name:"Swap In"}],this.activeTab=this.links[0],this.unSubs=[new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.boltzService.listSwaps();const F=this.links.find(ye=>this.router.url.includes(ye.link));this.activeTab=F||this.links[0],this.selectedSwapType=F&&"swapin"===F.link?Q.hc.SWAP_IN:Q.hc.SWAP_OUT,this.router.events.pipe((0,y.R)(this.unSubs[0]),(0,oe.h)(ye=>ye instanceof I.Av)).subscribe({next:ye=>{const ot=this.links.find(ri=>ye.urlAfterRedirects.includes(ri.link));this.activeTab=ot||this.links[0],this.selectedSwapType=ot&&"swapin"===ot.link?Q.hc.SWAP_IN:Q.hc.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,y.R)(this.unSubs[1])).subscribe({next:ye=>{this.swaps=ye,this.swapsData=this.selectedSwapType===Q.hc.SWAP_IN&&ye.swaps?ye.swaps:this.selectedSwapType===Q.hc.SWAP_OUT&&ye.reverseSwaps?ye.reverseSwaps:[],this.flgLoading[0]=!1},error:ye=>{this.flgLoading[0]="error",this.emptyTableMessage=ye.message?ye.message:"No swap "+(this.selectedSwapType===Q.hc.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(F){"swapin"===F.link?(this.selectedSwapType=Q.hc.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=Q.hc.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(F){this.boltzService.serviceInfo().pipe((0,y.R)(this.unSubs[2])).subscribe({next:ye=>{this.store.dispatch((0,Ue.qR)({payload:{data:{serviceInfo:ye,direction:F,component:ti}}}))}})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(I.F0),e.Y36(b.yh),e.Y36(He))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-boltz-root"]],decls:18,vars:6,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"botlz-icon-sm","mr-1"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["mat-tab-nav-bar",""],["role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e.O4$(),e.TgZ(1,"svg",1)(2,"g",2)(3,"g",3),e._UZ(4,"circle",4)(5,"path",5)(6,"path",6),e.qZA()()(),e.kcU(),e.TgZ(7,"span",7),e._uU(8,"Boltz"),e.qZA()(),e.TgZ(9,"div",8)(10,"mat-card")(11,"mat-card-content",9)(12,"nav",10),e.YNc(13,$t,2,5,"div",11),e.qZA(),e.TgZ(14,"div",12)(15,"button",13),e.NdJ("click",function(){return ye.onSwap(ye.selectedSwapType)}),e._uU(16),e.qZA()(),e._UZ(17,"rtl-boltz-swaps",14),e.qZA()()()),2&F&&(e.xp6(13),e.Q6J("ngForOf",ye.links),e.xp6(3),e.hij("Start ",ye.activeTab.name,""),e.xp6(1),e.Q6J("selectedSwapType",ye.selectedSwapType)("swapsData",ye.swapsData)("flgLoading",ye.flgLoading)("emptyTableMessage",ye.emptyTableMessage))},directives:[C.xw,C.Wh,P.a8,P.dn,C.yH,H.BU,q.sg,H.Nj,I.rH,Te.lW,ct],styles:[""]}),K})();class zn{constructor(Fe){this.help=Fe}}function ns(K,Fe){if(1&K&&(e.TgZ(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e._uU(3),e.qZA()(),e.TgZ(4,"mat-panel-description",9),e._UZ(5,"span",10),e.TgZ(6,"a",11),e._uU(7),e.qZA()()()),2&K){const F=e.oxw().$implicit,ye=e.oxw();e.xp6(3),e.Oqu(F.help.question),e.xp6(2),e.Q6J("innerHTML",F.help.answer,e.oJD),e.xp6(1),e.Q6J("routerLink",ye.flgLoggedIn?ye.LNPLink+F.help.link:"/login"),e.xp6(1),e.Oqu(ye.flgLoggedIn?F.help.linkCaption:"Login to go to the page")}}function As(K,Fe){if(1&K&&(e.TgZ(0,"div",6),e.YNc(1,ns,8,4,"mat-expansion-panel",7),e.qZA()),2&K){const F=Fe.$implicit,ye=e.oxw();e.xp6(1),e.Q6J("ngIf","ALL"===F.help.lnImplementation||F.help.lnImplementation===ye.selNode.lnImplementation)}}let zo=(()=>{class K{constructor(F,ye){this.store=F,this.sessionService=ye,this.helpTopics=[],this.faQuestion=v.Psp,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new h.x,new h.x,new h.x,new h.x],this.helpTopics.push(new zn({question:"Getting started",answer:'Funding your node is the first step to get started.\nGo to the "On-chain" page of the app:\n1. Generate a new address on the "Recieve" tab.\n2. Send funds to the address.\n3. Wait for the balance to be confirmed on-chain before proceeding further.\n3. Connecting with network peers and opening channels is next.\n',link:"onchain",linkCaption:"On-Chain page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Connect with peers",answer:'Connect with network peers to open channels with them.\nGo to "Peer/Channels" page under the "Lightning" menu :\n1. Get the peer pubkey and host address in the pubkey@ip:port format.\n2. On the "Peers" enter the peer address and connect.\n3. Once the peer is connected, you can open channel with the peer.\n4. A variety of actions can be performed on the connected peers page for each peer:\n a. View Info - View the peer details.\n b. Open Channel - Open channel with the peer.\n c. Disconnect - Disconnect from the peer.\n',link:"peerschannels",linkCaption:"Peers/Channels page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Opening Channels",answer:'Open channels with a connected network peer.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. On the "Channels" section, select the alias of the connected peer from the drop-down\n2. Specify the amount to commit to the channel and click on "Open Channel".\n3. There are a variety of options available while opening a channel. \n a. Private Channel - When this option is selected, a private channel is opened with the peer. \n b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n4. Track the pending open channels under the "Pending" tab . \n5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n',link:"peerschannels",linkCaption:"Peers/Channels page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Channel Management",answer:'Channel maintenance and balance score.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. A variety of actions can be perfomed on the open channels under the "Open" tab, with the "Actions" button:\n a. View Info - View the channel details.\n b. View Remote Fee - View the fee policy on the channel of the remote peer.\n c. Update Fee Policy - Modify the fee policy on the channel.\n d. Close Channel - Close the channel.\n2. Balance Score is a "balancedness" metric score for the channel. \n a. It helps measure how balanced the remote and local balances are, on a channel.\n b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n',link:"peerschannels",linkCaption:"Peers/Channels page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Lightning Transactions - Payments",answer:'Sending Payments from your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayments tab is for making payments via your node\n 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment request" field and click on "Send Payment" to send.\n 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n',link:"transactions",linkCaption:"Transactions page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Lightning Transactions - Invoices",answer:'Receiving Payments on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nInvoices tab is for receiving payments on your node.\n 1. Memo - Description you want to provide on the invoice.\n 2. Expiry - The time period, after which the invoice will be invalid.\n 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n',link:"transactions",linkCaption:"Transactions page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Lightning Transactions - Query Route",answer:'Querying Payment Routes.\nGo to the "Transactions" page under the "Lightning" menu :\nQuery Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n 2. Amount - Amount in Sats, which you want to send to the node.\n',link:"transactions",linkCaption:"Transactions page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Channel Backups",answer:'Channel Backups are important to ensure that you have means to recover funds in case of node failures.\nBackup folder location can be customized in the RTL config file with the channelBackupPath field.\nRTL automatically creates all channel backup on server startup, as well as everytime a channel is opened or closed\nYou can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\nYou can also backup each channel individually and verify them.\n** Keep taking backups of your channels regularly and store them in redundant locations **.\n',link:"backup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new zn({question:"Channel Restore",answer:'Channel Restore is used to recover funds from the channel backup files in case of node failures.\nFollow the below steps to perform fund restoration.\n\nPrerequisite:\n1. The node has been restored with the LND recovery seed.\n2. RTL generated channel backup file/s is available (all channel backup file is channel-all.bak).\n\nRecovery:\n1. Create a restore folder in your folder backup location, as specified in the RTL config file.\n2. Place the channel backup file in the restore folder.\n3. Go to the "Restore" tab under the "Backup" page of RTL.\n4. RTL will list the options to restore funds from the all channel file or individual channel backup file.\n5. Click on the Restore icon on the grid to restore the funds.\n6. Once the restore function is executed successfully, RTL will rename the backup file and it will not be accessible from the UI.\n7. Restore function will force close the channels and recover the funds from them.\n8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n',link:"backup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new zn({question:"Forwarding History",answer:'Transactions routed by the node.\nGo to "Routing" page under the "Lightning" menu :\nTransactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n',link:"routing",linkCaption:"Forwarding History",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Graph Lookup",answer:'Querying your node graph for network node and channel information.\nGo to "Graph Lookup" page under the "Lightning" menu :\nEach node maintains a network graph for the information on all the nodes and channels on the network.\nYou can lookup information on nodes and channels from your graph:\n 1. Node Lookup - Enter the pubkey to perform the lookup.\n 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n',link:"lookups",linkCaption:"Graph Lookup page",lnImplementation:"ALL"})),this.helpTopics.push(new zn({question:"Settings",answer:'RTL Offers certain customizations on the UI to personalize your experience on the app\nGo to "Settings" page to access the customization options.\nNode Layout Options\n 1. User Persona - Two options are available to change the dashboard based on the persona.\n 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n 3. Default Node - If you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\nOther Customizations include day and night mode and a choice of color themes to select from.\n',lnImplementation:"ALL"}))}ngOnInit(){this.store.select(n.dT).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{var ye;switch(this.selNode=F,null===(ye=this.selNode.lnImplementation)||void 0===ye?void 0:ye.toUpperCase()){case"CLN":this.LNPLink="/cln/";break;case"ECL":this.LNPLink="/ecl/";break;default:this.LNPLink="/lnd/"}}),this.sessionService.watchSession().pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{this.flgLoggedIn=!!F.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(b.yh),e.Y36(Se.m))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-help"]],decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["fxFlex","100"],["class","flat-expansion-panel help-expansion mb-2px",4,"ngIf"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],[1,"pre-wrap",3,"innerHTML"],[1,"mt-2",3,"routerLink"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span",3),e._uU(4,"Help"),e.qZA()(),e.TgZ(5,"div",4)(6,"div",0),e.YNc(7,As,2,1,"div",5),e.qZA()()()),2&F&&(e.xp6(2),e.Q6J("icon",ye.faQuestion),e.xp6(5),e.Q6J("ngForOf",ye.helpTopics))},directives:[C.xw,C.yH,C.Wh,B.BN,q.sg,q.O5,Lt.ib,Lt.yz,Lt.yK,Lt.u4,I.yS],styles:[".mat-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]}),K})();var o1=p(9841);function wa(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Token is required."),e.qZA())}let oo=(()=>{class K{constructor(F,ye){this.dialogRef=F,this.store=ye,this.faUserClock=v.hnx,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Ue.M6)({payload:{twoFAToken:this.token}}))}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(Le.so),e.Y36(b.yh))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-login-token"]],decls:17,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["tokenForm","ngForm"],["autoFocus","","matInput","","placeholder","Token","type","text","id","token","name","token","tabindex","2","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e._uU(5,"Two Factor Token"),e.qZA()(),e.TgZ(6,"button",5),e.NdJ("click",function(){return ye.onClose()}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7,8),e.NdJ("ngSubmit",function(){return ye.onVerifyToken()}),e.TgZ(11,"mat-form-field")(12,"input",9),e.NdJ("ngModelChange",function(ri){return ye.token=ri}),e.qZA(),e.YNc(13,wa,2,0,"mat-error",10),e.qZA(),e.TgZ(14,"div",11)(15,"button",12),e._uU(16,"Verify Token"),e.qZA()()()()()()),2&F&&(e.xp6(12),e.Q6J("ngModel",ye.token),e.xp6(1),e.Q6J("ngIf",!ye.token))},directives:[C.xw,C.Wh,C.yH,P.dk,Te.lW,P.dn,De._Y,De.JL,De.F,dt.KE,Wt.Nt,De.Fj,Ae.h,De.Q7,De.JJ,De.On,q.O5,dt.TO],styles:[""]}),K})();function O2(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function Xs(K,Fe){if(1&K&&(e.TgZ(0,"p",21)(1,"mat-icon",22),e._uU(2,"close"),e.qZA(),e._uU(3),e.qZA()),2&K){const F=e.oxw();e.xp6(3),e.hij(" ",F.loginErrorMessage," ")}}const k2=function(K){return{"padding-gap-large":K}},Bo=function(K,Fe){return{"font-size-200":K,"font-size-300":Fe}};let I1=(()=>{class K{constructor(F,ye,ot,ri){this.logger=F,this.store=ye,this.rtlEffects=ot,this.commonService=ri,this.faUnlockAlt=v.B$L,this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=Q.cu,this.loginErrorMessage="",this.apiCallStatusEnum=Q.Bn,this.unSubs=[new h.x,new h.x,new h.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,o1.a)([this.store.select(n.ul),this.store.select(n.Sr)]).pipe((0,y.R)(this.unSubs[0])).subscribe(([F,ye])=>{this.loginErrorMessage="",F.status===Q.Bn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof F.message?JSON.stringify(F.message):F.message),this.logger.error(F.message)),ye.status===Q.Bn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof ye.message?JSON.stringify(ye.message):ye.message),this.logger.error(ye.message))}),this.store.select(n.Yj).pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{this.appConfig=F,this.logger.info(F)})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.appConfig.enable2FA?(this.store.dispatch((0,Ue.qR)({payload:{maxWidth:"35rem",data:{component:oo}}})),this.rtlEffects.closeAlert.pipe((0,Ce.q)(1)).subscribe(F=>{F&&this.store.dispatch((0,Ue.x4)({payload:{password:ue(this.password),defaultPassword:Q.kO.includes(this.password.toLowerCase()),twoFAToken:F.twoFAToken}}))})):this.store.dispatch((0,Ue.x4)({payload:{password:ue(this.password),defaultPassword:Q.kO.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(b.yh),e.Y36(ht.V),e.Y36(Ft.v))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-login"]],decls:25,vars:12,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","center stretch",1,"login-container"],["fxLayout","row","fxFlex","50","fxLayoutAlign","center stretch"],["fxLayout","row","fxFlex","45","fxLayoutAlign","center stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxFlex","35","fxLayoutAlign","center center",1,"bg-primary"],["src","assets/images/RTL-Horse-BY.svg","alt","RTL Logo",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"mt-5px","mb-0","px-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["loginForm","ngForm"],["fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","placeholder","Password","id","password","name","password","tabindex","1","required","",3,"type","ngModel","ngModelChange"],["tabindex","2","matSuffix","",3,"click"],[4,"ngIf"],["fxFlex","100","class","color-warn pre-wrap","fxLayoutAlign","start start",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start start",1,"color-warn","pre-wrap"],[1,"mr-1","icon-small"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-card",2)(3,"div",3)(4,"div",4),e._UZ(5,"img",5),e.qZA(),e.TgZ(6,"div",6)(7,"mat-card-header",7)(8,"mat-card-title",8)(9,"span",9),e._uU(10,"Welcome"),e.qZA()()(),e.TgZ(11,"mat-card-content",10)(12,"form",11,12)(14,"mat-form-field",13)(15,"input",14),e.NdJ("ngModelChange",function(ri){return ye.password=ri}),e.qZA(),e.TgZ(16,"mat-icon",15),e.NdJ("click",function(){return ye.flgShow=!ye.flgShow}),e._uU(17),e.qZA(),e.YNc(18,O2,2,0,"mat-error",16),e.qZA(),e.YNc(19,Xs,4,1,"p",17),e.TgZ(20,"div",18)(21,"button",19),e.NdJ("click",function(){return ye.resetData()}),e._uU(22,"Clear"),e.qZA(),e.TgZ(23,"button",20),e.NdJ("click",function(){return ye.onLogin()}),e._uU(24,"Login"),e.qZA()()()()()()()()()),2&F&&(e.xp6(6),e.Q6J("ngClass",e.VKq(7,k2,ye.screenSize===ye.screenSizeEnum.XS)),e.xp6(2),e.Q6J("ngClass",e.WLB(9,Bo,ye.screenSize===ye.screenSizeEnum.XS,ye.screenSize!==ye.screenSizeEnum.XS)),e.xp6(7),e.Q6J("type",ye.flgShow?"text":"password")("ngModel",ye.password),e.xp6(2),e.Oqu(ye.flgShow?"visibility_off":"visibility"),e.xp6(1),e.Q6J("ngIf",!ye.password),e.xp6(1),e.Q6J("ngIf",""!==ye.loginErrorMessage))},directives:[C.xw,C.yH,C.Wh,P.a8,q.mk,Ni.oO,P.dk,P.n5,P.dn,De._Y,De.JL,De.F,dt.KE,Wt.Nt,De.Fj,Ae.h,De.Q7,De.JJ,De.On,Yi.Hw,dt.R9,q.O5,dt.TO,Te.lW],styles:[".login-container[_ngcontent-%COMP%]{height:90vh}.login-container[_ngcontent-%COMP%] .mat-card[_ngcontent-%COMP%]{height:30rem}.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:100%}@media only screen and (max-width: 56.25em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:37%}}@media only screen and (max-width: 37.5em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:70%}}.login-container[_ngcontent-%COMP%] .material-icons.mat-icon[_ngcontent-%COMP%]{font-size:120%;cursor:pointer}"]}),K})();var O1=p(9442);let k1=(()=>{class K{constructor(F,ye){this.activatedRoute=F,this.router=ye,this.error={errorCode:"",errorMessage:""},this.faTimes=v.NBC,this.unsubs=[new h.x,new h.x]}ngOnInit(){this.router.routeReuseStrategy.shouldReuseRoute=()=>!1,this.router.onSameUrlNavigation="reload",this.activatedRoute.paramMap.pipe((0,y.R)(this.unsubs[0])).subscribe(F=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(I.gz),e.Y36(I.F0))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-error"]],decls:13,vars:3,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","center center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","padding-gap-large"],[1,"font-size-300","font-bold-500"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-large"],[1,"box-text","font-size-120"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),e._UZ(4,"fa-icon",4),e.TgZ(5,"span",5),e._uU(6),e.qZA()()(),e.TgZ(7,"mat-card-content",6)(8,"div",7),e._uU(9),e.qZA(),e.TgZ(10,"span",8)(11,"button",9),e.NdJ("click",function(){return ye.goToHelp()}),e._uU(12,"Go To Help"),e.qZA()()()()()),2&F&&(e.xp6(4),e.Q6J("icon",ye.faTimes),e.xp6(2),e.hij("Error ",ye.error.errorCode,""),e.xp6(3),e.Oqu(ye.error.errorMessage))},directives:[C.xw,C.yH,C.Wh,P.a8,P.dk,P.n5,B.BN,P.dn,Te.lW],encapsulation:2}),K})();var na=p(1643),lo=p(9828),Eo=p(8104),Uo=p(6534),P1=p(9843);function To(K,Fe){1&K&&e._UZ(0,"span",16)}function N1(K,Fe){1&K&&e._UZ(0,"span",17)}function P2(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"form",18,4)(2,"div",19),e._UZ(3,"fa-icon",2),e.TgZ(4,"span"),e._uU(5,"Please ensure that "),e.TgZ(6,"strong"),e._uU(7,"experimental-offers"),e.qZA(),e._uU(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.TgZ(9,"strong")(10,"a",20),e._uU(11,"here"),e.qZA()(),e._uU(12," to learn more about Core Lightning offers."),e.qZA()(),e.TgZ(13,"h4",21),e._uU(14,"Description"),e.qZA(),e.TgZ(15,"span"),e._uU(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),e.qZA(),e.TgZ(17,"h4",21),e._uU(18,"Links"),e.qZA(),e.TgZ(19,"span")(20,"a",22),e._uU(21,"Core lightning Bolt12"),e.qZA()(),e._UZ(22,"mat-divider",23),e.TgZ(23,"div",24),e._UZ(24,"fa-icon",2),e.TgZ(25,"span"),e._uU(26,"Do not get an Offer tattoo until spec is fully ratified!"),e.qZA()(),e.TgZ(27,"mat-slide-toggle",25),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(2).enableOffers=ot})("change",function(){return e.CHM(F),e.oxw(2).onUpdateFeature()}),e._uU(28),e.qZA()()}if(2&K){const F=e.oxw(2);e.xp6(3),e.Q6J("icon",F.faInfoCircle),e.xp6(19),e.Q6J("inset",!0),e.xp6(2),e.Q6J("icon",F.faExclamationTriangle),e.xp6(3),e.Q6J("ngModel",F.enableOffers),e.xp6(1),e.hij("Enable Offers ",F.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function Er(K,Fe){if(1&K&&(e.TgZ(0,"div")(1,"div",28),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Please ensure that "),e.TgZ(5,"strong"),e._uU(6,"experimental-dual-fund"),e.qZA(),e._uU(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.TgZ(8,"strong")(9,"a",29),e._uU(10,"here"),e.qZA()(),e._uU(11," to learn more about Core Lightning Liquidity Ads."),e.qZA()()()),2&K){const F=e.oxw(3);e.xp6(2),e.Q6J("icon",F.faExclamationTriangle)}}function Ao(K,Fe){if(1&K&&(e.TgZ(0,"mat-option",47),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&K){const F=Fe.$implicit;e.Q6J("value",F),e.xp6(1),e.hij(" ",e.lcZ(2,2,F.id)," ")}}function Go(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&K){const F=e.oxw(4);e.xp6(1),e.hij("",F.selPolicyType.placeholder," is required.")}}function Xl(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&K){const F=e.oxw(4);e.xp6(1),e.AsE("",F.selPolicyType.placeholder," must be greater than or equal to ",F.selPolicyType.min,".")}}function Wa(K,Fe){if(1&K&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&K){const F=e.oxw(4);e.xp6(1),e.AsE("",F.selPolicyType.placeholder," must be less than or equal to ",F.selPolicyType.max,".")}}function Ya(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Lease base fee is required."),e.qZA())}function $l(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Lease base basis is required."),e.qZA())}function R1(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Max channel routing base fee is required."),e.qZA())}function $s(K,Fe){1&K&&(e.TgZ(0,"mat-error"),e._uU(1,"Max channel routing fee rate is required."),e.qZA())}const H1=function(K,Fe){return{"alert-danger":K,"alert-info":Fe}};function ma(K,Fe){if(1&K&&(e.TgZ(0,"h4",48)(1,"span",49),e._uU(2),e.qZA()()),2&K){const F=e.oxw(4);e.xp6(1),e.Q6J("ngClass",e.WLB(2,H1,!!F.updateMsg.error,!!F.updateMsg.data)),e.xp6(1),e.hij(" ",F.updateMsg.error&&""!==F.updateMsg.error?"Error: "+F.updateMsg.error||0:F.updateMsg.data&&""!==F.updateMsg.data?F.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function Ms(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"div",30)(1,"div",31),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"These config changes should be configured permanently via the config file on your CLN node otherwise the policy would need to be configured again, if your node restarts."),e.qZA()(),e.TgZ(5,"div",32)(6,"mat-form-field",33)(7,"mat-select",34),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(3).selPolicyType=ot})("selectionChange",function(){return e.CHM(F),e.oxw(3).policyMod=null}),e.YNc(8,Ao,3,4,"mat-option",35),e.qZA()(),e.TgZ(9,"mat-form-field",36)(10,"input",37,38),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(3).policyMod=ot}),e.qZA(),e.TgZ(12,"mat-hint"),e._uU(13),e.qZA(),e.YNc(14,Go,2,1,"mat-error",26),e.YNc(15,Xl,2,2,"mat-error",26),e.YNc(16,Wa,2,2,"mat-error",26),e.qZA()(),e.TgZ(17,"div",32)(18,"mat-form-field",36)(19,"input",39),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(3).leaseFeeBaseSat=ot}),e.qZA(),e.YNc(20,Ya,2,0,"mat-error",26),e.qZA(),e.TgZ(21,"mat-form-field",36)(22,"input",40),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(3).leaseFeeBasis=ot}),e.qZA(),e.YNc(23,$l,2,0,"mat-error",26),e.qZA()(),e.TgZ(24,"div",32)(25,"mat-form-field",36)(26,"input",41),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(3).channelFeeMaxBaseSat=ot}),e.qZA(),e.YNc(27,R1,2,0,"mat-error",26),e.qZA(),e.TgZ(28,"mat-form-field",36)(29,"input",42),e.NdJ("ngModelChange",function(ot){return e.CHM(F),e.oxw(3).channelFeeMaxProportional=ot}),e.qZA(),e.YNc(30,$s,2,0,"mat-error",26),e.qZA()(),e.YNc(31,ma,3,5,"h4",43),e.TgZ(32,"div",44)(33,"button",45),e.NdJ("click",function(){return e.CHM(F),e.oxw(3).onResetPolicy()}),e._uU(34,"Reset"),e.qZA(),e.TgZ(35,"button",46),e.NdJ("click",function(){return e.CHM(F),e.oxw(3).onUpdateFundingPolicy()}),e._uU(36,"Update"),e.qZA()()()}if(2&K){const F=e.oxw(3);e.xp6(2),e.Q6J("icon",F.faExclamationTriangle),e.xp6(5),e.Q6J("ngModel",F.selPolicyType),e.xp6(1),e.Q6J("ngForOf",F.policyTypes),e.xp6(2),e.Q6J("ngModel",F.policyMod)("placeholder",F.selPolicyType.placeholder)("step","fixed"===F.selPolicyType.id?1e3:10)("min",F.selPolicyType.min)("max",F.selPolicyType.max),e.xp6(3),e.lnq("",F.selPolicyType.placeholder," should be between ",F.selPolicyType.min," and ",F.selPolicyType.max,""),e.xp6(1),e.Q6J("ngIf",!F.policyMod),e.xp6(1),e.Q6J("ngIf",F.policyModF.selPolicyType.max),e.xp6(3),e.Q6J("ngModel",F.leaseFeeBaseSat),e.xp6(1),e.Q6J("ngIf",!F.leaseFeeBaseSat),e.xp6(2),e.Q6J("ngModel",F.leaseFeeBasis),e.xp6(1),e.Q6J("ngIf",!F.leaseFeeBasis),e.xp6(3),e.Q6J("ngModel",F.channelFeeMaxBaseSat),e.xp6(1),e.Q6J("ngIf",!F.channelFeeMaxBaseSat),e.xp6(2),e.Q6J("ngModel",F.channelFeeMaxProportional),e.xp6(1),e.Q6J("ngIf",!F.channelFeeMaxProportional),e.xp6(1),e.Q6J("ngIf",F.flgUpdateCalled)}}function co(K,Fe){if(1&K&&(e.TgZ(0,"form",18,4),e.YNc(2,Er,12,1,"div",26),e.YNc(3,Ms,37,23,"div",27),e.qZA()),2&K){const F=e.oxw(2);e.xp6(2),e.Q6J("ngIf",!F.features[1].enabled),e.xp6(1),e.Q6J("ngIf",F.features[1].enabled)}}function e3(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-expansion-panel",9),e.NdJ("opened",function(){const ri=e.CHM(F).index;return e.oxw().onPanelExpanded(ri)}),e.TgZ(1,"mat-expansion-panel-header")(2,"mat-panel-title",10)(3,"h4",11),e._uU(4),e.qZA(),e.TgZ(5,"h4",11),e.YNc(6,To,1,0,"span",12),e.YNc(7,N1,1,0,"span",13),e._uU(8),e.qZA()()(),e.TgZ(9,"div",14),e.YNc(10,P2,29,5,"form",15),e.YNc(11,co,4,2,"form",15),e.qZA()()}if(2&K){const F=Fe.$implicit,ye=Fe.index;e.Q6J("expanded",!1),e.xp6(4),e.Oqu(F.name),e.xp6(2),e.Q6J("ngIf",F.enabled),e.xp6(1),e.Q6J("ngIf",!F.enabled),e.xp6(1),e.hij(" ",F.enabled?"Enabled":"Disabled"," "),e.xp6(2),e.Q6J("ngIf",0===ye),e.xp6(1),e.Q6J("ngIf",1===ye)}}const Ja=I.Bz.forRoot([{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([p.e(893),p.e(636)]).then(p.bind(p,1636)).then(K=>K.LNDModule),canActivate:[na.a1]},{path:"cln",loadChildren:()=>Promise.all([p.e(893),p.e(564)]).then(p.bind(p,9564)).then(K=>K.CLNModule),canActivate:[na.a1]},{path:"ecl",loadChildren:()=>Promise.all([p.e(893),p.e(924)]).then(p.bind(p,7924)).then(K=>K.ECLModule),canActivate:[na.a1]},{path:"settings",component:we,canActivate:[na.a1],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:ee,canActivate:[na.a1]},{path:"auth",component:Xt,canActivate:[na.a1]},{path:"bconfig",component:Tt,canActivate:[na.a1]}]},{path:"config",component:qe,canActivate:[na.a1],children:[{path:"",pathMatch:"full",redirectTo:"layout"},{path:"layout",component:Wi,canActivate:[na.a1]},{path:"services",component:jn,canActivate:[na.a1],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:_a,canActivate:[na.a1]},{path:"boltz",component:$r,canActivate:[na.a1]}]},{path:"experimental",component:(()=>{class K{constructor(F,ye,ot,ri){this.logger=F,this.store=ye,this.dataService=ot,this.commonService=ri,this.faInfoCircle=v.sqG,this.faExclamationTriangle=v.eHv,this.faCode=v.dT$,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=Q.gB,this.selPolicyType=Q.gB[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.dataService.listConfigs().pipe((0,y.R)(this.unSubs[0])).subscribe({next:F=>{this.logger.info("Received List Configs: "+JSON.stringify(F)),this.features[1].enabled=!!F["experimental-dual-fund"]},error:F=>{this.logger.error("List Configs Error: "+JSON.stringify(F)),this.features[1].enabled=!1}}),this.store.select(n.dT).pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{this.selNode=F,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(lo.Rn).pipe((0,y.R)(this.unSubs[2])).subscribe(F=>{this.policyTypes[2].max=F.balance.totalBalance||1e3})}onPanelExpanded(F){1===F&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,y.R)(this.unSubs[3])).subscribe(ye=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(ye)),this.fundingPolicy=ye,this.fundingPolicy.policy&&(this.selPolicyType=Q.gB.find(ot=>ot.id===this.fundingPolicy.policy)||this.policyTypes[0]),this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.leaseFeeBaseSat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.leaseFeeBasis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null})}onUpdateFeature(){this.logger.info(this.selNode),this.selNode.settings.enableOffers=this.enableOffers,this.features[0].enabled=this.enableOffers,this.store.dispatch((0,Ue.jS)({payload:{uiMessage:Q.m6.UPDATE_SETTING,service:Q.JX.OFFERS,settings:{enableOffers:this.enableOffers}}})),this.store.dispatch((0,nt.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.enableOffers}})),this.store.dispatch((0,wi.oo)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.enableOffers}})),this.store.dispatch((0,jt.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:this.selNode.settings.currencyUnit,currencyUnits:this.selNode.settings.currencyUnits,fiatConversion:this.selNode.settings.fiatConversion,lnImplementation:this.selNode.lnImplementation,swapServerUrl:this.selNode.settings.swapServerUrl,boltzServerUrl:this.selNode.settings.boltzServerUrl,enableOffers:this.enableOffers}}))}onUpdateFundingPolicy(){this.flgUpdateCalled=!0,this.updateMsg={},this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id,this.policyMod,this.leaseFeeBaseSat,this.leaseFeeBasis,1e3*(this.channelFeeMaxBaseSat||0),this.channelFeeMaxProportional?this.channelFeeMaxProportional/1e3:0).pipe((0,y.R)(this.unSubs[4])).subscribe({next:F=>{this.logger.info(F),this.fundingPolicy=F,this.updateMsg={data:"Compact Lease: "+F.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:F=>{this.logger.error(F),this.updateMsg={error:this.commonService.extractErrorMessage(F,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?Q.gB.find(F=>F.id===this.fundingPolicy.policy)||this.policyTypes[0]:Q.gB[0],this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.leaseFeeBaseSat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.leaseFeeBasis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(b.yh),e.Y36(Eo.D),e.Y36(Ft.v))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-experimental-settings"]],decls:13,vars:3,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxFlex","100",1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["form","ngForm"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","flat-expansion-panel my-1",3,"expanded","opened",4,"ngFor","ngForOf"],[1,"flat-expansion-panel","my-1",3,"expanded","opened"],["fxFlex","100","fxLayoutAlign","space-between center"],[1,"font-bold-500"],["class","dot green",4,"ngIf"],["class","dot yellow",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],[1,"dot","green"],[1,"dot","yellow"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-info"],["href","http://bolt12.org","target","_blank"],[1,"mt-2"],["href","https://github.com/lightningnetwork/lightning-rfc/pull/798 ","target","blank"],[1,"my-2",3,"inset"],[1,"alert","alert-warn"],["autoFocus","","tabindex","1","color","primary","name","enableOfr",1,"my-1",3,"ngModel","ngModelChange","change"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],["href","https://medium.com/blockstream/setting-up-liquidity-ads-in-c-lightning-54e4c59c091d","target","_blank"],["fxLayout","column"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn","mb-2"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch"],["fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","placeholder","Policy","name","policy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModel","placeholder","step","min","max","ngModelChange"],["plcMod","ngModel"],["matInput","","placeholder","Lease Base Fee (Sats)","type","number","step","100","min","0","tabindex","3","required","","name","leaseFeeBaseSat",3,"ngModel","ngModelChange"],["matInput","","placeholder","Lease Base Basis (bps)","type","number","step","1","min","0","tabindex","4","required","","name","leaseFeeBasis",3,"ngModel","ngModelChange"],["matInput","","placeholder","Max Channel Routing Base Fee (Sats)","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModel","ngModelChange"],["matInput","","placeholder","Max Channel Routing Fee Rate (ppm)","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModel","ngModelChange"],["fxLayoutAlign","start stretch","class","font-bold-500 mt-2",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","7",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxLayoutAlign","start stretch",1,"font-bold-500","mt-2"],["fxFlex","100",1,"alert",3,"ngClass"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1),e._UZ(2,"fa-icon",2),e.TgZ(3,"span"),e._uU(4,"Experimental features should be enabled with caution. Many such features may be implementation specific and not ratified for the BOLT spec. Enabling these may still result in a broken experience. Referencing relevant feature documentation is highly advised before enabling."),e.qZA()(),e.TgZ(5,"form",3,4)(7,"div",5),e._UZ(8,"fa-icon",6),e.TgZ(9,"span",7),e._uU(10,"Features"),e.qZA()(),e.TgZ(11,"mat-accordion"),e.YNc(12,e3,12,7,"mat-expansion-panel",8),e.qZA()()()),2&F&&(e.xp6(2),e.Q6J("icon",ye.faInfoCircle),e.xp6(6),e.Q6J("icon",ye.faCode),e.xp6(4),e.Q6J("ngForOf",ye.features))},directives:[C.xw,C.yH,V.$V,B.BN,De._Y,De.JL,De.F,C.Wh,Lt.pp,q.sg,Lt.ib,Lt.yz,Lt.yK,q.O5,Ge.d,Kt.Rr,Ae.h,De.JJ,De.On,dt.KE,Ie.gD,le.ey,Wt.Nt,De.wV,De.qQ,De.Fd,De.Fj,Uo.q,P1.F,De.Q7,dt.bx,dt.TO,q.mk,Ni.oO,Te.lW],pipes:[q.rS],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}),K})(),canActivate:[na.a1]},{path:"lnconfig",component:gn,canActivate:[na.a1]}]},{path:"services",component:ha,canActivate:[na.a1],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:oi},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:li}]},{path:"help",component:zo},{path:"login",component:I1},{path:"error",component:k1},{path:"**",component:O1.w}]);var R2=p(8750),l1=p(8878),Zo=p(4594),Wo=p(7238),F1=p(2181);function t3(K,Fe){if(1&K&&(e.TgZ(0,"p",2),e._UZ(1,"fa-icon",3),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&K){const F=e.oxw();e.xp6(1),e.Q6J("icon",F.faCode),e.xp6(2),e.hij("API Version: ",null==F.information?null:F.information.api_version,"")}}function Q4(K,Fe){if(1&K&&(e.TgZ(0,"a",11),e._UZ(1,"fa-icon",3),e.TgZ(2,"span",12),e._uU(3,"Settings"),e.qZA()()),2&K){const F=e.oxw();e.xp6(1),e.Q6J("icon",F.faUserCog)}}function q4(K,Fe){if(1&K&&(e.TgZ(0,"a",13),e._UZ(1,"fa-icon",3),e.TgZ(2,"span",14),e._uU(3,"Help"),e.qZA()()),2&K){const F=e.oxw();e.xp6(1),e.Q6J("icon",F.faLifeRing)}}function i3(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"a",15),e.NdJ("click",function(){return e.CHM(F),e.oxw().onClick()}),e._UZ(1,"fa-icon",3),e.TgZ(2,"span"),e._uU(3,"Logout"),e.qZA()()}if(2&K){const F=e.oxw();e.xp6(1),e.Q6J("icon",F.faEject)}}let ka=(()=>{class K{constructor(F,ye,ot,ri,en){this.logger=F,this.sessionService=ye,this.store=ot,this.rtlEffects=ri,this.actions=en,this.faUserCog=v.gNZ,this.faCodeBranch=v.mh3,this.faCode=v.dT$,this.faCog=v.b7W,this.faLifeRing=v.uli,this.faEject=v.KOR,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new h.x,new h.x,new h.x,new h.x],this.version=Ke.q4}ngOnInit(){this.store.select(n.R4).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{if(this.information=F,this.flgLoading=!this.information.identity_pubkey,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const ye=this.information.chains[0];this.informationChain.chain=ye.chain,this.informationChain.network=ye.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(F)}),this.sessionService.watchSession().pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{this.showLogout=!!F.token,this.flgLoading=!!F.token}),this.actions.pipe((0,y.R)(this.unSubs[2]),(0,oe.h)(F=>F.type===Q.pg.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Ue.c1)({payload:{data:{type:Q.n_.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,y.R)(this.unSubs[3])).subscribe(F=>{F&&(this.showLogout=!1,this.store.dispatch((0,Ue.kS)()))})}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(Se.m),e.Y36(b.yh),e.Y36(ht.V),e.Y36(d.eX))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-top-menu"]],decls:14,vars:8,consts:[[1,"top-menu",3,"overlapTrigger"],["topMenu","matMenu"],["mat-menu-item",""],[1,"fa-icon-small","mr-1",3,"icon"],["mat-menu-item","",4,"ngIf"],["mat-menu-item","","routerLink","/settings",4,"ngIf"],["mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","",3,"click",4,"ngIf"],["mat-icon-button","",1,"top-toolbar-icon",3,"matMenuTriggerFor"],["src","assets/images/RTL-Horse-BY.svg","alt","RTL Logo"],[1,"logo-icon"],["mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["mat-menu-item","","routerLink","/help"],["routerLink","/help"],["mat-menu-item","",3,"click"]],template:function(F,ye){if(1&F&&(e.TgZ(0,"mat-menu",0,1)(2,"p",2),e._UZ(3,"fa-icon",3),e.TgZ(4,"span"),e._uU(5),e.qZA()(),e.YNc(6,t3,4,2,"p",4),e.YNc(7,Q4,4,1,"a",5),e.YNc(8,q4,4,1,"a",6),e.YNc(9,i3,4,1,"a",7),e.qZA(),e.TgZ(10,"button",8),e._UZ(11,"img",9),e.TgZ(12,"mat-icon",10),e._uU(13,"arrow_drop_down"),e.qZA()()),2&F){const ot=e.MAs(1);e.Q6J("overlapTrigger",!1),e.xp6(3),e.Q6J("icon",ye.faCodeBranch),e.xp6(2),e.hij("Version: ",ye.version,""),e.xp6(1),e.Q6J("ngIf",null==ye.information?null:ye.information.api_version),e.xp6(1),e.Q6J("ngIf",ye.showLogout),e.xp6(1),e.Q6J("ngIf",ye.showLogout),e.xp6(1),e.Q6J("ngIf",ye.showLogout),e.xp6(1),e.Q6J("matMenuTriggerFor",ot)}},directives:[F1.VK,F1.OP,B.BN,q.O5,I.yS,I.rH,Te.lW,F1.p6,Yi.Hw],styles:[".mat-menu-content,.mat-menu-content p.mat-menu-item{cursor:default}.mat-menu-content p.mat-menu-item fa-icon,.mat-menu-content p.mat-menu-item span,.mat-menu-content p.mat-menu-item div{cursor:default}.mat-menu-content p.mat-menu-item:hover{cursor:default!important}.top-toolbar-icon .mat-button-wrapper img{width:3.2rem}.top-toolbar-icon .mat-button-wrapper .material-icons.mat-icon.logo-icon{font-size:2rem;text-align:start}\n"],encapsulation:2}),K})();var uo=p(2638),Ds=p(8258),Is=p(149);const Os={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:v.HLz,link:"/lnd/home",userPersona:Q.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:v.nNP,link:"/lnd/onchain",userPersona:Q.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:v.BDt,link:"/lnd/connections",userPersona:Q.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:v.FVb,link:"/lnd/connections",userPersona:Q.ol.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:v.Ssp,link:"/lnd/transactions",userPersona:Q.ol.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:v.SuH,link:"/lnd/routing",userPersona:Q.ol.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:v.koM,link:"/lnd/reports",userPersona:Q.ol.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:v.wn1,link:"/lnd/graph",userPersona:Q.ol.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:v.hkK,link:"/lnd/messages",userPersona:Q.ol.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:v.q7m,link:"/lnd/channelbackup",userPersona:Q.ol.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:v.TmZ,link:"/lnd/network",userPersona:Q.ol.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:v.xf3,link:"/lnd/network",userPersona:Q.ol.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:v.Krp,link:"/services/loop",userPersona:Q.ol.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:v.vqe,link:"/services/loop",userPersona:Q.ol.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Q.ol.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:v.CgH,link:"/config",userPersona:Q.ol.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:v.Psp,link:"/help",userPersona:Q.ol.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:v.HLz,link:"/cln/home",userPersona:Q.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:v.nNP,link:"/cln/onchain",userPersona:Q.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:v.BDt,link:"/cln/connections",userPersona:Q.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:v.FVb,link:"/cln/connections",userPersona:Q.ol.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:v.Acd,link:"/cln/liquidityads",userPersona:Q.ol.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:v.Ssp,link:"/cln/transactions",userPersona:Q.ol.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:v.SuH,link:"/cln/routing",userPersona:Q.ol.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:v.koM,link:"/cln/reports",userPersona:Q.ol.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:v.wn1,link:"/cln/graph",userPersona:Q.ol.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:v.hkK,link:"/cln/messages",userPersona:Q.ol.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:v.USL,link:"/cln/rates",userPersona:Q.ol.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:v.xf3,link:"/cln/rates",userPersona:Q.ol.MERCHANT}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:v.CgH,link:"/config",userPersona:Q.ol.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:v.Psp,link:"/help",userPersona:Q.ol.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:v.HLz,link:"/ecl/home",userPersona:Q.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:v.nNP,link:"/ecl/onchain",userPersona:Q.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:v.BDt,link:"/ecl/connections",userPersona:Q.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:v.FVb,link:"/ecl/connections",userPersona:Q.ol.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:v.Ssp,link:"/ecl/transactions",userPersona:Q.ol.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:v.SuH,link:"/ecl/routing",userPersona:Q.ol.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:v.koM,link:"/ecl/reports",userPersona:Q.ol.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:v.wn1,link:"/ecl/graph",userPersona:Q.ol.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:v.CgH,link:"/config",userPersona:Q.ol.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:v.Psp,link:"/help",userPersona:Q.ol.ALL}]};function n3(K,Fe){if(1&K&&(e.TgZ(0,"mat-option",11),e._uU(1),e.qZA()),2&K){const F=Fe.$implicit;e.Q6J("value",F.index),e.xp6(1),e.AsE(" ",F.lnNode," (",F.lnImplementation,") ")}}function F2(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-select",9),e.NdJ("selectionChange",function(ot){return e.CHM(F),e.oxw().onNodeSelectionChange(ot.value)}),e.YNc(1,n3,2,3,"mat-option",10),e.qZA()}if(2&K){const F=e.oxw();e.Q6J("value",F.selConfigNodeIndex),e.xp6(1),e.Q6J("ngForOf",F.appConfig.nodes)}}function z1(K,Fe){if(1&K&&(e.TgZ(0,"span",21),e.GkF(1,22),e.qZA()),2&K){const F=e.oxw().$implicit;e.oxw(2);const ye=e.MAs(11);e.xp6(1),e.Q6J("ngTemplateOutlet","boltzIconBlock"===F.icon?ye:null)}}function ks(K,Fe){if(1&K&&e._UZ(0,"fa-icon",23),2&K){const F=e.oxw().$implicit;e.Q6J("icon",F.icon)}}function Xa(K,Fe){if(1&K&&(e.TgZ(0,"mat-icon",24),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Oqu(F.icon)}}function gs(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-tree-node",15)(1,"div",16),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw(2).onChildNavClicked(ri)}),e.TgZ(2,"div",17),e.YNc(3,z1,2,1,"span",18),e.YNc(4,ks,1,1,"fa-icon",19),e.YNc(5,Xa,2,1,"mat-icon",20),e.TgZ(6,"span"),e._uU(7),e.qZA()()()()}if(2&K){const F=Fe.$implicit;e.s9C("routerLink",F.link),e.xp6(3),e.Q6J("ngIf","SVG"===F.iconType),e.xp6(1),e.Q6J("ngIf","FA"===F.iconType),e.xp6(1),e.Q6J("ngIf",!F.iconType),e.xp6(2),e.Oqu(F.name)}}function Do(K,Fe){if(1&K&&(e.TgZ(0,"span",33),e.GkF(1,22),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Q6J("ngTemplateOutlet",F.icon)}}function eo(K,Fe){if(1&K&&e._UZ(0,"fa-icon",23),2&K){const F=e.oxw().$implicit;e.Q6J("icon",F.icon)}}function c1(K,Fe){if(1&K&&(e.TgZ(0,"mat-icon",24),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Oqu(F.icon)}}function ho(K,Fe){if(1&K&&(e.TgZ(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),e.YNc(3,Do,2,1,"span",28),e.YNc(4,eo,1,1,"fa-icon",19),e.YNc(5,c1,2,1,"mat-icon",20),e.TgZ(6,"span"),e._uU(7),e.qZA()(),e.TgZ(8,"button",29)(9,"mat-icon",30),e._uU(10),e.qZA()()(),e.TgZ(11,"div",31),e.GkF(12,32),e.qZA()()),2&K){const F=Fe.$implicit,ye=e.oxw(2);e.xp6(3),e.Q6J("ngIf","SVG"===F.iconType),e.xp6(1),e.Q6J("ngIf","FA"===F.iconType),e.xp6(1),e.Q6J("ngIf",!F.iconType),e.xp6(2),e.Oqu(F.name),e.xp6(1),e.uIk("aria-label","toggle "+F.name),e.xp6(2),e.Oqu(ye.treeControlNested.isExpanded(F)?"arrow_drop_up":"arrow_drop_down"),e.xp6(1),e.ekj("tree-children-invisible",!ye.treeControlNested.isExpanded(F))}}function B1(K,Fe){if(1&K&&(e.TgZ(0,"mat-tree",5,12),e.YNc(2,gs,8,5,"mat-tree-node",13),e.YNc(3,ho,13,8,"mat-nested-tree-node",14),e.qZA()),2&K){const F=e.oxw();e.Q6J("dataSource",F.navMenus)("treeControl",F.treeControlNested),e.xp6(3),e.Q6J("matTreeNodeDefWhen",F.hasChild)}}function U1(K,Fe){if(1&K&&(e.TgZ(0,"span",21),e.GkF(1,22),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Q6J("ngTemplateOutlet",F.icon)}}function ga(K,Fe){if(1&K&&e._UZ(0,"fa-icon",36),2&K){const F=e.oxw().$implicit;e.s9C("matTooltip",F.name),e.Q6J("icon",F.icon)}}function Yo(K,Fe){if(1&K&&(e.TgZ(0,"mat-icon",37),e._uU(1),e.qZA()),2&K){const F=e.oxw().$implicit;e.s9C("matTooltip",F.name),e.xp6(1),e.Oqu(F.icon)}}function r3(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-tree-node",16),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw().onShowData(ri)}),e.YNc(1,U1,2,1,"span",18),e.YNc(2,ga,1,2,"fa-icon",34),e.YNc(3,Yo,2,2,"mat-icon",35),e.TgZ(4,"span"),e._uU(5),e.qZA()()}if(2&K){const F=Fe.$implicit;e.xp6(1),e.Q6J("ngIf","SVG"===F.iconType),e.xp6(1),e.Q6J("ngIf","FA"===F.iconType),e.xp6(1),e.Q6J("ngIf",!F.iconType),e.xp6(2),e.Oqu(F.name)}}function d1(K,Fe){if(1&K&&(e.TgZ(0,"span",33),e.GkF(1,22),e.qZA()),2&K){const F=e.oxw().$implicit;e.xp6(1),e.Q6J("ngTemplateOutlet",F.icon)}}function G1(K,Fe){if(1&K&&e._UZ(0,"fa-icon",36),2&K){const F=e.oxw().$implicit;e.s9C("matTooltip",F.name),e.Q6J("icon",F.icon)}}function jo(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"mat-tree-node",16),e.NdJ("click",function(){const ri=e.CHM(F).$implicit;return e.oxw(2).onClick(ri)}),e.YNc(1,d1,2,1,"span",28),e.YNc(2,G1,1,2,"fa-icon",34),e.TgZ(3,"span"),e._uU(4),e.qZA()()}if(2&K){const F=Fe.$implicit;e.xp6(1),e.Q6J("ngIf","SVG"===F.iconType),e.xp6(1),e.Q6J("ngIf","FA"===F.iconType),e.xp6(2),e.Oqu(F.name)}}function Pa(K,Fe){if(1&K&&(e.TgZ(0,"mat-tree",5),e.YNc(1,jo,5,3,"mat-tree-node",6),e.qZA()),2&K){const F=e.oxw();e.Q6J("dataSource",F.navMenusLogout)("treeControl",F.treeControlLogout)}}function Z1(K,Fe){1&K&&(e.O4$(),e.TgZ(0,"svg",38)(1,"g",39)(2,"g",40),e._UZ(3,"circle",41)(4,"path",42)(5,"path",43),e.qZA()()())}let u1=(()=>{class K{constructor(F,ye,ot,ri,en,Kn){this.logger=F,this.commonService=ye,this.sessionService=ot,this.store=ri,this.actions=en,this.rtlEffects=Kn,this.ChildNavClicked=new e.vpe,this.faEject=v.KOR,this.faEye=v.Mdf,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:v.KOR}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:v.Mdf}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=Q.ol,this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x,new h.x],this.treeControlNested=new Ds.VY(Rn=>Rn.children),this.treeControlLogout=new Ds.VY(Rn=>Rn.children),this.treeControlShowData=new Ds.VY(Rn=>Rn.children),this.navMenus=new Is.WX,this.navMenusLogout=new Is.WX,this.navMenusShowData=new Is.WX,this.hasChild=(Rn,sr)=>!!sr.children&&sr.children.length>0,this.version=Ke.q4,Os.LNDChildren&&200===Os.LNDChildren[Os.LNDChildren.length-1].id&&Os.LNDChildren.pop(),this.navMenus.data=Os.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const F=this.sessionService.getItem("token");this.showLogout=!!F,this.flgLoading=!!F,this.store.select(n.Yj).pipe((0,y.R)(this.unSubs[0])).subscribe(ye=>{this.appConfig=ye}),this.store.select(n.gW).pipe((0,y.R)(this.unSubs[1])).subscribe(ye=>{if(this.information=ye.nodeDate,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const ot=this.information.chains[0];this.informationChain.chain=ot.chain,this.informationChain.network=ot.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=ye.selNode,this.settings=this.selNode.settings,this.selConfigNodeIndex=+(ye.selNode.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(ye)}),this.sessionService.watchSession().pipe((0,y.R)(this.unSubs[2])).subscribe(ye=>{this.showLogout=!!ye.token,this.flgLoading=!!ye.token}),this.actions.pipe((0,y.R)(this.unSubs[3]),(0,oe.h)(ye=>ye.type===Q.pg.LOGOUT)).subscribe(ye=>{this.showLogout=!1})}onClick(F){"Logout"===F.name&&(this.store.dispatch((0,Ue.c1)({payload:{data:{type:Q.n_.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,y.R)(this.unSubs[4])).subscribe(ye=>{ye&&(this.showLogout=!1,this.store.dispatch((0,Ue.kS)()))})),this.ChildNavClicked.emit(F)}onChildNavClicked(F){this.ChildNavClicked.emit(F)}filterSideMenuNodes(){var F;switch(null===(F=this.selNode.lnImplementation)||void 0===F?void 0:F.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let F=[];F=JSON.parse(JSON.stringify(Os.LNDChildren)),this.navMenus.data=null==F?void 0:F.filter(ye=>{var ot;return ye.children&&ye.children.length?(ye.children=null===(ot=ye.children)||void 0===ot?void 0:ot.filter(ri=>(ri.userPersona===Q.ol.ALL||ri.userPersona===this.settings.userPersona)&&"/services/loop"!==ri.link&&"/services/boltz"!==ri.link||"/services/loop"===ri.link&&this.settings.swapServerUrl&&""!==this.settings.swapServerUrl.trim()||"/services/boltz"===ri.link&&this.settings.boltzServerUrl&&""!==this.settings.boltzServerUrl.trim()),ye.children.length>0):ye.userPersona===Q.ol.ALL||ye.userPersona===this.settings.userPersona})}loadCLNMenu(){let F=[];F=JSON.parse(JSON.stringify(Os.CLNChildren)),this.navMenus.data=null==F?void 0:F.filter(ye=>{var ot;return ye.children&&ye.children.length&&(ye.children=null===(ot=ye.children)||void 0===ot?void 0:ot.filter(ri=>(ri.userPersona===Q.ol.ALL||ri.userPersona===this.settings.userPersona)&&"/cln/messages"!==ri.link||"/cln/messages"===ri.link&&this.information.api_version&&this.commonService.isVersionCompatible(this.information.api_version,"0.2.2"))),ye.userPersona===Q.ol.ALL||ye.userPersona===this.settings.userPersona})}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Os.ECLChildren))}onShowData(F){this.store.dispatch((0,Ue.tj)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(F){const ye=this.selConfigNodeIndex;this.selConfigNodeIndex=F;const ot=this.appConfig.nodes.find(ri=>+ri.index===F);this.store.dispatch((0,Ue.fk)({payload:{uiMessage:Q.m6.UPDATE_SELECTED_NODE,prevLnNodeIndex:+ye,currentLnNode:ot||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(null),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(Ft.v),e.Y36(Se.m),e.Y36(b.yh),e.Y36(d.eX),e.Y36(ht.V))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-side-navigation"]],viewQuery:function(F,ye){if(1&F&&e.Gf(Is.gi,5),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.tree=ot.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},decls:12,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","90","fxLayoutAlign","start stretch",1,"w-100"],["class","m-2 multi-node-select",3,"value","selectionChange",4,"ngIf"],[1,"w-100"],[3,"dataSource","treeControl",4,"ngIf"],[3,"dataSource","treeControl"],[3,"click",4,"matTreeNodeDef"],["fxLayout","column","fxLayoutAlign","end stretch",1,"w-100"],["boltzIconBlock",""],[1,"m-2","multi-node-select",3,"value","selectionChange"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["tree",""],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink"],[3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],[1,"fa-icon-small","mr-2"],[3,"ngTemplateOutlet"],[1,"fa-icon-small","mr-2",3,"icon"],[1,"mat-icon-36"],["fxLayout","column","matTreeNodeToggle",""],["fxLayout","row","fxLayoutAlign","start center",1,"mat-nested-tree-node-parent"],["fxFlex","89","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","11","mat-icon-button","","fxLayoutAlign","end center"],[1,"mat-icon-rtl-mirror"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"icon","matTooltip",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltipPosition","right",1,"fa-icon-small","mr-2",3,"icon","matTooltip"],["matTooltipPosition","right",1,"mat-icon-36",3,"matTooltip"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,F2,2,2,"mat-select",2),e._UZ(3,"mat-divider",3),e.YNc(4,B1,4,3,"mat-tree",4),e._UZ(5,"mat-divider",3),e.TgZ(6,"mat-tree",5),e.YNc(7,r3,6,4,"mat-tree-node",6),e.qZA()(),e.TgZ(8,"div",7),e.YNc(9,Pa,2,2,"mat-tree",4),e.qZA()(),e.YNc(10,Z1,6,0,"ng-template",null,8,e.W1O)),2&F&&(e.xp6(2),e.Q6J("ngIf",ye.appConfig.nodes.length>1),e.xp6(2),e.Q6J("ngIf",null==ye.settings?null:ye.settings.lnServerUrl),e.xp6(2),e.Q6J("dataSource",ye.navMenusShowData)("treeControl",ye.treeControlShowData),e.xp6(3),e.Q6J("ngIf",ye.showLogout))},directives:[C.xw,C.yH,C.Wh,V.$V,q.O5,Ie.gD,q.sg,le.ey,Ge.d,Is.gi,Is.fQ,Is.uo,Is.eu,I.Od,I.rH,q.tP,B.BN,Yi.Hw,Is.GZ,Te.lW,Is.Ar,Wo.gM],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]}),K})();var V2=p(773);const fo=["sideNavigation"],z2=["sideNavContent"];function a3(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",13),e.NdJ("click",function(){return e.CHM(F),e.oxw().sideNavToggle()}),e.TgZ(1,"mat-icon"),e._uU(2,"menu"),e.qZA()()}if(2&K){const F=e.oxw();e.Q6J("matTooltip",F.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",F.smallScreen)}}function B2(K,Fe){1&K&&(e.O4$(),e._UZ(0,"path",18))}function po(K,Fe){1&K&&(e.O4$(),e._UZ(0,"path",19))}function Ko(K,Fe){if(1&K){const F=e.EpF();e.TgZ(0,"button",14),e.NdJ("click",function(){e.CHM(F);const ot=e.oxw();return ot.flgSidenavPinned=!ot.flgSidenavPinned}),e.O4$(),e.TgZ(1,"svg",15),e.YNc(2,B2,1,0,"path",16),e.YNc(3,po,1,0,"path",17),e.qZA()()}if(2&K){const F=e.oxw();e.Q6J("matTooltip",F.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),e.xp6(2),e.Q6J("ngIf",!F.flgSidenavPinned),e.xp6(1),e.Q6J("ngIf",F.flgSidenavPinned)}}function Bs(K,Fe){if(1&K&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&K){const F=e.oxw();e.xp6(1),e.Oqu(F.information.alias?"RTL - "+F.information.alias:"RTL")}}function Ps(K,Fe){if(1&K&&(e.TgZ(0,"span"),e._uU(1),e.qZA()),2&K){const F=e.oxw();e.xp6(1),e.Oqu(F.information.alias?"Ride The Lightning - "+F.information.alias:"Ride The Lightning")}}function h1(K,Fe){1&K&&(e.TgZ(0,"div",20),e._UZ(1,"mat-spinner",21),e.TgZ(2,"h4"),e._uU(3,"Loading RTL..."),e.qZA()())}const U2=function(K,Fe){return[K,Fe]};let W1=(()=>{class K{constructor(F,ye,ot,ri,en,Kn,Rn,sr,Wr){this.logger=F,this.commonService=ye,this.store=ot,this.actions=ri,this.userIdle=en,this.router=Kn,this.sessionService=Rn,this.breakpointObserver=sr,this.renderer=Wr,this.information={},this.flgLoading=[!0],this.flgSideNavOpened=!0,this.flgCopied=!1,this.accessKey="",this.xSmallScreen=!1,this.smallScreen=!1,this.flgSidenavPinned=!0,this.flgLoggedIn=!1,this.unSubs=[new h.x,new h.x,new h.x,new h.x,new h.x,new h.x,new h.x,new h.x]}ngOnInit(){this.router.events.subscribe(F=>{F instanceof I.m2&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([a.u3.XSmall,a.u3.TabletPortrait,a.u3.Small,a.u3.Medium,a.u3.Large,a.u3.XLarge]).pipe((0,y.R)(this.unSubs[0])).subscribe(F=>{F.breakpoints[a.u3.XSmall]?(this.commonService.setScreenSize(Q.cu.XS),this.smallScreen=!0):F.breakpoints[a.u3.TabletPortrait]?(this.commonService.setScreenSize(Q.cu.SM),this.smallScreen=!0):F.breakpoints[a.u3.Small]||F.breakpoints[a.u3.Medium]?(this.commonService.setScreenSize(Q.cu.MD),this.smallScreen=!1):F.breakpoints[a.u3.Large]?(this.commonService.setScreenSize(Q.cu.LG),this.smallScreen=!1):(this.commonService.setScreenSize(Q.cu.XL),this.smallScreen=!1)}),this.store.dispatch((0,Ue.ey)()),this.accessKey=this.readAccessKey()||"",this.store.select(n.dT).pipe((0,y.R)(this.unSubs[1])).subscribe(F=>{this.settings=F.settings,this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1)}),this.store.select(n.Yj).pipe((0,y.R)(this.unSubs[2])).subscribe(F=>{this.appConfig=F}),this.store.select(n.R4).pipe((0,y.R)(this.unSubs[3])).subscribe(F=>{this.information=F,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,y.R)(this.unSubs[4]),(0,oe.h)(F=>F.type===Q.pg.SET_RTL_CONFIG||F.type===Q.pg.LOGIN||F.type===Q.pg.LOGOUT)).subscribe(F=>{F.type===Q.pg.SET_RTL_CONFIG&&(this.sessionService.getItem("token")||(+F.payload.sso.rtlSSO?!this.accessKey||this.accessKey.trim().length<32?this.router.navigate(["./error"],{state:{errorCode:"406",errorMessage:"Access key too short. It should be at least 32 characters long."}}):this.store.dispatch((0,Ue.x4)({payload:{password:ue(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"]))),F.type===Q.pg.LOGIN&&(this.flgLoggedIn=!0,this.userIdle.startWatching(),this.userIdle.resetTimer(),setTimeout(()=>{this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)},1e3)),F.type===Q.pg.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,y.R)(this.unSubs[5])).subscribe(F=>{this.logger.info("Counting Down: "+(11-F))}),this.userIdle.onTimeout().pipe((0,y.R)(this.unSubs[6])).subscribe(()=>{this.logger.info("Time Out!"),this.sessionService.getItem("token")&&(this.flgLoggedIn=!1,this.logger.warn("Time limit exceeded for session inactivity."),this.store.dispatch((0,Ue.ts)()),this.store.dispatch((0,Ue.qR)({payload:{data:{type:Q.n_.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Ue.kS)()))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const F=window.location.href;return F.includes("access-key=")?F.substring(F.lastIndexOf("access-key=")+11).trim():null}ngAfterViewInit(){(this.smallScreen||!this.flgLoggedIn)&&this.sideNavigation.close(),this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)}sideNavToggle(){this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.toggle()}onNavigationClicked(F){this.smallScreen&&this.sideNavigation.close()}copiedText(F){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+F)}ngOnDestroy(){this.unSubs.forEach(F=>{F.next(),F.complete()})}}return K.\u0275fac=function(F){return new(F||K)(e.Y36(ve.mQ),e.Y36(Ft.v),e.Y36(b.yh),e.Y36(d.eX),e.Y36(_),e.Y36(I.F0),e.Y36(Se.m),e.Y36(a.Yg),e.Y36(e.Qsj))},K.\u0275cmp=e.Xpm({type:K,selectors:[["rtl-app"]],viewQuery:function(F,ye){if(1&F&&(e.Gf(fo,5),e.Gf(z2,5)),2&F){let ot;e.iGM(ot=e.CRH())&&(ye.sideNavigation=ot.first),e.iGM(ot=e.CRH())&&(ye.sideNavContent=ot.first)}},decls:23,vars:15,consts:[["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"padding-gap-x","bg-primary","rtl-top-toolbar"],["class","top-toolbar-icon mr-1","mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],[4,"ngIf"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["sideNavigation",""],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["sideNavContent",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["outlet","outlet"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",1,"top-toolbar-icon","mr-1",3,"matTooltip","matTooltipDisabled","click"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click"],["viewBox","0 0 32 32",1,"top-toolbar-icon","icon-pinned"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z",4,"ngIf"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z",4,"ngIf"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z"],[1,"rtl-spinner"],["color","accent"]],template:function(F,ye){1&F&&(e.TgZ(0,"div",0),e.ALo(1,"lowercase"),e.ALo(2,"lowercase"),e.TgZ(3,"mat-toolbar",1)(4,"div"),e.YNc(5,a3,3,2,"button",2),e.YNc(6,Ko,4,3,"button",3),e.qZA(),e.TgZ(7,"div"),e.YNc(8,Bs,2,1,"span",4),e.YNc(9,Ps,2,1,"span",4),e.qZA(),e.TgZ(10,"div"),e._UZ(11,"rtl-top-menu"),e.qZA()(),e.TgZ(12,"mat-sidenav-container")(13,"mat-sidenav",5,6)(15,"rtl-side-navigation",7),e.NdJ("ChildNavClicked",function(ri){return ye.onNavigationClicked(ri)}),e.qZA()(),e.TgZ(16,"mat-sidenav-content",8,9)(18,"div",10),e._UZ(19,"router-outlet",null,11),e.qZA()(),e._uU(21,"> "),e.qZA(),e.YNc(22,h1,4,0,"div",12),e.qZA()),2&F&&(e.Q6J("ngClass",e.WLB(12,U2,e.lcZ(1,8,ye.settings.themeColor),e.lcZ(2,10,ye.settings.themeMode))),e.xp6(5),e.Q6J("ngIf",ye.flgLoggedIn),e.xp6(1),e.Q6J("ngIf",!ye.smallScreen&&ye.flgLoggedIn),e.xp6(2),e.Q6J("ngIf",ye.smallScreen),e.xp6(1),e.Q6J("ngIf",!ye.smallScreen),e.xp6(4),e.Q6J("opened",ye.flgSideNavOpened&&ye.flgLoggedIn)("mode",ye.flgSidenavPinned&&!ye.smallScreen?"side":"over"),e.xp6(9),e.Q6J("ngIf",!ye.settings.themeColor))},directives:[C.xw,q.mk,Ni.oO,Zo.Ye,C.Wh,q.O5,Te.lW,Wo.gM,Yi.Hw,ka,uo.TM,uo.JX,V.$V,u1,C.yH,uo.Rh,I.lC,V2.Ou],pipes:[q.i8],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[l1.g]}}),K})(),Ns=(()=>{class K{constructor(F){this.sessionService=F}intercept(F,ye){if(this.sessionService.getItem("token")){const ot=F.clone({headers:F.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return ye.handle(ot)}return ye.handle(F)}}return K.\u0275fac=function(F){return new(F||K)(e.LFG(Se.m))},K.\u0275prov=e.Yz7({token:K,factory:K.\u0275fac}),K})();var G2=p(7998),Y1=p(711),J4=p(4947),Qo=p(3289);const qo={userPersona:"OPERATOR",themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1},s3={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},o3={apiURL:"",apisCallStatus:{Login:{status:Q.Bn.UN_INITIATED},IsAuthorized:{status:Q.Bn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:qo,authentication:s3,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,sso:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,allowPasswordUpdate:!0,nodes:[{settings:qo,authentication:s3}]},nodeData:{}},l3=(0,b.Lq)(o3,(0,b.on)(Ue.qi,(K,{payload:Fe})=>{const F=JSON.parse(JSON.stringify(K.apisCallStatus));return Fe.action&&(F[Fe.action]={status:Fe.status,statusCode:Fe.statusCode,message:Fe.message,URL:Fe.URL,filePath:Fe.filePath}),Object.assign(Object.assign({},K),{apisCallStatus:F})}),(0,b.on)(Ue.vI,(K,{payload:Fe})=>Object.assign(Object.assign({},o3),{apisCallStatus:K.apisCallStatus,appConfig:K.appConfig,selNode:Fe})),(0,b.on)(Ue.fk,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{selNode:Fe.currentLnNode})),(0,b.on)(Ue.Tm,(K,{payload:Fe})=>{const F=JSON.parse(JSON.stringify(K.selNode));switch(Fe.service){case Q.JX.BOLTZ:F.settings.boltzServerUrl=Fe.settings.boltzServerUrl;break;case Q.JX.LOOP:F.settings.swapServerUrl=Fe.settings.swapServerUrl;break;case Q.JX.OFFERS:F.settings.enableOffers=Fe.settings.enableOffers}return Object.assign(Object.assign({},K),{selNode:F})}),(0,b.on)(Ue._V,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{nodeData:Fe})),(0,b.on)(Ue.XT,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{appConfig:Fe}))),c3={apisCallStatus:{FetchInfo:{status:Q.Bn.UN_INITIATED},FetchFees:{status:Q.Bn.UN_INITIATED},FetchPeers:{status:Q.Bn.UN_INITIATED},FetchClosedChannels:{status:Q.Bn.UN_INITIATED},FetchPendingChannels:{status:Q.Bn.UN_INITIATED},FetchAllChannels:{status:Q.Bn.UN_INITIATED},FetchBalanceBlockchain:{status:Q.Bn.UN_INITIATED},FetchInvoices:{status:Q.Bn.UN_INITIATED},FetchPayments:{status:Q.Bn.UN_INITIATED},FetchForwardingHistory:{status:Q.Bn.UN_INITIATED},FetchUTXOs:{status:Q.Bn.UN_INITIATED},FetchTransactions:{status:Q.Bn.UN_INITIATED},FetchLightningTransactions:{status:Q.Bn.UN_INITIATED},FetchNetwork:{status:Q.Bn.UN_INITIATED}},nodeSettings:{userPersona:Q.ol.OPERATOR,fiatConversion:!1,channelBackupPath:"",currencyUnits:[],selCurrencyUnit:"",lnImplementation:"",swapServerUrl:""},information:{},peers:[],fees:{channel_fees:[],day_fee_sum:0,week_fee_sum:0,month_fee_sum:0,daily_tx_count:0,weekly_tx_count:0,monthly_tx_count:0,forwarding_events_history:{}},networkInfo:{},blockchainBalance:{total_balance:-1},lightningBalance:{local:-1,remote:-1},channels:[],channelsSummary:{active:{num_channels:0,capacity:0},inactive:{num_channels:0,capacity:0}},closedChannels:[],pendingChannels:{},pendingChannelsSummary:{open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0},transactions:[],utxos:[],listPayments:{payments:[]},listInvoices:{invoices:[]},allLightningTransactions:{listPaymentsAll:{payments:[],first_index_offset:"",last_index_offset:""},listInvoicesAll:{invoices:[],total_invoices:0,last_index_offset:"",first_index_offset:""}},forwardingHistory:{last_offset_index:0,total_fee_msat:0,forwarding_events:[]}};let Z2=!1,j1=!1;const X4=(0,b.Lq)(c3,(0,b.on)(nt.PC,(K,{payload:Fe})=>{const F=JSON.parse(JSON.stringify(K.apisCallStatus));return Fe.action&&(F[Fe.action]={status:Fe.status,statusCode:Fe.statusCode,message:Fe.message,URL:Fe.URL,filePath:Fe.filePath}),Object.assign(Object.assign({},K),{apisCallStatus:F})}),(0,b.on)(nt.JT,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{nodeSettings:Fe})),(0,b.on)(nt.Ll,(K,{payload:Fe})=>Object.assign(Object.assign({},c3),{nodeSettings:Fe})),(0,b.on)(nt.CX,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{information:Fe})),(0,b.on)(nt.Z8,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{peers:Fe})),(0,b.on)(nt.EK,(K,{payload:Fe})=>{const F=[...K.peers],ye=K.peers.findIndex(ot=>ot.pub_key===Fe.pubkey);return ye>-1&&F.splice(ye,1),Object.assign(Object.assign({},K),{peers:F})}),(0,b.on)(nt.YP,(K,{payload:Fe})=>{var F;const ye=K.listInvoices;return null===(F=ye.invoices)||void 0===F||F.unshift(Fe),Object.assign(Object.assign({},K),{listInvoices:ye})}),(0,b.on)(nt.aL,(K,{payload:Fe})=>{var F;const ye=K.listInvoices;return ye.invoices=null===(F=ye.invoices)||void 0===F?void 0:F.map(ot=>ot.payment_request===Fe.payment_request?Fe:ot),Object.assign(Object.assign({},K),{listInvoices:ye})}),(0,b.on)(nt.qY,(K,{payload:Fe})=>{var F;const ye=K.listPayments;return ye.payments=null===(F=ye.payments)||void 0===F?void 0:F.map(ot=>ot.payment_hash===Fe.payment_hash?Fe:ot),Object.assign(Object.assign({},K),{listPayments:ye})}),(0,b.on)(nt.RX,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{fees:Fe})),(0,b.on)(nt._L,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{closedChannels:Fe})),(0,b.on)(nt.TW,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{pendingChannels:Fe.pendingChannels,pendingChannelsSummary:Fe.pendingChannelsSummary})),(0,b.on)(nt.as,(K,{payload:Fe})=>{let F=0,ye=0,ot=0,ri=0,en=0,Kn=0;return Fe&&Fe.forEach(Rn=>{Rn.local_balance||(Rn.local_balance=0),!0===Rn.active?(en+=+Rn.local_balance,ot+=1,Rn.local_balance?F=+F+ +Rn.local_balance:Rn.local_balance=0,Rn.remote_balance?ye=+ye+ +Rn.remote_balance:Rn.remote_balance=0):(Kn+=+Rn.local_balance,ri+=1)}),Object.assign(Object.assign({},K),{channels:Fe,channelsSummary:{active:{num_channels:ot,capacity:en},inactive:{num_channels:ri,capacity:Kn}},lightningBalance:{local:F,remote:ye}})}),(0,b.on)(nt.OG,(K,{payload:Fe})=>{const F=[...K.channels],ye=K.channels.findIndex(ot=>ot.channel_point===Fe.channelPoint);return ye>-1&&F.splice(ye,1),Object.assign(Object.assign({},K),{channels:F})}),(0,b.on)(nt.Jl,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{blockchainBalance:Fe})),(0,b.on)(nt.ks,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{networkInfo:Fe})),(0,b.on)(nt.Nr,(K,{payload:Fe})=>(Fe.total_invoices||(Fe.total_invoices=K.listInvoices.total_invoices),Object.assign(Object.assign({},K),{listInvoices:Fe}))),(0,b.on)(nt.Lf,(K,{payload:Fe})=>{if(Z2=!0,Fe.length&&j1){const F=[...K.utxos];return F.forEach(ye=>{const ot=Fe.find(ri=>{var en;return ri.tx_hash===(null===(en=ye.outpoint)||void 0===en?void 0:en.txid_str)});ye.label=ot&&ot.label?ot.label:""}),Object.assign(Object.assign({},K),{utxos:F,transactions:Fe})}return Object.assign(Object.assign({},K),{transactions:Fe})}),(0,b.on)(nt.UH,(K,{payload:Fe})=>{if(j1=!0,Fe.length&&Z2){const F=[...K.transactions];Fe.forEach(ye=>{const ot=F.find(ri=>{var en;return ri.tx_hash===(null===(en=ye.outpoint)||void 0===en?void 0:en.txid_str)});ye.label=ot&&ot.label?ot.label:""})}return Object.assign(Object.assign({},K),{utxos:Fe})}),(0,b.on)(nt.HI,(K,{payload:Fe})=>{const F={listInvoicesAll:K.allLightningTransactions.listInvoicesAll,listPaymentsAll:Fe};return Object.assign(Object.assign({},K),{listPayments:Fe,allLightningTransactions:F})}),(0,b.on)(nt.Fr,(K,{payload:Fe})=>{const F={listInvoicesAll:Fe.listInvoicesAll,listPaymentsAll:K.listPayments};return Object.assign(Object.assign({},K),{allLightningTransactions:F})}),(0,b.on)(nt.QJ,(K,{payload:Fe})=>{const F=[...K.channels,...K.closedChannels];let ye=Fe.forwarding_events?JSON.parse(JSON.stringify(Fe)):{};return ye.forwarding_events&&(ye=K1(ye,F)),Object.assign(Object.assign({},K),{forwardingHistory:ye})})),K1=(K,Fe)=>(K.forwarding_events.forEach(F=>{var ye,ot;if(Fe&&Fe.length>0)for(let ri=0;ri{const F=JSON.parse(JSON.stringify(K.apisCallStatus));return Fe.action&&(F[Fe.action]={status:Fe.status,statusCode:Fe.statusCode,message:Fe.message,URL:Fe.URL,filePath:Fe.filePath}),Object.assign(Object.assign({},K),{apisCallStatus:F})}),(0,b.on)(wi.oo,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{nodeSettings:Fe})),(0,b.on)(wi.xH,(K,{payload:Fe})=>Object.assign(Object.assign({},ws),{nodeSettings:Fe})),(0,b.on)(wi.CX,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{information:Fe})),(0,b.on)(wi.RX,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{fees:Fe})),(0,b.on)(wi.I8,(K,{payload:Fe})=>Fe.perkb?Object.assign(Object.assign({},K),{feeRatesPerKB:Fe}):Fe.perkw?Object.assign(Object.assign({},K),{feeRatesPerKW:Fe}):Object.assign({},K)),(0,b.on)(wi.Lu,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{balance:Fe})),(0,b.on)(wi.xS,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{localRemoteBalance:Fe})),(0,b.on)(wi.Z8,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{peers:Fe})),(0,b.on)(wi.X3,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{peers:[...K.peers,Fe]})),(0,b.on)(wi.EK,(K,{payload:Fe})=>{const F=[...K.peers],ye=K.peers.findIndex(ot=>ot.id===Fe.id);return ye>-1&&F.splice(ye,1),Object.assign(Object.assign({},K),{peers:F})}),(0,b.on)(wi.as,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{activeChannels:Fe.activeChannels,pendingChannels:Fe.pendingChannels,inactiveChannels:Fe.inactiveChannels})),(0,b.on)(wi.OG,(K,{payload:Fe})=>{const F=[...K.peers];return F.forEach(ye=>{ye.id===Fe.id&&(ye.connected=!1,delete ye.netaddr)}),Object.assign(Object.assign({},K),{peers:F})}),(0,b.on)(wi.HI,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{payments:Fe})),(0,b.on)(wi.QJ,(K,{payload:Fe})=>{const F=[...K.activeChannels,...K.pendingChannels,...K.inactiveChannels],ye=mo(Fe.listForwards,F);switch(Fe.listForwards=ye,Fe.status){case Q.OO.SETTLED:const ot=K.fees;return ot.totalTxCount=Fe.totalForwards||0,Object.assign(Object.assign({},K),{fees:ot,forwardingHistory:Fe});case Q.OO.FAILED:return Object.assign(Object.assign({},K),{failedForwardingHistory:Fe});case Q.OO.LOCAL_FAILED:return Object.assign(Object.assign({},K),{localFailedForwardingHistory:Fe});default:return Object.assign({},K)}}),(0,b.on)(wi.YP,(K,{payload:Fe})=>{var F;const ye=K.invoices;return null===(F=ye.invoices)||void 0===F||F.unshift(Fe),Object.assign(Object.assign({},K),{invoices:ye})}),(0,b.on)(wi.Nr,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{invoices:Fe})),(0,b.on)(wi.aL,(K,{payload:Fe})=>{var F;const ye=K.invoices;return ye.invoices=null===(F=ye.invoices)||void 0===F?void 0:F.map(ot=>ot.label===Fe.label?Fe:ot),Object.assign(Object.assign({},K),{invoices:ye})}),(0,b.on)(wi.UH,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{utxos:Fe})),(0,b.on)(wi.Zu,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{offers:Fe})),(0,b.on)(wi.ZH,(K,{payload:Fe})=>{const F=K.offers;return null==F||F.unshift(Fe),Object.assign(Object.assign({},K),{offers:F})}),(0,b.on)(wi.JK,(K,{payload:Fe})=>{const F=[...K.offers],ye=K.offers.findIndex(ot=>ot.offer_id===Fe.offer.offer_id);return ye>-1&&F.splice(ye,1,Fe.offer),Object.assign(Object.assign({},K),{offers:F})}),(0,b.on)(wi.d7,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{offersBookmarks:Fe})),(0,b.on)(wi.e9,(K,{payload:Fe})=>{const F=[...K.offersBookmarks],ye=F.findIndex(ot=>ot.bolt12===Fe.bolt12);if(ye<0)null==F||F.unshift(Fe);else{const ot=Object.assign({},F[ye]);ot.title=Fe.title,ot.amountmSat=Fe.amountmSat,ot.lastUpdatedAt=Fe.lastUpdatedAt,ot.description=Fe.description,ot.vendor=Fe.vendor,F.splice(ye,1,ot)}return Object.assign(Object.assign({},K),{offersBookmarks:F})}),(0,b.on)(wi.en,(K,{payload:Fe})=>{const F=[...K.offersBookmarks],ye=K.offersBookmarks.findIndex(ot=>ot.bolt12===Fe.bolt12);return ye>-1&&F.splice(ye,1),Object.assign(Object.assign({},K),{offersBookmarks:F})})),mo=(K,Fe)=>(K&&K.length>0?K.forEach((F,ye)=>{var ot;if(Fe&&Fe.length>0)for(let ri=0;ri{const F=JSON.parse(JSON.stringify(K.apisCallStatus));return Fe.action&&(F[Fe.action]={status:Fe.status,statusCode:Fe.statusCode,message:Fe.message,URL:Fe.URL,filePath:Fe.filePath}),Object.assign(Object.assign({},K),{apisCallStatus:F})}),(0,b.on)(jt.Zr,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{nodeSettings:Fe})),(0,b.on)(jt.Fd,(K,{payload:Fe})=>Object.assign(Object.assign({},Y2),{nodeSettings:Fe})),(0,b.on)(jt.CX,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{information:Fe})),(0,b.on)(jt.RX,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{fees:Fe})),(0,b.on)(jt.eN,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{activeChannels:Fe})),(0,b.on)(jt.TW,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{pendingChannels:Fe})),(0,b.on)(jt.i,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{inactiveChannels:Fe})),(0,b.on)(jt.HG,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{channelsStatus:Fe})),(0,b.on)(jt.Bw,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{onchainBalance:Fe})),(0,b.on)(jt.On,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{lightningBalance:Fe})),(0,b.on)(jt.Z8,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{peers:Fe})),(0,b.on)(jt.EK,(K,{payload:Fe})=>{const F=[...K.peers],ye=K.peers.findIndex(ot=>ot.nodeId===Fe.nodeId);return ye>-1&&F.splice(ye,1),Object.assign(Object.assign({},K),{peers:F})}),(0,b.on)(jt.OG,(K,{payload:Fe})=>{const F=[...K.activeChannels],ye=K.activeChannels.findIndex(ot=>ot.channelId===Fe.channelId);return ye>-1&&F.splice(ye,1),Object.assign(Object.assign({},K),{activeChannels:F})}),(0,b.on)(jt.HI,(K,{payload:Fe})=>{var F;if(Fe&&Fe.sent){const ye=[...K.activeChannels,...K.pendingChannels,...K.inactiveChannels];null===(F=Fe.sent)||void 0===F||F.map(ot=>{var ri;const en=K.peers.find(Kn=>Kn.nodeId===ot.recipientNodeId);return ot.recipientNodeAlias=en?en.alias:ot.recipientNodeId,ot.parts&&(null===(ri=ot.parts)||void 0===ri||ri.map(Kn=>{const Rn=ye.find(sr=>sr.channelId===Kn.toChannelId);return Kn.toChannelAlias=Rn?Rn.alias:Kn.toChannelId,ot.parts})),Fe.sent})}if(Fe&&Fe.relayed){const ye=[...K.activeChannels,...K.pendingChannels,...K.inactiveChannels];Fe.relayed.forEach(ot=>{ot=j2(ot,ye)})}return Object.assign(Object.assign({},K),{payments:Fe})}),(0,b.on)(jt.Lf,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{transactions:Fe})),(0,b.on)(jt.YP,(K,{payload:Fe})=>{const F=K.invoices;return null==F||F.unshift(Fe),Object.assign(Object.assign({},K),{invoices:F})}),(0,b.on)(jt.Nr,(K,{payload:Fe})=>Object.assign(Object.assign({},K),{invoices:Fe})),(0,b.on)(jt.aL,(K,{payload:Fe})=>{let F=K.invoices;return F=null==F?void 0:F.map(ye=>{if(ye.paymentHash===Fe.paymentHash){if(Fe.hasOwnProperty("type")){const ot=JSON.parse(JSON.stringify(ye));return ot.amountSettled=Fe.parts&&Fe.parts.length&&Fe.parts.length>0&&Fe.parts[0].amount?(Fe.parts[0].amount||0)/1e3:0,ot.receivedAt=Fe.parts&&Fe.parts.length&&Fe.parts.length>0&&Fe.parts[0].timestamp?Math.round((Fe.parts[0].timestamp||0)/1e3):0,ot.status="received",ot}return Fe}return ye}),Object.assign(Object.assign({},K),{invoices:F})}),(0,b.on)(jt.DJ,(K,{payload:Fe})=>{let F=K.pendingChannels;return F=null==F?void 0:F.map(ye=>{var ot;return ye.channelId===Fe.channelId&&ye.nodeId===Fe.remoteNodeId&&(Fe.currentState=null===(ot=Fe.currentState)||void 0===ot?void 0:ot.replace(/_/g," "),ye.state=Fe.currentState),ye}),Object.assign(Object.assign({},K),{pendingChannels:F})}),(0,b.on)(jt.ti,(K,{payload:Fe})=>{var F,ye,ot;const ri=K.payments,en=j2(Fe,[...K.activeChannels,...K.pendingChannels,...K.inactiveChannels]);en.amountIn=Math.round((Fe.amountIn||0)/1e3),en.amountOut=Math.round((Fe.amountOut||0)/1e3),null===(F=ri.relayed)||void 0===F||F.unshift(en);const Kn=(Fe.amountIn||0)-(Fe.amountOut||0),Rn={localBalance:K.lightningBalance.localBalance+Kn,remoteBalance:K.lightningBalance.remoteBalance-Kn},sr=K.channelsStatus;sr.active&&(sr.active.capacity=((null===(ot=null===(ye=K.channelsStatus)||void 0===ye?void 0:ye.active)||void 0===ot?void 0:ot.capacity)||0)+Kn);const Wr={daily_fee:(K.fees.daily_fee||0)+Kn,daily_txs:(K.fees.daily_txs||0)+1,weekly_fee:(K.fees.weekly_fee||0)+Kn,weekly_txs:(K.fees.weekly_txs||0)+1,monthly_fee:(K.fees.monthly_fee||0)+Kn,monthly_txs:(K.fees.monthly_txs||0)+1},Na=K.activeChannels;let rs=!1,Cs=!1;for(const or of Na){if(or.channelId===Fe.fromChannelId){rs=!0;const as=(or.toLocal||0)+(or.toRemote||0);or.toLocal=(or.toLocal||0)+en.amountIn,or.toRemote=(or.toRemote||0)-en.amountIn,or.balancedness=0===as?1:+(1-Math.abs((or.toLocal-or.toRemote)/as)).toFixed(3)}if(or.channelId===Fe.toChannelId){Cs=!0;const as=(or.toLocal||0)+(or.toRemote||0);or.toLocal=(or.toLocal||0)-en.amountOut,or.toRemote=(or.toRemote||0)+en.amountOut,or.balancedness=0===as?1:+(1-Math.abs((or.toLocal-or.toRemote)/as)).toFixed(3)}if(Cs&&rs)break}return Object.assign(Object.assign({},K),{payments:ri,lightningBalance:Rn,channelStatus:sr,fees:Wr,activeChannels:Na})})),j2=(K,Fe)=>{var F,ye,ot,ri,en,Kn,Rn,sr,Wr,Na,rs,Cs,or,as;if("payment-relayed"===K.type)if(Fe&&Fe.length>0)for(let Pn=0;Pn0)for(let Pn=0;Pn{var Ra;(null===(Ra=Fe[Pn].channelId)||void 0===Ra?void 0:Ra.toString())===hr.channelId&&(hr.channelAlias=Fe[Pn].alias?Fe[Pn].alias:hr.channelId,hr.shortChannelId=Fe[Pn].shortChannelId?Fe[Pn].shortChannelId:"")}),null===(sr=K.outgoing)||void 0===sr||sr.forEach(hr=>{var Ra;(null===(Ra=Fe[Pn].channelId)||void 0===Ra?void 0:Ra.toString())===hr.channelId&&(hr.channelAlias=Fe[Pn].alias?Fe[Pn].alias:hr.channelId,hr.shortChannelId=Fe[Pn].shortChannelId?Fe[Pn].shortChannelId:"")}),Pn===Fe.length-1&&(K.incoming&&K.incoming.length&&K.incoming.length>0&&!K.incoming[0].channelAlias&&(null===(Wr=K.incoming)||void 0===Wr||Wr.forEach(hr=>{var Ra;hr.channelAlias=(null===(Ra=hr.channelId)||void 0===Ra?void 0:Ra.substring(0,17))+"...",hr.shortChannelId=""})),K.outgoing&&K.outgoing.length&&K.outgoing.length>0&&!K.outgoing[0].channelAlias&&(null===(Na=K.outgoing)||void 0===Na||Na.forEach(hr=>{var Ra;hr.channelAlias=(null===(Ra=hr.channelId)||void 0===Ra?void 0:Ra.substring(0,17))+"...",hr.shortChannelId=""})));else null===(rs=K.incoming)||void 0===rs||rs.forEach(Pn=>{var hr;Pn.channelAlias=(null===(hr=Pn.channelId)||void 0===hr?void 0:hr.substring(0,17))+"...",Pn.shortChannelId=""}),null===(Cs=K.outgoing)||void 0===Cs||Cs.forEach(Pn=>{var hr;Pn.channelAlias=(null===(hr=Pn.channelId)||void 0===hr?void 0:hr.substring(0,17))+"...",Pn.shortChannelId=""});K.amountIn=(null===(or=K.incoming)||void 0===or?void 0:or.reduce((Pn,hr)=>Pn+hr.amount,0))||0,K.fromChannelId=K.incoming&&K.incoming.length?K.incoming[0].channelId:"",K.fromChannelAlias=K.incoming&&K.incoming.length?K.incoming[0].channelAlias:"",K.fromShortChannelId=K.incoming&&K.incoming.length?K.incoming[0].shortChannelId:"",K.amountOut=(null===(as=K.outgoing)||void 0===as?void 0:as.reduce((Pn,hr)=>Pn+hr.amount,0))||0,K.toChannelId=K.outgoing&&K.outgoing.length?K.outgoing[0].channelId:"",K.toChannelAlias=K.outgoing&&K.outgoing.length?K.outgoing[0].channelAlias:"",K.toShortChannelId=K.outgoing&&K.outgoing.length?K.outgoing[0].shortChannelId:""}return K};let f1=(()=>{class K{}return K.\u0275fac=function(F){return new(F||K)},K.\u0275mod=e.oAB({type:K,bootstrap:[W1]}),K.\u0275inj=e.cJS({providers:[{provide:M.TP,useClass:Ns,multi:!0},na.a1,Se.m,Eo.D,G2.d,Yr.W,Ft.v,He],imports:[[f.PW,R2.m,Ja,a.xu,t.t6,E.forRoot({idle:3590,timeout:10,ping:12e3}),b.Aw.forRoot({root:l3,lnd:X4,cln:W2,ecl:$4},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),d.sQ.forRoot([ht.V,Y1.l,J4.J,Qo.o]),Ke.NZ.production?[]:N.FT.instrument()]]}),K})();Ke.NZ.production&&(0,e.G48)(),t.q6().bootstrapModule(f1).catch(K=>console.log(K))},7854:(Ve,j)=>{"use strict";function p(Q){return Object.keys(Q).map(Ue=>Q[Ue])}var Q;Object.defineProperty(j,"__esModule",{value:!0}),(Q=j.HashAlgorithms||(j.HashAlgorithms={})).SHA1="sha1",Q.SHA256="sha256",Q.SHA512="sha512";const t=p(j.HashAlgorithms);!function(Q){Q.ASCII="ascii",Q.BASE64="base64",Q.HEX="hex",Q.LATIN1="latin1",Q.UTF8="utf8"}(j.KeyEncodings||(j.KeyEncodings={}));const e=p(j.KeyEncodings);!function(Q){Q.HOTP="hotp",Q.TOTP="totp"}(j.Strategy||(j.Strategy={}));const f=p(j.Strategy),M=()=>{throw new Error("Please provide an options.createDigest implementation.")};function a(Q){return/^(\d+)$/.test(Q)}function b(Q,Ue,ve){return Q.length>=Ue?Q:`${Array(Ue+1).join(ve)}${Q}`.slice(-1*Ue)}function d(Q){const Ue=`otpauth://${Q.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,ve=[];if(f.indexOf(Q.type)<0)throw new Error(`Expecting options.type to be one of ${f.join(", ")}. Received ${Q.type}.`);if("hotp"===Q.type){if(null==Q.counter||"number"!=typeof Q.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');ve.push(`&counter=${Q.counter}`)}return"totp"===Q.type&&Q.step&&ve.push(`&period=${Q.step}`),Q.digits&&ve.push(`&digits=${Q.digits}`),Q.algorithm&&ve.push(`&algorithm=${Q.algorithm.toUpperCase()}`),Q.issuer&&ve.push(`&issuer=${encodeURIComponent(Q.issuer)}`),Ue.replace("{labelPrefix}",encodeURIComponent(Q.issuer||Q.accountName)).replace("{accountName}",encodeURIComponent(Q.accountName)).replace("{secret}",Q.secret).replace("{query}",ve.join(""))}class N{constructor(Ue={}){this._defaultOptions=Object.freeze(js({},Ue)),this._options=Object.freeze({})}create(Ue={}){return new N(Ue)}clone(Ue={}){const ve=this.create(js(js({},this._defaultOptions),Ue));return ve.options=this._options,ve}get options(){return Object.freeze(js(js({},this._defaultOptions),this._options))}set options(Ue){this._options=Object.freeze(js(js({},this._options),Ue))}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function h(Q){if("function"!=typeof Q.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof Q.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof Q.digits)throw new Error("Expecting options.digits to be a number.");if(!Q.algorithm||t.indexOf(Q.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${t.join(", ")}. Received ${Q.algorithm}.`);if(!Q.encoding||e.indexOf(Q.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${e.join(", ")}. Received ${Q.encoding}.`)}const A=(Q,Ue,ve)=>Buffer.from(Ue,ve).toString("hex");function w(){return{algorithm:j.HashAlgorithms.SHA1,createHmacKey:A,createDigest:M,digits:6,encoding:j.KeyEncodings.ASCII}}function D(Q){const Ue=js(js({},w()),Q);return h(Ue),Object.freeze(Ue)}function L(Q){return b(Q.toString(16),16,"0")}function k(Q,Ue){const ve=Buffer.from(Q,"hex"),V=15&ve[ve.length-1],dt=((127&ve[V])<<24|(255&ve[V+1])<<16|(255&ve[V+2])<<8|255&ve[V+3])%Math.pow(10,Ue);return b(String(dt),Ue,"0")}function U(Q,Ue,ve){const V=ve.digest||function S(Q,Ue,ve){const V=L(Ue),De=ve.createHmacKey(ve.algorithm,Q,ve.encoding);return ve.createDigest(ve.algorithm,De,V)}(Q,Ue,ve);return k(V,ve.digits)}function Z(Q,Ue,ve,V){return!!a(Q)&&Q===U(Ue,ve,V)}function Y(Q,Ue,ve,V,De){return d({algorithm:De.algorithm,digits:De.digits,type:j.Strategy.HOTP,accountName:Q,counter:V,issuer:Ue,secret:ve})}class ne extends N{create(Ue={}){return new ne(Ue)}allOptions(){return D(this.options)}generate(Ue,ve){return U(Ue,ve,this.allOptions())}check(Ue,ve,V){return Z(Ue,ve,V,this.allOptions())}verify(Ue){if("object"!=typeof Ue)throw new Error("Expecting argument 0 of verify to be an object");return this.check(Ue.token,Ue.secret,Ue.counter)}keyuri(Ue,ve,V,De){return Y(Ue,ve,V,De,this.allOptions())}}function $(Q){if("number"==typeof Q)return[Math.abs(Q),Math.abs(Q)];if(Array.isArray(Q)){const[Ue,ve]=Q;if("number"==typeof Ue&&"number"==typeof ve)return[Math.abs(Ue),Math.abs(ve)]}throw new Error("Expecting options.window to be an number or [number, number].")}function de(Q){if(h(Q),$(Q.window),"number"!=typeof Q.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof Q.step)throw new Error("Expecting options.step to be a number.")}const te=(Q,Ue,ve)=>{const V=Q.length,De=Buffer.from(Q,Ue).toString("hex");if(V{switch(Q){case j.HashAlgorithms.SHA1:return te(Ue,ve,20);case j.HashAlgorithms.SHA256:return te(Ue,ve,32);case j.HashAlgorithms.SHA512:return te(Ue,ve,64);default:throw new Error(`Expecting algorithm to be one of ${t.join(", ")}. Received ${Q}.`)}};function oe(){return{algorithm:j.HashAlgorithms.SHA1,createDigest:M,createHmacKey:ie,digits:6,encoding:j.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function X(Q){const Ue=js(js({},oe()),Q);return de(Ue),Object.freeze(Ue)}function me(Q,Ue){return Math.floor(Q/Ue/1e3)}function y(Q,Ue){return U(Q,me(Ue.epoch,Ue.step),Ue)}function i(Q,Ue,ve,V){const De=[];if(0===V)return De;for(let dt=1;dt<=V;dt++)De.push(Q+Ue*dt*ve);return De}function r(Q,Ue,ve){const V=$(ve),De=1e3*Ue;return{current:Q,past:i(Q,-1,De,V[0]),future:i(Q,1,De,V[1])}}function u(Q,Ue,ve){return!!a(Q)&&Q===y(Ue,ve)}function c(Q,Ue,ve,V){let De=null;return Q.some((dt,Ie)=>!!u(Ue,ve,$C(js({},V),{epoch:dt}))&&(De=Ie+1,!0)),De}function _(Q,Ue,ve){if(u(Q,Ue,ve))return 0;const V=r(ve.epoch,ve.step,ve.window),De=c(V.past,Q,Ue,ve);return null!==De?-1*De:c(V.future,Q,Ue,ve)}function E(Q,Ue){return Math.floor(Q/1e3)%Ue}function I(Q,Ue){return Ue-E(Q,Ue)}function v(Q,Ue,ve,V){return d({algorithm:V.algorithm,digits:V.digits,step:V.step,type:j.Strategy.TOTP,accountName:Q,issuer:Ue,secret:ve})}class n extends ne{create(Ue={}){return new n(Ue)}allOptions(){return X(this.options)}generate(Ue){return y(Ue,this.allOptions())}checkDelta(Ue,ve){return _(Ue,ve,this.allOptions())}check(Ue,ve){return"number"==typeof this.checkDelta(Ue,ve)}verify(Ue){if("object"!=typeof Ue)throw new Error("Expecting argument 0 of verify to be an object");return this.check(Ue.token,Ue.secret)}timeRemaining(){const Ue=this.allOptions();return I(Ue.epoch,Ue.step)}timeUsed(){const Ue=this.allOptions();return E(Ue.epoch,Ue.step)}keyuri(Ue,ve,V){return v(Ue,ve,V,this.allOptions())}}function C(Q){if(de(Q),"function"!=typeof Q.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(Q.keyEncoder&&"function"!=typeof Q.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function B(){return{algorithm:j.HashAlgorithms.SHA1,createDigest:M,createHmacKey:ie,digits:6,encoding:j.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function P(Q){const Ue=js(js({},B()),Q);return C(Ue),Object.freeze(Ue)}function H(Q,Ue){return Ue.keyEncoder(Q,Ue.encoding)}function q(Q,Ue){return Ue.keyDecoder(Q,Ue.encoding)}function he(Q,Ue){return H(Ue.createRandomBytes(Q,Ue.encoding),Ue)}function _e(Q,Ue){return y(q(Q,Ue),Ue)}function Ne(Q,Ue,ve){return _(Q,q(Ue,ve),ve)}class we extends n{create(Ue={}){return new we(Ue)}allOptions(){return P(this.options)}generate(Ue){return _e(Ue,this.allOptions())}checkDelta(Ue,ve){return Ne(Ue,ve,this.allOptions())}encode(Ue){return H(Ue,this.allOptions())}decode(Ue){return q(Ue,this.allOptions())}generateSecret(Ue=10){return he(Ue,this.allOptions())}}j.Authenticator=we,j.HASH_ALGORITHMS=t,j.HOTP=ne,j.KEY_ENCODINGS=e,j.OTP=N,j.STRATEGY=f,j.TOTP=n,j.authenticatorCheckWithWindow=Ne,j.authenticatorDecoder=q,j.authenticatorDefaultOptions=B,j.authenticatorEncoder=H,j.authenticatorGenerateSecret=he,j.authenticatorOptionValidator=C,j.authenticatorOptions=P,j.authenticatorToken=_e,j.createDigestPlaceholder=M,j.hotpCheck=Z,j.hotpCounter=L,j.hotpCreateHmacKey=A,j.hotpDefaultOptions=w,j.hotpDigestToToken=k,j.hotpKeyuri=Y,j.hotpOptions=D,j.hotpOptionsValidator=h,j.hotpToken=U,j.isTokenValid=a,j.keyuri=d,j.objectValues=p,j.padStart=b,j.totpCheck=u,j.totpCheckByEpoch=c,j.totpCheckWithWindow=_,j.totpCounter=me,j.totpCreateHmacKey=ie,j.totpDefaultOptions=oe,j.totpEpochAvailable=r,j.totpKeyuri=v,j.totpOptions=X,j.totpOptionsValidator=de,j.totpPadSecret=te,j.totpTimeRemaining=I,j.totpTimeUsed=E,j.totpToken=y},6098:(Ve,j,p)=>{"use strict";Object.defineProperty(j,"__esModule",{value:!0});var e=function t(a){return a&&"object"==typeof a&&"default"in a?a.default:a}(p(1348));j.createDigest=(a,b,d)=>e.createHmac(a,Buffer.from(b,"hex")).update(Buffer.from(d,"hex")).digest().toString("hex"),j.createRandomBytes=(a,b)=>e.randomBytes(a).toString(b)},1415:(Ve,j,p)=>{"use strict";Object.defineProperty(j,"__esModule",{value:!0});var e=function t(a){return a&&"object"==typeof a&&"default"in a?a.default:a}(p(2167));j.keyDecoder=(a,b)=>e.decode(a).toString(b),j.keyEncoder=(a,b)=>e.encode(Buffer.from(a,b).toString("ascii")).toString().replace(/=/g,"")},842:(Ve,j,p)=>{"use strict";Object.defineProperty(j,"__esModule",{value:!0});var t=p(6098),e=p(1415),f=p(7854);const M=new f.HOTP({createDigest:t.createDigest}),a=new f.TOTP({createDigest:t.createDigest}),b=new f.Authenticator({createDigest:t.createDigest,createRandomBytes:t.createRandomBytes,keyDecoder:e.keyDecoder,keyEncoder:e.keyEncoder});j.authenticator=b,j.hotp=M,j.totp=a},7977:(Ve,j,p)=>{"use strict";const t=j;t.bignum=p(3854),t.define=p(9516).define,t.base=p(7813),t.constants=p(5459),t.decoders=p(196),t.encoders=p(1131)},9516:(Ve,j,p)=>{"use strict";const t=p(1131),e=p(196),f=p(3894);function a(b,d){this.name=b,this.body=d,this.decoders={},this.encoders={}}j.define=function(d,N){return new a(d,N)},a.prototype._createNamed=function(d){const N=this.name;function h(A){this._initNamed(A,N)}return f(h,d),h.prototype._initNamed=function(w,D){d.call(this,w,D)},new h(this)},a.prototype._getDecoder=function(d){return this.decoders.hasOwnProperty(d=d||"der")||(this.decoders[d]=this._createNamed(e[d])),this.decoders[d]},a.prototype.decode=function(d,N,h){return this._getDecoder(N).decode(d,h)},a.prototype._getEncoder=function(d){return this.encoders.hasOwnProperty(d=d||"der")||(this.encoders[d]=this._createNamed(t[d])),this.encoders[d]},a.prototype.encode=function(d,N,h){return this._getEncoder(N).encode(d,h)}},2769:(Ve,j,p)=>{"use strict";const t=p(3894),e=p(4919).b,f=p(2038).Buffer;function M(b,d){e.call(this,d),f.isBuffer(b)?(this.base=b,this.offset=0,this.length=b.length):this.error("Input not Buffer")}function a(b,d){if(Array.isArray(b))this.length=0,this.value=b.map(function(N){return a.isEncoderBuffer(N)||(N=new a(N,d)),this.length+=N.length,N},this);else if("number"==typeof b){if(!(0<=b&&b<=255))return d.error("non-byte EncoderBuffer value");this.value=b,this.length=1}else if("string"==typeof b)this.value=b,this.length=f.byteLength(b);else{if(!f.isBuffer(b))return d.error("Unsupported type: "+typeof b);this.value=b,this.length=b.length}}t(M,e),j.C=M,M.isDecoderBuffer=function(d){return d instanceof M||"object"==typeof d&&f.isBuffer(d.base)&&"DecoderBuffer"===d.constructor.name&&"number"==typeof d.offset&&"number"==typeof d.length&&"function"==typeof d.save&&"function"==typeof d.restore&&"function"==typeof d.isEmpty&&"function"==typeof d.readUInt8&&"function"==typeof d.skip&&"function"==typeof d.raw},M.prototype.save=function(){return{offset:this.offset,reporter:e.prototype.save.call(this)}},M.prototype.restore=function(d){const N=new M(this.base);return N.offset=d.offset,N.length=this.offset,this.offset=d.offset,e.prototype.restore.call(this,d.reporter),N},M.prototype.isEmpty=function(){return this.offset===this.length},M.prototype.readUInt8=function(d){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(d||"DecoderBuffer overrun")},M.prototype.skip=function(d,N){if(!(this.offset+d<=this.length))return this.error(N||"DecoderBuffer overrun");const h=new M(this.base);return h._reporterState=this._reporterState,h.offset=this.offset,h.length=this.offset+d,this.offset+=d,h},M.prototype.raw=function(d){return this.base.slice(d?d.offset:this.offset,this.length)},j.R=a,a.isEncoderBuffer=function(d){return d instanceof a||"object"==typeof d&&"EncoderBuffer"===d.constructor.name&&"number"==typeof d.length&&"function"==typeof d.join},a.prototype.join=function(d,N){return d||(d=f.alloc(this.length)),N||(N=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(h){h.join(d,N),N+=h.length}):("number"==typeof this.value?d[N]=this.value:"string"==typeof this.value?d.write(this.value,N):f.isBuffer(this.value)&&this.value.copy(d,N),N+=this.length)),d}},7813:(Ve,j,p)=>{"use strict";const t=j;t.Reporter=p(4919).b,t.DecoderBuffer=p(2769).C,t.EncoderBuffer=p(2769).R,t.Node=p(1430)},1430:(Ve,j,p)=>{"use strict";const t=p(4919).b,e=p(2769).R,f=p(2769).C,M=p(2391),a=["seq","seqof","set","setof","objid","bool","gentime","utctime","null_","enum","int","objDesc","bitstr","bmpstr","charstr","genstr","graphstr","ia5str","iso646str","numstr","octstr","printstr","t61str","unistr","utf8str","videostr"],b=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(a);function N(A,w,D){const L={};this._baseState=L,L.name=D,L.enc=A,L.parent=w||null,L.children=null,L.tag=null,L.args=null,L.reverseArgs=null,L.choice=null,L.optional=!1,L.any=!1,L.obj=!1,L.use=null,L.useDecoder=null,L.key=null,L.default=null,L.explicit=null,L.implicit=null,L.contains=null,L.parent||(L.children=[],this._wrap())}Ve.exports=N;const h=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];N.prototype.clone=function(){const w=this._baseState,D={};h.forEach(function(k){D[k]=w[k]});const L=new this.constructor(D.parent);return L._baseState=D,L},N.prototype._wrap=function(){const w=this._baseState;b.forEach(function(D){this[D]=function(){const k=new this.constructor(this);return w.children.push(k),k[D].apply(k,arguments)}},this)},N.prototype._init=function(w){const D=this._baseState;M(null===D.parent),w.call(this),D.children=D.children.filter(function(L){return L._baseState.parent===this},this),M.equal(D.children.length,1,"Root node can have only one child")},N.prototype._useArgs=function(w){const D=this._baseState,L=w.filter(function(k){return k instanceof this.constructor},this);w=w.filter(function(k){return!(k instanceof this.constructor)},this),0!==L.length&&(M(null===D.children),D.children=L,L.forEach(function(k){k._baseState.parent=this},this)),0!==w.length&&(M(null===D.args),D.args=w,D.reverseArgs=w.map(function(k){if("object"!=typeof k||k.constructor!==Object)return k;const S={};return Object.keys(k).forEach(function(U){U==(0|U)&&(U|=0),S[k[U]]=U}),S}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(A){N.prototype[A]=function(){throw new Error(A+" not implemented for encoding: "+this._baseState.enc)}}),a.forEach(function(A){N.prototype[A]=function(){const D=this._baseState,L=Array.prototype.slice.call(arguments);return M(null===D.tag),D.tag=A,this._useArgs(L),this}}),N.prototype.use=function(w){M(w);const D=this._baseState;return M(null===D.use),D.use=w,this},N.prototype.optional=function(){return this._baseState.optional=!0,this},N.prototype.def=function(w){const D=this._baseState;return M(null===D.default),D.default=w,D.optional=!0,this},N.prototype.explicit=function(w){const D=this._baseState;return M(null===D.explicit&&null===D.implicit),D.explicit=w,this},N.prototype.implicit=function(w){const D=this._baseState;return M(null===D.explicit&&null===D.implicit),D.implicit=w,this},N.prototype.obj=function(){const w=this._baseState,D=Array.prototype.slice.call(arguments);return w.obj=!0,0!==D.length&&this._useArgs(D),this},N.prototype.key=function(w){const D=this._baseState;return M(null===D.key),D.key=w,this},N.prototype.any=function(){return this._baseState.any=!0,this},N.prototype.choice=function(w){const D=this._baseState;return M(null===D.choice),D.choice=w,this._useArgs(Object.keys(w).map(function(L){return w[L]})),this},N.prototype.contains=function(w){const D=this._baseState;return M(null===D.use),D.contains=w,this},N.prototype._decode=function(w,D){const L=this._baseState;if(null===L.parent)return w.wrapResult(L.children[0]._decode(w,D));let Z,k=L.default,S=!0,U=null;if(null!==L.key&&(U=w.enterKey(L.key)),L.optional){let Y=null;if(null!==L.explicit?Y=L.explicit:null!==L.implicit?Y=L.implicit:null!==L.tag&&(Y=L.tag),null!==Y||L.any){if(S=this._peekTag(w,Y,L.any),w.isError(S))return S}else{const ne=w.save();try{null===L.choice?this._decodeGeneric(L.tag,w,D):this._decodeChoice(w,D),S=!0}catch($){S=!1}w.restore(ne)}}if(L.obj&&S&&(Z=w.enterObject()),S){if(null!==L.explicit){const ne=this._decodeTag(w,L.explicit);if(w.isError(ne))return ne;w=ne}const Y=w.offset;if(null===L.use&&null===L.choice){let ne;L.any&&(ne=w.save());const $=this._decodeTag(w,null!==L.implicit?L.implicit:L.tag,L.any);if(w.isError($))return $;L.any?k=w.raw(ne):w=$}if(D&&D.track&&null!==L.tag&&D.track(w.path(),Y,w.length,"tagged"),D&&D.track&&null!==L.tag&&D.track(w.path(),w.offset,w.length,"content"),L.any||(k=null===L.choice?this._decodeGeneric(L.tag,w,D):this._decodeChoice(w,D)),w.isError(k))return k;if(!L.any&&null===L.choice&&null!==L.children&&L.children.forEach(function($){$._decode(w,D)}),L.contains&&("octstr"===L.tag||"bitstr"===L.tag)){const ne=new f(k);k=this._getUse(L.contains,w._reporterState.obj)._decode(ne,D)}}return L.obj&&S&&(k=w.leaveObject(Z)),null===L.key||null===k&&!0!==S?null!==U&&w.exitKey(U):w.leaveKey(U,L.key,k),k},N.prototype._decodeGeneric=function(w,D,L){const k=this._baseState;return"seq"===w||"set"===w?null:"seqof"===w||"setof"===w?this._decodeList(D,w,k.args[0],L):/str$/.test(w)?this._decodeStr(D,w,L):"objid"===w&&k.args?this._decodeObjid(D,k.args[0],k.args[1],L):"objid"===w?this._decodeObjid(D,null,null,L):"gentime"===w||"utctime"===w?this._decodeTime(D,w,L):"null_"===w?this._decodeNull(D,L):"bool"===w?this._decodeBool(D,L):"objDesc"===w?this._decodeStr(D,w,L):"int"===w||"enum"===w?this._decodeInt(D,k.args&&k.args[0],L):null!==k.use?this._getUse(k.use,D._reporterState.obj)._decode(D,L):D.error("unknown tag: "+w)},N.prototype._getUse=function(w,D){const L=this._baseState;return L.useDecoder=this._use(w,D),M(null===L.useDecoder._baseState.parent),L.useDecoder=L.useDecoder._baseState.children[0],L.implicit!==L.useDecoder._baseState.implicit&&(L.useDecoder=L.useDecoder.clone(),L.useDecoder._baseState.implicit=L.implicit),L.useDecoder},N.prototype._decodeChoice=function(w,D){const L=this._baseState;let k=null,S=!1;return Object.keys(L.choice).some(function(U){const Z=w.save(),Y=L.choice[U];try{const ne=Y._decode(w,D);if(w.isError(ne))return!1;k={type:U,value:ne},S=!0}catch(ne){return w.restore(Z),!1}return!0},this),S?k:w.error("Choice not matched")},N.prototype._createEncoderBuffer=function(w){return new e(w,this.reporter)},N.prototype._encode=function(w,D,L){const k=this._baseState;if(null!==k.default&&k.default===w)return;const S=this._encodeValue(w,D,L);return void 0===S||this._skipDefault(S,D,L)?void 0:S},N.prototype._encodeValue=function(w,D,L){const k=this._baseState;if(null===k.parent)return k.children[0]._encode(w,D||new t);let S=null;if(this.reporter=D,k.optional&&void 0===w){if(null===k.default)return;w=k.default}let U=null,Z=!1;if(k.any)S=this._createEncoderBuffer(w);else if(k.choice)S=this._encodeChoice(w,D);else if(k.contains)U=this._getUse(k.contains,L)._encode(w,D),Z=!0;else if(k.children)U=k.children.map(function(Y){if("null_"===Y._baseState.tag)return Y._encode(null,D,w);if(null===Y._baseState.key)return D.error("Child should have a key");const ne=D.enterKey(Y._baseState.key);if("object"!=typeof w)return D.error("Child expected, but input is not object");const $=Y._encode(w[Y._baseState.key],D,w);return D.leaveKey(ne),$},this).filter(function(Y){return Y}),U=this._createEncoderBuffer(U);else if("seqof"===k.tag||"setof"===k.tag){if(!k.args||1!==k.args.length)return D.error("Too many args for : "+k.tag);if(!Array.isArray(w))return D.error("seqof/setof, but data is not Array");const Y=this.clone();Y._baseState.implicit=null,U=this._createEncoderBuffer(w.map(function(ne){return this._getUse(this._baseState.args[0],w)._encode(ne,D)},Y))}else null!==k.use?S=this._getUse(k.use,L)._encode(w,D):(U=this._encodePrimitive(k.tag,w),Z=!0);if(!k.any&&null===k.choice){const Y=null!==k.implicit?k.implicit:k.tag,ne=null===k.implicit?"universal":"context";null===Y?null===k.use&&D.error("Tag could be omitted only for .use()"):null===k.use&&(S=this._encodeComposite(Y,Z,ne,U))}return null!==k.explicit&&(S=this._encodeComposite(k.explicit,!1,"context",S)),S},N.prototype._encodeChoice=function(w,D){const L=this._baseState,k=L.choice[w.type];return k||M(!1,w.type+" not found in "+JSON.stringify(Object.keys(L.choice))),k._encode(w.value,D)},N.prototype._encodePrimitive=function(w,D){const L=this._baseState;if(/str$/.test(w))return this._encodeStr(D,w);if("objid"===w&&L.args)return this._encodeObjid(D,L.reverseArgs[0],L.args[1]);if("objid"===w)return this._encodeObjid(D,null,null);if("gentime"===w||"utctime"===w)return this._encodeTime(D,w);if("null_"===w)return this._encodeNull();if("int"===w||"enum"===w)return this._encodeInt(D,L.args&&L.reverseArgs[0]);if("bool"===w)return this._encodeBool(D);if("objDesc"===w)return this._encodeStr(D,w);throw new Error("Unsupported tag: "+w)},N.prototype._isNumstr=function(w){return/^[0-9 ]*$/.test(w)},N.prototype._isPrintstr=function(w){return/^[A-Za-z0-9 '()+,-./:=?]*$/.test(w)}},4919:(Ve,j,p)=>{"use strict";const t=p(3894);function e(M){this._reporterState={obj:null,path:[],options:M||{},errors:[]}}function f(M,a){this.path=M,this.rethrow(a)}j.b=e,e.prototype.isError=function(a){return a instanceof f},e.prototype.save=function(){const a=this._reporterState;return{obj:a.obj,pathLen:a.path.length}},e.prototype.restore=function(a){const b=this._reporterState;b.obj=a.obj,b.path=b.path.slice(0,a.pathLen)},e.prototype.enterKey=function(a){return this._reporterState.path.push(a)},e.prototype.exitKey=function(a){const b=this._reporterState;b.path=b.path.slice(0,a-1)},e.prototype.leaveKey=function(a,b,d){const N=this._reporterState;this.exitKey(a),null!==N.obj&&(N.obj[b]=d)},e.prototype.path=function(){return this._reporterState.path.join("/")},e.prototype.enterObject=function(){const a=this._reporterState,b=a.obj;return a.obj={},b},e.prototype.leaveObject=function(a){const b=this._reporterState,d=b.obj;return b.obj=a,d},e.prototype.error=function(a){let b;const d=this._reporterState,N=a instanceof f;if(b=N?a:new f(d.path.map(function(h){return"["+JSON.stringify(h)+"]"}).join(""),a.message||a,a.stack),!d.options.partial)throw b;return N||d.errors.push(b),b},e.prototype.wrapResult=function(a){const b=this._reporterState;return b.options.partial?{result:this.isError(a)?null:a,errors:b.errors}:a},t(f,Error),f.prototype.rethrow=function(a){if(this.message=a+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,f),!this.stack)try{throw new Error(this.message)}catch(b){this.stack=b.stack}return this}},5496:(Ve,j)=>{"use strict";function p(t){const e={};return Object.keys(t).forEach(function(f){(0|f)==f&&(f|=0),e[t[f]]=f}),e}j.tagClass={0:"universal",1:"application",2:"context",3:"private"},j.tagClassByName=p(j.tagClass),j.tag={0:"end",1:"bool",2:"int",3:"bitstr",4:"octstr",5:"null_",6:"objid",7:"objDesc",8:"external",9:"real",10:"enum",11:"embed",12:"utf8str",13:"relativeOid",16:"seq",17:"set",18:"numstr",19:"printstr",20:"t61str",21:"videostr",22:"ia5str",23:"utctime",24:"gentime",25:"graphstr",26:"iso646str",27:"genstr",28:"unistr",29:"charstr",30:"bmpstr"},j.tagByName=p(j.tag)},5459:(Ve,j,p)=>{"use strict";const t=j;t._reverse=function(f){const M={};return Object.keys(f).forEach(function(a){(0|a)==a&&(a|=0),M[f[a]]=a}),M},t.der=p(5496)},7127:(Ve,j,p)=>{"use strict";const t=p(3894),e=p(3854),f=p(2769).C,M=p(1430),a=p(5496);function b(A){this.enc="der",this.name=A.name,this.entity=A,this.tree=new d,this.tree._init(A.body)}function d(A){M.call(this,"der",A)}function N(A,w){let D=A.readUInt8(w);if(A.isError(D))return D;const L=a.tagClass[D>>6],k=0==(32&D);if(31==(31&D)){let U=D;for(D=0;128==(128&U);){if(U=A.readUInt8(w),A.isError(U))return U;D<<=7,D|=127&U}}else D&=31;return{cls:L,primitive:k,tag:D,tagStr:a.tag[D]}}function h(A,w,D){let L=A.readUInt8(D);if(A.isError(L))return L;if(!w&&128===L)return null;if(0==(128&L))return L;const k=127&L;if(k>4)return A.error("length octect is too long");L=0;for(let S=0;S{"use strict";const t=j;t.der=p(7127),t.pem=p(9617)},9617:(Ve,j,p)=>{"use strict";const t=p(3894),e=p(2038).Buffer,f=p(7127);function M(a){f.call(this,a),this.enc="pem"}t(M,f),Ve.exports=M,M.prototype.decode=function(b,d){const N=b.toString().split(/[\r\n]+/g),h=d.label.toUpperCase(),A=/^-----(BEGIN|END) ([^-]+)-----$/;let w=-1,D=-1;for(let S=0;S{"use strict";const t=p(3894),e=p(2038).Buffer,f=p(1430),M=p(5496);function a(h){this.enc="der",this.name=h.name,this.entity=h,this.tree=new b,this.tree._init(h.body)}function b(h){f.call(this,"der",h)}function d(h){return h<10?"0"+h:h}Ve.exports=a,a.prototype.encode=function(A,w){return this.tree._encode(A,w).join()},t(b,f),b.prototype._encodeComposite=function(A,w,D,L){const k=function N(h,A,w,D){let L;if("seqof"===h?h="seq":"setof"===h&&(h="set"),M.tagByName.hasOwnProperty(h))L=M.tagByName[h];else{if("number"!=typeof h||(0|h)!==h)return D.error("Unknown tag: "+h);L=h}return L>=31?D.error("Multi-octet tag encoding unsupported"):(A||(L|=32),L|=M.tagClassByName[w||"universal"]<<6,L)}(A,w,D,this.reporter);if(L.length<128){const Z=e.alloc(2);return Z[0]=k,Z[1]=L.length,this._createEncoderBuffer([Z,L])}let S=1;for(let Z=L.length;Z>=256;Z>>=8)S++;const U=e.alloc(2+S);U[0]=k,U[1]=128|S;for(let Z=1+S,Y=L.length;Y>0;Z--,Y>>=8)U[Z]=255&Y;return this._createEncoderBuffer([U,L])},b.prototype._encodeStr=function(A,w){if("bitstr"===w)return this._createEncoderBuffer([0|A.unused,A.data]);if("bmpstr"===w){const D=e.alloc(2*A.length);for(let L=0;L=40)return this.reporter.error("Second objid identifier OOB");A.splice(0,2,40*A[0]+A[1])}let L=0;for(let U=0;U=128;Z>>=7)L++}const k=e.alloc(L);let S=k.length-1;for(let U=A.length-1;U>=0;U--){let Z=A[U];for(k[S--]=127&Z;(Z>>=7)>0;)k[S--]=128|127&Z}return this._createEncoderBuffer(k)},b.prototype._encodeTime=function(A,w){let D;const L=new Date(A);return"gentime"===w?D=[d(L.getUTCFullYear()),d(L.getUTCMonth()+1),d(L.getUTCDate()),d(L.getUTCHours()),d(L.getUTCMinutes()),d(L.getUTCSeconds()),"Z"].join(""):"utctime"===w?D=[d(L.getUTCFullYear()%100),d(L.getUTCMonth()+1),d(L.getUTCDate()),d(L.getUTCHours()),d(L.getUTCMinutes()),d(L.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+w+" time is not supported yet"),this._encodeStr(D,"octstr")},b.prototype._encodeNull=function(){return this._createEncoderBuffer("")},b.prototype._encodeInt=function(A,w){if("string"==typeof A){if(!w)return this.reporter.error("String int or enum given, but no values map");if(!w.hasOwnProperty(A))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(A));A=w[A]}if("number"!=typeof A&&!e.isBuffer(A)){const k=A.toArray();!A.sign&&128&k[0]&&k.unshift(0),A=e.from(k)}if(e.isBuffer(A)){let k=A.length;0===A.length&&k++;const S=e.alloc(k);return A.copy(S),0===A.length&&(S[0]=0),this._createEncoderBuffer(S)}if(A<128)return this._createEncoderBuffer(A);if(A<256)return this._createEncoderBuffer([0,A]);let D=1;for(let k=A;k>=256;k>>=8)D++;const L=new Array(D);for(let k=L.length-1;k>=0;k--)L[k]=255&A,A>>=8;return 128&L[0]&&L.unshift(0),this._createEncoderBuffer(e.from(L))},b.prototype._encodeBool=function(A){return this._createEncoderBuffer(A?255:0)},b.prototype._use=function(A,w){return"function"==typeof A&&(A=A(w)),A._getEncoder("der").tree},b.prototype._skipDefault=function(A,w,D){const L=this._baseState;let k;if(null===L.default)return!1;const S=A.join();if(void 0===L.defaultBuffer&&(L.defaultBuffer=this._encodeValue(L.default,w,D).join()),S.length!==L.defaultBuffer.length)return!1;for(k=0;k{"use strict";const t=j;t.der=p(6374),t.pem=p(3530)},3530:(Ve,j,p)=>{"use strict";const t=p(3894),e=p(6374);function f(M){e.call(this,M),this.enc="pem"}t(f,e),Ve.exports=f,f.prototype.encode=function(a,b){const N=e.prototype.encode.call(this,a).toString("base64"),h=["-----BEGIN "+b.label+"-----"];for(let A=0;A=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function N(y,i,r){var u=d(y,r);return r-1>=i&&(u|=d(y,r-1)<<4),u}function h(y,i,r,u){for(var c=0,_=Math.min(y.length,r),E=i;E<_;E++){var I=y.charCodeAt(E)-48;c*=u,c+=I>=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[_]|=(E=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);else if("le"===u)for(c=0,_=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=N(i,r,c)<<_,this.words[E]|=67108863&I,_>=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,_=1;_<=67108863;_*=r)c++;c--,_=_/r|0;for(var E=i.length-u,I=E%c,v=Math.min(E,E-I)+u,n=0,C=u;C1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var A=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(y,i,r){r.negative=i.negative^y.negative;var u=y.length+i.length|0;r.length=u,u=u-1|0;var c=0|y.words[0],_=0|i.words[0],E=c*_,v=E/67108864|0;r.words[0]=67108863&E;for(var n=1;n>>26,B=67108863&v,P=Math.min(n,i.length-1),H=Math.max(0,n-y.length+1);H<=P;H++)C+=(E=(c=0|y.words[n-H|0])*(_=0|i.words[H])+B)/67108864|0,B=67108863&E;r.words[n]=0|B,v=0|C}return 0!==v?r.words[n]=0|v:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,_=0,E=0;E>>24-c&16777215)||E!==this.length-1?A[6-v.length]+v+u:v+u,(c+=2)>=26&&(c-=26,E--)}for(0!==_&&(u=_.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],C=D[i];u="";var B=this.clone();for(B.negative=0;!B.isZero();){var P=B.modn(C).toString(i);u=(B=B.idivn(C)).isZero()?P+u:A[n-P.length]+P+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==b),this.toArrayLike(b,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),_=u||Math.max(1,c);f(c<=_,"byte array longer than desired length"),f(_>0,"Requested array length <= 0"),this.strip();var v,n,E="le"===r,I=new i(_),C=this.clone();if(E){for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[n]=v;for(;n<_;n++)I[n]=0}else{for(n=0;n<_-c;n++)I[n]=0;for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[_-n-1]=v}return I},a.prototype._countBits=Math.clz32?function(i){return 32-Math.clz32(i)}:function(i){var r=i,u=0;return r>=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var _=0,E=0;E>>26;for(;0!==_&&E>>26;if(this.length=u.length,0!==_)this.words[this.length]=_,this.length++;else if(u!==this)for(;Ei.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,_,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,_=i):(c=i,_=this);for(var E=0,I=0;I<_.length;I++)E=(r=(0|c.words[I])-(0|_.words[I])+E)>>26,this.words[I]=67108863&r;for(;0!==E&&I>26,this.words[I]=67108863&r;if(0===E&&I>>13,q=0|c[1],he=8191&q,_e=q>>>13,Ne=0|c[2],we=8191&Ne,Q=Ne>>>13,Ue=0|c[3],ve=8191&Ue,V=Ue>>>13,De=0|c[4],dt=8191&De,Ie=De>>>13,Ae=0|c[5],le=8191&Ae,Te=Ae>>>13,xe=0|c[6],W=8191&xe,ee=xe>>>13,ue=0|c[7],Ce=8191&ue,Le=ue>>>13,ut=0|c[8],ht=8191&ut,It=ut>>>13,ui=0|c[9],Wt=8191&ui,Gt=ui>>>13,hi=0|_[0],xt=8191&hi,Nt=hi>>>13,Ct=0|_[1],et=8191&Ct,yt=Ct>>>13,ei=0|_[2],Yt=8191&ei,Pe=ei>>>13,Oe=0|_[3],ce=8191&Oe,be=Oe>>>13,pt=0|_[4],mt=8191&pt,Ht=pt>>>13,it=0|_[5],Re=8191&it,tt=it>>>13,Xe=0|_[6],Se=8191&Xe,Ge=Xe>>>13,at=0|_[7],st=8191&at,bt=at>>>13,gi=0|_[8],qt=8191&gi,Xt=gi>>>13,qi=0|_[9],fi=8191&qi,si=qi>>>13;u.negative=i.negative^r.negative,u.length=19;var $i=(I+(v=Math.imul(P,xt))|0)+((8191&(n=(n=Math.imul(P,Nt))+Math.imul(H,xt)|0))<<13)|0;I=((C=Math.imul(H,Nt))+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,v=Math.imul(he,xt),n=(n=Math.imul(he,Nt))+Math.imul(_e,xt)|0,C=Math.imul(_e,Nt);var Bi=(I+(v=v+Math.imul(P,et)|0)|0)+((8191&(n=(n=n+Math.imul(P,yt)|0)+Math.imul(H,et)|0))<<13)|0;I=((C=C+Math.imul(H,yt)|0)+(n>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,v=Math.imul(we,xt),n=(n=Math.imul(we,Nt))+Math.imul(Q,xt)|0,C=Math.imul(Q,Nt),v=v+Math.imul(he,et)|0,n=(n=n+Math.imul(he,yt)|0)+Math.imul(_e,et)|0,C=C+Math.imul(_e,yt)|0;var zi=(I+(v=v+Math.imul(P,Yt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Pe)|0)+Math.imul(H,Yt)|0))<<13)|0;I=((C=C+Math.imul(H,Pe)|0)+(n>>>13)|0)+(zi>>>26)|0,zi&=67108863,v=Math.imul(ve,xt),n=(n=Math.imul(ve,Nt))+Math.imul(V,xt)|0,C=Math.imul(V,Nt),v=v+Math.imul(we,et)|0,n=(n=n+Math.imul(we,yt)|0)+Math.imul(Q,et)|0,C=C+Math.imul(Q,yt)|0,v=v+Math.imul(he,Yt)|0,n=(n=n+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0,C=C+Math.imul(_e,Pe)|0;var Ui=(I+(v=v+Math.imul(P,ce)|0)|0)+((8191&(n=(n=n+Math.imul(P,be)|0)+Math.imul(H,ce)|0))<<13)|0;I=((C=C+Math.imul(H,be)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(dt,xt),n=(n=Math.imul(dt,Nt))+Math.imul(Ie,xt)|0,C=Math.imul(Ie,Nt),v=v+Math.imul(ve,et)|0,n=(n=n+Math.imul(ve,yt)|0)+Math.imul(V,et)|0,C=C+Math.imul(V,yt)|0,v=v+Math.imul(we,Yt)|0,n=(n=n+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,C=C+Math.imul(Q,Pe)|0,v=v+Math.imul(he,ce)|0,n=(n=n+Math.imul(he,be)|0)+Math.imul(_e,ce)|0,C=C+Math.imul(_e,be)|0;var ze=(I+(v=v+Math.imul(P,mt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ht)|0)+Math.imul(H,mt)|0))<<13)|0;I=((C=C+Math.imul(H,Ht)|0)+(n>>>13)|0)+(ze>>>26)|0,ze&=67108863,v=Math.imul(le,xt),n=(n=Math.imul(le,Nt))+Math.imul(Te,xt)|0,C=Math.imul(Te,Nt),v=v+Math.imul(dt,et)|0,n=(n=n+Math.imul(dt,yt)|0)+Math.imul(Ie,et)|0,C=C+Math.imul(Ie,yt)|0,v=v+Math.imul(ve,Yt)|0,n=(n=n+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,C=C+Math.imul(V,Pe)|0,v=v+Math.imul(we,ce)|0,n=(n=n+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,C=C+Math.imul(Q,be)|0,v=v+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0,C=C+Math.imul(_e,Ht)|0;var Tt=(I+(v=v+Math.imul(P,Re)|0)|0)+((8191&(n=(n=n+Math.imul(P,tt)|0)+Math.imul(H,Re)|0))<<13)|0;I=((C=C+Math.imul(H,tt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,v=Math.imul(W,xt),n=(n=Math.imul(W,Nt))+Math.imul(ee,xt)|0,C=Math.imul(ee,Nt),v=v+Math.imul(le,et)|0,n=(n=n+Math.imul(le,yt)|0)+Math.imul(Te,et)|0,C=C+Math.imul(Te,yt)|0,v=v+Math.imul(dt,Yt)|0,n=(n=n+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,C=C+Math.imul(Ie,Pe)|0,v=v+Math.imul(ve,ce)|0,n=(n=n+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,C=C+Math.imul(V,be)|0,v=v+Math.imul(we,mt)|0,n=(n=n+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,C=C+Math.imul(Q,Ht)|0,v=v+Math.imul(he,Re)|0,n=(n=n+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0,C=C+Math.imul(_e,tt)|0;var pe=(I+(v=v+Math.imul(P,Se)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ge)|0)+Math.imul(H,Se)|0))<<13)|0;I=((C=C+Math.imul(H,Ge)|0)+(n>>>13)|0)+(pe>>>26)|0,pe&=67108863,v=Math.imul(Ce,xt),n=(n=Math.imul(Ce,Nt))+Math.imul(Le,xt)|0,C=Math.imul(Le,Nt),v=v+Math.imul(W,et)|0,n=(n=n+Math.imul(W,yt)|0)+Math.imul(ee,et)|0,C=C+Math.imul(ee,yt)|0,v=v+Math.imul(le,Yt)|0,n=(n=n+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,C=C+Math.imul(Te,Pe)|0,v=v+Math.imul(dt,ce)|0,n=(n=n+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,C=C+Math.imul(Ie,be)|0,v=v+Math.imul(ve,mt)|0,n=(n=n+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,C=C+Math.imul(V,Ht)|0,v=v+Math.imul(we,Re)|0,n=(n=n+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,C=C+Math.imul(Q,tt)|0,v=v+Math.imul(he,Se)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0,C=C+Math.imul(_e,Ge)|0;var je=(I+(v=v+Math.imul(P,st)|0)|0)+((8191&(n=(n=n+Math.imul(P,bt)|0)+Math.imul(H,st)|0))<<13)|0;I=((C=C+Math.imul(H,bt)|0)+(n>>>13)|0)+(je>>>26)|0,je&=67108863,v=Math.imul(ht,xt),n=(n=Math.imul(ht,Nt))+Math.imul(It,xt)|0,C=Math.imul(It,Nt),v=v+Math.imul(Ce,et)|0,n=(n=n+Math.imul(Ce,yt)|0)+Math.imul(Le,et)|0,C=C+Math.imul(Le,yt)|0,v=v+Math.imul(W,Yt)|0,n=(n=n+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,C=C+Math.imul(ee,Pe)|0,v=v+Math.imul(le,ce)|0,n=(n=n+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,C=C+Math.imul(Te,be)|0,v=v+Math.imul(dt,mt)|0,n=(n=n+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,C=C+Math.imul(Ie,Ht)|0,v=v+Math.imul(ve,Re)|0,n=(n=n+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,C=C+Math.imul(V,tt)|0,v=v+Math.imul(we,Se)|0,n=(n=n+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,C=C+Math.imul(Q,Ge)|0,v=v+Math.imul(he,st)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(_e,st)|0,C=C+Math.imul(_e,bt)|0;var _t=(I+(v=v+Math.imul(P,qt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Xt)|0)+Math.imul(H,qt)|0))<<13)|0;I=((C=C+Math.imul(H,Xt)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,v=Math.imul(Wt,xt),n=(n=Math.imul(Wt,Nt))+Math.imul(Gt,xt)|0,C=Math.imul(Gt,Nt),v=v+Math.imul(ht,et)|0,n=(n=n+Math.imul(ht,yt)|0)+Math.imul(It,et)|0,C=C+Math.imul(It,yt)|0,v=v+Math.imul(Ce,Yt)|0,n=(n=n+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,C=C+Math.imul(Le,Pe)|0,v=v+Math.imul(W,ce)|0,n=(n=n+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,C=C+Math.imul(ee,be)|0,v=v+Math.imul(le,mt)|0,n=(n=n+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,C=C+Math.imul(Te,Ht)|0,v=v+Math.imul(dt,Re)|0,n=(n=n+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,C=C+Math.imul(Ie,tt)|0,v=v+Math.imul(ve,Se)|0,n=(n=n+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,C=C+Math.imul(V,Ge)|0,v=v+Math.imul(we,st)|0,n=(n=n+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,C=C+Math.imul(Q,bt)|0,v=v+Math.imul(he,qt)|0,n=(n=n+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0,C=C+Math.imul(_e,Xt)|0;var re=(I+(v=v+Math.imul(P,fi)|0)|0)+((8191&(n=(n=n+Math.imul(P,si)|0)+Math.imul(H,fi)|0))<<13)|0;I=((C=C+Math.imul(H,si)|0)+(n>>>13)|0)+(re>>>26)|0,re&=67108863,v=Math.imul(Wt,et),n=(n=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,C=Math.imul(Gt,yt),v=v+Math.imul(ht,Yt)|0,n=(n=n+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,C=C+Math.imul(It,Pe)|0,v=v+Math.imul(Ce,ce)|0,n=(n=n+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,C=C+Math.imul(Le,be)|0,v=v+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,C=C+Math.imul(ee,Ht)|0,v=v+Math.imul(le,Re)|0,n=(n=n+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,C=C+Math.imul(Te,tt)|0,v=v+Math.imul(dt,Se)|0,n=(n=n+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,C=C+Math.imul(Ie,Ge)|0,v=v+Math.imul(ve,st)|0,n=(n=n+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,C=C+Math.imul(V,bt)|0,v=v+Math.imul(we,qt)|0,n=(n=n+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,C=C+Math.imul(Q,Xt)|0;var qe=(I+(v=v+Math.imul(he,fi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;I=((C=C+Math.imul(_e,si)|0)+(n>>>13)|0)+(qe>>>26)|0,qe&=67108863,v=Math.imul(Wt,Yt),n=(n=Math.imul(Wt,Pe))+Math.imul(Gt,Yt)|0,C=Math.imul(Gt,Pe),v=v+Math.imul(ht,ce)|0,n=(n=n+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,C=C+Math.imul(It,be)|0,v=v+Math.imul(Ce,mt)|0,n=(n=n+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,C=C+Math.imul(Le,Ht)|0,v=v+Math.imul(W,Re)|0,n=(n=n+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,C=C+Math.imul(ee,tt)|0,v=v+Math.imul(le,Se)|0,n=(n=n+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,C=C+Math.imul(Te,Ge)|0,v=v+Math.imul(dt,st)|0,n=(n=n+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,C=C+Math.imul(Ie,bt)|0,v=v+Math.imul(ve,qt)|0,n=(n=n+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,C=C+Math.imul(V,Xt)|0;var Mt=(I+(v=v+Math.imul(we,fi)|0)|0)+((8191&(n=(n=n+Math.imul(we,si)|0)+Math.imul(Q,fi)|0))<<13)|0;I=((C=C+Math.imul(Q,si)|0)+(n>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul(Wt,ce),n=(n=Math.imul(Wt,be))+Math.imul(Gt,ce)|0,C=Math.imul(Gt,be),v=v+Math.imul(ht,mt)|0,n=(n=n+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,C=C+Math.imul(It,Ht)|0,v=v+Math.imul(Ce,Re)|0,n=(n=n+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,C=C+Math.imul(Le,tt)|0,v=v+Math.imul(W,Se)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,C=C+Math.imul(ee,Ge)|0,v=v+Math.imul(le,st)|0,n=(n=n+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,C=C+Math.imul(Te,bt)|0,v=v+Math.imul(dt,qt)|0,n=(n=n+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,C=C+Math.imul(Ie,Xt)|0;var zt=(I+(v=v+Math.imul(ve,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ve,si)|0)+Math.imul(V,fi)|0))<<13)|0;I=((C=C+Math.imul(V,si)|0)+(n>>>13)|0)+(zt>>>26)|0,zt&=67108863,v=Math.imul(Wt,mt),n=(n=Math.imul(Wt,Ht))+Math.imul(Gt,mt)|0,C=Math.imul(Gt,Ht),v=v+Math.imul(ht,Re)|0,n=(n=n+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,C=C+Math.imul(It,tt)|0,v=v+Math.imul(Ce,Se)|0,n=(n=n+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,C=C+Math.imul(Le,Ge)|0,v=v+Math.imul(W,st)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,C=C+Math.imul(ee,bt)|0,v=v+Math.imul(le,qt)|0,n=(n=n+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,C=C+Math.imul(Te,Xt)|0;var bi=(I+(v=v+Math.imul(dt,fi)|0)|0)+((8191&(n=(n=n+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0))<<13)|0;I=((C=C+Math.imul(Ie,si)|0)+(n>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Wt,Re),n=(n=Math.imul(Wt,tt))+Math.imul(Gt,Re)|0,C=Math.imul(Gt,tt),v=v+Math.imul(ht,Se)|0,n=(n=n+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,C=C+Math.imul(It,Ge)|0,v=v+Math.imul(Ce,st)|0,n=(n=n+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,C=C+Math.imul(Le,bt)|0,v=v+Math.imul(W,qt)|0,n=(n=n+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,C=C+Math.imul(ee,Xt)|0;var Ei=(I+(v=v+Math.imul(le,fi)|0)|0)+((8191&(n=(n=n+Math.imul(le,si)|0)+Math.imul(Te,fi)|0))<<13)|0;I=((C=C+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,v=Math.imul(Wt,Se),n=(n=Math.imul(Wt,Ge))+Math.imul(Gt,Se)|0,C=Math.imul(Gt,Ge),v=v+Math.imul(ht,st)|0,n=(n=n+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,C=C+Math.imul(It,bt)|0,v=v+Math.imul(Ce,qt)|0,n=(n=n+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,C=C+Math.imul(Le,Xt)|0;var Xi=(I+(v=v+Math.imul(W,fi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(ee,fi)|0))<<13)|0;I=((C=C+Math.imul(ee,si)|0)+(n>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,v=Math.imul(Wt,st),n=(n=Math.imul(Wt,bt))+Math.imul(Gt,st)|0,C=Math.imul(Gt,bt),v=v+Math.imul(ht,qt)|0,n=(n=n+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,C=C+Math.imul(It,Xt)|0;var Zi=(I+(v=v+Math.imul(Ce,fi)|0)|0)+((8191&(n=(n=n+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0))<<13)|0;I=((C=C+Math.imul(Le,si)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,v=Math.imul(Wt,qt),n=(n=Math.imul(Wt,Xt))+Math.imul(Gt,qt)|0,C=Math.imul(Gt,Xt);var sn=(I+(v=v+Math.imul(ht,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ht,si)|0)+Math.imul(It,fi)|0))<<13)|0;I=((C=C+Math.imul(It,si)|0)+(n>>>13)|0)+(sn>>>26)|0,sn&=67108863;var gn=(I+(v=Math.imul(Wt,fi))|0)+((8191&(n=(n=Math.imul(Wt,si))+Math.imul(Gt,fi)|0))<<13)|0;return I=((C=Math.imul(Gt,si))+(n>>>13)|0)+(gn>>>26)|0,gn&=67108863,E[0]=$i,E[1]=Bi,E[2]=zi,E[3]=Ui,E[4]=ze,E[5]=Tt,E[6]=pe,E[7]=je,E[8]=_t,E[9]=re,E[10]=qe,E[11]=Mt,E[12]=zt,E[13]=bi,E[14]=Ei,E[15]=Xi,E[16]=Zi,E[17]=sn,E[18]=gn,0!==I&&(E[19]=I,u.length++),u};function Z(y,i,r){return(new Y).mulp(y,i,r)}function Y(y,i){this.x=y,this.y=i}Math.imul||(S=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?S(this,i,r):c<63?k(this,i,r):c<1024?function U(y,i,r){r.negative=i.negative^y.negative,r.length=y.length+i.length;for(var u=0,c=0,_=0;_>>26)|0)>>>26,E&=67108863}r.words[_]=I,u=E,E=c}return 0!==u?r.words[_]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,_,E){for(var I=0;I>>=1)_++;return 1<<_+1+c},Y.prototype.conjugate=function(i,r,u){if(!(u<=1))for(var c=0;c>>=13),_>>>=13;for(E=2*r;E>=26,r+=c/67108864|0,r+=_>>>26,this.words[u]=67108863&_}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function L(y){for(var i=new Array(y.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var _,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var E=0;for(_=0;_>>26-r}E&&(this.words[_]=E,this.length++)}if(0!==u){for(_=this.length-1;_>=0;_--)this.words[_+u]=this.words[_];for(_=0;_=0),c=r?(r-r%26)/26:0;var _=i%26,E=Math.min((i-_)/26,this.length),I=67108863^67108863>>>_<<_,v=u;if(c-=E,c=Math.max(0,c),v){for(var n=0;nE)for(this.length-=E,n=0;n=0&&(0!==C||n>=c);n--){var B=0|this.words[n];this.words[n]=C<<26-_|B>>>_,C=B&I}return v&&0!==C&&(v.words[v.length++]=C),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(v/67108864|0),this.words[_+u]=67108863&E}for(;_>26,this.words[_+u]=67108863&E;if(0===I)return this.strip();for(f(-1===I),I=0,_=0;_>26,this.words[_]=67108863&E;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),_=i,E=0|_.words[_.length-1];0!=(u=26-this._countBits(E))&&(_=_.ushln(u),c.iushln(u),E=0|_.words[_.length-1]);var n,v=c.length-_.length;if("mod"!==r){(n=new a(null)).length=v+1,n.words=new Array(n.length);for(var C=0;C=0;P--){var H=67108864*(0|c.words[_.length+P])+(0|c.words[_.length+P-1]);for(H=Math.min(H/E|0,67108863),c._ishlnsubmul(_,H,P);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(_,1,P),c.isZero()||(c.negative^=1);n&&(n.words[P]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(E=this.neg().divmod(i,r),"mod"!==r&&(c=E.div.neg()),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.iadd(i)),{div:c,mod:_}):0===this.negative&&0!==i.negative?(E=this.divmod(i.neg(),r),"mod"!==r&&(c=E.div.neg()),{div:c,mod:E.mod}):0!=(this.negative&i.negative)?(E=this.neg().divmod(i.neg(),r),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.isub(i)),{div:E.div,mod:_}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,_,E},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),_=i.andln(1),E=u.cmp(c);return E<0||1===_&&0===E?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=new a(0),I=new a(1),v=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++v;for(var n=u.clone(),C=r.clone();!r.isZero();){for(var B=0,P=1;0==(r.words[0]&P)&&B<26;++B,P<<=1);if(B>0)for(r.iushrn(B);B-- >0;)(c.isOdd()||_.isOdd())&&(c.iadd(n),_.isub(C)),c.iushrn(1),_.iushrn(1);for(var H=0,q=1;0==(u.words[0]&q)&&H<26;++H,q<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(E.isOdd()||I.isOdd())&&(E.iadd(n),I.isub(C)),E.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(E),_.isub(I)):(u.isub(r),E.isub(c),I.isub(_))}return{a:E,b:I,gcd:u.iushln(v)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var B,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,v=1;0==(r.words[0]&v)&&I<26;++I,v<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(E),c.iushrn(1);for(var n=0,C=1;0==(u.words[0]&C)&&n<26;++n,C<<=1);if(n>0)for(u.iushrn(n);n-- >0;)_.isOdd()&&_.iadd(E),_.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(_)):(u.isub(r),_.isub(c))}return(B=0===r.cmpn(1)?c:_).cmpn(0)<0&&B.iadd(i),B},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var _=r.cmp(u);if(_<0){var E=r;r=u,u=E}else if(0===_||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[E]=I&=67108863}return 0!==_&&(this.words[E]=_,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],_=0|i.words[u];if(c!==_){c<_?r=-1:c>_&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new X(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ne={k256:null,p224:null,p192:null,p25519:null};function $(y,i){this.name=y,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function de(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function te(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ie(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function oe(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function X(y){if("string"==typeof y){var i=a._prime(y);this.m=i.p,this.prime=i}else f(y.gtn(1),"modulus must be greater than 1"),this.m=y,this.prime=null}function me(y){X.call(this,y),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},$.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},$.prototype.split=function(i,r){i.iushrn(this.n,0,r)},$.prototype.imulK=function(i){return i.imul(this.k)},M(de,$),de.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),_=0;_>>22,E=I}i.words[_-10]=E>>>=22,i.length-=0===E&&i.length>10?10:9},de.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=_,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ne[i])return ne[i];var r;if("k256"===i)r=new de;else if("p224"===i)r=new te;else if("p192"===i)r=new ie;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new oe}return ne[i]=r,r},X.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},X.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},X.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},X.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},X.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},X.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},X.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},X.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},X.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},X.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},X.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},X.prototype.isqr=function(i){return this.imul(i,i.clone())},X.prototype.sqr=function(i){return this.mul(i,i)},X.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),_=0;!c.isZero()&&0===c.andln(1);)_++,c.iushrn(1);f(!c.isZero());var E=new a(1).toRed(this),I=E.redNeg(),v=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,v).cmp(I);)n.redIAdd(I);for(var C=this.pow(n,c),B=this.pow(i,c.addn(1).iushrn(1)),P=this.pow(i,c),H=_;0!==P.cmp(E);){for(var q=P,he=0;0!==q.cmp(E);he++)q=q.redSqr();f(he=0;_--){for(var C=r.words[_],B=n-1;B>=0;B--){var P=C>>B&1;E!==c[0]&&(E=this.sqr(E)),0!==P||0!==I?(I<<=1,I|=P,(4==++v||0===_&&0===B)&&(E=this.mul(E,c[I]),v=0,I=0)):v=0}n=26}return E},X.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},X.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new me(i)},M(me,X),me.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},me.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},me.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},5343:(Ve,j)=>{"use strict";j.byteLength=function d(L){var k=b(L),U=k[1];return 3*(k[0]+U)/4-U},j.toByteArray=function h(L){var k,de,S=b(L),U=S[0],Z=S[1],Y=new e(function N(L,k,S){return 3*(k+S)/4-S}(0,U,Z)),ne=0,$=Z>0?U-4:U;for(de=0;de<$;de+=4)k=t[L.charCodeAt(de)]<<18|t[L.charCodeAt(de+1)]<<12|t[L.charCodeAt(de+2)]<<6|t[L.charCodeAt(de+3)],Y[ne++]=k>>16&255,Y[ne++]=k>>8&255,Y[ne++]=255&k;return 2===Z&&(k=t[L.charCodeAt(de)]<<2|t[L.charCodeAt(de+1)]>>4,Y[ne++]=255&k),1===Z&&(k=t[L.charCodeAt(de)]<<10|t[L.charCodeAt(de+1)]<<4|t[L.charCodeAt(de+2)]>>2,Y[ne++]=k>>8&255,Y[ne++]=255&k),Y},j.fromByteArray=function D(L){for(var k,S=L.length,U=S%3,Z=[],Y=16383,ne=0,$=S-U;ne<$;ne+=Y)Z.push(w(L,ne,ne+Y>$?$:ne+Y));return 1===U?Z.push(p[(k=L[S-1])>>2]+p[k<<4&63]+"=="):2===U&&Z.push(p[(k=(L[S-2]<<8)+L[S-1])>>10]+p[k>>4&63]+p[k<<2&63]+"="),Z.join("")};for(var p=[],t=[],e="undefined"!=typeof Uint8Array?Uint8Array:Array,f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",M=0,a=f.length;M0)throw new Error("Invalid string. Length must be a multiple of 4");var S=L.indexOf("=");return-1===S&&(S=k),[S,S===k?0:4-S%4]}function A(L){return p[L>>18&63]+p[L>>12&63]+p[L>>6&63]+p[63&L]}function w(L,k,S){for(var Z=[],Y=k;Y=48&&_<=57?_-48:_>=65&&_<=70?_-55:_>=97&&_<=102?_-87:void f(!1,"Invalid character in "+u)}function N(u,c,_){var E=d(u,_);return _-1>=c&&(E|=d(u,_-1)<<4),E}function h(u,c,_,E){for(var I=0,v=0,n=Math.min(u.length,_),C=c;C=49?B-49+10:B>=17?B-17+10:B,f(B>=0&&v0?c:_},a.min=function(c,_){return c.cmp(_)<0?c:_},a.prototype._init=function(c,_,E){if("number"==typeof c)return this._initNumber(c,_,E);if("object"==typeof c)return this._initArray(c,_,E);"hex"===_&&(_=16),f(_===(0|_)&&_>=2&&_<=36);var I=0;"-"===(c=c.toString().replace(/\s+/g,""))[0]&&(I++,this.negative=1),I=0;I-=3)this.words[v]|=(n=c[I]|c[I-1]<<8|c[I-2]<<16)<>>26-C&67108863,(C+=24)>=26&&(C-=26,v++);else if("le"===E)for(I=0,v=0;I>>26-C&67108863,(C+=24)>=26&&(C-=26,v++);return this._strip()},a.prototype._parseHex=function(c,_,E){this.length=Math.ceil((c.length-_)/6),this.words=new Array(this.length);for(var I=0;I=_;I-=2)C=N(c,_,I)<=18?(v-=18,this.words[n+=1]|=C>>>26):v+=8;else for(I=(c.length-_)%2==0?_+1:_;I=18?(v-=18,this.words[n+=1]|=C>>>26):v+=8;this._strip()},a.prototype._parseBase=function(c,_,E){this.words=[0],this.length=1;for(var I=0,v=1;v<=67108863;v*=_)I++;I--,v=v/_|0;for(var n=c.length-E,C=n%I,B=Math.min(n,n-C)+E,P=0,H=E;H1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},"undefined"!=typeof Symbol&&"function"==typeof Symbol.for)try{a.prototype[Symbol.for("nodejs.util.inspect.custom")]=w}catch(u){a.prototype.inspect=w}else a.prototype.inspect=w;function w(){return(this.red?""}var D=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],L=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],k=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function Z(u,c,_){_.negative=c.negative^u.negative;var E=u.length+c.length|0;_.length=E,E=E-1|0;var I=0|u.words[0],v=0|c.words[0],n=I*v,B=n/67108864|0;_.words[0]=67108863&n;for(var P=1;P>>26,q=67108863&B,he=Math.min(P,c.length-1),_e=Math.max(0,P-u.length+1);_e<=he;_e++)H+=(n=(I=0|u.words[P-_e|0])*(v=0|c.words[_e])+q)/67108864|0,q=67108863&n;_.words[P]=0|q,B=0|H}return 0!==B?_.words[P]=0|B:_.length--,_._strip()}a.prototype.toString=function(c,_){var E;if(_=0|_||1,16===(c=c||10)||"hex"===c){E="";for(var I=0,v=0,n=0;n>>24-I&16777215,(I+=2)>=26&&(I-=26,n--),E=0!==v||n!==this.length-1?D[6-B.length]+B+E:B+E}for(0!==v&&(E=v.toString(16)+E);E.length%_!=0;)E="0"+E;return 0!==this.negative&&(E="-"+E),E}if(c===(0|c)&&c>=2&&c<=36){var P=L[c],H=k[c];E="";var q=this.clone();for(q.negative=0;!q.isZero();){var he=q.modrn(H).toString(c);E=(q=q.idivn(H)).isZero()?he+E:D[P-he.length]+he+E}for(this.isZero()&&(E="0"+E);E.length%_!=0;)E="0"+E;return 0!==this.negative&&(E="-"+E),E}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var c=this.words[0];return 2===this.length?c+=67108864*this.words[1]:3===this.length&&1===this.words[2]?c+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-c:c},a.prototype.toJSON=function(){return this.toString(16,2)},b&&(a.prototype.toBuffer=function(c,_){return this.toArrayLike(b,c,_)}),a.prototype.toArray=function(c,_){return this.toArrayLike(Array,c,_)},a.prototype.toArrayLike=function(c,_,E){this._strip();var I=this.byteLength(),v=E||Math.max(1,I);f(I<=v,"byte array longer than desired length"),f(v>0,"Requested array length <= 0");var n=function(c,_){return c.allocUnsafe?c.allocUnsafe(_):new c(_)}(c,v);return this["_toArrayLike"+("le"===_?"LE":"BE")](n,I),n},a.prototype._toArrayLikeLE=function(c,_){for(var E=0,I=0,v=0,n=0;v>8&255),E>16&255),6===n?(E>24&255),I=0,n=0):(I=C>>>24,n+=2)}if(E=0&&(c[E--]=C>>8&255),E>=0&&(c[E--]=C>>16&255),6===n?(E>=0&&(c[E--]=C>>24&255),I=0,n=0):(I=C>>>24,n+=2)}if(E>=0)for(c[E--]=I;E>=0;)c[E--]=0},a.prototype._countBits=Math.clz32?function(c){return 32-Math.clz32(c)}:function(c){var _=c,E=0;return _>=4096&&(E+=13,_>>>=13),_>=64&&(E+=7,_>>>=7),_>=8&&(E+=4,_>>>=4),_>=2&&(E+=2,_>>>=2),E+_},a.prototype._zeroBits=function(c){if(0===c)return 26;var _=c,E=0;return 0==(8191&_)&&(E+=13,_>>>=13),0==(127&_)&&(E+=7,_>>>=7),0==(15&_)&&(E+=4,_>>>=4),0==(3&_)&&(E+=2,_>>>=2),0==(1&_)&&E++,E},a.prototype.bitLength=function(){var _=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+_},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var c=0,_=0;_c.length?this.clone().ior(c):c.clone().ior(this)},a.prototype.uor=function(c){return this.length>c.length?this.clone().iuor(c):c.clone().iuor(this)},a.prototype.iuand=function(c){var _;_=this.length>c.length?c:this;for(var E=0;E<_.length;E++)this.words[E]=this.words[E]&c.words[E];return this.length=_.length,this._strip()},a.prototype.iand=function(c){return f(0==(this.negative|c.negative)),this.iuand(c)},a.prototype.and=function(c){return this.length>c.length?this.clone().iand(c):c.clone().iand(this)},a.prototype.uand=function(c){return this.length>c.length?this.clone().iuand(c):c.clone().iuand(this)},a.prototype.iuxor=function(c){var _,E;this.length>c.length?(_=this,E=c):(_=c,E=this);for(var I=0;Ic.length?this.clone().ixor(c):c.clone().ixor(this)},a.prototype.uxor=function(c){return this.length>c.length?this.clone().iuxor(c):c.clone().iuxor(this)},a.prototype.inotn=function(c){f("number"==typeof c&&c>=0);var _=0|Math.ceil(c/26),E=c%26;this._expand(_),E>0&&_--;for(var I=0;I<_;I++)this.words[I]=67108863&~this.words[I];return E>0&&(this.words[I]=~this.words[I]&67108863>>26-E),this._strip()},a.prototype.notn=function(c){return this.clone().inotn(c)},a.prototype.setn=function(c,_){f("number"==typeof c&&c>=0);var E=c/26|0,I=c%26;return this._expand(E+1),this.words[E]=_?this.words[E]|1<c.length?(E=this,I=c):(E=c,I=this);for(var v=0,n=0;n>>26;for(;0!==v&&n>>26;if(this.length=E.length,0!==v)this.words[this.length]=v,this.length++;else if(E!==this)for(;nc.length?this.clone().iadd(c):c.clone().iadd(this)},a.prototype.isub=function(c){if(0!==c.negative){c.negative=0;var _=this.iadd(c);return c.negative=1,_._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(c),this.negative=1,this._normSign();var I,v,E=this.cmp(c);if(0===E)return this.negative=0,this.length=1,this.words[0]=0,this;E>0?(I=this,v=c):(I=c,v=this);for(var n=0,C=0;C>26,this.words[C]=67108863&_;for(;0!==n&&C>26,this.words[C]=67108863&_;if(0===n&&C>>13,Ne=0|I[1],we=8191&Ne,Q=Ne>>>13,Ue=0|I[2],ve=8191&Ue,V=Ue>>>13,De=0|I[3],dt=8191&De,Ie=De>>>13,Ae=0|I[4],le=8191&Ae,Te=Ae>>>13,xe=0|I[5],W=8191&xe,ee=xe>>>13,ue=0|I[6],Ce=8191&ue,Le=ue>>>13,ut=0|I[7],ht=8191&ut,It=ut>>>13,ui=0|I[8],Wt=8191&ui,Gt=ui>>>13,hi=0|I[9],xt=8191&hi,Nt=hi>>>13,Ct=0|v[0],et=8191&Ct,yt=Ct>>>13,ei=0|v[1],Yt=8191&ei,Pe=ei>>>13,Oe=0|v[2],ce=8191&Oe,be=Oe>>>13,pt=0|v[3],mt=8191&pt,Ht=pt>>>13,it=0|v[4],Re=8191&it,tt=it>>>13,Xe=0|v[5],Se=8191&Xe,Ge=Xe>>>13,at=0|v[6],st=8191&at,bt=at>>>13,gi=0|v[7],qt=8191&gi,Xt=gi>>>13,qi=0|v[8],fi=8191&qi,si=qi>>>13,$i=0|v[9],Bi=8191&$i,zi=$i>>>13;E.negative=c.negative^_.negative,E.length=19;var Ui=(C+(B=Math.imul(he,et))|0)+((8191&(P=(P=Math.imul(he,yt))+Math.imul(_e,et)|0))<<13)|0;C=((H=Math.imul(_e,yt))+(P>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,B=Math.imul(we,et),P=(P=Math.imul(we,yt))+Math.imul(Q,et)|0,H=Math.imul(Q,yt);var ze=(C+(B=B+Math.imul(he,Yt)|0)|0)+((8191&(P=(P=P+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0))<<13)|0;C=((H=H+Math.imul(_e,Pe)|0)+(P>>>13)|0)+(ze>>>26)|0,ze&=67108863,B=Math.imul(ve,et),P=(P=Math.imul(ve,yt))+Math.imul(V,et)|0,H=Math.imul(V,yt),B=B+Math.imul(we,Yt)|0,P=(P=P+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,H=H+Math.imul(Q,Pe)|0;var Tt=(C+(B=B+Math.imul(he,ce)|0)|0)+((8191&(P=(P=P+Math.imul(he,be)|0)+Math.imul(_e,ce)|0))<<13)|0;C=((H=H+Math.imul(_e,be)|0)+(P>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,B=Math.imul(dt,et),P=(P=Math.imul(dt,yt))+Math.imul(Ie,et)|0,H=Math.imul(Ie,yt),B=B+Math.imul(ve,Yt)|0,P=(P=P+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,H=H+Math.imul(V,Pe)|0,B=B+Math.imul(we,ce)|0,P=(P=P+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,H=H+Math.imul(Q,be)|0;var pe=(C+(B=B+Math.imul(he,mt)|0)|0)+((8191&(P=(P=P+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0))<<13)|0;C=((H=H+Math.imul(_e,Ht)|0)+(P>>>13)|0)+(pe>>>26)|0,pe&=67108863,B=Math.imul(le,et),P=(P=Math.imul(le,yt))+Math.imul(Te,et)|0,H=Math.imul(Te,yt),B=B+Math.imul(dt,Yt)|0,P=(P=P+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,H=H+Math.imul(Ie,Pe)|0,B=B+Math.imul(ve,ce)|0,P=(P=P+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,H=H+Math.imul(V,be)|0,B=B+Math.imul(we,mt)|0,P=(P=P+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,H=H+Math.imul(Q,Ht)|0;var je=(C+(B=B+Math.imul(he,Re)|0)|0)+((8191&(P=(P=P+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0))<<13)|0;C=((H=H+Math.imul(_e,tt)|0)+(P>>>13)|0)+(je>>>26)|0,je&=67108863,B=Math.imul(W,et),P=(P=Math.imul(W,yt))+Math.imul(ee,et)|0,H=Math.imul(ee,yt),B=B+Math.imul(le,Yt)|0,P=(P=P+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,H=H+Math.imul(Te,Pe)|0,B=B+Math.imul(dt,ce)|0,P=(P=P+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,H=H+Math.imul(Ie,be)|0,B=B+Math.imul(ve,mt)|0,P=(P=P+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,H=H+Math.imul(V,Ht)|0,B=B+Math.imul(we,Re)|0,P=(P=P+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,H=H+Math.imul(Q,tt)|0;var _t=(C+(B=B+Math.imul(he,Se)|0)|0)+((8191&(P=(P=P+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0))<<13)|0;C=((H=H+Math.imul(_e,Ge)|0)+(P>>>13)|0)+(_t>>>26)|0,_t&=67108863,B=Math.imul(Ce,et),P=(P=Math.imul(Ce,yt))+Math.imul(Le,et)|0,H=Math.imul(Le,yt),B=B+Math.imul(W,Yt)|0,P=(P=P+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,H=H+Math.imul(ee,Pe)|0,B=B+Math.imul(le,ce)|0,P=(P=P+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,H=H+Math.imul(Te,be)|0,B=B+Math.imul(dt,mt)|0,P=(P=P+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,H=H+Math.imul(Ie,Ht)|0,B=B+Math.imul(ve,Re)|0,P=(P=P+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,H=H+Math.imul(V,tt)|0,B=B+Math.imul(we,Se)|0,P=(P=P+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,H=H+Math.imul(Q,Ge)|0;var re=(C+(B=B+Math.imul(he,st)|0)|0)+((8191&(P=(P=P+Math.imul(he,bt)|0)+Math.imul(_e,st)|0))<<13)|0;C=((H=H+Math.imul(_e,bt)|0)+(P>>>13)|0)+(re>>>26)|0,re&=67108863,B=Math.imul(ht,et),P=(P=Math.imul(ht,yt))+Math.imul(It,et)|0,H=Math.imul(It,yt),B=B+Math.imul(Ce,Yt)|0,P=(P=P+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,H=H+Math.imul(Le,Pe)|0,B=B+Math.imul(W,ce)|0,P=(P=P+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,H=H+Math.imul(ee,be)|0,B=B+Math.imul(le,mt)|0,P=(P=P+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,H=H+Math.imul(Te,Ht)|0,B=B+Math.imul(dt,Re)|0,P=(P=P+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,H=H+Math.imul(Ie,tt)|0,B=B+Math.imul(ve,Se)|0,P=(P=P+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,H=H+Math.imul(V,Ge)|0,B=B+Math.imul(we,st)|0,P=(P=P+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,H=H+Math.imul(Q,bt)|0;var qe=(C+(B=B+Math.imul(he,qt)|0)|0)+((8191&(P=(P=P+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0))<<13)|0;C=((H=H+Math.imul(_e,Xt)|0)+(P>>>13)|0)+(qe>>>26)|0,qe&=67108863,B=Math.imul(Wt,et),P=(P=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,H=Math.imul(Gt,yt),B=B+Math.imul(ht,Yt)|0,P=(P=P+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,H=H+Math.imul(It,Pe)|0,B=B+Math.imul(Ce,ce)|0,P=(P=P+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,H=H+Math.imul(Le,be)|0,B=B+Math.imul(W,mt)|0,P=(P=P+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,H=H+Math.imul(ee,Ht)|0,B=B+Math.imul(le,Re)|0,P=(P=P+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,H=H+Math.imul(Te,tt)|0,B=B+Math.imul(dt,Se)|0,P=(P=P+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,H=H+Math.imul(Ie,Ge)|0,B=B+Math.imul(ve,st)|0,P=(P=P+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,H=H+Math.imul(V,bt)|0,B=B+Math.imul(we,qt)|0,P=(P=P+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,H=H+Math.imul(Q,Xt)|0;var Mt=(C+(B=B+Math.imul(he,fi)|0)|0)+((8191&(P=(P=P+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;C=((H=H+Math.imul(_e,si)|0)+(P>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,B=Math.imul(xt,et),P=(P=Math.imul(xt,yt))+Math.imul(Nt,et)|0,H=Math.imul(Nt,yt),B=B+Math.imul(Wt,Yt)|0,P=(P=P+Math.imul(Wt,Pe)|0)+Math.imul(Gt,Yt)|0,H=H+Math.imul(Gt,Pe)|0,B=B+Math.imul(ht,ce)|0,P=(P=P+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,H=H+Math.imul(It,be)|0,B=B+Math.imul(Ce,mt)|0,P=(P=P+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,H=H+Math.imul(Le,Ht)|0,B=B+Math.imul(W,Re)|0,P=(P=P+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,H=H+Math.imul(ee,tt)|0,B=B+Math.imul(le,Se)|0,P=(P=P+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,H=H+Math.imul(Te,Ge)|0,B=B+Math.imul(dt,st)|0,P=(P=P+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,H=H+Math.imul(Ie,bt)|0,B=B+Math.imul(ve,qt)|0,P=(P=P+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,H=H+Math.imul(V,Xt)|0,B=B+Math.imul(we,fi)|0,P=(P=P+Math.imul(we,si)|0)+Math.imul(Q,fi)|0,H=H+Math.imul(Q,si)|0;var zt=(C+(B=B+Math.imul(he,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(he,zi)|0)+Math.imul(_e,Bi)|0))<<13)|0;C=((H=H+Math.imul(_e,zi)|0)+(P>>>13)|0)+(zt>>>26)|0,zt&=67108863,B=Math.imul(xt,Yt),P=(P=Math.imul(xt,Pe))+Math.imul(Nt,Yt)|0,H=Math.imul(Nt,Pe),B=B+Math.imul(Wt,ce)|0,P=(P=P+Math.imul(Wt,be)|0)+Math.imul(Gt,ce)|0,H=H+Math.imul(Gt,be)|0,B=B+Math.imul(ht,mt)|0,P=(P=P+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,H=H+Math.imul(It,Ht)|0,B=B+Math.imul(Ce,Re)|0,P=(P=P+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,H=H+Math.imul(Le,tt)|0,B=B+Math.imul(W,Se)|0,P=(P=P+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,H=H+Math.imul(ee,Ge)|0,B=B+Math.imul(le,st)|0,P=(P=P+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,H=H+Math.imul(Te,bt)|0,B=B+Math.imul(dt,qt)|0,P=(P=P+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,H=H+Math.imul(Ie,Xt)|0,B=B+Math.imul(ve,fi)|0,P=(P=P+Math.imul(ve,si)|0)+Math.imul(V,fi)|0,H=H+Math.imul(V,si)|0;var bi=(C+(B=B+Math.imul(we,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(we,zi)|0)+Math.imul(Q,Bi)|0))<<13)|0;C=((H=H+Math.imul(Q,zi)|0)+(P>>>13)|0)+(bi>>>26)|0,bi&=67108863,B=Math.imul(xt,ce),P=(P=Math.imul(xt,be))+Math.imul(Nt,ce)|0,H=Math.imul(Nt,be),B=B+Math.imul(Wt,mt)|0,P=(P=P+Math.imul(Wt,Ht)|0)+Math.imul(Gt,mt)|0,H=H+Math.imul(Gt,Ht)|0,B=B+Math.imul(ht,Re)|0,P=(P=P+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,H=H+Math.imul(It,tt)|0,B=B+Math.imul(Ce,Se)|0,P=(P=P+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,H=H+Math.imul(Le,Ge)|0,B=B+Math.imul(W,st)|0,P=(P=P+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,H=H+Math.imul(ee,bt)|0,B=B+Math.imul(le,qt)|0,P=(P=P+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,H=H+Math.imul(Te,Xt)|0,B=B+Math.imul(dt,fi)|0,P=(P=P+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0,H=H+Math.imul(Ie,si)|0;var Ei=(C+(B=B+Math.imul(ve,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(ve,zi)|0)+Math.imul(V,Bi)|0))<<13)|0;C=((H=H+Math.imul(V,zi)|0)+(P>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,B=Math.imul(xt,mt),P=(P=Math.imul(xt,Ht))+Math.imul(Nt,mt)|0,H=Math.imul(Nt,Ht),B=B+Math.imul(Wt,Re)|0,P=(P=P+Math.imul(Wt,tt)|0)+Math.imul(Gt,Re)|0,H=H+Math.imul(Gt,tt)|0,B=B+Math.imul(ht,Se)|0,P=(P=P+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,H=H+Math.imul(It,Ge)|0,B=B+Math.imul(Ce,st)|0,P=(P=P+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,H=H+Math.imul(Le,bt)|0,B=B+Math.imul(W,qt)|0,P=(P=P+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,H=H+Math.imul(ee,Xt)|0,B=B+Math.imul(le,fi)|0,P=(P=P+Math.imul(le,si)|0)+Math.imul(Te,fi)|0,H=H+Math.imul(Te,si)|0;var Xi=(C+(B=B+Math.imul(dt,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(dt,zi)|0)+Math.imul(Ie,Bi)|0))<<13)|0;C=((H=H+Math.imul(Ie,zi)|0)+(P>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,B=Math.imul(xt,Re),P=(P=Math.imul(xt,tt))+Math.imul(Nt,Re)|0,H=Math.imul(Nt,tt),B=B+Math.imul(Wt,Se)|0,P=(P=P+Math.imul(Wt,Ge)|0)+Math.imul(Gt,Se)|0,H=H+Math.imul(Gt,Ge)|0,B=B+Math.imul(ht,st)|0,P=(P=P+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,H=H+Math.imul(It,bt)|0,B=B+Math.imul(Ce,qt)|0,P=(P=P+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,H=H+Math.imul(Le,Xt)|0,B=B+Math.imul(W,fi)|0,P=(P=P+Math.imul(W,si)|0)+Math.imul(ee,fi)|0,H=H+Math.imul(ee,si)|0;var Zi=(C+(B=B+Math.imul(le,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(le,zi)|0)+Math.imul(Te,Bi)|0))<<13)|0;C=((H=H+Math.imul(Te,zi)|0)+(P>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,B=Math.imul(xt,Se),P=(P=Math.imul(xt,Ge))+Math.imul(Nt,Se)|0,H=Math.imul(Nt,Ge),B=B+Math.imul(Wt,st)|0,P=(P=P+Math.imul(Wt,bt)|0)+Math.imul(Gt,st)|0,H=H+Math.imul(Gt,bt)|0,B=B+Math.imul(ht,qt)|0,P=(P=P+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,H=H+Math.imul(It,Xt)|0,B=B+Math.imul(Ce,fi)|0,P=(P=P+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0,H=H+Math.imul(Le,si)|0;var sn=(C+(B=B+Math.imul(W,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(W,zi)|0)+Math.imul(ee,Bi)|0))<<13)|0;C=((H=H+Math.imul(ee,zi)|0)+(P>>>13)|0)+(sn>>>26)|0,sn&=67108863,B=Math.imul(xt,st),P=(P=Math.imul(xt,bt))+Math.imul(Nt,st)|0,H=Math.imul(Nt,bt),B=B+Math.imul(Wt,qt)|0,P=(P=P+Math.imul(Wt,Xt)|0)+Math.imul(Gt,qt)|0,H=H+Math.imul(Gt,Xt)|0,B=B+Math.imul(ht,fi)|0,P=(P=P+Math.imul(ht,si)|0)+Math.imul(It,fi)|0,H=H+Math.imul(It,si)|0;var gn=(C+(B=B+Math.imul(Ce,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(Ce,zi)|0)+Math.imul(Le,Bi)|0))<<13)|0;C=((H=H+Math.imul(Le,zi)|0)+(P>>>13)|0)+(gn>>>26)|0,gn&=67108863,B=Math.imul(xt,qt),P=(P=Math.imul(xt,Xt))+Math.imul(Nt,qt)|0,H=Math.imul(Nt,Xt),B=B+Math.imul(Wt,fi)|0,P=(P=P+Math.imul(Wt,si)|0)+Math.imul(Gt,fi)|0,H=H+Math.imul(Gt,si)|0;var jt=(C+(B=B+Math.imul(ht,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(ht,zi)|0)+Math.imul(It,Bi)|0))<<13)|0;C=((H=H+Math.imul(It,zi)|0)+(P>>>13)|0)+(jt>>>26)|0,jt&=67108863,B=Math.imul(xt,fi),P=(P=Math.imul(xt,si))+Math.imul(Nt,fi)|0,H=Math.imul(Nt,si);var wi=(C+(B=B+Math.imul(Wt,Bi)|0)|0)+((8191&(P=(P=P+Math.imul(Wt,zi)|0)+Math.imul(Gt,Bi)|0))<<13)|0;C=((H=H+Math.imul(Gt,zi)|0)+(P>>>13)|0)+(wi>>>26)|0,wi&=67108863;var nt=(C+(B=Math.imul(xt,Bi))|0)+((8191&(P=(P=Math.imul(xt,zi))+Math.imul(Nt,Bi)|0))<<13)|0;return C=((H=Math.imul(Nt,zi))+(P>>>13)|0)+(nt>>>26)|0,nt&=67108863,n[0]=Ui,n[1]=ze,n[2]=Tt,n[3]=pe,n[4]=je,n[5]=_t,n[6]=re,n[7]=qe,n[8]=Mt,n[9]=zt,n[10]=bi,n[11]=Ei,n[12]=Xi,n[13]=Zi,n[14]=sn,n[15]=gn,n[16]=jt,n[17]=wi,n[18]=nt,0!==C&&(n[19]=C,E.length++),E};function ne(u,c,_){_.negative=c.negative^u.negative,_.length=u.length+c.length;for(var E=0,I=0,v=0;v<_.length-1;v++){var n=I;I=0;for(var C=67108863&E,B=Math.min(v,c.length-1),P=Math.max(0,v-u.length+1);P<=B;P++){var _e=(0|u.words[v-P])*(0|c.words[P]),Ne=67108863&_e;C=67108863&(Ne=Ne+C|0),I+=(n=(n=n+(_e/67108864|0)|0)+(Ne>>>26)|0)>>>26,n&=67108863}_.words[v]=C,E=n,n=I}return 0!==E?_.words[v]=E:_.length--,_._strip()}function $(u,c,_){return ne(u,c,_)}function de(u,c){this.x=u,this.y=c}Math.imul||(Y=Z),a.prototype.mulTo=function(c,_){var I=this.length+c.length;return 10===this.length&&10===c.length?Y(this,c,_):I<63?Z(this,c,_):I<1024?ne(this,c,_):$(this,c,_)},de.prototype.makeRBT=function(c){for(var _=new Array(c),E=a.prototype._countBits(c)-1,I=0;I>=1;return I},de.prototype.permute=function(c,_,E,I,v,n){for(var C=0;C>>=1)v++;return 1<>>=13),v>>>=13;for(n=2*_;n>=26,E+=v/67108864|0,E+=n>>>26,this.words[I]=67108863&n}return 0!==E&&(this.words[I]=E,this.length++),_?this.ineg():this},a.prototype.muln=function(c){return this.clone().imuln(c)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(c){var _=function U(u){for(var c=new Array(u.bitLength()),_=0;_>>_%26&1;return c}(c);if(0===_.length)return new a(1);for(var E=this,I=0;I<_.length&&0===_[I];I++,E=E.sqr());if(++I<_.length)for(var v=E.sqr();I<_.length;I++,v=v.sqr())0!==_[I]&&(E=E.mul(v));return E},a.prototype.iushln=function(c){f("number"==typeof c&&c>=0);var v,_=c%26,E=(c-_)/26,I=67108863>>>26-_<<26-_;if(0!==_){var n=0;for(v=0;v>>26-_}n&&(this.words[v]=n,this.length++)}if(0!==E){for(v=this.length-1;v>=0;v--)this.words[v+E]=this.words[v];for(v=0;v=0),I=_?(_-_%26)/26:0;var v=c%26,n=Math.min((c-v)/26,this.length),C=67108863^67108863>>>v<n)for(this.length-=n,P=0;P=0&&(0!==H||P>=I);P--){var q=0|this.words[P];this.words[P]=H<<26-v|q>>>v,H=q&C}return B&&0!==H&&(B.words[B.length++]=H),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},a.prototype.ishrn=function(c,_,E){return f(0===this.negative),this.iushrn(c,_,E)},a.prototype.shln=function(c){return this.clone().ishln(c)},a.prototype.ushln=function(c){return this.clone().iushln(c)},a.prototype.shrn=function(c){return this.clone().ishrn(c)},a.prototype.ushrn=function(c){return this.clone().iushrn(c)},a.prototype.testn=function(c){f("number"==typeof c&&c>=0);var _=c%26,E=(c-_)/26;return!(this.length<=E||!(this.words[E]&1<<_))},a.prototype.imaskn=function(c){f("number"==typeof c&&c>=0);var _=c%26,E=(c-_)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=E?this:(0!==_&&E++,this.length=Math.min(E,this.length),0!==_&&(this.words[this.length-1]&=67108863^67108863>>>_<<_),this._strip())},a.prototype.maskn=function(c){return this.clone().imaskn(c)},a.prototype.iaddn=function(c){return f("number"==typeof c),f(c<67108864),c<0?this.isubn(-c):0!==this.negative?1===this.length&&(0|this.words[0])<=c?(this.words[0]=c-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(c),this.negative=1,this):this._iaddn(c)},a.prototype._iaddn=function(c){this.words[0]+=c;for(var _=0;_=67108864;_++)this.words[_]-=67108864,_===this.length-1?this.words[_+1]=1:this.words[_+1]++;return this.length=Math.max(this.length,_+1),this},a.prototype.isubn=function(c){if(f("number"==typeof c),f(c<67108864),c<0)return this.iaddn(-c);if(0!==this.negative)return this.negative=0,this.iaddn(c),this.negative=1,this;if(this.words[0]-=c,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var _=0;_>26)-(B/67108864|0),this.words[v+E]=67108863&n}for(;v>26,this.words[v+E]=67108863&n;if(0===C)return this._strip();for(f(-1===C),C=0,v=0;v>26,this.words[v]=67108863&n;return this.negative=1,this._strip()},a.prototype._wordDiv=function(c,_){var E,I=this.clone(),v=c,n=0|v.words[v.length-1];0!=(E=26-this._countBits(n))&&(v=v.ushln(E),I.iushln(E),n=0|v.words[v.length-1]);var P,B=I.length-v.length;if("mod"!==_){(P=new a(null)).length=B+1,P.words=new Array(P.length);for(var H=0;H=0;he--){var _e=67108864*(0|I.words[v.length+he])+(0|I.words[v.length+he-1]);for(_e=Math.min(_e/n|0,67108863),I._ishlnsubmul(v,_e,he);0!==I.negative;)_e--,I.negative=0,I._ishlnsubmul(v,1,he),I.isZero()||(I.negative^=1);P&&(P.words[he]=_e)}return P&&P._strip(),I._strip(),"div"!==_&&0!==E&&I.iushrn(E),{div:P||null,mod:I}},a.prototype.divmod=function(c,_,E){return f(!c.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===c.negative?(n=this.neg().divmod(c,_),"mod"!==_&&(I=n.div.neg()),"div"!==_&&(v=n.mod.neg(),E&&0!==v.negative&&v.iadd(c)),{div:I,mod:v}):0===this.negative&&0!==c.negative?(n=this.divmod(c.neg(),_),"mod"!==_&&(I=n.div.neg()),{div:I,mod:n.mod}):0!=(this.negative&c.negative)?(n=this.neg().divmod(c.neg(),_),"div"!==_&&(v=n.mod.neg(),E&&0!==v.negative&&v.isub(c)),{div:n.div,mod:v}):c.length>this.length||this.cmp(c)<0?{div:new a(0),mod:this}:1===c.length?"div"===_?{div:this.divn(c.words[0]),mod:null}:"mod"===_?{div:null,mod:new a(this.modrn(c.words[0]))}:{div:this.divn(c.words[0]),mod:new a(this.modrn(c.words[0]))}:this._wordDiv(c,_);var I,v,n},a.prototype.div=function(c){return this.divmod(c,"div",!1).div},a.prototype.mod=function(c){return this.divmod(c,"mod",!1).mod},a.prototype.umod=function(c){return this.divmod(c,"mod",!0).mod},a.prototype.divRound=function(c){var _=this.divmod(c);if(_.mod.isZero())return _.div;var E=0!==_.div.negative?_.mod.isub(c):_.mod,I=c.ushrn(1),v=c.andln(1),n=E.cmp(I);return n<0||1===v&&0===n?_.div:0!==_.div.negative?_.div.isubn(1):_.div.iaddn(1)},a.prototype.modrn=function(c){var _=c<0;_&&(c=-c),f(c<=67108863);for(var E=(1<<26)%c,I=0,v=this.length-1;v>=0;v--)I=(E*I+(0|this.words[v]))%c;return _?-I:I},a.prototype.modn=function(c){return this.modrn(c)},a.prototype.idivn=function(c){var _=c<0;_&&(c=-c),f(c<=67108863);for(var E=0,I=this.length-1;I>=0;I--){var v=(0|this.words[I])+67108864*E;this.words[I]=v/c|0,E=v%c}return this._strip(),_?this.ineg():this},a.prototype.divn=function(c){return this.clone().idivn(c)},a.prototype.egcd=function(c){f(0===c.negative),f(!c.isZero());var _=this,E=c.clone();_=0!==_.negative?_.umod(c):_.clone();for(var I=new a(1),v=new a(0),n=new a(0),C=new a(1),B=0;_.isEven()&&E.isEven();)_.iushrn(1),E.iushrn(1),++B;for(var P=E.clone(),H=_.clone();!_.isZero();){for(var q=0,he=1;0==(_.words[0]&he)&&q<26;++q,he<<=1);if(q>0)for(_.iushrn(q);q-- >0;)(I.isOdd()||v.isOdd())&&(I.iadd(P),v.isub(H)),I.iushrn(1),v.iushrn(1);for(var _e=0,Ne=1;0==(E.words[0]&Ne)&&_e<26;++_e,Ne<<=1);if(_e>0)for(E.iushrn(_e);_e-- >0;)(n.isOdd()||C.isOdd())&&(n.iadd(P),C.isub(H)),n.iushrn(1),C.iushrn(1);_.cmp(E)>=0?(_.isub(E),I.isub(n),v.isub(C)):(E.isub(_),n.isub(I),C.isub(v))}return{a:n,b:C,gcd:E.iushln(B)}},a.prototype._invmp=function(c){f(0===c.negative),f(!c.isZero());var q,_=this,E=c.clone();_=0!==_.negative?_.umod(c):_.clone();for(var I=new a(1),v=new a(0),n=E.clone();_.cmpn(1)>0&&E.cmpn(1)>0;){for(var C=0,B=1;0==(_.words[0]&B)&&C<26;++C,B<<=1);if(C>0)for(_.iushrn(C);C-- >0;)I.isOdd()&&I.iadd(n),I.iushrn(1);for(var P=0,H=1;0==(E.words[0]&H)&&P<26;++P,H<<=1);if(P>0)for(E.iushrn(P);P-- >0;)v.isOdd()&&v.iadd(n),v.iushrn(1);_.cmp(E)>=0?(_.isub(E),I.isub(v)):(E.isub(_),v.isub(I))}return(q=0===_.cmpn(1)?I:v).cmpn(0)<0&&q.iadd(c),q},a.prototype.gcd=function(c){if(this.isZero())return c.abs();if(c.isZero())return this.abs();var _=this.clone(),E=c.clone();_.negative=0,E.negative=0;for(var I=0;_.isEven()&&E.isEven();I++)_.iushrn(1),E.iushrn(1);for(;;){for(;_.isEven();)_.iushrn(1);for(;E.isEven();)E.iushrn(1);var v=_.cmp(E);if(v<0){var n=_;_=E,E=n}else if(0===v||0===E.cmpn(1))break;_.isub(E)}return E.iushln(I)},a.prototype.invm=function(c){return this.egcd(c).a.umod(c)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(c){return this.words[0]&c},a.prototype.bincn=function(c){f("number"==typeof c);var _=c%26,E=(c-_)/26,I=1<<_;if(this.length<=E)return this._expand(E+1),this.words[E]|=I,this;for(var v=I,n=E;0!==v&&n>>26,this.words[n]=C&=67108863}return 0!==v&&(this.words[n]=v,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(c){var E,_=c<0;if(0!==this.negative&&!_)return-1;if(0===this.negative&&_)return 1;if(this._strip(),this.length>1)E=1;else{_&&(c=-c),f(c<=67108863,"Number is too big");var I=0|this.words[0];E=I===c?0:Ic.length)return 1;if(this.length=0;E--){var I=0|this.words[E],v=0|c.words[E];if(I!==v){Iv&&(_=1);break}}return _},a.prototype.gtn=function(c){return 1===this.cmpn(c)},a.prototype.gt=function(c){return 1===this.cmp(c)},a.prototype.gten=function(c){return this.cmpn(c)>=0},a.prototype.gte=function(c){return this.cmp(c)>=0},a.prototype.ltn=function(c){return-1===this.cmpn(c)},a.prototype.lt=function(c){return-1===this.cmp(c)},a.prototype.lten=function(c){return this.cmpn(c)<=0},a.prototype.lte=function(c){return this.cmp(c)<=0},a.prototype.eqn=function(c){return 0===this.cmpn(c)},a.prototype.eq=function(c){return 0===this.cmp(c)},a.red=function(c){return new i(c)},a.prototype.toRed=function(c){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),c.convertTo(this)._forceRed(c)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(c){return this.red=c,this},a.prototype.forceRed=function(c){return f(!this.red,"Already a number in reduction context"),this._forceRed(c)},a.prototype.redAdd=function(c){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,c)},a.prototype.redIAdd=function(c){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,c)},a.prototype.redSub=function(c){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,c)},a.prototype.redISub=function(c){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,c)},a.prototype.redShl=function(c){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,c)},a.prototype.redMul=function(c){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,c),this.red.mul(this,c)},a.prototype.redIMul=function(c){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,c),this.red.imul(this,c)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(c){return f(this.red&&!c.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,c)};var te={k256:null,p224:null,p192:null,p25519:null};function ie(u,c){this.name=u,this.p=new a(c,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function oe(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function X(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function me(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function y(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function i(u){if("string"==typeof u){var c=a._prime(u);this.m=c.p,this.prime=c}else f(u.gtn(1),"modulus must be greater than 1"),this.m=u,this.prime=null}function r(u){i.call(this,u),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ie.prototype._tmp=function(){var c=new a(null);return c.words=new Array(Math.ceil(this.n/13)),c},ie.prototype.ireduce=function(c){var E,_=c;do{this.split(_,this.tmp),E=(_=(_=this.imulK(_)).iadd(this.tmp)).bitLength()}while(E>this.n);var I=E0?_.isub(this.p):void 0!==_.strip?_.strip():_._strip(),_},ie.prototype.split=function(c,_){c.iushrn(this.n,0,_)},ie.prototype.imulK=function(c){return c.imul(this.k)},M(oe,ie),oe.prototype.split=function(c,_){for(var E=4194303,I=Math.min(c.length,9),v=0;v>>22,n=C}c.words[v-10]=n>>>=22,c.length-=0===n&&c.length>10?10:9},oe.prototype.imulK=function(c){c.words[c.length]=0,c.words[c.length+1]=0,c.length+=2;for(var _=0,E=0;E>>=26,c.words[E]=v,_=I}return 0!==_&&(c.words[c.length++]=_),c},a._prime=function(c){if(te[c])return te[c];var _;if("k256"===c)_=new oe;else if("p224"===c)_=new X;else if("p192"===c)_=new me;else{if("p25519"!==c)throw new Error("Unknown prime "+c);_=new y}return te[c]=_,_},i.prototype._verify1=function(c){f(0===c.negative,"red works only with positives"),f(c.red,"red works only with red numbers")},i.prototype._verify2=function(c,_){f(0==(c.negative|_.negative),"red works only with positives"),f(c.red&&c.red===_.red,"red works only with red numbers")},i.prototype.imod=function(c){return this.prime?this.prime.ireduce(c)._forceRed(this):(A(c,c.umod(this.m)._forceRed(this)),c)},i.prototype.neg=function(c){return c.isZero()?c.clone():this.m.sub(c)._forceRed(this)},i.prototype.add=function(c,_){this._verify2(c,_);var E=c.add(_);return E.cmp(this.m)>=0&&E.isub(this.m),E._forceRed(this)},i.prototype.iadd=function(c,_){this._verify2(c,_);var E=c.iadd(_);return E.cmp(this.m)>=0&&E.isub(this.m),E},i.prototype.sub=function(c,_){this._verify2(c,_);var E=c.sub(_);return E.cmpn(0)<0&&E.iadd(this.m),E._forceRed(this)},i.prototype.isub=function(c,_){this._verify2(c,_);var E=c.isub(_);return E.cmpn(0)<0&&E.iadd(this.m),E},i.prototype.shl=function(c,_){return this._verify1(c),this.imod(c.ushln(_))},i.prototype.imul=function(c,_){return this._verify2(c,_),this.imod(c.imul(_))},i.prototype.mul=function(c,_){return this._verify2(c,_),this.imod(c.mul(_))},i.prototype.isqr=function(c){return this.imul(c,c.clone())},i.prototype.sqr=function(c){return this.mul(c,c)},i.prototype.sqrt=function(c){if(c.isZero())return c.clone();var _=this.m.andln(3);if(f(_%2==1),3===_){var E=this.m.add(new a(1)).iushrn(2);return this.pow(c,E)}for(var I=this.m.subn(1),v=0;!I.isZero()&&0===I.andln(1);)v++,I.iushrn(1);f(!I.isZero());var n=new a(1).toRed(this),C=n.redNeg(),B=this.m.subn(1).iushrn(1),P=this.m.bitLength();for(P=new a(2*P*P).toRed(this);0!==this.pow(P,B).cmp(C);)P.redIAdd(C);for(var H=this.pow(P,I),q=this.pow(c,I.addn(1).iushrn(1)),he=this.pow(c,I),_e=v;0!==he.cmp(n);){for(var Ne=he,we=0;0!==Ne.cmp(n);we++)Ne=Ne.redSqr();f(we<_e);var Q=this.pow(H,new a(1).iushln(_e-we-1));q=q.redMul(Q),H=Q.redSqr(),he=he.redMul(H),_e=we}return q},i.prototype.invm=function(c){var _=c._invmp(this.m);return 0!==_.negative?(_.negative=0,this.imod(_).redNeg()):this.imod(_)},i.prototype.pow=function(c,_){if(_.isZero())return new a(1).toRed(this);if(0===_.cmpn(1))return c.clone();var I=new Array(16);I[0]=new a(1).toRed(this),I[1]=c;for(var v=2;v=0;v--){for(var H=_.words[v],q=P-1;q>=0;q--){var he=H>>q&1;n!==I[0]&&(n=this.sqr(n)),0!==he||0!==C?(C<<=1,C|=he,(4==++B||0===v&&0===q)&&(n=this.mul(n,I[C]),B=0,C=0)):B=0}P=26}return n},i.prototype.convertTo=function(c){var _=c.umod(this.m);return _===c?_.clone():_},i.prototype.convertFrom=function(c){var _=c.clone();return _.red=null,_},a.mont=function(c){return new r(c)},M(r,i),r.prototype.convertTo=function(c){return this.imod(c.ushln(this.shift))},r.prototype.convertFrom=function(c){var _=this.imod(c.mul(this.rinv));return _.red=null,_},r.prototype.imul=function(c,_){if(c.isZero()||_.isZero())return c.words[0]=0,c.length=1,c;var E=c.imul(_),I=E.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=E.isub(I).iushrn(this.shift),n=v;return v.cmp(this.m)>=0?n=v.isub(this.m):v.cmpn(0)<0&&(n=v.iadd(this.m)),n._forceRed(this)},r.prototype.mul=function(c,_){if(c.isZero()||_.isZero())return new a(0)._forceRed(this);var E=c.mul(_),I=E.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=E.isub(I).iushrn(this.shift),n=v;return v.cmp(this.m)>=0?n=v.isub(this.m):v.cmpn(0)<0&&(n=v.iadd(this.m)),n._forceRed(this)},r.prototype.invm=function(c){return this.imod(c._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},7950:(Ve,j,p)=>{var t;function e(M){this.rand=M}if(Ve.exports=function(a){return t||(t=new e(null)),t.generate(a)},Ve.exports.Rand=e,e.prototype.generate=function(a){return this._rand(a)},e.prototype._rand=function(a){if(this.rand.getBytes)return this.rand.getBytes(a);for(var b=new Uint8Array(a),d=0;d{var t=p(3502).Buffer;function e(N){t.isBuffer(N)||(N=t.from(N));for(var h=N.length/4|0,A=new Array(h),w=0;w>>24]^k[Y>>>16&255]^S[ne>>>8&255]^U[255&$]^h[X++],te=L[Y>>>24]^k[ne>>>16&255]^S[$>>>8&255]^U[255&Z]^h[X++],ie=L[ne>>>24]^k[$>>>16&255]^S[Z>>>8&255]^U[255&Y]^h[X++],oe=L[$>>>24]^k[Z>>>16&255]^S[Y>>>8&255]^U[255&ne]^h[X++],Z=de,Y=te,ne=ie,$=oe;return de=(w[Z>>>24]<<24|w[Y>>>16&255]<<16|w[ne>>>8&255]<<8|w[255&$])^h[X++],te=(w[Y>>>24]<<24|w[ne>>>16&255]<<16|w[$>>>8&255]<<8|w[255&Z])^h[X++],ie=(w[ne>>>24]<<24|w[$>>>16&255]<<16|w[Z>>>8&255]<<8|w[255&Y])^h[X++],oe=(w[$>>>24]<<24|w[Z>>>16&255]<<16|w[Y>>>8&255]<<8|w[255&ne])^h[X++],[de>>>=0,te>>>=0,ie>>>=0,oe>>>=0]}var a=[0,1,2,4,8,16,32,64,128,27,54],b=function(){for(var N=new Array(256),h=0;h<256;h++)N[h]=h<128?h<<1:h<<1^283;for(var A=[],w=[],D=[[],[],[],[]],L=[[],[],[],[]],k=0,S=0,U=0;U<256;++U){var Z=S^S<<1^S<<2^S<<3^S<<4;A[k]=Z=Z>>>8^255&Z^99,w[Z]=k;var Y=N[k],ne=N[Y],$=N[ne],de=257*N[Z]^16843008*Z;D[0][k]=de<<24|de>>>8,D[1][k]=de<<16|de>>>16,D[2][k]=de<<8|de>>>24,D[3][k]=de,L[0][Z]=(de=16843009*$^65537*ne^257*Y^16843008*k)<<24|de>>>8,L[1][Z]=de<<16|de>>>16,L[2][Z]=de<<8|de>>>24,L[3][Z]=de,0===k?k=S=1:(k=Y^N[N[N[$^Y]]],S^=N[N[S]])}return{SBOX:A,INV_SBOX:w,SUB_MIX:D,INV_SUB_MIX:L}}();function d(N){this._key=e(N),this._reset()}d.blockSize=16,d.keySize=32,d.prototype.blockSize=d.blockSize,d.prototype.keySize=d.keySize,d.prototype._reset=function(){for(var N=this._key,h=N.length,A=h+6,w=4*(A+1),D=[],L=0;L>>24)>>>24]<<24|b.SBOX[k>>>16&255]<<16|b.SBOX[k>>>8&255]<<8|b.SBOX[255&k],k^=a[L/h|0]<<24):h>6&&L%h==4&&(k=b.SBOX[k>>>24]<<24|b.SBOX[k>>>16&255]<<16|b.SBOX[k>>>8&255]<<8|b.SBOX[255&k]),D[L]=D[L-h]^k}for(var S=[],U=0;U>>24]]^b.INV_SUB_MIX[1][b.SBOX[Y>>>16&255]]^b.INV_SUB_MIX[2][b.SBOX[Y>>>8&255]]^b.INV_SUB_MIX[3][b.SBOX[255&Y]]}this._nRounds=A,this._keySchedule=D,this._invKeySchedule=S},d.prototype.encryptBlockRaw=function(N){return M(N=e(N),this._keySchedule,b.SUB_MIX,b.SBOX,this._nRounds)},d.prototype.encryptBlock=function(N){var h=this.encryptBlockRaw(N),A=t.allocUnsafe(16);return A.writeUInt32BE(h[0],0),A.writeUInt32BE(h[1],4),A.writeUInt32BE(h[2],8),A.writeUInt32BE(h[3],12),A},d.prototype.decryptBlock=function(N){var h=(N=e(N))[1];N[1]=N[3],N[3]=h;var A=M(N,this._invKeySchedule,b.INV_SUB_MIX,b.INV_SBOX,this._nRounds),w=t.allocUnsafe(16);return w.writeUInt32BE(A[0],0),w.writeUInt32BE(A[3],4),w.writeUInt32BE(A[2],8),w.writeUInt32BE(A[1],12),w},d.prototype.scrub=function(){f(this._keySchedule),f(this._invKeySchedule),f(this._key)},Ve.exports.AES=d},9382:(Ve,j,p)=>{var t=p(1899),e=p(3502).Buffer,f=p(1052),M=p(3894),a=p(8857),b=p(8789),d=p(7968);function A(w,D,L,k){f.call(this);var S=e.alloc(4,0);this._cipher=new t.AES(D);var U=this._cipher.encryptBlock(S);this._ghash=new a(U),L=function h(w,D,L){if(12===D.length)return w._finID=e.concat([D,e.from([0,0,0,1])]),e.concat([D,e.from([0,0,0,2])]);var k=new a(L),S=D.length,U=S%16;k.update(D),U&&k.update(e.alloc(U=16-U,0)),k.update(e.alloc(8,0));var Z=8*S,Y=e.alloc(8);Y.writeUIntBE(Z,0,8),k.update(Y),w._finID=k.state;var ne=e.from(w._finID);return d(ne),ne}(this,L,U),this._prev=e.from(L),this._cache=e.allocUnsafe(0),this._secCache=e.allocUnsafe(0),this._decrypt=k,this._alen=0,this._len=0,this._mode=w,this._authTag=null,this._called=!1}M(A,f),A.prototype._update=function(w){if(!this._called&&this._alen){var D=16-this._alen%16;D<16&&(D=e.alloc(D,0),this._ghash.update(D))}this._called=!0;var L=this._mode.encrypt(this,w);return this._ghash.update(this._decrypt?w:L),this._len+=w.length,L},A.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var w=b(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function N(w,D){var L=0;w.length!==D.length&&L++;for(var k=Math.min(w.length,D.length),S=0;S{var t=p(6900),e=p(856),f=p(4946);j.createCipher=j.Cipher=t.createCipher,j.createCipheriv=j.Cipheriv=t.createCipheriv,j.createDecipher=j.Decipher=e.createDecipher,j.createDecipheriv=j.Decipheriv=e.createDecipheriv,j.listCiphers=j.getCiphers=function M(){return Object.keys(f)}},856:(Ve,j,p)=>{var t=p(9382),e=p(3502).Buffer,f=p(9171),M=p(8441),a=p(1052),b=p(1899),d=p(347);function h(k,S,U){a.call(this),this._cache=new A,this._last=void 0,this._cipher=new b.AES(S),this._prev=e.from(U),this._mode=k,this._autopadding=!0}function A(){this.cache=e.allocUnsafe(0)}function D(k,S,U){var Z=f[k.toLowerCase()];if(!Z)throw new TypeError("invalid suite type");if("string"==typeof U&&(U=e.from(U)),"GCM"!==Z.mode&&U.length!==Z.iv)throw new TypeError("invalid iv length "+U.length);if("string"==typeof S&&(S=e.from(S)),S.length!==Z.key/8)throw new TypeError("invalid key length "+S.length);return"stream"===Z.type?new M(Z.module,S,U,!0):"auth"===Z.type?new t(Z.module,S,U,!0):new h(Z.module,S,U)}p(3894)(h,a),h.prototype._update=function(k){this._cache.add(k);for(var S,U,Z=[];S=this._cache.get(this._autopadding);)U=this._mode.decrypt(this,S),Z.push(U);return e.concat(Z)},h.prototype._final=function(){var k=this._cache.flush();if(this._autopadding)return function w(k){var S=k[15];if(S<1||S>16)throw new Error("unable to decrypt data");for(var U=-1;++U16)return S=this.cache.slice(0,16),this.cache=this.cache.slice(16),S}else if(this.cache.length>=16)return S=this.cache.slice(0,16),this.cache=this.cache.slice(16),S;return null},A.prototype.flush=function(){if(this.cache.length)return this.cache},j.createDecipher=function L(k,S){var U=f[k.toLowerCase()];if(!U)throw new TypeError("invalid suite type");var Z=d(S,!1,U.key,U.iv);return D(k,Z.key,Z.iv)},j.createDecipheriv=D},6900:(Ve,j,p)=>{var t=p(9171),e=p(9382),f=p(3502).Buffer,M=p(8441),a=p(1052),b=p(1899),d=p(347);function h(k,S,U){a.call(this),this._cache=new w,this._cipher=new b.AES(S),this._prev=f.from(U),this._mode=k,this._autopadding=!0}p(3894)(h,a),h.prototype._update=function(k){this._cache.add(k);for(var S,U,Z=[];S=this._cache.get();)U=this._mode.encrypt(this,S),Z.push(U);return f.concat(Z)};var A=f.alloc(16,16);function w(){this.cache=f.allocUnsafe(0)}function D(k,S,U){var Z=t[k.toLowerCase()];if(!Z)throw new TypeError("invalid suite type");if("string"==typeof S&&(S=f.from(S)),S.length!==Z.key/8)throw new TypeError("invalid key length "+S.length);if("string"==typeof U&&(U=f.from(U)),"GCM"!==Z.mode&&U.length!==Z.iv)throw new TypeError("invalid iv length "+U.length);return"stream"===Z.type?new M(Z.module,S,U):"auth"===Z.type?new e(Z.module,S,U):new h(Z.module,S,U)}h.prototype._final=function(){var k=this._cache.flush();if(this._autopadding)return k=this._mode.encrypt(this,k),this._cipher.scrub(),k;if(!k.equals(A))throw this._cipher.scrub(),new Error("data not multiple of block length")},h.prototype.setAutoPadding=function(k){return this._autopadding=!!k,this},w.prototype.add=function(k){this.cache=f.concat([this.cache,k])},w.prototype.get=function(){if(this.cache.length>15){var k=this.cache.slice(0,16);return this.cache=this.cache.slice(16),k}return null},w.prototype.flush=function(){for(var k=16-this.cache.length,S=f.allocUnsafe(k),U=-1;++U{var t=p(3502).Buffer,e=t.alloc(16,0);function M(b){var d=t.allocUnsafe(16);return d.writeUInt32BE(b[0]>>>0,0),d.writeUInt32BE(b[1]>>>0,4),d.writeUInt32BE(b[2]>>>0,8),d.writeUInt32BE(b[3]>>>0,12),d}function a(b){this.h=b,this.state=t.alloc(16,0),this.cache=t.allocUnsafe(0)}a.prototype.ghash=function(b){for(var d=-1;++d0;N--)b[N]=b[N]>>>1|(1&b[N-1])<<31;b[0]=b[0]>>>1,A&&(b[0]=b[0]^225<<24)}this.state=M(d)},a.prototype.update=function(b){this.cache=t.concat([this.cache,b]);for(var d;this.cache.length>=16;)d=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(d)},a.prototype.final=function(b,d){return this.cache.length&&this.ghash(t.concat([this.cache,e],16)),this.ghash(M([0,b,0,d])),this.state},Ve.exports=a},7968:Ve=>{Ve.exports=function j(p){for(var e,t=p.length;t--;){if(255!==(e=p.readUInt8(t))){e++,p.writeUInt8(e,t);break}p.writeUInt8(0,t)}}},4903:(Ve,j,p)=>{var t=p(8789);j.encrypt=function(e,f){var M=t(f,e._prev);return e._prev=e._cipher.encryptBlock(M),e._prev},j.decrypt=function(e,f){var M=e._prev;e._prev=f;var a=e._cipher.decryptBlock(f);return t(a,M)}},9885:(Ve,j,p)=>{var t=p(3502).Buffer,e=p(8789);function f(M,a,b){var d=a.length,N=e(a,M._cache);return M._cache=M._cache.slice(d),M._prev=t.concat([M._prev,b?a:N]),N}j.encrypt=function(M,a,b){for(var N,d=t.allocUnsafe(0);a.length;){if(0===M._cache.length&&(M._cache=M._cipher.encryptBlock(M._prev),M._prev=t.allocUnsafe(0)),!(M._cache.length<=a.length)){d=t.concat([d,f(M,a,b)]);break}d=t.concat([d,f(M,a.slice(0,N=M._cache.length),b)]),a=a.slice(N)}return d}},6531:(Ve,j,p)=>{var t=p(3502).Buffer;function e(M,a,b){for(var w,D,N=-1,A=0;++N<8;)A+=(128&(D=M._cipher.encryptBlock(M._prev)[0]^(w=a&1<<7-N?128:0)))>>N%8,M._prev=f(M._prev,b?w:D);return A}function f(M,a){var b=M.length,d=-1,N=t.allocUnsafe(M.length);for(M=t.concat([M,t.from([a])]);++d>7;return N}j.encrypt=function(M,a,b){for(var d=a.length,N=t.allocUnsafe(d),h=-1;++h{var t=p(3502).Buffer;function e(f,M,a){var d=f._cipher.encryptBlock(f._prev)[0]^M;return f._prev=t.concat([f._prev.slice(1),t.from([a?M:d])]),d}j.encrypt=function(f,M,a){for(var b=M.length,d=t.allocUnsafe(b),N=-1;++N{var t=p(8789),e=p(3502).Buffer,f=p(7968);function M(b){var d=b._cipher.encryptBlockRaw(b._prev);return f(b._prev),d}j.encrypt=function(b,d){var N=Math.ceil(d.length/16),h=b._cache.length;b._cache=e.concat([b._cache,e.allocUnsafe(16*N)]);for(var A=0;A{j.encrypt=function(p,t){return p._cipher.encryptBlock(t)},j.decrypt=function(p,t){return p._cipher.decryptBlock(t)}},9171:(Ve,j,p)=>{var t={ECB:p(1704),CBC:p(4903),CFB:p(9885),CFB8:p(1641),CFB1:p(6531),OFB:p(6816),CTR:p(1150),GCM:p(1150)},e=p(4946);for(var f in e)e[f].module=t[e[f].mode];Ve.exports=e},6816:(Ve,j,p)=>{var t=p(8789);function e(f){return f._prev=f._cipher.encryptBlock(f._prev),f._prev}j.encrypt=function(f,M){for(;f._cache.length{var t=p(1899),e=p(3502).Buffer,f=p(1052);function a(b,d,N,h){f.call(this),this._cipher=new t.AES(d),this._prev=e.from(N),this._cache=e.allocUnsafe(0),this._secCache=e.allocUnsafe(0),this._decrypt=h,this._mode=b}p(3894)(a,f),a.prototype._update=function(b){return this._mode.encrypt(this,b,this._decrypt)},a.prototype._final=function(){this._cipher.scrub()},Ve.exports=a},5255:(Ve,j,p)=>{var t=p(9004),e=p(4330),f=p(9171),M=p(1115),a=p(347);function N(w,D,L){if(w=w.toLowerCase(),f[w])return e.createCipheriv(w,D,L);if(M[w])return new t({key:D,iv:L,mode:w});throw new TypeError("invalid suite type")}function h(w,D,L){if(w=w.toLowerCase(),f[w])return e.createDecipheriv(w,D,L);if(M[w])return new t({key:D,iv:L,mode:w,decrypt:!0});throw new TypeError("invalid suite type")}j.createCipher=j.Cipher=function b(w,D){var L,k;if(w=w.toLowerCase(),f[w])L=f[w].key,k=f[w].iv;else{if(!M[w])throw new TypeError("invalid suite type");L=8*M[w].key,k=M[w].iv}var S=a(D,!1,L,k);return N(w,S.key,S.iv)},j.createCipheriv=j.Cipheriv=N,j.createDecipher=j.Decipher=function d(w,D){var L,k;if(w=w.toLowerCase(),f[w])L=f[w].key,k=f[w].iv;else{if(!M[w])throw new TypeError("invalid suite type");L=8*M[w].key,k=M[w].iv}var S=a(D,!1,L,k);return h(w,S.key,S.iv)},j.createDecipheriv=j.Decipheriv=h,j.listCiphers=j.getCiphers=function A(){return Object.keys(M).concat(e.getCiphers())}},9004:(Ve,j,p)=>{var t=p(1052),e=p(3684),f=p(3894),M=p(3502).Buffer,a={"des-ede3-cbc":e.CBC.instantiate(e.EDE),"des-ede3":e.EDE,"des-ede-cbc":e.CBC.instantiate(e.EDE),"des-ede":e.EDE,"des-cbc":e.CBC.instantiate(e.DES),"des-ecb":e.DES};function b(d){t.call(this);var A,N=d.mode.toLowerCase(),h=a[N];A=d.decrypt?"decrypt":"encrypt";var w=d.key;M.isBuffer(w)||(w=M.from(w)),("des-ede"===N||"des-ede-cbc"===N)&&(w=M.concat([w,w.slice(0,8)]));var D=d.iv;M.isBuffer(D)||(D=M.from(D)),this._des=h.create({key:w,iv:D,type:A})}a.des=a["des-cbc"],a.des3=a["des-ede3-cbc"],Ve.exports=b,f(b,t),b.prototype._update=function(d){return M.from(this._des.update(d))},b.prototype._final=function(){return M.from(this._des.final())}},1115:(Ve,j)=>{j["des-ecb"]={key:8,iv:0},j["des-cbc"]=j.des={key:8,iv:8},j["des-ede3-cbc"]=j.des3={key:24,iv:8},j["des-ede3"]={key:24,iv:0},j["des-ede-cbc"]={key:16,iv:8},j["des-ede"]={key:16,iv:0}},8466:(Ve,j,p)=>{var t=p(8538),e=p(3753);function M(b){var N,d=b.modulus.byteLength();do{N=new t(e(d))}while(N.cmp(b.modulus)>=0||!N.umod(b.prime1)||!N.umod(b.prime2));return N}function a(b,d){var N=function f(b){var d=M(b);return{blinder:d.toRed(t.mont(b.modulus)).redPow(new t(b.publicExponent)).fromRed(),unblinder:d.invm(b.modulus)}}(d),h=d.modulus.byteLength(),A=new t(b).mul(N.blinder).umod(d.modulus),w=A.toRed(t.mont(d.prime1)),D=A.toRed(t.mont(d.prime2)),L=d.coefficient,k=d.prime1,S=d.prime2,U=w.redPow(d.exponent1).fromRed(),Z=D.redPow(d.exponent2).fromRed(),Y=U.isub(Z).imul(L).umod(k).imul(S);return Z.iadd(Y).imul(N.unblinder).umod(d.modulus).toArrayLike(Buffer,"be",h)}a.getr=M,Ve.exports=a},7793:(Ve,j,p)=>{Ve.exports=p(5207)},3923:(Ve,j,p)=>{var t=p(8446).Buffer,e=p(6386),f=p(5685),M=p(3894),a=p(9947),b=p(3946),d=p(5207);function N(D){f.Writable.call(this);var L=d[D];if(!L)throw new Error("Unknown message digest");this._hashType=L.hash,this._hash=e(L.hash),this._tag=L.id,this._signType=L.sign}function h(D){f.Writable.call(this);var L=d[D];if(!L)throw new Error("Unknown message digest");this._hash=e(L.hash),this._tag=L.id,this._signType=L.sign}function A(D){return new N(D)}function w(D){return new h(D)}Object.keys(d).forEach(function(D){d[D].id=t.from(d[D].id,"hex"),d[D.toLowerCase()]=d[D]}),M(N,f.Writable),N.prototype._write=function(L,k,S){this._hash.update(L),S()},N.prototype.update=function(L,k){return"string"==typeof L&&(L=t.from(L,k)),this._hash.update(L),this},N.prototype.sign=function(L,k){this.end();var S=this._hash.digest(),U=a(S,L,this._hashType,this._signType,this._tag);return k?U.toString(k):U},M(h,f.Writable),h.prototype._write=function(L,k,S){this._hash.update(L),S()},h.prototype.update=function(L,k){return"string"==typeof L&&(L=t.from(L,k)),this._hash.update(L),this},h.prototype.verify=function(L,k,S){"string"==typeof k&&(k=t.from(k,S)),this.end();var U=this._hash.digest();return b(k,U,L,this._signType,this._tag)},Ve.exports={Sign:A,Verify:w,createSign:A,createVerify:w}},9947:(Ve,j,p)=>{var t=p(8446).Buffer,e=p(4529),f=p(8466),M=p(7715).ec,a=p(8538),b=p(2772),d=p(1308);function D(Z,Y,ne,$){if((Z=t.from(Z.toArray())).length0&&ne.ishrn($),ne}function S(Z,Y,ne){var $,de;do{for($=t.alloc(0);8*$.length{var t=p(8446).Buffer,e=p(8538),f=p(7715).ec,M=p(2772),a=p(1308);function h(A,w){if(A.cmpn(0)<=0)throw new Error("invalid sig");if(A.cmp(w)>=w)throw new Error("invalid sig")}Ve.exports=function b(A,w,D,L,k){var S=M(D);if("ec"===S.type){if("ecdsa"!==L&&"ecdsa/rsa"!==L)throw new Error("wrong public key type");return function d(A,w,D){var L=a[D.data.algorithm.curve.join(".")];if(!L)throw new Error("unknown curve "+D.data.algorithm.curve.join("."));return new f(L).verify(w,A,D.data.subjectPrivateKey.data)}(A,w,S)}if("dsa"===S.type){if("dsa"!==L)throw new Error("wrong public key type");return function N(A,w,D){var L=D.data.p,k=D.data.q,S=D.data.g,U=D.data.pub_key,Z=M.signature.decode(A,"der"),Y=Z.s,ne=Z.r;h(Y,k),h(ne,k);var $=e.mont(L),de=Y.invm(k);return 0===S.toRed($).redPow(new e(w).mul(de).mod(k)).fromRed().mul(U.toRed($).redPow(ne.mul(de).mod(k)).fromRed()).mod(L).mod(k).cmp(ne)}(A,w,S)}if("rsa"!==L&&"ecdsa/rsa"!==L)throw new Error("wrong public key type");w=t.concat([k,w]);for(var U=S.modulus.byteLength(),Z=[1],Y=0;w.length+Z.length+2{var t=p(3172),e=t.Buffer;function f(a,b){for(var d in a)b[d]=a[d]}function M(a,b,d){return e(a,b,d)}e.from&&e.alloc&&e.allocUnsafe&&e.allocUnsafeSlow?Ve.exports=t:(f(t,j),j.Buffer=M),M.prototype=Object.create(e.prototype),f(e,M),M.from=function(a,b,d){if("number"==typeof a)throw new TypeError("Argument must not be a number");return e(a,b,d)},M.alloc=function(a,b,d){if("number"!=typeof a)throw new TypeError("Argument must be a number");var N=e(a);return void 0!==b?"string"==typeof d?N.fill(b,d):N.fill(b):N.fill(0),N},M.allocUnsafe=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return e(a)},M.allocUnsafeSlow=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return t.SlowBuffer(a)}},8789:Ve=>{Ve.exports=function(p,t){for(var e=Math.min(p.length,t.length),f=new Buffer(e),M=0;M{"use strict";var t=p(5343),e=p(8461),f="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;j.Buffer=d,j.SlowBuffer=function Y(Ie){return+Ie!=Ie&&(Ie=0),d.alloc(+Ie)},j.INSPECT_MAX_BYTES=50;var M=2147483647;function b(Ie){if(Ie>M)throw new RangeError('The value "'+Ie+'" is invalid for option "size"');var Ae=new Uint8Array(Ie);return Object.setPrototypeOf(Ae,d.prototype),Ae}function d(Ie,Ae,le){if("number"==typeof Ie){if("string"==typeof Ae)throw new TypeError('The "string" argument must be of type string. Received type number');return w(Ie)}return N(Ie,Ae,le)}function N(Ie,Ae,le){if("string"==typeof Ie)return function D(Ie,Ae){if(("string"!=typeof Ae||""===Ae)&&(Ae="utf8"),!d.isEncoding(Ae))throw new TypeError("Unknown encoding: "+Ae);var le=0|ne(Ie,Ae),Te=b(le),xe=Te.write(Ie,Ae);return xe!==le&&(Te=Te.slice(0,xe)),Te}(Ie,Ae);if(ArrayBuffer.isView(Ie))return function k(Ie){if(V(Ie,Uint8Array)){var Ae=new Uint8Array(Ie);return S(Ae.buffer,Ae.byteOffset,Ae.byteLength)}return L(Ie)}(Ie);if(null==Ie)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Ie);if(V(Ie,ArrayBuffer)||Ie&&V(Ie.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(V(Ie,SharedArrayBuffer)||Ie&&V(Ie.buffer,SharedArrayBuffer)))return S(Ie,Ae,le);if("number"==typeof Ie)throw new TypeError('The "value" argument must not be of type number. Received type number');var Te=Ie.valueOf&&Ie.valueOf();if(null!=Te&&Te!==Ie)return d.from(Te,Ae,le);var xe=function U(Ie){if(d.isBuffer(Ie)){var Ae=0|Z(Ie.length),le=b(Ae);return 0===le.length||Ie.copy(le,0,0,Ae),le}return void 0!==Ie.length?"number"!=typeof Ie.length||De(Ie.length)?b(0):L(Ie):"Buffer"===Ie.type&&Array.isArray(Ie.data)?L(Ie.data):void 0}(Ie);if(xe)return xe;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof Ie[Symbol.toPrimitive])return d.from(Ie[Symbol.toPrimitive]("string"),Ae,le);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Ie)}function h(Ie){if("number"!=typeof Ie)throw new TypeError('"size" argument must be of type number');if(Ie<0)throw new RangeError('The value "'+Ie+'" is invalid for option "size"')}function w(Ie){return h(Ie),b(Ie<0?0:0|Z(Ie))}function L(Ie){for(var Ae=Ie.length<0?0:0|Z(Ie.length),le=b(Ae),Te=0;Te=M)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+M.toString(16)+" bytes");return 0|Ie}function ne(Ie,Ae){if(d.isBuffer(Ie))return Ie.length;if(ArrayBuffer.isView(Ie)||V(Ie,ArrayBuffer))return Ie.byteLength;if("string"!=typeof Ie)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof Ie);var le=Ie.length,Te=arguments.length>2&&!0===arguments[2];if(!Te&&0===le)return 0;for(var xe=!1;;)switch(Ae){case"ascii":case"latin1":case"binary":return le;case"utf8":case"utf-8":return Ne(Ie).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*le;case"hex":return le>>>1;case"base64":return Ue(Ie).length;default:if(xe)return Te?-1:Ne(Ie).length;Ae=(""+Ae).toLowerCase(),xe=!0}}function $(Ie,Ae,le){var Te=!1;if((void 0===Ae||Ae<0)&&(Ae=0),Ae>this.length||((void 0===le||le>this.length)&&(le=this.length),le<=0)||(le>>>=0)<=(Ae>>>=0))return"";for(Ie||(Ie="utf8");;)switch(Ie){case"hex":return v(this,Ae,le);case"utf8":case"utf-8":return u(this,Ae,le);case"ascii":return E(this,Ae,le);case"latin1":case"binary":return I(this,Ae,le);case"base64":return r(this,Ae,le);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,Ae,le);default:if(Te)throw new TypeError("Unknown encoding: "+Ie);Ie=(Ie+"").toLowerCase(),Te=!0}}function de(Ie,Ae,le){var Te=Ie[Ae];Ie[Ae]=Ie[le],Ie[le]=Te}function te(Ie,Ae,le,Te,xe){if(0===Ie.length)return-1;if("string"==typeof le?(Te=le,le=0):le>2147483647?le=2147483647:le<-2147483648&&(le=-2147483648),De(le=+le)&&(le=xe?0:Ie.length-1),le<0&&(le=Ie.length+le),le>=Ie.length){if(xe)return-1;le=Ie.length-1}else if(le<0){if(!xe)return-1;le=0}if("string"==typeof Ae&&(Ae=d.from(Ae,Te)),d.isBuffer(Ae))return 0===Ae.length?-1:ie(Ie,Ae,le,Te,xe);if("number"==typeof Ae)return Ae&=255,"function"==typeof Uint8Array.prototype.indexOf?xe?Uint8Array.prototype.indexOf.call(Ie,Ae,le):Uint8Array.prototype.lastIndexOf.call(Ie,Ae,le):ie(Ie,[Ae],le,Te,xe);throw new TypeError("val must be string, number or Buffer")}function ie(Ie,Ae,le,Te,xe){var Le,W=1,ee=Ie.length,ue=Ae.length;if(void 0!==Te&&("ucs2"===(Te=String(Te).toLowerCase())||"ucs-2"===Te||"utf16le"===Te||"utf-16le"===Te)){if(Ie.length<2||Ae.length<2)return-1;W=2,ee/=2,ue/=2,le/=2}function Ce(ui,Wt){return 1===W?ui[Wt]:ui.readUInt16BE(Wt*W)}if(xe){var ut=-1;for(Le=le;Leee&&(le=ee-ue),Le=le;Le>=0;Le--){for(var ht=!0,It=0;Itxe&&(Te=xe):Te=xe;var W=Ae.length;Te>W/2&&(Te=W/2);for(var ee=0;ee>8,W.push(le%256),W.push(Te);return W}(Ae,Ie.length-le),Ie,le,Te)}function r(Ie,Ae,le){return t.fromByteArray(0===Ae&&le===Ie.length?Ie:Ie.slice(Ae,le))}function u(Ie,Ae,le){le=Math.min(Ie.length,le);for(var Te=[],xe=Ae;xe239?4:W>223?3:W>191?2:1;if(xe+ue<=le)switch(ue){case 1:W<128&&(ee=W);break;case 2:128==(192&(Ce=Ie[xe+1]))&&(ht=(31&W)<<6|63&Ce)>127&&(ee=ht);break;case 3:Le=Ie[xe+2],128==(192&(Ce=Ie[xe+1]))&&128==(192&Le)&&(ht=(15&W)<<12|(63&Ce)<<6|63&Le)>2047&&(ht<55296||ht>57343)&&(ee=ht);break;case 4:Le=Ie[xe+2],ut=Ie[xe+3],128==(192&(Ce=Ie[xe+1]))&&128==(192&Le)&&128==(192&ut)&&(ht=(15&W)<<18|(63&Ce)<<12|(63&Le)<<6|63&ut)>65535&&ht<1114112&&(ee=ht)}null===ee?(ee=65533,ue=1):ee>65535&&(Te.push((ee-=65536)>>>10&1023|55296),ee=56320|1023&ee),Te.push(ee),xe+=ue}return function _(Ie){var Ae=Ie.length;if(Ae<=c)return String.fromCharCode.apply(String,Ie);for(var le="",Te=0;Texe.length?d.from(ee).copy(xe,W):Uint8Array.prototype.set.call(xe,ee,W);else{if(!d.isBuffer(ee))throw new TypeError('"list" argument must be an Array of Buffers');ee.copy(xe,W)}W+=ee.length}return xe},d.byteLength=ne,d.prototype._isBuffer=!0,d.prototype.swap16=function(){var Ae=this.length;if(Ae%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var le=0;lele&&(Ae+=" ... "),""},f&&(d.prototype[f]=d.prototype.inspect),d.prototype.compare=function(Ae,le,Te,xe,W){if(V(Ae,Uint8Array)&&(Ae=d.from(Ae,Ae.offset,Ae.byteLength)),!d.isBuffer(Ae))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof Ae);if(void 0===le&&(le=0),void 0===Te&&(Te=Ae?Ae.length:0),void 0===xe&&(xe=0),void 0===W&&(W=this.length),le<0||Te>Ae.length||xe<0||W>this.length)throw new RangeError("out of range index");if(xe>=W&&le>=Te)return 0;if(xe>=W)return-1;if(le>=Te)return 1;if(this===Ae)return 0;for(var ee=(W>>>=0)-(xe>>>=0),ue=(Te>>>=0)-(le>>>=0),Ce=Math.min(ee,ue),Le=this.slice(xe,W),ut=Ae.slice(le,Te),ht=0;ht>>=0,isFinite(Te)?(Te>>>=0,void 0===xe&&(xe="utf8")):(xe=Te,Te=void 0)}var W=this.length-le;if((void 0===Te||Te>W)&&(Te=W),Ae.length>0&&(Te<0||le<0)||le>this.length)throw new RangeError("Attempt to write outside buffer bounds");xe||(xe="utf8");for(var ee=!1;;)switch(xe){case"hex":return oe(this,Ae,le,Te);case"utf8":case"utf-8":return X(this,Ae,le,Te);case"ascii":case"latin1":case"binary":return me(this,Ae,le,Te);case"base64":return y(this,Ae,le,Te);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return i(this,Ae,le,Te);default:if(ee)throw new TypeError("Unknown encoding: "+xe);xe=(""+xe).toLowerCase(),ee=!0}},d.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var c=4096;function E(Ie,Ae,le){var Te="";le=Math.min(Ie.length,le);for(var xe=Ae;xeTe)&&(le=Te);for(var xe="",W=Ae;Wle)throw new RangeError("Trying to access beyond buffer length")}function B(Ie,Ae,le,Te,xe,W){if(!d.isBuffer(Ie))throw new TypeError('"buffer" argument must be a Buffer instance');if(Ae>xe||AeIe.length)throw new RangeError("Index out of range")}function P(Ie,Ae,le,Te,xe,W){if(le+Te>Ie.length)throw new RangeError("Index out of range");if(le<0)throw new RangeError("Index out of range")}function H(Ie,Ae,le,Te,xe){return Ae=+Ae,le>>>=0,xe||P(Ie,0,le,4),e.write(Ie,Ae,le,Te,23,4),le+4}function q(Ie,Ae,le,Te,xe){return Ae=+Ae,le>>>=0,xe||P(Ie,0,le,8),e.write(Ie,Ae,le,Te,52,8),le+8}d.prototype.slice=function(Ae,le){var Te=this.length;(Ae=~~Ae)<0?(Ae+=Te)<0&&(Ae=0):Ae>Te&&(Ae=Te),(le=void 0===le?Te:~~le)<0?(le+=Te)<0&&(le=0):le>Te&&(le=Te),le>>=0,le>>>=0,Te||C(Ae,le,this.length);for(var xe=this[Ae],W=1,ee=0;++ee>>=0,le>>>=0,Te||C(Ae,le,this.length);for(var xe=this[Ae+--le],W=1;le>0&&(W*=256);)xe+=this[Ae+--le]*W;return xe},d.prototype.readUint8=d.prototype.readUInt8=function(Ae,le){return Ae>>>=0,le||C(Ae,1,this.length),this[Ae]},d.prototype.readUint16LE=d.prototype.readUInt16LE=function(Ae,le){return Ae>>>=0,le||C(Ae,2,this.length),this[Ae]|this[Ae+1]<<8},d.prototype.readUint16BE=d.prototype.readUInt16BE=function(Ae,le){return Ae>>>=0,le||C(Ae,2,this.length),this[Ae]<<8|this[Ae+1]},d.prototype.readUint32LE=d.prototype.readUInt32LE=function(Ae,le){return Ae>>>=0,le||C(Ae,4,this.length),(this[Ae]|this[Ae+1]<<8|this[Ae+2]<<16)+16777216*this[Ae+3]},d.prototype.readUint32BE=d.prototype.readUInt32BE=function(Ae,le){return Ae>>>=0,le||C(Ae,4,this.length),16777216*this[Ae]+(this[Ae+1]<<16|this[Ae+2]<<8|this[Ae+3])},d.prototype.readIntLE=function(Ae,le,Te){Ae>>>=0,le>>>=0,Te||C(Ae,le,this.length);for(var xe=this[Ae],W=1,ee=0;++ee=(W*=128)&&(xe-=Math.pow(2,8*le)),xe},d.prototype.readIntBE=function(Ae,le,Te){Ae>>>=0,le>>>=0,Te||C(Ae,le,this.length);for(var xe=le,W=1,ee=this[Ae+--xe];xe>0&&(W*=256);)ee+=this[Ae+--xe]*W;return ee>=(W*=128)&&(ee-=Math.pow(2,8*le)),ee},d.prototype.readInt8=function(Ae,le){return Ae>>>=0,le||C(Ae,1,this.length),128&this[Ae]?-1*(255-this[Ae]+1):this[Ae]},d.prototype.readInt16LE=function(Ae,le){Ae>>>=0,le||C(Ae,2,this.length);var Te=this[Ae]|this[Ae+1]<<8;return 32768&Te?4294901760|Te:Te},d.prototype.readInt16BE=function(Ae,le){Ae>>>=0,le||C(Ae,2,this.length);var Te=this[Ae+1]|this[Ae]<<8;return 32768&Te?4294901760|Te:Te},d.prototype.readInt32LE=function(Ae,le){return Ae>>>=0,le||C(Ae,4,this.length),this[Ae]|this[Ae+1]<<8|this[Ae+2]<<16|this[Ae+3]<<24},d.prototype.readInt32BE=function(Ae,le){return Ae>>>=0,le||C(Ae,4,this.length),this[Ae]<<24|this[Ae+1]<<16|this[Ae+2]<<8|this[Ae+3]},d.prototype.readFloatLE=function(Ae,le){return Ae>>>=0,le||C(Ae,4,this.length),e.read(this,Ae,!0,23,4)},d.prototype.readFloatBE=function(Ae,le){return Ae>>>=0,le||C(Ae,4,this.length),e.read(this,Ae,!1,23,4)},d.prototype.readDoubleLE=function(Ae,le){return Ae>>>=0,le||C(Ae,8,this.length),e.read(this,Ae,!0,52,8)},d.prototype.readDoubleBE=function(Ae,le){return Ae>>>=0,le||C(Ae,8,this.length),e.read(this,Ae,!1,52,8)},d.prototype.writeUintLE=d.prototype.writeUIntLE=function(Ae,le,Te,xe){Ae=+Ae,le>>>=0,Te>>>=0,xe||B(this,Ae,le,Te,Math.pow(2,8*Te)-1,0);var ee=1,ue=0;for(this[le]=255&Ae;++ue>>=0,Te>>>=0,xe||B(this,Ae,le,Te,Math.pow(2,8*Te)-1,0);var ee=Te-1,ue=1;for(this[le+ee]=255&Ae;--ee>=0&&(ue*=256);)this[le+ee]=Ae/ue&255;return le+Te},d.prototype.writeUint8=d.prototype.writeUInt8=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,1,255,0),this[le]=255&Ae,le+1},d.prototype.writeUint16LE=d.prototype.writeUInt16LE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,2,65535,0),this[le]=255&Ae,this[le+1]=Ae>>>8,le+2},d.prototype.writeUint16BE=d.prototype.writeUInt16BE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,2,65535,0),this[le]=Ae>>>8,this[le+1]=255&Ae,le+2},d.prototype.writeUint32LE=d.prototype.writeUInt32LE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,4,4294967295,0),this[le+3]=Ae>>>24,this[le+2]=Ae>>>16,this[le+1]=Ae>>>8,this[le]=255&Ae,le+4},d.prototype.writeUint32BE=d.prototype.writeUInt32BE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,4,4294967295,0),this[le]=Ae>>>24,this[le+1]=Ae>>>16,this[le+2]=Ae>>>8,this[le+3]=255&Ae,le+4},d.prototype.writeIntLE=function(Ae,le,Te,xe){if(Ae=+Ae,le>>>=0,!xe){var W=Math.pow(2,8*Te-1);B(this,Ae,le,Te,W-1,-W)}var ee=0,ue=1,Ce=0;for(this[le]=255&Ae;++ee>0)-Ce&255;return le+Te},d.prototype.writeIntBE=function(Ae,le,Te,xe){if(Ae=+Ae,le>>>=0,!xe){var W=Math.pow(2,8*Te-1);B(this,Ae,le,Te,W-1,-W)}var ee=Te-1,ue=1,Ce=0;for(this[le+ee]=255&Ae;--ee>=0&&(ue*=256);)Ae<0&&0===Ce&&0!==this[le+ee+1]&&(Ce=1),this[le+ee]=(Ae/ue>>0)-Ce&255;return le+Te},d.prototype.writeInt8=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,1,127,-128),Ae<0&&(Ae=255+Ae+1),this[le]=255&Ae,le+1},d.prototype.writeInt16LE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,2,32767,-32768),this[le]=255&Ae,this[le+1]=Ae>>>8,le+2},d.prototype.writeInt16BE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,2,32767,-32768),this[le]=Ae>>>8,this[le+1]=255&Ae,le+2},d.prototype.writeInt32LE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,4,2147483647,-2147483648),this[le]=255&Ae,this[le+1]=Ae>>>8,this[le+2]=Ae>>>16,this[le+3]=Ae>>>24,le+4},d.prototype.writeInt32BE=function(Ae,le,Te){return Ae=+Ae,le>>>=0,Te||B(this,Ae,le,4,2147483647,-2147483648),Ae<0&&(Ae=4294967295+Ae+1),this[le]=Ae>>>24,this[le+1]=Ae>>>16,this[le+2]=Ae>>>8,this[le+3]=255&Ae,le+4},d.prototype.writeFloatLE=function(Ae,le,Te){return H(this,Ae,le,!0,Te)},d.prototype.writeFloatBE=function(Ae,le,Te){return H(this,Ae,le,!1,Te)},d.prototype.writeDoubleLE=function(Ae,le,Te){return q(this,Ae,le,!0,Te)},d.prototype.writeDoubleBE=function(Ae,le,Te){return q(this,Ae,le,!1,Te)},d.prototype.copy=function(Ae,le,Te,xe){if(!d.isBuffer(Ae))throw new TypeError("argument should be a Buffer");if(Te||(Te=0),!xe&&0!==xe&&(xe=this.length),le>=Ae.length&&(le=Ae.length),le||(le=0),xe>0&&xe=this.length)throw new RangeError("Index out of range");if(xe<0)throw new RangeError("sourceEnd out of bounds");xe>this.length&&(xe=this.length),Ae.length-le>>=0,Te=void 0===Te?this.length:Te>>>0,Ae||(Ae=0),"number"==typeof Ae)for(ee=le;ee55295&&le<57344){if(!xe){if(le>56319){(Ae-=3)>-1&&W.push(239,191,189);continue}if(ee+1===Te){(Ae-=3)>-1&&W.push(239,191,189);continue}xe=le;continue}if(le<56320){(Ae-=3)>-1&&W.push(239,191,189),xe=le;continue}le=65536+(xe-55296<<10|le-56320)}else xe&&(Ae-=3)>-1&&W.push(239,191,189);if(xe=null,le<128){if((Ae-=1)<0)break;W.push(le)}else if(le<2048){if((Ae-=2)<0)break;W.push(le>>6|192,63&le|128)}else if(le<65536){if((Ae-=3)<0)break;W.push(le>>12|224,le>>6&63|128,63&le|128)}else{if(!(le<1114112))throw new Error("Invalid code point");if((Ae-=4)<0)break;W.push(le>>18|240,le>>12&63|128,le>>6&63|128,63&le|128)}}return W}function Ue(Ie){return t.toByteArray(function _e(Ie){if((Ie=(Ie=Ie.split("=")[0]).trim().replace(he,"")).length<2)return"";for(;Ie.length%4!=0;)Ie+="=";return Ie}(Ie))}function ve(Ie,Ae,le,Te){for(var xe=0;xe=Ae.length||xe>=Ie.length);++xe)Ae[xe+le]=Ie[xe];return xe}function V(Ie,Ae){return Ie instanceof Ae||null!=Ie&&null!=Ie.constructor&&null!=Ie.constructor.name&&Ie.constructor.name===Ae.name}function De(Ie){return Ie!=Ie}var dt=function(){for(var Ie="0123456789abcdef",Ae=new Array(256),le=0;le<16;++le)for(var Te=16*le,xe=0;xe<16;++xe)Ae[Te+xe]=Ie[le]+Ie[xe];return Ae}()},1052:(Ve,j,p)=>{var t=p(3502).Buffer,e=p(295).Transform,f=p(3054).s;function a(b){e.call(this),this.hashMode="string"==typeof b,this.hashMode?this[b]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}p(3894)(a,e),a.prototype.update=function(b,d,N){"string"==typeof b&&(b=t.from(b,d));var h=this._update(b);return this.hashMode?this:(N&&(h=this._toString(h,N)),h)},a.prototype.setAutoPadding=function(){},a.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},a.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},a.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},a.prototype._transform=function(b,d,N){var h;try{this.hashMode?this._update(b):this.push(this._update(b))}catch(A){h=A}finally{N(h)}},a.prototype._flush=function(b){var d;try{this.push(this.__final())}catch(N){d=N}b(d)},a.prototype._finalOrDigest=function(b){var d=this.__final()||t.alloc(0);return b&&(d=this._toString(d,b,!0)),d},a.prototype._toString=function(b,d,N){if(this._decoder||(this._decoder=new f(d),this._encoding=d),this._encoding!==d)throw new Error("can't switch encodings");var h=this._decoder.write(b);return N&&(h+=this._decoder.end()),h},Ve.exports=a},7293:(Ve,j,p)=>{"use strict";const t=p(4315),e=p(2872),f=p(717);Ve.exports=function M(d,N){switch(e(d)){case"object":return function a(d,N){if("function"==typeof N)return N(d);if(N||f(d)){const h=new d.constructor;for(let A in d)h[A]=M(d[A],N);return h}return d}(d,N);case"array":return function b(d,N){const h=new d.constructor(d.length);for(let A=0;AM?f:Array(M-f.length+1).join("0")+f}(M.toString(16),2)}).join("")}(f)},hexToBytes:function(f){if(f.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===f.indexOf("0x")&&(f=f.slice(2)),f.match(/../g).map(function(M){return parseInt(M,16)})}};Ve.exports?Ve.exports=p:j.convertHex=p}(this)},5612:function(Ve){!function(j){"use strict";var p={bytesToString:function(t){return t.map(function(e){return String.fromCharCode(e)}).join("")},stringToBytes:function(t){return t.split("").map(function(e){return e.charCodeAt(0)})}};p.UTF8={bytesToString:function(t){return decodeURIComponent(escape(p.bytesToString(t)))},stringToBytes:function(t){return p.stringToBytes(unescape(encodeURIComponent(t)))}},Ve.exports?Ve.exports=p:j.convertString=p}(this)},4746:(Ve,j,p)=>{var t=p(7715),e=p(6422);Ve.exports=function(d){return new M(d)};var f={secp256k1:{name:"secp256k1",byteLength:32},secp224r1:{name:"p224",byteLength:28},prime256v1:{name:"p256",byteLength:32},prime192v1:{name:"p192",byteLength:24},ed25519:{name:"ed25519",byteLength:32},secp384r1:{name:"p384",byteLength:48},secp521r1:{name:"p521",byteLength:66}};function M(b){this.curveType=f[b],this.curveType||(this.curveType={name:b}),this.curve=new t.ec(this.curveType.name),this.keys=void 0}function a(b,d,N){Array.isArray(b)||(b=b.toArray());var h=new Buffer(b);if(N&&h.length=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function N(y,i,r){var u=d(y,r);return r-1>=i&&(u|=d(y,r-1)<<4),u}function h(y,i,r,u){for(var c=0,_=Math.min(y.length,r),E=i;E<_;E++){var I=y.charCodeAt(E)-48;c*=u,c+=I>=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[_]|=(E=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);else if("le"===u)for(c=0,_=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=N(i,r,c)<<_,this.words[E]|=67108863&I,_>=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,_=1;_<=67108863;_*=r)c++;c--,_=_/r|0;for(var E=i.length-u,I=E%c,v=Math.min(E,E-I)+u,n=0,C=u;C1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var A=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(y,i,r){r.negative=i.negative^y.negative;var u=y.length+i.length|0;r.length=u,u=u-1|0;var c=0|y.words[0],_=0|i.words[0],E=c*_,v=E/67108864|0;r.words[0]=67108863&E;for(var n=1;n>>26,B=67108863&v,P=Math.min(n,i.length-1),H=Math.max(0,n-y.length+1);H<=P;H++)C+=(E=(c=0|y.words[n-H|0])*(_=0|i.words[H])+B)/67108864|0,B=67108863&E;r.words[n]=0|B,v=0|C}return 0!==v?r.words[n]=0|v:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,_=0,E=0;E>>24-c&16777215)||E!==this.length-1?A[6-v.length]+v+u:v+u,(c+=2)>=26&&(c-=26,E--)}for(0!==_&&(u=_.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],C=D[i];u="";var B=this.clone();for(B.negative=0;!B.isZero();){var P=B.modn(C).toString(i);u=(B=B.idivn(C)).isZero()?P+u:A[n-P.length]+P+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==b),this.toArrayLike(b,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),_=u||Math.max(1,c);f(c<=_,"byte array longer than desired length"),f(_>0,"Requested array length <= 0"),this.strip();var v,n,E="le"===r,I=new i(_),C=this.clone();if(E){for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[n]=v;for(;n<_;n++)I[n]=0}else{for(n=0;n<_-c;n++)I[n]=0;for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[_-n-1]=v}return I},a.prototype._countBits=Math.clz32?function(i){return 32-Math.clz32(i)}:function(i){var r=i,u=0;return r>=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var _=0,E=0;E>>26;for(;0!==_&&E>>26;if(this.length=u.length,0!==_)this.words[this.length]=_,this.length++;else if(u!==this)for(;Ei.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,_,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,_=i):(c=i,_=this);for(var E=0,I=0;I<_.length;I++)E=(r=(0|c.words[I])-(0|_.words[I])+E)>>26,this.words[I]=67108863&r;for(;0!==E&&I>26,this.words[I]=67108863&r;if(0===E&&I>>13,q=0|c[1],he=8191&q,_e=q>>>13,Ne=0|c[2],we=8191&Ne,Q=Ne>>>13,Ue=0|c[3],ve=8191&Ue,V=Ue>>>13,De=0|c[4],dt=8191&De,Ie=De>>>13,Ae=0|c[5],le=8191&Ae,Te=Ae>>>13,xe=0|c[6],W=8191&xe,ee=xe>>>13,ue=0|c[7],Ce=8191&ue,Le=ue>>>13,ut=0|c[8],ht=8191&ut,It=ut>>>13,ui=0|c[9],Wt=8191&ui,Gt=ui>>>13,hi=0|_[0],xt=8191&hi,Nt=hi>>>13,Ct=0|_[1],et=8191&Ct,yt=Ct>>>13,ei=0|_[2],Yt=8191&ei,Pe=ei>>>13,Oe=0|_[3],ce=8191&Oe,be=Oe>>>13,pt=0|_[4],mt=8191&pt,Ht=pt>>>13,it=0|_[5],Re=8191&it,tt=it>>>13,Xe=0|_[6],Se=8191&Xe,Ge=Xe>>>13,at=0|_[7],st=8191&at,bt=at>>>13,gi=0|_[8],qt=8191&gi,Xt=gi>>>13,qi=0|_[9],fi=8191&qi,si=qi>>>13;u.negative=i.negative^r.negative,u.length=19;var $i=(I+(v=Math.imul(P,xt))|0)+((8191&(n=(n=Math.imul(P,Nt))+Math.imul(H,xt)|0))<<13)|0;I=((C=Math.imul(H,Nt))+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,v=Math.imul(he,xt),n=(n=Math.imul(he,Nt))+Math.imul(_e,xt)|0,C=Math.imul(_e,Nt);var Bi=(I+(v=v+Math.imul(P,et)|0)|0)+((8191&(n=(n=n+Math.imul(P,yt)|0)+Math.imul(H,et)|0))<<13)|0;I=((C=C+Math.imul(H,yt)|0)+(n>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,v=Math.imul(we,xt),n=(n=Math.imul(we,Nt))+Math.imul(Q,xt)|0,C=Math.imul(Q,Nt),v=v+Math.imul(he,et)|0,n=(n=n+Math.imul(he,yt)|0)+Math.imul(_e,et)|0,C=C+Math.imul(_e,yt)|0;var zi=(I+(v=v+Math.imul(P,Yt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Pe)|0)+Math.imul(H,Yt)|0))<<13)|0;I=((C=C+Math.imul(H,Pe)|0)+(n>>>13)|0)+(zi>>>26)|0,zi&=67108863,v=Math.imul(ve,xt),n=(n=Math.imul(ve,Nt))+Math.imul(V,xt)|0,C=Math.imul(V,Nt),v=v+Math.imul(we,et)|0,n=(n=n+Math.imul(we,yt)|0)+Math.imul(Q,et)|0,C=C+Math.imul(Q,yt)|0,v=v+Math.imul(he,Yt)|0,n=(n=n+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0,C=C+Math.imul(_e,Pe)|0;var Ui=(I+(v=v+Math.imul(P,ce)|0)|0)+((8191&(n=(n=n+Math.imul(P,be)|0)+Math.imul(H,ce)|0))<<13)|0;I=((C=C+Math.imul(H,be)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(dt,xt),n=(n=Math.imul(dt,Nt))+Math.imul(Ie,xt)|0,C=Math.imul(Ie,Nt),v=v+Math.imul(ve,et)|0,n=(n=n+Math.imul(ve,yt)|0)+Math.imul(V,et)|0,C=C+Math.imul(V,yt)|0,v=v+Math.imul(we,Yt)|0,n=(n=n+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,C=C+Math.imul(Q,Pe)|0,v=v+Math.imul(he,ce)|0,n=(n=n+Math.imul(he,be)|0)+Math.imul(_e,ce)|0,C=C+Math.imul(_e,be)|0;var ze=(I+(v=v+Math.imul(P,mt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ht)|0)+Math.imul(H,mt)|0))<<13)|0;I=((C=C+Math.imul(H,Ht)|0)+(n>>>13)|0)+(ze>>>26)|0,ze&=67108863,v=Math.imul(le,xt),n=(n=Math.imul(le,Nt))+Math.imul(Te,xt)|0,C=Math.imul(Te,Nt),v=v+Math.imul(dt,et)|0,n=(n=n+Math.imul(dt,yt)|0)+Math.imul(Ie,et)|0,C=C+Math.imul(Ie,yt)|0,v=v+Math.imul(ve,Yt)|0,n=(n=n+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,C=C+Math.imul(V,Pe)|0,v=v+Math.imul(we,ce)|0,n=(n=n+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,C=C+Math.imul(Q,be)|0,v=v+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0,C=C+Math.imul(_e,Ht)|0;var Tt=(I+(v=v+Math.imul(P,Re)|0)|0)+((8191&(n=(n=n+Math.imul(P,tt)|0)+Math.imul(H,Re)|0))<<13)|0;I=((C=C+Math.imul(H,tt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,v=Math.imul(W,xt),n=(n=Math.imul(W,Nt))+Math.imul(ee,xt)|0,C=Math.imul(ee,Nt),v=v+Math.imul(le,et)|0,n=(n=n+Math.imul(le,yt)|0)+Math.imul(Te,et)|0,C=C+Math.imul(Te,yt)|0,v=v+Math.imul(dt,Yt)|0,n=(n=n+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,C=C+Math.imul(Ie,Pe)|0,v=v+Math.imul(ve,ce)|0,n=(n=n+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,C=C+Math.imul(V,be)|0,v=v+Math.imul(we,mt)|0,n=(n=n+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,C=C+Math.imul(Q,Ht)|0,v=v+Math.imul(he,Re)|0,n=(n=n+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0,C=C+Math.imul(_e,tt)|0;var pe=(I+(v=v+Math.imul(P,Se)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ge)|0)+Math.imul(H,Se)|0))<<13)|0;I=((C=C+Math.imul(H,Ge)|0)+(n>>>13)|0)+(pe>>>26)|0,pe&=67108863,v=Math.imul(Ce,xt),n=(n=Math.imul(Ce,Nt))+Math.imul(Le,xt)|0,C=Math.imul(Le,Nt),v=v+Math.imul(W,et)|0,n=(n=n+Math.imul(W,yt)|0)+Math.imul(ee,et)|0,C=C+Math.imul(ee,yt)|0,v=v+Math.imul(le,Yt)|0,n=(n=n+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,C=C+Math.imul(Te,Pe)|0,v=v+Math.imul(dt,ce)|0,n=(n=n+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,C=C+Math.imul(Ie,be)|0,v=v+Math.imul(ve,mt)|0,n=(n=n+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,C=C+Math.imul(V,Ht)|0,v=v+Math.imul(we,Re)|0,n=(n=n+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,C=C+Math.imul(Q,tt)|0,v=v+Math.imul(he,Se)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0,C=C+Math.imul(_e,Ge)|0;var je=(I+(v=v+Math.imul(P,st)|0)|0)+((8191&(n=(n=n+Math.imul(P,bt)|0)+Math.imul(H,st)|0))<<13)|0;I=((C=C+Math.imul(H,bt)|0)+(n>>>13)|0)+(je>>>26)|0,je&=67108863,v=Math.imul(ht,xt),n=(n=Math.imul(ht,Nt))+Math.imul(It,xt)|0,C=Math.imul(It,Nt),v=v+Math.imul(Ce,et)|0,n=(n=n+Math.imul(Ce,yt)|0)+Math.imul(Le,et)|0,C=C+Math.imul(Le,yt)|0,v=v+Math.imul(W,Yt)|0,n=(n=n+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,C=C+Math.imul(ee,Pe)|0,v=v+Math.imul(le,ce)|0,n=(n=n+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,C=C+Math.imul(Te,be)|0,v=v+Math.imul(dt,mt)|0,n=(n=n+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,C=C+Math.imul(Ie,Ht)|0,v=v+Math.imul(ve,Re)|0,n=(n=n+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,C=C+Math.imul(V,tt)|0,v=v+Math.imul(we,Se)|0,n=(n=n+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,C=C+Math.imul(Q,Ge)|0,v=v+Math.imul(he,st)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(_e,st)|0,C=C+Math.imul(_e,bt)|0;var _t=(I+(v=v+Math.imul(P,qt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Xt)|0)+Math.imul(H,qt)|0))<<13)|0;I=((C=C+Math.imul(H,Xt)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,v=Math.imul(Wt,xt),n=(n=Math.imul(Wt,Nt))+Math.imul(Gt,xt)|0,C=Math.imul(Gt,Nt),v=v+Math.imul(ht,et)|0,n=(n=n+Math.imul(ht,yt)|0)+Math.imul(It,et)|0,C=C+Math.imul(It,yt)|0,v=v+Math.imul(Ce,Yt)|0,n=(n=n+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,C=C+Math.imul(Le,Pe)|0,v=v+Math.imul(W,ce)|0,n=(n=n+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,C=C+Math.imul(ee,be)|0,v=v+Math.imul(le,mt)|0,n=(n=n+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,C=C+Math.imul(Te,Ht)|0,v=v+Math.imul(dt,Re)|0,n=(n=n+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,C=C+Math.imul(Ie,tt)|0,v=v+Math.imul(ve,Se)|0,n=(n=n+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,C=C+Math.imul(V,Ge)|0,v=v+Math.imul(we,st)|0,n=(n=n+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,C=C+Math.imul(Q,bt)|0,v=v+Math.imul(he,qt)|0,n=(n=n+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0,C=C+Math.imul(_e,Xt)|0;var re=(I+(v=v+Math.imul(P,fi)|0)|0)+((8191&(n=(n=n+Math.imul(P,si)|0)+Math.imul(H,fi)|0))<<13)|0;I=((C=C+Math.imul(H,si)|0)+(n>>>13)|0)+(re>>>26)|0,re&=67108863,v=Math.imul(Wt,et),n=(n=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,C=Math.imul(Gt,yt),v=v+Math.imul(ht,Yt)|0,n=(n=n+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,C=C+Math.imul(It,Pe)|0,v=v+Math.imul(Ce,ce)|0,n=(n=n+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,C=C+Math.imul(Le,be)|0,v=v+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,C=C+Math.imul(ee,Ht)|0,v=v+Math.imul(le,Re)|0,n=(n=n+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,C=C+Math.imul(Te,tt)|0,v=v+Math.imul(dt,Se)|0,n=(n=n+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,C=C+Math.imul(Ie,Ge)|0,v=v+Math.imul(ve,st)|0,n=(n=n+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,C=C+Math.imul(V,bt)|0,v=v+Math.imul(we,qt)|0,n=(n=n+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,C=C+Math.imul(Q,Xt)|0;var qe=(I+(v=v+Math.imul(he,fi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;I=((C=C+Math.imul(_e,si)|0)+(n>>>13)|0)+(qe>>>26)|0,qe&=67108863,v=Math.imul(Wt,Yt),n=(n=Math.imul(Wt,Pe))+Math.imul(Gt,Yt)|0,C=Math.imul(Gt,Pe),v=v+Math.imul(ht,ce)|0,n=(n=n+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,C=C+Math.imul(It,be)|0,v=v+Math.imul(Ce,mt)|0,n=(n=n+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,C=C+Math.imul(Le,Ht)|0,v=v+Math.imul(W,Re)|0,n=(n=n+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,C=C+Math.imul(ee,tt)|0,v=v+Math.imul(le,Se)|0,n=(n=n+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,C=C+Math.imul(Te,Ge)|0,v=v+Math.imul(dt,st)|0,n=(n=n+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,C=C+Math.imul(Ie,bt)|0,v=v+Math.imul(ve,qt)|0,n=(n=n+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,C=C+Math.imul(V,Xt)|0;var Mt=(I+(v=v+Math.imul(we,fi)|0)|0)+((8191&(n=(n=n+Math.imul(we,si)|0)+Math.imul(Q,fi)|0))<<13)|0;I=((C=C+Math.imul(Q,si)|0)+(n>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul(Wt,ce),n=(n=Math.imul(Wt,be))+Math.imul(Gt,ce)|0,C=Math.imul(Gt,be),v=v+Math.imul(ht,mt)|0,n=(n=n+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,C=C+Math.imul(It,Ht)|0,v=v+Math.imul(Ce,Re)|0,n=(n=n+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,C=C+Math.imul(Le,tt)|0,v=v+Math.imul(W,Se)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,C=C+Math.imul(ee,Ge)|0,v=v+Math.imul(le,st)|0,n=(n=n+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,C=C+Math.imul(Te,bt)|0,v=v+Math.imul(dt,qt)|0,n=(n=n+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,C=C+Math.imul(Ie,Xt)|0;var zt=(I+(v=v+Math.imul(ve,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ve,si)|0)+Math.imul(V,fi)|0))<<13)|0;I=((C=C+Math.imul(V,si)|0)+(n>>>13)|0)+(zt>>>26)|0,zt&=67108863,v=Math.imul(Wt,mt),n=(n=Math.imul(Wt,Ht))+Math.imul(Gt,mt)|0,C=Math.imul(Gt,Ht),v=v+Math.imul(ht,Re)|0,n=(n=n+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,C=C+Math.imul(It,tt)|0,v=v+Math.imul(Ce,Se)|0,n=(n=n+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,C=C+Math.imul(Le,Ge)|0,v=v+Math.imul(W,st)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,C=C+Math.imul(ee,bt)|0,v=v+Math.imul(le,qt)|0,n=(n=n+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,C=C+Math.imul(Te,Xt)|0;var bi=(I+(v=v+Math.imul(dt,fi)|0)|0)+((8191&(n=(n=n+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0))<<13)|0;I=((C=C+Math.imul(Ie,si)|0)+(n>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Wt,Re),n=(n=Math.imul(Wt,tt))+Math.imul(Gt,Re)|0,C=Math.imul(Gt,tt),v=v+Math.imul(ht,Se)|0,n=(n=n+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,C=C+Math.imul(It,Ge)|0,v=v+Math.imul(Ce,st)|0,n=(n=n+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,C=C+Math.imul(Le,bt)|0,v=v+Math.imul(W,qt)|0,n=(n=n+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,C=C+Math.imul(ee,Xt)|0;var Ei=(I+(v=v+Math.imul(le,fi)|0)|0)+((8191&(n=(n=n+Math.imul(le,si)|0)+Math.imul(Te,fi)|0))<<13)|0;I=((C=C+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,v=Math.imul(Wt,Se),n=(n=Math.imul(Wt,Ge))+Math.imul(Gt,Se)|0,C=Math.imul(Gt,Ge),v=v+Math.imul(ht,st)|0,n=(n=n+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,C=C+Math.imul(It,bt)|0,v=v+Math.imul(Ce,qt)|0,n=(n=n+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,C=C+Math.imul(Le,Xt)|0;var Xi=(I+(v=v+Math.imul(W,fi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(ee,fi)|0))<<13)|0;I=((C=C+Math.imul(ee,si)|0)+(n>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,v=Math.imul(Wt,st),n=(n=Math.imul(Wt,bt))+Math.imul(Gt,st)|0,C=Math.imul(Gt,bt),v=v+Math.imul(ht,qt)|0,n=(n=n+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,C=C+Math.imul(It,Xt)|0;var Zi=(I+(v=v+Math.imul(Ce,fi)|0)|0)+((8191&(n=(n=n+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0))<<13)|0;I=((C=C+Math.imul(Le,si)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,v=Math.imul(Wt,qt),n=(n=Math.imul(Wt,Xt))+Math.imul(Gt,qt)|0,C=Math.imul(Gt,Xt);var sn=(I+(v=v+Math.imul(ht,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ht,si)|0)+Math.imul(It,fi)|0))<<13)|0;I=((C=C+Math.imul(It,si)|0)+(n>>>13)|0)+(sn>>>26)|0,sn&=67108863;var gn=(I+(v=Math.imul(Wt,fi))|0)+((8191&(n=(n=Math.imul(Wt,si))+Math.imul(Gt,fi)|0))<<13)|0;return I=((C=Math.imul(Gt,si))+(n>>>13)|0)+(gn>>>26)|0,gn&=67108863,E[0]=$i,E[1]=Bi,E[2]=zi,E[3]=Ui,E[4]=ze,E[5]=Tt,E[6]=pe,E[7]=je,E[8]=_t,E[9]=re,E[10]=qe,E[11]=Mt,E[12]=zt,E[13]=bi,E[14]=Ei,E[15]=Xi,E[16]=Zi,E[17]=sn,E[18]=gn,0!==I&&(E[19]=I,u.length++),u};function Z(y,i,r){return(new Y).mulp(y,i,r)}function Y(y,i){this.x=y,this.y=i}Math.imul||(S=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?S(this,i,r):c<63?k(this,i,r):c<1024?function U(y,i,r){r.negative=i.negative^y.negative,r.length=y.length+i.length;for(var u=0,c=0,_=0;_>>26)|0)>>>26,E&=67108863}r.words[_]=I,u=E,E=c}return 0!==u?r.words[_]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,_,E){for(var I=0;I>>=1)_++;return 1<<_+1+c},Y.prototype.conjugate=function(i,r,u){if(!(u<=1))for(var c=0;c>>=13),_>>>=13;for(E=2*r;E>=26,r+=c/67108864|0,r+=_>>>26,this.words[u]=67108863&_}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function L(y){for(var i=new Array(y.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var _,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var E=0;for(_=0;_>>26-r}E&&(this.words[_]=E,this.length++)}if(0!==u){for(_=this.length-1;_>=0;_--)this.words[_+u]=this.words[_];for(_=0;_=0),c=r?(r-r%26)/26:0;var _=i%26,E=Math.min((i-_)/26,this.length),I=67108863^67108863>>>_<<_,v=u;if(c-=E,c=Math.max(0,c),v){for(var n=0;nE)for(this.length-=E,n=0;n=0&&(0!==C||n>=c);n--){var B=0|this.words[n];this.words[n]=C<<26-_|B>>>_,C=B&I}return v&&0!==C&&(v.words[v.length++]=C),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(v/67108864|0),this.words[_+u]=67108863&E}for(;_>26,this.words[_+u]=67108863&E;if(0===I)return this.strip();for(f(-1===I),I=0,_=0;_>26,this.words[_]=67108863&E;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),_=i,E=0|_.words[_.length-1];0!=(u=26-this._countBits(E))&&(_=_.ushln(u),c.iushln(u),E=0|_.words[_.length-1]);var n,v=c.length-_.length;if("mod"!==r){(n=new a(null)).length=v+1,n.words=new Array(n.length);for(var C=0;C=0;P--){var H=67108864*(0|c.words[_.length+P])+(0|c.words[_.length+P-1]);for(H=Math.min(H/E|0,67108863),c._ishlnsubmul(_,H,P);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(_,1,P),c.isZero()||(c.negative^=1);n&&(n.words[P]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(E=this.neg().divmod(i,r),"mod"!==r&&(c=E.div.neg()),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.iadd(i)),{div:c,mod:_}):0===this.negative&&0!==i.negative?(E=this.divmod(i.neg(),r),"mod"!==r&&(c=E.div.neg()),{div:c,mod:E.mod}):0!=(this.negative&i.negative)?(E=this.neg().divmod(i.neg(),r),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.isub(i)),{div:E.div,mod:_}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,_,E},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),_=i.andln(1),E=u.cmp(c);return E<0||1===_&&0===E?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=new a(0),I=new a(1),v=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++v;for(var n=u.clone(),C=r.clone();!r.isZero();){for(var B=0,P=1;0==(r.words[0]&P)&&B<26;++B,P<<=1);if(B>0)for(r.iushrn(B);B-- >0;)(c.isOdd()||_.isOdd())&&(c.iadd(n),_.isub(C)),c.iushrn(1),_.iushrn(1);for(var H=0,q=1;0==(u.words[0]&q)&&H<26;++H,q<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(E.isOdd()||I.isOdd())&&(E.iadd(n),I.isub(C)),E.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(E),_.isub(I)):(u.isub(r),E.isub(c),I.isub(_))}return{a:E,b:I,gcd:u.iushln(v)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var B,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,v=1;0==(r.words[0]&v)&&I<26;++I,v<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(E),c.iushrn(1);for(var n=0,C=1;0==(u.words[0]&C)&&n<26;++n,C<<=1);if(n>0)for(u.iushrn(n);n-- >0;)_.isOdd()&&_.iadd(E),_.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(_)):(u.isub(r),_.isub(c))}return(B=0===r.cmpn(1)?c:_).cmpn(0)<0&&B.iadd(i),B},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var _=r.cmp(u);if(_<0){var E=r;r=u,u=E}else if(0===_||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[E]=I&=67108863}return 0!==_&&(this.words[E]=_,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],_=0|i.words[u];if(c!==_){c<_?r=-1:c>_&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new X(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ne={k256:null,p224:null,p192:null,p25519:null};function $(y,i){this.name=y,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function de(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function te(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ie(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function oe(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function X(y){if("string"==typeof y){var i=a._prime(y);this.m=i.p,this.prime=i}else f(y.gtn(1),"modulus must be greater than 1"),this.m=y,this.prime=null}function me(y){X.call(this,y),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},$.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},$.prototype.split=function(i,r){i.iushrn(this.n,0,r)},$.prototype.imulK=function(i){return i.imul(this.k)},M(de,$),de.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),_=0;_>>22,E=I}i.words[_-10]=E>>>=22,i.length-=0===E&&i.length>10?10:9},de.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=_,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ne[i])return ne[i];var r;if("k256"===i)r=new de;else if("p224"===i)r=new te;else if("p192"===i)r=new ie;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new oe}return ne[i]=r,r},X.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},X.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},X.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},X.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},X.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},X.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},X.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},X.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},X.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},X.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},X.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},X.prototype.isqr=function(i){return this.imul(i,i.clone())},X.prototype.sqr=function(i){return this.mul(i,i)},X.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),_=0;!c.isZero()&&0===c.andln(1);)_++,c.iushrn(1);f(!c.isZero());var E=new a(1).toRed(this),I=E.redNeg(),v=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,v).cmp(I);)n.redIAdd(I);for(var C=this.pow(n,c),B=this.pow(i,c.addn(1).iushrn(1)),P=this.pow(i,c),H=_;0!==P.cmp(E);){for(var q=P,he=0;0!==q.cmp(E);he++)q=q.redSqr();f(he=0;_--){for(var C=r.words[_],B=n-1;B>=0;B--){var P=C>>B&1;E!==c[0]&&(E=this.sqr(E)),0!==P||0!==I?(I<<=1,I|=P,(4==++v||0===_&&0===B)&&(E=this.mul(E,c[I]),v=0,I=0)):v=0}n=26}return E},X.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},X.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new me(i)},M(me,X),me.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},me.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},me.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},6386:(Ve,j,p)=>{"use strict";var t=p(3894),e=p(8095),f=p(5634),M=p(5244),a=p(1052);function b(d){a.call(this,"digest"),this._hash=d}t(b,a),b.prototype._update=function(d){this._hash.update(d)},b.prototype._final=function(){return this._hash.digest()},Ve.exports=function(N){return"md5"===(N=N.toLowerCase())?new e:"rmd160"===N||"ripemd160"===N?new f:new b(M(N))}},5640:(Ve,j,p)=>{var t=p(8095);Ve.exports=function(e){return(new t).update(e).digest()}},4529:(Ve,j,p)=>{"use strict";var t=p(3894),e=p(7309),f=p(1052),M=p(3502).Buffer,a=p(5640),b=p(5634),d=p(5244),N=M.alloc(128);function h(A,w){f.call(this,"digest"),"string"==typeof w&&(w=M.from(w));var D="sha512"===A||"sha384"===A?128:64;this._alg=A,this._key=w,w.length>D?w=("rmd160"===A?new b:d(A)).update(w).digest():w.length{"use strict";var t=p(3894),e=p(3502).Buffer,f=p(1052),M=e.alloc(128),a=64;function b(d,N){f.call(this,"digest"),"string"==typeof N&&(N=e.from(N)),this._alg=d,this._key=N,N.length>a?N=d(N):N.length{"use strict";j.randomBytes=j.rng=j.pseudoRandomBytes=j.prng=p(3753),j.createHash=j.Hash=p(6386),j.createHmac=j.Hmac=p(4529);var t=p(7793),e=Object.keys(t),f=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(e);j.getHashes=function(){return f};var M=p(9357);j.pbkdf2=M.pbkdf2,j.pbkdf2Sync=M.pbkdf2Sync;var a=p(5255);j.Cipher=a.Cipher,j.createCipher=a.createCipher,j.Cipheriv=a.Cipheriv,j.createCipheriv=a.createCipheriv,j.Decipher=a.Decipher,j.createDecipher=a.createDecipher,j.Decipheriv=a.Decipheriv,j.createDecipheriv=a.createDecipheriv,j.getCiphers=a.getCiphers,j.listCiphers=a.listCiphers;var b=p(8829);j.DiffieHellmanGroup=b.DiffieHellmanGroup,j.createDiffieHellmanGroup=b.createDiffieHellmanGroup,j.getDiffieHellman=b.getDiffieHellman,j.createDiffieHellman=b.createDiffieHellman,j.DiffieHellman=b.DiffieHellman;var d=p(3923);j.createSign=d.createSign,j.Sign=d.Sign,j.createVerify=d.createVerify,j.Verify=d.Verify,j.createECDH=p(4746);var N=p(3701);j.publicEncrypt=N.publicEncrypt,j.privateEncrypt=N.privateEncrypt,j.publicDecrypt=N.publicDecrypt,j.privateDecrypt=N.privateDecrypt;var h=p(4275);j.randomFill=h.randomFill,j.randomFillSync=h.randomFillSync,j.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},j.constants={DH_CHECK_P_NOT_SAFE_PRIME:2,DH_CHECK_P_NOT_PRIME:1,DH_UNABLE_TO_CHECK_GENERATOR:4,DH_NOT_SUITABLE_GENERATOR:8,NPN_ENABLED:1,ALPN_ENABLED:1,RSA_PKCS1_PADDING:1,RSA_SSLV23_PADDING:2,RSA_NO_PADDING:3,RSA_PKCS1_OAEP_PADDING:4,RSA_X931_PADDING:5,RSA_PKCS1_PSS_PADDING:6,POINT_CONVERSION_COMPRESSED:2,POINT_CONVERSION_UNCOMPRESSED:4,POINT_CONVERSION_HYBRID:6}},3684:(Ve,j,p)=>{"use strict";j.utils=p(7451),j.Cipher=p(8170),j.DES=p(4631),j.CBC=p(9454),j.EDE=p(1862)},9454:(Ve,j,p)=>{"use strict";var t=p(2391),e=p(3894),f={};function M(b){t.equal(b.length,8,"Invalid IV length"),this.iv=new Array(8);for(var d=0;d{"use strict";var t=p(2391);function e(f){this.options=f,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0}Ve.exports=e,e.prototype._init=function(){},e.prototype.update=function(M){return 0===M.length?[]:"decrypt"===this.type?this._updateDecrypt(M):this._updateEncrypt(M)},e.prototype._buffer=function(M,a){for(var b=Math.min(this.buffer.length-this.bufferOff,M.length-a),d=0;d0;d--)a+=this._buffer(M,a),b+=this._flushBuffer(N,b);return a+=this._buffer(M,a),N},e.prototype.final=function(M){var a,b;return M&&(a=this.update(M)),b="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),a?a.concat(b):b},e.prototype._pad=function(M,a){if(0===a)return!1;for(;a{"use strict";var t=p(2391),e=p(3894),f=p(7451),M=p(8170);function a(){this.tmp=new Array(2),this.keys=null}function b(N){M.call(this,N);var h=new a;this._desState=h,this.deriveKeys(h,N.key)}e(b,M),Ve.exports=b,b.create=function(h){return new b(h)};var d=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];b.prototype.deriveKeys=function(h,A){h.keys=new Array(32),t.equal(A.length,this.blockSize,"Invalid key length");var w=f.readUInt32BE(A,0),D=f.readUInt32BE(A,4);f.pc1(w,D,h.tmp,0),w=h.tmp[0],D=h.tmp[1];for(var L=0;L>>1];w=f.r28shl(w,k),D=f.r28shl(D,k),f.pc2(w,D,h.keys,L)}},b.prototype._update=function(h,A,w,D){var L=this._desState,k=f.readUInt32BE(h,A),S=f.readUInt32BE(h,A+4);f.ip(k,S,L.tmp,0),k=L.tmp[0],S=L.tmp[1],"encrypt"===this.type?this._encrypt(L,k,S,L.tmp,0):this._decrypt(L,k,S,L.tmp,0),S=L.tmp[1],f.writeUInt32BE(w,k=L.tmp[0],D),f.writeUInt32BE(w,S,D+4)},b.prototype._pad=function(h,A){for(var w=h.length-A,D=A;D>>0,k=de}f.rip(S,k,D,L)},b.prototype._decrypt=function(h,A,w,D,L){for(var k=w,S=A,U=h.keys.length-2;U>=0;U-=2){var Z=h.keys[U],Y=h.keys[U+1];f.expand(k,h.tmp,0);var ne=f.substitute(Z^=h.tmp[0],Y^=h.tmp[1]),de=k;k=(S^f.permute(ne))>>>0,S=de}f.rip(k,S,D,L)}},1862:(Ve,j,p)=>{"use strict";var t=p(2391),e=p(3894),f=p(8170),M=p(4631);function a(d,N){t.equal(N.length,24,"Invalid key length");var h=N.slice(0,8),A=N.slice(8,16),w=N.slice(16,24);this.ciphers="encrypt"===d?[M.create({type:"encrypt",key:h}),M.create({type:"decrypt",key:A}),M.create({type:"encrypt",key:w})]:[M.create({type:"decrypt",key:w}),M.create({type:"encrypt",key:A}),M.create({type:"decrypt",key:h})]}function b(d){f.call(this,d);var N=new a(this.type,this.options.key);this._edeState=N}e(b,f),Ve.exports=b,b.create=function(N){return new b(N)},b.prototype._update=function(N,h,A,w){var D=this._edeState;D.ciphers[0]._update(N,h,A,w),D.ciphers[1]._update(A,w,A,w),D.ciphers[2]._update(A,w,A,w)},b.prototype._pad=M.prototype._pad,b.prototype._unpad=M.prototype._unpad},7451:(Ve,j)=>{"use strict";j.readUInt32BE=function(M,a){return(M[0+a]<<24|M[1+a]<<16|M[2+a]<<8|M[3+a])>>>0},j.writeUInt32BE=function(M,a,b){M[0+b]=a>>>24,M[1+b]=a>>>16&255,M[2+b]=a>>>8&255,M[3+b]=255&a},j.ip=function(M,a,b,d){for(var N=0,h=0,A=6;A>=0;A-=2){for(var w=0;w<=24;w+=8)N<<=1,N|=a>>>w+A&1;for(w=0;w<=24;w+=8)N<<=1,N|=M>>>w+A&1}for(A=6;A>=0;A-=2){for(w=1;w<=25;w+=8)h<<=1,h|=a>>>w+A&1;for(w=1;w<=25;w+=8)h<<=1,h|=M>>>w+A&1}b[d+0]=N>>>0,b[d+1]=h>>>0},j.rip=function(M,a,b,d){for(var N=0,h=0,A=0;A<4;A++)for(var w=24;w>=0;w-=8)N<<=1,N|=a>>>w+A&1,N<<=1,N|=M>>>w+A&1;for(A=4;A<8;A++)for(w=24;w>=0;w-=8)h<<=1,h|=a>>>w+A&1,h<<=1,h|=M>>>w+A&1;b[d+0]=N>>>0,b[d+1]=h>>>0},j.pc1=function(M,a,b,d){for(var N=0,h=0,A=7;A>=5;A--){for(var w=0;w<=24;w+=8)N<<=1,N|=a>>w+A&1;for(w=0;w<=24;w+=8)N<<=1,N|=M>>w+A&1}for(w=0;w<=24;w+=8)N<<=1,N|=a>>w+A&1;for(A=1;A<=3;A++){for(w=0;w<=24;w+=8)h<<=1,h|=a>>w+A&1;for(w=0;w<=24;w+=8)h<<=1,h|=M>>w+A&1}for(w=0;w<=24;w+=8)h<<=1,h|=M>>w+A&1;b[d+0]=N>>>0,b[d+1]=h>>>0},j.r28shl=function(M,a){return M<>>28-a};var p=[14,11,17,4,27,23,25,0,13,22,7,18,5,9,16,24,2,20,12,21,1,8,15,26,15,4,25,19,9,1,26,16,5,11,23,8,12,7,17,0,22,3,10,14,6,20,27,24];j.pc2=function(M,a,b,d){for(var N=0,h=0,A=p.length>>>1,w=0;w>>p[w]&1;for(w=A;w>>p[w]&1;b[d+0]=N>>>0,b[d+1]=h>>>0},j.expand=function(M,a,b){var d=0,N=0;d=(1&M)<<5|M>>>27;for(var h=23;h>=15;h-=4)d<<=6,d|=M>>>h&63;for(h=11;h>=3;h-=4)N|=M>>>h&63,N<<=6;N|=(31&M)<<1|M>>>31,a[b+0]=d>>>0,a[b+1]=N>>>0};var t=[14,0,4,15,13,7,1,4,2,14,15,2,11,13,8,1,3,10,10,6,6,12,12,11,5,9,9,5,0,3,7,8,4,15,1,12,14,8,8,2,13,4,6,9,2,1,11,7,15,5,12,11,9,3,7,14,3,10,10,0,5,6,0,13,15,3,1,13,8,4,14,7,6,15,11,2,3,8,4,14,9,12,7,0,2,1,13,10,12,6,0,9,5,11,10,5,0,13,14,8,7,10,11,1,10,3,4,15,13,4,1,2,5,11,8,6,12,7,6,12,9,0,3,5,2,14,15,9,10,13,0,7,9,0,14,9,6,3,3,4,15,6,5,10,1,2,13,8,12,5,7,14,11,12,4,11,2,15,8,1,13,1,6,10,4,13,9,0,8,6,15,9,3,8,0,7,11,4,1,15,2,14,12,3,5,11,10,5,14,2,7,12,7,13,13,8,14,11,3,5,0,6,6,15,9,0,10,3,1,4,2,7,8,2,5,12,11,1,12,10,4,14,15,9,10,3,6,15,9,0,0,6,12,10,11,1,7,13,13,8,15,9,1,4,3,5,14,11,5,12,2,7,8,2,4,14,2,14,12,11,4,2,1,12,7,4,10,7,11,13,6,1,8,5,5,0,3,15,15,10,13,3,0,9,14,8,9,6,4,11,2,8,1,12,11,7,10,1,13,14,7,2,8,13,15,6,9,15,12,0,5,9,6,10,3,4,0,5,14,3,12,10,1,15,10,4,15,2,9,7,2,12,6,9,8,5,0,6,13,1,3,13,4,14,14,0,7,11,5,3,11,8,9,4,14,3,15,2,5,12,2,9,8,5,12,15,3,10,7,11,0,14,4,1,10,7,1,6,13,0,11,8,6,13,4,13,11,0,2,11,14,7,15,4,0,9,8,1,13,10,3,14,12,3,9,5,7,12,5,2,10,15,6,8,1,6,1,6,4,11,11,13,13,8,12,1,3,4,7,10,14,7,10,9,15,5,6,0,8,15,0,14,5,2,9,3,2,12,13,1,2,15,8,13,4,8,6,10,15,3,11,7,1,4,10,12,9,5,3,6,14,11,5,0,0,14,12,9,7,2,7,2,11,1,4,14,1,7,9,4,12,10,14,8,2,13,0,15,6,12,10,9,13,0,15,3,3,5,5,6,8,11];j.substitute=function(M,a){for(var b=0,d=0;d<4;d++)b<<=4,b|=t[64*d+(M>>>18-6*d&63)];for(d=0;d<4;d++)b<<=4,b|=t[256+64*d+(a>>>18-6*d&63)];return b>>>0};var e=[16,25,12,11,3,20,4,15,31,17,9,6,27,14,1,22,30,24,8,18,0,5,29,23,13,19,2,26,10,21,28,7];j.permute=function(M){for(var a=0,b=0;b>>e[b]&1;return a>>>0},j.padSplit=function(M,a,b){for(var d=M.toString(2);d.length{var t=p(5563),e=p(9799),f=p(1419),a={binary:!0,hex:!0,base64:!0};j.DiffieHellmanGroup=j.createDiffieHellmanGroup=j.getDiffieHellman=function M(d){var N=new Buffer(e[d].prime,"hex"),h=new Buffer(e[d].gen,"hex");return new f(N,h)},j.createDiffieHellman=j.DiffieHellman=function b(d,N,h,A){return Buffer.isBuffer(N)||void 0===a[N]?b(d,"binary",N,h):(N=N||"binary",A=A||"binary",h=h||new Buffer([2]),Buffer.isBuffer(h)||(h=new Buffer(h,A)),"number"==typeof d?new f(t(d,h),h,!0):(Buffer.isBuffer(d)||(d=new Buffer(d,N)),new f(d,h,!0)))}},1419:(Ve,j,p)=>{var t=p(8313),f=new(p(7079)),M=new t(24),a=new t(11),b=new t(10),d=new t(3),N=new t(7),h=p(5563),A=p(3753);function w(Z,Y){return Y=Y||"utf8",Buffer.isBuffer(Z)||(Z=new Buffer(Z,Y)),this._pub=new t(Z),this}function D(Z,Y){return Y=Y||"utf8",Buffer.isBuffer(Z)||(Z=new Buffer(Z,Y)),this._priv=new t(Z),this}Ve.exports=S;var L={};function S(Z,Y,ne){this.setGenerator(Y),this.__prime=new t(Z),this._prime=t.mont(this.__prime),this._primeLen=Z.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,ne?(this.setPublicKey=w,this.setPrivateKey=D):this._primeCode=8}function U(Z,Y){var ne=new Buffer(Z.toArray());return Y?ne.toString(Y):ne}Object.defineProperty(S.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function k(Z,Y){var ne=Y.toString("hex"),$=[ne,Z.toString(16)].join("_");if($ in L)return L[$];var te,de=0;if(Z.isEven()||!h.simpleSieve||!h.fermatTest(Z)||!f.test(Z))return de+=1,L[$]=de+="02"===ne||"05"===ne?8:4,de;switch(f.test(Z.shrn(1))||(de+=2),ne){case"02":Z.mod(M).cmp(a)&&(de+=8);break;case"05":(te=Z.mod(b)).cmp(d)&&te.cmp(N)&&(de+=8);break;default:de+=4}return L[$]=de,de}(this.__prime,this.__gen)),this._primeCode}}),S.prototype.generateKeys=function(){return this._priv||(this._priv=new t(A(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},S.prototype.computeSecret=function(Z){var Y=(Z=(Z=new t(Z)).toRed(this._prime)).redPow(this._priv).fromRed(),ne=new Buffer(Y.toArray()),$=this.getPrime();if(ne.length<$.length){var de=new Buffer($.length-ne.length);de.fill(0),ne=Buffer.concat([de,ne])}return ne},S.prototype.getPublicKey=function(Y){return U(this._pub,Y)},S.prototype.getPrivateKey=function(Y){return U(this._priv,Y)},S.prototype.getPrime=function(Z){return U(this.__prime,Z)},S.prototype.getGenerator=function(Z){return U(this._gen,Z)},S.prototype.setGenerator=function(Z,Y){return Y=Y||"utf8",Buffer.isBuffer(Z)||(Z=new Buffer(Z,Y)),this.__gen=Z,this._gen=new t(Z),this}},5563:(Ve,j,p)=>{var t=p(3753);Ve.exports=de,de.simpleSieve=ne,de.fermatTest=$;var e=p(8313),f=new e(24),a=new(p(7079)),b=new e(1),d=new e(2),N=new e(5),w=(new e(16),new e(8),new e(10)),D=new e(3),k=(new e(7),new e(11)),S=new e(4),Z=(new e(12),null);function ne(te){for(var ie=function Y(){if(null!==Z)return Z;var ie=[];ie[0]=2;for(var oe=1,X=3;X<1048576;X+=2){for(var me=Math.ceil(Math.sqrt(X)),y=0;yte;)oe.ishrn(1);if(oe.isEven()&&oe.iadd(b),oe.testn(1)||oe.iadd(d),ie.cmp(d)){if(!ie.cmp(N))for(;oe.mod(w).cmp(D);)oe.iadd(S)}else for(;oe.mod(f).cmp(k);)oe.iadd(S);if(ne(X=oe.shrn(1))&&ne(oe)&&$(X)&&$(oe)&&a.test(X)&&a.test(oe))return oe}}},8313:function(Ve,j,p){!function(t,e){"use strict";function f(y,i){if(!y)throw new Error(i||"Assertion failed")}function M(y,i){y.super_=i;var r=function(){};r.prototype=i.prototype,y.prototype=new r,y.prototype.constructor=y}function a(y,i,r){if(a.isBN(y))return y;this.negative=0,this.words=null,this.length=0,this.red=null,null!==y&&(("le"===i||"be"===i)&&(r=i,i=10),this._init(y||0,i||10,r||"be"))}var b;"object"==typeof t?t.exports=a:e.BN=a,a.BN=a,a.wordSize=26;try{b="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:p(7748).Buffer}catch(y){}function d(y,i){var r=y.charCodeAt(i);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function N(y,i,r){var u=d(y,r);return r-1>=i&&(u|=d(y,r-1)<<4),u}function h(y,i,r,u){for(var c=0,_=Math.min(y.length,r),E=i;E<_;E++){var I=y.charCodeAt(E)-48;c*=u,c+=I>=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[_]|=(E=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);else if("le"===u)for(c=0,_=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=N(i,r,c)<<_,this.words[E]|=67108863&I,_>=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,_=1;_<=67108863;_*=r)c++;c--,_=_/r|0;for(var E=i.length-u,I=E%c,v=Math.min(E,E-I)+u,n=0,C=u;C1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var A=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(y,i,r){r.negative=i.negative^y.negative;var u=y.length+i.length|0;r.length=u,u=u-1|0;var c=0|y.words[0],_=0|i.words[0],E=c*_,v=E/67108864|0;r.words[0]=67108863&E;for(var n=1;n>>26,B=67108863&v,P=Math.min(n,i.length-1),H=Math.max(0,n-y.length+1);H<=P;H++)C+=(E=(c=0|y.words[n-H|0])*(_=0|i.words[H])+B)/67108864|0,B=67108863&E;r.words[n]=0|B,v=0|C}return 0!==v?r.words[n]=0|v:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,_=0,E=0;E>>24-c&16777215)||E!==this.length-1?A[6-v.length]+v+u:v+u,(c+=2)>=26&&(c-=26,E--)}for(0!==_&&(u=_.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],C=D[i];u="";var B=this.clone();for(B.negative=0;!B.isZero();){var P=B.modn(C).toString(i);u=(B=B.idivn(C)).isZero()?P+u:A[n-P.length]+P+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==b),this.toArrayLike(b,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),_=u||Math.max(1,c);f(c<=_,"byte array longer than desired length"),f(_>0,"Requested array length <= 0"),this.strip();var v,n,E="le"===r,I=new i(_),C=this.clone();if(E){for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[n]=v;for(;n<_;n++)I[n]=0}else{for(n=0;n<_-c;n++)I[n]=0;for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[_-n-1]=v}return I},a.prototype._countBits=Math.clz32?function(i){return 32-Math.clz32(i)}:function(i){var r=i,u=0;return r>=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var _=0,E=0;E>>26;for(;0!==_&&E>>26;if(this.length=u.length,0!==_)this.words[this.length]=_,this.length++;else if(u!==this)for(;Ei.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,_,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,_=i):(c=i,_=this);for(var E=0,I=0;I<_.length;I++)E=(r=(0|c.words[I])-(0|_.words[I])+E)>>26,this.words[I]=67108863&r;for(;0!==E&&I>26,this.words[I]=67108863&r;if(0===E&&I>>13,q=0|c[1],he=8191&q,_e=q>>>13,Ne=0|c[2],we=8191&Ne,Q=Ne>>>13,Ue=0|c[3],ve=8191&Ue,V=Ue>>>13,De=0|c[4],dt=8191&De,Ie=De>>>13,Ae=0|c[5],le=8191&Ae,Te=Ae>>>13,xe=0|c[6],W=8191&xe,ee=xe>>>13,ue=0|c[7],Ce=8191&ue,Le=ue>>>13,ut=0|c[8],ht=8191&ut,It=ut>>>13,ui=0|c[9],Wt=8191&ui,Gt=ui>>>13,hi=0|_[0],xt=8191&hi,Nt=hi>>>13,Ct=0|_[1],et=8191&Ct,yt=Ct>>>13,ei=0|_[2],Yt=8191&ei,Pe=ei>>>13,Oe=0|_[3],ce=8191&Oe,be=Oe>>>13,pt=0|_[4],mt=8191&pt,Ht=pt>>>13,it=0|_[5],Re=8191&it,tt=it>>>13,Xe=0|_[6],Se=8191&Xe,Ge=Xe>>>13,at=0|_[7],st=8191&at,bt=at>>>13,gi=0|_[8],qt=8191&gi,Xt=gi>>>13,qi=0|_[9],fi=8191&qi,si=qi>>>13;u.negative=i.negative^r.negative,u.length=19;var $i=(I+(v=Math.imul(P,xt))|0)+((8191&(n=(n=Math.imul(P,Nt))+Math.imul(H,xt)|0))<<13)|0;I=((C=Math.imul(H,Nt))+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,v=Math.imul(he,xt),n=(n=Math.imul(he,Nt))+Math.imul(_e,xt)|0,C=Math.imul(_e,Nt);var Bi=(I+(v=v+Math.imul(P,et)|0)|0)+((8191&(n=(n=n+Math.imul(P,yt)|0)+Math.imul(H,et)|0))<<13)|0;I=((C=C+Math.imul(H,yt)|0)+(n>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,v=Math.imul(we,xt),n=(n=Math.imul(we,Nt))+Math.imul(Q,xt)|0,C=Math.imul(Q,Nt),v=v+Math.imul(he,et)|0,n=(n=n+Math.imul(he,yt)|0)+Math.imul(_e,et)|0,C=C+Math.imul(_e,yt)|0;var zi=(I+(v=v+Math.imul(P,Yt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Pe)|0)+Math.imul(H,Yt)|0))<<13)|0;I=((C=C+Math.imul(H,Pe)|0)+(n>>>13)|0)+(zi>>>26)|0,zi&=67108863,v=Math.imul(ve,xt),n=(n=Math.imul(ve,Nt))+Math.imul(V,xt)|0,C=Math.imul(V,Nt),v=v+Math.imul(we,et)|0,n=(n=n+Math.imul(we,yt)|0)+Math.imul(Q,et)|0,C=C+Math.imul(Q,yt)|0,v=v+Math.imul(he,Yt)|0,n=(n=n+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0,C=C+Math.imul(_e,Pe)|0;var Ui=(I+(v=v+Math.imul(P,ce)|0)|0)+((8191&(n=(n=n+Math.imul(P,be)|0)+Math.imul(H,ce)|0))<<13)|0;I=((C=C+Math.imul(H,be)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(dt,xt),n=(n=Math.imul(dt,Nt))+Math.imul(Ie,xt)|0,C=Math.imul(Ie,Nt),v=v+Math.imul(ve,et)|0,n=(n=n+Math.imul(ve,yt)|0)+Math.imul(V,et)|0,C=C+Math.imul(V,yt)|0,v=v+Math.imul(we,Yt)|0,n=(n=n+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,C=C+Math.imul(Q,Pe)|0,v=v+Math.imul(he,ce)|0,n=(n=n+Math.imul(he,be)|0)+Math.imul(_e,ce)|0,C=C+Math.imul(_e,be)|0;var ze=(I+(v=v+Math.imul(P,mt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ht)|0)+Math.imul(H,mt)|0))<<13)|0;I=((C=C+Math.imul(H,Ht)|0)+(n>>>13)|0)+(ze>>>26)|0,ze&=67108863,v=Math.imul(le,xt),n=(n=Math.imul(le,Nt))+Math.imul(Te,xt)|0,C=Math.imul(Te,Nt),v=v+Math.imul(dt,et)|0,n=(n=n+Math.imul(dt,yt)|0)+Math.imul(Ie,et)|0,C=C+Math.imul(Ie,yt)|0,v=v+Math.imul(ve,Yt)|0,n=(n=n+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,C=C+Math.imul(V,Pe)|0,v=v+Math.imul(we,ce)|0,n=(n=n+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,C=C+Math.imul(Q,be)|0,v=v+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0,C=C+Math.imul(_e,Ht)|0;var Tt=(I+(v=v+Math.imul(P,Re)|0)|0)+((8191&(n=(n=n+Math.imul(P,tt)|0)+Math.imul(H,Re)|0))<<13)|0;I=((C=C+Math.imul(H,tt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,v=Math.imul(W,xt),n=(n=Math.imul(W,Nt))+Math.imul(ee,xt)|0,C=Math.imul(ee,Nt),v=v+Math.imul(le,et)|0,n=(n=n+Math.imul(le,yt)|0)+Math.imul(Te,et)|0,C=C+Math.imul(Te,yt)|0,v=v+Math.imul(dt,Yt)|0,n=(n=n+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,C=C+Math.imul(Ie,Pe)|0,v=v+Math.imul(ve,ce)|0,n=(n=n+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,C=C+Math.imul(V,be)|0,v=v+Math.imul(we,mt)|0,n=(n=n+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,C=C+Math.imul(Q,Ht)|0,v=v+Math.imul(he,Re)|0,n=(n=n+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0,C=C+Math.imul(_e,tt)|0;var pe=(I+(v=v+Math.imul(P,Se)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ge)|0)+Math.imul(H,Se)|0))<<13)|0;I=((C=C+Math.imul(H,Ge)|0)+(n>>>13)|0)+(pe>>>26)|0,pe&=67108863,v=Math.imul(Ce,xt),n=(n=Math.imul(Ce,Nt))+Math.imul(Le,xt)|0,C=Math.imul(Le,Nt),v=v+Math.imul(W,et)|0,n=(n=n+Math.imul(W,yt)|0)+Math.imul(ee,et)|0,C=C+Math.imul(ee,yt)|0,v=v+Math.imul(le,Yt)|0,n=(n=n+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,C=C+Math.imul(Te,Pe)|0,v=v+Math.imul(dt,ce)|0,n=(n=n+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,C=C+Math.imul(Ie,be)|0,v=v+Math.imul(ve,mt)|0,n=(n=n+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,C=C+Math.imul(V,Ht)|0,v=v+Math.imul(we,Re)|0,n=(n=n+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,C=C+Math.imul(Q,tt)|0,v=v+Math.imul(he,Se)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0,C=C+Math.imul(_e,Ge)|0;var je=(I+(v=v+Math.imul(P,st)|0)|0)+((8191&(n=(n=n+Math.imul(P,bt)|0)+Math.imul(H,st)|0))<<13)|0;I=((C=C+Math.imul(H,bt)|0)+(n>>>13)|0)+(je>>>26)|0,je&=67108863,v=Math.imul(ht,xt),n=(n=Math.imul(ht,Nt))+Math.imul(It,xt)|0,C=Math.imul(It,Nt),v=v+Math.imul(Ce,et)|0,n=(n=n+Math.imul(Ce,yt)|0)+Math.imul(Le,et)|0,C=C+Math.imul(Le,yt)|0,v=v+Math.imul(W,Yt)|0,n=(n=n+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,C=C+Math.imul(ee,Pe)|0,v=v+Math.imul(le,ce)|0,n=(n=n+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,C=C+Math.imul(Te,be)|0,v=v+Math.imul(dt,mt)|0,n=(n=n+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,C=C+Math.imul(Ie,Ht)|0,v=v+Math.imul(ve,Re)|0,n=(n=n+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,C=C+Math.imul(V,tt)|0,v=v+Math.imul(we,Se)|0,n=(n=n+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,C=C+Math.imul(Q,Ge)|0,v=v+Math.imul(he,st)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(_e,st)|0,C=C+Math.imul(_e,bt)|0;var _t=(I+(v=v+Math.imul(P,qt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Xt)|0)+Math.imul(H,qt)|0))<<13)|0;I=((C=C+Math.imul(H,Xt)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,v=Math.imul(Wt,xt),n=(n=Math.imul(Wt,Nt))+Math.imul(Gt,xt)|0,C=Math.imul(Gt,Nt),v=v+Math.imul(ht,et)|0,n=(n=n+Math.imul(ht,yt)|0)+Math.imul(It,et)|0,C=C+Math.imul(It,yt)|0,v=v+Math.imul(Ce,Yt)|0,n=(n=n+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,C=C+Math.imul(Le,Pe)|0,v=v+Math.imul(W,ce)|0,n=(n=n+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,C=C+Math.imul(ee,be)|0,v=v+Math.imul(le,mt)|0,n=(n=n+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,C=C+Math.imul(Te,Ht)|0,v=v+Math.imul(dt,Re)|0,n=(n=n+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,C=C+Math.imul(Ie,tt)|0,v=v+Math.imul(ve,Se)|0,n=(n=n+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,C=C+Math.imul(V,Ge)|0,v=v+Math.imul(we,st)|0,n=(n=n+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,C=C+Math.imul(Q,bt)|0,v=v+Math.imul(he,qt)|0,n=(n=n+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0,C=C+Math.imul(_e,Xt)|0;var re=(I+(v=v+Math.imul(P,fi)|0)|0)+((8191&(n=(n=n+Math.imul(P,si)|0)+Math.imul(H,fi)|0))<<13)|0;I=((C=C+Math.imul(H,si)|0)+(n>>>13)|0)+(re>>>26)|0,re&=67108863,v=Math.imul(Wt,et),n=(n=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,C=Math.imul(Gt,yt),v=v+Math.imul(ht,Yt)|0,n=(n=n+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,C=C+Math.imul(It,Pe)|0,v=v+Math.imul(Ce,ce)|0,n=(n=n+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,C=C+Math.imul(Le,be)|0,v=v+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,C=C+Math.imul(ee,Ht)|0,v=v+Math.imul(le,Re)|0,n=(n=n+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,C=C+Math.imul(Te,tt)|0,v=v+Math.imul(dt,Se)|0,n=(n=n+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,C=C+Math.imul(Ie,Ge)|0,v=v+Math.imul(ve,st)|0,n=(n=n+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,C=C+Math.imul(V,bt)|0,v=v+Math.imul(we,qt)|0,n=(n=n+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,C=C+Math.imul(Q,Xt)|0;var qe=(I+(v=v+Math.imul(he,fi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;I=((C=C+Math.imul(_e,si)|0)+(n>>>13)|0)+(qe>>>26)|0,qe&=67108863,v=Math.imul(Wt,Yt),n=(n=Math.imul(Wt,Pe))+Math.imul(Gt,Yt)|0,C=Math.imul(Gt,Pe),v=v+Math.imul(ht,ce)|0,n=(n=n+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,C=C+Math.imul(It,be)|0,v=v+Math.imul(Ce,mt)|0,n=(n=n+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,C=C+Math.imul(Le,Ht)|0,v=v+Math.imul(W,Re)|0,n=(n=n+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,C=C+Math.imul(ee,tt)|0,v=v+Math.imul(le,Se)|0,n=(n=n+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,C=C+Math.imul(Te,Ge)|0,v=v+Math.imul(dt,st)|0,n=(n=n+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,C=C+Math.imul(Ie,bt)|0,v=v+Math.imul(ve,qt)|0,n=(n=n+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,C=C+Math.imul(V,Xt)|0;var Mt=(I+(v=v+Math.imul(we,fi)|0)|0)+((8191&(n=(n=n+Math.imul(we,si)|0)+Math.imul(Q,fi)|0))<<13)|0;I=((C=C+Math.imul(Q,si)|0)+(n>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul(Wt,ce),n=(n=Math.imul(Wt,be))+Math.imul(Gt,ce)|0,C=Math.imul(Gt,be),v=v+Math.imul(ht,mt)|0,n=(n=n+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,C=C+Math.imul(It,Ht)|0,v=v+Math.imul(Ce,Re)|0,n=(n=n+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,C=C+Math.imul(Le,tt)|0,v=v+Math.imul(W,Se)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,C=C+Math.imul(ee,Ge)|0,v=v+Math.imul(le,st)|0,n=(n=n+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,C=C+Math.imul(Te,bt)|0,v=v+Math.imul(dt,qt)|0,n=(n=n+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,C=C+Math.imul(Ie,Xt)|0;var zt=(I+(v=v+Math.imul(ve,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ve,si)|0)+Math.imul(V,fi)|0))<<13)|0;I=((C=C+Math.imul(V,si)|0)+(n>>>13)|0)+(zt>>>26)|0,zt&=67108863,v=Math.imul(Wt,mt),n=(n=Math.imul(Wt,Ht))+Math.imul(Gt,mt)|0,C=Math.imul(Gt,Ht),v=v+Math.imul(ht,Re)|0,n=(n=n+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,C=C+Math.imul(It,tt)|0,v=v+Math.imul(Ce,Se)|0,n=(n=n+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,C=C+Math.imul(Le,Ge)|0,v=v+Math.imul(W,st)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,C=C+Math.imul(ee,bt)|0,v=v+Math.imul(le,qt)|0,n=(n=n+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,C=C+Math.imul(Te,Xt)|0;var bi=(I+(v=v+Math.imul(dt,fi)|0)|0)+((8191&(n=(n=n+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0))<<13)|0;I=((C=C+Math.imul(Ie,si)|0)+(n>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Wt,Re),n=(n=Math.imul(Wt,tt))+Math.imul(Gt,Re)|0,C=Math.imul(Gt,tt),v=v+Math.imul(ht,Se)|0,n=(n=n+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,C=C+Math.imul(It,Ge)|0,v=v+Math.imul(Ce,st)|0,n=(n=n+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,C=C+Math.imul(Le,bt)|0,v=v+Math.imul(W,qt)|0,n=(n=n+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,C=C+Math.imul(ee,Xt)|0;var Ei=(I+(v=v+Math.imul(le,fi)|0)|0)+((8191&(n=(n=n+Math.imul(le,si)|0)+Math.imul(Te,fi)|0))<<13)|0;I=((C=C+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,v=Math.imul(Wt,Se),n=(n=Math.imul(Wt,Ge))+Math.imul(Gt,Se)|0,C=Math.imul(Gt,Ge),v=v+Math.imul(ht,st)|0,n=(n=n+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,C=C+Math.imul(It,bt)|0,v=v+Math.imul(Ce,qt)|0,n=(n=n+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,C=C+Math.imul(Le,Xt)|0;var Xi=(I+(v=v+Math.imul(W,fi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(ee,fi)|0))<<13)|0;I=((C=C+Math.imul(ee,si)|0)+(n>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,v=Math.imul(Wt,st),n=(n=Math.imul(Wt,bt))+Math.imul(Gt,st)|0,C=Math.imul(Gt,bt),v=v+Math.imul(ht,qt)|0,n=(n=n+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,C=C+Math.imul(It,Xt)|0;var Zi=(I+(v=v+Math.imul(Ce,fi)|0)|0)+((8191&(n=(n=n+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0))<<13)|0;I=((C=C+Math.imul(Le,si)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,v=Math.imul(Wt,qt),n=(n=Math.imul(Wt,Xt))+Math.imul(Gt,qt)|0,C=Math.imul(Gt,Xt);var sn=(I+(v=v+Math.imul(ht,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ht,si)|0)+Math.imul(It,fi)|0))<<13)|0;I=((C=C+Math.imul(It,si)|0)+(n>>>13)|0)+(sn>>>26)|0,sn&=67108863;var gn=(I+(v=Math.imul(Wt,fi))|0)+((8191&(n=(n=Math.imul(Wt,si))+Math.imul(Gt,fi)|0))<<13)|0;return I=((C=Math.imul(Gt,si))+(n>>>13)|0)+(gn>>>26)|0,gn&=67108863,E[0]=$i,E[1]=Bi,E[2]=zi,E[3]=Ui,E[4]=ze,E[5]=Tt,E[6]=pe,E[7]=je,E[8]=_t,E[9]=re,E[10]=qe,E[11]=Mt,E[12]=zt,E[13]=bi,E[14]=Ei,E[15]=Xi,E[16]=Zi,E[17]=sn,E[18]=gn,0!==I&&(E[19]=I,u.length++),u};function Z(y,i,r){return(new Y).mulp(y,i,r)}function Y(y,i){this.x=y,this.y=i}Math.imul||(S=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?S(this,i,r):c<63?k(this,i,r):c<1024?function U(y,i,r){r.negative=i.negative^y.negative,r.length=y.length+i.length;for(var u=0,c=0,_=0;_>>26)|0)>>>26,E&=67108863}r.words[_]=I,u=E,E=c}return 0!==u?r.words[_]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,_,E){for(var I=0;I>>=1)_++;return 1<<_+1+c},Y.prototype.conjugate=function(i,r,u){if(!(u<=1))for(var c=0;c>>=13),_>>>=13;for(E=2*r;E>=26,r+=c/67108864|0,r+=_>>>26,this.words[u]=67108863&_}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function L(y){for(var i=new Array(y.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var _,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var E=0;for(_=0;_>>26-r}E&&(this.words[_]=E,this.length++)}if(0!==u){for(_=this.length-1;_>=0;_--)this.words[_+u]=this.words[_];for(_=0;_=0),c=r?(r-r%26)/26:0;var _=i%26,E=Math.min((i-_)/26,this.length),I=67108863^67108863>>>_<<_,v=u;if(c-=E,c=Math.max(0,c),v){for(var n=0;nE)for(this.length-=E,n=0;n=0&&(0!==C||n>=c);n--){var B=0|this.words[n];this.words[n]=C<<26-_|B>>>_,C=B&I}return v&&0!==C&&(v.words[v.length++]=C),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(v/67108864|0),this.words[_+u]=67108863&E}for(;_>26,this.words[_+u]=67108863&E;if(0===I)return this.strip();for(f(-1===I),I=0,_=0;_>26,this.words[_]=67108863&E;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),_=i,E=0|_.words[_.length-1];0!=(u=26-this._countBits(E))&&(_=_.ushln(u),c.iushln(u),E=0|_.words[_.length-1]);var n,v=c.length-_.length;if("mod"!==r){(n=new a(null)).length=v+1,n.words=new Array(n.length);for(var C=0;C=0;P--){var H=67108864*(0|c.words[_.length+P])+(0|c.words[_.length+P-1]);for(H=Math.min(H/E|0,67108863),c._ishlnsubmul(_,H,P);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(_,1,P),c.isZero()||(c.negative^=1);n&&(n.words[P]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(E=this.neg().divmod(i,r),"mod"!==r&&(c=E.div.neg()),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.iadd(i)),{div:c,mod:_}):0===this.negative&&0!==i.negative?(E=this.divmod(i.neg(),r),"mod"!==r&&(c=E.div.neg()),{div:c,mod:E.mod}):0!=(this.negative&i.negative)?(E=this.neg().divmod(i.neg(),r),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.isub(i)),{div:E.div,mod:_}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,_,E},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),_=i.andln(1),E=u.cmp(c);return E<0||1===_&&0===E?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=new a(0),I=new a(1),v=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++v;for(var n=u.clone(),C=r.clone();!r.isZero();){for(var B=0,P=1;0==(r.words[0]&P)&&B<26;++B,P<<=1);if(B>0)for(r.iushrn(B);B-- >0;)(c.isOdd()||_.isOdd())&&(c.iadd(n),_.isub(C)),c.iushrn(1),_.iushrn(1);for(var H=0,q=1;0==(u.words[0]&q)&&H<26;++H,q<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(E.isOdd()||I.isOdd())&&(E.iadd(n),I.isub(C)),E.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(E),_.isub(I)):(u.isub(r),E.isub(c),I.isub(_))}return{a:E,b:I,gcd:u.iushln(v)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var B,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,v=1;0==(r.words[0]&v)&&I<26;++I,v<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(E),c.iushrn(1);for(var n=0,C=1;0==(u.words[0]&C)&&n<26;++n,C<<=1);if(n>0)for(u.iushrn(n);n-- >0;)_.isOdd()&&_.iadd(E),_.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(_)):(u.isub(r),_.isub(c))}return(B=0===r.cmpn(1)?c:_).cmpn(0)<0&&B.iadd(i),B},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var _=r.cmp(u);if(_<0){var E=r;r=u,u=E}else if(0===_||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[E]=I&=67108863}return 0!==_&&(this.words[E]=_,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],_=0|i.words[u];if(c!==_){c<_?r=-1:c>_&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new X(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ne={k256:null,p224:null,p192:null,p25519:null};function $(y,i){this.name=y,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function de(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function te(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ie(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function oe(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function X(y){if("string"==typeof y){var i=a._prime(y);this.m=i.p,this.prime=i}else f(y.gtn(1),"modulus must be greater than 1"),this.m=y,this.prime=null}function me(y){X.call(this,y),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},$.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},$.prototype.split=function(i,r){i.iushrn(this.n,0,r)},$.prototype.imulK=function(i){return i.imul(this.k)},M(de,$),de.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),_=0;_>>22,E=I}i.words[_-10]=E>>>=22,i.length-=0===E&&i.length>10?10:9},de.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=_,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ne[i])return ne[i];var r;if("k256"===i)r=new de;else if("p224"===i)r=new te;else if("p192"===i)r=new ie;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new oe}return ne[i]=r,r},X.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},X.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},X.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},X.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},X.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},X.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},X.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},X.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},X.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},X.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},X.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},X.prototype.isqr=function(i){return this.imul(i,i.clone())},X.prototype.sqr=function(i){return this.mul(i,i)},X.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),_=0;!c.isZero()&&0===c.andln(1);)_++,c.iushrn(1);f(!c.isZero());var E=new a(1).toRed(this),I=E.redNeg(),v=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,v).cmp(I);)n.redIAdd(I);for(var C=this.pow(n,c),B=this.pow(i,c.addn(1).iushrn(1)),P=this.pow(i,c),H=_;0!==P.cmp(E);){for(var q=P,he=0;0!==q.cmp(E);he++)q=q.redSqr();f(he=0;_--){for(var C=r.words[_],B=n-1;B>=0;B--){var P=C>>B&1;E!==c[0]&&(E=this.sqr(E)),0!==P||0!==I?(I<<=1,I|=P,(4==++v||0===_&&0===B)&&(E=this.mul(E,c[I]),v=0,I=0)):v=0}n=26}return E},X.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},X.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new me(i)},M(me,X),me.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},me.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},me.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},4901:Ve=>{"use strict";var j={single_source_shortest_paths:function(p,t,e){var f={},M={};M[t]=0;var b,d,N,h,A,D,a=j.PriorityQueue.make();for(a.push(t,0);!a.empty();)for(N in h=(b=a.pop()).cost,A=p[d=b.value]||{})A.hasOwnProperty(N)&&(D=h+A[N],(void 0===M[N]||M[N]>D)&&(M[N]=D,a.push(N,D),f[N]=d));if(void 0!==e&&void 0===M[e]){var S=["Could not find a path from ",t," to ",e,"."].join("");throw new Error(S)}return f},extract_shortest_path_from_predecessor_list:function(p,t){for(var e=[],f=t;f;)e.push(f),f=p[f];return e.reverse(),e},find_path:function(p,t,e){var f=j.single_source_shortest_paths(p,t,e);return j.extract_shortest_path_from_predecessor_list(f,e)},PriorityQueue:{make:function(p){var f,t=j.PriorityQueue,e={};for(f in p=p||{},t)t.hasOwnProperty(f)&&(e[f]=t[f]);return e.queue=[],e.sorter=p.sorter||t.default_sorter,e},default_sorter:function(p,t){return p.cost-t.cost},push:function(p,t){this.queue.push({value:p,cost:t}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Ve.exports=j},7715:(Ve,j,p)=>{"use strict";var t=j;t.version=p(8597).i8,t.utils=p(1970),t.rand=p(7950),t.curve=p(6270),t.curves=p(2916),t.ec=p(7626),t.eddsa=p(1885)},7902:(Ve,j,p)=>{"use strict";var t=p(7433),e=p(1970),f=e.getNAF,M=e.getJSF,a=e.assert;function b(N,h){this.type=N,this.p=new t(h.p,16),this.red=h.prime?t.red(h.prime):t.mont(this.p),this.zero=new t(0).toRed(this.red),this.one=new t(1).toRed(this.red),this.two=new t(2).toRed(this.red),this.n=h.n&&new t(h.n,16),this.g=h.g&&this.pointFromJSON(h.g,h.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var A=this.n&&this.p.div(this.n);!A||A.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function d(N,h){this.curve=N,this.type=h,this.precomputed=null}Ve.exports=b,b.prototype.point=function(){throw new Error("Not implemented")},b.prototype.validate=function(){throw new Error("Not implemented")},b.prototype._fixedNafMul=function(h,A){a(h.precomputed);var w=h._getDoubles(),D=f(A,1,this._bitLength),L=(1<=S;Z--)U=(U<<1)+D[Z];k.push(U)}for(var Y=this.jpoint(null,null,null),ne=this.jpoint(null,null,null),$=L;$>0;$--){for(S=0;S=0;U--){for(var Z=0;U>=0&&0===k[U];U--)Z++;if(U>=0&&Z++,S=S.dblp(Z),U<0)break;var Y=k[U];a(0!==Y),S="affine"===h.type?S.mixedAdd(Y>0?L[Y-1>>1]:L[-Y-1>>1].neg()):S.add(Y>0?L[Y-1>>1]:L[-Y-1>>1].neg())}return"affine"===h.type?S.toP():S},b.prototype._wnafMulAdd=function(h,A,w,D,L){var Y,ne,$,k=this._wnafT1,S=this._wnafT2,U=this._wnafT3,Z=0;for(Y=0;Y=1;Y-=2){var te=Y-1,ie=Y;if(1===k[te]&&1===k[ie]){var oe=[A[te],null,null,A[ie]];0===A[te].y.cmp(A[ie].y)?(oe[1]=A[te].add(A[ie]),oe[2]=A[te].toJ().mixedAdd(A[ie].neg())):0===A[te].y.cmp(A[ie].y.redNeg())?(oe[1]=A[te].toJ().mixedAdd(A[ie]),oe[2]=A[te].add(A[ie].neg())):(oe[1]=A[te].toJ().mixedAdd(A[ie]),oe[2]=A[te].toJ().mixedAdd(A[ie].neg()));var X=[-3,-1,-5,-7,0,7,5,1,3],me=M(w[te],w[ie]);for(Z=Math.max(me[0].length,Z),U[te]=new Array(Z),U[ie]=new Array(Z),ne=0;ne=0;Y--){for(var c=0;Y>=0;){var _=!0;for(ne=0;ne=0&&c++,r=r.dblp(c),Y<0)break;for(ne=0;ne0?$=S[ne][E-1>>1]:E<0&&($=S[ne][-E-1>>1].neg()),r="affine"===$.type?r.mixedAdd($):r.add($))}}for(Y=0;Y=Math.ceil((h.bitLength()+1)/A.step)},d.prototype._getDoubles=function(h,A){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var w=[this],D=this,L=0;L{"use strict";var t=p(1970),e=p(7433),f=p(3894),M=p(7902),a=t.assert;function b(N){this.twisted=1!=(0|N.a),this.mOneA=this.twisted&&-1==(0|N.a),this.extended=this.mOneA,M.call(this,"edwards",N),this.a=new e(N.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new e(N.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new e(N.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),a(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|N.c)}function d(N,h,A,w,D){M.BasePoint.call(this,N,"projective"),null===h&&null===A&&null===w?(this.x=this.curve.zero,this.y=this.curve.one,this.z=this.curve.one,this.t=this.curve.zero,this.zOne=!0):(this.x=new e(h,16),this.y=new e(A,16),this.z=w?new e(w,16):this.curve.one,this.t=D&&new e(D,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.t&&!this.t.red&&(this.t=this.t.toRed(this.curve.red)),this.zOne=this.z===this.curve.one,this.curve.extended&&!this.t&&(this.t=this.x.redMul(this.y),this.zOne||(this.t=this.t.redMul(this.z.redInvm()))))}f(b,M),Ve.exports=b,b.prototype._mulA=function(h){return this.mOneA?h.redNeg():this.a.redMul(h)},b.prototype._mulC=function(h){return this.oneC?h:this.c.redMul(h)},b.prototype.jpoint=function(h,A,w,D){return this.point(h,A,w,D)},b.prototype.pointFromX=function(h,A){(h=new e(h,16)).red||(h=h.toRed(this.red));var w=h.redSqr(),D=this.c2.redSub(this.a.redMul(w)),L=this.one.redSub(this.c2.redMul(this.d).redMul(w)),k=D.redMul(L.redInvm()),S=k.redSqrt();if(0!==S.redSqr().redSub(k).cmp(this.zero))throw new Error("invalid point");var U=S.fromRed().isOdd();return(A&&!U||!A&&U)&&(S=S.redNeg()),this.point(h,S)},b.prototype.pointFromY=function(h,A){(h=new e(h,16)).red||(h=h.toRed(this.red));var w=h.redSqr(),D=w.redSub(this.c2),L=w.redMul(this.d).redMul(this.c2).redSub(this.a),k=D.redMul(L.redInvm());if(0===k.cmp(this.zero)){if(A)throw new Error("invalid point");return this.point(this.zero,h)}var S=k.redSqrt();if(0!==S.redSqr().redSub(k).cmp(this.zero))throw new Error("invalid point");return S.fromRed().isOdd()!==A&&(S=S.redNeg()),this.point(S,h)},b.prototype.validate=function(h){if(h.isInfinity())return!0;h.normalize();var A=h.x.redSqr(),w=h.y.redSqr(),D=A.redMul(this.a).redAdd(w),L=this.c2.redMul(this.one.redAdd(this.d.redMul(A).redMul(w)));return 0===D.cmp(L)},f(d,M.BasePoint),b.prototype.pointFromJSON=function(h){return d.fromJSON(this,h)},b.prototype.point=function(h,A,w,D){return new d(this,h,A,w,D)},d.fromJSON=function(h,A){return new d(h,A[0],A[1],A[2])},d.prototype.inspect=function(){return this.isInfinity()?"":""},d.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},d.prototype._extDbl=function(){var h=this.x.redSqr(),A=this.y.redSqr(),w=this.z.redSqr();w=w.redIAdd(w);var D=this.curve._mulA(h),L=this.x.redAdd(this.y).redSqr().redISub(h).redISub(A),k=D.redAdd(A),S=k.redSub(w),U=D.redSub(A),Z=L.redMul(S),Y=k.redMul(U),ne=L.redMul(U),$=S.redMul(k);return this.curve.point(Z,Y,$,ne)},d.prototype._projDbl=function(){var D,L,k,S,U,Z,h=this.x.redAdd(this.y).redSqr(),A=this.x.redSqr(),w=this.y.redSqr();if(this.curve.twisted){var Y=(S=this.curve._mulA(A)).redAdd(w);this.zOne?(D=h.redSub(A).redSub(w).redMul(Y.redSub(this.curve.two)),L=Y.redMul(S.redSub(w)),k=Y.redSqr().redSub(Y).redSub(Y)):(U=this.z.redSqr(),Z=Y.redSub(U).redISub(U),D=h.redSub(A).redISub(w).redMul(Z),L=Y.redMul(S.redSub(w)),k=Y.redMul(Z))}else S=A.redAdd(w),U=this.curve._mulC(this.z).redSqr(),Z=S.redSub(U).redSub(U),D=this.curve._mulC(h.redISub(S)).redMul(Z),L=this.curve._mulC(S).redMul(A.redISub(w)),k=S.redMul(Z);return this.curve.point(D,L,k)},d.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},d.prototype._extAdd=function(h){var A=this.y.redSub(this.x).redMul(h.y.redSub(h.x)),w=this.y.redAdd(this.x).redMul(h.y.redAdd(h.x)),D=this.t.redMul(this.curve.dd).redMul(h.t),L=this.z.redMul(h.z.redAdd(h.z)),k=w.redSub(A),S=L.redSub(D),U=L.redAdd(D),Z=w.redAdd(A),Y=k.redMul(S),ne=U.redMul(Z),$=k.redMul(Z),de=S.redMul(U);return this.curve.point(Y,ne,de,$)},d.prototype._projAdd=function(h){var ne,$,A=this.z.redMul(h.z),w=A.redSqr(),D=this.x.redMul(h.x),L=this.y.redMul(h.y),k=this.curve.d.redMul(D).redMul(L),S=w.redSub(k),U=w.redAdd(k),Z=this.x.redAdd(this.y).redMul(h.x.redAdd(h.y)).redISub(D).redISub(L),Y=A.redMul(S).redMul(Z);return this.curve.twisted?(ne=A.redMul(U).redMul(L.redSub(this.curve._mulA(D))),$=S.redMul(U)):(ne=A.redMul(U).redMul(L.redSub(D)),$=this.curve._mulC(S).redMul(U)),this.curve.point(Y,ne,$)},d.prototype.add=function(h){return this.isInfinity()?h:h.isInfinity()?this:this.curve.extended?this._extAdd(h):this._projAdd(h)},d.prototype.mul=function(h){return this._hasDoubles(h)?this.curve._fixedNafMul(this,h):this.curve._wnafMul(this,h)},d.prototype.mulAdd=function(h,A,w){return this.curve._wnafMulAdd(1,[this,A],[h,w],2,!1)},d.prototype.jmulAdd=function(h,A,w){return this.curve._wnafMulAdd(1,[this,A],[h,w],2,!0)},d.prototype.normalize=function(){if(this.zOne)return this;var h=this.z.redInvm();return this.x=this.x.redMul(h),this.y=this.y.redMul(h),this.t&&(this.t=this.t.redMul(h)),this.z=this.curve.one,this.zOne=!0,this},d.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},d.prototype.getX=function(){return this.normalize(),this.x.fromRed()},d.prototype.getY=function(){return this.normalize(),this.y.fromRed()},d.prototype.eq=function(h){return this===h||0===this.getX().cmp(h.getX())&&0===this.getY().cmp(h.getY())},d.prototype.eqXToP=function(h){var A=h.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(A))return!0;for(var w=h.clone(),D=this.curve.redN.redMul(this.z);;){if(w.iadd(this.curve.n),w.cmp(this.curve.p)>=0)return!1;if(A.redIAdd(D),0===this.x.cmp(A))return!0}},d.prototype.toP=d.prototype.normalize,d.prototype.mixedAdd=d.prototype.add},6270:(Ve,j,p)=>{"use strict";var t=j;t.base=p(7902),t.short=p(1781),t.mont=p(7064),t.edwards=p(3835)},7064:(Ve,j,p)=>{"use strict";var t=p(7433),e=p(3894),f=p(7902),M=p(1970);function a(d){f.call(this,"mont",d),this.a=new t(d.a,16).toRed(this.red),this.b=new t(d.b,16).toRed(this.red),this.i4=new t(4).toRed(this.red).redInvm(),this.two=new t(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function b(d,N,h){f.BasePoint.call(this,d,"projective"),null===N&&null===h?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new t(N,16),this.z=new t(h,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}e(a,f),Ve.exports=a,a.prototype.validate=function(N){var h=N.normalize().x,A=h.redSqr(),w=A.redMul(h).redAdd(A.redMul(this.a)).redAdd(h);return 0===w.redSqrt().redSqr().cmp(w)},e(b,f.BasePoint),a.prototype.decodePoint=function(N,h){return this.point(M.toArray(N,h),1)},a.prototype.point=function(N,h){return new b(this,N,h)},a.prototype.pointFromJSON=function(N){return b.fromJSON(this,N)},b.prototype.precompute=function(){},b.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},b.fromJSON=function(N,h){return new b(N,h[0],h[1]||N.one)},b.prototype.inspect=function(){return this.isInfinity()?"":""},b.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},b.prototype.dbl=function(){var h=this.x.redAdd(this.z).redSqr(),w=this.x.redSub(this.z).redSqr(),D=h.redSub(w),L=h.redMul(w),k=D.redMul(w.redAdd(this.curve.a24.redMul(D)));return this.curve.point(L,k)},b.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},b.prototype.diffAdd=function(N,h){var A=this.x.redAdd(this.z),w=this.x.redSub(this.z),D=N.x.redAdd(N.z),k=N.x.redSub(N.z).redMul(A),S=D.redMul(w),U=h.z.redMul(k.redAdd(S).redSqr()),Z=h.x.redMul(k.redISub(S).redSqr());return this.curve.point(U,Z)},b.prototype.mul=function(N){for(var h=N.clone(),A=this,w=this.curve.point(null,null),L=[];0!==h.cmpn(0);h.iushrn(1))L.push(h.andln(1));for(var k=L.length-1;k>=0;k--)0===L[k]?(A=A.diffAdd(w,this),w=w.dbl()):(w=A.diffAdd(w,this),A=A.dbl());return w},b.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},b.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},b.prototype.eq=function(N){return 0===this.getX().cmp(N.getX())},b.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},b.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},1781:(Ve,j,p)=>{"use strict";var t=p(1970),e=p(7433),f=p(3894),M=p(7902),a=t.assert;function b(h){M.call(this,"short",h),this.a=new e(h.a,16).toRed(this.red),this.b=new e(h.b,16).toRed(this.red),this.tinv=this.two.redInvm(),this.zeroA=0===this.a.fromRed().cmpn(0),this.threeA=0===this.a.fromRed().sub(this.p).cmpn(-3),this.endo=this._getEndomorphism(h),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function d(h,A,w,D){M.BasePoint.call(this,h,"affine"),null===A&&null===w?(this.x=null,this.y=null,this.inf=!0):(this.x=new e(A,16),this.y=new e(w,16),D&&(this.x.forceRed(this.curve.red),this.y.forceRed(this.curve.red)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.inf=!1)}function N(h,A,w,D){M.BasePoint.call(this,h,"jacobian"),null===A&&null===w&&null===D?(this.x=this.curve.one,this.y=this.curve.one,this.z=new e(0)):(this.x=new e(A,16),this.y=new e(w,16),this.z=new e(D,16)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.zOne=this.z===this.curve.one}f(b,M),Ve.exports=b,b.prototype._getEndomorphism=function(A){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var w,D;if(A.beta)w=new e(A.beta,16).toRed(this.red);else{var L=this._getEndoRoots(this.p);w=(w=L[0].cmp(L[1])<0?L[0]:L[1]).toRed(this.red)}if(A.lambda)D=new e(A.lambda,16);else{var k=this._getEndoRoots(this.n);0===this.g.mul(k[0]).x.cmp(this.g.x.redMul(w))?D=k[0]:a(0===this.g.mul(D=k[1]).x.cmp(this.g.x.redMul(w)))}return{beta:w,lambda:D,basis:A.basis?A.basis.map(function(U){return{a:new e(U.a,16),b:new e(U.b,16)}}):this._getEndoBasis(D)}}},b.prototype._getEndoRoots=function(A){var w=A===this.p?this.red:e.mont(A),D=new e(2).toRed(w).redInvm(),L=D.redNeg(),k=new e(3).toRed(w).redNeg().redSqrt().redMul(D);return[L.redAdd(k).fromRed(),L.redSub(k).fromRed()]},b.prototype._getEndoBasis=function(A){for(var Y,ne,$,de,te,ie,oe,me,y,w=this.n.ushrn(Math.floor(this.n.bitLength()/2)),D=A,L=this.n.clone(),k=new e(1),S=new e(0),U=new e(0),Z=new e(1),X=0;0!==D.cmpn(0);){var i=L.div(D);me=L.sub(i.mul(D)),y=U.sub(i.mul(k));var r=Z.sub(i.mul(S));if(!$&&me.cmp(w)<0)Y=oe.neg(),ne=k,$=me.neg(),de=y;else if($&&2==++X)break;oe=me,L=D,D=me,U=k,k=y,Z=S,S=r}te=me.neg(),ie=y;var u=$.sqr().add(de.sqr());return te.sqr().add(ie.sqr()).cmp(u)>=0&&(te=Y,ie=ne),$.negative&&($=$.neg(),de=de.neg()),te.negative&&(te=te.neg(),ie=ie.neg()),[{a:$,b:de},{a:te,b:ie}]},b.prototype._endoSplit=function(A){var w=this.endo.basis,D=w[0],L=w[1],k=L.b.mul(A).divRound(this.n),S=D.b.neg().mul(A).divRound(this.n),U=k.mul(D.a),Z=S.mul(L.a),Y=k.mul(D.b),ne=S.mul(L.b);return{k1:A.sub(U).sub(Z),k2:Y.add(ne).neg()}},b.prototype.pointFromX=function(A,w){(A=new e(A,16)).red||(A=A.toRed(this.red));var D=A.redSqr().redMul(A).redIAdd(A.redMul(this.a)).redIAdd(this.b),L=D.redSqrt();if(0!==L.redSqr().redSub(D).cmp(this.zero))throw new Error("invalid point");var k=L.fromRed().isOdd();return(w&&!k||!w&&k)&&(L=L.redNeg()),this.point(A,L)},b.prototype.validate=function(A){if(A.inf)return!0;var w=A.x,D=A.y,L=this.a.redMul(w),k=w.redSqr().redMul(w).redIAdd(L).redIAdd(this.b);return 0===D.redSqr().redISub(k).cmpn(0)},b.prototype._endoWnafMulAdd=function(A,w,D){for(var L=this._endoWnafT1,k=this._endoWnafT2,S=0;S":""},d.prototype.isInfinity=function(){return this.inf},d.prototype.add=function(A){if(this.inf)return A;if(A.inf)return this;if(this.eq(A))return this.dbl();if(this.neg().eq(A))return this.curve.point(null,null);if(0===this.x.cmp(A.x))return this.curve.point(null,null);var w=this.y.redSub(A.y);0!==w.cmpn(0)&&(w=w.redMul(this.x.redSub(A.x).redInvm()));var D=w.redSqr().redISub(this.x).redISub(A.x),L=w.redMul(this.x.redSub(D)).redISub(this.y);return this.curve.point(D,L)},d.prototype.dbl=function(){if(this.inf)return this;var A=this.y.redAdd(this.y);if(0===A.cmpn(0))return this.curve.point(null,null);var w=this.curve.a,D=this.x.redSqr(),L=A.redInvm(),k=D.redAdd(D).redIAdd(D).redIAdd(w).redMul(L),S=k.redSqr().redISub(this.x.redAdd(this.x)),U=k.redMul(this.x.redSub(S)).redISub(this.y);return this.curve.point(S,U)},d.prototype.getX=function(){return this.x.fromRed()},d.prototype.getY=function(){return this.y.fromRed()},d.prototype.mul=function(A){return A=new e(A,16),this.isInfinity()?this:this._hasDoubles(A)?this.curve._fixedNafMul(this,A):this.curve.endo?this.curve._endoWnafMulAdd([this],[A]):this.curve._wnafMul(this,A)},d.prototype.mulAdd=function(A,w,D){var L=[this,w],k=[A,D];return this.curve.endo?this.curve._endoWnafMulAdd(L,k):this.curve._wnafMulAdd(1,L,k,2)},d.prototype.jmulAdd=function(A,w,D){var L=[this,w],k=[A,D];return this.curve.endo?this.curve._endoWnafMulAdd(L,k,!0):this.curve._wnafMulAdd(1,L,k,2,!0)},d.prototype.eq=function(A){return this===A||this.inf===A.inf&&(this.inf||0===this.x.cmp(A.x)&&0===this.y.cmp(A.y))},d.prototype.neg=function(A){if(this.inf)return this;var w=this.curve.point(this.x,this.y.redNeg());if(A&&this.precomputed){var D=this.precomputed,L=function(k){return k.neg()};w.precomputed={naf:D.naf&&{wnd:D.naf.wnd,points:D.naf.points.map(L)},doubles:D.doubles&&{step:D.doubles.step,points:D.doubles.points.map(L)}}}return w},d.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},f(N,M.BasePoint),b.prototype.jpoint=function(A,w,D){return new N(this,A,w,D)},N.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var A=this.z.redInvm(),w=A.redSqr(),D=this.x.redMul(w),L=this.y.redMul(w).redMul(A);return this.curve.point(D,L)},N.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},N.prototype.add=function(A){if(this.isInfinity())return A;if(A.isInfinity())return this;var w=A.z.redSqr(),D=this.z.redSqr(),L=this.x.redMul(w),k=A.x.redMul(D),S=this.y.redMul(w.redMul(A.z)),U=A.y.redMul(D.redMul(this.z)),Z=L.redSub(k),Y=S.redSub(U);if(0===Z.cmpn(0))return 0!==Y.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var ne=Z.redSqr(),$=ne.redMul(Z),de=L.redMul(ne),te=Y.redSqr().redIAdd($).redISub(de).redISub(de),ie=Y.redMul(de.redISub(te)).redISub(S.redMul($)),oe=this.z.redMul(A.z).redMul(Z);return this.curve.jpoint(te,ie,oe)},N.prototype.mixedAdd=function(A){if(this.isInfinity())return A.toJ();if(A.isInfinity())return this;var w=this.z.redSqr(),D=this.x,L=A.x.redMul(w),k=this.y,S=A.y.redMul(w).redMul(this.z),U=D.redSub(L),Z=k.redSub(S);if(0===U.cmpn(0))return 0!==Z.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Y=U.redSqr(),ne=Y.redMul(U),$=D.redMul(Y),de=Z.redSqr().redIAdd(ne).redISub($).redISub($),te=Z.redMul($.redISub(de)).redISub(k.redMul(ne)),ie=this.z.redMul(U);return this.curve.jpoint(de,te,ie)},N.prototype.dblp=function(A){if(0===A)return this;if(this.isInfinity())return this;if(!A)return this.dbl();var w;if(this.curve.zeroA||this.curve.threeA){var D=this;for(w=0;w=0)return!1;if(D.redIAdd(k),0===this.x.cmp(D))return!0}},N.prototype.inspect=function(){return this.isInfinity()?"":""},N.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},2916:(Ve,j,p)=>{"use strict";var N,t=j,e=p(7084),f=p(6270),a=p(1970).assert;function b(h){this.curve="short"===h.type?new f.short(h):"edwards"===h.type?new f.edwards(h):new f.mont(h),this.g=this.curve.g,this.n=this.curve.n,this.hash=h.hash,a(this.g.validate(),"Invalid curve"),a(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function d(h,A){Object.defineProperty(t,h,{configurable:!0,enumerable:!0,get:function(){var w=new b(A);return Object.defineProperty(t,h,{configurable:!0,enumerable:!0,value:w}),w}})}t.PresetCurve=b,d("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:e.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),d("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:e.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),d("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:e.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),d("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:e.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),d("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:e.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),d("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:e.sha256,gRed:!1,g:["9"]}),d("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:e.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{N=p(5150)}catch(h){N=void 0}d("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:e.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",N]})},7626:(Ve,j,p)=>{"use strict";var t=p(7433),e=p(2438),f=p(1970),M=p(2916),a=p(7950),b=f.assert,d=p(1259),N=p(5957);function h(A){if(!(this instanceof h))return new h(A);"string"==typeof A&&(b(Object.prototype.hasOwnProperty.call(M,A),"Unknown curve "+A),A=M[A]),A instanceof M.PresetCurve&&(A={curve:A}),this.curve=A.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=A.curve.g,this.g.precompute(A.curve.n.bitLength()+1),this.hash=A.hash||A.curve.hash}Ve.exports=h,h.prototype.keyPair=function(w){return new d(this,w)},h.prototype.keyFromPrivate=function(w,D){return d.fromPrivate(this,w,D)},h.prototype.keyFromPublic=function(w,D){return d.fromPublic(this,w,D)},h.prototype.genKeyPair=function(w){w||(w={});for(var D=new e({hash:this.hash,pers:w.pers,persEnc:w.persEnc||"utf8",entropy:w.entropy||a(this.hash.hmacStrength),entropyEnc:w.entropy&&w.entropyEnc||"utf8",nonce:this.n.toArray()}),L=this.n.byteLength(),k=this.n.sub(new t(2));;){var S=new t(D.generate(L));if(!(S.cmp(k)>0))return S.iaddn(1),this.keyFromPrivate(S)}},h.prototype._truncateToN=function(w,D){var L=8*w.byteLength()-this.n.bitLength();return L>0&&(w=w.ushrn(L)),!D&&w.cmp(this.n)>=0?w.sub(this.n):w},h.prototype.sign=function(w,D,L,k){"object"==typeof L&&(k=L,L=null),k||(k={}),D=this.keyFromPrivate(D,L),w=this._truncateToN(new t(w,16));for(var S=this.n.byteLength(),U=D.getPrivate().toArray("be",S),Z=w.toArray("be",S),Y=new e({hash:this.hash,entropy:U,nonce:Z,pers:k.pers,persEnc:k.persEnc||"utf8"}),ne=this.n.sub(new t(1)),$=0;;$++){var de=k.k?k.k($):new t(Y.generate(this.n.byteLength()));if(!((de=this._truncateToN(de,!0)).cmpn(1)<=0||de.cmp(ne)>=0)){var te=this.g.mul(de);if(!te.isInfinity()){var ie=te.getX(),oe=ie.umod(this.n);if(0!==oe.cmpn(0)){var X=de.invm(this.n).mul(oe.mul(D.getPrivate()).iadd(w));if(0!==(X=X.umod(this.n)).cmpn(0)){var me=(te.getY().isOdd()?1:0)|(0!==ie.cmp(oe)?2:0);return k.canonical&&X.cmp(this.nh)>0&&(X=this.n.sub(X),me^=1),new N({r:oe,s:X,recoveryParam:me})}}}}}},h.prototype.verify=function(w,D,L,k){w=this._truncateToN(new t(w,16)),L=this.keyFromPublic(L,k);var S=(D=new N(D,"hex")).r,U=D.s;if(S.cmpn(1)<0||S.cmp(this.n)>=0||U.cmpn(1)<0||U.cmp(this.n)>=0)return!1;var $,Z=U.invm(this.n),Y=Z.mul(w).umod(this.n),ne=Z.mul(S).umod(this.n);return this.curve._maxwellTrick?!($=this.g.jmulAdd(Y,L.getPublic(),ne)).isInfinity()&&$.eqXToP(S):!($=this.g.mulAdd(Y,L.getPublic(),ne)).isInfinity()&&0===$.getX().umod(this.n).cmp(S)},h.prototype.recoverPubKey=function(A,w,D,L){b((3&D)===D,"The recovery param is more than two bits"),w=new N(w,L);var k=this.n,S=new t(A),U=w.r,Z=w.s,Y=1&D,ne=D>>1;if(U.cmp(this.curve.p.umod(this.curve.n))>=0&&ne)throw new Error("Unable to find sencond key candinate");U=this.curve.pointFromX(ne?U.add(this.curve.n):U,Y);var $=w.r.invm(k),de=k.sub(S).mul($).umod(k),te=Z.mul($).umod(k);return this.g.mulAdd(de,U,te)},h.prototype.getKeyRecoveryParam=function(A,w,D,L){if(null!==(w=new N(w,L)).recoveryParam)return w.recoveryParam;for(var k=0;k<4;k++){var S;try{S=this.recoverPubKey(A,w,k)}catch(U){continue}if(S.eq(D))return k}throw new Error("Unable to find valid recovery factor")}},1259:(Ve,j,p)=>{"use strict";var t=p(7433),f=p(1970).assert;function M(a,b){this.ec=a,this.priv=null,this.pub=null,b.priv&&this._importPrivate(b.priv,b.privEnc),b.pub&&this._importPublic(b.pub,b.pubEnc)}Ve.exports=M,M.fromPublic=function(b,d,N){return d instanceof M?d:new M(b,{pub:d,pubEnc:N})},M.fromPrivate=function(b,d,N){return d instanceof M?d:new M(b,{priv:d,privEnc:N})},M.prototype.validate=function(){var b=this.getPublic();return b.isInfinity()?{result:!1,reason:"Invalid public key"}:b.validate()?b.mul(this.ec.curve.n).isInfinity()?{result:!0,reason:null}:{result:!1,reason:"Public key * N != O"}:{result:!1,reason:"Public key is not a point"}},M.prototype.getPublic=function(b,d){return"string"==typeof b&&(d=b,b=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),d?this.pub.encode(d,b):this.pub},M.prototype.getPrivate=function(b){return"hex"===b?this.priv.toString(16,2):this.priv},M.prototype._importPrivate=function(b,d){this.priv=new t(b,d||16),this.priv=this.priv.umod(this.ec.curve.n)},M.prototype._importPublic=function(b,d){if(b.x||b.y)return"mont"===this.ec.curve.type?f(b.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&f(b.x&&b.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(b.x,b.y));this.pub=this.ec.curve.decodePoint(b,d)},M.prototype.derive=function(b){return b.validate()||f(b.validate(),"public point not validated"),b.mul(this.priv).getX()},M.prototype.sign=function(b,d,N){return this.ec.sign(b,this,d,N)},M.prototype.verify=function(b,d){return this.ec.verify(b,d,this)},M.prototype.inspect=function(){return""}},5957:(Ve,j,p)=>{"use strict";var t=p(7433),e=p(1970),f=e.assert;function M(h,A){if(h instanceof M)return h;this._importDER(h,A)||(f(h.r&&h.s,"Signature without r or s"),this.r=new t(h.r,16),this.s=new t(h.s,16),this.recoveryParam=void 0===h.recoveryParam?null:h.recoveryParam)}function a(){this.place=0}function b(h,A){var w=h[A.place++];if(!(128&w))return w;var D=15&w;if(0===D||D>4)return!1;for(var L=0,k=0,S=A.place;k>>=0;return!(L<=127)&&(A.place=S,L)}function d(h){for(var A=0,w=h.length-1;!h[A]&&!(128&h[A+1])&&A>>3);for(h.push(128|w);--w;)h.push(A>>>(w<<3)&255);h.push(A)}}Ve.exports=M,M.prototype._importDER=function(A,w){A=e.toArray(A,w);var D=new a;if(48!==A[D.place++])return!1;var L=b(A,D);if(!1===L||L+D.place!==A.length||2!==A[D.place++])return!1;var k=b(A,D);if(!1===k)return!1;var S=A.slice(D.place,k+D.place);if(D.place+=k,2!==A[D.place++])return!1;var U=b(A,D);if(!1===U||A.length!==U+D.place)return!1;var Z=A.slice(D.place,U+D.place);if(0===S[0]){if(!(128&S[1]))return!1;S=S.slice(1)}if(0===Z[0]){if(!(128&Z[1]))return!1;Z=Z.slice(1)}return this.r=new t(S),this.s=new t(Z),this.recoveryParam=null,!0},M.prototype.toDER=function(A){var w=this.r.toArray(),D=this.s.toArray();for(128&w[0]&&(w=[0].concat(w)),128&D[0]&&(D=[0].concat(D)),w=d(w),D=d(D);!(D[0]||128&D[1]);)D=D.slice(1);var L=[2];N(L,w.length),(L=L.concat(w)).push(2),N(L,D.length);var k=L.concat(D),S=[48];return N(S,k.length),S=S.concat(k),e.encode(S,A)}},1885:(Ve,j,p)=>{"use strict";var t=p(7084),e=p(2916),f=p(1970),M=f.assert,a=f.parseBytes,b=p(7535),d=p(8241);function N(h){if(M("ed25519"===h,"only tested with ed25519 so far"),!(this instanceof N))return new N(h);this.curve=h=e[h].curve,this.g=h.g,this.g.precompute(h.n.bitLength()+1),this.pointClass=h.point().constructor,this.encodingLength=Math.ceil(h.n.bitLength()/8),this.hash=t.sha512}Ve.exports=N,N.prototype.sign=function(A,w){A=a(A);var D=this.keyFromSecret(w),L=this.hashInt(D.messagePrefix(),A),k=this.g.mul(L),S=this.encodePoint(k),U=this.hashInt(S,D.pubBytes(),A).mul(D.priv()),Z=L.add(U).umod(this.curve.n);return this.makeSignature({R:k,S:Z,Rencoded:S})},N.prototype.verify=function(A,w,D){A=a(A),w=this.makeSignature(w);var L=this.keyFromPublic(D),k=this.hashInt(w.Rencoded(),L.pubBytes(),A),S=this.g.mul(w.S());return w.R().add(L.pub().mul(k)).eq(S)},N.prototype.hashInt=function(){for(var A=this.hash(),w=0;w{"use strict";var t=p(1970),e=t.assert,f=t.parseBytes,M=t.cachedProperty;function a(b,d){this.eddsa=b,this._secret=f(d.secret),b.isPoint(d.pub)?this._pub=d.pub:this._pubBytes=f(d.pub)}a.fromPublic=function(d,N){return N instanceof a?N:new a(d,{pub:N})},a.fromSecret=function(d,N){return N instanceof a?N:new a(d,{secret:N})},a.prototype.secret=function(){return this._secret},M(a,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),M(a,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),M(a,"privBytes",function(){var d=this.eddsa,N=this.hash(),h=d.encodingLength-1,A=N.slice(0,d.encodingLength);return A[0]&=248,A[h]&=127,A[h]|=64,A}),M(a,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),M(a,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),M(a,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),a.prototype.sign=function(d){return e(this._secret,"KeyPair can only verify"),this.eddsa.sign(d,this)},a.prototype.verify=function(d,N){return this.eddsa.verify(d,N,this)},a.prototype.getSecret=function(d){return e(this._secret,"KeyPair is public only"),t.encode(this.secret(),d)},a.prototype.getPublic=function(d){return t.encode(this.pubBytes(),d)},Ve.exports=a},8241:(Ve,j,p)=>{"use strict";var t=p(7433),e=p(1970),f=e.assert,M=e.cachedProperty,a=e.parseBytes;function b(d,N){this.eddsa=d,"object"!=typeof N&&(N=a(N)),Array.isArray(N)&&(N={R:N.slice(0,d.encodingLength),S:N.slice(d.encodingLength)}),f(N.R&&N.S,"Signature without R or S"),d.isPoint(N.R)&&(this._R=N.R),N.S instanceof t&&(this._S=N.S),this._Rencoded=Array.isArray(N.R)?N.R:N.Rencoded,this._Sencoded=Array.isArray(N.S)?N.S:N.Sencoded}M(b,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),M(b,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),M(b,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),M(b,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),b.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},b.prototype.toHex=function(){return e.encode(this.toBytes(),"hex").toUpperCase()},Ve.exports=b},5150:Ve=>{Ve.exports={doubles:{step:4,points:[["e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a","f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821"],["8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508","11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf"],["175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739","d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695"],["363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640","4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9"],["8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c","4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36"],["723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda","96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f"],["eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa","5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999"],["100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0","cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09"],["e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d","9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d"],["feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d","e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088"],["da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1","9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d"],["53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0","5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8"],["8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047","10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a"],["385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862","283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453"],["6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7","7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160"],["3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd","56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0"],["85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83","7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6"],["948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a","53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589"],["6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8","bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17"],["e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d","4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda"],["e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725","7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd"],["213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754","4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2"],["4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c","17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6"],["fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6","6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f"],["76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39","c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01"],["c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891","893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3"],["d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b","febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f"],["b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03","2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7"],["e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d","eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78"],["a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070","7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1"],["90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4","e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150"],["8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da","662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82"],["e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11","1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc"],["8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e","efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b"],["e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41","2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51"],["b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef","67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45"],["d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8","db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120"],["324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d","648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84"],["4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96","35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d"],["9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd","ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d"],["6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5","9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8"],["a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266","40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8"],["7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71","34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac"],["928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac","c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f"],["85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751","1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962"],["ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e","493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907"],["827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241","c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec"],["eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3","be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d"],["e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f","4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414"],["1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19","aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd"],["146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be","b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0"],["fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9","6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811"],["da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2","8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1"],["a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13","7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c"],["174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c","ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73"],["959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba","2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd"],["d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151","e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405"],["64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073","d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589"],["8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458","38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e"],["13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b","69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27"],["bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366","d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1"],["8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa","40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482"],["8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0","620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945"],["dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787","7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573"],["f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e","ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82"]]},naf:{wnd:7,points:[["f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9","388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672"],["2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4","d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6"],["5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc","6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da"],["acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe","cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37"],["774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb","d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b"],["f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8","ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81"],["d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e","581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58"],["defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34","4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77"],["2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c","85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a"],["352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5","321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c"],["2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f","2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67"],["9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714","73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402"],["daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729","a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55"],["c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db","2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482"],["6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4","e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82"],["1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5","b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396"],["605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479","2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49"],["62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d","80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf"],["80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f","1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a"],["7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb","d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7"],["d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9","eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933"],["49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963","758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a"],["77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74","958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6"],["f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530","e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37"],["463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b","5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e"],["f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247","cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6"],["caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1","cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476"],["2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120","4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40"],["7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435","91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61"],["754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18","673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683"],["e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8","59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5"],["186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb","3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b"],["df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f","55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417"],["5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143","efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868"],["290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba","e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a"],["af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45","f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6"],["766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a","744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996"],["59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e","c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e"],["f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8","e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d"],["7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c","30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2"],["948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519","e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e"],["7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab","100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437"],["3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca","ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311"],["d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf","8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4"],["1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610","68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575"],["733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4","f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d"],["15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c","d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d"],["a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940","edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629"],["e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980","a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06"],["311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3","66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374"],["34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf","9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee"],["f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63","4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1"],["d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448","fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b"],["32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf","5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661"],["7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5","8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6"],["ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6","8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e"],["16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5","5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d"],["eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99","f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc"],["78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51","f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4"],["494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5","42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c"],["a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5","204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b"],["c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997","4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913"],["841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881","73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154"],["5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5","39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865"],["36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66","d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc"],["336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726","ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224"],["8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede","6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e"],["1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94","60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6"],["85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31","3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511"],["29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51","b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b"],["a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252","ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2"],["4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5","cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c"],["d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b","6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3"],["ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4","322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d"],["af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f","6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700"],["e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889","2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4"],["591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246","b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196"],["11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984","998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4"],["3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a","b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257"],["cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030","bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13"],["c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197","6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096"],["c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593","c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38"],["a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef","21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f"],["347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38","60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448"],["da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a","49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a"],["c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111","5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4"],["4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502","7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437"],["3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea","be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7"],["cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26","8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d"],["b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986","39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a"],["d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e","62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54"],["48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4","25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77"],["dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda","ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517"],["6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859","cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10"],["e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f","f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125"],["eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c","6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e"],["13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942","fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1"],["ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a","1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2"],["b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80","5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423"],["ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d","438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8"],["8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1","cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758"],["52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63","c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375"],["e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352","6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d"],["7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193","ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec"],["5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00","9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0"],["32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58","ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c"],["e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7","d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4"],["8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8","c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f"],["4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e","67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649"],["3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d","cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826"],["674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b","299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5"],["d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f","f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87"],["30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6","462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b"],["be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297","62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc"],["93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a","7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c"],["b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c","ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f"],["d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52","4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a"],["d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb","bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46"],["463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065","bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f"],["7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917","603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03"],["74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9","cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08"],["30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3","553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8"],["9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57","712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373"],["176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66","ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3"],["75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8","9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8"],["809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721","9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1"],["1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180","4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9"]]}}},1970:(Ve,j,p)=>{"use strict";var t=j,e=p(7433),f=p(2391),M=p(8195);t.assert=f,t.toArray=M.toArray,t.zero2=M.zero2,t.toHex=M.toHex,t.encode=M.encode,t.getNAF=function a(A,w,D){var L=new Array(Math.max(A.bitLength(),D)+1);L.fill(0);for(var k=1<(k>>1)-1?(k>>1)-Y:Y):Z=0,L[U]=Z,S.iushrn(1)}return L},t.getJSF=function b(A,w){var D=[[],[]];A=A.clone(),w=w.clone();for(var S,L=0,k=0;A.cmpn(-L)>0||w.cmpn(-k)>0;){var Y,ne,U=A.andln(3)+L&3,Z=w.andln(3)+k&3;3===U&&(U=-1),3===Z&&(Z=-1),Y=0==(1&U)?0:3!=(S=A.andln(7)+L&7)&&5!==S||2!==Z?U:-U,D[0].push(Y),ne=0==(1&Z)?0:3!=(S=w.andln(7)+k&7)&&5!==S||2!==U?Z:-Z,D[1].push(ne),2*L===Y+1&&(L=1-L),2*k===ne+1&&(k=1-k),A.iushrn(1),w.iushrn(1)}return D},t.cachedProperty=function d(A,w,D){var L="_"+w;A.prototype[w]=function(){return void 0!==this[L]?this[L]:this[L]=D.call(this)}},t.parseBytes=function N(A){return"string"==typeof A?t.toArray(A,"hex"):A},t.intFromLE=function h(A){return new e(A,"hex","le")}},7433:function(Ve,j,p){!function(t,e){"use strict";function f(y,i){if(!y)throw new Error(i||"Assertion failed")}function M(y,i){y.super_=i;var r=function(){};r.prototype=i.prototype,y.prototype=new r,y.prototype.constructor=y}function a(y,i,r){if(a.isBN(y))return y;this.negative=0,this.words=null,this.length=0,this.red=null,null!==y&&(("le"===i||"be"===i)&&(r=i,i=10),this._init(y||0,i||10,r||"be"))}var b;"object"==typeof t?t.exports=a:e.BN=a,a.BN=a,a.wordSize=26;try{b="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:p(5568).Buffer}catch(y){}function d(y,i){var r=y.charCodeAt(i);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function N(y,i,r){var u=d(y,r);return r-1>=i&&(u|=d(y,r-1)<<4),u}function h(y,i,r,u){for(var c=0,_=Math.min(y.length,r),E=i;E<_;E++){var I=y.charCodeAt(E)-48;c*=u,c+=I>=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[_]|=(E=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);else if("le"===u)for(c=0,_=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=N(i,r,c)<<_,this.words[E]|=67108863&I,_>=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,_=1;_<=67108863;_*=r)c++;c--,_=_/r|0;for(var E=i.length-u,I=E%c,v=Math.min(E,E-I)+u,n=0,C=u;C1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var A=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(y,i,r){r.negative=i.negative^y.negative;var u=y.length+i.length|0;r.length=u,u=u-1|0;var c=0|y.words[0],_=0|i.words[0],E=c*_,v=E/67108864|0;r.words[0]=67108863&E;for(var n=1;n>>26,B=67108863&v,P=Math.min(n,i.length-1),H=Math.max(0,n-y.length+1);H<=P;H++)C+=(E=(c=0|y.words[n-H|0])*(_=0|i.words[H])+B)/67108864|0,B=67108863&E;r.words[n]=0|B,v=0|C}return 0!==v?r.words[n]=0|v:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,_=0,E=0;E>>24-c&16777215)||E!==this.length-1?A[6-v.length]+v+u:v+u,(c+=2)>=26&&(c-=26,E--)}for(0!==_&&(u=_.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],C=D[i];u="";var B=this.clone();for(B.negative=0;!B.isZero();){var P=B.modn(C).toString(i);u=(B=B.idivn(C)).isZero()?P+u:A[n-P.length]+P+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==b),this.toArrayLike(b,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),_=u||Math.max(1,c);f(c<=_,"byte array longer than desired length"),f(_>0,"Requested array length <= 0"),this.strip();var v,n,E="le"===r,I=new i(_),C=this.clone();if(E){for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[n]=v;for(;n<_;n++)I[n]=0}else{for(n=0;n<_-c;n++)I[n]=0;for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[_-n-1]=v}return I},a.prototype._countBits=Math.clz32?function(i){return 32-Math.clz32(i)}:function(i){var r=i,u=0;return r>=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var _=0,E=0;E>>26;for(;0!==_&&E>>26;if(this.length=u.length,0!==_)this.words[this.length]=_,this.length++;else if(u!==this)for(;Ei.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,_,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,_=i):(c=i,_=this);for(var E=0,I=0;I<_.length;I++)E=(r=(0|c.words[I])-(0|_.words[I])+E)>>26,this.words[I]=67108863&r;for(;0!==E&&I>26,this.words[I]=67108863&r;if(0===E&&I>>13,q=0|c[1],he=8191&q,_e=q>>>13,Ne=0|c[2],we=8191&Ne,Q=Ne>>>13,Ue=0|c[3],ve=8191&Ue,V=Ue>>>13,De=0|c[4],dt=8191&De,Ie=De>>>13,Ae=0|c[5],le=8191&Ae,Te=Ae>>>13,xe=0|c[6],W=8191&xe,ee=xe>>>13,ue=0|c[7],Ce=8191&ue,Le=ue>>>13,ut=0|c[8],ht=8191&ut,It=ut>>>13,ui=0|c[9],Wt=8191&ui,Gt=ui>>>13,hi=0|_[0],xt=8191&hi,Nt=hi>>>13,Ct=0|_[1],et=8191&Ct,yt=Ct>>>13,ei=0|_[2],Yt=8191&ei,Pe=ei>>>13,Oe=0|_[3],ce=8191&Oe,be=Oe>>>13,pt=0|_[4],mt=8191&pt,Ht=pt>>>13,it=0|_[5],Re=8191&it,tt=it>>>13,Xe=0|_[6],Se=8191&Xe,Ge=Xe>>>13,at=0|_[7],st=8191&at,bt=at>>>13,gi=0|_[8],qt=8191&gi,Xt=gi>>>13,qi=0|_[9],fi=8191&qi,si=qi>>>13;u.negative=i.negative^r.negative,u.length=19;var $i=(I+(v=Math.imul(P,xt))|0)+((8191&(n=(n=Math.imul(P,Nt))+Math.imul(H,xt)|0))<<13)|0;I=((C=Math.imul(H,Nt))+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,v=Math.imul(he,xt),n=(n=Math.imul(he,Nt))+Math.imul(_e,xt)|0,C=Math.imul(_e,Nt);var Bi=(I+(v=v+Math.imul(P,et)|0)|0)+((8191&(n=(n=n+Math.imul(P,yt)|0)+Math.imul(H,et)|0))<<13)|0;I=((C=C+Math.imul(H,yt)|0)+(n>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,v=Math.imul(we,xt),n=(n=Math.imul(we,Nt))+Math.imul(Q,xt)|0,C=Math.imul(Q,Nt),v=v+Math.imul(he,et)|0,n=(n=n+Math.imul(he,yt)|0)+Math.imul(_e,et)|0,C=C+Math.imul(_e,yt)|0;var zi=(I+(v=v+Math.imul(P,Yt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Pe)|0)+Math.imul(H,Yt)|0))<<13)|0;I=((C=C+Math.imul(H,Pe)|0)+(n>>>13)|0)+(zi>>>26)|0,zi&=67108863,v=Math.imul(ve,xt),n=(n=Math.imul(ve,Nt))+Math.imul(V,xt)|0,C=Math.imul(V,Nt),v=v+Math.imul(we,et)|0,n=(n=n+Math.imul(we,yt)|0)+Math.imul(Q,et)|0,C=C+Math.imul(Q,yt)|0,v=v+Math.imul(he,Yt)|0,n=(n=n+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0,C=C+Math.imul(_e,Pe)|0;var Ui=(I+(v=v+Math.imul(P,ce)|0)|0)+((8191&(n=(n=n+Math.imul(P,be)|0)+Math.imul(H,ce)|0))<<13)|0;I=((C=C+Math.imul(H,be)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(dt,xt),n=(n=Math.imul(dt,Nt))+Math.imul(Ie,xt)|0,C=Math.imul(Ie,Nt),v=v+Math.imul(ve,et)|0,n=(n=n+Math.imul(ve,yt)|0)+Math.imul(V,et)|0,C=C+Math.imul(V,yt)|0,v=v+Math.imul(we,Yt)|0,n=(n=n+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,C=C+Math.imul(Q,Pe)|0,v=v+Math.imul(he,ce)|0,n=(n=n+Math.imul(he,be)|0)+Math.imul(_e,ce)|0,C=C+Math.imul(_e,be)|0;var ze=(I+(v=v+Math.imul(P,mt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ht)|0)+Math.imul(H,mt)|0))<<13)|0;I=((C=C+Math.imul(H,Ht)|0)+(n>>>13)|0)+(ze>>>26)|0,ze&=67108863,v=Math.imul(le,xt),n=(n=Math.imul(le,Nt))+Math.imul(Te,xt)|0,C=Math.imul(Te,Nt),v=v+Math.imul(dt,et)|0,n=(n=n+Math.imul(dt,yt)|0)+Math.imul(Ie,et)|0,C=C+Math.imul(Ie,yt)|0,v=v+Math.imul(ve,Yt)|0,n=(n=n+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,C=C+Math.imul(V,Pe)|0,v=v+Math.imul(we,ce)|0,n=(n=n+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,C=C+Math.imul(Q,be)|0,v=v+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0,C=C+Math.imul(_e,Ht)|0;var Tt=(I+(v=v+Math.imul(P,Re)|0)|0)+((8191&(n=(n=n+Math.imul(P,tt)|0)+Math.imul(H,Re)|0))<<13)|0;I=((C=C+Math.imul(H,tt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,v=Math.imul(W,xt),n=(n=Math.imul(W,Nt))+Math.imul(ee,xt)|0,C=Math.imul(ee,Nt),v=v+Math.imul(le,et)|0,n=(n=n+Math.imul(le,yt)|0)+Math.imul(Te,et)|0,C=C+Math.imul(Te,yt)|0,v=v+Math.imul(dt,Yt)|0,n=(n=n+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,C=C+Math.imul(Ie,Pe)|0,v=v+Math.imul(ve,ce)|0,n=(n=n+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,C=C+Math.imul(V,be)|0,v=v+Math.imul(we,mt)|0,n=(n=n+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,C=C+Math.imul(Q,Ht)|0,v=v+Math.imul(he,Re)|0,n=(n=n+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0,C=C+Math.imul(_e,tt)|0;var pe=(I+(v=v+Math.imul(P,Se)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ge)|0)+Math.imul(H,Se)|0))<<13)|0;I=((C=C+Math.imul(H,Ge)|0)+(n>>>13)|0)+(pe>>>26)|0,pe&=67108863,v=Math.imul(Ce,xt),n=(n=Math.imul(Ce,Nt))+Math.imul(Le,xt)|0,C=Math.imul(Le,Nt),v=v+Math.imul(W,et)|0,n=(n=n+Math.imul(W,yt)|0)+Math.imul(ee,et)|0,C=C+Math.imul(ee,yt)|0,v=v+Math.imul(le,Yt)|0,n=(n=n+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,C=C+Math.imul(Te,Pe)|0,v=v+Math.imul(dt,ce)|0,n=(n=n+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,C=C+Math.imul(Ie,be)|0,v=v+Math.imul(ve,mt)|0,n=(n=n+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,C=C+Math.imul(V,Ht)|0,v=v+Math.imul(we,Re)|0,n=(n=n+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,C=C+Math.imul(Q,tt)|0,v=v+Math.imul(he,Se)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0,C=C+Math.imul(_e,Ge)|0;var je=(I+(v=v+Math.imul(P,st)|0)|0)+((8191&(n=(n=n+Math.imul(P,bt)|0)+Math.imul(H,st)|0))<<13)|0;I=((C=C+Math.imul(H,bt)|0)+(n>>>13)|0)+(je>>>26)|0,je&=67108863,v=Math.imul(ht,xt),n=(n=Math.imul(ht,Nt))+Math.imul(It,xt)|0,C=Math.imul(It,Nt),v=v+Math.imul(Ce,et)|0,n=(n=n+Math.imul(Ce,yt)|0)+Math.imul(Le,et)|0,C=C+Math.imul(Le,yt)|0,v=v+Math.imul(W,Yt)|0,n=(n=n+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,C=C+Math.imul(ee,Pe)|0,v=v+Math.imul(le,ce)|0,n=(n=n+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,C=C+Math.imul(Te,be)|0,v=v+Math.imul(dt,mt)|0,n=(n=n+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,C=C+Math.imul(Ie,Ht)|0,v=v+Math.imul(ve,Re)|0,n=(n=n+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,C=C+Math.imul(V,tt)|0,v=v+Math.imul(we,Se)|0,n=(n=n+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,C=C+Math.imul(Q,Ge)|0,v=v+Math.imul(he,st)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(_e,st)|0,C=C+Math.imul(_e,bt)|0;var _t=(I+(v=v+Math.imul(P,qt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Xt)|0)+Math.imul(H,qt)|0))<<13)|0;I=((C=C+Math.imul(H,Xt)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,v=Math.imul(Wt,xt),n=(n=Math.imul(Wt,Nt))+Math.imul(Gt,xt)|0,C=Math.imul(Gt,Nt),v=v+Math.imul(ht,et)|0,n=(n=n+Math.imul(ht,yt)|0)+Math.imul(It,et)|0,C=C+Math.imul(It,yt)|0,v=v+Math.imul(Ce,Yt)|0,n=(n=n+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,C=C+Math.imul(Le,Pe)|0,v=v+Math.imul(W,ce)|0,n=(n=n+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,C=C+Math.imul(ee,be)|0,v=v+Math.imul(le,mt)|0,n=(n=n+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,C=C+Math.imul(Te,Ht)|0,v=v+Math.imul(dt,Re)|0,n=(n=n+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,C=C+Math.imul(Ie,tt)|0,v=v+Math.imul(ve,Se)|0,n=(n=n+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,C=C+Math.imul(V,Ge)|0,v=v+Math.imul(we,st)|0,n=(n=n+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,C=C+Math.imul(Q,bt)|0,v=v+Math.imul(he,qt)|0,n=(n=n+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0,C=C+Math.imul(_e,Xt)|0;var re=(I+(v=v+Math.imul(P,fi)|0)|0)+((8191&(n=(n=n+Math.imul(P,si)|0)+Math.imul(H,fi)|0))<<13)|0;I=((C=C+Math.imul(H,si)|0)+(n>>>13)|0)+(re>>>26)|0,re&=67108863,v=Math.imul(Wt,et),n=(n=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,C=Math.imul(Gt,yt),v=v+Math.imul(ht,Yt)|0,n=(n=n+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,C=C+Math.imul(It,Pe)|0,v=v+Math.imul(Ce,ce)|0,n=(n=n+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,C=C+Math.imul(Le,be)|0,v=v+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,C=C+Math.imul(ee,Ht)|0,v=v+Math.imul(le,Re)|0,n=(n=n+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,C=C+Math.imul(Te,tt)|0,v=v+Math.imul(dt,Se)|0,n=(n=n+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,C=C+Math.imul(Ie,Ge)|0,v=v+Math.imul(ve,st)|0,n=(n=n+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,C=C+Math.imul(V,bt)|0,v=v+Math.imul(we,qt)|0,n=(n=n+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,C=C+Math.imul(Q,Xt)|0;var qe=(I+(v=v+Math.imul(he,fi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;I=((C=C+Math.imul(_e,si)|0)+(n>>>13)|0)+(qe>>>26)|0,qe&=67108863,v=Math.imul(Wt,Yt),n=(n=Math.imul(Wt,Pe))+Math.imul(Gt,Yt)|0,C=Math.imul(Gt,Pe),v=v+Math.imul(ht,ce)|0,n=(n=n+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,C=C+Math.imul(It,be)|0,v=v+Math.imul(Ce,mt)|0,n=(n=n+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,C=C+Math.imul(Le,Ht)|0,v=v+Math.imul(W,Re)|0,n=(n=n+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,C=C+Math.imul(ee,tt)|0,v=v+Math.imul(le,Se)|0,n=(n=n+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,C=C+Math.imul(Te,Ge)|0,v=v+Math.imul(dt,st)|0,n=(n=n+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,C=C+Math.imul(Ie,bt)|0,v=v+Math.imul(ve,qt)|0,n=(n=n+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,C=C+Math.imul(V,Xt)|0;var Mt=(I+(v=v+Math.imul(we,fi)|0)|0)+((8191&(n=(n=n+Math.imul(we,si)|0)+Math.imul(Q,fi)|0))<<13)|0;I=((C=C+Math.imul(Q,si)|0)+(n>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul(Wt,ce),n=(n=Math.imul(Wt,be))+Math.imul(Gt,ce)|0,C=Math.imul(Gt,be),v=v+Math.imul(ht,mt)|0,n=(n=n+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,C=C+Math.imul(It,Ht)|0,v=v+Math.imul(Ce,Re)|0,n=(n=n+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,C=C+Math.imul(Le,tt)|0,v=v+Math.imul(W,Se)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,C=C+Math.imul(ee,Ge)|0,v=v+Math.imul(le,st)|0,n=(n=n+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,C=C+Math.imul(Te,bt)|0,v=v+Math.imul(dt,qt)|0,n=(n=n+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,C=C+Math.imul(Ie,Xt)|0;var zt=(I+(v=v+Math.imul(ve,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ve,si)|0)+Math.imul(V,fi)|0))<<13)|0;I=((C=C+Math.imul(V,si)|0)+(n>>>13)|0)+(zt>>>26)|0,zt&=67108863,v=Math.imul(Wt,mt),n=(n=Math.imul(Wt,Ht))+Math.imul(Gt,mt)|0,C=Math.imul(Gt,Ht),v=v+Math.imul(ht,Re)|0,n=(n=n+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,C=C+Math.imul(It,tt)|0,v=v+Math.imul(Ce,Se)|0,n=(n=n+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,C=C+Math.imul(Le,Ge)|0,v=v+Math.imul(W,st)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,C=C+Math.imul(ee,bt)|0,v=v+Math.imul(le,qt)|0,n=(n=n+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,C=C+Math.imul(Te,Xt)|0;var bi=(I+(v=v+Math.imul(dt,fi)|0)|0)+((8191&(n=(n=n+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0))<<13)|0;I=((C=C+Math.imul(Ie,si)|0)+(n>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Wt,Re),n=(n=Math.imul(Wt,tt))+Math.imul(Gt,Re)|0,C=Math.imul(Gt,tt),v=v+Math.imul(ht,Se)|0,n=(n=n+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,C=C+Math.imul(It,Ge)|0,v=v+Math.imul(Ce,st)|0,n=(n=n+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,C=C+Math.imul(Le,bt)|0,v=v+Math.imul(W,qt)|0,n=(n=n+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,C=C+Math.imul(ee,Xt)|0;var Ei=(I+(v=v+Math.imul(le,fi)|0)|0)+((8191&(n=(n=n+Math.imul(le,si)|0)+Math.imul(Te,fi)|0))<<13)|0;I=((C=C+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,v=Math.imul(Wt,Se),n=(n=Math.imul(Wt,Ge))+Math.imul(Gt,Se)|0,C=Math.imul(Gt,Ge),v=v+Math.imul(ht,st)|0,n=(n=n+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,C=C+Math.imul(It,bt)|0,v=v+Math.imul(Ce,qt)|0,n=(n=n+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,C=C+Math.imul(Le,Xt)|0;var Xi=(I+(v=v+Math.imul(W,fi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(ee,fi)|0))<<13)|0;I=((C=C+Math.imul(ee,si)|0)+(n>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,v=Math.imul(Wt,st),n=(n=Math.imul(Wt,bt))+Math.imul(Gt,st)|0,C=Math.imul(Gt,bt),v=v+Math.imul(ht,qt)|0,n=(n=n+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,C=C+Math.imul(It,Xt)|0;var Zi=(I+(v=v+Math.imul(Ce,fi)|0)|0)+((8191&(n=(n=n+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0))<<13)|0;I=((C=C+Math.imul(Le,si)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,v=Math.imul(Wt,qt),n=(n=Math.imul(Wt,Xt))+Math.imul(Gt,qt)|0,C=Math.imul(Gt,Xt);var sn=(I+(v=v+Math.imul(ht,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ht,si)|0)+Math.imul(It,fi)|0))<<13)|0;I=((C=C+Math.imul(It,si)|0)+(n>>>13)|0)+(sn>>>26)|0,sn&=67108863;var gn=(I+(v=Math.imul(Wt,fi))|0)+((8191&(n=(n=Math.imul(Wt,si))+Math.imul(Gt,fi)|0))<<13)|0;return I=((C=Math.imul(Gt,si))+(n>>>13)|0)+(gn>>>26)|0,gn&=67108863,E[0]=$i,E[1]=Bi,E[2]=zi,E[3]=Ui,E[4]=ze,E[5]=Tt,E[6]=pe,E[7]=je,E[8]=_t,E[9]=re,E[10]=qe,E[11]=Mt,E[12]=zt,E[13]=bi,E[14]=Ei,E[15]=Xi,E[16]=Zi,E[17]=sn,E[18]=gn,0!==I&&(E[19]=I,u.length++),u};function Z(y,i,r){return(new Y).mulp(y,i,r)}function Y(y,i){this.x=y,this.y=i}Math.imul||(S=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?S(this,i,r):c<63?k(this,i,r):c<1024?function U(y,i,r){r.negative=i.negative^y.negative,r.length=y.length+i.length;for(var u=0,c=0,_=0;_>>26)|0)>>>26,E&=67108863}r.words[_]=I,u=E,E=c}return 0!==u?r.words[_]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,_,E){for(var I=0;I>>=1)_++;return 1<<_+1+c},Y.prototype.conjugate=function(i,r,u){if(!(u<=1))for(var c=0;c>>=13),_>>>=13;for(E=2*r;E>=26,r+=c/67108864|0,r+=_>>>26,this.words[u]=67108863&_}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function L(y){for(var i=new Array(y.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var _,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var E=0;for(_=0;_>>26-r}E&&(this.words[_]=E,this.length++)}if(0!==u){for(_=this.length-1;_>=0;_--)this.words[_+u]=this.words[_];for(_=0;_=0),c=r?(r-r%26)/26:0;var _=i%26,E=Math.min((i-_)/26,this.length),I=67108863^67108863>>>_<<_,v=u;if(c-=E,c=Math.max(0,c),v){for(var n=0;nE)for(this.length-=E,n=0;n=0&&(0!==C||n>=c);n--){var B=0|this.words[n];this.words[n]=C<<26-_|B>>>_,C=B&I}return v&&0!==C&&(v.words[v.length++]=C),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(v/67108864|0),this.words[_+u]=67108863&E}for(;_>26,this.words[_+u]=67108863&E;if(0===I)return this.strip();for(f(-1===I),I=0,_=0;_>26,this.words[_]=67108863&E;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),_=i,E=0|_.words[_.length-1];0!=(u=26-this._countBits(E))&&(_=_.ushln(u),c.iushln(u),E=0|_.words[_.length-1]);var n,v=c.length-_.length;if("mod"!==r){(n=new a(null)).length=v+1,n.words=new Array(n.length);for(var C=0;C=0;P--){var H=67108864*(0|c.words[_.length+P])+(0|c.words[_.length+P-1]);for(H=Math.min(H/E|0,67108863),c._ishlnsubmul(_,H,P);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(_,1,P),c.isZero()||(c.negative^=1);n&&(n.words[P]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(E=this.neg().divmod(i,r),"mod"!==r&&(c=E.div.neg()),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.iadd(i)),{div:c,mod:_}):0===this.negative&&0!==i.negative?(E=this.divmod(i.neg(),r),"mod"!==r&&(c=E.div.neg()),{div:c,mod:E.mod}):0!=(this.negative&i.negative)?(E=this.neg().divmod(i.neg(),r),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.isub(i)),{div:E.div,mod:_}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,_,E},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),_=i.andln(1),E=u.cmp(c);return E<0||1===_&&0===E?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=new a(0),I=new a(1),v=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++v;for(var n=u.clone(),C=r.clone();!r.isZero();){for(var B=0,P=1;0==(r.words[0]&P)&&B<26;++B,P<<=1);if(B>0)for(r.iushrn(B);B-- >0;)(c.isOdd()||_.isOdd())&&(c.iadd(n),_.isub(C)),c.iushrn(1),_.iushrn(1);for(var H=0,q=1;0==(u.words[0]&q)&&H<26;++H,q<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(E.isOdd()||I.isOdd())&&(E.iadd(n),I.isub(C)),E.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(E),_.isub(I)):(u.isub(r),E.isub(c),I.isub(_))}return{a:E,b:I,gcd:u.iushln(v)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var B,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,v=1;0==(r.words[0]&v)&&I<26;++I,v<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(E),c.iushrn(1);for(var n=0,C=1;0==(u.words[0]&C)&&n<26;++n,C<<=1);if(n>0)for(u.iushrn(n);n-- >0;)_.isOdd()&&_.iadd(E),_.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(_)):(u.isub(r),_.isub(c))}return(B=0===r.cmpn(1)?c:_).cmpn(0)<0&&B.iadd(i),B},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var _=r.cmp(u);if(_<0){var E=r;r=u,u=E}else if(0===_||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[E]=I&=67108863}return 0!==_&&(this.words[E]=_,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],_=0|i.words[u];if(c!==_){c<_?r=-1:c>_&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new X(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ne={k256:null,p224:null,p192:null,p25519:null};function $(y,i){this.name=y,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function de(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function te(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ie(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function oe(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function X(y){if("string"==typeof y){var i=a._prime(y);this.m=i.p,this.prime=i}else f(y.gtn(1),"modulus must be greater than 1"),this.m=y,this.prime=null}function me(y){X.call(this,y),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},$.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},$.prototype.split=function(i,r){i.iushrn(this.n,0,r)},$.prototype.imulK=function(i){return i.imul(this.k)},M(de,$),de.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),_=0;_>>22,E=I}i.words[_-10]=E>>>=22,i.length-=0===E&&i.length>10?10:9},de.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=_,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ne[i])return ne[i];var r;if("k256"===i)r=new de;else if("p224"===i)r=new te;else if("p192"===i)r=new ie;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new oe}return ne[i]=r,r},X.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},X.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},X.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},X.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},X.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},X.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},X.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},X.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},X.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},X.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},X.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},X.prototype.isqr=function(i){return this.imul(i,i.clone())},X.prototype.sqr=function(i){return this.mul(i,i)},X.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),_=0;!c.isZero()&&0===c.andln(1);)_++,c.iushrn(1);f(!c.isZero());var E=new a(1).toRed(this),I=E.redNeg(),v=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,v).cmp(I);)n.redIAdd(I);for(var C=this.pow(n,c),B=this.pow(i,c.addn(1).iushrn(1)),P=this.pow(i,c),H=_;0!==P.cmp(E);){for(var q=P,he=0;0!==q.cmp(E);he++)q=q.redSqr();f(he=0;_--){for(var C=r.words[_],B=n-1;B>=0;B--){var P=C>>B&1;E!==c[0]&&(E=this.sqr(E)),0!==P||0!==I?(I<<=1,I|=P,(4==++v||0===_&&0===B)&&(E=this.mul(E,c[I]),v=0,I=0)):v=0}n=26}return E},X.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},X.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new me(i)},M(me,X),me.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},me.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},me.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},8419:Ve=>{"use strict";Ve.exports=function(p){for(var t=[],e=p.length,f=0;f=55296&&M<=56319&&e>f+1){var a=p.charCodeAt(f+1);a>=56320&&a<=57343&&(M=1024*(M-55296)+a-56320+65536,f+=1)}M<128?t.push(M):M<2048?(t.push(M>>6|192),t.push(63&M|128)):M<55296||M>=57344&&M<65536?(t.push(M>>12|224),t.push(M>>6&63|128),t.push(63&M|128)):M>=65536&&M<=1114111?(t.push(M>>18|240),t.push(M>>12&63|128),t.push(M>>6&63|128),t.push(63&M|128)):t.push(239,191,189)}return new Uint8Array(t).buffer}},9069:Ve=>{"use strict";var t,j="object"==typeof Reflect?Reflect:null,p=j&&"function"==typeof j.apply?j.apply:function($,de,te){return Function.prototype.apply.call($,de,te)};t=j&&"function"==typeof j.ownKeys?j.ownKeys:Object.getOwnPropertySymbols?function($){return Object.getOwnPropertyNames($).concat(Object.getOwnPropertySymbols($))}:function($){return Object.getOwnPropertyNames($)};var f=Number.isNaN||function($){return $!=$};function M(){M.init.call(this)}Ve.exports=M,Ve.exports.once=function U(ne,$){return new Promise(function(de,te){function ie(X){ne.removeListener($,oe),te(X)}function oe(){"function"==typeof ne.removeListener&&ne.removeListener("error",ie),de([].slice.call(arguments))}Y(ne,$,oe,{once:!0}),"error"!==$&&function Z(ne,$,de){"function"==typeof ne.on&&Y(ne,"error",$,de)}(ne,ie,{once:!0})})},M.EventEmitter=M,M.prototype._events=void 0,M.prototype._eventsCount=0,M.prototype._maxListeners=void 0;var a=10;function b(ne){if("function"!=typeof ne)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof ne)}function d(ne){return void 0===ne._maxListeners?M.defaultMaxListeners:ne._maxListeners}function N(ne,$,de,te){var ie,oe,X;if(b(de),void 0===(oe=ne._events)?(oe=ne._events=Object.create(null),ne._eventsCount=0):(void 0!==oe.newListener&&(ne.emit("newListener",$,de.listener?de.listener:de),oe=ne._events),X=oe[$]),void 0===X)X=oe[$]=de,++ne._eventsCount;else if("function"==typeof X?X=oe[$]=te?[de,X]:[X,de]:te?X.unshift(de):X.push(de),(ie=d(ne))>0&&X.length>ie&&!X.warned){X.warned=!0;var me=new Error("Possible EventEmitter memory leak detected. "+X.length+" "+String($)+" listeners added. Use emitter.setMaxListeners() to increase limit");me.name="MaxListenersExceededWarning",me.emitter=ne,me.type=$,me.count=X.length,function e(ne){console&&console.warn&&console.warn(ne)}(me)}return ne}function h(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function A(ne,$,de){var te={fired:!1,wrapFn:void 0,target:ne,type:$,listener:de},ie=h.bind(te);return ie.listener=de,te.wrapFn=ie,ie}function w(ne,$,de){var te=ne._events;if(void 0===te)return[];var ie=te[$];return void 0===ie?[]:"function"==typeof ie?de?[ie.listener||ie]:[ie]:de?function S(ne){for(var $=new Array(ne.length),de=0;de<$.length;++de)$[de]=ne[de].listener||ne[de];return $}(ie):L(ie,ie.length)}function D(ne){var $=this._events;if(void 0!==$){var de=$[ne];if("function"==typeof de)return 1;if(void 0!==de)return de.length}return 0}function L(ne,$){for(var de=new Array($),te=0;te<$;++te)de[te]=ne[te];return de}function Y(ne,$,de,te){if("function"==typeof ne.on)te.once?ne.once($,de):ne.on($,de);else{if("function"!=typeof ne.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof ne);ne.addEventListener($,function ie(oe){te.once&&ne.removeEventListener($,ie),de(oe)})}}Object.defineProperty(M,"defaultMaxListeners",{enumerable:!0,get:function(){return a},set:function(ne){if("number"!=typeof ne||ne<0||f(ne))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+ne+".");a=ne}}),M.init=function(){(void 0===this._events||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},M.prototype.setMaxListeners=function($){if("number"!=typeof $||$<0||f($))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+$+".");return this._maxListeners=$,this},M.prototype.getMaxListeners=function(){return d(this)},M.prototype.emit=function($){for(var de=[],te=1;te0&&(X=de[0]),X instanceof Error)throw X;var me=new Error("Unhandled error."+(X?" ("+X.message+")":""));throw me.context=X,me}var y=oe[$];if(void 0===y)return!1;if("function"==typeof y)p(y,this,de);else{var i=y.length,r=L(y,i);for(te=0;te=0;X--)if(te[X]===de||te[X].listener===de){me=te[X].listener,oe=X;break}if(oe<0)return this;0===oe?te.shift():function k(ne,$){for(;$+1=0;ie--)this.removeListener($,de[ie]);return this},M.prototype.listeners=function($){return w(this,$,!0)},M.prototype.rawListeners=function($){return w(this,$,!1)},M.listenerCount=function(ne,$){return"function"==typeof ne.listenerCount?ne.listenerCount($):D.call(ne,$)},M.prototype.listenerCount=D,M.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},347:(Ve,j,p)=>{var t=p(3502).Buffer,e=p(8095);Ve.exports=function f(M,a,b,d){if(t.isBuffer(M)||(M=t.from(M,"binary")),a&&(t.isBuffer(a)||(a=t.from(a,"binary")),8!==a.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var N=b/8,h=t.alloc(N),A=t.alloc(d||0),w=t.alloc(0);N>0||d>0;){var D=new e;D.update(w),D.update(M),a&&D.update(a),w=D.digest();var L=0;if(N>0){var k=h.length-N;L=Math.min(N,w.length),w.copy(h,k,0,L),N-=L}if(L0){var S=A.length-d,U=Math.min(d,w.length-L);w.copy(A,S,L,L+U),d-=U}}return w.fill(0),{key:h,iv:A}}},9650:(Ve,j,p)=>{"use strict";var t=p(8444).Buffer,e=p(5685).Transform;function a(b){e.call(this),this._block=t.allocUnsafe(b),this._blockSize=b,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}p(3894)(a,e),a.prototype._transform=function(b,d,N){var h=null;try{this.update(b,d)}catch(A){h=A}N(h)},a.prototype._flush=function(b){var d=null;try{this.push(this.digest())}catch(N){d=N}b(d)},a.prototype.update=function(b,d){if(function M(b,d){if(!t.isBuffer(b)&&"string"!=typeof b)throw new TypeError(d+" must be a string or a buffer")}(b,"Data"),this._finalized)throw new Error("Digest already called");t.isBuffer(b)||(b=t.from(b,d));for(var N=this._block,h=0;this._blockOffset+b.length-h>=this._blockSize;){for(var A=this._blockOffset;A0;++w)this._length[w]+=D,(D=this._length[w]/4294967296|0)>0&&(this._length[w]-=4294967296*D);return this},a.prototype._update=function(){throw new Error("_update is not implemented")},a.prototype.digest=function(b){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var d=this._digest();void 0!==b&&(d=d.toString(b)),this._block.fill(0),this._blockOffset=0;for(var N=0;N<4;++N)this._length[N]=0;return d},a.prototype._digest=function(){throw new Error("_digest is not implemented")},Ve.exports=a},8444:(Ve,j,p)=>{var t=p(3172),e=t.Buffer;function f(a,b){for(var d in a)b[d]=a[d]}function M(a,b,d){return e(a,b,d)}e.from&&e.alloc&&e.allocUnsafe&&e.allocUnsafeSlow?Ve.exports=t:(f(t,j),j.Buffer=M),M.prototype=Object.create(e.prototype),f(e,M),M.from=function(a,b,d){if("number"==typeof a)throw new TypeError("Argument must not be a number");return e(a,b,d)},M.alloc=function(a,b,d){if("number"!=typeof a)throw new TypeError("Argument must be a number");var N=e(a);return void 0!==b?"string"==typeof d?N.fill(b,d):N.fill(b):N.fill(0),N},M.allocUnsafe=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return e(a)},M.allocUnsafeSlow=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return t.SlowBuffer(a)}},7084:(Ve,j,p)=>{var t=j;t.utils=p(9299),t.common=p(3800),t.sha=p(4962),t.ripemd=p(9458),t.hmac=p(2194),t.sha1=t.sha.sha1,t.sha256=t.sha.sha256,t.sha224=t.sha.sha224,t.sha384=t.sha.sha384,t.sha512=t.sha.sha512,t.ripemd160=t.ripemd.ripemd160},3800:(Ve,j,p)=>{"use strict";var t=p(9299),e=p(2391);function f(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}j.BlockHash=f,f.prototype.update=function(a,b){if(a=t.toArray(a,b),this.pending=this.pending?this.pending.concat(a):a,this.pendingTotal+=a.length,this.pending.length>=this._delta8){var d=(a=this.pending).length%this._delta8;this.pending=a.slice(a.length-d,a.length),0===this.pending.length&&(this.pending=null),a=t.join32(a,0,a.length-d,this.endian);for(var N=0;N>>24&255,N[h++]=a>>>16&255,N[h++]=a>>>8&255,N[h++]=255&a}else for(N[h++]=255&a,N[h++]=a>>>8&255,N[h++]=a>>>16&255,N[h++]=a>>>24&255,N[h++]=0,N[h++]=0,N[h++]=0,N[h++]=0,A=8;A{"use strict";var t=p(9299),e=p(2391);function f(M,a,b){if(!(this instanceof f))return new f(M,a,b);this.Hash=M,this.blockSize=M.blockSize/8,this.outSize=M.outSize/8,this.inner=null,this.outer=null,this._init(t.toArray(a,b))}Ve.exports=f,f.prototype._init=function(a){a.length>this.blockSize&&(a=(new this.Hash).update(a).digest()),e(a.length<=this.blockSize);for(var b=a.length;b{"use strict";var t=p(9299),e=p(3800),f=t.rotl32,M=t.sum32,a=t.sum32_3,b=t.sum32_4,d=e.BlockHash;function N(){if(!(this instanceof N))return new N;d.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function h(U,Z,Y,ne){return U<=15?Z^Y^ne:U<=31?Z&Y|~Z&ne:U<=47?(Z|~Y)^ne:U<=63?Z&ne|Y&~ne:Z^(Y|~ne)}function w(U){return U<=15?1352829926:U<=31?1548603684:U<=47?1836072691:U<=63?2053994217:0}t.inherits(N,d),j.ripemd160=N,N.blockSize=512,N.outSize=160,N.hmacStrength=192,N.padLength=64,N.prototype._update=function(Z,Y){for(var ne=this.h[0],$=this.h[1],de=this.h[2],te=this.h[3],ie=this.h[4],oe=ne,X=$,me=de,y=te,i=ie,r=0;r<80;r++){var u=M(f(b(ne,h(r,$,de,te),Z[D[r]+Y],(U=r)<=15?0:U<=31?1518500249:U<=47?1859775393:U<=63?2400959708:2840853838),k[r]),ie);ne=ie,ie=te,te=f(de,10),de=$,$=u,u=M(f(b(oe,h(79-r,X,me,y),Z[L[r]+Y],w(r)),S[r]),i),oe=i,i=y,y=f(me,10),me=X,X=u}var U;u=a(this.h[1],de,y),this.h[1]=a(this.h[2],te,i),this.h[2]=a(this.h[3],ie,oe),this.h[3]=a(this.h[4],ne,X),this.h[4]=a(this.h[0],$,me),this.h[0]=u},N.prototype._digest=function(Z){return"hex"===Z?t.toHex32(this.h,"little"):t.split32(this.h,"little")};var D=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],L=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],k=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],S=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]},4962:(Ve,j,p)=>{"use strict";j.sha1=p(9007),j.sha224=p(55),j.sha256=p(9342),j.sha384=p(8634),j.sha512=p(39)},9007:(Ve,j,p)=>{"use strict";var t=p(9299),e=p(3800),f=p(3113),M=t.rotl32,a=t.sum32,b=t.sum32_5,d=f.ft_1,N=e.BlockHash,h=[1518500249,1859775393,2400959708,3395469782];function A(){if(!(this instanceof A))return new A;N.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}t.inherits(A,N),Ve.exports=A,A.blockSize=512,A.outSize=160,A.hmacStrength=80,A.padLength=64,A.prototype._update=function(D,L){for(var k=this.W,S=0;S<16;S++)k[S]=D[L+S];for(;S{"use strict";var t=p(9299),e=p(9342);function f(){if(!(this instanceof f))return new f;e.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}t.inherits(f,e),Ve.exports=f,f.blockSize=512,f.outSize=224,f.hmacStrength=192,f.padLength=64,f.prototype._digest=function(a){return"hex"===a?t.toHex32(this.h.slice(0,7),"big"):t.split32(this.h.slice(0,7),"big")}},9342:(Ve,j,p)=>{"use strict";var t=p(9299),e=p(3800),f=p(3113),M=p(2391),a=t.sum32,b=t.sum32_4,d=t.sum32_5,N=f.ch32,h=f.maj32,A=f.s0_256,w=f.s1_256,D=f.g0_256,L=f.g1_256,k=e.BlockHash,S=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function U(){if(!(this instanceof U))return new U;k.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=S,this.W=new Array(64)}t.inherits(U,k),Ve.exports=U,U.blockSize=512,U.outSize=256,U.hmacStrength=192,U.padLength=64,U.prototype._update=function(Y,ne){for(var $=this.W,de=0;de<16;de++)$[de]=Y[ne+de];for(;de<$.length;de++)$[de]=b(L($[de-2]),$[de-7],D($[de-15]),$[de-16]);var te=this.h[0],ie=this.h[1],oe=this.h[2],X=this.h[3],me=this.h[4],y=this.h[5],i=this.h[6],r=this.h[7];for(M(this.k.length===$.length),de=0;de<$.length;de++){var u=d(r,w(me),N(me,y,i),this.k[de],$[de]),c=a(A(te),h(te,ie,oe));r=i,i=y,y=me,me=a(X,u),X=oe,oe=ie,ie=te,te=a(u,c)}this.h[0]=a(this.h[0],te),this.h[1]=a(this.h[1],ie),this.h[2]=a(this.h[2],oe),this.h[3]=a(this.h[3],X),this.h[4]=a(this.h[4],me),this.h[5]=a(this.h[5],y),this.h[6]=a(this.h[6],i),this.h[7]=a(this.h[7],r)},U.prototype._digest=function(Y){return"hex"===Y?t.toHex32(this.h,"big"):t.split32(this.h,"big")}},8634:(Ve,j,p)=>{"use strict";var t=p(9299),e=p(39);function f(){if(!(this instanceof f))return new f;e.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}t.inherits(f,e),Ve.exports=f,f.blockSize=1024,f.outSize=384,f.hmacStrength=192,f.padLength=128,f.prototype._digest=function(a){return"hex"===a?t.toHex32(this.h.slice(0,12),"big"):t.split32(this.h.slice(0,12),"big")}},39:(Ve,j,p)=>{"use strict";var t=p(9299),e=p(3800),f=p(2391),M=t.rotr64_hi,a=t.rotr64_lo,b=t.shr64_hi,d=t.shr64_lo,N=t.sum64,h=t.sum64_hi,A=t.sum64_lo,w=t.sum64_4_hi,D=t.sum64_4_lo,L=t.sum64_5_hi,k=t.sum64_5_lo,S=e.BlockHash,U=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591];function Z(){if(!(this instanceof Z))return new Z;S.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=U,this.W=new Array(160)}function Y(u,c,_,E,I){var v=u&_^~u&I;return v<0&&(v+=4294967296),v}function ne(u,c,_,E,I,v){var n=c&E^~c&v;return n<0&&(n+=4294967296),n}function $(u,c,_,E,I){var v=u&_^u&I^_&I;return v<0&&(v+=4294967296),v}function de(u,c,_,E,I,v){var n=c&E^c&v^E&v;return n<0&&(n+=4294967296),n}function te(u,c){var v=M(u,c,28)^M(c,u,2)^M(c,u,7);return v<0&&(v+=4294967296),v}function ie(u,c){var v=a(u,c,28)^a(c,u,2)^a(c,u,7);return v<0&&(v+=4294967296),v}function oe(u,c){var v=M(u,c,14)^M(u,c,18)^M(c,u,9);return v<0&&(v+=4294967296),v}function X(u,c){var v=a(u,c,14)^a(u,c,18)^a(c,u,9);return v<0&&(v+=4294967296),v}function me(u,c){var v=M(u,c,1)^M(u,c,8)^b(u,c,7);return v<0&&(v+=4294967296),v}function y(u,c){var v=a(u,c,1)^a(u,c,8)^d(u,c,7);return v<0&&(v+=4294967296),v}function i(u,c){var v=M(u,c,19)^M(c,u,29)^b(u,c,6);return v<0&&(v+=4294967296),v}function r(u,c){var v=a(u,c,19)^a(c,u,29)^d(u,c,6);return v<0&&(v+=4294967296),v}t.inherits(Z,S),Ve.exports=Z,Z.blockSize=1024,Z.outSize=512,Z.hmacStrength=192,Z.padLength=128,Z.prototype._prepareBlock=function(c,_){for(var E=this.W,I=0;I<32;I++)E[I]=c[_+I];for(;I{"use strict";var e=p(9299).rotr32;function M(w,D,L){return w&D^~w&L}function a(w,D,L){return w&D^w&L^D&L}function b(w,D,L){return w^D^L}j.ft_1=function f(w,D,L,k){return 0===w?M(D,L,k):1===w||3===w?b(D,L,k):2===w?a(D,L,k):void 0},j.ch32=M,j.maj32=a,j.p32=b,j.s0_256=function d(w){return e(w,2)^e(w,13)^e(w,22)},j.s1_256=function N(w){return e(w,6)^e(w,11)^e(w,25)},j.g0_256=function h(w){return e(w,7)^e(w,18)^w>>>3},j.g1_256=function A(w){return e(w,17)^e(w,19)^w>>>10}},9299:(Ve,j,p)=>{"use strict";var t=p(2391),e=p(3894);function f(r,u){return!(55296!=(64512&r.charCodeAt(u))||u<0||u+1>=r.length)&&56320==(64512&r.charCodeAt(u+1))}function b(r){return(r>>>24|r>>>8&65280|r<<8&16711680|(255&r)<<24)>>>0}function N(r){return 1===r.length?"0"+r:r}function h(r){return 7===r.length?"0"+r:6===r.length?"00"+r:5===r.length?"000"+r:4===r.length?"0000"+r:3===r.length?"00000"+r:2===r.length?"000000"+r:1===r.length?"0000000"+r:r}j.inherits=e,j.toArray=function M(r,u){if(Array.isArray(r))return r.slice();if(!r)return[];var c=[];if("string"==typeof r)if(u){if("hex"===u)for((r=r.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(r="0"+r),E=0;E>6|192,c[_++]=63&I|128):f(r,E)?(I=65536+((1023&I)<<10)+(1023&r.charCodeAt(++E)),c[_++]=I>>18|240,c[_++]=I>>12&63|128,c[_++]=I>>6&63|128,c[_++]=63&I|128):(c[_++]=I>>12|224,c[_++]=I>>6&63|128,c[_++]=63&I|128)}else for(E=0;E>>0;return I},j.split32=function w(r,u){for(var c=new Array(4*r.length),_=0,E=0;_>>24,c[E+1]=I>>>16&255,c[E+2]=I>>>8&255,c[E+3]=255&I):(c[E+3]=I>>>24,c[E+2]=I>>>16&255,c[E+1]=I>>>8&255,c[E]=255&I)}return c},j.rotr32=function D(r,u){return r>>>u|r<<32-u},j.rotl32=function L(r,u){return r<>>32-u},j.sum32=function k(r,u){return r+u>>>0},j.sum32_3=function S(r,u,c){return r+u+c>>>0},j.sum32_4=function U(r,u,c,_){return r+u+c+_>>>0},j.sum32_5=function Z(r,u,c,_,E){return r+u+c+_+E>>>0},j.sum64=function Y(r,u,c,_){var v=_+r[u+1]>>>0;r[u]=(v<_?1:0)+c+r[u]>>>0,r[u+1]=v},j.sum64_hi=function ne(r,u,c,_){return(u+_>>>0>>0},j.sum64_lo=function $(r,u,c,_){return u+_>>>0},j.sum64_4_hi=function de(r,u,c,_,E,I,v,n){var C=0,B=u;return C+=(B=B+_>>>0)>>0)>>0)>>0},j.sum64_4_lo=function te(r,u,c,_,E,I,v,n){return u+_+I+n>>>0},j.sum64_5_hi=function ie(r,u,c,_,E,I,v,n,C,B){var P=0,H=u;return P+=(H=H+_>>>0)>>0)>>0)>>0)>>0},j.sum64_5_lo=function oe(r,u,c,_,E,I,v,n,C,B){return u+_+I+n+B>>>0},j.rotr64_hi=function X(r,u,c){return(u<<32-c|r>>>c)>>>0},j.rotr64_lo=function me(r,u,c){return(r<<32-c|u>>>c)>>>0},j.shr64_hi=function y(r,u,c){return r>>>c},j.shr64_lo=function i(r,u,c){return(r<<32-c|u>>>c)>>>0}},2438:(Ve,j,p)=>{"use strict";var t=p(7084),e=p(8195),f=p(2391);function M(a){if(!(this instanceof M))return new M(a);this.hash=a.hash,this.predResist=!!a.predResist,this.outLen=this.hash.outSize,this.minEntropy=a.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var b=e.toArray(a.entropy,a.entropyEnc||"hex"),d=e.toArray(a.nonce,a.nonceEnc||"hex"),N=e.toArray(a.pers,a.persEnc||"hex");f(b.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(b,d,N)}Ve.exports=M,M.prototype._init=function(b,d,N){var h=b.concat(d).concat(N);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var A=0;A=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(b.concat(N||[])),this._reseed=1},M.prototype.generate=function(b,d,N,h){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof d&&(h=N,N=d,d=null),N&&(N=e.toArray(N,h||"hex"),this._update(N));for(var A=[];A.length{j.read=function(p,t,e,f,M){var a,b,d=8*M-f-1,N=(1<>1,A=-7,w=e?M-1:0,D=e?-1:1,L=p[t+w];for(w+=D,a=L&(1<<-A)-1,L>>=-A,A+=d;A>0;a=256*a+p[t+w],w+=D,A-=8);for(b=a&(1<<-A)-1,a>>=-A,A+=f;A>0;b=256*b+p[t+w],w+=D,A-=8);if(0===a)a=1-h;else{if(a===N)return b?NaN:1/0*(L?-1:1);b+=Math.pow(2,f),a-=h}return(L?-1:1)*b*Math.pow(2,a-f)},j.write=function(p,t,e,f,M,a){var b,d,N,h=8*a-M-1,A=(1<>1,D=23===M?Math.pow(2,-24)-Math.pow(2,-77):0,L=f?0:a-1,k=f?1:-1,S=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(d=isNaN(t)?1:0,b=A):(b=Math.floor(Math.log(t)/Math.LN2),t*(N=Math.pow(2,-b))<1&&(b--,N*=2),(t+=b+w>=1?D/N:D*Math.pow(2,1-w))*N>=2&&(b++,N/=2),b+w>=A?(d=0,b=A):b+w>=1?(d=(t*N-1)*Math.pow(2,M),b+=w):(d=t*Math.pow(2,w-1)*Math.pow(2,M),b=0));M>=8;p[e+L]=255&d,L+=k,d/=256,M-=8);for(b=b<0;p[e+L]=255&b,L+=k,b/=256,h-=8);p[e+L-k]|=128*S}},3894:Ve=>{Ve.exports="function"==typeof Object.create?function(p,t){t&&(p.super_=t,p.prototype=Object.create(t.prototype,{constructor:{value:p,enumerable:!1,writable:!0,configurable:!0}}))}:function(p,t){if(t){p.super_=t;var e=function(){};e.prototype=t.prototype,p.prototype=new e,p.prototype.constructor=p}}},717:(Ve,j,p)=>{"use strict";var t=p(623);function e(f){return!0===t(f)&&"[object Object]"===Object.prototype.toString.call(f)}Ve.exports=function(M){var a,b;return!(!1===e(M)||(a=M.constructor,"function"!=typeof a)||(b=a.prototype,!1===e(b))||!1===b.hasOwnProperty("isPrototypeOf"))}},623:Ve=>{"use strict";Ve.exports=function(p){return null!=p&&"object"==typeof p&&!1===Array.isArray(p)}},2872:Ve=>{var j=Object.prototype.toString;function p(h){return"function"==typeof h.constructor?h.constructor.name:null}Ve.exports=function(A){if(void 0===A)return"undefined";if(null===A)return"null";var w=typeof A;if("boolean"===w)return"boolean";if("string"===w)return"string";if("number"===w)return"number";if("symbol"===w)return"symbol";if("function"===w)return function a(h,A){return"GeneratorFunction"===p(h)}(A)?"generatorfunction":"function";if(function t(h){return Array.isArray?Array.isArray(h):h instanceof Array}(A))return"array";if(function N(h){return!(!h.constructor||"function"!=typeof h.constructor.isBuffer)&&h.constructor.isBuffer(h)}(A))return"buffer";if(function d(h){try{if("number"==typeof h.length&&"function"==typeof h.callee)return!0}catch(A){if(-1!==A.message.indexOf("callee"))return!0}return!1}(A))return"arguments";if(function f(h){return h instanceof Date||"function"==typeof h.toDateString&&"function"==typeof h.getDate&&"function"==typeof h.setDate}(A))return"date";if(function e(h){return h instanceof Error||"string"==typeof h.message&&h.constructor&&"number"==typeof h.constructor.stackTraceLimit}(A))return"error";if(function M(h){return h instanceof RegExp||"string"==typeof h.flags&&"boolean"==typeof h.ignoreCase&&"boolean"==typeof h.multiline&&"boolean"==typeof h.global}(A))return"regexp";switch(p(A)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(function b(h){return"function"==typeof h.throw&&"function"==typeof h.return&&"function"==typeof h.next}(A))return"generator";switch(w=j.call(A)){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return w.slice(8,-1).toLowerCase().replace(/\s/g,"")}},8095:(Ve,j,p)=>{"use strict";var t=p(3894),e=p(9650),f=p(3502).Buffer,M=new Array(16);function a(){e.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function b(w,D){return w<>>32-D}function d(w,D,L,k,S,U,Z){return b(w+(D&L|~D&k)+S+U|0,Z)+D|0}function N(w,D,L,k,S,U,Z){return b(w+(D&k|L&~k)+S+U|0,Z)+D|0}function h(w,D,L,k,S,U,Z){return b(w+(D^L^k)+S+U|0,Z)+D|0}function A(w,D,L,k,S,U,Z){return b(w+(L^(D|~k))+S+U|0,Z)+D|0}t(a,e),a.prototype._update=function(){for(var w=M,D=0;D<16;++D)w[D]=this._block.readInt32LE(4*D);var L=this._a,k=this._b,S=this._c,U=this._d;L=d(L,k,S,U,w[0],3614090360,7),U=d(U,L,k,S,w[1],3905402710,12),S=d(S,U,L,k,w[2],606105819,17),k=d(k,S,U,L,w[3],3250441966,22),L=d(L,k,S,U,w[4],4118548399,7),U=d(U,L,k,S,w[5],1200080426,12),S=d(S,U,L,k,w[6],2821735955,17),k=d(k,S,U,L,w[7],4249261313,22),L=d(L,k,S,U,w[8],1770035416,7),U=d(U,L,k,S,w[9],2336552879,12),S=d(S,U,L,k,w[10],4294925233,17),k=d(k,S,U,L,w[11],2304563134,22),L=d(L,k,S,U,w[12],1804603682,7),U=d(U,L,k,S,w[13],4254626195,12),S=d(S,U,L,k,w[14],2792965006,17),L=N(L,k=d(k,S,U,L,w[15],1236535329,22),S,U,w[1],4129170786,5),U=N(U,L,k,S,w[6],3225465664,9),S=N(S,U,L,k,w[11],643717713,14),k=N(k,S,U,L,w[0],3921069994,20),L=N(L,k,S,U,w[5],3593408605,5),U=N(U,L,k,S,w[10],38016083,9),S=N(S,U,L,k,w[15],3634488961,14),k=N(k,S,U,L,w[4],3889429448,20),L=N(L,k,S,U,w[9],568446438,5),U=N(U,L,k,S,w[14],3275163606,9),S=N(S,U,L,k,w[3],4107603335,14),k=N(k,S,U,L,w[8],1163531501,20),L=N(L,k,S,U,w[13],2850285829,5),U=N(U,L,k,S,w[2],4243563512,9),S=N(S,U,L,k,w[7],1735328473,14),L=h(L,k=N(k,S,U,L,w[12],2368359562,20),S,U,w[5],4294588738,4),U=h(U,L,k,S,w[8],2272392833,11),S=h(S,U,L,k,w[11],1839030562,16),k=h(k,S,U,L,w[14],4259657740,23),L=h(L,k,S,U,w[1],2763975236,4),U=h(U,L,k,S,w[4],1272893353,11),S=h(S,U,L,k,w[7],4139469664,16),k=h(k,S,U,L,w[10],3200236656,23),L=h(L,k,S,U,w[13],681279174,4),U=h(U,L,k,S,w[0],3936430074,11),S=h(S,U,L,k,w[3],3572445317,16),k=h(k,S,U,L,w[6],76029189,23),L=h(L,k,S,U,w[9],3654602809,4),U=h(U,L,k,S,w[12],3873151461,11),S=h(S,U,L,k,w[15],530742520,16),L=A(L,k=h(k,S,U,L,w[2],3299628645,23),S,U,w[0],4096336452,6),U=A(U,L,k,S,w[7],1126891415,10),S=A(S,U,L,k,w[14],2878612391,15),k=A(k,S,U,L,w[5],4237533241,21),L=A(L,k,S,U,w[12],1700485571,6),U=A(U,L,k,S,w[3],2399980690,10),S=A(S,U,L,k,w[10],4293915773,15),k=A(k,S,U,L,w[1],2240044497,21),L=A(L,k,S,U,w[8],1873313359,6),U=A(U,L,k,S,w[15],4264355552,10),S=A(S,U,L,k,w[6],2734768916,15),k=A(k,S,U,L,w[13],1309151649,21),L=A(L,k,S,U,w[4],4149444226,6),U=A(U,L,k,S,w[11],3174756917,10),S=A(S,U,L,k,w[2],718787259,15),k=A(k,S,U,L,w[9],3951481745,21),this._a=this._a+L|0,this._b=this._b+k|0,this._c=this._c+S|0,this._d=this._d+U|0},a.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var w=f.allocUnsafe(16);return w.writeInt32LE(this._a,0),w.writeInt32LE(this._b,4),w.writeInt32LE(this._c,8),w.writeInt32LE(this._d,12),w},Ve.exports=a},7079:(Ve,j,p)=>{var t=p(1378),e=p(7950);function f(M){this.rand=M||new e.Rand}Ve.exports=f,f.create=function(a){return new f(a)},f.prototype._randbelow=function(a){var b=a.bitLength(),d=Math.ceil(b/8);do{var N=new t(this.rand.generate(d))}while(N.cmp(a)>=0);return N},f.prototype._randrange=function(a,b){var d=b.sub(a);return a.add(this._randbelow(d))},f.prototype.test=function(a,b,d){var N=a.bitLength(),h=t.mont(a),A=new t(1).toRed(h);b||(b=Math.max(1,N/48|0));for(var w=a.subn(1),D=0;!w.testn(D);D++);for(var L=a.shrn(D),k=w.toRed(h);b>0;b--){var U=this._randrange(new t(2),w);d&&d(U);var Z=U.toRed(h).redPow(L);if(0!==Z.cmp(A)&&0!==Z.cmp(k)){for(var Y=1;Y0;b--){var k=this._randrange(new t(2),A),S=a.gcd(k);if(0!==S.cmpn(1))return S;var U=k.toRed(N).redPow(D);if(0!==U.cmp(h)&&0!==U.cmp(L)){for(var Z=1;Z=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function N(y,i,r){var u=d(y,r);return r-1>=i&&(u|=d(y,r-1)<<4),u}function h(y,i,r,u){for(var c=0,_=Math.min(y.length,r),E=i;E<_;E++){var I=y.charCodeAt(E)-48;c*=u,c+=I>=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[_]|=(E=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);else if("le"===u)for(c=0,_=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=N(i,r,c)<<_,this.words[E]|=67108863&I,_>=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,_=1;_<=67108863;_*=r)c++;c--,_=_/r|0;for(var E=i.length-u,I=E%c,v=Math.min(E,E-I)+u,n=0,C=u;C1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var A=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(y,i,r){r.negative=i.negative^y.negative;var u=y.length+i.length|0;r.length=u,u=u-1|0;var c=0|y.words[0],_=0|i.words[0],E=c*_,v=E/67108864|0;r.words[0]=67108863&E;for(var n=1;n>>26,B=67108863&v,P=Math.min(n,i.length-1),H=Math.max(0,n-y.length+1);H<=P;H++)C+=(E=(c=0|y.words[n-H|0])*(_=0|i.words[H])+B)/67108864|0,B=67108863&E;r.words[n]=0|B,v=0|C}return 0!==v?r.words[n]=0|v:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,_=0,E=0;E>>24-c&16777215)||E!==this.length-1?A[6-v.length]+v+u:v+u,(c+=2)>=26&&(c-=26,E--)}for(0!==_&&(u=_.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],C=D[i];u="";var B=this.clone();for(B.negative=0;!B.isZero();){var P=B.modn(C).toString(i);u=(B=B.idivn(C)).isZero()?P+u:A[n-P.length]+P+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==b),this.toArrayLike(b,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),_=u||Math.max(1,c);f(c<=_,"byte array longer than desired length"),f(_>0,"Requested array length <= 0"),this.strip();var v,n,E="le"===r,I=new i(_),C=this.clone();if(E){for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[n]=v;for(;n<_;n++)I[n]=0}else{for(n=0;n<_-c;n++)I[n]=0;for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[_-n-1]=v}return I},a.prototype._countBits=Math.clz32?function(i){return 32-Math.clz32(i)}:function(i){var r=i,u=0;return r>=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var _=0,E=0;E>>26;for(;0!==_&&E>>26;if(this.length=u.length,0!==_)this.words[this.length]=_,this.length++;else if(u!==this)for(;Ei.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,_,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,_=i):(c=i,_=this);for(var E=0,I=0;I<_.length;I++)E=(r=(0|c.words[I])-(0|_.words[I])+E)>>26,this.words[I]=67108863&r;for(;0!==E&&I>26,this.words[I]=67108863&r;if(0===E&&I>>13,q=0|c[1],he=8191&q,_e=q>>>13,Ne=0|c[2],we=8191&Ne,Q=Ne>>>13,Ue=0|c[3],ve=8191&Ue,V=Ue>>>13,De=0|c[4],dt=8191&De,Ie=De>>>13,Ae=0|c[5],le=8191&Ae,Te=Ae>>>13,xe=0|c[6],W=8191&xe,ee=xe>>>13,ue=0|c[7],Ce=8191&ue,Le=ue>>>13,ut=0|c[8],ht=8191&ut,It=ut>>>13,ui=0|c[9],Wt=8191&ui,Gt=ui>>>13,hi=0|_[0],xt=8191&hi,Nt=hi>>>13,Ct=0|_[1],et=8191&Ct,yt=Ct>>>13,ei=0|_[2],Yt=8191&ei,Pe=ei>>>13,Oe=0|_[3],ce=8191&Oe,be=Oe>>>13,pt=0|_[4],mt=8191&pt,Ht=pt>>>13,it=0|_[5],Re=8191&it,tt=it>>>13,Xe=0|_[6],Se=8191&Xe,Ge=Xe>>>13,at=0|_[7],st=8191&at,bt=at>>>13,gi=0|_[8],qt=8191&gi,Xt=gi>>>13,qi=0|_[9],fi=8191&qi,si=qi>>>13;u.negative=i.negative^r.negative,u.length=19;var $i=(I+(v=Math.imul(P,xt))|0)+((8191&(n=(n=Math.imul(P,Nt))+Math.imul(H,xt)|0))<<13)|0;I=((C=Math.imul(H,Nt))+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,v=Math.imul(he,xt),n=(n=Math.imul(he,Nt))+Math.imul(_e,xt)|0,C=Math.imul(_e,Nt);var Bi=(I+(v=v+Math.imul(P,et)|0)|0)+((8191&(n=(n=n+Math.imul(P,yt)|0)+Math.imul(H,et)|0))<<13)|0;I=((C=C+Math.imul(H,yt)|0)+(n>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,v=Math.imul(we,xt),n=(n=Math.imul(we,Nt))+Math.imul(Q,xt)|0,C=Math.imul(Q,Nt),v=v+Math.imul(he,et)|0,n=(n=n+Math.imul(he,yt)|0)+Math.imul(_e,et)|0,C=C+Math.imul(_e,yt)|0;var zi=(I+(v=v+Math.imul(P,Yt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Pe)|0)+Math.imul(H,Yt)|0))<<13)|0;I=((C=C+Math.imul(H,Pe)|0)+(n>>>13)|0)+(zi>>>26)|0,zi&=67108863,v=Math.imul(ve,xt),n=(n=Math.imul(ve,Nt))+Math.imul(V,xt)|0,C=Math.imul(V,Nt),v=v+Math.imul(we,et)|0,n=(n=n+Math.imul(we,yt)|0)+Math.imul(Q,et)|0,C=C+Math.imul(Q,yt)|0,v=v+Math.imul(he,Yt)|0,n=(n=n+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0,C=C+Math.imul(_e,Pe)|0;var Ui=(I+(v=v+Math.imul(P,ce)|0)|0)+((8191&(n=(n=n+Math.imul(P,be)|0)+Math.imul(H,ce)|0))<<13)|0;I=((C=C+Math.imul(H,be)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(dt,xt),n=(n=Math.imul(dt,Nt))+Math.imul(Ie,xt)|0,C=Math.imul(Ie,Nt),v=v+Math.imul(ve,et)|0,n=(n=n+Math.imul(ve,yt)|0)+Math.imul(V,et)|0,C=C+Math.imul(V,yt)|0,v=v+Math.imul(we,Yt)|0,n=(n=n+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,C=C+Math.imul(Q,Pe)|0,v=v+Math.imul(he,ce)|0,n=(n=n+Math.imul(he,be)|0)+Math.imul(_e,ce)|0,C=C+Math.imul(_e,be)|0;var ze=(I+(v=v+Math.imul(P,mt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ht)|0)+Math.imul(H,mt)|0))<<13)|0;I=((C=C+Math.imul(H,Ht)|0)+(n>>>13)|0)+(ze>>>26)|0,ze&=67108863,v=Math.imul(le,xt),n=(n=Math.imul(le,Nt))+Math.imul(Te,xt)|0,C=Math.imul(Te,Nt),v=v+Math.imul(dt,et)|0,n=(n=n+Math.imul(dt,yt)|0)+Math.imul(Ie,et)|0,C=C+Math.imul(Ie,yt)|0,v=v+Math.imul(ve,Yt)|0,n=(n=n+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,C=C+Math.imul(V,Pe)|0,v=v+Math.imul(we,ce)|0,n=(n=n+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,C=C+Math.imul(Q,be)|0,v=v+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0,C=C+Math.imul(_e,Ht)|0;var Tt=(I+(v=v+Math.imul(P,Re)|0)|0)+((8191&(n=(n=n+Math.imul(P,tt)|0)+Math.imul(H,Re)|0))<<13)|0;I=((C=C+Math.imul(H,tt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,v=Math.imul(W,xt),n=(n=Math.imul(W,Nt))+Math.imul(ee,xt)|0,C=Math.imul(ee,Nt),v=v+Math.imul(le,et)|0,n=(n=n+Math.imul(le,yt)|0)+Math.imul(Te,et)|0,C=C+Math.imul(Te,yt)|0,v=v+Math.imul(dt,Yt)|0,n=(n=n+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,C=C+Math.imul(Ie,Pe)|0,v=v+Math.imul(ve,ce)|0,n=(n=n+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,C=C+Math.imul(V,be)|0,v=v+Math.imul(we,mt)|0,n=(n=n+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,C=C+Math.imul(Q,Ht)|0,v=v+Math.imul(he,Re)|0,n=(n=n+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0,C=C+Math.imul(_e,tt)|0;var pe=(I+(v=v+Math.imul(P,Se)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ge)|0)+Math.imul(H,Se)|0))<<13)|0;I=((C=C+Math.imul(H,Ge)|0)+(n>>>13)|0)+(pe>>>26)|0,pe&=67108863,v=Math.imul(Ce,xt),n=(n=Math.imul(Ce,Nt))+Math.imul(Le,xt)|0,C=Math.imul(Le,Nt),v=v+Math.imul(W,et)|0,n=(n=n+Math.imul(W,yt)|0)+Math.imul(ee,et)|0,C=C+Math.imul(ee,yt)|0,v=v+Math.imul(le,Yt)|0,n=(n=n+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,C=C+Math.imul(Te,Pe)|0,v=v+Math.imul(dt,ce)|0,n=(n=n+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,C=C+Math.imul(Ie,be)|0,v=v+Math.imul(ve,mt)|0,n=(n=n+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,C=C+Math.imul(V,Ht)|0,v=v+Math.imul(we,Re)|0,n=(n=n+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,C=C+Math.imul(Q,tt)|0,v=v+Math.imul(he,Se)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0,C=C+Math.imul(_e,Ge)|0;var je=(I+(v=v+Math.imul(P,st)|0)|0)+((8191&(n=(n=n+Math.imul(P,bt)|0)+Math.imul(H,st)|0))<<13)|0;I=((C=C+Math.imul(H,bt)|0)+(n>>>13)|0)+(je>>>26)|0,je&=67108863,v=Math.imul(ht,xt),n=(n=Math.imul(ht,Nt))+Math.imul(It,xt)|0,C=Math.imul(It,Nt),v=v+Math.imul(Ce,et)|0,n=(n=n+Math.imul(Ce,yt)|0)+Math.imul(Le,et)|0,C=C+Math.imul(Le,yt)|0,v=v+Math.imul(W,Yt)|0,n=(n=n+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,C=C+Math.imul(ee,Pe)|0,v=v+Math.imul(le,ce)|0,n=(n=n+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,C=C+Math.imul(Te,be)|0,v=v+Math.imul(dt,mt)|0,n=(n=n+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,C=C+Math.imul(Ie,Ht)|0,v=v+Math.imul(ve,Re)|0,n=(n=n+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,C=C+Math.imul(V,tt)|0,v=v+Math.imul(we,Se)|0,n=(n=n+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,C=C+Math.imul(Q,Ge)|0,v=v+Math.imul(he,st)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(_e,st)|0,C=C+Math.imul(_e,bt)|0;var _t=(I+(v=v+Math.imul(P,qt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Xt)|0)+Math.imul(H,qt)|0))<<13)|0;I=((C=C+Math.imul(H,Xt)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,v=Math.imul(Wt,xt),n=(n=Math.imul(Wt,Nt))+Math.imul(Gt,xt)|0,C=Math.imul(Gt,Nt),v=v+Math.imul(ht,et)|0,n=(n=n+Math.imul(ht,yt)|0)+Math.imul(It,et)|0,C=C+Math.imul(It,yt)|0,v=v+Math.imul(Ce,Yt)|0,n=(n=n+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,C=C+Math.imul(Le,Pe)|0,v=v+Math.imul(W,ce)|0,n=(n=n+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,C=C+Math.imul(ee,be)|0,v=v+Math.imul(le,mt)|0,n=(n=n+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,C=C+Math.imul(Te,Ht)|0,v=v+Math.imul(dt,Re)|0,n=(n=n+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,C=C+Math.imul(Ie,tt)|0,v=v+Math.imul(ve,Se)|0,n=(n=n+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,C=C+Math.imul(V,Ge)|0,v=v+Math.imul(we,st)|0,n=(n=n+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,C=C+Math.imul(Q,bt)|0,v=v+Math.imul(he,qt)|0,n=(n=n+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0,C=C+Math.imul(_e,Xt)|0;var re=(I+(v=v+Math.imul(P,fi)|0)|0)+((8191&(n=(n=n+Math.imul(P,si)|0)+Math.imul(H,fi)|0))<<13)|0;I=((C=C+Math.imul(H,si)|0)+(n>>>13)|0)+(re>>>26)|0,re&=67108863,v=Math.imul(Wt,et),n=(n=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,C=Math.imul(Gt,yt),v=v+Math.imul(ht,Yt)|0,n=(n=n+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,C=C+Math.imul(It,Pe)|0,v=v+Math.imul(Ce,ce)|0,n=(n=n+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,C=C+Math.imul(Le,be)|0,v=v+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,C=C+Math.imul(ee,Ht)|0,v=v+Math.imul(le,Re)|0,n=(n=n+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,C=C+Math.imul(Te,tt)|0,v=v+Math.imul(dt,Se)|0,n=(n=n+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,C=C+Math.imul(Ie,Ge)|0,v=v+Math.imul(ve,st)|0,n=(n=n+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,C=C+Math.imul(V,bt)|0,v=v+Math.imul(we,qt)|0,n=(n=n+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,C=C+Math.imul(Q,Xt)|0;var qe=(I+(v=v+Math.imul(he,fi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;I=((C=C+Math.imul(_e,si)|0)+(n>>>13)|0)+(qe>>>26)|0,qe&=67108863,v=Math.imul(Wt,Yt),n=(n=Math.imul(Wt,Pe))+Math.imul(Gt,Yt)|0,C=Math.imul(Gt,Pe),v=v+Math.imul(ht,ce)|0,n=(n=n+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,C=C+Math.imul(It,be)|0,v=v+Math.imul(Ce,mt)|0,n=(n=n+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,C=C+Math.imul(Le,Ht)|0,v=v+Math.imul(W,Re)|0,n=(n=n+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,C=C+Math.imul(ee,tt)|0,v=v+Math.imul(le,Se)|0,n=(n=n+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,C=C+Math.imul(Te,Ge)|0,v=v+Math.imul(dt,st)|0,n=(n=n+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,C=C+Math.imul(Ie,bt)|0,v=v+Math.imul(ve,qt)|0,n=(n=n+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,C=C+Math.imul(V,Xt)|0;var Mt=(I+(v=v+Math.imul(we,fi)|0)|0)+((8191&(n=(n=n+Math.imul(we,si)|0)+Math.imul(Q,fi)|0))<<13)|0;I=((C=C+Math.imul(Q,si)|0)+(n>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul(Wt,ce),n=(n=Math.imul(Wt,be))+Math.imul(Gt,ce)|0,C=Math.imul(Gt,be),v=v+Math.imul(ht,mt)|0,n=(n=n+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,C=C+Math.imul(It,Ht)|0,v=v+Math.imul(Ce,Re)|0,n=(n=n+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,C=C+Math.imul(Le,tt)|0,v=v+Math.imul(W,Se)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,C=C+Math.imul(ee,Ge)|0,v=v+Math.imul(le,st)|0,n=(n=n+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,C=C+Math.imul(Te,bt)|0,v=v+Math.imul(dt,qt)|0,n=(n=n+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,C=C+Math.imul(Ie,Xt)|0;var zt=(I+(v=v+Math.imul(ve,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ve,si)|0)+Math.imul(V,fi)|0))<<13)|0;I=((C=C+Math.imul(V,si)|0)+(n>>>13)|0)+(zt>>>26)|0,zt&=67108863,v=Math.imul(Wt,mt),n=(n=Math.imul(Wt,Ht))+Math.imul(Gt,mt)|0,C=Math.imul(Gt,Ht),v=v+Math.imul(ht,Re)|0,n=(n=n+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,C=C+Math.imul(It,tt)|0,v=v+Math.imul(Ce,Se)|0,n=(n=n+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,C=C+Math.imul(Le,Ge)|0,v=v+Math.imul(W,st)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,C=C+Math.imul(ee,bt)|0,v=v+Math.imul(le,qt)|0,n=(n=n+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,C=C+Math.imul(Te,Xt)|0;var bi=(I+(v=v+Math.imul(dt,fi)|0)|0)+((8191&(n=(n=n+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0))<<13)|0;I=((C=C+Math.imul(Ie,si)|0)+(n>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Wt,Re),n=(n=Math.imul(Wt,tt))+Math.imul(Gt,Re)|0,C=Math.imul(Gt,tt),v=v+Math.imul(ht,Se)|0,n=(n=n+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,C=C+Math.imul(It,Ge)|0,v=v+Math.imul(Ce,st)|0,n=(n=n+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,C=C+Math.imul(Le,bt)|0,v=v+Math.imul(W,qt)|0,n=(n=n+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,C=C+Math.imul(ee,Xt)|0;var Ei=(I+(v=v+Math.imul(le,fi)|0)|0)+((8191&(n=(n=n+Math.imul(le,si)|0)+Math.imul(Te,fi)|0))<<13)|0;I=((C=C+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,v=Math.imul(Wt,Se),n=(n=Math.imul(Wt,Ge))+Math.imul(Gt,Se)|0,C=Math.imul(Gt,Ge),v=v+Math.imul(ht,st)|0,n=(n=n+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,C=C+Math.imul(It,bt)|0,v=v+Math.imul(Ce,qt)|0,n=(n=n+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,C=C+Math.imul(Le,Xt)|0;var Xi=(I+(v=v+Math.imul(W,fi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(ee,fi)|0))<<13)|0;I=((C=C+Math.imul(ee,si)|0)+(n>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,v=Math.imul(Wt,st),n=(n=Math.imul(Wt,bt))+Math.imul(Gt,st)|0,C=Math.imul(Gt,bt),v=v+Math.imul(ht,qt)|0,n=(n=n+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,C=C+Math.imul(It,Xt)|0;var Zi=(I+(v=v+Math.imul(Ce,fi)|0)|0)+((8191&(n=(n=n+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0))<<13)|0;I=((C=C+Math.imul(Le,si)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,v=Math.imul(Wt,qt),n=(n=Math.imul(Wt,Xt))+Math.imul(Gt,qt)|0,C=Math.imul(Gt,Xt);var sn=(I+(v=v+Math.imul(ht,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ht,si)|0)+Math.imul(It,fi)|0))<<13)|0;I=((C=C+Math.imul(It,si)|0)+(n>>>13)|0)+(sn>>>26)|0,sn&=67108863;var gn=(I+(v=Math.imul(Wt,fi))|0)+((8191&(n=(n=Math.imul(Wt,si))+Math.imul(Gt,fi)|0))<<13)|0;return I=((C=Math.imul(Gt,si))+(n>>>13)|0)+(gn>>>26)|0,gn&=67108863,E[0]=$i,E[1]=Bi,E[2]=zi,E[3]=Ui,E[4]=ze,E[5]=Tt,E[6]=pe,E[7]=je,E[8]=_t,E[9]=re,E[10]=qe,E[11]=Mt,E[12]=zt,E[13]=bi,E[14]=Ei,E[15]=Xi,E[16]=Zi,E[17]=sn,E[18]=gn,0!==I&&(E[19]=I,u.length++),u};function Z(y,i,r){return(new Y).mulp(y,i,r)}function Y(y,i){this.x=y,this.y=i}Math.imul||(S=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?S(this,i,r):c<63?k(this,i,r):c<1024?function U(y,i,r){r.negative=i.negative^y.negative,r.length=y.length+i.length;for(var u=0,c=0,_=0;_>>26)|0)>>>26,E&=67108863}r.words[_]=I,u=E,E=c}return 0!==u?r.words[_]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,_,E){for(var I=0;I>>=1)_++;return 1<<_+1+c},Y.prototype.conjugate=function(i,r,u){if(!(u<=1))for(var c=0;c>>=13),_>>>=13;for(E=2*r;E>=26,r+=c/67108864|0,r+=_>>>26,this.words[u]=67108863&_}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function L(y){for(var i=new Array(y.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var _,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var E=0;for(_=0;_>>26-r}E&&(this.words[_]=E,this.length++)}if(0!==u){for(_=this.length-1;_>=0;_--)this.words[_+u]=this.words[_];for(_=0;_=0),c=r?(r-r%26)/26:0;var _=i%26,E=Math.min((i-_)/26,this.length),I=67108863^67108863>>>_<<_,v=u;if(c-=E,c=Math.max(0,c),v){for(var n=0;nE)for(this.length-=E,n=0;n=0&&(0!==C||n>=c);n--){var B=0|this.words[n];this.words[n]=C<<26-_|B>>>_,C=B&I}return v&&0!==C&&(v.words[v.length++]=C),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(v/67108864|0),this.words[_+u]=67108863&E}for(;_>26,this.words[_+u]=67108863&E;if(0===I)return this.strip();for(f(-1===I),I=0,_=0;_>26,this.words[_]=67108863&E;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),_=i,E=0|_.words[_.length-1];0!=(u=26-this._countBits(E))&&(_=_.ushln(u),c.iushln(u),E=0|_.words[_.length-1]);var n,v=c.length-_.length;if("mod"!==r){(n=new a(null)).length=v+1,n.words=new Array(n.length);for(var C=0;C=0;P--){var H=67108864*(0|c.words[_.length+P])+(0|c.words[_.length+P-1]);for(H=Math.min(H/E|0,67108863),c._ishlnsubmul(_,H,P);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(_,1,P),c.isZero()||(c.negative^=1);n&&(n.words[P]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(E=this.neg().divmod(i,r),"mod"!==r&&(c=E.div.neg()),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.iadd(i)),{div:c,mod:_}):0===this.negative&&0!==i.negative?(E=this.divmod(i.neg(),r),"mod"!==r&&(c=E.div.neg()),{div:c,mod:E.mod}):0!=(this.negative&i.negative)?(E=this.neg().divmod(i.neg(),r),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.isub(i)),{div:E.div,mod:_}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,_,E},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),_=i.andln(1),E=u.cmp(c);return E<0||1===_&&0===E?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=new a(0),I=new a(1),v=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++v;for(var n=u.clone(),C=r.clone();!r.isZero();){for(var B=0,P=1;0==(r.words[0]&P)&&B<26;++B,P<<=1);if(B>0)for(r.iushrn(B);B-- >0;)(c.isOdd()||_.isOdd())&&(c.iadd(n),_.isub(C)),c.iushrn(1),_.iushrn(1);for(var H=0,q=1;0==(u.words[0]&q)&&H<26;++H,q<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(E.isOdd()||I.isOdd())&&(E.iadd(n),I.isub(C)),E.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(E),_.isub(I)):(u.isub(r),E.isub(c),I.isub(_))}return{a:E,b:I,gcd:u.iushln(v)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var B,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,v=1;0==(r.words[0]&v)&&I<26;++I,v<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(E),c.iushrn(1);for(var n=0,C=1;0==(u.words[0]&C)&&n<26;++n,C<<=1);if(n>0)for(u.iushrn(n);n-- >0;)_.isOdd()&&_.iadd(E),_.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(_)):(u.isub(r),_.isub(c))}return(B=0===r.cmpn(1)?c:_).cmpn(0)<0&&B.iadd(i),B},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var _=r.cmp(u);if(_<0){var E=r;r=u,u=E}else if(0===_||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[E]=I&=67108863}return 0!==_&&(this.words[E]=_,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],_=0|i.words[u];if(c!==_){c<_?r=-1:c>_&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new X(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ne={k256:null,p224:null,p192:null,p25519:null};function $(y,i){this.name=y,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function de(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function te(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ie(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function oe(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function X(y){if("string"==typeof y){var i=a._prime(y);this.m=i.p,this.prime=i}else f(y.gtn(1),"modulus must be greater than 1"),this.m=y,this.prime=null}function me(y){X.call(this,y),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},$.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},$.prototype.split=function(i,r){i.iushrn(this.n,0,r)},$.prototype.imulK=function(i){return i.imul(this.k)},M(de,$),de.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),_=0;_>>22,E=I}i.words[_-10]=E>>>=22,i.length-=0===E&&i.length>10?10:9},de.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=_,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ne[i])return ne[i];var r;if("k256"===i)r=new de;else if("p224"===i)r=new te;else if("p192"===i)r=new ie;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new oe}return ne[i]=r,r},X.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},X.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},X.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},X.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},X.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},X.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},X.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},X.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},X.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},X.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},X.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},X.prototype.isqr=function(i){return this.imul(i,i.clone())},X.prototype.sqr=function(i){return this.mul(i,i)},X.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),_=0;!c.isZero()&&0===c.andln(1);)_++,c.iushrn(1);f(!c.isZero());var E=new a(1).toRed(this),I=E.redNeg(),v=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,v).cmp(I);)n.redIAdd(I);for(var C=this.pow(n,c),B=this.pow(i,c.addn(1).iushrn(1)),P=this.pow(i,c),H=_;0!==P.cmp(E);){for(var q=P,he=0;0!==q.cmp(E);he++)q=q.redSqr();f(he=0;_--){for(var C=r.words[_],B=n-1;B>=0;B--){var P=C>>B&1;E!==c[0]&&(E=this.sqr(E)),0!==P||0!==I?(I<<=1,I|=P,(4==++v||0===_&&0===B)&&(E=this.mul(E,c[I]),v=0,I=0)):v=0}n=26}return E},X.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},X.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new me(i)},M(me,X),me.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},me.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},me.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},2391:Ve=>{function j(p,t){if(!p)throw new Error(t||"Assertion failed")}Ve.exports=j,j.equal=function(t,e,f){if(t!=e)throw new Error(f||"Assertion failed: "+t+" != "+e)}},8195:(Ve,j)=>{"use strict";var p=j;function e(M){return 1===M.length?"0"+M:M}function f(M){for(var a="",b=0;b>8,A=255&N;h?b.push(h,A):b.push(A)}return b},p.zero2=e,p.toHex=f,p.encode=function(a,b){return"hex"===b?f(a):a}},5768:(Ve,j,p)=>{"use strict";Object.defineProperty(j,"__esModule",{value:!0});var t=p(842);Object.keys(t).forEach(function(e){"default"!==e&&Object.defineProperty(j,e,{enumerable:!0,get:function(){return t[e]}})})},2999:(Ve,j,p)=>{"use strict";var t=p(7977);j.certificate=p(2390);var e=t.define("RSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("modulus").int(),this.key("publicExponent").int(),this.key("privateExponent").int(),this.key("prime1").int(),this.key("prime2").int(),this.key("exponent1").int(),this.key("exponent2").int(),this.key("coefficient").int())});j.RSAPrivateKey=e;var f=t.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});j.RSAPublicKey=f;var M=t.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(a),this.key("subjectPublicKey").bitstr())});j.PublicKey=M;var a=t.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("none").null_().optional(),this.key("curve").objid().optional(),this.key("params").seq().obj(this.key("p").int(),this.key("q").int(),this.key("g").int()).optional())}),b=t.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(a),this.key("subjectPrivateKey").octstr())});j.PrivateKey=b;var d=t.define("EncryptedPrivateKeyInfo",function(){this.seq().obj(this.key("algorithm").seq().obj(this.key("id").objid(),this.key("decrypt").seq().obj(this.key("kde").seq().obj(this.key("id").objid(),this.key("kdeparams").seq().obj(this.key("salt").octstr(),this.key("iters").int())),this.key("cipher").seq().obj(this.key("algo").objid(),this.key("iv").octstr()))),this.key("subjectPrivateKey").octstr())});j.EncryptedPrivateKey=d;var N=t.define("DSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("p").int(),this.key("q").int(),this.key("g").int(),this.key("pub_key").int(),this.key("priv_key").int())});j.DSAPrivateKey=N,j.DSAparam=t.define("DSAparam",function(){this.int()});var h=t.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(A),this.key("publicKey").optional().explicit(1).bitstr())});j.ECPrivateKey=h;var A=t.define("ECParameters",function(){this.choice({namedCurve:this.objid()})});j.signature=t.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},2390:(Ve,j,p)=>{"use strict";var t=p(7977),e=t.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),f=t.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),M=t.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),a=t.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(M),this.key("subjectPublicKey").bitstr())}),b=t.define("RelativeDistinguishedName",function(){this.setof(f)}),d=t.define("RDNSequence",function(){this.seqof(b)}),N=t.define("Name",function(){this.choice({rdnSequence:this.use(d)})}),h=t.define("Validity",function(){this.seq().obj(this.key("notBefore").use(e),this.key("notAfter").use(e))}),A=t.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),w=t.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(M),this.key("issuer").use(N),this.key("validity").use(h),this.key("subject").use(N),this.key("subjectPublicKeyInfo").use(a),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(A).optional())}),D=t.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(w),this.key("signatureAlgorithm").use(M),this.key("signatureValue").bitstr())});Ve.exports=D},5269:(Ve,j,p)=>{var t=/Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m,e=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,f=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,M=p(347),a=p(4330),b=p(3502).Buffer;Ve.exports=function(d,N){var w,h=d.toString(),A=h.match(t);if(A){var L="aes"+A[1],k=b.from(A[2],"hex"),S=b.from(A[3].replace(/[\r\n]/g,""),"base64"),U=M(N,k.slice(0,8),parseInt(A[1],10)).key,Z=[],Y=a.createDecipheriv(L,U,k);Z.push(Y.update(S)),Z.push(Y.final()),w=b.concat(Z)}else{var D=h.match(f);w=b.from(D[2].replace(/[\r\n]/g,""),"base64")}return{tag:h.match(e)[1],data:w}}},2772:(Ve,j,p)=>{var t=p(2999),e=p(2562),f=p(5269),M=p(4330),a=p(9357),b=p(3502).Buffer;function d(h){var A;"object"==typeof h&&!b.isBuffer(h)&&(A=h.passphrase,h=h.key),"string"==typeof h&&(h=b.from(h));var k,S,w=f(h,A),D=w.tag,L=w.data;switch(D){case"CERTIFICATE":S=t.certificate.decode(L,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(S||(S=t.PublicKey.decode(L,"der")),k=S.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return t.RSAPublicKey.decode(S.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return S.subjectPrivateKey=S.subjectPublicKey,{type:"ec",data:S};case"1.2.840.10040.4.1":return S.algorithm.params.pub_key=t.DSAparam.decode(S.subjectPublicKey.data,"der"),{type:"dsa",data:S.algorithm.params};default:throw new Error("unknown key id "+k)}case"ENCRYPTED PRIVATE KEY":L=function N(h,A){var w=h.algorithm.decrypt.kde.kdeparams.salt,D=parseInt(h.algorithm.decrypt.kde.kdeparams.iters.toString(),10),L=e[h.algorithm.decrypt.cipher.algo.join(".")],k=h.algorithm.decrypt.cipher.iv,S=h.subjectPrivateKey,U=parseInt(L.split("-")[1],10)/8,Z=a.pbkdf2Sync(A,w,D,U,"sha1"),Y=M.createDecipheriv(L,Z,k),ne=[];return ne.push(Y.update(S)),ne.push(Y.final()),b.concat(ne)}(L=t.EncryptedPrivateKey.decode(L,"der"),A);case"PRIVATE KEY":switch(k=(S=t.PrivateKey.decode(L,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return t.RSAPrivateKey.decode(S.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:S.algorithm.curve,privateKey:t.ECPrivateKey.decode(S.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return S.algorithm.params.priv_key=t.DSAparam.decode(S.subjectPrivateKey,"der"),{type:"dsa",params:S.algorithm.params};default:throw new Error("unknown key id "+k)}case"RSA PUBLIC KEY":return t.RSAPublicKey.decode(L,"der");case"RSA PRIVATE KEY":return t.RSAPrivateKey.decode(L,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:t.DSAPrivateKey.decode(L,"der")};case"EC PRIVATE KEY":return{curve:(L=t.ECPrivateKey.decode(L,"der")).parameters.value,privateKey:L.privateKey};default:throw new Error("unknown key type "+D)}}Ve.exports=d,d.signature=t.signature},9357:(Ve,j,p)=>{j.pbkdf2=p(415),j.pbkdf2Sync=p(7472)},415:(Ve,j,p)=>{var b,w,t=p(3502).Buffer,e=p(2697),f=p(8867),M=p(7472),a=p(4566),d=global.crypto&&global.crypto.subtle,N={sha:"SHA-1","sha-1":"SHA-1",sha1:"SHA-1",sha256:"SHA-256","sha-256":"SHA-256",sha384:"SHA-384","sha-384":"SHA-384","sha-512":"SHA-512",sha512:"SHA-512"},h=[];function D(){return w||(w=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function L(S,U,Z,Y,ne){return d.importKey("raw",S,{name:"PBKDF2"},!1,["deriveBits"]).then(function($){return d.deriveBits({name:"PBKDF2",salt:U,iterations:Z,hash:{name:ne}},$,Y<<3)}).then(function($){return t.from($)})}Ve.exports=function(S,U,Z,Y,ne,$){"function"==typeof ne&&($=ne,ne=void 0);var de=N[(ne=ne||"sha1").toLowerCase()];if(de&&"function"==typeof global.Promise){if(e(Z,Y),S=a(S,f,"Password"),U=a(U,f,"Salt"),"function"!=typeof $)throw new Error("No callback provided to pbkdf2");!function k(S,U){S.then(function(Z){D()(function(){U(null,Z)})},function(Z){D()(function(){U(Z)})})}(function A(S){if(global.process&&!global.process.browser||!d||!d.importKey||!d.deriveBits)return Promise.resolve(!1);if(void 0!==h[S])return h[S];var U=L(b=b||t.alloc(8),b,10,128,S).then(function(){return!0}).catch(function(){return!1});return h[S]=U,U}(de).then(function(te){return te?L(S,U,Z,Y,de):M(S,U,Z,Y,ne)}),$)}else D()(function(){var te;try{te=M(S,U,Z,Y,ne)}catch(ie){return $(ie)}$(null,te)})}},8867:Ve=>{var j;j=global.process&&global.process.browser?"utf-8":global.process&&global.process.version?parseInt(process.version.split(".")[0].slice(1),10)>=6?"utf-8":"binary":"utf-8",Ve.exports=j},2697:Ve=>{var j=Math.pow(2,30)-1;Ve.exports=function(p,t){if("number"!=typeof p)throw new TypeError("Iterations not a number");if(p<0)throw new TypeError("Bad iterations");if("number"!=typeof t)throw new TypeError("Key length not a number");if(t<0||t>j||t!=t)throw new TypeError("Bad key length")}},7472:(Ve,j,p)=>{var t=p(5640),e=p(5634),f=p(5244),M=p(3502).Buffer,a=p(2697),b=p(8867),d=p(4566),N=M.alloc(128),h={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function A(L,k,S){var U=function w(L){return"rmd160"===L||"ripemd160"===L?function S(U){return(new e).update(U).digest()}:"md5"===L?t:function k(U){return f(L).update(U).digest()}}(L),Z="sha512"===L||"sha384"===L?128:64;k.length>Z?k=U(k):k.length{var t=p(3502).Buffer;Ve.exports=function(e,f,M){if(t.isBuffer(e))return e;if("string"==typeof e)return t.from(e,f);if(ArrayBuffer.isView(e))return t.from(e.buffer);throw new TypeError(M+" must be a string, a Buffer, a typed array or a DataView")}},3701:(Ve,j,p)=>{j.publicEncrypt=p(6562),j.privateDecrypt=p(6705),j.privateEncrypt=function(e,f){return j.publicEncrypt(e,f,!0)},j.publicDecrypt=function(e,f){return j.privateDecrypt(e,f,!0)}},6945:(Ve,j,p)=>{var t=p(6386),e=p(3502).Buffer;function f(M){var a=e.allocUnsafe(4);return a.writeUInt32BE(M,0),a}Ve.exports=function(M,a){for(var N,b=e.alloc(0),d=0;b.length=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function N(y,i,r){var u=d(y,r);return r-1>=i&&(u|=d(y,r-1)<<4),u}function h(y,i,r,u){for(var c=0,_=Math.min(y.length,r),E=i;E<_;E++){var I=y.charCodeAt(E)-48;c*=u,c+=I>=49?I-49+10:I>=17?I-17+10:I}return c}a.isBN=function(i){return i instanceof a||null!==i&&"object"==typeof i&&i.constructor.wordSize===a.wordSize&&Array.isArray(i.words)},a.max=function(i,r){return i.cmp(r)>0?i:r},a.min=function(i,r){return i.cmp(r)<0?i:r},a.prototype._init=function(i,r,u){if("number"==typeof i)return this._initNumber(i,r,u);if("object"==typeof i)return this._initArray(i,r,u);"hex"===r&&(r=16),f(r===(0|r)&&r>=2&&r<=36);var c=0;"-"===(i=i.toString().replace(/\s+/g,""))[0]&&(c++,this.negative=1),c=0;c-=3)this.words[_]|=(E=i[c]|i[c-1]<<8|i[c-2]<<16)<>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);else if("le"===u)for(c=0,_=0;c>>26-I&67108863,(I+=24)>=26&&(I-=26,_++);return this.strip()},a.prototype._parseHex=function(i,r,u){this.length=Math.ceil((i.length-r)/6),this.words=new Array(this.length);for(var c=0;c=r;c-=2)I=N(i,r,c)<<_,this.words[E]|=67108863&I,_>=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;else for(c=(i.length-r)%2==0?r+1:r;c=18?(_-=18,this.words[E+=1]|=I>>>26):_+=8;this.strip()},a.prototype._parseBase=function(i,r,u){this.words=[0],this.length=1;for(var c=0,_=1;_<=67108863;_*=r)c++;c--,_=_/r|0;for(var E=i.length-u,I=E%c,v=Math.min(E,E-I)+u,n=0,C=u;C1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var A=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],w=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],D=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function k(y,i,r){r.negative=i.negative^y.negative;var u=y.length+i.length|0;r.length=u,u=u-1|0;var c=0|y.words[0],_=0|i.words[0],E=c*_,v=E/67108864|0;r.words[0]=67108863&E;for(var n=1;n>>26,B=67108863&v,P=Math.min(n,i.length-1),H=Math.max(0,n-y.length+1);H<=P;H++)C+=(E=(c=0|y.words[n-H|0])*(_=0|i.words[H])+B)/67108864|0,B=67108863&E;r.words[n]=0|B,v=0|C}return 0!==v?r.words[n]=0|v:r.length--,r.strip()}a.prototype.toString=function(i,r){var u;if(r=0|r||1,16===(i=i||10)||"hex"===i){u="";for(var c=0,_=0,E=0;E>>24-c&16777215)||E!==this.length-1?A[6-v.length]+v+u:v+u,(c+=2)>=26&&(c-=26,E--)}for(0!==_&&(u=_.toString(16)+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}if(i===(0|i)&&i>=2&&i<=36){var n=w[i],C=D[i];u="";var B=this.clone();for(B.negative=0;!B.isZero();){var P=B.modn(C).toString(i);u=(B=B.idivn(C)).isZero()?P+u:A[n-P.length]+P+u}for(this.isZero()&&(u="0"+u);u.length%r!=0;)u="0"+u;return 0!==this.negative&&(u="-"+u),u}f(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var i=this.words[0];return 2===this.length?i+=67108864*this.words[1]:3===this.length&&1===this.words[2]?i+=4503599627370496+67108864*this.words[1]:this.length>2&&f(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-i:i},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(i,r){return f(void 0!==b),this.toArrayLike(b,i,r)},a.prototype.toArray=function(i,r){return this.toArrayLike(Array,i,r)},a.prototype.toArrayLike=function(i,r,u){var c=this.byteLength(),_=u||Math.max(1,c);f(c<=_,"byte array longer than desired length"),f(_>0,"Requested array length <= 0"),this.strip();var v,n,E="le"===r,I=new i(_),C=this.clone();if(E){for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[n]=v;for(;n<_;n++)I[n]=0}else{for(n=0;n<_-c;n++)I[n]=0;for(n=0;!C.isZero();n++)v=C.andln(255),C.iushrn(8),I[_-n-1]=v}return I},a.prototype._countBits=Math.clz32?function(i){return 32-Math.clz32(i)}:function(i){var r=i,u=0;return r>=4096&&(u+=13,r>>>=13),r>=64&&(u+=7,r>>>=7),r>=8&&(u+=4,r>>>=4),r>=2&&(u+=2,r>>>=2),u+r},a.prototype._zeroBits=function(i){if(0===i)return 26;var r=i,u=0;return 0==(8191&r)&&(u+=13,r>>>=13),0==(127&r)&&(u+=7,r>>>=7),0==(15&r)&&(u+=4,r>>>=4),0==(3&r)&&(u+=2,r>>>=2),0==(1&r)&&u++,u},a.prototype.bitLength=function(){var r=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+r},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var i=0,r=0;ri.length?this.clone().ior(i):i.clone().ior(this)},a.prototype.uor=function(i){return this.length>i.length?this.clone().iuor(i):i.clone().iuor(this)},a.prototype.iuand=function(i){var r;r=this.length>i.length?i:this;for(var u=0;ui.length?this.clone().iand(i):i.clone().iand(this)},a.prototype.uand=function(i){return this.length>i.length?this.clone().iuand(i):i.clone().iuand(this)},a.prototype.iuxor=function(i){var r,u;this.length>i.length?(r=this,u=i):(r=i,u=this);for(var c=0;ci.length?this.clone().ixor(i):i.clone().ixor(this)},a.prototype.uxor=function(i){return this.length>i.length?this.clone().iuxor(i):i.clone().iuxor(this)},a.prototype.inotn=function(i){f("number"==typeof i&&i>=0);var r=0|Math.ceil(i/26),u=i%26;this._expand(r),u>0&&r--;for(var c=0;c0&&(this.words[c]=~this.words[c]&67108863>>26-u),this.strip()},a.prototype.notn=function(i){return this.clone().inotn(i)},a.prototype.setn=function(i,r){f("number"==typeof i&&i>=0);var u=i/26|0,c=i%26;return this._expand(u+1),this.words[u]=r?this.words[u]|1<i.length?(u=this,c=i):(u=i,c=this);for(var _=0,E=0;E>>26;for(;0!==_&&E>>26;if(this.length=u.length,0!==_)this.words[this.length]=_,this.length++;else if(u!==this)for(;Ei.length?this.clone().iadd(i):i.clone().iadd(this)},a.prototype.isub=function(i){if(0!==i.negative){i.negative=0;var r=this.iadd(i);return i.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(i),this.negative=1,this._normSign();var c,_,u=this.cmp(i);if(0===u)return this.negative=0,this.length=1,this.words[0]=0,this;u>0?(c=this,_=i):(c=i,_=this);for(var E=0,I=0;I<_.length;I++)E=(r=(0|c.words[I])-(0|_.words[I])+E)>>26,this.words[I]=67108863&r;for(;0!==E&&I>26,this.words[I]=67108863&r;if(0===E&&I>>13,q=0|c[1],he=8191&q,_e=q>>>13,Ne=0|c[2],we=8191&Ne,Q=Ne>>>13,Ue=0|c[3],ve=8191&Ue,V=Ue>>>13,De=0|c[4],dt=8191&De,Ie=De>>>13,Ae=0|c[5],le=8191&Ae,Te=Ae>>>13,xe=0|c[6],W=8191&xe,ee=xe>>>13,ue=0|c[7],Ce=8191&ue,Le=ue>>>13,ut=0|c[8],ht=8191&ut,It=ut>>>13,ui=0|c[9],Wt=8191&ui,Gt=ui>>>13,hi=0|_[0],xt=8191&hi,Nt=hi>>>13,Ct=0|_[1],et=8191&Ct,yt=Ct>>>13,ei=0|_[2],Yt=8191&ei,Pe=ei>>>13,Oe=0|_[3],ce=8191&Oe,be=Oe>>>13,pt=0|_[4],mt=8191&pt,Ht=pt>>>13,it=0|_[5],Re=8191&it,tt=it>>>13,Xe=0|_[6],Se=8191&Xe,Ge=Xe>>>13,at=0|_[7],st=8191&at,bt=at>>>13,gi=0|_[8],qt=8191&gi,Xt=gi>>>13,qi=0|_[9],fi=8191&qi,si=qi>>>13;u.negative=i.negative^r.negative,u.length=19;var $i=(I+(v=Math.imul(P,xt))|0)+((8191&(n=(n=Math.imul(P,Nt))+Math.imul(H,xt)|0))<<13)|0;I=((C=Math.imul(H,Nt))+(n>>>13)|0)+($i>>>26)|0,$i&=67108863,v=Math.imul(he,xt),n=(n=Math.imul(he,Nt))+Math.imul(_e,xt)|0,C=Math.imul(_e,Nt);var Bi=(I+(v=v+Math.imul(P,et)|0)|0)+((8191&(n=(n=n+Math.imul(P,yt)|0)+Math.imul(H,et)|0))<<13)|0;I=((C=C+Math.imul(H,yt)|0)+(n>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,v=Math.imul(we,xt),n=(n=Math.imul(we,Nt))+Math.imul(Q,xt)|0,C=Math.imul(Q,Nt),v=v+Math.imul(he,et)|0,n=(n=n+Math.imul(he,yt)|0)+Math.imul(_e,et)|0,C=C+Math.imul(_e,yt)|0;var zi=(I+(v=v+Math.imul(P,Yt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Pe)|0)+Math.imul(H,Yt)|0))<<13)|0;I=((C=C+Math.imul(H,Pe)|0)+(n>>>13)|0)+(zi>>>26)|0,zi&=67108863,v=Math.imul(ve,xt),n=(n=Math.imul(ve,Nt))+Math.imul(V,xt)|0,C=Math.imul(V,Nt),v=v+Math.imul(we,et)|0,n=(n=n+Math.imul(we,yt)|0)+Math.imul(Q,et)|0,C=C+Math.imul(Q,yt)|0,v=v+Math.imul(he,Yt)|0,n=(n=n+Math.imul(he,Pe)|0)+Math.imul(_e,Yt)|0,C=C+Math.imul(_e,Pe)|0;var Ui=(I+(v=v+Math.imul(P,ce)|0)|0)+((8191&(n=(n=n+Math.imul(P,be)|0)+Math.imul(H,ce)|0))<<13)|0;I=((C=C+Math.imul(H,be)|0)+(n>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(dt,xt),n=(n=Math.imul(dt,Nt))+Math.imul(Ie,xt)|0,C=Math.imul(Ie,Nt),v=v+Math.imul(ve,et)|0,n=(n=n+Math.imul(ve,yt)|0)+Math.imul(V,et)|0,C=C+Math.imul(V,yt)|0,v=v+Math.imul(we,Yt)|0,n=(n=n+Math.imul(we,Pe)|0)+Math.imul(Q,Yt)|0,C=C+Math.imul(Q,Pe)|0,v=v+Math.imul(he,ce)|0,n=(n=n+Math.imul(he,be)|0)+Math.imul(_e,ce)|0,C=C+Math.imul(_e,be)|0;var ze=(I+(v=v+Math.imul(P,mt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ht)|0)+Math.imul(H,mt)|0))<<13)|0;I=((C=C+Math.imul(H,Ht)|0)+(n>>>13)|0)+(ze>>>26)|0,ze&=67108863,v=Math.imul(le,xt),n=(n=Math.imul(le,Nt))+Math.imul(Te,xt)|0,C=Math.imul(Te,Nt),v=v+Math.imul(dt,et)|0,n=(n=n+Math.imul(dt,yt)|0)+Math.imul(Ie,et)|0,C=C+Math.imul(Ie,yt)|0,v=v+Math.imul(ve,Yt)|0,n=(n=n+Math.imul(ve,Pe)|0)+Math.imul(V,Yt)|0,C=C+Math.imul(V,Pe)|0,v=v+Math.imul(we,ce)|0,n=(n=n+Math.imul(we,be)|0)+Math.imul(Q,ce)|0,C=C+Math.imul(Q,be)|0,v=v+Math.imul(he,mt)|0,n=(n=n+Math.imul(he,Ht)|0)+Math.imul(_e,mt)|0,C=C+Math.imul(_e,Ht)|0;var Tt=(I+(v=v+Math.imul(P,Re)|0)|0)+((8191&(n=(n=n+Math.imul(P,tt)|0)+Math.imul(H,Re)|0))<<13)|0;I=((C=C+Math.imul(H,tt)|0)+(n>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,v=Math.imul(W,xt),n=(n=Math.imul(W,Nt))+Math.imul(ee,xt)|0,C=Math.imul(ee,Nt),v=v+Math.imul(le,et)|0,n=(n=n+Math.imul(le,yt)|0)+Math.imul(Te,et)|0,C=C+Math.imul(Te,yt)|0,v=v+Math.imul(dt,Yt)|0,n=(n=n+Math.imul(dt,Pe)|0)+Math.imul(Ie,Yt)|0,C=C+Math.imul(Ie,Pe)|0,v=v+Math.imul(ve,ce)|0,n=(n=n+Math.imul(ve,be)|0)+Math.imul(V,ce)|0,C=C+Math.imul(V,be)|0,v=v+Math.imul(we,mt)|0,n=(n=n+Math.imul(we,Ht)|0)+Math.imul(Q,mt)|0,C=C+Math.imul(Q,Ht)|0,v=v+Math.imul(he,Re)|0,n=(n=n+Math.imul(he,tt)|0)+Math.imul(_e,Re)|0,C=C+Math.imul(_e,tt)|0;var pe=(I+(v=v+Math.imul(P,Se)|0)|0)+((8191&(n=(n=n+Math.imul(P,Ge)|0)+Math.imul(H,Se)|0))<<13)|0;I=((C=C+Math.imul(H,Ge)|0)+(n>>>13)|0)+(pe>>>26)|0,pe&=67108863,v=Math.imul(Ce,xt),n=(n=Math.imul(Ce,Nt))+Math.imul(Le,xt)|0,C=Math.imul(Le,Nt),v=v+Math.imul(W,et)|0,n=(n=n+Math.imul(W,yt)|0)+Math.imul(ee,et)|0,C=C+Math.imul(ee,yt)|0,v=v+Math.imul(le,Yt)|0,n=(n=n+Math.imul(le,Pe)|0)+Math.imul(Te,Yt)|0,C=C+Math.imul(Te,Pe)|0,v=v+Math.imul(dt,ce)|0,n=(n=n+Math.imul(dt,be)|0)+Math.imul(Ie,ce)|0,C=C+Math.imul(Ie,be)|0,v=v+Math.imul(ve,mt)|0,n=(n=n+Math.imul(ve,Ht)|0)+Math.imul(V,mt)|0,C=C+Math.imul(V,Ht)|0,v=v+Math.imul(we,Re)|0,n=(n=n+Math.imul(we,tt)|0)+Math.imul(Q,Re)|0,C=C+Math.imul(Q,tt)|0,v=v+Math.imul(he,Se)|0,n=(n=n+Math.imul(he,Ge)|0)+Math.imul(_e,Se)|0,C=C+Math.imul(_e,Ge)|0;var je=(I+(v=v+Math.imul(P,st)|0)|0)+((8191&(n=(n=n+Math.imul(P,bt)|0)+Math.imul(H,st)|0))<<13)|0;I=((C=C+Math.imul(H,bt)|0)+(n>>>13)|0)+(je>>>26)|0,je&=67108863,v=Math.imul(ht,xt),n=(n=Math.imul(ht,Nt))+Math.imul(It,xt)|0,C=Math.imul(It,Nt),v=v+Math.imul(Ce,et)|0,n=(n=n+Math.imul(Ce,yt)|0)+Math.imul(Le,et)|0,C=C+Math.imul(Le,yt)|0,v=v+Math.imul(W,Yt)|0,n=(n=n+Math.imul(W,Pe)|0)+Math.imul(ee,Yt)|0,C=C+Math.imul(ee,Pe)|0,v=v+Math.imul(le,ce)|0,n=(n=n+Math.imul(le,be)|0)+Math.imul(Te,ce)|0,C=C+Math.imul(Te,be)|0,v=v+Math.imul(dt,mt)|0,n=(n=n+Math.imul(dt,Ht)|0)+Math.imul(Ie,mt)|0,C=C+Math.imul(Ie,Ht)|0,v=v+Math.imul(ve,Re)|0,n=(n=n+Math.imul(ve,tt)|0)+Math.imul(V,Re)|0,C=C+Math.imul(V,tt)|0,v=v+Math.imul(we,Se)|0,n=(n=n+Math.imul(we,Ge)|0)+Math.imul(Q,Se)|0,C=C+Math.imul(Q,Ge)|0,v=v+Math.imul(he,st)|0,n=(n=n+Math.imul(he,bt)|0)+Math.imul(_e,st)|0,C=C+Math.imul(_e,bt)|0;var _t=(I+(v=v+Math.imul(P,qt)|0)|0)+((8191&(n=(n=n+Math.imul(P,Xt)|0)+Math.imul(H,qt)|0))<<13)|0;I=((C=C+Math.imul(H,Xt)|0)+(n>>>13)|0)+(_t>>>26)|0,_t&=67108863,v=Math.imul(Wt,xt),n=(n=Math.imul(Wt,Nt))+Math.imul(Gt,xt)|0,C=Math.imul(Gt,Nt),v=v+Math.imul(ht,et)|0,n=(n=n+Math.imul(ht,yt)|0)+Math.imul(It,et)|0,C=C+Math.imul(It,yt)|0,v=v+Math.imul(Ce,Yt)|0,n=(n=n+Math.imul(Ce,Pe)|0)+Math.imul(Le,Yt)|0,C=C+Math.imul(Le,Pe)|0,v=v+Math.imul(W,ce)|0,n=(n=n+Math.imul(W,be)|0)+Math.imul(ee,ce)|0,C=C+Math.imul(ee,be)|0,v=v+Math.imul(le,mt)|0,n=(n=n+Math.imul(le,Ht)|0)+Math.imul(Te,mt)|0,C=C+Math.imul(Te,Ht)|0,v=v+Math.imul(dt,Re)|0,n=(n=n+Math.imul(dt,tt)|0)+Math.imul(Ie,Re)|0,C=C+Math.imul(Ie,tt)|0,v=v+Math.imul(ve,Se)|0,n=(n=n+Math.imul(ve,Ge)|0)+Math.imul(V,Se)|0,C=C+Math.imul(V,Ge)|0,v=v+Math.imul(we,st)|0,n=(n=n+Math.imul(we,bt)|0)+Math.imul(Q,st)|0,C=C+Math.imul(Q,bt)|0,v=v+Math.imul(he,qt)|0,n=(n=n+Math.imul(he,Xt)|0)+Math.imul(_e,qt)|0,C=C+Math.imul(_e,Xt)|0;var re=(I+(v=v+Math.imul(P,fi)|0)|0)+((8191&(n=(n=n+Math.imul(P,si)|0)+Math.imul(H,fi)|0))<<13)|0;I=((C=C+Math.imul(H,si)|0)+(n>>>13)|0)+(re>>>26)|0,re&=67108863,v=Math.imul(Wt,et),n=(n=Math.imul(Wt,yt))+Math.imul(Gt,et)|0,C=Math.imul(Gt,yt),v=v+Math.imul(ht,Yt)|0,n=(n=n+Math.imul(ht,Pe)|0)+Math.imul(It,Yt)|0,C=C+Math.imul(It,Pe)|0,v=v+Math.imul(Ce,ce)|0,n=(n=n+Math.imul(Ce,be)|0)+Math.imul(Le,ce)|0,C=C+Math.imul(Le,be)|0,v=v+Math.imul(W,mt)|0,n=(n=n+Math.imul(W,Ht)|0)+Math.imul(ee,mt)|0,C=C+Math.imul(ee,Ht)|0,v=v+Math.imul(le,Re)|0,n=(n=n+Math.imul(le,tt)|0)+Math.imul(Te,Re)|0,C=C+Math.imul(Te,tt)|0,v=v+Math.imul(dt,Se)|0,n=(n=n+Math.imul(dt,Ge)|0)+Math.imul(Ie,Se)|0,C=C+Math.imul(Ie,Ge)|0,v=v+Math.imul(ve,st)|0,n=(n=n+Math.imul(ve,bt)|0)+Math.imul(V,st)|0,C=C+Math.imul(V,bt)|0,v=v+Math.imul(we,qt)|0,n=(n=n+Math.imul(we,Xt)|0)+Math.imul(Q,qt)|0,C=C+Math.imul(Q,Xt)|0;var qe=(I+(v=v+Math.imul(he,fi)|0)|0)+((8191&(n=(n=n+Math.imul(he,si)|0)+Math.imul(_e,fi)|0))<<13)|0;I=((C=C+Math.imul(_e,si)|0)+(n>>>13)|0)+(qe>>>26)|0,qe&=67108863,v=Math.imul(Wt,Yt),n=(n=Math.imul(Wt,Pe))+Math.imul(Gt,Yt)|0,C=Math.imul(Gt,Pe),v=v+Math.imul(ht,ce)|0,n=(n=n+Math.imul(ht,be)|0)+Math.imul(It,ce)|0,C=C+Math.imul(It,be)|0,v=v+Math.imul(Ce,mt)|0,n=(n=n+Math.imul(Ce,Ht)|0)+Math.imul(Le,mt)|0,C=C+Math.imul(Le,Ht)|0,v=v+Math.imul(W,Re)|0,n=(n=n+Math.imul(W,tt)|0)+Math.imul(ee,Re)|0,C=C+Math.imul(ee,tt)|0,v=v+Math.imul(le,Se)|0,n=(n=n+Math.imul(le,Ge)|0)+Math.imul(Te,Se)|0,C=C+Math.imul(Te,Ge)|0,v=v+Math.imul(dt,st)|0,n=(n=n+Math.imul(dt,bt)|0)+Math.imul(Ie,st)|0,C=C+Math.imul(Ie,bt)|0,v=v+Math.imul(ve,qt)|0,n=(n=n+Math.imul(ve,Xt)|0)+Math.imul(V,qt)|0,C=C+Math.imul(V,Xt)|0;var Mt=(I+(v=v+Math.imul(we,fi)|0)|0)+((8191&(n=(n=n+Math.imul(we,si)|0)+Math.imul(Q,fi)|0))<<13)|0;I=((C=C+Math.imul(Q,si)|0)+(n>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul(Wt,ce),n=(n=Math.imul(Wt,be))+Math.imul(Gt,ce)|0,C=Math.imul(Gt,be),v=v+Math.imul(ht,mt)|0,n=(n=n+Math.imul(ht,Ht)|0)+Math.imul(It,mt)|0,C=C+Math.imul(It,Ht)|0,v=v+Math.imul(Ce,Re)|0,n=(n=n+Math.imul(Ce,tt)|0)+Math.imul(Le,Re)|0,C=C+Math.imul(Le,tt)|0,v=v+Math.imul(W,Se)|0,n=(n=n+Math.imul(W,Ge)|0)+Math.imul(ee,Se)|0,C=C+Math.imul(ee,Ge)|0,v=v+Math.imul(le,st)|0,n=(n=n+Math.imul(le,bt)|0)+Math.imul(Te,st)|0,C=C+Math.imul(Te,bt)|0,v=v+Math.imul(dt,qt)|0,n=(n=n+Math.imul(dt,Xt)|0)+Math.imul(Ie,qt)|0,C=C+Math.imul(Ie,Xt)|0;var zt=(I+(v=v+Math.imul(ve,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ve,si)|0)+Math.imul(V,fi)|0))<<13)|0;I=((C=C+Math.imul(V,si)|0)+(n>>>13)|0)+(zt>>>26)|0,zt&=67108863,v=Math.imul(Wt,mt),n=(n=Math.imul(Wt,Ht))+Math.imul(Gt,mt)|0,C=Math.imul(Gt,Ht),v=v+Math.imul(ht,Re)|0,n=(n=n+Math.imul(ht,tt)|0)+Math.imul(It,Re)|0,C=C+Math.imul(It,tt)|0,v=v+Math.imul(Ce,Se)|0,n=(n=n+Math.imul(Ce,Ge)|0)+Math.imul(Le,Se)|0,C=C+Math.imul(Le,Ge)|0,v=v+Math.imul(W,st)|0,n=(n=n+Math.imul(W,bt)|0)+Math.imul(ee,st)|0,C=C+Math.imul(ee,bt)|0,v=v+Math.imul(le,qt)|0,n=(n=n+Math.imul(le,Xt)|0)+Math.imul(Te,qt)|0,C=C+Math.imul(Te,Xt)|0;var bi=(I+(v=v+Math.imul(dt,fi)|0)|0)+((8191&(n=(n=n+Math.imul(dt,si)|0)+Math.imul(Ie,fi)|0))<<13)|0;I=((C=C+Math.imul(Ie,si)|0)+(n>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Wt,Re),n=(n=Math.imul(Wt,tt))+Math.imul(Gt,Re)|0,C=Math.imul(Gt,tt),v=v+Math.imul(ht,Se)|0,n=(n=n+Math.imul(ht,Ge)|0)+Math.imul(It,Se)|0,C=C+Math.imul(It,Ge)|0,v=v+Math.imul(Ce,st)|0,n=(n=n+Math.imul(Ce,bt)|0)+Math.imul(Le,st)|0,C=C+Math.imul(Le,bt)|0,v=v+Math.imul(W,qt)|0,n=(n=n+Math.imul(W,Xt)|0)+Math.imul(ee,qt)|0,C=C+Math.imul(ee,Xt)|0;var Ei=(I+(v=v+Math.imul(le,fi)|0)|0)+((8191&(n=(n=n+Math.imul(le,si)|0)+Math.imul(Te,fi)|0))<<13)|0;I=((C=C+Math.imul(Te,si)|0)+(n>>>13)|0)+(Ei>>>26)|0,Ei&=67108863,v=Math.imul(Wt,Se),n=(n=Math.imul(Wt,Ge))+Math.imul(Gt,Se)|0,C=Math.imul(Gt,Ge),v=v+Math.imul(ht,st)|0,n=(n=n+Math.imul(ht,bt)|0)+Math.imul(It,st)|0,C=C+Math.imul(It,bt)|0,v=v+Math.imul(Ce,qt)|0,n=(n=n+Math.imul(Ce,Xt)|0)+Math.imul(Le,qt)|0,C=C+Math.imul(Le,Xt)|0;var Xi=(I+(v=v+Math.imul(W,fi)|0)|0)+((8191&(n=(n=n+Math.imul(W,si)|0)+Math.imul(ee,fi)|0))<<13)|0;I=((C=C+Math.imul(ee,si)|0)+(n>>>13)|0)+(Xi>>>26)|0,Xi&=67108863,v=Math.imul(Wt,st),n=(n=Math.imul(Wt,bt))+Math.imul(Gt,st)|0,C=Math.imul(Gt,bt),v=v+Math.imul(ht,qt)|0,n=(n=n+Math.imul(ht,Xt)|0)+Math.imul(It,qt)|0,C=C+Math.imul(It,Xt)|0;var Zi=(I+(v=v+Math.imul(Ce,fi)|0)|0)+((8191&(n=(n=n+Math.imul(Ce,si)|0)+Math.imul(Le,fi)|0))<<13)|0;I=((C=C+Math.imul(Le,si)|0)+(n>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,v=Math.imul(Wt,qt),n=(n=Math.imul(Wt,Xt))+Math.imul(Gt,qt)|0,C=Math.imul(Gt,Xt);var sn=(I+(v=v+Math.imul(ht,fi)|0)|0)+((8191&(n=(n=n+Math.imul(ht,si)|0)+Math.imul(It,fi)|0))<<13)|0;I=((C=C+Math.imul(It,si)|0)+(n>>>13)|0)+(sn>>>26)|0,sn&=67108863;var gn=(I+(v=Math.imul(Wt,fi))|0)+((8191&(n=(n=Math.imul(Wt,si))+Math.imul(Gt,fi)|0))<<13)|0;return I=((C=Math.imul(Gt,si))+(n>>>13)|0)+(gn>>>26)|0,gn&=67108863,E[0]=$i,E[1]=Bi,E[2]=zi,E[3]=Ui,E[4]=ze,E[5]=Tt,E[6]=pe,E[7]=je,E[8]=_t,E[9]=re,E[10]=qe,E[11]=Mt,E[12]=zt,E[13]=bi,E[14]=Ei,E[15]=Xi,E[16]=Zi,E[17]=sn,E[18]=gn,0!==I&&(E[19]=I,u.length++),u};function Z(y,i,r){return(new Y).mulp(y,i,r)}function Y(y,i){this.x=y,this.y=i}Math.imul||(S=k),a.prototype.mulTo=function(i,r){var u,c=this.length+i.length;return u=10===this.length&&10===i.length?S(this,i,r):c<63?k(this,i,r):c<1024?function U(y,i,r){r.negative=i.negative^y.negative,r.length=y.length+i.length;for(var u=0,c=0,_=0;_>>26)|0)>>>26,E&=67108863}r.words[_]=I,u=E,E=c}return 0!==u?r.words[_]=u:r.length--,r.strip()}(this,i,r):Z(this,i,r),u},Y.prototype.makeRBT=function(i){for(var r=new Array(i),u=a.prototype._countBits(i)-1,c=0;c>=1;return c},Y.prototype.permute=function(i,r,u,c,_,E){for(var I=0;I>>=1)_++;return 1<<_+1+c},Y.prototype.conjugate=function(i,r,u){if(!(u<=1))for(var c=0;c>>=13),_>>>=13;for(E=2*r;E>=26,r+=c/67108864|0,r+=_>>>26,this.words[u]=67108863&_}return 0!==r&&(this.words[u]=r,this.length++),this},a.prototype.muln=function(i){return this.clone().imuln(i)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(i){var r=function L(y){for(var i=new Array(y.bitLength()),r=0;r>>c}return i}(i);if(0===r.length)return new a(1);for(var u=this,c=0;c=0);var _,r=i%26,u=(i-r)/26,c=67108863>>>26-r<<26-r;if(0!==r){var E=0;for(_=0;_>>26-r}E&&(this.words[_]=E,this.length++)}if(0!==u){for(_=this.length-1;_>=0;_--)this.words[_+u]=this.words[_];for(_=0;_=0),c=r?(r-r%26)/26:0;var _=i%26,E=Math.min((i-_)/26,this.length),I=67108863^67108863>>>_<<_,v=u;if(c-=E,c=Math.max(0,c),v){for(var n=0;nE)for(this.length-=E,n=0;n=0&&(0!==C||n>=c);n--){var B=0|this.words[n];this.words[n]=C<<26-_|B>>>_,C=B&I}return v&&0!==C&&(v.words[v.length++]=C),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(i,r,u){return f(0===this.negative),this.iushrn(i,r,u)},a.prototype.shln=function(i){return this.clone().ishln(i)},a.prototype.ushln=function(i){return this.clone().iushln(i)},a.prototype.shrn=function(i){return this.clone().ishrn(i)},a.prototype.ushrn=function(i){return this.clone().iushrn(i)},a.prototype.testn=function(i){f("number"==typeof i&&i>=0);var r=i%26,u=(i-r)/26;return!(this.length<=u||!(this.words[u]&1<=0);var r=i%26,u=(i-r)/26;return f(0===this.negative,"imaskn works only with positive numbers"),this.length<=u?this:(0!==r&&u++,this.length=Math.min(u,this.length),0!==r&&(this.words[this.length-1]&=67108863^67108863>>>r<=67108864;r++)this.words[r]-=67108864,r===this.length-1?this.words[r+1]=1:this.words[r+1]++;return this.length=Math.max(this.length,r+1),this},a.prototype.isubn=function(i){if(f("number"==typeof i),f(i<67108864),i<0)return this.iaddn(-i);if(0!==this.negative)return this.negative=0,this.iaddn(i),this.negative=1,this;if(this.words[0]-=i,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var r=0;r>26)-(v/67108864|0),this.words[_+u]=67108863&E}for(;_>26,this.words[_+u]=67108863&E;if(0===I)return this.strip();for(f(-1===I),I=0,_=0;_>26,this.words[_]=67108863&E;return this.negative=1,this.strip()},a.prototype._wordDiv=function(i,r){var u,c=this.clone(),_=i,E=0|_.words[_.length-1];0!=(u=26-this._countBits(E))&&(_=_.ushln(u),c.iushln(u),E=0|_.words[_.length-1]);var n,v=c.length-_.length;if("mod"!==r){(n=new a(null)).length=v+1,n.words=new Array(n.length);for(var C=0;C=0;P--){var H=67108864*(0|c.words[_.length+P])+(0|c.words[_.length+P-1]);for(H=Math.min(H/E|0,67108863),c._ishlnsubmul(_,H,P);0!==c.negative;)H--,c.negative=0,c._ishlnsubmul(_,1,P),c.isZero()||(c.negative^=1);n&&(n.words[P]=H)}return n&&n.strip(),c.strip(),"div"!==r&&0!==u&&c.iushrn(u),{div:n||null,mod:c}},a.prototype.divmod=function(i,r,u){return f(!i.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===i.negative?(E=this.neg().divmod(i,r),"mod"!==r&&(c=E.div.neg()),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.iadd(i)),{div:c,mod:_}):0===this.negative&&0!==i.negative?(E=this.divmod(i.neg(),r),"mod"!==r&&(c=E.div.neg()),{div:c,mod:E.mod}):0!=(this.negative&i.negative)?(E=this.neg().divmod(i.neg(),r),"div"!==r&&(_=E.mod.neg(),u&&0!==_.negative&&_.isub(i)),{div:E.div,mod:_}):i.length>this.length||this.cmp(i)<0?{div:new a(0),mod:this}:1===i.length?"div"===r?{div:this.divn(i.words[0]),mod:null}:"mod"===r?{div:null,mod:new a(this.modn(i.words[0]))}:{div:this.divn(i.words[0]),mod:new a(this.modn(i.words[0]))}:this._wordDiv(i,r);var c,_,E},a.prototype.div=function(i){return this.divmod(i,"div",!1).div},a.prototype.mod=function(i){return this.divmod(i,"mod",!1).mod},a.prototype.umod=function(i){return this.divmod(i,"mod",!0).mod},a.prototype.divRound=function(i){var r=this.divmod(i);if(r.mod.isZero())return r.div;var u=0!==r.div.negative?r.mod.isub(i):r.mod,c=i.ushrn(1),_=i.andln(1),E=u.cmp(c);return E<0||1===_&&0===E?r.div:0!==r.div.negative?r.div.isubn(1):r.div.iaddn(1)},a.prototype.modn=function(i){f(i<=67108863);for(var r=(1<<26)%i,u=0,c=this.length-1;c>=0;c--)u=(r*u+(0|this.words[c]))%i;return u},a.prototype.idivn=function(i){f(i<=67108863);for(var r=0,u=this.length-1;u>=0;u--){var c=(0|this.words[u])+67108864*r;this.words[u]=c/i|0,r=c%i}return this.strip()},a.prototype.divn=function(i){return this.clone().idivn(i)},a.prototype.egcd=function(i){f(0===i.negative),f(!i.isZero());var r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=new a(0),I=new a(1),v=0;r.isEven()&&u.isEven();)r.iushrn(1),u.iushrn(1),++v;for(var n=u.clone(),C=r.clone();!r.isZero();){for(var B=0,P=1;0==(r.words[0]&P)&&B<26;++B,P<<=1);if(B>0)for(r.iushrn(B);B-- >0;)(c.isOdd()||_.isOdd())&&(c.iadd(n),_.isub(C)),c.iushrn(1),_.iushrn(1);for(var H=0,q=1;0==(u.words[0]&q)&&H<26;++H,q<<=1);if(H>0)for(u.iushrn(H);H-- >0;)(E.isOdd()||I.isOdd())&&(E.iadd(n),I.isub(C)),E.iushrn(1),I.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(E),_.isub(I)):(u.isub(r),E.isub(c),I.isub(_))}return{a:E,b:I,gcd:u.iushln(v)}},a.prototype._invmp=function(i){f(0===i.negative),f(!i.isZero());var B,r=this,u=i.clone();r=0!==r.negative?r.umod(i):r.clone();for(var c=new a(1),_=new a(0),E=u.clone();r.cmpn(1)>0&&u.cmpn(1)>0;){for(var I=0,v=1;0==(r.words[0]&v)&&I<26;++I,v<<=1);if(I>0)for(r.iushrn(I);I-- >0;)c.isOdd()&&c.iadd(E),c.iushrn(1);for(var n=0,C=1;0==(u.words[0]&C)&&n<26;++n,C<<=1);if(n>0)for(u.iushrn(n);n-- >0;)_.isOdd()&&_.iadd(E),_.iushrn(1);r.cmp(u)>=0?(r.isub(u),c.isub(_)):(u.isub(r),_.isub(c))}return(B=0===r.cmpn(1)?c:_).cmpn(0)<0&&B.iadd(i),B},a.prototype.gcd=function(i){if(this.isZero())return i.abs();if(i.isZero())return this.abs();var r=this.clone(),u=i.clone();r.negative=0,u.negative=0;for(var c=0;r.isEven()&&u.isEven();c++)r.iushrn(1),u.iushrn(1);for(;;){for(;r.isEven();)r.iushrn(1);for(;u.isEven();)u.iushrn(1);var _=r.cmp(u);if(_<0){var E=r;r=u,u=E}else if(0===_||0===u.cmpn(1))break;r.isub(u)}return u.iushln(c)},a.prototype.invm=function(i){return this.egcd(i).a.umod(i)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(i){return this.words[0]&i},a.prototype.bincn=function(i){f("number"==typeof i);var r=i%26,u=(i-r)/26,c=1<>>26,this.words[E]=I&=67108863}return 0!==_&&(this.words[E]=_,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(i){var u,r=i<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)u=1;else{r&&(i=-i),f(i<=67108863,"Number is too big");var c=0|this.words[0];u=c===i?0:ci.length)return 1;if(this.length=0;u--){var c=0|this.words[u],_=0|i.words[u];if(c!==_){c<_?r=-1:c>_&&(r=1);break}}return r},a.prototype.gtn=function(i){return 1===this.cmpn(i)},a.prototype.gt=function(i){return 1===this.cmp(i)},a.prototype.gten=function(i){return this.cmpn(i)>=0},a.prototype.gte=function(i){return this.cmp(i)>=0},a.prototype.ltn=function(i){return-1===this.cmpn(i)},a.prototype.lt=function(i){return-1===this.cmp(i)},a.prototype.lten=function(i){return this.cmpn(i)<=0},a.prototype.lte=function(i){return this.cmp(i)<=0},a.prototype.eqn=function(i){return 0===this.cmpn(i)},a.prototype.eq=function(i){return 0===this.cmp(i)},a.red=function(i){return new X(i)},a.prototype.toRed=function(i){return f(!this.red,"Already a number in reduction context"),f(0===this.negative,"red works only with positives"),i.convertTo(this)._forceRed(i)},a.prototype.fromRed=function(){return f(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(i){return this.red=i,this},a.prototype.forceRed=function(i){return f(!this.red,"Already a number in reduction context"),this._forceRed(i)},a.prototype.redAdd=function(i){return f(this.red,"redAdd works only with red numbers"),this.red.add(this,i)},a.prototype.redIAdd=function(i){return f(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,i)},a.prototype.redSub=function(i){return f(this.red,"redSub works only with red numbers"),this.red.sub(this,i)},a.prototype.redISub=function(i){return f(this.red,"redISub works only with red numbers"),this.red.isub(this,i)},a.prototype.redShl=function(i){return f(this.red,"redShl works only with red numbers"),this.red.shl(this,i)},a.prototype.redMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.mul(this,i)},a.prototype.redIMul=function(i){return f(this.red,"redMul works only with red numbers"),this.red._verify2(this,i),this.red.imul(this,i)},a.prototype.redSqr=function(){return f(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return f(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return f(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return f(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return f(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(i){return f(this.red&&!i.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,i)};var ne={k256:null,p224:null,p192:null,p25519:null};function $(y,i){this.name=y,this.p=new a(i,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function de(){$.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function te(){$.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ie(){$.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function oe(){$.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function X(y){if("string"==typeof y){var i=a._prime(y);this.m=i.p,this.prime=i}else f(y.gtn(1),"modulus must be greater than 1"),this.m=y,this.prime=null}function me(y){X.call(this,y),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}$.prototype._tmp=function(){var i=new a(null);return i.words=new Array(Math.ceil(this.n/13)),i},$.prototype.ireduce=function(i){var u,r=i;do{this.split(r,this.tmp),u=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(u>this.n);var c=u0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},$.prototype.split=function(i,r){i.iushrn(this.n,0,r)},$.prototype.imulK=function(i){return i.imul(this.k)},M(de,$),de.prototype.split=function(i,r){for(var u=4194303,c=Math.min(i.length,9),_=0;_>>22,E=I}i.words[_-10]=E>>>=22,i.length-=0===E&&i.length>10?10:9},de.prototype.imulK=function(i){i.words[i.length]=0,i.words[i.length+1]=0,i.length+=2;for(var r=0,u=0;u>>=26,i.words[u]=_,r=c}return 0!==r&&(i.words[i.length++]=r),i},a._prime=function(i){if(ne[i])return ne[i];var r;if("k256"===i)r=new de;else if("p224"===i)r=new te;else if("p192"===i)r=new ie;else{if("p25519"!==i)throw new Error("Unknown prime "+i);r=new oe}return ne[i]=r,r},X.prototype._verify1=function(i){f(0===i.negative,"red works only with positives"),f(i.red,"red works only with red numbers")},X.prototype._verify2=function(i,r){f(0==(i.negative|r.negative),"red works only with positives"),f(i.red&&i.red===r.red,"red works only with red numbers")},X.prototype.imod=function(i){return this.prime?this.prime.ireduce(i)._forceRed(this):i.umod(this.m)._forceRed(this)},X.prototype.neg=function(i){return i.isZero()?i.clone():this.m.sub(i)._forceRed(this)},X.prototype.add=function(i,r){this._verify2(i,r);var u=i.add(r);return u.cmp(this.m)>=0&&u.isub(this.m),u._forceRed(this)},X.prototype.iadd=function(i,r){this._verify2(i,r);var u=i.iadd(r);return u.cmp(this.m)>=0&&u.isub(this.m),u},X.prototype.sub=function(i,r){this._verify2(i,r);var u=i.sub(r);return u.cmpn(0)<0&&u.iadd(this.m),u._forceRed(this)},X.prototype.isub=function(i,r){this._verify2(i,r);var u=i.isub(r);return u.cmpn(0)<0&&u.iadd(this.m),u},X.prototype.shl=function(i,r){return this._verify1(i),this.imod(i.ushln(r))},X.prototype.imul=function(i,r){return this._verify2(i,r),this.imod(i.imul(r))},X.prototype.mul=function(i,r){return this._verify2(i,r),this.imod(i.mul(r))},X.prototype.isqr=function(i){return this.imul(i,i.clone())},X.prototype.sqr=function(i){return this.mul(i,i)},X.prototype.sqrt=function(i){if(i.isZero())return i.clone();var r=this.m.andln(3);if(f(r%2==1),3===r){var u=this.m.add(new a(1)).iushrn(2);return this.pow(i,u)}for(var c=this.m.subn(1),_=0;!c.isZero()&&0===c.andln(1);)_++,c.iushrn(1);f(!c.isZero());var E=new a(1).toRed(this),I=E.redNeg(),v=this.m.subn(1).iushrn(1),n=this.m.bitLength();for(n=new a(2*n*n).toRed(this);0!==this.pow(n,v).cmp(I);)n.redIAdd(I);for(var C=this.pow(n,c),B=this.pow(i,c.addn(1).iushrn(1)),P=this.pow(i,c),H=_;0!==P.cmp(E);){for(var q=P,he=0;0!==q.cmp(E);he++)q=q.redSqr();f(he=0;_--){for(var C=r.words[_],B=n-1;B>=0;B--){var P=C>>B&1;E!==c[0]&&(E=this.sqr(E)),0!==P||0!==I?(I<<=1,I|=P,(4==++v||0===_&&0===B)&&(E=this.mul(E,c[I]),v=0,I=0)):v=0}n=26}return E},X.prototype.convertTo=function(i){var r=i.umod(this.m);return r===i?r.clone():r},X.prototype.convertFrom=function(i){var r=i.clone();return r.red=null,r},a.mont=function(i){return new me(i)},M(me,X),me.prototype.convertTo=function(i){return this.imod(i.ushln(this.shift))},me.prototype.convertFrom=function(i){var r=this.imod(i.mul(this.rinv));return r.red=null,r},me.prototype.imul=function(i,r){if(i.isZero()||r.isZero())return i.words[0]=0,i.length=1,i;var u=i.imul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.mul=function(i,r){if(i.isZero()||r.isZero())return new a(0)._forceRed(this);var u=i.mul(r),c=u.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=u.isub(c).iushrn(this.shift),E=_;return _.cmp(this.m)>=0?E=_.isub(this.m):_.cmpn(0)<0&&(E=_.iadd(this.m)),E._forceRed(this)},me.prototype.invm=function(i){return this.imod(i._invmp(this.m).mul(this.r2))._forceRed(this)}}(Ve=p.nmd(Ve),this)},6705:(Ve,j,p)=>{var t=p(2772),e=p(6945),f=p(9401),M=p(2057),a=p(8466),b=p(6386),d=p(8651),N=p(3502).Buffer;Ve.exports=function(L,k,S){var U;U=L.padding?L.padding:S?1:4;var ne,Z=t(L),Y=Z.modulus.byteLength();if(k.length>Y||new M(k).cmp(Z.modulus)>=0)throw new Error("decryption error");ne=S?d(new M(k),Z):a(k,Z);var $=N.alloc(Y-ne.length);if(ne=N.concat([$,ne],Y),4===U)return function h(D,L){var k=D.modulus.byteLength(),S=b("sha1").update(N.alloc(0)).digest(),U=S.length;if(0!==L[0])throw new Error("decryption error");var Z=L.slice(1,U+1),Y=L.slice(U+1),ne=f(Z,e(Y,U)),$=f(Y,e(ne,k-U-1));if(function w(D,L){D=N.from(D),L=N.from(L);var k=0,S=D.length;D.length!==L.length&&(k++,S=Math.min(D.length,L.length));for(var U=-1;++U=L.length){Z++;break}var Y=L.slice(2,U-1);if(("0002"!==S.toString("hex")&&!k||"0001"!==S.toString("hex")&&k)&&Z++,Y.length<8&&Z++,Z)throw new Error("decryption error");return L.slice(U)}(0,ne,S);if(3===U)return ne;throw new Error("unknown padding")}},6562:(Ve,j,p)=>{var t=p(2772),e=p(3753),f=p(6386),M=p(6945),a=p(9401),b=p(2057),d=p(8651),N=p(8466),h=p(3502).Buffer;Ve.exports=function(k,S,U){var Z;Z=k.padding?k.padding:U?1:4;var ne,Y=t(k);if(4===Z)ne=function A(L,k){var S=L.modulus.byteLength(),U=k.length,Z=f("sha1").update(h.alloc(0)).digest(),Y=Z.length,ne=2*Y;if(U>S-ne-2)throw new Error("message too long");var $=h.alloc(S-U-ne-2),de=S-Y-1,te=e(Y),ie=a(h.concat([Z,$,h.alloc(1,1),k],de),M(te,de)),oe=a(te,M(ie,Y));return new b(h.concat([h.alloc(1),oe,ie],S))}(Y,S);else if(1===Z)ne=function w(L,k,S){var Y,U=k.length,Z=L.modulus.byteLength();if(U>Z-11)throw new Error("message too long");return Y=S?h.alloc(Z-U-3,255):function D(L){for(var Y,k=h.allocUnsafe(L),S=0,U=e(2*L),Z=0;S=0)throw new Error("data too long for modulus")}return U?N(ne,Y):d(ne,Y)}},8651:(Ve,j,p)=>{var t=p(2057),e=p(3502).Buffer;Ve.exports=function f(M,a){return e.from(M.toRed(t.mont(a.modulus)).redPow(new t(a.publicExponent)).fromRed().toArray())}},9401:Ve=>{Ve.exports=function(p,t){for(var e=p.length,f=-1;++f{const t=p(8695),e=p(1465),f=p(3210),M=p(2334);function a(b,d,N,h,A){const w=[].slice.call(arguments,1),D=w.length,L="function"==typeof w[D-1];if(!L&&!t())throw new Error("Callback required as last argument");if(!L){if(D<1)throw new Error("Too few arguments provided");return 1===D?(N=d,d=h=void 0):2===D&&!d.getContext&&(h=N,N=d,d=void 0),new Promise(function(k,S){try{const U=e.create(N,h);k(b(U,d,h))}catch(U){S(U)}})}if(D<2)throw new Error("Too few arguments provided");2===D?(A=N,N=d,d=h=void 0):3===D&&(d.getContext&&void 0===A?(A=h,h=void 0):(A=h,h=N,N=d,d=void 0));try{const k=e.create(N,h);A(null,b(k,d,h))}catch(k){A(k)}}j.create=e.create,j.toCanvas=a.bind(null,f.render),j.toDataURL=a.bind(null,f.renderToDataURL),j.toString=a.bind(null,function(b,d,N){return M.render(b,N)})},8695:Ve=>{Ve.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6221:(Ve,j,p)=>{const t=p(4792).getSymbolSize;j.getRowColCoords=function(f){if(1===f)return[];const M=Math.floor(f/7)+2,a=t(f),b=145===a?26:2*Math.ceil((a-13)/(2*M-2)),d=[a-7];for(let N=1;N{const t=p(4016),e=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function f(M){this.mode=t.ALPHANUMERIC,this.data=M}f.getBitsLength=function(a){return 11*Math.floor(a/2)+a%2*6},f.prototype.getLength=function(){return this.data.length},f.prototype.getBitsLength=function(){return f.getBitsLength(this.data.length)},f.prototype.write=function(a){let b;for(b=0;b+2<=this.data.length;b+=2){let d=45*e.indexOf(this.data[b]);d+=e.indexOf(this.data[b+1]),a.put(d,11)}this.data.length%2&&a.put(e.indexOf(this.data[b]),6)},Ve.exports=f},2118:Ve=>{function j(){this.buffer=[],this.length=0}j.prototype={get:function(p){const t=Math.floor(p/8);return 1==(this.buffer[t]>>>7-p%8&1)},put:function(p,t){for(let e=0;e>>t-e-1&1))},getLengthInBits:function(){return this.length},putBit:function(p){const t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),p&&(this.buffer[t]|=128>>>this.length%8),this.length++}},Ve.exports=j},4425:Ve=>{function j(p){if(!p||p<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=p,this.data=new Uint8Array(p*p),this.reservedBit=new Uint8Array(p*p)}j.prototype.set=function(p,t,e,f){const M=p*this.size+t;this.data[M]=e,f&&(this.reservedBit[M]=!0)},j.prototype.get=function(p,t){return this.data[p*this.size+t]},j.prototype.xor=function(p,t,e){this.data[p*this.size+t]^=e},j.prototype.isReserved=function(p,t){return this.reservedBit[p*this.size+t]},Ve.exports=j},5663:(Ve,j,p)=>{const t=p(8419),e=p(4016);function f(M){this.mode=e.BYTE,"string"==typeof M&&(M=t(M)),this.data=new Uint8Array(M)}f.getBitsLength=function(a){return 8*a},f.prototype.getLength=function(){return this.data.length},f.prototype.getBitsLength=function(){return f.getBitsLength(this.data.length)},f.prototype.write=function(M){for(let a=0,b=this.data.length;a{const t=p(2259),e=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],f=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];j.getBlocksCount=function(a,b){switch(b){case t.L:return e[4*(a-1)+0];case t.M:return e[4*(a-1)+1];case t.Q:return e[4*(a-1)+2];case t.H:return e[4*(a-1)+3];default:return}},j.getTotalCodewordsCount=function(a,b){switch(b){case t.L:return f[4*(a-1)+0];case t.M:return f[4*(a-1)+1];case t.Q:return f[4*(a-1)+2];case t.H:return f[4*(a-1)+3];default:return}}},2259:(Ve,j)=>{j.L={bit:1},j.M={bit:0},j.Q={bit:3},j.H={bit:2},j.isValid=function(e){return e&&void 0!==e.bit&&e.bit>=0&&e.bit<4},j.from=function(e,f){if(j.isValid(e))return e;try{return function p(t){if("string"!=typeof t)throw new Error("Param is not a string");switch(t.toLowerCase()){case"l":case"low":return j.L;case"m":case"medium":return j.M;case"q":case"quartile":return j.Q;case"h":case"high":return j.H;default:throw new Error("Unknown EC Level: "+t)}}(e)}catch(M){return f}}},3114:(Ve,j,p)=>{const t=p(4792).getSymbolSize;j.getPositions=function(M){const a=t(M);return[[0,0],[a-7,0],[0,a-7]]}},7078:(Ve,j,p)=>{const t=p(4792),M=t.getBCHDigit(1335);j.getEncodedBits=function(b,d){const N=b.bit<<3|d;let h=N<<10;for(;t.getBCHDigit(h)-M>=0;)h^=1335<{const p=new Uint8Array(512),t=new Uint8Array(256);(function(){let f=1;for(let M=0;M<255;M++)p[M]=f,t[f]=M,f<<=1,256&f&&(f^=285);for(let M=255;M<512;M++)p[M]=p[M-255]})(),j.log=function(f){if(f<1)throw new Error("log("+f+")");return t[f]},j.exp=function(f){return p[f]},j.mul=function(f,M){return 0===f||0===M?0:p[t[f]+t[M]]}},4388:(Ve,j,p)=>{const t=p(4016),e=p(4792);function f(M){this.mode=t.KANJI,this.data=M}f.getBitsLength=function(a){return 13*a},f.prototype.getLength=function(){return this.data.length},f.prototype.getBitsLength=function(){return f.getBitsLength(this.data.length)},f.prototype.write=function(M){let a;for(a=0;a=33088&&b<=40956)b-=33088;else{if(!(b>=57408&&b<=60351))throw new Error("Invalid SJIS character: "+this.data[a]+"\nMake sure your charset is UTF-8");b-=49472}b=192*(b>>>8&255)+(255&b),M.put(b,13)}},Ve.exports=f},3667:(Ve,j)=>{j.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function t(e,f,M){switch(e){case j.Patterns.PATTERN000:return(f+M)%2==0;case j.Patterns.PATTERN001:return f%2==0;case j.Patterns.PATTERN010:return M%3==0;case j.Patterns.PATTERN011:return(f+M)%3==0;case j.Patterns.PATTERN100:return(Math.floor(f/2)+Math.floor(M/3))%2==0;case j.Patterns.PATTERN101:return f*M%2+f*M%3==0;case j.Patterns.PATTERN110:return(f*M%2+f*M%3)%2==0;case j.Patterns.PATTERN111:return(f*M%3+(f+M)%2)%2==0;default:throw new Error("bad maskPattern:"+e)}}j.isValid=function(f){return null!=f&&""!==f&&!isNaN(f)&&f>=0&&f<=7},j.from=function(f){return j.isValid(f)?parseInt(f,10):void 0},j.getPenaltyN1=function(f){const M=f.size;let a=0,b=0,d=0,N=null,h=null;for(let A=0;A=5&&(a+=b-5+3),N=D,b=1),D=f.get(w,A),D===h?d++:(d>=5&&(a+=d-5+3),h=D,d=1)}b>=5&&(a+=b-5+3),d>=5&&(a+=d-5+3)}return a},j.getPenaltyN2=function(f){const M=f.size;let a=0;for(let b=0;b=10&&(1488===b||93===b)&&a++,d=d<<1&2047|f.get(h,N),h>=10&&(1488===d||93===d)&&a++}return 40*a},j.getPenaltyN4=function(f){let M=0;const a=f.data.length;for(let d=0;d{const t=p(4406),e=p(2699);j.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},j.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},j.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},j.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},j.MIXED={bit:-1},j.getCharCountIndicator=function(a,b){if(!a.ccBits)throw new Error("Invalid mode: "+a);if(!t.isValid(b))throw new Error("Invalid version: "+b);return b>=1&&b<10?a.ccBits[0]:b<27?a.ccBits[1]:a.ccBits[2]},j.getBestModeForData=function(a){return e.testNumeric(a)?j.NUMERIC:e.testAlphanumeric(a)?j.ALPHANUMERIC:e.testKanji(a)?j.KANJI:j.BYTE},j.toString=function(a){if(a&&a.id)return a.id;throw new Error("Invalid mode")},j.isValid=function(a){return a&&a.bit&&a.ccBits},j.from=function(a,b){if(j.isValid(a))return a;try{return function f(M){if("string"!=typeof M)throw new Error("Param is not a string");switch(M.toLowerCase()){case"numeric":return j.NUMERIC;case"alphanumeric":return j.ALPHANUMERIC;case"kanji":return j.KANJI;case"byte":return j.BYTE;default:throw new Error("Unknown mode: "+M)}}(a)}catch(d){return b}}},7783:(Ve,j,p)=>{const t=p(4016);function e(f){this.mode=t.NUMERIC,this.data=f.toString()}e.getBitsLength=function(M){return 10*Math.floor(M/3)+(M%3?M%3*3+1:0)},e.prototype.getLength=function(){return this.data.length},e.prototype.getBitsLength=function(){return e.getBitsLength(this.data.length)},e.prototype.write=function(M){let a,b,d;for(a=0;a+3<=this.data.length;a+=3)b=this.data.substr(a,3),d=parseInt(b,10),M.put(d,10);const N=this.data.length-a;N>0&&(b=this.data.substr(a),d=parseInt(b,10),M.put(d,3*N+1))},Ve.exports=e},1106:(Ve,j,p)=>{const t=p(5339);j.mul=function(f,M){const a=new Uint8Array(f.length+M.length-1);for(let b=0;b=0;){const b=a[0];for(let N=0;N{const t=p(4792),e=p(2259),f=p(2118),M=p(4425),a=p(6221),b=p(3114),d=p(3667),N=p(4655),h=p(2636),A=p(2088),w=p(7078),D=p(4016),L=p(2033);function Y(ie,oe,X){const me=ie.size,y=w.getEncodedBits(oe,X);let i,r;for(i=0;i<15;i++)r=1==(y>>i&1),ie.set(i<6?i:i<8?i+1:me-15+i,8,r,!0),ie.set(8,i<8?me-i-1:i<9?15-i-1+1:15-i-1,r,!0);ie.set(me-8,8,1,!0)}function te(ie,oe,X,me){let y;if(Array.isArray(ie))y=L.fromArray(ie);else{if("string"!=typeof ie)throw new Error("Invalid data");{let _=oe;if(!_){const E=L.rawSplit(ie);_=A.getBestVersionForData(E,X)}y=L.fromString(ie,_||40)}}const i=A.getBestVersionForData(y,X);if(!i)throw new Error("The amount of data is too big to be stored in a QR Code");if(oe){if(oe=0&&u<=6&&(0===c||6===c)||c>=0&&c<=6&&(0===u||6===u)||u>=2&&u<=4&&c>=2&&c<=4,!0)}}(c,oe),function S(ie){const oe=ie.size;for(let X=8;X=7&&function Z(ie,oe){const X=ie.size,me=A.getEncodedBits(oe);let y,i,r;for(let u=0;u<18;u++)y=Math.floor(u/3),i=u%3+X-8-3,r=1==(me>>u&1),ie.set(y,i,r,!0),ie.set(i,y,r,!0)}(c,oe),function ne(ie,oe){const X=ie.size;let me=-1,y=X-1,i=7,r=0;for(let u=X-1;u>0;u-=2)for(6===u&&u--;;){for(let c=0;c<2;c++)if(!ie.isReserved(y,u-c)){let _=!1;r>>i&1)),ie.set(y,u-c,_),i--,-1===i&&(r++,i=7)}if(y+=me,y<0||X<=y){y-=me,me=-me;break}}}(c,r),isNaN(me)&&(me=d.getBestMask(c,Y.bind(null,c,X))),d.applyMask(me,c),Y(c,X,me),{modules:c,version:oe,errorCorrectionLevel:X,maskPattern:me,segments:y}}j.create=function(oe,X){if(void 0===oe||""===oe)throw new Error("No input text");let y,i,me=e.M;return void 0!==X&&(me=e.from(X.errorCorrectionLevel,e.M),y=A.from(X.version),i=d.from(X.maskPattern),X.toSJISFunc&&t.setToSJISFunction(X.toSJISFunc)),te(oe,y,me,i)}},2636:(Ve,j,p)=>{const t=p(1106);function e(f){this.genPoly=void 0,this.degree=f,this.degree&&this.initialize(this.degree)}e.prototype.initialize=function(M){this.degree=M,this.genPoly=t.generateECPolynomial(this.degree)},e.prototype.encode=function(M){if(!this.genPoly)throw new Error("Encoder not initialized");const a=new Uint8Array(M.length+this.degree);a.set(M);const b=t.mod(a,this.genPoly),d=this.degree-b.length;if(d>0){const N=new Uint8Array(this.degree);return N.set(b,d),N}return b},Ve.exports=e},2699:(Ve,j)=>{const p="[0-9]+";let e="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";e=e.replace(/u/g,"\\u");const f="(?:(?![A-Z0-9 $%*+\\-./:]|"+e+")(?:.|[\r\n]))+";j.KANJI=new RegExp(e,"g"),j.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),j.BYTE=new RegExp(f,"g"),j.NUMERIC=new RegExp(p,"g"),j.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const M=new RegExp("^"+e+"$"),a=new RegExp("^"+p+"$"),b=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");j.testKanji=function(N){return M.test(N)},j.testNumeric=function(N){return a.test(N)},j.testAlphanumeric=function(N){return b.test(N)}},2033:(Ve,j,p)=>{const t=p(4016),e=p(7783),f=p(2424),M=p(5663),a=p(4388),b=p(2699),d=p(4792),N=p(4901);function h(Z){return unescape(encodeURIComponent(Z)).length}function A(Z,Y,ne){const $=[];let de;for(;null!==(de=Z.exec(ne));)$.push({data:de[0],index:de.index,mode:Y,length:de[0].length});return $}function w(Z){const Y=A(b.NUMERIC,t.NUMERIC,Z),ne=A(b.ALPHANUMERIC,t.ALPHANUMERIC,Z);let $,de;return d.isKanjiModeEnabled()?($=A(b.BYTE,t.BYTE,Z),de=A(b.KANJI,t.KANJI,Z)):($=A(b.BYTE_KANJI,t.BYTE,Z),de=[]),Y.concat(ne,$,de).sort(function(ie,oe){return ie.index-oe.index}).map(function(ie){return{data:ie.data,mode:ie.mode,length:ie.length}})}function D(Z,Y){switch(Y){case t.NUMERIC:return e.getBitsLength(Z);case t.ALPHANUMERIC:return f.getBitsLength(Z);case t.KANJI:return a.getBitsLength(Z);case t.BYTE:return M.getBitsLength(Z)}}function U(Z,Y){let ne;const $=t.getBestModeForData(Z);if(ne=t.from(Y,$),ne!==t.BYTE&&ne.bit<$.bit)throw new Error('"'+Z+'" cannot be encoded with mode '+t.toString(ne)+".\n Suggested mode is: "+t.toString($));switch(ne===t.KANJI&&!d.isKanjiModeEnabled()&&(ne=t.BYTE),ne){case t.NUMERIC:return new e(Z);case t.ALPHANUMERIC:return new f(Z);case t.KANJI:return new a(Z);case t.BYTE:return new M(Z)}}j.fromArray=function(Y){return Y.reduce(function(ne,$){return"string"==typeof $?ne.push(U($,null)):$.data&&ne.push(U($.data,$.mode)),ne},[])},j.fromString=function(Y,ne){const de=function k(Z){const Y=[];for(let ne=0;ne=0?Y[Y.length-1]:null;return $&&$.mode===ne.mode?(Y[Y.length-1].data+=ne.data,Y):(Y.push(ne),Y)},[])}(oe))},j.rawSplit=function(Y){return j.fromArray(w(Y,d.isKanjiModeEnabled()))}},4792:(Ve,j)=>{let p;const t=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];j.getSymbolSize=function(f){if(!f)throw new Error('"version" cannot be null or undefined');if(f<1||f>40)throw new Error('"version" should be in range from 1 to 40');return 4*f+17},j.getSymbolTotalCodewords=function(f){return t[f]},j.getBCHDigit=function(e){let f=0;for(;0!==e;)f++,e>>>=1;return f},j.setToSJISFunction=function(f){if("function"!=typeof f)throw new Error('"toSJISFunc" is not a valid function.');p=f},j.isKanjiModeEnabled=function(){return void 0!==p},j.toSJIS=function(f){return p(f)}},4406:(Ve,j)=>{j.isValid=function(t){return!isNaN(t)&&t>=1&&t<=40}},2088:(Ve,j,p)=>{const t=p(4792),e=p(4655),f=p(2259),M=p(4016),a=p(4406),d=t.getBCHDigit(7973);function h(D,L){return M.getCharCountIndicator(D,L)+4}function A(D,L){let k=0;return D.forEach(function(S){k+=h(S.mode,L)+S.getBitsLength()}),k}j.from=function(L,k){return a.isValid(L)?parseInt(L,10):k},j.getCapacity=function(L,k,S){if(!a.isValid(L))throw new Error("Invalid QR Code version");void 0===S&&(S=M.BYTE);const Y=8*(t.getSymbolTotalCodewords(L)-e.getTotalCodewordsCount(L,k));if(S===M.MIXED)return Y;const ne=Y-h(S,L);switch(S){case M.NUMERIC:return Math.floor(ne/10*3);case M.ALPHANUMERIC:return Math.floor(ne/11*2);case M.KANJI:return Math.floor(ne/13);default:return Math.floor(ne/8)}},j.getBestVersionForData=function(L,k){let S;const U=f.from(k,f.M);if(Array.isArray(L)){if(L.length>1)return function w(D,L){for(let k=1;k<=40;k++)if(A(D,k)<=j.getCapacity(k,L,M.MIXED))return k}(L,U);if(0===L.length)return 1;S=L[0]}else S=L;return function N(D,L,k){for(let S=1;S<=40;S++)if(L<=j.getCapacity(S,k,D))return S}(S.mode,S.getLength(),U)},j.getEncodedBits=function(L){if(!a.isValid(L)||L<7)throw new Error("Invalid QR Code version");let k=L<<12;for(;t.getBCHDigit(k)-d>=0;)k^=7973<{const t=p(6355);j.render=function(a,b,d){let N=d,h=b;void 0===N&&(!b||!b.getContext)&&(N=b,b=void 0),b||(h=function f(){try{return document.createElement("canvas")}catch(M){throw new Error("You need to specify a canvas element")}}()),N=t.getOptions(N);const A=t.getImageWidth(a.modules.size,N),w=h.getContext("2d"),D=w.createImageData(A,A);return t.qrToImageData(D.data,a,N),function e(M,a,b){M.clearRect(0,0,a.width,a.height),a.style||(a.style={}),a.height=b,a.width=b,a.style.height=b+"px",a.style.width=b+"px"}(w,h,A),w.putImageData(D,0,0),h},j.renderToDataURL=function(a,b,d){let N=d;return void 0===N&&(!b||!b.getContext)&&(N=b,b=void 0),N||(N={}),j.render(a,b,N).toDataURL(N.type||"image/png",(N.rendererOpts||{}).quality)}},2334:(Ve,j,p)=>{const t=p(6355);function e(a,b){const d=a.a/255,N=b+'="'+a.hex+'"';return d<1?N+" "+b+'-opacity="'+d.toFixed(2).slice(1)+'"':N}function f(a,b,d){let N=a+b;return void 0!==d&&(N+=" "+d),N}j.render=function(b,d,N){const h=t.getOptions(d),A=b.modules.size,w=b.modules.data,D=A+2*h.margin,L=h.color.light.a?"':"",k="0&&L>0&&a[D-1]||(N+=A?f("M",L+d,.5+k+d):f("m",h,0),h=0,A=!1),L+1',Z=''+L+k+"\n";return"function"==typeof N&&N(null,Z),Z}},6355:(Ve,j)=>{function p(t){if("number"==typeof t&&(t=t.toString()),"string"!=typeof t)throw new Error("Color should be defined as hex string");let e=t.slice().replace("#","").split("");if(e.length<3||5===e.length||e.length>8)throw new Error("Invalid hex color: "+t);(3===e.length||4===e.length)&&(e=Array.prototype.concat.apply([],e.map(function(M){return[M,M]}))),6===e.length&&e.push("F","F");const f=parseInt(e.join(""),16);return{r:f>>24&255,g:f>>16&255,b:f>>8&255,a:255&f,hex:"#"+e.slice(0,6).join("")}}j.getOptions=function(e){e||(e={}),e.color||(e.color={});const M=e.width&&e.width>=21?e.width:void 0;return{width:M,scale:M?4:e.scale||4,margin:null==e.margin||e.margin<0?4:e.margin,color:{dark:p(e.color.dark||"#000000ff"),light:p(e.color.light||"#ffffffff")},type:e.type,rendererOpts:e.rendererOpts||{}}},j.getScale=function(e,f){return f.width&&f.width>=e+2*f.margin?f.width/(e+2*f.margin):f.scale},j.getImageWidth=function(e,f){const M=j.getScale(e,f);return Math.floor((e+2*f.margin)*M)},j.qrToImageData=function(e,f,M){const a=f.modules.size,b=f.modules.data,d=j.getScale(a,M),N=Math.floor((a+2*M.margin)*d),h=M.margin*d,A=[M.color.light,M.color.dark];for(let w=0;w=h&&D>=h&&w{"use strict";var t=65536,M=p(3502).Buffer,a=global.crypto||global.msCrypto;Ve.exports=a&&a.getRandomValues?function b(d,N){if(d>4294967295)throw new RangeError("requested too many random bytes");var h=M.allocUnsafe(d);if(d>0)if(d>t)for(var A=0;A{"use strict";function t(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var e=p(3502),f=p(3753),M=e.Buffer,a=e.kMaxLength,b=global.crypto||global.msCrypto,d=Math.pow(2,32)-1;function N(L,k){if("number"!=typeof L||L!=L)throw new TypeError("offset must be a number");if(L>d||L<0)throw new TypeError("offset must be a uint32");if(L>a||L>k)throw new RangeError("offset out of range")}function h(L,k,S){if("number"!=typeof L||L!=L)throw new TypeError("size must be a number");if(L>d||L<0)throw new TypeError("size must be a uint32");if(L+k>S||L>a)throw new RangeError("buffer too small")}function w(L,k,S,U){if(process.browser){var Y=new Uint8Array(L.buffer,k,S);return b.getRandomValues(Y),U?void process.nextTick(function(){U(null,L)}):L}if(!U)return f(S).copy(L,k),L;f(S,function($,de){if($)return U($);de.copy(L,k),U(null,L)})}b&&b.getRandomValues||!process.browser?(j.randomFill=function A(L,k,S,U){if(!(M.isBuffer(L)||L instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof k)U=k,k=0,S=L.length;else if("function"==typeof S)U=S,S=L.length-k;else if("function"!=typeof U)throw new TypeError('"cb" argument must be a function');return N(k,L.length),h(S,k,L.length),w(L,k,S,U)},j.randomFillSync=function D(L,k,S){if(void 0===k&&(k=0),!(M.isBuffer(L)||L instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return N(k,L.length),void 0===S&&(S=L.length-k),h(S,k,L.length),w(L,k,S)}):(j.randomFill=t,j.randomFillSync=t)},891:Ve=>{"use strict";var p={};function t(b,d,N){N||(N=Error);var A=function(w){function D(L,k,S){return w.call(this,function h(w,D,L){return"string"==typeof d?d:d(w,D,L)}(L,k,S))||this}return function j(b,d){b.prototype=Object.create(d.prototype),b.prototype.constructor=b,b.__proto__=d}(D,w),D}(N);A.prototype.name=N.name,A.prototype.code=b,p[b]=A}function e(b,d){if(Array.isArray(b)){var N=b.length;return b=b.map(function(h){return String(h)}),N>2?"one of ".concat(d," ").concat(b.slice(0,N-1).join(", "),", or ")+b[N-1]:2===N?"one of ".concat(d," ").concat(b[0]," or ").concat(b[1]):"of ".concat(d," ").concat(b[0])}return"of ".concat(d," ").concat(String(b))}t("ERR_INVALID_OPT_VALUE",function(b,d){return'The value "'+d+'" is invalid for option "'+b+'"'},TypeError),t("ERR_INVALID_ARG_TYPE",function(b,d,N){var h,A;if("string"==typeof d&&function f(b,d,N){return b.substr(!N||N<0?0:+N,d.length)===d}(d,"not ")?(h="must not be",d=d.replace(/^not /,"")):h="must be",function M(b,d,N){return(void 0===N||N>b.length)&&(N=b.length),b.substring(N-d.length,N)===d}(b," argument"))A="The ".concat(b," ").concat(h," ").concat(e(d,"type"));else{var w=function a(b,d,N){return"number"!=typeof N&&(N=0),!(N+d.length>b.length)&&-1!==b.indexOf(d,N)}(b,".")?"property":"argument";A='The "'.concat(b,'" ').concat(w," ").concat(h," ").concat(e(d,"type"))}return A+". Received type ".concat(typeof N)},TypeError),t("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),t("ERR_METHOD_NOT_IMPLEMENTED",function(b){return"The "+b+" method is not implemented"}),t("ERR_STREAM_PREMATURE_CLOSE","Premature close"),t("ERR_STREAM_DESTROYED",function(b){return"Cannot call "+b+" after a stream was destroyed"}),t("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),t("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),t("ERR_STREAM_WRITE_AFTER_END","write after end"),t("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),t("ERR_UNKNOWN_ENCODING",function(b){return"Unknown encoding: "+b},TypeError),t("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Ve.exports.q=p},1339:(Ve,j,p)=>{"use strict";var t=Object.keys||function(A){var w=[];for(var D in A)w.push(D);return w};Ve.exports=d;var e=p(3154),f=p(520);p(3894)(d,e);for(var M=t(f.prototype),a=0;a{"use strict";Ve.exports=e;var t=p(6025);function e(f){if(!(this instanceof e))return new e(f);t.call(this,f)}p(3894)(e,t),e.prototype._transform=function(f,M,a){a(null,f)}},3154:(Ve,j,p)=>{"use strict";var t;Ve.exports=y,y.ReadableState=me,p(9069);var A,f=function(De,dt){return De.listeners(dt).length},M=p(4970),a=p(3172).Buffer,b=global.Uint8Array||function(){},h=p(4616);A=h&&h.debuglog?h.debuglog("stream"):function(){};var $,de,te,w=p(5019),D=p(1920),k=p(7102).getHighWaterMark,S=p(891).q,U=S.ERR_INVALID_ARG_TYPE,Z=S.ERR_STREAM_PUSH_AFTER_EOF,Y=S.ERR_METHOD_NOT_IMPLEMENTED,ne=S.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;p(3894)(y,M);var ie=D.errorOrDestroy,oe=["error","close","destroy","pause","resume"];function me(V,De,dt){t=t||p(1339),"boolean"!=typeof dt&&(dt=De instanceof t),this.objectMode=!!(V=V||{}).objectMode,dt&&(this.objectMode=this.objectMode||!!V.readableObjectMode),this.highWaterMark=k(this,V,"readableHighWaterMark",dt),this.buffer=new w,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==V.emitClose,this.autoDestroy=!!V.autoDestroy,this.destroyed=!1,this.defaultEncoding=V.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,V.encoding&&($||($=p(3054).s),this.decoder=new $(V.encoding),this.encoding=V.encoding)}function y(V){if(t=t||p(1339),!(this instanceof y))return new y(V);this._readableState=new me(V,this,this instanceof t),this.readable=!0,V&&("function"==typeof V.read&&(this._read=V.read),"function"==typeof V.destroy&&(this._destroy=V.destroy)),M.call(this)}function i(V,De,dt,Ie,Ae){A("readableAddChunk",De);var Te,le=V._readableState;if(null===De)le.reading=!1,function I(V,De){if(A("onEofChunk"),!De.ended){if(De.decoder){var dt=De.decoder.end();dt&&dt.length&&(De.buffer.push(dt),De.length+=De.objectMode?1:dt.length)}De.ended=!0,De.sync?v(V):(De.needReadable=!1,De.emittedReadable||(De.emittedReadable=!0,n(V)))}}(V,le);else if(Ae||(Te=function u(V,De){var dt;return!function N(V){return a.isBuffer(V)||V instanceof b}(De)&&"string"!=typeof De&&void 0!==De&&!V.objectMode&&(dt=new U("chunk",["string","Buffer","Uint8Array"],De)),dt}(le,De)),Te)ie(V,Te);else if(le.objectMode||De&&De.length>0)if("string"!=typeof De&&!le.objectMode&&Object.getPrototypeOf(De)!==a.prototype&&(De=function d(V){return a.from(V)}(De)),Ie)le.endEmitted?ie(V,new ne):r(V,le,De,!0);else if(le.ended)ie(V,new Z);else{if(le.destroyed)return!1;le.reading=!1,le.decoder&&!dt?(De=le.decoder.write(De),le.objectMode||0!==De.length?r(V,le,De,!1):C(V,le)):r(V,le,De,!1)}else Ie||(le.reading=!1,C(V,le));return!le.ended&&(le.lengthDe.highWaterMark&&(De.highWaterMark=function _(V){return V>=c?V=c:(V--,V|=V>>>1,V|=V>>>2,V|=V>>>4,V|=V>>>8,V|=V>>>16,V++),V}(V)),V<=De.length?V:De.ended?De.length:(De.needReadable=!0,0))}function v(V){var De=V._readableState;A("emitReadable",De.needReadable,De.emittedReadable),De.needReadable=!1,De.emittedReadable||(A("emitReadable",De.flowing),De.emittedReadable=!0,process.nextTick(n,V))}function n(V){var De=V._readableState;A("emitReadable_",De.destroyed,De.length,De.ended),!De.destroyed&&(De.length||De.ended)&&(V.emit("readable"),De.emittedReadable=!1),De.needReadable=!De.flowing&&!De.ended&&De.length<=De.highWaterMark,Ne(V)}function C(V,De){De.readingMore||(De.readingMore=!0,process.nextTick(B,V,De))}function B(V,De){for(;!De.reading&&!De.ended&&(De.length0,De.resumeScheduled&&!De.paused?De.flowing=!0:V.listenerCount("data")>0&&V.resume()}function q(V){A("readable nexttick read 0"),V.read(0)}function _e(V,De){A("resume",De.reading),De.reading||V.read(0),De.resumeScheduled=!1,V.emit("resume"),Ne(V),De.flowing&&!De.reading&&V.read(0)}function Ne(V){var De=V._readableState;for(A("flow",De.flowing);De.flowing&&null!==V.read(););}function we(V,De){return 0===De.length?null:(De.objectMode?dt=De.buffer.shift():!V||V>=De.length?(dt=De.decoder?De.buffer.join(""):1===De.buffer.length?De.buffer.first():De.buffer.concat(De.length),De.buffer.clear()):dt=De.buffer.consume(V,De.decoder),dt);var dt}function Q(V){var De=V._readableState;A("endReadable",De.endEmitted),De.endEmitted||(De.ended=!0,process.nextTick(Ue,De,V))}function Ue(V,De){if(A("endReadableNT",V.endEmitted,V.length),!V.endEmitted&&0===V.length&&(V.endEmitted=!0,De.readable=!1,De.emit("end"),V.autoDestroy)){var dt=De._writableState;(!dt||dt.autoDestroy&&dt.finished)&&De.destroy()}}function ve(V,De){for(var dt=0,Ie=V.length;dt=De.highWaterMark:De.length>0)||De.ended))return A("read: emitReadable",De.length,De.ended),0===De.length&&De.ended?Q(this):v(this),null;if(0===(V=E(V,De))&&De.ended)return 0===De.length&&Q(this),null;var Ae,Ie=De.needReadable;return A("need readable",Ie),(0===De.length||De.length-V0?we(V,De):null)?(De.needReadable=De.length<=De.highWaterMark,V=0):(De.length-=V,De.awaitDrain=0),0===De.length&&(De.ended||(De.needReadable=!0),dt!==V&&De.ended&&Q(this)),null!==Ae&&this.emit("data",Ae),Ae},y.prototype._read=function(V){ie(this,new Y("_read()"))},y.prototype.pipe=function(V,De){var dt=this,Ie=this._readableState;switch(Ie.pipesCount){case 0:Ie.pipes=V;break;case 1:Ie.pipes=[Ie.pipes,V];break;default:Ie.pipes.push(V)}Ie.pipesCount+=1,A("pipe count=%d opts=%j",Ie.pipesCount,De);var le=De&&!1===De.end||V===process.stdout||V===process.stderr?It:xe;function xe(){A("onend"),V.end()}Ie.endEmitted?process.nextTick(le):dt.once("end",le),V.on("unpipe",function Te(ui,Wt){A("onunpipe"),ui===dt&&Wt&&!1===Wt.hasUnpiped&&(Wt.hasUnpiped=!0,function ue(){A("cleanup"),V.removeListener("close",ut),V.removeListener("finish",ht),V.removeListener("drain",W),V.removeListener("error",Le),V.removeListener("unpipe",Te),dt.removeListener("end",xe),dt.removeListener("end",It),dt.removeListener("data",Ce),ee=!0,Ie.awaitDrain&&(!V._writableState||V._writableState.needDrain)&&W()}())});var W=function P(V){return function(){var dt=V._readableState;A("pipeOnDrain",dt.awaitDrain),dt.awaitDrain&&dt.awaitDrain--,0===dt.awaitDrain&&f(V,"data")&&(dt.flowing=!0,Ne(V))}}(dt);V.on("drain",W);var ee=!1;function Ce(ui){A("ondata");var Wt=V.write(ui);A("dest.write",Wt),!1===Wt&&((1===Ie.pipesCount&&Ie.pipes===V||Ie.pipesCount>1&&-1!==ve(Ie.pipes,V))&&!ee&&(A("false write response, pause",Ie.awaitDrain),Ie.awaitDrain++),dt.pause())}function Le(ui){A("onerror",ui),It(),V.removeListener("error",Le),0===f(V,"error")&&ie(V,ui)}function ut(){V.removeListener("finish",ht),It()}function ht(){A("onfinish"),V.removeListener("close",ut),It()}function It(){A("unpipe"),dt.unpipe(V)}return dt.on("data",Ce),function X(V,De,dt){if("function"==typeof V.prependListener)return V.prependListener(De,dt);V._events&&V._events[De]?Array.isArray(V._events[De])?V._events[De].unshift(dt):V._events[De]=[dt,V._events[De]]:V.on(De,dt)}(V,"error",Le),V.once("close",ut),V.once("finish",ht),V.emit("pipe",dt),Ie.flowing||(A("pipe resume"),dt.resume()),V},y.prototype.unpipe=function(V){var De=this._readableState,dt={hasUnpiped:!1};if(0===De.pipesCount)return this;if(1===De.pipesCount)return V&&V!==De.pipes||(V||(V=De.pipes),De.pipes=null,De.pipesCount=0,De.flowing=!1,V&&V.emit("unpipe",this,dt)),this;if(!V){var Ie=De.pipes,Ae=De.pipesCount;De.pipes=null,De.pipesCount=0,De.flowing=!1;for(var le=0;le0,!1!==Ie.flowing&&this.resume()):"readable"===V&&!Ie.endEmitted&&!Ie.readableListening&&(Ie.readableListening=Ie.needReadable=!0,Ie.flowing=!1,Ie.emittedReadable=!1,A("on readable",Ie.length,Ie.reading),Ie.length?v(this):Ie.reading||process.nextTick(q,this)),dt},y.prototype.removeListener=function(V,De){var dt=M.prototype.removeListener.call(this,V,De);return"readable"===V&&process.nextTick(H,this),dt},y.prototype.removeAllListeners=function(V){var De=M.prototype.removeAllListeners.apply(this,arguments);return("readable"===V||void 0===V)&&process.nextTick(H,this),De},y.prototype.resume=function(){var V=this._readableState;return V.flowing||(A("resume"),V.flowing=!V.readableListening,function he(V,De){De.resumeScheduled||(De.resumeScheduled=!0,process.nextTick(_e,V,De))}(this,V)),V.paused=!1,this},y.prototype.pause=function(){return A("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(A("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},y.prototype.wrap=function(V){var De=this,dt=this._readableState,Ie=!1;for(var Ae in V.on("end",function(){if(A("wrapped end"),dt.decoder&&!dt.ended){var Te=dt.decoder.end();Te&&Te.length&&De.push(Te)}De.push(null)}),V.on("data",function(Te){A("wrapped data"),dt.decoder&&(Te=dt.decoder.write(Te)),dt.objectMode&&null==Te||!(dt.objectMode||Te&&Te.length)||De.push(Te)||(Ie=!0,V.pause())}),V)void 0===this[Ae]&&"function"==typeof V[Ae]&&(this[Ae]=function(xe){return function(){return V[xe].apply(V,arguments)}}(Ae));for(var le=0;le{"use strict";Ve.exports=N;var t=p(891).q,e=t.ERR_METHOD_NOT_IMPLEMENTED,f=t.ERR_MULTIPLE_CALLBACK,M=t.ERR_TRANSFORM_ALREADY_TRANSFORMING,a=t.ERR_TRANSFORM_WITH_LENGTH_0,b=p(1339);function d(w,D){var L=this._transformState;L.transforming=!1;var k=L.writecb;if(null===k)return this.emit("error",new f);L.writechunk=null,L.writecb=null,null!=D&&this.push(D),k(w);var S=this._readableState;S.reading=!1,(S.needReadable||S.length{"use strict";function e(Ne){var we=this;this.next=null,this.entry=null,this.finish=function(){!function _e(Ne,we,Q){var Ue=Ne.entry;for(Ne.entry=null;Ue;){var ve=Ue.callback;we.pendingcb--,ve(Q),Ue=Ue.next}we.corkedRequestsFree.next=Ne}(we,Ne)}}var f;Ve.exports=me,me.WritableState=oe;var X,M={deprecate:p(4364)},a=p(4970),b=p(3172).Buffer,d=global.Uint8Array||function(){},A=p(1920),D=p(7102).getHighWaterMark,L=p(891).q,k=L.ERR_INVALID_ARG_TYPE,S=L.ERR_METHOD_NOT_IMPLEMENTED,U=L.ERR_MULTIPLE_CALLBACK,Z=L.ERR_STREAM_CANNOT_PIPE,Y=L.ERR_STREAM_DESTROYED,ne=L.ERR_STREAM_NULL_VALUES,$=L.ERR_STREAM_WRITE_AFTER_END,de=L.ERR_UNKNOWN_ENCODING,te=A.errorOrDestroy;function ie(){}function oe(Ne,we,Q){f=f||p(1339),"boolean"!=typeof Q&&(Q=we instanceof f),this.objectMode=!!(Ne=Ne||{}).objectMode,Q&&(this.objectMode=this.objectMode||!!Ne.writableObjectMode),this.highWaterMark=D(this,Ne,"writableHighWaterMark",Q),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Ne.decodeStrings),this.defaultEncoding=Ne.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ve){!function I(Ne,we){var Q=Ne._writableState,Ue=Q.sync,ve=Q.writecb;if("function"!=typeof ve)throw new U;if(function E(Ne){Ne.writing=!1,Ne.writecb=null,Ne.length-=Ne.writelen,Ne.writelen=0}(Q),we)!function _(Ne,we,Q,Ue,ve){--we.pendingcb,Q?(process.nextTick(ve,Ue),process.nextTick(q,Ne,we),Ne._writableState.errorEmitted=!0,te(Ne,Ue)):(ve(Ue),Ne._writableState.errorEmitted=!0,te(Ne,Ue),q(Ne,we))}(Ne,Q,Ue,we,ve);else{var V=B(Q)||Ne.destroyed;!V&&!Q.corked&&!Q.bufferProcessing&&Q.bufferedRequest&&C(Ne,Q),Ue?process.nextTick(v,Ne,Q,V,ve):v(Ne,Q,V,ve)}}(we,ve)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Ne.emitClose,this.autoDestroy=!!Ne.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new e(this)}function me(Ne){var we=this instanceof(f=f||p(1339));if(!we&&!X.call(me,this))return new me(Ne);this._writableState=new oe(Ne,this,we),this.writable=!0,Ne&&("function"==typeof Ne.write&&(this._write=Ne.write),"function"==typeof Ne.writev&&(this._writev=Ne.writev),"function"==typeof Ne.destroy&&(this._destroy=Ne.destroy),"function"==typeof Ne.final&&(this._final=Ne.final)),a.call(this)}function c(Ne,we,Q,Ue,ve,V,De){we.writelen=Ue,we.writecb=De,we.writing=!0,we.sync=!0,we.destroyed?we.onwrite(new Y("write")):Q?Ne._writev(ve,we.onwrite):Ne._write(ve,V,we.onwrite),we.sync=!1}function v(Ne,we,Q,Ue){Q||function n(Ne,we){0===we.length&&we.needDrain&&(we.needDrain=!1,Ne.emit("drain"))}(Ne,we),we.pendingcb--,Ue(),q(Ne,we)}function C(Ne,we){we.bufferProcessing=!0;var Q=we.bufferedRequest;if(Ne._writev&&Q&&Q.next){var ve=new Array(we.bufferedRequestCount),V=we.corkedRequestsFree;V.entry=Q;for(var De=0,dt=!0;Q;)ve[De]=Q,Q.isBuf||(dt=!1),Q=Q.next,De+=1;ve.allBuffers=dt,c(Ne,we,!0,we.length,ve,"",V.finish),we.pendingcb++,we.lastBufferedRequest=null,V.next?(we.corkedRequestsFree=V.next,V.next=null):we.corkedRequestsFree=new e(we),we.bufferedRequestCount=0}else{for(;Q;){var Ie=Q.chunk;if(c(Ne,we,!1,we.objectMode?1:Ie.length,Ie,Q.encoding,Q.callback),Q=Q.next,we.bufferedRequestCount--,we.writing)break}null===Q&&(we.lastBufferedRequest=null)}we.bufferedRequest=Q,we.bufferProcessing=!1}function B(Ne){return Ne.ending&&0===Ne.length&&null===Ne.bufferedRequest&&!Ne.finished&&!Ne.writing}function P(Ne,we){Ne._final(function(Q){we.pendingcb--,Q&&te(Ne,Q),we.prefinished=!0,Ne.emit("prefinish"),q(Ne,we)})}function q(Ne,we){var Q=B(we);if(Q&&(function H(Ne,we){!we.prefinished&&!we.finalCalled&&("function"!=typeof Ne._final||we.destroyed?(we.prefinished=!0,Ne.emit("prefinish")):(we.pendingcb++,we.finalCalled=!0,process.nextTick(P,Ne,we)))}(Ne,we),0===we.pendingcb&&(we.finished=!0,Ne.emit("finish"),we.autoDestroy))){var Ue=Ne._readableState;(!Ue||Ue.autoDestroy&&Ue.endEmitted)&&Ne.destroy()}return Q}p(3894)(me,a),oe.prototype.getBuffer=function(){for(var we=this.bufferedRequest,Q=[];we;)Q.push(we),we=we.next;return Q},function(){try{Object.defineProperty(oe.prototype,"buffer",{get:M.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(Ne){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(X=Function.prototype[Symbol.hasInstance],Object.defineProperty(me,Symbol.hasInstance,{value:function(we){return!!X.call(this,we)||this===me&&we&&we._writableState instanceof oe}})):X=function(we){return we instanceof this},me.prototype.pipe=function(){te(this,new Z)},me.prototype.write=function(Ne,we,Q){var Ue=this._writableState,ve=!1,V=!Ue.objectMode&&function h(Ne){return b.isBuffer(Ne)||Ne instanceof d}(Ne);return V&&!b.isBuffer(Ne)&&(Ne=function N(Ne){return b.from(Ne)}(Ne)),"function"==typeof we&&(Q=we,we=null),V?we="buffer":we||(we=Ue.defaultEncoding),"function"!=typeof Q&&(Q=ie),Ue.ending?function y(Ne,we){var Q=new $;te(Ne,Q),process.nextTick(we,Q)}(this,Q):(V||function i(Ne,we,Q,Ue){var ve;return null===Q?ve=new ne:"string"!=typeof Q&&!we.objectMode&&(ve=new k("chunk",["string","Buffer"],Q)),!ve||(te(Ne,ve),process.nextTick(Ue,ve),!1)}(this,Ue,Ne,Q))&&(Ue.pendingcb++,ve=function u(Ne,we,Q,Ue,ve,V){if(!Q){var De=function r(Ne,we,Q){return!Ne.objectMode&&!1!==Ne.decodeStrings&&"string"==typeof we&&(we=b.from(we,Q)),we}(we,Ue,ve);Ue!==De&&(Q=!0,ve="buffer",Ue=De)}var dt=we.objectMode?1:Ue.length;we.length+=dt;var Ie=we.length-1))throw new de(we);return this._writableState.defaultEncoding=we,this},Object.defineProperty(me.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(me.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),me.prototype._write=function(Ne,we,Q){Q(new S("_write()"))},me.prototype._writev=null,me.prototype.end=function(Ne,we,Q){var Ue=this._writableState;return"function"==typeof Ne?(Q=Ne,Ne=null,we=null):"function"==typeof we&&(Q=we,we=null),null!=Ne&&this.write(Ne,we),Ue.corked&&(Ue.corked=1,this.uncork()),Ue.ending||function he(Ne,we,Q){we.ending=!0,q(Ne,we),Q&&(we.finished?process.nextTick(Q):Ne.once("finish",Q)),we.ended=!0,Ne.writable=!1}(this,Ue,Q),this},Object.defineProperty(me.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(me.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(we){!this._writableState||(this._writableState.destroyed=we)}}),me.prototype.destroy=A.destroy,me.prototype._undestroy=A.undestroy,me.prototype._destroy=function(Ne,we){we(Ne)}},3872:(Ve,j,p)=>{"use strict";var t;function e(Y,ne,$){return ne in Y?Object.defineProperty(Y,ne,{value:$,enumerable:!0,configurable:!0,writable:!0}):Y[ne]=$,Y}var f=p(7542),M=Symbol("lastResolve"),a=Symbol("lastReject"),b=Symbol("error"),d=Symbol("ended"),N=Symbol("lastPromise"),h=Symbol("handlePromise"),A=Symbol("stream");function w(Y,ne){return{value:Y,done:ne}}function D(Y){var ne=Y[M];if(null!==ne){var $=Y[A].read();null!==$&&(Y[N]=null,Y[M]=null,Y[a]=null,ne(w($,!1)))}}function L(Y){process.nextTick(D,Y)}var S=Object.getPrototypeOf(function(){}),U=Object.setPrototypeOf((e(t={get stream(){return this[A]},next:function(){var ne=this,$=this[b];if(null!==$)return Promise.reject($);if(this[d])return Promise.resolve(w(void 0,!0));if(this[A].destroyed)return new Promise(function(oe,X){process.nextTick(function(){ne[b]?X(ne[b]):oe(w(void 0,!0))})});var te,de=this[N];if(de)te=new Promise(function k(Y,ne){return function($,de){Y.then(function(){ne[d]?$(w(void 0,!0)):ne[h]($,de)},de)}}(de,this));else{var ie=this[A].read();if(null!==ie)return Promise.resolve(w(ie,!1));te=new Promise(this[h])}return this[N]=te,te}},Symbol.asyncIterator,function(){return this}),e(t,"return",function(){var ne=this;return new Promise(function($,de){ne[A].destroy(null,function(te){te?de(te):$(w(void 0,!0))})})}),t),S);Ve.exports=function(ne){var $,de=Object.create(U,(e($={},A,{value:ne,writable:!0}),e($,M,{value:null,writable:!0}),e($,a,{value:null,writable:!0}),e($,b,{value:null,writable:!0}),e($,d,{value:ne._readableState.endEmitted,writable:!0}),e($,h,{value:function(ie,oe){var X=de[A].read();X?(de[N]=null,de[M]=null,de[a]=null,ie(w(X,!1))):(de[M]=ie,de[a]=oe)},writable:!0}),$));return de[N]=null,f(ne,function(te){if(te&&"ERR_STREAM_PREMATURE_CLOSE"!==te.code){var ie=de[a];return null!==ie&&(de[N]=null,de[M]=null,de[a]=null,ie(te)),void(de[b]=te)}var oe=de[M];null!==oe&&(de[N]=null,de[M]=null,de[a]=null,oe(w(void 0,!0))),de[d]=!0}),ne.on("readable",L.bind(null,de)),de}},5019:(Ve,j,p)=>{"use strict";function t(L,k){var S=Object.keys(L);if(Object.getOwnPropertySymbols){var U=Object.getOwnPropertySymbols(L);k&&(U=U.filter(function(Z){return Object.getOwnPropertyDescriptor(L,Z).enumerable})),S.push.apply(S,U)}return S}function f(L,k,S){return k in L?Object.defineProperty(L,k,{value:S,enumerable:!0,configurable:!0,writable:!0}):L[k]=S,L}function a(L,k){for(var S=0;S0?this.tail.next=U:this.head=U,this.tail=U,++this.length}},{key:"unshift",value:function(S){var U={data:S,next:this.head};0===this.length&&(this.tail=U),this.head=U,++this.length}},{key:"shift",value:function(){if(0!==this.length){var S=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,S}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(S){if(0===this.length)return"";for(var U=this.head,Z=""+U.data;U=U.next;)Z+=S+U.data;return Z}},{key:"concat",value:function(S){if(0===this.length)return N.alloc(0);for(var U=N.allocUnsafe(S>>>0),Z=this.head,Y=0;Z;)D(Z.data,U,Y),Y+=Z.data.length,Z=Z.next;return U}},{key:"consume",value:function(S,U){var Z;return Sne.length?ne.length:S;if(Y+=$===ne.length?ne:ne.slice(0,S),0==(S-=$)){$===ne.length?(++Z,this.head=U.next?U.next:this.tail=null):(this.head=U,U.data=ne.slice($));break}++Z}return this.length-=Z,Y}},{key:"_getBuffer",value:function(S){var U=N.allocUnsafe(S),Z=this.head,Y=1;for(Z.data.copy(U),S-=Z.data.length;Z=Z.next;){var ne=Z.data,$=S>ne.length?ne.length:S;if(ne.copy(U,U.length-S,0,$),0==(S-=$)){$===ne.length?(++Y,this.head=Z.next?Z.next:this.tail=null):(this.head=Z,Z.data=ne.slice($));break}++Y}return this.length-=Y,U}},{key:w,value:function(S,U){return A(this,function e(L){for(var k=1;k{"use strict";function p(a,b){f(a,b),t(a)}function t(a){a._writableState&&!a._writableState.emitClose||a._readableState&&!a._readableState.emitClose||a.emit("close")}function f(a,b){a.emit("error",b)}Ve.exports={destroy:function j(a,b){var d=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(b?b(a):a&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(f,this,a)):process.nextTick(f,this,a)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(a||null,function(A){!b&&A?d._writableState?d._writableState.errorEmitted?process.nextTick(t,d):(d._writableState.errorEmitted=!0,process.nextTick(p,d,A)):process.nextTick(p,d,A):b?(process.nextTick(t,d),b(A)):process.nextTick(t,d)}),this)},undestroy:function e(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function M(a,b){var d=a._readableState,N=a._writableState;d&&d.autoDestroy||N&&N.autoDestroy?a.destroy(b):a.emit("error",b)}}},7542:(Ve,j,p)=>{"use strict";var t=p(891).q.ERR_STREAM_PREMATURE_CLOSE;function f(){}Ve.exports=function a(b,d,N){if("function"==typeof d)return a(b,null,d);d||(d={}),N=function e(b){var d=!1;return function(){if(!d){d=!0;for(var N=arguments.length,h=new Array(N),A=0;A{Ve.exports=function(){throw new Error("Readable.from is not available in the browser")}},954:(Ve,j,p)=>{"use strict";var t,f=p(891).q,M=f.ERR_MISSING_ARGS,a=f.ERR_STREAM_DESTROYED;function b(L){if(L)throw L}function N(L,k,S,U){U=function e(L){var k=!1;return function(){k||(k=!0,L.apply(void 0,arguments))}}(U);var Z=!1;L.on("close",function(){Z=!0}),void 0===t&&(t=p(7542)),t(L,{readable:k,writable:S},function(ne){if(ne)return U(ne);Z=!0,U()});var Y=!1;return function(ne){if(!Z&&!Y){if(Y=!0,function d(L){return L.setHeader&&"function"==typeof L.abort}(L))return L.abort();if("function"==typeof L.destroy)return L.destroy();U(ne||new a("pipe"))}}}function h(L){L()}function A(L,k){return L.pipe(k)}function w(L){return L.length&&"function"==typeof L[L.length-1]?L.pop():b}Ve.exports=function D(){for(var L=arguments.length,k=new Array(L),S=0;S0,function(ie){Z||(Z=ie),ie&&Y.forEach(h),!de&&(Y.forEach(h),U(Z))})});return k.reduce(A)}},7102:(Ve,j,p)=>{"use strict";var t=p(891).q.ERR_INVALID_OPT_VALUE;Ve.exports={getHighWaterMark:function f(M,a,b,d){var N=function e(M,a,b){return null!=M.highWaterMark?M.highWaterMark:a?M[b]:null}(a,d,b);if(null!=N){if(!isFinite(N)||Math.floor(N)!==N||N<0)throw new t(d?b:"highWaterMark",N);return Math.floor(N)}return M.objectMode?16:16384}}},4970:(Ve,j,p)=>{Ve.exports=p(9069).EventEmitter},5685:(Ve,j,p)=>{(j=Ve.exports=p(3154)).Stream=j,j.Readable=j,j.Writable=p(520),j.Duplex=p(1339),j.Transform=p(6025),j.PassThrough=p(6071),j.finished=p(7542),j.pipeline=p(954)},5634:(Ve,j,p)=>{"use strict";var t=p(3172).Buffer,e=p(3894),f=p(9650),M=new Array(16),a=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],b=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],d=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],N=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11],h=[0,1518500249,1859775393,2400959708,2840853838],A=[1352829926,1548603684,1836072691,2053994217,0];function w(){f.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function D(Y,ne){return Y<>>32-ne}function L(Y,ne,$,de,te,ie,oe,X){return D(Y+(ne^$^de)+ie+oe|0,X)+te|0}function k(Y,ne,$,de,te,ie,oe,X){return D(Y+(ne&$|~ne&de)+ie+oe|0,X)+te|0}function S(Y,ne,$,de,te,ie,oe,X){return D(Y+((ne|~$)^de)+ie+oe|0,X)+te|0}function U(Y,ne,$,de,te,ie,oe,X){return D(Y+(ne&de|$&~de)+ie+oe|0,X)+te|0}function Z(Y,ne,$,de,te,ie,oe,X){return D(Y+(ne^($|~de))+ie+oe|0,X)+te|0}e(w,f),w.prototype._update=function(){for(var Y=M,ne=0;ne<16;++ne)Y[ne]=this._block.readInt32LE(4*ne);for(var $=0|this._a,de=0|this._b,te=0|this._c,ie=0|this._d,oe=0|this._e,X=0|this._a,me=0|this._b,y=0|this._c,i=0|this._d,r=0|this._e,u=0;u<80;u+=1){var c,_;u<16?(c=L($,de,te,ie,oe,Y[a[u]],h[0],d[u]),_=Z(X,me,y,i,r,Y[b[u]],A[0],N[u])):u<32?(c=k($,de,te,ie,oe,Y[a[u]],h[1],d[u]),_=U(X,me,y,i,r,Y[b[u]],A[1],N[u])):u<48?(c=S($,de,te,ie,oe,Y[a[u]],h[2],d[u]),_=S(X,me,y,i,r,Y[b[u]],A[2],N[u])):u<64?(c=U($,de,te,ie,oe,Y[a[u]],h[3],d[u]),_=k(X,me,y,i,r,Y[b[u]],A[3],N[u])):(c=Z($,de,te,ie,oe,Y[a[u]],h[4],d[u]),_=L(X,me,y,i,r,Y[b[u]],A[4],N[u])),$=oe,oe=ie,ie=D(te,10),te=de,de=c,X=r,r=i,i=D(y,10),y=me,me=_}var E=this._b+te+i|0;this._b=this._c+ie+r|0,this._c=this._d+oe+X|0,this._d=this._e+$+me|0,this._e=this._a+de+y|0,this._a=E},w.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var Y=t.alloc?t.alloc(20):new t(20);return Y.writeInt32LE(this._a,0),Y.writeInt32LE(this._b,4),Y.writeInt32LE(this._c,8),Y.writeInt32LE(this._d,12),Y.writeInt32LE(this._e,16),Y},Ve.exports=w},1135:(Ve,j,p)=>{"use strict";p.d(j,{X:()=>e});var t=p(7579);class e extends t.x{constructor(M){super(),this._value=M}get value(){return this.getValue()}_subscribe(M){const a=super._subscribe(M);return!a.closed&&M.next(this._value),a}getValue(){const{hasError:M,thrownError:a,_value:b}=this;if(M)throw a;return this._throwIfClosed(),b}next(M){super.next(this._value=M)}}},8306:(Ve,j,p)=>{"use strict";p.d(j,{y:()=>A});var t=p(930),e=p(727),f=p(8822),M=p(4671);var d=p(2416),N=p(576),h=p(2806);let A=(()=>{class k{constructor(U){U&&(this._subscribe=U)}lift(U){const Z=new k;return Z.source=this,Z.operator=U,Z}subscribe(U,Z,Y){const ne=function L(k){return k&&k instanceof t.Lv||function D(k){return k&&(0,N.m)(k.next)&&(0,N.m)(k.error)&&(0,N.m)(k.complete)}(k)&&(0,e.Nn)(k)}(U)?U:new t.Hp(U,Z,Y);return(0,h.x)(()=>{const{operator:$,source:de}=this;ne.add($?$.call(ne,de):de?this._subscribe(ne):this._trySubscribe(ne))}),ne}_trySubscribe(U){try{return this._subscribe(U)}catch(Z){U.error(Z)}}forEach(U,Z){return new(Z=w(Z))((Y,ne)=>{const $=new t.Hp({next:de=>{try{U(de)}catch(te){ne(te),$.unsubscribe()}},error:ne,complete:Y});this.subscribe($)})}_subscribe(U){var Z;return null===(Z=this.source)||void 0===Z?void 0:Z.subscribe(U)}[f.L](){return this}pipe(...U){return function b(k){return 0===k.length?M.y:1===k.length?k[0]:function(U){return k.reduce((Z,Y)=>Y(Z),U)}}(U)(this)}toPromise(U){return new(U=w(U))((Z,Y)=>{let ne;this.subscribe($=>ne=$,$=>Y($),()=>Z(ne))})}}return k.create=S=>new k(S),k})();function w(k){var S;return null!==(S=null!=k?k:d.v.Promise)&&void 0!==S?S:Promise}},4707:(Ve,j,p)=>{"use strict";p.d(j,{t:()=>f});var t=p(7579),e=p(6063);class f extends t.x{constructor(a=1/0,b=1/0,d=e.l){super(),this._bufferSize=a,this._windowTime=b,this._timestampProvider=d,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=b===1/0,this._bufferSize=Math.max(1,a),this._windowTime=Math.max(1,b)}next(a){const{isStopped:b,_buffer:d,_infiniteTimeWindow:N,_timestampProvider:h,_windowTime:A}=this;b||(d.push(a),!N&&d.push(h.now()+A)),this._trimBuffer(),super.next(a)}_subscribe(a){this._throwIfClosed(),this._trimBuffer();const b=this._innerSubscribe(a),{_infiniteTimeWindow:d,_buffer:N}=this,h=N.slice();for(let A=0;A{"use strict";p.d(j,{u:()=>N,x:()=>d});var t=p(8306),e=p(727);const M=(0,p(3888).d)(h=>function(){h(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var a=p(8737),b=p(2806);let d=(()=>{class h extends t.y{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(w){const D=new N(this,this);return D.operator=w,D}_throwIfClosed(){if(this.closed)throw new M}next(w){(0,b.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const D of this.currentObservers)D.next(w)}})}error(w){(0,b.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=w;const{observers:D}=this;for(;D.length;)D.shift().error(w)}})}complete(){(0,b.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:w}=this;for(;w.length;)w.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var w;return(null===(w=this.observers)||void 0===w?void 0:w.length)>0}_trySubscribe(w){return this._throwIfClosed(),super._trySubscribe(w)}_subscribe(w){return this._throwIfClosed(),this._checkFinalizedStatuses(w),this._innerSubscribe(w)}_innerSubscribe(w){const{hasError:D,isStopped:L,observers:k}=this;return D||L?e.Lc:(this.currentObservers=null,k.push(w),new e.w0(()=>{this.currentObservers=null,(0,a.P)(k,w)}))}_checkFinalizedStatuses(w){const{hasError:D,thrownError:L,isStopped:k}=this;D?w.error(L):k&&w.complete()}asObservable(){const w=new t.y;return w.source=this,w}}return h.create=(A,w)=>new N(A,w),h})();class N extends d{constructor(A,w){super(),this.destination=A,this.source=w}next(A){var w,D;null===(D=null===(w=this.destination)||void 0===w?void 0:w.next)||void 0===D||D.call(w,A)}error(A){var w,D;null===(D=null===(w=this.destination)||void 0===w?void 0:w.error)||void 0===D||D.call(w,A)}complete(){var A,w;null===(w=null===(A=this.destination)||void 0===A?void 0:A.complete)||void 0===w||w.call(A)}_subscribe(A){var w,D;return null!==(D=null===(w=this.source)||void 0===w?void 0:w.subscribe(A))&&void 0!==D?D:e.Lc}}},930:(Ve,j,p)=>{"use strict";p.d(j,{Hp:()=>U,Lv:()=>D});var t=p(576),e=p(727),f=p(2416),M=p(7849),a=p(5032);const b=h("C",void 0,void 0);function h(de,te,ie){return{kind:de,value:te,error:ie}}var A=p(3410),w=p(2806);class D extends e.w0{constructor(te){super(),this.isStopped=!1,te?(this.destination=te,(0,e.Nn)(te)&&te.add(this)):this.destination=$}static create(te,ie,oe){return new U(te,ie,oe)}next(te){this.isStopped?ne(function N(de){return h("N",de,void 0)}(te),this):this._next(te)}error(te){this.isStopped?ne(function d(de){return h("E",void 0,de)}(te),this):(this.isStopped=!0,this._error(te))}complete(){this.isStopped?ne(b,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(te){this.destination.next(te)}_error(te){try{this.destination.error(te)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const L=Function.prototype.bind;function k(de,te){return L.call(de,te)}class S{constructor(te){this.partialObserver=te}next(te){const{partialObserver:ie}=this;if(ie.next)try{ie.next(te)}catch(oe){Z(oe)}}error(te){const{partialObserver:ie}=this;if(ie.error)try{ie.error(te)}catch(oe){Z(oe)}else Z(te)}complete(){const{partialObserver:te}=this;if(te.complete)try{te.complete()}catch(ie){Z(ie)}}}class U extends D{constructor(te,ie,oe){let X;if(super(),(0,t.m)(te)||!te)X={next:null!=te?te:void 0,error:null!=ie?ie:void 0,complete:null!=oe?oe:void 0};else{let me;this&&f.v.useDeprecatedNextContext?(me=Object.create(te),me.unsubscribe=()=>this.unsubscribe(),X={next:te.next&&k(te.next,me),error:te.error&&k(te.error,me),complete:te.complete&&k(te.complete,me)}):X=te}this.destination=new S(X)}}function Z(de){f.v.useDeprecatedSynchronousErrorHandling?(0,w.O)(de):(0,M.h)(de)}function ne(de,te){const{onStoppedNotification:ie}=f.v;ie&&A.z.setTimeout(()=>ie(de,te))}const $={closed:!0,next:a.Z,error:function Y(de){throw de},complete:a.Z}},727:(Ve,j,p)=>{"use strict";p.d(j,{Lc:()=>b,w0:()=>a,Nn:()=>d});var t=p(576);const f=(0,p(3888).d)(h=>function(w){h(this),this.message=w?`${w.length} errors occurred during unsubscription:\n${w.map((D,L)=>`${L+1}) ${D.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=w});var M=p(8737);class a{constructor(A){this.initialTeardown=A,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let A;if(!this.closed){this.closed=!0;const{_parentage:w}=this;if(w)if(this._parentage=null,Array.isArray(w))for(const k of w)k.remove(this);else w.remove(this);const{initialTeardown:D}=this;if((0,t.m)(D))try{D()}catch(k){A=k instanceof f?k.errors:[k]}const{_finalizers:L}=this;if(L){this._finalizers=null;for(const k of L)try{N(k)}catch(S){A=null!=A?A:[],S instanceof f?A=[...A,...S.errors]:A.push(S)}}if(A)throw new f(A)}}add(A){var w;if(A&&A!==this)if(this.closed)N(A);else{if(A instanceof a){if(A.closed||A._hasParent(this))return;A._addParent(this)}(this._finalizers=null!==(w=this._finalizers)&&void 0!==w?w:[]).push(A)}}_hasParent(A){const{_parentage:w}=this;return w===A||Array.isArray(w)&&w.includes(A)}_addParent(A){const{_parentage:w}=this;this._parentage=Array.isArray(w)?(w.push(A),w):w?[w,A]:A}_removeParent(A){const{_parentage:w}=this;w===A?this._parentage=null:Array.isArray(w)&&(0,M.P)(w,A)}remove(A){const{_finalizers:w}=this;w&&(0,M.P)(w,A),A instanceof a&&A._removeParent(this)}}a.EMPTY=(()=>{const h=new a;return h.closed=!0,h})();const b=a.EMPTY;function d(h){return h instanceof a||h&&"closed"in h&&(0,t.m)(h.remove)&&(0,t.m)(h.add)&&(0,t.m)(h.unsubscribe)}function N(h){(0,t.m)(h)?h():h.unsubscribe()}},2416:(Ve,j,p)=>{"use strict";p.d(j,{v:()=>t});const t={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},9841:(Ve,j,p)=>{"use strict";p.d(j,{a:()=>A});var t=p(8306),e=p(4742),f=p(457),M=p(4671),a=p(3268),b=p(3269),d=p(1810),N=p(5403),h=p(9672);function A(...L){const k=(0,b.yG)(L),S=(0,b.jO)(L),{args:U,keys:Z}=(0,e.D)(L);if(0===U.length)return(0,f.D)([],k);const Y=new t.y(function w(L,k,S=M.y){return U=>{D(k,()=>{const{length:Z}=L,Y=new Array(Z);let ne=Z,$=Z;for(let de=0;de{const te=(0,f.D)(L[de],k);let ie=!1;te.subscribe((0,N.x)(U,oe=>{Y[de]=oe,ie||(ie=!0,$--),$||U.next(S(Y.slice()))},()=>{--ne||U.complete()}))},U)},U)}}(U,k,Z?ne=>(0,d.n)(Z,ne):M.y));return S?Y.pipe((0,a.Z)(S)):Y}function D(L,k,S){L?(0,h.f)(S,L,k):k()}},7272:(Ve,j,p)=>{"use strict";p.d(j,{z:()=>a});var t=p(8189),f=p(3269),M=p(457);function a(...b){return function e(){return(0,t.J)(1)}()((0,M.D)(b,(0,f.yG)(b)))}},9770:(Ve,j,p)=>{"use strict";p.d(j,{P:()=>f});var t=p(8306),e=p(8421);function f(M){return new t.y(a=>{(0,e.Xf)(M()).subscribe(a)})}},515:(Ve,j,p)=>{"use strict";p.d(j,{E:()=>e});const e=new(p(8306).y)(a=>a.complete())},4128:(Ve,j,p)=>{"use strict";p.d(j,{D:()=>N});var t=p(8306),e=p(4742),f=p(8421),M=p(3269),a=p(5403),b=p(3268),d=p(1810);function N(...h){const A=(0,M.jO)(h),{args:w,keys:D}=(0,e.D)(h),L=new t.y(k=>{const{length:S}=w;if(!S)return void k.complete();const U=new Array(S);let Z=S,Y=S;for(let ne=0;ne{$||($=!0,Y--),U[ne]=de},()=>Z--,void 0,()=>{(!Z||!$)&&(Y||k.next(D?(0,d.n)(D,U):U),k.complete())}))}});return A?L.pipe((0,b.Z)(A)):L}},457:(Ve,j,p)=>{"use strict";p.d(j,{D:()=>ie});var t=p(8421),e=p(5363),f=p(4482);function M(oe,X=0){return(0,f.e)((me,y)=>{y.add(oe.schedule(()=>me.subscribe(y),X))})}var d=p(8306),h=p(2202),A=p(576),w=p(9672);function L(oe,X){if(!oe)throw new Error("Iterable cannot be null");return new d.y(me=>{(0,w.f)(me,X,()=>{const y=oe[Symbol.asyncIterator]();(0,w.f)(me,X,()=>{y.next().then(i=>{i.done?me.complete():me.next(i.value)})},0,!0)})})}var k=p(3670),S=p(8239),U=p(1144),Z=p(6495),Y=p(2206),ne=p(4532),$=p(3260);function ie(oe,X){return X?function te(oe,X){if(null!=oe){if((0,k.c)(oe))return function a(oe,X){return(0,t.Xf)(oe).pipe(M(X),(0,e.Q)(X))}(oe,X);if((0,U.z)(oe))return function N(oe,X){return new d.y(me=>{let y=0;return X.schedule(function(){y===oe.length?me.complete():(me.next(oe[y++]),me.closed||this.schedule())})})}(oe,X);if((0,S.t)(oe))return function b(oe,X){return(0,t.Xf)(oe).pipe(M(X),(0,e.Q)(X))}(oe,X);if((0,Y.D)(oe))return L(oe,X);if((0,Z.T)(oe))return function D(oe,X){return new d.y(me=>{let y;return(0,w.f)(me,X,()=>{y=oe[h.h](),(0,w.f)(me,X,()=>{let i,r;try{({value:i,done:r}=y.next())}catch(u){return void me.error(u)}r?me.complete():me.next(i)},0,!0)}),()=>(0,A.m)(null==y?void 0:y.return)&&y.return()})}(oe,X);if((0,$.L)(oe))return function de(oe,X){return L((0,$.Q)(oe),X)}(oe,X)}throw(0,ne.z)(oe)}(oe,X):(0,t.Xf)(oe)}},4968:(Ve,j,p)=>{"use strict";p.d(j,{R:()=>A});var t=p(8421),e=p(8306),f=p(5577),M=p(1144),a=p(576),b=p(3268);const d=["addListener","removeListener"],N=["addEventListener","removeEventListener"],h=["on","off"];function A(S,U,Z,Y){if((0,a.m)(Z)&&(Y=Z,Z=void 0),Y)return A(S,U,Z).pipe((0,b.Z)(Y));const[ne,$]=function k(S){return(0,a.m)(S.addEventListener)&&(0,a.m)(S.removeEventListener)}(S)?N.map(de=>te=>S[de](U,te,Z)):function D(S){return(0,a.m)(S.addListener)&&(0,a.m)(S.removeListener)}(S)?d.map(w(S,U)):function L(S){return(0,a.m)(S.on)&&(0,a.m)(S.off)}(S)?h.map(w(S,U)):[];if(!ne&&(0,M.z)(S))return(0,f.z)(de=>A(de,U,Z))((0,t.Xf)(S));if(!ne)throw new TypeError("Invalid event target");return new e.y(de=>{const te=(...ie)=>de.next(1$(te)})}function w(S,U){return Z=>Y=>S[Z](U,Y)}},8421:(Ve,j,p)=>{"use strict";p.d(j,{Xf:()=>L});var t=p(655),e=p(1144),f=p(8239),M=p(8306),a=p(3670),b=p(2206),d=p(4532),N=p(6495),h=p(3260),A=p(576),w=p(7849),D=p(8822);function L(de){if(de instanceof M.y)return de;if(null!=de){if((0,a.c)(de))return function k(de){return new M.y(te=>{const ie=de[D.L]();if((0,A.m)(ie.subscribe))return ie.subscribe(te);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(de);if((0,e.z)(de))return function S(de){return new M.y(te=>{for(let ie=0;ie{de.then(ie=>{te.closed||(te.next(ie),te.complete())},ie=>te.error(ie)).then(null,w.h)})}(de);if((0,b.D)(de))return Y(de);if((0,N.T)(de))return function Z(de){return new M.y(te=>{for(const ie of de)if(te.next(ie),te.closed)return;te.complete()})}(de);if((0,h.L)(de))return function ne(de){return Y((0,h.Q)(de))}(de)}throw(0,d.z)(de)}function Y(de){return new M.y(te=>{(function $(de,te){var ie,oe,X,me;return(0,t.mG)(this,void 0,void 0,function*(){try{for(ie=(0,t.KL)(de);!(oe=yield ie.next()).done;)if(te.next(oe.value),te.closed)return}catch(y){X={error:y}}finally{try{oe&&!oe.done&&(me=ie.return)&&(yield me.call(ie))}finally{if(X)throw X.error}}te.complete()})})(de,te).catch(ie=>te.error(ie))})}},6451:(Ve,j,p)=>{"use strict";p.d(j,{T:()=>b});var t=p(8189),e=p(8421),f=p(515),M=p(3269),a=p(457);function b(...d){const N=(0,M.yG)(d),h=(0,M._6)(d,1/0),A=d;return A.length?1===A.length?(0,e.Xf)(A[0]):(0,t.J)(h)((0,a.D)(A,N)):f.E}},9646:(Ve,j,p)=>{"use strict";p.d(j,{of:()=>f});var t=p(3269),e=p(457);function f(...M){const a=(0,t.yG)(M);return(0,e.D)(M,a)}},2843:(Ve,j,p)=>{"use strict";p.d(j,{_:()=>f});var t=p(8306),e=p(576);function f(M,a){const b=(0,e.m)(M)?M:()=>M,d=N=>N.error(b());return new t.y(a?N=>a.schedule(d,0,N):d)}},2805:(Ve,j,p)=>{"use strict";p.d(j,{H:()=>a});var t=p(8306),e=p(4986),f=p(3532),M=p(1165);function a(b=0,d,N=e.P){let h=-1;return null!=d&&((0,f.K)(d)?N=d:h=d),new t.y(A=>{let w=(0,M.q)(b)?+b-N.now():b;w<0&&(w=0);let D=0;return N.schedule(function(){A.closed||(A.next(D++),0<=h?this.schedule(void 0,h):A.complete())},w)})}},5403:(Ve,j,p)=>{"use strict";p.d(j,{Q:()=>f,x:()=>e});var t=p(930);function e(M,a,b,d,N){return new f(M,a,b,d,N)}class f extends t.Lv{constructor(a,b,d,N,h,A){super(a),this.onFinalize=h,this.shouldUnsubscribe=A,this._next=b?function(w){try{b(w)}catch(D){a.error(D)}}:super._next,this._error=N?function(w){try{N(w)}catch(D){a.error(D)}finally{this.unsubscribe()}}:super._error,this._complete=d?function(){try{d()}catch(w){a.error(w)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var a;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:b}=this;super.unsubscribe(),!b&&(null===(a=this.onFinalize)||void 0===a||a.call(this))}}}},3601:(Ve,j,p)=>{"use strict";p.d(j,{e:()=>d});var t=p(4986),e=p(4482),f=p(8421),M=p(5403),b=p(2805);function d(N,h=t.z){return function a(N){return(0,e.e)((h,A)=>{let w=!1,D=null,L=null,k=!1;const S=()=>{if(null==L||L.unsubscribe(),L=null,w){w=!1;const Z=D;D=null,A.next(Z)}k&&A.complete()},U=()=>{L=null,k&&A.complete()};h.subscribe((0,M.x)(A,Z=>{w=!0,D=Z,L||(0,f.Xf)(N(Z)).subscribe(L=(0,M.x)(A,S,U))},()=>{k=!0,(!w||!L||L.closed)&&A.complete()}))})}(()=>(0,b.H)(N,h))}},262:(Ve,j,p)=>{"use strict";p.d(j,{K:()=>M});var t=p(8421),e=p(5403),f=p(4482);function M(a){return(0,f.e)((b,d)=>{let A,N=null,h=!1;N=b.subscribe((0,e.x)(d,void 0,void 0,w=>{A=(0,t.Xf)(a(w,M(a)(b))),N?(N.unsubscribe(),N=null,A.subscribe(d)):h=!0})),h&&(N.unsubscribe(),N=null,A.subscribe(d))})}},4351:(Ve,j,p)=>{"use strict";p.d(j,{b:()=>f});var t=p(5577),e=p(576);function f(M,a){return(0,e.m)(a)?(0,t.z)(M,a,1):(0,t.z)(M,1)}},8372:(Ve,j,p)=>{"use strict";p.d(j,{b:()=>M});var t=p(4986),e=p(4482),f=p(5403);function M(a,b=t.z){return(0,e.e)((d,N)=>{let h=null,A=null,w=null;const D=()=>{if(h){h.unsubscribe(),h=null;const k=A;A=null,N.next(k)}};function L(){const k=w+a,S=b.now();if(S{A=k,w=b.now(),h||(h=b.schedule(L,a),N.add(h))},()=>{D(),N.complete()},void 0,()=>{A=h=null}))})}},6590:(Ve,j,p)=>{"use strict";p.d(j,{d:()=>f});var t=p(4482),e=p(5403);function f(M){return(0,t.e)((a,b)=>{let d=!1;a.subscribe((0,e.x)(b,N=>{d=!0,b.next(N)},()=>{d||b.next(M),b.complete()}))})}},4086:(Ve,j,p)=>{"use strict";p.d(j,{g:()=>h});var t=p(4986),e=p(7272),f=p(5698),M=p(8502),a=p(9718),b=p(5577);function d(A,w){return w?D=>(0,e.z)(w.pipe((0,f.q)(1),(0,M.l)()),D.pipe(d(A))):(0,b.z)((D,L)=>A(D,L).pipe((0,f.q)(1),(0,a.h)(D)))}var N=p(2805);function h(A,w=t.z){const D=(0,N.H)(A,w);return d(()=>D)}},1884:(Ve,j,p)=>{"use strict";p.d(j,{x:()=>M});var t=p(4671),e=p(4482),f=p(5403);function M(b,d=t.y){return b=null!=b?b:a,(0,e.e)((N,h)=>{let A,w=!0;N.subscribe((0,f.x)(h,D=>{const L=d(D);(w||!b(A,L))&&(w=!1,A=L,h.next(D))}))})}function a(b,d){return b===d}},9300:(Ve,j,p)=>{"use strict";p.d(j,{h:()=>f});var t=p(4482),e=p(5403);function f(M,a){return(0,t.e)((b,d)=>{let N=0;b.subscribe((0,e.x)(d,h=>M.call(a,h,N++)&&d.next(h)))})}},8746:(Ve,j,p)=>{"use strict";p.d(j,{x:()=>e});var t=p(4482);function e(f){return(0,t.e)((M,a)=>{try{M.subscribe(a)}finally{a.add(f)}})}},590:(Ve,j,p)=>{"use strict";p.d(j,{P:()=>d});var t=p(6805),e=p(9300),f=p(5698),M=p(6590),a=p(8068),b=p(4671);function d(N,h){const A=arguments.length>=2;return w=>w.pipe(N?(0,e.h)((D,L)=>N(D,L,w)):b.y,(0,f.q)(1),A?(0,M.d)(h):(0,a.T)(()=>new t.K))}},8502:(Ve,j,p)=>{"use strict";p.d(j,{l:()=>M});var t=p(4482),e=p(5403),f=p(5032);function M(){return(0,t.e)((a,b)=>{a.subscribe((0,e.x)(b,f.Z))})}},4004:(Ve,j,p)=>{"use strict";p.d(j,{U:()=>f});var t=p(4482),e=p(5403);function f(M,a){return(0,t.e)((b,d)=>{let N=0;b.subscribe((0,e.x)(d,h=>{d.next(M.call(a,h,N++))}))})}},9718:(Ve,j,p)=>{"use strict";p.d(j,{h:()=>e});var t=p(4004);function e(f){return(0,t.U)(()=>f)}},8189:(Ve,j,p)=>{"use strict";p.d(j,{J:()=>f});var t=p(5577),e=p(4671);function f(M=1/0){return(0,t.z)(e.y,M)}},5577:(Ve,j,p)=>{"use strict";p.d(j,{z:()=>N});var t=p(4004),e=p(8421),f=p(4482),M=p(9672),a=p(5403),d=p(576);function N(h,A,w=1/0){return(0,d.m)(A)?N((D,L)=>(0,t.U)((k,S)=>A(D,k,L,S))((0,e.Xf)(h(D,L))),w):("number"==typeof A&&(w=A),(0,f.e)((D,L)=>function b(h,A,w,D,L,k,S,U){const Z=[];let Y=0,ne=0,$=!1;const de=()=>{$&&!Z.length&&!Y&&A.complete()},te=oe=>Y{k&&A.next(oe),Y++;let X=!1;(0,e.Xf)(w(oe,ne++)).subscribe((0,a.x)(A,me=>{null==L||L(me),k?te(me):A.next(me)},()=>{X=!0},void 0,()=>{if(X)try{for(Y--;Z.length&&Yie(me)):ie(me)}de()}catch(me){A.error(me)}}))};return h.subscribe((0,a.x)(A,te,()=>{$=!0,de()})),()=>{null==U||U()}}(D,L,h,w)))}},5363:(Ve,j,p)=>{"use strict";p.d(j,{Q:()=>M});var t=p(9672),e=p(4482),f=p(5403);function M(a,b=0){return(0,e.e)((d,N)=>{d.subscribe((0,f.x)(N,h=>(0,t.f)(N,a,()=>N.next(h),b),()=>(0,t.f)(N,a,()=>N.complete(),b),h=>(0,t.f)(N,a,()=>N.error(h),b)))})}},5026:(Ve,j,p)=>{"use strict";p.d(j,{R:()=>M});var t=p(4482),e=p(5403);function f(a,b,d,N,h){return(A,w)=>{let D=d,L=b,k=0;A.subscribe((0,e.x)(w,S=>{const U=k++;L=D?a(L,S,U):(D=!0,S),N&&w.next(L)},h&&(()=>{D&&w.next(L),w.complete()})))}}function M(a,b){return(0,t.e)(f(a,b,arguments.length>=2,!0))}},3099:(Ve,j,p)=>{"use strict";p.d(j,{B:()=>a});var t=p(8421),e=p(7579),f=p(930),M=p(4482);function a(d={}){const{connector:N=(()=>new e.x),resetOnError:h=!0,resetOnComplete:A=!0,resetOnRefCountZero:w=!0}=d;return D=>{let L,k,S,U=0,Z=!1,Y=!1;const ne=()=>{null==k||k.unsubscribe(),k=void 0},$=()=>{ne(),L=S=void 0,Z=Y=!1},de=()=>{const te=L;$(),null==te||te.unsubscribe()};return(0,M.e)((te,ie)=>{U++,!Y&&!Z&&ne();const oe=S=null!=S?S:N();ie.add(()=>{U--,0===U&&!Y&&!Z&&(k=b(de,w))}),oe.subscribe(ie),!L&&U>0&&(L=new f.Hp({next:X=>oe.next(X),error:X=>{Y=!0,ne(),k=b($,h,X),oe.error(X)},complete:()=>{Z=!0,ne(),k=b($,A),oe.complete()}}),(0,t.Xf)(te).subscribe(L))})(D)}}function b(d,N,...h){if(!0===N)return void d();if(!1===N)return;const A=new f.Hp({next:()=>{A.unsubscribe(),d()}});return N(...h).subscribe(A)}},5684:(Ve,j,p)=>{"use strict";p.d(j,{T:()=>e});var t=p(9300);function e(f){return(0,t.h)((M,a)=>f<=a)}},8675:(Ve,j,p)=>{"use strict";p.d(j,{O:()=>M});var t=p(7272),e=p(3269),f=p(4482);function M(...a){const b=(0,e.yG)(a);return(0,f.e)((d,N)=>{(b?(0,t.z)(a,d,b):(0,t.z)(a,d)).subscribe(N)})}},3900:(Ve,j,p)=>{"use strict";p.d(j,{w:()=>M});var t=p(8421),e=p(4482),f=p(5403);function M(a,b){return(0,e.e)((d,N)=>{let h=null,A=0,w=!1;const D=()=>w&&!h&&N.complete();d.subscribe((0,f.x)(N,L=>{null==h||h.unsubscribe();let k=0;const S=A++;(0,t.Xf)(a(L,S)).subscribe(h=(0,f.x)(N,U=>N.next(b?b(L,U,S,k++):U),()=>{h=null,D()}))},()=>{w=!0,D()}))})}},5698:(Ve,j,p)=>{"use strict";p.d(j,{q:()=>M});var t=p(515),e=p(4482),f=p(5403);function M(a){return a<=0?()=>t.E:(0,e.e)((b,d)=>{let N=0;b.subscribe((0,f.x)(d,h=>{++N<=a&&(d.next(h),a<=N&&d.complete())}))})}},2722:(Ve,j,p)=>{"use strict";p.d(j,{R:()=>a});var t=p(4482),e=p(5403),f=p(8421),M=p(5032);function a(b){return(0,t.e)((d,N)=>{(0,f.Xf)(b).subscribe((0,e.x)(N,()=>N.complete(),M.Z)),!N.closed&&d.subscribe(N)})}},8505:(Ve,j,p)=>{"use strict";p.d(j,{b:()=>a});var t=p(576),e=p(4482),f=p(5403),M=p(4671);function a(b,d,N){const h=(0,t.m)(b)||d||N?{next:b,error:d,complete:N}:b;return h?(0,e.e)((A,w)=>{var D;null===(D=h.subscribe)||void 0===D||D.call(h);let L=!0;A.subscribe((0,f.x)(w,k=>{var S;null===(S=h.next)||void 0===S||S.call(h,k),w.next(k)},()=>{var k;L=!1,null===(k=h.complete)||void 0===k||k.call(h),w.complete()},k=>{var S;L=!1,null===(S=h.error)||void 0===S||S.call(h,k),w.error(k)},()=>{var k,S;L&&(null===(k=h.unsubscribe)||void 0===k||k.call(h)),null===(S=h.finalize)||void 0===S||S.call(h)}))}):M.y}},8068:(Ve,j,p)=>{"use strict";p.d(j,{T:()=>M});var t=p(6805),e=p(4482),f=p(5403);function M(b=a){return(0,e.e)((d,N)=>{let h=!1;d.subscribe((0,f.x)(N,A=>{h=!0,N.next(A)},()=>h?N.complete():N.error(b())))})}function a(){return new t.K}},7414:(Ve,j,p)=>{"use strict";p.d(j,{V:()=>h});var t=p(4986),e=p(1165),f=p(4482),M=p(8421),a=p(3888),b=p(5403),d=p(9672);const N=(0,a.d)(w=>function(L=null){w(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=L});function h(w,D){const{first:L,each:k,with:S=A,scheduler:U=(null!=D?D:t.z),meta:Z=null}=(0,e.q)(w)?{first:w}:"number"==typeof w?{each:w}:w;if(null==L&&null==k)throw new TypeError("No timeout provided.");return(0,f.e)((Y,ne)=>{let $,de,te=null,ie=0;const oe=X=>{de=(0,d.f)(ne,U,()=>{try{$.unsubscribe(),(0,M.Xf)(S({meta:Z,lastValue:te,seen:ie})).subscribe(ne)}catch(me){ne.error(me)}},X)};$=Y.subscribe((0,b.x)(ne,X=>{null==de||de.unsubscribe(),ie++,ne.next(te=X),k>0&&oe(k)},void 0,void 0,()=>{(null==de?void 0:de.closed)||null==de||de.unsubscribe(),te=null})),!ie&&oe(null!=L?"number"==typeof L?L:+L-U.now():k)})}function A(w){throw new N(w)}},1365:(Ve,j,p)=>{"use strict";p.d(j,{M:()=>d});var t=p(4482),e=p(5403),f=p(8421),M=p(4671),a=p(5032),b=p(3269);function d(...N){const h=(0,b.jO)(N);return(0,t.e)((A,w)=>{const D=N.length,L=new Array(D);let k=N.map(()=>!1),S=!1;for(let U=0;U{L[U]=Z,!S&&!k[U]&&(k[U]=!0,(S=k.every(M.y))&&(k=null))},a.Z));A.subscribe((0,e.x)(w,U=>{if(S){const Z=[U,...L];w.next(h?h(...Z):Z)}}))})}},4408:(Ve,j,p)=>{"use strict";p.d(j,{o:()=>a});var t=p(727);class e extends t.w0{constructor(d,N){super()}schedule(d,N=0){return this}}const f={setInterval(b,d,...N){const{delegate:h}=f;return(null==h?void 0:h.setInterval)?h.setInterval(b,d,...N):setInterval(b,d,...N)},clearInterval(b){const{delegate:d}=f;return((null==d?void 0:d.clearInterval)||clearInterval)(b)},delegate:void 0};var M=p(8737);class a extends e{constructor(d,N){super(d,N),this.scheduler=d,this.work=N,this.pending=!1}schedule(d,N=0){if(this.closed)return this;this.state=d;const h=this.id,A=this.scheduler;return null!=h&&(this.id=this.recycleAsyncId(A,h,N)),this.pending=!0,this.delay=N,this.id=this.id||this.requestAsyncId(A,this.id,N),this}requestAsyncId(d,N,h=0){return f.setInterval(d.flush.bind(d,this),h)}recycleAsyncId(d,N,h=0){if(null!=h&&this.delay===h&&!1===this.pending)return N;f.clearInterval(N)}execute(d,N){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const h=this._execute(d,N);if(h)return h;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(d,N){let A,h=!1;try{this.work(d)}catch(w){h=!0,A=w||new Error("Scheduled action threw falsy error")}if(h)return this.unsubscribe(),A}unsubscribe(){if(!this.closed){const{id:d,scheduler:N}=this,{actions:h}=N;this.work=this.state=this.scheduler=null,this.pending=!1,(0,M.P)(h,this),null!=d&&(this.id=this.recycleAsyncId(N,d,null)),this.delay=null,super.unsubscribe()}}}},7565:(Ve,j,p)=>{"use strict";p.d(j,{v:()=>f});var t=p(6063);class e{constructor(a,b=e.now){this.schedulerActionCtor=a,this.now=b}schedule(a,b=0,d){return new this.schedulerActionCtor(this,a).schedule(d,b)}}e.now=t.l.now;class f extends e{constructor(a,b=e.now){super(a,b),this.actions=[],this._active=!1,this._scheduled=void 0}flush(a){const{actions:b}=this;if(this._active)return void b.push(a);let d;this._active=!0;do{if(d=a.execute(a.state,a.delay))break}while(a=b.shift());if(this._active=!1,d){for(;a=b.shift();)a.unsubscribe();throw d}}}},3101:(Ve,j,p)=>{"use strict";p.d(j,{E:()=>k});var t=p(4408);let f,e=1;const M={};function a(U){return U in M&&(delete M[U],!0)}const b={setImmediate(U){const Z=e++;return M[Z]=!0,f||(f=Promise.resolve()),f.then(()=>a(Z)&&U()),Z},clearImmediate(U){a(U)}},{setImmediate:N,clearImmediate:h}=b,A={setImmediate(...U){const{delegate:Z}=A;return((null==Z?void 0:Z.setImmediate)||N)(...U)},clearImmediate(U){const{delegate:Z}=A;return((null==Z?void 0:Z.clearImmediate)||h)(U)},delegate:void 0};var D=p(7565);const k=new class L extends D.v{flush(Z){this._active=!0;const Y=this._scheduled;this._scheduled=void 0;const{actions:ne}=this;let $;Z=Z||ne.shift();do{if($=Z.execute(Z.state,Z.delay))break}while((Z=ne[0])&&Z.id===Y&&ne.shift());if(this._active=!1,$){for(;(Z=ne[0])&&Z.id===Y&&ne.shift();)Z.unsubscribe();throw $}}}(class w extends t.o{constructor(Z,Y){super(Z,Y),this.scheduler=Z,this.work=Y}requestAsyncId(Z,Y,ne=0){return null!==ne&&ne>0?super.requestAsyncId(Z,Y,ne):(Z.actions.push(this),Z._scheduled||(Z._scheduled=A.setImmediate(Z.flush.bind(Z,void 0))))}recycleAsyncId(Z,Y,ne=0){if(null!=ne&&ne>0||null==ne&&this.delay>0)return super.recycleAsyncId(Z,Y,ne);Z.actions.some($=>$.id===Y)||(A.clearImmediate(Y),Z._scheduled=void 0)}})},4986:(Ve,j,p)=>{"use strict";p.d(j,{P:()=>M,z:()=>f});var t=p(4408);const f=new(p(7565).v)(t.o),M=f},6063:(Ve,j,p)=>{"use strict";p.d(j,{l:()=>t});const t={now:()=>(t.delegate||Date).now(),delegate:void 0}},233:(Ve,j,p)=>{"use strict";p.d(j,{N:()=>a});var t=p(4408),f=p(7565);const a=new class M extends f.v{}(class e extends t.o{constructor(N,h){super(N,h),this.scheduler=N,this.work=h}schedule(N,h=0){return h>0?super.schedule(N,h):(this.delay=h,this.state=N,this.scheduler.flush(this),this)}execute(N,h){return h>0||this.closed?super.execute(N,h):this._execute(N,h)}requestAsyncId(N,h,A=0){return null!=A&&A>0||null==A&&this.delay>0?super.requestAsyncId(N,h,A):N.flush(this)}})},3410:(Ve,j,p)=>{"use strict";p.d(j,{z:()=>t});const t={setTimeout(e,f,...M){const{delegate:a}=t;return(null==a?void 0:a.setTimeout)?a.setTimeout(e,f,...M):setTimeout(e,f,...M)},clearTimeout(e){const{delegate:f}=t;return((null==f?void 0:f.clearTimeout)||clearTimeout)(e)},delegate:void 0}},2202:(Ve,j,p)=>{"use strict";p.d(j,{h:()=>e});const e=function t(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},8822:(Ve,j,p)=>{"use strict";p.d(j,{L:()=>t});const t="function"==typeof Symbol&&Symbol.observable||"@@observable"},6805:(Ve,j,p)=>{"use strict";p.d(j,{K:()=>e});const e=(0,p(3888).d)(f=>function(){f(this),this.name="EmptyError",this.message="no elements in sequence"})},3269:(Ve,j,p)=>{"use strict";p.d(j,{_6:()=>b,jO:()=>M,yG:()=>a});var t=p(576),e=p(3532);function f(d){return d[d.length-1]}function M(d){return(0,t.m)(f(d))?d.pop():void 0}function a(d){return(0,e.K)(f(d))?d.pop():void 0}function b(d,N){return"number"==typeof f(d)?d.pop():N}},4742:(Ve,j,p)=>{"use strict";p.d(j,{D:()=>a});const{isArray:t}=Array,{getPrototypeOf:e,prototype:f,keys:M}=Object;function a(d){if(1===d.length){const N=d[0];if(t(N))return{args:N,keys:null};if(function b(d){return d&&"object"==typeof d&&e(d)===f}(N)){const h=M(N);return{args:h.map(A=>N[A]),keys:h}}}return{args:d,keys:null}}},8737:(Ve,j,p)=>{"use strict";function t(e,f){if(e){const M=e.indexOf(f);0<=M&&e.splice(M,1)}}p.d(j,{P:()=>t})},3888:(Ve,j,p)=>{"use strict";function t(e){const M=e(a=>{Error.call(a),a.stack=(new Error).stack});return M.prototype=Object.create(Error.prototype),M.prototype.constructor=M,M}p.d(j,{d:()=>t})},1810:(Ve,j,p)=>{"use strict";function t(e,f){return e.reduce((M,a,b)=>(M[a]=f[b],M),{})}p.d(j,{n:()=>t})},2806:(Ve,j,p)=>{"use strict";p.d(j,{O:()=>M,x:()=>f});var t=p(2416);let e=null;function f(a){if(t.v.useDeprecatedSynchronousErrorHandling){const b=!e;if(b&&(e={errorThrown:!1,error:null}),a(),b){const{errorThrown:d,error:N}=e;if(e=null,d)throw N}}else a()}function M(a){t.v.useDeprecatedSynchronousErrorHandling&&e&&(e.errorThrown=!0,e.error=a)}},9672:(Ve,j,p)=>{"use strict";function t(e,f,M,a=0,b=!1){const d=f.schedule(function(){M(),b?e.add(this.schedule(null,a)):this.unsubscribe()},a);if(e.add(d),!b)return d}p.d(j,{f:()=>t})},4671:(Ve,j,p)=>{"use strict";function t(e){return e}p.d(j,{y:()=>t})},1144:(Ve,j,p)=>{"use strict";p.d(j,{z:()=>t});const t=e=>e&&"number"==typeof e.length&&"function"!=typeof e},2206:(Ve,j,p)=>{"use strict";p.d(j,{D:()=>e});var t=p(576);function e(f){return Symbol.asyncIterator&&(0,t.m)(null==f?void 0:f[Symbol.asyncIterator])}},1165:(Ve,j,p)=>{"use strict";function t(e){return e instanceof Date&&!isNaN(e)}p.d(j,{q:()=>t})},576:(Ve,j,p)=>{"use strict";function t(e){return"function"==typeof e}p.d(j,{m:()=>t})},3670:(Ve,j,p)=>{"use strict";p.d(j,{c:()=>f});var t=p(8822),e=p(576);function f(M){return(0,e.m)(M[t.L])}},6495:(Ve,j,p)=>{"use strict";p.d(j,{T:()=>f});var t=p(2202),e=p(576);function f(M){return(0,e.m)(null==M?void 0:M[t.h])}},5191:(Ve,j,p)=>{"use strict";p.d(j,{b:()=>f});var t=p(8306),e=p(576);function f(M){return!!M&&(M instanceof t.y||(0,e.m)(M.lift)&&(0,e.m)(M.subscribe))}},8239:(Ve,j,p)=>{"use strict";p.d(j,{t:()=>e});var t=p(576);function e(f){return(0,t.m)(null==f?void 0:f.then)}},3260:(Ve,j,p)=>{"use strict";p.d(j,{L:()=>M,Q:()=>f});var t=p(655),e=p(576);function f(a){return(0,t.FC)(this,arguments,function*(){const d=a.getReader();try{for(;;){const{value:N,done:h}=yield(0,t.qq)(d.read());if(h)return yield(0,t.qq)(void 0);yield yield(0,t.qq)(N)}}finally{d.releaseLock()}})}function M(a){return(0,e.m)(null==a?void 0:a.getReader)}},3532:(Ve,j,p)=>{"use strict";p.d(j,{K:()=>e});var t=p(576);function e(f){return f&&(0,t.m)(f.schedule)}},4482:(Ve,j,p)=>{"use strict";p.d(j,{A:()=>e,e:()=>f});var t=p(576);function e(M){return(0,t.m)(null==M?void 0:M.lift)}function f(M){return a=>{if(e(a))return a.lift(function(b){try{return M(b,this)}catch(d){this.error(d)}});throw new TypeError("Unable to lift unknown Observable type")}}},3268:(Ve,j,p)=>{"use strict";p.d(j,{Z:()=>M});var t=p(4004);const{isArray:e}=Array;function M(a){return(0,t.U)(b=>function f(a,b){return e(b)?a(...b):a(b)}(a,b))}},5032:(Ve,j,p)=>{"use strict";function t(){}p.d(j,{Z:()=>t})},7849:(Ve,j,p)=>{"use strict";p.d(j,{h:()=>f});var t=p(2416),e=p(3410);function f(M){e.z.setTimeout(()=>{const{onUnhandledError:a}=t.v;if(!a)throw M;a(M)})}},4532:(Ve,j,p)=>{"use strict";function t(e){return new TypeError(`You provided ${null!==e&&"object"==typeof e?"an invalid object":`'${e}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}p.d(j,{z:()=>t})},3502:(Ve,j,p)=>{var t=p(3172),e=t.Buffer;function f(a,b){for(var d in a)b[d]=a[d]}function M(a,b,d){return e(a,b,d)}e.from&&e.alloc&&e.allocUnsafe&&e.allocUnsafeSlow?Ve.exports=t:(f(t,j),j.Buffer=M),f(e,M),M.from=function(a,b,d){if("number"==typeof a)throw new TypeError("Argument must not be a number");return e(a,b,d)},M.alloc=function(a,b,d){if("number"!=typeof a)throw new TypeError("Argument must be a number");var N=e(a);return void 0!==b?"string"==typeof d?N.fill(b,d):N.fill(b):N.fill(0),N},M.allocUnsafe=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return e(a)},M.allocUnsafeSlow=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return t.SlowBuffer(a)}},2038:(Ve,j,p)=>{"use strict";var M,t=p(3172),e=t.Buffer,f={};for(M in t)!t.hasOwnProperty(M)||"SlowBuffer"===M||"Buffer"===M||(f[M]=t[M]);var a=f.Buffer={};for(M in e)!e.hasOwnProperty(M)||"allocUnsafe"===M||"allocUnsafeSlow"===M||(a[M]=e[M]);if(f.Buffer.prototype=e.prototype,(!a.from||a.from===Uint8Array.from)&&(a.from=function(b,d,N){if("number"==typeof b)throw new TypeError('The "value" argument must not be of type number. Received type '+typeof b);if(b&&void 0===b.length)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof b);return e(b,d,N)}),a.alloc||(a.alloc=function(b,d,N){if("number"!=typeof b)throw new TypeError('The "size" argument must be of type number. Received type '+typeof b);if(b<0||b>=2*(1<<30))throw new RangeError('The value "'+b+'" is invalid for option "size"');var h=e(b);return d&&0!==d.length?"string"==typeof N?h.fill(d,N):h.fill(d):h.fill(0),h}),!f.kStringMaxLength)try{f.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch(b){}f.constants||(f.constants={MAX_LENGTH:f.kMaxLength},f.kStringMaxLength&&(f.constants.MAX_STRING_LENGTH=f.kStringMaxLength)),Ve.exports=f},6692:(Ve,j,p)=>{var t=p(3502).Buffer;function e(f,M){this._block=t.alloc(f),this._finalSize=M,this._blockSize=f,this._len=0}e.prototype.update=function(f,M){"string"==typeof f&&(f=t.from(f,M=M||"utf8"));for(var a=this._block,b=this._blockSize,d=f.length,N=this._len,h=0;h=this._finalSize&&(this._update(this._block),this._block.fill(0));var a=8*this._len;if(a<=4294967295)this._block.writeUInt32BE(a,this._blockSize-4);else{var b=(4294967295&a)>>>0;this._block.writeUInt32BE((a-b)/4294967296,this._blockSize-8),this._block.writeUInt32BE(b,this._blockSize-4)}this._update(this._block);var N=this._hash();return f?N.toString(f):N},e.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Ve.exports=e},5244:(Ve,j,p)=>{var t=Ve.exports=function(f){f=f.toLowerCase();var M=t[f];if(!M)throw new Error(f+" is not supported (we accept pull requests)");return new M};t.sha=p(8932),t.sha1=p(7736),t.sha224=p(5044),t.sha256=p(5014),t.sha384=p(6540),t.sha512=p(117)},8932:(Ve,j,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1518500249,1859775393,-1894007588,-899497514],a=new Array(80);function b(){this.init(),this._w=a,e.call(this,64,56)}function d(A){return A<<5|A>>>27}function N(A){return A<<30|A>>>2}function h(A,w,D,L){return 0===A?w&D|~w&L:2===A?w&D|w&L|D&L:w^D^L}t(b,e),b.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},b.prototype._update=function(A){for(var w=this._w,D=0|this._a,L=0|this._b,k=0|this._c,S=0|this._d,U=0|this._e,Z=0;Z<16;++Z)w[Z]=A.readInt32BE(4*Z);for(;Z<80;++Z)w[Z]=w[Z-3]^w[Z-8]^w[Z-14]^w[Z-16];for(var Y=0;Y<80;++Y){var ne=~~(Y/20),$=d(D)+h(ne,L,k,S)+U+w[Y]+M[ne]|0;U=S,S=k,k=N(L),L=D,D=$}this._a=D+this._a|0,this._b=L+this._b|0,this._c=k+this._c|0,this._d=S+this._d|0,this._e=U+this._e|0},b.prototype._hash=function(){var A=f.allocUnsafe(20);return A.writeInt32BE(0|this._a,0),A.writeInt32BE(0|this._b,4),A.writeInt32BE(0|this._c,8),A.writeInt32BE(0|this._d,12),A.writeInt32BE(0|this._e,16),A},Ve.exports=b},7736:(Ve,j,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1518500249,1859775393,-1894007588,-899497514],a=new Array(80);function b(){this.init(),this._w=a,e.call(this,64,56)}function d(w){return w<<1|w>>>31}function N(w){return w<<5|w>>>27}function h(w){return w<<30|w>>>2}function A(w,D,L,k){return 0===w?D&L|~D&k:2===w?D&L|D&k|L&k:D^L^k}t(b,e),b.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},b.prototype._update=function(w){for(var D=this._w,L=0|this._a,k=0|this._b,S=0|this._c,U=0|this._d,Z=0|this._e,Y=0;Y<16;++Y)D[Y]=w.readInt32BE(4*Y);for(;Y<80;++Y)D[Y]=d(D[Y-3]^D[Y-8]^D[Y-14]^D[Y-16]);for(var ne=0;ne<80;++ne){var $=~~(ne/20),de=N(L)+A($,k,S,U)+Z+D[ne]+M[$]|0;Z=U,U=S,S=h(k),k=L,L=de}this._a=L+this._a|0,this._b=k+this._b|0,this._c=S+this._c|0,this._d=U+this._d|0,this._e=Z+this._e|0},b.prototype._hash=function(){var w=f.allocUnsafe(20);return w.writeInt32BE(0|this._a,0),w.writeInt32BE(0|this._b,4),w.writeInt32BE(0|this._c,8),w.writeInt32BE(0|this._d,12),w.writeInt32BE(0|this._e,16),w},Ve.exports=b},5044:(Ve,j,p)=>{var t=p(3894),e=p(5014),f=p(6692),M=p(3502).Buffer,a=new Array(64);function b(){this.init(),this._w=a,f.call(this,64,56)}t(b,e),b.prototype.init=function(){return this._a=3238371032,this._b=914150663,this._c=812702999,this._d=4144912697,this._e=4290775857,this._f=1750603025,this._g=1694076839,this._h=3204075428,this},b.prototype._hash=function(){var d=M.allocUnsafe(28);return d.writeInt32BE(this._a,0),d.writeInt32BE(this._b,4),d.writeInt32BE(this._c,8),d.writeInt32BE(this._d,12),d.writeInt32BE(this._e,16),d.writeInt32BE(this._f,20),d.writeInt32BE(this._g,24),d},Ve.exports=b},5014:(Ve,j,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],a=new Array(64);function b(){this.init(),this._w=a,e.call(this,64,56)}function d(L,k,S){return S^L&(k^S)}function N(L,k,S){return L&k|S&(L|k)}function h(L){return(L>>>2|L<<30)^(L>>>13|L<<19)^(L>>>22|L<<10)}function A(L){return(L>>>6|L<<26)^(L>>>11|L<<21)^(L>>>25|L<<7)}function w(L){return(L>>>7|L<<25)^(L>>>18|L<<14)^L>>>3}function D(L){return(L>>>17|L<<15)^(L>>>19|L<<13)^L>>>10}t(b,e),b.prototype.init=function(){return this._a=1779033703,this._b=3144134277,this._c=1013904242,this._d=2773480762,this._e=1359893119,this._f=2600822924,this._g=528734635,this._h=1541459225,this},b.prototype._update=function(L){for(var k=this._w,S=0|this._a,U=0|this._b,Z=0|this._c,Y=0|this._d,ne=0|this._e,$=0|this._f,de=0|this._g,te=0|this._h,ie=0;ie<16;++ie)k[ie]=L.readInt32BE(4*ie);for(;ie<64;++ie)k[ie]=D(k[ie-2])+k[ie-7]+w(k[ie-15])+k[ie-16]|0;for(var oe=0;oe<64;++oe){var X=te+A(ne)+d(ne,$,de)+M[oe]+k[oe]|0,me=h(S)+N(S,U,Z)|0;te=de,de=$,$=ne,ne=Y+X|0,Y=Z,Z=U,U=S,S=X+me|0}this._a=S+this._a|0,this._b=U+this._b|0,this._c=Z+this._c|0,this._d=Y+this._d|0,this._e=ne+this._e|0,this._f=$+this._f|0,this._g=de+this._g|0,this._h=te+this._h|0},b.prototype._hash=function(){var L=f.allocUnsafe(32);return L.writeInt32BE(this._a,0),L.writeInt32BE(this._b,4),L.writeInt32BE(this._c,8),L.writeInt32BE(this._d,12),L.writeInt32BE(this._e,16),L.writeInt32BE(this._f,20),L.writeInt32BE(this._g,24),L.writeInt32BE(this._h,28),L},Ve.exports=b},6540:(Ve,j,p)=>{var t=p(3894),e=p(117),f=p(6692),M=p(3502).Buffer,a=new Array(160);function b(){this.init(),this._w=a,f.call(this,128,112)}t(b,e),b.prototype.init=function(){return this._ah=3418070365,this._bh=1654270250,this._ch=2438529370,this._dh=355462360,this._eh=1731405415,this._fh=2394180231,this._gh=3675008525,this._hh=1203062813,this._al=3238371032,this._bl=914150663,this._cl=812702999,this._dl=4144912697,this._el=4290775857,this._fl=1750603025,this._gl=1694076839,this._hl=3204075428,this},b.prototype._hash=function(){var d=M.allocUnsafe(48);function N(h,A,w){d.writeInt32BE(h,w),d.writeInt32BE(A,w+4)}return N(this._ah,this._al,0),N(this._bh,this._bl,8),N(this._ch,this._cl,16),N(this._dh,this._dl,24),N(this._eh,this._el,32),N(this._fh,this._fl,40),d},Ve.exports=b},117:(Ve,j,p)=>{var t=p(3894),e=p(6692),f=p(3502).Buffer,M=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],a=new Array(160);function b(){this.init(),this._w=a,e.call(this,128,112)}function d(U,Z,Y){return Y^U&(Z^Y)}function N(U,Z,Y){return U&Z|Y&(U|Z)}function h(U,Z){return(U>>>28|Z<<4)^(Z>>>2|U<<30)^(Z>>>7|U<<25)}function A(U,Z){return(U>>>14|Z<<18)^(U>>>18|Z<<14)^(Z>>>9|U<<23)}function w(U,Z){return(U>>>1|Z<<31)^(U>>>8|Z<<24)^U>>>7}function D(U,Z){return(U>>>1|Z<<31)^(U>>>8|Z<<24)^(U>>>7|Z<<25)}function L(U,Z){return(U>>>19|Z<<13)^(Z>>>29|U<<3)^U>>>6}function k(U,Z){return(U>>>19|Z<<13)^(Z>>>29|U<<3)^(U>>>6|Z<<26)}function S(U,Z){return U>>>0>>0?1:0}t(b,e),b.prototype.init=function(){return this._ah=1779033703,this._bh=3144134277,this._ch=1013904242,this._dh=2773480762,this._eh=1359893119,this._fh=2600822924,this._gh=528734635,this._hh=1541459225,this._al=4089235720,this._bl=2227873595,this._cl=4271175723,this._dl=1595750129,this._el=2917565137,this._fl=725511199,this._gl=4215389547,this._hl=327033209,this},b.prototype._update=function(U){for(var Z=this._w,Y=0|this._ah,ne=0|this._bh,$=0|this._ch,de=0|this._dh,te=0|this._eh,ie=0|this._fh,oe=0|this._gh,X=0|this._hh,me=0|this._al,y=0|this._bl,i=0|this._cl,r=0|this._dl,u=0|this._el,c=0|this._fl,_=0|this._gl,E=0|this._hl,I=0;I<32;I+=2)Z[I]=U.readInt32BE(4*I),Z[I+1]=U.readInt32BE(4*I+4);for(;I<160;I+=2){var v=Z[I-30],n=Z[I-30+1],C=w(v,n),B=D(n,v),P=L(v=Z[I-4],n=Z[I-4+1]),H=k(n,v),_e=Z[I-32],Ne=Z[I-32+1],we=B+Z[I-14+1]|0,Q=C+Z[I-14]+S(we,B)|0;Q=(Q=Q+P+S(we=we+H|0,H)|0)+_e+S(we=we+Ne|0,Ne)|0,Z[I]=Q,Z[I+1]=we}for(var Ue=0;Ue<160;Ue+=2){Q=Z[Ue],we=Z[Ue+1];var ve=N(Y,ne,$),V=N(me,y,i),De=h(Y,me),dt=h(me,Y),Ie=A(te,u),Ae=A(u,te),le=M[Ue],Te=M[Ue+1],xe=d(te,ie,oe),W=d(u,c,_),ee=E+Ae|0,ue=X+Ie+S(ee,E)|0;ue=(ue=(ue=ue+xe+S(ee=ee+W|0,W)|0)+le+S(ee=ee+Te|0,Te)|0)+Q+S(ee=ee+we|0,we)|0;var Ce=dt+V|0,Le=De+ve+S(Ce,dt)|0;X=oe,E=_,oe=ie,_=c,ie=te,c=u,te=de+ue+S(u=r+ee|0,r)|0,de=$,r=i,$=ne,i=y,ne=Y,y=me,Y=ue+Le+S(me=ee+Ce|0,ee)|0}this._al=this._al+me|0,this._bl=this._bl+y|0,this._cl=this._cl+i|0,this._dl=this._dl+r|0,this._el=this._el+u|0,this._fl=this._fl+c|0,this._gl=this._gl+_|0,this._hl=this._hl+E|0,this._ah=this._ah+Y+S(this._al,me)|0,this._bh=this._bh+ne+S(this._bl,y)|0,this._ch=this._ch+$+S(this._cl,i)|0,this._dh=this._dh+de+S(this._dl,r)|0,this._eh=this._eh+te+S(this._el,u)|0,this._fh=this._fh+ie+S(this._fl,c)|0,this._gh=this._gh+oe+S(this._gl,_)|0,this._hh=this._hh+X+S(this._hl,E)|0},b.prototype._hash=function(){var U=f.allocUnsafe(64);function Z(Y,ne,$){U.writeInt32BE(Y,$),U.writeInt32BE(ne,$+4)}return Z(this._ah,this._al,0),Z(this._bh,this._bl,8),Z(this._ch,this._cl,16),Z(this._dh,this._dl,24),Z(this._eh,this._el,32),Z(this._fh,this._fl,40),Z(this._gh,this._gl,48),Z(this._hh,this._hl,56),U},Ve.exports=b},8012:function(Ve,j,p){!function(t){"use strict";var e={};Ve.exports?(e.bytesToHex=p(6128).bytesToHex,e.convertString=p(5612),Ve.exports=N):(e.bytesToHex=t.convertHex.bytesToHex,e.convertString=t.convertString,t.sha256=N);var f=[];!function(){function h(L){for(var k=Math.sqrt(L),S=2;S<=k;S++)if(!(L%S))return!1;return!0}for(var w=2,D=0;D<64;)h(w)&&(f[D]=4294967296*((L=Math.pow(w,1/3))-(0|L))|0,D++),w++;var L}();var b=[],d=function(h,A,w){for(var D=h[0],L=h[1],k=h[2],S=h[3],U=h[4],Z=h[5],Y=h[6],ne=h[7],$=0;$<64;$++){if($<16)b[$]=0|A[w+$];else{var de=b[$-15],ie=b[$-2];b[$]=((de<<25|de>>>7)^(de<<14|de>>>18)^de>>>3)+b[$-7]+((ie<<15|ie>>>17)^(ie<<13|ie>>>19)^ie>>>10)+b[$-16]}var me=D&L^D&k^L&k,r=ne+((U<<26|U>>>6)^(U<<21|U>>>11)^(U<<7|U>>>25))+(U&Z^~U&Y)+f[$]+b[$];ne=Y,Y=Z,Z=U,U=S+r|0,S=k,k=L,L=D,D=r+(((D<<30|D>>>2)^(D<<19|D>>>13)^(D<<10|D>>>22))+me)|0}h[0]=h[0]+D|0,h[1]=h[1]+L|0,h[2]=h[2]+k|0,h[3]=h[3]+S|0,h[4]=h[4]+U|0,h[5]=h[5]+Z|0,h[6]=h[6]+Y|0,h[7]=h[7]+ne|0};function N(h,A){h.constructor===String&&(h=e.convertString.UTF8.stringToBytes(h));var w=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],D=function(h){for(var A=[],w=0,D=0;w>>5]|=h[w]<<24-D%32;return A}(h),L=8*h.length;D[L>>5]|=128<<24-L%32,D[15+(L+64>>9<<4)]=L;for(var k=0;k>>5]>>>24-w%32&255);return A}(w);return A&&A.asBytes?S:A&&A.asString?e.convertString.bytesToString(S):e.bytesToHex(S)}N.x2=function(h,A){return N(N(h,{asBytes:!0}),A)}}(this)},4315:(Ve,j,p)=>{"use strict";const t=Symbol.prototype.valueOf,e=p(2872);Ve.exports=function f(h,A){switch(e(h)){case"array":return h.slice();case"object":return Object.assign({},h);case"date":return new h.constructor(Number(h));case"map":return new Map(h);case"set":return new Set(h);case"buffer":return function d(h){const A=h.length,w=Buffer.allocUnsafe?Buffer.allocUnsafe(A):Buffer.from(A);return h.copy(w),w}(h);case"symbol":return function N(h){return t?Object(t.call(h)):{}}(h);case"arraybuffer":return function a(h){const A=new h.constructor(h.byteLength);return new Uint8Array(A).set(new Uint8Array(h)),A}(h);case"float32array":case"float64array":case"int16array":case"int32array":case"int8array":case"uint16array":case"uint32array":case"uint8clampedarray":case"uint8array":return function b(h,A){return new h.constructor(h.buffer,h.byteOffset,h.length)}(h);case"regexp":return function M(h){const A=void 0!==h.flags?h.flags:/\w+$/.exec(h)||void 0,w=new h.constructor(h.source,A);return w.lastIndex=h.lastIndex,w}(h);case"error":return Object.create(h);default:return h}}},295:(Ve,j,p)=>{Ve.exports=f;var t=p(9069).EventEmitter;function f(){t.call(this)}p(3894)(f,t),f.Readable=p(3154),f.Writable=p(520),f.Duplex=p(1339),f.Transform=p(6025),f.PassThrough=p(6071),f.finished=p(7542),f.pipeline=p(954),f.Stream=f,f.prototype.pipe=function(M,a){var b=this;function d(k){M.writable&&!1===M.write(k)&&b.pause&&b.pause()}function N(){b.readable&&b.resume&&b.resume()}b.on("data",d),M.on("drain",N),!M._isStdio&&(!a||!1!==a.end)&&(b.on("end",A),b.on("close",w));var h=!1;function A(){h||(h=!0,M.end())}function w(){h||(h=!0,"function"==typeof M.destroy&&M.destroy())}function D(k){if(L(),0===t.listenerCount(this,"error"))throw k}function L(){b.removeListener("data",d),M.removeListener("drain",N),b.removeListener("end",A),b.removeListener("close",w),b.removeListener("error",D),M.removeListener("error",D),b.removeListener("end",L),b.removeListener("close",L),M.removeListener("close",L)}return b.on("error",D),M.on("error",D),b.on("end",L),b.on("close",L),M.on("close",L),M.emit("pipe",b),M}},3054:(Ve,j,p)=>{"use strict";var t=p(858).Buffer,e=t.isEncoding||function(Y){switch((Y=""+Y)&&Y.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function a(Y){var ne;switch(this.encoding=function M(Y){var ne=function f(Y){if(!Y)return"utf8";for(var ne;;)switch(Y){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return Y;default:if(ne)return;Y=(""+Y).toLowerCase(),ne=!0}}(Y);if("string"!=typeof ne&&(t.isEncoding===e||!e(Y)))throw new Error("Unknown encoding: "+Y);return ne||Y}(Y),this.encoding){case"utf16le":this.text=D,this.end=L,ne=4;break;case"utf8":this.fillLast=h,ne=4;break;case"base64":this.text=k,this.end=S,ne=3;break;default:return this.write=U,void(this.end=Z)}this.lastNeed=0,this.lastTotal=0,this.lastChar=t.allocUnsafe(ne)}function b(Y){return Y<=127?0:Y>>5==6?2:Y>>4==14?3:Y>>3==30?4:Y>>6==2?-1:-2}function h(Y){var ne=this.lastTotal-this.lastNeed,$=function N(Y,ne,$){if(128!=(192&ne[0]))return Y.lastNeed=0,"\ufffd";if(Y.lastNeed>1&&ne.length>1){if(128!=(192&ne[1]))return Y.lastNeed=1,"\ufffd";if(Y.lastNeed>2&&ne.length>2&&128!=(192&ne[2]))return Y.lastNeed=2,"\ufffd"}}(this,Y);return void 0!==$?$:this.lastNeed<=Y.length?(Y.copy(this.lastChar,ne,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Y.copy(this.lastChar,ne,0,Y.length),void(this.lastNeed-=Y.length))}function D(Y,ne){if((Y.length-ne)%2==0){var $=Y.toString("utf16le",ne);if($){var de=$.charCodeAt($.length-1);if(de>=55296&&de<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Y[Y.length-2],this.lastChar[1]=Y[Y.length-1],$.slice(0,-1)}return $}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Y[Y.length-1],Y.toString("utf16le",ne,Y.length-1)}function L(Y){var ne=Y&&Y.length?this.write(Y):"";return this.lastNeed?ne+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):ne}function k(Y,ne){var $=(Y.length-ne)%3;return 0===$?Y.toString("base64",ne):(this.lastNeed=3-$,this.lastTotal=3,1===$?this.lastChar[0]=Y[Y.length-1]:(this.lastChar[0]=Y[Y.length-2],this.lastChar[1]=Y[Y.length-1]),Y.toString("base64",ne,Y.length-$))}function S(Y){var ne=Y&&Y.length?this.write(Y):"";return this.lastNeed?ne+this.lastChar.toString("base64",0,3-this.lastNeed):ne}function U(Y){return Y.toString(this.encoding)}function Z(Y){return Y&&Y.length?this.write(Y):""}j.s=a,a.prototype.write=function(Y){if(0===Y.length)return"";var ne,$;if(this.lastNeed){if(void 0===(ne=this.fillLast(Y)))return"";$=this.lastNeed,this.lastNeed=0}else $=0;return $=0?(te>0&&(Y.lastNeed=te-1),te):--de<$||-2===te?0:(te=b(ne[de]))>=0?(te>0&&(Y.lastNeed=te-2),te):--de<$||-2===te?0:(te=b(ne[de]))>=0?(te>0&&(2===te?te=0:Y.lastNeed=te-3),te):0}(this,Y,ne);if(!this.lastNeed)return Y.toString("utf8",ne);this.lastTotal=$;var de=Y.length-($-this.lastNeed);return Y.copy(this.lastChar,0,de),Y.toString("utf8",ne,de)},a.prototype.fillLast=function(Y){if(this.lastNeed<=Y.length)return Y.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Y.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Y.length),this.lastNeed-=Y.length}},858:(Ve,j,p)=>{var t=p(3172),e=t.Buffer;function f(a,b){for(var d in a)b[d]=a[d]}function M(a,b,d){return e(a,b,d)}e.from&&e.alloc&&e.allocUnsafe&&e.allocUnsafeSlow?Ve.exports=t:(f(t,j),j.Buffer=M),M.prototype=Object.create(e.prototype),f(e,M),M.from=function(a,b,d){if("number"==typeof a)throw new TypeError("Argument must not be a number");return e(a,b,d)},M.alloc=function(a,b,d){if("number"!=typeof a)throw new TypeError("Argument must be a number");var N=e(a);return void 0!==b?"string"==typeof d?N.fill(b,d):N.fill(b):N.fill(0),N},M.allocUnsafe=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return e(a)},M.allocUnsafeSlow=function(a){if("number"!=typeof a)throw new TypeError("Argument must be a number");return t.SlowBuffer(a)}},2167:(Ve,j,p)=>{var t=p(4606);j.encode=t.encode,j.decode=t.decode},4606:(Ve,j)=>{"use strict";var t=[255,255,26,27,28,29,30,31,255,255,255,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255];j.encode=function(f){Buffer.isBuffer(f)||(f=new Buffer(f));for(var M=0,a=0,b=0,d=0,N=new Buffer(8*function e(f){var M=Math.floor(f.length/5);return f.length%5==0?M:M+1}(f));M3?(d=(d=h&255>>b)<<(b=(b+5)%8)|(M+1>8-b,M++):(d=h>>8-(b+5)&31,0==(b=(b+5)%8)&&M++),N[a]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(d),a++}for(M=a;M>>(M=(M+5)%8),d++,b=255&a<<8-M)}return N.slice(0,d)}},4364:Ve=>{function p(t){try{if(!global.localStorage)return!1}catch(f){return!1}var e=global.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}Ve.exports=function j(t,e){if(p("noDeprecation"))return t;var f=!1;return function M(){if(!f){if(p("throwDeprecation"))throw new Error(e);p("traceDeprecation")?console.trace(e):console.warn(e),f=!0}return t.apply(this,arguments)}}},655:(Ve,j,p)=>{"use strict";function a(i,r,u,c){var I,_=arguments.length,E=_<3?r:null===c?c=Object.getOwnPropertyDescriptor(r,u):c;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)E=Reflect.decorate(i,r,u,c);else for(var v=i.length-1;v>=0;v--)(I=i[v])&&(E=(_<3?I(E):_>3?I(r,u,E):I(r,u))||E);return _>3&&E&&Object.defineProperty(r,u,E),E}function N(i,r,u,c){return new(u||(u=Promise))(function(E,I){function v(B){try{C(c.next(B))}catch(P){I(P)}}function n(B){try{C(c.throw(B))}catch(P){I(P)}}function C(B){B.done?E(B.value):function _(E){return E instanceof u?E:new u(function(I){I(E)})}(B.value).then(v,n)}C((c=c.apply(i,r||[])).next())})}function Z(i){return this instanceof Z?(this.v=i,this):new Z(i)}function Y(i,r,u){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var _,c=u.apply(i,r||[]),E=[];return _={},I("next"),I("throw"),I("return"),_[Symbol.asyncIterator]=function(){return this},_;function I(H){c[H]&&(_[H]=function(q){return new Promise(function(he,_e){E.push([H,q,he,_e])>1||v(H,q)})})}function v(H,q){try{!function n(H){H.value instanceof Z?Promise.resolve(H.value.v).then(C,B):P(E[0][2],H)}(c[H](q))}catch(he){P(E[0][3],he)}}function C(H){v("next",H)}function B(H){v("throw",H)}function P(H,q){H(q),E.shift(),E.length&&v(E[0][0],E[0][1])}}function $(i){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var u,r=i[Symbol.asyncIterator];return r?r.call(i):(i=function D(i){var r="function"==typeof Symbol&&Symbol.iterator,u=r&&i[r],c=0;if(u)return u.call(i);if(i&&"number"==typeof i.length)return{next:function(){return i&&c>=i.length&&(i=void 0),{value:i&&i[c++],done:!i}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}(i),u={},c("next"),c("throw"),c("return"),u[Symbol.asyncIterator]=function(){return this},u);function c(E){u[E]=i[E]&&function(I){return new Promise(function(v,n){!function _(E,I,v,n){Promise.resolve(n).then(function(C){E({value:C,done:v})},I)}(v,n,(I=i[E](I)).done,I.value)})}}}p.d(j,{FC:()=>Y,KL:()=>$,gn:()=>a,mG:()=>N,qq:()=>Z})},950:()=>{},6601:()=>{},8623:()=>{},7748:()=>{},5568:()=>{},6619:()=>{},7108:()=>{},2361:()=>{},4616:()=>{},1777:(Ve,j,p)=>{"use strict";p.d(j,{F4:()=>A,IO:()=>S,LC:()=>e,SB:()=>h,X$:()=>M,ZE:()=>ne,ZN:()=>Y,_j:()=>t,eR:()=>w,jt:()=>a,k1:()=>$,l3:()=>f,oB:()=>N,pV:()=>L,ru:()=>b,vP:()=>d});class t{}class e{}const f="*";function M(de,te){return{type:7,name:de,definitions:te,options:{}}}function a(de,te=null){return{type:4,styles:te,timings:de}}function b(de,te=null){return{type:3,steps:de,options:te}}function d(de,te=null){return{type:2,steps:de,options:te}}function N(de){return{type:6,styles:de,offset:null}}function h(de,te,ie){return{type:0,name:de,styles:te,options:ie}}function A(de){return{type:5,steps:de}}function w(de,te,ie=null){return{type:1,expr:de,animation:te,options:ie}}function L(de=null){return{type:9,options:de}}function S(de,te,ie=null){return{type:11,selector:de,animation:te,options:ie}}function Z(de){Promise.resolve(null).then(de)}class Y{constructor(te=0,ie=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=te+ie}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(te=>te()),this._onDoneFns=[])}onStart(te){this._onStartFns.push(te)}onDone(te){this._onDoneFns.push(te)}onDestroy(te){this._onDestroyFns.push(te)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){Z(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(te=>te()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(te=>te()),this._onDestroyFns=[])}reset(){this._started=!1}setPosition(te){this._position=this.totalTime?te*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(te){const ie="start"==te?this._onStartFns:this._onDoneFns;ie.forEach(oe=>oe()),ie.length=0}}class ne{constructor(te){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=te;let ie=0,oe=0,X=0;const me=this.players.length;0==me?Z(()=>this._onFinish()):this.players.forEach(y=>{y.onDone(()=>{++ie==me&&this._onFinish()}),y.onDestroy(()=>{++oe==me&&this._onDestroy()}),y.onStart(()=>{++X==me&&this._onStart()})}),this.totalTime=this.players.reduce((y,i)=>Math.max(y,i.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(te=>te()),this._onDoneFns=[])}init(){this.players.forEach(te=>te.init())}onStart(te){this._onStartFns.push(te)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(te=>te()),this._onStartFns=[])}onDone(te){this._onDoneFns.push(te)}onDestroy(te){this._onDestroyFns.push(te)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(te=>te.play())}pause(){this.players.forEach(te=>te.pause())}restart(){this.players.forEach(te=>te.restart())}finish(){this._onFinish(),this.players.forEach(te=>te.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(te=>te.destroy()),this._onDestroyFns.forEach(te=>te()),this._onDestroyFns=[])}reset(){this.players.forEach(te=>te.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(te){const ie=te*this.totalTime;this.players.forEach(oe=>{const X=oe.totalTime?Math.min(1,ie/oe.totalTime):1;oe.setPosition(X)})}getPosition(){const te=this.players.reduce((ie,oe)=>null===ie||oe.totalTime>ie.totalTime?oe:ie,null);return null!=te?te.getPosition():0}beforeDestroy(){this.players.forEach(te=>{te.beforeDestroy&&te.beforeDestroy()})}triggerCallback(te){const ie="start"==te?this._onStartFns:this._onDoneFns;ie.forEach(oe=>oe()),ie.length=0}}const $="!"},5664:(Ve,j,p)=>{"use strict";p.d(j,{$s:()=>y,Em:()=>_,Kd:()=>ui,X6:()=>Te,ic:()=>I,kH:()=>Nt,mK:()=>V,qV:()=>ve,qm:()=>ei,rt:()=>Yt,s1:()=>c,tE:()=>xt,yG:()=>xe});var t=p(9808),e=p(5e3),f=p(925),M=p(7579),a=p(727),b=p(1135),d=p(9646),N=p(1159),h=p(8505),A=p(8372),w=p(9300),D=p(4004),L=p(5698),k=p(5684),S=p(1884),U=p(2722),Z=p(3191),Y=p(7144);function te(Pe,Oe){return(Pe.getAttribute(Oe)||"").match(/\S+/g)||[]}const oe="cdk-describedby-message",X="cdk-describedby-host";let me=0,y=(()=>{class Pe{constructor(ce,be){this._platform=be,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+me++,this._document=ce}describe(ce,be,pt){if(!this._canBeDescribed(ce,be))return;const mt=i(be,pt);"string"!=typeof be?(r(be),this._messageRegistry.set(mt,{messageElement:be,referenceCount:0})):this._messageRegistry.has(mt)||this._createMessageElement(be,pt),this._isElementDescribedByMessage(ce,mt)||this._addMessageReference(ce,mt)}removeDescription(ce,be,pt){var mt;if(!be||!this._isElementNode(ce))return;const Ht=i(be,pt);if(this._isElementDescribedByMessage(ce,Ht)&&this._removeMessageReference(ce,Ht),"string"==typeof be){const it=this._messageRegistry.get(Ht);it&&0===it.referenceCount&&this._deleteMessageElement(Ht)}0===(null===(mt=this._messagesContainer)||void 0===mt?void 0:mt.childNodes.length)&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){var ce;const be=this._document.querySelectorAll(`[${X}="${this._id}"]`);for(let pt=0;pt0!=pt.indexOf(oe));ce.setAttribute("aria-describedby",be.join(" "))}_addMessageReference(ce,be){const pt=this._messageRegistry.get(be);(function $(Pe,Oe,ce){const be=te(Pe,Oe);be.some(pt=>pt.trim()==ce.trim())||(be.push(ce.trim()),Pe.setAttribute(Oe,be.join(" ")))})(ce,"aria-describedby",pt.messageElement.id),ce.setAttribute(X,this._id),pt.referenceCount++}_removeMessageReference(ce,be){const pt=this._messageRegistry.get(be);pt.referenceCount--,function de(Pe,Oe,ce){const pt=te(Pe,Oe).filter(mt=>mt!=ce.trim());pt.length?Pe.setAttribute(Oe,pt.join(" ")):Pe.removeAttribute(Oe)}(ce,"aria-describedby",pt.messageElement.id),ce.removeAttribute(X)}_isElementDescribedByMessage(ce,be){const pt=te(ce,"aria-describedby"),mt=this._messageRegistry.get(be),Ht=mt&&mt.messageElement.id;return!!Ht&&-1!=pt.indexOf(Ht)}_canBeDescribed(ce,be){if(!this._isElementNode(ce))return!1;if(be&&"object"==typeof be)return!0;const pt=null==be?"":`${be}`.trim(),mt=ce.getAttribute("aria-label");return!(!pt||mt&&mt.trim()===pt)}_isElementNode(ce){return ce.nodeType===this._document.ELEMENT_NODE}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(t.K0),e.LFG(f.t4))},Pe.\u0275prov=e.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})();function i(Pe,Oe){return"string"==typeof Pe?`${Oe||""}/${Pe}`:Pe}function r(Pe){Pe.id||(Pe.id=`${oe}-${me++}`)}class u{constructor(Oe){this._items=Oe,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new M.x,this._typeaheadSubscription=a.w0.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._skipPredicateFn=ce=>ce.disabled,this._pressedLetters=[],this.tabOut=new M.x,this.change=new M.x,Oe instanceof e.n_E&&Oe.changes.subscribe(ce=>{if(this._activeItem){const pt=ce.toArray().indexOf(this._activeItem);pt>-1&&pt!==this._activeItemIndex&&(this._activeItemIndex=pt)}})}skipPredicate(Oe){return this._skipPredicateFn=Oe,this}withWrap(Oe=!0){return this._wrap=Oe,this}withVerticalOrientation(Oe=!0){return this._vertical=Oe,this}withHorizontalOrientation(Oe){return this._horizontal=Oe,this}withAllowedModifierKeys(Oe){return this._allowedModifierKeys=Oe,this}withTypeAhead(Oe=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,h.b)(ce=>this._pressedLetters.push(ce)),(0,A.b)(Oe),(0,w.h)(()=>this._pressedLetters.length>0),(0,D.U)(()=>this._pressedLetters.join(""))).subscribe(ce=>{const be=this._getItemsArray();for(let pt=1;pt!Oe[mt]||this._allowedModifierKeys.indexOf(mt)>-1);switch(ce){case N.Mf:return void this.tabOut.next();case N.JH:if(this._vertical&&pt){this.setNextItemActive();break}return;case N.LH:if(this._vertical&&pt){this.setPreviousItemActive();break}return;case N.SV:if(this._horizontal&&pt){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case N.oh:if(this._horizontal&&pt){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case N.Sd:if(this._homeAndEnd&&pt){this.setFirstItemActive();break}return;case N.uR:if(this._homeAndEnd&&pt){this.setLastItemActive();break}return;default:return void((pt||(0,N.Vb)(Oe,"shiftKey"))&&(Oe.key&&1===Oe.key.length?this._letterKeyStream.next(Oe.key.toLocaleUpperCase()):(ce>=N.A&&ce<=N.Z||ce>=N.xE&&ce<=N.aO)&&this._letterKeyStream.next(String.fromCharCode(ce))))}this._pressedLetters=[],Oe.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(Oe){const ce=this._getItemsArray(),be="number"==typeof Oe?Oe:ce.indexOf(Oe),pt=ce[be];this._activeItem=null==pt?null:pt,this._activeItemIndex=be}_setActiveItemByDelta(Oe){this._wrap?this._setActiveInWrapMode(Oe):this._setActiveInDefaultMode(Oe)}_setActiveInWrapMode(Oe){const ce=this._getItemsArray();for(let be=1;be<=ce.length;be++){const pt=(this._activeItemIndex+Oe*be+ce.length)%ce.length;if(!this._skipPredicateFn(ce[pt]))return void this.setActiveItem(pt)}}_setActiveInDefaultMode(Oe){this._setActiveItemByIndex(this._activeItemIndex+Oe,Oe)}_setActiveItemByIndex(Oe,ce){const be=this._getItemsArray();if(be[Oe]){for(;this._skipPredicateFn(be[Oe]);)if(!be[Oe+=ce])return;this.setActiveItem(Oe)}}_getItemsArray(){return this._items instanceof e.n_E?this._items.toArray():this._items}}class c extends u{setActiveItem(Oe){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(Oe),this.activeItem&&this.activeItem.setActiveStyles()}}class _ extends u{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(Oe){return this._origin=Oe,this}setActiveItem(Oe){super.setActiveItem(Oe),this.activeItem&&this.activeItem.focus(this._origin)}}let I=(()=>{class Pe{constructor(ce){this._platform=ce}isDisabled(ce){return ce.hasAttribute("disabled")}isVisible(ce){return function n(Pe){return!!(Pe.offsetWidth||Pe.offsetHeight||"function"==typeof Pe.getClientRects&&Pe.getClientRects().length)}(ce)&&"visible"===getComputedStyle(ce).visibility}isTabbable(ce){if(!this._platform.isBrowser)return!1;const be=function v(Pe){try{return Pe.frameElement}catch(Oe){return null}}(function Q(Pe){return Pe.ownerDocument&&Pe.ownerDocument.defaultView||window}(ce));if(be&&(-1===_e(be)||!this.isVisible(be)))return!1;let pt=ce.nodeName.toLowerCase(),mt=_e(ce);return ce.hasAttribute("contenteditable")?-1!==mt:!("iframe"===pt||"object"===pt||this._platform.WEBKIT&&this._platform.IOS&&!function Ne(Pe){let Oe=Pe.nodeName.toLowerCase(),ce="input"===Oe&&Pe.type;return"text"===ce||"password"===ce||"select"===Oe||"textarea"===Oe}(ce))&&("audio"===pt?!!ce.hasAttribute("controls")&&-1!==mt:"video"===pt?-1!==mt&&(null!==mt||this._platform.FIREFOX||ce.hasAttribute("controls")):ce.tabIndex>=0)}isFocusable(ce,be){return function we(Pe){return!function B(Pe){return function H(Pe){return"input"==Pe.nodeName.toLowerCase()}(Pe)&&"hidden"==Pe.type}(Pe)&&(function C(Pe){let Oe=Pe.nodeName.toLowerCase();return"input"===Oe||"select"===Oe||"button"===Oe||"textarea"===Oe}(Pe)||function P(Pe){return function q(Pe){return"a"==Pe.nodeName.toLowerCase()}(Pe)&&Pe.hasAttribute("href")}(Pe)||Pe.hasAttribute("contenteditable")||he(Pe))}(ce)&&!this.isDisabled(ce)&&((null==be?void 0:be.ignoreVisibility)||this.isVisible(ce))}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(f.t4))},Pe.\u0275prov=e.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})();function he(Pe){if(!Pe.hasAttribute("tabindex")||void 0===Pe.tabIndex)return!1;let Oe=Pe.getAttribute("tabindex");return!(!Oe||isNaN(parseInt(Oe,10)))}function _e(Pe){if(!he(Pe))return null;const Oe=parseInt(Pe.getAttribute("tabindex")||"",10);return isNaN(Oe)?-1:Oe}class Ue{constructor(Oe,ce,be,pt,mt=!1){this._element=Oe,this._checker=ce,this._ngZone=be,this._document=pt,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,mt||this.attachAnchors()}get enabled(){return this._enabled}set enabled(Oe){this._enabled=Oe,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(Oe,this._startAnchor),this._toggleAnchorTabIndex(Oe,this._endAnchor))}destroy(){const Oe=this._startAnchor,ce=this._endAnchor;Oe&&(Oe.removeEventListener("focus",this.startAnchorListener),Oe.remove()),ce&&(ce.removeEventListener("focus",this.endAnchorListener),ce.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(Oe){return new Promise(ce=>{this._executeOnStable(()=>ce(this.focusInitialElement(Oe)))})}focusFirstTabbableElementWhenReady(Oe){return new Promise(ce=>{this._executeOnStable(()=>ce(this.focusFirstTabbableElement(Oe)))})}focusLastTabbableElementWhenReady(Oe){return new Promise(ce=>{this._executeOnStable(()=>ce(this.focusLastTabbableElement(Oe)))})}_getRegionBoundary(Oe){const ce=this._element.querySelectorAll(`[cdk-focus-region-${Oe}], [cdkFocusRegion${Oe}], [cdk-focus-${Oe}]`);return"start"==Oe?ce.length?ce[0]:this._getFirstTabbableElement(this._element):ce.length?ce[ce.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(Oe){const ce=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(ce){if(!this._checker.isFocusable(ce)){const be=this._getFirstTabbableElement(ce);return null==be||be.focus(Oe),!!be}return ce.focus(Oe),!0}return this.focusFirstTabbableElement(Oe)}focusFirstTabbableElement(Oe){const ce=this._getRegionBoundary("start");return ce&&ce.focus(Oe),!!ce}focusLastTabbableElement(Oe){const ce=this._getRegionBoundary("end");return ce&&ce.focus(Oe),!!ce}hasAttached(){return this._hasAttached}_getFirstTabbableElement(Oe){if(this._checker.isFocusable(Oe)&&this._checker.isTabbable(Oe))return Oe;const ce=Oe.children;for(let be=0;be=0;be--){const pt=ce[be].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(ce[be]):null;if(pt)return pt}return null}_createAnchor(){const Oe=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,Oe),Oe.classList.add("cdk-visually-hidden"),Oe.classList.add("cdk-focus-trap-anchor"),Oe.setAttribute("aria-hidden","true"),Oe}_toggleAnchorTabIndex(Oe,ce){Oe?ce.setAttribute("tabindex","0"):ce.removeAttribute("tabindex")}toggleAnchors(Oe){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(Oe,this._startAnchor),this._toggleAnchorTabIndex(Oe,this._endAnchor))}_executeOnStable(Oe){this._ngZone.isStable?Oe():this._ngZone.onStable.pipe((0,L.q)(1)).subscribe(Oe)}}let ve=(()=>{class Pe{constructor(ce,be,pt){this._checker=ce,this._ngZone=be,this._document=pt}create(ce,be=!1){return new Ue(ce,this._checker,this._ngZone,this._document,be)}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(I),e.LFG(e.R0b),e.LFG(t.K0))},Pe.\u0275prov=e.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})(),V=(()=>{class Pe{constructor(ce,be,pt){this._elementRef=ce,this._focusTrapFactory=be,this._previouslyFocusedElement=null,this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0)}get enabled(){return this.focusTrap.enabled}set enabled(ce){this.focusTrap.enabled=(0,Z.Ig)(ce)}get autoCapture(){return this._autoCapture}set autoCapture(ce){this._autoCapture=(0,Z.Ig)(ce)}ngOnDestroy(){this.focusTrap.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap.hasAttached()||this.focusTrap.attachAnchors()}ngOnChanges(ce){const be=ce.autoCapture;be&&!be.firstChange&&this.autoCapture&&this.focusTrap.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,f.ht)(),this.focusTrap.focusInitialElementWhenReady()}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.Y36(e.SBq),e.Y36(ve),e.Y36(t.K0))},Pe.\u0275dir=e.lG2({type:Pe,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:["cdkTrapFocus","enabled"],autoCapture:["cdkTrapFocusAutoCapture","autoCapture"]},exportAs:["cdkTrapFocus"],features:[e.TTD]}),Pe})();function Te(Pe){return 0===Pe.buttons||0===Pe.offsetX&&0===Pe.offsetY}function xe(Pe){const Oe=Pe.touches&&Pe.touches[0]||Pe.changedTouches&&Pe.changedTouches[0];return!(!Oe||-1!==Oe.identifier||null!=Oe.radiusX&&1!==Oe.radiusX||null!=Oe.radiusY&&1!==Oe.radiusY)}const W=new e.OlP("cdk-input-modality-detector-options"),ee={ignoreKeys:[N.zL,N.jx,N.b2,N.MW,N.JU]},Ce=(0,f.i$)({passive:!0,capture:!0});let Le=(()=>{class Pe{constructor(ce,be,pt,mt){this._platform=ce,this._mostRecentTarget=null,this._modality=new b.X(null),this._lastTouchMs=0,this._onKeydown=Ht=>{var it,Re;(null===(Re=null===(it=this._options)||void 0===it?void 0:it.ignoreKeys)||void 0===Re?void 0:Re.some(tt=>tt===Ht.keyCode))||(this._modality.next("keyboard"),this._mostRecentTarget=(0,f.sA)(Ht))},this._onMousedown=Ht=>{Date.now()-this._lastTouchMs<650||(this._modality.next(Te(Ht)?"keyboard":"mouse"),this._mostRecentTarget=(0,f.sA)(Ht))},this._onTouchstart=Ht=>{xe(Ht)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,f.sA)(Ht))},this._options=Object.assign(Object.assign({},ee),mt),this.modalityDetected=this._modality.pipe((0,k.T)(1)),this.modalityChanged=this.modalityDetected.pipe((0,S.x)()),ce.isBrowser&&be.runOutsideAngular(()=>{pt.addEventListener("keydown",this._onKeydown,Ce),pt.addEventListener("mousedown",this._onMousedown,Ce),pt.addEventListener("touchstart",this._onTouchstart,Ce)})}get mostRecentModality(){return this._modality.value}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,Ce),document.removeEventListener("mousedown",this._onMousedown,Ce),document.removeEventListener("touchstart",this._onTouchstart,Ce))}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(f.t4),e.LFG(e.R0b),e.LFG(t.K0),e.LFG(W,8))},Pe.\u0275prov=e.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})();const ut=new e.OlP("liveAnnouncerElement",{providedIn:"root",factory:function ht(){return null}}),It=new e.OlP("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let ui=(()=>{class Pe{constructor(ce,be,pt,mt){this._ngZone=be,this._defaultOptions=mt,this._document=pt,this._liveElement=ce||this._createLiveElement()}announce(ce,...be){const pt=this._defaultOptions;let mt,Ht;return 1===be.length&&"number"==typeof be[0]?Ht=be[0]:[mt,Ht]=be,this.clear(),clearTimeout(this._previousTimeout),mt||(mt=pt&&pt.politeness?pt.politeness:"polite"),null==Ht&&pt&&(Ht=pt.duration),this._liveElement.setAttribute("aria-live",mt),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(it=>this._currentResolve=it)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=ce,"number"==typeof Ht&&(this._previousTimeout=setTimeout(()=>this.clear(),Ht)),this._currentResolve(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){var ce,be;clearTimeout(this._previousTimeout),null===(ce=this._liveElement)||void 0===ce||ce.remove(),this._liveElement=null,null===(be=this._currentResolve)||void 0===be||be.call(this),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const ce="cdk-live-announcer-element",be=this._document.getElementsByClassName(ce),pt=this._document.createElement("div");for(let mt=0;mt{class Pe{constructor(ce,be,pt,mt,Ht){this._ngZone=ce,this._platform=be,this._inputModalityDetector=pt,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new M.x,this._rootNodeFocusAndBlurListener=it=>{const Re=(0,f.sA)(it),tt="focus"===it.type?this._onFocus:this._onBlur;for(let Xe=Re;Xe;Xe=Xe.parentElement)tt.call(this,it,Xe)},this._document=mt,this._detectionMode=(null==Ht?void 0:Ht.detectionMode)||0}monitor(ce,be=!1){const pt=(0,Z.fI)(ce);if(!this._platform.isBrowser||1!==pt.nodeType)return(0,d.of)(null);const mt=(0,f.kV)(pt)||this._getDocument(),Ht=this._elementInfo.get(pt);if(Ht)return be&&(Ht.checkChildren=!0),Ht.subject;const it={checkChildren:be,subject:new M.x,rootNode:mt};return this._elementInfo.set(pt,it),this._registerGlobalListeners(it),it.subject}stopMonitoring(ce){const be=(0,Z.fI)(ce),pt=this._elementInfo.get(be);pt&&(pt.subject.complete(),this._setClasses(be),this._elementInfo.delete(be),this._removeGlobalListeners(pt))}focusVia(ce,be,pt){const mt=(0,Z.fI)(ce);mt===this._getDocument().activeElement?this._getClosestElementsInfo(mt).forEach(([it,Re])=>this._originChanged(it,be,Re)):(this._setOrigin(be),"function"==typeof mt.focus&&mt.focus(pt))}ngOnDestroy(){this._elementInfo.forEach((ce,be)=>this.stopMonitoring(be))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(ce){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(ce)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:"program"}_shouldBeAttributedToTouch(ce){return 1===this._detectionMode||!!(null==ce?void 0:ce.contains(this._inputModalityDetector._mostRecentTarget))}_setClasses(ce,be){ce.classList.toggle("cdk-focused",!!be),ce.classList.toggle("cdk-touch-focused","touch"===be),ce.classList.toggle("cdk-keyboard-focused","keyboard"===be),ce.classList.toggle("cdk-mouse-focused","mouse"===be),ce.classList.toggle("cdk-program-focused","program"===be)}_setOrigin(ce,be=!1){this._ngZone.runOutsideAngular(()=>{this._origin=ce,this._originFromTouchInteraction="touch"===ce&&be,0===this._detectionMode&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(ce,be){const pt=this._elementInfo.get(be),mt=(0,f.sA)(ce);!pt||!pt.checkChildren&&be!==mt||this._originChanged(be,this._getFocusOrigin(mt),pt)}_onBlur(ce,be){const pt=this._elementInfo.get(be);!pt||pt.checkChildren&&ce.relatedTarget instanceof Node&&be.contains(ce.relatedTarget)||(this._setClasses(be),this._emitOrigin(pt.subject,null))}_emitOrigin(ce,be){this._ngZone.run(()=>ce.next(be))}_registerGlobalListeners(ce){if(!this._platform.isBrowser)return;const be=ce.rootNode,pt=this._rootNodeFocusListenerCount.get(be)||0;pt||this._ngZone.runOutsideAngular(()=>{be.addEventListener("focus",this._rootNodeFocusAndBlurListener,hi),be.addEventListener("blur",this._rootNodeFocusAndBlurListener,hi)}),this._rootNodeFocusListenerCount.set(be,pt+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,U.R)(this._stopInputModalityDetector)).subscribe(mt=>{this._setOrigin(mt,!0)}))}_removeGlobalListeners(ce){const be=ce.rootNode;if(this._rootNodeFocusListenerCount.has(be)){const pt=this._rootNodeFocusListenerCount.get(be);pt>1?this._rootNodeFocusListenerCount.set(be,pt-1):(be.removeEventListener("focus",this._rootNodeFocusAndBlurListener,hi),be.removeEventListener("blur",this._rootNodeFocusAndBlurListener,hi),this._rootNodeFocusListenerCount.delete(be))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(ce,be,pt){this._setClasses(ce,be),this._emitOrigin(pt.subject,be),this._lastFocusOrigin=be}_getClosestElementsInfo(ce){const be=[];return this._elementInfo.forEach((pt,mt)=>{(mt===ce||pt.checkChildren&&mt.contains(ce))&&be.push([mt,pt])}),be}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(e.R0b),e.LFG(f.t4),e.LFG(Le),e.LFG(t.K0,8),e.LFG(Gt,8))},Pe.\u0275prov=e.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})(),Nt=(()=>{class Pe{constructor(ce,be){this._elementRef=ce,this._focusMonitor=be,this.cdkFocusChange=new e.vpe}ngAfterViewInit(){const ce=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(ce,1===ce.nodeType&&ce.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(be=>this.cdkFocusChange.emit(be))}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.Y36(e.SBq),e.Y36(xt))},Pe.\u0275dir=e.lG2({type:Pe,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"}}),Pe})();const Ct="cdk-high-contrast-black-on-white",et="cdk-high-contrast-white-on-black",yt="cdk-high-contrast-active";let ei=(()=>{class Pe{constructor(ce,be){this._platform=ce,this._document=be}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const ce=this._document.createElement("div");ce.style.backgroundColor="rgb(1,2,3)",ce.style.position="absolute",this._document.body.appendChild(ce);const be=this._document.defaultView||window,pt=be&&be.getComputedStyle?be.getComputedStyle(ce):null,mt=(pt&&pt.backgroundColor||"").replace(/ /g,"");switch(ce.remove(),mt){case"rgb(0,0,0)":return 2;case"rgb(255,255,255)":return 1}return 0}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const ce=this._document.body.classList;ce.remove(yt),ce.remove(Ct),ce.remove(et),this._hasCheckedHighContrastMode=!0;const be=this.getHighContrastMode();1===be?(ce.add(yt),ce.add(Ct)):2===be&&(ce.add(yt),ce.add(et))}}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(f.t4),e.LFG(t.K0))},Pe.\u0275prov=e.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})(),Yt=(()=>{class Pe{constructor(ce){ce._applyBodyHighContrastModeCssClasses()}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(e.LFG(ei))},Pe.\u0275mod=e.oAB({type:Pe}),Pe.\u0275inj=e.cJS({imports:[[Y.Q8]]}),Pe})()},226:(Ve,j,p)=>{"use strict";p.d(j,{Is:()=>d,vT:()=>h});var t=p(5e3),e=p(9808);const f=new t.OlP("cdk-dir-doc",{providedIn:"root",factory:function M(){return(0,t.f3M)(e.K0)}}),a=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let d=(()=>{class A{constructor(D){if(this.value="ltr",this.change=new t.vpe,D){const k=D.documentElement?D.documentElement.dir:null;this.value=function b(A){const w=(null==A?void 0:A.toLowerCase())||"";return"auto"===w&&"undefined"!=typeof navigator&&(null==navigator?void 0:navigator.language)?a.test(navigator.language)?"rtl":"ltr":"rtl"===w?"rtl":"ltr"}((D.body?D.body.dir:null)||k||"ltr")}}ngOnDestroy(){this.change.complete()}}return A.\u0275fac=function(D){return new(D||A)(t.LFG(f,8))},A.\u0275prov=t.Yz7({token:A,factory:A.\u0275fac,providedIn:"root"}),A})(),h=(()=>{class A{}return A.\u0275fac=function(D){return new(D||A)},A.\u0275mod=t.oAB({type:A}),A.\u0275inj=t.cJS({}),A})()},3191:(Ve,j,p)=>{"use strict";p.d(j,{Eq:()=>a,HM:()=>b,Ig:()=>e,du:()=>N,fI:()=>d,su:()=>f,t6:()=>M});var t=p(5e3);function e(h){return null!=h&&"false"!=`${h}`}function f(h,A=0){return M(h)?Number(h):A}function M(h){return!isNaN(parseFloat(h))&&!isNaN(Number(h))}function a(h){return Array.isArray(h)?h:[h]}function b(h){return null==h?"":"string"==typeof h?h:`${h}px`}function d(h){return h instanceof t.SBq?h.nativeElement:h}function N(h,A=/\s+/){const w=[];if(null!=h){const D=Array.isArray(h)?h:`${h}`.split(A);for(const L of D){const k=`${L}`.trim();k&&w.push(k)}}return w}},449:(Ve,j,p)=>{"use strict";p.d(j,{A8:()=>A,Ov:()=>N,Z9:()=>M,eX:()=>d,k:()=>w,o2:()=>f,yy:()=>b});var t=p(7579),e=p(5e3);class f{}function M(D){return D&&"function"==typeof D.connect}class b{applyChanges(L,k,S,U,Z){L.forEachOperation((Y,ne,$)=>{let de,te;if(null==Y.previousIndex){const ie=S(Y,ne,$);de=k.createEmbeddedView(ie.templateRef,ie.context,ie.index),te=1}else null==$?(k.remove(ne),te=3):(de=k.get(ne),k.move(de,$),te=2);Z&&Z({context:null==de?void 0:de.context,operation:te,record:Y})})}detach(){}}class d{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(L,k,S,U,Z){L.forEachOperation((Y,ne,$)=>{let de,te;null==Y.previousIndex?(de=this._insertView(()=>S(Y,ne,$),$,k,U(Y)),te=de?1:0):null==$?(this._detachAndCacheView(ne,k),te=3):(de=this._moveView(ne,$,k,U(Y)),te=2),Z&&Z({context:null==de?void 0:de.context,operation:te,record:Y})})}detach(){for(const L of this._viewCache)L.destroy();this._viewCache=[]}_insertView(L,k,S,U){const Z=this._insertViewFromCache(k,S);if(Z)return void(Z.context.$implicit=U);const Y=L();return S.createEmbeddedView(Y.templateRef,Y.context,Y.index)}_detachAndCacheView(L,k){const S=k.detach(L);this._maybeCacheView(S,k)}_moveView(L,k,S,U){const Z=S.get(L);return S.move(Z,k),Z.context.$implicit=U,Z}_maybeCacheView(L,k){if(this._viewCache.lengththis._markSelected(U)):this._markSelected(k[0]),this._selectedToEmit.length=0)}get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}select(...L){this._verifyValueAssignment(L),L.forEach(k=>this._markSelected(k)),this._emitChangeEvent()}deselect(...L){this._verifyValueAssignment(L),L.forEach(k=>this._unmarkSelected(k)),this._emitChangeEvent()}toggle(L){this.isSelected(L)?this.deselect(L):this.select(L)}clear(){this._unmarkAll(),this._emitChangeEvent()}isSelected(L){return this._selection.has(L)}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(L){this._multiple&&this.selected&&this._selected.sort(L)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(L){this.isSelected(L)||(this._multiple||this._unmarkAll(),this._selection.add(L),this._emitChanges&&this._selectedToEmit.push(L))}_unmarkSelected(L){this.isSelected(L)&&(this._selection.delete(L),this._emitChanges&&this._deselectedToEmit.push(L))}_unmarkAll(){this.isEmpty()||this._selection.forEach(L=>this._unmarkSelected(L))}_verifyValueAssignment(L){}}let A=(()=>{class D{constructor(){this._listeners=[]}notify(k,S){for(let U of this._listeners)U(k,S)}listen(k){return this._listeners.push(k),()=>{this._listeners=this._listeners.filter(S=>k!==S)}}ngOnDestroy(){this._listeners=[]}}return D.\u0275fac=function(k){return new(k||D)},D.\u0275prov=e.Yz7({token:D,factory:D.\u0275fac,providedIn:"root"}),D})();const w=new e.OlP("_ViewRepeater")},1159:(Ve,j,p)=>{"use strict";p.d(j,{A:()=>P,JH:()=>$,JU:()=>b,K5:()=>a,Ku:()=>L,LH:()=>Y,L_:()=>D,MW:()=>ui,Mf:()=>f,SV:()=>ne,Sd:()=>U,VM:()=>k,Vb:()=>Ft,Z:()=>It,ZH:()=>e,aO:()=>I,b2:()=>nt,hY:()=>w,jx:()=>d,oh:()=>Z,uR:()=>S,xE:()=>X,yY:()=>oe,zL:()=>N});const e=8,f=9,a=13,b=16,d=17,N=18,w=27,D=32,L=33,k=34,S=35,U=36,Z=37,Y=38,ne=39,$=40,oe=46,X=48,I=57,P=65,It=90,ui=91,nt=224;function Ft(Kt,...mi){return mi.length?mi.some(Ni=>Kt[Ni]):Kt.altKey||Kt.shiftKey||Kt.ctrlKey||Kt.metaKey}},5113:(Ve,j,p)=>{"use strict";p.d(j,{Yg:()=>$,u3:()=>te,xu:()=>k});var t=p(5e3),e=p(3191),f=p(7579),M=p(9841),a=p(7272),b=p(8306),d=p(5698),N=p(5684),h=p(8372),A=p(4004),w=p(8675),D=p(2722),L=p(925);let k=(()=>{class ie{}return ie.\u0275fac=function(X){return new(X||ie)},ie.\u0275mod=t.oAB({type:ie}),ie.\u0275inj=t.cJS({}),ie})();const S=new Set;let U,Z=(()=>{class ie{constructor(X){this._platform=X,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):ne}matchMedia(X){return(this._platform.WEBKIT||this._platform.BLINK)&&function Y(ie){if(!S.has(ie))try{U||(U=document.createElement("style"),U.setAttribute("type","text/css"),document.head.appendChild(U)),U.sheet&&(U.sheet.insertRule(`@media ${ie} {body{ }}`,0),S.add(ie))}catch(oe){console.error(oe)}}(X),this._matchMedia(X)}}return ie.\u0275fac=function(X){return new(X||ie)(t.LFG(L.t4))},ie.\u0275prov=t.Yz7({token:ie,factory:ie.\u0275fac,providedIn:"root"}),ie})();function ne(ie){return{matches:"all"===ie||""===ie,media:ie,addListener:()=>{},removeListener:()=>{}}}let $=(()=>{class ie{constructor(X,me){this._mediaMatcher=X,this._zone=me,this._queries=new Map,this._destroySubject=new f.x}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(X){return de((0,e.Eq)(X)).some(y=>this._registerQuery(y).mql.matches)}observe(X){const y=de((0,e.Eq)(X)).map(r=>this._registerQuery(r).observable);let i=(0,M.a)(y);return i=(0,a.z)(i.pipe((0,d.q)(1)),i.pipe((0,N.T)(1),(0,h.b)(0))),i.pipe((0,A.U)(r=>{const u={matches:!1,breakpoints:{}};return r.forEach(({matches:c,query:_})=>{u.matches=u.matches||c,u.breakpoints[_]=c}),u}))}_registerQuery(X){if(this._queries.has(X))return this._queries.get(X);const me=this._mediaMatcher.matchMedia(X),i={observable:new b.y(r=>{const u=c=>this._zone.run(()=>r.next(c));return me.addListener(u),()=>{me.removeListener(u)}}).pipe((0,w.O)(me),(0,A.U)(({matches:r})=>({query:X,matches:r})),(0,D.R)(this._destroySubject)),mql:me};return this._queries.set(X,i),i}}return ie.\u0275fac=function(X){return new(X||ie)(t.LFG(Z),t.LFG(t.R0b))},ie.\u0275prov=t.Yz7({token:ie,factory:ie.\u0275fac,providedIn:"root"}),ie})();function de(ie){return ie.map(oe=>oe.split(",")).reduce((oe,X)=>oe.concat(X)).map(oe=>oe.trim())}const te={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},7144:(Ve,j,p)=>{"use strict";p.d(j,{Q8:()=>h,wD:()=>N});var t=p(3191),e=p(5e3),f=p(8306),M=p(7579),a=p(8372);let b=(()=>{class A{create(D){return"undefined"==typeof MutationObserver?null:new MutationObserver(D)}}return A.\u0275fac=function(D){return new(D||A)},A.\u0275prov=e.Yz7({token:A,factory:A.\u0275fac,providedIn:"root"}),A})(),d=(()=>{class A{constructor(D){this._mutationObserverFactory=D,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((D,L)=>this._cleanupObserver(L))}observe(D){const L=(0,t.fI)(D);return new f.y(k=>{const U=this._observeElement(L).subscribe(k);return()=>{U.unsubscribe(),this._unobserveElement(L)}})}_observeElement(D){if(this._observedElements.has(D))this._observedElements.get(D).count++;else{const L=new M.x,k=this._mutationObserverFactory.create(S=>L.next(S));k&&k.observe(D,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(D,{observer:k,stream:L,count:1})}return this._observedElements.get(D).stream}_unobserveElement(D){this._observedElements.has(D)&&(this._observedElements.get(D).count--,this._observedElements.get(D).count||this._cleanupObserver(D))}_cleanupObserver(D){if(this._observedElements.has(D)){const{observer:L,stream:k}=this._observedElements.get(D);L&&L.disconnect(),k.complete(),this._observedElements.delete(D)}}}return A.\u0275fac=function(D){return new(D||A)(e.LFG(b))},A.\u0275prov=e.Yz7({token:A,factory:A.\u0275fac,providedIn:"root"}),A})(),N=(()=>{class A{constructor(D,L,k){this._contentObserver=D,this._elementRef=L,this._ngZone=k,this.event=new e.vpe,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(D){this._disabled=(0,t.Ig)(D),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(D){this._debounce=(0,t.su)(D),this._subscribe()}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const D=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?D.pipe((0,a.b)(this.debounce)):D).subscribe(this.event)})}_unsubscribe(){var D;null===(D=this._currentSubscription)||void 0===D||D.unsubscribe()}}return A.\u0275fac=function(D){return new(D||A)(e.Y36(d),e.Y36(e.SBq),e.Y36(e.R0b))},A.\u0275dir=e.lG2({type:A,selectors:[["","cdkObserveContent",""]],inputs:{disabled:["cdkObserveContentDisabled","disabled"],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]}),A})(),h=(()=>{class A{}return A.\u0275fac=function(D){return new(D||A)},A.\u0275mod=e.oAB({type:A}),A.\u0275inj=e.cJS({providers:[b]}),A})()},9776:(Ve,j,p)=>{"use strict";p.d(j,{pI:()=>dt,xu:()=>De,_G:()=>n,aV:()=>Ue,X_:()=>me,Xj:()=>E,U8:()=>le});var t=p(5303),e=p(9808),f=p(5e3),M=p(3191),a=p(925),b=p(226),d=p(7429),N=p(7579),h=p(727),A=p(6451),w=p(4482),D=p(5403),k=p(5698),S=p(2722),U=p(1159);const Z=(0,a.Mq)();class Y{constructor(W,ee){this._viewportRuler=W,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=ee}attach(){}enable(){if(this._canBeEnabled()){const W=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=W.style.left||"",this._previousHTMLStyles.top=W.style.top||"",W.style.left=(0,M.HM)(-this._previousScrollPosition.left),W.style.top=(0,M.HM)(-this._previousScrollPosition.top),W.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const W=this._document.documentElement,ue=W.style,Ce=this._document.body.style,Le=ue.scrollBehavior||"",ut=Ce.scrollBehavior||"";this._isEnabled=!1,ue.left=this._previousHTMLStyles.left,ue.top=this._previousHTMLStyles.top,W.classList.remove("cdk-global-scrollblock"),Z&&(ue.scrollBehavior=Ce.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),Z&&(ue.scrollBehavior=Le,Ce.scrollBehavior=ut)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const ee=this._document.body,ue=this._viewportRuler.getViewportSize();return ee.scrollHeight>ue.height||ee.scrollWidth>ue.width}}class ${constructor(W,ee,ue,Ce){this._scrollDispatcher=W,this._ngZone=ee,this._viewportRuler=ue,this._config=Ce,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(W){this._overlayRef=W}enable(){if(this._scrollSubscription)return;const W=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=W.subscribe(()=>{const ee=this._viewportRuler.getViewportScrollPosition().top;Math.abs(ee-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=W.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class de{enable(){}disable(){}attach(){}}function te(xe,W){return W.some(ee=>xe.bottomee.bottom||xe.rightee.right)}function ie(xe,W){return W.some(ee=>xe.topee.bottom||xe.leftee.right)}class oe{constructor(W,ee,ue,Ce){this._scrollDispatcher=W,this._viewportRuler=ee,this._ngZone=ue,this._config=Ce,this._scrollSubscription=null}attach(W){this._overlayRef=W}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const ee=this._overlayRef.overlayElement.getBoundingClientRect(),{width:ue,height:Ce}=this._viewportRuler.getViewportSize();te(ee,[{width:ue,height:Ce,bottom:Ce,right:ue,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let X=(()=>{class xe{constructor(ee,ue,Ce,Le){this._scrollDispatcher=ee,this._viewportRuler=ue,this._ngZone=Ce,this.noop=()=>new de,this.close=ut=>new $(this._scrollDispatcher,this._ngZone,this._viewportRuler,ut),this.block=()=>new Y(this._viewportRuler,this._document),this.reposition=ut=>new oe(this._scrollDispatcher,this._viewportRuler,this._ngZone,ut),this._document=Le}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.LFG(t.mF),f.LFG(t.rL),f.LFG(f.R0b),f.LFG(e.K0))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})();class me{constructor(W){if(this.scrollStrategy=new de,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,W){const ee=Object.keys(W);for(const ue of ee)void 0!==W[ue]&&(this[ue]=W[ue])}}}class r{constructor(W,ee){this.connectionPair=W,this.scrollableViewProperties=ee}}class _{constructor(W,ee,ue,Ce,Le,ut,ht,It,ui){this._portalOutlet=W,this._host=ee,this._pane=ue,this._config=Ce,this._ngZone=Le,this._keyboardDispatcher=ut,this._document=ht,this._location=It,this._outsideClickDispatcher=ui,this._backdropElement=null,this._backdropClick=new N.x,this._attachments=new N.x,this._detachments=new N.x,this._locationChanges=h.w0.EMPTY,this._backdropClickHandler=Wt=>this._backdropClick.next(Wt),this._backdropTransitionendHandler=Wt=>{this._disposeBackdrop(Wt.target)},this._keydownEvents=new N.x,this._outsidePointerEvents=new N.x,Ce.scrollStrategy&&(this._scrollStrategy=Ce.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=Ce.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(W){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const ee=this._portalOutlet.attach(W);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),ee}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const W=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),W}dispose(){var W;const ee=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),null===(W=this._host)||void 0===W||W.remove(),this._previousHostParent=this._pane=this._host=null,ee&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(W){W!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=W,this.hasAttached()&&(W.attach(this),this.updatePosition()))}updateSize(W){this._config=Object.assign(Object.assign({},this._config),W),this._updateElementSize()}setDirection(W){this._config=Object.assign(Object.assign({},this._config),{direction:W}),this._updateElementDirection()}addPanelClass(W){this._pane&&this._toggleClasses(this._pane,W,!0)}removePanelClass(W){this._pane&&this._toggleClasses(this._pane,W,!1)}getDirection(){const W=this._config.direction;return W?"string"==typeof W?W:W.value:"ltr"}updateScrollStrategy(W){W!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=W,this.hasAttached()&&(W.attach(this),W.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const W=this._pane.style;W.width=(0,M.HM)(this._config.width),W.height=(0,M.HM)(this._config.height),W.minWidth=(0,M.HM)(this._config.minWidth),W.minHeight=(0,M.HM)(this._config.minHeight),W.maxWidth=(0,M.HM)(this._config.maxWidth),W.maxHeight=(0,M.HM)(this._config.maxHeight)}_togglePointerEvents(W){this._pane.style.pointerEvents=W?"":"none"}_attachBackdrop(){const W="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",this._backdropClickHandler),"undefined"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(W)})}):this._backdropElement.classList.add(W)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const W=this._backdropElement;!W||(W.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{W.addEventListener("transitionend",this._backdropTransitionendHandler)}),W.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(W)},500)))}_toggleClasses(W,ee,ue){const Ce=(0,M.Eq)(ee||[]).filter(Le=>!!Le);Ce.length&&(ue?W.classList.add(...Ce):W.classList.remove(...Ce))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const W=this._ngZone.onStable.pipe((0,S.R)((0,A.T)(this._attachments,this._detachments))).subscribe(()=>{(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),W.unsubscribe())})})}_disposeScrollStrategy(){const W=this._scrollStrategy;W&&(W.disable(),W.detach&&W.detach())}_disposeBackdrop(W){W&&(W.removeEventListener("click",this._backdropClickHandler),W.removeEventListener("transitionend",this._backdropTransitionendHandler),W.remove(),this._backdropElement===W&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}let E=(()=>{class xe{constructor(ee,ue){this._platform=ue,this._document=ee}ngOnDestroy(){var ee;null===(ee=this._containerElement)||void 0===ee||ee.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const ee="cdk-overlay-container";if(this._platform.isBrowser||(0,a.Oy)()){const Ce=this._document.querySelectorAll(`.${ee}[platform="server"], .${ee}[platform="test"]`);for(let Le=0;Le{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const W=this._originRect,ee=this._overlayRect,ue=this._viewportRect,Ce=this._containerRect,Le=[];let ut;for(let ht of this._preferredPositions){let It=this._getOriginPoint(W,Ce,ht),ui=this._getOverlayPoint(It,ee,ht),Wt=this._getOverlayFit(ui,ee,ue,ht);if(Wt.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(ht,It);this._canFitWithFlexibleDimensions(Wt,ui,ue)?Le.push({position:ht,origin:It,overlayRect:ee,boundingBoxRect:this._calculateBoundingBoxRect(It,ht)}):(!ut||ut.overlayFit.visibleAreaIt&&(It=Wt,ht=ui)}return this._isPushed=!1,void this._applyPosition(ht.position,ht.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(ut.position,ut.originPoint);this._applyPosition(ut.position,ut.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&C(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(I),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const W=this._lastPosition;if(W){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const ee=this._getOriginPoint(this._originRect,this._containerRect,W);this._applyPosition(W,ee)}else this.apply()}withScrollableContainers(W){return this._scrollables=W,this}withPositions(W){return this._preferredPositions=W,-1===W.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(W){return this._viewportMargin=W,this}withFlexibleDimensions(W=!0){return this._hasFlexibleDimensions=W,this}withGrowAfterOpen(W=!0){return this._growAfterOpen=W,this}withPush(W=!0){return this._canPush=W,this}withLockedPosition(W=!0){return this._positionLocked=W,this}setOrigin(W){return this._origin=W,this}withDefaultOffsetX(W){return this._offsetX=W,this}withDefaultOffsetY(W){return this._offsetY=W,this}withTransformOriginOn(W){return this._transformOriginSelector=W,this}_getOriginPoint(W,ee,ue){let Ce,Le;if("center"==ue.originX)Ce=W.left+W.width/2;else{const ut=this._isRtl()?W.right:W.left,ht=this._isRtl()?W.left:W.right;Ce="start"==ue.originX?ut:ht}return ee.left<0&&(Ce-=ee.left),Le="center"==ue.originY?W.top+W.height/2:"top"==ue.originY?W.top:W.bottom,ee.top<0&&(Le-=ee.top),{x:Ce,y:Le}}_getOverlayPoint(W,ee,ue){let Ce,Le;return Ce="center"==ue.overlayX?-ee.width/2:"start"===ue.overlayX?this._isRtl()?-ee.width:0:this._isRtl()?0:-ee.width,Le="center"==ue.overlayY?-ee.height/2:"top"==ue.overlayY?0:-ee.height,{x:W.x+Ce,y:W.y+Le}}_getOverlayFit(W,ee,ue,Ce){const Le=P(ee);let{x:ut,y:ht}=W,It=this._getOffset(Ce,"x"),ui=this._getOffset(Ce,"y");It&&(ut+=It),ui&&(ht+=ui);let hi=0-ht,xt=ht+Le.height-ue.height,Nt=this._subtractOverflows(Le.width,0-ut,ut+Le.width-ue.width),Ct=this._subtractOverflows(Le.height,hi,xt),et=Nt*Ct;return{visibleArea:et,isCompletelyWithinViewport:Le.width*Le.height===et,fitsInViewportVertically:Ct===Le.height,fitsInViewportHorizontally:Nt==Le.width}}_canFitWithFlexibleDimensions(W,ee,ue){if(this._hasFlexibleDimensions){const Ce=ue.bottom-ee.y,Le=ue.right-ee.x,ut=B(this._overlayRef.getConfig().minHeight),ht=B(this._overlayRef.getConfig().minWidth),ui=W.fitsInViewportHorizontally||null!=ht&&ht<=Le;return(W.fitsInViewportVertically||null!=ut&&ut<=Ce)&&ui}return!1}_pushOverlayOnScreen(W,ee,ue){if(this._previousPushAmount&&this._positionLocked)return{x:W.x+this._previousPushAmount.x,y:W.y+this._previousPushAmount.y};const Ce=P(ee),Le=this._viewportRect,ut=Math.max(W.x+Ce.width-Le.width,0),ht=Math.max(W.y+Ce.height-Le.height,0),It=Math.max(Le.top-ue.top-W.y,0),ui=Math.max(Le.left-ue.left-W.x,0);let Wt=0,Gt=0;return Wt=Ce.width<=Le.width?ui||-ut:W.xNt&&!this._isInitialRender&&!this._growAfterOpen&&(ut=W.y-Nt/2)}if("end"===ee.overlayX&&!Ce||"start"===ee.overlayX&&Ce)hi=ue.width-W.x+this._viewportMargin,Wt=W.x-this._viewportMargin;else if("start"===ee.overlayX&&!Ce||"end"===ee.overlayX&&Ce)Gt=W.x,Wt=ue.right-W.x;else{const xt=Math.min(ue.right-W.x+ue.left,W.x),Nt=this._lastBoundingBoxSize.width;Wt=2*xt,Gt=W.x-xt,Wt>Nt&&!this._isInitialRender&&!this._growAfterOpen&&(Gt=W.x-Nt/2)}return{top:ut,left:Gt,bottom:ht,right:hi,width:Wt,height:Le}}_setBoundingBoxStyles(W,ee){const ue=this._calculateBoundingBoxRect(W,ee);!this._isInitialRender&&!this._growAfterOpen&&(ue.height=Math.min(ue.height,this._lastBoundingBoxSize.height),ue.width=Math.min(ue.width,this._lastBoundingBoxSize.width));const Ce={};if(this._hasExactPosition())Ce.top=Ce.left="0",Ce.bottom=Ce.right=Ce.maxHeight=Ce.maxWidth="",Ce.width=Ce.height="100%";else{const Le=this._overlayRef.getConfig().maxHeight,ut=this._overlayRef.getConfig().maxWidth;Ce.height=(0,M.HM)(ue.height),Ce.top=(0,M.HM)(ue.top),Ce.bottom=(0,M.HM)(ue.bottom),Ce.width=(0,M.HM)(ue.width),Ce.left=(0,M.HM)(ue.left),Ce.right=(0,M.HM)(ue.right),Ce.alignItems="center"===ee.overlayX?"center":"end"===ee.overlayX?"flex-end":"flex-start",Ce.justifyContent="center"===ee.overlayY?"center":"bottom"===ee.overlayY?"flex-end":"flex-start",Le&&(Ce.maxHeight=(0,M.HM)(Le)),ut&&(Ce.maxWidth=(0,M.HM)(ut))}this._lastBoundingBoxSize=ue,C(this._boundingBox.style,Ce)}_resetBoundingBoxStyles(){C(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){C(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(W,ee){const ue={},Ce=this._hasExactPosition(),Le=this._hasFlexibleDimensions,ut=this._overlayRef.getConfig();if(Ce){const Wt=this._viewportRuler.getViewportScrollPosition();C(ue,this._getExactOverlayY(ee,W,Wt)),C(ue,this._getExactOverlayX(ee,W,Wt))}else ue.position="static";let ht="",It=this._getOffset(ee,"x"),ui=this._getOffset(ee,"y");It&&(ht+=`translateX(${It}px) `),ui&&(ht+=`translateY(${ui}px)`),ue.transform=ht.trim(),ut.maxHeight&&(Ce?ue.maxHeight=(0,M.HM)(ut.maxHeight):Le&&(ue.maxHeight="")),ut.maxWidth&&(Ce?ue.maxWidth=(0,M.HM)(ut.maxWidth):Le&&(ue.maxWidth="")),C(this._pane.style,ue)}_getExactOverlayY(W,ee,ue){let Ce={top:"",bottom:""},Le=this._getOverlayPoint(ee,this._overlayRect,W);return this._isPushed&&(Le=this._pushOverlayOnScreen(Le,this._overlayRect,ue)),"bottom"===W.overlayY?Ce.bottom=this._document.documentElement.clientHeight-(Le.y+this._overlayRect.height)+"px":Ce.top=(0,M.HM)(Le.y),Ce}_getExactOverlayX(W,ee,ue){let ut,Ce={left:"",right:""},Le=this._getOverlayPoint(ee,this._overlayRect,W);return this._isPushed&&(Le=this._pushOverlayOnScreen(Le,this._overlayRect,ue)),ut=this._isRtl()?"end"===W.overlayX?"left":"right":"end"===W.overlayX?"right":"left","right"===ut?Ce.right=this._document.documentElement.clientWidth-(Le.x+this._overlayRect.width)+"px":Ce.left=(0,M.HM)(Le.x),Ce}_getScrollVisibility(){const W=this._getOriginRect(),ee=this._pane.getBoundingClientRect(),ue=this._scrollables.map(Ce=>Ce.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:ie(W,ue),isOriginOutsideView:te(W,ue),isOverlayClipped:ie(ee,ue),isOverlayOutsideView:te(ee,ue)}}_subtractOverflows(W,...ee){return ee.reduce((ue,Ce)=>ue-Math.max(Ce,0),W)}_getNarrowedViewportRect(){const W=this._document.documentElement.clientWidth,ee=this._document.documentElement.clientHeight,ue=this._viewportRuler.getViewportScrollPosition();return{top:ue.top+this._viewportMargin,left:ue.left+this._viewportMargin,right:ue.left+W-this._viewportMargin,bottom:ue.top+ee-this._viewportMargin,width:W-2*this._viewportMargin,height:ee-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(W,ee){return"x"===ee?null==W.offsetX?this._offsetX:W.offsetX:null==W.offsetY?this._offsetY:W.offsetY}_validatePositions(){}_addPanelClasses(W){this._pane&&(0,M.Eq)(W).forEach(ee=>{""!==ee&&-1===this._appliedPanelClasses.indexOf(ee)&&(this._appliedPanelClasses.push(ee),this._pane.classList.add(ee))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(W=>{this._pane.classList.remove(W)}),this._appliedPanelClasses=[])}_getOriginRect(){const W=this._origin;if(W instanceof f.SBq)return W.nativeElement.getBoundingClientRect();if(W instanceof Element)return W.getBoundingClientRect();const ee=W.width||0,ue=W.height||0;return{top:W.y,bottom:W.y+ue,left:W.x,right:W.x+ee,height:ue,width:ee}}}function C(xe,W){for(let ee in W)W.hasOwnProperty(ee)&&(xe[ee]=W[ee]);return xe}function B(xe){if("number"!=typeof xe&&null!=xe){const[W,ee]=xe.split(v);return ee&&"px"!==ee?null:parseFloat(W)}return xe||null}function P(xe){return{top:Math.floor(xe.top),right:Math.floor(xe.right),bottom:Math.floor(xe.bottom),left:Math.floor(xe.left),width:Math.floor(xe.width),height:Math.floor(xe.height)}}const H="cdk-global-overlay-wrapper";class q{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._leftOffset="",this._rightOffset="",this._alignItems="",this._justifyContent="",this._width="",this._height=""}attach(W){const ee=W.getConfig();this._overlayRef=W,this._width&&!ee.width&&W.updateSize({width:this._width}),this._height&&!ee.height&&W.updateSize({height:this._height}),W.hostElement.classList.add(H),this._isDisposed=!1}top(W=""){return this._bottomOffset="",this._topOffset=W,this._alignItems="flex-start",this}left(W=""){return this._rightOffset="",this._leftOffset=W,this._justifyContent="flex-start",this}bottom(W=""){return this._topOffset="",this._bottomOffset=W,this._alignItems="flex-end",this}right(W=""){return this._leftOffset="",this._rightOffset=W,this._justifyContent="flex-end",this}width(W=""){return this._overlayRef?this._overlayRef.updateSize({width:W}):this._width=W,this}height(W=""){return this._overlayRef?this._overlayRef.updateSize({height:W}):this._height=W,this}centerHorizontally(W=""){return this.left(W),this._justifyContent="center",this}centerVertically(W=""){return this.top(W),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const W=this._overlayRef.overlayElement.style,ee=this._overlayRef.hostElement.style,ue=this._overlayRef.getConfig(),{width:Ce,height:Le,maxWidth:ut,maxHeight:ht}=ue,It=!("100%"!==Ce&&"100vw"!==Ce||ut&&"100%"!==ut&&"100vw"!==ut),ui=!("100%"!==Le&&"100vh"!==Le||ht&&"100%"!==ht&&"100vh"!==ht);W.position=this._cssPosition,W.marginLeft=It?"0":this._leftOffset,W.marginTop=ui?"0":this._topOffset,W.marginBottom=this._bottomOffset,W.marginRight=this._rightOffset,It?ee.justifyContent="flex-start":"center"===this._justifyContent?ee.justifyContent="center":"rtl"===this._overlayRef.getConfig().direction?"flex-start"===this._justifyContent?ee.justifyContent="flex-end":"flex-end"===this._justifyContent&&(ee.justifyContent="flex-start"):ee.justifyContent=this._justifyContent,ee.alignItems=ui?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const W=this._overlayRef.overlayElement.style,ee=this._overlayRef.hostElement,ue=ee.style;ee.classList.remove(H),ue.justifyContent=ue.alignItems=W.marginTop=W.marginBottom=W.marginLeft=W.marginRight=W.position="",this._overlayRef=null,this._isDisposed=!0}}let he=(()=>{class xe{constructor(ee,ue,Ce,Le){this._viewportRuler=ee,this._document=ue,this._platform=Ce,this._overlayContainer=Le}global(){return new q}flexibleConnectedTo(ee){return new n(ee,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.LFG(t.rL),f.LFG(e.K0),f.LFG(a.t4),f.LFG(E))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),_e=(()=>{class xe{constructor(ee){this._attachedOverlays=[],this._document=ee}ngOnDestroy(){this.detach()}add(ee){this.remove(ee),this._attachedOverlays.push(ee)}remove(ee){const ue=this._attachedOverlays.indexOf(ee);ue>-1&&this._attachedOverlays.splice(ue,1),0===this._attachedOverlays.length&&this.detach()}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.LFG(e.K0))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),Ne=(()=>{class xe extends _e{constructor(ee,ue){super(ee),this._ngZone=ue,this._keydownListener=Ce=>{const Le=this._attachedOverlays;for(let ut=Le.length-1;ut>-1;ut--)if(Le[ut]._keydownEvents.observers.length>0){const ht=Le[ut]._keydownEvents;this._ngZone?this._ngZone.run(()=>ht.next(Ce)):ht.next(Ce);break}}}add(ee){super.add(ee),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.LFG(e.K0),f.LFG(f.R0b,8))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),we=(()=>{class xe extends _e{constructor(ee,ue,Ce){super(ee),this._platform=ue,this._ngZone=Ce,this._cursorStyleIsSet=!1,this._pointerDownListener=Le=>{this._pointerDownEventTarget=(0,a.sA)(Le)},this._clickListener=Le=>{const ut=(0,a.sA)(Le),ht="click"===Le.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:ut;this._pointerDownEventTarget=null;const It=this._attachedOverlays.slice();for(let ui=It.length-1;ui>-1;ui--){const Wt=It[ui];if(Wt._outsidePointerEvents.observers.length<1||!Wt.hasAttached())continue;if(Wt.overlayElement.contains(ut)||Wt.overlayElement.contains(ht))break;const Gt=Wt._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Gt.next(Le)):Gt.next(Le)}}}add(ee){if(super.add(ee),!this._isAttached){const ue=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(ue)):this._addEventListeners(ue),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=ue.style.cursor,ue.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const ee=this._document.body;ee.removeEventListener("pointerdown",this._pointerDownListener,!0),ee.removeEventListener("click",this._clickListener,!0),ee.removeEventListener("auxclick",this._clickListener,!0),ee.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(ee.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(ee){ee.addEventListener("pointerdown",this._pointerDownListener,!0),ee.addEventListener("click",this._clickListener,!0),ee.addEventListener("auxclick",this._clickListener,!0),ee.addEventListener("contextmenu",this._clickListener,!0)}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.LFG(e.K0),f.LFG(a.t4),f.LFG(f.R0b,8))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})(),Q=0,Ue=(()=>{class xe{constructor(ee,ue,Ce,Le,ut,ht,It,ui,Wt,Gt,hi){this.scrollStrategies=ee,this._overlayContainer=ue,this._componentFactoryResolver=Ce,this._positionBuilder=Le,this._keyboardDispatcher=ut,this._injector=ht,this._ngZone=It,this._document=ui,this._directionality=Wt,this._location=Gt,this._outsideClickDispatcher=hi}create(ee){const ue=this._createHostElement(),Ce=this._createPaneElement(ue),Le=this._createPortalOutlet(Ce),ut=new me(ee);return ut.direction=ut.direction||this._directionality.value,new _(Le,ue,Ce,ut,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher)}position(){return this._positionBuilder}_createPaneElement(ee){const ue=this._document.createElement("div");return ue.id="cdk-overlay-"+Q++,ue.classList.add("cdk-overlay-pane"),ee.appendChild(ue),ue}_createHostElement(){const ee=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(ee),ee}_createPortalOutlet(ee){return this._appRef||(this._appRef=this._injector.get(f.z2F)),new d.u0(ee,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.LFG(X),f.LFG(E),f.LFG(f._Vd),f.LFG(he),f.LFG(Ne),f.LFG(f.zs3),f.LFG(f.R0b),f.LFG(e.K0),f.LFG(b.Is),f.LFG(e.Ye),f.LFG(we))},xe.\u0275prov=f.Yz7({token:xe,factory:xe.\u0275fac}),xe})();const ve=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],V=new f.OlP("cdk-connected-overlay-scroll-strategy");let De=(()=>{class xe{constructor(ee){this.elementRef=ee}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.Y36(f.SBq))},xe.\u0275dir=f.lG2({type:xe,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"]}),xe})(),dt=(()=>{class xe{constructor(ee,ue,Ce,Le,ut){this._overlay=ee,this._dir=ut,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=h.w0.EMPTY,this._attachSubscription=h.w0.EMPTY,this._detachSubscription=h.w0.EMPTY,this._positionSubscription=h.w0.EMPTY,this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.backdropClick=new f.vpe,this.positionChange=new f.vpe,this.attach=new f.vpe,this.detach=new f.vpe,this.overlayKeydown=new f.vpe,this.overlayOutsideClick=new f.vpe,this._templatePortal=new d.UE(ue,Ce),this._scrollStrategyFactory=Le,this.scrollStrategy=this._scrollStrategyFactory()}get offsetX(){return this._offsetX}set offsetX(ee){this._offsetX=ee,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(ee){this._offsetY=ee,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(ee){this._hasBackdrop=(0,M.Ig)(ee)}get lockPosition(){return this._lockPosition}set lockPosition(ee){this._lockPosition=(0,M.Ig)(ee)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(ee){this._flexibleDimensions=(0,M.Ig)(ee)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(ee){this._growAfterOpen=(0,M.Ig)(ee)}get push(){return this._push}set push(ee){this._push=(0,M.Ig)(ee)}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef&&this._overlayRef.dispose()}ngOnChanges(ee){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),ee.origin&&this.open&&this._position.apply()),ee.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=ve);const ee=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=ee.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=ee.detachments().subscribe(()=>this.detach.emit()),ee.keydownEvents().subscribe(ue=>{this.overlayKeydown.next(ue),ue.keyCode===U.hY&&!this.disableClose&&!(0,U.Vb)(ue)&&(ue.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(ue=>{this.overlayOutsideClick.next(ue)})}_buildConfig(){const ee=this._position=this.positionStrategy||this._createPositionStrategy(),ue=new me({direction:this._dir,positionStrategy:ee,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(ue.width=this.width),(this.height||0===this.height)&&(ue.height=this.height),(this.minWidth||0===this.minWidth)&&(ue.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(ue.minHeight=this.minHeight),this.backdropClass&&(ue.backdropClass=this.backdropClass),this.panelClass&&(ue.panelClass=this.panelClass),ue}_updatePositionStrategy(ee){const ue=this.positions.map(Ce=>({originX:Ce.originX,originY:Ce.originY,overlayX:Ce.overlayX,overlayY:Ce.overlayY,offsetX:Ce.offsetX||this.offsetX,offsetY:Ce.offsetY||this.offsetY,panelClass:Ce.panelClass||void 0}));return ee.setOrigin(this._getFlexibleConnectedPositionStrategyOrigin()).withPositions(ue).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const ee=this._overlay.position().flexibleConnectedTo(this._getFlexibleConnectedPositionStrategyOrigin());return this._updatePositionStrategy(ee),ee}_getFlexibleConnectedPositionStrategyOrigin(){return this.origin instanceof De?this.origin.elementRef:this.origin}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(ee=>{this.backdropClick.emit(ee)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function L(xe,W=!1){return(0,w.e)((ee,ue)=>{let Ce=0;ee.subscribe((0,D.x)(ue,Le=>{const ut=xe(Le,Ce++);(ut||W)&&ue.next(Le),!ut&&ue.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(ee=>{this.positionChange.emit(ee),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}}return xe.\u0275fac=function(ee){return new(ee||xe)(f.Y36(Ue),f.Y36(f.Rgc),f.Y36(f.s_b),f.Y36(V),f.Y36(b.Is,8))},xe.\u0275dir=f.lG2({type:xe,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:["cdkConnectedOverlayOrigin","origin"],positions:["cdkConnectedOverlayPositions","positions"],positionStrategy:["cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:["cdkConnectedOverlayOffsetX","offsetX"],offsetY:["cdkConnectedOverlayOffsetY","offsetY"],width:["cdkConnectedOverlayWidth","width"],height:["cdkConnectedOverlayHeight","height"],minWidth:["cdkConnectedOverlayMinWidth","minWidth"],minHeight:["cdkConnectedOverlayMinHeight","minHeight"],backdropClass:["cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:["cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:["cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:["cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:["cdkConnectedOverlayOpen","open"],disableClose:["cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:["cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:["cdkConnectedOverlayHasBackdrop","hasBackdrop"],lockPosition:["cdkConnectedOverlayLockPosition","lockPosition"],flexibleDimensions:["cdkConnectedOverlayFlexibleDimensions","flexibleDimensions"],growAfterOpen:["cdkConnectedOverlayGrowAfterOpen","growAfterOpen"],push:["cdkConnectedOverlayPush","push"]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],features:[f.TTD]}),xe})();const Ae={provide:V,deps:[Ue],useFactory:function Ie(xe){return()=>xe.scrollStrategies.reposition()}};let le=(()=>{class xe{}return xe.\u0275fac=function(ee){return new(ee||xe)},xe.\u0275mod=f.oAB({type:xe}),xe.\u0275inj=f.cJS({providers:[Ue,Ae],imports:[[b.vT,d.eL,t.Cl],t.Cl]}),xe})()},925:(Ve,j,p)=>{"use strict";p.d(j,{Mq:()=>k,Oy:()=>de,_i:()=>S,ht:()=>ne,i$:()=>w,kV:()=>Y,qK:()=>N,sA:()=>$,t4:()=>M});var t=p(5e3),e=p(9808);let f;try{f="undefined"!=typeof Intl&&Intl.v8BreakIterator}catch(te){f=!1}let b,M=(()=>{class te{constructor(oe){this._platformId=oe,this.isBrowser=this._platformId?(0,e.NF)(this._platformId):"object"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!f)&&"undefined"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return te.\u0275fac=function(oe){return new(oe||te)(t.LFG(t.Lbi))},te.\u0275prov=t.Yz7({token:te,factory:te.\u0275fac,providedIn:"root"}),te})();const d=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function N(){if(b)return b;if("object"!=typeof document||!document)return b=new Set(d),b;let te=document.createElement("input");return b=new Set(d.filter(ie=>(te.setAttribute("type",ie),te.type===ie))),b}let h,D,L,U;function w(te){return function A(){if(null==h&&"undefined"!=typeof window)try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>h=!0}))}finally{h=h||!1}return h}()?te:!!te.capture}function k(){if(null==L){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return L=!1,L;if("scrollBehavior"in document.documentElement.style)L=!0;else{const te=Element.prototype.scrollTo;L=!!te&&!/\{\s*\[native code\]\s*\}/.test(te.toString())}}return L}function S(){if("object"!=typeof document||!document)return 0;if(null==D){const te=document.createElement("div"),ie=te.style;te.dir="rtl",ie.width="1px",ie.overflow="auto",ie.visibility="hidden",ie.pointerEvents="none",ie.position="absolute";const oe=document.createElement("div"),X=oe.style;X.width="2px",X.height="1px",te.appendChild(oe),document.body.appendChild(te),D=0,0===te.scrollLeft&&(te.scrollLeft=1,D=0===te.scrollLeft?1:2),te.remove()}return D}function Y(te){if(function Z(){if(null==U){const te="undefined"!=typeof document?document.head:null;U=!(!te||!te.createShadowRoot&&!te.attachShadow)}return U}()){const ie=te.getRootNode?te.getRootNode():null;if("undefined"!=typeof ShadowRoot&&ShadowRoot&&ie instanceof ShadowRoot)return ie}return null}function ne(){let te="undefined"!=typeof document&&document?document.activeElement:null;for(;te&&te.shadowRoot;){const ie=te.shadowRoot.activeElement;if(ie===te)break;te=ie}return te}function $(te){return te.composedPath?te.composedPath()[0]:te.target}function de(){return"undefined"!=typeof __karma__&&!!__karma__||"undefined"!=typeof jasmine&&!!jasmine||"undefined"!=typeof jest&&!!jest||"undefined"!=typeof Mocha&&!!Mocha}},7429:(Ve,j,p)=>{"use strict";p.d(j,{C5:()=>A,Pl:()=>ne,UE:()=>w,eL:()=>de,en:()=>L,ig:()=>Z,u0:()=>S});var t=p(5e3),e=p(9808);class h{attach(oe){return this._attachedHost=oe,oe.attach(this)}detach(){let oe=this._attachedHost;null!=oe&&(this._attachedHost=null,oe.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(oe){this._attachedHost=oe}}class A extends h{constructor(oe,X,me,y){super(),this.component=oe,this.viewContainerRef=X,this.injector=me,this.componentFactoryResolver=y}}class w extends h{constructor(oe,X,me){super(),this.templateRef=oe,this.viewContainerRef=X,this.context=me}get origin(){return this.templateRef.elementRef}attach(oe,X=this.context){return this.context=X,super.attach(oe)}detach(){return this.context=void 0,super.detach()}}class D extends h{constructor(oe){super(),this.element=oe instanceof t.SBq?oe.nativeElement:oe}}class L{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(oe){return oe instanceof A?(this._attachedPortal=oe,this.attachComponentPortal(oe)):oe instanceof w?(this._attachedPortal=oe,this.attachTemplatePortal(oe)):this.attachDomPortal&&oe instanceof D?(this._attachedPortal=oe,this.attachDomPortal(oe)):void 0}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(oe){this._disposeFn=oe}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class S extends L{constructor(oe,X,me,y,i){super(),this.outletElement=oe,this._componentFactoryResolver=X,this._appRef=me,this._defaultInjector=y,this.attachDomPortal=r=>{const u=r.element,c=this._document.createComment("dom-portal");u.parentNode.insertBefore(c,u),this.outletElement.appendChild(u),this._attachedPortal=r,super.setDisposeFn(()=>{c.parentNode&&c.parentNode.replaceChild(u,c)})},this._document=i}attachComponentPortal(oe){const me=(oe.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(oe.component);let y;return oe.viewContainerRef?(y=oe.viewContainerRef.createComponent(me,oe.viewContainerRef.length,oe.injector||oe.viewContainerRef.injector),this.setDisposeFn(()=>y.destroy())):(y=me.create(oe.injector||this._defaultInjector||t.zs3.NULL),this._appRef.attachView(y.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(y.hostView),y.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(y)),this._attachedPortal=oe,y}attachTemplatePortal(oe){let X=oe.viewContainerRef,me=X.createEmbeddedView(oe.templateRef,oe.context);return me.rootNodes.forEach(y=>this.outletElement.appendChild(y)),me.detectChanges(),this.setDisposeFn(()=>{let y=X.indexOf(me);-1!==y&&X.remove(y)}),this._attachedPortal=oe,me}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(oe){return oe.hostView.rootNodes[0]}}let Z=(()=>{class ie extends w{constructor(X,me){super(X,me)}}return ie.\u0275fac=function(X){return new(X||ie)(t.Y36(t.Rgc),t.Y36(t.s_b))},ie.\u0275dir=t.lG2({type:ie,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[t.qOj]}),ie})(),ne=(()=>{class ie extends L{constructor(X,me,y){super(),this._componentFactoryResolver=X,this._viewContainerRef=me,this._isInitialized=!1,this.attached=new t.vpe,this.attachDomPortal=i=>{const r=i.element,u=this._document.createComment("dom-portal");i.setAttachedHost(this),r.parentNode.insertBefore(u,r),this._getRootNode().appendChild(r),this._attachedPortal=i,super.setDisposeFn(()=>{u.parentNode&&u.parentNode.replaceChild(r,u)})},this._document=y}get portal(){return this._attachedPortal}set portal(X){this.hasAttached()&&!X&&!this._isInitialized||(this.hasAttached()&&super.detach(),X&&super.attach(X),this._attachedPortal=X||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(X){X.setAttachedHost(this);const me=null!=X.viewContainerRef?X.viewContainerRef:this._viewContainerRef,i=(X.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(X.component),r=me.createComponent(i,me.length,X.injector||me.injector);return me!==this._viewContainerRef&&this._getRootNode().appendChild(r.hostView.rootNodes[0]),super.setDisposeFn(()=>r.destroy()),this._attachedPortal=X,this._attachedRef=r,this.attached.emit(r),r}attachTemplatePortal(X){X.setAttachedHost(this);const me=this._viewContainerRef.createEmbeddedView(X.templateRef,X.context);return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=X,this._attachedRef=me,this.attached.emit(me),me}_getRootNode(){const X=this._viewContainerRef.element.nativeElement;return X.nodeType===X.ELEMENT_NODE?X:X.parentNode}}return ie.\u0275fac=function(X){return new(X||ie)(t.Y36(t._Vd),t.Y36(t.s_b),t.Y36(e.K0))},ie.\u0275dir=t.lG2({type:ie,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:["cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[t.qOj]}),ie})(),de=(()=>{class ie{}return ie.\u0275fac=function(X){return new(X||ie)},ie.\u0275mod=t.oAB({type:ie}),ie.\u0275inj=t.cJS({}),ie})()},5303:(Ve,j,p)=>{"use strict";p.d(j,{PQ:()=>u,ZD:()=>B,mF:()=>r,Cl:()=>P,rL:()=>_});var t=p(3191),e=p(5e3),f=p(4408),M=p(727);const a={schedule(H){let q=requestAnimationFrame,he=cancelAnimationFrame;const{delegate:_e}=a;_e&&(q=_e.requestAnimationFrame,he=_e.cancelAnimationFrame);const Ne=q(we=>{he=void 0,H(we)});return new M.w0(()=>null==he?void 0:he(Ne))},requestAnimationFrame(...H){const{delegate:q}=a;return((null==q?void 0:q.requestAnimationFrame)||requestAnimationFrame)(...H)},cancelAnimationFrame(...H){const{delegate:q}=a;return((null==q?void 0:q.cancelAnimationFrame)||cancelAnimationFrame)(...H)},delegate:void 0};var d=p(7565);new class N extends d.v{flush(q){this._active=!0;const he=this._scheduled;this._scheduled=void 0;const{actions:_e}=this;let Ne;q=q||_e.shift();do{if(Ne=q.execute(q.state,q.delay))break}while((q=_e[0])&&q.id===he&&_e.shift());if(this._active=!1,Ne){for(;(q=_e[0])&&q.id===he&&_e.shift();)q.unsubscribe();throw Ne}}}(class b extends f.o{constructor(q,he){super(q,he),this.scheduler=q,this.work=he}requestAsyncId(q,he,_e=0){return null!==_e&&_e>0?super.requestAsyncId(q,he,_e):(q.actions.push(this),q._scheduled||(q._scheduled=a.requestAnimationFrame(()=>q.flush(void 0))))}recycleAsyncId(q,he,_e=0){if(null!=_e&&_e>0||null==_e&&this.delay>0)return super.recycleAsyncId(q,he,_e);q.actions.some(Ne=>Ne.id===he)||(a.cancelAnimationFrame(he),q._scheduled=void 0)}});var w=p(7579),D=p(9646),L=p(8306),k=p(4968),U=(p(3101),p(3601)),Z=p(9300),Y=p(2722),ne=p(9808),$=p(925),de=p(226);let r=(()=>{class H{constructor(he,_e,Ne){this._ngZone=he,this._platform=_e,this._scrolled=new w.x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=Ne}register(he){this.scrollContainers.has(he)||this.scrollContainers.set(he,he.elementScrolled().subscribe(()=>this._scrolled.next(he)))}deregister(he){const _e=this.scrollContainers.get(he);_e&&(_e.unsubscribe(),this.scrollContainers.delete(he))}scrolled(he=20){return this._platform.isBrowser?new L.y(_e=>{this._globalSubscription||this._addGlobalListener();const Ne=he>0?this._scrolled.pipe((0,U.e)(he)).subscribe(_e):this._scrolled.subscribe(_e);return this._scrolledCount++,()=>{Ne.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,D.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((he,_e)=>this.deregister(_e)),this._scrolled.complete()}ancestorScrolled(he,_e){const Ne=this.getAncestorScrollContainers(he);return this.scrolled(_e).pipe((0,Z.h)(we=>!we||Ne.indexOf(we)>-1))}getAncestorScrollContainers(he){const _e=[];return this.scrollContainers.forEach((Ne,we)=>{this._scrollableContainsElement(we,he)&&_e.push(we)}),_e}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(he,_e){let Ne=(0,t.fI)(_e),we=he.getElementRef().nativeElement;do{if(Ne==we)return!0}while(Ne=Ne.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const he=this._getWindow();return(0,k.R)(he.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return H.\u0275fac=function(he){return new(he||H)(e.LFG(e.R0b),e.LFG($.t4),e.LFG(ne.K0,8))},H.\u0275prov=e.Yz7({token:H,factory:H.\u0275fac,providedIn:"root"}),H})(),u=(()=>{class H{constructor(he,_e,Ne,we){this.elementRef=he,this.scrollDispatcher=_e,this.ngZone=Ne,this.dir=we,this._destroyed=new w.x,this._elementScrolled=new L.y(Q=>this.ngZone.runOutsideAngular(()=>(0,k.R)(this.elementRef.nativeElement,"scroll").pipe((0,Y.R)(this._destroyed)).subscribe(Q)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(he){const _e=this.elementRef.nativeElement,Ne=this.dir&&"rtl"==this.dir.value;null==he.left&&(he.left=Ne?he.end:he.start),null==he.right&&(he.right=Ne?he.start:he.end),null!=he.bottom&&(he.top=_e.scrollHeight-_e.clientHeight-he.bottom),Ne&&0!=(0,$._i)()?(null!=he.left&&(he.right=_e.scrollWidth-_e.clientWidth-he.left),2==(0,$._i)()?he.left=he.right:1==(0,$._i)()&&(he.left=he.right?-he.right:he.right)):null!=he.right&&(he.left=_e.scrollWidth-_e.clientWidth-he.right),this._applyScrollToOptions(he)}_applyScrollToOptions(he){const _e=this.elementRef.nativeElement;(0,$.Mq)()?_e.scrollTo(he):(null!=he.top&&(_e.scrollTop=he.top),null!=he.left&&(_e.scrollLeft=he.left))}measureScrollOffset(he){const _e="left",we=this.elementRef.nativeElement;if("top"==he)return we.scrollTop;if("bottom"==he)return we.scrollHeight-we.clientHeight-we.scrollTop;const Q=this.dir&&"rtl"==this.dir.value;return"start"==he?he=Q?"right":_e:"end"==he&&(he=Q?_e:"right"),Q&&2==(0,$._i)()?he==_e?we.scrollWidth-we.clientWidth-we.scrollLeft:we.scrollLeft:Q&&1==(0,$._i)()?he==_e?we.scrollLeft+we.scrollWidth-we.clientWidth:-we.scrollLeft:he==_e?we.scrollLeft:we.scrollWidth-we.clientWidth-we.scrollLeft}}return H.\u0275fac=function(he){return new(he||H)(e.Y36(e.SBq),e.Y36(r),e.Y36(e.R0b),e.Y36(de.Is,8))},H.\u0275dir=e.lG2({type:H,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]]}),H})(),_=(()=>{class H{constructor(he,_e,Ne){this._platform=he,this._change=new w.x,this._changeListener=we=>{this._change.next(we)},this._document=Ne,_e.runOutsideAngular(()=>{if(he.isBrowser){const we=this._getWindow();we.addEventListener("resize",this._changeListener),we.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const he=this._getWindow();he.removeEventListener("resize",this._changeListener),he.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const he={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),he}getViewportRect(){const he=this.getViewportScrollPosition(),{width:_e,height:Ne}=this.getViewportSize();return{top:he.top,left:he.left,bottom:he.top+Ne,right:he.left+_e,height:Ne,width:_e}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const he=this._document,_e=this._getWindow(),Ne=he.documentElement,we=Ne.getBoundingClientRect();return{top:-we.top||he.body.scrollTop||_e.scrollY||Ne.scrollTop||0,left:-we.left||he.body.scrollLeft||_e.scrollX||Ne.scrollLeft||0}}change(he=20){return he>0?this._change.pipe((0,U.e)(he)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const he=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:he.innerWidth,height:he.innerHeight}:{width:0,height:0}}}return H.\u0275fac=function(he){return new(he||H)(e.LFG($.t4),e.LFG(e.R0b),e.LFG(ne.K0,8))},H.\u0275prov=e.Yz7({token:H,factory:H.\u0275fac,providedIn:"root"}),H})(),B=(()=>{class H{}return H.\u0275fac=function(he){return new(he||H)},H.\u0275mod=e.oAB({type:H}),H.\u0275inj=e.cJS({}),H})(),P=(()=>{class H{}return H.\u0275fac=function(he){return new(he||H)},H.\u0275mod=e.oAB({type:H}),H.\u0275inj=e.cJS({imports:[[de.vT,B],de.vT,B]}),H})()},1555:(Ve,j,p)=>{"use strict";p.d(j,{B8:()=>de,KL:()=>k,U5:()=>oe,be:()=>$,gx:()=>ne,po:()=>ie,st:()=>te,u6:()=>S});var t=p(5664),e=p(3191),f=p(1159),M=p(9808),a=p(5e3),b=p(925),d=p(7579),N=p(9646),h=p(8675),A=p(2722),w=p(226);function D(X,me){1&X&&a.Hsn(0)}const L=["*"];let k=(()=>{class X{constructor(y){this._elementRef=y}focus(){this._elementRef.nativeElement.focus()}}return X.\u0275fac=function(y){return new(y||X)(a.Y36(a.SBq))},X.\u0275dir=a.lG2({type:X,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"]}),X})(),S=(()=>{class X{constructor(y){this.template=y}}return X.\u0275fac=function(y){return new(y||X)(a.Y36(a.Rgc))},X.\u0275dir=a.lG2({type:X,selectors:[["","cdkStepLabel",""]]}),X})(),U=0;const ne=new a.OlP("STEPPER_GLOBAL_OPTIONS");let $=(()=>{class X{constructor(y,i){this._stepper=y,this.interacted=!1,this.interactedStream=new a.vpe,this._editable=!0,this._optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=i||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}get editable(){return this._editable}set editable(y){this._editable=(0,e.Ig)(y)}get optional(){return this._optional}set optional(y){this._optional=(0,e.Ig)(y)}get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(y){this._completedOverride=(0,e.Ig)(y)}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(y){this._customError=(0,e.Ig)(y)}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}select(){this._stepper.selected=this}reset(){this.interacted=!1,null!=this._completedOverride&&(this._completedOverride=!1),null!=this._customError&&(this._customError=!1),this.stepControl&&this.stepControl.reset()}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this.interacted||(this.interacted=!0,this.interactedStream.emit(this))}_showError(){var y;return null!==(y=this._stepperOptions.showError)&&void 0!==y?y:null!=this._customError}}return X.\u0275fac=function(y){return new(y||X)(a.Y36((0,a.Gpc)(()=>de)),a.Y36(ne,8))},X.\u0275cmp=a.Xpm({type:X,selectors:[["cdk-step"]],contentQueries:function(y,i,r){if(1&y&&a.Suo(r,S,5),2&y){let u;a.iGM(u=a.CRH())&&(i.stepLabel=u.first)}},viewQuery:function(y,i){if(1&y&&a.Gf(a.Rgc,7),2&y){let r;a.iGM(r=a.CRH())&&(i.content=r.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],state:"state",editable:"editable",optional:"optional",completed:"completed",hasError:"hasError"},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],features:[a.TTD],ngContentSelectors:L,decls:1,vars:0,template:function(y,i){1&y&&(a.F$t(),a.YNc(0,D,1,0,"ng-template"))},encapsulation:2,changeDetection:0}),X})(),de=(()=>{class X{constructor(y,i,r,u){this._dir=y,this._changeDetectorRef=i,this._elementRef=r,this._destroyed=new d.x,this.steps=new a.n_E,this._sortedHeaders=new a.n_E,this._linear=!1,this._selectedIndex=0,this.selectionChange=new a.vpe,this._orientation="horizontal",this._groupId=U++}get linear(){return this._linear}set linear(y){this._linear=(0,e.Ig)(y)}get selectedIndex(){return this._selectedIndex}set selectedIndex(y){var i;const r=(0,e.su)(y);this.steps&&this._steps?(this._isValidIndex(r),null===(i=this.selected)||void 0===i||i._markAsInteracted(),this._selectedIndex!==r&&!this._anyControlsInvalidOrPending(r)&&(r>=this._selectedIndex||this.steps.toArray()[r].editable)&&this._updateSelectedItemIndex(r)):this._selectedIndex=r}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(y){this.selectedIndex=y&&this.steps?this.steps.toArray().indexOf(y):-1}get orientation(){return this._orientation}set orientation(y){this._orientation=y,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===y)}ngAfterContentInit(){this._steps.changes.pipe((0,h.O)(this._steps),(0,A.R)(this._destroyed)).subscribe(y=>{this.steps.reset(y.filter(i=>i._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,h.O)(this._stepHeader),(0,A.R)(this._destroyed)).subscribe(y=>{this._sortedHeaders.reset(y.toArray().sort((i,r)=>i._elementRef.nativeElement.compareDocumentPosition(r._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new t.Em(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,N.of)()).pipe((0,h.O)(this._layoutDirection()),(0,A.R)(this._destroyed)).subscribe(y=>this._keyManager.withHorizontalOrientation(y)),this._keyManager.updateActiveItem(this._selectedIndex),this.steps.changes.subscribe(()=>{this.selected||(this._selectedIndex=Math.max(this._selectedIndex-1,0))}),this._isValidIndex(this._selectedIndex)||(this._selectedIndex=0)}ngOnDestroy(){this.steps.destroy(),this._sortedHeaders.destroy(),this._destroyed.next(),this._destroyed.complete()}next(){this.selectedIndex=Math.min(this._selectedIndex+1,this.steps.length-1)}previous(){this.selectedIndex=Math.max(this._selectedIndex-1,0)}reset(){this._updateSelectedItemIndex(0),this.steps.forEach(y=>y.reset()),this._stateChanged()}_getStepLabelId(y){return`cdk-step-label-${this._groupId}-${y}`}_getStepContentId(y){return`cdk-step-content-${this._groupId}-${y}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(y){const i=y-this._selectedIndex;return i<0?"rtl"===this._layoutDirection()?"next":"previous":i>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(y,i="number"){const r=this.steps.toArray()[y],u=this._isCurrentStep(y);return r._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(r,u):this._getGuidelineLogic(r,u,i)}_getDefaultIndicatorLogic(y,i){return y._showError()&&y.hasError&&!i?"error":!y.completed||i?"number":y.editable?"edit":"done"}_getGuidelineLogic(y,i,r="number"){return y._showError()&&y.hasError&&!i?"error":y.completed&&!i?"done":y.completed&&i?r:y.editable&&i?"edit":r}_isCurrentStep(y){return this._selectedIndex===y}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(y){const i=this.steps.toArray();this.selectionChange.emit({selectedIndex:y,previouslySelectedIndex:this._selectedIndex,selectedStep:i[y],previouslySelectedStep:i[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(y):this._keyManager.updateActiveItem(y),this._selectedIndex=y,this._stateChanged()}_onKeydown(y){const i=(0,f.Vb)(y),r=y.keyCode,u=this._keyManager;null==u.activeItemIndex||i||r!==f.L_&&r!==f.K5?u.onKeydown(y):(this.selectedIndex=u.activeItemIndex,y.preventDefault())}_anyControlsInvalidOrPending(y){return!!(this._linear&&y>=0)&&this.steps.toArray().slice(0,y).some(i=>{const r=i.stepControl;return(r?r.invalid||r.pending||!i.interacted:!i.completed)&&!i.optional&&!i._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const y=this._elementRef.nativeElement,i=(0,b.ht)();return y===i||y.contains(i)}_isValidIndex(y){return y>-1&&(!this.steps||y{class X{constructor(y){this._stepper=y,this.type="submit"}}return X.\u0275fac=function(y){return new(y||X)(a.Y36(de))},X.\u0275dir=a.lG2({type:X,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(y,i){1&y&&a.NdJ("click",function(){return i._stepper.next()}),2&y&&a.Ikx("type",i.type)},inputs:{type:"type"}}),X})(),ie=(()=>{class X{constructor(y){this._stepper=y,this.type="button"}}return X.\u0275fac=function(y){return new(y||X)(a.Y36(de))},X.\u0275dir=a.lG2({type:X,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(y,i){1&y&&a.NdJ("click",function(){return i._stepper.previous()}),2&y&&a.Ikx("type",i.type)},inputs:{type:"type"}}),X})(),oe=(()=>{class X{}return X.\u0275fac=function(y){return new(y||X)},X.\u0275mod=a.oAB({type:X}),X.\u0275inj=a.cJS({imports:[[w.vT]]}),X})()},8258:(Ve,j,p)=>{"use strict";p.d(j,{HI:()=>S,Hs:()=>X,Ud:()=>c,VY:()=>k,XJ:()=>u,Xx:()=>i,_0:()=>oe,cu:()=>U,nZ:()=>E,rO:()=>Y});var t=p(449),e=p(5191),f=p(7579),M=p(1135),a=p(9646),b=p(5698),d=p(9300),N=p(2722),h=p(5e3),A=p(3191),w=p(226);class k extends class D{constructor(){this.expansionModel=new t.Ov(!0)}toggle(v){this.expansionModel.toggle(this._trackByValue(v))}expand(v){this.expansionModel.select(this._trackByValue(v))}collapse(v){this.expansionModel.deselect(this._trackByValue(v))}isExpanded(v){return this.expansionModel.isSelected(this._trackByValue(v))}toggleDescendants(v){this.expansionModel.isSelected(this._trackByValue(v))?this.collapseDescendants(v):this.expandDescendants(v)}collapseAll(){this.expansionModel.clear()}expandDescendants(v){let n=[v];n.push(...this.getDescendants(v)),this.expansionModel.select(...n.map(C=>this._trackByValue(C)))}collapseDescendants(v){let n=[v];n.push(...this.getDescendants(v)),this.expansionModel.deselect(...n.map(C=>this._trackByValue(C)))}_trackByValue(v){return this.trackBy?this.trackBy(v):v}}{constructor(v,n){super(),this.getChildren=v,this.options=n,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const v=this.dataNodes.reduce((n,C)=>[...n,...this.getDescendants(C),C],[]);this.expansionModel.select(...v.map(n=>this._trackByValue(n)))}getDescendants(v){const n=[];return this._getDescendants(n,v),n.splice(1)}_getDescendants(v,n){v.push(n);const C=this.getChildren(n);Array.isArray(C)?C.forEach(B=>this._getDescendants(v,B)):(0,e.b)(C)&&C.pipe((0,b.q)(1),(0,d.h)(Boolean)).subscribe(B=>{for(const P of B)this._getDescendants(v,P)})}}const S=new h.OlP("CDK_TREE_NODE_OUTLET_NODE");let U=(()=>{class I{constructor(n,C){this.viewContainer=n,this._node=C}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.s_b),h.Y36(S,8))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodeOutlet",""]]}),I})();class Z{constructor(v){this.$implicit=v}}let Y=(()=>{class I{constructor(n){this.template=n}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.Rgc))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:["cdkTreeNodeDefWhen","when"]}}),I})(),oe=(()=>{class I{constructor(n,C){this._differs=n,this._changeDetectorRef=C,this._onDestroy=new f.x,this._levels=new Map,this.viewChange=new M.X({start:0,end:Number.MAX_VALUE})}get dataSource(){return this._dataSource}set dataSource(n){this._dataSource!==n&&this._switchDataSource(n)}ngOnInit(){this._dataDiffer=this._differs.find([]).create(this.trackBy)}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),this.viewChange.complete(),this._onDestroy.next(),this._onDestroy.complete(),this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null)}ngAfterContentChecked(){const n=this._nodeDefs.filter(C=>!C.when);this._defaultNodeDef=n[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(n){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),n||this._nodeOutlet.viewContainer.clear(),this._dataSource=n,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let n;(0,t.Z9)(this._dataSource)?n=this._dataSource.connect(this):(0,e.b)(this._dataSource)?n=this._dataSource:Array.isArray(this._dataSource)&&(n=(0,a.of)(this._dataSource)),n&&(this._dataSubscription=n.pipe((0,N.R)(this._onDestroy)).subscribe(C=>this.renderNodeChanges(C)))}renderNodeChanges(n,C=this._dataDiffer,B=this._nodeOutlet.viewContainer,P){const H=C.diff(n);!H||(H.forEachOperation((q,he,_e)=>{if(null==q.previousIndex)this.insertNode(n[_e],_e,B,P);else if(null==_e)B.remove(he),this._levels.delete(q.item);else{const Ne=B.get(he);B.move(Ne,_e)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(n,C){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(P=>P.when&&P.when(C,n))||this._defaultNodeDef}insertNode(n,C,B,P){const H=this._getNodeDef(n,C),q=new Z(n);q.level=this.treeControl.getLevel?this.treeControl.getLevel(n):void 0!==P&&this._levels.has(P)?this._levels.get(P)+1:0,this._levels.set(n,q.level),(B||this._nodeOutlet.viewContainer).createEmbeddedView(H.template,q,C),X.mostRecentTreeNode&&(X.mostRecentTreeNode.data=n)}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.ZZ4),h.Y36(h.sBO))},I.\u0275cmp=h.Xpm({type:I,selectors:[["cdk-tree"]],contentQueries:function(n,C,B){if(1&n&&h.Suo(B,Y,5),2&n){let P;h.iGM(P=h.CRH())&&(C._nodeDefs=P)}},viewQuery:function(n,C){if(1&n&&h.Gf(U,7),2&n){let B;h.iGM(B=h.CRH())&&(C._nodeOutlet=B.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(n,C){1&n&&h.GkF(0,0)},directives:[U],encapsulation:2}),I})(),X=(()=>{class I{constructor(n,C){this._elementRef=n,this._tree=C,this._destroyed=new f.x,this._dataChanges=new f.x,I.mostRecentTreeNode=this,this.role="treeitem"}get role(){return"treeitem"}set role(n){this._elementRef.nativeElement.setAttribute("role",n)}get data(){return this._data}set data(n){n!==this._data&&(this._data=n,this._setRoleFromData(),this._dataChanges.next())}get isExpanded(){return this._tree.treeControl.isExpanded(this._data)}get level(){return this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._data):this._parentNodeAriaLevel}ngOnInit(){this._parentNodeAriaLevel=function me(I){let v=I.parentElement;for(;v&&!y(v);)v=v.parentElement;return v?v.classList.contains("cdk-nested-tree-node")?(0,A.su)(v.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){I.mostRecentTreeNode===this&&(I.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}}return I.mostRecentTreeNode=null,I.\u0275fac=function(n){return new(n||I)(h.Y36(h.SBq),h.Y36(oe))},I.\u0275dir=h.lG2({type:I,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(n,C){2&n&&h.uIk("aria-expanded",C.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"]}),I})();function y(I){const v=I.classList;return!(!(null==v?void 0:v.contains("cdk-nested-tree-node"))&&!(null==v?void 0:v.contains("cdk-tree")))}let i=(()=>{class I extends X{constructor(n,C,B){super(n,C),this._differs=B}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const n=this._tree.treeControl.getChildren(this.data);Array.isArray(n)?this.updateChildrenNodes(n):(0,e.b)(n)&&n.pipe((0,N.R)(this._destroyed)).subscribe(C=>this.updateChildrenNodes(C)),this.nodeOutlet.changes.pipe((0,N.R)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(n){const C=this._getNodeOutlet();n&&(this._children=n),C&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,C.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const n=this._getNodeOutlet();n&&(n.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const n=this.nodeOutlet;return n&&n.find(C=>!C._node||C._node===this)}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(h.SBq),h.Y36(oe),h.Y36(h.ZZ4))},I.\u0275dir=h.lG2({type:I,selectors:[["cdk-nested-tree-node"]],contentQueries:function(n,C,B){if(1&n&&h.Suo(B,U,5),2&n){let P;h.iGM(P=h.CRH())&&(C.nodeOutlet=P)}},hostAttrs:[1,"cdk-nested-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex"},exportAs:["cdkNestedTreeNode"],features:[h._Bn([{provide:X,useExisting:I},{provide:S,useExisting:I}]),h.qOj]}),I})();const r=/([A-Za-z%]+)$/;let u=(()=>{class I{constructor(n,C,B,P){this._treeNode=n,this._tree=C,this._element=B,this._dir=P,this._destroyed=new f.x,this.indentUnits="px",this._indent=40,this._setPadding(),P&&P.change.pipe((0,N.R)(this._destroyed)).subscribe(()=>this._setPadding(!0)),n._dataChanges.subscribe(()=>this._setPadding())}get level(){return this._level}set level(n){this._setLevelInput(n)}get indent(){return this._indent}set indent(n){this._setIndentInput(n)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const n=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,C=null==this._level?n:this._level;return"number"==typeof C?`${C*this._indent}${this.indentUnits}`:null}_setPadding(n=!1){const C=this._paddingIndent();if(C!==this._currentPadding||n){const B=this._element.nativeElement,P=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",H="paddingLeft"===P?"paddingRight":"paddingLeft";B.style[P]=C||"",B.style[H]="",this._currentPadding=C}}_setLevelInput(n){this._level=(0,A.su)(n,null),this._setPadding()}_setIndentInput(n){let C=n,B="px";if("string"==typeof n){const P=n.split(r);C=P[0],B=P[1]||B}this.indentUnits=B,this._indent=(0,A.su)(C),this._setPadding()}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(X),h.Y36(oe),h.Y36(h.SBq),h.Y36(w.Is,8))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:["cdkTreeNodePadding","level"],indent:["cdkTreeNodePaddingIndent","indent"]}}),I})(),c=(()=>{class I{constructor(n,C){this._tree=n,this._treeNode=C,this._recursive=!1}get recursive(){return this._recursive}set recursive(n){this._recursive=(0,A.Ig)(n)}_toggle(n){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),n.stopPropagation()}}return I.\u0275fac=function(n){return new(n||I)(h.Y36(oe),h.Y36(X))},I.\u0275dir=h.lG2({type:I,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(n,C){1&n&&h.NdJ("click",function(P){return C._toggle(P)})},inputs:{recursive:["cdkTreeNodeToggleRecursive","recursive"]}}),I})(),E=(()=>{class I{}return I.\u0275fac=function(n){return new(n||I)},I.\u0275mod=h.oAB({type:I}),I.\u0275inj=h.cJS({}),I})()},9808:(Ve,j,p)=>{"use strict";p.d(j,{Do:()=>de,ED:()=>Bn,EM:()=>Br,HT:()=>a,JF:()=>Qn,JJ:()=>Ka,K0:()=>d,Mx:()=>Xi,NF:()=>nr,Nd:()=>ea,O5:()=>Ft,OU:()=>zr,Ov:()=>_a,PC:()=>Si,PM:()=>Aa,RF:()=>ki,S$:()=>Z,Ts:()=>mr,V_:()=>A,Ye:()=>te,b0:()=>$,bD:()=>Nr,ez:()=>xr,gd:()=>cr,i8:()=>va,lw:()=>N,mk:()=>Zi,mr:()=>ne,n9:()=>fn,q:()=>f,rS:()=>za,sg:()=>jt,tP:()=>Wi,uU:()=>ha,w_:()=>b});var t=p(5e3);let e=null;function f(){return e}function a(Je){e||(e=Je)}class b{}const d=new t.OlP("DocumentToken");let N=(()=>{class Je{historyGo(Qe){throw new Error("Not implemented")}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275prov=t.Yz7({token:Je,factory:function(){return function h(){return(0,t.LFG)(w)}()},providedIn:"platform"}),Je})();const A=new t.OlP("Location Initialized");let w=(()=>{class Je extends N{constructor(Qe){super(),this._doc=Qe,this._init()}_init(){this.location=window.location,this._history=window.history}getBaseHrefFromDOM(){return f().getBaseHref(this._doc)}onPopState(Qe){const kt=f().getGlobalEventTarget(this._doc,"window");return kt.addEventListener("popstate",Qe,!1),()=>kt.removeEventListener("popstate",Qe)}onHashChange(Qe){const kt=f().getGlobalEventTarget(this._doc,"window");return kt.addEventListener("hashchange",Qe,!1),()=>kt.removeEventListener("hashchange",Qe)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(Qe){this.location.pathname=Qe}pushState(Qe,kt,ai){D()?this._history.pushState(Qe,kt,ai):this.location.hash=ai}replaceState(Qe,kt,ai){D()?this._history.replaceState(Qe,kt,ai):this.location.hash=ai}forward(){this._history.forward()}back(){this._history.back()}historyGo(Qe=0){this._history.go(Qe)}getState(){return this._history.state}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.LFG(d))},Je.\u0275prov=t.Yz7({token:Je,factory:function(){return function L(){return new w((0,t.LFG)(d))}()},providedIn:"platform"}),Je})();function D(){return!!window.history.pushState}function k(Je,St){if(0==Je.length)return St;if(0==St.length)return Je;let Qe=0;return Je.endsWith("/")&&Qe++,St.startsWith("/")&&Qe++,2==Qe?Je+St.substring(1):1==Qe?Je+St:Je+"/"+St}function S(Je){const St=Je.match(/#|\?|$/),Qe=St&&St.index||Je.length;return Je.slice(0,Qe-("/"===Je[Qe-1]?1:0))+Je.slice(Qe)}function U(Je){return Je&&"?"!==Je[0]?"?"+Je:Je}let Z=(()=>{class Je{historyGo(Qe){throw new Error("Not implemented")}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275prov=t.Yz7({token:Je,factory:function(){return function Y(Je){const St=(0,t.LFG)(d).location;return new $((0,t.LFG)(N),St&&St.origin||"")}()},providedIn:"root"}),Je})();const ne=new t.OlP("appBaseHref");let $=(()=>{class Je extends Z{constructor(Qe,kt){if(super(),this._platformLocation=Qe,this._removeListenerFns=[],null==kt&&(kt=this._platformLocation.getBaseHrefFromDOM()),null==kt)throw new Error("No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.");this._baseHref=kt}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Qe){this._removeListenerFns.push(this._platformLocation.onPopState(Qe),this._platformLocation.onHashChange(Qe))}getBaseHref(){return this._baseHref}prepareExternalUrl(Qe){return k(this._baseHref,Qe)}path(Qe=!1){const kt=this._platformLocation.pathname+U(this._platformLocation.search),ai=this._platformLocation.hash;return ai&&Qe?`${kt}${ai}`:kt}pushState(Qe,kt,ai,Ti){const Oi=this.prepareExternalUrl(ai+U(Ti));this._platformLocation.pushState(Qe,kt,Oi)}replaceState(Qe,kt,ai,Ti){const Oi=this.prepareExternalUrl(ai+U(Ti));this._platformLocation.replaceState(Qe,kt,Oi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}historyGo(Qe=0){var kt,ai;null===(ai=(kt=this._platformLocation).historyGo)||void 0===ai||ai.call(kt,Qe)}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.LFG(N),t.LFG(ne,8))},Je.\u0275prov=t.Yz7({token:Je,factory:Je.\u0275fac}),Je})(),de=(()=>{class Je extends Z{constructor(Qe,kt){super(),this._platformLocation=Qe,this._baseHref="",this._removeListenerFns=[],null!=kt&&(this._baseHref=kt)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Qe){this._removeListenerFns.push(this._platformLocation.onPopState(Qe),this._platformLocation.onHashChange(Qe))}getBaseHref(){return this._baseHref}path(Qe=!1){let kt=this._platformLocation.hash;return null==kt&&(kt="#"),kt.length>0?kt.substring(1):kt}prepareExternalUrl(Qe){const kt=k(this._baseHref,Qe);return kt.length>0?"#"+kt:kt}pushState(Qe,kt,ai,Ti){let Oi=this.prepareExternalUrl(ai+U(Ti));0==Oi.length&&(Oi=this._platformLocation.pathname),this._platformLocation.pushState(Qe,kt,Oi)}replaceState(Qe,kt,ai,Ti){let Oi=this.prepareExternalUrl(ai+U(Ti));0==Oi.length&&(Oi=this._platformLocation.pathname),this._platformLocation.replaceState(Qe,kt,Oi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}historyGo(Qe=0){var kt,ai;null===(ai=(kt=this._platformLocation).historyGo)||void 0===ai||ai.call(kt,Qe)}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.LFG(N),t.LFG(ne,8))},Je.\u0275prov=t.Yz7({token:Je,factory:Je.\u0275fac}),Je})(),te=(()=>{class Je{constructor(Qe,kt){this._subject=new t.vpe,this._urlChangeListeners=[],this._platformStrategy=Qe;const ai=this._platformStrategy.getBaseHref();this._platformLocation=kt,this._baseHref=S(X(ai)),this._platformStrategy.onPopState(Ti=>{this._subject.emit({url:this.path(!0),pop:!0,state:Ti.state,type:Ti.type})})}path(Qe=!1){return this.normalize(this._platformStrategy.path(Qe))}getState(){return this._platformLocation.getState()}isCurrentPathEqualTo(Qe,kt=""){return this.path()==this.normalize(Qe+U(kt))}normalize(Qe){return Je.stripTrailingSlash(function oe(Je,St){return Je&&St.startsWith(Je)?St.substring(Je.length):St}(this._baseHref,X(Qe)))}prepareExternalUrl(Qe){return Qe&&"/"!==Qe[0]&&(Qe="/"+Qe),this._platformStrategy.prepareExternalUrl(Qe)}go(Qe,kt="",ai=null){this._platformStrategy.pushState(ai,"",Qe,kt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Qe+U(kt)),ai)}replaceState(Qe,kt="",ai=null){this._platformStrategy.replaceState(ai,"",Qe,kt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Qe+U(kt)),ai)}forward(){this._platformStrategy.forward()}back(){this._platformStrategy.back()}historyGo(Qe=0){var kt,ai;null===(ai=(kt=this._platformStrategy).historyGo)||void 0===ai||ai.call(kt,Qe)}onUrlChange(Qe){this._urlChangeListeners.push(Qe),this._urlChangeSubscription||(this._urlChangeSubscription=this.subscribe(kt=>{this._notifyUrlChangeListeners(kt.url,kt.state)}))}_notifyUrlChangeListeners(Qe="",kt){this._urlChangeListeners.forEach(ai=>ai(Qe,kt))}subscribe(Qe,kt,ai){return this._subject.subscribe({next:Qe,error:kt,complete:ai})}}return Je.normalizeQueryParams=U,Je.joinWithSlash=k,Je.stripTrailingSlash=S,Je.\u0275fac=function(Qe){return new(Qe||Je)(t.LFG(Z),t.LFG(N))},Je.\u0275prov=t.Yz7({token:Je,factory:function(){return function ie(){return new te((0,t.LFG)(Z),(0,t.LFG)(N))}()},providedIn:"root"}),Je})();function X(Je){return Je.replace(/\/index.html$/,"")}var y=(()=>((y=y||{})[y.Decimal=0]="Decimal",y[y.Percent=1]="Percent",y[y.Currency=2]="Currency",y[y.Scientific=3]="Scientific",y))(),r=(()=>((r=r||{})[r.Format=0]="Format",r[r.Standalone=1]="Standalone",r))(),u=(()=>((u=u||{})[u.Narrow=0]="Narrow",u[u.Abbreviated=1]="Abbreviated",u[u.Wide=2]="Wide",u[u.Short=3]="Short",u))(),c=(()=>((c=c||{})[c.Short=0]="Short",c[c.Medium=1]="Medium",c[c.Long=2]="Long",c[c.Full=3]="Full",c))(),_=(()=>((_=_||{})[_.Decimal=0]="Decimal",_[_.Group=1]="Group",_[_.List=2]="List",_[_.PercentSign=3]="PercentSign",_[_.PlusSign=4]="PlusSign",_[_.MinusSign=5]="MinusSign",_[_.Exponential=6]="Exponential",_[_.SuperscriptingExponent=7]="SuperscriptingExponent",_[_.PerMille=8]="PerMille",_[_.Infinity=9]="Infinity",_[_.NaN=10]="NaN",_[_.TimeSeparator=11]="TimeSeparator",_[_.CurrencyDecimal=12]="CurrencyDecimal",_[_.CurrencyGroup=13]="CurrencyGroup",_))();function q(Je,St){return Te((0,t.cg1)(Je)[t.wAp.DateFormat],St)}function he(Je,St){return Te((0,t.cg1)(Je)[t.wAp.TimeFormat],St)}function _e(Je,St){return Te((0,t.cg1)(Je)[t.wAp.DateTimeFormat],St)}function Ne(Je,St){const Qe=(0,t.cg1)(Je),kt=Qe[t.wAp.NumberSymbols][St];if(void 0===kt){if(St===_.CurrencyDecimal)return Qe[t.wAp.NumberSymbols][_.Decimal];if(St===_.CurrencyGroup)return Qe[t.wAp.NumberSymbols][_.Group]}return kt}function dt(Je){if(!Je[t.wAp.ExtraData])throw new Error(`Missing extra locale data for the locale "${Je[t.wAp.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function Te(Je,St){for(let Qe=St;Qe>-1;Qe--)if(void 0!==Je[Qe])return Je[Qe];throw new Error("Locale data API: locale data undefined")}function xe(Je){const[St,Qe]=Je.split(":");return{hours:+St,minutes:+Qe}}const Ce=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Le={},ut=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;var ht=(()=>((ht=ht||{})[ht.Short=0]="Short",ht[ht.ShortGMT=1]="ShortGMT",ht[ht.Long=2]="Long",ht[ht.Extended=3]="Extended",ht))(),It=(()=>((It=It||{})[It.FullYear=0]="FullYear",It[It.Month=1]="Month",It[It.Date=2]="Date",It[It.Hours=3]="Hours",It[It.Minutes=4]="Minutes",It[It.Seconds=5]="Seconds",It[It.FractionalSeconds=6]="FractionalSeconds",It[It.Day=7]="Day",It))(),ui=(()=>((ui=ui||{})[ui.DayPeriods=0]="DayPeriods",ui[ui.Days=1]="Days",ui[ui.Months=2]="Months",ui[ui.Eras=3]="Eras",ui))();function Wt(Je,St,Qe,kt){let ai=function Ge(Je){if(st(Je))return Je;if("number"==typeof Je&&!isNaN(Je))return new Date(Je);if("string"==typeof Je){if(Je=Je.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Je)){const[ai,Ti=1,Oi=1]=Je.split("-").map(rn=>+rn);return Gt(ai,Ti-1,Oi)}const Qe=parseFloat(Je);if(!isNaN(Je-Qe))return new Date(Qe);let kt;if(kt=Je.match(Ce))return function at(Je){const St=new Date(0);let Qe=0,kt=0;const ai=Je[8]?St.setUTCFullYear:St.setFullYear,Ti=Je[8]?St.setUTCHours:St.setHours;Je[9]&&(Qe=Number(Je[9]+Je[10]),kt=Number(Je[9]+Je[11])),ai.call(St,Number(Je[1]),Number(Je[2])-1,Number(Je[3]));const Oi=Number(Je[4]||0)-Qe,rn=Number(Je[5]||0)-kt,qn=Number(Je[6]||0),Ot=Math.floor(1e3*parseFloat("0."+(Je[7]||0)));return Ti.call(St,Oi,rn,qn,Ot),St}(kt)}const St=new Date(Je);if(!st(St))throw new Error(`Unable to convert "${Je}" into a date`);return St}(Je);St=hi(Qe,St)||St;let rn,Oi=[];for(;St;){if(rn=ut.exec(St),!rn){Oi.push(St);break}{Oi=Oi.concat(rn.slice(1));const oi=Oi.pop();if(!oi)break;St=oi}}let qn=ai.getTimezoneOffset();kt&&(qn=tt(kt,qn),ai=function Se(Je,St,Qe){const kt=Qe?-1:1,ai=Je.getTimezoneOffset();return function Xe(Je,St){return(Je=new Date(Je.getTime())).setMinutes(Je.getMinutes()+St),Je}(Je,kt*(tt(St,ai)-ai))}(ai,kt,!0));let Ot="";return Oi.forEach(oi=>{const gt=function Re(Je){if(it[Je])return it[Je];let St;switch(Je){case"G":case"GG":case"GGG":St=ei(ui.Eras,u.Abbreviated);break;case"GGGG":St=ei(ui.Eras,u.Wide);break;case"GGGGG":St=ei(ui.Eras,u.Narrow);break;case"y":St=et(It.FullYear,1,0,!1,!0);break;case"yy":St=et(It.FullYear,2,0,!0,!0);break;case"yyy":St=et(It.FullYear,3,0,!1,!0);break;case"yyyy":St=et(It.FullYear,4,0,!1,!0);break;case"Y":St=Ht(1);break;case"YY":St=Ht(2,!0);break;case"YYY":St=Ht(3);break;case"YYYY":St=Ht(4);break;case"M":case"L":St=et(It.Month,1,1);break;case"MM":case"LL":St=et(It.Month,2,1);break;case"MMM":St=ei(ui.Months,u.Abbreviated);break;case"MMMM":St=ei(ui.Months,u.Wide);break;case"MMMMM":St=ei(ui.Months,u.Narrow);break;case"LLL":St=ei(ui.Months,u.Abbreviated,r.Standalone);break;case"LLLL":St=ei(ui.Months,u.Wide,r.Standalone);break;case"LLLLL":St=ei(ui.Months,u.Narrow,r.Standalone);break;case"w":St=mt(1);break;case"ww":St=mt(2);break;case"W":St=mt(1,!0);break;case"d":St=et(It.Date,1);break;case"dd":St=et(It.Date,2);break;case"c":case"cc":St=et(It.Day,1);break;case"ccc":St=ei(ui.Days,u.Abbreviated,r.Standalone);break;case"cccc":St=ei(ui.Days,u.Wide,r.Standalone);break;case"ccccc":St=ei(ui.Days,u.Narrow,r.Standalone);break;case"cccccc":St=ei(ui.Days,u.Short,r.Standalone);break;case"E":case"EE":case"EEE":St=ei(ui.Days,u.Abbreviated);break;case"EEEE":St=ei(ui.Days,u.Wide);break;case"EEEEE":St=ei(ui.Days,u.Narrow);break;case"EEEEEE":St=ei(ui.Days,u.Short);break;case"a":case"aa":case"aaa":St=ei(ui.DayPeriods,u.Abbreviated);break;case"aaaa":St=ei(ui.DayPeriods,u.Wide);break;case"aaaaa":St=ei(ui.DayPeriods,u.Narrow);break;case"b":case"bb":case"bbb":St=ei(ui.DayPeriods,u.Abbreviated,r.Standalone,!0);break;case"bbbb":St=ei(ui.DayPeriods,u.Wide,r.Standalone,!0);break;case"bbbbb":St=ei(ui.DayPeriods,u.Narrow,r.Standalone,!0);break;case"B":case"BB":case"BBB":St=ei(ui.DayPeriods,u.Abbreviated,r.Format,!0);break;case"BBBB":St=ei(ui.DayPeriods,u.Wide,r.Format,!0);break;case"BBBBB":St=ei(ui.DayPeriods,u.Narrow,r.Format,!0);break;case"h":St=et(It.Hours,1,-12);break;case"hh":St=et(It.Hours,2,-12);break;case"H":St=et(It.Hours,1);break;case"HH":St=et(It.Hours,2);break;case"m":St=et(It.Minutes,1);break;case"mm":St=et(It.Minutes,2);break;case"s":St=et(It.Seconds,1);break;case"ss":St=et(It.Seconds,2);break;case"S":St=et(It.FractionalSeconds,1);break;case"SS":St=et(It.FractionalSeconds,2);break;case"SSS":St=et(It.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":St=Pe(ht.Short);break;case"ZZZZZ":St=Pe(ht.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":St=Pe(ht.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":St=Pe(ht.Long);break;default:return null}return it[Je]=St,St}(oi);Ot+=gt?gt(ai,Qe,qn):"''"===oi?"'":oi.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),Ot}function Gt(Je,St,Qe){const kt=new Date(0);return kt.setFullYear(Je,St,Qe),kt.setHours(0,0,0),kt}function hi(Je,St){const Qe=function I(Je){return(0,t.cg1)(Je)[t.wAp.LocaleId]}(Je);if(Le[Qe]=Le[Qe]||{},Le[Qe][St])return Le[Qe][St];let kt="";switch(St){case"shortDate":kt=q(Je,c.Short);break;case"mediumDate":kt=q(Je,c.Medium);break;case"longDate":kt=q(Je,c.Long);break;case"fullDate":kt=q(Je,c.Full);break;case"shortTime":kt=he(Je,c.Short);break;case"mediumTime":kt=he(Je,c.Medium);break;case"longTime":kt=he(Je,c.Long);break;case"fullTime":kt=he(Je,c.Full);break;case"short":const ai=hi(Je,"shortTime"),Ti=hi(Je,"shortDate");kt=xt(_e(Je,c.Short),[ai,Ti]);break;case"medium":const Oi=hi(Je,"mediumTime"),rn=hi(Je,"mediumDate");kt=xt(_e(Je,c.Medium),[Oi,rn]);break;case"long":const qn=hi(Je,"longTime"),Ot=hi(Je,"longDate");kt=xt(_e(Je,c.Long),[qn,Ot]);break;case"full":const oi=hi(Je,"fullTime"),gt=hi(Je,"fullDate");kt=xt(_e(Je,c.Full),[oi,gt])}return kt&&(Le[Qe][St]=kt),kt}function xt(Je,St){return St&&(Je=Je.replace(/\{([^}]+)}/g,function(Qe,kt){return null!=St&&kt in St?St[kt]:Qe})),Je}function Nt(Je,St,Qe="-",kt,ai){let Ti="";(Je<0||ai&&Je<=0)&&(ai?Je=1-Je:(Je=-Je,Ti=Qe));let Oi=String(Je);for(;Oi.length0||rn>-Qe)&&(rn+=Qe),Je===It.Hours)0===rn&&-12===Qe&&(rn=12);else if(Je===It.FractionalSeconds)return function Ct(Je,St){return Nt(Je,3).substr(0,St)}(rn,St);const qn=Ne(Oi,_.MinusSign);return Nt(rn,St,qn,kt,ai)}}function ei(Je,St,Qe=r.Format,kt=!1){return function(ai,Ti){return function Yt(Je,St,Qe,kt,ai,Ti){switch(Qe){case ui.Months:return function C(Je,St,Qe){const kt=(0,t.cg1)(Je),Ti=Te([kt[t.wAp.MonthsFormat],kt[t.wAp.MonthsStandalone]],St);return Te(Ti,Qe)}(St,ai,kt)[Je.getMonth()];case ui.Days:return function n(Je,St,Qe){const kt=(0,t.cg1)(Je),Ti=Te([kt[t.wAp.DaysFormat],kt[t.wAp.DaysStandalone]],St);return Te(Ti,Qe)}(St,ai,kt)[Je.getDay()];case ui.DayPeriods:const Oi=Je.getHours(),rn=Je.getMinutes();if(Ti){const Ot=function Ie(Je){const St=(0,t.cg1)(Je);return dt(St),(St[t.wAp.ExtraData][2]||[]).map(kt=>"string"==typeof kt?xe(kt):[xe(kt[0]),xe(kt[1])])}(St),oi=function Ae(Je,St,Qe){const kt=(0,t.cg1)(Je);dt(kt);const Ti=Te([kt[t.wAp.ExtraData][0],kt[t.wAp.ExtraData][1]],St)||[];return Te(Ti,Qe)||[]}(St,ai,kt),gt=Ot.findIndex(Qt=>{if(Array.isArray(Qt)){const[Di,Gi]=Qt,Ke=Oi>=Di.hours&&rn>=Di.minutes,We=Oi0?Math.floor(ai/60):Math.ceil(ai/60);switch(Je){case ht.Short:return(ai>=0?"+":"")+Nt(Oi,2,Ti)+Nt(Math.abs(ai%60),2,Ti);case ht.ShortGMT:return"GMT"+(ai>=0?"+":"")+Nt(Oi,1,Ti);case ht.Long:return"GMT"+(ai>=0?"+":"")+Nt(Oi,2,Ti)+":"+Nt(Math.abs(ai%60),2,Ti);case ht.Extended:return 0===kt?"Z":(ai>=0?"+":"")+Nt(Oi,2,Ti)+":"+Nt(Math.abs(ai%60),2,Ti);default:throw new Error(`Unknown zone width "${Je}"`)}}}function pt(Je){return Gt(Je.getFullYear(),Je.getMonth(),Je.getDate()+(4-Je.getDay()))}function mt(Je,St=!1){return function(Qe,kt){let ai;if(St){const Ti=new Date(Qe.getFullYear(),Qe.getMonth(),1).getDay()-1,Oi=Qe.getDate();ai=1+Math.floor((Oi+Ti)/7)}else{const Ti=pt(Qe),Oi=function be(Je){const St=Gt(Je,0,1).getDay();return Gt(Je,0,1+(St<=4?4:11)-St)}(Ti.getFullYear()),rn=Ti.getTime()-Oi.getTime();ai=1+Math.round(rn/6048e5)}return Nt(ai,Je,Ne(kt,_.MinusSign))}}function Ht(Je,St=!1){return function(Qe,kt){return Nt(pt(Qe).getFullYear(),Je,Ne(kt,_.MinusSign),St)}}const it={};function tt(Je,St){Je=Je.replace(/:/g,"");const Qe=Date.parse("Jan 01, 1970 00:00:00 "+Je)/6e4;return isNaN(Qe)?St:Qe}function st(Je){return Je instanceof Date&&!isNaN(Je.valueOf())}const bt=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function qe(Je){const St=parseInt(Je);if(isNaN(St))throw new Error("Invalid integer literal when parsing "+Je);return St}function Xi(Je,St){St=encodeURIComponent(St);for(const Qe of Je.split(";")){const kt=Qe.indexOf("="),[ai,Ti]=-1==kt?[Qe,""]:[Qe.slice(0,kt),Qe.slice(kt+1)];if(ai.trim()===St)return decodeURIComponent(Ti)}return null}let Zi=(()=>{class Je{constructor(Qe,kt,ai,Ti){this._iterableDiffers=Qe,this._keyValueDiffers=kt,this._ngEl=ai,this._renderer=Ti,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(Qe){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof Qe?Qe.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(Qe){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof Qe?Qe.split(/\s+/):Qe,this._rawClass&&((0,t.sIi)(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const Qe=this._iterableDiffer.diff(this._rawClass);Qe&&this._applyIterableChanges(Qe)}else if(this._keyValueDiffer){const Qe=this._keyValueDiffer.diff(this._rawClass);Qe&&this._applyKeyValueChanges(Qe)}}_applyKeyValueChanges(Qe){Qe.forEachAddedItem(kt=>this._toggleClass(kt.key,kt.currentValue)),Qe.forEachChangedItem(kt=>this._toggleClass(kt.key,kt.currentValue)),Qe.forEachRemovedItem(kt=>{kt.previousValue&&this._toggleClass(kt.key,!1)})}_applyIterableChanges(Qe){Qe.forEachAddedItem(kt=>{if("string"!=typeof kt.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${(0,t.AaK)(kt.item)}`);this._toggleClass(kt.item,!0)}),Qe.forEachRemovedItem(kt=>this._toggleClass(kt.item,!1))}_applyClasses(Qe){Qe&&(Array.isArray(Qe)||Qe instanceof Set?Qe.forEach(kt=>this._toggleClass(kt,!0)):Object.keys(Qe).forEach(kt=>this._toggleClass(kt,!!Qe[kt])))}_removeClasses(Qe){Qe&&(Array.isArray(Qe)||Qe instanceof Set?Qe.forEach(kt=>this._toggleClass(kt,!1)):Object.keys(Qe).forEach(kt=>this._toggleClass(kt,!1)))}_toggleClass(Qe,kt){(Qe=Qe.trim())&&Qe.split(/\s+/g).forEach(ai=>{kt?this._renderer.addClass(this._ngEl.nativeElement,ai):this._renderer.removeClass(this._ngEl.nativeElement,ai)})}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.ZZ4),t.Y36(t.aQg),t.Y36(t.SBq),t.Y36(t.Qsj))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"}}),Je})();class gn{constructor(St,Qe,kt,ai){this.$implicit=St,this.ngForOf=Qe,this.index=kt,this.count=ai}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let jt=(()=>{class Je{constructor(Qe,kt,ai){this._viewContainer=Qe,this._template=kt,this._differs=ai,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(Qe){this._ngForOf=Qe,this._ngForOfDirty=!0}set ngForTrackBy(Qe){this._trackByFn=Qe}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(Qe){Qe&&(this._template=Qe)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const Qe=this._ngForOf;!this._differ&&Qe&&(this._differ=this._differs.find(Qe).create(this.ngForTrackBy))}if(this._differ){const Qe=this._differ.diff(this._ngForOf);Qe&&this._applyChanges(Qe)}}_applyChanges(Qe){const kt=this._viewContainer;Qe.forEachOperation((ai,Ti,Oi)=>{if(null==ai.previousIndex)kt.createEmbeddedView(this._template,new gn(ai.item,this._ngForOf,-1,-1),null===Oi?void 0:Oi);else if(null==Oi)kt.remove(null===Ti?void 0:Ti);else if(null!==Ti){const rn=kt.get(Ti);kt.move(rn,Oi),wi(rn,ai)}});for(let ai=0,Ti=kt.length;ai{wi(kt.get(ai.currentIndex),ai)})}static ngTemplateContextGuard(Qe,kt){return!0}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(t.ZZ4))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}}),Je})();function wi(Je,St){Je.context.$implicit=St.item}let Ft=(()=>{class Je{constructor(Qe,kt){this._viewContainer=Qe,this._context=new Kt,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=kt}set ngIf(Qe){this._context.$implicit=this._context.ngIf=Qe,this._updateView()}set ngIfThen(Qe){mi("ngIfThen",Qe),this._thenTemplateRef=Qe,this._thenViewRef=null,this._updateView()}set ngIfElse(Qe){mi("ngIfElse",Qe),this._elseTemplateRef=Qe,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(Qe,kt){return!0}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.s_b),t.Y36(t.Rgc))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}}),Je})();class Kt{constructor(){this.$implicit=null,this.ngIf=null}}function mi(Je,St){if(St&&!St.createEmbeddedView)throw new Error(`${Je} must be a TemplateRef, but received '${(0,t.AaK)(St)}'.`)}class Ni{constructor(St,Qe){this._viewContainerRef=St,this._templateRef=Qe,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(St){St&&!this._created?this.create():!St&&this._created&&this.destroy()}}let ki=(()=>{class Je{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(Qe){this._ngSwitch=Qe,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(Qe){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(Qe)}_matchCase(Qe){const kt=Qe==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||kt,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),kt}_updateDefaultCases(Qe){if(this._defaultViews&&Qe!==this._defaultUsed){this._defaultUsed=Qe;for(let kt=0;kt{class Je{constructor(Qe,kt,ai){this.ngSwitch=ai,ai._addCase(),this._view=new Ni(Qe,kt)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(ki,9))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"}}),Je})(),Bn=(()=>{class Je{constructor(Qe,kt,ai){ai._addDefault(new Ni(Qe,kt))}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.s_b),t.Y36(t.Rgc),t.Y36(ki,9))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngSwitchDefault",""]]}),Je})(),Si=(()=>{class Je{constructor(Qe,kt,ai){this._ngEl=Qe,this._differs=kt,this._renderer=ai,this._ngStyle=null,this._differ=null}set ngStyle(Qe){this._ngStyle=Qe,!this._differ&&Qe&&(this._differ=this._differs.find(Qe).create())}ngDoCheck(){if(this._differ){const Qe=this._differ.diff(this._ngStyle);Qe&&this._applyChanges(Qe)}}_setStyle(Qe,kt){const[ai,Ti]=Qe.split(".");null!=(kt=null!=kt&&Ti?`${kt}${Ti}`:kt)?this._renderer.setStyle(this._ngEl.nativeElement,ai,kt):this._renderer.removeStyle(this._ngEl.nativeElement,ai)}_applyChanges(Qe){Qe.forEachRemovedItem(kt=>this._setStyle(kt.key,null)),Qe.forEachAddedItem(kt=>this._setStyle(kt.key,kt.currentValue)),Qe.forEachChangedItem(kt=>this._setStyle(kt.key,kt.currentValue))}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.SBq),t.Y36(t.aQg),t.Y36(t.Qsj))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"}}),Je})(),Wi=(()=>{class Je{constructor(Qe){this._viewContainerRef=Qe,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(Qe){if(Qe.ngTemplateOutlet){const kt=this._viewContainerRef;this._viewRef&&kt.remove(kt.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?kt.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&Qe.ngTemplateOutletContext&&this.ngTemplateOutletContext&&(this._viewRef.context=this.ngTemplateOutletContext)}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.s_b))},Je.\u0275dir=t.lG2({type:Je,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet"},features:[t.TTD]}),Je})();function jn(Je,St){return new t.vHH(2100,"")}class dr{createSubscription(St,Qe){return St.subscribe({next:Qe,error:kt=>{throw kt}})}dispose(St){St.unsubscribe()}onDestroy(St){St.unsubscribe()}}class Fr{createSubscription(St,Qe){return St.then(Qe,kt=>{throw kt})}dispose(St){}onDestroy(St){}}const Vr=new Fr,ua=new dr;let _a=(()=>{class Je{constructor(Qe){this._ref=Qe,this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null}ngOnDestroy(){this._subscription&&this._dispose()}transform(Qe){return this._obj?Qe!==this._obj?(this._dispose(),this.transform(Qe)):this._latestValue:(Qe&&this._subscribe(Qe),this._latestValue)}_subscribe(Qe){this._obj=Qe,this._strategy=this._selectStrategy(Qe),this._subscription=this._strategy.createSubscription(Qe,kt=>this._updateLatestValue(Qe,kt))}_selectStrategy(Qe){if((0,t.QGY)(Qe))return Vr;if((0,t.F4k)(Qe))return ua;throw jn()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(Qe,kt){Qe===this._obj&&(this._latestValue=kt,this._ref.markForCheck())}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.sBO,16))},Je.\u0275pipe=t.Yjl({name:"async",type:Je,pure:!1}),Je})(),va=(()=>{class Je{transform(Qe){if(null==Qe)return null;if("string"!=typeof Qe)throw jn();return Qe.toLowerCase()}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275pipe=t.Yjl({name:"lowercase",type:Je,pure:!0}),Je})();const Va=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let za=(()=>{class Je{transform(Qe){if(null==Qe)return null;if("string"!=typeof Qe)throw jn();return Qe.replace(Va,kt=>kt[0].toUpperCase()+kt.substr(1).toLowerCase())}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275pipe=t.Yjl({name:"titlecase",type:Je,pure:!0}),Je})(),cr=(()=>{class Je{transform(Qe){if(null==Qe)return null;if("string"!=typeof Qe)throw jn();return Qe.toUpperCase()}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275pipe=t.Yjl({name:"uppercase",type:Je,pure:!0}),Je})();const $r=new t.OlP("DATE_PIPE_DEFAULT_TIMEZONE");let ha=(()=>{class Je{constructor(Qe,kt){this.locale=Qe,this.defaultTimezone=kt}transform(Qe,kt="mediumDate",ai,Ti){var Oi;if(null==Qe||""===Qe||Qe!=Qe)return null;try{return Wt(Qe,kt,Ti||this.locale,null!==(Oi=null!=ai?ai:this.defaultTimezone)&&void 0!==Oi?Oi:void 0)}catch(rn){throw jn()}}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.soG,16),t.Y36($r,24))},Je.\u0275pipe=t.Yjl({name:"date",type:Je,pure:!0}),Je})(),mr=(()=>{class Je{transform(Qe){return JSON.stringify(Qe,null,2)}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275pipe=t.Yjl({name:"json",type:Je,pure:!1}),Je})(),ea=(()=>{class Je{constructor(Qe){this.differs=Qe,this.keyValues=[],this.compareFn=ir}transform(Qe,kt=ir){if(!Qe||!(Qe instanceof Map)&&"object"!=typeof Qe)return null;this.differ||(this.differ=this.differs.find(Qe).create());const ai=this.differ.diff(Qe),Ti=kt!==this.compareFn;return ai&&(this.keyValues=[],ai.forEachItem(Oi=>{this.keyValues.push(function hn(Je,St){return{key:Je,value:St}}(Oi.key,Oi.currentValue))})),(ai||Ti)&&(this.keyValues.sort(kt),this.compareFn=kt),this.keyValues}}return Je.\u0275fac=function(Qe){return new(Qe||Je)(t.Y36(t.aQg,16))},Je.\u0275pipe=t.Yjl({name:"keyvalue",type:Je,pure:!1}),Je})();function ir(Je,St){const Qe=Je.key,kt=St.key;if(Qe===kt)return 0;if(void 0===Qe)return 1;if(void 0===kt)return-1;if(null===Qe)return 1;if(null===kt)return-1;if("string"==typeof Qe&&"string"==typeof kt)return Qe{class Je{constructor(Qe){this._locale=Qe}transform(Qe,kt,ai){if(!function ta(Je){return!(null==Je||""===Je||Je!=Je)}(Qe))return null;ai=ai||this._locale;try{return function Tt(Je,St,Qe){return function zi(Je,St,Qe,kt,ai,Ti,Oi=!1){let rn="",qn=!1;if(isFinite(Je)){let Ot=function _t(Je){let kt,ai,Ti,Oi,rn,St=Math.abs(Je)+"",Qe=0;for((ai=St.indexOf("."))>-1&&(St=St.replace(".","")),(Ti=St.search(/e/i))>0?(ai<0&&(ai=Ti),ai+=+St.slice(Ti+1),St=St.substring(0,Ti)):ai<0&&(ai=St.length),Ti=0;"0"===St.charAt(Ti);Ti++);if(Ti===(rn=St.length))kt=[0],ai=1;else{for(rn--;"0"===St.charAt(rn);)rn--;for(ai-=Ti,kt=[],Oi=0;Ti<=rn;Ti++,Oi++)kt[Oi]=Number(St.charAt(Ti))}return ai>22&&(kt=kt.splice(0,21),Qe=ai-1,ai=1),{digits:kt,exponent:Qe,integerLen:ai}}(Je);Oi&&(Ot=function je(Je){if(0===Je.digits[0])return Je;const St=Je.digits.length-Je.integerLen;return Je.exponent?Je.exponent+=2:(0===St?Je.digits.push(0,0):1===St&&Je.digits.push(0),Je.integerLen+=2),Je}(Ot));let oi=St.minInt,gt=St.minFrac,Qt=St.maxFrac;if(Ti){const Lt=Ti.match(bt);if(null===Lt)throw new Error(`${Ti} is not a valid digit info`);const yi=Lt[1],Yi=Lt[3],Fn=Lt[5];null!=yi&&(oi=qe(yi)),null!=Yi&&(gt=qe(Yi)),null!=Fn?Qt=qe(Fn):null!=Yi&>>Qt&&(Qt=gt)}!function re(Je,St,Qe){if(St>Qe)throw new Error(`The minimum number of digits after fraction (${St}) is higher than the maximum (${Qe}).`);let kt=Je.digits,ai=kt.length-Je.integerLen;const Ti=Math.min(Math.max(St,ai),Qe);let Oi=Ti+Je.integerLen,rn=kt[Oi];if(Oi>0){kt.splice(Math.max(Je.integerLen,Oi));for(let gt=Oi;gt=5)if(Oi-1<0){for(let gt=0;gt>Oi;gt--)kt.unshift(0),Je.integerLen++;kt.unshift(1),Je.integerLen++}else kt[Oi-1]++;for(;ai=Ot?Gi.pop():qn=!1),Qt>=10?1:0},0);oi&&(kt.unshift(oi),Je.integerLen++)}(Ot,gt,Qt);let Di=Ot.digits,Gi=Ot.integerLen;const Ke=Ot.exponent;let We=[];for(qn=Di.every(Lt=>!Lt);Gi0?We=Di.splice(Gi,Di.length):(We=Di,Di=[0]);const He=[];for(Di.length>=St.lgSize&&He.unshift(Di.splice(-St.lgSize,Di.length).join(""));Di.length>St.gSize;)He.unshift(Di.splice(-St.gSize,Di.length).join(""));Di.length&&He.unshift(Di.join("")),rn=He.join(Ne(Qe,kt)),We.length&&(rn+=Ne(Qe,ai)+We.join("")),Ke&&(rn+=Ne(Qe,_.Exponential)+"+"+Ke)}else rn=Ne(Qe,_.Infinity);return rn=Je<0&&!qn?St.negPre+rn+St.negSuf:St.posPre+rn+St.posSuf,rn}(Je,function pe(Je,St="-"){const Qe={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},kt=Je.split(";"),ai=kt[0],Ti=kt[1],Oi=-1!==ai.indexOf(".")?ai.split("."):[ai.substring(0,ai.lastIndexOf("0")+1),ai.substring(ai.lastIndexOf("0")+1)],rn=Oi[0],qn=Oi[1]||"";Qe.posPre=rn.substr(0,rn.indexOf("#"));for(let oi=0;oi{class Je{transform(Qe,kt,ai){if(null==Qe)return null;if(!this.supports(Qe))throw jn();return Qe.slice(kt,ai)}supports(Qe){return"string"==typeof Qe||Array.isArray(Qe)}}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275pipe=t.Yjl({name:"slice",type:Je,pure:!1}),Je})(),xr=(()=>{class Je{}return Je.\u0275fac=function(Qe){return new(Qe||Je)},Je.\u0275mod=t.oAB({type:Je}),Je.\u0275inj=t.cJS({}),Je})();const Nr="browser";function nr(Je){return Je===Nr}function Aa(Je){return"server"===Je}let Br=(()=>{class Je{}return Je.\u0275prov=(0,t.Yz7)({token:Je,providedIn:"root",factory:()=>new Dr((0,t.LFG)(d),window)}),Je})();class Dr{constructor(St,Qe){this.document=St,this.window=Qe,this.offset=()=>[0,0]}setOffset(St){this.offset=Array.isArray(St)?()=>St:St}getScrollPosition(){return this.supportsScrolling()?[this.window.pageXOffset,this.window.pageYOffset]:[0,0]}scrollToPosition(St){this.supportsScrolling()&&this.window.scrollTo(St[0],St[1])}scrollToAnchor(St){if(!this.supportsScrolling())return;const Qe=function ba(Je,St){const Qe=Je.getElementById(St)||Je.getElementsByName(St)[0];if(Qe)return Qe;if("function"==typeof Je.createTreeWalker&&Je.body&&(Je.body.createShadowRoot||Je.body.attachShadow)){const kt=Je.createTreeWalker(Je.body,NodeFilter.SHOW_ELEMENT);let ai=kt.currentNode;for(;ai;){const Ti=ai.shadowRoot;if(Ti){const Oi=Ti.getElementById(St)||Ti.querySelector(`[name="${St}"]`);if(Oi)return Oi}ai=kt.nextNode()}}return null}(this.document,St);Qe&&(this.scrollToElement(Qe),Qe.focus())}setHistoryScrollRestoration(St){if(this.supportScrollRestoration()){const Qe=this.window.history;Qe&&Qe.scrollRestoration&&(Qe.scrollRestoration=St)}}scrollToElement(St){const Qe=St.getBoundingClientRect(),kt=Qe.left+this.window.pageXOffset,ai=Qe.top+this.window.pageYOffset,Ti=this.offset();this.window.scrollTo(kt-Ti[0],ai-Ti[1])}supportScrollRestoration(){try{if(!this.supportsScrolling())return!1;const St=Ur(this.window.history)||Ur(Object.getPrototypeOf(this.window.history));return!(!St||!St.writable&&!St.set)}catch(St){return!1}}supportsScrolling(){try{return!!this.window&&!!this.window.scrollTo&&"pageXOffset"in this.window}catch(St){return!1}}}function Ur(Je){return Object.getOwnPropertyDescriptor(Je,"scrollRestoration")}class Qn{}},8138:(Ve,j,p)=>{"use strict";p.d(j,{JF:()=>xe,LE:()=>Z,TP:()=>I,eN:()=>_});var t=p(9808),e=p(5e3),f=p(9646),M=p(8306),a=p(4351),b=p(9300),d=p(4004);class N{}class h{}class A{constructor(Ce){this.normalizedNames=new Map,this.lazyUpdate=null,Ce?this.lazyInit="string"==typeof Ce?()=>{this.headers=new Map,Ce.split("\n").forEach(Le=>{const ut=Le.indexOf(":");if(ut>0){const ht=Le.slice(0,ut),It=ht.toLowerCase(),ui=Le.slice(ut+1).trim();this.maybeSetNormalizedName(ht,It),this.headers.has(It)?this.headers.get(It).push(ui):this.headers.set(It,[ui])}})}:()=>{this.headers=new Map,Object.keys(Ce).forEach(Le=>{let ut=Ce[Le];const ht=Le.toLowerCase();"string"==typeof ut&&(ut=[ut]),ut.length>0&&(this.headers.set(ht,ut),this.maybeSetNormalizedName(Le,ht))})}:this.headers=new Map}has(Ce){return this.init(),this.headers.has(Ce.toLowerCase())}get(Ce){this.init();const Le=this.headers.get(Ce.toLowerCase());return Le&&Le.length>0?Le[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(Ce){return this.init(),this.headers.get(Ce.toLowerCase())||null}append(Ce,Le){return this.clone({name:Ce,value:Le,op:"a"})}set(Ce,Le){return this.clone({name:Ce,value:Le,op:"s"})}delete(Ce,Le){return this.clone({name:Ce,value:Le,op:"d"})}maybeSetNormalizedName(Ce,Le){this.normalizedNames.has(Le)||this.normalizedNames.set(Le,Ce)}init(){this.lazyInit&&(this.lazyInit instanceof A?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(Ce=>this.applyUpdate(Ce)),this.lazyUpdate=null))}copyFrom(Ce){Ce.init(),Array.from(Ce.headers.keys()).forEach(Le=>{this.headers.set(Le,Ce.headers.get(Le)),this.normalizedNames.set(Le,Ce.normalizedNames.get(Le))})}clone(Ce){const Le=new A;return Le.lazyInit=this.lazyInit&&this.lazyInit instanceof A?this.lazyInit:this,Le.lazyUpdate=(this.lazyUpdate||[]).concat([Ce]),Le}applyUpdate(Ce){const Le=Ce.name.toLowerCase();switch(Ce.op){case"a":case"s":let ut=Ce.value;if("string"==typeof ut&&(ut=[ut]),0===ut.length)return;this.maybeSetNormalizedName(Ce.name,Le);const ht=("a"===Ce.op?this.headers.get(Le):void 0)||[];ht.push(...ut),this.headers.set(Le,ht);break;case"d":const It=Ce.value;if(It){let ui=this.headers.get(Le);if(!ui)return;ui=ui.filter(Wt=>-1===It.indexOf(Wt)),0===ui.length?(this.headers.delete(Le),this.normalizedNames.delete(Le)):this.headers.set(Le,ui)}else this.headers.delete(Le),this.normalizedNames.delete(Le)}}forEach(Ce){this.init(),Array.from(this.normalizedNames.keys()).forEach(Le=>Ce(this.normalizedNames.get(Le),this.headers.get(Le)))}}class w{encodeKey(Ce){return S(Ce)}encodeValue(Ce){return S(Ce)}decodeKey(Ce){return decodeURIComponent(Ce)}decodeValue(Ce){return decodeURIComponent(Ce)}}const L=/%(\d[a-f0-9])/gi,k={40:"@","3A":":",24:"$","2C":",","3B":";","2B":"+","3D":"=","3F":"?","2F":"/"};function S(ue){return encodeURIComponent(ue).replace(L,(Ce,Le)=>{var ut;return null!==(ut=k[Le])&&void 0!==ut?ut:Ce})}function U(ue){return`${ue}`}class Z{constructor(Ce={}){if(this.updates=null,this.cloneFrom=null,this.encoder=Ce.encoder||new w,Ce.fromString){if(Ce.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function D(ue,Ce){const Le=new Map;return ue.length>0&&ue.replace(/^\?/,"").split("&").forEach(ht=>{const It=ht.indexOf("="),[ui,Wt]=-1==It?[Ce.decodeKey(ht),""]:[Ce.decodeKey(ht.slice(0,It)),Ce.decodeValue(ht.slice(It+1))],Gt=Le.get(ui)||[];Gt.push(Wt),Le.set(ui,Gt)}),Le}(Ce.fromString,this.encoder)}else Ce.fromObject?(this.map=new Map,Object.keys(Ce.fromObject).forEach(Le=>{const ut=Ce.fromObject[Le];this.map.set(Le,Array.isArray(ut)?ut:[ut])})):this.map=null}has(Ce){return this.init(),this.map.has(Ce)}get(Ce){this.init();const Le=this.map.get(Ce);return Le?Le[0]:null}getAll(Ce){return this.init(),this.map.get(Ce)||null}keys(){return this.init(),Array.from(this.map.keys())}append(Ce,Le){return this.clone({param:Ce,value:Le,op:"a"})}appendAll(Ce){const Le=[];return Object.keys(Ce).forEach(ut=>{const ht=Ce[ut];Array.isArray(ht)?ht.forEach(It=>{Le.push({param:ut,value:It,op:"a"})}):Le.push({param:ut,value:ht,op:"a"})}),this.clone(Le)}set(Ce,Le){return this.clone({param:Ce,value:Le,op:"s"})}delete(Ce,Le){return this.clone({param:Ce,value:Le,op:"d"})}toString(){return this.init(),this.keys().map(Ce=>{const Le=this.encoder.encodeKey(Ce);return this.map.get(Ce).map(ut=>Le+"="+this.encoder.encodeValue(ut)).join("&")}).filter(Ce=>""!==Ce).join("&")}clone(Ce){const Le=new Z({encoder:this.encoder});return Le.cloneFrom=this.cloneFrom||this,Le.updates=(this.updates||[]).concat(Ce),Le}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(Ce=>this.map.set(Ce,this.cloneFrom.map.get(Ce))),this.updates.forEach(Ce=>{switch(Ce.op){case"a":case"s":const Le=("a"===Ce.op?this.map.get(Ce.param):void 0)||[];Le.push(U(Ce.value)),this.map.set(Ce.param,Le);break;case"d":if(void 0===Ce.value){this.map.delete(Ce.param);break}{let ut=this.map.get(Ce.param)||[];const ht=ut.indexOf(U(Ce.value));-1!==ht&&ut.splice(ht,1),ut.length>0?this.map.set(Ce.param,ut):this.map.delete(Ce.param)}}}),this.cloneFrom=this.updates=null)}}class ne{constructor(){this.map=new Map}set(Ce,Le){return this.map.set(Ce,Le),this}get(Ce){return this.map.has(Ce)||this.map.set(Ce,Ce.defaultValue()),this.map.get(Ce)}delete(Ce){return this.map.delete(Ce),this}has(Ce){return this.map.has(Ce)}keys(){return this.map.keys()}}function de(ue){return"undefined"!=typeof ArrayBuffer&&ue instanceof ArrayBuffer}function te(ue){return"undefined"!=typeof Blob&&ue instanceof Blob}function ie(ue){return"undefined"!=typeof FormData&&ue instanceof FormData}class X{constructor(Ce,Le,ut,ht){let It;if(this.url=Le,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=Ce.toUpperCase(),function $(ue){switch(ue){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||ht?(this.body=void 0!==ut?ut:null,It=ht):It=ut,It&&(this.reportProgress=!!It.reportProgress,this.withCredentials=!!It.withCredentials,It.responseType&&(this.responseType=It.responseType),It.headers&&(this.headers=It.headers),It.context&&(this.context=It.context),It.params&&(this.params=It.params)),this.headers||(this.headers=new A),this.context||(this.context=new ne),this.params){const ui=this.params.toString();if(0===ui.length)this.urlWithParams=Le;else{const Wt=Le.indexOf("?");this.urlWithParams=Le+(-1===Wt?"?":WtCt.set(et,Ce.setHeaders[et]),hi)),Ce.setParams&&(xt=Object.keys(Ce.setParams).reduce((Ct,et)=>Ct.set(et,Ce.setParams[et]),xt)),new X(ut,ht,ui,{params:xt,headers:hi,context:Nt,reportProgress:Gt,responseType:It,withCredentials:Wt})}}var me=(()=>((me=me||{})[me.Sent=0]="Sent",me[me.UploadProgress=1]="UploadProgress",me[me.ResponseHeader=2]="ResponseHeader",me[me.DownloadProgress=3]="DownloadProgress",me[me.Response=4]="Response",me[me.User=5]="User",me))();class y{constructor(Ce,Le=200,ut="OK"){this.headers=Ce.headers||new A,this.status=void 0!==Ce.status?Ce.status:Le,this.statusText=Ce.statusText||ut,this.url=Ce.url||null,this.ok=this.status>=200&&this.status<300}}class i extends y{constructor(Ce={}){super(Ce),this.type=me.ResponseHeader}clone(Ce={}){return new i({headers:Ce.headers||this.headers,status:void 0!==Ce.status?Ce.status:this.status,statusText:Ce.statusText||this.statusText,url:Ce.url||this.url||void 0})}}class r extends y{constructor(Ce={}){super(Ce),this.type=me.Response,this.body=void 0!==Ce.body?Ce.body:null}clone(Ce={}){return new r({body:void 0!==Ce.body?Ce.body:this.body,headers:Ce.headers||this.headers,status:void 0!==Ce.status?Ce.status:this.status,statusText:Ce.statusText||this.statusText,url:Ce.url||this.url||void 0})}}class u extends y{constructor(Ce){super(Ce,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${Ce.url||"(unknown url)"}`:`Http failure response for ${Ce.url||"(unknown url)"}: ${Ce.status} ${Ce.statusText}`,this.error=Ce.error||null}}function c(ue,Ce){return{body:Ce,headers:ue.headers,context:ue.context,observe:ue.observe,params:ue.params,reportProgress:ue.reportProgress,responseType:ue.responseType,withCredentials:ue.withCredentials}}let _=(()=>{class ue{constructor(Le){this.handler=Le}request(Le,ut,ht={}){let It;if(Le instanceof X)It=Le;else{let Gt,hi;Gt=ht.headers instanceof A?ht.headers:new A(ht.headers),ht.params&&(hi=ht.params instanceof Z?ht.params:new Z({fromObject:ht.params})),It=new X(Le,ut,void 0!==ht.body?ht.body:null,{headers:Gt,context:ht.context,params:hi,reportProgress:ht.reportProgress,responseType:ht.responseType||"json",withCredentials:ht.withCredentials})}const ui=(0,f.of)(It).pipe((0,a.b)(Gt=>this.handler.handle(Gt)));if(Le instanceof X||"events"===ht.observe)return ui;const Wt=ui.pipe((0,b.h)(Gt=>Gt instanceof r));switch(ht.observe||"body"){case"body":switch(It.responseType){case"arraybuffer":return Wt.pipe((0,d.U)(Gt=>{if(null!==Gt.body&&!(Gt.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Gt.body}));case"blob":return Wt.pipe((0,d.U)(Gt=>{if(null!==Gt.body&&!(Gt.body instanceof Blob))throw new Error("Response is not a Blob.");return Gt.body}));case"text":return Wt.pipe((0,d.U)(Gt=>{if(null!==Gt.body&&"string"!=typeof Gt.body)throw new Error("Response is not a string.");return Gt.body}));default:return Wt.pipe((0,d.U)(Gt=>Gt.body))}case"response":return Wt;default:throw new Error(`Unreachable: unhandled observe type ${ht.observe}}`)}}delete(Le,ut={}){return this.request("DELETE",Le,ut)}get(Le,ut={}){return this.request("GET",Le,ut)}head(Le,ut={}){return this.request("HEAD",Le,ut)}jsonp(Le,ut){return this.request("JSONP",Le,{params:(new Z).append(ut,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(Le,ut={}){return this.request("OPTIONS",Le,ut)}patch(Le,ut,ht={}){return this.request("PATCH",Le,c(ht,ut))}post(Le,ut,ht={}){return this.request("POST",Le,c(ht,ut))}put(Le,ut,ht={}){return this.request("PUT",Le,c(ht,ut))}}return ue.\u0275fac=function(Le){return new(Le||ue)(e.LFG(N))},ue.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac}),ue})();class E{constructor(Ce,Le){this.next=Ce,this.interceptor=Le}handle(Ce){return this.interceptor.intercept(Ce,this.next)}}const I=new e.OlP("HTTP_INTERCEPTORS");let v=(()=>{class ue{intercept(Le,ut){return ut.handle(Le)}}return ue.\u0275fac=function(Le){return new(Le||ue)},ue.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac}),ue})();const Ne=/^\)\]\}',?\n/;let Q=(()=>{class ue{constructor(Le){this.xhrFactory=Le}handle(Le){if("JSONP"===Le.method)throw new Error("Attempted to construct Jsonp request without HttpClientJsonpModule installed.");return new M.y(ut=>{const ht=this.xhrFactory.build();if(ht.open(Le.method,Le.urlWithParams),Le.withCredentials&&(ht.withCredentials=!0),Le.headers.forEach((et,yt)=>ht.setRequestHeader(et,yt.join(","))),Le.headers.has("Accept")||ht.setRequestHeader("Accept","application/json, text/plain, */*"),!Le.headers.has("Content-Type")){const et=Le.detectContentTypeHeader();null!==et&&ht.setRequestHeader("Content-Type",et)}if(Le.responseType){const et=Le.responseType.toLowerCase();ht.responseType="json"!==et?et:"text"}const It=Le.serializeBody();let ui=null;const Wt=()=>{if(null!==ui)return ui;const et=ht.statusText||"OK",yt=new A(ht.getAllResponseHeaders()),ei=function we(ue){return"responseURL"in ue&&ue.responseURL?ue.responseURL:/^X-Request-URL:/m.test(ue.getAllResponseHeaders())?ue.getResponseHeader("X-Request-URL"):null}(ht)||Le.url;return ui=new i({headers:yt,status:ht.status,statusText:et,url:ei}),ui},Gt=()=>{let{headers:et,status:yt,statusText:ei,url:Yt}=Wt(),Pe=null;204!==yt&&(Pe=void 0===ht.response?ht.responseText:ht.response),0===yt&&(yt=Pe?200:0);let Oe=yt>=200&&yt<300;if("json"===Le.responseType&&"string"==typeof Pe){const ce=Pe;Pe=Pe.replace(Ne,"");try{Pe=""!==Pe?JSON.parse(Pe):null}catch(be){Pe=ce,Oe&&(Oe=!1,Pe={error:be,text:Pe})}}Oe?(ut.next(new r({body:Pe,headers:et,status:yt,statusText:ei,url:Yt||void 0})),ut.complete()):ut.error(new u({error:Pe,headers:et,status:yt,statusText:ei,url:Yt||void 0}))},hi=et=>{const{url:yt}=Wt(),ei=new u({error:et,status:ht.status||0,statusText:ht.statusText||"Unknown Error",url:yt||void 0});ut.error(ei)};let xt=!1;const Nt=et=>{xt||(ut.next(Wt()),xt=!0);let yt={type:me.DownloadProgress,loaded:et.loaded};et.lengthComputable&&(yt.total=et.total),"text"===Le.responseType&&!!ht.responseText&&(yt.partialText=ht.responseText),ut.next(yt)},Ct=et=>{let yt={type:me.UploadProgress,loaded:et.loaded};et.lengthComputable&&(yt.total=et.total),ut.next(yt)};return ht.addEventListener("load",Gt),ht.addEventListener("error",hi),ht.addEventListener("timeout",hi),ht.addEventListener("abort",hi),Le.reportProgress&&(ht.addEventListener("progress",Nt),null!==It&&ht.upload&&ht.upload.addEventListener("progress",Ct)),ht.send(It),ut.next({type:me.Sent}),()=>{ht.removeEventListener("error",hi),ht.removeEventListener("abort",hi),ht.removeEventListener("load",Gt),ht.removeEventListener("timeout",hi),Le.reportProgress&&(ht.removeEventListener("progress",Nt),null!==It&&ht.upload&&ht.upload.removeEventListener("progress",Ct)),ht.readyState!==ht.DONE&&ht.abort()}})}}return ue.\u0275fac=function(Le){return new(Le||ue)(e.LFG(t.JF))},ue.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac}),ue})();const Ue=new e.OlP("XSRF_COOKIE_NAME"),ve=new e.OlP("XSRF_HEADER_NAME");class V{}let De=(()=>{class ue{constructor(Le,ut,ht){this.doc=Le,this.platform=ut,this.cookieName=ht,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const Le=this.doc.cookie||"";return Le!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,t.Mx)(Le,this.cookieName),this.lastCookieString=Le),this.lastToken}}return ue.\u0275fac=function(Le){return new(Le||ue)(e.LFG(t.K0),e.LFG(e.Lbi),e.LFG(Ue))},ue.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac}),ue})(),dt=(()=>{class ue{constructor(Le,ut){this.tokenService=Le,this.headerName=ut}intercept(Le,ut){const ht=Le.url.toLowerCase();if("GET"===Le.method||"HEAD"===Le.method||ht.startsWith("http://")||ht.startsWith("https://"))return ut.handle(Le);const It=this.tokenService.getToken();return null!==It&&!Le.headers.has(this.headerName)&&(Le=Le.clone({headers:Le.headers.set(this.headerName,It)})),ut.handle(Le)}}return ue.\u0275fac=function(Le){return new(Le||ue)(e.LFG(V),e.LFG(ve))},ue.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac}),ue})(),Ie=(()=>{class ue{constructor(Le,ut){this.backend=Le,this.injector=ut,this.chain=null}handle(Le){if(null===this.chain){const ut=this.injector.get(I,[]);this.chain=ut.reduceRight((ht,It)=>new E(ht,It),this.backend)}return this.chain.handle(Le)}}return ue.\u0275fac=function(Le){return new(Le||ue)(e.LFG(h),e.LFG(e.zs3))},ue.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac}),ue})(),Te=(()=>{class ue{static disable(){return{ngModule:ue,providers:[{provide:dt,useClass:v}]}}static withOptions(Le={}){return{ngModule:ue,providers:[Le.cookieName?{provide:Ue,useValue:Le.cookieName}:[],Le.headerName?{provide:ve,useValue:Le.headerName}:[]]}}}return ue.\u0275fac=function(Le){return new(Le||ue)},ue.\u0275mod=e.oAB({type:ue}),ue.\u0275inj=e.cJS({providers:[dt,{provide:I,useExisting:dt,multi:!0},{provide:V,useClass:De},{provide:Ue,useValue:"XSRF-TOKEN"},{provide:ve,useValue:"X-XSRF-TOKEN"}]}),ue})(),xe=(()=>{class ue{}return ue.\u0275fac=function(Le){return new(Le||ue)},ue.\u0275mod=e.oAB({type:ue}),ue.\u0275inj=e.cJS({providers:[_,{provide:N,useClass:Ie},Q,{provide:h,useExisting:Q}],imports:[[Te.withOptions({cookieName:"XSRF-TOKEN",headerName:"X-XSRF-TOKEN"})]]}),ue})()},5e3:(Ve,j,p)=>{"use strict";p.d(j,{$8M:()=>k1,$Z:()=>x4,AFp:()=>Lf,ALo:()=>K8,AaK:()=>N,AsE:()=>N4,BQk:()=>L4,CHM:()=>es,CRH:()=>wu,CZH:()=>ku,CqO:()=>S4,DdM:()=>z8,Dn7:()=>fu,EJc:()=>Wp,EiD:()=>u3,EpF:()=>Nc,F$t:()=>Ld,F4k:()=>zl,FYo:()=>A8,FiY:()=>Ko,G48:()=>u9,Gf:()=>bu,GfV:()=>O8,GkF:()=>Pc,Gpc:()=>w,Gre:()=>Yd,HOy:()=>Xc,Hsn:()=>Sd,Ikx:()=>In,JOm:()=>Us,JVY:()=>Cs,Jf7:()=>v0,L6k:()=>or,LAX:()=>Pn,LFG:()=>Pa,LSH:()=>f3,Lbi:()=>Gp,MAs:()=>vs,MGl:()=>Bl,NdJ:()=>S2,O4$:()=>_r,OlP:()=>Er,Oqu:()=>qc,PXZ:()=>r9,PiD:()=>Bs,Q6J:()=>b4,QGY:()=>ys,Qsj:()=>D8,R0b:()=>Lo,RDi:()=>Ur,Rgc:()=>ql,SBq:()=>B4,Sil:()=>jp,Suo:()=>Mu,TTD:()=>ta,TgZ:()=>Vl,Tol:()=>Hd,Udp:()=>Yc,VKq:()=>B8,VLi:()=>n9,W1O:()=>df,WFA:()=>Rc,WLB:()=>U8,X6Q:()=>zf,XFs:()=>Ae,Xpm:()=>pt,Y36:()=>T1,YKP:()=>su,YNc:()=>c4,Yjl:()=>at,Yz7:()=>q,ZZ4:()=>ju,_Bn:()=>b8,_UZ:()=>L2,_Vd:()=>l6,_c5:()=>A9,_uU:()=>Qc,aQg:()=>Ku,c2e:()=>Ef,cJS:()=>_e,cg1:()=>Ea,d8E:()=>wn,dDg:()=>If,deG:()=>Ao,dqk:()=>hi,eBb:()=>as,eFA:()=>Nf,ekj:()=>D4,f3M:()=>u1,g9A:()=>Nu,h0i:()=>jl,hGG:()=>D9,hij:()=>P4,iGM:()=>rf,ifc:()=>ht,ip1:()=>Ou,kEZ:()=>G8,kL8:()=>Or,kcU:()=>rt,lG2:()=>Ge,lcZ:()=>Q8,lnq:()=>Jc,mCW:()=>p1,n5z:()=>I1,n_E:()=>d6,oAB:()=>tt,oJD:()=>l0,oxw:()=>Md,pB0:()=>hr,q3G:()=>ca,qLn:()=>$2,qOj:()=>a4,qZA:()=>w2,qzn:()=>Na,s9C:()=>Fc,sBO:()=>Uf,sIi:()=>Tl,s_b:()=>Z4,soG:()=>g6,tBr:()=>po,tb:()=>Ru,tp0:()=>Ps,uIk:()=>Sc,vHH:()=>S,vpe:()=>Vo,wAp:()=>ln,xi3:()=>q8,xp6:()=>F0,yhl:()=>rs,ynx:()=>w4,z2F:()=>Uu,z3N:()=>Wr,zSh:()=>t4,zs3:()=>vo});var t=p(7579),e=p(727),f=p(8306),M=p(6451),a=p(3099);function b(s){for(let l in s)if(s[l]===b)return l;throw Error("Could not find renamed property on target object.")}function d(s,l){for(const g in l)l.hasOwnProperty(g)&&!s.hasOwnProperty(g)&&(s[g]=l[g])}function N(s){if("string"==typeof s)return s;if(Array.isArray(s))return"["+s.map(N).join(", ")+"]";if(null==s)return""+s;if(s.overriddenName)return`${s.overriddenName}`;if(s.name)return`${s.name}`;const l=s.toString();if(null==l)return""+l;const g=l.indexOf("\n");return-1===g?l:l.substring(0,g)}function h(s,l){return null==s||""===s?null===l?"":l:null==l||""===l?s:s+" "+l}const A=b({__forward_ref__:b});function w(s){return s.__forward_ref__=w,s.toString=function(){return N(this())},s}function D(s){return L(s)?s():s}function L(s){return"function"==typeof s&&s.hasOwnProperty(A)&&s.__forward_ref__===w}class S extends Error{constructor(l,g){super(function U(s,l){return`NG0${Math.abs(s)}${l?": "+l:""}`}(l,g)),this.code=l}}function Z(s){return"string"==typeof s?s:null==s?"":String(s)}function Y(s){return"function"==typeof s?s.name||s.toString():"object"==typeof s&&null!=s&&"function"==typeof s.type?s.type.name||s.type.toString():Z(s)}function te(s,l){const g=l?` in ${l}`:"";throw new S(-201,`No provider for ${Y(s)} found${g}`)}function n(s,l){null==s&&function C(s,l,g,T){throw new Error(`ASSERTION ERROR: ${s}`+(null==T?"":` [Expected=> ${g} ${T} ${l} <=Actual]`))}(l,s,null,"!=")}function q(s){return{token:s.token,providedIn:s.providedIn||null,factory:s.factory,value:void 0}}function _e(s){return{providers:s.providers||[],imports:s.imports||[]}}function Ne(s){return we(s,V)||we(s,dt)}function we(s,l){return s.hasOwnProperty(l)?s[l]:null}function ve(s){return s&&(s.hasOwnProperty(De)||s.hasOwnProperty(Ie))?s[De]:null}const V=b({\u0275prov:b}),De=b({\u0275inj:b}),dt=b({ngInjectableDef:b}),Ie=b({ngInjectorDef:b});var Ae=(()=>((Ae=Ae||{})[Ae.Default=0]="Default",Ae[Ae.Host=1]="Host",Ae[Ae.Self=2]="Self",Ae[Ae.SkipSelf=4]="SkipSelf",Ae[Ae.Optional=8]="Optional",Ae))();let le;function xe(s){const l=le;return le=s,l}function W(s,l,g){const T=Ne(s);return T&&"root"==T.providedIn?void 0===T.value?T.value=T.factory():T.value:g&Ae.Optional?null:void 0!==l?l:void te(N(s),"Injector")}function ue(s){return{toString:s}.toString()}var Ce=(()=>((Ce=Ce||{})[Ce.OnPush=0]="OnPush",Ce[Ce.Default=1]="Default",Ce))(),ht=(()=>{return(s=ht||(ht={}))[s.Emulated=0]="Emulated",s[s.None=2]="None",s[s.ShadowDom=3]="ShadowDom",ht;var s})();const It="undefined"!=typeof globalThis&&globalThis,ui="undefined"!=typeof window&&window,Wt="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,hi=It||"undefined"!=typeof global&&global||ui||Wt,Ct={},et=[],yt=b({\u0275cmp:b}),ei=b({\u0275dir:b}),Yt=b({\u0275pipe:b}),Pe=b({\u0275mod:b}),Oe=b({\u0275fac:b}),ce=b({__NG_ELEMENT_ID__:b});let be=0;function pt(s){return ue(()=>{const g={},T={type:s.type,providersResolver:null,decls:s.decls,vars:s.vars,factory:null,template:s.template||null,consts:s.consts||null,ngContentSelectors:s.ngContentSelectors,hostBindings:s.hostBindings||null,hostVars:s.hostVars||0,hostAttrs:s.hostAttrs||null,contentQueries:s.contentQueries||null,declaredInputs:g,inputs:null,outputs:null,exportAs:s.exportAs||null,onPush:s.changeDetection===Ce.OnPush,directiveDefs:null,pipeDefs:null,selectors:s.selectors||et,viewQuery:s.viewQuery||null,features:s.features||null,data:s.data||{},encapsulation:s.encapsulation||ht.Emulated,id:"c",styles:s.styles||et,_:null,setInput:null,schemas:s.schemas||null,tView:null},R=s.directives,G=s.features,se=s.pipes;return T.id+=be++,T.inputs=Se(s.inputs,g),T.outputs=Se(s.outputs),G&&G.forEach(Ee=>Ee(T)),T.directiveDefs=R?()=>("function"==typeof R?R():R).map(Ht):null,T.pipeDefs=se?()=>("function"==typeof se?se():se).map(it):null,T})}function Ht(s){return st(s)||function bt(s){return s[ei]||null}(s)}function it(s){return function gi(s){return s[Yt]||null}(s)}const Re={};function tt(s){return ue(()=>{const l={type:s.type,bootstrap:s.bootstrap||et,declarations:s.declarations||et,imports:s.imports||et,exports:s.exports||et,transitiveCompileScopes:null,schemas:s.schemas||null,id:s.id||null};return null!=s.id&&(Re[s.id]=s.type),l})}function Se(s,l){if(null==s)return Ct;const g={};for(const T in s)if(s.hasOwnProperty(T)){let R=s[T],G=R;Array.isArray(R)&&(G=R[1],R=R[0]),g[R]=T,l&&(l[R]=G)}return g}const Ge=pt;function at(s){return{type:s.type,name:s.name,factory:null,pure:!1!==s.pure,onDestroy:s.type.prototype.ngOnDestroy||null}}function st(s){return s[yt]||null}function qt(s,l){const g=s[Pe]||null;if(!g&&!0===l)throw new Error(`Type ${N(s)} does not have '\u0275mod' property.`);return g}function ki(s){return Array.isArray(s)&&"object"==typeof s[1]}function fn(s){return Array.isArray(s)&&!0===s[1]}function Bn(s){return 0!=(8&s.flags)}function Dn(s){return 2==(2&s.flags)}function Xn(s){return 1==(1&s.flags)}function _n(s){return null!==s.template}function Si(s){return 0!=(512&s[2])}function Kr(s,l){return s.hasOwnProperty(Oe)?s[Oe]:null}class Ta{constructor(l,g,T){this.previousValue=l,this.currentValue=g,this.firstChange=T}isFirstChange(){return this.firstChange}}function ta(){return Pr}function Pr(s){return s.type.prototype.ngOnChanges&&(s.setInput=Qr),zr}function zr(){const s=Nr(this),l=null==s?void 0:s.current;if(l){const g=s.previous;if(g===Ct)s.previous=l;else for(let T in l)g[T]=l[T];s.current=null,this.ngOnChanges(l)}}function Qr(s,l,g,T){const R=Nr(s)||function fa(s,l){return s[xr]=l}(s,{previous:Ct,current:null}),G=R.current||(R.current={}),se=R.previous,Ee=this.declaredInputs[g],Ze=se[Ee];G[Ee]=new Ta(Ze&&Ze.currentValue,l,se===Ct),s[T]=l}ta.ngInherit=!0;const xr="__ngSimpleChanges__";function Nr(s){return s[xr]||null}let Dr;function Ur(s){Dr=s}function ba(){return void 0!==Dr?Dr:"undefined"!=typeof document?document:void 0}function Qn(s){return!!s.listen}const Je={createRenderer:(s,l)=>ba()};function Qe(s){for(;Array.isArray(s);)s=s[0];return s}function Ti(s,l){return Qe(l[s])}function Oi(s,l){return Qe(l[s.index])}function qn(s,l){return s.data[l]}function Ot(s,l){return s[l]}function oi(s,l){const g=l[s];return ki(g)?g:g[0]}function gt(s){return 4==(4&s[2])}function Qt(s){return 128==(128&s[2])}function Gi(s,l){return null==l?null:s[l]}function Ke(s){s[18]=0}function We(s,l){s[5]+=l;let g=s,T=s[3];for(;null!==T&&(1===l&&1===g[5]||-1===l&&0===g[5]);)T[5]+=l,g=T,T=T[3]}const He={lFrame:Tn(null),bindingsEnabled:!0};function Qa(){return He.bindingsEnabled}function Fi(){return He.lFrame.lView}function Gn(){return He.lFrame.tView}function es(s){return He.lFrame.contextLView=s,s[8]}function br(){let s=Ks();for(;null!==s&&64===s.type;)s=s.parent;return s}function Ks(){return He.lFrame.currentTNode}function pa(s,l){const g=He.lFrame;g.currentTNode=s,g.isParent=l}function Ss(){return He.lFrame.isParent}function Es(){He.lFrame.isParent=!1}function Gr(){const s=He.lFrame;let l=s.bindingRootIndex;return-1===l&&(l=s.bindingRootIndex=s.tView.bindingStartIndex),l}function Ga(){return He.lFrame.bindingIndex}function ae(){return He.lFrame.bindingIndex++}function fe(s){const l=He.lFrame,g=l.bindingIndex;return l.bindingIndex=l.bindingIndex+s,g}function Vt(s,l){const g=He.lFrame;g.bindingIndex=g.bindingRootIndex=s,ni(l)}function ni(s){He.lFrame.currentDirectiveIndex=s}function _i(s){const l=He.lFrame.currentDirectiveIndex;return-1===l?null:s[l]}function Pi(){return He.lFrame.currentQueryIndex}function tn(s){He.lFrame.currentQueryIndex=s}function dn(s){const l=s[1];return 2===l.type?l.declTNode:1===l.type?s[6]:null}function Ln(s,l,g){if(g&Ae.SkipSelf){let R=l,G=s;for(;!(R=R.parent,null!==R||g&Ae.Host||(R=dn(G),null===R||(G=G[15],10&R.type))););if(null===R)return!1;l=R,s=G}const T=He.lFrame=xn();return T.currentTNode=l,T.lView=s,!0}function Nn(s){const l=xn(),g=s[1];He.lFrame=l,l.currentTNode=g.firstChild,l.lView=s,l.tView=g,l.contextLView=s,l.bindingIndex=g.bindingStartIndex,l.inI18n=!1}function xn(){const s=He.lFrame,l=null===s?null:s.child;return null===l?Tn(s):l}function Tn(s){const l={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:s,child:null,inI18n:!1};return null!==s&&(s.child=l),l}function tr(){const s=He.lFrame;return He.lFrame=s.parent,s.currentTNode=null,s.lView=null,s}const Lr=tr;function gr(){const s=tr();s.isParent=!0,s.tView=null,s.selectedIndex=-1,s.contextLView=null,s.elementDepthCount=0,s.currentDirectiveIndex=-1,s.currentNamespace=null,s.bindingRootIndex=-1,s.bindingIndex=-1,s.currentQueryIndex=0}function Cr(){return He.lFrame.selectedIndex}function Zr(s){He.lFrame.selectedIndex=s}function Zn(){const s=He.lFrame;return qn(s.tView,s.selectedIndex)}function _r(){He.lFrame.currentNamespace="svg"}function rt(){!function Et(){He.lFrame.currentNamespace=null}()}function Jt(s,l){for(let g=l.directiveStart,T=l.directiveEnd;g=T)break}else l[Ze]<0&&(s[18]+=65536),(Ee>11>16&&(3&s[2])===l){s[2]+=2048;try{G.call(Ee)}finally{}}}else try{G.call(Ee)}finally{}}class on{constructor(l,g,T){this.factory=l,this.resolving=!1,this.canSeeViewProviders=g,this.injectImpl=T}}function Hr(s,l,g){const T=Qn(s);let R=0;for(;Rl){se=G-1;break}}}for(;G>16}(s),T=l;for(;g>0;)T=T[15],g--;return T}let s1=!0;function Be(s){const l=s1;return s1=s,l}let ct=0;function $t(s,l){const g=Ri(s,l);if(-1!==g)return g;const T=l[1];T.firstCreatePass&&(s.injectorIndex=l.length,li(T.data,s),li(l,null),li(T.blueprint,null));const R=cn(s,l),G=s.injectorIndex;if(bs(R)){const se=qs(R),Ee=Js(R,l),Ze=Ee[1].data;for(let ft=0;ft<8;ft++)l[G+ft]=Ee[se+ft]|Ze[se+ft]}return l[G+8]=R,G}function li(s,l){s.push(0,0,0,0,0,0,0,0,l)}function Ri(s,l){return-1===s.injectorIndex||s.parent&&s.parent.injectorIndex===s.injectorIndex||null===l[s.injectorIndex+8]?-1:s.injectorIndex}function cn(s,l){if(s.parent&&-1!==s.parent.injectorIndex)return s.parent.injectorIndex;let g=0,T=null,R=l;for(;null!==R;){const G=R[1],se=G.type;if(T=2===se?G.declTNode:1===se?R[6]:null,null===T)return-1;if(g++,R=R[15],-1!==T.injectorIndex)return T.injectorIndex|g<<16}return-1}function Vn(s,l,g){!function Pt(s,l,g){let T;"string"==typeof g?T=g.charCodeAt(0)||0:g.hasOwnProperty(ce)&&(T=g[ce]),null==T&&(T=g[ce]=ct++);const R=255&T;l.data[s+(R>>5)]|=1<=0?255&l:zo:l}(g);if("function"==typeof G){if(!Ln(l,s,T))return T&Ae.Host?ur(R,g,T):zn(l,g,T,R);try{const se=G(T);if(null!=se||T&Ae.Optional)return se;te(g)}finally{Lr()}}else if("number"==typeof G){let se=null,Ee=Ri(s,l),Ze=-1,ft=T&Ae.Host?l[16][6]:null;for((-1===Ee||T&Ae.SkipSelf)&&(Ze=-1===Ee?cn(s,l):l[Ee+8],-1!==Ze&&k2(T,!1)?(se=l[1],Ee=qs(Ze),l=Js(Ze,l)):Ee=-1);-1!==Ee;){const At=l[1];if(Xs(G,Ee,At.data)){const Zt=o1(Ee,l,g,se,T,ft);if(Zt!==As)return Zt}Ze=l[Ee+8],-1!==Ze&&k2(T,l[1].data[Ee+8]===ft)&&Xs(G,Ee,l)?(se=At,Ee=qs(Ze),l=Js(Ze,l)):Ee=-1}}}return zn(l,g,T,R)}const As={};function zo(){return new Bo(br(),Fi())}function o1(s,l,g,T,R,G){const se=l[1],Ee=se.data[s+8],At=wa(Ee,se,g,null==T?Dn(Ee)&&s1:T!=se&&0!=(3&Ee.type),R&Ae.Host&&G===Ee);return null!==At?oo(l,se,At,Ee):As}function wa(s,l,g,T,R){const G=s.providerIndexes,se=l.data,Ee=1048575&G,Ze=s.directiveStart,At=G>>20,di=R?Ee+At:s.directiveEnd;for(let vi=T?Ee:Ee+At;vi=Ze&&Hi.type===g)return vi}if(R){const vi=se[Ze];if(vi&&_n(vi)&&vi.type===g)return Ze}return null}function oo(s,l,g,T){let R=s[g];const G=l.data;if(function bn(s){return s instanceof on}(R)){const se=R;se.resolving&&function ne(s,l){const g=l?`. Dependency path: ${l.join(" > ")} > ${s}`:"";throw new S(-200,`Circular dependency in DI detected for ${s}${g}`)}(Y(G[g]));const Ee=Be(se.canSeeViewProviders);se.resolving=!0;const Ze=se.injectImpl?xe(se.injectImpl):null;Ln(s,T,Ae.Default);try{R=s[g]=se.factory(void 0,G,s,T),l.firstCreatePass&&g>=T.directiveStart&&function Rt(s,l,g){const{ngOnChanges:T,ngOnInit:R,ngDoCheck:G}=l.type.prototype;if(T){const se=Pr(l);(g.preOrderHooks||(g.preOrderHooks=[])).push(s,se),(g.preOrderCheckHooks||(g.preOrderCheckHooks=[])).push(s,se)}R&&(g.preOrderHooks||(g.preOrderHooks=[])).push(0-s,R),G&&((g.preOrderHooks||(g.preOrderHooks=[])).push(s,G),(g.preOrderCheckHooks||(g.preOrderCheckHooks=[])).push(s,G))}(g,G[g],l)}finally{null!==Ze&&xe(Ze),Be(Ee),se.resolving=!1,Lr()}}return R}function Xs(s,l,g){return!!(g[l+(s>>5)]&1<{const l=s.prototype.constructor,g=l[Oe]||O1(l),T=Object.prototype;let R=Object.getPrototypeOf(s.prototype).constructor;for(;R&&R!==T;){const G=R[Oe]||O1(R);if(G&&G!==g)return G;R=Object.getPrototypeOf(R)}return G=>new G})}function O1(s){return L(s)?()=>{const l=O1(D(s));return l&&l()}:Kr(s)}function k1(s){return function Mn(s,l){if("class"===l)return s.classes;if("style"===l)return s.styles;const g=s.attrs;if(g){const T=g.length;let R=0;for(;R{const T=function P1(s){return function(...g){if(s){const T=s(...g);for(const R in T)this[R]=T[R]}}}(l);function R(...G){if(this instanceof R)return T.apply(this,G),this;const se=new R(...G);return Ee.annotation=se,Ee;function Ee(Ze,ft,At){const Zt=Ze.hasOwnProperty(lo)?Ze[lo]:Object.defineProperty(Ze,lo,{value:[]})[lo];for(;Zt.length<=At;)Zt.push(null);return(Zt[At]=Zt[At]||[]).push(se),Ze}}return g&&(R.prototype=Object.create(g.prototype)),R.prototype.ngMetadataName=s,R.annotationCls=R,R})}class Er{constructor(l,g){this._desc=l,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof g?this.__NG_ELEMENT_ID__=g:void 0!==g&&(this.\u0275prov=q({token:this,providedIn:g.providedIn||"root",factory:g.factory}))}toString(){return`InjectionToken ${this._desc}`}}const Ao=new Er("AnalyzeForEntryComponents");function ms(s,l){void 0===l&&(l=s);for(let g=0;gArray.isArray(g)?Ja(g,l):l(g))}function R2(s,l,g){l>=s.length?s.push(g):s.splice(l,0,g)}function l1(s,l){return l>=s.length-1?s.pop():s.splice(l,1)[0]}function Zo(s,l){const g=[];for(let T=0;T=0?s[1|T]=g:(T=~T,function t3(s,l,g,T){let R=s.length;if(R==l)s.push(g,T);else if(1===R)s.push(T,s[0]),s[0]=g;else{for(R--,s.push(s[R-1],s[R]);R>l;)s[R]=s[R-2],R--;s[l]=g,s[l+1]=T}}(s,T,l,g)),T}function uo(s,l){const g=Ds(s,l);if(g>=0)return s[1|g]}function Ds(s,l){return function V1(s,l,g){let T=0,R=s.length>>g;for(;R!==T;){const G=T+(R-T>>1),se=s[G<l?R=G:T=G+1}return~(R<({token:s})),-1),Ko=fo(To("Optional"),8),Bs=fo(To("Self"),2),Ps=fo(To("SkipSelf"),4);let ws,f1;function mo(s){var l;return(null===(l=function W2(){if(void 0===ws&&(ws=null,hi.trustedTypes))try{ws=hi.trustedTypes.createPolicy("angular",{createHTML:s=>s,createScript:s=>s,createScriptURL:s=>s})}catch(s){}return ws}())||void 0===l?void 0:l.createHTML(s))||s}function Fe(s){var l;return(null===(l=function K(){if(void 0===f1&&(f1=null,hi.trustedTypes))try{f1=hi.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:s=>s,createScript:s=>s,createScriptURL:s=>s})}catch(s){}return f1}())||void 0===l?void 0:l.createHTML(s))||s}class ot{constructor(l){this.changingThisBreaksApplicationSecurity=l}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see https://g.co/ng/security#xss)`}}class ri extends ot{getTypeName(){return"HTML"}}class en extends ot{getTypeName(){return"Style"}}class Kn extends ot{getTypeName(){return"Script"}}class Rn extends ot{getTypeName(){return"URL"}}class sr extends ot{getTypeName(){return"ResourceURL"}}function Wr(s){return s instanceof ot?s.changingThisBreaksApplicationSecurity:s}function Na(s,l){const g=rs(s);if(null!=g&&g!==l){if("ResourceURL"===g&&"URL"===l)return!0;throw new Error(`Required a safe ${l}, got a ${g} (see https://g.co/ng/security#xss)`)}return g===l}function rs(s){return s instanceof ot&&s.getTypeName()||null}function Cs(s){return new ri(s)}function or(s){return new en(s)}function as(s){return new Kn(s)}function Pn(s){return new Rn(s)}function hr(s){return new sr(s)}class e0{constructor(l){this.inertDocumentHelper=l}getInertBodyElement(l){l=""+l;try{const g=(new window.DOMParser).parseFromString(mo(l),"text/html").body;return null===g?this.inertDocumentHelper.getInertBodyElement(l):(g.removeChild(g.firstChild),g)}catch(g){return null}}}class t0{constructor(l){if(this.defaultDoc=l,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),null==this.inertDocument.body){const g=this.inertDocument.createElement("html");this.inertDocument.appendChild(g);const T=this.inertDocument.createElement("body");g.appendChild(T)}}getInertBodyElement(l){const g=this.inertDocument.createElement("template");if("content"in g)return g.innerHTML=mo(l),g;const T=this.inertDocument.createElement("body");return T.innerHTML=mo(l),this.defaultDoc.documentMode&&this.stripCustomNsAttrs(T),T}stripCustomNsAttrs(l){const g=l.attributes;for(let R=g.length-1;0p1(l.trim())).join(", ")),this.buf.push(" ",se,'="',o0(Ze),'"')}var s;return this.buf.push(">"),!0}endElement(l){const g=l.nodeName.toLowerCase();La.hasOwnProperty(g)&&!r0.hasOwnProperty(g)&&(this.buf.push(""))}chars(l){this.buf.push(o0(l))}checkClobberedElement(l,g){if(g&&(l.compareDocumentPosition(g)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${l.outerHTML}`);return g}}const L6=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,S6=/([^\#-~ |!])/g;function o0(s){return s.replace(/&/g,"&").replace(L6,function(l){return"&#"+(1024*(l.charCodeAt(0)-55296)+(l.charCodeAt(1)-56320)+65536)+";"}).replace(S6,function(l){return"&#"+l.charCodeAt(0)+";"}).replace(//g,">")}let $1;function u3(s,l){let g=null;try{$1=$1||function Ra(s){const l=new t0(s);return function rh(){try{return!!(new window.DOMParser).parseFromString(mo(""),"text/html")}catch(s){return!1}}()?new e0(l):l}(s);let T=l?String(l):"";g=$1.getInertBodyElement(T);let R=5,G=T;do{if(0===R)throw new Error("Failed to sanitize html because the input is unstable");R--,T=G,G=g.innerHTML,g=$1.getInertBodyElement(T)}while(T!==G);return mo((new s0).sanitizeChildren(e2(g)||g))}finally{if(g){const T=e2(g)||g;for(;T.firstChild;)T.removeChild(T.firstChild)}}}function e2(s){return"content"in s&&function E6(s){return s.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===s.nodeName}(s)?s.content:null}var ca=(()=>((ca=ca||{})[ca.NONE=0]="NONE",ca[ca.HTML=1]="HTML",ca[ca.STYLE=2]="STYLE",ca[ca.SCRIPT=3]="SCRIPT",ca[ca.URL=4]="URL",ca[ca.RESOURCE_URL=5]="RESOURCE_URL",ca))();function l0(s){const l=Xo();return l?Fe(l.sanitize(ca.HTML,s)||""):Na(s,"HTML")?Fe(Wr(s)):u3(ba(),Z(s))}function f3(s){const l=Xo();return l?l.sanitize(ca.URL,s)||"":Na(s,"URL")?Wr(s):p1(Z(s))}function Xo(){const s=Fi();return s&&s[12]}const p3="__ngContext__";function $a(s,l){s[p3]=l}function m3(s){const l=function n2(s){return s[p3]||null}(s);return l?Array.isArray(l)?l:l.lView:null}function X2(s){return s.ngOriginalError}function y3(s,...l){s.error(...l)}class $2{constructor(){this._console=console}handleError(l){const g=this._findOriginalError(l),T=function H6(s){return s&&s.ngErrorLogger||y3}(l);T(this._console,"ERROR",l),g&&T(this._console,"ORIGINAL ERROR",g)}_findOriginalError(l){let g=l&&X2(l);for(;g&&X2(g);)g=X2(g);return g||null}}const Z6=(()=>("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(hi))();function v0(s){return s.ownerDocument.defaultView}function to(s){return s instanceof Function?s():s}var Us=(()=>((Us=Us||{})[Us.Important=1]="Important",Us[Us.DashCase=2]="DashCase",Us))();function M3(s,l){return undefined(s,l)}function C1(s){const l=s[3];return fn(l)?l[3]:l}function w3(s){return K6(s[13])}function w0(s){return K6(s[4])}function K6(s){for(;null!==s&&!fn(s);)s=s[4];return s}function _1(s,l,g,T,R){if(null!=T){let G,se=!1;fn(T)?G=T:ki(T)&&(se=!0,T=T[0]);const Ee=Qe(T);0===s&&null!==g?null==R?a2(l,g,Ee):e1(l,g,Ee,R||null,!0):1===s&&null!==g?e1(l,g,Ee,R||null,!0):2===s?function D3(s,l,g){const T=t1(s,l);T&&function t5(s,l,g,T){Qn(s)?s.removeChild(l,g,T):l.removeChild(g)}(s,T,l,g)}(l,Ee,se):3===s&&l.destroyNode(Ee),null!=G&&function k0(s,l,g,T,R){const G=g[7];G!==Qe(g)&&_1(l,s,T,G,R);for(let Ee=10;Ee0&&(s[g-1][4]=T[4]);const G=l1(s,10+l);!function il(s,l){o2(s,l,l[11],2,null,null),l[0]=null,l[6]=null}(T[1],T);const se=G[19];null!==se&&se.detachView(G[1]),T[3]=null,T[4]=null,T[2]&=-129}return T}function E0(s,l){if(!(256&l[2])){const g=l[11];Qn(g)&&g.destroyNode&&o2(s,l,g,3,null,null),function X6(s){let l=s[13];if(!l)return E3(s[1],s);for(;l;){let g=null;if(ki(l))g=l[13];else{const T=l[10];T&&(g=T)}if(!g){for(;l&&!l[4]&&l!==s;)ki(l)&&E3(l[1],l),l=l[3];null===l&&(l=s),ki(l)&&E3(l[1],l),g=l&&l[4]}l=g}}(l)}}function E3(s,l){if(!(256&l[2])){l[2]&=-129,l[2]|=256,function T0(s,l){let g;if(null!=s&&null!=(g=s.destroyHooks))for(let T=0;T=0?T[R=ft]():T[R=-ft].unsubscribe(),G+=2}else{const se=T[R=g[G+1]];g[G].call(se)}if(null!==T){for(let G=R+1;GG?"":R[Zt+1].toLowerCase();const vi=8&T?di:null;if(vi&&-1!==P0(vi,ft,0)||2&T&&ft!==di){if(Rs(T))return!1;se=!0}}}}else{if(!se&&!Rs(T)&&!Rs(Ze))return!1;if(se&&Rs(Ze))continue;se=!1,T=Ze|1&T}}return Rs(T)||se}function Rs(s){return 0==(1&s)}function n5(s,l,g,T){if(null===l)return-1;let R=0;if(T||!g){let G=!1;for(;R-1)for(g++;g0?'="'+Ee+'"':"")+"]"}else 8&T?R+="."+se:4&T&&(R+=" "+se);else""!==R&&!Rs(se)&&(l+=dl(G,R),R=""),T=se,G=G||!Rs(T);g++}return""!==R&&(l+=dl(G,R)),l}const Wn={};function F0(s){V0(Gn(),Fi(),Cr()+s,!1)}function V0(s,l,g,T){if(!T)if(3==(3&l[2])){const G=s.preOrderCheckHooks;null!==G&&Ci(l,G,g)}else{const G=s.preOrderHooks;null!==G&&ti(l,G,0,g)}Zr(g)}function c2(s,l){return s<<17|l<<2}function Hs(s){return s>>17&32767}function R3(s){return 2|s}function io(s){return(131068&s)>>2}function H3(s,l){return-131069&s|l<<2}function ul(s){return 1|s}function v5(s,l){const g=s.contentQueries;if(null!==g)for(let T=0;T20&&V0(s,l,20,!1),g(T,R)}finally{Zr(G)}}function J0(s,l,g){if(Bn(l)){const R=l.directiveEnd;for(let G=l.directiveStart;G0;){const g=s[--l];if("number"==typeof g&&g<0)return g}return 0})(Ee)!=Ze&&Ee.push(Ze),Ee.push(T,R,se)}}function A5(s,l){null!==s.hostBindings&&s.hostBindings(1,l)}function I5(s,l){l.flags|=2,(s.components||(s.components=[])).push(l.index)}function Lh(s,l,g){if(g){if(l.exportAs)for(let T=0;T0&&xl(g)}}function xl(s){for(let T=w3(s);null!==T;T=w0(T))for(let R=10;R0&&xl(G)}const g=s[1].components;if(null!==g)for(let T=0;T0&&xl(R)}}function R5(s,l){const g=oi(l,s),T=g[1];(function cc(s,l){for(let g=l.length;gPromise.resolve(null))();function uc(s){return s[7]||(s[7]=[])}function hc(s){return s.cleanup||(s.cleanup=[])}function fc(s,l,g){return(null===s||_n(s))&&(g=function kt(s){for(;Array.isArray(s);){if("object"==typeof s[1])return s;s=s[0]}return null}(g[l.index])),g[11]}function z5(s,l){const g=s[9],T=g?g.get($2,null):null;T&&T.handleError(l)}function pc(s,l,g,T,R){for(let G=0;Gthis.processProvider(Ee,l,g)),Ja([l],Ee=>this.processInjectorType(Ee,[],G)),this.records.set(e4,d2(void 0,this));const se=this.records.get(t4);this.scope=null!=se?se.value:null,this.source=R||("object"==typeof l?null:N(l))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(l=>l.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(l,g=eo,T=Ae.Default){this.assertNotDestroyed();const R=G1(this),G=xe(void 0);try{if(!(T&Ae.SkipSelf)){let Ee=this.records.get(l);if(void 0===Ee){const Ze=function Ph(s){return"function"==typeof s||"object"==typeof s&&s instanceof Er}(l)&&Ne(l);Ee=Ze&&this.injectableDefInScope(Ze)?d2(r4(l),Sl):null,this.records.set(l,Ee)}if(null!=Ee)return this.hydrate(l,Ee)}return(T&Ae.Self?n4():this.parent).get(l,g=T&Ae.Optional&&g===eo?null:g)}catch(se){if("NullInjectorError"===se.name){if((se[ho]=se[ho]||[]).unshift(N(l)),R)throw se;return function a3(s,l,g,T){const R=s[ho];throw l[Yo]&&R.unshift(l[Yo]),s.message=function B2(s,l,g,T=null){s=s&&"\n"===s.charAt(0)&&"\u0275"==s.charAt(1)?s.substr(2):s;let R=N(l);if(Array.isArray(l))R=l.map(N).join(" -> ");else if("object"==typeof l){let G=[];for(let se in l)if(l.hasOwnProperty(se)){let Ee=l[se];G.push(se+":"+("string"==typeof Ee?JSON.stringify(Ee):N(Ee)))}R=`{${G.join(", ")}}`}return`${g}${T?"("+T+")":""}[${R}]: ${s.replace(U1,"\n ")}`}("\n"+s.message,R,g,T),s.ngTokenPath=R,s[ho]=null,s}(se,l,"R3InjectorError",this.source)}throw se}finally{xe(G),G1(R)}}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(l=>this.get(l))}toString(){const l=[];return this.records.forEach((T,R)=>l.push(N(R))),`R3Injector[${l.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new S(205,!1)}processInjectorType(l,g,T){if(!(l=D(l)))return!1;let R=ve(l);const G=null==R&&l.ngModule||void 0,se=void 0===G?l:G,Ee=-1!==T.indexOf(se);if(void 0!==G&&(R=ve(G)),null==R)return!1;if(null!=R.imports&&!Ee){let At;T.push(se);try{Ja(R.imports,Zt=>{this.processInjectorType(Zt,g,T)&&(void 0===At&&(At=[]),At.push(Zt))})}finally{}if(void 0!==At)for(let Zt=0;Ztthis.processProvider(Hi,di,vi||et))}}this.injectorDefTypes.add(se);const Ze=Kr(se)||(()=>new se);this.records.set(se,d2(Ze,Sl));const ft=R.providers;if(null!=ft&&!Ee){const At=l;Ja(ft,Zt=>this.processProvider(Zt,At,ft))}return void 0!==G&&void 0!==l.providers}processProvider(l,g,T){let R=u2(l=D(l))?l:D(l&&l.provide);const G=function j5(s,l,g){return K5(s)?d2(void 0,s.useValue):d2(mc(s),Sl)}(l);if(u2(l)||!0!==l.multi)this.records.get(R);else{let se=this.records.get(R);se||(se=d2(void 0,Sl,!0),se.factory=()=>V2(se.multi),this.records.set(R,se)),R=l,se.multi.push(l)}this.records.set(R,G)}hydrate(l,g){return g.value===Sl&&(g.value=Z5,g.value=g.factory()),"object"==typeof g.value&&g.value&&function kh(s){return null!==s&&"object"==typeof s&&"function"==typeof s.ngOnDestroy}(g.value)&&this.onDestroy.add(g.value),g.value}injectableDefInScope(l){if(!l.providedIn)return!1;const g=D(l.providedIn);return"string"==typeof g?"any"===g||g===this.scope:this.injectorDefTypes.has(g)}}function r4(s){const l=Ne(s),g=null!==l?l.factory:Kr(s);if(null!==g)return g;if(s instanceof Er)throw new S(204,!1);if(s instanceof Function)return function Dh(s){const l=s.length;if(l>0)throw Zo(l,"?"),new S(204,!1);const g=function Q(s){const l=s&&(s[V]||s[dt]);if(l){const g=function Ue(s){if(s.hasOwnProperty("name"))return s.name;const l=(""+s).match(/^function\s*([^\s(]+)/);return null===l?"":l[1]}(s);return console.warn(`DEPRECATED: DI is instantiating a token "${g}" that inherits its @Injectable decorator but does not provide one itself.\nThis will become an error in a future version of Angular. Please add @Injectable() to the "${g}" class.`),l}return null}(s);return null!==g?()=>g.factory(s):()=>new s}(s);throw new S(204,!1)}function mc(s,l,g){let T;if(u2(s)){const R=D(s);return Kr(R)||r4(R)}if(K5(s))T=()=>D(s.useValue);else if(function gc(s){return!(!s||!s.useFactory)}(s))T=()=>s.useFactory(...V2(s.deps||[]));else if(function Ih(s){return!(!s||!s.useExisting)}(s))T=()=>Pa(D(s.useExisting));else{const R=D(s&&(s.useClass||s.provide));if(!function Oh(s){return!!s.deps}(s))return Kr(R)||r4(R);T=()=>new R(...V2(s.deps))}return T}function d2(s,l,g=!1){return{factory:s,value:l,multi:g?[]:void 0}}function K5(s){return null!==s&&"object"==typeof s&&r3 in s}function u2(s){return"function"==typeof s}let vo=(()=>{class s{static create(g,T){var R;if(Array.isArray(g))return W5({name:""},T,g,"");{const G=null!==(R=g.name)&&void 0!==R?R:"";return W5({name:G},g.parent,g.providers,G)}}}return s.THROW_IF_NOT_FOUND=eo,s.NULL=new G5,s.\u0275prov=q({token:s,providedIn:"any",factory:()=>Pa(e4)}),s.__NG_ELEMENT_ID__=-1,s})();function od(s,l){Jt(m3(s)[1],br())}function a4(s){let l=function ld(s){return Object.getPrototypeOf(s.prototype).constructor}(s.type),g=!0;const T=[s];for(;l;){let R;if(_n(s))R=l.\u0275cmp||l.\u0275dir;else{if(l.\u0275cmp)throw new S(903,"");R=l.\u0275dir}if(R){if(g){T.push(R);const se=s;se.inputs=wc(s.inputs),se.declaredInputs=wc(s.declaredInputs),se.outputs=wc(s.outputs);const Ee=R.hostBindings;Ee&&Uh(s,Ee);const Ze=R.viewQuery,ft=R.contentQueries;if(Ze&&zh(s,Ze),ft&&Bh(s,ft),d(s.inputs,R.inputs),d(s.declaredInputs,R.declaredInputs),d(s.outputs,R.outputs),_n(R)&&R.data.animation){const At=s.data;At.animation=(At.animation||[]).concat(R.data.animation)}}const G=R.features;if(G)for(let se=0;se=0;T--){const R=s[T];R.hostVars=l+=R.hostVars,R.hostAttrs=fs(R.hostAttrs,g=fs(g,R.hostAttrs))}}(T)}function wc(s){return s===Ct?{}:s===et?[]:s}function zh(s,l){const g=s.viewQuery;s.viewQuery=g?(T,R)=>{l(T,R),g(T,R)}:l}function Bh(s,l){const g=s.contentQueries;s.contentQueries=g?(T,R,G)=>{l(T,R,G),g(T,R,G)}:l}function Uh(s,l){const g=s.hostBindings;s.hostBindings=g?(T,R)=>{l(T,R),g(T,R)}:l}let El=null;function M1(){if(!El){const s=hi.Symbol;if(s&&s.iterator)El=s.iterator;else{const l=Object.getOwnPropertyNames(Map.prototype);for(let g=0;gEe(Qe(lr[T.index])):T.index;if(Qn(g)){let lr=null;if(!Ee&&Ze&&(lr=function Hc(s,l,g,T){const R=s.cleanup;if(null!=R)for(let G=0;GZe?Ee[Ze]:null}"string"==typeof se&&(G+=2)}return null}(s,l,R,T.index)),null!==lr)(lr.__ngLastListenerFn__||lr).__ngNextListenerFn__=G,lr.__ngLastListenerFn__=G,vi=!1;else{G=E4(T,l,Zt,G,!1);const Ar=g.listen(Cn,R,G);di.push(G,Ar),At&&At.push(R,An,Vi,Vi+1)}}else G=E4(T,l,Zt,G,!0),Cn.addEventListener(R,G,se),di.push(G),At&&At.push(R,An,Vi,se)}else G=E4(T,l,Zt,G,!1);const Hi=T.outputs;let Qi;if(vi&&null!==Hi&&(Qi=Hi[R])){const an=Qi.length;if(an)for(let Cn=0;Cn0;)l=l[15],s--;return l}(s,He.lFrame.contextLView))[8]}(s)}function wd(s,l){let g=null;const T=function a5(s){const l=s.attrs;if(null!=l){const g=l.indexOf(5);if(0==(1&g))return l[g+1]}return null}(s);for(let R=0;R=0}const Ha={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function T4(s){return s.substring(Ha.key,Ha.keyEnd)}function Od(s,l){const g=Ha.textEnd;return g===l?-1:(l=Ha.keyEnd=function Kh(s,l,g){for(;l32;)l++;return l}(s,Ha.key=l,g),E2(s,l,g))}function E2(s,l,g){for(;l=0;g=Od(l,g))ka(s,T4(l),!0)}function ao(s,l,g,T){const R=Fi(),G=Gn(),se=fe(2);G.firstUpdatePass&&jc(G,s,se,T),l!==Wn&&os(R,se,l)&&Kc(G,G.data[Cr()],R,R[11],s,R[se+1]=function Ud(s,l){return null==s||("string"==typeof l?s+=l:"object"==typeof s&&(s=N(Wr(s)))),s}(l,g),T,se)}function so(s,l,g,T){const R=Gn(),G=fe(2);R.firstUpdatePass&&jc(R,null,G,T);const se=Fi();if(g!==Wn&&os(se,G,g)){const Ee=R.data[Cr()];if(Gd(Ee,T)&&!Fd(R,G)){let Ze=T?Ee.classesWithoutHost:Ee.stylesWithoutHost;null!==Ze&&(g=h(Ze,g||"")),Fl(R,Ee,se,g,T)}else!function zd(s,l,g,T,R,G,se,Ee){R===Wn&&(R=et);let Ze=0,ft=0,At=0=s.expandoStartIndex}function jc(s,l,g,T){const R=s.data;if(null===R[g+1]){const G=R[Cr()],se=Fd(s,g);Gd(G,T)&&null===l&&!se&&(l=!1),l=function Jh(s,l,g,T){const R=_i(s);let G=T?l.residualClasses:l.residualStyles;if(null===R)0===(T?l.classBindings:l.styleBindings)&&(g=Ul(g=O4(null,s,l,g,T),l.attrs,T),G=null);else{const se=l.directiveStylingLast;if(-1===se||s[se]!==R)if(g=O4(R,s,l,g,T),null===G){let Ze=function Xh(s,l,g){const T=g?l.classBindings:l.styleBindings;if(0!==io(T))return s[Hs(T)]}(s,l,T);void 0!==Ze&&Array.isArray(Ze)&&(Ze=O4(null,s,l,Ze[1],T),Ze=Ul(Ze,l.attrs,T),function Vd(s,l,g,T){s[Hs(g?l.classBindings:l.styleBindings)]=T}(s,l,T,Ze))}else G=function $h(s,l,g){let T;const R=l.directiveEnd;for(let G=1+l.directiveStylingLast;G0)&&(ft=!0)}else At=g;if(R)if(0!==Ze){const di=Hs(s[Ee+1]);s[T+1]=c2(di,Ee),0!==di&&(s[di+1]=H3(s[di+1],T)),s[Ee+1]=function B0(s,l){return 131071&s|l<<17}(s[Ee+1],T)}else s[T+1]=c2(Ee,0),0!==Ee&&(s[Ee+1]=H3(s[Ee+1],T)),Ee=T;else s[T+1]=c2(Ze,0),0===Ee?Ee=T:s[Ze+1]=H3(s[Ze+1],T),Ze=T;ft&&(s[T+1]=R3(s[T+1])),Uc(s,At,T,!0),Uc(s,At,T,!1),function Id(s,l,g,T,R){const G=R?s.residualClasses:s.residualStyles;null!=G&&"string"==typeof l&&Ds(G,l)>=0&&(g[T+1]=ul(g[T+1]))}(l,At,s,T,G),se=c2(Ee,Ze),G?l.classBindings=se:l.styleBindings=se}(R,G,l,g,se,T)}}function O4(s,l,g,T,R){let G=null;const se=g.directiveEnd;let Ee=g.directiveStylingLast;for(-1===Ee?Ee=g.directiveStart:Ee++;Ee0;){const Ze=s[R],ft=Array.isArray(Ze),At=ft?Ze[1]:Ze,Zt=null===At;let di=g[R+1];di===Wn&&(di=Zt?et:void 0);let vi=Zt?uo(di,T):At===T?di:void 0;if(ft&&!k4(vi)&&(vi=uo(Ze,T)),k4(vi)&&(Ee=vi,se))return Ee;const Hi=s[R+1];R=se?Hs(Hi):io(Hi)}if(null!==l){let Ze=G?l.residualClasses:l.residualStyles;null!=Ze&&(Ee=uo(Ze,T))}return Ee}function k4(s){return void 0!==s}function Gd(s,l){return 0!=(s.flags&(l?16:32))}function Qc(s,l=""){const g=Fi(),T=Gn(),R=s+20,G=T.firstCreatePass?x1(T,R,1,l,null):T.data[R],se=g[R]=function tl(s,l){return Qn(s)?s.createText(l):s.createTextNode(l)}(g[11],l);al(T,g,se,G),pa(G,!1)}function qc(s){return P4("",s,""),qc}function P4(s,l,g){const T=Fi(),R=L1(T,s,l,g);return R!==Wn&&_o(T,Cr(),R),P4}function N4(s,l,g,T,R){const G=Fi(),se=function f2(s,l,g,T,R,G){const Ee=w1(s,Ga(),g,R);return fe(2),Ee?l+Z(g)+T+Z(R)+G:Wn}(G,s,l,g,T,R);return se!==Wn&&_o(G,Cr(),se),N4}function Jc(s,l,g,T,R,G,se){const Ee=Fi(),Ze=function p2(s,l,g,T,R,G,se,Ee){const ft=Dl(s,Ga(),g,R,se);return fe(3),ft?l+Z(g)+T+Z(R)+G+Z(se)+Ee:Wn}(Ee,s,l,g,T,R,G,se);return Ze!==Wn&&_o(Ee,Cr(),Ze),Jc}function Xc(s,l,g,T,R,G,se,Ee,Ze){const ft=Fi(),At=S1(ft,s,l,g,T,R,G,se,Ee,Ze);return At!==Wn&&_o(ft,Cr(),At),Xc}function Yd(s,l,g){so(ka,ro,L1(Fi(),s,l,g),!0)}function In(s,l,g){const T=Fi();return os(T,ae(),l)&&_s(Gn(),Zn(),T,s,l,T[11],g,!0),In}function wn(s,l,g){const T=Fi();if(os(T,ae(),l)){const G=Gn(),se=Zn();_s(G,se,T,s,l,fc(_i(G.data),se,T),g,!0)}return wn}const yr=void 0;var Fa=["en",[["a","p"],["AM","PM"],yr],[["AM","PM"],yr,yr],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],yr,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],yr,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",yr,"{1} 'at' {0}",yr],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function Tr(s){const g=Math.floor(Math.abs(s)),T=s.toString().replace(/^[^.]*\.?/,"").length;return 1===g&&0===T?1:5}];let Ir={};function Ea(s){const l=function cs(s){return s.toLowerCase().replace(/_/g,"-")}(s);let g=ls(l);if(g)return g;const T=l.split("-")[0];if(g=ls(T),g)return g;if("en"===T)return Fa;throw new Error(`Missing locale data for the locale "${s}".`)}function Or(s){return Ea(s)[ln.PluralCase]}function ls(s){return s in Ir||(Ir[s]=hi.ng&&hi.ng.common&&hi.ng.common.locales&&hi.ng.common.locales[s]),Ir[s]}var ln=(()=>((ln=ln||{})[ln.LocaleId=0]="LocaleId",ln[ln.DayPeriodsFormat=1]="DayPeriodsFormat",ln[ln.DayPeriodsStandalone=2]="DayPeriodsStandalone",ln[ln.DaysFormat=3]="DaysFormat",ln[ln.DaysStandalone=4]="DaysStandalone",ln[ln.MonthsFormat=5]="MonthsFormat",ln[ln.MonthsStandalone=6]="MonthsStandalone",ln[ln.Eras=7]="Eras",ln[ln.FirstDayOfWeek=8]="FirstDayOfWeek",ln[ln.WeekendRange=9]="WeekendRange",ln[ln.DateFormat=10]="DateFormat",ln[ln.TimeFormat=11]="TimeFormat",ln[ln.DateTimeFormat=12]="DateTimeFormat",ln[ln.NumberSymbols=13]="NumberSymbols",ln[ln.NumberFormats=14]="NumberFormats",ln[ln.CurrencyCode=15]="CurrencyCode",ln[ln.CurrencySymbol=16]="CurrencySymbol",ln[ln.CurrencyName=17]="CurrencyName",ln[ln.Currencies=18]="Currencies",ln[ln.Directionality=19]="Directionality",ln[ln.PluralCase=20]="PluralCase",ln[ln.ExtraData=21]="ExtraData",ln))();const Xr="en-US";let ja=Xr;function eu(s,l,g,T,R){if(s=D(s),Array.isArray(s))for(let G=0;G>20;if(u2(s)||!s.multi){const vi=new on(Ze,R,T1),Hi=iu(Ee,l,R?At:At+di,Zt);-1===Hi?(Vn($t(ft,se),G,Ee),tu(G,s,l.length),l.push(Ee),ft.directiveStart++,ft.directiveEnd++,R&&(ft.providerIndexes+=1048576),g.push(vi),se.push(vi)):(g[Hi]=vi,se[Hi]=vi)}else{const vi=iu(Ee,l,At+di,Zt),Hi=iu(Ee,l,At,At+di),Qi=vi>=0&&g[vi],an=Hi>=0&&g[Hi];if(R&&!an||!R&&!Qi){Vn($t(ft,se),G,Ee);const Cn=function Q7(s,l,g,T,R){const G=new on(s,g,T1);return G.multi=[],G.index=l,G.componentProviders=0,s6(G,R,T&&!g),G}(R?K7:o6,g.length,R,T,Ze);!R&&an&&(g[Hi].providerFactory=Cn),tu(G,s,l.length,0),l.push(Ee),ft.directiveStart++,ft.directiveEnd++,R&&(ft.providerIndexes+=1048576),g.push(Cn),se.push(Cn)}else tu(G,s,vi>-1?vi:Hi,s6(g[R?Hi:vi],Ze,!R&&T));!R&&T&&an&&g[Hi].componentProviders++}}}function tu(s,l,g,T){const R=u2(l),G=function Q5(s){return!!s.useClass}(l);if(R||G){const Ze=(G?D(l.useClass):l).prototype.ngOnDestroy;if(Ze){const ft=s.destroyHooks||(s.destroyHooks=[]);if(!R&&l.multi){const At=ft.indexOf(g);-1===At?ft.push(g,[T,Ze]):ft[At+1].push(T,Ze)}else ft.push(g,Ze)}}}function s6(s,l,g){return g&&s.componentProviders++,s.multi.push(l)-1}function iu(s,l,g,T){for(let R=g;R{g.providersResolver=(T,R)=>function x8(s,l,g){const T=Gn();if(T.firstCreatePass){const R=_n(s);eu(g,T.data,T.blueprint,R,!0),eu(l,T.data,T.blueprint,R,!1)}}(T,R?R(s):s,l)}}class w8{}class q7{resolveComponentFactory(l){throw function L8(s){const l=Error(`No component factory found for ${N(s)}. Did you add it to @NgModule.entryComponents?`);return l.ngComponent=s,l}(l)}}let l6=(()=>{class s{}return s.NULL=new q7,s})();function T8(){return Yl(br(),Fi())}function Yl(s,l){return new B4(Oi(s,l))}let B4=(()=>{class s{constructor(g){this.nativeElement=g}}return s.__NG_ELEMENT_ID__=T8,s})();function J7(s){return s instanceof B4?s.nativeElement:s}class A8{}let D8=(()=>{class s{}return s.__NG_ELEMENT_ID__=()=>function I8(){const s=Fi(),g=oi(br().index,s);return function $7(s){return s[11]}(ki(g)?g:s)}(),s})(),ep=(()=>{class s{}return s.\u0275prov=q({token:s,providedIn:"root",factory:()=>null}),s})();class O8{constructor(l){this.full=l,this.major=l.split(".")[0],this.minor=l.split(".")[1],this.patch=l.split(".").slice(2).join(".")}}const k8=new O8("13.3.11"),ru={};function c6(s,l,g,T,R=!1){for(;null!==g;){const G=l[g.index];if(null!==G&&T.push(Qe(G)),fn(G))for(let Ee=10;Ee-1&&($o(l,T),l1(g,T))}this._attachedToViewContainer=!1}E0(this._lView[1],this._lView)}onDestroy(l){ic(this._lView[1],this._lView,null,l)}markForCheck(){Ml(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){!function X3(s,l,g){const T=l[10];T.begin&&T.begin();try{n1(s,l,s.template,g)}catch(R){throw z5(l,R),R}finally{T.end&&T.end()}}(this._lView[1],this._lView,this.context)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new S(902,"");this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null,function J6(s,l){o2(s,l,l[11],2,null,null)}(this._lView[1],this._lView)}attachToAppRef(l){if(this._attachedToViewContainer)throw new S(902,"");this._appRef=l}}class tp extends U4{constructor(l){super(l),this._view=l}detectChanges(){$3(this._view)}checkNoChanges(){}get context(){return null}}class P8 extends l6{constructor(l){super(),this.ngModule=l}resolveComponentFactory(l){const g=st(l);return new au(g,this.ngModule)}}function N8(s){const l=[];for(let g in s)s.hasOwnProperty(g)&&l.push({propName:s[g],templateName:g});return l}class au extends w8{constructor(l,g){super(),this.componentDef=l,this.ngModule=g,this.componentType=l.type,this.selector=function l5(s){return s.map(o5).join(",")}(l.selectors),this.ngContentSelectors=l.ngContentSelectors?l.ngContentSelectors:[],this.isBoundToModule=!!g}get inputs(){return N8(this.componentDef.inputs)}get outputs(){return N8(this.componentDef.outputs)}create(l,g,T,R){const G=(R=R||this.ngModule)?function H8(s,l){return{get:(g,T,R)=>{const G=s.get(g,ru,R);return G!==ru||T===ru?G:l.get(g,T,R)}}}(l,R.injector):l,se=G.get(A8,Je),Ee=G.get(ep,null),Ze=se.createRenderer(null,this.componentDef),ft=this.componentDef.selectors[0][0]||"div",At=T?function tc(s,l,g){if(Qn(s))return s.selectRootElement(l,g===ht.ShadowDom);let T="string"==typeof l?s.querySelector(l):l;return T.textContent="",T}(Ze,T,this.componentDef.encapsulation):Io(se.createRenderer(null,this.componentDef),ft,function R8(s){const l=s.toLowerCase();return"svg"===l?"svg":"math"===l?"math":null}(ft)),Zt=this.componentDef.onPush?576:528,di=function Mc(s,l){return{components:[],scheduler:s||Z6,clean:V5,playerHandler:l||null,flags:0}}(),vi=vl(0,null,null,1,0,null,null,null,null,null),Hi=_l(null,vi,di,Zt,null,null,se,Ze,Ee,G);let Qi,an;Nn(Hi);try{const Cn=function bc(s,l,g,T,R,G){const se=g[1];g[20]=s;const Ze=x1(se,20,2,"#host",null),ft=Ze.mergedAttrs=l.hostAttrs;null!==ft&&(Ll(Ze,ft,!0),null!==s&&(Hr(R,s,ft),null!==Ze.classes&&O3(R,s,Ze.classes),null!==Ze.styles&&I3(R,s,Ze.styles)));const At=T.createRenderer(s,l),Zt=_l(g,X0(l),null,l.onPush?64:16,g[20],Ze,T,At,G||null,null);return se.firstCreatePass&&(Vn($t(Ze,g),se,l.type),I5(se,Ze),q3(Ze,g.length,1)),bl(g,Zt),g[20]=Zt}(At,this.componentDef,Hi,se,Ze);if(At)if(T)Hr(Ze,At,["ng-version",k8.full]);else{const{attrs:Vi,classes:An}=function H0(s){const l=[],g=[];let T=1,R=2;for(;T0&&O3(Ze,At,An.join(" "))}if(an=qn(vi,20),void 0!==g){const Vi=an.projection=[];for(let An=0;AnZe(se,l)),l.contentQueries){const Ze=br();l.contentQueries(1,se,Ze.directiveStart)}const Ee=br();return!G.firstCreatePass||null===l.hostBindings&&null===l.hostAttrs||(Zr(Ee.index),T5(g[1],Ee,0,Ee.directiveStart,Ee.directiveEnd,l),A5(l,se)),se}(Cn,this.componentDef,Hi,di,[od]),Gs(vi,Hi,null)}finally{gr()}return new rp(this.componentType,Qi,Yl(an,Hi),Hi,an)}}class rp extends class M8{}{constructor(l,g,T,R,G){super(),this.location=T,this._rootLView=R,this._tNode=G,this.instance=g,this.hostView=this.changeDetectorRef=new tp(R),this.componentType=l}get injector(){return new Bo(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(l){this.hostView.onDestroy(l)}}class jl{}class su{}const Kl=new Map;class lu extends jl{constructor(l,g){super(),this._parent=g,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new P8(this);const T=qt(l);this._bootstrapComponents=to(T.bootstrap),this._r3Injector=Y5(l,g,[{provide:jl,useValue:this},{provide:l6,useValue:this.componentFactoryResolver}],N(l)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(l)}get(l,g=vo.THROW_IF_NOT_FOUND,T=Ae.Default){return l===vo||l===jl||l===e4?this:this._r3Injector.get(l,g,T)}destroy(){const l=this._r3Injector;!l.destroyed&&l.destroy(),this.destroyCbs.forEach(g=>g()),this.destroyCbs=null}onDestroy(l){this.destroyCbs.push(l)}}class cu extends su{constructor(l){super(),this.moduleType=l,null!==qt(l)&&function sp(s){const l=new Set;!function g(T){const R=qt(T,!0),G=R.id;null!==G&&(function V8(s,l,g){if(l&&l!==g)throw new Error(`Duplicate module registered for ${s} - ${N(l)} vs ${N(l.name)}`)}(G,Kl.get(G),T),Kl.set(G,T));const se=to(R.imports);for(const Ee of se)l.has(Ee)||(l.add(Ee),g(Ee))}(s)}(l)}create(l){return new lu(this.moduleType,l)}}function z8(s,l,g){const T=Gr()+s,R=Fi();return R[T]===Wn?yo(R,T,g?l.call(g):l()):function Al(s,l){return s[l]}(R,T)}function B8(s,l,g,T){return du(Fi(),Gr(),s,l,g,T)}function U8(s,l,g,T,R){return Y8(Fi(),Gr(),s,l,g,T,R)}function G8(s,l,g,T,R,G){return uu(Fi(),Gr(),s,l,g,T,R,G)}function G4(s,l){const g=s[l];return g===Wn?void 0:g}function du(s,l,g,T,R,G){const se=l+g;return os(s,se,R)?yo(s,se+1,G?T.call(G,R):T(R)):G4(s,se+1)}function Y8(s,l,g,T,R,G,se){const Ee=l+g;return w1(s,Ee,R,G)?yo(s,Ee+2,se?T.call(se,R,G):T(R,G)):G4(s,Ee+2)}function uu(s,l,g,T,R,G,se,Ee){const Ze=l+g;return Dl(s,Ze,R,G,se)?yo(s,Ze+3,Ee?T.call(Ee,R,G,se):T(R,G,se)):G4(s,Ze+3)}function K8(s,l){const g=Gn();let T;const R=s+20;g.firstCreatePass?(T=function up(s,l){if(l)for(let g=l.length-1;g>=0;g--){const T=l[g];if(s===T.name)return T}}(l,g.pipeRegistry),g.data[R]=T,T.onDestroy&&(g.destroyHooks||(g.destroyHooks=[])).push(R,T.onDestroy)):T=g.data[R];const G=T.factory||(T.factory=Kr(T.type)),se=xe(T1);try{const Ee=Be(!1),Ze=G();return Be(Ee),function d4(s,l,g,T){g>=s.data.length&&(s.data[g]=null,s.blueprint[g]=null),l[g]=T}(g,Fi(),R,Ze),Ze}finally{xe(se)}}function Q8(s,l,g){const T=s+20,R=Fi(),G=Ot(R,T);return Ql(R,T)?du(R,Gr(),l,G.transform,g,G):G.transform(g)}function q8(s,l,g,T){const R=s+20,G=Fi(),se=Ot(G,R);return Ql(G,R)?Y8(G,Gr(),l,se.transform,g,T,se):se.transform(g,T)}function fu(s,l,g,T,R){const G=s+20,se=Fi(),Ee=Ot(se,G);return Ql(se,G)?uu(se,Gr(),l,Ee.transform,g,T,R,Ee):Ee.transform(g,T,R)}function Ql(s,l){return s[1].data[l].pure}function pu(s){return l=>{setTimeout(s,void 0,l)}}const Vo=class pp extends t.x{constructor(l=!1){super(),this.__isAsync=l}emit(l){super.next(l)}subscribe(l,g,T){var R,G,se;let Ee=l,Ze=g||(()=>null),ft=T;if(l&&"object"==typeof l){const Zt=l;Ee=null===(R=Zt.next)||void 0===R?void 0:R.bind(Zt),Ze=null===(G=Zt.error)||void 0===G?void 0:G.bind(Zt),ft=null===(se=Zt.complete)||void 0===se?void 0:se.bind(Zt)}this.__isAsync&&(Ze=pu(Ze),Ee&&(Ee=pu(Ee)),ft&&(ft=pu(ft)));const At=super.subscribe({next:Ee,error:Ze,complete:ft});return l instanceof e.w0&&l.add(At),At}};function mp(){return this._results[M1()]()}class d6{constructor(l=!1){this._emitDistinctChangesOnly=l,this.dirty=!0,this._results=[],this._changesDetected=!1,this._changes=null,this.length=0,this.first=void 0,this.last=void 0;const g=M1(),T=d6.prototype;T[g]||(T[g]=mp)}get changes(){return this._changes||(this._changes=new Vo)}get(l){return this._results[l]}map(l){return this._results.map(l)}filter(l){return this._results.filter(l)}find(l){return this._results.find(l)}reduce(l,g){return this._results.reduce(l,g)}forEach(l){this._results.forEach(l)}some(l){return this._results.some(l)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(l,g){const T=this;T.dirty=!1;const R=ms(l);(this._changesDetected=!function N2(s,l,g){if(s.length!==l.length)return!1;for(let T=0;T{class s{}return s.__NG_ELEMENT_ID__=_p,s})();const gp=ql,Cp=class extends gp{constructor(l,g,T){super(),this._declarationLView=l,this._declarationTContainer=g,this.elementRef=T}createEmbeddedView(l){const g=this._declarationTContainer.tViews,T=_l(this._declarationLView,g,l,16,null,g.declTNode,null,null,null,null);T[17]=this._declarationLView[this._declarationTContainer.index];const G=this._declarationLView[19];return null!==G&&(T[19]=G.createEmbeddedView(g)),Gs(g,T,l),new U4(T)}};function _p(){return u6(br(),Fi())}function u6(s,l){return 4&s.type?new Cp(l,s,Yl(s,l)):null}let Z4=(()=>{class s{}return s.__NG_ELEMENT_ID__=vp,s})();function vp(){return ef(br(),Fi())}const J8=Z4,X8=class extends J8{constructor(l,g,T){super(),this._lContainer=l,this._hostTNode=g,this._hostLView=T}get element(){return Yl(this._hostTNode,this._hostLView)}get injector(){return new Bo(this._hostTNode,this._hostLView)}get parentInjector(){const l=cn(this._hostTNode,this._hostLView);if(bs(l)){const g=Js(l,this._hostLView),T=qs(l);return new Bo(g[1].data[T+8],g)}return new Bo(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(l){const g=$8(this._lContainer);return null!==g&&g[l]||null}get length(){return this._lContainer.length-10}createEmbeddedView(l,g,T){const R=l.createEmbeddedView(g||{});return this.insert(R,T),R}createComponent(l,g,T,R,G){const se=l&&!function co(s){return"function"==typeof s}(l);let Ee;if(se)Ee=g;else{const Zt=g||{};Ee=Zt.index,T=Zt.injector,R=Zt.projectableNodes,G=Zt.ngModuleRef}const Ze=se?l:new au(st(l)),ft=T||this.parentInjector;if(!G&&null==Ze.ngModule){const di=(se?ft:this.parentInjector).get(jl,null);di&&(G=di)}const At=Ze.create(ft,R,void 0,G);return this.insert(At.hostView,Ee),At}insert(l,g){const T=l._lView,R=T[1];if(function Di(s){return fn(s[3])}(T)){const At=this.indexOf(l);if(-1!==At)this.detach(At);else{const Zt=T[3],di=new X8(Zt,Zt[6],Zt[3]);di.detach(di.indexOf(l))}}const G=this._adjustIndex(g),se=this._lContainer;!function L3(s,l,g,T){const R=10+T,G=g.length;T>0&&(g[R-1][4]=l),T0)T.push(se[Ee/2]);else{const ft=G[Ee+1],At=l[-Ze];for(let Zt=10;Zt{class s{constructor(g){this.appInits=g,this.resolve=m6,this.reject=m6,this.initialized=!1,this.done=!1,this.donePromise=new Promise((T,R)=>{this.resolve=T,this.reject=R})}runInitializers(){if(this.initialized)return;const g=[],T=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let R=0;R{G.subscribe({complete:Ee,error:Ze})});g.push(se)}}Promise.all(g).then(()=>{T()}).catch(R=>{this.reject(R)}),0===g.length&&T(),this.initialized=!0}}return s.\u0275fac=function(g){return new(g||s)(Pa(Ou,8))},s.\u0275prov=q({token:s,factory:s.\u0275fac,providedIn:"root"}),s})();const Lf=new Er("AppId",{providedIn:"root",factory:function Sf(){return`${Pu()}${Pu()}${Pu()}`}});function Pu(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const Nu=new Er("Platform Initializer"),Gp=new Er("Platform ID",{providedIn:"platform",factory:()=>"unknown"}),Ru=new Er("appBootstrapListener");let Ef=(()=>{class s{log(g){console.log(g)}warn(g){console.warn(g)}}return s.\u0275fac=function(g){return new(g||s)},s.\u0275prov=q({token:s,factory:s.\u0275fac,providedIn:"platform"}),s})();const g6=new Er("LocaleId",{providedIn:"root",factory:()=>u1(g6,Ae.Optional|Ae.SkipSelf)||function Zp(){return"undefined"!=typeof $localize&&$localize.locale||Xr}()}),Wp=new Er("DefaultCurrencyCode",{providedIn:"root",factory:()=>"USD"});class Yp{constructor(l,g){this.ngModuleFactory=l,this.componentFactories=g}}let jp=(()=>{class s{compileModuleSync(g){return new cu(g)}compileModuleAsync(g){return Promise.resolve(this.compileModuleSync(g))}compileModuleAndAllComponentsSync(g){const T=this.compileModuleSync(g),G=to(qt(g).declarations).reduce((se,Ee)=>{const Ze=st(Ee);return Ze&&se.push(new au(Ze)),se},[]);return new Yp(T,G)}compileModuleAndAllComponentsAsync(g){return Promise.resolve(this.compileModuleAndAllComponentsSync(g))}clearCache(){}clearCacheFor(g){}getModuleId(g){}}return s.\u0275fac=function(g){return new(g||s)},s.\u0275prov=q({token:s,factory:s.\u0275fac,providedIn:"root"}),s})();const Tf=(()=>Promise.resolve(0))();function C6(s){"undefined"==typeof Zone?Tf.then(()=>{s&&s.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",s)}class Lo{constructor({enableLongStackTrace:l=!1,shouldCoalesceEventChangeDetection:g=!1,shouldCoalesceRunChangeDetection:T=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Vo(!1),this.onMicrotaskEmpty=new Vo(!1),this.onStable=new Vo(!1),this.onError=new Vo(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched();const R=this;R._nesting=0,R._outer=R._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(R._inner=R._inner.fork(new Zone.TaskTrackingZoneSpec)),l&&Zone.longStackTraceZoneSpec&&(R._inner=R._inner.fork(Zone.longStackTraceZoneSpec)),R.shouldCoalesceEventChangeDetection=!T&&g,R.shouldCoalesceRunChangeDetection=T,R.lastRequestAnimationFrameId=-1,R.nativeRequestAnimationFrame=function qp(){let s=hi.requestAnimationFrame,l=hi.cancelAnimationFrame;if("undefined"!=typeof Zone&&s&&l){const g=s[Zone.__symbol__("OriginalDelegate")];g&&(s=g);const T=l[Zone.__symbol__("OriginalDelegate")];T&&(l=T)}return{nativeRequestAnimationFrame:s,nativeCancelAnimationFrame:l}}().nativeRequestAnimationFrame,function $p(s){const l=()=>{!function Xp(s){s.isCheckStableRunning||-1!==s.lastRequestAnimationFrameId||(s.lastRequestAnimationFrameId=s.nativeRequestAnimationFrame.call(hi,()=>{s.fakeTopEventTask||(s.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{s.lastRequestAnimationFrameId=-1,Hu(s),s.isCheckStableRunning=!0,_6(s),s.isCheckStableRunning=!1},void 0,()=>{},()=>{})),s.fakeTopEventTask.invoke()}),Hu(s))}(s)};s._inner=s._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(g,T,R,G,se,Ee)=>{try{return Af(s),g.invokeTask(R,G,se,Ee)}finally{(s.shouldCoalesceEventChangeDetection&&"eventTask"===G.type||s.shouldCoalesceRunChangeDetection)&&l(),Df(s)}},onInvoke:(g,T,R,G,se,Ee,Ze)=>{try{return Af(s),g.invoke(R,G,se,Ee,Ze)}finally{s.shouldCoalesceRunChangeDetection&&l(),Df(s)}},onHasTask:(g,T,R,G)=>{g.hasTask(R,G),T===R&&("microTask"==G.change?(s._hasPendingMicrotasks=G.microTask,Hu(s),_6(s)):"macroTask"==G.change&&(s.hasPendingMacrotasks=G.macroTask))},onHandleError:(g,T,R,G)=>(g.handleError(R,G),s.runOutsideAngular(()=>s.onError.emit(G)),!1)})}(R)}static isInAngularZone(){return"undefined"!=typeof Zone&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!Lo.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")}static assertNotInAngularZone(){if(Lo.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")}run(l,g,T){return this._inner.run(l,g,T)}runTask(l,g,T,R){const G=this._inner,se=G.scheduleEventTask("NgZoneEvent: "+R,l,Jp,m6,m6);try{return G.runTask(se,g,T)}finally{G.cancelTask(se)}}runGuarded(l,g,T){return this._inner.runGuarded(l,g,T)}runOutsideAngular(l){return this._outer.run(l)}}const Jp={};function _6(s){if(0==s._nesting&&!s.hasPendingMicrotasks&&!s.isStable)try{s._nesting++,s.onMicrotaskEmpty.emit(null)}finally{if(s._nesting--,!s.hasPendingMicrotasks)try{s.runOutsideAngular(()=>s.onStable.emit(null))}finally{s.isStable=!0}}}function Hu(s){s.hasPendingMicrotasks=!!(s._hasPendingMicrotasks||(s.shouldCoalesceEventChangeDetection||s.shouldCoalesceRunChangeDetection)&&-1!==s.lastRequestAnimationFrameId)}function Af(s){s._nesting++,s.isStable&&(s.isStable=!1,s.onUnstable.emit(null))}function Df(s){s._nesting--,_6(s)}class e9{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Vo,this.onMicrotaskEmpty=new Vo,this.onStable=new Vo,this.onError=new Vo}run(l,g,T){return l.apply(g,T)}runGuarded(l,g,T){return l.apply(g,T)}runOutsideAngular(l){return l()}runTask(l,g,T,R){return l.apply(g,T)}}let If=(()=>{class s{constructor(g){this._ngZone=g,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),g.run(()=>{this.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Lo.assertNotInAngularZone(),C6(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())C6(()=>{for(;0!==this._callbacks.length;){let g=this._callbacks.pop();clearTimeout(g.timeoutId),g.doneCb(this._didWork)}this._didWork=!1});else{let g=this.getPendingTasks();this._callbacks=this._callbacks.filter(T=>!T.updateCb||!T.updateCb(g)||(clearTimeout(T.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(g=>({source:g.source,creationLocation:g.creationLocation,data:g.data})):[]}addCallback(g,T,R){let G=-1;T&&T>0&&(G=setTimeout(()=>{this._callbacks=this._callbacks.filter(se=>se.timeoutId!==G),g(this._didWork,this.getPendingTasks())},T)),this._callbacks.push({doneCb:g,timeoutId:G,updateCb:R})}whenStable(g,T,R){if(R&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(g,T,R),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(g,T,R){return[]}}return s.\u0275fac=function(g){return new(g||s)(Pa(Lo))},s.\u0275prov=q({token:s,factory:s.\u0275fac}),s})(),t9=(()=>{class s{constructor(){this._applications=new Map,Fu.addToWindow(this)}registerApplication(g,T){this._applications.set(g,T)}unregisterApplication(g){this._applications.delete(g)}unregisterAllApplications(){this._applications.clear()}getTestability(g){return this._applications.get(g)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(g,T=!0){return Fu.findTestabilityInTree(this,g,T)}}return s.\u0275fac=function(g){return new(g||s)},s.\u0275prov=q({token:s,factory:s.\u0275fac,providedIn:"platform"}),s})();class i9{addToWindow(l){}findTestabilityInTree(l,g,T){return null}}function n9(s){Fu=s}let Fu=new i9,D2=null;const Vu=new Er("AllowMultipleToken"),Of=new Er("PlatformOnDestroy");class r9{constructor(l,g){this.name=l,this.token=g}}function Nf(s,l,g=[]){const T=`Platform: ${l}`,R=new Er(T);return(G=[])=>{let se=zu();if(!se||se.injector.get(Vu,!1)){const Ee=[...g,...G,{provide:R,useValue:!0}];s?s(Ee):function a9(s){if(D2&&!D2.get(Vu,!1))throw new S(400,"");D2=s;const l=s.get(Bu),g=s.get(Nu,null);g&&g.forEach(T=>T())}(function o9(s=[],l){return vo.create({name:l,providers:[{provide:t4,useValue:"platform"},{provide:Of,useValue:()=>D2=null},...s]})}(Ee,T))}return function s9(s){const l=zu();if(!l)throw new S(401,"");return l}()}}function zu(){var s;return null!==(s=null==D2?void 0:D2.get(Bu))&&void 0!==s?s:null}let Bu=(()=>{class s{constructor(g){this._injector=g,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(g,T){const Ee=function l9(s,l){let g;return g="noop"===s?new e9:("zone.js"===s?void 0:s)||new Lo({enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:!!(null==l?void 0:l.ngZoneEventCoalescing),shouldCoalesceRunChangeDetection:!!(null==l?void 0:l.ngZoneRunCoalescing)}),g}(T?T.ngZone:void 0,{ngZoneEventCoalescing:T&&T.ngZoneEventCoalescing||!1,ngZoneRunCoalescing:T&&T.ngZoneRunCoalescing||!1}),Ze=[{provide:Lo,useValue:Ee}];return Ee.run(()=>{const ft=vo.create({providers:Ze,parent:this.injector,name:g.moduleType.name}),At=g.create(ft),Zt=At.injector.get($2,null);if(!Zt)throw new S(402,"");return Ee.runOutsideAngular(()=>{const di=Ee.onError.subscribe({next:vi=>{Zt.handleError(vi)}});At.onDestroy(()=>{v6(this._modules,At),di.unsubscribe()})}),function c9(s,l,g){try{const T=g();return ys(T)?T.catch(R=>{throw l.runOutsideAngular(()=>s.handleError(R)),R}):T}catch(T){throw l.runOutsideAngular(()=>s.handleError(T)),T}}(Zt,Ee,()=>{const di=At.injector.get(ku);return di.runInitializers(),di.donePromise.then(()=>(function Zl(s){n(s,"Expected localeId to be defined"),"string"==typeof s&&(ja=s.toLowerCase().replace(/_/g,"-"))}(At.injector.get(g6,Xr)||Xr),this._moduleDoBootstrap(At),At))})})}bootstrapModule(g,T=[]){const R=Rf({},T);return function kf(s,l,g){const T=new cu(g);return Promise.resolve(T)}(0,0,g).then(G=>this.bootstrapModuleFactory(G,R))}_moduleDoBootstrap(g){const T=g.injector.get(Uu);if(g._bootstrapComponents.length>0)g._bootstrapComponents.forEach(R=>T.bootstrap(R));else{if(!g.instance.ngDoBootstrap)throw new S(403,"");g.instance.ngDoBootstrap(T)}this._modules.push(g)}onDestroy(g){this._destroyListeners.push(g)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new S(404,"");this._modules.slice().forEach(T=>T.destroy()),this._destroyListeners.forEach(T=>T());const g=this._injector.get(Of,null);null==g||g(),this._destroyed=!0}get destroyed(){return this._destroyed}}return s.\u0275fac=function(g){return new(g||s)(Pa(vo))},s.\u0275prov=q({token:s,factory:s.\u0275fac,providedIn:"platform"}),s})();function Rf(s,l){return Array.isArray(l)?l.reduce(Rf,s):Object.assign(Object.assign({},s),l)}let Uu=(()=>{class s{constructor(g,T,R,G){this._zone=g,this._injector=T,this._exceptionHandler=R,this._initStatus=G,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._onMicrotaskEmptySubscription=this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const se=new f.y(Ze=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{Ze.next(this._stable),Ze.complete()})}),Ee=new f.y(Ze=>{let ft;this._zone.runOutsideAngular(()=>{ft=this._zone.onStable.subscribe(()=>{Lo.assertNotInAngularZone(),C6(()=>{!this._stable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks&&(this._stable=!0,Ze.next(!0))})})});const At=this._zone.onUnstable.subscribe(()=>{Lo.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{Ze.next(!1)}))});return()=>{ft.unsubscribe(),At.unsubscribe()}});this.isStable=(0,M.T)(se,Ee.pipe((0,a.B)()))}bootstrap(g,T){if(!this._initStatus.done)throw new S(405,"");let R;R=g instanceof w8?g:this._injector.get(l6).resolveComponentFactory(g),this.componentTypes.push(R.componentType);const G=function Pf(s){return s.isBoundToModule}(R)?void 0:this._injector.get(jl),Ee=R.create(vo.NULL,[],T||R.selector,G),Ze=Ee.location.nativeElement,ft=Ee.injector.get(If,null),At=ft&&Ee.injector.get(t9);return ft&&At&&At.registerApplication(Ze,ft),Ee.onDestroy(()=>{this.detachView(Ee.hostView),v6(this.components,Ee),At&&At.unregisterApplication(Ze)}),this._loadComponent(Ee),Ee}tick(){if(this._runningTick)throw new S(101,"");try{this._runningTick=!0;for(let g of this._views)g.detectChanges()}catch(g){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(g))}finally{this._runningTick=!1}}attachView(g){const T=g;this._views.push(T),T.attachToAppRef(this)}detachView(g){const T=g;v6(this._views,T),T.detachFromAppRef()}_loadComponent(g){this.attachView(g.hostView),this.tick(),this.components.push(g),this._injector.get(Ru,[]).concat(this._bootstrapListeners).forEach(R=>R(g))}ngOnDestroy(){this._views.slice().forEach(g=>g.destroy()),this._onMicrotaskEmptySubscription.unsubscribe()}get viewCount(){return this._views.length}}return s.\u0275fac=function(g){return new(g||s)(Pa(Lo),Pa(vo),Pa($2),Pa(ku))},s.\u0275prov=q({token:s,factory:s.\u0275fac,providedIn:"root"}),s})();function v6(s,l){const g=s.indexOf(l);g>-1&&s.splice(g,1)}let Ff=!0,Vf=!1;function zf(){return Vf=!0,Ff}function u9(){if(Vf)throw new Error("Cannot enable prod mode after platform setup.");Ff=!1}let Uf=(()=>{class s{}return s.__NG_ELEMENT_ID__=f9,s})();function f9(s){return function Gf(s,l,g){if(Dn(s)&&!g){const T=oi(s.index,l);return new U4(T,T)}return 47&s.type?new U4(l[16],l):null}(br(),Fi(),16==(16&s))}class Yu{constructor(){}supports(l){return Tl(l)}create(l){return new b9(l)}}const x9=(s,l)=>l;class b9{constructor(l){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=l||x9}forEachItem(l){let g;for(g=this._itHead;null!==g;g=g._next)l(g)}forEachOperation(l){let g=this._itHead,T=this._removalsHead,R=0,G=null;for(;g||T;){const se=!T||g&&g.currentIndex{se=this._trackByFn(R,Ee),null!==g&&Object.is(g.trackById,se)?(T&&(g=this._verifyReinsertion(g,Ee,se,R)),Object.is(g.item,Ee)||this._addIdentityChange(g,Ee)):(g=this._mismatch(g,Ee,se,R),T=!0),g=g._next,R++}),this.length=R;return this._truncate(g),this.collection=l,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let l;for(l=this._previousItHead=this._itHead;null!==l;l=l._next)l._nextPrevious=l._next;for(l=this._additionsHead;null!==l;l=l._nextAdded)l.previousIndex=l.currentIndex;for(this._additionsHead=this._additionsTail=null,l=this._movesHead;null!==l;l=l._nextMoved)l.previousIndex=l.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(l,g,T,R){let G;return null===l?G=this._itTail:(G=l._prev,this._remove(l)),null!==(l=null===this._unlinkedRecords?null:this._unlinkedRecords.get(T,null))?(Object.is(l.item,g)||this._addIdentityChange(l,g),this._reinsertAfter(l,G,R)):null!==(l=null===this._linkedRecords?null:this._linkedRecords.get(T,R))?(Object.is(l.item,g)||this._addIdentityChange(l,g),this._moveAfter(l,G,R)):l=this._addAfter(new M9(g,T),G,R),l}_verifyReinsertion(l,g,T,R){let G=null===this._unlinkedRecords?null:this._unlinkedRecords.get(T,null);return null!==G?l=this._reinsertAfter(G,l._prev,R):l.currentIndex!=R&&(l.currentIndex=R,this._addToMoves(l,R)),l}_truncate(l){for(;null!==l;){const g=l._next;this._addToRemovals(this._unlink(l)),l=g}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(l,g,T){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(l);const R=l._prevRemoved,G=l._nextRemoved;return null===R?this._removalsHead=G:R._nextRemoved=G,null===G?this._removalsTail=R:G._prevRemoved=R,this._insertAfter(l,g,T),this._addToMoves(l,T),l}_moveAfter(l,g,T){return this._unlink(l),this._insertAfter(l,g,T),this._addToMoves(l,T),l}_addAfter(l,g,T){return this._insertAfter(l,g,T),this._additionsTail=null===this._additionsTail?this._additionsHead=l:this._additionsTail._nextAdded=l,l}_insertAfter(l,g,T){const R=null===g?this._itHead:g._next;return l._next=R,l._prev=g,null===R?this._itTail=l:R._prev=l,null===g?this._itHead=l:g._next=l,null===this._linkedRecords&&(this._linkedRecords=new Yf),this._linkedRecords.put(l),l.currentIndex=T,l}_remove(l){return this._addToRemovals(this._unlink(l))}_unlink(l){null!==this._linkedRecords&&this._linkedRecords.remove(l);const g=l._prev,T=l._next;return null===g?this._itHead=T:g._next=T,null===T?this._itTail=g:T._prev=g,l}_addToMoves(l,g){return l.previousIndex===g||(this._movesTail=null===this._movesTail?this._movesHead=l:this._movesTail._nextMoved=l),l}_addToRemovals(l){return null===this._unlinkedRecords&&(this._unlinkedRecords=new Yf),this._unlinkedRecords.put(l),l.currentIndex=null,l._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=l,l._prevRemoved=null):(l._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=l),l}_addIdentityChange(l,g){return l.item=g,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=l:this._identityChangesTail._nextIdentityChange=l,l}}class M9{constructor(l,g){this.item=l,this.trackById=g,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class w9{constructor(){this._head=null,this._tail=null}add(l){null===this._head?(this._head=this._tail=l,l._nextDup=null,l._prevDup=null):(this._tail._nextDup=l,l._prevDup=this._tail,l._nextDup=null,this._tail=l)}get(l,g){let T;for(T=this._head;null!==T;T=T._nextDup)if((null===g||g<=T.currentIndex)&&Object.is(T.trackById,l))return T;return null}remove(l){const g=l._prevDup,T=l._nextDup;return null===g?this._head=T:g._nextDup=T,null===T?this._tail=g:T._prevDup=g,null===this._head}}class Yf{constructor(){this.map=new Map}put(l){const g=l.trackById;let T=this.map.get(g);T||(T=new w9,this.map.set(g,T)),T.add(l)}get(l,g){const R=this.map.get(l);return R?R.get(l,g):null}remove(l){const g=l.trackById;return this.map.get(g).remove(l)&&this.map.delete(g),l}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function jf(s,l,g){const T=s.previousIndex;if(null===T)return T;let R=0;return g&&T{if(g&&g.key===R)this._maybeAddToChanges(g,T),this._appendAfter=g,g=g._next;else{const G=this._getOrCreateRecordForKey(R,T);g=this._insertBeforeOrAppend(g,G)}}),g){g._prev&&(g._prev._next=null),this._removalsHead=g;for(let T=g;null!==T;T=T._nextRemoved)T===this._mapHead&&(this._mapHead=null),this._records.delete(T.key),T._nextRemoved=T._next,T.previousValue=T.currentValue,T.currentValue=null,T._prev=null,T._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(l,g){if(l){const T=l._prev;return g._next=l,g._prev=T,l._prev=g,T&&(T._next=g),l===this._mapHead&&(this._mapHead=g),this._appendAfter=l,l}return this._appendAfter?(this._appendAfter._next=g,g._prev=this._appendAfter):this._mapHead=g,this._appendAfter=g,null}_getOrCreateRecordForKey(l,g){if(this._records.has(l)){const R=this._records.get(l);this._maybeAddToChanges(R,g);const G=R._prev,se=R._next;return G&&(G._next=se),se&&(se._prev=G),R._next=null,R._prev=null,R}const T=new S9(l);return this._records.set(l,T),T.currentValue=g,this._addToAdditions(T),T}_reset(){if(this.isDirty){let l;for(this._previousMapHead=this._mapHead,l=this._previousMapHead;null!==l;l=l._next)l._nextPrevious=l._next;for(l=this._changesHead;null!==l;l=l._nextChanged)l.previousValue=l.currentValue;for(l=this._additionsHead;null!=l;l=l._nextAdded)l.previousValue=l.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(l,g){Object.is(g,l.currentValue)||(l.previousValue=l.currentValue,l.currentValue=g,this._addToChanges(l))}_addToAdditions(l){null===this._additionsHead?this._additionsHead=this._additionsTail=l:(this._additionsTail._nextAdded=l,this._additionsTail=l)}_addToChanges(l){null===this._changesHead?this._changesHead=this._changesTail=l:(this._changesTail._nextChanged=l,this._changesTail=l)}_forEach(l,g){l instanceof Map?l.forEach(g):Object.keys(l).forEach(T=>g(l[T],T))}}class S9{constructor(l){this.key=l,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function Qf(){return new ju([new Yu])}let ju=(()=>{class s{constructor(g){this.factories=g}static create(g,T){if(null!=T){const R=T.factories.slice();g=g.concat(R)}return new s(g)}static extend(g){return{provide:s,useFactory:T=>s.create(g,T||Qf()),deps:[[s,new Ps,new Ko]]}}find(g){const T=this.factories.find(R=>R.supports(g));if(null!=T)return T;throw new S(901,"")}}return s.\u0275prov=q({token:s,providedIn:"root",factory:Qf}),s})();function qf(){return new Ku([new Kf])}let Ku=(()=>{class s{constructor(g){this.factories=g}static create(g,T){if(T){const R=T.factories.slice();g=g.concat(R)}return new s(g)}static extend(g){return{provide:s,useFactory:T=>s.create(g,T||qf()),deps:[[s,new Ps,new Ko]]}}find(g){const T=this.factories.find(G=>G.supports(g));if(T)return T;throw new S(901,"")}}return s.\u0275prov=q({token:s,providedIn:"root",factory:qf}),s})();const A9=Nf(null,"core",[]);let D9=(()=>{class s{constructor(g){}}return s.\u0275fac=function(g){return new(g||s)(Pa(Uu))},s.\u0275mod=tt({type:s}),s.\u0275inj=_e({}),s})()},9042:(Ve,j,p)=>{"use strict";function t(A){for(let w in A){let D=A[w]||"";switch(w){case"display":A.display="flex"===D?["-webkit-flex","flex"]:"inline-flex"===D?["-webkit-inline-flex","inline-flex"]:D;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":A["-webkit-"+w]=D;break;case"flex-direction":D=D||"row",A["-webkit-flex-direction"]=D,A["flex-direction"]=D;break;case"order":A.order=A["-webkit-"+w]=isNaN(+D)?"0":D}}return A}p.d(j,{Ar:()=>M,GK:()=>t,iQ:()=>f,kt:()=>h,tj:()=>b});const e="inline",f=["row","column","row-reverse","column-reverse"];function M(A){let[w,D,L]=a(A);return function N(A,w=null,D=!1){return{display:D?"inline-flex":"flex","box-sizing":"border-box","flex-direction":A,"flex-wrap":w||null}}(w,D,L)}function a(A){var w;A=null!==(w=null==A?void 0:A.toLowerCase())&&void 0!==w?w:"";let[D,L,k]=A.split(" ");return f.find(S=>S===D)||(D=f[0]),L===e&&(L=k!==e?k:"",k=e),[D,d(L),!!k]}function b(A){let[w]=a(A);return w.indexOf("row")>-1}function d(A){if(A)switch(A.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":A="wrap-reverse";break;case"no":case"none":case"nowrap":A="nowrap";break;default:A="wrap"}return A}function h(A,...w){if(null==A)throw TypeError("Cannot convert undefined or null to object");for(let D of w)if(null!=D)for(let L in D)D.hasOwnProperty(L)&&(A[L]=D[L]);return A}},3270:(Ve,j,p)=>{"use strict";p.d(j,{Bs:()=>ne,FL:()=>hi,IR:()=>L,Ot:()=>ui,QI:()=>de,RK:()=>te,WU:()=>Z,g5:()=>U,iR:()=>xe,wY:()=>Y,yB:()=>le});var t=p(5e3),e=p(9808),f=p(1135),M=p(8306),a=p(6451),b=p(7579),d=p(9042),N=p(9300),h=p(8505);const w={provide:t.tb,useFactory:function A(xt,Nt){return()=>{if((0,e.NF)(Nt)){const Ct=Array.from(xt.querySelectorAll(`[class*=${D}]`)),et=/\bflex-layout-.+?\b/g;Ct.forEach(yt=>{yt.classList.contains(`${D}ssr`)&&yt.parentNode?yt.parentNode.removeChild(yt):yt.className.replace(et,"")})}}},deps:[e.K0,t.Lbi],multi:!0},D="flex-layout-";let L=(()=>{class xt{}return xt.\u0275fac=function(Ct){return new(Ct||xt)},xt.\u0275mod=t.oAB({type:xt}),xt.\u0275inj=t.cJS({providers:[w]}),xt})();class k{constructor(Nt=!1,Ct="all",et="",yt="",ei=0){this.matches=Nt,this.mediaQuery=Ct,this.mqAlias=et,this.suffix=yt,this.priority=ei,this.property=""}clone(){return new k(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let S=(()=>{class xt{constructor(){this.stylesheet=new Map}addStyleToElement(Ct,et,yt){const ei=this.stylesheet.get(Ct);ei?ei.set(et,yt):this.stylesheet.set(Ct,new Map([[et,yt]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(Ct,et){const yt=this.stylesheet.get(Ct);let ei="";if(yt){const Yt=yt.get(et);("number"==typeof Yt||"string"==typeof Yt)&&(ei=Yt+"")}return ei}}return xt.\u0275fac=function(Ct){return new(Ct||xt)},xt.\u0275prov=t.Yz7({token:xt,factory:xt.\u0275fac,providedIn:"root"}),xt})();const U={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},Z=new t.OlP("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>U}),Y=new t.OlP("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),ne=new t.OlP("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function $(xt,Nt){return xt=xt?xt.clone():new k,Nt&&(xt.mqAlias=Nt.alias,xt.mediaQuery=Nt.mediaQuery,xt.suffix=Nt.suffix,xt.priority=Nt.priority),xt}class de{constructor(){this.shouldCache=!0}sideEffect(Nt,Ct,et){}}let te=(()=>{class xt{constructor(Ct,et,yt,ei){this._serverStylesheet=Ct,this._serverModuleLoaded=et,this._platformId=yt,this.layoutConfig=ei}applyStyleToElement(Ct,et,yt=null){let ei={};"string"==typeof et&&(ei[et]=yt,et=ei),ei=this.layoutConfig.disableVendorPrefixes?et:(0,d.GK)(et),this._applyMultiValueStyleToElement(ei,Ct)}applyStyleToElements(Ct,et=[]){const yt=this.layoutConfig.disableVendorPrefixes?Ct:(0,d.GK)(Ct);et.forEach(ei=>{this._applyMultiValueStyleToElement(yt,ei)})}getFlowDirection(Ct){const et="flex-direction";let yt=this.lookupStyle(Ct,et);return[yt||"row",this.lookupInlineStyle(Ct,et)||(0,e.PM)(this._platformId)&&this._serverModuleLoaded?yt:""]}hasWrap(Ct){return"wrap"===this.lookupStyle(Ct,"flex-wrap")}lookupAttributeValue(Ct,et){var yt;return null!==(yt=Ct.getAttribute(et))&&void 0!==yt?yt:""}lookupInlineStyle(Ct,et){return(0,e.NF)(this._platformId)?Ct.style.getPropertyValue(et):function ie(xt,Nt){var Ct;return null!==(Ct=me(xt)[Nt])&&void 0!==Ct?Ct:""}(Ct,et)}lookupStyle(Ct,et,yt=!1){let ei="";return Ct&&((ei=this.lookupInlineStyle(Ct,et))||((0,e.NF)(this._platformId)?yt||(ei=getComputedStyle(Ct).getPropertyValue(et)):this._serverModuleLoaded&&(ei=this._serverStylesheet.getStyleForElement(Ct,et)))),ei?ei.trim():""}_applyMultiValueStyleToElement(Ct,et){Object.keys(Ct).sort().forEach(yt=>{const ei=Ct[yt],Yt=Array.isArray(ei)?ei:[ei];Yt.sort();for(let Pe of Yt)Pe=Pe?Pe+"":"",(0,e.NF)(this._platformId)||!this._serverModuleLoaded?(0,e.NF)(this._platformId)?et.style.setProperty(yt,Pe):oe(et,yt,Pe):this._serverStylesheet.addStyleToElement(et,yt,Pe)})}}return xt.\u0275fac=function(Ct){return new(Ct||xt)(t.LFG(S),t.LFG(Y),t.LFG(t.Lbi),t.LFG(Z))},xt.\u0275prov=t.Yz7({token:xt,factory:xt.\u0275fac,providedIn:"root"}),xt})();function oe(xt,Nt,Ct){Nt=Nt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const et=me(xt);et[Nt]=null!=Ct?Ct:"",function X(xt,Nt){let Ct="";for(const et in Nt)Nt[et]&&(Ct+=`${et}:${Nt[et]};`);xt.setAttribute("style",Ct)}(xt,et)}function me(xt){const Nt={},Ct=xt.getAttribute("style");if(Ct){const et=Ct.split(/;+/g);for(let yt=0;yt0){const Yt=ei.indexOf(":");if(-1===Yt)throw new Error(`Invalid CSS style: ${ei}`);Nt[ei.substr(0,Yt).trim()]=ei.substr(Yt+1).trim()}}}return Nt}function y(xt,Nt){return(Nt&&Nt.priority||0)-(xt&&xt.priority||0)}function i(xt,Nt){return(xt.priority||0)-(Nt.priority||0)}let r=(()=>{class xt{constructor(Ct,et,yt){this._zone=Ct,this._platformId=et,this._document=yt,this.source=new f.X(new k(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const Ct=[];return this.registry.forEach((et,yt)=>{et.matches&&Ct.push(yt)}),Ct}isActive(Ct){var et;const yt=this.registry.get(Ct);return null!==(et=null==yt?void 0:yt.matches)&&void 0!==et?et:this.registerQuery(Ct).some(ei=>ei.matches)}observe(Ct,et=!1){if(Ct&&Ct.length){const yt=this._observable$.pipe((0,N.h)(Yt=>!et||Ct.indexOf(Yt.mediaQuery)>-1)),ei=new M.y(Yt=>{const Pe=this.registerQuery(Ct);if(Pe.length){const Oe=Pe.pop();Pe.forEach(ce=>{Yt.next(ce)}),this.source.next(Oe)}Yt.complete()});return(0,a.T)(ei,yt)}return this._observable$}registerQuery(Ct){const et=Array.isArray(Ct)?Ct:[Ct],yt=[];return function c(xt,Nt){const Ct=xt.filter(et=>!u[et]);if(Ct.length>0){const et=Ct.join(", ");try{const yt=Nt.createElement("style");yt.setAttribute("type","text/css"),yt.styleSheet||yt.appendChild(Nt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${et} {.fx-query-test{ }}\n`)),Nt.head.appendChild(yt),Ct.forEach(ei=>u[ei]=yt)}catch(yt){console.error(yt)}}}(et,this._document),et.forEach(ei=>{const Yt=Oe=>{this._zone.run(()=>this.source.next(new k(Oe.matches,ei)))};let Pe=this.registry.get(ei);Pe||(Pe=this.buildMQL(ei),Pe.addListener(Yt),this.pendingRemoveListenerFns.push(()=>Pe.removeListener(Yt)),this.registry.set(ei,Pe)),Pe.matches&&yt.push(new k(!0,ei))}),yt}ngOnDestroy(){let Ct;for(;Ct=this.pendingRemoveListenerFns.pop();)Ct()}buildMQL(Ct){return function _(xt,Nt){return Nt&&window.matchMedia("all").addListener?window.matchMedia(xt):{matches:"all"===xt||""===xt,media:xt,addListener:()=>{},removeListener:()=>{},onchange:null,addEventListener(){},removeEventListener(){},dispatchEvent:()=>!1}}(Ct,(0,e.NF)(this._platformId))}}return xt.\u0275fac=function(Ct){return new(Ct||xt)(t.LFG(t.R0b),t.LFG(t.Lbi),t.LFG(e.K0))},xt.\u0275prov=t.Yz7({token:xt,factory:xt.\u0275fac,providedIn:"root"}),xt})();const u={},E=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],I="(orientation: portrait) and (max-width: 599.98px)",v="(orientation: landscape) and (max-width: 959.98px)",n="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",C="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",B="(orientation: portrait) and (min-width: 840px)",P="(orientation: landscape) and (min-width: 1280px)",H={HANDSET:`${I}, ${v}`,TABLET:`${n} , ${C}`,WEB:`${B}, ${P} `,HANDSET_PORTRAIT:`${I}`,TABLET_PORTRAIT:`${n} `,WEB_PORTRAIT:`${B}`,HANDSET_LANDSCAPE:`${v}`,TABLET_LANDSCAPE:`${C}`,WEB_LANDSCAPE:`${P}`},q=[{alias:"handset",priority:2e3,mediaQuery:H.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:H.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:H.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:H.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:H.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:H.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:H.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:H.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:H.WEB_PORTRAIT,overlapping:!0}],he=/(\.|-|_)/g;function _e(xt){let Nt=xt.length>0?xt.charAt(0):"",Ct=xt.length>1?xt.slice(1):"";return Nt.toUpperCase()+Ct}const Ue=new t.OlP("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const xt=(0,t.f3M)(ne),Nt=(0,t.f3M)(Z),Ct=[].concat.apply([],(xt||[]).map(yt=>Array.isArray(yt)?yt:[yt]));return function Q(xt,Nt=[]){const Ct={};return xt.forEach(et=>{Ct[et.alias]=et}),Nt.forEach(et=>{Ct[et.alias]?(0,d.kt)(Ct[et.alias],et):Ct[et.alias]=et}),function we(xt){return xt.forEach(Nt=>{Nt.suffix||(Nt.suffix=function Ne(xt){return xt.replace(he,"|").split("|").map(_e).join("")}(Nt.alias),Nt.overlapping=!!Nt.overlapping)}),xt}(Object.keys(Ct).map(et=>Ct[et]))}((Nt.disableDefaultBps?[]:E).concat(Nt.addOrientationBps?q:[]),Ct)}});let ve=(()=>{class xt{constructor(Ct){this.findByMap=new Map,this.items=[...Ct].sort(i)}findByAlias(Ct){return Ct?this.findWithPredicate(Ct,et=>et.alias===Ct):null}findByQuery(Ct){return this.findWithPredicate(Ct,et=>et.mediaQuery===Ct)}get overlappings(){return this.items.filter(Ct=>Ct.overlapping)}get aliases(){return this.items.map(Ct=>Ct.alias)}get suffixes(){return this.items.map(Ct=>{var et;return null!==(et=null==Ct?void 0:Ct.suffix)&&void 0!==et?et:""})}findWithPredicate(Ct,et){var yt;let ei=this.findByMap.get(Ct);return ei||(ei=null!==(yt=this.items.find(et))&&void 0!==yt?yt:null,this.findByMap.set(Ct,ei)),null!=ei?ei:null}}return xt.\u0275fac=function(Ct){return new(Ct||xt)(t.LFG(Ue))},xt.\u0275prov=t.Yz7({token:xt,factory:xt.\u0275fac,providedIn:"root"}),xt})();const V="print",De={alias:V,mediaQuery:V,priority:1e3};let dt=(()=>{class xt{constructor(Ct,et,yt){this.breakpoints=Ct,this.layoutConfig=et,this._document=yt,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new Ie,this.deactivations=[]}withPrintQuery(Ct){return[...Ct,V]}isPrintEvent(Ct){return Ct.mediaQuery.startsWith(V)}get printAlias(){var Ct;return[...null!==(Ct=this.layoutConfig.printWithBreakpoints)&&void 0!==Ct?Ct:[]]}get printBreakPoints(){return this.printAlias.map(Ct=>this.breakpoints.findByAlias(Ct)).filter(Ct=>null!==Ct)}getEventBreakpoints({mediaQuery:Ct}){const et=this.breakpoints.findByQuery(Ct);return(et?[...this.printBreakPoints,et]:this.printBreakPoints).sort(y)}updateEvent(Ct){var et;let yt=this.breakpoints.findByQuery(Ct.mediaQuery);return this.isPrintEvent(Ct)&&(yt=this.getEventBreakpoints(Ct)[0],Ct.mediaQuery=null!==(et=null==yt?void 0:yt.mediaQuery)&&void 0!==et?et:""),$(Ct,yt)}registerBeforeAfterPrintHooks(Ct){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const et=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(Ct,this.getEventBreakpoints(new k(!0,V))),Ct.updateStyles())},yt=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(Ct),Ct.updateStyles())};this._document.defaultView.addEventListener("beforeprint",et),this._document.defaultView.addEventListener("afterprint",yt),this.beforePrintEventListeners.push(et),this.afterPrintEventListeners.push(yt)}interceptEvents(Ct){return et=>{this.isPrintEvent(et)?et.matches&&!this.isPrinting?(this.startPrinting(Ct,this.getEventBreakpoints(et)),Ct.updateStyles()):!et.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(Ct),Ct.updateStyles()):this.collectActivations(Ct,et)}}blockPropagation(){return Ct=>!(this.isPrinting||this.isPrintEvent(Ct))}startPrinting(Ct,et){this.isPrinting=!0,this.formerActivations=Ct.activatedBreakpoints,Ct.activatedBreakpoints=this.queue.addPrintBreakpoints(et)}stopPrinting(Ct){Ct.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(Ct,et){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!et.matches){const yt=this.breakpoints.findByQuery(et.mediaQuery);if(yt){const ei=this.formerActivations&&this.formerActivations.includes(yt),Yt=!this.formerActivations&&Ct.activatedBreakpoints.includes(yt);(ei||Yt)&&(this.deactivations.push(yt),this.deactivations.sort(y))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(Ct=>this._document.defaultView.removeEventListener("beforeprint",Ct)),this.afterPrintEventListeners.forEach(Ct=>this._document.defaultView.removeEventListener("afterprint",Ct)))}}return xt.\u0275fac=function(Ct){return new(Ct||xt)(t.LFG(ve),t.LFG(Z),t.LFG(e.K0))},xt.\u0275prov=t.Yz7({token:xt,factory:xt.\u0275fac,providedIn:"root"}),xt})();class Ie{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Nt){return Nt.push(De),Nt.sort(y),Nt.forEach(Ct=>this.addBreakpoint(Ct)),this.printBreakpoints}addBreakpoint(Nt){Nt&&void 0===this.printBreakpoints.find(et=>et.mediaQuery===Nt.mediaQuery)&&(this.printBreakpoints=function Ae(xt){var Nt;return null!==(Nt=null==xt?void 0:xt.mediaQuery.startsWith(V))&&void 0!==Nt&&Nt}(Nt)?[Nt,...this.printBreakpoints]:[...this.printBreakpoints,Nt])}clear(){this.printBreakpoints=[]}}let le=(()=>{class xt{constructor(Ct,et,yt){this.matchMedia=Ct,this.breakpoints=et,this.hook=yt,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new b.x,this.observeActivations()}get activatedAlias(){var Ct,et;return null!==(et=null===(Ct=this.activatedBreakpoints[0])||void 0===Ct?void 0:Ct.alias)&&void 0!==et?et:""}set activatedBreakpoints(Ct){this._activatedBreakpoints=[...Ct]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(Ct){this._useFallbacks=Ct}onMediaChange(Ct){const et=this.findByQuery(Ct.mediaQuery);if(et){Ct=$(Ct,et);const yt=this.activatedBreakpoints.indexOf(et);Ct.matches&&-1===yt?(this._activatedBreakpoints.push(et),this._activatedBreakpoints.sort(y),this.updateStyles()):!Ct.matches&&-1!==yt&&(this._activatedBreakpoints.splice(yt,1),this._activatedBreakpoints.sort(y),this.updateStyles())}}init(Ct,et,yt,ei,Yt=[]){Te(this.updateMap,Ct,et,yt),Te(this.clearMap,Ct,et,ei),this.buildElementKeyMap(Ct,et),this.watchExtraTriggers(Ct,et,Yt)}getValue(Ct,et,yt){const ei=this.elementMap.get(Ct);if(ei){const Yt=void 0!==yt?ei.get(yt):this.getActivatedValues(ei,et);if(Yt)return Yt.get(et)}}hasValue(Ct,et){const yt=this.elementMap.get(Ct);if(yt){const ei=this.getActivatedValues(yt,et);if(ei)return void 0!==ei.get(et)||!1}return!1}setValue(Ct,et,yt,ei){var Yt;let Pe=this.elementMap.get(Ct);if(Pe){const ce=(null!==(Yt=Pe.get(ei))&&void 0!==Yt?Yt:new Map).set(et,yt);Pe.set(ei,ce),this.elementMap.set(Ct,Pe)}else Pe=(new Map).set(ei,(new Map).set(et,yt)),this.elementMap.set(Ct,Pe);const Oe=this.getValue(Ct,et);void 0!==Oe&&this.updateElement(Ct,et,Oe)}trackValue(Ct,et){return this.subject.asObservable().pipe((0,N.h)(yt=>yt.element===Ct&&yt.key===et))}updateStyles(){this.elementMap.forEach((Ct,et)=>{const yt=new Set(this.elementKeyMap.get(et));let ei=this.getActivatedValues(Ct);ei&&ei.forEach((Yt,Pe)=>{this.updateElement(et,Pe,Yt),yt.delete(Pe)}),yt.forEach(Yt=>{if(ei=this.getActivatedValues(Ct,Yt),ei){const Pe=ei.get(Yt);this.updateElement(et,Yt,Pe)}else this.clearElement(et,Yt)})})}clearElement(Ct,et){const yt=this.clearMap.get(Ct);if(yt){const ei=yt.get(et);ei&&(ei(),this.subject.next({element:Ct,key:et,value:""}))}}updateElement(Ct,et,yt){const ei=this.updateMap.get(Ct);if(ei){const Yt=ei.get(et);Yt&&(Yt(yt),this.subject.next({element:Ct,key:et,value:yt}))}}releaseElement(Ct){const et=this.watcherMap.get(Ct);et&&(et.forEach(ei=>ei.unsubscribe()),this.watcherMap.delete(Ct));const yt=this.elementMap.get(Ct);yt&&(yt.forEach((ei,Yt)=>yt.delete(Yt)),this.elementMap.delete(Ct))}triggerUpdate(Ct,et){const yt=this.elementMap.get(Ct);if(yt){const ei=this.getActivatedValues(yt,et);ei&&(et?this.updateElement(Ct,et,ei.get(et)):ei.forEach((Yt,Pe)=>this.updateElement(Ct,Pe,Yt)))}}buildElementKeyMap(Ct,et){let yt=this.elementKeyMap.get(Ct);yt||(yt=new Set,this.elementKeyMap.set(Ct,yt)),yt.add(et)}watchExtraTriggers(Ct,et,yt){if(yt&&yt.length){let ei=this.watcherMap.get(Ct);if(ei||(ei=new Map,this.watcherMap.set(Ct,ei)),!ei.get(et)){const Pe=(0,a.T)(...yt).subscribe(()=>{const Oe=this.getValue(Ct,et);this.updateElement(Ct,et,Oe)});ei.set(et,Pe)}}}findByQuery(Ct){return this.breakpoints.findByQuery(Ct)}getActivatedValues(Ct,et){for(let ei=0;eiet.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(Ct)).pipe((0,h.b)(this.hook.interceptEvents(this)),(0,N.h)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return xt.\u0275fac=function(Ct){return new(Ct||xt)(t.LFG(r),t.LFG(ve),t.LFG(dt))},xt.\u0275prov=t.Yz7({token:xt,factory:xt.\u0275fac,providedIn:"root"}),xt})();function Te(xt,Nt,Ct,et){var yt;if(void 0!==et){const ei=null!==(yt=xt.get(Nt))&&void 0!==yt?yt:new Map;ei.set(Ct,et),xt.set(Nt,ei)}}let xe=(()=>{class xt{constructor(Ct,et,yt,ei){this.elementRef=Ct,this.styleBuilder=et,this.styler=yt,this.marshal=ei,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new b.x,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(Ct){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ct,this.marshal.activatedAlias)}ngOnChanges(Ct){Object.keys(Ct).forEach(et=>{if(-1!==this.inputs.indexOf(et)){const yt=et.split(".").slice(1).join(".");this.setValue(Ct[et].currentValue,yt)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(Ct=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),Ct)}addStyles(Ct,et){const yt=this.styleBuilder,ei=yt.shouldCache;let Yt=this.styleCache.get(Ct);(!Yt||!ei)&&(Yt=yt.buildStyles(Ct,et),ei&&this.styleCache.set(Ct,Yt)),this.mru=Object.assign({},Yt),this.applyStyleToElement(Yt),yt.sideEffect(Ct,Yt,et)}clearStyles(){Object.keys(this.mru).forEach(Ct=>{this.mru[Ct]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(Ct,et=!1){if(Ct){const[yt,ei]=this.styler.getFlowDirection(Ct);if(!ei&&et){const Yt=(0,d.Ar)(yt);this.styler.applyStyleToElements(Yt,[Ct])}return yt.trim()}return"row"}hasWrap(Ct){return this.styler.hasWrap(Ct)}applyStyleToElement(Ct,et,yt=this.nativeElement){this.styler.applyStyleToElement(yt,Ct,et)}setValue(Ct,et){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ct,et)}updateWithValue(Ct){this.currentValue!==Ct&&(this.addStyles(Ct),this.currentValue=Ct)}}return xt.\u0275fac=function(Ct){return new(Ct||xt)(t.Y36(t.SBq),t.Y36(de),t.Y36(te),t.Y36(le))},xt.\u0275dir=t.lG2({type:xt,features:[t.TTD]}),xt})();function ui(xt,Nt="1",Ct="1"){let et=[Nt,Ct,xt],yt=xt.indexOf("calc");if(yt>0){et[2]=Wt(xt.substring(yt).trim());let ei=xt.substr(0,yt).trim().split(" ");2==ei.length&&(et[0]=ei[0],et[1]=ei[1])}else if(0==yt)et[2]=Wt(xt.trim());else{let ei=xt.split(" ");et=3===ei.length?ei:[Nt,Ct,xt]}return et}function Wt(xt){return xt.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}function hi(xt,Nt){if(void 0===Nt)return xt;const Ct=et=>{const yt=+et.slice(0,-"x".length);return xt.endsWith("x")&&!isNaN(yt)?`${yt*Nt.value}${Nt.unit}`:xt};return xt.includes(" ")?xt.split(" ").map(Ct).join(" "):Ct(xt)}},3322:(Ve,j,p)=>{"use strict";p.d(j,{Zl:()=>E,aT:()=>n,oO:()=>U});var t=p(5e3),e=p(3270),f=p(9808),b=(p(3191),p(2722),p(2313));let L=(()=>{class C extends e.iR{constructor(P,H,q,he,_e,Ne,we){super(P,null,H,q),this.ngClassInstance=we,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new f.mk(he,_e,P,Ne)),this.init(),this.setValue("","")}set klass(P){this.ngClassInstance.klass=P,this.setValue(P,"")}updateWithValue(P){this.ngClassInstance.ngClass=P,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return C.\u0275fac=function(P){return new(P||C)(t.Y36(t.SBq),t.Y36(e.RK),t.Y36(e.yB),t.Y36(t.ZZ4),t.Y36(t.aQg),t.Y36(t.Qsj),t.Y36(f.mk,10))},C.\u0275dir=t.lG2({type:C,inputs:{klass:["class","klass"]},features:[t.qOj]}),C})();const k=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let U=(()=>{class C extends L{constructor(){super(...arguments),this.inputs=k}}return C.\u0275fac=function(){let B;return function(H){return(B||(B=t.n5z(C)))(H||C)}}(),C.\u0275dir=t.lG2({type:C,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},features:[t.qOj]}),C})();class ie{constructor(B,P,H=!0){this.key=B,this.value=P,this.key=H?B.replace(/['"]/g,"").trim():B.trim(),this.value=H?P.replace(/['"]/g,"").trim():P.trim(),this.value=this.value.replace(/;/,"")}}function oe(C){let B=typeof C;return"object"===B?C.constructor===Array?"array":C.constructor===Set?"set":"object":B}function i(C){const[B,...P]=C.split(":");return new ie(B,P.join(":"))}function r(C,B){return B.key&&(C[B.key]=B.value),C}let u=(()=>{class C extends e.iR{constructor(P,H,q,he,_e,Ne,we,Q,Ue){var ve;super(P,null,H,q),this.sanitizer=he,this.ngStyleInstance=we,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new f.PC(P,_e,Ne)),this.init();const V=null!==(ve=this.nativeElement.getAttribute("style"))&&void 0!==ve?ve:"";this.fallbackStyles=this.buildStyleMap(V),this.isServer=Q&&(0,f.PM)(Ue)}updateWithValue(P){const H=this.buildStyleMap(P);this.ngStyleInstance.ngStyle=Object.assign(Object.assign({},this.fallbackStyles),H),this.isServer&&this.applyStyleToElement(H),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(P){const H=q=>{var he;return null!==(he=this.sanitizer.sanitize(t.q3G.STYLE,q))&&void 0!==he?he:""};if(P)switch(oe(P)){case"string":return I(function X(C,B=";"){return String(C).trim().split(B).map(P=>P.trim()).filter(P=>""!==P)}(P),H);case"array":return I(P,H);default:return function y(C,B){let P=[];return"set"===oe(C)?C.forEach(H=>P.push(H)):Object.keys(C).forEach(H=>{P.push(`${H}:${C[H]}`)}),function me(C,B){return C.map(i).filter(H=>!!H).map(H=>(B&&(H.value=B(H.value)),H)).reduce(r,{})}(P,B)}(P,H)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return C.\u0275fac=function(P){return new(P||C)(t.Y36(t.SBq),t.Y36(e.RK),t.Y36(e.yB),t.Y36(b.H7),t.Y36(t.aQg),t.Y36(t.Qsj),t.Y36(f.PC,10),t.Y36(e.wY),t.Y36(t.Lbi))},C.\u0275dir=t.lG2({type:C,features:[t.qOj]}),C})();const c=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"];let E=(()=>{class C extends u{constructor(){super(...arguments),this.inputs=c}}return C.\u0275fac=function(){let B;return function(H){return(B||(B=t.n5z(C)))(H||C)}}(),C.\u0275dir=t.lG2({type:C,selectors:[["","ngStyle",""],["","ngStyle.xs",""],["","ngStyle.sm",""],["","ngStyle.md",""],["","ngStyle.lg",""],["","ngStyle.xl",""],["","ngStyle.lt-sm",""],["","ngStyle.lt-md",""],["","ngStyle.lt-lg",""],["","ngStyle.lt-xl",""],["","ngStyle.gt-xs",""],["","ngStyle.gt-sm",""],["","ngStyle.gt-md",""],["","ngStyle.gt-lg",""]],inputs:{ngStyle:"ngStyle","ngStyle.xs":"ngStyle.xs","ngStyle.sm":"ngStyle.sm","ngStyle.md":"ngStyle.md","ngStyle.lg":"ngStyle.lg","ngStyle.xl":"ngStyle.xl","ngStyle.lt-sm":"ngStyle.lt-sm","ngStyle.lt-md":"ngStyle.lt-md","ngStyle.lt-lg":"ngStyle.lt-lg","ngStyle.lt-xl":"ngStyle.lt-xl","ngStyle.gt-xs":"ngStyle.gt-xs","ngStyle.gt-sm":"ngStyle.gt-sm","ngStyle.gt-md":"ngStyle.gt-md","ngStyle.gt-lg":"ngStyle.gt-lg"},features:[t.qOj]}),C})();function I(C,B){return C.map(i).filter(H=>!!H).map(H=>(B&&(H.value=B(H.value)),H)).reduce(r,{})}let n=(()=>{class C{}return C.\u0275fac=function(P){return new(P||C)},C.\u0275mod=t.oAB({type:C}),C.\u0275inj=t.cJS({imports:[[e.IR]]}),C})()},7093:(Ve,j,p)=>{"use strict";p.d(j,{Wh:()=>Wt,ae:()=>Pe,xw:()=>w,yH:()=>_});var t=p(5e3),e=p(226),f=p(3270),M=p(9042),b=(p(7579),p(2722));let d=(()=>{class Oe extends f.QI{buildStyles(be,{display:pt}){const mt=(0,M.Ar)(be);return Object.assign(Object.assign({},mt),{display:"none"===pt?pt:mt.display})}}return Oe.\u0275fac=function(){let ce;return function(pt){return(ce||(ce=t.n5z(Oe)))(pt||Oe)}}(),Oe.\u0275prov=t.Yz7({token:Oe,factory:Oe.\u0275fac,providedIn:"root"}),Oe})();const N=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let A=(()=>{class Oe extends f.iR{constructor(be,pt,mt,Ht,it){super(be,mt,pt,Ht),this._config=it,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(be){var pt;const Ht=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=null!==(pt=D.get(Ht))&&void 0!==pt?pt:new Map,D.set(Ht,this.styleCache),this.currentValue!==be&&(this.addStyles(be,{display:Ht}),this.currentValue=be)}}return Oe.\u0275fac=function(be){return new(be||Oe)(t.Y36(t.SBq),t.Y36(f.RK),t.Y36(d),t.Y36(f.yB),t.Y36(f.WU))},Oe.\u0275dir=t.lG2({type:Oe,features:[t.qOj]}),Oe})(),w=(()=>{class Oe extends A{constructor(){super(...arguments),this.inputs=N}}return Oe.\u0275fac=function(){let ce;return function(pt){return(ce||(ce=t.n5z(Oe)))(pt||Oe)}}(),Oe.\u0275dir=t.lG2({type:Oe,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},features:[t.qOj]}),Oe})();const D=new Map;let i=(()=>{class Oe extends f.QI{constructor(be){super(),this.layoutConfig=be}buildStyles(be,pt){let[mt,Ht,...it]=be.split(" "),Re=it.join(" ");const tt=pt.direction.indexOf("column")>-1?"column":"row",Xe=(0,M.tj)(tt)?"max-width":"max-height",Se=(0,M.tj)(tt)?"min-width":"min-height",Ge=String(Re).indexOf("calc")>-1,at=Ge||"auto"===Re,st=String(Re).indexOf("%")>-1&&!Ge,bt=String(Re).indexOf("px")>-1||String(Re).indexOf("rem")>-1||String(Re).indexOf("em")>-1||String(Re).indexOf("vw")>-1||String(Re).indexOf("vh")>-1;let gi=Ge||bt;mt="0"==mt?0:mt,Ht="0"==Ht?0:Ht;const qt=!mt&&!Ht;let Xt={};const qi={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Re||""){case"":const fi=!1!==this.layoutConfig.useColumnBasisZero;Re="row"===tt?"0%":fi?"0.000000001px":"auto";break;case"initial":case"nogrow":mt=0,Re="auto";break;case"grow":Re="100%";break;case"noshrink":Ht=0,Re="auto";break;case"auto":break;case"none":mt=0,Ht=0,Re="auto";break;default:!gi&&!st&&!isNaN(Re)&&(Re+="%"),"0%"===Re&&(gi=!0),"0px"===Re&&(Re="0%"),Xt=(0,M.kt)(qi,Ge?{"flex-grow":mt,"flex-shrink":Ht,"flex-basis":gi?Re:"100%"}:{flex:`${mt} ${Ht} ${gi?Re:"100%"}`})}return Xt.flex||Xt["flex-grow"]||(Xt=(0,M.kt)(qi,Ge?{"flex-grow":mt,"flex-shrink":Ht,"flex-basis":Re}:{flex:`${mt} ${Ht} ${Re}`})),"0%"!==Re&&"0px"!==Re&&"0.000000001px"!==Re&&"auto"!==Re&&(Xt[Se]=qt||gi&&mt?Re:null,Xt[Xe]=qt||!at&&Ht?Re:null),Xt[Se]||Xt[Xe]?pt.hasWrap&&(Xt[Ge?"flex-basis":"flex"]=Xt[Xe]?Ge?Xt[Xe]:`${mt} ${Ht} ${Xt[Xe]}`:Ge?Xt[Se]:`${mt} ${Ht} ${Xt[Se]}`):Xt=(0,M.kt)(qi,Ge?{"flex-grow":mt,"flex-shrink":Ht,"flex-basis":Re}:{flex:`${mt} ${Ht} ${Re}`}),(0,M.kt)(Xt,{"box-sizing":"border-box"})}}return Oe.\u0275fac=function(be){return new(be||Oe)(t.LFG(f.WU))},Oe.\u0275prov=t.Yz7({token:Oe,factory:Oe.\u0275fac,providedIn:"root"}),Oe})();const r=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let c=(()=>{class Oe extends f.iR{constructor(be,pt,mt,Ht,it){super(be,Ht,pt,it),this.layoutConfig=mt,this.marshal=it,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(be){this.flexShrink=be||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(be){this.flexGrow=be||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,b.R)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,b.R)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(be){const mt=be.value.split(" ");this.direction=mt[0],this.wrap=void 0!==mt[1]&&"wrap"===mt[1],this.triggerUpdate()}updateWithValue(be){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const mt=this.direction,Ht=mt.startsWith("row"),it=this.wrap;Ht&&it?this.styleCache=v:Ht&&!it?this.styleCache=E:!Ht&&it?this.styleCache=n:!Ht&&!it&&(this.styleCache=I);const Re=String(be).replace(";",""),tt=(0,f.Ot)(Re,this.flexGrow,this.flexShrink);this.addStyles(tt.join(" "),{direction:mt,hasWrap:it})}triggerReflow(){const be=this.activatedValue;if(void 0!==be){const pt=(0,f.Ot)(be+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,pt.join(" "))}}}return Oe.\u0275fac=function(be){return new(be||Oe)(t.Y36(t.SBq),t.Y36(f.RK),t.Y36(f.WU),t.Y36(i),t.Y36(f.yB))},Oe.\u0275dir=t.lG2({type:Oe,inputs:{shrink:["fxShrink","shrink"],grow:["fxGrow","grow"]},features:[t.qOj]}),Oe})(),_=(()=>{class Oe extends c{constructor(){super(...arguments),this.inputs=r}}return Oe.\u0275fac=function(){let ce;return function(pt){return(ce||(ce=t.n5z(Oe)))(pt||Oe)}}(),Oe.\u0275dir=t.lG2({type:Oe,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},features:[t.qOj]}),Oe})();const E=new Map,I=new Map,v=new Map,n=new Map;let ut=(()=>{class Oe extends f.QI{buildStyles(be,pt){const mt={},[Ht,it]=be.split(" ");switch(Ht){case"center":mt["justify-content"]="center";break;case"space-around":mt["justify-content"]="space-around";break;case"space-between":mt["justify-content"]="space-between";break;case"space-evenly":mt["justify-content"]="space-evenly";break;case"end":case"flex-end":mt["justify-content"]="flex-end";break;default:mt["justify-content"]="flex-start"}switch(it){case"start":case"flex-start":mt["align-items"]=mt["align-content"]="flex-start";break;case"center":mt["align-items"]=mt["align-content"]="center";break;case"end":case"flex-end":mt["align-items"]=mt["align-content"]="flex-end";break;case"space-between":mt["align-content"]="space-between",mt["align-items"]="stretch";break;case"space-around":mt["align-content"]="space-around",mt["align-items"]="stretch";break;case"baseline":mt["align-content"]="stretch",mt["align-items"]="baseline";break;default:mt["align-items"]=mt["align-content"]="stretch"}return(0,M.kt)(mt,{display:pt.inline?"inline-flex":"flex","flex-direction":pt.layout,"box-sizing":"border-box","max-width":"stretch"===it?(0,M.tj)(pt.layout)?null:"100%":null,"max-height":"stretch"===it&&(0,M.tj)(pt.layout)?"100%":null})}}return Oe.\u0275fac=function(){let ce;return function(pt){return(ce||(ce=t.n5z(Oe)))(pt||Oe)}}(),Oe.\u0275prov=t.Yz7({token:Oe,factory:Oe.\u0275fac,providedIn:"root"}),Oe})();const ht=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let ui=(()=>{class Oe extends f.iR{constructor(be,pt,mt,Ht){super(be,mt,pt,Ht),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,b.R)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(be){const pt=this.layout||"row",mt=this.inline;"row"===pt&&mt?this.styleCache=Ct:"row"!==pt||mt?"row-reverse"===pt&&mt?this.styleCache=yt:"row-reverse"!==pt||mt?"column"===pt&&mt?this.styleCache=et:"column"!==pt||mt?"column-reverse"===pt&&mt?this.styleCache=ei:"column-reverse"===pt&&!mt&&(this.styleCache=Nt):this.styleCache=hi:this.styleCache=xt:this.styleCache=Gt,this.addStyles(be,{layout:pt,inline:mt})}onLayoutChange(be){const pt=be.value.split(" ");this.layout=pt[0],this.inline=be.value.includes("inline"),M.iQ.find(mt=>mt===this.layout)||(this.layout="row"),this.triggerUpdate()}}return Oe.\u0275fac=function(be){return new(be||Oe)(t.Y36(t.SBq),t.Y36(f.RK),t.Y36(ut),t.Y36(f.yB))},Oe.\u0275dir=t.lG2({type:Oe,features:[t.qOj]}),Oe})(),Wt=(()=>{class Oe extends ui{constructor(){super(...arguments),this.inputs=ht}}return Oe.\u0275fac=function(){let ce;return function(pt){return(ce||(ce=t.n5z(Oe)))(pt||Oe)}}(),Oe.\u0275dir=t.lG2({type:Oe,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},features:[t.qOj]}),Oe})();const Gt=new Map,hi=new Map,xt=new Map,Nt=new Map,Ct=new Map,et=new Map,yt=new Map,ei=new Map;let Pe=(()=>{class Oe{}return Oe.\u0275fac=function(be){return new(be||Oe)},Oe.\u0275mod=t.oAB({type:Oe}),Oe.\u0275inj=t.cJS({imports:[[f.IR,e.vT]]}),Oe})()},3075:(Ve,j,p)=>{"use strict";p.d(j,{Cf:()=>Z,F:()=>jt,Fd:()=>Oa,Fj:()=>k,JJ:()=>Ae,JL:()=>le,JU:()=>N,NI:()=>Ei,On:()=>Dn,Q7:()=>Ur,UX:()=>gt,Zs:()=>ba,_Y:()=>Xn,a5:()=>ve,kI:()=>$,oH:()=>Va,qQ:()=>oa,qu:()=>Di,sg:()=>cr,u:()=>hn,u5:()=>oi,wV:()=>Si});var t=p(5e3),e=p(9808),f=p(457),M=p(4128),a=p(4004);let b=(()=>{class Ke{constructor(He,Lt){this._renderer=He,this._elementRef=Lt,this.onChange=yi=>{},this.onTouched=()=>{}}setProperty(He,Lt){this._renderer.setProperty(this._elementRef.nativeElement,He,Lt)}registerOnTouched(He){this.onTouched=He}registerOnChange(He){this.onChange=He}setDisabledState(He){this.setProperty("disabled",He)}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(t.Qsj),t.Y36(t.SBq))},Ke.\u0275dir=t.lG2({type:Ke}),Ke})(),d=(()=>{class Ke extends b{}return Ke.\u0275fac=function(){let We;return function(Lt){return(We||(We=t.n5z(Ke)))(Lt||Ke)}}(),Ke.\u0275dir=t.lG2({type:Ke,features:[t.qOj]}),Ke})();const N=new t.OlP("NgValueAccessor"),w={provide:N,useExisting:(0,t.Gpc)(()=>k),multi:!0},L=new t.OlP("CompositionEventMode");let k=(()=>{class Ke extends b{constructor(He,Lt,yi){super(He,Lt),this._compositionMode=yi,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function D(){const Ke=(0,e.q)()?(0,e.q)().getUserAgent():"";return/android (\d+)/.test(Ke.toLowerCase())}())}writeValue(He){this.setProperty("value",null==He?"":He)}_handleInput(He){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(He)}_compositionStart(){this._composing=!0}_compositionEnd(He){this._composing=!1,this._compositionMode&&this.onChange(He)}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(t.Qsj),t.Y36(t.SBq),t.Y36(L,8))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(He,Lt){1&He&&t.NdJ("input",function(Yi){return Lt._handleInput(Yi.target.value)})("blur",function(){return Lt.onTouched()})("compositionstart",function(){return Lt._compositionStart()})("compositionend",function(Yi){return Lt._compositionEnd(Yi.target.value)})},features:[t._Bn([w]),t.qOj]}),Ke})();function S(Ke){return null==Ke||0===Ke.length}function U(Ke){return null!=Ke&&"number"==typeof Ke.length}const Z=new t.OlP("NgValidators"),Y=new t.OlP("NgAsyncValidators"),ne=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class ${static min(We){return de(We)}static max(We){return te(We)}static required(We){return ie(We)}static requiredTrue(We){return oe(We)}static email(We){return function X(Ke){return S(Ke.value)||ne.test(Ke.value)?null:{email:!0}}(We)}static minLength(We){return function me(Ke){return We=>S(We.value)||!U(We.value)?null:We.value.lengthU(We.value)&&We.value.length>Ke?{maxlength:{requiredLength:Ke,actualLength:We.value.length}}:null}(We)}static pattern(We){return function i(Ke){if(!Ke)return r;let We,He;return"string"==typeof Ke?(He="","^"!==Ke.charAt(0)&&(He+="^"),He+=Ke,"$"!==Ke.charAt(Ke.length-1)&&(He+="$"),We=new RegExp(He)):(He=Ke.toString(),We=Ke),Lt=>{if(S(Lt.value))return null;const yi=Lt.value;return We.test(yi)?null:{pattern:{requiredPattern:He,actualValue:yi}}}}(We)}static nullValidator(We){return null}static compose(We){return n(We)}static composeAsync(We){return B(We)}}function de(Ke){return We=>{if(S(We.value)||S(Ke))return null;const He=parseFloat(We.value);return!isNaN(He)&&He{if(S(We.value)||S(Ke))return null;const He=parseFloat(We.value);return!isNaN(He)&&He>Ke?{max:{max:Ke,actual:We.value}}:null}}function ie(Ke){return S(Ke.value)?{required:!0}:null}function oe(Ke){return!0===Ke.value?null:{required:!0}}function r(Ke){return null}function u(Ke){return null!=Ke}function c(Ke){const We=(0,t.QGY)(Ke)?(0,f.D)(Ke):Ke;return(0,t.CqO)(We),We}function _(Ke){let We={};return Ke.forEach(He=>{We=null!=He?Object.assign(Object.assign({},We),He):We}),0===Object.keys(We).length?null:We}function E(Ke,We){return We.map(He=>He(Ke))}function v(Ke){return Ke.map(We=>function I(Ke){return!Ke.validate}(We)?We:He=>We.validate(He))}function n(Ke){if(!Ke)return null;const We=Ke.filter(u);return 0==We.length?null:function(He){return _(E(He,We))}}function C(Ke){return null!=Ke?n(v(Ke)):null}function B(Ke){if(!Ke)return null;const We=Ke.filter(u);return 0==We.length?null:function(He){const Lt=E(He,We).map(c);return(0,M.D)(Lt).pipe((0,a.U)(_))}}function P(Ke){return null!=Ke?B(v(Ke)):null}function H(Ke,We){return null===Ke?[We]:Array.isArray(Ke)?[...Ke,We]:[Ke,We]}function q(Ke){return Ke._rawValidators}function he(Ke){return Ke._rawAsyncValidators}function _e(Ke){return Ke?Array.isArray(Ke)?Ke:[Ke]:[]}function Ne(Ke,We){return Array.isArray(Ke)?Ke.includes(We):Ke===We}function we(Ke,We){const He=_e(We);return _e(Ke).forEach(yi=>{Ne(He,yi)||He.push(yi)}),He}function Q(Ke,We){return _e(We).filter(He=>!Ne(Ke,He))}class Ue{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_setValidators(We){this._rawValidators=We||[],this._composedValidatorFn=C(this._rawValidators)}_setAsyncValidators(We){this._rawAsyncValidators=We||[],this._composedAsyncValidatorFn=P(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(We){this._onDestroyCallbacks.push(We)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(We=>We()),this._onDestroyCallbacks=[]}reset(We){this.control&&this.control.reset(We)}hasError(We,He){return!!this.control&&this.control.hasError(We,He)}getError(We,He){return this.control?this.control.getError(We,He):null}}class ve extends Ue{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class V extends Ue{get formDirective(){return null}get path(){return null}}class De{constructor(We){this._cd=We}is(We){var He,Lt,yi;return"submitted"===We?!!(null===(He=this._cd)||void 0===He?void 0:He.submitted):!!(null===(yi=null===(Lt=this._cd)||void 0===Lt?void 0:Lt.control)||void 0===yi?void 0:yi[We])}}let Ae=(()=>{class Ke extends De{constructor(He){super(He)}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(ve,2))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(He,Lt){2&He&&t.ekj("ng-untouched",Lt.is("untouched"))("ng-touched",Lt.is("touched"))("ng-pristine",Lt.is("pristine"))("ng-dirty",Lt.is("dirty"))("ng-valid",Lt.is("valid"))("ng-invalid",Lt.is("invalid"))("ng-pending",Lt.is("pending"))},features:[t.qOj]}),Ke})(),le=(()=>{class Ke extends De{constructor(He){super(He)}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(V,10))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(He,Lt){2&He&&t.ekj("ng-untouched",Lt.is("untouched"))("ng-touched",Lt.is("touched"))("ng-pristine",Lt.is("pristine"))("ng-dirty",Lt.is("dirty"))("ng-valid",Lt.is("valid"))("ng-invalid",Lt.is("invalid"))("ng-pending",Lt.is("pending"))("ng-submitted",Lt.is("submitted"))},features:[t.qOj]}),Ke})();function Ct(Ke,We){return[...We.path,Ke]}function et(Ke,We){Pe(Ke,We),We.valueAccessor.writeValue(Ke.value),function ce(Ke,We){We.valueAccessor.registerOnChange(He=>{Ke._pendingValue=He,Ke._pendingChange=!0,Ke._pendingDirty=!0,"change"===Ke.updateOn&&pt(Ke,We)})}(Ke,We),function mt(Ke,We){const He=(Lt,yi)=>{We.valueAccessor.writeValue(Lt),yi&&We.viewToModelUpdate(Lt)};Ke.registerOnChange(He),We._registerOnDestroy(()=>{Ke._unregisterOnChange(He)})}(Ke,We),function be(Ke,We){We.valueAccessor.registerOnTouched(()=>{Ke._pendingTouched=!0,"blur"===Ke.updateOn&&Ke._pendingChange&&pt(Ke,We),"submit"!==Ke.updateOn&&Ke.markAsTouched()})}(Ke,We),function Yt(Ke,We){if(We.valueAccessor.setDisabledState){const He=Lt=>{We.valueAccessor.setDisabledState(Lt)};Ke.registerOnDisabledChange(He),We._registerOnDestroy(()=>{Ke._unregisterOnDisabledChange(He)})}}(Ke,We)}function yt(Ke,We,He=!0){const Lt=()=>{};We.valueAccessor&&(We.valueAccessor.registerOnChange(Lt),We.valueAccessor.registerOnTouched(Lt)),Oe(Ke,We),Ke&&(We._invokeOnDestroyCallbacks(),Ke._registerOnCollectionChange(()=>{}))}function ei(Ke,We){Ke.forEach(He=>{He.registerOnValidatorChange&&He.registerOnValidatorChange(We)})}function Pe(Ke,We){const He=q(Ke);null!==We.validator?Ke.setValidators(H(He,We.validator)):"function"==typeof He&&Ke.setValidators([He]);const Lt=he(Ke);null!==We.asyncValidator?Ke.setAsyncValidators(H(Lt,We.asyncValidator)):"function"==typeof Lt&&Ke.setAsyncValidators([Lt]);const yi=()=>Ke.updateValueAndValidity();ei(We._rawValidators,yi),ei(We._rawAsyncValidators,yi)}function Oe(Ke,We){let He=!1;if(null!==Ke){if(null!==We.validator){const yi=q(Ke);if(Array.isArray(yi)&&yi.length>0){const Yi=yi.filter(Fn=>Fn!==We.validator);Yi.length!==yi.length&&(He=!0,Ke.setValidators(Yi))}}if(null!==We.asyncValidator){const yi=he(Ke);if(Array.isArray(yi)&&yi.length>0){const Yi=yi.filter(Fn=>Fn!==We.asyncValidator);Yi.length!==yi.length&&(He=!0,Ke.setAsyncValidators(Yi))}}}const Lt=()=>{};return ei(We._rawValidators,Lt),ei(We._rawAsyncValidators,Lt),He}function pt(Ke,We){Ke._pendingDirty&&Ke.markAsDirty(),Ke.setValue(Ke._pendingValue,{emitModelToViewChange:!1}),We.viewToModelUpdate(Ke._pendingValue),Ke._pendingChange=!1}function Ht(Ke,We){Pe(Ke,We)}function Ge(Ke,We){if(!Ke.hasOwnProperty("model"))return!1;const He=Ke.model;return!!He.isFirstChange()||!Object.is(We,He.currentValue)}function st(Ke,We){Ke._syncPendingControls(),We.forEach(He=>{const Lt=He.control;"submit"===Lt.updateOn&&Lt._pendingChange&&(He.viewToModelUpdate(Lt._pendingValue),Lt._pendingChange=!1)})}function bt(Ke,We){if(!We)return null;let He,Lt,yi;return Array.isArray(We),We.forEach(Yi=>{Yi.constructor===k?He=Yi:function at(Ke){return Object.getPrototypeOf(Ke.constructor)===d}(Yi)?Lt=Yi:yi=Yi}),yi||Lt||He||null}function gi(Ke,We){const He=Ke.indexOf(We);He>-1&&Ke.splice(He,1)}const qi="VALID",fi="INVALID",si="PENDING",$i="DISABLED";function zi(Ke){return(pe(Ke)?Ke.validators:Ke)||null}function Ui(Ke){return Array.isArray(Ke)?C(Ke):Ke||null}function ze(Ke,We){return(pe(We)?We.asyncValidators:Ke)||null}function Tt(Ke){return Array.isArray(Ke)?P(Ke):Ke||null}function pe(Ke){return null!=Ke&&!Array.isArray(Ke)&&"object"==typeof Ke}const je=Ke=>Ke instanceof Ei,_t=Ke=>Ke instanceof Xi,re=Ke=>Ke instanceof Zi;function qe(Ke){return je(Ke)?Ke.value:Ke.getRawValue()}function Mt(Ke,We){const He=_t(Ke),Lt=Ke.controls;if(!(He?Object.keys(Lt):Lt).length)throw new t.vHH(1e3,"");if(!Lt[We])throw new t.vHH(1001,"")}function zt(Ke,We){_t(Ke),Ke._forEachChild((Lt,yi)=>{if(void 0===We[yi])throw new t.vHH(1002,"")})}class bi{constructor(We,He){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=!1,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._rawValidators=We,this._rawAsyncValidators=He,this._composedValidatorFn=Ui(this._rawValidators),this._composedAsyncValidatorFn=Tt(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn}set validator(We){this._rawValidators=this._composedValidatorFn=We}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(We){this._rawAsyncValidators=this._composedAsyncValidatorFn=We}get parent(){return this._parent}get valid(){return this.status===qi}get invalid(){return this.status===fi}get pending(){return this.status==si}get disabled(){return this.status===$i}get enabled(){return this.status!==$i}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(We){this._rawValidators=We,this._composedValidatorFn=Ui(We)}setAsyncValidators(We){this._rawAsyncValidators=We,this._composedAsyncValidatorFn=Tt(We)}addValidators(We){this.setValidators(we(We,this._rawValidators))}addAsyncValidators(We){this.setAsyncValidators(we(We,this._rawAsyncValidators))}removeValidators(We){this.setValidators(Q(We,this._rawValidators))}removeAsyncValidators(We){this.setAsyncValidators(Q(We,this._rawAsyncValidators))}hasValidator(We){return Ne(this._rawValidators,We)}hasAsyncValidator(We){return Ne(this._rawAsyncValidators,We)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(We={}){this.touched=!0,this._parent&&!We.onlySelf&&this._parent.markAsTouched(We)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(We=>We.markAllAsTouched())}markAsUntouched(We={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(He=>{He.markAsUntouched({onlySelf:!0})}),this._parent&&!We.onlySelf&&this._parent._updateTouched(We)}markAsDirty(We={}){this.pristine=!1,this._parent&&!We.onlySelf&&this._parent.markAsDirty(We)}markAsPristine(We={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(He=>{He.markAsPristine({onlySelf:!0})}),this._parent&&!We.onlySelf&&this._parent._updatePristine(We)}markAsPending(We={}){this.status=si,!1!==We.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!We.onlySelf&&this._parent.markAsPending(We)}disable(We={}){const He=this._parentMarkedDirty(We.onlySelf);this.status=$i,this.errors=null,this._forEachChild(Lt=>{Lt.disable(Object.assign(Object.assign({},We),{onlySelf:!0}))}),this._updateValue(),!1!==We.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},We),{skipPristineCheck:He})),this._onDisabledChange.forEach(Lt=>Lt(!0))}enable(We={}){const He=this._parentMarkedDirty(We.onlySelf);this.status=qi,this._forEachChild(Lt=>{Lt.enable(Object.assign(Object.assign({},We),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:We.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},We),{skipPristineCheck:He})),this._onDisabledChange.forEach(Lt=>Lt(!1))}_updateAncestors(We){this._parent&&!We.onlySelf&&(this._parent.updateValueAndValidity(We),We.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(We){this._parent=We}updateValueAndValidity(We={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===qi||this.status===si)&&this._runAsyncValidator(We.emitEvent)),!1!==We.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!We.onlySelf&&this._parent.updateValueAndValidity(We)}_updateTreeValidity(We={emitEvent:!0}){this._forEachChild(He=>He._updateTreeValidity(We)),this.updateValueAndValidity({onlySelf:!0,emitEvent:We.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?$i:qi}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(We){if(this.asyncValidator){this.status=si,this._hasOwnPendingAsyncValidator=!0;const He=c(this.asyncValidator(this));this._asyncValidationSubscription=He.subscribe(Lt=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(Lt,{emitEvent:We})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(We,He={}){this.errors=We,this._updateControlsErrors(!1!==He.emitEvent)}get(We){return function Bi(Ke,We,He){if(null==We||(Array.isArray(We)||(We=We.split(He)),Array.isArray(We)&&0===We.length))return null;let Lt=Ke;return We.forEach(yi=>{Lt=_t(Lt)?Lt.controls.hasOwnProperty(yi)?Lt.controls[yi]:null:re(Lt)&&Lt.at(yi)||null}),Lt}(this,We,".")}getError(We,He){const Lt=He?this.get(He):this;return Lt&&Lt.errors?Lt.errors[We]:null}hasError(We,He){return!!this.getError(We,He)}get root(){let We=this;for(;We._parent;)We=We._parent;return We}_updateControlsErrors(We){this.status=this._calculateStatus(),We&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(We)}_initObservables(){this.valueChanges=new t.vpe,this.statusChanges=new t.vpe}_calculateStatus(){return this._allControlsDisabled()?$i:this.errors?fi:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(si)?si:this._anyControlsHaveStatus(fi)?fi:qi}_anyControlsHaveStatus(We){return this._anyControls(He=>He.status===We)}_anyControlsDirty(){return this._anyControls(We=>We.dirty)}_anyControlsTouched(){return this._anyControls(We=>We.touched)}_updatePristine(We={}){this.pristine=!this._anyControlsDirty(),this._parent&&!We.onlySelf&&this._parent._updatePristine(We)}_updateTouched(We={}){this.touched=this._anyControlsTouched(),this._parent&&!We.onlySelf&&this._parent._updateTouched(We)}_isBoxedValue(We){return"object"==typeof We&&null!==We&&2===Object.keys(We).length&&"value"in We&&"disabled"in We}_registerOnCollectionChange(We){this._onCollectionChange=We}_setUpdateStrategy(We){pe(We)&&null!=We.updateOn&&(this._updateOn=We.updateOn)}_parentMarkedDirty(We){return!We&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}}class Ei extends bi{constructor(We=null,He,Lt){super(zi(He),ze(Lt,He)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(We),this._setUpdateStrategy(He),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),pe(He)&&He.initialValueIsDefault&&(this.defaultValue=this._isBoxedValue(We)?We.value:We)}setValue(We,He={}){this.value=this._pendingValue=We,this._onChange.length&&!1!==He.emitModelToViewChange&&this._onChange.forEach(Lt=>Lt(this.value,!1!==He.emitViewToModelChange)),this.updateValueAndValidity(He)}patchValue(We,He={}){this.setValue(We,He)}reset(We=this.defaultValue,He={}){this._applyFormState(We),this.markAsPristine(He),this.markAsUntouched(He),this.setValue(this.value,He),this._pendingChange=!1}_updateValue(){}_anyControls(We){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(We){this._onChange.push(We)}_unregisterOnChange(We){gi(this._onChange,We)}registerOnDisabledChange(We){this._onDisabledChange.push(We)}_unregisterOnDisabledChange(We){gi(this._onDisabledChange,We)}_forEachChild(We){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(We){this._isBoxedValue(We)?(this.value=this._pendingValue=We.value,We.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=We}}class Xi extends bi{constructor(We,He,Lt){super(zi(He),ze(Lt,He)),this.controls=We,this._initObservables(),this._setUpdateStrategy(He),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(We,He){return this.controls[We]?this.controls[We]:(this.controls[We]=He,He.setParent(this),He._registerOnCollectionChange(this._onCollectionChange),He)}addControl(We,He,Lt={}){this.registerControl(We,He),this.updateValueAndValidity({emitEvent:Lt.emitEvent}),this._onCollectionChange()}removeControl(We,He={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),delete this.controls[We],this.updateValueAndValidity({emitEvent:He.emitEvent}),this._onCollectionChange()}setControl(We,He,Lt={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),delete this.controls[We],He&&this.registerControl(We,He),this.updateValueAndValidity({emitEvent:Lt.emitEvent}),this._onCollectionChange()}contains(We){return this.controls.hasOwnProperty(We)&&this.controls[We].enabled}setValue(We,He={}){zt(this,We),Object.keys(We).forEach(Lt=>{Mt(this,Lt),this.controls[Lt].setValue(We[Lt],{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He)}patchValue(We,He={}){null!=We&&(Object.keys(We).forEach(Lt=>{this.controls[Lt]&&this.controls[Lt].patchValue(We[Lt],{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He))}reset(We={},He={}){this._forEachChild((Lt,yi)=>{Lt.reset(We[yi],{onlySelf:!0,emitEvent:He.emitEvent})}),this._updatePristine(He),this._updateTouched(He),this.updateValueAndValidity(He)}getRawValue(){return this._reduceChildren({},(We,He,Lt)=>(We[Lt]=qe(He),We))}_syncPendingControls(){let We=this._reduceChildren(!1,(He,Lt)=>!!Lt._syncPendingControls()||He);return We&&this.updateValueAndValidity({onlySelf:!0}),We}_forEachChild(We){Object.keys(this.controls).forEach(He=>{const Lt=this.controls[He];Lt&&We(Lt,He)})}_setUpControls(){this._forEachChild(We=>{We.setParent(this),We._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(We){for(const He of Object.keys(this.controls)){const Lt=this.controls[He];if(this.contains(He)&&We(Lt))return!0}return!1}_reduceValue(){return this._reduceChildren({},(We,He,Lt)=>((He.enabled||this.disabled)&&(We[Lt]=He.value),We))}_reduceChildren(We,He){let Lt=We;return this._forEachChild((yi,Yi)=>{Lt=He(Lt,yi,Yi)}),Lt}_allControlsDisabled(){for(const We of Object.keys(this.controls))if(this.controls[We].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}}class Zi extends bi{constructor(We,He,Lt){super(zi(He),ze(Lt,He)),this.controls=We,this._initObservables(),this._setUpdateStrategy(He),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(We){return this.controls[We]}push(We,He={}){this.controls.push(We),this._registerControl(We),this.updateValueAndValidity({emitEvent:He.emitEvent}),this._onCollectionChange()}insert(We,He,Lt={}){this.controls.splice(We,0,He),this._registerControl(He),this.updateValueAndValidity({emitEvent:Lt.emitEvent})}removeAt(We,He={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),this.controls.splice(We,1),this.updateValueAndValidity({emitEvent:He.emitEvent})}setControl(We,He,Lt={}){this.controls[We]&&this.controls[We]._registerOnCollectionChange(()=>{}),this.controls.splice(We,1),He&&(this.controls.splice(We,0,He),this._registerControl(He)),this.updateValueAndValidity({emitEvent:Lt.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(We,He={}){zt(this,We),We.forEach((Lt,yi)=>{Mt(this,yi),this.at(yi).setValue(Lt,{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He)}patchValue(We,He={}){null!=We&&(We.forEach((Lt,yi)=>{this.at(yi)&&this.at(yi).patchValue(Lt,{onlySelf:!0,emitEvent:He.emitEvent})}),this.updateValueAndValidity(He))}reset(We=[],He={}){this._forEachChild((Lt,yi)=>{Lt.reset(We[yi],{onlySelf:!0,emitEvent:He.emitEvent})}),this._updatePristine(He),this._updateTouched(He),this.updateValueAndValidity(He)}getRawValue(){return this.controls.map(We=>qe(We))}clear(We={}){this.controls.length<1||(this._forEachChild(He=>He._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:We.emitEvent}))}_syncPendingControls(){let We=this.controls.reduce((He,Lt)=>!!Lt._syncPendingControls()||He,!1);return We&&this.updateValueAndValidity({onlySelf:!0}),We}_forEachChild(We){this.controls.forEach((He,Lt)=>{We(He,Lt)})}_updateValue(){this.value=this.controls.filter(We=>We.enabled||this.disabled).map(We=>We.value)}_anyControls(We){return this.controls.some(He=>He.enabled&&We(He))}_setUpControls(){this._forEachChild(We=>this._registerControl(We))}_allControlsDisabled(){for(const We of this.controls)if(We.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(We){We.setParent(this),We._registerOnCollectionChange(this._onCollectionChange)}}const sn={provide:V,useExisting:(0,t.Gpc)(()=>jt)},gn=(()=>Promise.resolve(null))();let jt=(()=>{class Ke extends V{constructor(He,Lt){super(),this.submitted=!1,this._directives=new Set,this.ngSubmit=new t.vpe,this.form=new Xi({},C(He),P(Lt))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(He){gn.then(()=>{const Lt=this._findContainer(He.path);He.control=Lt.registerControl(He.name,He.control),et(He.control,He),He.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(He)})}getControl(He){return this.form.get(He.path)}removeControl(He){gn.then(()=>{const Lt=this._findContainer(He.path);Lt&&Lt.removeControl(He.name),this._directives.delete(He)})}addFormGroup(He){gn.then(()=>{const Lt=this._findContainer(He.path),yi=new Xi({});Ht(yi,He),Lt.registerControl(He.name,yi),yi.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(He){gn.then(()=>{const Lt=this._findContainer(He.path);Lt&&Lt.removeControl(He.name)})}getFormGroup(He){return this.form.get(He.path)}updateModel(He,Lt){gn.then(()=>{this.form.get(He.path).setValue(Lt)})}setValue(He){this.control.setValue(He)}onSubmit(He){return this.submitted=!0,st(this.form,this._directives),this.ngSubmit.emit(He),!1}onReset(){this.resetForm()}resetForm(He){this.form.reset(He),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(He){return He.pop(),He.length?this.form.get(He):this.form}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(Z,10),t.Y36(Y,10))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(He,Lt){1&He&&t.NdJ("submit",function(Yi){return Lt.onSubmit(Yi)})("reset",function(){return Lt.onReset()})},inputs:{options:["ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[t._Bn([sn]),t.qOj]}),Ke})();const fn={provide:ve,useExisting:(0,t.Gpc)(()=>Dn)},Bn=(()=>Promise.resolve(null))();let Dn=(()=>{class Ke extends ve{constructor(He,Lt,yi,Yi,Fn){super(),this._changeDetectorRef=Fn,this.control=new Ei,this._registered=!1,this.update=new t.vpe,this._parent=He,this._setValidators(Lt),this._setAsyncValidators(yi),this.valueAccessor=bt(0,Yi)}ngOnChanges(He){if(this._checkForErrors(),!this._registered||"name"in He){if(this._registered&&(this._checkName(),this.formDirective)){const Lt=He.name.previousValue;this.formDirective.removeControl({name:Lt,path:this._getPath(Lt)})}this._setUpControl()}"isDisabled"in He&&this._updateDisabled(He),Ge(He,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(He){this.viewModel=He,this.update.emit(He)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){et(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(He){Bn.then(()=>{var Lt;this.control.setValue(He,{emitViewToModelChange:!1}),null===(Lt=this._changeDetectorRef)||void 0===Lt||Lt.markForCheck()})}_updateDisabled(He){const Lt=He.isDisabled.currentValue,yi=""===Lt||Lt&&"false"!==Lt;Bn.then(()=>{var Yi;yi&&!this.control.disabled?this.control.disable():!yi&&this.control.disabled&&this.control.enable(),null===(Yi=this._changeDetectorRef)||void 0===Yi||Yi.markForCheck()})}_getPath(He){return this._parent?Ct(He,this._parent):[He]}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(V,9),t.Y36(Z,10),t.Y36(Y,10),t.Y36(N,10),t.Y36(t.sBO,8))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:["disabled","isDisabled"],model:["ngModel","model"],options:["ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[t._Bn([fn]),t.qOj,t.TTD]}),Ke})(),Xn=(()=>{class Ke{}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]}),Ke})();const _n={provide:N,useExisting:(0,t.Gpc)(()=>Si),multi:!0};let Si=(()=>{class Ke extends d{writeValue(He){this.setProperty("value",null==He?"":He)}registerOnChange(He){this.onChange=Lt=>{He(""==Lt?null:parseFloat(Lt))}}}return Ke.\u0275fac=function(){let We;return function(Lt){return(We||(We=t.n5z(Ke)))(Lt||Ke)}}(),Ke.\u0275dir=t.lG2({type:Ke,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(He,Lt){1&He&&t.NdJ("input",function(Yi){return Lt.onChange(Yi.target.value)})("blur",function(){return Lt.onTouched()})},features:[t._Bn([_n]),t.qOj]}),Ke})(),jn=(()=>{class Ke{}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275mod=t.oAB({type:Ke}),Ke.\u0275inj=t.cJS({}),Ke})();const _a=new t.OlP("NgModelWithFormControlWarning"),va={provide:ve,useExisting:(0,t.Gpc)(()=>Va)};let Va=(()=>{class Ke extends ve{constructor(He,Lt,yi,Yi){super(),this._ngModelWarningConfig=Yi,this.update=new t.vpe,this._ngModelWarningSent=!1,this._setValidators(He),this._setAsyncValidators(Lt),this.valueAccessor=bt(0,yi)}set isDisabled(He){}ngOnChanges(He){if(this._isControlChanged(He)){const Lt=He.form.previousValue;Lt&&yt(Lt,this,!1),et(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})}Ge(He,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&yt(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(He){this.viewModel=He,this.update.emit(He)}_isControlChanged(He){return He.hasOwnProperty("form")}}return Ke._ngModelWarningSentOnce=!1,Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(Z,10),t.Y36(Y,10),t.Y36(N,10),t.Y36(_a,8))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","formControl",""]],inputs:{form:["formControl","form"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[t._Bn([va]),t.qOj,t.TTD]}),Ke})();const za={provide:V,useExisting:(0,t.Gpc)(()=>cr)};let cr=(()=>{class Ke extends V{constructor(He,Lt){super(),this.validators=He,this.asyncValidators=Lt,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new t.vpe,this._setValidators(He),this._setAsyncValidators(Lt)}ngOnChanges(He){this._checkFormPresent(),He.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(Oe(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(He){const Lt=this.form.get(He.path);return et(Lt,He),Lt.updateValueAndValidity({emitEvent:!1}),this.directives.push(He),Lt}getControl(He){return this.form.get(He.path)}removeControl(He){yt(He.control||null,He,!1),gi(this.directives,He)}addFormGroup(He){this._setUpFormContainer(He)}removeFormGroup(He){this._cleanUpFormContainer(He)}getFormGroup(He){return this.form.get(He.path)}addFormArray(He){this._setUpFormContainer(He)}removeFormArray(He){this._cleanUpFormContainer(He)}getFormArray(He){return this.form.get(He.path)}updateModel(He,Lt){this.form.get(He.path).setValue(Lt)}onSubmit(He){return this.submitted=!0,st(this.form,this.directives),this.ngSubmit.emit(He),!1}onReset(){this.resetForm()}resetForm(He){this.form.reset(He),this.submitted=!1}_updateDomValue(){this.directives.forEach(He=>{const Lt=He.control,yi=this.form.get(He.path);Lt!==yi&&(yt(Lt||null,He),je(yi)&&(et(yi,He),He.control=yi))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(He){const Lt=this.form.get(He.path);Ht(Lt,He),Lt.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(He){if(this.form){const Lt=this.form.get(He.path);Lt&&function it(Ke,We){return Oe(Ke,We)}(Lt,He)&&Lt.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){Pe(this.form,this),this._oldForm&&Oe(this._oldForm,this)}_checkFormPresent(){}}return Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(Z,10),t.Y36(Y,10))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","formGroup",""]],hostBindings:function(He,Lt){1&He&&t.NdJ("submit",function(Yi){return Lt.onSubmit(Yi)})("reset",function(){return Lt.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[t._Bn([za]),t.qOj,t.TTD]}),Ke})();const mr={provide:ve,useExisting:(0,t.Gpc)(()=>hn)};let hn=(()=>{class Ke extends ve{constructor(He,Lt,yi,Yi,Fn){super(),this._ngModelWarningConfig=Fn,this._added=!1,this.update=new t.vpe,this._ngModelWarningSent=!1,this._parent=He,this._setValidators(Lt),this._setAsyncValidators(yi),this.valueAccessor=bt(0,Yi)}set isDisabled(He){}ngOnChanges(He){this._added||this._setUpControl(),Ge(He,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(He){this.viewModel=He,this.update.emit(He)}get path(){return Ct(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return Ke._ngModelWarningSentOnce=!1,Ke.\u0275fac=function(He){return new(He||Ke)(t.Y36(V,13),t.Y36(Z,10),t.Y36(Y,10),t.Y36(N,10),t.Y36(_a,8))},Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","formControlName",""]],inputs:{name:["formControlName","name"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[t._Bn([mr]),t.qOj,t.TTD]}),Ke})();function xa(Ke){return"number"==typeof Ke?Ke:parseFloat(Ke)}let nr=(()=>{class Ke{constructor(){this._validator=r}ngOnChanges(He){if(this.inputName in He){const Lt=this.normalizeInput(He[this.inputName].currentValue);this._enabled=this.enabled(Lt),this._validator=this._enabled?this.createValidator(Lt):r,this._onChange&&this._onChange()}}validate(He){return this._validator(He)}registerOnValidatorChange(He){this._onChange=He}enabled(He){return null!=He}}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275dir=t.lG2({type:Ke,features:[t.TTD]}),Ke})();const Aa={provide:Z,useExisting:(0,t.Gpc)(()=>Oa),multi:!0};let Oa=(()=>{class Ke extends nr{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=He=>xa(He),this.createValidator=He=>te(He)}}return Ke.\u0275fac=function(){let We;return function(Lt){return(We||(We=t.n5z(Ke)))(Lt||Ke)}}(),Ke.\u0275dir=t.lG2({type:Ke,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(He,Lt){2&He&&t.uIk("max",Lt._enabled?Lt.max:null)},inputs:{max:"max"},features:[t._Bn([Aa]),t.qOj]}),Ke})();const $n={provide:Z,useExisting:(0,t.Gpc)(()=>oa),multi:!0};let oa=(()=>{class Ke extends nr{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=He=>xa(He),this.createValidator=He=>de(He)}}return Ke.\u0275fac=function(){let We;return function(Lt){return(We||(We=t.n5z(Ke)))(Lt||Ke)}}(),Ke.\u0275dir=t.lG2({type:Ke,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(He,Lt){2&He&&t.uIk("min",Lt._enabled?Lt.min:null)},inputs:{min:"min"},features:[t._Bn([$n]),t.qOj]}),Ke})();const Br={provide:Z,useExisting:(0,t.Gpc)(()=>Ur),multi:!0},Dr={provide:Z,useExisting:(0,t.Gpc)(()=>ba),multi:!0};let Ur=(()=>{class Ke extends nr{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=He=>function ya(Ke){return null!=Ke&&!1!==Ke&&"false"!=`${Ke}`}(He),this.createValidator=He=>ie}enabled(He){return He}}return Ke.\u0275fac=function(){let We;return function(Lt){return(We||(We=t.n5z(Ke)))(Lt||Ke)}}(),Ke.\u0275dir=t.lG2({type:Ke,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(He,Lt){2&He&&t.uIk("required",Lt._enabled?"":null)},inputs:{required:"required"},features:[t._Bn([Br]),t.qOj]}),Ke})(),ba=(()=>{class Ke extends Ur{constructor(){super(...arguments),this.createValidator=He=>oe}}return Ke.\u0275fac=function(){let We;return function(Lt){return(We||(We=t.n5z(Ke)))(Lt||Ke)}}(),Ke.\u0275dir=t.lG2({type:Ke,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(He,Lt){2&He&&t.uIk("required",Lt._enabled?"":null)},features:[t._Bn([Dr]),t.qOj]}),Ke})(),Ot=(()=>{class Ke{}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275mod=t.oAB({type:Ke}),Ke.\u0275inj=t.cJS({imports:[[jn]]}),Ke})(),oi=(()=>{class Ke{}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275mod=t.oAB({type:Ke}),Ke.\u0275inj=t.cJS({imports:[Ot]}),Ke})(),gt=(()=>{class Ke{static withConfig(He){return{ngModule:Ke,providers:[{provide:_a,useValue:He.warnOnNgModelWithFormControl}]}}}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275mod=t.oAB({type:Ke}),Ke.\u0275inj=t.cJS({imports:[Ot]}),Ke})(),Di=(()=>{class Ke{group(He,Lt=null){const yi=this._reduceControls(He);let Rr,Yi=null,Fn=null;return null!=Lt&&(function Qt(Ke){return void 0!==Ke.asyncValidators||void 0!==Ke.validators||void 0!==Ke.updateOn}(Lt)?(Yi=null!=Lt.validators?Lt.validators:null,Fn=null!=Lt.asyncValidators?Lt.asyncValidators:null,Rr=null!=Lt.updateOn?Lt.updateOn:void 0):(Yi=null!=Lt.validator?Lt.validator:null,Fn=null!=Lt.asyncValidator?Lt.asyncValidator:null)),new Xi(yi,{asyncValidators:Fn,updateOn:Rr,validators:Yi})}control(He,Lt,yi){return new Ei(He,Lt,yi)}array(He,Lt,yi){const Yi=He.map(Fn=>this._createControl(Fn));return new Zi(Yi,Lt,yi)}_reduceControls(He){const Lt={};return Object.keys(He).forEach(yi=>{Lt[yi]=this._createControl(He[yi])}),Lt}_createControl(He){return je(He)||_t(He)||re(He)?He:Array.isArray(He)?this.control(He[0],He.length>1?He[1]:null,He.length>2?He[2]:null):this.control(He)}}return Ke.\u0275fac=function(He){return new(He||Ke)},Ke.\u0275prov=t.Yz7({token:Ke,factory:Ke.\u0275fac,providedIn:gt}),Ke})()},1079:(Ve,j,p)=>{"use strict";p.d(j,{Bb:()=>Q,XC:()=>n,ZL:()=>_e});var t=p(5664),e=p(3191),f=p(5e3),M=p(508),a=p(727),b=p(7579),d=p(9770),N=p(6451),h=p(9646),A=p(4968),w=p(925),D=p(9808),L=p(9776),k=p(5303),S=p(1159),U=p(7429),Z=p(3075),Y=p(7322),ne=p(8675),$=p(3900),de=p(5698),te=p(9300),ie=p(4004),oe=p(8505),X=p(4086),me=p(226);const y=["panel"];function i(Ue,ve){if(1&Ue&&(f.TgZ(0,"div",0,1),f.Hsn(2),f.qZA()),2&Ue){const V=ve.id,De=f.oxw();f.Q6J("id",De.id)("ngClass",De._classList),f.uIk("aria-label",De.ariaLabel||null)("aria-labelledby",De._getPanelAriaLabelledby(V))}}const r=["*"];let u=0;class c{constructor(ve,V){this.source=ve,this.option=V}}const _=(0,M.Kr)(class{}),E=new f.OlP("mat-autocomplete-default-options",{providedIn:"root",factory:function I(){return{autoActiveFirstOption:!1}}});let v=(()=>{class Ue extends _{constructor(V,De,dt,Ie){super(),this._changeDetectorRef=V,this._elementRef=De,this._activeOptionChanges=a.w0.EMPTY,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new f.vpe,this.opened=new f.vpe,this.closed=new f.vpe,this.optionActivated=new f.vpe,this._classList={},this.id="mat-autocomplete-"+u++,this.inertGroups=(null==Ie?void 0:Ie.SAFARI)||!1,this._autoActiveFirstOption=!!dt.autoActiveFirstOption}get isOpen(){return this._isOpen&&this.showPanel}get autoActiveFirstOption(){return this._autoActiveFirstOption}set autoActiveFirstOption(V){this._autoActiveFirstOption=(0,e.Ig)(V)}set classList(V){this._classList=V&&V.length?(0,e.du)(V).reduce((De,dt)=>(De[dt]=!0,De),{}):{},this._setVisibilityClasses(this._classList),this._elementRef.nativeElement.className=""}ngAfterContentInit(){this._keyManager=new t.s1(this.options).withWrap(),this._activeOptionChanges=this._keyManager.change.subscribe(V=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[V]||null})}),this._setVisibility()}ngOnDestroy(){this._activeOptionChanges.unsubscribe()}_setScrollTop(V){this.panel&&(this.panel.nativeElement.scrollTop=V)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._setVisibilityClasses(this._classList),this._changeDetectorRef.markForCheck()}_emitSelectEvent(V){const De=new c(this,V);this.optionSelected.emit(De)}_getPanelAriaLabelledby(V){return this.ariaLabel?null:this.ariaLabelledby?(V?V+" ":"")+this.ariaLabelledby:V}_setVisibilityClasses(V){V[this._visibleClass]=this.showPanel,V[this._hiddenClass]=!this.showPanel}}return Ue.\u0275fac=function(V){return new(V||Ue)(f.Y36(f.sBO),f.Y36(f.SBq),f.Y36(E),f.Y36(w.t4))},Ue.\u0275dir=f.lG2({type:Ue,viewQuery:function(V,De){if(1&V&&(f.Gf(f.Rgc,7),f.Gf(y,5)),2&V){let dt;f.iGM(dt=f.CRH())&&(De.template=dt.first),f.iGM(dt=f.CRH())&&(De.panel=dt.first)}},inputs:{ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:"autoActiveFirstOption",panelWidth:"panelWidth",classList:["class","classList"]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},features:[f.qOj]}),Ue})(),n=(()=>{class Ue extends v{constructor(){super(...arguments),this._visibleClass="mat-autocomplete-visible",this._hiddenClass="mat-autocomplete-hidden"}}return Ue.\u0275fac=function(){let ve;return function(De){return(ve||(ve=f.n5z(Ue)))(De||Ue)}}(),Ue.\u0275cmp=f.Xpm({type:Ue,selectors:[["mat-autocomplete"]],contentQueries:function(V,De,dt){if(1&V&&(f.Suo(dt,M.K7,5),f.Suo(dt,M.ey,5)),2&V){let Ie;f.iGM(Ie=f.CRH())&&(De.optionGroups=Ie),f.iGM(Ie=f.CRH())&&(De.options=Ie)}},hostAttrs:[1,"mat-autocomplete"],inputs:{disableRipple:"disableRipple"},exportAs:["matAutocomplete"],features:[f._Bn([{provide:M.HF,useExisting:Ue}]),f.qOj],ngContentSelectors:r,decls:1,vars:0,consts:[["role","listbox",1,"mat-autocomplete-panel",3,"id","ngClass"],["panel",""]],template:function(V,De){1&V&&(f.F$t(),f.YNc(0,i,3,4,"ng-template"))},directives:[D.mk],styles:[".mat-autocomplete-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;visibility:hidden;max-width:none;max-height:256px;position:relative;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mat-autocomplete-panel.mat-autocomplete-visible{visibility:visible}.mat-autocomplete-panel.mat-autocomplete-hidden{visibility:hidden}.mat-autocomplete-panel-above .mat-autocomplete-panel{border-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.mat-autocomplete-panel .mat-divider-horizontal{margin-top:-1px}.cdk-high-contrast-active .mat-autocomplete-panel{outline:solid 1px}mat-autocomplete{display:none}\n"],encapsulation:2,changeDetection:0}),Ue})();const C=new f.OlP("mat-autocomplete-scroll-strategy"),P={provide:C,deps:[L.aV],useFactory:function B(Ue){return()=>Ue.scrollStrategies.reposition()}},H={provide:Z.JU,useExisting:(0,f.Gpc)(()=>_e),multi:!0};let he=(()=>{class Ue{constructor(V,De,dt,Ie,Ae,le,Te,xe,W,ee,ue){this._element=V,this._overlay=De,this._viewContainerRef=dt,this._zone=Ie,this._changeDetectorRef=Ae,this._dir=Te,this._formField=xe,this._document=W,this._viewportRuler=ee,this._defaults=ue,this._componentDestroyed=!1,this._autocompleteDisabled=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=a.w0.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new b.x,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._overlayAttached=!1,this.optionSelections=(0,d.P)(()=>{const Ce=this.autocomplete?this.autocomplete.options:null;return Ce?Ce.changes.pipe((0,ne.O)(Ce),(0,$.w)(()=>(0,N.T)(...Ce.map(Le=>Le.onSelectionChange)))):this._zone.onStable.pipe((0,de.q)(1),(0,$.w)(()=>this.optionSelections))}),this._scrollStrategy=le}get autocompleteDisabled(){return this._autocompleteDisabled}set autocompleteDisabled(V){this._autocompleteDisabled=(0,e.Ig)(V)}ngAfterViewInit(){const V=this._getWindow();void 0!==V&&this._zone.runOutsideAngular(()=>V.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(V){V.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const V=this._getWindow();void 0!==V&&V.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}openPanel(){this._attachOverlay(),this._floatLabel()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._isOpen=this._overlayAttached=!1,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._componentDestroyed||this._changeDetectorRef.detectChanges())}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,N.T)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,te.h)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,te.h)(()=>this._overlayAttached)):(0,h.of)()).pipe((0,ie.U)(V=>V instanceof M.rN?V:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,N.T)((0,A.R)(this._document,"click"),(0,A.R)(this._document,"auxclick"),(0,A.R)(this._document,"touchend")).pipe((0,te.h)(V=>{const De=(0,w.sA)(V),dt=this._formField?this._formField._elementRef.nativeElement:null,Ie=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&De!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!dt||!dt.contains(De))&&(!Ie||!Ie.contains(De))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(De)}))}writeValue(V){Promise.resolve().then(()=>this._setTriggerValue(V))}registerOnChange(V){this._onChange=V}registerOnTouched(V){this._onTouched=V}setDisabledState(V){this._element.nativeElement.disabled=V}_handleKeydown(V){const De=V.keyCode,dt=(0,S.Vb)(V);if(De===S.hY&&!dt&&V.preventDefault(),this.activeOption&&De===S.K5&&this.panelOpen&&!dt)this.activeOption._selectViaInteraction(),this._resetActiveItem(),V.preventDefault();else if(this.autocomplete){const Ie=this.autocomplete._keyManager.activeItem,Ae=De===S.LH||De===S.JH;De===S.Mf||Ae&&!dt&&this.panelOpen?this.autocomplete._keyManager.onKeydown(V):Ae&&this._canOpen()&&this.openPanel(),(Ae||this.autocomplete._keyManager.activeItem!==Ie)&&this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0)}}_handleInput(V){let De=V.target,dt=De.value;"number"===De.type&&(dt=""==dt?null:parseFloat(dt)),this._previousValue!==dt&&(this._previousValue=dt,this._onChange(dt),this._canOpen()&&this._document.activeElement===V.target&&this.openPanel())}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this.openPanel()}_floatLabel(V=!1){this._formField&&"auto"===this._formField.floatLabel&&(V?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField.floatLabel="auto",this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const V=this._zone.onStable.pipe((0,de.q)(1)),De=this.autocomplete.options.changes.pipe((0,oe.b)(()=>this._positionStrategy.reapplyLastPosition()),(0,X.g)(0));return(0,N.T)(V,De).pipe((0,$.w)(()=>(this._zone.run(()=>{const dt=this.panelOpen;this._resetActiveItem(),this.autocomplete._setVisibility(),this._changeDetectorRef.detectChanges(),this.panelOpen&&(this._overlayRef.updatePosition(),dt!==this.panelOpen&&this.autocomplete.opened.emit())}),this.panelClosingActions)),(0,de.q)(1)).subscribe(dt=>this._setValueAndClose(dt))}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_setTriggerValue(V){const De=this.autocomplete&&this.autocomplete.displayWith?this.autocomplete.displayWith(V):V,dt=null!=De?De:"";this._formField?this._formField._control.value=dt:this._element.nativeElement.value=dt,this._previousValue=dt}_setValueAndClose(V){const De=V&&V.source;De&&(this._clearPreviousSelectedOption(De),this._setTriggerValue(De.value),this._onChange(De.value),this.autocomplete._emitSelectEvent(De),this._element.nativeElement.focus()),this.closePanel()}_clearPreviousSelectedOption(V){this.autocomplete.options.forEach(De=>{De!==V&&De.selected&&De.deselect()})}_attachOverlay(){var V;let De=this._overlayRef;De?(this._positionStrategy.setOrigin(this._getConnectedElement()),De.updateSize({width:this._getPanelWidth()})):(this._portal=new U.UE(this.autocomplete.template,this._viewContainerRef,{id:null===(V=this._formField)||void 0===V?void 0:V.getLabelId()}),De=this._overlay.create(this._getOverlayConfig()),this._overlayRef=De,De.keydownEvents().subscribe(Ie=>{(Ie.keyCode===S.hY&&!(0,S.Vb)(Ie)||Ie.keyCode===S.LH&&(0,S.Vb)(Ie,"altKey"))&&(this._closeKeyEventStream.next(),this._resetActiveItem(),Ie.stopPropagation(),Ie.preventDefault())}),this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&De&&De.updateSize({width:this._getPanelWidth()})})),De&&!De.hasAttached()&&(De.attach(this._portal),this._closingActionsSubscription=this._subscribeToClosingActions());const dt=this.panelOpen;this.autocomplete._setVisibility(),this.autocomplete._isOpen=this._overlayAttached=!0,this.panelOpen&&dt!==this.panelOpen&&this.autocomplete.opened.emit()}_getOverlayConfig(){var V;return new L.X_({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir,panelClass:null===(V=this._defaults)||void 0===V?void 0:V.overlayPanelClass})}_getOverlayPosition(){const V=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(V),this._positionStrategy=V,V}_setStrategyPositions(V){const De=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],dt=this._aboveClass,Ie=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:dt},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:dt}];let Ae;Ae="above"===this.position?Ie:"below"===this.position?De:[...De,...Ie],V.withPositions(Ae)}_getConnectedElement(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element}_getPanelWidth(){return this.autocomplete.panelWidth||this._getHostWidth()}_getHostWidth(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width}_resetActiveItem(){const V=this.autocomplete;V.autoActiveFirstOption?V._keyManager.setFirstItemActive():V._keyManager.setActiveItem(-1)}_canOpen(){const V=this._element.nativeElement;return!V.readOnly&&!V.disabled&&!this._autocompleteDisabled}_getWindow(){var V;return(null===(V=this._document)||void 0===V?void 0:V.defaultView)||window}_scrollToOption(V){const De=this.autocomplete,dt=(0,M.CB)(V,De.options,De.optionGroups);if(0===V&&1===dt)De._setScrollTop(0);else if(De.panel){const Ie=De.options.toArray()[V];if(Ie){const Ae=Ie._getHostElement(),le=(0,M.jH)(Ae.offsetTop,Ae.offsetHeight,De._getScrollTop(),De.panel.nativeElement.offsetHeight);De._setScrollTop(le)}}}}return Ue.\u0275fac=function(V){return new(V||Ue)(f.Y36(f.SBq),f.Y36(L.aV),f.Y36(f.s_b),f.Y36(f.R0b),f.Y36(f.sBO),f.Y36(C),f.Y36(me.Is,8),f.Y36(Y.G_,9),f.Y36(D.K0,8),f.Y36(k.rL),f.Y36(E,8))},Ue.\u0275dir=f.lG2({type:Ue,inputs:{autocomplete:["matAutocomplete","autocomplete"],position:["matAutocompletePosition","position"],connectedTo:["matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:["autocomplete","autocompleteAttribute"],autocompleteDisabled:["matAutocompleteDisabled","autocompleteDisabled"]},features:[f.TTD]}),Ue})(),_e=(()=>{class Ue extends he{constructor(){super(...arguments),this._aboveClass="mat-autocomplete-panel-above"}}return Ue.\u0275fac=function(){let ve;return function(De){return(ve||(ve=f.n5z(Ue)))(De||Ue)}}(),Ue.\u0275dir=f.lG2({type:Ue,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-autocomplete-trigger"],hostVars:7,hostBindings:function(V,De){1&V&&f.NdJ("focusin",function(){return De._handleFocus()})("blur",function(){return De._onTouched()})("input",function(Ie){return De._handleInput(Ie)})("keydown",function(Ie){return De._handleKeydown(Ie)})("click",function(){return De._handleClick()}),2&V&&f.uIk("autocomplete",De.autocompleteAttribute)("role",De.autocompleteDisabled?null:"combobox")("aria-autocomplete",De.autocompleteDisabled?null:"list")("aria-activedescendant",De.panelOpen&&De.activeOption?De.activeOption.id:null)("aria-expanded",De.autocompleteDisabled?null:De.panelOpen.toString())("aria-owns",De.autocompleteDisabled||!De.panelOpen||null==De.autocomplete?null:De.autocomplete.id)("aria-haspopup",De.autocompleteDisabled?null:"listbox")},exportAs:["matAutocompleteTrigger"],features:[f._Bn([H]),f.qOj]}),Ue})(),Q=(()=>{class Ue{}return Ue.\u0275fac=function(V){return new(V||Ue)},Ue.\u0275mod=f.oAB({type:Ue}),Ue.\u0275inj=f.cJS({providers:[P],imports:[[L.U8,M.Ng,M.BQ,D.ez],k.ZD,M.Ng,M.BQ]}),Ue})()},7544:(Ve,j,p)=>{"use strict";p.d(j,{g:()=>A,k:()=>h});var t=p(5e3),e=p(508),f=p(5664),M=p(3191),a=p(6360);let b=0;const d=(0,e.Id)(class{}),N="mat-badge-content";let h=(()=>{class w extends d{constructor(L,k,S,U,Z){super(),this._ngZone=L,this._elementRef=k,this._ariaDescriber=S,this._renderer=U,this._animationMode=Z,this._color="primary",this._overlap=!0,this.position="above after",this.size="medium",this._id=b++,this._isInitialized=!1}get color(){return this._color}set color(L){this._setColor(L),this._color=L}get overlap(){return this._overlap}set overlap(L){this._overlap=(0,M.Ig)(L)}get content(){return this._content}set content(L){this._updateRenderedContent(L)}get description(){return this._description}set description(L){this._updateHostAriaDescription(L)}get hidden(){return this._hidden}set hidden(L){this._hidden=(0,M.Ig)(L)}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&this._renderer.destroyNode(this._badgeElement),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_createBadgeElement(){const L=this._renderer.createElement("span"),k="mat-badge-active";return L.setAttribute("id",`mat-badge-content-${this._id}`),L.setAttribute("aria-hidden","true"),L.classList.add(N),"NoopAnimations"===this._animationMode&&L.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(L),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{L.classList.add(k)})}):L.classList.add(k),L}_updateRenderedContent(L){const k=`${null!=L?L:""}`.trim();this._isInitialized&&k&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=k),this._content=k}_updateHostAriaDescription(L){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),L&&this._ariaDescriber.describe(this._elementRef.nativeElement,L),this._description=L}_setColor(L){const k=this._elementRef.nativeElement.classList;k.remove(`mat-badge-${this._color}`),L&&k.add(`mat-badge-${L}`)}_clearExistingBadges(){const L=this._elementRef.nativeElement.querySelectorAll(`:scope > .${N}`);for(const k of Array.from(L))k!==this._badgeElement&&k.remove()}}return w.\u0275fac=function(L){return new(L||w)(t.Y36(t.R0b),t.Y36(t.SBq),t.Y36(f.$s),t.Y36(t.Qsj),t.Y36(a.Qb,8))},w.\u0275dir=t.lG2({type:w,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(L,k){2&L&&t.ekj("mat-badge-overlap",k.overlap)("mat-badge-above",k.isAbove())("mat-badge-below",!k.isAbove())("mat-badge-before",!k.isAfter())("mat-badge-after",k.isAfter())("mat-badge-small","small"===k.size)("mat-badge-medium","medium"===k.size)("mat-badge-large","large"===k.size)("mat-badge-hidden",k.hidden||!k.content)("mat-badge-disabled",k.disabled)},inputs:{disabled:["matBadgeDisabled","disabled"],color:["matBadgeColor","color"],overlap:["matBadgeOverlap","overlap"],position:["matBadgePosition","position"],content:["matBadge","content"],description:["matBadgeDescription","description"],size:["matBadgeSize","size"],hidden:["matBadgeHidden","hidden"]},features:[t.qOj]}),w})(),A=(()=>{class w{}return w.\u0275fac=function(L){return new(L||w)},w.\u0275mod=t.oAB({type:w}),w.\u0275inj=t.cJS({imports:[[f.rt,e.BQ],e.BQ]}),w})()},7423:(Ve,j,p)=>{"use strict";p.d(j,{lW:()=>w,ot:()=>L});var t=p(5e3),e=p(508),f=p(6360),M=p(5664);const a=["mat-button",""],b=["*"],h=["mat-button","mat-flat-button","mat-icon-button","mat-raised-button","mat-stroked-button","mat-mini-fab","mat-fab"],A=(0,e.pj)((0,e.Id)((0,e.Kr)(class{constructor(k){this._elementRef=k}})));let w=(()=>{class k extends A{constructor(U,Z,Y){super(U),this._focusMonitor=Z,this._animationMode=Y,this.isRoundButton=this._hasHostAttributes("mat-fab","mat-mini-fab"),this.isIconButton=this._hasHostAttributes("mat-icon-button");for(const ne of h)this._hasHostAttributes(ne)&&this._getHostElement().classList.add(ne);U.nativeElement.classList.add("mat-button-base"),this.isRoundButton&&(this.color="accent")}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(U,Z){U?this._focusMonitor.focusVia(this._getHostElement(),U,Z):this._getHostElement().focus(Z)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...U){return U.some(Z=>this._getHostElement().hasAttribute(Z))}}return k.\u0275fac=function(U){return new(U||k)(t.Y36(t.SBq),t.Y36(M.tE),t.Y36(f.Qb,8))},k.\u0275cmp=t.Xpm({type:k,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-icon-button",""],["button","mat-fab",""],["button","mat-mini-fab",""],["button","mat-stroked-button",""],["button","mat-flat-button",""]],viewQuery:function(U,Z){if(1&U&&t.Gf(e.wG,5),2&U){let Y;t.iGM(Y=t.CRH())&&(Z.ripple=Y.first)}},hostAttrs:[1,"mat-focus-indicator"],hostVars:5,hostBindings:function(U,Z){2&U&&(t.uIk("disabled",Z.disabled||null),t.ekj("_mat-animation-noopable","NoopAnimations"===Z._animationMode)("mat-button-disabled",Z.disabled))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color"},exportAs:["matButton"],features:[t.qOj],attrs:a,ngContentSelectors:b,decls:4,vars:5,consts:[[1,"mat-button-wrapper"],["matRipple","",1,"mat-button-ripple",3,"matRippleDisabled","matRippleCentered","matRippleTrigger"],[1,"mat-button-focus-overlay"]],template:function(U,Z){1&U&&(t.F$t(),t.TgZ(0,"span",0),t.Hsn(1),t.qZA(),t._UZ(2,"span",1)(3,"span",2)),2&U&&(t.xp6(2),t.ekj("mat-button-ripple-round",Z.isRoundButton||Z.isIconButton),t.Q6J("matRippleDisabled",Z._isRippleDisabled())("matRippleCentered",Z.isIconButton)("matRippleTrigger",Z._getHostElement()))},directives:[e.wG],styles:[".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button.mat-button-disabled,.mat-icon-button.mat-button-disabled,.mat-stroked-button.mat-button-disabled,.mat-flat-button.mat-button-disabled{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button.mat-button-disabled{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab.mat-button-disabled{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab.mat-button-disabled{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:inline-flex;justify-content:center;align-items:center;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}.cdk-high-contrast-active .mat-button-base.cdk-keyboard-focused,.cdk-high-contrast-active .mat-button-base.cdk-program-focused{outline:solid 3px}\n"],encapsulation:2,changeDetection:0}),k})(),L=(()=>{class k{}return k.\u0275fac=function(U){return new(U||k)},k.\u0275mod=t.oAB({type:k}),k.\u0275inj=t.cJS({imports:[[e.si,e.BQ],e.BQ]}),k})()},9224:(Ve,j,p)=>{"use strict";p.d(j,{$j:()=>D,QW:()=>oe,a8:()=>de,dk:()=>te,dn:()=>A,n5:()=>w});var t=p(5e3),e=p(6360),f=p(508);const M=["*",[["mat-card-footer"]]],a=["*","mat-card-footer"],b=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],d=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"];let A=(()=>{class X{}return X.\u0275fac=function(y){return new(y||X)},X.\u0275dir=t.lG2({type:X,selectors:[["mat-card-content"],["","mat-card-content",""],["","matCardContent",""]],hostAttrs:[1,"mat-card-content"]}),X})(),w=(()=>{class X{}return X.\u0275fac=function(y){return new(y||X)},X.\u0275dir=t.lG2({type:X,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-card-title"]}),X})(),D=(()=>{class X{}return X.\u0275fac=function(y){return new(y||X)},X.\u0275dir=t.lG2({type:X,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-card-subtitle"]}),X})(),de=(()=>{class X{constructor(y){this._animationMode=y}}return X.\u0275fac=function(y){return new(y||X)(t.Y36(e.Qb,8))},X.\u0275cmp=t.Xpm({type:X,selectors:[["mat-card"]],hostAttrs:[1,"mat-card","mat-focus-indicator"],hostVars:2,hostBindings:function(y,i){2&y&&t.ekj("_mat-animation-noopable","NoopAnimations"===i._animationMode)},exportAs:["matCard"],ngContentSelectors:a,decls:2,vars:0,template:function(y,i){1&y&&(t.F$t(M),t.Hsn(0),t.Hsn(1,1))},styles:[".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px;display:block;overflow:hidden}.mat-card-image img{width:100%}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions:not(.mat-card-actions-align-end) .mat-button:first-child,.mat-card-actions:not(.mat-card-actions-align-end) .mat-raised-button:first-child,.mat-card-actions:not(.mat-card-actions-align-end) .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-actions-align-end .mat-button:last-child,.mat-card-actions-align-end .mat-raised-button:last-child,.mat-card-actions-align-end .mat-stroked-button:last-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\n"],encapsulation:2,changeDetection:0}),X})(),te=(()=>{class X{}return X.\u0275fac=function(y){return new(y||X)},X.\u0275cmp=t.Xpm({type:X,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-card-header"],ngContentSelectors:d,decls:4,vars:0,consts:[[1,"mat-card-header-text"]],template:function(y,i){1&y&&(t.F$t(b),t.Hsn(0),t.TgZ(1,"div",0),t.Hsn(2,1),t.qZA(),t.Hsn(3,2))},encapsulation:2,changeDetection:0}),X})(),oe=(()=>{class X{}return X.\u0275fac=function(y){return new(y||X)},X.\u0275mod=t.oAB({type:X}),X.\u0275inj=t.cJS({imports:[[f.BQ],f.BQ]}),X})()},7446:(Ve,j,p)=>{"use strict";p.d(j,{oG:()=>Y,p9:()=>te});var t=p(3191),e=p(5e3),f=p(3075),M=p(508),a=p(6360),b=p(5664),d=p(7144);const N=["input"],h=function(ie){return{enterDuration:ie}},A=["*"],w=new e.OlP("mat-checkbox-default-options",{providedIn:"root",factory:D});function D(){return{color:"accent",clickAction:"check-indeterminate"}}let L=0;const k=D(),S={provide:f.JU,useExisting:(0,e.Gpc)(()=>Y),multi:!0};class U{}const Z=(0,M.sb)((0,M.pj)((0,M.Kr)((0,M.Id)(class{constructor(ie){this._elementRef=ie}}))));let Y=(()=>{class ie extends Z{constructor(X,me,y,i,r,u,c){super(X),this._changeDetectorRef=me,this._focusMonitor=y,this._ngZone=i,this._animationMode=u,this._options=c,this.ariaLabel="",this.ariaLabelledby=null,this._uniqueId="mat-checkbox-"+ ++L,this.id=this._uniqueId,this.labelPosition="after",this.name=null,this.change=new e.vpe,this.indeterminateChange=new e.vpe,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||k,this.color=this.defaultColor=this._options.color||k.color,this.tabIndex=parseInt(r)||0}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(X){this._required=(0,t.Ig)(X)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(X=>{X||Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}),this._syncIndeterminate(this._indeterminate)}ngAfterViewChecked(){}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}get checked(){return this._checked}set checked(X){const me=(0,t.Ig)(X);me!=this.checked&&(this._checked=me,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(X){const me=(0,t.Ig)(X);me!==this.disabled&&(this._disabled=me,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(X){const me=X!=this._indeterminate;this._indeterminate=(0,t.Ig)(X),me&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(X){this.checked=!!X}registerOnChange(X){this._controlValueAccessorChangeFn=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this.disabled=X}_getAriaChecked(){return this.checked?"true":this.indeterminate?"mixed":"false"}_transitionCheckState(X){let me=this._currentCheckState,y=this._elementRef.nativeElement;if(me!==X&&(this._currentAnimationClass.length>0&&y.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(me,X),this._currentCheckState=X,this._currentAnimationClass.length>0)){y.classList.add(this._currentAnimationClass);const i=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{y.classList.remove(i)},1e3)})}}_emitChangeEvent(){const X=new U;X.source=this,X.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(X),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_onInputClick(X){var me;const y=null===(me=this._options)||void 0===me?void 0:me.clickAction;X.stopPropagation(),this.disabled||"noop"===y?!this.disabled&&"noop"===y&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==y&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}focus(X,me){X?this._focusMonitor.focusVia(this._inputElement,X,me):this._inputElement.nativeElement.focus(me)}_onInteractionEvent(X){X.stopPropagation()}_getAnimationClassForCheckStateTransition(X,me){if("NoopAnimations"===this._animationMode)return"";let y="";switch(X){case 0:if(1===me)y="unchecked-checked";else{if(3!=me)return"";y="unchecked-indeterminate"}break;case 2:y=1===me?"unchecked-checked":"unchecked-indeterminate";break;case 1:y=2===me?"checked-unchecked":"checked-indeterminate";break;case 3:y=1===me?"indeterminate-checked":"indeterminate-unchecked"}return`mat-checkbox-anim-${y}`}_syncIndeterminate(X){const me=this._inputElement;me&&(me.nativeElement.indeterminate=X)}}return ie.\u0275fac=function(X){return new(X||ie)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(b.tE),e.Y36(e.R0b),e.$8M("tabindex"),e.Y36(a.Qb,8),e.Y36(w,8))},ie.\u0275cmp=e.Xpm({type:ie,selectors:[["mat-checkbox"]],viewQuery:function(X,me){if(1&X&&(e.Gf(N,5),e.Gf(M.wG,5)),2&X){let y;e.iGM(y=e.CRH())&&(me._inputElement=y.first),e.iGM(y=e.CRH())&&(me.ripple=y.first)}},hostAttrs:[1,"mat-checkbox"],hostVars:14,hostBindings:function(X,me){2&X&&(e.Ikx("id",me.id),e.uIk("tabindex",null)("aria-label",null)("aria-labelledby",null),e.ekj("mat-checkbox-indeterminate",me.indeterminate)("mat-checkbox-checked",me.checked)("mat-checkbox-disabled",me.disabled)("mat-checkbox-label-before","before"==me.labelPosition)("_mat-animation-noopable","NoopAnimations"===me._animationMode))},inputs:{disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],id:"id",required:"required",labelPosition:"labelPosition",name:"name",value:"value",checked:"checked",disabled:"disabled",indeterminate:"indeterminate"},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],features:[e._Bn([S]),e.qOj],ngContentSelectors:A,decls:17,vars:21,consts:[[1,"mat-checkbox-layout"],["label",""],[1,"mat-checkbox-inner-container"],["type","checkbox",1,"mat-checkbox-input","cdk-visually-hidden",3,"id","required","checked","disabled","tabIndex","change","click"],["input",""],["matRipple","",1,"mat-checkbox-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleRadius","matRippleCentered","matRippleAnimation"],[1,"mat-ripple-element","mat-checkbox-persistent-ripple"],[1,"mat-checkbox-frame"],[1,"mat-checkbox-background"],["version","1.1","focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mat-checkbox-checkmark"],["fill","none","stroke","white","d","M4.1,12.7 9,17.6 20.3,6.3",1,"mat-checkbox-checkmark-path"],[1,"mat-checkbox-mixedmark"],[1,"mat-checkbox-label",3,"cdkObserveContent"],["checkboxLabel",""],[2,"display","none"]],template:function(X,me){if(1&X&&(e.F$t(),e.TgZ(0,"label",0,1)(2,"span",2)(3,"input",3,4),e.NdJ("change",function(i){return me._onInteractionEvent(i)})("click",function(i){return me._onInputClick(i)}),e.qZA(),e.TgZ(5,"span",5),e._UZ(6,"span",6),e.qZA(),e._UZ(7,"span",7),e.TgZ(8,"span",8),e.O4$(),e.TgZ(9,"svg",9),e._UZ(10,"path",10),e.qZA(),e.kcU(),e._UZ(11,"span",11),e.qZA()(),e.TgZ(12,"span",12,13),e.NdJ("cdkObserveContent",function(){return me._onLabelTextChange()}),e.TgZ(14,"span",14),e._uU(15,"\xa0"),e.qZA(),e.Hsn(16),e.qZA()()),2&X){const y=e.MAs(1),i=e.MAs(13);e.uIk("for",me.inputId),e.xp6(2),e.ekj("mat-checkbox-inner-container-no-side-margin",!i.textContent||!i.textContent.trim()),e.xp6(1),e.Q6J("id",me.inputId)("required",me.required)("checked",me.checked)("disabled",me.disabled)("tabIndex",me.tabIndex),e.uIk("value",me.value)("name",me.name)("aria-label",me.ariaLabel||null)("aria-labelledby",me.ariaLabelledby)("aria-checked",me._getAriaChecked())("aria-describedby",me.ariaDescribedby),e.xp6(2),e.Q6J("matRippleTrigger",y)("matRippleDisabled",me._isRippleDisabled())("matRippleRadius",20)("matRippleCentered",!0)("matRippleAnimation",e.VKq(19,h,"NoopAnimations"===me._animationMode?0:150))}},directives:[M.wG,d.wD],styles:["@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{display:inline-block;transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.cdk-high-contrast-active .mat-checkbox.cdk-keyboard-focused .mat-checkbox-ripple{outline:solid 3px}.mat-checkbox-layout{-webkit-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1);-webkit-print-color-adjust:exact;color-adjust:exact}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{display:block;width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}\n"],encapsulation:2,changeDetection:0}),ie})(),de=(()=>{class ie{}return ie.\u0275fac=function(X){return new(X||ie)},ie.\u0275mod=e.oAB({type:ie}),ie.\u0275inj=e.cJS({}),ie})(),te=(()=>{class ie{}return ie.\u0275fac=function(X){return new(X||ie)},ie.\u0275mod=e.oAB({type:ie}),ie.\u0275inj=e.cJS({imports:[[M.si,M.BQ,d.Q8,de],M.BQ,de]}),ie})()},6688:(Ve,j,p)=>{"use strict";p.d(j,{HS:()=>y,Hi:()=>C,qn:()=>v});var t=p(1159),e=p(5e3),f=p(508),M=p(3191),a=p(9808),b=p(6360),d=p(7579),N=p(6451),h=p(5698),A=p(2722),w=p(8675),D=p(925),L=p(5664),k=p(449),S=p(3075),U=p(7322),Z=p(226);const Y=["*"],$=new e.OlP("MatChipRemove"),de=new e.OlP("MatChipAvatar"),te=new e.OlP("MatChipTrailingIcon");class ie{constructor(P){this._elementRef=P}}const oe=(0,f.sb)((0,f.pj)((0,f.Kr)(ie),"primary"),-1);let y=(()=>{class B extends oe{constructor(H,q,he,_e,Ne,we,Q,Ue){super(H),this._ngZone=q,this._changeDetectorRef=Ne,this._hasFocus=!1,this.chipListSelectable=!0,this._chipListMultiple=!1,this._chipListDisabled=!1,this._selected=!1,this._selectable=!0,this._disabled=!1,this._removable=!0,this._onFocus=new d.x,this._onBlur=new d.x,this.selectionChange=new e.vpe,this.destroyed=new e.vpe,this.removed=new e.vpe,this._addHostClassName(),this._chipRippleTarget=we.createElement("div"),this._chipRippleTarget.classList.add("mat-chip-ripple"),this._elementRef.nativeElement.appendChild(this._chipRippleTarget),this._chipRipple=new f.IR(this,q,this._chipRippleTarget,he),this._chipRipple.setupTriggerEvents(H),this.rippleConfig=_e||{},this._animationsDisabled="NoopAnimations"===Q,this.tabIndex=null!=Ue&&parseInt(Ue)||-1}get rippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||!!this.rippleConfig.disabled}get selected(){return this._selected}set selected(H){const q=(0,M.Ig)(H);q!==this._selected&&(this._selected=q,this._dispatchSelectionChange())}get value(){return void 0!==this._value?this._value:this._elementRef.nativeElement.textContent}set value(H){this._value=H}get selectable(){return this._selectable&&this.chipListSelectable}set selectable(H){this._selectable=(0,M.Ig)(H)}get disabled(){return this._chipListDisabled||this._disabled}set disabled(H){this._disabled=(0,M.Ig)(H)}get removable(){return this._removable}set removable(H){this._removable=(0,M.Ig)(H)}get ariaSelected(){return this.selectable&&(this._chipListMultiple||this.selected)?this.selected.toString():null}_addHostClassName(){const H="mat-basic-chip",q=this._elementRef.nativeElement;q.hasAttribute(H)||q.tagName.toLowerCase()===H?q.classList.add(H):q.classList.add("mat-standard-chip")}ngOnDestroy(){this.destroyed.emit({chip:this}),this._chipRipple._removeTriggerEvents()}select(){this._selected||(this._selected=!0,this._dispatchSelectionChange(),this._changeDetectorRef.markForCheck())}deselect(){this._selected&&(this._selected=!1,this._dispatchSelectionChange(),this._changeDetectorRef.markForCheck())}selectViaInteraction(){this._selected||(this._selected=!0,this._dispatchSelectionChange(!0),this._changeDetectorRef.markForCheck())}toggleSelected(H=!1){return this._selected=!this.selected,this._dispatchSelectionChange(H),this._changeDetectorRef.markForCheck(),this.selected}focus(){this._hasFocus||(this._elementRef.nativeElement.focus(),this._onFocus.next({chip:this})),this._hasFocus=!0}remove(){this.removable&&this.removed.emit({chip:this})}_handleClick(H){this.disabled&&H.preventDefault()}_handleKeydown(H){if(!this.disabled)switch(H.keyCode){case t.yY:case t.ZH:this.remove(),H.preventDefault();break;case t.L_:this.selectable&&this.toggleSelected(!0),H.preventDefault()}}_blur(){this._ngZone.onStable.pipe((0,h.q)(1)).subscribe(()=>{this._ngZone.run(()=>{this._hasFocus=!1,this._onBlur.next({chip:this})})})}_dispatchSelectionChange(H=!1){this.selectionChange.emit({source:this,isUserInput:H,selected:this._selected})}}return B.\u0275fac=function(H){return new(H||B)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(D.t4),e.Y36(f.Y2,8),e.Y36(e.sBO),e.Y36(a.K0),e.Y36(b.Qb,8),e.$8M("tabindex"))},B.\u0275dir=e.lG2({type:B,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(H,q,he){if(1&H&&(e.Suo(he,de,5),e.Suo(he,te,5),e.Suo(he,$,5)),2&H){let _e;e.iGM(_e=e.CRH())&&(q.avatar=_e.first),e.iGM(_e=e.CRH())&&(q.trailingIcon=_e.first),e.iGM(_e=e.CRH())&&(q.removeIcon=_e.first)}},hostAttrs:["role","option",1,"mat-chip","mat-focus-indicator"],hostVars:14,hostBindings:function(H,q){1&H&&e.NdJ("click",function(_e){return q._handleClick(_e)})("keydown",function(_e){return q._handleKeydown(_e)})("focus",function(){return q.focus()})("blur",function(){return q._blur()}),2&H&&(e.uIk("tabindex",q.disabled?null:q.tabIndex)("disabled",q.disabled||null)("aria-disabled",q.disabled.toString())("aria-selected",q.ariaSelected),e.ekj("mat-chip-selected",q.selected)("mat-chip-with-avatar",q.avatar)("mat-chip-with-trailing-icon",q.trailingIcon||q.removeIcon)("mat-chip-disabled",q.disabled)("_mat-animation-noopable",q._animationsDisabled))},inputs:{color:"color",disableRipple:"disableRipple",tabIndex:"tabIndex",selected:"selected",value:"value",selectable:"selectable",disabled:"disabled",removable:"removable"},outputs:{selectionChange:"selectionChange",destroyed:"destroyed",removed:"removed"},exportAs:["matChip"],features:[e.qOj]}),B})();const r=new e.OlP("mat-chips-default-options"),_=(0,f.FD)(class{constructor(B,P,H,q){this._defaultErrorStateMatcher=B,this._parentForm=P,this._parentFormGroup=H,this.ngControl=q}});let E=0;class I{constructor(P,H){this.source=P,this.value=H}}let v=(()=>{class B extends _{constructor(H,q,he,_e,Ne,we,Q){super(we,_e,Ne,Q),this._elementRef=H,this._changeDetectorRef=q,this._dir=he,this.controlType="mat-chip-list",this._lastDestroyedChipIndex=null,this._destroyed=new d.x,this._uid="mat-chip-list-"+E++,this._tabIndex=0,this._userTabIndex=null,this._onTouched=()=>{},this._onChange=()=>{},this._multiple=!1,this._compareWith=(Ue,ve)=>Ue===ve,this._disabled=!1,this.ariaOrientation="horizontal",this._selectable=!0,this.change=new e.vpe,this.valueChange=new e.vpe,this.ngControl&&(this.ngControl.valueAccessor=this)}get selected(){var H,q;return this.multiple?(null===(H=this._selectionModel)||void 0===H?void 0:H.selected)||[]:null===(q=this._selectionModel)||void 0===q?void 0:q.selected[0]}get role(){return this.empty?null:"listbox"}get multiple(){return this._multiple}set multiple(H){this._multiple=(0,M.Ig)(H),this._syncChipsState()}get compareWith(){return this._compareWith}set compareWith(H){this._compareWith=H,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(H){this.writeValue(H),this._value=H}get id(){return this._chipInput?this._chipInput.id:this._uid}get required(){var H,q,he,_e;return null!==(_e=null!==(H=this._required)&&void 0!==H?H:null===(he=null===(q=this.ngControl)||void 0===q?void 0:q.control)||void 0===he?void 0:he.hasValidator(S.kI.required))&&void 0!==_e&&_e}set required(H){this._required=(0,M.Ig)(H),this.stateChanges.next()}get placeholder(){return this._chipInput?this._chipInput.placeholder:this._placeholder}set placeholder(H){this._placeholder=H,this.stateChanges.next()}get focused(){return this._chipInput&&this._chipInput.focused||this._hasFocusedChip()}get empty(){return(!this._chipInput||this._chipInput.empty)&&(!this.chips||0===this.chips.length)}get shouldLabelFloat(){return!this.empty||this.focused}get disabled(){return this.ngControl?!!this.ngControl.disabled:this._disabled}set disabled(H){this._disabled=(0,M.Ig)(H),this._syncChipsState()}get selectable(){return this._selectable}set selectable(H){this._selectable=(0,M.Ig)(H),this.chips&&this.chips.forEach(q=>q.chipListSelectable=this._selectable)}set tabIndex(H){this._userTabIndex=H,this._tabIndex=H}get chipSelectionChanges(){return(0,N.T)(...this.chips.map(H=>H.selectionChange))}get chipFocusChanges(){return(0,N.T)(...this.chips.map(H=>H._onFocus))}get chipBlurChanges(){return(0,N.T)(...this.chips.map(H=>H._onBlur))}get chipRemoveChanges(){return(0,N.T)(...this.chips.map(H=>H.destroyed))}ngAfterContentInit(){this._keyManager=new L.Em(this.chips).withWrap().withVerticalOrientation().withHomeAndEnd().withHorizontalOrientation(this._dir?this._dir.value:"ltr"),this._dir&&this._dir.change.pipe((0,A.R)(this._destroyed)).subscribe(H=>this._keyManager.withHorizontalOrientation(H)),this._keyManager.tabOut.pipe((0,A.R)(this._destroyed)).subscribe(()=>{this._allowFocusEscape()}),this.chips.changes.pipe((0,w.O)(null),(0,A.R)(this._destroyed)).subscribe(()=>{this.disabled&&Promise.resolve().then(()=>{this._syncChipsState()}),this._resetChips(),this._initializeSelection(),this._updateTabIndex(),this._updateFocusForDestroyedChips(),this.stateChanges.next()})}ngOnInit(){this._selectionModel=new k.Ov(this.multiple,void 0,!1),this.stateChanges.next()}ngDoCheck(){this.ngControl&&(this.updateErrorState(),this.ngControl.disabled!==this._disabled&&(this.disabled=!!this.ngControl.disabled))}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),this.stateChanges.complete(),this._dropSubscriptions()}registerInput(H){this._chipInput=H,this._elementRef.nativeElement.setAttribute("data-mat-chip-input",H.id)}setDescribedByIds(H){this._ariaDescribedby=H.join(" ")}writeValue(H){this.chips&&this._setSelectionByValue(H,!1)}registerOnChange(H){this._onChange=H}registerOnTouched(H){this._onTouched=H}setDisabledState(H){this.disabled=H,this.stateChanges.next()}onContainerClick(H){this._originatesFromChip(H)||this.focus()}focus(H){this.disabled||this._chipInput&&this._chipInput.focused||(this.chips.length>0?(this._keyManager.setFirstItemActive(),this.stateChanges.next()):(this._focusInput(H),this.stateChanges.next()))}_focusInput(H){this._chipInput&&this._chipInput.focus(H)}_keydown(H){const q=H.target;q&&q.classList.contains("mat-chip")&&(this._keyManager.onKeydown(H),this.stateChanges.next())}_updateTabIndex(){this._tabIndex=this._userTabIndex||(0===this.chips.length?-1:0)}_updateFocusForDestroyedChips(){if(null!=this._lastDestroyedChipIndex)if(this.chips.length){const H=Math.min(this._lastDestroyedChipIndex,this.chips.length-1);this._keyManager.setActiveItem(H)}else this.focus();this._lastDestroyedChipIndex=null}_isValidIndex(H){return H>=0&&Hhe.deselect()),Array.isArray(H))H.forEach(he=>this._selectValue(he,q)),this._sortValues();else{const he=this._selectValue(H,q);he&&q&&this._keyManager.setActiveItem(he)}}_selectValue(H,q=!0){const he=this.chips.find(_e=>null!=_e.value&&this._compareWith(_e.value,H));return he&&(q?he.selectViaInteraction():he.select(),this._selectionModel.select(he)),he}_initializeSelection(){Promise.resolve().then(()=>{(this.ngControl||this._value)&&(this._setSelectionByValue(this.ngControl?this.ngControl.value:this._value,!1),this.stateChanges.next())})}_clearSelection(H){this._selectionModel.clear(),this.chips.forEach(q=>{q!==H&&q.deselect()}),this.stateChanges.next()}_sortValues(){this._multiple&&(this._selectionModel.clear(),this.chips.forEach(H=>{H.selected&&this._selectionModel.select(H)}),this.stateChanges.next())}_propagateChanges(H){let q=null;q=Array.isArray(this.selected)?this.selected.map(he=>he.value):this.selected?this.selected.value:H,this._value=q,this.change.emit(new I(this,q)),this.valueChange.emit(q),this._onChange(q),this._changeDetectorRef.markForCheck()}_blur(){this._hasFocusedChip()||this._keyManager.setActiveItem(-1),this.disabled||(this._chipInput?setTimeout(()=>{this.focused||this._markAsTouched()}):this._markAsTouched())}_markAsTouched(){this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next()}_allowFocusEscape(){-1!==this._tabIndex&&(this._tabIndex=-1,setTimeout(()=>{this._tabIndex=this._userTabIndex||0,this._changeDetectorRef.markForCheck()}))}_resetChips(){this._dropSubscriptions(),this._listenToChipsFocus(),this._listenToChipsSelection(),this._listenToChipsRemoved()}_dropSubscriptions(){this._chipFocusSubscription&&(this._chipFocusSubscription.unsubscribe(),this._chipFocusSubscription=null),this._chipBlurSubscription&&(this._chipBlurSubscription.unsubscribe(),this._chipBlurSubscription=null),this._chipSelectionSubscription&&(this._chipSelectionSubscription.unsubscribe(),this._chipSelectionSubscription=null),this._chipRemoveSubscription&&(this._chipRemoveSubscription.unsubscribe(),this._chipRemoveSubscription=null)}_listenToChipsSelection(){this._chipSelectionSubscription=this.chipSelectionChanges.subscribe(H=>{H.source.selected?this._selectionModel.select(H.source):this._selectionModel.deselect(H.source),this.multiple||this.chips.forEach(q=>{!this._selectionModel.isSelected(q)&&q.selected&&q.deselect()}),H.isUserInput&&this._propagateChanges()})}_listenToChipsFocus(){this._chipFocusSubscription=this.chipFocusChanges.subscribe(H=>{let q=this.chips.toArray().indexOf(H.chip);this._isValidIndex(q)&&this._keyManager.updateActiveItem(q),this.stateChanges.next()}),this._chipBlurSubscription=this.chipBlurChanges.subscribe(()=>{this._blur(),this.stateChanges.next()})}_listenToChipsRemoved(){this._chipRemoveSubscription=this.chipRemoveChanges.subscribe(H=>{const q=H.chip,he=this.chips.toArray().indexOf(H.chip);this._isValidIndex(he)&&q._hasFocus&&(this._lastDestroyedChipIndex=he)})}_originatesFromChip(H){let q=H.target;for(;q&&q!==this._elementRef.nativeElement;){if(q.classList.contains("mat-chip"))return!0;q=q.parentElement}return!1}_hasFocusedChip(){return this.chips&&this.chips.some(H=>H._hasFocus)}_syncChipsState(){this.chips&&this.chips.forEach(H=>{H._chipListDisabled=this._disabled,H._chipListMultiple=this.multiple})}}return B.\u0275fac=function(H){return new(H||B)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(Z.Is,8),e.Y36(S.F,8),e.Y36(S.sg,8),e.Y36(f.rD),e.Y36(S.a5,10))},B.\u0275cmp=e.Xpm({type:B,selectors:[["mat-chip-list"]],contentQueries:function(H,q,he){if(1&H&&e.Suo(he,y,5),2&H){let _e;e.iGM(_e=e.CRH())&&(q.chips=_e)}},hostAttrs:[1,"mat-chip-list"],hostVars:15,hostBindings:function(H,q){1&H&&e.NdJ("focus",function(){return q.focus()})("blur",function(){return q._blur()})("keydown",function(_e){return q._keydown(_e)}),2&H&&(e.Ikx("id",q._uid),e.uIk("tabindex",q.disabled?null:q._tabIndex)("aria-describedby",q._ariaDescribedby||null)("aria-required",q.role?q.required:null)("aria-disabled",q.disabled.toString())("aria-invalid",q.errorState)("aria-multiselectable",q.multiple)("role",q.role)("aria-orientation",q.ariaOrientation),e.ekj("mat-chip-list-disabled",q.disabled)("mat-chip-list-invalid",q.errorState)("mat-chip-list-required",q.required))},inputs:{errorStateMatcher:"errorStateMatcher",multiple:"multiple",compareWith:"compareWith",value:"value",required:"required",placeholder:"placeholder",disabled:"disabled",ariaOrientation:["aria-orientation","ariaOrientation"],selectable:"selectable",tabIndex:"tabIndex"},outputs:{change:"change",valueChange:"valueChange"},exportAs:["matChipList"],features:[e._Bn([{provide:U.Eo,useExisting:B}]),e.qOj],ngContentSelectors:Y,decls:2,vars:0,consts:[[1,"mat-chip-list-wrapper"]],template:function(H,q){1&H&&(e.F$t(),e.TgZ(0,"div",0),e.Hsn(1),e.qZA())},styles:['.mat-chip{position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;border:none;-webkit-appearance:none;-moz-appearance:none}.mat-standard-chip{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:inline-flex;padding:7px 12px;border-radius:16px;align-items:center;cursor:default;min-height:32px;height:1px}._mat-animation-noopable.mat-standard-chip{transition:none;animation:none}.mat-standard-chip .mat-chip-remove{border:none;-webkit-appearance:none;-moz-appearance:none;padding:0;background:none}.mat-standard-chip .mat-chip-remove.mat-icon,.mat-standard-chip .mat-chip-remove .mat-icon{width:18px;height:18px;font-size:18px}.mat-standard-chip::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;opacity:0;content:"";pointer-events:none;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-standard-chip:hover::after{opacity:.12}.mat-standard-chip:focus{outline:none}.mat-standard-chip:focus::after{opacity:.16}.cdk-high-contrast-active .mat-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-standard-chip:focus{outline:dotted 2px}.cdk-high-contrast-active .mat-standard-chip.mat-chip-selected{outline-width:3px}.mat-standard-chip.mat-chip-disabled::after{opacity:0}.mat-standard-chip.mat-chip-disabled .mat-chip-remove,.mat-standard-chip.mat-chip-disabled .mat-chip-trailing-icon{cursor:default}.mat-standard-chip.mat-chip-with-trailing-icon.mat-chip-with-avatar,.mat-standard-chip.mat-chip-with-avatar{padding-top:0;padding-bottom:0}.mat-standard-chip.mat-chip-with-trailing-icon.mat-chip-with-avatar{padding-right:8px;padding-left:0}[dir=rtl] .mat-standard-chip.mat-chip-with-trailing-icon.mat-chip-with-avatar{padding-left:8px;padding-right:0}.mat-standard-chip.mat-chip-with-trailing-icon{padding-top:7px;padding-bottom:7px;padding-right:8px;padding-left:12px}[dir=rtl] .mat-standard-chip.mat-chip-with-trailing-icon{padding-left:8px;padding-right:12px}.mat-standard-chip.mat-chip-with-avatar{padding-left:0;padding-right:12px}[dir=rtl] .mat-standard-chip.mat-chip-with-avatar{padding-right:0;padding-left:12px}.mat-standard-chip .mat-chip-avatar{width:24px;height:24px;margin-right:8px;margin-left:4px}[dir=rtl] .mat-standard-chip .mat-chip-avatar{margin-left:8px;margin-right:4px}.mat-standard-chip .mat-chip-remove,.mat-standard-chip .mat-chip-trailing-icon{width:18px;height:18px;cursor:pointer}.mat-standard-chip .mat-chip-remove,.mat-standard-chip .mat-chip-trailing-icon{margin-left:8px;margin-right:0}[dir=rtl] .mat-standard-chip .mat-chip-remove,[dir=rtl] .mat-standard-chip .mat-chip-trailing-icon{margin-right:8px;margin-left:0}.mat-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit;overflow:hidden;transform:translateZ(0)}.mat-chip-list-wrapper{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;margin:-4px}.mat-chip-list-wrapper input.mat-input-element,.mat-chip-list-wrapper .mat-standard-chip{margin:4px}.mat-chip-list-stacked .mat-chip-list-wrapper{flex-direction:column;align-items:flex-start}.mat-chip-list-stacked .mat-chip-list-wrapper .mat-standard-chip{width:100%}.mat-chip-avatar{border-radius:50%;justify-content:center;align-items:center;display:flex;overflow:hidden;object-fit:cover}input.mat-chip-input{width:150px;margin:4px;flex:1 0 150px}\n'],encapsulation:2,changeDetection:0}),B})(),C=(()=>{class B{}return B.\u0275fac=function(H){return new(H||B)},B.\u0275mod=e.oAB({type:B}),B.\u0275inj=e.cJS({providers:[f.rD,{provide:r,useValue:{separatorKeyCodes:[t.K5]}}],imports:[[f.BQ]]}),B})()},508:(Ve,j,p)=>{"use strict";p.d(j,{yN:()=>ne,mZ:()=>$,_A:()=>v,rD:()=>Ne,sG:()=>n,K7:()=>Gt,HF:()=>ht,Y2:()=>ee,BQ:()=>ie,X2:()=>we,uc:()=>ve,XK:()=>he,ey:()=>et,Ng:()=>Yt,rN:()=>Nt,nP:()=>Le,us:()=>ut,wG:()=>ue,si:()=>Ce,LF:()=>P,IR:()=>Te,CB:()=>yt,jH:()=>ei,pj:()=>i,Kr:()=>r,Id:()=>y,FD:()=>c,dB:()=>_,sb:()=>u,E0:()=>Q});var t=p(5e3),e=p(226),M=p(9808),a=p(925),b=p(5664),d=p(3191),N=p(7579),h=p(8306),A=p(8675),w=p(6360),D=p(1159);function S(Pe,Oe){if(1&Pe&&t._UZ(0,"mat-pseudo-checkbox",4),2&Pe){const ce=t.oxw();t.Q6J("state",ce.selected?"checked":"unchecked")("disabled",ce.disabled)}}function U(Pe,Oe){if(1&Pe&&(t.TgZ(0,"span",5),t._uU(1),t.qZA()),2&Pe){const ce=t.oxw();t.xp6(1),t.hij("(",ce.group.label,")")}}const Z=["*"];let ne=(()=>{class Pe{}return Pe.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)",Pe.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)",Pe.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)",Pe.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)",Pe})(),$=(()=>{class Pe{}return Pe.COMPLEX="375ms",Pe.ENTERING="225ms",Pe.EXITING="195ms",Pe})();const te=new t.OlP("mat-sanity-checks",{providedIn:"root",factory:function de(){return!0}});let ie=(()=>{class Pe{constructor(ce,be,pt){this._sanityChecks=be,this._document=pt,this._hasDoneGlobalChecks=!1,ce._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(ce){return!(0,a.Oy)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[ce])}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(t.LFG(b.qm),t.LFG(te,8),t.LFG(M.K0))},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({imports:[[e.vT],e.vT]}),Pe})();function y(Pe){return class extends Pe{constructor(...Oe){super(...Oe),this._disabled=!1}get disabled(){return this._disabled}set disabled(Oe){this._disabled=(0,d.Ig)(Oe)}}}function i(Pe,Oe){return class extends Pe{constructor(...ce){super(...ce),this.defaultColor=Oe,this.color=Oe}get color(){return this._color}set color(ce){const be=ce||this.defaultColor;be!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),be&&this._elementRef.nativeElement.classList.add(`mat-${be}`),this._color=be)}}}function r(Pe){return class extends Pe{constructor(...Oe){super(...Oe),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(Oe){this._disableRipple=(0,d.Ig)(Oe)}}}function u(Pe,Oe=0){return class extends Pe{constructor(...ce){super(...ce),this._tabIndex=Oe,this.defaultTabIndex=Oe}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(ce){this._tabIndex=null!=ce?(0,d.su)(ce):this.defaultTabIndex}}}function c(Pe){return class extends Pe{constructor(...Oe){super(...Oe),this.stateChanges=new N.x,this.errorState=!1}updateErrorState(){const Oe=this.errorState,mt=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);mt!==Oe&&(this.errorState=mt,this.stateChanges.next())}}}function _(Pe){return class extends Pe{constructor(...Oe){super(...Oe),this._isInitialized=!1,this._pendingSubscribers=[],this.initialized=new h.y(ce=>{this._isInitialized?this._notifySubscriber(ce):this._pendingSubscribers.push(ce)})}_markInitialized(){this._isInitialized=!0,this._pendingSubscribers.forEach(this._notifySubscriber),this._pendingSubscribers=null}_notifySubscriber(Oe){Oe.next(),Oe.complete()}}}const E=new t.OlP("MAT_DATE_LOCALE",{providedIn:"root",factory:function I(){return(0,t.f3M)(t.soG)}});class v{constructor(){this._localeChanges=new N.x,this.localeChanges=this._localeChanges}getValidDateOrNull(Oe){return this.isDateInstance(Oe)&&this.isValid(Oe)?Oe:null}deserialize(Oe){return null==Oe||this.isDateInstance(Oe)&&this.isValid(Oe)?Oe:this.invalid()}setLocale(Oe){this.locale=Oe,this._localeChanges.next()}compareDate(Oe,ce){return this.getYear(Oe)-this.getYear(ce)||this.getMonth(Oe)-this.getMonth(ce)||this.getDate(Oe)-this.getDate(ce)}sameDate(Oe,ce){if(Oe&&ce){let be=this.isValid(Oe),pt=this.isValid(ce);return be&&pt?!this.compareDate(Oe,ce):be==pt}return Oe==ce}clampDate(Oe,ce,be){return ce&&this.compareDate(Oe,ce)<0?ce:be&&this.compareDate(Oe,be)>0?be:Oe}}const n=new t.OlP("mat-date-formats"),C=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function B(Pe,Oe){const ce=Array(Pe);for(let be=0;be{class Pe extends v{constructor(ce,be){super(),this.useUtcForDisplay=!1,super.setLocale(ce)}getYear(ce){return ce.getFullYear()}getMonth(ce){return ce.getMonth()}getDate(ce){return ce.getDate()}getDayOfWeek(ce){return ce.getDay()}getMonthNames(ce){const be=new Intl.DateTimeFormat(this.locale,{month:ce,timeZone:"utc"});return B(12,pt=>this._format(be,new Date(2017,pt,1)))}getDateNames(){const ce=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return B(31,be=>this._format(ce,new Date(2017,0,be+1)))}getDayOfWeekNames(ce){const be=new Intl.DateTimeFormat(this.locale,{weekday:ce,timeZone:"utc"});return B(7,pt=>this._format(be,new Date(2017,0,pt+1)))}getYearName(ce){const be=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(be,ce)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(ce){return this.getDate(this._createDateWithOverflow(this.getYear(ce),this.getMonth(ce)+1,0))}clone(ce){return new Date(ce.getTime())}createDate(ce,be,pt){let mt=this._createDateWithOverflow(ce,be,pt);return mt.getMonth(),mt}today(){return new Date}parse(ce){return"number"==typeof ce?new Date(ce):ce?new Date(Date.parse(ce)):null}format(ce,be){if(!this.isValid(ce))throw Error("NativeDateAdapter: Cannot format invalid date.");const pt=new Intl.DateTimeFormat(this.locale,Object.assign(Object.assign({},be),{timeZone:"utc"}));return this._format(pt,ce)}addCalendarYears(ce,be){return this.addCalendarMonths(ce,12*be)}addCalendarMonths(ce,be){let pt=this._createDateWithOverflow(this.getYear(ce),this.getMonth(ce)+be,this.getDate(ce));return this.getMonth(pt)!=((this.getMonth(ce)+be)%12+12)%12&&(pt=this._createDateWithOverflow(this.getYear(pt),this.getMonth(pt),0)),pt}addCalendarDays(ce,be){return this._createDateWithOverflow(this.getYear(ce),this.getMonth(ce),this.getDate(ce)+be)}toIso8601(ce){return[ce.getUTCFullYear(),this._2digit(ce.getUTCMonth()+1),this._2digit(ce.getUTCDate())].join("-")}deserialize(ce){if("string"==typeof ce){if(!ce)return null;if(C.test(ce)){let be=new Date(ce);if(this.isValid(be))return be}}return super.deserialize(ce)}isDateInstance(ce){return ce instanceof Date}isValid(ce){return!isNaN(ce.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(ce,be,pt){const mt=new Date;return mt.setFullYear(ce,be,pt),mt.setHours(0,0,0,0),mt}_2digit(ce){return("00"+ce).slice(-2)}_format(ce,be){const pt=new Date;return pt.setUTCFullYear(be.getFullYear(),be.getMonth(),be.getDate()),pt.setUTCHours(be.getHours(),be.getMinutes(),be.getSeconds(),be.getMilliseconds()),ce.format(pt)}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(t.LFG(E,8),t.LFG(a.t4))},Pe.\u0275prov=t.Yz7({token:Pe,factory:Pe.\u0275fac}),Pe})();const H={parse:{dateInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"}}};let q=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({providers:[{provide:v,useClass:P}]}),Pe})(),he=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({providers:[{provide:n,useValue:H}],imports:[[q]]}),Pe})(),Ne=(()=>{class Pe{isErrorState(ce,be){return!!(ce&&ce.invalid&&(ce.touched||be&&be.submitted))}}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275prov=t.Yz7({token:Pe,factory:Pe.\u0275fac,providedIn:"root"}),Pe})(),we=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275dir=t.lG2({type:Pe,selectors:[["","mat-line",""],["","matLine",""]],hostAttrs:[1,"mat-line"]}),Pe})();function Q(Pe,Oe,ce="mat"){Pe.changes.pipe((0,A.O)(Pe)).subscribe(({length:be})=>{Ue(Oe,`${ce}-2-line`,!1),Ue(Oe,`${ce}-3-line`,!1),Ue(Oe,`${ce}-multi-line`,!1),2===be||3===be?Ue(Oe,`${ce}-${be}-line`,!0):be>3&&Ue(Oe,`${ce}-multi-line`,!0)})}function Ue(Pe,Oe,ce){Pe.nativeElement.classList.toggle(Oe,ce)}let ve=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({imports:[[ie],ie]}),Pe})();class V{constructor(Oe,ce,be){this._renderer=Oe,this.element=ce,this.config=be,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const De={enterDuration:225,exitDuration:150},Ie=(0,a.i$)({passive:!0}),Ae=["mousedown","touchstart"],le=["mouseup","mouseleave","touchend","touchcancel"];class Te{constructor(Oe,ce,be,pt){this._target=Oe,this._ngZone=ce,this._isPointerDown=!1,this._activeRipples=new Set,this._pointerUpEventsRegistered=!1,pt.isBrowser&&(this._containerElement=(0,d.fI)(be))}fadeInRipple(Oe,ce,be={}){const pt=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),mt=Object.assign(Object.assign({},De),be.animation);be.centered&&(Oe=pt.left+pt.width/2,ce=pt.top+pt.height/2);const Ht=be.radius||function W(Pe,Oe,ce){const be=Math.max(Math.abs(Pe-ce.left),Math.abs(Pe-ce.right)),pt=Math.max(Math.abs(Oe-ce.top),Math.abs(Oe-ce.bottom));return Math.sqrt(be*be+pt*pt)}(Oe,ce,pt),it=Oe-pt.left,Re=ce-pt.top,tt=mt.enterDuration,Xe=document.createElement("div");Xe.classList.add("mat-ripple-element"),Xe.style.left=it-Ht+"px",Xe.style.top=Re-Ht+"px",Xe.style.height=2*Ht+"px",Xe.style.width=2*Ht+"px",null!=be.color&&(Xe.style.backgroundColor=be.color),Xe.style.transitionDuration=`${tt}ms`,this._containerElement.appendChild(Xe),function xe(Pe){window.getComputedStyle(Pe).getPropertyValue("opacity")}(Xe),Xe.style.transform="scale(1)";const Se=new V(this,Xe,be);return Se.state=0,this._activeRipples.add(Se),be.persistent||(this._mostRecentTransientRipple=Se),this._runTimeoutOutsideZone(()=>{const Ge=Se===this._mostRecentTransientRipple;Se.state=1,!be.persistent&&(!Ge||!this._isPointerDown)&&Se.fadeOut()},tt),Se}fadeOutRipple(Oe){const ce=this._activeRipples.delete(Oe);if(Oe===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),!ce)return;const be=Oe.element,pt=Object.assign(Object.assign({},De),Oe.config.animation);be.style.transitionDuration=`${pt.exitDuration}ms`,be.style.opacity="0",Oe.state=2,this._runTimeoutOutsideZone(()=>{Oe.state=3,be.remove()},pt.exitDuration)}fadeOutAll(){this._activeRipples.forEach(Oe=>Oe.fadeOut())}fadeOutAllNonPersistent(){this._activeRipples.forEach(Oe=>{Oe.config.persistent||Oe.fadeOut()})}setupTriggerEvents(Oe){const ce=(0,d.fI)(Oe);!ce||ce===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=ce,this._registerEvents(Ae))}handleEvent(Oe){"mousedown"===Oe.type?this._onMousedown(Oe):"touchstart"===Oe.type?this._onTouchStart(Oe):this._onPointerUp(),this._pointerUpEventsRegistered||(this._registerEvents(le),this._pointerUpEventsRegistered=!0)}_onMousedown(Oe){const ce=(0,b.X6)(Oe),be=this._lastTouchStartEvent&&Date.now(){!Oe.config.persistent&&(1===Oe.state||Oe.config.terminateOnPointerUp&&0===Oe.state)&&Oe.fadeOut()}))}_runTimeoutOutsideZone(Oe,ce=0){this._ngZone.runOutsideAngular(()=>setTimeout(Oe,ce))}_registerEvents(Oe){this._ngZone.runOutsideAngular(()=>{Oe.forEach(ce=>{this._triggerElement.addEventListener(ce,this,Ie)})})}_removeTriggerEvents(){this._triggerElement&&(Ae.forEach(Oe=>{this._triggerElement.removeEventListener(Oe,this,Ie)}),this._pointerUpEventsRegistered&&le.forEach(Oe=>{this._triggerElement.removeEventListener(Oe,this,Ie)}))}}const ee=new t.OlP("mat-ripple-global-options");let ue=(()=>{class Pe{constructor(ce,be,pt,mt,Ht){this._elementRef=ce,this._animationMode=Ht,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=mt||{},this._rippleRenderer=new Te(this,be,ce,pt)}get disabled(){return this._disabled}set disabled(ce){ce&&this.fadeOutAllNonPersistent(),this._disabled=ce,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(ce){this._trigger=ce,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign(Object.assign({},this._globalOptions.animation),"NoopAnimations"===this._animationMode?{enterDuration:0,exitDuration:0}:{}),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(ce,be=0,pt){return"number"==typeof ce?this._rippleRenderer.fadeInRipple(ce,be,Object.assign(Object.assign({},this.rippleConfig),pt)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),ce))}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(a.t4),t.Y36(ee,8),t.Y36(w.Qb,8))},Pe.\u0275dir=t.lG2({type:Pe,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(ce,be){2&ce&&t.ekj("mat-ripple-unbounded",be.unbounded)},inputs:{color:["matRippleColor","color"],unbounded:["matRippleUnbounded","unbounded"],centered:["matRippleCentered","centered"],radius:["matRippleRadius","radius"],animation:["matRippleAnimation","animation"],disabled:["matRippleDisabled","disabled"],trigger:["matRippleTrigger","trigger"]},exportAs:["matRipple"]}),Pe})(),Ce=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({imports:[[ie],ie]}),Pe})(),Le=(()=>{class Pe{constructor(ce){this._animationMode=ce,this.state="unchecked",this.disabled=!1}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(t.Y36(w.Qb,8))},Pe.\u0275cmp=t.Xpm({type:Pe,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:8,hostBindings:function(ce,be){2&ce&&t.ekj("mat-pseudo-checkbox-indeterminate","indeterminate"===be.state)("mat-pseudo-checkbox-checked","checked"===be.state)("mat-pseudo-checkbox-disabled",be.disabled)("_mat-animation-noopable","NoopAnimations"===be._animationMode)},inputs:{state:"state",disabled:"disabled"},decls:0,vars:0,template:function(ce,be){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:"";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\n'],encapsulation:2,changeDetection:0}),Pe})(),ut=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({imports:[[ie]]}),Pe})();const ht=new t.OlP("MAT_OPTION_PARENT_COMPONENT"),Gt=new t.OlP("MatOptgroup");let xt=0;class Nt{constructor(Oe,ce=!1){this.source=Oe,this.isUserInput=ce}}let Ct=(()=>{class Pe{constructor(ce,be,pt,mt){this._element=ce,this._changeDetectorRef=be,this._parent=pt,this.group=mt,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+xt++,this.onSelectionChange=new t.vpe,this._stateChanges=new N.x}get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(ce){this._disabled=(0,d.Ig)(ce)}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get active(){return this._active}get viewValue(){return(this._getHostElement().textContent||"").trim()}select(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}deselect(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}focus(ce,be){const pt=this._getHostElement();"function"==typeof pt.focus&&pt.focus(be)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(ce){(ce.keyCode===D.K5||ce.keyCode===D.L_)&&!(0,D.Vb)(ce)&&(this._selectViaInteraction(),ce.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getAriaSelected(){return this.selected||!this.multiple&&null}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const ce=this.viewValue;ce!==this._mostRecentViewValue&&(this._mostRecentViewValue=ce,this._stateChanges.next())}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(ce=!1){this.onSelectionChange.emit(new Nt(this,ce))}}return Pe.\u0275fac=function(ce){t.$Z()},Pe.\u0275dir=t.lG2({type:Pe,inputs:{value:"value",id:"id",disabled:"disabled"},outputs:{onSelectionChange:"onSelectionChange"}}),Pe})(),et=(()=>{class Pe extends Ct{constructor(ce,be,pt,mt){super(ce,be,pt,mt)}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(ht,8),t.Y36(Gt,8))},Pe.\u0275cmp=t.Xpm({type:Pe,selectors:[["mat-option"]],hostAttrs:["role","option",1,"mat-option","mat-focus-indicator"],hostVars:12,hostBindings:function(ce,be){1&ce&&t.NdJ("click",function(){return be._selectViaInteraction()})("keydown",function(mt){return be._handleKeydown(mt)}),2&ce&&(t.Ikx("id",be.id),t.uIk("tabindex",be._getTabIndex())("aria-selected",be._getAriaSelected())("aria-disabled",be.disabled.toString()),t.ekj("mat-selected",be.selected)("mat-option-multiple",be.multiple)("mat-active",be.active)("mat-option-disabled",be.disabled))},exportAs:["matOption"],features:[t.qOj],ngContentSelectors:Z,decls:5,vars:4,consts:[["class","mat-option-pseudo-checkbox",3,"state","disabled",4,"ngIf"],[1,"mat-option-text"],["class","cdk-visually-hidden",4,"ngIf"],["mat-ripple","",1,"mat-option-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-option-pseudo-checkbox",3,"state","disabled"],[1,"cdk-visually-hidden"]],template:function(ce,be){1&ce&&(t.F$t(),t.YNc(0,S,1,2,"mat-pseudo-checkbox",0),t.TgZ(1,"span",1),t.Hsn(2),t.qZA(),t.YNc(3,U,2,1,"span",2),t._UZ(4,"div",3)),2&ce&&(t.Q6J("ngIf",be.multiple),t.xp6(3),t.Q6J("ngIf",be.group&&be.group._inert),t.xp6(1),t.Q6J("matRippleTrigger",be._getHostElement())("matRippleDisabled",be.disabled||be.disableRipple))},directives:[Le,M.O5,ue],styles:[".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.cdk-high-contrast-active .mat-option[aria-disabled=true]{opacity:.5}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\n"],encapsulation:2,changeDetection:0}),Pe})();function yt(Pe,Oe,ce){if(ce.length){let be=Oe.toArray(),pt=ce.toArray(),mt=0;for(let Ht=0;Htce+be?Math.max(0,Pe-be+Oe):ce}let Yt=(()=>{class Pe{}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=t.oAB({type:Pe}),Pe.\u0275inj=t.cJS({imports:[[Ce,M.ez,ie,ut]]}),Pe})()},6856:(Ve,j,p)=>{"use strict";p.d(j,{FA:()=>pe,Mq:()=>Re,hl:()=>st,nW:()=>gi});var t=p(5664),e=p(9776),f=p(7429),M=p(9808),a=p(5e3),b=p(7423),d=p(5303),N=p(508),h=p(7579),A=p(727),w=p(6451),D=p(9646),L=p(1159),k=p(5698),S=p(8675),U=p(9300),Z=p(226),Y=p(3191),ne=p(925),$=p(1777),de=p(3075),te=p(7322),ie=p(7531);const oe=["mat-calendar-body",""];function X(je,_t){if(1&je&&(a.TgZ(0,"tr",2)(1,"td",3),a._uU(2),a.qZA()()),2&je){const re=a.oxw();a.xp6(1),a.Udp("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),a.uIk("colspan",re.numCols),a.xp6(1),a.hij(" ",re.label," ")}}function me(je,_t){if(1&je&&(a.TgZ(0,"td",3),a._uU(1),a.qZA()),2&je){const re=a.oxw(2);a.Udp("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),a.uIk("colspan",re._firstRowOffset),a.xp6(1),a.hij(" ",re._firstRowOffset>=re.labelMinRequiredCells?re.label:""," ")}}function y(je,_t){if(1&je){const re=a.EpF();a.TgZ(0,"td",7)(1,"button",8),a.NdJ("click",function(Mt){const bi=a.CHM(re).$implicit;return a.oxw(2)._cellClicked(bi,Mt)}),a.TgZ(2,"div",9),a._uU(3),a.qZA(),a._UZ(4,"div",10),a.qZA()()}if(2&je){const re=_t.$implicit,qe=_t.index,Mt=a.oxw().index,zt=a.oxw();a.Udp("width",zt._cellWidth)("padding-top",zt._cellPadding)("padding-bottom",zt._cellPadding),a.uIk("data-mat-row",Mt)("data-mat-col",qe),a.xp6(1),a.ekj("mat-calendar-body-disabled",!re.enabled)("mat-calendar-body-active",zt._isActiveCell(Mt,qe))("mat-calendar-body-range-start",zt._isRangeStart(re.compareValue))("mat-calendar-body-range-end",zt._isRangeEnd(re.compareValue))("mat-calendar-body-in-range",zt._isInRange(re.compareValue))("mat-calendar-body-comparison-bridge-start",zt._isComparisonBridgeStart(re.compareValue,Mt,qe))("mat-calendar-body-comparison-bridge-end",zt._isComparisonBridgeEnd(re.compareValue,Mt,qe))("mat-calendar-body-comparison-start",zt._isComparisonStart(re.compareValue))("mat-calendar-body-comparison-end",zt._isComparisonEnd(re.compareValue))("mat-calendar-body-in-comparison-range",zt._isInComparisonRange(re.compareValue))("mat-calendar-body-preview-start",zt._isPreviewStart(re.compareValue))("mat-calendar-body-preview-end",zt._isPreviewEnd(re.compareValue))("mat-calendar-body-in-preview",zt._isInPreview(re.compareValue)),a.Q6J("ngClass",re.cssClasses)("tabindex",zt._isActiveCell(Mt,qe)?0:-1),a.uIk("aria-label",re.ariaLabel)("aria-disabled",!re.enabled||null)("aria-pressed",zt._isSelected(re.compareValue))("aria-current",zt.todayValue===re.compareValue?"date":null),a.xp6(1),a.ekj("mat-calendar-body-selected",zt._isSelected(re.compareValue))("mat-calendar-body-comparison-identical",zt._isComparisonIdentical(re.compareValue))("mat-calendar-body-today",zt.todayValue===re.compareValue),a.xp6(1),a.hij(" ",re.displayValue," ")}}function i(je,_t){if(1&je&&(a.TgZ(0,"tr",4),a.YNc(1,me,2,6,"td",5),a.YNc(2,y,5,47,"td",6),a.qZA()),2&je){const re=_t.$implicit,qe=_t.index,Mt=a.oxw();a.xp6(1),a.Q6J("ngIf",0===qe&&Mt._firstRowOffset),a.xp6(1),a.Q6J("ngForOf",re)}}function r(je,_t){if(1&je&&(a.TgZ(0,"th",5)(1,"span",6),a._uU(2),a.qZA(),a.TgZ(3,"span",7),a._uU(4),a.qZA()()),2&je){const re=_t.$implicit;a.xp6(2),a.Oqu(re.long),a.xp6(2),a.Oqu(re.narrow)}}const u=["*"];function c(je,_t){}function _(je,_t){if(1&je){const re=a.EpF();a.TgZ(0,"mat-month-view",5),a.NdJ("activeDateChange",function(Mt){return a.CHM(re),a.oxw().activeDate=Mt})("_userSelection",function(Mt){return a.CHM(re),a.oxw()._dateSelected(Mt)}),a.qZA()}if(2&je){const re=a.oxw();a.Q6J("activeDate",re.activeDate)("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)("comparisonStart",re.comparisonStart)("comparisonEnd",re.comparisonEnd)}}function E(je,_t){if(1&je){const re=a.EpF();a.TgZ(0,"mat-year-view",6),a.NdJ("activeDateChange",function(Mt){return a.CHM(re),a.oxw().activeDate=Mt})("monthSelected",function(Mt){return a.CHM(re),a.oxw()._monthSelectedInYearView(Mt)})("selectedChange",function(Mt){return a.CHM(re),a.oxw()._goToDateInView(Mt,"month")}),a.qZA()}if(2&je){const re=a.oxw();a.Q6J("activeDate",re.activeDate)("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function I(je,_t){if(1&je){const re=a.EpF();a.TgZ(0,"mat-multi-year-view",7),a.NdJ("activeDateChange",function(Mt){return a.CHM(re),a.oxw().activeDate=Mt})("yearSelected",function(Mt){return a.CHM(re),a.oxw()._yearSelectedInMultiYearView(Mt)})("selectedChange",function(Mt){return a.CHM(re),a.oxw()._goToDateInView(Mt,"year")}),a.qZA()}if(2&je){const re=a.oxw();a.Q6J("activeDate",re.activeDate)("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function v(je,_t){}const n=["button"];function C(je,_t){1&je&&(a.O4$(),a.TgZ(0,"svg",3),a._UZ(1,"path",4),a.qZA())}const B=[[["","matDatepickerToggleIcon",""]]],P=["[matDatepickerToggleIcon]"];class Ne{constructor(_t,re,qe,Mt,zt={},bi=_t,Ei){this.value=_t,this.displayValue=re,this.ariaLabel=qe,this.enabled=Mt,this.cssClasses=zt,this.compareValue=bi,this.rawValue=Ei}}let we=(()=>{class je{constructor(re,qe){this._elementRef=re,this._ngZone=qe,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new a.vpe,this.previewChange=new a.vpe,this._enterHandler=Mt=>{if(this._skipNextFocus&&"focus"===Mt.type)this._skipNextFocus=!1;else if(Mt.target&&this.isRange){const zt=this._getCellFromElement(Mt.target);zt&&this._ngZone.run(()=>this.previewChange.emit({value:zt.enabled?zt:null,event:Mt}))}},this._leaveHandler=Mt=>{null!==this.previewEnd&&this.isRange&&Mt.target&&this._getCellFromElement(Mt.target)&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:Mt}))},qe.runOutsideAngular(()=>{const Mt=re.nativeElement;Mt.addEventListener("mouseenter",this._enterHandler,!0),Mt.addEventListener("focus",this._enterHandler,!0),Mt.addEventListener("mouseleave",this._leaveHandler,!0),Mt.addEventListener("blur",this._leaveHandler,!0)})}_cellClicked(re,qe){re.enabled&&this.selectedValueChange.emit({value:re.value,event:qe})}_isSelected(re){return this.startValue===re||this.endValue===re}ngOnChanges(re){const qe=re.numCols,{rows:Mt,numCols:zt}=this;(re.rows||qe)&&(this._firstRowOffset=Mt&&Mt.length&&Mt[0].length?zt-Mt[0].length:0),(re.cellAspectRatio||qe||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/zt+"%"),(qe||!this._cellWidth)&&(this._cellWidth=100/zt+"%")}ngOnDestroy(){const re=this._elementRef.nativeElement;re.removeEventListener("mouseenter",this._enterHandler,!0),re.removeEventListener("focus",this._enterHandler,!0),re.removeEventListener("mouseleave",this._leaveHandler,!0),re.removeEventListener("blur",this._leaveHandler,!0)}_isActiveCell(re,qe){let Mt=re*this.numCols+qe;return re&&(Mt-=this._firstRowOffset),Mt==this.activeCell}_focusActiveCell(re=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(()=>{setTimeout(()=>{const qe=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");qe&&(re||(this._skipNextFocus=!0),qe.focus())})})})}_isRangeStart(re){return Ue(re,this.startValue,this.endValue)}_isRangeEnd(re){return ve(re,this.startValue,this.endValue)}_isInRange(re){return V(re,this.startValue,this.endValue,this.isRange)}_isComparisonStart(re){return Ue(re,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(re,qe,Mt){if(!this._isComparisonStart(re)||this._isRangeStart(re)||!this._isInRange(re))return!1;let zt=this.rows[qe][Mt-1];if(!zt){const bi=this.rows[qe-1];zt=bi&&bi[bi.length-1]}return zt&&!this._isRangeEnd(zt.compareValue)}_isComparisonBridgeEnd(re,qe,Mt){if(!this._isComparisonEnd(re)||this._isRangeEnd(re)||!this._isInRange(re))return!1;let zt=this.rows[qe][Mt+1];if(!zt){const bi=this.rows[qe+1];zt=bi&&bi[0]}return zt&&!this._isRangeStart(zt.compareValue)}_isComparisonEnd(re){return ve(re,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(re){return V(re,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(re){return this.comparisonStart===this.comparisonEnd&&re===this.comparisonStart}_isPreviewStart(re){return Ue(re,this.previewStart,this.previewEnd)}_isPreviewEnd(re){return ve(re,this.previewStart,this.previewEnd)}_isInPreview(re){return V(re,this.previewStart,this.previewEnd,this.isRange)}_getCellFromElement(re){let qe;if(Q(re)?qe=re:Q(re.parentNode)&&(qe=re.parentNode),qe){const Mt=qe.getAttribute("data-mat-row"),zt=qe.getAttribute("data-mat-col");if(Mt&&zt)return this.rows[parseInt(Mt)][parseInt(zt)]}return null}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(a.SBq),a.Y36(a.R0b))},je.\u0275cmp=a.Xpm({type:je,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange"},exportAs:["matCalendarBody"],features:[a.TTD],attrs:oe,decls:2,vars:2,consts:[["aria-hidden","true",4,"ngIf"],["role","row",4,"ngFor","ngForOf"],["aria-hidden","true"],[1,"mat-calendar-body-label"],["role","row"],["class","mat-calendar-body-label",3,"paddingTop","paddingBottom",4,"ngIf"],["role","gridcell","class","mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom",4,"ngFor","ngForOf"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"ngClass","tabindex","click"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(re,qe){1&re&&(a.YNc(0,X,3,6,"tr",0),a.YNc(1,i,3,2,"tr",1)),2&re&&(a.Q6J("ngIf",qe._firstRowOffset.mat-calendar-body-cell-content,.cdk-high-contrast-active .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content{outline:dotted 2px}.cdk-high-contrast-active .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content.mat-calendar-body-selected,.cdk-high-contrast-active .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content.mat-calendar-body-selected{outline:solid 3px}.cdk-high-contrast-active .mat-calendar-body-cell::before,.cdk-high-contrast-active .mat-calendar-body-cell::after,.cdk-high-contrast-active .mat-calendar-body-selected{background:none}.cdk-high-contrast-active .mat-calendar-body-in-range::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-start::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.cdk-high-contrast-active .mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}[dir=rtl] .mat-calendar-body-label{text-align:right}\n'],encapsulation:2,changeDetection:0}),je})();function Q(je){return"TD"===je.nodeName}function Ue(je,_t,re){return null!==re&&_t!==re&&je=_t&&je===re}function V(je,_t,re,qe){return qe&&null!==_t&&null!==re&&_t!==re&&je>=_t&&je<=re}class De{constructor(_t,re){this.start=_t,this.end=re}}let dt=(()=>{class je{constructor(re,qe){this.selection=re,this._adapter=qe,this._selectionChanged=new h.x,this.selectionChanged=this._selectionChanged,this.selection=re}updateSelection(re,qe){const Mt=this.selection;this.selection=re,this._selectionChanged.next({selection:re,source:qe,oldValue:Mt})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(re){return this._adapter.isDateInstance(re)&&this._adapter.isValid(re)}}return je.\u0275fac=function(re){a.$Z()},je.\u0275prov=a.Yz7({token:je,factory:je.\u0275fac}),je})(),Ie=(()=>{class je extends dt{constructor(re){super(null,re)}add(re){super.updateSelection(re,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const re=new je(this._adapter);return re.updateSelection(this.selection,this),re}}return je.\u0275fac=function(re){return new(re||je)(a.LFG(N._A))},je.\u0275prov=a.Yz7({token:je,factory:je.\u0275fac}),je})();const Te={provide:dt,deps:[[new a.FiY,new a.tp0,dt],N._A],useFactory:function le(je,_t){return je||new Ie(_t)}},ee=new a.OlP("MAT_DATE_RANGE_SELECTION_STRATEGY");let ht=(()=>{class je{constructor(re,qe,Mt,zt,bi){this._changeDetectorRef=re,this._dateFormats=qe,this._dateAdapter=Mt,this._dir=zt,this._rangeStrategy=bi,this._rerenderSubscription=A.w0.EMPTY,this.selectedChange=new a.vpe,this._userSelection=new a.vpe,this.activeDateChange=new a.vpe,this._activeDate=this._dateAdapter.today()}get activeDate(){return this._activeDate}set activeDate(re){const qe=this._activeDate,Mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Mt,this.minDate,this.maxDate),this._hasSameMonthAndYear(qe,this._activeDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof De?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setRanges(this._selected)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,S.O)(null)).subscribe(()=>this._init())}ngOnChanges(re){const qe=re.comparisonStart||re.comparisonEnd;qe&&!qe.firstChange&&this._setRanges(this.selected)}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(re){const qe=re.value,Mt=this._dateAdapter.getYear(this.activeDate),zt=this._dateAdapter.getMonth(this.activeDate),bi=this._dateAdapter.createDate(Mt,zt,qe);let Ei,Xi;this._selected instanceof De?(Ei=this._getDateInCurrentMonth(this._selected.start),Xi=this._getDateInCurrentMonth(this._selected.end)):Ei=Xi=this._getDateInCurrentMonth(this._selected),(Ei!==qe||Xi!==qe)&&this.selectedChange.emit(bi),this._userSelection.emit({value:bi,event:re.event}),this._previewStart=this._previewEnd=null,this._changeDetectorRef.markForCheck()}_handleCalendarBodyKeydown(re){const qe=this._activeDate,Mt=this._isRtl();switch(re.keyCode){case L.oh:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Mt?1:-1);break;case L.SV:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Mt?-1:1);break;case L.LH:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case L.JH:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case L.Sd:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case L.uR:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case L.Ku:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case L.VM:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case L.K5:case L.L_:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&re.preventDefault());case L.hY:return void(null!=this._previewEnd&&!(0,L.Vb)(re)&&(this._previewStart=this._previewEnd=null,this.selectedChange.emit(null),this._userSelection.emit({value:null,event:re}),re.preventDefault(),re.stopPropagation()));default:return}this._dateAdapter.compareDate(qe,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===L.L_||re.keyCode===L.K5)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate=this._getCellCompareValue(this._dateAdapter.today()),this._monthLabel=this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase();let re=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset=(7+this._dateAdapter.getDayOfWeek(re)-this._dateAdapter.getFirstDayOfWeek())%7,this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(re){this._matCalendarBody._focusActiveCell(re)}_previewChanged({event:re,value:qe}){if(this._rangeStrategy){const zt=this._rangeStrategy.createPreview(qe?qe.rawValue:null,this.selected,re);this._previewStart=this._getCellCompareValue(zt.start),this._previewEnd=this._getCellCompareValue(zt.end),this._changeDetectorRef.detectChanges()}}_initWeekdays(){const re=this._dateAdapter.getFirstDayOfWeek(),qe=this._dateAdapter.getDayOfWeekNames("narrow");let zt=this._dateAdapter.getDayOfWeekNames("long").map((bi,Ei)=>({long:bi,narrow:qe[Ei]}));this._weekdays=zt.slice(re).concat(zt.slice(0,re))}_createWeekCells(){const re=this._dateAdapter.getNumDaysInMonth(this.activeDate),qe=this._dateAdapter.getDateNames();this._weeks=[[]];for(let Mt=0,zt=this._firstWeekOffset;Mt=0)&&(!this.maxDate||this._dateAdapter.compareDate(re,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(re))}_getDateInCurrentMonth(re){return re&&this._hasSameMonthAndYear(re,this.activeDate)?this._dateAdapter.getDate(re):null}_hasSameMonthAndYear(re,qe){return!(!re||!qe||this._dateAdapter.getMonth(re)!=this._dateAdapter.getMonth(qe)||this._dateAdapter.getYear(re)!=this._dateAdapter.getYear(qe))}_getCellCompareValue(re){if(re){const qe=this._dateAdapter.getYear(re),Mt=this._dateAdapter.getMonth(re),zt=this._dateAdapter.getDate(re);return new Date(qe,Mt,zt).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(re){re instanceof De?(this._rangeStart=this._getCellCompareValue(re.start),this._rangeEnd=this._getCellCompareValue(re.end),this._isRange=!0):(this._rangeStart=this._rangeEnd=this._getCellCompareValue(re),this._isRange=!1),this._comparisonRangeStart=this._getCellCompareValue(this.comparisonStart),this._comparisonRangeEnd=this._getCellCompareValue(this.comparisonEnd)}_canSelect(re){return!this.dateFilter||this.dateFilter(re)}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(a.sBO),a.Y36(N.sG,8),a.Y36(N._A,8),a.Y36(Z.Is,8),a.Y36(ee,8))},je.\u0275cmp=a.Xpm({type:je,selectors:[["mat-month-view"]],viewQuery:function(re,qe){if(1&re&&a.Gf(we,5),2&re){let Mt;a.iGM(Mt=a.CRH())&&(qe._matCalendarBody=Mt.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[a.TTD],decls:7,vars:13,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col",4,"ngFor","ngForOf"],["aria-hidden","true","colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","selectedValueChange","previewChange","keyup","keydown"],["scope","col"],[1,"cdk-visually-hidden"],["aria-hidden","true"]],template:function(re,qe){1&re&&(a.TgZ(0,"table",0)(1,"thead",1)(2,"tr"),a.YNc(3,r,5,2,"th",2),a.qZA(),a.TgZ(4,"tr"),a._UZ(5,"th",3),a.qZA()(),a.TgZ(6,"tbody",4),a.NdJ("selectedValueChange",function(zt){return qe._dateSelected(zt)})("previewChange",function(zt){return qe._previewChanged(zt)})("keyup",function(zt){return qe._handleCalendarBodyKeyup(zt)})("keydown",function(zt){return qe._handleCalendarBodyKeydown(zt)}),a.qZA()()),2&re&&(a.xp6(3),a.Q6J("ngForOf",qe._weekdays),a.xp6(3),a.Q6J("label",qe._monthLabel)("rows",qe._weeks)("todayValue",qe._todayDate)("startValue",qe._rangeStart)("endValue",qe._rangeEnd)("comparisonStart",qe._comparisonRangeStart)("comparisonEnd",qe._comparisonRangeEnd)("previewStart",qe._previewStart)("previewEnd",qe._previewEnd)("isRange",qe._isRange)("labelMinRequiredCells",3)("activeCell",qe._dateAdapter.getDate(qe.activeDate)-1))},directives:[we,M.sg],encapsulation:2,changeDetection:0}),je})(),Wt=(()=>{class je{constructor(re,qe,Mt){this._changeDetectorRef=re,this._dateAdapter=qe,this._dir=Mt,this._rerenderSubscription=A.w0.EMPTY,this.selectedChange=new a.vpe,this.yearSelected=new a.vpe,this.activeDateChange=new a.vpe,this._activeDate=this._dateAdapter.today()}get activeDate(){return this._activeDate}set activeDate(re){let qe=this._activeDate;const Mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Mt,this.minDate,this.maxDate),Gt(this._dateAdapter,qe,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof De?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedYear(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,S.O)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const qe=this._dateAdapter.getYear(this._activeDate)-hi(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let Mt=0,zt=[];Mt<24;Mt++)zt.push(qe+Mt),4==zt.length&&(this._years.push(zt.map(bi=>this._createCellForYear(bi))),zt=[]);this._changeDetectorRef.markForCheck()}_yearSelected(re){const qe=re.value;this.yearSelected.emit(this._dateAdapter.createDate(qe,0,1));let Mt=this._dateAdapter.getMonth(this.activeDate),zt=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(qe,Mt,1));this.selectedChange.emit(this._dateAdapter.createDate(qe,Mt,Math.min(this._dateAdapter.getDate(this.activeDate),zt)))}_handleCalendarBodyKeydown(re){const qe=this._activeDate,Mt=this._isRtl();switch(re.keyCode){case L.oh:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Mt?1:-1);break;case L.SV:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Mt?-1:1);break;case L.LH:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case L.JH:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case L.Sd:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-hi(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case L.uR:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-hi(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case L.Ku:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?-240:-24);break;case L.VM:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?240:24);break;case L.K5:case L.L_:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(qe,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===L.L_||re.keyCode===L.K5)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_getActiveCell(){return hi(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_createCellForYear(re){const qe=this._dateAdapter.createDate(re,0,1),Mt=this._dateAdapter.getYearName(qe),zt=this.dateClass?this.dateClass(qe,"multi-year"):void 0;return new Ne(re,Mt,Mt,this._shouldEnableYear(re),zt)}_shouldEnableYear(re){if(null==re||this.maxDate&&re>this._dateAdapter.getYear(this.maxDate)||this.minDate&&re{class je{constructor(re,qe,Mt,zt){this._changeDetectorRef=re,this._dateFormats=qe,this._dateAdapter=Mt,this._dir=zt,this._rerenderSubscription=A.w0.EMPTY,this.selectedChange=new a.vpe,this.monthSelected=new a.vpe,this.activeDateChange=new a.vpe,this._activeDate=this._dateAdapter.today()}get activeDate(){return this._activeDate}set activeDate(re){let qe=this._activeDate;const Mt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Mt,this.minDate,this.maxDate),this._dateAdapter.getYear(qe)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof De?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedMonth(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,S.O)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(re){const qe=re.value,Mt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),qe,1);this.monthSelected.emit(Mt);const zt=this._dateAdapter.getNumDaysInMonth(Mt);this.selectedChange.emit(this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),qe,Math.min(this._dateAdapter.getDate(this.activeDate),zt)))}_handleCalendarBodyKeydown(re){const qe=this._activeDate,Mt=this._isRtl();switch(re.keyCode){case L.oh:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Mt?1:-1);break;case L.SV:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Mt?-1:1);break;case L.LH:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case L.JH:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case L.Sd:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case L.uR:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case L.Ku:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?-10:-1);break;case L.VM:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10:1);break;case L.K5:case L.L_:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(qe,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCell(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===L.L_||re.keyCode===L.K5)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth=this._getMonthInCurrentYear(this._dateAdapter.today()),this._yearLabel=this._dateAdapter.getYearName(this.activeDate);let re=this._dateAdapter.getMonthNames("short");this._months=[[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(qe=>qe.map(Mt=>this._createCellForMonth(Mt,re[Mt]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_getMonthInCurrentYear(re){return re&&this._dateAdapter.getYear(re)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(re):null}_createCellForMonth(re,qe){const Mt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),zt=this._dateAdapter.format(Mt,this._dateFormats.display.monthYearA11yLabel),bi=this.dateClass?this.dateClass(Mt,"year"):void 0;return new Ne(re,qe.toLocaleUpperCase(),zt,this._shouldEnableMonth(re),bi)}_shouldEnableMonth(re){const qe=this._dateAdapter.getYear(this.activeDate);if(null==re||this._isYearAndMonthAfterMaxDate(qe,re)||this._isYearAndMonthBeforeMinDate(qe,re))return!1;if(!this.dateFilter)return!0;for(let zt=this._dateAdapter.createDate(qe,re,1);this._dateAdapter.getMonth(zt)==re;zt=this._dateAdapter.addCalendarDays(zt,1))if(this.dateFilter(zt))return!0;return!1}_isYearAndMonthAfterMaxDate(re,qe){if(this.maxDate){const Mt=this._dateAdapter.getYear(this.maxDate),zt=this._dateAdapter.getMonth(this.maxDate);return re>Mt||re===Mt&&qe>zt}return!1}_isYearAndMonthBeforeMinDate(re,qe){if(this.minDate){const Mt=this._dateAdapter.getYear(this.minDate),zt=this._dateAdapter.getMonth(this.minDate);return re{class je{constructor(){this.changes=new h.x,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year"}formatYearRange(re,qe){return`${re} \u2013 ${qe}`}}return je.\u0275fac=function(re){return new(re||je)},je.\u0275prov=a.Yz7({token:je,factory:je.\u0275fac,providedIn:"root"}),je})(),yt=0,ei=(()=>{class je{constructor(re,qe,Mt,zt,bi){this._intl=re,this.calendar=qe,this._dateAdapter=Mt,this._dateFormats=zt,this._buttonDescriptionId="mat-calendar-button-"+yt++,this.calendar.stateChanges.subscribe(()=>bi.markForCheck())}get periodButtonText(){if("month"==this.calendar.currentView)return this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase();if("year"==this.calendar.currentView)return this._dateAdapter.getYearName(this.calendar.activeDate);const qe=this._dateAdapter.getYear(this.calendar.activeDate)-hi(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),Mt=qe+24-1,zt=this._dateAdapter.getYearName(this._dateAdapter.createDate(qe,0,1)),bi=this._dateAdapter.getYearName(this._dateAdapter.createDate(Mt,0,1));return this._intl.formatYearRange(zt,bi)}get periodButtonLabel(){return"month"==this.calendar.currentView?this._intl.switchToMultiYearViewLabel:this._intl.switchToMonthViewLabel}get prevButtonLabel(){return{month:this._intl.prevMonthLabel,year:this._intl.prevYearLabel,"multi-year":this._intl.prevMultiYearLabel}[this.calendar.currentView]}get nextButtonLabel(){return{month:this._intl.nextMonthLabel,year:this._intl.nextYearLabel,"multi-year":this._intl.nextMultiYearLabel}[this.calendar.currentView]}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-24)}nextClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:24)}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_isSameView(re,qe){return"month"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(qe)&&this._dateAdapter.getMonth(re)==this._dateAdapter.getMonth(qe):"year"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(qe):Gt(this._dateAdapter,re,qe,this.calendar.minDate,this.calendar.maxDate)}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(et),a.Y36((0,a.Gpc)(()=>Yt)),a.Y36(N._A,8),a.Y36(N.sG,8),a.Y36(a.sBO))},je.\u0275cmp=a.Xpm({type:je,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:u,decls:11,vars:10,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["mat-button","","type","button","aria-live","polite",1,"mat-calendar-period-button",3,"click"],["viewBox","0 0 10 5","focusable","false",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["mat-icon-button","","type","button",1,"mat-calendar-previous-button",3,"disabled","click"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"disabled","click"]],template:function(re,qe){1&re&&(a.F$t(),a.TgZ(0,"div",0)(1,"div",1)(2,"button",2),a.NdJ("click",function(){return qe.currentPeriodClicked()}),a.TgZ(3,"span"),a._uU(4),a.qZA(),a.O4$(),a.TgZ(5,"svg",3),a._UZ(6,"polygon",4),a.qZA()(),a.kcU(),a._UZ(7,"div",5),a.Hsn(8),a.TgZ(9,"button",6),a.NdJ("click",function(){return qe.previousClicked()}),a.qZA(),a.TgZ(10,"button",7),a.NdJ("click",function(){return qe.nextClicked()}),a.qZA()()()),2&re&&(a.xp6(2),a.uIk("aria-label",qe.periodButtonLabel)("aria-describedby",qe._buttonDescriptionId),a.xp6(1),a.uIk("id",qe._buttonDescriptionId),a.xp6(1),a.Oqu(qe.periodButtonText),a.xp6(1),a.ekj("mat-calendar-invert","month"!==qe.calendar.currentView),a.xp6(4),a.Q6J("disabled",!qe.previousEnabled()),a.uIk("aria-label",qe.prevButtonLabel),a.xp6(1),a.Q6J("disabled",!qe.nextEnabled()),a.uIk("aria-label",qe.nextButtonLabel))},directives:[b.lW],encapsulation:2,changeDetection:0}),je})(),Yt=(()=>{class je{constructor(re,qe,Mt,zt){this._dateAdapter=qe,this._dateFormats=Mt,this._changeDetectorRef=zt,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new a.vpe,this.yearSelected=new a.vpe,this.monthSelected=new a.vpe,this.viewChanged=new a.vpe(!0),this._userSelection=new a.vpe,this.stateChanges=new h.x,this._intlChanges=re.changes.subscribe(()=>{zt.markForCheck(),this.stateChanges.next()})}get startAt(){return this._startAt}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get selected(){return this._selected}set selected(re){this._selected=re instanceof De?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get activeDate(){return this._clampedActiveDate}set activeDate(re){this._clampedActiveDate=this._dateAdapter.clampDate(re,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}get currentView(){return this._currentView}set currentView(re){const qe=this._currentView!==re?re:null;this._currentView=re,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),qe&&this.viewChanged.emit(qe)}ngAfterContentInit(){this._calendarHeaderPortal=new f.C5(this.headerComponent||ei),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(re){const qe=re.minDate&&!this._dateAdapter.sameDate(re.minDate.previousValue,re.minDate.currentValue)?re.minDate:void 0,Mt=re.maxDate&&!this._dateAdapter.sameDate(re.maxDate.previousValue,re.maxDate.currentValue)?re.maxDate:void 0,zt=qe||Mt||re.dateFilter;if(zt&&!zt.firstChange){const bi=this._getCurrentViewComponent();bi&&(this._changeDetectorRef.detectChanges(),bi._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(re){const qe=re.value;(this.selected instanceof De||qe&&!this._dateAdapter.sameDate(qe,this.selected))&&this.selectedChange.emit(qe),this._userSelection.emit(re)}_yearSelectedInMultiYearView(re){this.yearSelected.emit(re)}_monthSelectedInYearView(re){this.monthSelected.emit(re)}_goToDateInView(re,qe){this.activeDate=re,this.currentView=qe}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(et),a.Y36(N._A,8),a.Y36(N.sG,8),a.Y36(a.sBO))},je.\u0275cmp=a.Xpm({type:je,selectors:[["mat-calendar"]],viewQuery:function(re,qe){if(1&re&&(a.Gf(ht,5),a.Gf(Ct,5),a.Gf(Wt,5)),2&re){let Mt;a.iGM(Mt=a.CRH())&&(qe.monthView=Mt.first),a.iGM(Mt=a.CRH())&&(qe.yearView=Mt.first),a.iGM(Mt=a.CRH())&&(qe.multiYearView=Mt.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection"},exportAs:["matCalendar"],features:[a._Bn([Te]),a.TTD],decls:5,vars:5,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content",3,"ngSwitch"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","activeDateChange","_userSelection",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange",4,"ngSwitchCase"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","activeDateChange","_userSelection"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange"]],template:function(re,qe){1&re&&(a.YNc(0,c,0,0,"ng-template",0),a.TgZ(1,"div",1),a.YNc(2,_,1,8,"mat-month-view",2),a.YNc(3,E,1,6,"mat-year-view",3),a.YNc(4,I,1,6,"mat-multi-year-view",4),a.qZA()),2&re&&(a.Q6J("cdkPortalOutlet",qe._calendarHeaderPortal),a.xp6(1),a.Q6J("ngSwitch",qe.currentView),a.xp6(1),a.Q6J("ngSwitchCase","month"),a.xp6(1),a.Q6J("ngSwitchCase","year"),a.xp6(1),a.Q6J("ngSwitchCase","multi-year"))},directives:[ht,Ct,Wt,f.Pl,t.kH,M.RF,M.n9],styles:['.mat-calendar{display:block}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-controls .mat-icon-button:hover .mat-button-focus-overlay{opacity:.04}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.cdk-high-contrast-active .mat-calendar-arrow{fill:CanvasText}.mat-calendar-previous-button,.mat-calendar-next-button{position:relative}.mat-calendar-previous-button::after,.mat-calendar-next-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:"";margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px}\n'],encapsulation:2,changeDetection:0}),je})();const Pe={transformPanel:(0,$.X$)("transformPanel",[(0,$.eR)("void => enter-dropdown",(0,$.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,$.F4)([(0,$.oB)({opacity:0,transform:"scale(1, 0.8)"}),(0,$.oB)({opacity:1,transform:"scale(1, 1)"})]))),(0,$.eR)("void => enter-dialog",(0,$.jt)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,$.F4)([(0,$.oB)({opacity:0,transform:"scale(0.7)"}),(0,$.oB)({transform:"none",opacity:1})]))),(0,$.eR)("* => void",(0,$.jt)("100ms linear",(0,$.oB)({opacity:0})))]),fadeInCalendar:(0,$.X$)("fadeInCalendar",[(0,$.SB)("void",(0,$.oB)({opacity:0})),(0,$.SB)("enter",(0,$.oB)({opacity:1})),(0,$.eR)("void => *",(0,$.jt)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let Oe=0;const ce=new a.OlP("mat-datepicker-scroll-strategy"),pt={provide:ce,deps:[e.aV],useFactory:function be(je){return()=>je.scrollStrategies.reposition()}},mt=(0,N.pj)(class{constructor(je){this._elementRef=je}});let Ht=(()=>{class je extends mt{constructor(re,qe,Mt,zt,bi,Ei){super(re),this._changeDetectorRef=qe,this._globalModel=Mt,this._dateAdapter=zt,this._rangeSelectionStrategy=bi,this._subscriptions=new A.w0,this._animationDone=new h.x,this._actionsPortal=null,this._closeButtonText=Ei.closeCalendarLabel}ngOnInit(){this._model=this._actionsPortal?this._globalModel.clone():this._globalModel,this._animationState=this.datepicker.touchUi?"enter-dialog":"enter-dropdown"}ngAfterViewInit(){this._subscriptions.add(this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})),this._calendar.focusActiveCell()}ngOnDestroy(){this._subscriptions.unsubscribe(),this._animationDone.complete()}_handleUserSelection(re){const qe=this._model.selection,Mt=re.value,zt=qe instanceof De;if(zt&&this._rangeSelectionStrategy){const bi=this._rangeSelectionStrategy.selectionFinished(Mt,qe,re.event);this._model.updateSelection(bi,this)}else Mt&&(zt||!this._dateAdapter.sameDate(Mt,qe))&&this._model.add(Mt);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(dt),a.Y36(N._A),a.Y36(ee,8),a.Y36(et))},je.\u0275cmp=a.Xpm({type:je,selectors:[["mat-datepicker-content"]],viewQuery:function(re,qe){if(1&re&&a.Gf(Yt,5),2&re){let Mt;a.iGM(Mt=a.CRH())&&(qe._calendar=Mt.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:3,hostBindings:function(re,qe){1&re&&a.WFA("@transformPanel.done",function(){return qe._animationDone.next()}),2&re&&(a.d8E("@transformPanel",qe._animationState),a.ekj("mat-datepicker-content-touch",qe.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],features:[a.qOj],decls:5,vars:24,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"id","ngClass","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","yearSelected","monthSelected","viewChanged","_userSelection"],[3,"cdkPortalOutlet"],["type","button","mat-raised-button","",1,"mat-datepicker-close-button",3,"color","focus","blur","click"]],template:function(re,qe){if(1&re&&(a.TgZ(0,"div",0)(1,"mat-calendar",1),a.NdJ("yearSelected",function(zt){return qe.datepicker._selectYear(zt)})("monthSelected",function(zt){return qe.datepicker._selectMonth(zt)})("viewChanged",function(zt){return qe.datepicker._viewChanged(zt)})("_userSelection",function(zt){return qe._handleUserSelection(zt)}),a.qZA(),a.YNc(2,v,0,0,"ng-template",2),a.TgZ(3,"button",3),a.NdJ("focus",function(){return qe._closeButtonFocused=!0})("blur",function(){return qe._closeButtonFocused=!1})("click",function(){return qe.datepicker.close()}),a._uU(4),a.qZA()()),2&re){let Mt;a.ekj("mat-datepicker-content-container-with-custom-header",qe.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",qe._actionsPortal),a.uIk("aria-modal",!0)("aria-labelledby",null!==(Mt=qe._dialogLabelId)&&void 0!==Mt?Mt:void 0),a.xp6(1),a.Q6J("id",qe.datepicker.id)("ngClass",qe.datepicker.panelClass)("startAt",qe.datepicker.startAt)("startView",qe.datepicker.startView)("minDate",qe.datepicker._getMinDate())("maxDate",qe.datepicker._getMaxDate())("dateFilter",qe.datepicker._getDateFilter())("headerComponent",qe.datepicker.calendarHeaderComponent)("selected",qe._getSelected())("dateClass",qe.datepicker.dateClass)("comparisonStart",qe.comparisonStart)("comparisonEnd",qe.comparisonEnd)("@fadeInCalendar","enter"),a.xp6(1),a.Q6J("cdkPortalOutlet",qe._actionsPortal),a.xp6(1),a.ekj("cdk-visually-hidden",!qe._closeButtonFocused),a.Q6J("color",qe.color||"primary"),a.xp6(1),a.Oqu(qe._closeButtonText)}},directives:[Yt,b.lW,t.mK,M.mk,f.Pl],styles:[".mat-datepicker-content{display:block;border-radius:4px}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.ng-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{display:block;max-height:80vh;position:relative;overflow:visible}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}\n"],encapsulation:2,data:{animation:[Pe.transformPanel,Pe.fadeInCalendar]},changeDetection:0}),je})(),it=(()=>{class je{constructor(re,qe,Mt,zt,bi,Ei,Xi){this._overlay=re,this._ngZone=qe,this._viewContainerRef=Mt,this._dateAdapter=bi,this._dir=Ei,this._model=Xi,this._inputStateChanges=A.w0.EMPTY,this.startView="month",this._touchUi=!1,this.xPosition="start",this.yPosition="below",this._restoreFocus=!0,this.yearSelected=new a.vpe,this.monthSelected=new a.vpe,this.viewChanged=new a.vpe(!0),this.openedStream=new a.vpe,this.closedStream=new a.vpe,this._opened=!1,this.id="mat-datepicker-"+Oe++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new h.x,this._scrollStrategy=zt}get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(re){this._color=re}get touchUi(){return this._touchUi}set touchUi(re){this._touchUi=(0,Y.Ig)(re)}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(re){const qe=(0,Y.Ig)(re);qe!==this._disabled&&(this._disabled=qe,this.stateChanges.next(void 0))}get restoreFocus(){return this._restoreFocus}set restoreFocus(re){this._restoreFocus=(0,Y.Ig)(re)}get panelClass(){return this._panelClass}set panelClass(re){this._panelClass=(0,Y.du)(re)}get opened(){return this._opened}set opened(re){(0,Y.Ig)(re)?this.open():this.close()}_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}ngOnChanges(re){const qe=re.xPosition||re.yPosition;if(qe&&!qe.firstChange&&this._overlayRef){const Mt=this._overlayRef.getConfig().positionStrategy;Mt instanceof e._G&&(this._setConnectedPositions(Mt),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(re){this._model.add(re)}_selectYear(re){this.yearSelected.emit(re)}_selectMonth(re){this.monthSelected.emit(re)}_viewChanged(re){this.viewChanged.emit(re)}registerInput(re){return this._inputStateChanges.unsubscribe(),this.datepickerInput=re,this._inputStateChanges=re.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(re){this._actionsPortal=re}removeActions(re){re===this._actionsPortal&&(this._actionsPortal=null)}open(){this._opened||this.disabled||(this._focusedElementBeforeOpen=(0,ne.ht)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened)return;if(this._componentRef){const qe=this._componentRef.instance;qe._startExitAnimation(),qe._animationDone.pipe((0,k.q)(1)).subscribe(()=>this._destroyOverlay())}const re=()=>{this._opened&&(this._opened=!1,this.closedStream.emit(),this._focusedElementBeforeOpen=null)};this._restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus?(this._focusedElementBeforeOpen.focus(),setTimeout(re)):re()}_applyPendingSelection(){var re,qe;null===(qe=null===(re=this._componentRef)||void 0===re?void 0:re.instance)||void 0===qe||qe._applyPendingSelection()}_forwardContentValues(re){re.datepicker=this,re.color=this.color,re._actionsPortal=this._actionsPortal,re._dialogLabelId=this.datepickerInput.getOverlayLabelId()}_openOverlay(){this._destroyOverlay();const re=this.touchUi,qe=new f.C5(Ht,this._viewContainerRef),Mt=this._overlayRef=this._overlay.create(new e.X_({positionStrategy:re?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[re?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir,scrollStrategy:re?this._overlay.scrollStrategies.block():this._scrollStrategy(),panelClass:"mat-datepicker-"+(re?"dialog":"popup")}));this._getCloseStream(Mt).subscribe(zt=>{zt&&zt.preventDefault(),this.close()}),Mt.keydownEvents().subscribe(zt=>{const bi=zt.keyCode;(bi===L.LH||bi===L.JH||bi===L.oh||bi===L.SV||bi===L.Ku||bi===L.VM)&&zt.preventDefault()}),this._componentRef=Mt.attach(qe),this._forwardContentValues(this._componentRef.instance),re||this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(()=>Mt.updatePosition())}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return this._overlay.position().global().centerHorizontally().centerVertically()}_getDropdownStrategy(){const re=this._overlay.position().flexibleConnectedTo(this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(re)}_setConnectedPositions(re){const qe="end"===this.xPosition?"end":"start",Mt="start"===qe?"end":"start",zt="above"===this.yPosition?"bottom":"top",bi="top"===zt?"bottom":"top";return re.withPositions([{originX:qe,originY:bi,overlayX:qe,overlayY:zt},{originX:qe,originY:zt,overlayX:qe,overlayY:bi},{originX:Mt,originY:bi,overlayX:Mt,overlayY:zt},{originX:Mt,originY:zt,overlayX:Mt,overlayY:bi}])}_getCloseStream(re){return(0,w.T)(re.backdropClick(),re.detachments(),re.keydownEvents().pipe((0,U.h)(qe=>qe.keyCode===L.hY&&!(0,L.Vb)(qe)||this.datepickerInput&&(0,L.Vb)(qe,"altKey")&&qe.keyCode===L.LH)))}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(e.aV),a.Y36(a.R0b),a.Y36(a.s_b),a.Y36(ce),a.Y36(N._A,8),a.Y36(Z.Is,8),a.Y36(dt))},je.\u0275dir=a.lG2({type:je,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:"touchUi",disabled:"disabled",xPosition:"xPosition",yPosition:"yPosition",restoreFocus:"restoreFocus",dateClass:"dateClass",panelClass:"panelClass",opened:"opened"},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[a.TTD]}),je})(),Re=(()=>{class je extends it{}return je.\u0275fac=function(){let _t;return function(qe){return(_t||(_t=a.n5z(je)))(qe||je)}}(),je.\u0275cmp=a.Xpm({type:je,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[a._Bn([Te,{provide:it,useExisting:je}]),a.qOj],decls:0,vars:0,template:function(re,qe){},encapsulation:2,changeDetection:0}),je})();class tt{constructor(_t,re){this.target=_t,this.targetElement=re,this.value=this.target.value}}let Xe=(()=>{class je{constructor(re,qe,Mt){this._elementRef=re,this._dateAdapter=qe,this._dateFormats=Mt,this.dateChange=new a.vpe,this.dateInput=new a.vpe,this.stateChanges=new h.x,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=A.w0.EMPTY,this._localeSubscription=A.w0.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=zt=>{const bi=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(zt.value));return!bi||this._matchesFilter(bi)?null:{matDatepickerFilter:!0}},this._minValidator=zt=>{const bi=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(zt.value)),Ei=this._getMinDate();return!Ei||!bi||this._dateAdapter.compareDate(Ei,bi)<=0?null:{matDatepickerMin:{min:Ei,actual:bi}}},this._maxValidator=zt=>{const bi=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(zt.value)),Ei=this._getMaxDate();return!Ei||!bi||this._dateAdapter.compareDate(Ei,bi)>=0?null:{matDatepickerMax:{max:Ei,actual:bi}}},this._lastValueValid=!1,this._localeSubscription=qe.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(re){this._assignValueProgrammatically(re)}get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(re){const qe=(0,Y.Ig)(re),Mt=this._elementRef.nativeElement;this._disabled!==qe&&(this._disabled=qe,this.stateChanges.next(void 0)),qe&&this._isInitialized&&Mt.blur&&Mt.blur()}_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(re){this._model=re,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(qe=>{if(this._shouldHandleChangeEvent(qe)){const Mt=this._getValueFromModel(qe.selection);this._lastValueValid=this._isValidValue(Mt),this._cvaOnChange(Mt),this._onTouched(),this._formatValue(Mt),this.dateInput.emit(new tt(this,this._elementRef.nativeElement)),this.dateChange.emit(new tt(this,this._elementRef.nativeElement))}})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(re){(function Se(je,_t){const re=Object.keys(je);for(let qe of re){const{previousValue:Mt,currentValue:zt}=je[qe];if(!_t.isDateInstance(Mt)||!_t.isDateInstance(zt))return!0;if(!_t.sameDate(Mt,zt))return!0}return!1})(re,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(re){this._validatorOnChange=re}validate(re){return this._validator?this._validator(re):null}writeValue(re){this._assignValueProgrammatically(re)}registerOnChange(re){this._cvaOnChange=re}registerOnTouched(re){this._onTouched=re}setDisabledState(re){this.disabled=re}_onKeydown(re){re.altKey&&re.keyCode===L.JH&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),re.preventDefault())}_onInput(re){const qe=this._lastValueValid;let Mt=this._dateAdapter.parse(re,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(Mt),Mt=this._dateAdapter.getValidDateOrNull(Mt);const zt=!this._dateAdapter.sameDate(Mt,this.value);!Mt||zt?this._cvaOnChange(Mt):(re&&!this.value&&this._cvaOnChange(Mt),qe!==this._lastValueValid&&this._validatorOnChange()),zt&&(this._assignValue(Mt),this.dateInput.emit(new tt(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new tt(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(re){this._elementRef.nativeElement.value=null!=re?this._dateAdapter.format(re,this._dateFormats.display.dateInput):""}_assignValue(re){this._model?(this._assignValueToModel(re),this._pendingValue=null):this._pendingValue=re}_isValidValue(re){return!re||this._dateAdapter.isValid(re)}_parentDisabled(){return!1}_assignValueProgrammatically(re){re=this._dateAdapter.deserialize(re),this._lastValueValid=this._isValidValue(re),re=this._dateAdapter.getValidDateOrNull(re),this._assignValue(re),this._formatValue(re)}_matchesFilter(re){const qe=this._getDateFilter();return!qe||qe(re)}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(a.SBq),a.Y36(N._A,8),a.Y36(N.sG,8))},je.\u0275dir=a.lG2({type:je,inputs:{value:"value",disabled:"disabled"},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[a.TTD]}),je})();const Ge={provide:de.JU,useExisting:(0,a.Gpc)(()=>st),multi:!0},at={provide:de.Cf,useExisting:(0,a.Gpc)(()=>st),multi:!0};let st=(()=>{class je extends Xe{constructor(re,qe,Mt,zt){super(re,qe,Mt),this._formField=zt,this._closedSubscription=A.w0.EMPTY,this._validator=de.kI.compose(super._getValidators())}set matDatepicker(re){re&&(this._datepicker=re,this._closedSubscription=re.closedStream.subscribe(()=>this._onTouched()),this._registerModel(re.registerInput(this)))}get min(){return this._min}set min(re){const qe=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(qe,this._min)||(this._min=qe,this._validatorOnChange())}get max(){return this._max}set max(re){const qe=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(qe,this._max)||(this._max=qe,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(re){const qe=this._matchesFilter(this.value);this._dateFilter=re,this._matchesFilter(this.value)!==qe&&this._validatorOnChange()}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(re){return re}_assignValueToModel(re){this._model&&this._model.updateSelection(re,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(re){return re.source!==this}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(a.SBq),a.Y36(N._A,8),a.Y36(N.sG,8),a.Y36(te.G_,8))},je.\u0275dir=a.lG2({type:je,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(re,qe){1&re&&a.NdJ("input",function(zt){return qe._onInput(zt.target.value)})("change",function(){return qe._onChange()})("blur",function(){return qe._onBlur()})("keydown",function(zt){return qe._onKeydown(zt)}),2&re&&(a.Ikx("disabled",qe.disabled),a.uIk("aria-haspopup",qe._datepicker?"dialog":null)("aria-owns",(null==qe._datepicker?null:qe._datepicker.opened)&&qe._datepicker.id||null)("min",qe.min?qe._dateAdapter.toIso8601(qe.min):null)("max",qe.max?qe._dateAdapter.toIso8601(qe.max):null)("data-mat-calendar",qe._datepicker?qe._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:["matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[a._Bn([Ge,at,{provide:ie.Jk,useExisting:je}]),a.qOj]}),je})(),bt=(()=>{class je{}return je.\u0275fac=function(re){return new(re||je)},je.\u0275dir=a.lG2({type:je,selectors:[["","matDatepickerToggleIcon",""]]}),je})(),gi=(()=>{class je{constructor(re,qe,Mt){this._intl=re,this._changeDetectorRef=qe,this._stateChanges=A.w0.EMPTY;const zt=Number(Mt);this.tabIndex=zt||0===zt?zt:null}get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(re){this._disabled=(0,Y.Ig)(re)}ngOnChanges(re){re.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(re){this.datepicker&&!this.disabled&&(this.datepicker.open(),re.stopPropagation())}_watchStateChanges(){const re=this.datepicker?this.datepicker.stateChanges:(0,D.of)(),qe=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,D.of)(),Mt=this.datepicker?(0,w.T)(this.datepicker.openedStream,this.datepicker.closedStream):(0,D.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,w.T)(this._intl.changes,re,qe,Mt).subscribe(()=>this._changeDetectorRef.markForCheck())}}return je.\u0275fac=function(re){return new(re||je)(a.Y36(et),a.Y36(a.sBO),a.$8M("tabindex"))},je.\u0275cmp=a.Xpm({type:je,selectors:[["mat-datepicker-toggle"]],contentQueries:function(re,qe,Mt){if(1&re&&a.Suo(Mt,bt,5),2&re){let zt;a.iGM(zt=a.CRH())&&(qe._customIcon=zt.first)}},viewQuery:function(re,qe){if(1&re&&a.Gf(n,5),2&re){let Mt;a.iGM(Mt=a.CRH())&&(qe._button=Mt.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(re,qe){1&re&&a.NdJ("click",function(zt){return qe._open(zt)}),2&re&&(a.uIk("tabindex",null)("data-mat-calendar",qe.datepicker?qe.datepicker.id:null),a.ekj("mat-datepicker-toggle-active",qe.datepicker&&qe.datepicker.opened)("mat-accent",qe.datepicker&&"accent"===qe.datepicker.color)("mat-warn",qe.datepicker&&"warn"===qe.datepicker.color))},inputs:{datepicker:["for","datepicker"],tabIndex:"tabIndex",ariaLabel:["aria-label","ariaLabel"],disabled:"disabled",disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[a.TTD],ngContentSelectors:P,decls:4,vars:6,consts:[["mat-icon-button","","type","button",3,"disabled","disableRipple"],["button",""],["class","mat-datepicker-toggle-default-icon","viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false",4,"ngIf"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(re,qe){1&re&&(a.F$t(B),a.TgZ(0,"button",0,1),a.YNc(2,C,2,0,"svg",2),a.Hsn(3),a.qZA()),2&re&&(a.Q6J("disabled",qe.disabled)("disableRipple",qe.disableRipple),a.uIk("aria-haspopup",qe.datepicker?"dialog":null)("aria-label",qe.ariaLabel||qe._intl.openCalendarLabel)("tabindex",qe.disabled?-1:qe.tabIndex),a.xp6(2),a.Q6J("ngIf",!qe._customIcon))},directives:[b.lW,M.O5],styles:[".mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-datepicker-toggle-default-icon{display:block;width:1.5em;height:1.5em}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-datepicker-toggle-default-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-datepicker-toggle-default-icon{margin:auto}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}\n"],encapsulation:2,changeDetection:0}),je})(),pe=(()=>{class je{}return je.\u0275fac=function(re){return new(re||je)},je.\u0275mod=a.oAB({type:je}),je.\u0275inj=a.cJS({providers:[et,pt],imports:[[M.ez,b.ot,e.U8,t.rt,f.eL,N.BQ],d.ZD]}),je})()},8966:(Ve,j,p)=>{"use strict";p.d(j,{Bq:()=>i,Is:()=>he,WI:()=>y,ZT:()=>C,so:()=>X,uw:()=>I});var t=p(9776),e=p(7429),f=p(5e3),M=p(508),a=p(226),b=p(7579),d=p(9770),N=p(9646),h=p(9300),A=p(5698),w=p(8675),D=p(925),L=p(9808),k=p(1777),S=p(5664),U=p(1159),Z=p(6360);function Y(_e,Ne){}class ne{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.maxWidth="80vw",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const $={dialogContainer:(0,k.X$)("dialogContainer",[(0,k.SB)("void, exit",(0,k.oB)({opacity:0,transform:"scale(0.7)"})),(0,k.SB)("enter",(0,k.oB)({transform:"none"})),(0,k.eR)("* => enter",(0,k.ru)([(0,k.jt)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,k.oB)({transform:"none",opacity:1})),(0,k.IO)("@*",(0,k.pV)(),{optional:!0})])),(0,k.eR)("* => void, * => exit",(0,k.ru)([(0,k.jt)("75ms cubic-bezier(0.4, 0.0, 0.2, 1)",(0,k.oB)({opacity:0})),(0,k.IO)("@*",(0,k.pV)(),{optional:!0})]))])};let te=(()=>{class _e extends e.en{constructor(we,Q,Ue,ve,V,De,dt,Ie){super(),this._elementRef=we,this._focusTrapFactory=Q,this._changeDetectorRef=Ue,this._config=V,this._interactivityChecker=De,this._ngZone=dt,this._focusMonitor=Ie,this._animationStateChanged=new f.vpe,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this.attachDomPortal=Ae=>(this._portalOutlet.hasAttached(),this._portalOutlet.attachDomPortal(Ae)),this._ariaLabelledBy=V.ariaLabelledBy||null,this._document=ve}_initializeWithAttachedContent(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,D.ht)())}attachComponentPortal(we){return this._portalOutlet.hasAttached(),this._portalOutlet.attachComponentPortal(we)}attachTemplatePortal(we){return this._portalOutlet.hasAttached(),this._portalOutlet.attachTemplatePortal(we)}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(we,Q){this._interactivityChecker.isFocusable(we)||(we.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Ue=()=>{we.removeEventListener("blur",Ue),we.removeEventListener("mousedown",Ue),we.removeAttribute("tabindex")};we.addEventListener("blur",Ue),we.addEventListener("mousedown",Ue)})),we.focus(Q)}_focusByCssSelector(we,Q){let Ue=this._elementRef.nativeElement.querySelector(we);Ue&&this._forceFocus(Ue,Q)}_trapFocus(){const we=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||we.focus();break;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(Q=>{Q||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const we=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&we&&"function"==typeof we.focus){const Q=(0,D.ht)(),Ue=this._elementRef.nativeElement;(!Q||Q===this._document.body||Q===Ue||Ue.contains(Q))&&(this._focusMonitor?(this._focusMonitor.focusVia(we,this._closeInteractionType),this._closeInteractionType=null):we.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const we=this._elementRef.nativeElement,Q=(0,D.ht)();return we===Q||we.contains(Q)}}return _e.\u0275fac=function(we){return new(we||_e)(f.Y36(f.SBq),f.Y36(S.qV),f.Y36(f.sBO),f.Y36(L.K0,8),f.Y36(ne),f.Y36(S.ic),f.Y36(f.R0b),f.Y36(S.tE))},_e.\u0275dir=f.lG2({type:_e,viewQuery:function(we,Q){if(1&we&&f.Gf(e.Pl,7),2&we){let Ue;f.iGM(Ue=f.CRH())&&(Q._portalOutlet=Ue.first)}},features:[f.qOj]}),_e})(),ie=(()=>{class _e extends te{constructor(){super(...arguments),this._state="enter"}_onAnimationDone({toState:we,totalTime:Q}){"enter"===we?(this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Q})):"exit"===we&&(this._restoreFocus(),this._animationStateChanged.next({state:"closed",totalTime:Q}))}_onAnimationStart({toState:we,totalTime:Q}){"enter"===we?this._animationStateChanged.next({state:"opening",totalTime:Q}):("exit"===we||"void"===we)&&this._animationStateChanged.next({state:"closing",totalTime:Q})}_startExitAnimation(){this._state="exit",this._changeDetectorRef.markForCheck()}_initializeWithAttachedContent(){super._initializeWithAttachedContent(),this._config.delayFocusTrap||this._trapFocus()}}return _e.\u0275fac=function(){let Ne;return function(Q){return(Ne||(Ne=f.n5z(_e)))(Q||_e)}}(),_e.\u0275cmp=f.Xpm({type:_e,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1","aria-modal","true",1,"mat-dialog-container"],hostVars:6,hostBindings:function(we,Q){1&we&&f.WFA("@dialogContainer.start",function(ve){return Q._onAnimationStart(ve)})("@dialogContainer.done",function(ve){return Q._onAnimationDone(ve)}),2&we&&(f.Ikx("id",Q._id),f.uIk("role",Q._config.role)("aria-labelledby",Q._config.ariaLabel?null:Q._ariaLabelledBy)("aria-label",Q._config.ariaLabel)("aria-describedby",Q._config.ariaDescribedBy||null),f.d8E("@dialogContainer",Q._state))},features:[f.qOj],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(we,Q){1&we&&f.YNc(0,Y,0,0,"ng-template",0)},directives:[e.Pl],styles:[".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;box-sizing:content-box;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\n"],encapsulation:2,data:{animation:[$.dialogContainer]}}),_e})(),oe=0;class X{constructor(Ne,we,Q="mat-dialog-"+oe++){this._overlayRef=Ne,this._containerInstance=we,this.id=Q,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new b.x,this._afterClosed=new b.x,this._beforeClosed=new b.x,this._state=0,we._id=Q,we._animationStateChanged.pipe((0,h.h)(Ue=>"opened"===Ue.state),(0,A.q)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),we._animationStateChanged.pipe((0,h.h)(Ue=>"closed"===Ue.state),(0,A.q)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),Ne.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._afterClosed.next(this._result),this._afterClosed.complete(),this.componentInstance=null,this._overlayRef.dispose()}),Ne.keydownEvents().pipe((0,h.h)(Ue=>Ue.keyCode===U.hY&&!this.disableClose&&!(0,U.Vb)(Ue))).subscribe(Ue=>{Ue.preventDefault(),me(this,"keyboard")}),Ne.backdropClick().subscribe(()=>{this.disableClose?this._containerInstance._recaptureFocus():me(this,"mouse")})}close(Ne){this._result=Ne,this._containerInstance._animationStateChanged.pipe((0,h.h)(we=>"closing"===we.state),(0,A.q)(1)).subscribe(we=>{this._beforeClosed.next(Ne),this._beforeClosed.complete(),this._overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),we.totalTime+100)}),this._state=1,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._afterClosed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._overlayRef.backdropClick()}keydownEvents(){return this._overlayRef.keydownEvents()}updatePosition(Ne){let we=this._getPositionStrategy();return Ne&&(Ne.left||Ne.right)?Ne.left?we.left(Ne.left):we.right(Ne.right):we.centerHorizontally(),Ne&&(Ne.top||Ne.bottom)?Ne.top?we.top(Ne.top):we.bottom(Ne.bottom):we.centerVertically(),this._overlayRef.updatePosition(),this}updateSize(Ne="",we=""){return this._overlayRef.updateSize({width:Ne,height:we}),this._overlayRef.updatePosition(),this}addPanelClass(Ne){return this._overlayRef.addPanelClass(Ne),this}removePanelClass(Ne){return this._overlayRef.removePanelClass(Ne),this}getState(){return this._state}_finishDialogClose(){this._state=2,this._overlayRef.dispose()}_getPositionStrategy(){return this._overlayRef.getConfig().positionStrategy}}function me(_e,Ne,we){return void 0!==_e._containerInstance&&(_e._containerInstance._closeInteractionType=Ne),_e.close(we)}const y=new f.OlP("MatDialogData"),i=new f.OlP("mat-dialog-default-options"),r=new f.OlP("mat-dialog-scroll-strategy"),_={provide:r,deps:[t.aV],useFactory:function c(_e){return()=>_e.scrollStrategies.block()}};let E=(()=>{class _e{constructor(we,Q,Ue,ve,V,De,dt,Ie,Ae,le){this._overlay=we,this._injector=Q,this._defaultOptions=Ue,this._parentDialog=ve,this._overlayContainer=V,this._dialogRefConstructor=dt,this._dialogContainerType=Ie,this._dialogDataToken=Ae,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new b.x,this._afterOpenedAtThisLevel=new b.x,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,d.P)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,w.O)(void 0))),this._scrollStrategy=De}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const we=this._parentDialog;return we?we._getAfterAllClosed():this._afterAllClosedAtThisLevel}open(we,Q){Q=function v(_e,Ne){return Object.assign(Object.assign({},Ne),_e)}(Q,this._defaultOptions||new ne),Q.id&&this.getDialogById(Q.id);const Ue=this._createOverlay(Q),ve=this._attachDialogContainer(Ue,Q),V=this._attachDialogContent(we,ve,Ue,Q);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(V),V.afterClosed().subscribe(()=>this._removeOpenDialog(V)),this.afterOpened.next(V),ve._initializeWithAttachedContent(),V}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(we){return this.openDialogs.find(Q=>Q.id===we)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_createOverlay(we){const Q=this._getOverlayConfig(we);return this._overlay.create(Q)}_getOverlayConfig(we){const Q=new t.X_({positionStrategy:this._overlay.position().global(),scrollStrategy:we.scrollStrategy||this._scrollStrategy(),panelClass:we.panelClass,hasBackdrop:we.hasBackdrop,direction:we.direction,minWidth:we.minWidth,minHeight:we.minHeight,maxWidth:we.maxWidth,maxHeight:we.maxHeight,disposeOnNavigation:we.closeOnNavigation});return we.backdropClass&&(Q.backdropClass=we.backdropClass),Q}_attachDialogContainer(we,Q){const ve=f.zs3.create({parent:Q&&Q.viewContainerRef&&Q.viewContainerRef.injector||this._injector,providers:[{provide:ne,useValue:Q}]}),V=new e.C5(this._dialogContainerType,Q.viewContainerRef,ve,Q.componentFactoryResolver);return we.attach(V).instance}_attachDialogContent(we,Q,Ue,ve){const V=new this._dialogRefConstructor(Ue,Q,ve.id);if(we instanceof f.Rgc)Q.attachTemplatePortal(new e.UE(we,null,{$implicit:ve.data,dialogRef:V}));else{const De=this._createInjector(ve,V,Q),dt=Q.attachComponentPortal(new e.C5(we,ve.viewContainerRef,De,ve.componentFactoryResolver));V.componentInstance=dt.instance}return V.updateSize(ve.width,ve.height).updatePosition(ve.position),V}_createInjector(we,Q,Ue){const ve=we&&we.viewContainerRef&&we.viewContainerRef.injector,V=[{provide:this._dialogContainerType,useValue:Ue},{provide:this._dialogDataToken,useValue:we.data},{provide:this._dialogRefConstructor,useValue:Q}];return we.direction&&(!ve||!ve.get(a.Is,null,f.XFs.Optional))&&V.push({provide:a.Is,useValue:{value:we.direction,change:(0,N.of)()}}),f.zs3.create({parent:ve||this._injector,providers:V})}_removeOpenDialog(we){const Q=this.openDialogs.indexOf(we);Q>-1&&(this.openDialogs.splice(Q,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Ue,ve)=>{Ue?ve.setAttribute("aria-hidden",Ue):ve.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const we=this._overlayContainer.getContainerElement();if(we.parentElement){const Q=we.parentElement.children;for(let Ue=Q.length-1;Ue>-1;Ue--){let ve=Q[Ue];ve!==we&&"SCRIPT"!==ve.nodeName&&"STYLE"!==ve.nodeName&&!ve.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(ve,ve.getAttribute("aria-hidden")),ve.setAttribute("aria-hidden","true"))}}}_closeDialogs(we){let Q=we.length;for(;Q--;)we[Q].close()}}return _e.\u0275fac=function(we){f.$Z()},_e.\u0275dir=f.lG2({type:_e}),_e})(),I=(()=>{class _e extends E{constructor(we,Q,Ue,ve,V,De,dt,Ie){super(we,Q,ve,De,dt,V,X,ie,y,Ie)}}return _e.\u0275fac=function(we){return new(we||_e)(f.LFG(t.aV),f.LFG(f.zs3),f.LFG(L.Ye,8),f.LFG(i,8),f.LFG(r),f.LFG(_e,12),f.LFG(t.Xj),f.LFG(Z.Qb,8))},_e.\u0275prov=f.Yz7({token:_e,factory:_e.\u0275fac}),_e})(),C=(()=>{class _e{constructor(we,Q,Ue){this.dialogRef=we,this._elementRef=Q,this._dialog=Ue,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function q(_e,Ne){let we=_e.nativeElement.parentElement;for(;we&&!we.classList.contains("mat-dialog-container");)we=we.parentElement;return we?Ne.find(Q=>Q.id===we.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(we){const Q=we._matDialogClose||we._matDialogCloseResult;Q&&(this.dialogResult=Q.currentValue)}_onButtonClick(we){me(this.dialogRef,0===we.screenX&&0===we.screenY?"keyboard":"mouse",this.dialogResult)}}return _e.\u0275fac=function(we){return new(we||_e)(f.Y36(X,8),f.Y36(f.SBq),f.Y36(I))},_e.\u0275dir=f.lG2({type:_e,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(we,Q){1&we&&f.NdJ("click",function(ve){return Q._onButtonClick(ve)}),2&we&&f.uIk("aria-label",Q.ariaLabel||null)("type",Q.type)},inputs:{ariaLabel:["aria-label","ariaLabel"],type:"type",dialogResult:["mat-dialog-close","dialogResult"],_matDialogClose:["matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],features:[f.TTD]}),_e})(),he=(()=>{class _e{}return _e.\u0275fac=function(we){return new(we||_e)},_e.\u0275mod=f.oAB({type:_e}),_e.\u0275inj=f.cJS({providers:[I,_],imports:[[t.U8,e.eL,M.BQ],M.BQ]}),_e})()},4834:(Ve,j,p)=>{"use strict";p.d(j,{d:()=>M,t:()=>a});var t=p(5e3),e=p(3191),f=p(508);let M=(()=>{class b{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(N){this._vertical=(0,e.Ig)(N)}get inset(){return this._inset}set inset(N){this._inset=(0,e.Ig)(N)}}return b.\u0275fac=function(N){return new(N||b)},b.\u0275cmp=t.Xpm({type:b,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(N,h){2&N&&(t.uIk("aria-orientation",h.vertical?"vertical":"horizontal"),t.ekj("mat-divider-vertical",h.vertical)("mat-divider-horizontal",!h.vertical)("mat-divider-inset",h.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(N,h){},styles:[".mat-divider{display:block;margin:0;border-top-width:1px;border-top-style:solid}.mat-divider.mat-divider-vertical{border-top:0;border-right-width:1px;border-right-style:solid}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}\n"],encapsulation:2,changeDetection:0}),b})(),a=(()=>{class b{}return b.\u0275fac=function(N){return new(N||b)},b.\u0275mod=t.oAB({type:b}),b.\u0275inj=t.cJS({imports:[[f.BQ],f.BQ]}),b})()},1125:(Ve,j,p)=>{"use strict";p.d(j,{pp:()=>we,To:()=>Q,ib:()=>B,u4:()=>_e,yz:()=>he,yK:()=>Ne});var t=p(5e3),e=p(3191),f=p(7579),M=p(727),a=p(449);let b=0;const d=new t.OlP("CdkAccordion");let N=(()=>{class Ue{constructor(){this._stateChanges=new f.x,this._openCloseAllActions=new f.x,this.id="cdk-accordion-"+b++,this._multi=!1}get multi(){return this._multi}set multi(V){this._multi=(0,e.Ig)(V)}openAll(){this._multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(V){this._stateChanges.next(V)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}}return Ue.\u0275fac=function(V){return new(V||Ue)},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:"multi"},exportAs:["cdkAccordion"],features:[t._Bn([{provide:d,useExisting:Ue}]),t.TTD]}),Ue})(),h=0,A=(()=>{class Ue{constructor(V,De,dt){this.accordion=V,this._changeDetectorRef=De,this._expansionDispatcher=dt,this._openCloseAllSubscription=M.w0.EMPTY,this.closed=new t.vpe,this.opened=new t.vpe,this.destroyed=new t.vpe,this.expandedChange=new t.vpe,this.id="cdk-accordion-child-"+h++,this._expanded=!1,this._disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=dt.listen((Ie,Ae)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===Ae&&this.id!==Ie&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}get expanded(){return this._expanded}set expanded(V){V=(0,e.Ig)(V),this._expanded!==V&&(this._expanded=V,this.expandedChange.emit(V),V?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(V){this._disabled=(0,e.Ig)(V)}ngOnDestroy(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()}toggle(){this.disabled||(this.expanded=!this.expanded)}close(){this.disabled||(this.expanded=!1)}open(){this.disabled||(this.expanded=!0)}_subscribeToOpenCloseAllActions(){return this.accordion._openCloseAllActions.subscribe(V=>{this.disabled||(this.expanded=V)})}}return Ue.\u0275fac=function(V){return new(V||Ue)(t.Y36(d,12),t.Y36(t.sBO),t.Y36(a.A8))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:"expanded",disabled:"disabled"},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],features:[t._Bn([{provide:d,useValue:void 0}])]}),Ue})(),w=(()=>{class Ue{}return Ue.\u0275fac=function(V){return new(V||Ue)},Ue.\u0275mod=t.oAB({type:Ue}),Ue.\u0275inj=t.cJS({}),Ue})();var D=p(7429),L=p(9808),k=p(508),S=p(5664),U=p(1884),Z=p(8675),Y=p(9300),ne=p(5698),$=p(1159),de=p(6360),te=p(515),ie=p(6451),oe=p(1777);const X=["body"];function me(Ue,ve){}const y=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],i=["mat-expansion-panel-header","*","mat-action-row"];function r(Ue,ve){if(1&Ue&&t._UZ(0,"span",2),2&Ue){const V=t.oxw();t.Q6J("@indicatorRotate",V._getExpandedState())}}const u=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],c=["mat-panel-title","mat-panel-description","*"],_=new t.OlP("MAT_ACCORDION"),E="225ms cubic-bezier(0.4,0.0,0.2,1)",I={indicatorRotate:(0,oe.X$)("indicatorRotate",[(0,oe.SB)("collapsed, void",(0,oe.oB)({transform:"rotate(0deg)"})),(0,oe.SB)("expanded",(0,oe.oB)({transform:"rotate(180deg)"})),(0,oe.eR)("expanded <=> collapsed, void => collapsed",(0,oe.jt)(E))]),bodyExpansion:(0,oe.X$)("bodyExpansion",[(0,oe.SB)("collapsed, void",(0,oe.oB)({height:"0px",visibility:"hidden"})),(0,oe.SB)("expanded",(0,oe.oB)({height:"*",visibility:"visible"})),(0,oe.eR)("expanded <=> collapsed, void => collapsed",(0,oe.jt)(E))])};let v=(()=>{class Ue{constructor(V){this._template=V}}return Ue.\u0275fac=function(V){return new(V||Ue)(t.Y36(t.Rgc))},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["ng-template","matExpansionPanelContent",""]]}),Ue})(),n=0;const C=new t.OlP("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let B=(()=>{class Ue extends A{constructor(V,De,dt,Ie,Ae,le,Te){super(V,De,dt),this._viewContainerRef=Ie,this._animationMode=le,this._hideToggle=!1,this.afterExpand=new t.vpe,this.afterCollapse=new t.vpe,this._inputChanges=new f.x,this._headerId="mat-expansion-panel-header-"+n++,this._bodyAnimationDone=new f.x,this.accordion=V,this._document=Ae,this._bodyAnimationDone.pipe((0,U.x)((xe,W)=>xe.fromState===W.fromState&&xe.toState===W.toState)).subscribe(xe=>{"void"!==xe.fromState&&("expanded"===xe.toState?this.afterExpand.emit():"collapsed"===xe.toState&&this.afterCollapse.emit())}),Te&&(this.hideToggle=Te.hideToggle)}get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(V){this._hideToggle=(0,e.Ig)(V)}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(V){this._togglePosition=V}_hasSpacing(){return!!this.accordion&&this.expanded&&"default"===this.accordion.displayMode}_getExpandedState(){return this.expanded?"expanded":"collapsed"}toggle(){this.expanded=!this.expanded}close(){this.expanded=!1}open(){this.expanded=!0}ngAfterContentInit(){this._lazyContent&&this.opened.pipe((0,Z.O)(null),(0,Y.h)(()=>this.expanded&&!this._portal),(0,ne.q)(1)).subscribe(()=>{this._portal=new D.UE(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(V){this._inputChanges.next(V)}ngOnDestroy(){super.ngOnDestroy(),this._bodyAnimationDone.complete(),this._inputChanges.complete()}_containsFocus(){if(this._body){const V=this._document.activeElement,De=this._body.nativeElement;return V===De||De.contains(V)}return!1}}return Ue.\u0275fac=function(V){return new(V||Ue)(t.Y36(_,12),t.Y36(t.sBO),t.Y36(a.A8),t.Y36(t.s_b),t.Y36(L.K0),t.Y36(de.Qb,8),t.Y36(C,8))},Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["mat-expansion-panel"]],contentQueries:function(V,De,dt){if(1&V&&t.Suo(dt,v,5),2&V){let Ie;t.iGM(Ie=t.CRH())&&(De._lazyContent=Ie.first)}},viewQuery:function(V,De){if(1&V&&t.Gf(X,5),2&V){let dt;t.iGM(dt=t.CRH())&&(De._body=dt.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(V,De){2&V&&t.ekj("mat-expanded",De.expanded)("_mat-animation-noopable","NoopAnimations"===De._animationMode)("mat-expansion-panel-spacing",De._hasSpacing())},inputs:{disabled:"disabled",expanded:"expanded",hideToggle:"hideToggle",togglePosition:"togglePosition"},outputs:{opened:"opened",closed:"closed",expandedChange:"expandedChange",afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],features:[t._Bn([{provide:_,useValue:void 0}]),t.qOj,t.TTD],ngContentSelectors:i,decls:7,vars:4,consts:[["role","region",1,"mat-expansion-panel-content",3,"id"],["body",""],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(V,De){1&V&&(t.F$t(y),t.Hsn(0),t.TgZ(1,"div",0,1),t.NdJ("@bodyExpansion.done",function(Ie){return De._bodyAnimationDone.next(Ie)}),t.TgZ(3,"div",2),t.Hsn(4,1),t.YNc(5,me,0,0,"ng-template",3),t.qZA(),t.Hsn(6,2),t.qZA()),2&V&&(t.xp6(1),t.Q6J("@bodyExpansion",De._getExpandedState())("id",De.id),t.uIk("aria-labelledby",De._headerId),t.xp6(4),t.Q6J("cdkPortalOutlet",De._portal))},directives:[D.Pl],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;border-radius:4px;overflow:hidden;transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);position:relative}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:4px;border-top-left-radius:4px}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.cdk-high-contrast-active .mat-expansion-panel{outline:solid 1px}.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel,.mat-expansion-panel._mat-animation-noopable{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible}.mat-expansion-panel-content[style*="visibility: hidden"] *{visibility:hidden !important}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px}.mat-action-row .mat-button-base,.mat-action-row .mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-action-row .mat-button-base,[dir=rtl] .mat-action-row .mat-mdc-button-base{margin-left:0;margin-right:8px}\n'],encapsulation:2,data:{animation:[I.bodyExpansion]},changeDetection:0}),Ue})();class H{}const q=(0,k.sb)(H);let he=(()=>{class Ue extends q{constructor(V,De,dt,Ie,Ae,le,Te){super(),this.panel=V,this._element=De,this._focusMonitor=dt,this._changeDetectorRef=Ie,this._animationMode=le,this._parentChangeSubscription=M.w0.EMPTY;const xe=V.accordion?V.accordion._stateChanges.pipe((0,Y.h)(W=>!(!W.hideToggle&&!W.togglePosition))):te.E;this.tabIndex=parseInt(Te||"")||0,this._parentChangeSubscription=(0,ie.T)(V.opened,V.closed,xe,V._inputChanges.pipe((0,Y.h)(W=>!!(W.hideToggle||W.disabled||W.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),V.closed.pipe((0,Y.h)(()=>V._containsFocus())).subscribe(()=>dt.focusVia(De,"program")),Ae&&(this.expandedHeight=Ae.expandedHeight,this.collapsedHeight=Ae.collapsedHeight)}get disabled(){return this.panel.disabled}_toggle(){this.disabled||this.panel.toggle()}_isExpanded(){return this.panel.expanded}_getExpandedState(){return this.panel._getExpandedState()}_getPanelId(){return this.panel.id}_getTogglePosition(){return this.panel.togglePosition}_showToggle(){return!this.panel.hideToggle&&!this.panel.disabled}_getHeaderHeight(){const V=this._isExpanded();return V&&this.expandedHeight?this.expandedHeight:!V&&this.collapsedHeight?this.collapsedHeight:null}_keydown(V){switch(V.keyCode){case $.L_:case $.K5:(0,$.Vb)(V)||(V.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(V))}}focus(V,De){V?this._focusMonitor.focusVia(this._element,V,De):this._element.nativeElement.focus(De)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(V=>{V&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}}return Ue.\u0275fac=function(V){return new(V||Ue)(t.Y36(B,1),t.Y36(t.SBq),t.Y36(S.tE),t.Y36(t.sBO),t.Y36(C,8),t.Y36(de.Qb,8),t.$8M("tabindex"))},Ue.\u0275cmp=t.Xpm({type:Ue,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(V,De){1&V&&t.NdJ("click",function(){return De._toggle()})("keydown",function(Ie){return De._keydown(Ie)}),2&V&&(t.uIk("id",De.panel._headerId)("tabindex",De.tabIndex)("aria-controls",De._getPanelId())("aria-expanded",De._isExpanded())("aria-disabled",De.panel.disabled),t.Udp("height",De._getHeaderHeight()),t.ekj("mat-expanded",De._isExpanded())("mat-expansion-toggle-indicator-after","after"===De._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===De._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===De._animationMode))},inputs:{tabIndex:"tabIndex",expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight"},features:[t.qOj],ngContentSelectors:c,decls:5,vars:1,consts:[[1,"mat-content"],["class","mat-expansion-indicator",4,"ngIf"],[1,"mat-expansion-indicator"]],template:function(V,De){1&V&&(t.F$t(u),t.TgZ(0,"span",0),t.Hsn(1),t.Hsn(2,1),t.Hsn(3,2),t.qZA(),t.YNc(4,r,1,1,"span",1)),2&V&&(t.xp6(4),t.Q6J("ngIf",De._showToggle()))},directives:[L.O5],styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header._mat-animation-noopable{transition:none}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:none}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before{flex-direction:row-reverse}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 16px 0 0}[dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 0 0 16px}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;margin-right:16px;align-items:center}[dir=rtl] .mat-expansion-panel-header-title,[dir=rtl] .mat-expansion-panel-header-description{margin-right:0;margin-left:16px}.mat-expansion-panel-header-description{flex-grow:2}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle}.cdk-high-contrast-active .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true])::before,.cdk-high-contrast-active .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true])::before,.cdk-high-contrast-active .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true])::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;border:3px solid;border-radius:4px;content:""}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}\n'],encapsulation:2,data:{animation:[I.indicatorRotate]},changeDetection:0}),Ue})(),_e=(()=>{class Ue{}return Ue.\u0275fac=function(V){return new(V||Ue)},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"]}),Ue})(),Ne=(()=>{class Ue{}return Ue.\u0275fac=function(V){return new(V||Ue)},Ue.\u0275dir=t.lG2({type:Ue,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"]}),Ue})(),we=(()=>{class Ue extends N{constructor(){super(...arguments),this._ownHeaders=new t.n_E,this._hideToggle=!1,this.displayMode="default",this.togglePosition="after"}get hideToggle(){return this._hideToggle}set hideToggle(V){this._hideToggle=(0,e.Ig)(V)}ngAfterContentInit(){this._headers.changes.pipe((0,Z.O)(this._headers)).subscribe(V=>{this._ownHeaders.reset(V.filter(De=>De.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new S.Em(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(V){this._keyManager.onKeydown(V)}_handleHeaderFocus(V){this._keyManager.updateActiveItem(V)}ngOnDestroy(){super.ngOnDestroy(),this._ownHeaders.destroy()}}return Ue.\u0275fac=function(){let ve;return function(De){return(ve||(ve=t.n5z(Ue)))(De||Ue)}}(),Ue.\u0275dir=t.lG2({type:Ue,selectors:[["mat-accordion"]],contentQueries:function(V,De,dt){if(1&V&&t.Suo(dt,he,5),2&V){let Ie;t.iGM(Ie=t.CRH())&&(De._headers=Ie)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(V,De){2&V&&t.ekj("mat-accordion-multi",De.multi)},inputs:{multi:"multi",hideToggle:"hideToggle",displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],features:[t._Bn([{provide:_,useExisting:Ue}]),t.qOj]}),Ue})(),Q=(()=>{class Ue{}return Ue.\u0275fac=function(V){return new(V||Ue)},Ue.\u0275mod=t.oAB({type:Ue}),Ue.\u0275inj=t.cJS({imports:[[L.ez,k.BQ,w,D.eL]]}),Ue})()},7322:(Ve,j,p)=>{"use strict";p.d(j,{Eo:()=>n,G_:()=>le,KE:()=>Te,R9:()=>ve,TO:()=>I,bx:()=>he,lN:()=>xe});var t=p(7144),e=p(9808),f=p(5e3),M=p(508),a=p(3191),b=p(7579),d=p(6451),N=p(4968),h=p(8675),A=p(2722),w=p(5698),D=p(1777),L=p(6360),k=p(226),S=p(925);const U=["connectionContainer"],Z=["inputContainer"],Y=["label"];function ne(W,ee){1&W&&(f.ynx(0),f.TgZ(1,"div",14),f._UZ(2,"div",15)(3,"div",16)(4,"div",17),f.qZA(),f.TgZ(5,"div",18),f._UZ(6,"div",15)(7,"div",16)(8,"div",17),f.qZA(),f.BQk())}function $(W,ee){if(1&W){const ue=f.EpF();f.TgZ(0,"div",19),f.NdJ("cdkObserveContent",function(){return f.CHM(ue),f.oxw().updateOutlineGap()}),f.Hsn(1,1),f.qZA()}if(2&W){const ue=f.oxw();f.Q6J("cdkObserveContentDisabled","outline"!=ue.appearance)}}function de(W,ee){if(1&W&&(f.ynx(0),f.Hsn(1,2),f.TgZ(2,"span"),f._uU(3),f.qZA(),f.BQk()),2&W){const ue=f.oxw(2);f.xp6(3),f.Oqu(ue._control.placeholder)}}function te(W,ee){1&W&&f.Hsn(0,3,["*ngSwitchCase","true"])}function ie(W,ee){1&W&&(f.TgZ(0,"span",23),f._uU(1," *"),f.qZA())}function oe(W,ee){if(1&W){const ue=f.EpF();f.TgZ(0,"label",20,21),f.NdJ("cdkObserveContent",function(){return f.CHM(ue),f.oxw().updateOutlineGap()}),f.YNc(2,de,4,1,"ng-container",12),f.YNc(3,te,1,0,"ng-content",12),f.YNc(4,ie,2,0,"span",22),f.qZA()}if(2&W){const ue=f.oxw();f.ekj("mat-empty",ue._control.empty&&!ue._shouldAlwaysFloat())("mat-form-field-empty",ue._control.empty&&!ue._shouldAlwaysFloat())("mat-accent","accent"==ue.color)("mat-warn","warn"==ue.color),f.Q6J("cdkObserveContentDisabled","outline"!=ue.appearance)("id",ue._labelId)("ngSwitch",ue._hasLabel()),f.uIk("for",ue._control.id)("aria-owns",ue._control.id),f.xp6(2),f.Q6J("ngSwitchCase",!1),f.xp6(1),f.Q6J("ngSwitchCase",!0),f.xp6(1),f.Q6J("ngIf",!ue.hideRequiredMarker&&ue._control.required&&!ue._control.disabled)}}function X(W,ee){1&W&&(f.TgZ(0,"div",24),f.Hsn(1,4),f.qZA())}function me(W,ee){if(1&W&&(f.TgZ(0,"div",25),f._UZ(1,"span",26),f.qZA()),2&W){const ue=f.oxw();f.xp6(1),f.ekj("mat-accent","accent"==ue.color)("mat-warn","warn"==ue.color)}}function y(W,ee){if(1&W&&(f.TgZ(0,"div"),f.Hsn(1,5),f.qZA()),2&W){const ue=f.oxw();f.Q6J("@transitionMessages",ue._subscriptAnimationState)}}function i(W,ee){if(1&W&&(f.TgZ(0,"div",30),f._uU(1),f.qZA()),2&W){const ue=f.oxw(2);f.Q6J("id",ue._hintLabelId),f.xp6(1),f.Oqu(ue.hintLabel)}}function r(W,ee){if(1&W&&(f.TgZ(0,"div",27),f.YNc(1,i,2,2,"div",28),f.Hsn(2,6),f._UZ(3,"div",29),f.Hsn(4,7),f.qZA()),2&W){const ue=f.oxw();f.Q6J("@transitionMessages",ue._subscriptAnimationState),f.xp6(1),f.Q6J("ngIf",ue.hintLabel)}}const u=["*",[["","matPrefix",""]],[["mat-placeholder"]],[["mat-label"]],[["","matSuffix",""]],[["mat-error"]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],c=["*","[matPrefix]","mat-placeholder","mat-label","[matSuffix]","mat-error","mat-hint:not([align='end'])","mat-hint[align='end']"];let _=0;const E=new f.OlP("MatError");let I=(()=>{class W{constructor(ue,Ce){this.id="mat-error-"+_++,ue||Ce.nativeElement.setAttribute("aria-live","polite")}}return W.\u0275fac=function(ue){return new(ue||W)(f.$8M("aria-live"),f.Y36(f.SBq))},W.\u0275dir=f.lG2({type:W,selectors:[["mat-error"]],hostAttrs:["aria-atomic","true",1,"mat-error"],hostVars:1,hostBindings:function(ue,Ce){2&ue&&f.uIk("id",Ce.id)},inputs:{id:"id"},features:[f._Bn([{provide:E,useExisting:W}])]}),W})();const v={transitionMessages:(0,D.X$)("transitionMessages",[(0,D.SB)("enter",(0,D.oB)({opacity:1,transform:"translateY(0%)"})),(0,D.eR)("void => enter",[(0,D.oB)({opacity:0,transform:"translateY(-5px)"}),(0,D.jt)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let n=(()=>{class W{}return W.\u0275fac=function(ue){return new(ue||W)},W.\u0275dir=f.lG2({type:W}),W})(),H=0;const q=new f.OlP("MatHint");let he=(()=>{class W{constructor(){this.align="start",this.id="mat-hint-"+H++}}return W.\u0275fac=function(ue){return new(ue||W)},W.\u0275dir=f.lG2({type:W,selectors:[["mat-hint"]],hostAttrs:[1,"mat-hint"],hostVars:4,hostBindings:function(ue,Ce){2&ue&&(f.uIk("id",Ce.id)("align",null),f.ekj("mat-form-field-hint-end","end"===Ce.align))},inputs:{align:"align",id:"id"},features:[f._Bn([{provide:q,useExisting:W}])]}),W})(),_e=(()=>{class W{}return W.\u0275fac=function(ue){return new(ue||W)},W.\u0275dir=f.lG2({type:W,selectors:[["mat-label"]]}),W})(),Ne=(()=>{class W{}return W.\u0275fac=function(ue){return new(ue||W)},W.\u0275dir=f.lG2({type:W,selectors:[["mat-placeholder"]]}),W})();const we=new f.OlP("MatPrefix"),Ue=new f.OlP("MatSuffix");let ve=(()=>{class W{}return W.\u0275fac=function(ue){return new(ue||W)},W.\u0275dir=f.lG2({type:W,selectors:[["","matSuffix",""]],features:[f._Bn([{provide:Ue,useExisting:W}])]}),W})(),V=0;const Ie=(0,M.pj)(class{constructor(W){this._elementRef=W}},"primary"),Ae=new f.OlP("MAT_FORM_FIELD_DEFAULT_OPTIONS"),le=new f.OlP("MatFormField");let Te=(()=>{class W extends Ie{constructor(ue,Ce,Le,ut,ht,It,ui){super(ue),this._changeDetectorRef=Ce,this._dir=Le,this._defaults=ut,this._platform=ht,this._ngZone=It,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new b.x,this._showAlwaysAnimate=!1,this._subscriptAnimationState="",this._hintLabel="",this._hintLabelId="mat-hint-"+V++,this._labelId="mat-form-field-label-"+V++,this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled="NoopAnimations"!==ui,this.appearance=ut&&ut.appearance?ut.appearance:"legacy",this._hideRequiredMarker=!(!ut||null==ut.hideRequiredMarker)&&ut.hideRequiredMarker}get appearance(){return this._appearance}set appearance(ue){const Ce=this._appearance;this._appearance=ue||this._defaults&&this._defaults.appearance||"legacy","outline"===this._appearance&&Ce!==ue&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(ue){this._hideRequiredMarker=(0,a.Ig)(ue)}_shouldAlwaysFloat(){return"always"===this.floatLabel&&!this._showAlwaysAnimate}_canLabelFloat(){return"never"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(ue){this._hintLabel=ue,this._processHints()}get floatLabel(){return"legacy"!==this.appearance&&"never"===this._floatLabel?"auto":this._floatLabel}set floatLabel(ue){ue!==this._floatLabel&&(this._floatLabel=ue||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(ue){this._explicitFormFieldControl=ue}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const ue=this._control;ue.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${ue.controlType}`),ue.stateChanges.pipe((0,h.O)(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),ue.ngControl&&ue.ngControl.valueChanges&&ue.ngControl.valueChanges.pipe((0,A.R)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,A.R)(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),(0,d.T)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe((0,h.O)(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe((0,h.O)(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe((0,A.R)(this._destroyed)).subscribe(()=>{"function"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(ue){const Ce=this._control?this._control.ngControl:null;return Ce&&Ce[ue]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!(!this._labelChildNonStatic&&!this._labelChildStatic)}_shouldLabelFloat(){return this._canLabelFloat()&&(this._control&&this._control.shouldLabelFloat||this._shouldAlwaysFloat())}_hideControlPlaceholder(){return"legacy"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||"legacy"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat()&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,(0,N.R)(this._label.nativeElement,"transitionend").pipe((0,w.q)(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel="always",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||"auto"}_syncDescribedByIds(){if(this._control){let ue=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&ue.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const Ce=this._hintChildren?this._hintChildren.find(ut=>"start"===ut.align):null,Le=this._hintChildren?this._hintChildren.find(ut=>"end"===ut.align):null;Ce?ue.push(Ce.id):this._hintLabel&&ue.push(this._hintLabelId),Le&&ue.push(Le.id)}else this._errorChildren&&ue.push(...this._errorChildren.map(Ce=>Ce.id));this._control.setDescribedByIds(ue)}}_validateControlChild(){}updateOutlineGap(){const ue=this._label?this._label.nativeElement:null,Ce=this._connectionContainerRef.nativeElement,Le=".mat-form-field-outline-start",ut=".mat-form-field-outline-gap";if("outline"!==this.appearance||!this._platform.isBrowser)return;if(!ue||!ue.children.length||!ue.textContent.trim()){const Gt=Ce.querySelectorAll(`${Le}, ${ut}`);for(let hi=0;hi0?.75*Ct+10:0}for(let Gt=0;Gt{class W{}return W.\u0275fac=function(ue){return new(ue||W)},W.\u0275mod=f.oAB({type:W}),W.\u0275inj=f.cJS({imports:[[e.ez,M.BQ,t.Q8],M.BQ]}),W})()},3954:(Ve,j,p)=>{"use strict";p.d(j,{DX:()=>D,Il:()=>X,N6:()=>me});var t=p(5e3),e=p(508),f=p(3191),M=p(226);const a=["*"];class h{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const r=Math.max(...this.tracker);return r>1?this.rowCount+r-1:this.rowCount}update(r,u){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(r),this.tracker.fill(0,0,this.tracker.length),this.positions=u.map(c=>this._trackTile(c))}_trackTile(r){const u=this._findMatchingGap(r.colspan);return this._markTilePosition(u,r),this.columnIndex=u+r.colspan,new A(this.rowIndex,u)}_findMatchingGap(r){let u=-1,c=-1;do{this.columnIndex+r>this.tracker.length?(this._nextRow(),u=this.tracker.indexOf(0,this.columnIndex),c=this._findGapEndIndex(u)):(u=this.tracker.indexOf(0,this.columnIndex),-1!=u?(c=this._findGapEndIndex(u),this.columnIndex=u+1):(this._nextRow(),u=this.tracker.indexOf(0,this.columnIndex),c=this._findGapEndIndex(u)))}while(c-u{class i{constructor(u,c){this._element=u,this._gridList=c,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(u){this._rowspan=Math.round((0,f.su)(u))}get colspan(){return this._colspan}set colspan(u){this._colspan=Math.round((0,f.su)(u))}_setStyle(u,c){this._element.nativeElement.style[u]=c}}return i.\u0275fac=function(u){return new(u||i)(t.Y36(t.SBq),t.Y36(w,8))},i.\u0275cmp=t.Xpm({type:i,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(u,c){2&u&&t.uIk("rowspan",c.rowspan)("colspan",c.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:a,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(u,c){1&u&&(t.F$t(),t.TgZ(0,"div",0),t.Hsn(1),t.qZA())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0}),i})();const Z=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Y{constructor(){this._rows=0,this._rowspan=0}init(r,u,c,_){this._gutterSize=ie(r),this._rows=u.rowCount,this._rowspan=u.rowspan,this._cols=c,this._direction=_}getBaseTileSize(r,u){return`(${r}% - (${this._gutterSize} * ${u}))`}getTilePosition(r,u){return 0===u?"0":te(`(${r} + ${this._gutterSize}) * ${u}`)}getTileSize(r,u){return`(${r} * ${u}) + (${u-1} * ${this._gutterSize})`}setStyle(r,u,c){let _=100/this._cols,E=(this._cols-1)/this._cols;this.setColStyles(r,c,_,E),this.setRowStyles(r,u,_,E)}setColStyles(r,u,c,_){let E=this.getBaseTileSize(c,_);r._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(E,u)),r._setStyle("width",te(this.getTileSize(E,r.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(r){return`${this._rowspan} * ${this.getTileSize(r,1)}`}getComputedHeight(){return null}}class ne extends Y{constructor(r){super(),this.fixedRowHeight=r}init(r,u,c,_){super.init(r,u,c,_),this.fixedRowHeight=ie(this.fixedRowHeight),Z.test(this.fixedRowHeight)}setRowStyles(r,u){r._setStyle("top",this.getTilePosition(this.fixedRowHeight,u)),r._setStyle("height",te(this.getTileSize(this.fixedRowHeight,r.rowspan)))}getComputedHeight(){return["height",te(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(r){r._setListStyle(["height",null]),r._tiles&&r._tiles.forEach(u=>{u._setStyle("top",null),u._setStyle("height",null)})}}class $ extends Y{constructor(r){super(),this._parseRatio(r)}setRowStyles(r,u,c,_){this.baseTileHeight=this.getBaseTileSize(c/this.rowHeightRatio,_),r._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,u)),r._setStyle("paddingTop",te(this.getTileSize(this.baseTileHeight,r.rowspan)))}getComputedHeight(){return["paddingBottom",te(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(r){r._setListStyle(["paddingBottom",null]),r._tiles.forEach(u=>{u._setStyle("marginTop",null),u._setStyle("paddingTop",null)})}_parseRatio(r){const u=r.split(":");this.rowHeightRatio=parseFloat(u[0])/parseFloat(u[1])}}class de extends Y{setRowStyles(r,u){let E=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);r._setStyle("top",this.getTilePosition(E,u)),r._setStyle("height",te(this.getTileSize(E,r.rowspan)))}reset(r){r._tiles&&r._tiles.forEach(u=>{u._setStyle("top",null),u._setStyle("height",null)})}}function te(i){return`calc(${i})`}function ie(i){return i.match(/([A-Za-z%]+)$/)?i:`${i}px`}let X=(()=>{class i{constructor(u,c){this._element=u,this._dir=c,this._gutter="1px"}get cols(){return this._cols}set cols(u){this._cols=Math.max(1,Math.round((0,f.su)(u)))}get gutterSize(){return this._gutter}set gutterSize(u){this._gutter=`${null==u?"":u}`}get rowHeight(){return this._rowHeight}set rowHeight(u){const c=`${null==u?"":u}`;c!==this._rowHeight&&(this._rowHeight=c,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(u){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===u?new de:u&&u.indexOf(":")>-1?new $(u):new ne(u)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new h);const u=this._tileCoordinator,c=this._tiles.filter(E=>!E._gridList||E._gridList===this),_=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,c),this._tileStyler.init(this.gutterSize,u,this.cols,_),c.forEach((E,I)=>{const v=u.positions[I];this._tileStyler.setStyle(E,v.row,v.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(u){u&&(this._element.nativeElement.style[u[0]]=u[1])}}return i.\u0275fac=function(u){return new(u||i)(t.Y36(t.SBq),t.Y36(M.Is,8))},i.\u0275cmp=t.Xpm({type:i,selectors:[["mat-grid-list"]],contentQueries:function(u,c,_){if(1&u&&t.Suo(_,D,5),2&u){let E;t.iGM(E=t.CRH())&&(c._tiles=E)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(u,c){2&u&&t.uIk("cols",c.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[t._Bn([{provide:w,useExisting:i}])],ngContentSelectors:a,decls:2,vars:0,template:function(u,c){1&u&&(t.F$t(),t.TgZ(0,"div"),t.Hsn(1),t.qZA())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0}),i})(),me=(()=>{class i{}return i.\u0275fac=function(u){return new(u||i)},i.\u0275mod=t.oAB({type:i}),i.\u0275inj=t.cJS({imports:[[e.uc,e.BQ],e.uc,e.BQ]}),i})()},5245:(Ve,j,p)=>{"use strict";p.d(j,{Hw:()=>B,Ps:()=>P});var t=p(5e3),e=p(508),f=p(3191),M=p(9808),a=p(9646),b=p(2843),d=p(4128),N=p(727),h=p(8505),A=p(4004),w=p(262),D=p(8746),L=p(3099),k=p(5698),S=p(8138),U=p(2313);const Z=["*"];let Y;function $(H){var q;return(null===(q=function ne(){if(void 0===Y&&(Y=null,"undefined"!=typeof window)){const H=window;void 0!==H.trustedTypes&&(Y=H.trustedTypes.createPolicy("angular#components",{createHTML:q=>q}))}return Y}())||void 0===q?void 0:q.createHTML(H))||H}function de(H){return Error(`Unable to find icon with the name "${H}"`)}function ie(H){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${H}".`)}function oe(H){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${H}".`)}class X{constructor(q,he,_e){this.url=q,this.svgText=he,this.options=_e}}let me=(()=>{class H{constructor(he,_e,Ne,we){this._httpClient=he,this._sanitizer=_e,this._errorHandler=we,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass="material-icons",this._document=Ne}addSvgIcon(he,_e,Ne){return this.addSvgIconInNamespace("",he,_e,Ne)}addSvgIconLiteral(he,_e,Ne){return this.addSvgIconLiteralInNamespace("",he,_e,Ne)}addSvgIconInNamespace(he,_e,Ne,we){return this._addSvgIconConfig(he,_e,new X(Ne,null,we))}addSvgIconResolver(he){return this._resolvers.push(he),this}addSvgIconLiteralInNamespace(he,_e,Ne,we){const Q=this._sanitizer.sanitize(t.q3G.HTML,Ne);if(!Q)throw oe(Ne);const Ue=$(Q);return this._addSvgIconConfig(he,_e,new X("",Ue,we))}addSvgIconSet(he,_e){return this.addSvgIconSetInNamespace("",he,_e)}addSvgIconSetLiteral(he,_e){return this.addSvgIconSetLiteralInNamespace("",he,_e)}addSvgIconSetInNamespace(he,_e,Ne){return this._addSvgIconSetConfig(he,new X(_e,null,Ne))}addSvgIconSetLiteralInNamespace(he,_e,Ne){const we=this._sanitizer.sanitize(t.q3G.HTML,_e);if(!we)throw oe(_e);const Q=$(we);return this._addSvgIconSetConfig(he,new X("",Q,Ne))}registerFontClassAlias(he,_e=he){return this._fontCssClassesByAlias.set(he,_e),this}classNameForFontAlias(he){return this._fontCssClassesByAlias.get(he)||he}setDefaultFontSetClass(he){return this._defaultFontSetClass=he,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(he){const _e=this._sanitizer.sanitize(t.q3G.RESOURCE_URL,he);if(!_e)throw ie(he);const Ne=this._cachedIconsByUrl.get(_e);return Ne?(0,a.of)(r(Ne)):this._loadSvgIconFromConfig(new X(he,null)).pipe((0,h.b)(we=>this._cachedIconsByUrl.set(_e,we)),(0,A.U)(we=>r(we)))}getNamedSvgIcon(he,_e=""){const Ne=u(_e,he);let we=this._svgIconConfigs.get(Ne);if(we)return this._getSvgFromConfig(we);if(we=this._getIconConfigFromResolvers(_e,he),we)return this._svgIconConfigs.set(Ne,we),this._getSvgFromConfig(we);const Q=this._iconSetConfigs.get(_e);return Q?this._getSvgFromIconSetConfigs(he,Q):(0,b._)(de(Ne))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(he){return he.svgText?(0,a.of)(r(this._svgElementFromConfig(he))):this._loadSvgIconFromConfig(he).pipe((0,A.U)(_e=>r(_e)))}_getSvgFromIconSetConfigs(he,_e){const Ne=this._extractIconWithNameFromAnySet(he,_e);if(Ne)return(0,a.of)(Ne);const we=_e.filter(Q=>!Q.svgText).map(Q=>this._loadSvgIconSetFromConfig(Q).pipe((0,w.K)(Ue=>{const V=`Loading icon set URL: ${this._sanitizer.sanitize(t.q3G.RESOURCE_URL,Q.url)} failed: ${Ue.message}`;return this._errorHandler.handleError(new Error(V)),(0,a.of)(null)})));return(0,d.D)(we).pipe((0,A.U)(()=>{const Q=this._extractIconWithNameFromAnySet(he,_e);if(!Q)throw de(he);return Q}))}_extractIconWithNameFromAnySet(he,_e){for(let Ne=_e.length-1;Ne>=0;Ne--){const we=_e[Ne];if(we.svgText&&we.svgText.toString().indexOf(he)>-1){const Q=this._svgElementFromConfig(we),Ue=this._extractSvgIconFromSet(Q,he,we.options);if(Ue)return Ue}}return null}_loadSvgIconFromConfig(he){return this._fetchIcon(he).pipe((0,h.b)(_e=>he.svgText=_e),(0,A.U)(()=>this._svgElementFromConfig(he)))}_loadSvgIconSetFromConfig(he){return he.svgText?(0,a.of)(null):this._fetchIcon(he).pipe((0,h.b)(_e=>he.svgText=_e))}_extractSvgIconFromSet(he,_e,Ne){const we=he.querySelector(`[id="${_e}"]`);if(!we)return null;const Q=we.cloneNode(!0);if(Q.removeAttribute("id"),"svg"===Q.nodeName.toLowerCase())return this._setSvgAttributes(Q,Ne);if("symbol"===Q.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(Q),Ne);const Ue=this._svgElementFromString($(""));return Ue.appendChild(Q),this._setSvgAttributes(Ue,Ne)}_svgElementFromString(he){const _e=this._document.createElement("DIV");_e.innerHTML=he;const Ne=_e.querySelector("svg");if(!Ne)throw Error(" tag not found");return Ne}_toSvgElement(he){const _e=this._svgElementFromString($("")),Ne=he.attributes;for(let we=0;we$(De)),(0,D.x)(()=>this._inProgressUrlFetches.delete(Ue)),(0,L.B)());return this._inProgressUrlFetches.set(Ue,V),V}_addSvgIconConfig(he,_e,Ne){return this._svgIconConfigs.set(u(he,_e),Ne),this}_addSvgIconSetConfig(he,_e){const Ne=this._iconSetConfigs.get(he);return Ne?Ne.push(_e):this._iconSetConfigs.set(he,[_e]),this}_svgElementFromConfig(he){if(!he.svgElement){const _e=this._svgElementFromString(he.svgText);this._setSvgAttributes(_e,he.options),he.svgElement=_e}return he.svgElement}_getIconConfigFromResolvers(he,_e){for(let Ne=0;Neq?q.pathname+q.search:""}}}),v=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],n=v.map(H=>`[${H}]`).join(", "),C=/^url\(['"]?#(.*?)['"]?\)$/;let B=(()=>{class H extends _{constructor(he,_e,Ne,we,Q){super(he),this._iconRegistry=_e,this._location=we,this._errorHandler=Q,this._inline=!1,this._currentIconFetch=N.w0.EMPTY,Ne||he.nativeElement.setAttribute("aria-hidden","true")}get inline(){return this._inline}set inline(he){this._inline=(0,f.Ig)(he)}get svgIcon(){return this._svgIcon}set svgIcon(he){he!==this._svgIcon&&(he?this._updateSvgIcon(he):this._svgIcon&&this._clearSvgElement(),this._svgIcon=he)}get fontSet(){return this._fontSet}set fontSet(he){const _e=this._cleanupFontValue(he);_e!==this._fontSet&&(this._fontSet=_e,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(he){const _e=this._cleanupFontValue(he);_e!==this._fontIcon&&(this._fontIcon=_e,this._updateFontIconClasses())}_splitIconName(he){if(!he)return["",""];const _e=he.split(":");switch(_e.length){case 1:return["",_e[0]];case 2:return _e;default:throw Error(`Invalid icon name: "${he}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const he=this._elementsWithExternalReferences;if(he&&he.size){const _e=this._location.getPathname();_e!==this._previousPath&&(this._previousPath=_e,this._prependPathToReferences(_e))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(he){this._clearSvgElement();const _e=this._location.getPathname();this._previousPath=_e,this._cacheChildrenWithExternalReferences(he),this._prependPathToReferences(_e),this._elementRef.nativeElement.appendChild(he)}_clearSvgElement(){const he=this._elementRef.nativeElement;let _e=he.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();_e--;){const Ne=he.childNodes[_e];(1!==Ne.nodeType||"svg"===Ne.nodeName.toLowerCase())&&Ne.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const he=this._elementRef.nativeElement,_e=this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet):this._iconRegistry.getDefaultFontSetClass();_e!=this._previousFontSetClass&&(this._previousFontSetClass&&he.classList.remove(this._previousFontSetClass),_e&&he.classList.add(_e),this._previousFontSetClass=_e),this.fontIcon!=this._previousFontIconClass&&(this._previousFontIconClass&&he.classList.remove(this._previousFontIconClass),this.fontIcon&&he.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(he){return"string"==typeof he?he.trim().split(" ")[0]:he}_prependPathToReferences(he){const _e=this._elementsWithExternalReferences;_e&&_e.forEach((Ne,we)=>{Ne.forEach(Q=>{we.setAttribute(Q.name,`url('${he}#${Q.value}')`)})})}_cacheChildrenWithExternalReferences(he){const _e=he.querySelectorAll(n),Ne=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let we=0;we<_e.length;we++)v.forEach(Q=>{const Ue=_e[we],ve=Ue.getAttribute(Q),V=ve?ve.match(C):null;if(V){let De=Ne.get(Ue);De||(De=[],Ne.set(Ue,De)),De.push({name:Q,value:V[1]})}})}_updateSvgIcon(he){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),he){const[_e,Ne]=this._splitIconName(he);_e&&(this._svgNamespace=_e),Ne&&(this._svgName=Ne),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(Ne,_e).pipe((0,k.q)(1)).subscribe(we=>this._setSvgElement(we),we=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${_e}:${Ne}! ${we.message}`))})}}}return H.\u0275fac=function(he){return new(he||H)(t.Y36(t.SBq),t.Y36(me),t.$8M("aria-hidden"),t.Y36(E),t.Y36(t.qLn))},H.\u0275cmp=t.Xpm({type:H,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:7,hostBindings:function(he,_e){2&he&&(t.uIk("data-mat-icon-type",_e._usingFontIcon()?"font":"svg")("data-mat-icon-name",_e._svgName||_e.fontIcon)("data-mat-icon-namespace",_e._svgNamespace||_e.fontSet),t.ekj("mat-icon-inline",_e.inline)("mat-icon-no-color","primary"!==_e.color&&"accent"!==_e.color&&"warn"!==_e.color))},inputs:{color:"color",inline:"inline",svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],features:[t.qOj],ngContentSelectors:Z,decls:1,vars:0,template:function(he,_e){1&he&&(t.F$t(),t.Hsn(0))},styles:[".mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\n"],encapsulation:2,changeDetection:0}),H})(),P=(()=>{class H{}return H.\u0275fac=function(he){return new(he||H)},H.\u0275mod=t.oAB({type:H}),H.\u0275inj=t.cJS({imports:[[e.BQ],e.BQ]}),H})()},7531:(Ve,j,p)=>{"use strict";p.d(j,{Jk:()=>S,Nt:()=>ne,c:()=>$});var t=p(3191),e=p(925),f=p(5e3),M=p(3075),a=p(508),b=p(7322),d=p(7579),N=p(515);const h=(0,e.i$)({passive:!0});let A=(()=>{class de{constructor(ie,oe){this._platform=ie,this._ngZone=oe,this._monitoredElements=new Map}monitor(ie){if(!this._platform.isBrowser)return N.E;const oe=(0,t.fI)(ie),X=this._monitoredElements.get(oe);if(X)return X.subject;const me=new d.x,y="cdk-text-field-autofilled",i=r=>{"cdk-text-field-autofill-start"!==r.animationName||oe.classList.contains(y)?"cdk-text-field-autofill-end"===r.animationName&&oe.classList.contains(y)&&(oe.classList.remove(y),this._ngZone.run(()=>me.next({target:r.target,isAutofilled:!1}))):(oe.classList.add(y),this._ngZone.run(()=>me.next({target:r.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{oe.addEventListener("animationstart",i,h),oe.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(oe,{subject:me,unlisten:()=>{oe.removeEventListener("animationstart",i,h)}}),me}stopMonitoring(ie){const oe=(0,t.fI)(ie),X=this._monitoredElements.get(oe);X&&(X.unlisten(),X.subject.complete(),oe.classList.remove("cdk-text-field-autofill-monitored"),oe.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(oe))}ngOnDestroy(){this._monitoredElements.forEach((ie,oe)=>this.stopMonitoring(oe))}}return de.\u0275fac=function(ie){return new(ie||de)(f.LFG(e.t4),f.LFG(f.R0b))},de.\u0275prov=f.Yz7({token:de,factory:de.\u0275fac,providedIn:"root"}),de})(),L=(()=>{class de{}return de.\u0275fac=function(ie){return new(ie||de)},de.\u0275mod=f.oAB({type:de}),de.\u0275inj=f.cJS({}),de})();const S=new f.OlP("MAT_INPUT_VALUE_ACCESSOR"),U=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let Z=0;const Y=(0,a.FD)(class{constructor(de,te,ie,oe){this._defaultErrorStateMatcher=de,this._parentForm=te,this._parentFormGroup=ie,this.ngControl=oe}});let ne=(()=>{class de extends Y{constructor(ie,oe,X,me,y,i,r,u,c,_){super(i,me,y,X),this._elementRef=ie,this._platform=oe,this._autofillMonitor=u,this._formField=_,this._uid="mat-input-"+Z++,this.focused=!1,this.stateChanges=new d.x,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(v=>(0,e.qK)().has(v)),this._iOSKeyupListener=v=>{const n=v.target;!n.value&&0===n.selectionStart&&0===n.selectionEnd&&(n.setSelectionRange(1,1),n.setSelectionRange(0,0))};const E=this._elementRef.nativeElement,I=E.nodeName.toLowerCase();this._inputValueAccessor=r||E,this._previousNativeValue=this.value,this.id=this.id,oe.IOS&&c.runOutsideAngular(()=>{ie.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===I,this._isTextarea="textarea"===I,this._isInFormField=!!_,this._isNativeSelect&&(this.controlType=E.multiple?"mat-native-select-multiple":"mat-native-select")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(ie){this._disabled=(0,t.Ig)(ie),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(ie){this._id=ie||this._uid}get required(){var ie,oe,X,me;return null!==(me=null!==(ie=this._required)&&void 0!==ie?ie:null===(X=null===(oe=this.ngControl)||void 0===oe?void 0:oe.control)||void 0===X?void 0:X.hasValidator(M.kI.required))&&void 0!==me&&me}set required(ie){this._required=(0,t.Ig)(ie)}get type(){return this._type}set type(ie){this._type=ie||"text",this._validateType(),!this._isTextarea&&(0,e.qK)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(ie){ie!==this.value&&(this._inputValueAccessor.value=ie,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(ie){this._readonly=(0,t.Ig)(ie)}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(ie=>{this.autofilled=ie.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(ie){this._elementRef.nativeElement.focus(ie)}_focusChanged(ie){ie!==this.focused&&(this.focused=ie,this.stateChanges.next())}_onInput(){}_dirtyCheckPlaceholder(){var ie,oe;const X=(null===(oe=null===(ie=this._formField)||void 0===ie?void 0:ie._hideControlPlaceholder)||void 0===oe?void 0:oe.call(ie))?null:this.placeholder;if(X!==this._previousPlaceholder){const me=this._elementRef.nativeElement;this._previousPlaceholder=X,X?me.setAttribute("placeholder",X):me.removeAttribute("placeholder")}}_dirtyCheckNativeValue(){const ie=this._elementRef.nativeElement.value;this._previousNativeValue!==ie&&(this._previousNativeValue=ie,this.stateChanges.next())}_validateType(){U.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let ie=this._elementRef.nativeElement.validity;return ie&&ie.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const ie=this._elementRef.nativeElement,oe=ie.options[0];return this.focused||ie.multiple||!this.empty||!!(ie.selectedIndex>-1&&oe&&oe.label)}return this.focused||!this.empty}setDescribedByIds(ie){ie.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ie.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const ie=this._elementRef.nativeElement;return this._isNativeSelect&&(ie.multiple||ie.size>1)}}return de.\u0275fac=function(ie){return new(ie||de)(f.Y36(f.SBq),f.Y36(e.t4),f.Y36(M.a5,10),f.Y36(M.F,8),f.Y36(M.sg,8),f.Y36(a.rD),f.Y36(S,10),f.Y36(A),f.Y36(f.R0b),f.Y36(b.G_,8))},de.\u0275dir=f.lG2({type:de,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-input-element","mat-form-field-autofill-control"],hostVars:12,hostBindings:function(ie,oe){1&ie&&f.NdJ("focus",function(){return oe._focusChanged(!0)})("blur",function(){return oe._focusChanged(!1)})("input",function(){return oe._onInput()}),2&ie&&(f.Ikx("disabled",oe.disabled)("required",oe.required),f.uIk("id",oe.id)("data-placeholder",oe.placeholder)("name",oe.name||null)("readonly",oe.readonly&&!oe._isNativeSelect||null)("aria-invalid",oe.empty&&oe.required?null:oe.errorState)("aria-required",oe.required),f.ekj("mat-input-server",oe._isServer)("mat-native-select-inline",oe._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],features:[f._Bn([{provide:b.Eo,useExisting:de}]),f.qOj,f.TTD]}),de})(),$=(()=>{class de{}return de.\u0275fac=function(ie){return new(ie||de)},de.\u0275mod=f.oAB({type:de}),de.\u0275inj=f.cJS({providers:[a.rD],imports:[[L,b.lN,a.BQ],L,b.lN]}),de})()},4623:(Ve,j,p)=>{"use strict";p.d(j,{Tg:()=>u,i$:()=>me,ie:()=>C});var t=p(9808),e=p(5e3),f=p(508),M=p(3191),a=p(7579),b=p(2722),D=(p(8675),p(5664),p(449),p(1159),p(3075),p(4834));const L=["*"],S=[[["","mat-list-avatar",""],["","mat-list-icon",""],["","matListAvatar",""],["","matListIcon",""]],[["","mat-line",""],["","matLine",""]],"*"],U=["[mat-list-avatar], [mat-list-icon], [matListAvatar], [matListIcon]","[mat-line], [matLine]","*"],de=(0,f.Id)((0,f.Kr)(class{})),te=(0,f.Kr)(class{}),ie=new e.OlP("MatList"),oe=new e.OlP("MatNavList");let me=(()=>{class B extends de{constructor(H){super(),this._elementRef=H,this._stateChanges=new a.x,"action-list"===this._getListType()&&H.nativeElement.classList.add("mat-action-list")}_getListType(){const H=this._elementRef.nativeElement.nodeName.toLowerCase();return"mat-list"===H?"list":"mat-action-list"===H?"action-list":null}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}}return B.\u0275fac=function(H){return new(H||B)(e.Y36(e.SBq))},B.\u0275cmp=e.Xpm({type:B,selectors:[["mat-list"],["mat-action-list"]],hostAttrs:[1,"mat-list","mat-list-base"],inputs:{disableRipple:"disableRipple",disabled:"disabled"},exportAs:["matList"],features:[e._Bn([{provide:ie,useExisting:B}]),e.qOj,e.TTD],ngContentSelectors:L,decls:1,vars:0,template:function(H,q){1&H&&(e.F$t(),e.Hsn(0))},styles:['.mat-subheader{display:flex;box-sizing:border-box;padding:16px;align-items:center}.mat-list-base .mat-subheader{margin:0}button.mat-list-item,button.mat-list-option{padding:0;width:100%;background:none;color:inherit;border:none;outline:inherit;-webkit-tap-highlight-color:transparent;text-align:left}[dir=rtl] button.mat-list-item,[dir=rtl] button.mat-list-option{text-align:right}button.mat-list-item::-moz-focus-inner,button.mat-list-option::-moz-focus-inner{border:0}.mat-list-base{padding-top:8px;display:block;-webkit-tap-highlight-color:transparent}.mat-list-base .mat-subheader{height:48px;line-height:16px}.mat-list-base .mat-subheader:first-child{margin-top:-8px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{display:block;height:48px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base .mat-list-item .mat-list-item-content,.mat-list-base .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base .mat-list-item .mat-list-item-ripple,.mat-list-base .mat-list-option .mat-list-item-ripple{display:block;top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar,.mat-list-base .mat-list-option.mat-list-item-with-avatar{height:56px}.mat-list-base .mat-list-item.mat-2-line,.mat-list-base .mat-list-option.mat-2-line{height:72px}.mat-list-base .mat-list-item.mat-3-line,.mat-list-base .mat-list-option.mat-3-line{height:88px}.mat-list-base .mat-list-item.mat-multi-line,.mat-list-base .mat-list-option.mat-multi-line{height:auto}.mat-list-base .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base .mat-list-item .mat-list-text,.mat-list-base .mat-list-option .mat-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base .mat-list-item .mat-list-text>*,.mat-list-base .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-list-base .mat-list-item .mat-list-text:empty,.mat-list-base .mat-list-option .mat-list-text:empty{display:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base .mat-list-item .mat-list-avatar,.mat-list-base .mat-list-option .mat-list-avatar{flex-shrink:0;width:40px;height:40px;border-radius:50%;object-fit:cover}.mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:72px;width:calc(100% - 72px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:72px}.mat-list-base .mat-list-item .mat-list-icon,.mat-list-base .mat-list-option .mat-list-icon{flex-shrink:0;width:24px;height:24px;font-size:24px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:64px;width:calc(100% - 64px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:64px}.mat-list-base .mat-list-item .mat-divider,.mat-list-base .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base .mat-list-item .mat-divider,[dir=rtl] .mat-list-base .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-list-base[dense]{padding-top:4px;display:block}.mat-list-base[dense] .mat-subheader{height:40px;line-height:8px}.mat-list-base[dense] .mat-subheader:first-child{margin-top:-4px}.mat-list-base[dense] .mat-list-item,.mat-list-base[dense] .mat-list-option{display:block;height:40px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-item-content,.mat-list-base[dense] .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base[dense] .mat-list-item .mat-list-item-content-reverse,.mat-list-base[dense] .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base[dense] .mat-list-item .mat-list-item-ripple,.mat-list-base[dense] .mat-list-option .mat-list-item-ripple{display:block;top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar{height:48px}.mat-list-base[dense] .mat-list-item.mat-2-line,.mat-list-base[dense] .mat-list-option.mat-2-line{height:60px}.mat-list-base[dense] .mat-list-item.mat-3-line,.mat-list-base[dense] .mat-list-option.mat-3-line{height:76px}.mat-list-base[dense] .mat-list-item.mat-multi-line,.mat-list-base[dense] .mat-list-option.mat-multi-line{height:auto}.mat-list-base[dense] .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base[dense] .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base[dense] .mat-list-item .mat-list-text,.mat-list-base[dense] .mat-list-option .mat-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-text>*,.mat-list-base[dense] .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-list-base[dense] .mat-list-item .mat-list-text:empty,.mat-list-base[dense] .mat-list-option .mat-list-text:empty{display:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base[dense] .mat-list-item .mat-list-avatar,.mat-list-base[dense] .mat-list-option .mat-list-avatar{flex-shrink:0;width:36px;height:36px;border-radius:50%;object-fit:cover}.mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:68px;width:calc(100% - 68px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:68px}.mat-list-base[dense] .mat-list-item .mat-list-icon,.mat-list-base[dense] .mat-list-option .mat-list-icon{flex-shrink:0;width:20px;height:20px;font-size:20px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:60px;width:calc(100% - 60px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:60px}.mat-list-base[dense] .mat-list-item .mat-divider,.mat-list-base[dense] .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-divider,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base[dense] .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-nav-list a{text-decoration:none;color:inherit}.mat-nav-list .mat-list-item{cursor:pointer;outline:none}mat-action-list .mat-list-item{cursor:pointer;outline:inherit}.mat-list-option:not(.mat-list-item-disabled){cursor:pointer;outline:none}.mat-list-item-disabled{pointer-events:none}.cdk-high-contrast-active .mat-list-item-disabled{opacity:.5}.cdk-high-contrast-active :host .mat-list-item-disabled{opacity:.5}.cdk-high-contrast-active .mat-selection-list:focus{outline-style:dotted}.cdk-high-contrast-active .mat-list-option:hover,.cdk-high-contrast-active .mat-list-option:focus,.cdk-high-contrast-active .mat-nav-list .mat-list-item:hover,.cdk-high-contrast-active .mat-nav-list .mat-list-item:focus,.cdk-high-contrast-active mat-action-list .mat-list-item:hover,.cdk-high-contrast-active mat-action-list .mat-list-item:focus{outline:dotted 1px;z-index:1}.cdk-high-contrast-active .mat-list-single-selected-option::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}.cdk-high-contrast-active [dir=rtl] .mat-list-single-selected-option::after{right:auto;left:16px}@media(hover: none){.mat-list-option:not(.mat-list-single-selected-option):not(.mat-list-item-disabled):hover,.mat-nav-list .mat-list-item:not(.mat-list-item-disabled):hover,.mat-action-list .mat-list-item:not(.mat-list-item-disabled):hover{background:none}}\n'],encapsulation:2,changeDetection:0}),B})(),y=(()=>{class B{}return B.\u0275fac=function(H){return new(H||B)},B.\u0275dir=e.lG2({type:B,selectors:[["","mat-list-avatar",""],["","matListAvatar",""]],hostAttrs:[1,"mat-list-avatar"]}),B})(),i=(()=>{class B{}return B.\u0275fac=function(H){return new(H||B)},B.\u0275dir=e.lG2({type:B,selectors:[["","mat-list-icon",""],["","matListIcon",""]],hostAttrs:[1,"mat-list-icon"]}),B})(),u=(()=>{class B extends te{constructor(H,q,he,_e){super(),this._element=H,this._isInteractiveList=!1,this._destroyed=new a.x,this._disabled=!1,this._isInteractiveList=!!(he||_e&&"action-list"===_e._getListType()),this._list=he||_e;const Ne=this._getHostElement();"button"===Ne.nodeName.toLowerCase()&&!Ne.hasAttribute("type")&&Ne.setAttribute("type","button"),this._list&&this._list._stateChanges.pipe((0,b.R)(this._destroyed)).subscribe(()=>{q.markForCheck()})}get disabled(){return this._disabled||!(!this._list||!this._list.disabled)}set disabled(H){this._disabled=(0,M.Ig)(H)}ngAfterContentInit(){(0,f.E0)(this._lines,this._element)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_isRippleDisabled(){return!this._isInteractiveList||this.disableRipple||!(!this._list||!this._list.disableRipple)}_getHostElement(){return this._element.nativeElement}}return B.\u0275fac=function(H){return new(H||B)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(oe,8),e.Y36(ie,8))},B.\u0275cmp=e.Xpm({type:B,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(H,q,he){if(1&H&&(e.Suo(he,y,5),e.Suo(he,i,5),e.Suo(he,f.X2,5)),2&H){let _e;e.iGM(_e=e.CRH())&&(q._avatar=_e.first),e.iGM(_e=e.CRH())&&(q._icon=_e.first),e.iGM(_e=e.CRH())&&(q._lines=_e)}},hostAttrs:[1,"mat-list-item","mat-focus-indicator"],hostVars:6,hostBindings:function(H,q){2&H&&e.ekj("mat-list-item-disabled",q.disabled)("mat-list-item-avatar",q._avatar||q._icon)("mat-list-item-with-avatar",q._avatar||q._icon)},inputs:{disableRipple:"disableRipple",disabled:"disabled"},exportAs:["matListItem"],features:[e.qOj],ngContentSelectors:U,decls:6,vars:2,consts:[[1,"mat-list-item-content"],["mat-ripple","",1,"mat-list-item-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-list-text"]],template:function(H,q){1&H&&(e.F$t(S),e.TgZ(0,"span",0),e._UZ(1,"span",1),e.Hsn(2),e.TgZ(3,"span",2),e.Hsn(4,1),e.qZA(),e.Hsn(5,2),e.qZA()),2&H&&(e.xp6(1),e.Q6J("matRippleTrigger",q._getHostElement())("matRippleDisabled",q._isRippleDisabled()))},directives:[f.wG],encapsulation:2,changeDetection:0}),B})(),C=(()=>{class B{}return B.\u0275fac=function(H){return new(H||B)},B.\u0275mod=e.oAB({type:B}),B.\u0275inj=e.cJS({imports:[[f.uc,f.si,f.BQ,f.us,t.ez],f.uc,f.BQ,f.us,D.t]}),B})()},2181:(Ve,j,p)=>{"use strict";p.d(j,{OP:()=>H,Tx:()=>Ae,VK:()=>we,p6:()=>Ie});var t=p(5664),e=p(3191),f=p(1159),M=p(5e3),a=p(7579),b=p(727),d=p(6451),N=p(9646),h=p(3101),A=p(8675),w=p(3900),D=p(5698),L=p(2722),k=p(9300),S=p(4086),U=p(1777),Z=p(7429),Y=p(9808),ne=p(508),$=p(9776),de=p(925),te=p(226),ie=p(5303);const oe=["mat-menu-item",""];function X(le,Te){1&le&&(M.O4$(),M.TgZ(0,"svg",2),M._UZ(1,"polygon",3),M.qZA())}const me=["*"];function y(le,Te){if(1&le){const xe=M.EpF();M.TgZ(0,"div",0),M.NdJ("keydown",function(ee){return M.CHM(xe),M.oxw()._handleKeydown(ee)})("click",function(){return M.CHM(xe),M.oxw().closed.emit("click")})("@transformMenu.start",function(ee){return M.CHM(xe),M.oxw()._onAnimationStart(ee)})("@transformMenu.done",function(ee){return M.CHM(xe),M.oxw()._onAnimationDone(ee)}),M.TgZ(1,"div",1),M.Hsn(2),M.qZA()()}if(2&le){const xe=M.oxw();M.Q6J("id",xe.panelId)("ngClass",xe._classList)("@transformMenu",xe._panelAnimationState),M.uIk("aria-label",xe.ariaLabel||null)("aria-labelledby",xe.ariaLabelledby||null)("aria-describedby",xe.ariaDescribedby||null)}}const i={transformMenu:(0,U.X$)("transformMenu",[(0,U.SB)("void",(0,U.oB)({opacity:0,transform:"scale(0.8)"})),(0,U.eR)("void => enter",(0,U.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,U.oB)({opacity:1,transform:"scale(1)"}))),(0,U.eR)("* => void",(0,U.jt)("100ms 25ms linear",(0,U.oB)({opacity:0})))]),fadeInItems:(0,U.X$)("fadeInItems",[(0,U.SB)("showing",(0,U.oB)({opacity:1})),(0,U.eR)("void => *",[(0,U.oB)({opacity:0}),(0,U.jt)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])},c=new M.OlP("MatMenuContent"),B=new M.OlP("MAT_MENU_PANEL"),P=(0,ne.Kr)((0,ne.Id)(class{}));let H=(()=>{class le extends P{constructor(xe,W,ee,ue,Ce){var Le;super(),this._elementRef=xe,this._document=W,this._focusMonitor=ee,this._parentMenu=ue,this._changeDetectorRef=Ce,this.role="menuitem",this._hovered=new a.x,this._focused=new a.x,this._highlighted=!1,this._triggersSubmenu=!1,null===(Le=null==ue?void 0:ue.addItem)||void 0===Le||Le.call(ue,this)}focus(xe,W){this._focusMonitor&&xe?this._focusMonitor.focusVia(this._getHostElement(),xe,W):this._getHostElement().focus(W),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(xe){this.disabled&&(xe.preventDefault(),xe.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){var xe;const W=this._elementRef.nativeElement.cloneNode(!0),ee=W.querySelectorAll("mat-icon, .material-icons");for(let ue=0;ue{class le{constructor(xe,W,ee,ue){this._elementRef=xe,this._ngZone=W,this._defaultOptions=ee,this._changeDetectorRef=ue,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new M.n_E,this._tabSubscription=b.w0.EMPTY,this._classList={},this._panelAnimationState="void",this._animationDone=new a.x,this.overlayPanelClass=this._defaultOptions.overlayPanelClass||"",this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new M.vpe,this.close=this.closed,this.panelId="mat-menu-panel-"+_e++}get xPosition(){return this._xPosition}set xPosition(xe){this._xPosition=xe,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(xe){this._yPosition=xe,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(xe){this._overlapTrigger=(0,e.Ig)(xe)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(xe){this._hasBackdrop=(0,e.Ig)(xe)}set panelClass(xe){const W=this._previousPanelClass;W&&W.length&&W.split(" ").forEach(ee=>{this._classList[ee]=!1}),this._previousPanelClass=xe,xe&&xe.length&&(xe.split(" ").forEach(ee=>{this._classList[ee]=!0}),this._elementRef.nativeElement.className="")}get classList(){return this.panelClass}set classList(xe){this.panelClass=xe}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Em(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,A.O)(this._directDescendantItems),(0,w.w)(xe=>(0,d.T)(...xe.map(W=>W._focused)))).subscribe(xe=>this._keyManager.updateActiveItem(xe)),this._directDescendantItems.changes.subscribe(xe=>{var W;const ee=this._keyManager;if("enter"===this._panelAnimationState&&(null===(W=ee.activeItem)||void 0===W?void 0:W._hasFocus())){const ue=xe.toArray(),Ce=Math.max(0,Math.min(ue.length-1,ee.activeItemIndex||0));ue[Ce]&&!ue[Ce].disabled?ee.setActiveItem(Ce):ee.setNextItemActive()}})}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe((0,A.O)(this._directDescendantItems),(0,w.w)(W=>(0,d.T)(...W.map(ee=>ee._hovered))))}addItem(xe){}removeItem(xe){}_handleKeydown(xe){const W=xe.keyCode,ee=this._keyManager;switch(W){case f.hY:(0,f.Vb)(xe)||(xe.preventDefault(),this.closed.emit("keydown"));break;case f.oh:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case f.SV:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(W===f.LH||W===f.JH)&&ee.setFocusOrigin("keyboard"),void ee.onKeydown(xe)}xe.stopPropagation()}focusFirstItem(xe="program"){this._ngZone.onStable.pipe((0,D.q)(1)).subscribe(()=>{let W=null;if(this._directDescendantItems.length&&(W=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!W||!W.contains(document.activeElement)){const ee=this._keyManager;ee.setFocusOrigin(xe).setFirstItemActive(),!ee.activeItem&&W&&W.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(xe){const W=Math.min(this._baseElevation+xe,24),ee=`${this._elevationPrefix}${W}`,ue=Object.keys(this._classList).find(Ce=>Ce.startsWith(this._elevationPrefix));(!ue||ue===this._previousElevation)&&(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[ee]=!0,this._previousElevation=ee)}setPositionClasses(xe=this.xPosition,W=this.yPosition){var ee;const ue=this._classList;ue["mat-menu-before"]="before"===xe,ue["mat-menu-after"]="after"===xe,ue["mat-menu-above"]="above"===W,ue["mat-menu-below"]="below"===W,null===(ee=this._changeDetectorRef)||void 0===ee||ee.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(xe){this._animationDone.next(xe),this._isAnimating=!1}_onAnimationStart(xe){this._isAnimating=!0,"enter"===xe.toState&&0===this._keyManager.activeItemIndex&&(xe.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,A.O)(this._allItems)).subscribe(xe=>{this._directDescendantItems.reset(xe.filter(W=>W._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return le.\u0275fac=function(xe){return new(xe||le)(M.Y36(M.SBq),M.Y36(M.R0b),M.Y36(q),M.Y36(M.sBO))},le.\u0275dir=M.lG2({type:le,contentQueries:function(xe,W,ee){if(1&xe&&(M.Suo(ee,c,5),M.Suo(ee,H,5),M.Suo(ee,H,4)),2&xe){let ue;M.iGM(ue=M.CRH())&&(W.lazyContent=ue.first),M.iGM(ue=M.CRH())&&(W._allItems=ue),M.iGM(ue=M.CRH())&&(W.items=ue)}},viewQuery:function(xe,W){if(1&xe&&M.Gf(M.Rgc,5),2&xe){let ee;M.iGM(ee=M.CRH())&&(W.templateRef=ee.first)}},inputs:{backdropClass:"backdropClass",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:"overlapTrigger",hasBackdrop:"hasBackdrop",panelClass:["class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"}}),le})(),we=(()=>{class le extends Ne{constructor(xe,W,ee,ue){super(xe,W,ee,ue),this._elevationPrefix="mat-elevation-z",this._baseElevation=4}}return le.\u0275fac=function(xe){return new(xe||le)(M.Y36(M.SBq),M.Y36(M.R0b),M.Y36(q),M.Y36(M.sBO))},le.\u0275cmp=M.Xpm({type:le,selectors:[["mat-menu"]],hostVars:3,hostBindings:function(xe,W){2&xe&&M.uIk("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},exportAs:["matMenu"],features:[M._Bn([{provide:B,useExisting:le}]),M.qOj],ngContentSelectors:me,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-menu-panel",3,"id","ngClass","keydown","click"],[1,"mat-menu-content"]],template:function(xe,W){1&xe&&(M.F$t(),M.YNc(0,y,3,6,"ng-template"))},directives:[Y.mk],styles:['mat-menu{display:none}.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]::before{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.cdk-high-contrast-active .mat-menu-item{margin-top:1px}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}.mat-menu-submenu-icon{position:absolute;top:50%;right:16px;transform:translateY(-50%);width:5px;height:10px;fill:currentColor}[dir=rtl] .mat-menu-submenu-icon{right:auto;left:16px;transform:translateY(-50%) scaleX(-1)}.cdk-high-contrast-active .mat-menu-submenu-icon{fill:CanvasText}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n'],encapsulation:2,data:{animation:[i.transformMenu,i.fadeInItems]},changeDetection:0}),le})();const Q=new M.OlP("mat-menu-scroll-strategy"),ve={provide:Q,deps:[$.aV],useFactory:function Ue(le){return()=>le.scrollStrategies.reposition()}},De=(0,de.i$)({passive:!0});let dt=(()=>{class le{constructor(xe,W,ee,ue,Ce,Le,ut,ht,It){this._overlay=xe,this._element=W,this._viewContainerRef=ee,this._menuItemInstance=Le,this._dir=ut,this._focusMonitor=ht,this._ngZone=It,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=b.w0.EMPTY,this._hoverSubscription=b.w0.EMPTY,this._menuCloseSubscription=b.w0.EMPTY,this._handleTouchStart=ui=>{(0,t.yG)(ui)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new M.vpe,this.onMenuOpen=this.menuOpened,this.menuClosed=new M.vpe,this.onMenuClose=this.menuClosed,this._scrollStrategy=ue,this._parentMaterialMenu=Ce instanceof Ne?Ce:void 0,W.nativeElement.addEventListener("touchstart",this._handleTouchStart,De),Le&&(Le._triggersSubmenu=this.triggersSubmenu())}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(xe){this.menu=xe}get menu(){return this._menu}set menu(xe){xe!==this._menu&&(this._menu=xe,this._menuCloseSubscription.unsubscribe(),xe&&(this._menuCloseSubscription=xe.close.subscribe(W=>{this._destroyMenu(W),("click"===W||"tab"===W)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(W)})))}ngAfterContentInit(){this._checkMenu(),this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,De),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMaterialMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){if(this._menuOpen)return;this._checkMenu();const xe=this._createOverlay(),W=xe.getConfig(),ee=W.positionStrategy;this._setPosition(ee),W.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,xe.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(),this.menu instanceof Ne&&(this.menu._startAnimation(),this.menu._directDescendantItems.changes.pipe((0,L.R)(this.menu.close)).subscribe(()=>{ee.withLockedPosition(!1).reapplyLastPosition(),ee.withLockedPosition(!0)}))}closeMenu(){this.menu.close.emit()}focus(xe,W){this._focusMonitor&&xe?this._focusMonitor.focusVia(this._element,xe,W):this._element.nativeElement.focus(W)}updatePosition(){var xe;null===(xe=this._overlayRef)||void 0===xe||xe.updatePosition()}_destroyMenu(xe){if(!this._overlayRef||!this.menuOpen)return;const W=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===xe||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,W instanceof Ne?(W._resetAnimation(),W.lazyContent?W._animationDone.pipe((0,k.h)(ee=>"void"===ee.toState),(0,D.q)(1),(0,L.R)(W.lazyContent._attached)).subscribe({next:()=>W.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),W.lazyContent&&W.lazyContent.detach())}_initMenu(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this.menu.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(){if(this.menu.setElevation){let xe=0,W=this.menu.parentMenu;for(;W;)xe++,W=W.parentMenu;this.menu.setElevation(xe)}}_setIsMenuOpen(xe){this._menuOpen=xe,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(xe)}_checkMenu(){}_createOverlay(){if(!this._overlayRef){const xe=this._getOverlayConfig();this._subscribeToPositions(xe.positionStrategy),this._overlayRef=this._overlay.create(xe),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(){return new $.X_({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:this.menu.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:this.menu.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(xe){this.menu.setPositionClasses&&xe.positionChanges.subscribe(W=>{const ee="start"===W.connectionPair.overlayX?"after":"before",ue="top"===W.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>this.menu.setPositionClasses(ee,ue)):this.menu.setPositionClasses(ee,ue)})}_setPosition(xe){let[W,ee]="before"===this.menu.xPosition?["end","start"]:["start","end"],[ue,Ce]="above"===this.menu.yPosition?["bottom","top"]:["top","bottom"],[Le,ut]=[ue,Ce],[ht,It]=[W,ee],ui=0;this.triggersSubmenu()?(It=W="before"===this.menu.xPosition?"start":"end",ee=ht="end"===W?"start":"end",ui="bottom"===ue?8:-8):this.menu.overlapTrigger||(Le="top"===ue?"bottom":"top",ut="top"===Ce?"bottom":"top"),xe.withPositions([{originX:W,originY:Le,overlayX:ht,overlayY:ue,offsetY:ui},{originX:ee,originY:Le,overlayX:It,overlayY:ue,offsetY:ui},{originX:W,originY:ut,overlayX:ht,overlayY:Ce,offsetY:-ui},{originX:ee,originY:ut,overlayX:It,overlayY:Ce,offsetY:-ui}])}_menuClosingActions(){const xe=this._overlayRef.backdropClick(),W=this._overlayRef.detachments(),ee=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,N.of)(),ue=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,k.h)(Ce=>Ce!==this._menuItemInstance),(0,k.h)(()=>this._menuOpen)):(0,N.of)();return(0,d.T)(xe,ee,ue,W)}_handleMousedown(xe){(0,t.X6)(xe)||(this._openedBy=0===xe.button?"mouse":void 0,this.triggersSubmenu()&&xe.preventDefault())}_handleKeydown(xe){const W=xe.keyCode;(W===f.K5||W===f.L_)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(W===f.SV&&"ltr"===this.dir||W===f.oh&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(xe){this.triggersSubmenu()?(xe.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,k.h)(xe=>xe===this._menuItemInstance&&!xe.disabled),(0,S.g)(0,h.E)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof Ne&&this.menu._isAnimating?this.menu._animationDone.pipe((0,D.q)(1),(0,S.g)(0,h.E),(0,L.R)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(){return(!this._portal||this._portal.templateRef!==this.menu.templateRef)&&(this._portal=new Z.UE(this.menu.templateRef,this._viewContainerRef)),this._portal}}return le.\u0275fac=function(xe){return new(xe||le)(M.Y36($.aV),M.Y36(M.SBq),M.Y36(M.s_b),M.Y36(Q),M.Y36(B,8),M.Y36(H,10),M.Y36(te.Is,8),M.Y36(t.tE),M.Y36(M.R0b))},le.\u0275dir=M.lG2({type:le,hostAttrs:["aria-haspopup","true"],hostVars:2,hostBindings:function(xe,W){1&xe&&M.NdJ("click",function(ue){return W._handleClick(ue)})("mousedown",function(ue){return W._handleMousedown(ue)})("keydown",function(ue){return W._handleKeydown(ue)}),2&xe&&M.uIk("aria-expanded",W.menuOpen||null)("aria-controls",W.menuOpen?W.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:["mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:["matMenuTriggerFor","menu"],menuData:["matMenuTriggerData","menuData"],restoreFocus:["matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"}}),le})(),Ie=(()=>{class le extends dt{}return le.\u0275fac=function(){let Te;return function(W){return(Te||(Te=M.n5z(le)))(W||le)}}(),le.\u0275dir=M.lG2({type:le,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-menu-trigger"],exportAs:["matMenuTrigger"],features:[M.qOj]}),le})(),Ae=(()=>{class le{}return le.\u0275fac=function(xe){return new(xe||le)},le.\u0275mod=M.oAB({type:le}),le.\u0275inj=M.cJS({providers:[ve],imports:[[Y.ez,ne.BQ,ne.si,$.U8],ie.ZD,ne.BQ]}),le})()},6087:(Ve,j,p)=>{"use strict";p.d(j,{NW:()=>oe,TU:()=>X,ye:()=>U});var t=p(9808),e=p(5e3),f=p(508),M=p(7423),a=p(4107),b=p(7238),d=p(3191),N=p(7579),h=p(7322);function A(me,y){if(1&me&&(e.TgZ(0,"mat-option",19),e._uU(1),e.qZA()),2&me){const i=y.$implicit;e.Q6J("value",i),e.xp6(1),e.hij(" ",i," ")}}function w(me,y){if(1&me){const i=e.EpF();e.TgZ(0,"mat-form-field",16)(1,"mat-select",17),e.NdJ("selectionChange",function(u){return e.CHM(i),e.oxw(2)._changePageSize(u.value)}),e.YNc(2,A,2,2,"mat-option",18),e.qZA()()}if(2&me){const i=e.oxw(2);e.Q6J("appearance",i._formFieldAppearance)("color",i.color),e.xp6(1),e.Q6J("value",i.pageSize)("disabled",i.disabled)("aria-label",i._intl.itemsPerPageLabel),e.xp6(1),e.Q6J("ngForOf",i._displayedPageSizeOptions)}}function D(me,y){if(1&me&&(e.TgZ(0,"div",20),e._uU(1),e.qZA()),2&me){const i=e.oxw(2);e.xp6(1),e.Oqu(i.pageSize)}}function L(me,y){if(1&me&&(e.TgZ(0,"div",12)(1,"div",13),e._uU(2),e.qZA(),e.YNc(3,w,3,6,"mat-form-field",14),e.YNc(4,D,2,1,"div",15),e.qZA()),2&me){const i=e.oxw();e.xp6(2),e.hij(" ",i._intl.itemsPerPageLabel," "),e.xp6(1),e.Q6J("ngIf",i._displayedPageSizeOptions.length>1),e.xp6(1),e.Q6J("ngIf",i._displayedPageSizeOptions.length<=1)}}function k(me,y){if(1&me){const i=e.EpF();e.TgZ(0,"button",21),e.NdJ("click",function(){return e.CHM(i),e.oxw().firstPage()}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",22),e.qZA()()}if(2&me){const i=e.oxw();e.Q6J("matTooltip",i._intl.firstPageLabel)("matTooltipDisabled",i._previousButtonsDisabled())("matTooltipPosition","above")("disabled",i._previousButtonsDisabled()),e.uIk("aria-label",i._intl.firstPageLabel)}}function S(me,y){if(1&me){const i=e.EpF();e.O4$(),e.kcU(),e.TgZ(0,"button",23),e.NdJ("click",function(){return e.CHM(i),e.oxw().lastPage()}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",24),e.qZA()()}if(2&me){const i=e.oxw();e.Q6J("matTooltip",i._intl.lastPageLabel)("matTooltipDisabled",i._nextButtonsDisabled())("matTooltipPosition","above")("disabled",i._nextButtonsDisabled()),e.uIk("aria-label",i._intl.lastPageLabel)}}let U=(()=>{class me{constructor(){this.changes=new N.x,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(i,r,u)=>{if(0==u||0==r)return`0 of ${u}`;const c=i*r;return`${c+1} \u2013 ${c<(u=Math.max(u,0))?Math.min(c+r,u):c+r} of ${u}`}}}return me.\u0275fac=function(i){return new(i||me)},me.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"}),me})();const Y={provide:U,deps:[[new e.FiY,new e.tp0,U]],useFactory:function Z(me){return me||new U}},de=new e.OlP("MAT_PAGINATOR_DEFAULT_OPTIONS"),te=(0,f.Id)((0,f.dB)(class{}));let ie=(()=>{class me extends te{constructor(i,r,u){if(super(),this._intl=i,this._changeDetectorRef=r,this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this._hidePageSize=!1,this._showFirstLastButtons=!1,this.page=new e.vpe,this._intlChanges=i.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),u){const{pageSize:c,pageSizeOptions:_,hidePageSize:E,showFirstLastButtons:I}=u;null!=c&&(this._pageSize=c),null!=_&&(this._pageSizeOptions=_),null!=E&&(this._hidePageSize=E),null!=I&&(this._showFirstLastButtons=I)}}get pageIndex(){return this._pageIndex}set pageIndex(i){this._pageIndex=Math.max((0,d.su)(i),0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(i){this._length=(0,d.su)(i),this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(i){this._pageSize=Math.max((0,d.su)(i),0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(i){this._pageSizeOptions=(i||[]).map(r=>(0,d.su)(r)),this._updateDisplayedPageSizeOptions()}get hidePageSize(){return this._hidePageSize}set hidePageSize(i){this._hidePageSize=(0,d.Ig)(i)}get showFirstLastButtons(){return this._showFirstLastButtons}set showFirstLastButtons(i){this._showFirstLastButtons=(0,d.Ig)(i)}ngOnInit(){this._initialized=!0,this._updateDisplayedPageSizeOptions(),this._markInitialized()}ngOnDestroy(){this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const i=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(i)}previousPage(){if(!this.hasPreviousPage())return;const i=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(i)}firstPage(){if(!this.hasPreviousPage())return;const i=this.pageIndex;this.pageIndex=0,this._emitPageEvent(i)}lastPage(){if(!this.hasNextPage())return;const i=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(i)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const i=this.getNumberOfPages()-1;return this.pageIndexi-r),this._changeDetectorRef.markForCheck())}_emitPageEvent(i){this.page.emit({previousPageIndex:i,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}}return me.\u0275fac=function(i){e.$Z()},me.\u0275dir=e.lG2({type:me,inputs:{color:"color",pageIndex:"pageIndex",length:"length",pageSize:"pageSize",pageSizeOptions:"pageSizeOptions",hidePageSize:"hidePageSize",showFirstLastButtons:"showFirstLastButtons"},outputs:{page:"page"},features:[e.qOj]}),me})(),oe=(()=>{class me extends ie{constructor(i,r,u){super(i,r,u),u&&null!=u.formFieldAppearance&&(this._formFieldAppearance=u.formFieldAppearance)}}return me.\u0275fac=function(i){return new(i||me)(e.Y36(U),e.Y36(e.sBO),e.Y36(de,8))},me.\u0275cmp=e.Xpm({type:me,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-paginator"],inputs:{disabled:"disabled"},exportAs:["matPaginator"],features:[e.qOj],decls:14,vars:14,consts:[[1,"mat-paginator-outer-container"],[1,"mat-paginator-container"],["class","mat-paginator-page-size",4,"ngIf"],[1,"mat-paginator-range-actions"],[1,"mat-paginator-range-label"],["mat-icon-button","","type","button","class","mat-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click",4,"ngIf"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-previous",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["viewBox","0 0 24 24","focusable","false",1,"mat-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-next",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button","class","mat-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click",4,"ngIf"],[1,"mat-paginator-page-size"],[1,"mat-paginator-page-size-label"],["class","mat-paginator-page-size-select",3,"appearance","color",4,"ngIf"],["class","mat-paginator-page-size-value",4,"ngIf"],[1,"mat-paginator-page-size-select",3,"appearance","color"],[3,"value","disabled","aria-label","selectionChange"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],[1,"mat-paginator-page-size-value"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(i,r){1&i&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,L,5,3,"div",2),e.TgZ(3,"div",3)(4,"div",4),e._uU(5),e.qZA(),e.YNc(6,k,3,5,"button",5),e.TgZ(7,"button",6),e.NdJ("click",function(){return r.previousPage()}),e.O4$(),e.TgZ(8,"svg",7),e._UZ(9,"path",8),e.qZA()(),e.kcU(),e.TgZ(10,"button",9),e.NdJ("click",function(){return r.nextPage()}),e.O4$(),e.TgZ(11,"svg",7),e._UZ(12,"path",10),e.qZA()(),e.YNc(13,S,3,5,"button",11),e.qZA()()()),2&i&&(e.xp6(2),e.Q6J("ngIf",!r.hidePageSize),e.xp6(3),e.hij(" ",r._intl.getRangeLabel(r.pageIndex,r.pageSize,r.length)," "),e.xp6(1),e.Q6J("ngIf",r.showFirstLastButtons),e.xp6(1),e.Q6J("matTooltip",r._intl.previousPageLabel)("matTooltipDisabled",r._previousButtonsDisabled())("matTooltipPosition","above")("disabled",r._previousButtonsDisabled()),e.uIk("aria-label",r._intl.previousPageLabel),e.xp6(3),e.Q6J("matTooltip",r._intl.nextPageLabel)("matTooltipDisabled",r._nextButtonsDisabled())("matTooltipPosition","above")("disabled",r._nextButtonsDisabled()),e.uIk("aria-label",r._intl.nextPageLabel),e.xp6(3),e.Q6J("ngIf",r.showFirstLastButtons))},directives:[h.KE,a.gD,f.ey,M.lW,t.O5,t.sg,b.gM],styles:[".mat-paginator{display:block}.mat-paginator-outer-container{display:flex}.mat-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap-reverse;width:100%}.mat-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-paginator-page-size{margin-right:0;margin-left:8px}.mat-paginator-page-size-label{margin:0 4px}.mat-paginator-page-size-select{margin:6px 4px 0 4px;width:56px}.mat-paginator-page-size-select.mat-form-field-appearance-outline{width:64px}.mat-paginator-page-size-select.mat-form-field-appearance-fill{width:64px}.mat-paginator-range-label{margin:0 32px 0 24px}.mat-paginator-range-actions{display:flex;align-items:center}.mat-paginator-icon{width:28px;fill:currentColor}[dir=rtl] .mat-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-paginator-icon{fill:CanvasText}\n"],encapsulation:2,changeDetection:0}),me})(),X=(()=>{class me{}return me.\u0275fac=function(i){return new(i||me)},me.\u0275mod=e.oAB({type:me}),me.\u0275inj=e.cJS({providers:[Y],imports:[[t.ez,M.ot,a.LD,b.AV,f.BQ]]}),me})()},5899:(Ve,j,p)=>{"use strict";p.d(j,{Cv:()=>Z,pW:()=>S});var t=p(5e3),e=p(9808),f=p(508),M=p(3191),a=p(6360),b=p(727),d=p(4968),N=p(9300);const h=["primaryValueBar"],A=(0,f.pj)(class{constructor(Y){this._elementRef=Y}},"primary"),w=new t.OlP("mat-progress-bar-location",{providedIn:"root",factory:function D(){const Y=(0,t.f3M)(e.K0),ne=Y?Y.location:null;return{getPathname:()=>ne?ne.pathname+ne.search:""}}}),L=new t.OlP("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let k=0,S=(()=>{class Y extends A{constructor($,de,te,ie,oe,X){super($),this._ngZone=de,this._animationMode=te,this._changeDetectorRef=X,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new t.vpe,this._animationEndSubscription=b.w0.EMPTY,this.mode="determinate",this.progressbarId="mat-progress-bar-"+k++;const me=ie?ie.getPathname().split("#")[0]:"";this._rectangleFillValue=`url('${me}#${this.progressbarId}')`,this._isNoopAnimation="NoopAnimations"===te,oe&&(oe.color&&(this.color=this.defaultColor=oe.color),this.mode=oe.mode||this.mode)}get value(){return this._value}set value($){var de;this._value=U((0,M.su)($)||0),null===(de=this._changeDetectorRef)||void 0===de||de.markForCheck()}get bufferValue(){return this._bufferValue}set bufferValue($){var de;this._bufferValue=U($||0),null===(de=this._changeDetectorRef)||void 0===de||de.markForCheck()}_primaryTransform(){return{transform:`scale3d(${this.value/100}, 1, 1)`}}_bufferTransform(){return"buffer"===this.mode?{transform:`scale3d(${this.bufferValue/100}, 1, 1)`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const $=this._primaryValueBar.nativeElement;this._animationEndSubscription=(0,d.R)($,"transitionend").pipe((0,N.h)(de=>de.target===$)).subscribe(()=>{0!==this.animationEnd.observers.length&&("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return Y.\u0275fac=function($){return new($||Y)(t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(a.Qb,8),t.Y36(w,8),t.Y36(L,8),t.Y36(t.sBO))},Y.\u0275cmp=t.Xpm({type:Y,selectors:[["mat-progress-bar"]],viewQuery:function($,de){if(1&$&&t.Gf(h,5),2&$){let te;t.iGM(te=t.CRH())&&(de._primaryValueBar=te.first)}},hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-progress-bar"],hostVars:4,hostBindings:function($,de){2&$&&(t.uIk("aria-valuenow","indeterminate"===de.mode||"query"===de.mode?null:de.value)("mode",de.mode),t.ekj("_mat-animation-noopable",de._isNoopAnimation))},inputs:{color:"color",value:"value",bufferValue:"bufferValue",mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],features:[t.qOj],decls:10,vars:4,consts:[["aria-hidden","true"],["width","100%","height","4","focusable","false",1,"mat-progress-bar-background","mat-progress-bar-element"],["x","4","y","0","width","8","height","4","patternUnits","userSpaceOnUse",3,"id"],["cx","2","cy","2","r","2"],["width","100%","height","100%"],[1,"mat-progress-bar-buffer","mat-progress-bar-element",3,"ngStyle"],[1,"mat-progress-bar-primary","mat-progress-bar-fill","mat-progress-bar-element",3,"ngStyle"],["primaryValueBar",""],[1,"mat-progress-bar-secondary","mat-progress-bar-fill","mat-progress-bar-element"]],template:function($,de){1&$&&(t.TgZ(0,"div",0),t.O4$(),t.TgZ(1,"svg",1)(2,"defs")(3,"pattern",2),t._UZ(4,"circle",3),t.qZA()(),t._UZ(5,"rect",4),t.qZA(),t.kcU(),t._UZ(6,"div",5)(7,"div",6,7)(9,"div",8),t.qZA()),2&$&&(t.xp6(3),t.Q6J("id",de.progressbarId),t.xp6(2),t.uIk("fill",de._rectangleFillValue),t.xp6(1),t.Q6J("ngStyle",de._bufferTransform()),t.xp6(1),t.Q6J("ngStyle",de._primaryTransform()))},directives:[e.PC],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:"";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\n'],encapsulation:2,changeDetection:0}),Y})();function U(Y,ne=0,$=100){return Math.max(ne,Math.min($,Y))}let Z=(()=>{class Y{}return Y.\u0275fac=function($){return new($||Y)},Y.\u0275mod=t.oAB({type:Y}),Y.\u0275inj=t.cJS({imports:[[e.ez,f.BQ],f.BQ]}),Y})()},773:(Ve,j,p)=>{"use strict";p.d(j,{Cq:()=>Y,Ou:()=>Z});var t=p(3191),e=p(925),f=p(9808),M=p(5e3),a=p(508),b=p(6360),d=p(727),N=p(5303);function h($,de){if(1&$&&(M.O4$(),M._UZ(0,"circle",4)),2&$){const te=M.oxw(),ie=M.MAs(1);M.Udp("animation-name","mat-progress-spinner-stroke-rotate-"+te._spinnerAnimationLabel)("stroke-dashoffset",te._getStrokeDashOffset(),"px")("stroke-dasharray",te._getStrokeCircumference(),"px")("stroke-width",te._getCircleStrokeWidth(),"%")("transform-origin",te._getCircleTransformOrigin(ie)),M.uIk("r",te._getCircleRadius())}}function A($,de){if(1&$&&(M.O4$(),M._UZ(0,"circle",4)),2&$){const te=M.oxw(),ie=M.MAs(1);M.Udp("stroke-dashoffset",te._getStrokeDashOffset(),"px")("stroke-dasharray",te._getStrokeCircumference(),"px")("stroke-width",te._getCircleStrokeWidth(),"%")("transform-origin",te._getCircleTransformOrigin(ie)),M.uIk("r",te._getCircleRadius())}}const L=(0,a.pj)(class{constructor($){this._elementRef=$}},"primary"),k=new M.OlP("mat-progress-spinner-default-options",{providedIn:"root",factory:function S(){return{diameter:100}}});class Z extends L{constructor(de,te,ie,oe,X,me,y,i){super(de),this._document=ie,this._diameter=100,this._value=0,this._resizeSubscription=d.w0.EMPTY,this.mode="determinate";const r=Z._diameters;this._spinnerAnimationLabel=this._getSpinnerAnimationLabel(),r.has(ie.head)||r.set(ie.head,new Set([100])),this._noopAnimations="NoopAnimations"===oe&&!!X&&!X._forceAnimations,"mat-spinner"===de.nativeElement.nodeName.toLowerCase()&&(this.mode="indeterminate"),X&&(X.diameter&&(this.diameter=X.diameter),X.strokeWidth&&(this.strokeWidth=X.strokeWidth)),te.isBrowser&&te.SAFARI&&y&&me&&i&&(this._resizeSubscription=y.change(150).subscribe(()=>{"indeterminate"===this.mode&&i.run(()=>me.markForCheck())}))}get diameter(){return this._diameter}set diameter(de){this._diameter=(0,t.su)(de),this._spinnerAnimationLabel=this._getSpinnerAnimationLabel(),this._styleRoot&&this._attachStyleNode()}get strokeWidth(){return this._strokeWidth||this.diameter/10}set strokeWidth(de){this._strokeWidth=(0,t.su)(de)}get value(){return"determinate"===this.mode?this._value:0}set value(de){this._value=Math.max(0,Math.min(100,(0,t.su)(de)))}ngOnInit(){const de=this._elementRef.nativeElement;this._styleRoot=(0,e.kV)(de)||this._document.head,this._attachStyleNode(),de.classList.add("mat-progress-spinner-indeterminate-animation")}ngOnDestroy(){this._resizeSubscription.unsubscribe()}_getCircleRadius(){return(this.diameter-10)/2}_getViewBox(){const de=2*this._getCircleRadius()+this.strokeWidth;return`0 0 ${de} ${de}`}_getStrokeCircumference(){return 2*Math.PI*this._getCircleRadius()}_getStrokeDashOffset(){return"determinate"===this.mode?this._getStrokeCircumference()*(100-this._value)/100:null}_getCircleStrokeWidth(){return this.strokeWidth/this.diameter*100}_getCircleTransformOrigin(de){var te;const ie=50*(null!==(te=de.currentScale)&&void 0!==te?te:1);return`${ie}% ${ie}%`}_attachStyleNode(){const de=this._styleRoot,te=this._diameter,ie=Z._diameters;let oe=ie.get(de);if(!oe||!oe.has(te)){const X=this._document.createElement("style");X.setAttribute("mat-spinner-animation",this._spinnerAnimationLabel),X.textContent=this._getAnimationText(),de.appendChild(X),oe||(oe=new Set,ie.set(de,oe)),oe.add(te)}}_getAnimationText(){const de=this._getStrokeCircumference();return"\n @keyframes mat-progress-spinner-stroke-rotate-DIAMETER {\n 0% { stroke-dashoffset: START_VALUE; transform: rotate(0); }\n 12.5% { stroke-dashoffset: END_VALUE; transform: rotate(0); }\n 12.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n 25% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n\n 25.0001% { stroke-dashoffset: START_VALUE; transform: rotate(270deg); }\n 37.5% { stroke-dashoffset: END_VALUE; transform: rotate(270deg); }\n 37.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n 50% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n\n 50.0001% { stroke-dashoffset: START_VALUE; transform: rotate(180deg); }\n 62.5% { stroke-dashoffset: END_VALUE; transform: rotate(180deg); }\n 62.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n 75% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n\n 75.0001% { stroke-dashoffset: START_VALUE; transform: rotate(90deg); }\n 87.5% { stroke-dashoffset: END_VALUE; transform: rotate(90deg); }\n 87.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n 100% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n }\n".replace(/START_VALUE/g,""+.95*de).replace(/END_VALUE/g,""+.2*de).replace(/DIAMETER/g,`${this._spinnerAnimationLabel}`)}_getSpinnerAnimationLabel(){return this.diameter.toString().replace(".","_")}}Z._diameters=new WeakMap,Z.\u0275fac=function(de){return new(de||Z)(M.Y36(M.SBq),M.Y36(e.t4),M.Y36(f.K0,8),M.Y36(b.Qb,8),M.Y36(k),M.Y36(M.sBO),M.Y36(N.rL),M.Y36(M.R0b))},Z.\u0275cmp=M.Xpm({type:Z,selectors:[["mat-progress-spinner"],["mat-spinner"]],hostAttrs:["role","progressbar","tabindex","-1",1,"mat-progress-spinner","mat-spinner"],hostVars:10,hostBindings:function(de,te){2&de&&(M.uIk("aria-valuemin","determinate"===te.mode?0:null)("aria-valuemax","determinate"===te.mode?100:null)("aria-valuenow","determinate"===te.mode?te.value:null)("mode",te.mode),M.Udp("width",te.diameter,"px")("height",te.diameter,"px"),M.ekj("_mat-animation-noopable",te._noopAnimations))},inputs:{color:"color",diameter:"diameter",strokeWidth:"strokeWidth",mode:"mode",value:"value"},exportAs:["matProgressSpinner"],features:[M.qOj],decls:4,vars:8,consts:[["preserveAspectRatio","xMidYMid meet","focusable","false","aria-hidden","true",3,"ngSwitch"],["svg",""],["cx","50%","cy","50%",3,"animation-name","stroke-dashoffset","stroke-dasharray","stroke-width","transform-origin",4,"ngSwitchCase"],["cx","50%","cy","50%",3,"stroke-dashoffset","stroke-dasharray","stroke-width","transform-origin",4,"ngSwitchCase"],["cx","50%","cy","50%"]],template:function(de,te){1&de&&(M.O4$(),M.TgZ(0,"svg",0,1),M.YNc(2,h,1,11,"circle",2),M.YNc(3,A,1,9,"circle",3),M.qZA()),2&de&&(M.Udp("width",te.diameter,"px")("height",te.diameter,"px"),M.Q6J("ngSwitch","indeterminate"===te.mode),M.uIk("viewBox",te._getViewBox()),M.xp6(2),M.Q6J("ngSwitchCase",!0),M.xp6(1),M.Q6J("ngSwitchCase",!1))},directives:[f.RF,f.n9],styles:[".mat-progress-spinner{display:block;position:relative;overflow:hidden}.mat-progress-spinner svg{position:absolute;transform:rotate(-90deg);top:0;left:0;transform-origin:center;overflow:visible}.mat-progress-spinner circle{fill:transparent;transition:stroke-dashoffset 225ms linear}._mat-animation-noopable.mat-progress-spinner circle{transition:none;animation:none}.cdk-high-contrast-active .mat-progress-spinner circle{stroke:CanvasText}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] svg{animation:mat-progress-spinner-linear-rotate 2000ms linear infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] svg{transition:none;animation:none}.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition-property:stroke;animation-duration:4000ms;animation-timing-function:cubic-bezier(0.35, 0, 0.25, 1);animation-iteration-count:infinite}._mat-animation-noopable.mat-progress-spinner.mat-progress-spinner-indeterminate-animation[mode=indeterminate] circle{transition:none;animation:none}@keyframes mat-progress-spinner-linear-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes mat-progress-spinner-stroke-rotate-100{0%{stroke-dashoffset:268.606171575px;transform:rotate(0)}12.5%{stroke-dashoffset:56.5486677px;transform:rotate(0)}12.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(72.5deg)}25%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(72.5deg)}25.0001%{stroke-dashoffset:268.606171575px;transform:rotate(270deg)}37.5%{stroke-dashoffset:56.5486677px;transform:rotate(270deg)}37.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(161.5deg)}50%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(161.5deg)}50.0001%{stroke-dashoffset:268.606171575px;transform:rotate(180deg)}62.5%{stroke-dashoffset:56.5486677px;transform:rotate(180deg)}62.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(251.5deg)}75%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(251.5deg)}75.0001%{stroke-dashoffset:268.606171575px;transform:rotate(90deg)}87.5%{stroke-dashoffset:56.5486677px;transform:rotate(90deg)}87.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(341.5deg)}100%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(341.5deg)}}\n"],encapsulation:2,changeDetection:0});let Y=(()=>{class ${}return $.\u0275fac=function(te){return new(te||$)},$.\u0275mod=M.oAB({type:$}),$.\u0275inj=M.cJS({imports:[[a.BQ,f.ez],a.BQ]}),$})()},9814:(Ve,j,p)=>{"use strict";p.d(j,{Fk:()=>ie,U0:()=>te,VQ:()=>Y});var t=p(5e3),e=p(508),f=p(3191),M=p(3075),a=p(6360),b=p(5664),d=p(449);const N=["input"],h=function(oe){return{enterDuration:oe}},A=["*"],w=new t.OlP("mat-radio-default-options",{providedIn:"root",factory:function D(){return{color:"accent"}}});let L=0;const k={provide:M.JU,useExisting:(0,t.Gpc)(()=>Y),multi:!0};class S{constructor(X,me){this.source=X,this.value=me}}const U=new t.OlP("MatRadioGroup");let Z=(()=>{class oe{constructor(me){this._changeDetector=me,this._value=null,this._name="mat-radio-group-"+L++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new t.vpe}get name(){return this._name}set name(me){this._name=me,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(me){this._labelPosition="before"===me?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(me){this._value!==me&&(this._value=me,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(me){this._selected=me,this.value=me?me.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(me){this._disabled=(0,f.Ig)(me),this._markRadiosForCheck()}get required(){return this._required}set required(me){this._required=(0,f.Ig)(me),this._markRadiosForCheck()}ngAfterContentInit(){this._isInitialized=!0}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(me=>{me.name=this.name,me._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(y=>{y.checked=this.value===y.value,y.checked&&(this._selected=y)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new S(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(me=>me._markForCheck())}writeValue(me){this.value=me,this._changeDetector.markForCheck()}registerOnChange(me){this._controlValueAccessorChangeFn=me}registerOnTouched(me){this.onTouched=me}setDisabledState(me){this.disabled=me,this._changeDetector.markForCheck()}}return oe.\u0275fac=function(me){return new(me||oe)(t.Y36(t.sBO))},oe.\u0275dir=t.lG2({type:oe,inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:"disabled",required:"required"},outputs:{change:"change"}}),oe})(),Y=(()=>{class oe extends Z{}return oe.\u0275fac=function(){let X;return function(y){return(X||(X=t.n5z(oe)))(y||oe)}}(),oe.\u0275dir=t.lG2({type:oe,selectors:[["mat-radio-group"]],contentQueries:function(me,y,i){if(1&me&&t.Suo(i,te,5),2&me){let r;t.iGM(r=t.CRH())&&(y._radios=r)}},hostAttrs:["role","radiogroup",1,"mat-radio-group"],exportAs:["matRadioGroup"],features:[t._Bn([k,{provide:U,useExisting:oe}]),t.qOj]}),oe})();class ne{constructor(X){this._elementRef=X}}const $=(0,e.Kr)((0,e.sb)(ne));let de=(()=>{class oe extends ${constructor(me,y,i,r,u,c,_,E){super(y),this._changeDetector=i,this._focusMonitor=r,this._radioDispatcher=u,this._providerOverride=_,this._uniqueId="mat-radio-"+ ++L,this.id=this._uniqueId,this.change=new t.vpe,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=me,this._noopAnimations="NoopAnimations"===c,E&&(this.tabIndex=(0,f.su)(E,0)),this._removeUniqueSelectionListener=u.listen((I,v)=>{I!==this.id&&v===this.name&&(this.checked=!1)})}get checked(){return this._checked}set checked(me){const y=(0,f.Ig)(me);this._checked!==y&&(this._checked=y,y&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!y&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),y&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(me){this._value!==me&&(this._value=me,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===me),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(me){this._labelPosition=me}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(me){this._setDisabled((0,f.Ig)(me))}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(me){this._required=(0,f.Ig)(me)}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(me){this._color=me}get inputId(){return`${this.id||this._uniqueId}-input`}focus(me,y){y?this._focusMonitor.focusVia(this._inputElement,y,me):this._inputElement.nativeElement.focus(me)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name)}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(me=>{!me&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new S(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(me){me.stopPropagation()}_onInputInteraction(me){if(me.stopPropagation(),!this.checked&&!this.disabled){const y=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),y&&this.radioGroup._emitChangeEvent())}}_setDisabled(me){this._disabled!==me&&(this._disabled=me,this._changeDetector.markForCheck())}_updateTabIndex(){var me;const y=this.radioGroup;let i;if(i=y&&y.selected&&!this.disabled?y.selected===this?this.tabIndex:-1:this.tabIndex,i!==this._previousTabIndex){const r=null===(me=this._inputElement)||void 0===me?void 0:me.nativeElement;r&&(r.setAttribute("tabindex",i+""),this._previousTabIndex=i)}}}return oe.\u0275fac=function(me){t.$Z()},oe.\u0275dir=t.lG2({type:oe,viewQuery:function(me,y){if(1&me&&t.Gf(N,5),2&me){let i;t.iGM(i=t.CRH())&&(y._inputElement=i.first)}},inputs:{id:"id",name:"name",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],checked:"checked",value:"value",labelPosition:"labelPosition",disabled:"disabled",required:"required",color:"color"},outputs:{change:"change"},features:[t.qOj]}),oe})(),te=(()=>{class oe extends de{constructor(me,y,i,r,u,c,_,E){super(me,y,i,r,u,c,_,E)}}return oe.\u0275fac=function(me){return new(me||oe)(t.Y36(U,8),t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(b.tE),t.Y36(d.A8),t.Y36(a.Qb,8),t.Y36(w,8),t.$8M("tabindex"))},oe.\u0275cmp=t.Xpm({type:oe,selectors:[["mat-radio-button"]],hostAttrs:[1,"mat-radio-button"],hostVars:17,hostBindings:function(me,y){1&me&&t.NdJ("focus",function(){return y._inputElement.nativeElement.focus()}),2&me&&(t.uIk("tabindex",null)("id",y.id)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),t.ekj("mat-radio-checked",y.checked)("mat-radio-disabled",y.disabled)("_mat-animation-noopable",y._noopAnimations)("mat-primary","primary"===y.color)("mat-accent","accent"===y.color)("mat-warn","warn"===y.color))},inputs:{disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matRadioButton"],features:[t.qOj],ngContentSelectors:A,decls:13,vars:19,consts:[[1,"mat-radio-label"],["label",""],[1,"mat-radio-container"],[1,"mat-radio-outer-circle"],[1,"mat-radio-inner-circle"],["type","radio",1,"mat-radio-input",3,"id","checked","disabled","required","change","click"],["input",""],["mat-ripple","",1,"mat-radio-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered","matRippleRadius","matRippleAnimation"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mat-radio-label-content"],[2,"display","none"]],template:function(me,y){if(1&me&&(t.F$t(),t.TgZ(0,"label",0,1)(2,"span",2),t._UZ(3,"span",3)(4,"span",4),t.TgZ(5,"input",5,6),t.NdJ("change",function(r){return y._onInputInteraction(r)})("click",function(r){return y._onInputClick(r)}),t.qZA(),t.TgZ(7,"span",7),t._UZ(8,"span",8),t.qZA()(),t.TgZ(9,"span",9)(10,"span",10),t._uU(11,"\xa0"),t.qZA(),t.Hsn(12),t.qZA()()),2&me){const i=t.MAs(1);t.uIk("for",y.inputId),t.xp6(5),t.Q6J("id",y.inputId)("checked",y.checked)("disabled",y.disabled)("required",y.required),t.uIk("name",y.name)("value",y.value)("aria-label",y.ariaLabel)("aria-labelledby",y.ariaLabelledby)("aria-describedby",y.ariaDescribedby),t.xp6(2),t.Q6J("matRippleTrigger",i)("matRippleDisabled",y._isRippleDisabled())("matRippleCentered",!0)("matRippleRadius",20)("matRippleAnimation",t.VKq(17,h,y._noopAnimations?0:150)),t.xp6(2),t.ekj("mat-radio-label-before","before"==y.labelPosition)}},directives:[e.wG],styles:[".mat-radio-button{display:inline-block;-webkit-tap-highlight-color:transparent;outline:0}.mat-radio-label{-webkit-user-select:none;user-select:none;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;vertical-align:middle;width:100%}.mat-radio-container{box-sizing:border-box;display:inline-block;position:relative;width:20px;height:20px;flex-shrink:0}.mat-radio-outer-circle{box-sizing:border-box;display:block;height:20px;left:0;position:absolute;top:0;transition:border-color ease 280ms;width:20px;border-width:2px;border-style:solid;border-radius:50%}._mat-animation-noopable .mat-radio-outer-circle{transition:none}.mat-radio-inner-circle{border-radius:50%;box-sizing:border-box;display:block;height:20px;left:0;position:absolute;top:0;opacity:0;transition:transform ease 280ms,background-color ease 280ms,opacity linear 1ms 280ms;width:20px;transform:scale(0.001);-webkit-print-color-adjust:exact;color-adjust:exact}.mat-radio-checked .mat-radio-inner-circle{transform:scale(0.5);opacity:1;transition:transform ease 280ms,background-color ease 280ms}.cdk-high-contrast-active .mat-radio-checked .mat-radio-inner-circle{border:solid 10px}._mat-animation-noopable .mat-radio-inner-circle{transition:none}.mat-radio-label-content{-webkit-user-select:auto;user-select:auto;display:inline-block;order:0;line-height:inherit;padding-left:8px;padding-right:0}[dir=rtl] .mat-radio-label-content{padding-right:8px;padding-left:0}.mat-radio-label-content.mat-radio-label-before{order:-1;padding-left:0;padding-right:8px}[dir=rtl] .mat-radio-label-content.mat-radio-label-before{padding-right:0;padding-left:8px}.mat-radio-disabled,.mat-radio-disabled .mat-radio-label{cursor:default}.mat-radio-button .mat-radio-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-radio-button .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple){opacity:.16}.mat-radio-persistent-ripple{width:100%;height:100%;transform:none;top:0;left:0}.mat-radio-container:hover .mat-radio-persistent-ripple{opacity:.04}.mat-radio-button:not(.mat-radio-disabled).cdk-keyboard-focused .mat-radio-persistent-ripple,.mat-radio-button:not(.mat-radio-disabled).cdk-program-focused .mat-radio-persistent-ripple{opacity:.12}.mat-radio-persistent-ripple,.mat-radio-disabled .mat-radio-container:hover .mat-radio-persistent-ripple{opacity:0}@media(hover: none){.mat-radio-container:hover .mat-radio-persistent-ripple{display:none}}.mat-radio-input{opacity:0;position:absolute;top:0;left:0;margin:0;width:100%;height:100%;cursor:inherit;z-index:-1}.cdk-high-contrast-active .mat-radio-button:not(.mat-radio-disabled).cdk-keyboard-focused .mat-radio-ripple,.cdk-high-contrast-active .mat-radio-button:not(.mat-radio-disabled).cdk-program-focused .mat-radio-ripple{outline:solid 3px}.cdk-high-contrast-active .mat-radio-disabled{opacity:.5}\n"],encapsulation:2,changeDetection:0}),oe})(),ie=(()=>{class oe{}return oe.\u0275fac=function(me){return new(me||oe)},oe.\u0275mod=t.oAB({type:oe}),oe.\u0275inj=t.cJS({imports:[[e.si,e.BQ],e.BQ]}),oe})()},4107:(Ve,j,p)=>{"use strict";p.d(j,{$L:()=>dt,LD:()=>le,gD:()=>Ae});var t=p(9776),e=p(9808),f=p(5e3),M=p(508),a=p(7322),b=p(5303),d=p(5664),N=p(3191),h=p(449),A=p(1159),w=p(3075),D=p(7579),L=p(9770),k=p(6451),S=p(8675),U=p(3900),Z=p(5698),Y=p(9300),ne=p(4004),$=p(1884),de=p(2722),te=p(1777),ie=p(226);const oe=["trigger"],X=["panel"];function me(Te,xe){if(1&Te&&(f.TgZ(0,"span",8),f._uU(1),f.qZA()),2&Te){const W=f.oxw();f.xp6(1),f.Oqu(W.placeholder)}}function y(Te,xe){if(1&Te&&(f.TgZ(0,"span",12),f._uU(1),f.qZA()),2&Te){const W=f.oxw(2);f.xp6(1),f.Oqu(W.triggerValue)}}function i(Te,xe){1&Te&&f.Hsn(0,0,["*ngSwitchCase","true"])}function r(Te,xe){if(1&Te&&(f.TgZ(0,"span",9),f.YNc(1,y,2,1,"span",10),f.YNc(2,i,1,0,"ng-content",11),f.qZA()),2&Te){const W=f.oxw();f.Q6J("ngSwitch",!!W.customTrigger),f.xp6(2),f.Q6J("ngSwitchCase",!0)}}function u(Te,xe){if(1&Te){const W=f.EpF();f.TgZ(0,"div",13)(1,"div",14,15),f.NdJ("@transformPanel.done",function(ue){return f.CHM(W),f.oxw()._panelDoneAnimatingStream.next(ue.toState)})("keydown",function(ue){return f.CHM(W),f.oxw()._handleKeydown(ue)}),f.Hsn(3,1),f.qZA()()}if(2&Te){const W=f.oxw();f.Q6J("@transformPanelWrap",void 0),f.xp6(1),f.Gre("mat-select-panel ",W._getPanelTheme(),""),f.Udp("transform-origin",W._transformOrigin)("font-size",W._triggerFontSize,"px"),f.Q6J("ngClass",W.panelClass)("@transformPanel",W.multiple?"showing-multiple":"showing"),f.uIk("id",W.id+"-panel")("aria-multiselectable",W.multiple)("aria-label",W.ariaLabel||null)("aria-labelledby",W._getPanelAriaLabelledby())}}const c=[[["mat-select-trigger"]],"*"],_=["mat-select-trigger","*"],E={transformPanelWrap:(0,te.X$)("transformPanelWrap",[(0,te.eR)("* => void",(0,te.IO)("@transformPanel",[(0,te.pV)()],{optional:!0}))]),transformPanel:(0,te.X$)("transformPanel",[(0,te.SB)("void",(0,te.oB)({transform:"scaleY(0.8)",minWidth:"100%",opacity:0})),(0,te.SB)("showing",(0,te.oB)({opacity:1,minWidth:"calc(100% + 32px)",transform:"scaleY(1)"})),(0,te.SB)("showing-multiple",(0,te.oB)({opacity:1,minWidth:"calc(100% + 64px)",transform:"scaleY(1)"})),(0,te.eR)("void => *",(0,te.jt)("120ms cubic-bezier(0, 0, 0.2, 1)")),(0,te.eR)("* => void",(0,te.jt)("100ms 25ms linear",(0,te.oB)({opacity:0})))])};let C=0;const B=256,Ne=new f.OlP("mat-select-scroll-strategy"),Q=new f.OlP("MAT_SELECT_CONFIG"),Ue={provide:Ne,deps:[t.aV],useFactory:function we(Te){return()=>Te.scrollStrategies.reposition()}};class ve{constructor(xe,W){this.source=xe,this.value=W}}const V=(0,M.Kr)((0,M.sb)((0,M.Id)((0,M.FD)(class{constructor(Te,xe,W,ee,ue){this._elementRef=Te,this._defaultErrorStateMatcher=xe,this._parentForm=W,this._parentFormGroup=ee,this.ngControl=ue}})))),De=new f.OlP("MatSelectTrigger");let dt=(()=>{class Te{}return Te.\u0275fac=function(W){return new(W||Te)},Te.\u0275dir=f.lG2({type:Te,selectors:[["mat-select-trigger"]],features:[f._Bn([{provide:De,useExisting:Te}])]}),Te})(),Ie=(()=>{class Te extends V{constructor(W,ee,ue,Ce,Le,ut,ht,It,ui,Wt,Gt,hi,xt,Nt){var Ct,et,yt;super(Le,Ce,ht,It,Wt),this._viewportRuler=W,this._changeDetectorRef=ee,this._ngZone=ue,this._dir=ut,this._parentFormField=ui,this._liveAnnouncer=xt,this._defaultOptions=Nt,this._panelOpen=!1,this._compareWith=(ei,Yt)=>ei===Yt,this._uid="mat-select-"+C++,this._triggerAriaLabelledBy=null,this._destroy=new D.x,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+C++,this._panelDoneAnimatingStream=new D.x,this._overlayPanelClass=(null===(Ct=this._defaultOptions)||void 0===Ct?void 0:Ct.overlayPanelClass)||"",this._focused=!1,this.controlType="mat-select",this._multiple=!1,this._disableOptionCentering=null!==(yt=null===(et=this._defaultOptions)||void 0===et?void 0:et.disableOptionCentering)&&void 0!==yt&&yt,this.ariaLabel="",this.optionSelectionChanges=(0,L.P)(()=>{const ei=this.options;return ei?ei.changes.pipe((0,S.O)(ei),(0,U.w)(()=>(0,k.T)(...ei.map(Yt=>Yt.onSelectionChange)))):this._ngZone.onStable.pipe((0,Z.q)(1),(0,U.w)(()=>this.optionSelectionChanges))}),this.openedChange=new f.vpe,this._openedStream=this.openedChange.pipe((0,Y.h)(ei=>ei),(0,ne.U)(()=>{})),this._closedStream=this.openedChange.pipe((0,Y.h)(ei=>!ei),(0,ne.U)(()=>{})),this.selectionChange=new f.vpe,this.valueChange=new f.vpe,this.ngControl&&(this.ngControl.valueAccessor=this),null!=(null==Nt?void 0:Nt.typeaheadDebounceInterval)&&(this._typeaheadDebounceInterval=Nt.typeaheadDebounceInterval),this._scrollStrategyFactory=hi,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(Gt)||0,this.id=this.id}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(W){this._placeholder=W,this.stateChanges.next()}get required(){var W,ee,ue,Ce;return null!==(Ce=null!==(W=this._required)&&void 0!==W?W:null===(ue=null===(ee=this.ngControl)||void 0===ee?void 0:ee.control)||void 0===ue?void 0:ue.hasValidator(w.kI.required))&&void 0!==Ce&&Ce}set required(W){this._required=(0,N.Ig)(W),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(W){this._multiple=(0,N.Ig)(W)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(W){this._disableOptionCentering=(0,N.Ig)(W)}get compareWith(){return this._compareWith}set compareWith(W){this._compareWith=W,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(W){this._assignValue(W)&&this._onChange(W)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(W){this._typeaheadDebounceInterval=(0,N.su)(W)}get id(){return this._id}set id(W){this._id=W||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new h.Ov(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,$.x)(),(0,de.R)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen))}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe((0,de.R)(this._destroy)).subscribe(W=>{W.added.forEach(ee=>ee.select()),W.removed.forEach(ee=>ee.deselect())}),this.options.changes.pipe((0,S.O)(null),(0,de.R)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const W=this._getTriggerAriaLabelledby(),ee=this.ngControl;if(W!==this._triggerAriaLabelledBy){const ue=this._elementRef.nativeElement;this._triggerAriaLabelledBy=W,W?ue.setAttribute("aria-labelledby",W):ue.removeAttribute("aria-labelledby")}ee&&(this._previousControl!==ee.control&&(void 0!==this._previousControl&&null!==ee.disabled&&ee.disabled!==this.disabled&&(this.disabled=ee.disabled),this._previousControl=ee.control),this.updateErrorState())}ngOnChanges(W){W.disabled&&this.stateChanges.next(),W.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck())}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(W){this._assignValue(W)}registerOnChange(W){this._onChange=W}registerOnTouched(W){this._onTouched=W}setDisabledState(W){this.disabled=W,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){var W,ee;return this.multiple?(null===(W=this._selectionModel)||void 0===W?void 0:W.selected)||[]:null===(ee=this._selectionModel)||void 0===ee?void 0:ee.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const W=this._selectionModel.selected.map(ee=>ee.viewValue);return this._isRtl()&&W.reverse(),W.join(", ")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(W){this.disabled||(this.panelOpen?this._handleOpenKeydown(W):this._handleClosedKeydown(W))}_handleClosedKeydown(W){const ee=W.keyCode,ue=ee===A.JH||ee===A.LH||ee===A.oh||ee===A.SV,Ce=ee===A.K5||ee===A.L_,Le=this._keyManager;if(!Le.isTyping()&&Ce&&!(0,A.Vb)(W)||(this.multiple||W.altKey)&&ue)W.preventDefault(),this.open();else if(!this.multiple){const ut=this.selected;Le.onKeydown(W);const ht=this.selected;ht&&ut!==ht&&this._liveAnnouncer.announce(ht.viewValue,1e4)}}_handleOpenKeydown(W){const ee=this._keyManager,ue=W.keyCode,Ce=ue===A.JH||ue===A.LH,Le=ee.isTyping();if(Ce&&W.altKey)W.preventDefault(),this.close();else if(Le||ue!==A.K5&&ue!==A.L_||!ee.activeItem||(0,A.Vb)(W))if(!Le&&this._multiple&&ue===A.A&&W.ctrlKey){W.preventDefault();const ut=this.options.some(ht=>!ht.disabled&&!ht.selected);this.options.forEach(ht=>{ht.disabled||(ut?ht.select():ht.deselect())})}else{const ut=ee.activeItemIndex;ee.onKeydown(W),this._multiple&&Ce&&W.shiftKey&&ee.activeItem&&ee.activeItemIndex!==ut&&ee.activeItem._selectViaInteraction()}else W.preventDefault(),ee.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,Z.q)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(W){if(this._selectionModel.selected.forEach(ee=>ee.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&W)Array.isArray(W),W.forEach(ee=>this._selectOptionByValue(ee)),this._sortValues();else{const ee=this._selectOptionByValue(W);ee?this._keyManager.updateActiveItem(ee):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(W){const ee=this.options.find(ue=>{if(this._selectionModel.isSelected(ue))return!1;try{return null!=ue.value&&this._compareWith(ue.value,W)}catch(Ce){return!1}});return ee&&this._selectionModel.select(ee),ee}_assignValue(W){return!!(W!==this._value||this._multiple&&Array.isArray(W))&&(this.options&&this._setSelectionByValue(W),this._value=W,!0)}_initKeyManager(){this._keyManager=new d.s1(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withAllowedModifierKeys(["shiftKey"]),this._keyManager.tabOut.pipe((0,de.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.pipe((0,de.R)(this._destroy)).subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const W=(0,k.T)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,de.R)(W)).subscribe(ee=>{this._onSelect(ee.source,ee.isUserInput),ee.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,k.T)(...this.options.map(ee=>ee._stateChanges)).pipe((0,de.R)(W)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}_onSelect(W,ee){const ue=this._selectionModel.isSelected(W);null!=W.value||this._multiple?(ue!==W.selected&&(W.selected?this._selectionModel.select(W):this._selectionModel.deselect(W)),ee&&this._keyManager.setActiveItem(W),this.multiple&&(this._sortValues(),ee&&this.focus())):(W.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(W.value)),ue!==this._selectionModel.isSelected(W)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const W=this.options.toArray();this._selectionModel.sort((ee,ue)=>this.sortComparator?this.sortComparator(ee,ue,W):W.indexOf(ee)-W.indexOf(ue)),this.stateChanges.next()}}_propagateChanges(W){let ee=null;ee=this.multiple?this.selected.map(ue=>ue.value):this.selected?this.selected.value:W,this._value=ee,this.valueChange.emit(ee),this._onChange(ee),this.selectionChange.emit(this._getChangeEvent(ee)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_canOpen(){var W;return!this._panelOpen&&!this.disabled&&(null===(W=this.options)||void 0===W?void 0:W.length)>0}focus(W){this._elementRef.nativeElement.focus(W)}_getPanelAriaLabelledby(){var W;if(this.ariaLabel)return null;const ee=null===(W=this._parentFormField)||void 0===W?void 0:W.getLabelId();return this.ariaLabelledby?(ee?ee+" ":"")+this.ariaLabelledby:ee}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){var W;if(this.ariaLabel)return null;const ee=null===(W=this._parentFormField)||void 0===W?void 0:W.getLabelId();let ue=(ee?ee+" ":"")+this._valueId;return this.ariaLabelledby&&(ue+=" "+this.ariaLabelledby),ue}_panelDoneAnimating(W){this.openedChange.emit(W)}setDescribedByIds(W){this._ariaDescribedby=W.join(" ")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty||this._focused&&!!this._placeholder}}return Te.\u0275fac=function(W){return new(W||Te)(f.Y36(b.rL),f.Y36(f.sBO),f.Y36(f.R0b),f.Y36(M.rD),f.Y36(f.SBq),f.Y36(ie.Is,8),f.Y36(w.F,8),f.Y36(w.sg,8),f.Y36(a.G_,8),f.Y36(w.a5,10),f.$8M("tabindex"),f.Y36(Ne),f.Y36(d.Kd),f.Y36(Q,8))},Te.\u0275dir=f.lG2({type:Te,viewQuery:function(W,ee){if(1&W&&(f.Gf(oe,5),f.Gf(X,5),f.Gf(t.pI,5)),2&W){let ue;f.iGM(ue=f.CRH())&&(ee.trigger=ue.first),f.iGM(ue=f.CRH())&&(ee.panel=ue.first),f.iGM(ue=f.CRH())&&(ee._overlayDir=ue.first)}},inputs:{panelClass:"panelClass",placeholder:"placeholder",required:"required",multiple:"multiple",disableOptionCentering:"disableOptionCentering",compareWith:"compareWith",value:"value",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:"typeaheadDebounceInterval",sortComparator:"sortComparator",id:"id"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},features:[f.qOj,f.TTD]}),Te})(),Ae=(()=>{class Te extends Ie{constructor(){super(...arguments),this._scrollTop=0,this._triggerFontSize=0,this._transformOrigin="top",this._offsetY=0,this._positions=[{originX:"start",originY:"top",overlayX:"start",overlayY:"top"},{originX:"start",originY:"bottom",overlayX:"start",overlayY:"bottom"}]}_calculateOverlayScroll(W,ee,ue){const Ce=this._getItemHeight();return Math.min(Math.max(0,Ce*W-ee+Ce/2),ue)}ngOnInit(){super.ngOnInit(),this._viewportRuler.change().pipe((0,de.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._changeDetectorRef.markForCheck())})}open(){super._canOpen()&&(super.open(),this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||"0"),this._calculateOverlayPosition(),this._ngZone.onStable.pipe((0,Z.q)(1)).subscribe(()=>{this._triggerFontSize&&this._overlayDir.overlayRef&&this._overlayDir.overlayRef.overlayElement&&(this._overlayDir.overlayRef.overlayElement.style.fontSize=`${this._triggerFontSize}px`)}))}_scrollOptionIntoView(W){const ee=(0,M.CB)(W,this.options,this.optionGroups),ue=this._getItemHeight();this.panel.nativeElement.scrollTop=0===W&&1===ee?0:(0,M.jH)((W+ee)*ue,ue,this.panel.nativeElement.scrollTop,B)}_positioningSettled(){this._calculateOverlayOffsetX(),this.panel.nativeElement.scrollTop=this._scrollTop}_panelDoneAnimating(W){this.panelOpen?this._scrollTop=0:(this._overlayDir.offsetX=0,this._changeDetectorRef.markForCheck()),super._panelDoneAnimating(W)}_getChangeEvent(W){return new ve(this,W)}_calculateOverlayOffsetX(){const W=this._overlayDir.overlayRef.overlayElement.getBoundingClientRect(),ee=this._viewportRuler.getViewportSize(),ue=this._isRtl(),Ce=this.multiple?56:32;let Le;if(this.multiple)Le=40;else if(this.disableOptionCentering)Le=16;else{let It=this._selectionModel.selected[0]||this.options.first;Le=It&&It.group?32:16}ue||(Le*=-1);const ut=0-(W.left+Le-(ue?Ce:0)),ht=W.right+Le-ee.width+(ue?0:Ce);ut>0?Le+=ut+8:ht>0&&(Le-=ht+8),this._overlayDir.offsetX=Math.round(Le),this._overlayDir.overlayRef.updatePosition()}_calculateOverlayOffsetY(W,ee,ue){const Ce=this._getItemHeight(),Le=(Ce-this._triggerRect.height)/2,ut=Math.floor(B/Ce);let ht;return this.disableOptionCentering?0:(ht=0===this._scrollTop?W*Ce:this._scrollTop===ue?(W-(this._getItemCount()-ut))*Ce+(Ce-(this._getItemCount()*Ce-B)%Ce):ee-Ce/2,Math.round(-1*ht-Le))}_checkOverlayWithinViewport(W){const ee=this._getItemHeight(),ue=this._viewportRuler.getViewportSize(),Ce=this._triggerRect.top-8,Le=ue.height-this._triggerRect.bottom-8,ut=Math.abs(this._offsetY),It=Math.min(this._getItemCount()*ee,B)-ut-this._triggerRect.height;It>Le?this._adjustPanelUp(It,Le):ut>Ce?this._adjustPanelDown(ut,Ce,W):this._transformOrigin=this._getOriginBasedOnOption()}_adjustPanelUp(W,ee){const ue=Math.round(W-ee);this._scrollTop-=ue,this._offsetY-=ue,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin="50% bottom 0px")}_adjustPanelDown(W,ee,ue){const Ce=Math.round(W-ee);if(this._scrollTop+=Ce,this._offsetY+=Ce,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=ue)return this._scrollTop=ue,this._offsetY=0,void(this._transformOrigin="50% top 0px")}_calculateOverlayPosition(){const W=this._getItemHeight(),ee=this._getItemCount(),ue=Math.min(ee*W,B),Le=ee*W-ue;let ut;ut=this.empty?0:Math.max(this.options.toArray().indexOf(this._selectionModel.selected[0]),0),ut+=(0,M.CB)(ut,this.options,this.optionGroups);const ht=ue/2;this._scrollTop=this._calculateOverlayScroll(ut,ht,Le),this._offsetY=this._calculateOverlayOffsetY(ut,ht,Le),this._checkOverlayWithinViewport(Le)}_getOriginBasedOnOption(){const W=this._getItemHeight(),ee=(W-this._triggerRect.height)/2;return`50% ${Math.abs(this._offsetY)-ee+W/2}px 0px`}_getItemHeight(){return 3*this._triggerFontSize}_getItemCount(){return this.options.length+this.optionGroups.length}}return Te.\u0275fac=function(){let xe;return function(ee){return(xe||(xe=f.n5z(Te)))(ee||Te)}}(),Te.\u0275cmp=f.Xpm({type:Te,selectors:[["mat-select"]],contentQueries:function(W,ee,ue){if(1&W&&(f.Suo(ue,De,5),f.Suo(ue,M.ey,5),f.Suo(ue,M.K7,5)),2&W){let Ce;f.iGM(Ce=f.CRH())&&(ee.customTrigger=Ce.first),f.iGM(Ce=f.CRH())&&(ee.options=Ce),f.iGM(Ce=f.CRH())&&(ee.optionGroups=Ce)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","true",1,"mat-select"],hostVars:20,hostBindings:function(W,ee){1&W&&f.NdJ("keydown",function(Ce){return ee._handleKeydown(Ce)})("focus",function(){return ee._onFocus()})("blur",function(){return ee._onBlur()}),2&W&&(f.uIk("id",ee.id)("tabindex",ee.tabIndex)("aria-controls",ee.panelOpen?ee.id+"-panel":null)("aria-expanded",ee.panelOpen)("aria-label",ee.ariaLabel||null)("aria-required",ee.required.toString())("aria-disabled",ee.disabled.toString())("aria-invalid",ee.errorState)("aria-describedby",ee._ariaDescribedby||null)("aria-activedescendant",ee._getAriaActiveDescendant()),f.ekj("mat-select-disabled",ee.disabled)("mat-select-invalid",ee.errorState)("mat-select-required",ee.required)("mat-select-empty",ee.empty)("mat-select-multiple",ee.multiple))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matSelect"],features:[f._Bn([{provide:a.Eo,useExisting:Te},{provide:M.HF,useExisting:Te}]),f.qOj],ngContentSelectors:_,decls:9,vars:12,consts:[["cdk-overlay-origin","",1,"mat-select-trigger",3,"click"],["origin","cdkOverlayOrigin","trigger",""],[1,"mat-select-value",3,"ngSwitch"],["class","mat-select-placeholder mat-select-min-line",4,"ngSwitchCase"],["class","mat-select-value-text",3,"ngSwitch",4,"ngSwitchCase"],[1,"mat-select-arrow-wrapper"],[1,"mat-select-arrow"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayMinWidth","cdkConnectedOverlayOffsetY","backdropClick","attach","detach"],[1,"mat-select-placeholder","mat-select-min-line"],[1,"mat-select-value-text",3,"ngSwitch"],["class","mat-select-min-line",4,"ngSwitchDefault"],[4,"ngSwitchCase"],[1,"mat-select-min-line"],[1,"mat-select-panel-wrap"],["role","listbox","tabindex","-1",3,"ngClass","keydown"],["panel",""]],template:function(W,ee){if(1&W&&(f.F$t(c),f.TgZ(0,"div",0,1),f.NdJ("click",function(){return ee.toggle()}),f.TgZ(3,"div",2),f.YNc(4,me,2,1,"span",3),f.YNc(5,r,3,2,"span",4),f.qZA(),f.TgZ(6,"div",5),f._UZ(7,"div",6),f.qZA()(),f.YNc(8,u,4,14,"ng-template",7),f.NdJ("backdropClick",function(){return ee.close()})("attach",function(){return ee._onAttached()})("detach",function(){return ee.close()})),2&W){const ue=f.MAs(1);f.uIk("aria-owns",ee.panelOpen?ee.id+"-panel":null),f.xp6(3),f.Q6J("ngSwitch",ee.empty),f.uIk("id",ee._valueId),f.xp6(1),f.Q6J("ngSwitchCase",!0),f.xp6(1),f.Q6J("ngSwitchCase",!1),f.xp6(3),f.Q6J("cdkConnectedOverlayPanelClass",ee._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",ee._scrollStrategy)("cdkConnectedOverlayOrigin",ue)("cdkConnectedOverlayOpen",ee.panelOpen)("cdkConnectedOverlayPositions",ee._positions)("cdkConnectedOverlayMinWidth",null==ee._triggerRect?null:ee._triggerRect.width)("cdkConnectedOverlayOffsetY",ee._offsetY)}},directives:[t.xu,e.RF,e.n9,e.ED,t.pI,e.mk],styles:['.mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{height:16px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-form-field.mat-focused .mat-select-arrow{transform:translateX(0)}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px;outline:0}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}.mat-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}\n'],encapsulation:2,data:{animation:[E.transformPanelWrap,E.transformPanel]},changeDetection:0}),Te})(),le=(()=>{class Te{}return Te.\u0275fac=function(W){return new(W||Te)},Te.\u0275mod=f.oAB({type:Te}),Te.\u0275inj=f.cJS({providers:[Ue],imports:[[e.ez,t.U8,M.Ng,M.BQ],b.ZD,a.lN,M.Ng,M.BQ]}),Te})()},2638:(Ve,j,p)=>{"use strict";p.d(j,{JX:()=>_e,Rh:()=>he,SJ:()=>we,TM:()=>Ne});var t=p(5303),e=p(9808),f=p(5e3),M=p(508),a=p(3191),b=p(1159),d=p(7579),N=p(4968),h=p(6451),A=p(9300),w=p(4004),D=p(9718),L=p(2722),k=p(1884),S=p(5698),U=p(8675),Z=p(8372),Y=p(1777),ne=p(6360),$=p(5664),de=p(925),te=p(226);const ie=["*"],oe=["content"];function X(Q,Ue){if(1&Q){const ve=f.EpF();f.TgZ(0,"div",2),f.NdJ("click",function(){return f.CHM(ve),f.oxw()._onBackdropClicked()}),f.qZA()}if(2&Q){const ve=f.oxw();f.ekj("mat-drawer-shown",ve._isShowingBackdrop())}}function me(Q,Ue){1&Q&&(f.TgZ(0,"mat-drawer-content"),f.Hsn(1,2),f.qZA())}const y=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],i=["mat-drawer","mat-drawer-content","*"];function r(Q,Ue){if(1&Q){const ve=f.EpF();f.TgZ(0,"div",2),f.NdJ("click",function(){return f.CHM(ve),f.oxw()._onBackdropClicked()}),f.qZA()}if(2&Q){const ve=f.oxw();f.ekj("mat-drawer-shown",ve._isShowingBackdrop())}}function u(Q,Ue){1&Q&&(f.TgZ(0,"mat-sidenav-content"),f.Hsn(1,2),f.qZA())}const c=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],_=["mat-sidenav","mat-sidenav-content","*"],I={transformDrawer:(0,Y.X$)("transform",[(0,Y.SB)("open, open-instant",(0,Y.oB)({transform:"none",visibility:"visible"})),(0,Y.SB)("void",(0,Y.oB)({"box-shadow":"none",visibility:"hidden"})),(0,Y.eR)("void => open-instant",(0,Y.jt)("0ms")),(0,Y.eR)("void <=> open, open-instant => void",(0,Y.jt)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},n=new f.OlP("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function B(){return!1}}),C=new f.OlP("MAT_DRAWER_CONTAINER");let P=(()=>{class Q extends t.PQ{constructor(ve,V,De,dt,Ie){super(De,dt,Ie),this._changeDetectorRef=ve,this._container=V}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}}return Q.\u0275fac=function(ve){return new(ve||Q)(f.Y36(f.sBO),f.Y36((0,f.Gpc)(()=>q)),f.Y36(f.SBq),f.Y36(t.mF),f.Y36(f.R0b))},Q.\u0275cmp=f.Xpm({type:Q,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:4,hostBindings:function(ve,V){2&ve&&f.Udp("margin-left",V._container._contentMargins.left,"px")("margin-right",V._container._contentMargins.right,"px")},features:[f._Bn([{provide:t.PQ,useExisting:Q}]),f.qOj],ngContentSelectors:ie,decls:1,vars:0,template:function(ve,V){1&ve&&(f.F$t(),f.Hsn(0))},encapsulation:2,changeDetection:0}),Q})(),H=(()=>{class Q{constructor(ve,V,De,dt,Ie,Ae,le,Te){this._elementRef=ve,this._focusTrapFactory=V,this._focusMonitor=De,this._platform=dt,this._ngZone=Ie,this._interactivityChecker=Ae,this._doc=le,this._container=Te,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new d.x,this._animationEnd=new d.x,this._animationState="void",this.openedChange=new f.vpe(!0),this._openedStream=this.openedChange.pipe((0,A.h)(xe=>xe),(0,w.U)(()=>{})),this.openedStart=this._animationStarted.pipe((0,A.h)(xe=>xe.fromState!==xe.toState&&0===xe.toState.indexOf("open")),(0,D.h)(void 0)),this._closedStream=this.openedChange.pipe((0,A.h)(xe=>!xe),(0,w.U)(()=>{})),this.closedStart=this._animationStarted.pipe((0,A.h)(xe=>xe.fromState!==xe.toState&&"void"===xe.toState),(0,D.h)(void 0)),this._destroyed=new d.x,this.onPositionChanged=new f.vpe,this._modeChanged=new d.x,this.openedChange.subscribe(xe=>{xe?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,N.R)(this._elementRef.nativeElement,"keydown").pipe((0,A.h)(xe=>xe.keyCode===b.hY&&!this.disableClose&&!(0,b.Vb)(xe)),(0,L.R)(this._destroyed)).subscribe(xe=>this._ngZone.run(()=>{this.close(),xe.stopPropagation(),xe.preventDefault()}))}),this._animationEnd.pipe((0,k.x)((xe,W)=>xe.fromState===W.fromState&&xe.toState===W.toState)).subscribe(xe=>{const{fromState:W,toState:ee}=xe;(0===ee.indexOf("open")&&"void"===W||"void"===ee&&0===W.indexOf("open"))&&this.openedChange.emit(this._opened)})}get position(){return this._position}set position(ve){(ve="end"===ve?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(ve),this._position=ve,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(ve){this._mode=ve,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(ve){this._disableClose=(0,a.Ig)(ve)}get autoFocus(){const ve=this._autoFocus;return null==ve?"side"===this.mode?"dialog":"first-tabbable":ve}set autoFocus(ve){("true"===ve||"false"===ve||null==ve)&&(ve=(0,a.Ig)(ve)),this._autoFocus=ve}get opened(){return this._opened}set opened(ve){this.toggle((0,a.Ig)(ve))}_forceFocus(ve,V){this._interactivityChecker.isFocusable(ve)||(ve.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const De=()=>{ve.removeEventListener("blur",De),ve.removeEventListener("mousedown",De),ve.removeAttribute("tabindex")};ve.addEventListener("blur",De),ve.addEventListener("mousedown",De)})),ve.focus(V)}_focusByCssSelector(ve,V){let De=this._elementRef.nativeElement.querySelector(ve);De&&this._forceFocus(De,V)}_takeFocus(){if(!this._focusTrap)return;const ve=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(V=>{!V&&"function"==typeof this._elementRef.nativeElement.focus&&ve.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(ve){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,ve):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const ve=this._doc.activeElement;return!!ve&&this._elementRef.nativeElement.contains(ve)}ngAfterViewInit(){this._isAttached=!0,this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState(),"end"===this._position&&this._updatePositionInParent("end")}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){var ve;this._focusTrap&&this._focusTrap.destroy(),null===(ve=this._anchor)||void 0===ve||ve.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(ve){return this.toggle(!0,ve)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(ve=!this.opened,V){ve&&V&&(this._openedVia=V);const De=this._setOpen(ve,!ve&&this._isFocusWithinDrawer(),this._openedVia||"program");return ve||(this._openedVia=null),De}_setOpen(ve,V,De){return this._opened=ve,ve?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",V&&this._restoreFocus(De)),this._updateFocusTrapState(),new Promise(dt=>{this.openedChange.pipe((0,S.q)(1)).subscribe(Ie=>dt(Ie?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&"side"!==this.mode)}_updatePositionInParent(ve){const V=this._elementRef.nativeElement,De=V.parentNode;"end"===ve?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),De.insertBefore(this._anchor,V)),De.appendChild(V)):this._anchor&&this._anchor.parentNode.insertBefore(V,this._anchor)}}return Q.\u0275fac=function(ve){return new(ve||Q)(f.Y36(f.SBq),f.Y36($.qV),f.Y36($.tE),f.Y36(de.t4),f.Y36(f.R0b),f.Y36($.ic),f.Y36(e.K0,8),f.Y36(C,8))},Q.\u0275cmp=f.Xpm({type:Q,selectors:[["mat-drawer"]],viewQuery:function(ve,V){if(1&ve&&f.Gf(oe,5),2&ve){let De;f.iGM(De=f.CRH())&&(V._content=De.first)}},hostAttrs:["tabIndex","-1",1,"mat-drawer"],hostVars:12,hostBindings:function(ve,V){1&ve&&f.WFA("@transform.start",function(dt){return V._animationStarted.next(dt)})("@transform.done",function(dt){return V._animationEnd.next(dt)}),2&ve&&(f.uIk("align",null),f.d8E("@transform",V._animationState),f.ekj("mat-drawer-end","end"===V.position)("mat-drawer-over","over"===V.mode)("mat-drawer-push","push"===V.mode)("mat-drawer-side","side"===V.mode)("mat-drawer-opened",V.opened))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],ngContentSelectors:ie,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(ve,V){1&ve&&(f.F$t(),f.TgZ(0,"div",0,1),f.Hsn(2),f.qZA())},directives:[t.PQ],encapsulation:2,data:{animation:[I.transformDrawer]},changeDetection:0}),Q})(),q=(()=>{class Q{constructor(ve,V,De,dt,Ie,Ae=!1,le){this._dir=ve,this._element=V,this._ngZone=De,this._changeDetectorRef=dt,this._animationMode=le,this._drawers=new f.n_E,this.backdropClick=new f.vpe,this._destroyed=new d.x,this._doCheckSubject=new d.x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new d.x,ve&&ve.change.pipe((0,L.R)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),Ie.change().pipe((0,L.R)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=Ae}get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(ve){this._autosize=(0,a.Ig)(ve)}get hasBackdrop(){return null==this._backdropOverride?!this._start||"side"!==this._start.mode||!this._end||"side"!==this._end.mode:this._backdropOverride}set hasBackdrop(ve){this._backdropOverride=null==ve?null:(0,a.Ig)(ve)}get scrollable(){return this._userContent||this._content}ngAfterContentInit(){this._allDrawers.changes.pipe((0,U.O)(this._allDrawers),(0,L.R)(this._destroyed)).subscribe(ve=>{this._drawers.reset(ve.filter(V=>!V._container||V._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,U.O)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(ve=>{this._watchDrawerToggle(ve),this._watchDrawerPosition(ve),this._watchDrawerMode(ve)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,Z.b)(10),(0,L.R)(this._destroyed)).subscribe(()=>this.updateContentMargins())})}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(ve=>ve.open())}close(){this._drawers.forEach(ve=>ve.close())}updateContentMargins(){let ve=0,V=0;if(this._left&&this._left.opened)if("side"==this._left.mode)ve+=this._left._getWidth();else if("push"==this._left.mode){const De=this._left._getWidth();ve+=De,V-=De}if(this._right&&this._right.opened)if("side"==this._right.mode)V+=this._right._getWidth();else if("push"==this._right.mode){const De=this._right._getWidth();V+=De,ve-=De}ve=ve||null,V=V||null,(ve!==this._contentMargins.left||V!==this._contentMargins.right)&&(this._contentMargins={left:ve,right:V},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(ve){ve._animationStarted.pipe((0,A.h)(V=>V.fromState!==V.toState),(0,L.R)(this._drawers.changes)).subscribe(V=>{"open-instant"!==V.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==ve.mode&&ve.openedChange.pipe((0,L.R)(this._drawers.changes)).subscribe(()=>this._setContainerClass(ve.opened))}_watchDrawerPosition(ve){!ve||ve.onPositionChanged.pipe((0,L.R)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,S.q)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(ve){ve&&ve._modeChanged.pipe((0,L.R)((0,h.T)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(ve){const V=this._element.nativeElement.classList,De="mat-drawer-container-has-open";ve?V.add(De):V.remove(De)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(ve=>{"end"==ve.position?this._end=ve:this._start=ve}),this._right=this._left=null,this._dir&&"rtl"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&"over"!=this._start.mode||this._isDrawerOpen(this._end)&&"over"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(ve=>ve&&!ve.disableClose&&this._canHaveBackdrop(ve)).forEach(ve=>ve._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}_canHaveBackdrop(ve){return"side"!==ve.mode||!!this._backdropOverride}_isDrawerOpen(ve){return null!=ve&&ve.opened}}return Q.\u0275fac=function(ve){return new(ve||Q)(f.Y36(te.Is,8),f.Y36(f.SBq),f.Y36(f.R0b),f.Y36(f.sBO),f.Y36(t.rL),f.Y36(n),f.Y36(ne.Qb,8))},Q.\u0275cmp=f.Xpm({type:Q,selectors:[["mat-drawer-container"]],contentQueries:function(ve,V,De){if(1&ve&&(f.Suo(De,P,5),f.Suo(De,H,5)),2&ve){let dt;f.iGM(dt=f.CRH())&&(V._content=dt.first),f.iGM(dt=f.CRH())&&(V._allDrawers=dt)}},viewQuery:function(ve,V){if(1&ve&&f.Gf(P,5),2&ve){let De;f.iGM(De=f.CRH())&&(V._userContent=De.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(ve,V){2&ve&&f.ekj("mat-drawer-container-explicit-backdrop",V._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[f._Bn([{provide:C,useExisting:Q}])],ngContentSelectors:i,decls:4,vars:2,consts:[["class","mat-drawer-backdrop",3,"mat-drawer-shown","click",4,"ngIf"],[4,"ngIf"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ve,V){1&ve&&(f.F$t(y),f.YNc(0,X,1,2,"div",0),f.Hsn(1),f.Hsn(2,1),f.YNc(3,me,2,0,"mat-drawer-content",1)),2&ve&&(f.Q6J("ngIf",V.hasBackdrop),f.xp6(3),f.Q6J("ngIf",!V._content))},directives:[P,e.O5],styles:['.mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\n'],encapsulation:2,changeDetection:0}),Q})(),he=(()=>{class Q extends P{constructor(ve,V,De,dt,Ie){super(ve,V,De,dt,Ie)}}return Q.\u0275fac=function(ve){return new(ve||Q)(f.Y36(f.sBO),f.Y36((0,f.Gpc)(()=>Ne)),f.Y36(f.SBq),f.Y36(t.mF),f.Y36(f.R0b))},Q.\u0275cmp=f.Xpm({type:Q,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(ve,V){2&ve&&f.Udp("margin-left",V._container._contentMargins.left,"px")("margin-right",V._container._contentMargins.right,"px")},features:[f._Bn([{provide:t.PQ,useExisting:Q}]),f.qOj],ngContentSelectors:ie,decls:1,vars:0,template:function(ve,V){1&ve&&(f.F$t(),f.Hsn(0))},encapsulation:2,changeDetection:0}),Q})(),_e=(()=>{class Q extends H{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(ve){this._fixedInViewport=(0,a.Ig)(ve)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(ve){this._fixedTopGap=(0,a.su)(ve)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(ve){this._fixedBottomGap=(0,a.su)(ve)}}return Q.\u0275fac=function(){let Ue;return function(V){return(Ue||(Ue=f.n5z(Q)))(V||Q)}}(),Q.\u0275cmp=f.Xpm({type:Q,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(ve,V){2&ve&&(f.uIk("align",null),f.Udp("top",V.fixedInViewport?V.fixedTopGap:null,"px")("bottom",V.fixedInViewport?V.fixedBottomGap:null,"px"),f.ekj("mat-drawer-end","end"===V.position)("mat-drawer-over","over"===V.mode)("mat-drawer-push","push"===V.mode)("mat-drawer-side","side"===V.mode)("mat-drawer-opened",V.opened)("mat-sidenav-fixed",V.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[f.qOj],ngContentSelectors:ie,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(ve,V){1&ve&&(f.F$t(),f.TgZ(0,"div",0,1),f.Hsn(2),f.qZA())},directives:[t.PQ],encapsulation:2,data:{animation:[I.transformDrawer]},changeDetection:0}),Q})(),Ne=(()=>{class Q extends q{}return Q.\u0275fac=function(){let Ue;return function(V){return(Ue||(Ue=f.n5z(Q)))(V||Q)}}(),Q.\u0275cmp=f.Xpm({type:Q,selectors:[["mat-sidenav-container"]],contentQueries:function(ve,V,De){if(1&ve&&(f.Suo(De,he,5),f.Suo(De,_e,5)),2&ve){let dt;f.iGM(dt=f.CRH())&&(V._content=dt.first),f.iGM(dt=f.CRH())&&(V._allDrawers=dt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(ve,V){2&ve&&f.ekj("mat-drawer-container-explicit-backdrop",V._backdropOverride)},exportAs:["matSidenavContainer"],features:[f._Bn([{provide:C,useExisting:Q}]),f.qOj],ngContentSelectors:_,decls:4,vars:2,consts:[["class","mat-drawer-backdrop",3,"mat-drawer-shown","click",4,"ngIf"],[4,"ngIf"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ve,V){1&ve&&(f.F$t(c),f.YNc(0,r,1,2,"div",0),f.Hsn(1),f.Hsn(2,1),f.YNc(3,u,2,0,"mat-sidenav-content",1)),2&ve&&(f.Q6J("ngIf",V.hasBackdrop),f.xp6(3),f.Q6J("ngIf",!V._content))},directives:[he,e.O5],styles:['.mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\n'],encapsulation:2,changeDetection:0}),Q})(),we=(()=>{class Q{}return Q.\u0275fac=function(ve){return new(ve||Q)},Q.\u0275mod=f.oAB({type:Q}),Q.\u0275inj=f.cJS({imports:[[e.ez,M.BQ,t.ZD],t.ZD,M.BQ]}),Q})()},2368:(Ve,j,p)=>{"use strict";p.d(j,{Rr:()=>Y,rP:()=>te});var t=p(7144),e=p(5e3),f=p(508),M=p(3191),a=p(3075),b=p(6360),d=p(5664);const N=["thumbContainer"],h=["toggleBar"],A=["input"],w=function(ie){return{enterDuration:ie}},D=["*"],L=new e.OlP("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1})});let k=0;const S={provide:a.JU,useExisting:(0,e.Gpc)(()=>Y),multi:!0};class U{constructor(oe,X){this.source=oe,this.checked=X}}const Z=(0,f.sb)((0,f.pj)((0,f.Kr)((0,f.Id)(class{constructor(ie){this._elementRef=ie}}))));let Y=(()=>{class ie extends Z{constructor(X,me,y,i,r,u){super(X),this._focusMonitor=me,this._changeDetectorRef=y,this.defaults=r,this._onChange=c=>{},this._onTouched=()=>{},this._uniqueId="mat-slide-toggle-"+ ++k,this._required=!1,this._checked=!1,this.name=null,this.id=this._uniqueId,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.change=new e.vpe,this.toggleChange=new e.vpe,this.tabIndex=parseInt(i)||0,this.color=this.defaultColor=r.color||"accent",this._noopAnimations="NoopAnimations"===u}get required(){return this._required}set required(X){this._required=(0,M.Ig)(X)}get checked(){return this._checked}set checked(X){this._checked=(0,M.Ig)(X),this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(X=>{X||Promise.resolve().then(()=>this._onTouched())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}_onChangeEvent(X){X.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}_onInputClick(X){X.stopPropagation()}writeValue(X){this.checked=!!X}registerOnChange(X){this._onChange=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this.disabled=X,this._changeDetectorRef.markForCheck()}focus(X,me){me?this._focusMonitor.focusVia(this._inputElement,me,X):this._inputElement.nativeElement.focus(X)}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(new U(this,this.checked))}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}}return ie.\u0275fac=function(X){return new(X||ie)(e.Y36(e.SBq),e.Y36(d.tE),e.Y36(e.sBO),e.$8M("tabindex"),e.Y36(L),e.Y36(b.Qb,8))},ie.\u0275cmp=e.Xpm({type:ie,selectors:[["mat-slide-toggle"]],viewQuery:function(X,me){if(1&X&&(e.Gf(N,5),e.Gf(h,5),e.Gf(A,5)),2&X){let y;e.iGM(y=e.CRH())&&(me._thumbEl=y.first),e.iGM(y=e.CRH())&&(me._thumbBarEl=y.first),e.iGM(y=e.CRH())&&(me._inputElement=y.first)}},hostAttrs:[1,"mat-slide-toggle"],hostVars:13,hostBindings:function(X,me){2&X&&(e.Ikx("id",me.id),e.uIk("tabindex",null)("aria-label",null)("aria-labelledby",null)("name",null),e.ekj("mat-checked",me.checked)("mat-disabled",me.disabled)("mat-slide-toggle-label-before","before"==me.labelPosition)("_mat-animation-noopable",me._noopAnimations))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex",name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],required:"required",checked:"checked"},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],features:[e._Bn([S]),e.qOj],ngContentSelectors:D,decls:16,vars:20,consts:[[1,"mat-slide-toggle-label"],["label",""],[1,"mat-slide-toggle-bar"],["toggleBar",""],["type","checkbox","role","switch",1,"mat-slide-toggle-input","cdk-visually-hidden",3,"id","required","tabIndex","checked","disabled","change","click"],["input",""],[1,"mat-slide-toggle-thumb-container"],["thumbContainer",""],[1,"mat-slide-toggle-thumb"],["mat-ripple","",1,"mat-slide-toggle-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered","matRippleRadius","matRippleAnimation"],[1,"mat-ripple-element","mat-slide-toggle-persistent-ripple"],[1,"mat-slide-toggle-content",3,"cdkObserveContent"],["labelContent",""],[2,"display","none"]],template:function(X,me){if(1&X&&(e.F$t(),e.TgZ(0,"label",0,1)(2,"span",2,3)(4,"input",4,5),e.NdJ("change",function(i){return me._onChangeEvent(i)})("click",function(i){return me._onInputClick(i)}),e.qZA(),e.TgZ(6,"span",6,7),e._UZ(8,"span",8),e.TgZ(9,"span",9),e._UZ(10,"span",10),e.qZA()()(),e.TgZ(11,"span",11,12),e.NdJ("cdkObserveContent",function(){return me._onLabelTextChange()}),e.TgZ(13,"span",13),e._uU(14,"\xa0"),e.qZA(),e.Hsn(15),e.qZA()()),2&X){const y=e.MAs(1),i=e.MAs(12);e.uIk("for",me.inputId),e.xp6(2),e.ekj("mat-slide-toggle-bar-no-side-margin",!i.textContent||!i.textContent.trim()),e.xp6(2),e.Q6J("id",me.inputId)("required",me.required)("tabIndex",me.tabIndex)("checked",me.checked)("disabled",me.disabled),e.uIk("name",me.name)("aria-checked",me.checked)("aria-label",me.ariaLabel)("aria-labelledby",me.ariaLabelledby)("aria-describedby",me.ariaDescribedby),e.xp6(5),e.Q6J("matRippleTrigger",y)("matRippleDisabled",me.disableRipple||me.disabled)("matRippleCentered",!0)("matRippleRadius",20)("matRippleAnimation",e.VKq(18,w,me._noopAnimations?0:150))}},directives:[f.wG,t.wD],styles:[".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{-webkit-user-select:none;user-select:none;display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%;display:block}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\n"],encapsulation:2,changeDetection:0}),ie})(),de=(()=>{class ie{}return ie.\u0275fac=function(X){return new(X||ie)},ie.\u0275mod=e.oAB({type:ie}),ie.\u0275inj=e.cJS({}),ie})(),te=(()=>{class ie{}return ie.\u0275fac=function(X){return new(X||ie)},ie.\u0275mod=e.oAB({type:ie}),ie.\u0275inj=e.cJS({imports:[[de,f.si,f.BQ,t.Q8],de,f.BQ]}),ie})()},7261:(Ve,j,p)=>{"use strict";p.d(j,{Ve:()=>oe,ZX:()=>ie,ux:()=>y});var t=p(9776),e=p(7429),f=p(9808),M=p(5e3),a=p(508),b=p(7423),d=p(7579),N=p(5698),h=p(2722),A=p(1777),w=p(925),D=p(5113),L=p(5664);function k(i,r){if(1&i){const u=M.EpF();M.TgZ(0,"div",2)(1,"button",3),M.NdJ("click",function(){return M.CHM(u),M.oxw().action()}),M._uU(2),M.qZA()()}if(2&i){const u=M.oxw();M.xp6(2),M.Oqu(u.data.action)}}function S(i,r){}const U=new M.OlP("MatSnackBarData");class Z{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}const Y=Math.pow(2,31)-1;class ne{constructor(r,u){this._overlayRef=u,this._afterDismissed=new d.x,this._afterOpened=new d.x,this._onAction=new d.x,this._dismissedByAction=!1,this.containerInstance=r,r._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(r){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(r,Y))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}let $=(()=>{class i{constructor(u,c){this.snackBarRef=u,this.data=c}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}}return i.\u0275fac=function(u){return new(u||i)(M.Y36(ne),M.Y36(U))},i.\u0275cmp=M.Xpm({type:i,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-simple-snackbar"],decls:3,vars:2,consts:[[1,"mat-simple-snack-bar-content"],["class","mat-simple-snackbar-action",4,"ngIf"],[1,"mat-simple-snackbar-action"],["mat-button","",3,"click"]],template:function(u,c){1&u&&(M.TgZ(0,"span",0),M._uU(1),M.qZA(),M.YNc(2,k,3,1,"div",1)),2&u&&(M.xp6(1),M.Oqu(c.data.message),M.xp6(1),M.Q6J("ngIf",c.hasAction))},directives:[b.lW,f.O5],styles:[".mat-simple-snackbar{display:flex;justify-content:space-between;align-items:center;line-height:20px;opacity:1}.mat-simple-snackbar-action{flex-shrink:0;margin:-8px -8px -8px 8px}.mat-simple-snackbar-action button{max-height:36px;min-width:0}[dir=rtl] .mat-simple-snackbar-action{margin-left:-8px;margin-right:8px}.mat-simple-snack-bar-content{overflow:hidden;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}),i})();const de={snackBarState:(0,A.X$)("state",[(0,A.SB)("void, hidden",(0,A.oB)({transform:"scale(0.8)",opacity:0})),(0,A.SB)("visible",(0,A.oB)({transform:"scale(1)",opacity:1})),(0,A.eR)("* => visible",(0,A.jt)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,A.eR)("* => void, * => hidden",(0,A.jt)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,A.oB)({opacity:0})))])};let te=(()=>{class i extends e.en{constructor(u,c,_,E,I){super(),this._ngZone=u,this._elementRef=c,this._changeDetectorRef=_,this._platform=E,this.snackBarConfig=I,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new d.x,this._onExit=new d.x,this._onEnter=new d.x,this._animationState="void",this.attachDomPortal=v=>(this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachDomPortal(v)),this._live="assertive"!==I.politeness||I.announcementMessage?"off"===I.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(u){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachComponentPortal(u)}attachTemplatePortal(u){return this._assertNotAttached(),this._applySnackBarClasses(),this._portalOutlet.attachTemplatePortal(u)}onAnimationEnd(u){const{fromState:c,toState:_}=u;if(("void"===_&&"void"!==c||"hidden"===_)&&this._completeExit(),"visible"===_){const E=this._onEnter;this._ngZone.run(()=>{E.next(),E.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._completeExit()}_completeExit(){this._ngZone.onMicrotaskEmpty.pipe((0,N.q)(1)).subscribe(()=>{this._ngZone.run(()=>{this._onExit.next(),this._onExit.complete()})})}_applySnackBarClasses(){const u=this._elementRef.nativeElement,c=this.snackBarConfig.panelClass;c&&(Array.isArray(c)?c.forEach(_=>u.classList.add(_)):u.classList.add(c)),"center"===this.snackBarConfig.horizontalPosition&&u.classList.add("mat-snack-bar-center"),"top"===this.snackBarConfig.verticalPosition&&u.classList.add("mat-snack-bar-top")}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const u=this._elementRef.nativeElement.querySelector("[aria-hidden]"),c=this._elementRef.nativeElement.querySelector("[aria-live]");if(u&&c){let _=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&u.contains(document.activeElement)&&(_=document.activeElement),u.removeAttribute("aria-hidden"),c.appendChild(u),null==_||_.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}}return i.\u0275fac=function(u){return new(u||i)(M.Y36(M.R0b),M.Y36(M.SBq),M.Y36(M.sBO),M.Y36(w.t4),M.Y36(Z))},i.\u0275cmp=M.Xpm({type:i,selectors:[["snack-bar-container"]],viewQuery:function(u,c){if(1&u&&M.Gf(e.Pl,7),2&u){let _;M.iGM(_=M.CRH())&&(c._portalOutlet=_.first)}},hostAttrs:[1,"mat-snack-bar-container"],hostVars:1,hostBindings:function(u,c){1&u&&M.WFA("@state.done",function(E){return c.onAnimationEnd(E)}),2&u&&M.d8E("@state",c._animationState)},features:[M.qOj],decls:3,vars:2,consts:[["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(u,c){1&u&&(M.TgZ(0,"div",0),M.YNc(1,S,0,0,"ng-template",1),M.qZA(),M._UZ(2,"div")),2&u&&(M.xp6(2),M.uIk("aria-live",c._live)("role",c._role))},directives:[e.Pl],styles:[".mat-snack-bar-container{border-radius:4px;box-sizing:border-box;display:block;margin:24px;max-width:33vw;min-width:344px;padding:14px 16px;min-height:48px;transform-origin:center}.cdk-high-contrast-active .mat-snack-bar-container{border:solid 1px}.mat-snack-bar-handset{width:100%}.mat-snack-bar-handset .mat-snack-bar-container{margin:8px;max-width:100%;min-width:0;width:100%}\n"],encapsulation:2,data:{animation:[de.snackBarState]}}),i})(),ie=(()=>{class i{}return i.\u0275fac=function(u){return new(u||i)},i.\u0275mod=M.oAB({type:i}),i.\u0275inj=M.cJS({imports:[[t.U8,e.eL,f.ez,b.ot,a.BQ],a.BQ]}),i})();const oe=new M.OlP("mat-snack-bar-default-options",{providedIn:"root",factory:function X(){return new Z}});let me=(()=>{class i{constructor(u,c,_,E,I,v){this._overlay=u,this._live=c,this._injector=_,this._breakpointObserver=E,this._parentSnackBar=I,this._defaultConfig=v,this._snackBarRefAtThisLevel=null}get _openedSnackBarRef(){const u=this._parentSnackBar;return u?u._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(u){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=u:this._snackBarRefAtThisLevel=u}openFromComponent(u,c){return this._attach(u,c)}openFromTemplate(u,c){return this._attach(u,c)}open(u,c="",_){const E=Object.assign(Object.assign({},this._defaultConfig),_);return E.data={message:u,action:c},E.announcementMessage===u&&(E.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,E)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(u,c){const E=M.zs3.create({parent:c&&c.viewContainerRef&&c.viewContainerRef.injector||this._injector,providers:[{provide:Z,useValue:c}]}),I=new e.C5(this.snackBarContainerComponent,c.viewContainerRef,E),v=u.attach(I);return v.instance.snackBarConfig=c,v.instance}_attach(u,c){const _=Object.assign(Object.assign(Object.assign({},new Z),this._defaultConfig),c),E=this._createOverlay(_),I=this._attachSnackBarContainer(E,_),v=new ne(I,E);if(u instanceof M.Rgc){const n=new e.UE(u,null,{$implicit:_.data,snackBarRef:v});v.instance=I.attachTemplatePortal(n)}else{const n=this._createInjector(_,v),C=new e.C5(u,void 0,n),B=I.attachComponentPortal(C);v.instance=B.instance}return this._breakpointObserver.observe(D.u3.HandsetPortrait).pipe((0,h.R)(E.detachments())).subscribe(n=>{E.overlayElement.classList.toggle(this.handsetCssClass,n.matches)}),_.announcementMessage&&I._onAnnounce.subscribe(()=>{this._live.announce(_.announcementMessage,_.politeness)}),this._animateSnackBar(v,_),this._openedSnackBarRef=v,this._openedSnackBarRef}_animateSnackBar(u,c){u.afterDismissed().subscribe(()=>{this._openedSnackBarRef==u&&(this._openedSnackBarRef=null),c.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{u.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):u.containerInstance.enter(),c.duration&&c.duration>0&&u.afterOpened().subscribe(()=>u._dismissAfter(c.duration))}_createOverlay(u){const c=new t.X_;c.direction=u.direction;let _=this._overlay.position().global();const E="rtl"===u.direction,I="left"===u.horizontalPosition||"start"===u.horizontalPosition&&!E||"end"===u.horizontalPosition&&E,v=!I&&"center"!==u.horizontalPosition;return I?_.left("0"):v?_.right("0"):_.centerHorizontally(),"top"===u.verticalPosition?_.top("0"):_.bottom("0"),c.positionStrategy=_,this._overlay.create(c)}_createInjector(u,c){return M.zs3.create({parent:u&&u.viewContainerRef&&u.viewContainerRef.injector||this._injector,providers:[{provide:ne,useValue:c},{provide:U,useValue:u.data}]})}}return i.\u0275fac=function(u){return new(u||i)(M.LFG(t.aV),M.LFG(L.Kd),M.LFG(M.zs3),M.LFG(D.Yg),M.LFG(i,12),M.LFG(oe))},i.\u0275prov=M.Yz7({token:i,factory:i.\u0275fac}),i})(),y=(()=>{class i extends me{constructor(u,c,_,E,I,v){super(u,c,_,E,I,v),this.simpleSnackBarComponent=$,this.snackBarContainerComponent=te,this.handsetCssClass="mat-snack-bar-handset"}}return i.\u0275fac=function(u){return new(u||i)(M.LFG(t.aV),M.LFG(L.Kd),M.LFG(M.zs3),M.LFG(D.Yg),M.LFG(i,12),M.LFG(oe))},i.\u0275prov=M.Yz7({token:i,factory:i.\u0275fac,providedIn:ie}),i})()},4847:(Ve,j,p)=>{"use strict";p.d(j,{JX:()=>i,YE:()=>oe,nU:()=>y});var t=p(5e3),e=p(3191),f=p(1159),M=p(508),a=p(7579),b=p(6451),d=p(1777),N=p(5664),h=p(9808);const A=["mat-sort-header",""];function w(r,u){if(1&r){const c=t.EpF();t.TgZ(0,"div",3),t.NdJ("@arrowPosition.start",function(){return t.CHM(c),t.oxw()._disableViewStateAnimation=!0})("@arrowPosition.done",function(){return t.CHM(c),t.oxw()._disableViewStateAnimation=!1}),t._UZ(1,"div",4),t.TgZ(2,"div",5),t._UZ(3,"div",6)(4,"div",7)(5,"div",8),t.qZA()()}if(2&r){const c=t.oxw();t.Q6J("@arrowOpacity",c._getArrowViewState())("@arrowPosition",c._getArrowViewState())("@allowChildren",c._getArrowDirectionState()),t.xp6(2),t.Q6J("@indicator",c._getArrowDirectionState()),t.xp6(1),t.Q6J("@leftPointer",c._getArrowDirectionState()),t.xp6(1),t.Q6J("@rightPointer",c._getArrowDirectionState())}}const D=["*"],L=M.mZ.ENTERING+" "+M.yN.STANDARD_CURVE,k={indicator:(0,d.X$)("indicator",[(0,d.SB)("active-asc, asc",(0,d.oB)({transform:"translateY(0px)"})),(0,d.SB)("active-desc, desc",(0,d.oB)({transform:"translateY(10px)"})),(0,d.eR)("active-asc <=> active-desc",(0,d.jt)(L))]),leftPointer:(0,d.X$)("leftPointer",[(0,d.SB)("active-asc, asc",(0,d.oB)({transform:"rotate(-45deg)"})),(0,d.SB)("active-desc, desc",(0,d.oB)({transform:"rotate(45deg)"})),(0,d.eR)("active-asc <=> active-desc",(0,d.jt)(L))]),rightPointer:(0,d.X$)("rightPointer",[(0,d.SB)("active-asc, asc",(0,d.oB)({transform:"rotate(45deg)"})),(0,d.SB)("active-desc, desc",(0,d.oB)({transform:"rotate(-45deg)"})),(0,d.eR)("active-asc <=> active-desc",(0,d.jt)(L))]),arrowOpacity:(0,d.X$)("arrowOpacity",[(0,d.SB)("desc-to-active, asc-to-active, active",(0,d.oB)({opacity:1})),(0,d.SB)("desc-to-hint, asc-to-hint, hint",(0,d.oB)({opacity:.54})),(0,d.SB)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,d.oB)({opacity:0})),(0,d.eR)("* => asc, * => desc, * => active, * => hint, * => void",(0,d.jt)("0ms")),(0,d.eR)("* <=> *",(0,d.jt)(L))]),arrowPosition:(0,d.X$)("arrowPosition",[(0,d.eR)("* => desc-to-hint, * => desc-to-active",(0,d.jt)(L,(0,d.F4)([(0,d.oB)({transform:"translateY(-25%)"}),(0,d.oB)({transform:"translateY(0)"})]))),(0,d.eR)("* => hint-to-desc, * => active-to-desc",(0,d.jt)(L,(0,d.F4)([(0,d.oB)({transform:"translateY(0)"}),(0,d.oB)({transform:"translateY(25%)"})]))),(0,d.eR)("* => asc-to-hint, * => asc-to-active",(0,d.jt)(L,(0,d.F4)([(0,d.oB)({transform:"translateY(25%)"}),(0,d.oB)({transform:"translateY(0)"})]))),(0,d.eR)("* => hint-to-asc, * => active-to-asc",(0,d.jt)(L,(0,d.F4)([(0,d.oB)({transform:"translateY(0)"}),(0,d.oB)({transform:"translateY(-25%)"})]))),(0,d.SB)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,d.oB)({transform:"translateY(0)"})),(0,d.SB)("hint-to-desc, active-to-desc, desc",(0,d.oB)({transform:"translateY(-25%)"})),(0,d.SB)("hint-to-asc, active-to-asc, asc",(0,d.oB)({transform:"translateY(25%)"}))]),allowChildren:(0,d.X$)("allowChildren",[(0,d.eR)("* <=> *",[(0,d.IO)("@*",(0,d.pV)(),{optional:!0})])])};let ne=(()=>{class r{constructor(){this.changes=new a.x}}return r.\u0275fac=function(c){return new(c||r)},r.\u0275prov=t.Yz7({token:r,factory:r.\u0275fac,providedIn:"root"}),r})();const de={provide:ne,deps:[[new t.FiY,new t.tp0,ne]],useFactory:function $(r){return r||new ne}},te=new t.OlP("MAT_SORT_DEFAULT_OPTIONS"),ie=(0,M.dB)((0,M.Id)(class{}));let oe=(()=>{class r extends ie{constructor(c){super(),this._defaultOptions=c,this.sortables=new Map,this._stateChanges=new a.x,this.start="asc",this._direction="",this.sortChange=new t.vpe}get direction(){return this._direction}set direction(c){this._direction=c}get disableClear(){return this._disableClear}set disableClear(c){this._disableClear=(0,e.Ig)(c)}register(c){this.sortables.set(c.id,c)}deregister(c){this.sortables.delete(c.id)}sort(c){this.active!=c.id?(this.active=c.id,this.direction=c.start?c.start:this.start):this.direction=this.getNextSortDirection(c),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(c){var _,E,I;if(!c)return"";const v=null!==(E=null!==(_=null==c?void 0:c.disableClear)&&void 0!==_?_:this.disableClear)&&void 0!==E?E:!!(null===(I=this._defaultOptions)||void 0===I?void 0:I.disableClear);let n=function X(r,u){let c=["asc","desc"];return"desc"==r&&c.reverse(),u||c.push(""),c}(c.start||this.start,v),C=n.indexOf(this.direction)+1;return C>=n.length&&(C=0),n[C]}ngOnInit(){this._markInitialized()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}}return r.\u0275fac=function(c){return new(c||r)(t.Y36(te,8))},r.\u0275dir=t.lG2({type:r,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{disabled:["matSortDisabled","disabled"],active:["matSortActive","active"],start:["matSortStart","start"],direction:["matSortDirection","direction"],disableClear:["matSortDisableClear","disableClear"]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],features:[t.qOj,t.TTD]}),r})();const me=(0,M.Id)(class{});let y=(()=>{class r extends me{constructor(c,_,E,I,v,n,C){super(),this._intl=c,this._changeDetectorRef=_,this._sort=E,this._columnDef=I,this._focusMonitor=v,this._elementRef=n,this._ariaDescriber=C,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this._sortActionDescription="Sort",this._handleStateChanges()}get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(c){this._updateSortActionDescription(c)}get disableClear(){return this._disableClear}set disableClear(c){this._disableClear=(0,e.Ig)(c)}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(c=>{const _=!!c;_!==this._showIndicatorHint&&(this._setIndicatorHintVisible(_),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe()}_setIndicatorHintVisible(c){this._isDisabled()&&c||(this._showIndicatorHint=c,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(c){this._viewState=c||{},this._disableViewStateAnimation&&(this._viewState={toState:c.toState})}_toggleOnInteraction(){this._sort.sort(this),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0)}_handleClick(){this._isDisabled()||this._sort.sort(this)}_handleKeydown(c){!this._isDisabled()&&(c.keyCode===f.L_||c.keyCode===f.K5)&&(c.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_getArrowDirectionState(){return`${this._isSorted()?"active-":""}${this._arrowDirection}`}_getArrowViewState(){const c=this._viewState.fromState;return(c?`${c}-to-`:"")+this._viewState.toState}_updateArrowDirection(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(c){var _,E;this._sortButton&&(null===(_=this._ariaDescriber)||void 0===_||_.removeDescription(this._sortButton,this._sortActionDescription),null===(E=this._ariaDescriber)||void 0===E||E.describe(this._sortButton,c)),this._sortActionDescription=c}_handleStateChanges(){this._rerenderSubscription=(0,b.T)(this._sort.sortChange,this._sort._stateChanges,this._intl.changes).subscribe(()=>{this._isSorted()&&(this._updateArrowDirection(),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0),this._setAnimationTransitionState({fromState:this._arrowDirection,toState:"active"}),this._showIndicatorHint=!1),!this._isSorted()&&this._viewState&&"active"===this._viewState.toState&&(this._disableViewStateAnimation=!1,this._setAnimationTransitionState({fromState:"active",toState:this._arrowDirection})),this._changeDetectorRef.markForCheck()})}}return r.\u0275fac=function(c){return new(c||r)(t.Y36(ne),t.Y36(t.sBO),t.Y36(oe,8),t.Y36("MAT_SORT_HEADER_COLUMN_DEF",8),t.Y36(N.tE),t.Y36(t.SBq),t.Y36(N.$s,8))},r.\u0275cmp=t.Xpm({type:r,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(c,_){1&c&&t.NdJ("click",function(){return _._handleClick()})("keydown",function(I){return _._handleKeydown(I)})("mouseenter",function(){return _._setIndicatorHintVisible(!0)})("mouseleave",function(){return _._setIndicatorHintVisible(!1)}),2&c&&(t.uIk("aria-sort",_._getAriaSortAttribute()),t.ekj("mat-sort-header-disabled",_._isDisabled()))},inputs:{disabled:"disabled",id:["mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",sortActionDescription:"sortActionDescription",disableClear:"disableClear"},exportAs:["matSortHeader"],features:[t.qOj],attrs:A,ngContentSelectors:D,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],["class","mat-sort-header-arrow",4,"ngIf"],[1,"mat-sort-header-arrow"],[1,"mat-sort-header-stem"],[1,"mat-sort-header-indicator"],[1,"mat-sort-header-pointer-left"],[1,"mat-sort-header-pointer-right"],[1,"mat-sort-header-pointer-middle"]],template:function(c,_){1&c&&(t.F$t(),t.TgZ(0,"div",0)(1,"div",1),t.Hsn(2),t.qZA(),t.YNc(3,w,6,6,"div",2),t.qZA()),2&c&&(t.ekj("mat-sort-header-sorted",_._isSorted())("mat-sort-header-position-before","before"==_.arrowPosition),t.uIk("tabindex",_._isDisabled()?null:0)("role",_._isDisabled()?null:"button"),t.xp6(3),t.Q6J("ngIf",_._renderArrow()))},directives:[h.O5],styles:[".mat-sort-header-container{display:flex;cursor:pointer;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-content{text-align:center;display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;opacity:0}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}.cdk-high-contrast-active .mat-sort-header-stem{width:0;border-left:solid 2px}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}.cdk-high-contrast-active .mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}.cdk-high-contrast-active .mat-sort-header-pointer-left,.cdk-high-contrast-active .mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}\n"],encapsulation:2,data:{animation:[k.indicator,k.leftPointer,k.rightPointer,k.arrowOpacity,k.arrowPosition,k.allowChildren]},changeDetection:0}),r})(),i=(()=>{class r{}return r.\u0275fac=function(c){return new(c||r)},r.\u0275mod=t.oAB({type:r}),r.\u0275inj=t.cJS({providers:[de],imports:[[h.ez,M.BQ]]}),r})()},5615:(Ve,j,p)=>{"use strict";p.d(j,{C0:()=>ve,Ic:()=>Ae,T5:()=>Te,VY:()=>P,Vq:()=>Ie,fd:()=>le,z9:()=>Q});var t=p(7429),e=p(1555),f=p(9808),M=p(5e3),a=p(7423),b=p(508),d=p(5245),N=p(7579),h=p(727),A=p(5664),w=p(3900),D=p(4004),L=p(8675),k=p(2722),S=p(1884),U=p(1777),Z=p(226);function Y(xe,W){if(1&xe&&M.GkF(0,8),2&xe){const ee=M.oxw();M.Q6J("ngTemplateOutlet",ee.iconOverrides[ee.state])("ngTemplateOutletContext",ee._getIconContext())}}function ne(xe,W){if(1&xe&&(M.TgZ(0,"span",13),M._uU(1),M.qZA()),2&xe){const ee=M.oxw(2);M.xp6(1),M.Oqu(ee._getDefaultTextForState(ee.state))}}function $(xe,W){if(1&xe&&(M.TgZ(0,"span",14),M._uU(1),M.qZA()),2&xe){const ee=M.oxw(2);M.xp6(1),M.Oqu(ee._intl.completedLabel)}}function de(xe,W){if(1&xe&&(M.TgZ(0,"span",14),M._uU(1),M.qZA()),2&xe){const ee=M.oxw(2);M.xp6(1),M.Oqu(ee._intl.editableLabel)}}function te(xe,W){if(1&xe&&(M.TgZ(0,"mat-icon",13),M._uU(1),M.qZA()),2&xe){const ee=M.oxw(2);M.xp6(1),M.Oqu(ee._getDefaultTextForState(ee.state))}}function ie(xe,W){if(1&xe&&(M.ynx(0,9),M.YNc(1,ne,2,1,"span",10),M.YNc(2,$,2,1,"span",11),M.YNc(3,de,2,1,"span",11),M.YNc(4,te,2,1,"mat-icon",12),M.BQk()),2&xe){const ee=M.oxw();M.Q6J("ngSwitch",ee.state),M.xp6(1),M.Q6J("ngSwitchCase","number"),M.xp6(1),M.Q6J("ngIf","done"===ee.state),M.xp6(1),M.Q6J("ngIf","edit"===ee.state)}}function oe(xe,W){if(1&xe&&(M.TgZ(0,"div",15),M.GkF(1,16),M.qZA()),2&xe){const ee=M.oxw();M.xp6(1),M.Q6J("ngTemplateOutlet",ee._templateLabel().template)}}function X(xe,W){if(1&xe&&(M.TgZ(0,"div",15),M._uU(1),M.qZA()),2&xe){const ee=M.oxw();M.xp6(1),M.Oqu(ee.label)}}function me(xe,W){if(1&xe&&(M.TgZ(0,"div",17),M._uU(1),M.qZA()),2&xe){const ee=M.oxw();M.xp6(1),M.Oqu(ee._intl.optionalLabel)}}function y(xe,W){if(1&xe&&(M.TgZ(0,"div",18),M._uU(1),M.qZA()),2&xe){const ee=M.oxw();M.xp6(1),M.Oqu(ee.errorMessage)}}function i(xe,W){}function r(xe,W){if(1&xe&&(M.Hsn(0),M.YNc(1,i,0,0,"ng-template",0)),2&xe){const ee=M.oxw();M.xp6(1),M.Q6J("cdkPortalOutlet",ee._portal)}}const u=["*"];function c(xe,W){1&xe&&M._UZ(0,"div",9)}const _=function(xe,W){return{step:xe,i:W}};function E(xe,W){if(1&xe&&(M.ynx(0),M.GkF(1,7),M.YNc(2,c,1,0,"div",8),M.BQk()),2&xe){const ee=W.$implicit,ue=W.index,Ce=W.last;M.oxw(2);const Le=M.MAs(4);M.xp6(1),M.Q6J("ngTemplateOutlet",Le)("ngTemplateOutletContext",M.WLB(3,_,ee,ue)),M.xp6(1),M.Q6J("ngIf",!Ce)}}function I(xe,W){if(1&xe){const ee=M.EpF();M.TgZ(0,"div",10),M.NdJ("@horizontalStepTransition.done",function(Ce){return M.CHM(ee),M.oxw(2)._animationDone.next(Ce)}),M.GkF(1,11),M.qZA()}if(2&xe){const ee=W.$implicit,ue=W.index,Ce=M.oxw(2);M.Q6J("@horizontalStepTransition",Ce._getAnimationDirection(ue))("id",Ce._getStepContentId(ue)),M.uIk("aria-labelledby",Ce._getStepLabelId(ue))("aria-expanded",Ce.selectedIndex===ue),M.xp6(1),M.Q6J("ngTemplateOutlet",ee.content)}}function v(xe,W){if(1&xe&&(M.ynx(0),M.TgZ(1,"div",3),M.YNc(2,E,3,6,"ng-container",4),M.qZA(),M.TgZ(3,"div",5),M.YNc(4,I,2,5,"div",6),M.qZA(),M.BQk()),2&xe){const ee=M.oxw();M.xp6(2),M.Q6J("ngForOf",ee.steps),M.xp6(2),M.Q6J("ngForOf",ee.steps)}}function n(xe,W){if(1&xe){const ee=M.EpF();M.TgZ(0,"div",13),M.GkF(1,7),M.TgZ(2,"div",14)(3,"div",15),M.NdJ("@verticalStepTransition.done",function(Ce){return M.CHM(ee),M.oxw(2)._animationDone.next(Ce)}),M.TgZ(4,"div",16),M.GkF(5,11),M.qZA()()()()}if(2&xe){const ee=W.$implicit,ue=W.index,Ce=W.last,Le=M.oxw(2),ut=M.MAs(4);M.xp6(1),M.Q6J("ngTemplateOutlet",ut)("ngTemplateOutletContext",M.WLB(9,_,ee,ue)),M.xp6(1),M.ekj("mat-stepper-vertical-line",!Ce),M.xp6(1),M.Q6J("@verticalStepTransition",Le._getAnimationDirection(ue))("id",Le._getStepContentId(ue)),M.uIk("aria-labelledby",Le._getStepLabelId(ue))("aria-expanded",Le.selectedIndex===ue),M.xp6(2),M.Q6J("ngTemplateOutlet",ee.content)}}function C(xe,W){if(1&xe&&(M.ynx(0),M.YNc(1,n,6,12,"div",12),M.BQk()),2&xe){const ee=M.oxw();M.xp6(1),M.Q6J("ngForOf",ee.steps)}}function B(xe,W){if(1&xe){const ee=M.EpF();M.TgZ(0,"mat-step-header",17),M.NdJ("click",function(){return M.CHM(ee).step.select()})("keydown",function(Ce){return M.CHM(ee),M.oxw()._onKeydown(Ce)}),M.qZA()}if(2&xe){const ee=W.step,ue=W.i,Ce=M.oxw();M.ekj("mat-horizontal-stepper-header","horizontal"===Ce.orientation)("mat-vertical-stepper-header","vertical"===Ce.orientation),M.Q6J("tabIndex",Ce._getFocusIndex()===ue?0:-1)("id",Ce._getStepLabelId(ue))("index",ue)("state",Ce._getIndicatorType(ue,ee.state))("label",ee.stepLabel||ee.label)("selected",Ce.selectedIndex===ue)("active",Ce._stepIsNavigable(ue,ee))("optional",ee.optional)("errorMessage",ee.errorMessage)("iconOverrides",Ce._iconOverrides)("disableRipple",Ce.disableRipple||!Ce._stepIsNavigable(ue,ee))("color",ee.color||Ce.color),M.uIk("aria-posinset",ue+1)("aria-setsize",Ce.steps.length)("aria-controls",Ce._getStepContentId(ue))("aria-selected",Ce.selectedIndex==ue)("aria-label",ee.ariaLabel||null)("aria-labelledby",!ee.ariaLabel&&ee.ariaLabelledby?ee.ariaLabelledby:null)("aria-disabled",!Ce._stepIsNavigable(ue,ee)||null)}}let P=(()=>{class xe extends e.u6{}return xe.\u0275fac=function(){let W;return function(ue){return(W||(W=M.n5z(xe)))(ue||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["","matStepLabel",""]],features:[M.qOj]}),xe})(),H=(()=>{class xe{constructor(){this.changes=new N.x,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}}return xe.\u0275fac=function(ee){return new(ee||xe)},xe.\u0275prov=M.Yz7({token:xe,factory:xe.\u0275fac,providedIn:"root"}),xe})();const he={provide:H,deps:[[new M.FiY,new M.tp0,H]],useFactory:function q(xe){return xe||new H}},_e=(0,b.pj)(class extends e.KL{constructor(W){super(W)}},"primary");let Ne=(()=>{class xe extends _e{constructor(ee,ue,Ce,Le){super(Ce),this._intl=ee,this._focusMonitor=ue,this._intlSubscription=ee.changes.subscribe(()=>Le.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(ee,ue){ee?this._focusMonitor.focusVia(this._elementRef,ee,ue):this._elementRef.nativeElement.focus(ue)}_stringLabel(){return this.label instanceof P?null:this.label}_templateLabel(){return this.label instanceof P?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(ee){return"number"==ee?`${this.index+1}`:"edit"==ee?"create":"error"==ee?"warning":ee}}return xe.\u0275fac=function(ee){return new(ee||xe)(M.Y36(H),M.Y36(A.tE),M.Y36(M.SBq),M.Y36(M.sBO))},xe.\u0275cmp=M.Xpm({type:xe,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],inputs:{color:"color",state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple"},features:[M.qOj],decls:10,vars:19,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content",3,"ngSwitch"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngSwitchCase"],[3,"ngSwitch",4,"ngSwitchDefault"],[1,"mat-step-label"],["class","mat-step-text-label",4,"ngIf"],["class","mat-step-optional",4,"ngIf"],["class","mat-step-sub-label-error",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"ngSwitch"],["aria-hidden","true",4,"ngSwitchCase"],["class","cdk-visually-hidden",4,"ngIf"],["aria-hidden","true",4,"ngSwitchDefault"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[1,"mat-step-text-label"],[3,"ngTemplateOutlet"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"]],template:function(ee,ue){1&ee&&(M._UZ(0,"div",0),M.TgZ(1,"div")(2,"div",1),M.YNc(3,Y,1,2,"ng-container",2),M.YNc(4,ie,5,4,"ng-container",3),M.qZA()(),M.TgZ(5,"div",4),M.YNc(6,oe,2,1,"div",5),M.YNc(7,X,2,1,"div",5),M.YNc(8,me,2,1,"div",6),M.YNc(9,y,2,1,"div",7),M.qZA()),2&ee&&(M.Q6J("matRippleTrigger",ue._getHostElement())("matRippleDisabled",ue.disableRipple),M.xp6(1),M.Gre("mat-step-icon-state-",ue.state," mat-step-icon"),M.ekj("mat-step-icon-selected",ue.selected),M.xp6(1),M.Q6J("ngSwitch",!(!ue.iconOverrides||!ue.iconOverrides[ue.state])),M.xp6(1),M.Q6J("ngSwitchCase",!0),M.xp6(2),M.ekj("mat-step-label-active",ue.active)("mat-step-label-selected",ue.selected)("mat-step-label-error","error"==ue.state),M.xp6(1),M.Q6J("ngIf",ue._templateLabel()),M.xp6(1),M.Q6J("ngIf",ue._stringLabel()),M.xp6(1),M.Q6J("ngIf",ue.optional&&"error"!=ue.state),M.xp6(1),M.Q6J("ngIf","error"==ue.state))},directives:[d.Hw,b.wG,f.RF,f.n9,f.tP,f.ED,f.O5],styles:[".mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:transparent}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header.cdk-keyboard-focused,.cdk-high-contrast-active .mat-step-header.cdk-program-focused{outline:solid 3px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.mat-step-optional,.mat-step-sub-label-error{font-size:12px}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative}.mat-step-icon-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex}.mat-step-icon .mat-icon{font-size:16px;height:16px;width:16px}.mat-step-icon-state-error .mat-icon{font-size:24px;height:24px;width:24px}.mat-step-label{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px;vertical-align:middle}.mat-step-text-label{text-overflow:ellipsis;overflow:hidden}.mat-step-header .mat-step-header-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n"],encapsulation:2,changeDetection:0}),xe})();const we={horizontalStepTransition:(0,U.X$)("horizontalStepTransition",[(0,U.SB)("previous",(0,U.oB)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,U.SB)("current",(0,U.oB)({transform:"none",visibility:"inherit"})),(0,U.SB)("next",(0,U.oB)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,U.eR)("* => *",(0,U.jt)("500ms cubic-bezier(0.35, 0, 0.25, 1)"))]),verticalStepTransition:(0,U.X$)("verticalStepTransition",[(0,U.SB)("previous",(0,U.oB)({height:"0px",visibility:"hidden"})),(0,U.SB)("next",(0,U.oB)({height:"0px",visibility:"hidden"})),(0,U.SB)("current",(0,U.oB)({height:"*",visibility:"inherit"})),(0,U.eR)("* <=> current",(0,U.jt)("225ms cubic-bezier(0.4, 0.0, 0.2, 1)"))])};let Q=(()=>{class xe{constructor(ee){this.templateRef=ee}}return xe.\u0275fac=function(ee){return new(ee||xe)(M.Y36(M.Rgc))},xe.\u0275dir=M.lG2({type:xe,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:["matStepperIcon","name"]}}),xe})(),Ue=(()=>{class xe{constructor(ee){this._template=ee}}return xe.\u0275fac=function(ee){return new(ee||xe)(M.Y36(M.Rgc))},xe.\u0275dir=M.lG2({type:xe,selectors:[["ng-template","matStepContent",""]]}),xe})(),ve=(()=>{class xe extends e.be{constructor(ee,ue,Ce,Le){super(ee,Le),this._errorStateMatcher=ue,this._viewContainerRef=Ce,this._isSelected=h.w0.EMPTY}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,w.w)(()=>this._stepper.selectionChange.pipe((0,D.U)(ee=>ee.selectedStep===this),(0,L.O)(this._stepper.selected===this)))).subscribe(ee=>{ee&&this._lazyContent&&!this._portal&&(this._portal=new t.UE(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(ee,ue){return this._errorStateMatcher.isErrorState(ee,ue)||!!(ee&&ee.invalid&&this.interacted)}}return xe.\u0275fac=function(ee){return new(ee||xe)(M.Y36((0,M.Gpc)(()=>Ie)),M.Y36(b.rD,4),M.Y36(M.s_b),M.Y36(e.gx,8))},xe.\u0275cmp=M.Xpm({type:xe,selectors:[["mat-step"]],contentQueries:function(ee,ue,Ce){if(1&ee&&(M.Suo(Ce,P,5),M.Suo(Ce,Ue,5)),2&ee){let Le;M.iGM(Le=M.CRH())&&(ue.stepLabel=Le.first),M.iGM(Le=M.CRH())&&(ue._lazyContent=Le.first)}},inputs:{color:"color"},exportAs:["matStep"],features:[M._Bn([{provide:b.rD,useExisting:xe},{provide:e.be,useExisting:xe}]),M.qOj],ngContentSelectors:u,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(ee,ue){1&ee&&(M.F$t(),M.YNc(0,r,2,1,"ng-template"))},directives:[t.Pl],encapsulation:2,changeDetection:0}),xe})(),V=(()=>{class xe extends e.B8{}return xe.\u0275fac=function(){let W;return function(ue){return(W||(W=M.n5z(xe)))(ue||xe)}}(),xe.\u0275dir=M.lG2({type:xe,features:[M.qOj]}),xe})(),De=(()=>{class xe extends V{}return xe.\u0275fac=function(){let W;return function(ue){return(W||(W=M.n5z(xe)))(ue||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["mat-horizontal-stepper"]],features:[M.qOj]}),xe})(),dt=(()=>{class xe extends V{}return xe.\u0275fac=function(){let W;return function(ue){return(W||(W=M.n5z(xe)))(ue||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["mat-vertical-stepper"]],features:[M.qOj]}),xe})(),Ie=(()=>{class xe extends e.B8{constructor(ee,ue,Ce,Le){super(ee,ue,Ce,Le),this.steps=new M.n_E,this.animationDone=new M.vpe,this.labelPosition="end",this._iconOverrides={},this._animationDone=new N.x;const ut=Ce.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===ut?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:ee,templateRef:ue})=>this._iconOverrides[ee]=ue),this.steps.changes.pipe((0,k.R)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,S.x)((ee,ue)=>ee.fromState===ue.fromState&&ee.toState===ue.toState),(0,k.R)(this._destroyed)).subscribe(ee=>{"current"===ee.toState&&this.animationDone.emit()})}_stepIsNavigable(ee,ue){return ue.completed||this.selectedIndex===ee||!this.linear}}return xe.\u0275fac=function(ee){return new(ee||xe)(M.Y36(Z.Is,8),M.Y36(M.sBO),M.Y36(M.SBq),M.Y36(f.K0))},xe.\u0275cmp=M.Xpm({type:xe,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(ee,ue,Ce){if(1&ee&&(M.Suo(Ce,ve,5),M.Suo(Ce,Q,5)),2&ee){let Le;M.iGM(Le=M.CRH())&&(ue._steps=Le),M.iGM(Le=M.CRH())&&(ue._icons=Le)}},viewQuery:function(ee,ue){if(1&ee&&M.Gf(Ne,5),2&ee){let Ce;M.iGM(Ce=M.CRH())&&(ue._stepHeader=Ce)}},hostAttrs:["role","tablist"],hostVars:9,hostBindings:function(ee,ue){2&ee&&(M.uIk("aria-orientation",ue.orientation),M.ekj("mat-stepper-horizontal","horizontal"===ue.orientation)("mat-stepper-vertical","vertical"===ue.orientation)("mat-stepper-label-position-end","horizontal"===ue.orientation&&"end"==ue.labelPosition)("mat-stepper-label-position-bottom","horizontal"===ue.orientation&&"bottom"==ue.labelPosition))},inputs:{selectedIndex:"selectedIndex",disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],features:[M._Bn([{provide:e.B8,useExisting:xe},{provide:De,useExisting:xe},{provide:dt,useExisting:xe}]),M.qOj],decls:5,vars:3,consts:[[3,"ngSwitch"],[4,"ngSwitchCase"],["stepTemplate",""],[1,"mat-horizontal-stepper-header-container"],[4,"ngFor","ngForOf"],[1,"mat-horizontal-content-container"],["class","mat-horizontal-stepper-content","role","tabpanel",3,"id",4,"ngFor","ngForOf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["class","mat-stepper-horizontal-line",4,"ngIf"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],["class","mat-step",4,"ngFor","ngForOf"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color","click","keydown"]],template:function(ee,ue){1&ee&&(M.ynx(0,0),M.YNc(1,v,5,2,"ng-container",1),M.YNc(2,C,2,1,"ng-container",1),M.BQk(),M.YNc(3,B,1,23,"ng-template",null,2,M.W1O)),2&ee&&(M.Q6J("ngSwitch",ue.orientation),M.xp6(1),M.Q6J("ngSwitchCase","horizontal"),M.xp6(1),M.Q6J("ngSwitchCase","vertical"))},directives:[Ne,f.RF,f.n9,f.sg,f.tP,f.O5],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block}.mat-horizontal-stepper-header-container{white-space:nowrap;display:flex;align-items:center}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container{align-items:flex-start}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{border-top-width:1px;border-top-style:solid;content:"";display:inline-block;height:0;position:absolute;width:calc(50% - 20px)}.mat-horizontal-stepper-header{display:flex;height:72px;overflow:hidden;align-items:center;padding:0 24px}.mat-horizontal-stepper-header .mat-step-icon{margin-right:8px;flex:none}[dir=rtl] .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:8px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{box-sizing:border-box;flex-direction:column;height:auto}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{right:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before{left:0}[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:last-child::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:first-child::after{display:none}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-label{padding:16px 0 0 0;text-align:center;width:100%}.mat-vertical-stepper-header{display:flex;align-items:center;height:24px}.mat-vertical-stepper-header .mat-step-icon{margin-right:12px}[dir=rtl] .mat-vertical-stepper-header .mat-step-icon{margin-right:0;margin-left:12px}.mat-horizontal-stepper-content{outline:0}.mat-horizontal-stepper-content[aria-expanded=false]{height:0;overflow:hidden}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-active .mat-horizontal-content-container{outline:solid 1px}.mat-vertical-content-container{margin-left:36px;border:0;position:relative}.cdk-high-contrast-active .mat-vertical-content-container{outline:solid 1px}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}.mat-stepper-vertical-line::before{content:"";position:absolute;left:0;border-left-width:1px;border-left-style:solid}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}\n'],encapsulation:2,data:{animation:[we.horizontalStepTransition,we.verticalStepTransition]},changeDetection:0}),xe})(),Ae=(()=>{class xe extends e.st{}return xe.\u0275fac=function(){let W;return function(ue){return(W||(W=M.n5z(xe)))(ue||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(ee,ue){2&ee&&M.Ikx("type",ue.type)},inputs:{type:"type"},features:[M.qOj]}),xe})(),le=(()=>{class xe extends e.po{}return xe.\u0275fac=function(){let W;return function(ue){return(W||(W=M.n5z(xe)))(ue||xe)}}(),xe.\u0275dir=M.lG2({type:xe,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(ee,ue){2&ee&&M.Ikx("type",ue.type)},inputs:{type:"type"},features:[M.qOj]}),xe})(),Te=(()=>{class xe{}return xe.\u0275fac=function(ee){return new(ee||xe)},xe.\u0275mod=M.oAB({type:xe}),xe.\u0275inj=M.cJS({providers:[he,b.rD],imports:[[b.BQ,f.ez,t.eL,a.ot,e.U5,d.Ps,b.si],b.BQ]}),xe})()},2075:(Ve,j,p)=>{"use strict";p.d(j,{ev:()=>Ge,Dz:()=>Ht,w1:()=>tt,yh:()=>Se,mD:()=>Re,Q2:()=>qt,Ke:()=>st,ge:()=>Xe,fO:()=>it,XQ:()=>gi,as:()=>at,Gk:()=>Xt,nj:()=>bt,BZ:()=>mt,by:()=>Ui,p0:()=>$i});var t=p(5e3),e=p(3191),f=p(449),M=p(9808),a=p(7579),b=p(457),d=p(1135),N=p(5191),h=p(9646),A=p(2722),w=p(5698),D=p(226),L=p(925),k=p(5303);const S=[[["caption"]],[["colgroup"],["col"]]],U=["caption","colgroup, col"];function ne(ze){return class extends ze{constructor(...Tt){super(...Tt),this._sticky=!1,this._hasStickyChanged=!1}get sticky(){return this._sticky}set sticky(Tt){const pe=this._sticky;this._sticky=(0,e.Ig)(Tt),this._hasStickyChanged=pe!==this._sticky}hasStickyChanged(){const Tt=this._hasStickyChanged;return this._hasStickyChanged=!1,Tt}resetStickyChanged(){this._hasStickyChanged=!1}}}const $=new t.OlP("CDK_TABLE");let te=(()=>{class ze{constructor(pe){this.template=pe}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkCellDef",""]]}),ze})(),ie=(()=>{class ze{constructor(pe){this.template=pe}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkHeaderCellDef",""]]}),ze})(),oe=(()=>{class ze{constructor(pe){this.template=pe}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkFooterCellDef",""]]}),ze})();class X{}const me=ne(X);let y=(()=>{class ze extends me{constructor(pe){super(),this._table=pe,this._stickyEnd=!1}get name(){return this._name}set name(pe){this._setNameInput(pe)}get stickyEnd(){return this._stickyEnd}set stickyEnd(pe){const je=this._stickyEnd;this._stickyEnd=(0,e.Ig)(pe),this._hasStickyChanged=je!==this._stickyEnd}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(pe){pe&&(this._name=pe,this.cssClassFriendlyName=pe.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36($,8))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkColumnDef",""]],contentQueries:function(pe,je,_t){if(1&pe&&(t.Suo(_t,te,5),t.Suo(_t,ie,5),t.Suo(_t,oe,5)),2&pe){let re;t.iGM(re=t.CRH())&&(je.cell=re.first),t.iGM(re=t.CRH())&&(je.headerCell=re.first),t.iGM(re=t.CRH())&&(je.footerCell=re.first)}},inputs:{sticky:"sticky",name:["cdkColumnDef","name"],stickyEnd:"stickyEnd"},features:[t._Bn([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:ze}]),t.qOj]}),ze})();class i{constructor(Tt,pe){pe.nativeElement.classList.add(...Tt._columnCssClassName)}}let r=(()=>{class ze extends i{constructor(pe,je){super(pe,je)}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(y),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[t.qOj]}),ze})(),u=(()=>{class ze extends i{constructor(pe,je){var _t;if(super(pe,je),1===(null===(_t=pe._table)||void 0===_t?void 0:_t._elementRef.nativeElement.nodeType)){const re=pe._table._elementRef.nativeElement.getAttribute("role");je.nativeElement.setAttribute("role","grid"===re||"treegrid"===re?"gridcell":"cell")}}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(y),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],features:[t.qOj]}),ze})(),c=(()=>{class ze extends i{constructor(pe,je){var _t;if(super(pe,je),1===(null===(_t=pe._table)||void 0===_t?void 0:_t._elementRef.nativeElement.nodeType)){const re=pe._table._elementRef.nativeElement.getAttribute("role");je.nativeElement.setAttribute("role","grid"===re||"treegrid"===re?"gridcell":"cell")}}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(y),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[t.qOj]}),ze})();class _{constructor(){this.tasks=[],this.endTasks=[]}}const E=new t.OlP("_COALESCED_STYLE_SCHEDULER");let I=(()=>{class ze{constructor(pe){this._ngZone=pe,this._currentSchedule=null,this._destroyed=new a.x}schedule(pe){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(pe)}scheduleEnd(pe){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(pe)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new _,this._getScheduleObservable().pipe((0,A.R)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const pe=this._currentSchedule;this._currentSchedule=new _;for(const je of pe.tasks)je();for(const je of pe.endTasks)je()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,b.D)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,w.q)(1))}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.LFG(t.R0b))},ze.\u0275prov=t.Yz7({token:ze,factory:ze.\u0275fac}),ze})(),n=(()=>{class ze{constructor(pe,je){this.template=pe,this._differs=je}ngOnChanges(pe){if(!this._columnsDiffer){const je=pe.columns&&pe.columns.currentValue||[];this._columnsDiffer=this._differs.find(je).create(),this._columnsDiffer.diff(je)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(pe){return this instanceof P?pe.headerCell.template:this instanceof he?pe.footerCell.template:pe.cell.template}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc),t.Y36(t.ZZ4))},ze.\u0275dir=t.lG2({type:ze,features:[t.TTD]}),ze})();class C extends n{}const B=ne(C);let P=(()=>{class ze extends B{constructor(pe,je,_t){super(pe,je),this._table=_t}ngOnChanges(pe){super.ngOnChanges(pe)}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc),t.Y36(t.ZZ4),t.Y36($,8))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:["cdkHeaderRowDef","columns"],sticky:["cdkHeaderRowDefSticky","sticky"]},features:[t.qOj,t.TTD]}),ze})();class H extends n{}const q=ne(H);let he=(()=>{class ze extends q{constructor(pe,je,_t){super(pe,je),this._table=_t}ngOnChanges(pe){super.ngOnChanges(pe)}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc),t.Y36(t.ZZ4),t.Y36($,8))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:["cdkFooterRowDef","columns"],sticky:["cdkFooterRowDefSticky","sticky"]},features:[t.qOj,t.TTD]}),ze})(),_e=(()=>{class ze extends n{constructor(pe,je,_t){super(pe,je),this._table=_t}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc),t.Y36(t.ZZ4),t.Y36($,8))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkRowDef",""]],inputs:{columns:["cdkRowDefColumns","columns"],when:["cdkRowDefWhen","when"]},features:[t.qOj]}),ze})(),Ne=(()=>{class ze{constructor(pe){this._viewContainer=pe,ze.mostRecentCellOutlet=this}ngOnDestroy(){ze.mostRecentCellOutlet===this&&(ze.mostRecentCellOutlet=null)}}return ze.mostRecentCellOutlet=null,ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.s_b))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","cdkCellOutlet",""]]}),ze})(),we=(()=>{class ze{}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275cmp=t.Xpm({type:ze,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(pe,je){1&pe&&t.GkF(0,0)},directives:[Ne],encapsulation:2}),ze})(),Q=(()=>{class ze{}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275cmp=t.Xpm({type:ze,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(pe,je){1&pe&&t.GkF(0,0)},directives:[Ne],encapsulation:2}),ze})(),Ue=(()=>{class ze{}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275cmp=t.Xpm({type:ze,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(pe,je){1&pe&&t.GkF(0,0)},directives:[Ne],encapsulation:2}),ze})(),ve=(()=>{class ze{constructor(pe){this.templateRef=pe,this._contentClassName="cdk-no-data-row"}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.Rgc))},ze.\u0275dir=t.lG2({type:ze,selectors:[["ng-template","cdkNoDataRow",""]]}),ze})();const V=["top","bottom","left","right"];class De{constructor(Tt,pe,je,_t,re=!0,qe=!0,Mt){this._isNativeHtmlTable=Tt,this._stickCellCss=pe,this.direction=je,this._coalescedStyleScheduler=_t,this._isBrowser=re,this._needsPositionStickyOnElement=qe,this._positionListener=Mt,this._cachedCellWidths=[],this._borderCellCss={top:`${pe}-border-elem-top`,bottom:`${pe}-border-elem-bottom`,left:`${pe}-border-elem-left`,right:`${pe}-border-elem-right`}}clearStickyPositioning(Tt,pe){const je=[];for(const _t of Tt)if(_t.nodeType===_t.ELEMENT_NODE){je.push(_t);for(let re=0;re<_t.children.length;re++)je.push(_t.children[re])}this._coalescedStyleScheduler.schedule(()=>{for(const _t of je)this._removeStickyStyle(_t,pe)})}updateStickyColumns(Tt,pe,je,_t=!0){if(!Tt.length||!this._isBrowser||!pe.some(Zi=>Zi)&&!je.some(Zi=>Zi))return void(this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]})));const re=Tt[0],qe=re.children.length,Mt=this._getCellWidths(re,_t),zt=this._getStickyStartColumnPositions(Mt,pe),bi=this._getStickyEndColumnPositions(Mt,je),Ei=pe.lastIndexOf(!0),Xi=je.indexOf(!0);this._coalescedStyleScheduler.schedule(()=>{const Zi="rtl"===this.direction,sn=Zi?"right":"left",gn=Zi?"left":"right";for(const jt of Tt)for(let wi=0;wipe[wi]?jt:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Xi?[]:Mt.slice(Xi).map((jt,wi)=>je[wi+Xi]?jt:null).reverse()}))})}stickRows(Tt,pe,je){if(!this._isBrowser)return;const _t="bottom"===je?Tt.slice().reverse():Tt,re="bottom"===je?pe.slice().reverse():pe,qe=[],Mt=[],zt=[];for(let Ei=0,Xi=0;Ei<_t.length;Ei++){if(!re[Ei])continue;qe[Ei]=Xi;const Zi=_t[Ei];zt[Ei]=this._isNativeHtmlTable?Array.from(Zi.children):[Zi];const sn=Zi.getBoundingClientRect().height;Xi+=sn,Mt[Ei]=sn}const bi=re.lastIndexOf(!0);this._coalescedStyleScheduler.schedule(()=>{var Ei,Xi;for(let Zi=0;Zi<_t.length;Zi++){if(!re[Zi])continue;const sn=qe[Zi],gn=Zi===bi;for(const jt of zt[Zi])this._addStickyStyle(jt,je,sn,gn)}"top"===je?null===(Ei=this._positionListener)||void 0===Ei||Ei.stickyHeaderRowsUpdated({sizes:Mt,offsets:qe,elements:zt}):null===(Xi=this._positionListener)||void 0===Xi||Xi.stickyFooterRowsUpdated({sizes:Mt,offsets:qe,elements:zt})})}updateStickyFooterContainer(Tt,pe){if(!this._isNativeHtmlTable)return;const je=Tt.querySelector("tfoot");this._coalescedStyleScheduler.schedule(()=>{pe.some(_t=>!_t)?this._removeStickyStyle(je,["bottom"]):this._addStickyStyle(je,"bottom",0,!1)})}_removeStickyStyle(Tt,pe){for(const _t of pe)Tt.style[_t]="",Tt.classList.remove(this._borderCellCss[_t]);V.some(_t=>-1===pe.indexOf(_t)&&Tt.style[_t])?Tt.style.zIndex=this._getCalculatedZIndex(Tt):(Tt.style.zIndex="",this._needsPositionStickyOnElement&&(Tt.style.position=""),Tt.classList.remove(this._stickCellCss))}_addStickyStyle(Tt,pe,je,_t){Tt.classList.add(this._stickCellCss),_t&&Tt.classList.add(this._borderCellCss[pe]),Tt.style[pe]=`${je}px`,Tt.style.zIndex=this._getCalculatedZIndex(Tt),this._needsPositionStickyOnElement&&(Tt.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(Tt){const pe={top:100,bottom:10,left:1,right:1};let je=0;for(const _t of V)Tt.style[_t]&&(je+=pe[_t]);return je?`${je}`:""}_getCellWidths(Tt,pe=!0){if(!pe&&this._cachedCellWidths.length)return this._cachedCellWidths;const je=[],_t=Tt.children;for(let re=0;re<_t.length;re++)je.push(_t[re].getBoundingClientRect().width);return this._cachedCellWidths=je,je}_getStickyStartColumnPositions(Tt,pe){const je=[];let _t=0;for(let re=0;re0;re--)pe[re]&&(je[re]=_t,_t+=Tt[re]);return je}}const ue=new t.OlP("CDK_SPL");let Le=(()=>{class ze{constructor(pe,je){this.viewContainer=pe,this.elementRef=je}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.s_b),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","rowOutlet",""]]}),ze})(),ut=(()=>{class ze{constructor(pe,je){this.viewContainer=pe,this.elementRef=je}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.s_b),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","headerRowOutlet",""]]}),ze})(),ht=(()=>{class ze{constructor(pe,je){this.viewContainer=pe,this.elementRef=je}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.s_b),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","footerRowOutlet",""]]}),ze})(),It=(()=>{class ze{constructor(pe,je){this.viewContainer=pe,this.elementRef=je}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.s_b),t.Y36(t.SBq))},ze.\u0275dir=t.lG2({type:ze,selectors:[["","noDataRowOutlet",""]]}),ze})(),Gt=(()=>{class ze{constructor(pe,je,_t,re,qe,Mt,zt,bi,Ei,Xi,Zi,sn){this._differs=pe,this._changeDetectorRef=je,this._elementRef=_t,this._dir=qe,this._platform=zt,this._viewRepeater=bi,this._coalescedStyleScheduler=Ei,this._viewportRuler=Xi,this._stickyPositioningListener=Zi,this._ngZone=sn,this._onDestroy=new a.x,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._stickyColumnStylesNeedReset=!0,this._forceRecalculateCellWidths=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this.needsPositionStickyOnElement=!0,this._isShowingNoDataRow=!1,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new t.vpe,this.viewChange=new d.X({start:0,end:Number.MAX_VALUE}),re||this._elementRef.nativeElement.setAttribute("role","table"),this._document=Mt,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName}get trackBy(){return this._trackByFn}set trackBy(pe){this._trackByFn=pe}get dataSource(){return this._dataSource}set dataSource(pe){this._dataSource!==pe&&this._switchDataSource(pe)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(pe){this._multiTemplateDataRows=(0,e.Ig)(pe),this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(pe){this._fixedLayout=(0,e.Ig)(pe),this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}ngOnInit(){this._setupStickyStyler(),this._isNativeHtmlTable&&this._applyNativeTableSections(),this._dataDiffer=this._differs.find([]).create((pe,je)=>this.trackBy?this.trackBy(je.dataIndex,je.data):je),this._viewportRuler.change().pipe((0,A.R)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentChecked(){this._cacheRowDefs(),this._cacheColumnDefs();const je=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||je,this._forceRecalculateCellWidths=je,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}ngOnDestroy(){[this._rowOutlet.viewContainer,this._headerRowOutlet.viewContainer,this._footerRowOutlet.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(pe=>{pe.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,f.Z9)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const pe=this._dataDiffer.diff(this._renderRows);if(!pe)return this._updateNoDataRow(),void this.contentChanged.next();const je=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(pe,je,(_t,re,qe)=>this._getEmbeddedViewArgs(_t.item,qe),_t=>_t.item.data,_t=>{1===_t.operation&&_t.context&&this._renderCellTemplateForItem(_t.record.item.rowDef,_t.context)}),this._updateRowIndexContext(),pe.forEachIdentityChange(_t=>{je.get(_t.currentIndex).context.$implicit=_t.item.data}),this._updateNoDataRow(),this._ngZone&&t.R0b.isInAngularZone()?this._ngZone.onStable.pipe((0,w.q)(1),(0,A.R)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(pe){this._customColumnDefs.add(pe)}removeColumnDef(pe){this._customColumnDefs.delete(pe)}addRowDef(pe){this._customRowDefs.add(pe)}removeRowDef(pe){this._customRowDefs.delete(pe)}addHeaderRowDef(pe){this._customHeaderRowDefs.add(pe),this._headerRowDefChanged=!0}removeHeaderRowDef(pe){this._customHeaderRowDefs.delete(pe),this._headerRowDefChanged=!0}addFooterRowDef(pe){this._customFooterRowDefs.add(pe),this._footerRowDefChanged=!0}removeFooterRowDef(pe){this._customFooterRowDefs.delete(pe),this._footerRowDefChanged=!0}setNoDataRow(pe){this._customNoDataRow=pe}updateStickyHeaderRowStyles(){const pe=this._getRenderedRows(this._headerRowOutlet),_t=this._elementRef.nativeElement.querySelector("thead");_t&&(_t.style.display=pe.length?"":"none");const re=this._headerRowDefs.map(qe=>qe.sticky);this._stickyStyler.clearStickyPositioning(pe,["top"]),this._stickyStyler.stickRows(pe,re,"top"),this._headerRowDefs.forEach(qe=>qe.resetStickyChanged())}updateStickyFooterRowStyles(){const pe=this._getRenderedRows(this._footerRowOutlet),_t=this._elementRef.nativeElement.querySelector("tfoot");_t&&(_t.style.display=pe.length?"":"none");const re=this._footerRowDefs.map(qe=>qe.sticky);this._stickyStyler.clearStickyPositioning(pe,["bottom"]),this._stickyStyler.stickRows(pe,re,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,re),this._footerRowDefs.forEach(qe=>qe.resetStickyChanged())}updateStickyColumnStyles(){const pe=this._getRenderedRows(this._headerRowOutlet),je=this._getRenderedRows(this._rowOutlet),_t=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...pe,...je,..._t],["left","right"]),this._stickyColumnStylesNeedReset=!1),pe.forEach((re,qe)=>{this._addStickyColumnStyles([re],this._headerRowDefs[qe])}),this._rowDefs.forEach(re=>{const qe=[];for(let Mt=0;Mt{this._addStickyColumnStyles([re],this._footerRowDefs[qe])}),Array.from(this._columnDefsByName.values()).forEach(re=>re.resetStickyChanged())}_getAllRenderRows(){const pe=[],je=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let _t=0;_t{const Mt=_t&&_t.has(qe)?_t.get(qe):[];if(Mt.length){const zt=Mt.shift();return zt.dataIndex=je,zt}return{data:pe,rowDef:qe,dataIndex:je}})}_cacheColumnDefs(){this._columnDefsByName.clear(),hi(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(je=>{this._columnDefsByName.has(je.name),this._columnDefsByName.set(je.name,je)})}_cacheRowDefs(){this._headerRowDefs=hi(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=hi(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=hi(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const pe=this._rowDefs.filter(je=>!je.when);this._defaultRowDef=pe[0]}_renderUpdatedColumns(){const pe=(qe,Mt)=>qe||!!Mt.getColumnsDiff(),je=this._rowDefs.reduce(pe,!1);je&&this._forceRenderDataRows();const _t=this._headerRowDefs.reduce(pe,!1);_t&&this._forceRenderHeaderRows();const re=this._footerRowDefs.reduce(pe,!1);return re&&this._forceRenderFooterRows(),je||_t||re}_switchDataSource(pe){this._data=[],(0,f.Z9)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),pe||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear()),this._dataSource=pe}_observeRenderChanges(){if(!this.dataSource)return;let pe;(0,f.Z9)(this.dataSource)?pe=this.dataSource.connect(this):(0,N.b)(this.dataSource)?pe=this.dataSource:Array.isArray(this.dataSource)&&(pe=(0,h.of)(this.dataSource)),this._renderChangeSubscription=pe.pipe((0,A.R)(this._onDestroy)).subscribe(je=>{this._data=je||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((pe,je)=>this._renderRow(this._headerRowOutlet,pe,je)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((pe,je)=>this._renderRow(this._footerRowOutlet,pe,je)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(pe,je){const _t=Array.from(je.columns||[]).map(Mt=>this._columnDefsByName.get(Mt)),re=_t.map(Mt=>Mt.sticky),qe=_t.map(Mt=>Mt.stickyEnd);this._stickyStyler.updateStickyColumns(pe,re,qe,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(pe){const je=[];for(let _t=0;_t!re.when||re.when(je,pe));else{let re=this._rowDefs.find(qe=>qe.when&&qe.when(je,pe))||this._defaultRowDef;re&&_t.push(re)}return _t}_getEmbeddedViewArgs(pe,je){return{templateRef:pe.rowDef.template,context:{$implicit:pe.data},index:je}}_renderRow(pe,je,_t,re={}){const qe=pe.viewContainer.createEmbeddedView(je.template,re,_t);return this._renderCellTemplateForItem(je,re),qe}_renderCellTemplateForItem(pe,je){for(let _t of this._getCellTemplates(pe))Ne.mostRecentCellOutlet&&Ne.mostRecentCellOutlet._viewContainer.createEmbeddedView(_t,je);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const pe=this._rowOutlet.viewContainer;for(let je=0,_t=pe.length;je<_t;je++){const qe=pe.get(je).context;qe.count=_t,qe.first=0===je,qe.last=je===_t-1,qe.even=je%2==0,qe.odd=!qe.even,this.multiTemplateDataRows?(qe.dataIndex=this._renderRows[je].dataIndex,qe.renderIndex=je):qe.index=this._renderRows[je].dataIndex}}_getCellTemplates(pe){return pe&&pe.columns?Array.from(pe.columns,je=>{const _t=this._columnDefsByName.get(je);return pe.extractCellTemplate(_t)}):[]}_applyNativeTableSections(){const pe=this._document.createDocumentFragment(),je=[{tag:"thead",outlets:[this._headerRowOutlet]},{tag:"tbody",outlets:[this._rowOutlet,this._noDataRowOutlet]},{tag:"tfoot",outlets:[this._footerRowOutlet]}];for(const _t of je){const re=this._document.createElement(_t.tag);re.setAttribute("role","rowgroup");for(const qe of _t.outlets)re.appendChild(qe.elementRef.nativeElement);pe.appendChild(re)}this._elementRef.nativeElement.appendChild(pe)}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const pe=(je,_t)=>je||_t.hasStickyChanged();this._headerRowDefs.reduce(pe,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(pe,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(pe,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new De(this._isNativeHtmlTable,this.stickyCssClass,this._dir?this._dir.value:"ltr",this._coalescedStyleScheduler,this._platform.isBrowser,this.needsPositionStickyOnElement,this._stickyPositioningListener),(this._dir?this._dir.change:(0,h.of)()).pipe((0,A.R)(this._onDestroy)).subscribe(je=>{this._stickyStyler.direction=je,this.updateStickyColumnStyles()})}_getOwnDefs(pe){return pe.filter(je=>!je._table||je._table===this)}_updateNoDataRow(){const pe=this._customNoDataRow||this._noDataRow;if(!pe)return;const je=0===this._rowOutlet.viewContainer.length;if(je===this._isShowingNoDataRow)return;const _t=this._noDataRowOutlet.viewContainer;if(je){const re=_t.createEmbeddedView(pe.templateRef),qe=re.rootNodes[0];1===re.rootNodes.length&&(null==qe?void 0:qe.nodeType)===this._document.ELEMENT_NODE&&(qe.setAttribute("role","row"),qe.classList.add(pe._contentClassName))}else _t.clear();this._isShowingNoDataRow=je}}return ze.\u0275fac=function(pe){return new(pe||ze)(t.Y36(t.ZZ4),t.Y36(t.sBO),t.Y36(t.SBq),t.$8M("role"),t.Y36(D.Is,8),t.Y36(M.K0),t.Y36(L.t4),t.Y36(f.k),t.Y36(E),t.Y36(k.rL),t.Y36(ue,12),t.Y36(t.R0b,8))},ze.\u0275cmp=t.Xpm({type:ze,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(pe,je,_t){if(1&pe&&(t.Suo(_t,ve,5),t.Suo(_t,y,5),t.Suo(_t,_e,5),t.Suo(_t,P,5),t.Suo(_t,he,5)),2&pe){let re;t.iGM(re=t.CRH())&&(je._noDataRow=re.first),t.iGM(re=t.CRH())&&(je._contentColumnDefs=re),t.iGM(re=t.CRH())&&(je._contentRowDefs=re),t.iGM(re=t.CRH())&&(je._contentHeaderRowDefs=re),t.iGM(re=t.CRH())&&(je._contentFooterRowDefs=re)}},viewQuery:function(pe,je){if(1&pe&&(t.Gf(Le,7),t.Gf(ut,7),t.Gf(ht,7),t.Gf(It,7)),2&pe){let _t;t.iGM(_t=t.CRH())&&(je._rowOutlet=_t.first),t.iGM(_t=t.CRH())&&(je._headerRowOutlet=_t.first),t.iGM(_t=t.CRH())&&(je._footerRowOutlet=_t.first),t.iGM(_t=t.CRH())&&(je._noDataRowOutlet=_t.first)}},hostAttrs:[1,"cdk-table"],hostVars:2,hostBindings:function(pe,je){2&pe&&t.ekj("cdk-table-fixed-layout",je.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:"multiTemplateDataRows",fixedLayout:"fixedLayout"},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],features:[t._Bn([{provide:$,useExisting:ze},{provide:f.k,useClass:f.yy},{provide:E,useClass:I},{provide:ue,useValue:null}])],ngContentSelectors:U,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(pe,je){1&pe&&(t.F$t(S),t.Hsn(0),t.Hsn(1,1),t.GkF(2,0)(3,1)(4,2)(5,3))},directives:[ut,Le,It,ht],styles:[".cdk-table-fixed-layout{table-layout:fixed}\n"],encapsulation:2}),ze})();function hi(ze,Tt){return ze.concat(Array.from(Tt))}let Ct=(()=>{class ze{}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275mod=t.oAB({type:ze}),ze.\u0275inj=t.cJS({imports:[[k.Cl]]}),ze})();var et=p(508),yt=p(6451),ei=p(9841),Yt=p(4004);const Pe=[[["caption"]],[["colgroup"],["col"]]],Oe=["caption","colgroup, col"];let mt=(()=>{class ze extends Gt{constructor(){super(...arguments),this.stickyCssClass="mat-table-sticky",this.needsPositionStickyOnElement=!1}}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275cmp=t.Xpm({type:ze,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-table"],hostVars:2,hostBindings:function(pe,je){2&pe&&t.ekj("mat-table-fixed-layout",je.fixedLayout)},exportAs:["matTable"],features:[t._Bn([{provide:f.k,useClass:f.yy},{provide:Gt,useExisting:ze},{provide:$,useExisting:ze},{provide:E,useClass:I},{provide:ue,useValue:null}]),t.qOj],ngContentSelectors:Oe,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(pe,je){1&pe&&(t.F$t(Pe),t.Hsn(0),t.Hsn(1,1),t.GkF(2,0)(3,1)(4,2)(5,3))},directives:[ut,Le,It,ht],styles:["mat-table{display:block}mat-header-row{min-height:56px}mat-row,mat-footer-row{min-height:48px}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}table.mat-table{border-spacing:0}tr.mat-header-row{height:56px}tr.mat-row,tr.mat-footer-row{height:48px}th.mat-header-cell{text-align:left}[dir=rtl] th.mat-header-cell{text-align:right}th.mat-header-cell,td.mat-cell,td.mat-footer-cell{padding:0;border-bottom-width:1px;border-bottom-style:solid}th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] th.mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] td.mat-cell:first-of-type:not(:only-of-type),[dir=rtl] td.mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] th.mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] td.mat-cell:last-of-type:not(:only-of-type),[dir=rtl] td.mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}.mat-table-sticky{position:sticky !important}.mat-table-fixed-layout{table-layout:fixed}\n"],encapsulation:2}),ze})(),Ht=(()=>{class ze extends te{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matCellDef",""]],features:[t._Bn([{provide:te,useExisting:ze}]),t.qOj]}),ze})(),it=(()=>{class ze extends ie{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matHeaderCellDef",""]],features:[t._Bn([{provide:ie,useExisting:ze}]),t.qOj]}),ze})(),Re=(()=>{class ze extends oe{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matFooterCellDef",""]],features:[t._Bn([{provide:oe,useExisting:ze}]),t.qOj]}),ze})(),tt=(()=>{class ze extends y{get name(){return this._name}set name(pe){this._setNameInput(pe)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matColumnDef",""]],inputs:{sticky:"sticky",name:["matColumnDef","name"]},features:[t._Bn([{provide:y,useExisting:ze},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:ze}]),t.qOj]}),ze})(),Xe=(()=>{class ze extends r{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-header-cell"],features:[t.qOj]}),ze})(),Se=(()=>{class ze extends u{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:["role","gridcell",1,"mat-footer-cell"],features:[t.qOj]}),ze})(),Ge=(()=>{class ze extends c{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:["role","gridcell",1,"mat-cell"],features:[t.qOj]}),ze})(),at=(()=>{class ze extends P{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matHeaderRowDef",""]],inputs:{columns:["matHeaderRowDef","columns"],sticky:["matHeaderRowDefSticky","sticky"]},features:[t._Bn([{provide:P,useExisting:ze}]),t.qOj]}),ze})(),st=(()=>{class ze extends he{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matFooterRowDef",""]],inputs:{columns:["matFooterRowDef","columns"],sticky:["matFooterRowDefSticky","sticky"]},features:[t._Bn([{provide:he,useExisting:ze}]),t.qOj]}),ze})(),bt=(()=>{class ze extends _e{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275dir=t.lG2({type:ze,selectors:[["","matRowDef",""]],inputs:{columns:["matRowDefColumns","columns"],when:["matRowDefWhen","when"]},features:[t._Bn([{provide:_e,useExisting:ze}]),t.qOj]}),ze})(),gi=(()=>{class ze extends we{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275cmp=t.Xpm({type:ze,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-header-row"],exportAs:["matHeaderRow"],features:[t._Bn([{provide:we,useExisting:ze}]),t.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(pe,je){1&pe&&t.GkF(0,0)},directives:[Ne],encapsulation:2}),ze})(),qt=(()=>{class ze extends Q{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275cmp=t.Xpm({type:ze,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-footer-row"],exportAs:["matFooterRow"],features:[t._Bn([{provide:Q,useExisting:ze}]),t.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(pe,je){1&pe&&t.GkF(0,0)},directives:[Ne],encapsulation:2}),ze})(),Xt=(()=>{class ze extends Ue{}return ze.\u0275fac=function(){let Tt;return function(je){return(Tt||(Tt=t.n5z(ze)))(je||ze)}}(),ze.\u0275cmp=t.Xpm({type:ze,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-row"],exportAs:["matRow"],features:[t._Bn([{provide:Ue,useExisting:ze}]),t.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(pe,je){1&pe&&t.GkF(0,0)},directives:[Ne],encapsulation:2}),ze})(),$i=(()=>{class ze{}return ze.\u0275fac=function(pe){return new(pe||ze)},ze.\u0275mod=t.oAB({type:ze}),ze.\u0275inj=t.cJS({imports:[[Ct,et.BQ],et.BQ]}),ze})();class zi extends f.o2{constructor(Tt=[]){super(),this._renderData=new d.X([]),this._filter=new d.X(""),this._internalPageChanges=new a.x,this._renderChangesSubscription=null,this.sortingDataAccessor=(pe,je)=>{const _t=pe[je];if((0,e.t6)(_t)){const re=Number(_t);return re<9007199254740991?re:_t}return _t},this.sortData=(pe,je)=>{const _t=je.active,re=je.direction;return _t&&""!=re?pe.sort((qe,Mt)=>{let zt=this.sortingDataAccessor(qe,_t),bi=this.sortingDataAccessor(Mt,_t);const Ei=typeof zt,Xi=typeof bi;Ei!==Xi&&("number"===Ei&&(zt+=""),"number"===Xi&&(bi+=""));let Zi=0;return null!=zt&&null!=bi?zt>bi?Zi=1:zt{const _t=Object.keys(pe).reduce((qe,Mt)=>qe+pe[Mt]+"\u25ec","").toLowerCase(),re=je.trim().toLowerCase();return-1!=_t.indexOf(re)},this._data=new d.X(Tt),this._updateChangeSubscription()}get data(){return this._data.value}set data(Tt){Tt=Array.isArray(Tt)?Tt:[],this._data.next(Tt),this._renderChangesSubscription||this._filterData(Tt)}get filter(){return this._filter.value}set filter(Tt){this._filter.next(Tt),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(Tt){this._sort=Tt,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(Tt){this._paginator=Tt,this._updateChangeSubscription()}_updateChangeSubscription(){var Tt;const pe=this._sort?(0,yt.T)(this._sort.sortChange,this._sort.initialized):(0,h.of)(null),je=this._paginator?(0,yt.T)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,h.of)(null),re=(0,ei.a)([this._data,this._filter]).pipe((0,Yt.U)(([zt])=>this._filterData(zt))),qe=(0,ei.a)([re,pe]).pipe((0,Yt.U)(([zt])=>this._orderData(zt))),Mt=(0,ei.a)([qe,je]).pipe((0,Yt.U)(([zt])=>this._pageData(zt)));null===(Tt=this._renderChangesSubscription)||void 0===Tt||Tt.unsubscribe(),this._renderChangesSubscription=Mt.subscribe(zt=>this._renderData.next(zt))}_filterData(Tt){return this.filteredData=null==this.filter||""===this.filter?Tt:Tt.filter(pe=>this.filterPredicate(pe,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(Tt){return this.sort?this.sortData(Tt.slice(),this.sort):Tt}_pageData(Tt){if(!this.paginator)return Tt;const pe=this.paginator.pageIndex*this.paginator.pageSize;return Tt.slice(pe,pe+this.paginator.pageSize)}_updatePaginator(Tt){Promise.resolve().then(()=>{const pe=this.paginator;if(pe&&(pe.length=Tt,pe.pageIndex>0)){const je=Math.ceil(pe.length/pe.pageSize)-1||0,_t=Math.min(pe.pageIndex,je);_t!==pe.pageIndex&&(pe.pageIndex=_t,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){var Tt;null===(Tt=this._renderChangesSubscription)||void 0===Tt||Tt.unsubscribe(),this._renderChangesSubscription=null}}class Ui extends zi{}},3251:(Ve,j,p)=>{"use strict";p.d(j,{BU:()=>ce,Nh:()=>it,Nj:()=>mt,SP:()=>Yt,uD:()=>Ae,uX:()=>xe});var t=p(5664),e=p(7144),f=p(7429),M=p(9808),a=p(5e3),b=p(508),d=p(6360),N=p(5698),h=p(8675),A=p(1884),w=p(2722),D=p(3900),L=p(5684),k=p(7579),S=p(727),U=p(4968),Z=p(9646),Y=p(6451),ne=p(515),$=p(8306),de=p(2805),te=p(1777),ie=p(226),oe=p(3191),X=p(1159),me=p(925),y=p(5303);function i(Re,tt){1&Re&&a.Hsn(0)}const r=["*"];function u(Re,tt){}const c=function(Re){return{animationDuration:Re}},_=function(Re,tt){return{value:Re,params:tt}},E=["tabListContainer"],I=["tabList"],v=["tabListInner"],n=["nextPaginator"],C=["previousPaginator"],B=["tabBodyWrapper"],P=["tabHeader"];function H(Re,tt){}function q(Re,tt){if(1&Re&&a.YNc(0,H,0,0,"ng-template",10),2&Re){const Xe=a.oxw().$implicit;a.Q6J("cdkPortalOutlet",Xe.templateLabel)}}function he(Re,tt){if(1&Re&&a._uU(0),2&Re){const Xe=a.oxw().$implicit;a.Oqu(Xe.textLabel)}}function _e(Re,tt){if(1&Re){const Xe=a.EpF();a.TgZ(0,"div",6),a.NdJ("click",function(){const Ge=a.CHM(Xe),at=Ge.$implicit,st=Ge.index,bt=a.oxw(),gi=a.MAs(1);return bt._handleClick(at,gi,st)})("cdkFocusChange",function(Ge){const st=a.CHM(Xe).index;return a.oxw()._tabFocusChanged(Ge,st)}),a.TgZ(1,"div",7),a.YNc(2,q,1,1,"ng-template",8),a.YNc(3,he,1,1,"ng-template",null,9,a.W1O),a.qZA()()}if(2&Re){const Xe=tt.$implicit,Se=tt.index,Ge=a.MAs(4),at=a.oxw();a.ekj("mat-tab-label-active",at.selectedIndex===Se),a.Q6J("id",at._getTabLabelId(Se))("ngClass",Xe.labelClass)("disabled",Xe.disabled)("matRippleDisabled",Xe.disabled||at.disableRipple),a.uIk("tabIndex",at._getTabIndex(Xe,Se))("aria-posinset",Se+1)("aria-setsize",at._tabs.length)("aria-controls",at._getTabContentId(Se))("aria-selected",at.selectedIndex===Se)("aria-label",Xe.ariaLabel||null)("aria-labelledby",!Xe.ariaLabel&&Xe.ariaLabelledby?Xe.ariaLabelledby:null),a.xp6(2),a.Q6J("ngIf",Xe.templateLabel)("ngIfElse",Ge)}}function Ne(Re,tt){if(1&Re){const Xe=a.EpF();a.TgZ(0,"mat-tab-body",11),a.NdJ("_onCentered",function(){return a.CHM(Xe),a.oxw()._removeTabBodyWrapperHeight()})("_onCentering",function(Ge){return a.CHM(Xe),a.oxw()._setTabBodyWrapperHeight(Ge)}),a.qZA()}if(2&Re){const Xe=tt.$implicit,Se=tt.index,Ge=a.oxw();a.ekj("mat-tab-body-active",Ge.selectedIndex===Se),a.Q6J("id",Ge._getTabContentId(Se))("ngClass",Xe.bodyClass)("content",Xe.content)("position",Xe.position)("origin",Xe.origin)("animationDuration",Ge.animationDuration),a.uIk("tabindex",null!=Ge.contentTabIndex&&Ge.selectedIndex===Se?Ge.contentTabIndex:null)("aria-labelledby",Ge._getTabLabelId(Se))}}const we=["mat-tab-nav-bar",""],Q=new a.OlP("MatInkBarPositioner",{providedIn:"root",factory:function Ue(){return tt=>({left:tt?(tt.offsetLeft||0)+"px":"0",width:tt?(tt.offsetWidth||0)+"px":"0"})}});let ve=(()=>{class Re{constructor(Xe,Se,Ge,at){this._elementRef=Xe,this._ngZone=Se,this._inkBarPositioner=Ge,this._animationMode=at}alignToElement(Xe){this.show(),this._ngZone.onStable.pipe((0,N.q)(1)).subscribe(()=>{const Se=this._inkBarPositioner(Xe),Ge=this._elementRef.nativeElement;Ge.style.left=Se.left,Ge.style.width=Se.width})}show(){this._elementRef.nativeElement.style.visibility="visible"}hide(){this._elementRef.nativeElement.style.visibility="hidden"}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(a.R0b),a.Y36(Q),a.Y36(d.Qb,8))},Re.\u0275dir=a.lG2({type:Re,selectors:[["mat-ink-bar"]],hostAttrs:[1,"mat-ink-bar"],hostVars:2,hostBindings:function(Xe,Se){2&Xe&&a.ekj("_mat-animation-noopable","NoopAnimations"===Se._animationMode)}}),Re})();const V=new a.OlP("MatTabContent"),dt=new a.OlP("MatTabLabel"),Ie=new a.OlP("MAT_TAB");let Ae=(()=>{class Re extends f.ig{constructor(Xe,Se,Ge){super(Xe,Se),this._closestTab=Ge}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.Rgc),a.Y36(a.s_b),a.Y36(Ie,8))},Re.\u0275dir=a.lG2({type:Re,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[a._Bn([{provide:dt,useExisting:Re}]),a.qOj]}),Re})();const le=(0,b.Id)(class{}),Te=new a.OlP("MAT_TAB_GROUP");let xe=(()=>{class Re extends le{constructor(Xe,Se){super(),this._viewContainerRef=Xe,this._closestTabGroup=Se,this.textLabel="",this._contentPortal=null,this._stateChanges=new k.x,this.position=null,this.origin=null,this.isActive=!1}get templateLabel(){return this._templateLabel}set templateLabel(Xe){this._setTemplateLabelInput(Xe)}get content(){return this._contentPortal}ngOnChanges(Xe){(Xe.hasOwnProperty("textLabel")||Xe.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new f.UE(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(Xe){Xe&&Xe._closestTab===this&&(this._templateLabel=Xe)}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.s_b),a.Y36(Te,8))},Re.\u0275cmp=a.Xpm({type:Re,selectors:[["mat-tab"]],contentQueries:function(Xe,Se,Ge){if(1&Xe&&(a.Suo(Ge,dt,5),a.Suo(Ge,V,7,a.Rgc)),2&Xe){let at;a.iGM(at=a.CRH())&&(Se.templateLabel=at.first),a.iGM(at=a.CRH())&&(Se._explicitContent=at.first)}},viewQuery:function(Xe,Se){if(1&Xe&&a.Gf(a.Rgc,7),2&Xe){let Ge;a.iGM(Ge=a.CRH())&&(Se._implicitContent=Ge.first)}},inputs:{disabled:"disabled",textLabel:["label","textLabel"],ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],features:[a._Bn([{provide:Ie,useExisting:Re}]),a.qOj,a.TTD],ngContentSelectors:r,decls:1,vars:0,template:function(Xe,Se){1&Xe&&(a.F$t(),a.YNc(0,i,1,0,"ng-template"))},encapsulation:2}),Re})();const W={translateTab:(0,te.X$)("translateTab",[(0,te.SB)("center, void, left-origin-center, right-origin-center",(0,te.oB)({transform:"none"})),(0,te.SB)("left",(0,te.oB)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px"})),(0,te.SB)("right",(0,te.oB)({transform:"translate3d(100%, 0, 0)",minHeight:"1px"})),(0,te.eR)("* => left, * => right, left => center, right => center",(0,te.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,te.eR)("void => left-origin-center",[(0,te.oB)({transform:"translate3d(-100%, 0, 0)"}),(0,te.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,te.eR)("void => right-origin-center",[(0,te.oB)({transform:"translate3d(100%, 0, 0)"}),(0,te.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let ee=(()=>{class Re extends f.Pl{constructor(Xe,Se,Ge,at){super(Xe,Se,at),this._host=Ge,this._centeringSub=S.w0.EMPTY,this._leavingSub=S.w0.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,h.O)(this._host._isCenterPosition(this._host._position))).subscribe(Xe=>{Xe&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a._Vd),a.Y36(a.s_b),a.Y36((0,a.Gpc)(()=>Ce)),a.Y36(M.K0))},Re.\u0275dir=a.lG2({type:Re,selectors:[["","matTabBodyHost",""]],features:[a.qOj]}),Re})(),ue=(()=>{class Re{constructor(Xe,Se,Ge){this._elementRef=Xe,this._dir=Se,this._dirChangeSubscription=S.w0.EMPTY,this._translateTabComplete=new k.x,this._onCentering=new a.vpe,this._beforeCentering=new a.vpe,this._afterLeavingCenter=new a.vpe,this._onCentered=new a.vpe(!0),this.animationDuration="500ms",Se&&(this._dirChangeSubscription=Se.change.subscribe(at=>{this._computePositionAnimationState(at),Ge.markForCheck()})),this._translateTabComplete.pipe((0,A.x)((at,st)=>at.fromState===st.fromState&&at.toState===st.toState)).subscribe(at=>{this._isCenterPosition(at.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(at.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}set position(Xe){this._positionIndex=Xe,this._computePositionAnimationState()}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(Xe){const Se=this._isCenterPosition(Xe.toState);this._beforeCentering.emit(Se),Se&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(Xe){return"center"==Xe||"left-origin-center"==Xe||"right-origin-center"==Xe}_computePositionAnimationState(Xe=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==Xe?"left":"right":this._positionIndex>0?"ltr"==Xe?"right":"left":"center"}_computePositionFromOrigin(Xe){const Se=this._getLayoutDirection();return"ltr"==Se&&Xe<=0||"rtl"==Se&&Xe>0?"left-origin-center":"right-origin-center"}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(ie.Is,8),a.Y36(a.sBO))},Re.\u0275dir=a.lG2({type:Re,inputs:{_content:["content","_content"],origin:"origin",animationDuration:"animationDuration",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"}}),Re})(),Ce=(()=>{class Re extends ue{constructor(Xe,Se,Ge){super(Xe,Se,Ge)}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(ie.Is,8),a.Y36(a.sBO))},Re.\u0275cmp=a.Xpm({type:Re,selectors:[["mat-tab-body"]],viewQuery:function(Xe,Se){if(1&Xe&&a.Gf(f.Pl,5),2&Xe){let Ge;a.iGM(Ge=a.CRH())&&(Se._portalHost=Ge.first)}},hostAttrs:[1,"mat-tab-body"],features:[a.qOj],decls:3,vars:6,consts:[["cdkScrollable","",1,"mat-tab-body-content"],["content",""],["matTabBodyHost",""]],template:function(Xe,Se){1&Xe&&(a.TgZ(0,"div",0,1),a.NdJ("@translateTab.start",function(at){return Se._onTranslateTabStarted(at)})("@translateTab.done",function(at){return Se._translateTabComplete.next(at)}),a.YNc(2,u,0,0,"ng-template",2),a.qZA()),2&Xe&&a.Q6J("@translateTab",a.WLB(3,_,Se._position,a.VKq(1,c,Se.animationDuration)))},directives:[ee],styles:['.mat-tab-body-content{height:100%;overflow:auto}.mat-tab-group-dynamic-height .mat-tab-body-content{overflow:hidden}.mat-tab-body-content[style*="visibility: hidden"]{display:none}\n'],encapsulation:2,data:{animation:[W.translateTab]}}),Re})();const Le=new a.OlP("MAT_TABS_CONFIG"),ut=(0,b.Id)(class{});let ht=(()=>{class Re extends ut{constructor(Xe){super(),this.elementRef=Xe}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq))},Re.\u0275dir=a.lG2({type:Re,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Xe,Se){2&Xe&&(a.uIk("aria-disabled",!!Se.disabled),a.ekj("mat-tab-disabled",Se.disabled))},inputs:{disabled:"disabled"},features:[a.qOj]}),Re})();const It=(0,me.i$)({passive:!0});let hi=(()=>{class Re{constructor(Xe,Se,Ge,at,st,bt,gi){this._elementRef=Xe,this._changeDetectorRef=Se,this._viewportRuler=Ge,this._dir=at,this._ngZone=st,this._platform=bt,this._animationMode=gi,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new k.x,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new k.x,this.disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new a.vpe,this.indexFocused=new a.vpe,st.runOutsideAngular(()=>{(0,U.R)(Xe.nativeElement,"mouseleave").pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}get selectedIndex(){return this._selectedIndex}set selectedIndex(Xe){Xe=(0,oe.su)(Xe),this._selectedIndex!=Xe&&(this._selectedIndexChanged=!0,this._selectedIndex=Xe,this._keyManager&&this._keyManager.updateActiveItem(Xe))}ngAfterViewInit(){(0,U.R)(this._previousPaginator.nativeElement,"touchstart",It).pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,U.R)(this._nextPaginator.nativeElement,"touchstart",It).pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const Xe=this._dir?this._dir.change:(0,Z.of)("ltr"),Se=this._viewportRuler.change(150),Ge=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new t.Em(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap(),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,N.q)(1)).subscribe(Ge),(0,Y.T)(Xe,Se,this._items.changes,this._itemsResized()).pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ge()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.pipe((0,w.R)(this._destroyed)).subscribe(at=>{this.indexFocused.emit(at),this._setTabFocus(at)})}_itemsResized(){return"function"!=typeof ResizeObserver?ne.E:this._items.changes.pipe((0,h.O)(this._items),(0,D.w)(Xe=>new $.y(Se=>this._ngZone.runOutsideAngular(()=>{const Ge=new ResizeObserver(()=>{Se.next()});return Xe.forEach(at=>{Ge.observe(at.elementRef.nativeElement)}),()=>{Ge.disconnect()}}))),(0,L.T)(1))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(Xe){if(!(0,X.Vb)(Xe))switch(Xe.keyCode){case X.K5:case X.L_:this.focusIndex!==this.selectedIndex&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(Xe));break;default:this._keyManager.onKeydown(Xe)}}_onContentChanges(){const Xe=this._elementRef.nativeElement.textContent;Xe!==this._currentTextContent&&(this._currentTextContent=Xe||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(Xe){!this._isValidIndex(Xe)||this.focusIndex===Xe||!this._keyManager||this._keyManager.setActiveItem(Xe)}_isValidIndex(Xe){if(!this._items)return!0;const Se=this._items?this._items.toArray()[Xe]:null;return!!Se&&!Se.disabled}_setTabFocus(Xe){if(this._showPaginationControls&&this._scrollToLabel(Xe),this._items&&this._items.length){this._items.toArray()[Xe].focus();const Se=this._tabListContainer.nativeElement;Se.scrollLeft="ltr"==this._getLayoutDirection()?0:Se.scrollWidth-Se.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const Xe=this.scrollDistance,Se="ltr"===this._getLayoutDirection()?-Xe:Xe;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Se)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(Xe){this._scrollTo(Xe)}_scrollHeader(Xe){return this._scrollTo(this._scrollDistance+("before"==Xe?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(Xe){this._stopInterval(),this._scrollHeader(Xe)}_scrollToLabel(Xe){if(this.disablePagination)return;const Se=this._items?this._items.toArray()[Xe]:null;if(!Se)return;const Ge=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:at,offsetWidth:st}=Se.elementRef.nativeElement;let bt,gi;"ltr"==this._getLayoutDirection()?(bt=at,gi=bt+st):(gi=this._tabListInner.nativeElement.offsetWidth-at,bt=gi-st);const qt=this.scrollDistance,Xt=this.scrollDistance+Ge;btXt&&(this.scrollDistance+=gi-Xt+60)}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const Xe=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;Xe||(this.scrollDistance=0),Xe!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=Xe}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const Xe=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Se=Xe?Xe.elementRef.nativeElement:null;Se?this._inkBar.alignToElement(Se):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(Xe,Se){Se&&null!=Se.button&&0!==Se.button||(this._stopInterval(),(0,de.H)(650,100).pipe((0,w.R)((0,Y.T)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Ge,distance:at}=this._scrollHeader(Xe);(0===at||at>=Ge)&&this._stopInterval()}))}_scrollTo(Xe){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Se=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Se,Xe)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Se,distance:this._scrollDistance}}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(y.rL),a.Y36(ie.Is,8),a.Y36(a.R0b),a.Y36(me.t4),a.Y36(d.Qb,8))},Re.\u0275dir=a.lG2({type:Re,inputs:{disablePagination:"disablePagination"}}),Re})(),xt=(()=>{class Re extends hi{constructor(Xe,Se,Ge,at,st,bt,gi){super(Xe,Se,Ge,at,st,bt,gi),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(Xe){this._disableRipple=(0,oe.Ig)(Xe)}_itemSelected(Xe){Xe.preventDefault()}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(y.rL),a.Y36(ie.Is,8),a.Y36(a.R0b),a.Y36(me.t4),a.Y36(d.Qb,8))},Re.\u0275dir=a.lG2({type:Re,inputs:{disableRipple:"disableRipple"},features:[a.qOj]}),Re})(),Nt=(()=>{class Re extends xt{constructor(Xe,Se,Ge,at,st,bt,gi){super(Xe,Se,Ge,at,st,bt,gi)}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(y.rL),a.Y36(ie.Is,8),a.Y36(a.R0b),a.Y36(me.t4),a.Y36(d.Qb,8))},Re.\u0275cmp=a.Xpm({type:Re,selectors:[["mat-tab-header"]],contentQueries:function(Xe,Se,Ge){if(1&Xe&&a.Suo(Ge,ht,4),2&Xe){let at;a.iGM(at=a.CRH())&&(Se._items=at)}},viewQuery:function(Xe,Se){if(1&Xe&&(a.Gf(ve,7),a.Gf(E,7),a.Gf(I,7),a.Gf(v,7),a.Gf(n,5),a.Gf(C,5)),2&Xe){let Ge;a.iGM(Ge=a.CRH())&&(Se._inkBar=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabListContainer=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabList=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabListInner=Ge.first),a.iGM(Ge=a.CRH())&&(Se._nextPaginator=Ge.first),a.iGM(Ge=a.CRH())&&(Se._previousPaginator=Ge.first)}},hostAttrs:[1,"mat-tab-header"],hostVars:4,hostBindings:function(Xe,Se){2&Xe&&a.ekj("mat-tab-header-pagination-controls-enabled",Se._showPaginationControls)("mat-tab-header-rtl","rtl"==Se._getLayoutDirection())},inputs:{selectedIndex:"selectedIndex"},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[a.qOj],ngContentSelectors:r,decls:14,vars:10,consts:[["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-before","mat-elevation-z4",3,"matRippleDisabled","disabled","click","mousedown","touchend"],["previousPaginator",""],[1,"mat-tab-header-pagination-chevron"],[1,"mat-tab-label-container",3,"keydown"],["tabListContainer",""],["role","tablist",1,"mat-tab-list",3,"cdkObserveContent"],["tabList",""],[1,"mat-tab-labels"],["tabListInner",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-after","mat-elevation-z4",3,"matRippleDisabled","disabled","mousedown","click","touchend"],["nextPaginator",""]],template:function(Xe,Se){1&Xe&&(a.F$t(),a.TgZ(0,"button",0,1),a.NdJ("click",function(){return Se._handlePaginatorClick("before")})("mousedown",function(at){return Se._handlePaginatorPress("before",at)})("touchend",function(){return Se._stopInterval()}),a._UZ(2,"div",2),a.qZA(),a.TgZ(3,"div",3,4),a.NdJ("keydown",function(at){return Se._handleKeydown(at)}),a.TgZ(5,"div",5,6),a.NdJ("cdkObserveContent",function(){return Se._onContentChanges()}),a.TgZ(7,"div",7,8),a.Hsn(9),a.qZA(),a._UZ(10,"mat-ink-bar"),a.qZA()(),a.TgZ(11,"button",9,10),a.NdJ("mousedown",function(at){return Se._handlePaginatorPress("after",at)})("click",function(){return Se._handlePaginatorClick("after")})("touchend",function(){return Se._stopInterval()}),a._UZ(13,"div",2),a.qZA()),2&Xe&&(a.ekj("mat-tab-header-pagination-disabled",Se._disableScrollBefore),a.Q6J("matRippleDisabled",Se._disableScrollBefore||Se.disableRipple)("disabled",Se._disableScrollBefore||null),a.xp6(5),a.ekj("_mat-animation-noopable","NoopAnimations"===Se._animationMode),a.xp6(6),a.ekj("mat-tab-header-pagination-disabled",Se._disableScrollAfter),a.Q6J("matRippleDisabled",Se._disableScrollAfter||Se.disableRipple)("disabled",Se._disableScrollAfter||null))},directives:[b.wG,e.wD,ve],styles:[".mat-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mat-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:transparent;touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-tab-header-pagination::-moz-focus-inner{border:0}.mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination{display:flex}.mat-tab-header-pagination-before,.mat-tab-header-rtl .mat-tab-header-pagination-after{padding-left:4px}.mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-rtl .mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-tab-header-rtl .mat-tab-header-pagination-before,.mat-tab-header-pagination-after{padding-right:4px}.mat-tab-header-rtl .mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px}.mat-tab-header-pagination-disabled{box-shadow:none;cursor:default}.mat-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-ink-bar{position:absolute;bottom:0;height:2px;transition:500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable.mat-ink-bar{transition:none;animation:none}.mat-tab-group-inverted-header .mat-ink-bar{bottom:auto;top:0}.cdk-high-contrast-active .mat-ink-bar{outline:solid 2px;height:0}.mat-tab-labels{display:flex}[mat-align-tabs=center]>.mat-tab-header .mat-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-tab-header .mat-tab-labels{justify-content:flex-end}.mat-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}._mat-animation-noopable.mat-tab-list{transition:none;animation:none}.mat-tab-label{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;position:relative}.mat-tab-label:focus{outline:none}.mat-tab-label:focus:not(.mat-tab-disabled){opacity:1}.cdk-high-contrast-active .mat-tab-label:focus{outline:dotted 2px;outline-offset:-2px}.mat-tab-label.mat-tab-disabled{cursor:default}.cdk-high-contrast-active .mat-tab-label.mat-tab-disabled{opacity:.5}.mat-tab-label .mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}.cdk-high-contrast-active .mat-tab-label{opacity:1}@media(max-width: 599px){.mat-tab-label{min-width:72px}}\n"],encapsulation:2}),Re})(),Ct=0;class et{}const yt=(0,b.pj)((0,b.Kr)(class{constructor(Re){this._elementRef=Re}}),"primary");let ei=(()=>{class Re extends yt{constructor(Xe,Se,Ge,at){var st;super(Xe),this._changeDetectorRef=Se,this._animationMode=at,this._tabs=new a.n_E,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=S.w0.EMPTY,this._tabLabelSubscription=S.w0.EMPTY,this._selectedIndex=null,this.headerPosition="above",this.selectedIndexChange=new a.vpe,this.focusChange=new a.vpe,this.animationDone=new a.vpe,this.selectedTabChange=new a.vpe(!0),this._groupId=Ct++,this.animationDuration=Ge&&Ge.animationDuration?Ge.animationDuration:"500ms",this.disablePagination=!(!Ge||null==Ge.disablePagination)&&Ge.disablePagination,this.dynamicHeight=!(!Ge||null==Ge.dynamicHeight)&&Ge.dynamicHeight,this.contentTabIndex=null!==(st=null==Ge?void 0:Ge.contentTabIndex)&&void 0!==st?st:null}get dynamicHeight(){return this._dynamicHeight}set dynamicHeight(Xe){this._dynamicHeight=(0,oe.Ig)(Xe)}get selectedIndex(){return this._selectedIndex}set selectedIndex(Xe){this._indexToSelect=(0,oe.su)(Xe,null)}get animationDuration(){return this._animationDuration}set animationDuration(Xe){this._animationDuration=/^\d+$/.test(Xe+"")?Xe+"ms":Xe}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(Xe){this._contentTabIndex=(0,oe.su)(Xe,null)}get backgroundColor(){return this._backgroundColor}set backgroundColor(Xe){const Se=this._elementRef.nativeElement;Se.classList.remove(`mat-background-${this.backgroundColor}`),Xe&&Se.classList.add(`mat-background-${Xe}`),this._backgroundColor=Xe}ngAfterContentChecked(){const Xe=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=Xe){const Se=null==this._selectedIndex;if(!Se){this.selectedTabChange.emit(this._createChangeEvent(Xe));const Ge=this._tabBodyWrapper.nativeElement;Ge.style.minHeight=Ge.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Ge,at)=>Ge.isActive=at===Xe),Se||(this.selectedIndexChange.emit(Xe),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Se,Ge)=>{Se.position=Ge-Xe,null!=this._selectedIndex&&0==Se.position&&!Se.origin&&(Se.origin=Xe-this._selectedIndex)}),this._selectedIndex!==Xe&&(this._selectedIndex=Xe,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const Xe=this._clampTabIndex(this._indexToSelect);if(Xe===this._selectedIndex){const Se=this._tabs.toArray();let Ge;for(let at=0;at{Se[Xe].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(Xe))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,h.O)(this._allTabs)).subscribe(Xe=>{this._tabs.reset(Xe.filter(Se=>Se._closestTabGroup===this||!Se._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(Xe){const Se=this._tabHeader;Se&&(Se.focusIndex=Xe)}_focusChanged(Xe){this._lastFocusedTabIndex=Xe,this.focusChange.emit(this._createChangeEvent(Xe))}_createChangeEvent(Xe){const Se=new et;return Se.index=Xe,this._tabs&&this._tabs.length&&(Se.tab=this._tabs.toArray()[Xe]),Se}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,Y.T)(...this._tabs.map(Xe=>Xe._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(Xe){return Math.min(this._tabs.length-1,Math.max(Xe||0,0))}_getTabLabelId(Xe){return`mat-tab-label-${this._groupId}-${Xe}`}_getTabContentId(Xe){return`mat-tab-content-${this._groupId}-${Xe}`}_setTabBodyWrapperHeight(Xe){if(!this._dynamicHeight||!this._tabBodyWrapperHeight)return;const Se=this._tabBodyWrapper.nativeElement;Se.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Se.style.height=Xe+"px")}_removeTabBodyWrapperHeight(){const Xe=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=Xe.clientHeight,Xe.style.height="",this.animationDone.emit()}_handleClick(Xe,Se,Ge){Xe.disabled||(this.selectedIndex=Se.focusIndex=Ge)}_getTabIndex(Xe,Se){var Ge;return Xe.disabled?null:Se===(null!==(Ge=this._lastFocusedTabIndex)&&void 0!==Ge?Ge:this.selectedIndex)?0:-1}_tabFocusChanged(Xe,Se){Xe&&"mouse"!==Xe&&"touch"!==Xe&&(this._tabHeader.focusIndex=Se)}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(Le,8),a.Y36(d.Qb,8))},Re.\u0275dir=a.lG2({type:Re,inputs:{dynamicHeight:"dynamicHeight",selectedIndex:"selectedIndex",headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:"contentTabIndex",disablePagination:"disablePagination",backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},features:[a.qOj]}),Re})(),Yt=(()=>{class Re extends ei{constructor(Xe,Se,Ge,at){super(Xe,Se,Ge,at)}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(a.sBO),a.Y36(Le,8),a.Y36(d.Qb,8))},Re.\u0275cmp=a.Xpm({type:Re,selectors:[["mat-tab-group"]],contentQueries:function(Xe,Se,Ge){if(1&Xe&&a.Suo(Ge,xe,5),2&Xe){let at;a.iGM(at=a.CRH())&&(Se._allTabs=at)}},viewQuery:function(Xe,Se){if(1&Xe&&(a.Gf(B,5),a.Gf(P,5)),2&Xe){let Ge;a.iGM(Ge=a.CRH())&&(Se._tabBodyWrapper=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabHeader=Ge.first)}},hostAttrs:[1,"mat-tab-group"],hostVars:4,hostBindings:function(Xe,Se){2&Xe&&a.ekj("mat-tab-group-dynamic-height",Se.dynamicHeight)("mat-tab-group-inverted-header","below"===Se.headerPosition)},inputs:{color:"color",disableRipple:"disableRipple"},exportAs:["matTabGroup"],features:[a._Bn([{provide:Te,useExisting:Re}]),a.qOj],decls:6,vars:7,consts:[[3,"selectedIndex","disableRipple","disablePagination","indexFocused","selectFocusedIndex"],["tabHeader",""],["class","mat-tab-label mat-focus-indicator","role","tab","matTabLabelWrapper","","mat-ripple","","cdkMonitorElementFocus","",3,"id","mat-tab-label-active","ngClass","disabled","matRippleDisabled","click","cdkFocusChange",4,"ngFor","ngForOf"],[1,"mat-tab-body-wrapper"],["tabBodyWrapper",""],["role","tabpanel",3,"id","mat-tab-body-active","ngClass","content","position","origin","animationDuration","_onCentered","_onCentering",4,"ngFor","ngForOf"],["role","tab","matTabLabelWrapper","","mat-ripple","","cdkMonitorElementFocus","",1,"mat-tab-label","mat-focus-indicator",3,"id","ngClass","disabled","matRippleDisabled","click","cdkFocusChange"],[1,"mat-tab-label-content"],[3,"ngIf","ngIfElse"],["tabTextLabel",""],[3,"cdkPortalOutlet"],["role","tabpanel",3,"id","ngClass","content","position","origin","animationDuration","_onCentered","_onCentering"]],template:function(Xe,Se){1&Xe&&(a.TgZ(0,"mat-tab-header",0,1),a.NdJ("indexFocused",function(at){return Se._focusChanged(at)})("selectFocusedIndex",function(at){return Se.selectedIndex=at}),a.YNc(2,_e,5,15,"div",2),a.qZA(),a.TgZ(3,"div",3,4),a.YNc(5,Ne,1,10,"mat-tab-body",5),a.qZA()),2&Xe&&(a.Q6J("selectedIndex",Se.selectedIndex||0)("disableRipple",Se.disableRipple)("disablePagination",Se.disablePagination),a.xp6(2),a.Q6J("ngForOf",Se._tabs),a.xp6(1),a.ekj("_mat-animation-noopable","NoopAnimations"===Se._animationMode),a.xp6(2),a.Q6J("ngForOf",Se._tabs))},directives:[Nt,Ce,M.sg,ht,b.wG,t.kH,M.mk,M.O5,f.Pl],styles:[".mat-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-tab-group.mat-tab-group-inverted-header{flex-direction:column-reverse}.mat-tab-label{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;position:relative}.mat-tab-label:focus{outline:none}.mat-tab-label:focus:not(.mat-tab-disabled){opacity:1}.cdk-high-contrast-active .mat-tab-label:focus{outline:dotted 2px;outline-offset:-2px}.mat-tab-label.mat-tab-disabled{cursor:default}.cdk-high-contrast-active .mat-tab-label.mat-tab-disabled{opacity:.5}.mat-tab-label .mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}.cdk-high-contrast-active .mat-tab-label{opacity:1}@media(max-width: 599px){.mat-tab-label{padding:0 12px}}@media(max-width: 959px){.mat-tab-label{padding:0 12px}}.mat-tab-group[mat-stretch-tabs]>.mat-tab-header .mat-tab-label{flex-basis:0;flex-grow:1}.mat-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable.mat-tab-body-wrapper{transition:none;animation:none}.mat-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-tab-body.mat-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-tab-group.mat-tab-group-dynamic-height .mat-tab-body.mat-tab-body-active{overflow-y:hidden}\n"],encapsulation:2}),Re})(),Pe=0,Oe=(()=>{class Re extends hi{constructor(Xe,Se,Ge,at,st,bt,gi){super(Xe,at,st,Se,Ge,bt,gi),this._disableRipple=!1,this.color="primary"}get backgroundColor(){return this._backgroundColor}set backgroundColor(Xe){const Se=this._elementRef.nativeElement.classList;Se.remove(`mat-background-${this.backgroundColor}`),Xe&&Se.add(`mat-background-${Xe}`),this._backgroundColor=Xe}get disableRipple(){return this._disableRipple}set disableRipple(Xe){this._disableRipple=(0,oe.Ig)(Xe)}_itemSelected(){}ngAfterContentInit(){this._items.changes.pipe((0,h.O)(null),(0,w.R)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}updateActiveLink(){if(!this._items)return;const Xe=this._items.toArray();for(let Se=0;Se{class Re extends Oe{constructor(Xe,Se,Ge,at,st,bt,gi){super(Xe,Se,Ge,at,st,bt,gi)}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(a.SBq),a.Y36(ie.Is,8),a.Y36(a.R0b),a.Y36(a.sBO),a.Y36(y.rL),a.Y36(me.t4),a.Y36(d.Qb,8))},Re.\u0275cmp=a.Xpm({type:Re,selectors:[["","mat-tab-nav-bar",""]],contentQueries:function(Xe,Se,Ge){if(1&Xe&&a.Suo(Ge,mt,5),2&Xe){let at;a.iGM(at=a.CRH())&&(Se._items=at)}},viewQuery:function(Xe,Se){if(1&Xe&&(a.Gf(ve,7),a.Gf(E,7),a.Gf(I,7),a.Gf(v,7),a.Gf(n,5),a.Gf(C,5)),2&Xe){let Ge;a.iGM(Ge=a.CRH())&&(Se._inkBar=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabListContainer=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabList=Ge.first),a.iGM(Ge=a.CRH())&&(Se._tabListInner=Ge.first),a.iGM(Ge=a.CRH())&&(Se._nextPaginator=Ge.first),a.iGM(Ge=a.CRH())&&(Se._previousPaginator=Ge.first)}},hostAttrs:[1,"mat-tab-nav-bar","mat-tab-header"],hostVars:11,hostBindings:function(Xe,Se){2&Xe&&(a.uIk("role",Se._getRole()),a.ekj("mat-tab-header-pagination-controls-enabled",Se._showPaginationControls)("mat-tab-header-rtl","rtl"==Se._getLayoutDirection())("mat-primary","warn"!==Se.color&&"accent"!==Se.color)("mat-accent","accent"===Se.color)("mat-warn","warn"===Se.color))},inputs:{color:"color"},exportAs:["matTabNavBar","matTabNav"],features:[a.qOj],attrs:we,ngContentSelectors:r,decls:14,vars:10,consts:[["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-before","mat-elevation-z4",3,"matRippleDisabled","disabled","click","mousedown","touchend"],["previousPaginator",""],[1,"mat-tab-header-pagination-chevron"],[1,"mat-tab-link-container",3,"keydown"],["tabListContainer",""],[1,"mat-tab-list",3,"cdkObserveContent"],["tabList",""],[1,"mat-tab-links"],["tabListInner",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-tab-header-pagination","mat-tab-header-pagination-after","mat-elevation-z4",3,"matRippleDisabled","disabled","mousedown","click","touchend"],["nextPaginator",""]],template:function(Xe,Se){1&Xe&&(a.F$t(),a.TgZ(0,"button",0,1),a.NdJ("click",function(){return Se._handlePaginatorClick("before")})("mousedown",function(at){return Se._handlePaginatorPress("before",at)})("touchend",function(){return Se._stopInterval()}),a._UZ(2,"div",2),a.qZA(),a.TgZ(3,"div",3,4),a.NdJ("keydown",function(at){return Se._handleKeydown(at)}),a.TgZ(5,"div",5,6),a.NdJ("cdkObserveContent",function(){return Se._onContentChanges()}),a.TgZ(7,"div",7,8),a.Hsn(9),a.qZA(),a._UZ(10,"mat-ink-bar"),a.qZA()(),a.TgZ(11,"button",9,10),a.NdJ("mousedown",function(at){return Se._handlePaginatorPress("after",at)})("click",function(){return Se._handlePaginatorClick("after")})("touchend",function(){return Se._stopInterval()}),a._UZ(13,"div",2),a.qZA()),2&Xe&&(a.ekj("mat-tab-header-pagination-disabled",Se._disableScrollBefore),a.Q6J("matRippleDisabled",Se._disableScrollBefore||Se.disableRipple)("disabled",Se._disableScrollBefore||null),a.xp6(5),a.ekj("_mat-animation-noopable","NoopAnimations"===Se._animationMode),a.xp6(6),a.ekj("mat-tab-header-pagination-disabled",Se._disableScrollAfter),a.Q6J("matRippleDisabled",Se._disableScrollAfter||Se.disableRipple)("disabled",Se._disableScrollAfter||null))},directives:[b.wG,e.wD,ve],styles:[".mat-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mat-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:transparent;touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-tab-header-pagination::-moz-focus-inner{border:0}.mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination{display:flex}.mat-tab-header-pagination-before,.mat-tab-header-rtl .mat-tab-header-pagination-after{padding-left:4px}.mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-rtl .mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-tab-header-rtl .mat-tab-header-pagination-before,.mat-tab-header-pagination-after{padding-right:4px}.mat-tab-header-rtl .mat-tab-header-pagination-before .mat-tab-header-pagination-chevron,.mat-tab-header-pagination-after .mat-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px}.mat-tab-header-pagination-disabled{box-shadow:none;cursor:default}.mat-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-tab-links{display:flex}[mat-align-tabs=center]>.mat-tab-link-container .mat-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-tab-link-container .mat-tab-links{justify-content:flex-end}.mat-ink-bar{position:absolute;bottom:0;height:2px;transition:500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable.mat-ink-bar{transition:none;animation:none}.mat-tab-group-inverted-header .mat-ink-bar{bottom:auto;top:0}.cdk-high-contrast-active .mat-ink-bar{outline:solid 2px;height:0}.mat-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}.mat-tab-link{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;vertical-align:top;text-decoration:none;position:relative;overflow:hidden;-webkit-tap-highlight-color:transparent}.mat-tab-link:focus{outline:none}.mat-tab-link:focus:not(.mat-tab-disabled){opacity:1}.cdk-high-contrast-active .mat-tab-link:focus{outline:dotted 2px;outline-offset:-2px}.mat-tab-link.mat-tab-disabled{cursor:default}.cdk-high-contrast-active .mat-tab-link.mat-tab-disabled{opacity:.5}.mat-tab-link .mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}.cdk-high-contrast-active .mat-tab-link{opacity:1}[mat-stretch-tabs] .mat-tab-link{flex-basis:0;flex-grow:1}.mat-tab-link.mat-tab-disabled{pointer-events:none}@media(max-width: 599px){.mat-tab-link{min-width:72px}}\n"],encapsulation:2}),Re})();const be=(0,b.sb)((0,b.Kr)((0,b.Id)(class{})));let pt=(()=>{class Re extends be{constructor(Xe,Se,Ge,at,st,bt){super(),this._tabNavBar=Xe,this.elementRef=Se,this._focusMonitor=st,this._isActive=!1,this.id="mat-tab-link-"+Pe++,this.rippleConfig=Ge||{},this.tabIndex=parseInt(at)||0,"NoopAnimations"===bt&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0})}get active(){return this._isActive}set active(Xe){const Se=(0,oe.Ig)(Xe);Se!==this._isActive&&(this._isActive=Se,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(Xe){this._tabNavBar.tabPanel&&Xe.keyCode===X.L_&&this.elementRef.nativeElement.click()}_getAriaControls(){var Xe;return this._tabNavBar.tabPanel?null===(Xe=this._tabNavBar.tabPanel)||void 0===Xe?void 0:Xe.id:this.elementRef.nativeElement.getAttribute("aria-controls")}_getAriaSelected(){return this._tabNavBar.tabPanel?this.active?"true":"false":this.elementRef.nativeElement.getAttribute("aria-selected")}_getAriaCurrent(){return this.active&&!this._tabNavBar.tabPanel?"page":null}_getRole(){return this._tabNavBar.tabPanel?"tab":this.elementRef.nativeElement.getAttribute("role")}_getTabIndex(){return this._tabNavBar.tabPanel?this._isActive?0:-1:this.tabIndex}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(Oe),a.Y36(a.SBq),a.Y36(b.Y2,8),a.$8M("tabindex"),a.Y36(t.tE),a.Y36(d.Qb,8))},Re.\u0275dir=a.lG2({type:Re,inputs:{active:"active",id:"id"},features:[a.qOj]}),Re})(),mt=(()=>{class Re extends pt{constructor(Xe,Se,Ge,at,st,bt,gi,qt){super(Xe,Se,st,bt,gi,qt),this._tabLinkRipple=new b.IR(this,Ge,Se,at),this._tabLinkRipple.setupTriggerEvents(Se.nativeElement)}ngOnDestroy(){super.ngOnDestroy(),this._tabLinkRipple._removeTriggerEvents()}}return Re.\u0275fac=function(Xe){return new(Xe||Re)(a.Y36(ce),a.Y36(a.SBq),a.Y36(a.R0b),a.Y36(me.t4),a.Y36(b.Y2,8),a.$8M("tabindex"),a.Y36(t.tE),a.Y36(d.Qb,8))},Re.\u0275dir=a.lG2({type:Re,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mat-tab-link","mat-focus-indicator"],hostVars:11,hostBindings:function(Xe,Se){1&Xe&&a.NdJ("focus",function(){return Se._handleFocus()})("keydown",function(at){return Se._handleKeydown(at)}),2&Xe&&(a.uIk("aria-controls",Se._getAriaControls())("aria-current",Se._getAriaCurrent())("aria-disabled",Se.disabled)("aria-selected",Se._getAriaSelected())("id",Se.id)("tabIndex",Se._getTabIndex())("role",Se._getRole()),a.ekj("mat-tab-disabled",Se.disabled)("mat-tab-label-active",Se.active))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matTabLink"],features:[a.qOj]}),Re})(),it=(()=>{class Re{}return Re.\u0275fac=function(Xe){return new(Xe||Re)},Re.\u0275mod=a.oAB({type:Re}),Re.\u0275inj=a.cJS({imports:[[M.ez,b.BQ,f.eL,b.si,e.Q8,t.rt],b.BQ]}),Re})()},4594:(Ve,j,p)=>{"use strict";p.d(j,{Ye:()=>h,g0:()=>w});var t=p(5e3),e=p(508),f=p(9808),M=p(925);const a=["*",[["mat-toolbar-row"]]],b=["*","mat-toolbar-row"],d=(0,e.pj)(class{constructor(D){this._elementRef=D}});let N=(()=>{class D{}return D.\u0275fac=function(k){return new(k||D)},D.\u0275dir=t.lG2({type:D,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]}),D})(),h=(()=>{class D extends d{constructor(k,S,U){super(k),this._platform=S,this._document=U}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}}return D.\u0275fac=function(k){return new(k||D)(t.Y36(t.SBq),t.Y36(M.t4),t.Y36(f.K0))},D.\u0275cmp=t.Xpm({type:D,selectors:[["mat-toolbar"]],contentQueries:function(k,S,U){if(1&k&&t.Suo(U,N,5),2&k){let Z;t.iGM(Z=t.CRH())&&(S._toolbarRows=Z)}},hostAttrs:[1,"mat-toolbar"],hostVars:4,hostBindings:function(k,S){2&k&&t.ekj("mat-toolbar-multiple-rows",S._toolbarRows.length>0)("mat-toolbar-single-row",0===S._toolbarRows.length)},inputs:{color:"color"},exportAs:["matToolbar"],features:[t.qOj],ngContentSelectors:b,decls:2,vars:0,template:function(k,S){1&k&&(t.F$t(a),t.Hsn(0),t.Hsn(1,1))},styles:[".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}\n"],encapsulation:2,changeDetection:0}),D})(),w=(()=>{class D{}return D.\u0275fac=function(k){return new(k||D)},D.\u0275mod=t.oAB({type:D}),D.\u0275inj=t.cJS({imports:[[e.BQ],e.BQ]}),D})()},7238:(Ve,j,p)=>{"use strict";p.d(j,{AV:()=>I,gM:()=>c});var t=p(9776),e=p(5664),f=p(9808),M=p(5e3),a=p(508),b=p(5303),d=p(3191),N=p(1159),h=p(5113),A=p(925),w=p(7429),D=p(6360),L=p(7579),k=p(2722),S=p(5698),U=p(226);p(1777);const Y=["tooltip"],de="tooltip-panel",te=(0,A.i$)({passive:!0}),X=new M.OlP("mat-tooltip-scroll-strategy"),y={provide:X,deps:[t.aV],useFactory:function me(n){return()=>n.scrollStrategies.reposition({scrollThrottle:20})}},i=new M.OlP("mat-tooltip-default-options",{providedIn:"root",factory:function r(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}});let u=(()=>{class n{constructor(B,P,H,q,he,_e,Ne,we,Q,Ue,ve,V){this._overlay=B,this._elementRef=P,this._scrollDispatcher=H,this._viewContainerRef=q,this._ngZone=he,this._platform=_e,this._ariaDescriber=Ne,this._focusMonitor=we,this._dir=Ue,this._defaultOptions=ve,this._position="below",this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._viewportMargin=8,this._cssClassPrefix="mat",this._showDelay=this._defaultOptions.showDelay,this._hideDelay=this._defaultOptions.hideDelay,this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new L.x,this._scrollStrategy=Q,this._document=V,ve&&(ve.position&&(this.position=ve.position),ve.touchGestures&&(this.touchGestures=ve.touchGestures)),Ue.change.pipe((0,k.R)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})}get position(){return this._position}set position(B){var P;B!==this._position&&(this._position=B,this._overlayRef&&(this._updatePosition(this._overlayRef),null===(P=this._tooltipInstance)||void 0===P||P.show(0),this._overlayRef.updatePosition()))}get disabled(){return this._disabled}set disabled(B){this._disabled=(0,d.Ig)(B),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(B){this._showDelay=(0,d.su)(B)}get hideDelay(){return this._hideDelay}set hideDelay(B){this._hideDelay=(0,d.su)(B),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(B){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=B?String(B).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(B){this._tooltipClass=B,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,k.R)(this._destroyed)).subscribe(B=>{B?"keyboard"===B&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const B=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([P,H])=>{B.removeEventListener(P,H,te)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(B,this.message,"tooltip"),this._focusMonitor.stopMonitoring(B)}show(B=this.showDelay){if(this.disabled||!this.message||this._isTooltipVisible()&&!this._tooltipInstance._showTimeoutId&&!this._tooltipInstance._hideTimeoutId)return;const P=this._createOverlay();this._detach(),this._portal=this._portal||new w.C5(this._tooltipComponent,this._viewContainerRef);const H=this._tooltipInstance=P.attach(this._portal).instance;H._triggerElement=this._elementRef.nativeElement,H._mouseLeaveHideDelay=this._hideDelay,H.afterHidden().pipe((0,k.R)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),H.show(B)}hide(B=this.hideDelay){this._tooltipInstance&&this._tooltipInstance.hide(B)}toggle(){this._isTooltipVisible()?this.hide():this.show()}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(){var B;if(this._overlayRef)return this._overlayRef;const P=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),H=this._overlay.position().flexibleConnectedTo(this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(P);return H.positionChanges.pipe((0,k.R)(this._destroyed)).subscribe(q=>{this._updateCurrentPositionClass(q.connectionPair),this._tooltipInstance&&q.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:H,panelClass:`${this._cssClassPrefix}-${de}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,k.R)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,k.R)(this._destroyed)).subscribe(()=>{var q;return null===(q=this._tooltipInstance)||void 0===q?void 0:q._handleBodyInteraction()}),this._overlayRef.keydownEvents().pipe((0,k.R)(this._destroyed)).subscribe(q=>{this._isTooltipVisible()&&q.keyCode===N.hY&&!(0,N.Vb)(q)&&(q.preventDefault(),q.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),(null===(B=this._defaultOptions)||void 0===B?void 0:B.disableTooltipInteractivity)&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(B){const P=B.getConfig().positionStrategy,H=this._getOrigin(),q=this._getOverlayPosition();P.withPositions([this._addOffset(Object.assign(Object.assign({},H.main),q.main)),this._addOffset(Object.assign(Object.assign({},H.fallback),q.fallback))])}_addOffset(B){return B}_getOrigin(){const B=!this._dir||"ltr"==this._dir.value,P=this.position;let H;"above"==P||"below"==P?H={originX:"center",originY:"above"==P?"top":"bottom"}:"before"==P||"left"==P&&B||"right"==P&&!B?H={originX:"start",originY:"center"}:("after"==P||"right"==P&&B||"left"==P&&!B)&&(H={originX:"end",originY:"center"});const{x:q,y:he}=this._invertPosition(H.originX,H.originY);return{main:H,fallback:{originX:q,originY:he}}}_getOverlayPosition(){const B=!this._dir||"ltr"==this._dir.value,P=this.position;let H;"above"==P?H={overlayX:"center",overlayY:"bottom"}:"below"==P?H={overlayX:"center",overlayY:"top"}:"before"==P||"left"==P&&B||"right"==P&&!B?H={overlayX:"end",overlayY:"center"}:("after"==P||"right"==P&&B||"left"==P&&!B)&&(H={overlayX:"start",overlayY:"center"});const{x:q,y:he}=this._invertPosition(H.overlayX,H.overlayY);return{main:H,fallback:{overlayX:q,overlayY:he}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,S.q)(1),(0,k.R)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(B){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=B,this._tooltipInstance._markForCheck())}_invertPosition(B,P){return"above"===this.position||"below"===this.position?"top"===P?P="bottom":"bottom"===P&&(P="top"):"end"===B?B="start":"start"===B&&(B="end"),{x:B,y:P}}_updateCurrentPositionClass(B){const{overlayY:P,originX:H,originY:q}=B;let he;if(he="center"===P?this._dir&&"rtl"===this._dir.value?"end"===H?"left":"right":"start"===H?"left":"right":"bottom"===P&&"top"===q?"above":"below",he!==this._currentPosition){const _e=this._overlayRef;if(_e){const Ne=`${this._cssClassPrefix}-${de}-`;_e.removePanelClass(Ne+this._currentPosition),_e.addPanelClass(Ne+he)}this._currentPosition=he}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",()=>{this._setupPointerExitEventsIfNeeded(),this.show()}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",()=>{this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(),500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const B=[];if(this._platformSupportsMouseEvents())B.push(["mouseleave",P=>{var H;const q=P.relatedTarget;(!q||!(null===(H=this._overlayRef)||void 0===H?void 0:H.overlayElement.contains(q)))&&this.hide()}],["wheel",P=>this._wheelListener(P)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const P=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};B.push(["touchend",P],["touchcancel",P])}this._addListeners(B),this._passiveListeners.push(...B)}_addListeners(B){B.forEach(([P,H])=>{this._elementRef.nativeElement.addEventListener(P,H,te)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(B){if(this._isTooltipVisible()){const P=this._document.elementFromPoint(B.clientX,B.clientY),H=this._elementRef.nativeElement;P!==H&&!H.contains(P)&&this.hide()}}_disableNativeGesturesIfNecessary(){const B=this.touchGestures;if("off"!==B){const P=this._elementRef.nativeElement,H=P.style;("on"===B||"INPUT"!==P.nodeName&&"TEXTAREA"!==P.nodeName)&&(H.userSelect=H.msUserSelect=H.webkitUserSelect=H.MozUserSelect="none"),("on"===B||!P.draggable)&&(H.webkitUserDrag="none"),H.touchAction="none",H.webkitTapHighlightColor="transparent"}}}return n.\u0275fac=function(B){M.$Z()},n.\u0275dir=M.lG2({type:n,inputs:{position:["matTooltipPosition","position"],disabled:["matTooltipDisabled","disabled"],showDelay:["matTooltipShowDelay","showDelay"],hideDelay:["matTooltipHideDelay","hideDelay"],touchGestures:["matTooltipTouchGestures","touchGestures"],message:["matTooltip","message"],tooltipClass:["matTooltipClass","tooltipClass"]}}),n})(),c=(()=>{class n extends u{constructor(B,P,H,q,he,_e,Ne,we,Q,Ue,ve,V){super(B,P,H,q,he,_e,Ne,we,Q,Ue,ve,V),this._tooltipComponent=E}}return n.\u0275fac=function(B){return new(B||n)(M.Y36(t.aV),M.Y36(M.SBq),M.Y36(b.mF),M.Y36(M.s_b),M.Y36(M.R0b),M.Y36(A.t4),M.Y36(e.$s),M.Y36(e.tE),M.Y36(X),M.Y36(U.Is,8),M.Y36(i,8),M.Y36(f.K0))},n.\u0275dir=M.lG2({type:n,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-tooltip-trigger"],exportAs:["matTooltip"],features:[M.qOj]}),n})(),_=(()=>{class n{constructor(B,P){this._changeDetectorRef=B,this._visibility="initial",this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new L.x,this._animationsDisabled="NoopAnimations"===P}show(B){clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},B)}hide(B){clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},B)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){clearTimeout(this._showTimeoutId),clearTimeout(this._hideTimeoutId),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:B}){(!B||!this._triggerElement.contains(B))&&this.hide(this._mouseLeaveHideDelay)}_onShow(){}_handleAnimationEnd({animationName:B}){(B===this._showAnimation||B===this._hideAnimation)&&this._finalizeAnimation(B===this._showAnimation)}_finalizeAnimation(B){B?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(B){const P=this._tooltip.nativeElement,H=this._showAnimation,q=this._hideAnimation;if(P.classList.remove(B?q:H),P.classList.add(B?H:q),this._isVisible=B,B&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const he=getComputedStyle(P);("0s"===he.getPropertyValue("animation-duration")||"none"===he.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}B&&this._onShow(),this._animationsDisabled&&(P.classList.add("_mat-animation-noopable"),this._finalizeAnimation(B))}}return n.\u0275fac=function(B){return new(B||n)(M.Y36(M.sBO),M.Y36(D.Qb,8))},n.\u0275dir=M.lG2({type:n}),n})(),E=(()=>{class n extends _{constructor(B,P,H){super(B,H),this._breakpointObserver=P,this._isHandset=this._breakpointObserver.observe(h.u3.Handset),this._showAnimation="mat-tooltip-show",this._hideAnimation="mat-tooltip-hide"}}return n.\u0275fac=function(B){return new(B||n)(M.Y36(M.sBO),M.Y36(h.Yg),M.Y36(D.Qb,8))},n.\u0275cmp=M.Xpm({type:n,selectors:[["mat-tooltip-component"]],viewQuery:function(B,P){if(1&B&&M.Gf(Y,7),2&B){let H;M.iGM(H=M.CRH())&&(P._tooltip=H.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(B,P){1&B&&M.NdJ("mouseleave",function(q){return P._handleMouseLeave(q)}),2&B&&M.Udp("zoom",P.isVisible()?1:null)},features:[M.qOj],decls:4,vars:6,consts:[[1,"mat-tooltip",3,"ngClass","animationend"],["tooltip",""]],template:function(B,P){if(1&B&&(M.TgZ(0,"div",0,1),M.NdJ("animationend",function(q){return P._handleAnimationEnd(q)}),M.ALo(2,"async"),M._uU(3),M.qZA()),2&B){let H;M.ekj("mat-tooltip-handset",null==(H=M.lcZ(2,4,P._isHandset))?null:H.matches),M.Q6J("ngClass",P.tooltipClass),M.xp6(3),M.Oqu(P.message)}},directives:[f.mk],pipes:[f.Ov],styles:[".mat-tooltip{color:#fff;border-radius:4px;margin:14px;max-width:250px;padding-left:8px;padding-right:8px;overflow:hidden;text-overflow:ellipsis;transform:scale(0)}.mat-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.cdk-high-contrast-active .mat-tooltip{outline:solid 1px}.mat-tooltip-handset{margin:24px;padding-left:16px;padding-right:16px}.mat-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-tooltip-show{0%{opacity:0;transform:scale(0)}50%{opacity:.5;transform:scale(0.99)}100%{opacity:1;transform:scale(1)}}@keyframes mat-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1)}}.mat-tooltip-show{animation:mat-tooltip-show 200ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-tooltip-hide{animation:mat-tooltip-hide 100ms cubic-bezier(0, 0, 0.2, 1) forwards}\n"],encapsulation:2,changeDetection:0}),n})(),I=(()=>{class n{}return n.\u0275fac=function(B){return new(B||n)},n.\u0275mod=M.oAB({type:n}),n.\u0275inj=M.cJS({providers:[y],imports:[[e.rt,f.ez,t.U8,a.BQ],a.BQ,b.ZD]}),n})()},149:(Ve,j,p)=>{"use strict";p.d(j,{Ar:()=>k,GZ:()=>D,WX:()=>de,dp:()=>Y,eu:()=>U,fQ:()=>w,gi:()=>S,uo:()=>A});var t=p(8258),e=p(5e3),f=p(508),M=p(3191),a=p(449),b=p(1135),d=p(6451),N=p(4004);const h=(0,f.sb)((0,f.Id)(t.Hs));let A=(()=>{class te extends h{constructor(oe,X,me){super(oe,X),this.tabIndex=Number(me)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}}return te.\u0275fac=function(oe){return new(oe||te)(e.Y36(e.SBq),e.Y36(t._0),e.$8M("tabindex"))},te.\u0275dir=e.lG2({type:te,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex"},exportAs:["matTreeNode"],features:[e._Bn([{provide:t.Hs,useExisting:te}]),e.qOj]}),te})(),w=(()=>{class te extends t.rO{}return te.\u0275fac=function(){let ie;return function(X){return(ie||(ie=e.n5z(te)))(X||te)}}(),te.\u0275dir=e.lG2({type:te,selectors:[["","matTreeNodeDef",""]],inputs:{when:["matTreeNodeDefWhen","when"],data:["matTreeNode","data"]},features:[e._Bn([{provide:t.rO,useExisting:te}]),e.qOj]}),te})(),D=(()=>{class te extends t.Xx{constructor(oe,X,me,y){super(oe,X,me),this._disabled=!1,this.tabIndex=Number(y)||0}get disabled(){return this._disabled}set disabled(oe){this._disabled=(0,M.Ig)(oe)}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(oe){this._tabIndex=null!=oe?oe:0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}}return te.\u0275fac=function(oe){return new(oe||te)(e.Y36(e.SBq),e.Y36(t._0),e.Y36(e.ZZ4),e.$8M("tabindex"))},te.\u0275dir=e.lG2({type:te,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex",node:["matNestedTreeNode","node"]},exportAs:["matNestedTreeNode"],features:[e._Bn([{provide:t.Xx,useExisting:te},{provide:t.Hs,useExisting:te},{provide:t.HI,useExisting:te}]),e.qOj]}),te})(),k=(()=>{class te{constructor(oe,X){this.viewContainer=oe,this._node=X}}return te.\u0275fac=function(oe){return new(oe||te)(e.Y36(e.s_b),e.Y36(t.HI,8))},te.\u0275dir=e.lG2({type:te,selectors:[["","matTreeNodeOutlet",""]],features:[e._Bn([{provide:t.cu,useExisting:te}])]}),te})(),S=(()=>{class te extends t._0{}return te.\u0275fac=function(){let ie;return function(X){return(ie||(ie=e.n5z(te)))(X||te)}}(),te.\u0275cmp=e.Xpm({type:te,selectors:[["mat-tree"]],viewQuery:function(oe,X){if(1&oe&&e.Gf(k,7),2&oe){let me;e.iGM(me=e.CRH())&&(X._nodeOutlet=me.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],features:[e._Bn([{provide:t._0,useExisting:te}]),e.qOj],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(oe,X){1&oe&&e.GkF(0,0)},directives:[k],styles:[".mat-tree{display:block}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word}.mat-nested-tree-node{border-bottom-width:0}\n"],encapsulation:2}),te})(),U=(()=>{class te extends t.Ud{}return te.\u0275fac=function(){let ie;return function(X){return(ie||(ie=e.n5z(te)))(X||te)}}(),te.\u0275dir=e.lG2({type:te,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:["matTreeNodeToggleRecursive","recursive"]},features:[e._Bn([{provide:t.Ud,useExisting:te}]),e.qOj]}),te})(),Y=(()=>{class te{}return te.\u0275fac=function(oe){return new(oe||te)},te.\u0275mod=e.oAB({type:te}),te.\u0275inj=e.cJS({imports:[[t.nZ,f.BQ],f.BQ]}),te})();class de extends a.o2{constructor(){super(...arguments),this._data=new b.X([])}get data(){return this._data.value}set data(ie){this._data.next(ie)}connect(ie){return(0,d.T)(ie.viewChange,this._data).pipe((0,N.U)(()=>this.data))}disconnect(){}}},6360:(Ve,j,p)=>{"use strict";p.d(j,{Qb:()=>Qs,PW:()=>Gr});var t=p(5e3),e=p(2313),f=p(1777);const M=!1;function b(vt){return new t.vHH(3e3,M)}function he(){return"undefined"!=typeof window&&void 0!==window.document}function _e(){return"undefined"!=typeof process&&"[object process]"==={}.toString.call(process)}function Ne(vt){switch(vt.length){case 0:return new f.ZN;case 1:return vt[0];default:return new f.ZE(vt)}}function we(vt,ae,fe,Ye,wt={},Vt={}){const ii=[],ni=[];let _i=-1,Pi=null;if(Ye.forEach(tn=>{const dn=tn.offset,Ln=dn==_i,Nn=Ln&&Pi||{};Object.keys(tn).forEach(xn=>{let Tn=xn,tr=tn[xn];if("offset"!==xn)switch(Tn=ae.normalizePropertyName(Tn,ii),tr){case f.k1:tr=wt[xn];break;case f.l3:tr=Vt[xn];break;default:tr=ae.normalizeStyleValue(xn,Tn,tr,ii)}Nn[Tn]=tr}),Ln||ni.push(Nn),Pi=Nn,_i=dn}),ii.length)throw function u(vt){return new t.vHH(3502,M)}();return ni}function Q(vt,ae,fe,Ye){switch(ae){case"start":vt.onStart(()=>Ye(fe&&Ue(fe,"start",vt)));break;case"done":vt.onDone(()=>Ye(fe&&Ue(fe,"done",vt)));break;case"destroy":vt.onDestroy(()=>Ye(fe&&Ue(fe,"destroy",vt)))}}function Ue(vt,ae,fe){const Ye=fe.totalTime,Vt=ve(vt.element,vt.triggerName,vt.fromState,vt.toState,ae||vt.phaseName,null==Ye?vt.totalTime:Ye,!!fe.disabled),ii=vt._data;return null!=ii&&(Vt._data=ii),Vt}function ve(vt,ae,fe,Ye,wt="",Vt=0,ii){return{element:vt,triggerName:ae,fromState:fe,toState:Ye,phaseName:wt,totalTime:Vt,disabled:!!ii}}function V(vt,ae,fe){let Ye;return vt instanceof Map?(Ye=vt.get(ae),Ye||vt.set(ae,Ye=fe)):(Ye=vt[ae],Ye||(Ye=vt[ae]=fe)),Ye}function De(vt){const ae=vt.indexOf(":");return[vt.substring(1,ae),vt.substr(ae+1)]}let dt=(vt,ae)=>!1,Ie=(vt,ae,fe)=>[],Ae=null;function le(vt){const ae=vt.parentNode||vt.host;return ae===Ae?null:ae}(_e()||"undefined"!=typeof Element)&&(he()?(Ae=(()=>document.documentElement)(),dt=(vt,ae)=>{for(;ae;){if(ae===vt)return!0;ae=le(ae)}return!1}):dt=(vt,ae)=>vt.contains(ae),Ie=(vt,ae,fe)=>{if(fe)return Array.from(vt.querySelectorAll(ae));const Ye=vt.querySelector(ae);return Ye?[Ye]:[]});let W=null,ee=!1;function ue(vt){W||(W=function Ce(){return"undefined"!=typeof document?document.body:null}()||{},ee=!!W.style&&"WebkitAppearance"in W.style);let ae=!0;return W.style&&!function xe(vt){return"ebkit"==vt.substring(1,6)}(vt)&&(ae=vt in W.style,!ae&&ee&&(ae="Webkit"+vt.charAt(0).toUpperCase()+vt.substr(1)in W.style)),ae}const Le=dt,ut=Ie;let It=(()=>{class vt{validateStyleProperty(fe){return ue(fe)}matchesElement(fe,Ye){return!1}containsElement(fe,Ye){return Le(fe,Ye)}getParentElement(fe){return le(fe)}query(fe,Ye,wt){return ut(fe,Ye,wt)}computeStyle(fe,Ye,wt){return wt||""}animate(fe,Ye,wt,Vt,ii,ni=[],_i){return new f.ZN(wt,Vt)}}return vt.\u0275fac=function(fe){return new(fe||vt)},vt.\u0275prov=t.Yz7({token:vt,factory:vt.\u0275fac}),vt})(),ui=(()=>{class vt{}return vt.NOOP=new It,vt})();const xt="ng-enter",Nt="ng-leave",Ct="ng-trigger",et=".ng-trigger",yt="ng-animating",ei=".ng-animating";function Yt(vt){if("number"==typeof vt)return vt;const ae=vt.match(/^(-?[\.\d]+)(m?s)/);return!ae||ae.length<2?0:Pe(parseFloat(ae[1]),ae[2])}function Pe(vt,ae){return"s"===ae?1e3*vt:vt}function Oe(vt,ae,fe){return vt.hasOwnProperty("duration")?vt:function ce(vt,ae,fe){let wt,Vt=0,ii="";if("string"==typeof vt){const ni=vt.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===ni)return ae.push(b()),{duration:0,delay:0,easing:""};wt=Pe(parseFloat(ni[1]),ni[2]);const _i=ni[3];null!=_i&&(Vt=Pe(parseFloat(_i),ni[4]));const Pi=ni[5];Pi&&(ii=Pi)}else wt=vt;if(!fe){let ni=!1,_i=ae.length;wt<0&&(ae.push(function d(){return new t.vHH(3100,M)}()),ni=!0),Vt<0&&(ae.push(function N(){return new t.vHH(3101,M)}()),ni=!0),ni&&ae.splice(_i,0,b())}return{duration:wt,delay:Vt,easing:ii}}(vt,ae,fe)}function be(vt,ae={}){return Object.keys(vt).forEach(fe=>{ae[fe]=vt[fe]}),ae}function mt(vt,ae,fe={}){if(ae)for(let Ye in vt)fe[Ye]=vt[Ye];else be(vt,fe);return fe}function Ht(vt,ae,fe){return fe?ae+":"+fe+";":""}function it(vt){let ae="";for(let fe=0;fe{const wt=qt(Ye);fe&&!fe.hasOwnProperty(Ye)&&(fe[Ye]=vt.style[wt]),vt.style[wt]=ae[Ye]}),_e()&&it(vt))}function tt(vt,ae){vt.style&&(Object.keys(ae).forEach(fe=>{const Ye=qt(fe);vt.style[Ye]=""}),_e()&&it(vt))}function Xe(vt){return Array.isArray(vt)?1==vt.length?vt[0]:(0,f.vP)(vt):vt}const Ge=new RegExp("{{\\s*(.+?)\\s*}}","g");function at(vt){let ae=[];if("string"==typeof vt){let fe;for(;fe=Ge.exec(vt);)ae.push(fe[1]);Ge.lastIndex=0}return ae}function st(vt,ae,fe){const Ye=vt.toString(),wt=Ye.replace(Ge,(Vt,ii)=>{let ni=ae[ii];return ae.hasOwnProperty(ii)||(fe.push(function A(vt){return new t.vHH(3003,M)}()),ni=""),ni.toString()});return wt==Ye?vt:wt}function bt(vt){const ae=[];let fe=vt.next();for(;!fe.done;)ae.push(fe.value),fe=vt.next();return ae}const gi=/-+([a-z0-9])/g;function qt(vt){return vt.replace(gi,(...ae)=>ae[1].toUpperCase())}function Xt(vt){return vt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}function si(vt,ae,fe){switch(ae.type){case 7:return vt.visitTrigger(ae,fe);case 0:return vt.visitState(ae,fe);case 1:return vt.visitTransition(ae,fe);case 2:return vt.visitSequence(ae,fe);case 3:return vt.visitGroup(ae,fe);case 4:return vt.visitAnimate(ae,fe);case 5:return vt.visitKeyframes(ae,fe);case 6:return vt.visitStyle(ae,fe);case 8:return vt.visitReference(ae,fe);case 9:return vt.visitAnimateChild(ae,fe);case 10:return vt.visitAnimateRef(ae,fe);case 11:return vt.visitQuery(ae,fe);case 12:return vt.visitStagger(ae,fe);default:throw function w(vt){return new t.vHH(3004,M)}()}}function $i(vt,ae){return window.getComputedStyle(vt)[ae]}function re(vt,ae){const fe=[];return"string"==typeof vt?vt.split(/\s*,\s*/).forEach(Ye=>function qe(vt,ae,fe){if(":"==vt[0]){const _i=function Mt(vt,ae){switch(vt){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(fe,Ye)=>parseFloat(Ye)>parseFloat(fe);case":decrement":return(fe,Ye)=>parseFloat(Ye) *"}}(vt,fe);if("function"==typeof _i)return void ae.push(_i);vt=_i}const Ye=vt.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==Ye||Ye.length<4)return fe.push(function X(vt){return new t.vHH(3015,M)}()),ae;const wt=Ye[1],Vt=Ye[2],ii=Ye[3];ae.push(Ei(wt,ii));"<"==Vt[0]&&!("*"==wt&&"*"==ii)&&ae.push(Ei(ii,wt))}(Ye,fe,ae)):fe.push(vt),fe}const zt=new Set(["true","1"]),bi=new Set(["false","0"]);function Ei(vt,ae){const fe=zt.has(vt)||bi.has(vt),Ye=zt.has(ae)||bi.has(ae);return(wt,Vt)=>{let ii="*"==vt||vt==wt,ni="*"==ae||ae==Vt;return!ii&&fe&&"boolean"==typeof wt&&(ii=wt?zt.has(vt):bi.has(vt)),!ni&&Ye&&"boolean"==typeof Vt&&(ni=Vt?zt.has(ae):bi.has(ae)),ii&&ni}}const Zi=new RegExp("s*:selfs*,?","g");function sn(vt,ae,fe,Ye){return new jt(vt).build(ae,fe,Ye)}class jt{constructor(ae){this._driver=ae}build(ae,fe,Ye){const wt=new Ft(fe);this._resetContextStyleTimingState(wt);const Vt=si(this,Xe(ae),wt);return wt.unsupportedCSSPropertiesFound.size&&wt.unsupportedCSSPropertiesFound.keys(),Vt}_resetContextStyleTimingState(ae){ae.currentQuerySelector="",ae.collectedStyles={},ae.collectedStyles[""]={},ae.currentTime=0}visitTrigger(ae,fe){let Ye=fe.queryCount=0,wt=fe.depCount=0;const Vt=[],ii=[];return"@"==ae.name.charAt(0)&&fe.errors.push(function L(){return new t.vHH(3006,M)}()),ae.definitions.forEach(ni=>{if(this._resetContextStyleTimingState(fe),0==ni.type){const _i=ni,Pi=_i.name;Pi.toString().split(/\s*,\s*/).forEach(tn=>{_i.name=tn,Vt.push(this.visitState(_i,fe))}),_i.name=Pi}else if(1==ni.type){const _i=this.visitTransition(ni,fe);Ye+=_i.queryCount,wt+=_i.depCount,ii.push(_i)}else fe.errors.push(function k(){return new t.vHH(3007,M)}())}),{type:7,name:ae.name,states:Vt,transitions:ii,queryCount:Ye,depCount:wt,options:null}}visitState(ae,fe){const Ye=this.visitStyle(ae.styles,fe),wt=ae.options&&ae.options.params||null;if(Ye.containsDynamicStyles){const Vt=new Set,ii=wt||{};Ye.styles.forEach(ni=>{if(mi(ni)){const _i=ni;Object.keys(_i).forEach(Pi=>{at(_i[Pi]).forEach(tn=>{ii.hasOwnProperty(tn)||Vt.add(tn)})})}}),Vt.size&&(bt(Vt.values()),fe.errors.push(function S(vt,ae){return new t.vHH(3008,M)}()))}return{type:0,name:ae.name,style:Ye,options:wt?{params:wt}:null}}visitTransition(ae,fe){fe.queryCount=0,fe.depCount=0;const Ye=si(this,Xe(ae.animation),fe);return{type:1,matchers:re(ae.expr,fe.errors),animation:Ye,queryCount:fe.queryCount,depCount:fe.depCount,options:ki(ae.options)}}visitSequence(ae,fe){return{type:2,steps:ae.steps.map(Ye=>si(this,Ye,fe)),options:ki(ae.options)}}visitGroup(ae,fe){const Ye=fe.currentTime;let wt=0;const Vt=ae.steps.map(ii=>{fe.currentTime=Ye;const ni=si(this,ii,fe);return wt=Math.max(wt,fe.currentTime),ni});return fe.currentTime=wt,{type:3,steps:Vt,options:ki(ae.options)}}visitAnimate(ae,fe){const Ye=function Ni(vt,ae){if(vt.hasOwnProperty("duration"))return vt;if("number"==typeof vt)return fn(Oe(vt,ae).duration,0,"");const fe=vt;if(fe.split(/\s+/).some(Vt=>"{"==Vt.charAt(0)&&"{"==Vt.charAt(1))){const Vt=fn(0,0,"");return Vt.dynamic=!0,Vt.strValue=fe,Vt}const wt=Oe(fe,ae);return fn(wt.duration,wt.delay,wt.easing)}(ae.timings,fe.errors);fe.currentAnimateTimings=Ye;let wt,Vt=ae.styles?ae.styles:(0,f.oB)({});if(5==Vt.type)wt=this.visitKeyframes(Vt,fe);else{let ii=ae.styles,ni=!1;if(!ii){ni=!0;const Pi={};Ye.easing&&(Pi.easing=Ye.easing),ii=(0,f.oB)(Pi)}fe.currentTime+=Ye.duration+Ye.delay;const _i=this.visitStyle(ii,fe);_i.isEmptyStep=ni,wt=_i}return fe.currentAnimateTimings=null,{type:4,timings:Ye,style:wt,options:null}}visitStyle(ae,fe){const Ye=this._makeStyleAst(ae,fe);return this._validateStyleAst(Ye,fe),Ye}_makeStyleAst(ae,fe){const Ye=[];Array.isArray(ae.styles)?ae.styles.forEach(ii=>{"string"==typeof ii?ii==f.l3?Ye.push(ii):fe.errors.push(function U(vt){return new t.vHH(3002,M)}()):Ye.push(ii)}):Ye.push(ae.styles);let wt=!1,Vt=null;return Ye.forEach(ii=>{if(mi(ii)){const ni=ii,_i=ni.easing;if(_i&&(Vt=_i,delete ni.easing),!wt)for(let Pi in ni)if(ni[Pi].toString().indexOf("{{")>=0){wt=!0;break}}}),{type:6,styles:Ye,easing:Vt,offset:ae.offset,containsDynamicStyles:wt,options:null}}_validateStyleAst(ae,fe){const Ye=fe.currentAnimateTimings;let wt=fe.currentTime,Vt=fe.currentTime;Ye&&Vt>0&&(Vt-=Ye.duration+Ye.delay),ae.styles.forEach(ii=>{"string"!=typeof ii&&Object.keys(ii).forEach(ni=>{if(!this._driver.validateStyleProperty(ni))return delete ii[ni],void fe.unsupportedCSSPropertiesFound.add(ni);const _i=fe.collectedStyles[fe.currentQuerySelector],Pi=_i[ni];let tn=!0;Pi&&(Vt!=wt&&Vt>=Pi.startTime&&wt<=Pi.endTime&&(fe.errors.push(function Y(vt,ae,fe,Ye,wt){return new t.vHH(3010,M)}()),tn=!1),Vt=Pi.startTime),tn&&(_i[ni]={startTime:Vt,endTime:wt}),fe.options&&function Se(vt,ae,fe){const Ye=ae.params||{},wt=at(vt);wt.length&&wt.forEach(Vt=>{Ye.hasOwnProperty(Vt)||fe.push(function h(vt){return new t.vHH(3001,M)}())})}(ii[ni],fe.options,fe.errors)})})}visitKeyframes(ae,fe){const Ye={type:5,styles:[],options:null};if(!fe.currentAnimateTimings)return fe.errors.push(function ne(){return new t.vHH(3011,M)}()),Ye;let Vt=0;const ii=[];let ni=!1,_i=!1,Pi=0;const tn=ae.steps.map(Lr=>{const gr=this._makeStyleAst(Lr,fe);let ia=null!=gr.offset?gr.offset:function Kt(vt){if("string"==typeof vt)return null;let ae=null;if(Array.isArray(vt))vt.forEach(fe=>{if(mi(fe)&&fe.hasOwnProperty("offset")){const Ye=fe;ae=parseFloat(Ye.offset),delete Ye.offset}});else if(mi(vt)&&vt.hasOwnProperty("offset")){const fe=vt;ae=parseFloat(fe.offset),delete fe.offset}return ae}(gr.styles),qr=0;return null!=ia&&(Vt++,qr=gr.offset=ia),_i=_i||qr<0||qr>1,ni=ni||qr0&&Vt{const ia=Ln>0?gr==Nn?1:Ln*gr:ii[gr],qr=ia*tr;fe.currentTime=xn+Tn.delay+qr,Tn.duration=qr,this._validateStyleAst(Lr,fe),Lr.offset=ia,Ye.styles.push(Lr)}),Ye}visitReference(ae,fe){return{type:8,animation:si(this,Xe(ae.animation),fe),options:ki(ae.options)}}visitAnimateChild(ae,fe){return fe.depCount++,{type:9,options:ki(ae.options)}}visitAnimateRef(ae,fe){return{type:10,animation:this.visitReference(ae.animation,fe),options:ki(ae.options)}}visitQuery(ae,fe){const Ye=fe.currentQuerySelector,wt=ae.options||{};fe.queryCount++,fe.currentQuery=ae;const[Vt,ii]=function wi(vt){const ae=!!vt.split(/\s*,\s*/).find(fe=>":self"==fe);return ae&&(vt=vt.replace(Zi,"")),vt=vt.replace(/@\*/g,et).replace(/@\w+/g,fe=>et+"-"+fe.substr(1)).replace(/:animating/g,ei),[vt,ae]}(ae.selector);fe.currentQuerySelector=Ye.length?Ye+" "+Vt:Vt,V(fe.collectedStyles,fe.currentQuerySelector,{});const ni=si(this,Xe(ae.animation),fe);return fe.currentQuery=null,fe.currentQuerySelector=Ye,{type:11,selector:Vt,limit:wt.limit||0,optional:!!wt.optional,includeSelf:ii,animation:ni,originalSelector:ae.selector,options:ki(ae.options)}}visitStagger(ae,fe){fe.currentQuery||fe.errors.push(function ie(){return new t.vHH(3013,M)}());const Ye="full"===ae.timings?{duration:0,delay:0,easing:"full"}:Oe(ae.timings,fe.errors,!0);return{type:12,animation:si(this,Xe(ae.animation),fe),timings:Ye,options:null}}}class Ft{constructor(ae){this.errors=ae,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function mi(vt){return!Array.isArray(vt)&&"object"==typeof vt}function ki(vt){return vt?(vt=be(vt)).params&&(vt.params=function nt(vt){return vt?be(vt):null}(vt.params)):vt={},vt}function fn(vt,ae,fe){return{duration:vt,delay:ae,easing:fe}}function Bn(vt,ae,fe,Ye,wt,Vt,ii=null,ni=!1){return{type:1,element:vt,keyframes:ae,preStyleProps:fe,postStyleProps:Ye,duration:wt,delay:Vt,totalTime:wt+Vt,easing:ii,subTimeline:ni}}class Dn{constructor(){this._map=new Map}get(ae){return this._map.get(ae)||[]}append(ae,fe){let Ye=this._map.get(ae);Ye||this._map.set(ae,Ye=[]),Ye.push(...fe)}has(ae){return this._map.has(ae)}clear(){this._map.clear()}}const Si=new RegExp(":enter","g"),Sn=new RegExp(":leave","g");function jn(vt,ae,fe,Ye,wt,Vt={},ii={},ni,_i,Pi=[]){return(new dr).buildKeyframes(vt,ae,fe,Ye,wt,Vt,ii,ni,_i,Pi)}class dr{buildKeyframes(ae,fe,Ye,wt,Vt,ii,ni,_i,Pi,tn=[]){Pi=Pi||new Dn;const dn=new Vr(ae,fe,Pi,wt,Vt,tn,[]);dn.options=_i,dn.currentTimeline.setStyles([ii],null,dn.errors,_i),si(this,Ye,dn);const Ln=dn.timelines.filter(Nn=>Nn.containsAnimation());if(Object.keys(ni).length){let Nn;for(let xn=Ln.length-1;xn>=0;xn--){const Tn=Ln[xn];if(Tn.element===fe){Nn=Tn;break}}Nn&&!Nn.allowOnlyTimelineStyles()&&Nn.setStyles([ni],null,dn.errors,_i)}return Ln.length?Ln.map(Nn=>Nn.buildKeyframes()):[Bn(fe,[],[],[],0,0,"",!1)]}visitTrigger(ae,fe){}visitState(ae,fe){}visitTransition(ae,fe){}visitAnimateChild(ae,fe){const Ye=fe.subInstructions.get(fe.element);if(Ye){const wt=fe.createSubContext(ae.options),Vt=fe.currentTimeline.currentTime,ii=this._visitSubInstructions(Ye,wt,wt.options);Vt!=ii&&fe.transformIntoNewTimeline(ii)}fe.previousNode=ae}visitAnimateRef(ae,fe){const Ye=fe.createSubContext(ae.options);Ye.transformIntoNewTimeline(),this.visitReference(ae.animation,Ye),fe.transformIntoNewTimeline(Ye.currentTimeline.currentTime),fe.previousNode=ae}_visitSubInstructions(ae,fe,Ye){let Vt=fe.currentTimeline.currentTime;const ii=null!=Ye.duration?Yt(Ye.duration):null,ni=null!=Ye.delay?Yt(Ye.delay):null;return 0!==ii&&ae.forEach(_i=>{const Pi=fe.appendInstructionToTimeline(_i,ii,ni);Vt=Math.max(Vt,Pi.duration+Pi.delay)}),Vt}visitReference(ae,fe){fe.updateOptions(ae.options,!0),si(this,ae.animation,fe),fe.previousNode=ae}visitSequence(ae,fe){const Ye=fe.subContextCount;let wt=fe;const Vt=ae.options;if(Vt&&(Vt.params||Vt.delay)&&(wt=fe.createSubContext(Vt),wt.transformIntoNewTimeline(),null!=Vt.delay)){6==wt.previousNode.type&&(wt.currentTimeline.snapshotCurrentStyles(),wt.previousNode=Fr);const ii=Yt(Vt.delay);wt.delayNextStep(ii)}ae.steps.length&&(ae.steps.forEach(ii=>si(this,ii,wt)),wt.currentTimeline.applyStylesToKeyframe(),wt.subContextCount>Ye&&wt.transformIntoNewTimeline()),fe.previousNode=ae}visitGroup(ae,fe){const Ye=[];let wt=fe.currentTimeline.currentTime;const Vt=ae.options&&ae.options.delay?Yt(ae.options.delay):0;ae.steps.forEach(ii=>{const ni=fe.createSubContext(ae.options);Vt&&ni.delayNextStep(Vt),si(this,ii,ni),wt=Math.max(wt,ni.currentTimeline.currentTime),Ye.push(ni.currentTimeline)}),Ye.forEach(ii=>fe.currentTimeline.mergeTimelineCollectedStyles(ii)),fe.transformIntoNewTimeline(wt),fe.previousNode=ae}_visitTiming(ae,fe){if(ae.dynamic){const Ye=ae.strValue;return Oe(fe.params?st(Ye,fe.params,fe.errors):Ye,fe.errors)}return{duration:ae.duration,delay:ae.delay,easing:ae.easing}}visitAnimate(ae,fe){const Ye=fe.currentAnimateTimings=this._visitTiming(ae.timings,fe),wt=fe.currentTimeline;Ye.delay&&(fe.incrementTime(Ye.delay),wt.snapshotCurrentStyles());const Vt=ae.style;5==Vt.type?this.visitKeyframes(Vt,fe):(fe.incrementTime(Ye.duration),this.visitStyle(Vt,fe),wt.applyStylesToKeyframe()),fe.currentAnimateTimings=null,fe.previousNode=ae}visitStyle(ae,fe){const Ye=fe.currentTimeline,wt=fe.currentAnimateTimings;!wt&&Ye.getCurrentStyleProperties().length&&Ye.forwardFrame();const Vt=wt&&wt.easing||ae.easing;ae.isEmptyStep?Ye.applyEmptyStep(Vt):Ye.setStyles(ae.styles,Vt,fe.errors,fe.options),fe.previousNode=ae}visitKeyframes(ae,fe){const Ye=fe.currentAnimateTimings,wt=fe.currentTimeline.duration,Vt=Ye.duration,ni=fe.createSubContext().currentTimeline;ni.easing=Ye.easing,ae.styles.forEach(_i=>{ni.forwardTime((_i.offset||0)*Vt),ni.setStyles(_i.styles,_i.easing,fe.errors,fe.options),ni.applyStylesToKeyframe()}),fe.currentTimeline.mergeTimelineCollectedStyles(ni),fe.transformIntoNewTimeline(wt+Vt),fe.previousNode=ae}visitQuery(ae,fe){const Ye=fe.currentTimeline.currentTime,wt=ae.options||{},Vt=wt.delay?Yt(wt.delay):0;Vt&&(6===fe.previousNode.type||0==Ye&&fe.currentTimeline.getCurrentStyleProperties().length)&&(fe.currentTimeline.snapshotCurrentStyles(),fe.previousNode=Fr);let ii=Ye;const ni=fe.invokeQuery(ae.selector,ae.originalSelector,ae.limit,ae.includeSelf,!!wt.optional,fe.errors);fe.currentQueryTotal=ni.length;let _i=null;ni.forEach((Pi,tn)=>{fe.currentQueryIndex=tn;const dn=fe.createSubContext(ae.options,Pi);Vt&&dn.delayNextStep(Vt),Pi===fe.element&&(_i=dn.currentTimeline),si(this,ae.animation,dn),dn.currentTimeline.applyStylesToKeyframe(),ii=Math.max(ii,dn.currentTimeline.currentTime)}),fe.currentQueryIndex=0,fe.currentQueryTotal=0,fe.transformIntoNewTimeline(ii),_i&&(fe.currentTimeline.mergeTimelineCollectedStyles(_i),fe.currentTimeline.snapshotCurrentStyles()),fe.previousNode=ae}visitStagger(ae,fe){const Ye=fe.parentContext,wt=fe.currentTimeline,Vt=ae.timings,ii=Math.abs(Vt.duration),ni=ii*(fe.currentQueryTotal-1);let _i=ii*fe.currentQueryIndex;switch(Vt.duration<0?"reverse":Vt.easing){case"reverse":_i=ni-_i;break;case"full":_i=Ye.currentStaggerTime}const tn=fe.currentTimeline;_i&&tn.delayNextStep(_i);const dn=tn.currentTime;si(this,ae.animation,fe),fe.previousNode=ae,Ye.currentStaggerTime=wt.currentTime-dn+(wt.startTime-Ye.currentTimeline.startTime)}}const Fr={};class Vr{constructor(ae,fe,Ye,wt,Vt,ii,ni,_i){this._driver=ae,this.element=fe,this.subInstructions=Ye,this._enterClassName=wt,this._leaveClassName=Vt,this.errors=ii,this.timelines=ni,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=Fr,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=_i||new ua(this._driver,fe,0),ni.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(ae,fe){if(!ae)return;const Ye=ae;let wt=this.options;null!=Ye.duration&&(wt.duration=Yt(Ye.duration)),null!=Ye.delay&&(wt.delay=Yt(Ye.delay));const Vt=Ye.params;if(Vt){let ii=wt.params;ii||(ii=this.options.params={}),Object.keys(Vt).forEach(ni=>{(!fe||!ii.hasOwnProperty(ni))&&(ii[ni]=st(Vt[ni],ii,this.errors))})}}_copyOptions(){const ae={};if(this.options){const fe=this.options.params;if(fe){const Ye=ae.params={};Object.keys(fe).forEach(wt=>{Ye[wt]=fe[wt]})}}return ae}createSubContext(ae=null,fe,Ye){const wt=fe||this.element,Vt=new Vr(this._driver,wt,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(wt,Ye||0));return Vt.previousNode=this.previousNode,Vt.currentAnimateTimings=this.currentAnimateTimings,Vt.options=this._copyOptions(),Vt.updateOptions(ae),Vt.currentQueryIndex=this.currentQueryIndex,Vt.currentQueryTotal=this.currentQueryTotal,Vt.parentContext=this,this.subContextCount++,Vt}transformIntoNewTimeline(ae){return this.previousNode=Fr,this.currentTimeline=this.currentTimeline.fork(this.element,ae),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(ae,fe,Ye){const wt={duration:null!=fe?fe:ae.duration,delay:this.currentTimeline.currentTime+(null!=Ye?Ye:0)+ae.delay,easing:""},Vt=new _a(this._driver,ae.element,ae.keyframes,ae.preStyleProps,ae.postStyleProps,wt,ae.stretchStartingKeyframe);return this.timelines.push(Vt),wt}incrementTime(ae){this.currentTimeline.forwardTime(this.currentTimeline.duration+ae)}delayNextStep(ae){ae>0&&this.currentTimeline.delayNextStep(ae)}invokeQuery(ae,fe,Ye,wt,Vt,ii){let ni=[];if(wt&&ni.push(this.element),ae.length>0){ae=(ae=ae.replace(Si,"."+this._enterClassName)).replace(Sn,"."+this._leaveClassName);let Pi=this._driver.query(this.element,ae,1!=Ye);0!==Ye&&(Pi=Ye<0?Pi.slice(Pi.length+Ye,Pi.length):Pi.slice(0,Ye)),ni.push(...Pi)}return!Vt&&0==ni.length&&ii.push(function oe(vt){return new t.vHH(3014,M)}()),ni}}class ua{constructor(ae,fe,Ye,wt){this._driver=ae,this.element=fe,this.startTime=Ye,this._elementTimelineStylesLookup=wt,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(fe),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(fe,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}getCurrentStyleProperties(){return Object.keys(this._currentKeyframe)}get currentTime(){return this.startTime+this.duration}delayNextStep(ae){const fe=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||fe?(this.forwardTime(this.currentTime+ae),fe&&this.snapshotCurrentStyles()):this.startTime+=ae}fork(ae,fe){return this.applyStylesToKeyframe(),new ua(this._driver,ae,fe||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(ae){this.applyStylesToKeyframe(),this.duration=ae,this._loadKeyframe()}_updateStyle(ae,fe){this._localTimelineStyles[ae]=fe,this._globalTimelineStyles[ae]=fe,this._styleSummary[ae]={time:this.currentTime,value:fe}}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(ae){ae&&(this._previousKeyframe.easing=ae),Object.keys(this._globalTimelineStyles).forEach(fe=>{this._backFill[fe]=this._globalTimelineStyles[fe]||f.l3,this._currentKeyframe[fe]=f.l3}),this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(ae,fe,Ye,wt){fe&&(this._previousKeyframe.easing=fe);const Vt=wt&&wt.params||{},ii=function Va(vt,ae){const fe={};let Ye;return vt.forEach(wt=>{"*"===wt?(Ye=Ye||Object.keys(ae),Ye.forEach(Vt=>{fe[Vt]=f.l3})):mt(wt,!1,fe)}),fe}(ae,this._globalTimelineStyles);Object.keys(ii).forEach(ni=>{const _i=st(ii[ni],Vt,Ye);this._pendingStyles[ni]=_i,this._localTimelineStyles.hasOwnProperty(ni)||(this._backFill[ni]=this._globalTimelineStyles.hasOwnProperty(ni)?this._globalTimelineStyles[ni]:f.l3),this._updateStyle(ni,_i)})}applyStylesToKeyframe(){const ae=this._pendingStyles,fe=Object.keys(ae);0!=fe.length&&(this._pendingStyles={},fe.forEach(Ye=>{this._currentKeyframe[Ye]=ae[Ye]}),Object.keys(this._localTimelineStyles).forEach(Ye=>{this._currentKeyframe.hasOwnProperty(Ye)||(this._currentKeyframe[Ye]=this._localTimelineStyles[Ye])}))}snapshotCurrentStyles(){Object.keys(this._localTimelineStyles).forEach(ae=>{const fe=this._localTimelineStyles[ae];this._pendingStyles[ae]=fe,this._updateStyle(ae,fe)})}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const ae=[];for(let fe in this._currentKeyframe)ae.push(fe);return ae}mergeTimelineCollectedStyles(ae){Object.keys(ae._styleSummary).forEach(fe=>{const Ye=this._styleSummary[fe],wt=ae._styleSummary[fe];(!Ye||wt.time>Ye.time)&&this._updateStyle(fe,wt.value)})}buildKeyframes(){this.applyStylesToKeyframe();const ae=new Set,fe=new Set,Ye=1===this._keyframes.size&&0===this.duration;let wt=[];this._keyframes.forEach((ni,_i)=>{const Pi=mt(ni,!0);Object.keys(Pi).forEach(tn=>{const dn=Pi[tn];dn==f.k1?ae.add(tn):dn==f.l3&&fe.add(tn)}),Ye||(Pi.offset=_i/this.duration),wt.push(Pi)});const Vt=ae.size?bt(ae.values()):[],ii=fe.size?bt(fe.values()):[];if(Ye){const ni=wt[0],_i=be(ni);ni.offset=0,_i.offset=1,wt=[ni,_i]}return Bn(this.element,wt,Vt,ii,this.duration,this.startTime,this.easing,!1)}}class _a extends ua{constructor(ae,fe,Ye,wt,Vt,ii,ni=!1){super(ae,fe,ii.delay),this.keyframes=Ye,this.preStyleProps=wt,this.postStyleProps=Vt,this._stretchStartingKeyframe=ni,this.timings={duration:ii.duration,delay:ii.delay,easing:ii.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let ae=this.keyframes,{delay:fe,duration:Ye,easing:wt}=this.timings;if(this._stretchStartingKeyframe&&fe){const Vt=[],ii=Ye+fe,ni=fe/ii,_i=mt(ae[0],!1);_i.offset=0,Vt.push(_i);const Pi=mt(ae[0],!1);Pi.offset=va(ni),Vt.push(Pi);const tn=ae.length-1;for(let dn=1;dn<=tn;dn++){let Ln=mt(ae[dn],!1);Ln.offset=va((fe+Ln.offset*Ye)/ii),Vt.push(Ln)}Ye=ii,fe=0,wt="",ae=Vt}return Bn(this.element,ae,this.preStyleProps,this.postStyleProps,Ye,fe,wt,!0)}}function va(vt,ae=3){const fe=Math.pow(10,ae-1);return Math.round(vt*fe)/fe}class cr{}class ha extends cr{normalizePropertyName(ae,fe){return qt(ae)}normalizeStyleValue(ae,fe,Ye,wt){let Vt="";const ii=Ye.toString().trim();if(Ba[fe]&&0!==Ye&&"0"!==Ye)if("number"==typeof Ye)Vt="px";else{const ni=Ye.match(/^[+-]?[\d\.]+([a-z]*)$/);ni&&0==ni[1].length&&wt.push(function D(vt,ae){return new t.vHH(3005,M)}())}return ii+Vt}}const Ba=(()=>function Yr(vt){const ae={};return vt.forEach(fe=>ae[fe]=!0),ae}("width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective".split(",")))();function jr(vt,ae,fe,Ye,wt,Vt,ii,ni,_i,Pi,tn,dn,Ln){return{type:0,element:vt,triggerName:ae,isRemovalTransition:wt,fromState:fe,fromStyles:Vt,toState:Ye,toStyles:ii,timelines:ni,queriedElements:_i,preStyleProps:Pi,postStyleProps:tn,totalTime:dn,errors:Ln}}const mr={};class hn{constructor(ae,fe,Ye){this._triggerName=ae,this.ast=fe,this._stateStyles=Ye}match(ae,fe,Ye,wt){return function ea(vt,ae,fe,Ye,wt){return vt.some(Vt=>Vt(ae,fe,Ye,wt))}(this.ast.matchers,ae,fe,Ye,wt)}buildStyles(ae,fe,Ye){const wt=this._stateStyles["*"],Vt=this._stateStyles[ae],ii=wt?wt.buildStyles(fe,Ye):{};return Vt?Vt.buildStyles(fe,Ye):ii}build(ae,fe,Ye,wt,Vt,ii,ni,_i,Pi,tn){const dn=[],Ln=this.ast.options&&this.ast.options.params||mr,xn=this.buildStyles(Ye,ni&&ni.params||mr,dn),Tn=_i&&_i.params||mr,tr=this.buildStyles(wt,Tn,dn),Lr=new Set,gr=new Map,ia=new Map,qr="void"===wt,Cr={params:Object.assign(Object.assign({},Ln),Tn)},Zr=tn?[]:jn(ae,fe,this.ast.animation,Vt,ii,xn,tr,Cr,Pi,dn);let Zn=0;if(Zr.forEach(Za=>{Zn=Math.max(Za.duration+Za.delay,Zn)}),dn.length)return jr(fe,this._triggerName,Ye,wt,qr,xn,tr,[],[],gr,ia,Zn,dn);Zr.forEach(Za=>{const rt=Za.element,Et=V(gr,rt,{});Za.preStyleProps.forEach(Rt=>Et[Rt]=!0);const Dt=V(ia,rt,{});Za.postStyleProps.forEach(Rt=>Dt[Rt]=!0),rt!==fe&&Lr.add(rt)});const _r=bt(Lr.values());return jr(fe,this._triggerName,Ye,wt,qr,xn,tr,Zr,_r,gr,ia,Zn)}}class ir{constructor(ae,fe,Ye){this.styles=ae,this.defaultParams=fe,this.normalizer=Ye}buildStyles(ae,fe){const Ye={},wt=be(this.defaultParams);return Object.keys(ae).forEach(Vt=>{const ii=ae[Vt];null!=ii&&(wt[Vt]=ii)}),this.styles.styles.forEach(Vt=>{if("string"!=typeof Vt){const ii=Vt;Object.keys(ii).forEach(ni=>{let _i=ii[ni];_i.length>1&&(_i=st(_i,wt,fe));const Pi=this.normalizer.normalizePropertyName(ni,fe);_i=this.normalizer.normalizeStyleValue(ni,Pi,_i,fe),Ye[Pi]=_i})}}),Ye}}class Kr{constructor(ae,fe,Ye){this.name=ae,this.ast=fe,this._normalizer=Ye,this.transitionFactories=[],this.states={},fe.states.forEach(wt=>{this.states[wt.name]=new ir(wt.style,wt.options&&wt.options.params||{},Ye)}),ta(this.states,"true","1"),ta(this.states,"false","0"),fe.transitions.forEach(wt=>{this.transitionFactories.push(new hn(ae,wt,this.states))}),this.fallbackTransition=function Ta(vt,ae,fe){return new hn(vt,{type:1,animation:{type:2,steps:[],options:null},matchers:[(ii,ni)=>!0],options:null,queryCount:0,depCount:0},ae)}(ae,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(ae,fe,Ye,wt){return this.transitionFactories.find(ii=>ii.match(ae,fe,Ye,wt))||null}matchStyles(ae,fe,Ye){return this.fallbackTransition.buildStyles(ae,fe,Ye)}}function ta(vt,ae,fe){vt.hasOwnProperty(ae)?vt.hasOwnProperty(fe)||(vt[fe]=vt[ae]):vt.hasOwnProperty(fe)&&(vt[ae]=vt[fe])}const Pr=new Dn;class zr{constructor(ae,fe,Ye){this.bodyNode=ae,this._driver=fe,this._normalizer=Ye,this._animations={},this._playersById={},this.players=[]}register(ae,fe){const Ye=[],Vt=sn(this._driver,fe,Ye,[]);if(Ye.length)throw function c(vt){return new t.vHH(3503,M)}();this._animations[ae]=Vt}_buildPlayer(ae,fe,Ye){const wt=ae.element,Vt=we(0,this._normalizer,0,ae.keyframes,fe,Ye);return this._driver.animate(wt,Vt,ae.duration,ae.delay,ae.easing,[],!0)}create(ae,fe,Ye={}){const wt=[],Vt=this._animations[ae];let ii;const ni=new Map;if(Vt?(ii=jn(this._driver,fe,Vt,xt,Nt,{},{},Ye,Pr,wt),ii.forEach(tn=>{const dn=V(ni,tn.element,{});tn.postStyleProps.forEach(Ln=>dn[Ln]=null)})):(wt.push(function _(){return new t.vHH(3300,M)}()),ii=[]),wt.length)throw function E(vt){return new t.vHH(3504,M)}();ni.forEach((tn,dn)=>{Object.keys(tn).forEach(Ln=>{tn[Ln]=this._driver.computeStyle(dn,Ln,f.l3)})});const Pi=Ne(ii.map(tn=>{const dn=ni.get(tn.element);return this._buildPlayer(tn,{},dn)}));return this._playersById[ae]=Pi,Pi.onDestroy(()=>this.destroy(ae)),this.players.push(Pi),Pi}destroy(ae){const fe=this._getPlayer(ae);fe.destroy(),delete this._playersById[ae];const Ye=this.players.indexOf(fe);Ye>=0&&this.players.splice(Ye,1)}_getPlayer(ae){const fe=this._playersById[ae];if(!fe)throw function I(vt){return new t.vHH(3301,M)}();return fe}listen(ae,fe,Ye,wt){const Vt=ve(fe,"","","");return Q(this._getPlayer(ae),Ye,Vt,wt),()=>{}}command(ae,fe,Ye,wt){if("register"==Ye)return void this.register(ae,wt[0]);if("create"==Ye)return void this.create(ae,fe,wt[0]||{});const Vt=this._getPlayer(ae);switch(Ye){case"play":Vt.play();break;case"pause":Vt.pause();break;case"reset":Vt.reset();break;case"restart":Vt.restart();break;case"finish":Vt.finish();break;case"init":Vt.init();break;case"setPosition":Vt.setPosition(parseFloat(wt[0]));break;case"destroy":this.destroy(ae)}}}const Qr="ng-animate-queued",Nr="ng-animate-disabled",nr=[],Aa={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Oa={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},$n="__ng_removed";class oa{constructor(ae,fe=""){this.namespaceId=fe;const Ye=ae&&ae.hasOwnProperty("value");if(this.value=function Je(vt){return null!=vt?vt:null}(Ye?ae.value:ae),Ye){const Vt=be(ae);delete Vt.value,this.options=Vt}else this.options={};this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(ae){const fe=ae.params;if(fe){const Ye=this.options.params;Object.keys(fe).forEach(wt=>{null==Ye[wt]&&(Ye[wt]=fe[wt])})}}}const Br="void",Dr=new oa(Br);class Ur{constructor(ae,fe,Ye){this.id=ae,this.hostElement=fe,this._engine=Ye,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+ae,Oi(fe,this._hostClassName)}listen(ae,fe,Ye,wt){if(!this._triggers.hasOwnProperty(fe))throw function v(vt,ae){return new t.vHH(3302,M)}();if(null==Ye||0==Ye.length)throw function n(vt){return new t.vHH(3303,M)}();if(!function Qe(vt){return"start"==vt||"done"==vt}(Ye))throw function C(vt,ae){return new t.vHH(3400,M)}();const Vt=V(this._elementListeners,ae,[]),ii={name:fe,phase:Ye,callback:wt};Vt.push(ii);const ni=V(this._engine.statesByElement,ae,{});return ni.hasOwnProperty(fe)||(Oi(ae,Ct),Oi(ae,Ct+"-"+fe),ni[fe]=Dr),()=>{this._engine.afterFlush(()=>{const _i=Vt.indexOf(ii);_i>=0&&Vt.splice(_i,1),this._triggers[fe]||delete ni[fe]})}}register(ae,fe){return!this._triggers[ae]&&(this._triggers[ae]=fe,!0)}_getTrigger(ae){const fe=this._triggers[ae];if(!fe)throw function B(vt){return new t.vHH(3401,M)}();return fe}trigger(ae,fe,Ye,wt=!0){const Vt=this._getTrigger(fe),ii=new Ua(this.id,fe,ae);let ni=this._engine.statesByElement.get(ae);ni||(Oi(ae,Ct),Oi(ae,Ct+"-"+fe),this._engine.statesByElement.set(ae,ni={}));let _i=ni[fe];const Pi=new oa(Ye,this.id);if(!(Ye&&Ye.hasOwnProperty("value"))&&_i&&Pi.absorbOptions(_i.options),ni[fe]=Pi,_i||(_i=Dr),Pi.value!==Br&&_i.value===Pi.value){if(!function gt(vt,ae){const fe=Object.keys(vt),Ye=Object.keys(ae);if(fe.length!=Ye.length)return!1;for(let wt=0;wt{tt(ae,tr),Re(ae,Lr)})}return}const Ln=V(this._engine.playersByElement,ae,[]);Ln.forEach(Tn=>{Tn.namespaceId==this.id&&Tn.triggerName==fe&&Tn.queued&&Tn.destroy()});let Nn=Vt.matchTransition(_i.value,Pi.value,ae,Pi.params),xn=!1;if(!Nn){if(!wt)return;Nn=Vt.fallbackTransition,xn=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:ae,triggerName:fe,transition:Nn,fromState:_i,toState:Pi,player:ii,isFallbackTransition:xn}),xn||(Oi(ae,Qr),ii.onStart(()=>{rn(ae,Qr)})),ii.onDone(()=>{let Tn=this.players.indexOf(ii);Tn>=0&&this.players.splice(Tn,1);const tr=this._engine.playersByElement.get(ae);if(tr){let Lr=tr.indexOf(ii);Lr>=0&&tr.splice(Lr,1)}}),this.players.push(ii),Ln.push(ii),ii}deregister(ae){delete this._triggers[ae],this._engine.statesByElement.forEach((fe,Ye)=>{delete fe[ae]}),this._elementListeners.forEach((fe,Ye)=>{this._elementListeners.set(Ye,fe.filter(wt=>wt.name!=ae))})}clearElementCache(ae){this._engine.statesByElement.delete(ae),this._elementListeners.delete(ae);const fe=this._engine.playersByElement.get(ae);fe&&(fe.forEach(Ye=>Ye.destroy()),this._engine.playersByElement.delete(ae))}_signalRemovalForInnerTriggers(ae,fe){const Ye=this._engine.driver.query(ae,et,!0);Ye.forEach(wt=>{if(wt[$n])return;const Vt=this._engine.fetchNamespacesByElement(wt);Vt.size?Vt.forEach(ii=>ii.triggerLeaveAnimation(wt,fe,!1,!0)):this.clearElementCache(wt)}),this._engine.afterFlushAnimationsDone(()=>Ye.forEach(wt=>this.clearElementCache(wt)))}triggerLeaveAnimation(ae,fe,Ye,wt){const Vt=this._engine.statesByElement.get(ae),ii=new Map;if(Vt){const ni=[];if(Object.keys(Vt).forEach(_i=>{if(ii.set(_i,Vt[_i].value),this._triggers[_i]){const Pi=this.trigger(ae,_i,Br,wt);Pi&&ni.push(Pi)}}),ni.length)return this._engine.markElementAsRemoved(this.id,ae,!0,fe,ii),Ye&&Ne(ni).onDone(()=>this._engine.processLeaveNode(ae)),!0}return!1}prepareLeaveAnimationListeners(ae){const fe=this._elementListeners.get(ae),Ye=this._engine.statesByElement.get(ae);if(fe&&Ye){const wt=new Set;fe.forEach(Vt=>{const ii=Vt.name;if(wt.has(ii))return;wt.add(ii);const _i=this._triggers[ii].fallbackTransition,Pi=Ye[ii]||Dr,tn=new oa(Br),dn=new Ua(this.id,ii,ae);this._engine.totalQueuedPlayers++,this._queue.push({element:ae,triggerName:ii,transition:_i,fromState:Pi,toState:tn,player:dn,isFallbackTransition:!0})})}}removeNode(ae,fe){const Ye=this._engine;if(ae.childElementCount&&this._signalRemovalForInnerTriggers(ae,fe),this.triggerLeaveAnimation(ae,fe,!0))return;let wt=!1;if(Ye.totalAnimations){const Vt=Ye.players.length?Ye.playersByQueriedElement.get(ae):[];if(Vt&&Vt.length)wt=!0;else{let ii=ae;for(;ii=ii.parentNode;)if(Ye.statesByElement.get(ii)){wt=!0;break}}}if(this.prepareLeaveAnimationListeners(ae),wt)Ye.markElementAsRemoved(this.id,ae,!1,fe);else{const Vt=ae[$n];(!Vt||Vt===Aa)&&(Ye.afterFlush(()=>this.clearElementCache(ae)),Ye.destroyInnerAnimations(ae),Ye._onRemovalComplete(ae,fe))}}insertNode(ae,fe){Oi(ae,this._hostClassName)}drainQueuedTransitions(ae){const fe=[];return this._queue.forEach(Ye=>{const wt=Ye.player;if(wt.destroyed)return;const Vt=Ye.element,ii=this._elementListeners.get(Vt);ii&&ii.forEach(ni=>{if(ni.name==Ye.triggerName){const _i=ve(Vt,Ye.triggerName,Ye.fromState.value,Ye.toState.value);_i._data=ae,Q(Ye.player,ni.phase,_i,ni.callback)}}),wt.markedForDestroy?this._engine.afterFlush(()=>{wt.destroy()}):fe.push(Ye)}),this._queue=[],fe.sort((Ye,wt)=>{const Vt=Ye.transition.ast.depCount,ii=wt.transition.ast.depCount;return 0==Vt||0==ii?Vt-ii:this._engine.driver.containsElement(Ye.element,wt.element)?1:-1})}destroy(ae){this.players.forEach(fe=>fe.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,ae)}elementContainsData(ae){let fe=!1;return this._elementListeners.has(ae)&&(fe=!0),fe=!!this._queue.find(Ye=>Ye.element===ae)||fe,fe}}class ba{constructor(ae,fe,Ye){this.bodyNode=ae,this.driver=fe,this._normalizer=Ye,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(wt,Vt)=>{}}_onRemovalComplete(ae,fe){this.onRemovalComplete(ae,fe)}get queuedPlayers(){const ae=[];return this._namespaceList.forEach(fe=>{fe.players.forEach(Ye=>{Ye.queued&&ae.push(Ye)})}),ae}createNamespace(ae,fe){const Ye=new Ur(ae,fe,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,fe)?this._balanceNamespaceList(Ye,fe):(this.newHostElements.set(fe,Ye),this.collectEnterElement(fe)),this._namespaceLookup[ae]=Ye}_balanceNamespaceList(ae,fe){const Ye=this._namespaceList,wt=this.namespacesByHostElement,Vt=Ye.length-1;if(Vt>=0){let ii=!1;if(void 0!==this.driver.getParentElement){let ni=this.driver.getParentElement(fe);for(;ni;){const _i=wt.get(ni);if(_i){const Pi=Ye.indexOf(_i);Ye.splice(Pi+1,0,ae),ii=!0;break}ni=this.driver.getParentElement(ni)}}else for(let ni=Vt;ni>=0;ni--)if(this.driver.containsElement(Ye[ni].hostElement,fe)){Ye.splice(ni+1,0,ae),ii=!0;break}ii||Ye.unshift(ae)}else Ye.push(ae);return wt.set(fe,ae),ae}register(ae,fe){let Ye=this._namespaceLookup[ae];return Ye||(Ye=this.createNamespace(ae,fe)),Ye}registerTrigger(ae,fe,Ye){let wt=this._namespaceLookup[ae];wt&&wt.register(fe,Ye)&&this.totalAnimations++}destroy(ae,fe){if(!ae)return;const Ye=this._fetchNamespace(ae);this.afterFlush(()=>{this.namespacesByHostElement.delete(Ye.hostElement),delete this._namespaceLookup[ae];const wt=this._namespaceList.indexOf(Ye);wt>=0&&this._namespaceList.splice(wt,1)}),this.afterFlushAnimationsDone(()=>Ye.destroy(fe))}_fetchNamespace(ae){return this._namespaceLookup[ae]}fetchNamespacesByElement(ae){const fe=new Set,Ye=this.statesByElement.get(ae);if(Ye){const wt=Object.keys(Ye);for(let Vt=0;Vt=0&&this.collectedLeaveElements.splice(ii,1)}if(ae){const ii=this._fetchNamespace(ae);ii&&ii.insertNode(fe,Ye)}wt&&this.collectEnterElement(fe)}collectEnterElement(ae){this.collectedEnterElements.push(ae)}markElementAsDisabled(ae,fe){fe?this.disabledNodes.has(ae)||(this.disabledNodes.add(ae),Oi(ae,Nr)):this.disabledNodes.has(ae)&&(this.disabledNodes.delete(ae),rn(ae,Nr))}removeNode(ae,fe,Ye,wt){if(St(fe)){const Vt=ae?this._fetchNamespace(ae):null;if(Vt?Vt.removeNode(fe,wt):this.markElementAsRemoved(ae,fe,!1,wt),Ye){const ii=this.namespacesByHostElement.get(fe);ii&&ii.id!==ae&&ii.removeNode(fe,wt)}}else this._onRemovalComplete(fe,wt)}markElementAsRemoved(ae,fe,Ye,wt,Vt){this.collectedLeaveElements.push(fe),fe[$n]={namespaceId:ae,setForRemoval:wt,hasAnimation:Ye,removedBeforeQueried:!1,previousTriggersValues:Vt}}listen(ae,fe,Ye,wt,Vt){return St(fe)?this._fetchNamespace(ae).listen(fe,Ye,wt,Vt):()=>{}}_buildInstruction(ae,fe,Ye,wt,Vt){return ae.transition.build(this.driver,ae.element,ae.fromState.value,ae.toState.value,Ye,wt,ae.fromState.options,ae.toState.options,fe,Vt)}destroyInnerAnimations(ae){let fe=this.driver.query(ae,et,!0);fe.forEach(Ye=>this.destroyActiveAnimationsForElement(Ye)),0!=this.playersByQueriedElement.size&&(fe=this.driver.query(ae,ei,!0),fe.forEach(Ye=>this.finishActiveQueriedAnimationOnElement(Ye)))}destroyActiveAnimationsForElement(ae){const fe=this.playersByElement.get(ae);fe&&fe.forEach(Ye=>{Ye.queued?Ye.markedForDestroy=!0:Ye.destroy()})}finishActiveQueriedAnimationOnElement(ae){const fe=this.playersByQueriedElement.get(ae);fe&&fe.forEach(Ye=>Ye.finish())}whenRenderingDone(){return new Promise(ae=>{if(this.players.length)return Ne(this.players).onDone(()=>ae());ae()})}processLeaveNode(ae){var fe;const Ye=ae[$n];if(Ye&&Ye.setForRemoval){if(ae[$n]=Aa,Ye.namespaceId){this.destroyInnerAnimations(ae);const wt=this._fetchNamespace(Ye.namespaceId);wt&&wt.clearElementCache(ae)}this._onRemovalComplete(ae,Ye.setForRemoval)}(null===(fe=ae.classList)||void 0===fe?void 0:fe.contains(Nr))&&this.markElementAsDisabled(ae,!1),this.driver.query(ae,".ng-animate-disabled",!0).forEach(wt=>{this.markElementAsDisabled(wt,!1)})}flush(ae=-1){let fe=[];if(this.newHostElements.size&&(this.newHostElements.forEach((Ye,wt)=>this._balanceNamespaceList(Ye,wt)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let Ye=0;YeYe()),this._flushFns=[],this._whenQuietFns.length){const Ye=this._whenQuietFns;this._whenQuietFns=[],fe.length?Ne(fe).onDone(()=>{Ye.forEach(wt=>wt())}):Ye.forEach(wt=>wt())}}reportError(ae){throw function P(vt){return new t.vHH(3402,M)}()}_flushAnimations(ae,fe){const Ye=new Dn,wt=[],Vt=new Map,ii=[],ni=new Map,_i=new Map,Pi=new Map,tn=new Set;this.disabledNodes.forEach(ti=>{tn.add(ti);const pi=this.driver.query(ti,".ng-animate-queued",!0);for(let Li=0;Li{const Li=xt+Tn++;xn.set(pi,Li),ti.forEach(Ki=>Oi(Ki,Li))});const tr=[],Lr=new Set,gr=new Set;for(let ti=0;tiLr.add(Ki)):gr.add(pi))}const ia=new Map,qr=Ti(Ln,Array.from(Lr));qr.forEach((ti,pi)=>{const Li=Nt+Tn++;ia.set(pi,Li),ti.forEach(Ki=>Oi(Ki,Li))}),ae.push(()=>{Nn.forEach((ti,pi)=>{const Li=xn.get(pi);ti.forEach(Ki=>rn(Ki,Li))}),qr.forEach((ti,pi)=>{const Li=ia.get(pi);ti.forEach(Ki=>rn(Ki,Li))}),tr.forEach(ti=>{this.processLeaveNode(ti)})});const Cr=[],Zr=[];for(let ti=this._namespaceList.length-1;ti>=0;ti--)this._namespaceList[ti].drainQueuedTransitions(fe).forEach(Li=>{const Ki=Li.player,Ji=Li.element;if(Cr.push(Ki),this.collectedEnterElements.length){const ar=Ji[$n];if(ar&&ar.setForMove){if(ar.previousTriggersValues&&ar.previousTriggersValues.has(Li.triggerName)){const Sr=ar.previousTriggersValues.get(Li.triggerName),vr=this.statesByElement.get(Li.element);vr&&vr[Li.triggerName]&&(vr[Li.triggerName].value=Sr)}return void Ki.destroy()}}const on=!dn||!this.driver.containsElement(dn,Ji),bn=ia.get(Ji),er=xn.get(Ji),kn=this._buildInstruction(Li,Ye,er,bn,on);if(kn.errors&&kn.errors.length)return void Zr.push(kn);if(on)return Ki.onStart(()=>tt(Ji,kn.fromStyles)),Ki.onDestroy(()=>Re(Ji,kn.toStyles)),void wt.push(Ki);if(Li.isFallbackTransition)return Ki.onStart(()=>tt(Ji,kn.fromStyles)),Ki.onDestroy(()=>Re(Ji,kn.toStyles)),void wt.push(Ki);const la=[];kn.timelines.forEach(ar=>{ar.stretchStartingKeyframe=!0,this.disabledNodes.has(ar.element)||la.push(ar)}),kn.timelines=la,Ye.append(Ji,kn.timelines),ii.push({instruction:kn,player:Ki,element:Ji}),kn.queriedElements.forEach(ar=>V(ni,ar,[]).push(Ki)),kn.preStyleProps.forEach((ar,Sr)=>{const vr=Object.keys(ar);if(vr.length){let Hr=_i.get(Sr);Hr||_i.set(Sr,Hr=new Set),vr.forEach(Jr=>Hr.add(Jr))}}),kn.postStyleProps.forEach((ar,Sr)=>{const vr=Object.keys(ar);let Hr=Pi.get(Sr);Hr||Pi.set(Sr,Hr=new Set),vr.forEach(Jr=>Hr.add(Jr))})});if(Zr.length){const ti=[];Zr.forEach(pi=>{ti.push(function q(vt,ae){return new t.vHH(3505,M)}())}),Cr.forEach(pi=>pi.destroy()),this.reportError(ti)}const Zn=new Map,_r=new Map;ii.forEach(ti=>{const pi=ti.element;Ye.has(pi)&&(_r.set(pi,pi),this._beforeAnimationBuild(ti.player.namespaceId,ti.instruction,Zn))}),wt.forEach(ti=>{const pi=ti.element;this._getPreviousPlayers(pi,!1,ti.namespaceId,ti.triggerName,null).forEach(Ki=>{V(Zn,pi,[]).push(Ki),Ki.destroy()})});const Za=tr.filter(ti=>Qt(ti,_i,Pi)),rt=new Map;ai(rt,this.driver,gr,Pi,f.l3).forEach(ti=>{Qt(ti,_i,Pi)&&Za.push(ti)});const Dt=new Map;Nn.forEach((ti,pi)=>{ai(Dt,this.driver,new Set(ti),_i,f.k1)}),Za.forEach(ti=>{const pi=rt.get(ti),Li=Dt.get(ti);rt.set(ti,Object.assign(Object.assign({},pi),Li))});const Rt=[],Jt=[],Ci={};ii.forEach(ti=>{const{element:pi,player:Li,instruction:Ki}=ti;if(Ye.has(pi)){if(tn.has(pi))return Li.onDestroy(()=>Re(pi,Ki.toStyles)),Li.disabled=!0,Li.overrideTotalTime(Ki.totalTime),void wt.push(Li);let Ji=Ci;if(_r.size>1){let bn=pi;const er=[];for(;bn=bn.parentNode;){const kn=_r.get(bn);if(kn){Ji=kn;break}er.push(bn)}er.forEach(kn=>_r.set(kn,Ji))}const on=this._buildAnimation(Li.namespaceId,Ki,Zn,Vt,Dt,rt);if(Li.setRealPlayer(on),Ji===Ci)Rt.push(Li);else{const bn=this.playersByElement.get(Ji);bn&&bn.length&&(Li.parentPlayer=Ne(bn)),wt.push(Li)}}else tt(pi,Ki.fromStyles),Li.onDestroy(()=>Re(pi,Ki.toStyles)),Jt.push(Li),tn.has(pi)&&wt.push(Li)}),Jt.forEach(ti=>{const pi=Vt.get(ti.element);if(pi&&pi.length){const Li=Ne(pi);ti.setRealPlayer(Li)}}),wt.forEach(ti=>{ti.parentPlayer?ti.syncPlayerEvents(ti.parentPlayer):ti.destroy()});for(let ti=0;ti!on.destroyed);Ji.length?qn(this,pi,Ji):this.processLeaveNode(pi)}return tr.length=0,Rt.forEach(ti=>{this.players.push(ti),ti.onDone(()=>{ti.destroy();const pi=this.players.indexOf(ti);this.players.splice(pi,1)}),ti.play()}),Rt}elementContainsData(ae,fe){let Ye=!1;const wt=fe[$n];return wt&&wt.setForRemoval&&(Ye=!0),this.playersByElement.has(fe)&&(Ye=!0),this.playersByQueriedElement.has(fe)&&(Ye=!0),this.statesByElement.has(fe)&&(Ye=!0),this._fetchNamespace(ae).elementContainsData(fe)||Ye}afterFlush(ae){this._flushFns.push(ae)}afterFlushAnimationsDone(ae){this._whenQuietFns.push(ae)}_getPreviousPlayers(ae,fe,Ye,wt,Vt){let ii=[];if(fe){const ni=this.playersByQueriedElement.get(ae);ni&&(ii=ni)}else{const ni=this.playersByElement.get(ae);if(ni){const _i=!Vt||Vt==Br;ni.forEach(Pi=>{Pi.queued||!_i&&Pi.triggerName!=wt||ii.push(Pi)})}}return(Ye||wt)&&(ii=ii.filter(ni=>!(Ye&&Ye!=ni.namespaceId||wt&&wt!=ni.triggerName))),ii}_beforeAnimationBuild(ae,fe,Ye){const Vt=fe.element,ii=fe.isRemovalTransition?void 0:ae,ni=fe.isRemovalTransition?void 0:fe.triggerName;for(const _i of fe.timelines){const Pi=_i.element,tn=Pi!==Vt,dn=V(Ye,Pi,[]);this._getPreviousPlayers(Pi,tn,ii,ni,fe.toState).forEach(Nn=>{const xn=Nn.getRealPlayer();xn.beforeDestroy&&xn.beforeDestroy(),Nn.destroy(),dn.push(Nn)})}tt(Vt,fe.fromStyles)}_buildAnimation(ae,fe,Ye,wt,Vt,ii){const ni=fe.triggerName,_i=fe.element,Pi=[],tn=new Set,dn=new Set,Ln=fe.timelines.map(xn=>{const Tn=xn.element;tn.add(Tn);const tr=Tn[$n];if(tr&&tr.removedBeforeQueried)return new f.ZN(xn.duration,xn.delay);const Lr=Tn!==_i,gr=function Ot(vt){const ae=[];return oi(vt,ae),ae}((Ye.get(Tn)||nr).map(Zn=>Zn.getRealPlayer())).filter(Zn=>!!Zn.element&&Zn.element===Tn),ia=Vt.get(Tn),qr=ii.get(Tn),Cr=we(0,this._normalizer,0,xn.keyframes,ia,qr),Zr=this._buildPlayer(xn,Cr,gr);if(xn.subTimeline&&wt&&dn.add(Tn),Lr){const Zn=new Ua(ae,ni,Tn);Zn.setRealPlayer(Zr),Pi.push(Zn)}return Zr});Pi.forEach(xn=>{V(this.playersByQueriedElement,xn.element,[]).push(xn),xn.onDone(()=>function Qn(vt,ae,fe){let Ye;if(vt instanceof Map){if(Ye=vt.get(ae),Ye){if(Ye.length){const wt=Ye.indexOf(fe);Ye.splice(wt,1)}0==Ye.length&&vt.delete(ae)}}else if(Ye=vt[ae],Ye){if(Ye.length){const wt=Ye.indexOf(fe);Ye.splice(wt,1)}0==Ye.length&&delete vt[ae]}return Ye}(this.playersByQueriedElement,xn.element,xn))}),tn.forEach(xn=>Oi(xn,yt));const Nn=Ne(Ln);return Nn.onDestroy(()=>{tn.forEach(xn=>rn(xn,yt)),Re(_i,fe.toStyles)}),dn.forEach(xn=>{V(wt,xn,[]).push(Nn)}),Nn}_buildPlayer(ae,fe,Ye){return fe.length>0?this.driver.animate(ae.element,fe,ae.duration,ae.delay,ae.easing,Ye):new f.ZN(ae.duration,ae.delay)}}class Ua{constructor(ae,fe,Ye){this.namespaceId=ae,this.triggerName=fe,this.element=Ye,this._player=new f.ZN,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(ae){this._containsRealPlayer||(this._player=ae,Object.keys(this._queuedCallbacks).forEach(fe=>{this._queuedCallbacks[fe].forEach(Ye=>Q(ae,fe,void 0,Ye))}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(ae.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(ae){this.totalTime=ae}syncPlayerEvents(ae){const fe=this._player;fe.triggerCallback&&ae.onStart(()=>fe.triggerCallback("start")),ae.onDone(()=>this.finish()),ae.onDestroy(()=>this.destroy())}_queueEvent(ae,fe){V(this._queuedCallbacks,ae,[]).push(fe)}onDone(ae){this.queued&&this._queueEvent("done",ae),this._player.onDone(ae)}onStart(ae){this.queued&&this._queueEvent("start",ae),this._player.onStart(ae)}onDestroy(ae){this.queued&&this._queueEvent("destroy",ae),this._player.onDestroy(ae)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(ae){this.queued||this._player.setPosition(ae)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(ae){const fe=this._player;fe.triggerCallback&&fe.triggerCallback(ae)}}function St(vt){return vt&&1===vt.nodeType}function kt(vt,ae){const fe=vt.style.display;return vt.style.display=null!=ae?ae:"none",fe}function ai(vt,ae,fe,Ye,wt){const Vt=[];fe.forEach(_i=>Vt.push(kt(_i)));const ii=[];Ye.forEach((_i,Pi)=>{const tn={};_i.forEach(dn=>{const Ln=tn[dn]=ae.computeStyle(Pi,dn,wt);(!Ln||0==Ln.length)&&(Pi[$n]=Oa,ii.push(Pi))}),vt.set(Pi,tn)});let ni=0;return fe.forEach(_i=>kt(_i,Vt[ni++])),ii}function Ti(vt,ae){const fe=new Map;if(vt.forEach(ni=>fe.set(ni,[])),0==ae.length)return fe;const wt=new Set(ae),Vt=new Map;function ii(ni){if(!ni)return 1;let _i=Vt.get(ni);if(_i)return _i;const Pi=ni.parentNode;return _i=fe.has(Pi)?Pi:wt.has(Pi)?1:ii(Pi),Vt.set(ni,_i),_i}return ae.forEach(ni=>{const _i=ii(ni);1!==_i&&fe.get(_i).push(ni)}),fe}function Oi(vt,ae){var fe;null===(fe=vt.classList)||void 0===fe||fe.add(ae)}function rn(vt,ae){var fe;null===(fe=vt.classList)||void 0===fe||fe.remove(ae)}function qn(vt,ae,fe){Ne(fe).onDone(()=>vt.processLeaveNode(ae))}function oi(vt,ae){for(let fe=0;fewt.add(Vt)):ae.set(vt,Ye),fe.delete(vt),!0}class Di{constructor(ae,fe,Ye){this.bodyNode=ae,this._driver=fe,this._normalizer=Ye,this._triggerCache={},this.onRemovalComplete=(wt,Vt)=>{},this._transitionEngine=new ba(ae,fe,Ye),this._timelineEngine=new zr(ae,fe,Ye),this._transitionEngine.onRemovalComplete=(wt,Vt)=>this.onRemovalComplete(wt,Vt)}registerTrigger(ae,fe,Ye,wt,Vt){const ii=ae+"-"+wt;let ni=this._triggerCache[ii];if(!ni){const _i=[],tn=sn(this._driver,Vt,_i,[]);if(_i.length)throw function r(vt,ae){return new t.vHH(3404,M)}();ni=function Ka(vt,ae,fe){return new Kr(vt,ae,fe)}(wt,tn,this._normalizer),this._triggerCache[ii]=ni}this._transitionEngine.registerTrigger(fe,wt,ni)}register(ae,fe){this._transitionEngine.register(ae,fe)}destroy(ae,fe){this._transitionEngine.destroy(ae,fe)}onInsert(ae,fe,Ye,wt){this._transitionEngine.insertNode(ae,fe,Ye,wt)}onRemove(ae,fe,Ye,wt){this._transitionEngine.removeNode(ae,fe,wt||!1,Ye)}disableAnimations(ae,fe){this._transitionEngine.markElementAsDisabled(ae,fe)}process(ae,fe,Ye,wt){if("@"==Ye.charAt(0)){const[Vt,ii]=De(Ye);this._timelineEngine.command(Vt,fe,ii,wt)}else this._transitionEngine.trigger(ae,fe,Ye,wt)}listen(ae,fe,Ye,wt,Vt){if("@"==Ye.charAt(0)){const[ii,ni]=De(Ye);return this._timelineEngine.listen(ii,fe,ni,Vt)}return this._transitionEngine.listen(ae,fe,Ye,wt,Vt)}flush(ae=-1){this._transitionEngine.flush(ae)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}let Ke=(()=>{class vt{constructor(fe,Ye,wt){this._element=fe,this._startStyles=Ye,this._endStyles=wt,this._state=0;let Vt=vt.initialStylesByElement.get(fe);Vt||vt.initialStylesByElement.set(fe,Vt={}),this._initialStyles=Vt}start(){this._state<1&&(this._startStyles&&Re(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Re(this._element,this._initialStyles),this._endStyles&&(Re(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(vt.initialStylesByElement.delete(this._element),this._startStyles&&(tt(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(tt(this._element,this._endStyles),this._endStyles=null),Re(this._element,this._initialStyles),this._state=3)}}return vt.initialStylesByElement=new WeakMap,vt})();function We(vt){let ae=null;const fe=Object.keys(vt);for(let Ye=0;Yeae()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const ae=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,ae,this.options),this._finalKeyframe=ae.length?ae[ae.length-1]:{},this.domPlayer.addEventListener("finish",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_triggerWebAnimation(ae,fe,Ye){return ae.animate(fe,Ye)}onStart(ae){this._onStartFns.push(ae)}onDone(ae){this._onDoneFns.push(ae)}onDestroy(ae){this._onDestroyFns.push(ae)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(ae=>ae()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(ae=>ae()),this._onDestroyFns=[])}setPosition(ae){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=ae*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const ae={};if(this.hasStarted()){const fe=this._finalKeyframe;Object.keys(fe).forEach(Ye=>{"offset"!=Ye&&(ae[Ye]=this._finished?fe[Ye]:$i(this.element,Ye))})}this.currentSnapshot=ae}triggerCallback(ae){const fe="start"==ae?this._onStartFns:this._onDoneFns;fe.forEach(Ye=>Ye()),fe.length=0}}class yi{validateStyleProperty(ae){return ue(ae)}matchesElement(ae,fe){return!1}containsElement(ae,fe){return Le(ae,fe)}getParentElement(ae){return le(ae)}query(ae,fe,Ye){return ut(ae,fe,Ye)}computeStyle(ae,fe,Ye){return window.getComputedStyle(ae)[fe]}animate(ae,fe,Ye,wt,Vt,ii=[]){const _i={duration:Ye,delay:wt,fill:0==wt?"both":"forwards"};Vt&&(_i.easing=Vt);const Pi={},tn=ii.filter(Ln=>Ln instanceof Lt);(function qi(vt,ae){return 0===vt||0===ae})(Ye,wt)&&tn.forEach(Ln=>{let Nn=Ln.currentSnapshot;Object.keys(Nn).forEach(xn=>Pi[xn]=Nn[xn])}),fe=function fi(vt,ae,fe){const Ye=Object.keys(fe);if(Ye.length&&ae.length){let Vt=ae[0],ii=[];if(Ye.forEach(ni=>{Vt.hasOwnProperty(ni)||ii.push(ni),Vt[ni]=fe[ni]}),ii.length)for(var wt=1;wtmt(Ln,!1)),Pi);const dn=function Gi(vt,ae){let fe=null,Ye=null;return Array.isArray(ae)&&ae.length?(fe=We(ae[0]),ae.length>1&&(Ye=We(ae[ae.length-1]))):ae&&(fe=We(ae)),fe||Ye?new Ke(vt,fe,Ye):null}(ae,fe);return new Lt(ae,fe,_i,dn)}}var Yi=p(9808);let Fn=(()=>{class vt extends f._j{constructor(fe,Ye){super(),this._nextAnimationId=0,this._renderer=fe.createRenderer(Ye.body,{id:"0",encapsulation:t.ifc.None,styles:[],data:{animation:[]}})}build(fe){const Ye=this._nextAnimationId.toString();this._nextAnimationId++;const wt=Array.isArray(fe)?(0,f.vP)(fe):fe;return Ma(this._renderer,null,Ye,"register",[wt]),new Rr(Ye,this._renderer)}}return vt.\u0275fac=function(fe){return new(fe||vt)(t.LFG(t.FYo),t.LFG(Yi.K0))},vt.\u0275prov=t.Yz7({token:vt,factory:vt.\u0275fac}),vt})();class Rr extends f.LC{constructor(ae,fe){super(),this._id=ae,this._renderer=fe}create(ae,fe){return new Qa(this._id,ae,fe||{},this._renderer)}}class Qa{constructor(ae,fe,Ye,wt){this.id=ae,this.element=fe,this._renderer=wt,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command("create",Ye)}_listen(ae,fe){return this._renderer.listen(this.element,`@@${this.id}:${ae}`,fe)}_command(ae,...fe){return Ma(this._renderer,this.element,this.id,ae,fe)}onDone(ae){this._listen("done",ae)}onStart(ae){this._listen("start",ae)}onDestroy(ae){this._listen("destroy",ae)}init(){this._command("init")}hasStarted(){return this._started}play(){this._command("play"),this._started=!0}pause(){this._command("pause")}restart(){this._command("restart")}finish(){this._command("finish")}destroy(){this._command("destroy")}reset(){this._command("reset"),this._started=!1}setPosition(ae){this._command("setPosition",ae)}getPosition(){var ae,fe;return null!==(fe=null===(ae=this._renderer.engine.players[+this.id])||void 0===ae?void 0:ae.getPosition())&&void 0!==fe?fe:0}}function Ma(vt,ae,fe,Ye,wt){return vt.setProperty(ae,`@@${fe}:${Ye}`,wt)}const Fi="@.disabled";let Gn=(()=>{class vt{constructor(fe,Ye,wt){this.delegate=fe,this.engine=Ye,this._zone=wt,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),Ye.onRemovalComplete=(Vt,ii)=>{const ni=null==ii?void 0:ii.parentNode(Vt);ni&&ii.removeChild(ni,Vt)}}createRenderer(fe,Ye){const Vt=this.delegate.createRenderer(fe,Ye);if(!(fe&&Ye&&Ye.data&&Ye.data.animation)){let tn=this._rendererCache.get(Vt);return tn||(tn=new es("",Vt,this.engine),this._rendererCache.set(Vt,tn)),tn}const ii=Ye.id,ni=Ye.id+"-"+this._currentId;this._currentId++,this.engine.register(ni,fe);const _i=tn=>{Array.isArray(tn)?tn.forEach(_i):this.engine.registerTrigger(ii,ni,fe,tn.name,tn)};return Ye.data.animation.forEach(_i),new br(this,ni,Vt,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(fe,Ye,wt){fe>=0&&feYe(wt)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(Vt=>{const[ii,ni]=Vt;ii(ni)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([Ye,wt]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return vt.\u0275fac=function(fe){return new(fe||vt)(t.LFG(t.FYo),t.LFG(Di),t.LFG(t.R0b))},vt.\u0275prov=t.Yz7({token:vt,factory:vt.\u0275fac}),vt})();class es{constructor(ae,fe,Ye){this.namespaceId=ae,this.delegate=fe,this.engine=Ye,this.destroyNode=this.delegate.destroyNode?wt=>fe.destroyNode(wt):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy()}createElement(ae,fe){return this.delegate.createElement(ae,fe)}createComment(ae){return this.delegate.createComment(ae)}createText(ae){return this.delegate.createText(ae)}appendChild(ae,fe){this.delegate.appendChild(ae,fe),this.engine.onInsert(this.namespaceId,fe,ae,!1)}insertBefore(ae,fe,Ye,wt=!0){this.delegate.insertBefore(ae,fe,Ye),this.engine.onInsert(this.namespaceId,fe,ae,wt)}removeChild(ae,fe,Ye){this.engine.onRemove(this.namespaceId,fe,this.delegate,Ye)}selectRootElement(ae,fe){return this.delegate.selectRootElement(ae,fe)}parentNode(ae){return this.delegate.parentNode(ae)}nextSibling(ae){return this.delegate.nextSibling(ae)}setAttribute(ae,fe,Ye,wt){this.delegate.setAttribute(ae,fe,Ye,wt)}removeAttribute(ae,fe,Ye){this.delegate.removeAttribute(ae,fe,Ye)}addClass(ae,fe){this.delegate.addClass(ae,fe)}removeClass(ae,fe){this.delegate.removeClass(ae,fe)}setStyle(ae,fe,Ye,wt){this.delegate.setStyle(ae,fe,Ye,wt)}removeStyle(ae,fe,Ye){this.delegate.removeStyle(ae,fe,Ye)}setProperty(ae,fe,Ye){"@"==fe.charAt(0)&&fe==Fi?this.disableAnimations(ae,!!Ye):this.delegate.setProperty(ae,fe,Ye)}setValue(ae,fe){this.delegate.setValue(ae,fe)}listen(ae,fe,Ye){return this.delegate.listen(ae,fe,Ye)}disableAnimations(ae,fe){this.engine.disableAnimations(ae,fe)}}class br extends es{constructor(ae,fe,Ye,wt){super(fe,Ye,wt),this.factory=ae,this.namespaceId=fe}setProperty(ae,fe,Ye){"@"==fe.charAt(0)?"."==fe.charAt(1)&&fe==Fi?this.disableAnimations(ae,Ye=void 0===Ye||!!Ye):this.engine.process(this.namespaceId,ae,fe.substr(1),Ye):this.delegate.setProperty(ae,fe,Ye)}listen(ae,fe,Ye){if("@"==fe.charAt(0)){const wt=function Ks(vt){switch(vt){case"body":return document.body;case"document":return document;case"window":return window;default:return vt}}(ae);let Vt=fe.substr(1),ii="";return"@"!=Vt.charAt(0)&&([Vt,ii]=function ts(vt){const ae=vt.indexOf(".");return[vt.substring(0,ae),vt.substr(ae+1)]}(Vt)),this.engine.listen(this.namespaceId,wt,Vt,ii,ni=>{this.factory.scheduleListenerCallback(ni._data||-1,Ye,ni)})}return this.delegate.listen(ae,fe,Ye)}}let pa=(()=>{class vt extends Di{constructor(fe,Ye,wt){super(fe.body,Ye,wt)}ngOnDestroy(){this.flush()}}return vt.\u0275fac=function(fe){return new(fe||vt)(t.LFG(Yi.K0),t.LFG(ui),t.LFG(cr))},vt.\u0275prov=t.Yz7({token:vt,factory:vt.\u0275fac}),vt})();const Qs=new t.OlP("AnimationModuleType"),is=[{provide:f._j,useClass:Fn},{provide:cr,useFactory:function Ss(){return new ha}},{provide:Di,useClass:pa},{provide:t.FYo,useFactory:function Es(vt,ae,fe){return new Gn(vt,ae,fe)},deps:[e.se,Di,t.R0b]}],Ts=[{provide:ui,useFactory:()=>new yi},{provide:Qs,useValue:"BrowserAnimations"},...is],xs=[{provide:ui,useClass:It},{provide:Qs,useValue:"NoopAnimations"},...is];let Gr=(()=>{class vt{static withConfig(fe){return{ngModule:vt,providers:fe.disableAnimations?xs:Ts}}}return vt.\u0275fac=function(fe){return new(fe||vt)},vt.\u0275mod=t.oAB({type:vt}),vt.\u0275inj=t.cJS({providers:Ts,imports:[e.b2]}),vt})()},2313:(Ve,j,p)=>{"use strict";p.d(j,{H7:()=>it,b2:()=>dt,q6:()=>V,se:()=>c,t6:()=>Ht});var t=p(9808),e=p(5e3);class f extends t.w_{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class M extends f{static makeCurrent(){(0,t.HT)(new M)}onAndCancel(Ge,at,st){return Ge.addEventListener(at,st,!1),()=>{Ge.removeEventListener(at,st,!1)}}dispatchEvent(Ge,at){Ge.dispatchEvent(at)}remove(Ge){Ge.parentNode&&Ge.parentNode.removeChild(Ge)}createElement(Ge,at){return(at=at||this.getDefaultDocument()).createElement(Ge)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(Ge){return Ge.nodeType===Node.ELEMENT_NODE}isShadowRoot(Ge){return Ge instanceof DocumentFragment}getGlobalEventTarget(Ge,at){return"window"===at?window:"document"===at?Ge:"body"===at?Ge.body:null}getBaseHref(Ge){const at=function b(){return a=a||document.querySelector("base"),a?a.getAttribute("href"):null}();return null==at?null:function N(Se){d=d||document.createElement("a"),d.setAttribute("href",Se);const Ge=d.pathname;return"/"===Ge.charAt(0)?Ge:`/${Ge}`}(at)}resetBaseElement(){a=null}getUserAgent(){return window.navigator.userAgent}getCookie(Ge){return(0,t.Mx)(document.cookie,Ge)}}let d,a=null;const h=new e.OlP("TRANSITION_ID"),w=[{provide:e.ip1,useFactory:function A(Se,Ge,at){return()=>{at.get(e.CZH).donePromise.then(()=>{const st=(0,t.q)(),bt=Ge.querySelectorAll(`style[ng-transition="${Se}"]`);for(let gi=0;gi{const gi=Ge.findTestabilityInTree(st,bt);if(null==gi)throw new Error("Could not find testability for element.");return gi},e.dqk.getAllAngularTestabilities=()=>Ge.getAllTestabilities(),e.dqk.getAllAngularRootElements=()=>Ge.getAllRootElements(),e.dqk.frameworkStabilizers||(e.dqk.frameworkStabilizers=[]),e.dqk.frameworkStabilizers.push(st=>{const bt=e.dqk.getAllAngularTestabilities();let gi=bt.length,qt=!1;const Xt=function(qi){qt=qt||qi,gi--,0==gi&&st(qt)};bt.forEach(function(qi){qi.whenStable(Xt)})})}findTestabilityInTree(Ge,at,st){if(null==at)return null;const bt=Ge.getTestability(at);return null!=bt?bt:st?(0,t.q)().isShadowRoot(at)?this.findTestabilityInTree(Ge,at.host,!0):this.findTestabilityInTree(Ge,at.parentElement,!0):null}}let L=(()=>{class Se{build(){return new XMLHttpRequest}}return Se.\u0275fac=function(at){return new(at||Se)},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})();const k=new e.OlP("EventManagerPlugins");let S=(()=>{class Se{constructor(at,st){this._zone=st,this._eventNameToPlugin=new Map,at.forEach(bt=>bt.manager=this),this._plugins=at.slice().reverse()}addEventListener(at,st,bt){return this._findPluginFor(st).addEventListener(at,st,bt)}addGlobalEventListener(at,st,bt){return this._findPluginFor(st).addGlobalEventListener(at,st,bt)}getZone(){return this._zone}_findPluginFor(at){const st=this._eventNameToPlugin.get(at);if(st)return st;const bt=this._plugins;for(let gi=0;gi{class Se{constructor(){this._stylesSet=new Set}addStyles(at){const st=new Set;at.forEach(bt=>{this._stylesSet.has(bt)||(this._stylesSet.add(bt),st.add(bt))}),this.onStylesAdded(st)}onStylesAdded(at){}getAllStyles(){return Array.from(this._stylesSet)}}return Se.\u0275fac=function(at){return new(at||Se)},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})(),Y=(()=>{class Se extends Z{constructor(at){super(),this._doc=at,this._hostNodes=new Map,this._hostNodes.set(at.head,[])}_addStylesToHost(at,st,bt){at.forEach(gi=>{const qt=this._doc.createElement("style");qt.textContent=gi,bt.push(st.appendChild(qt))})}addHost(at){const st=[];this._addStylesToHost(this._stylesSet,at,st),this._hostNodes.set(at,st)}removeHost(at){const st=this._hostNodes.get(at);st&&st.forEach(ne),this._hostNodes.delete(at)}onStylesAdded(at){this._hostNodes.forEach((st,bt)=>{this._addStylesToHost(at,bt,st)})}ngOnDestroy(){this._hostNodes.forEach(at=>at.forEach(ne))}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(t.K0))},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})();function ne(Se){(0,t.q)().remove(Se)}const $={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/MathML/"},de=/%COMP%/g;function i(Se,Ge,at){for(let st=0;st{if("__ngUnwrap__"===Ge)return Se;!1===Se(Ge)&&(Ge.preventDefault(),Ge.returnValue=!1)}}let c=(()=>{class Se{constructor(at,st,bt){this.eventManager=at,this.sharedStylesHost=st,this.appId=bt,this.rendererByCompId=new Map,this.defaultRenderer=new _(at)}createRenderer(at,st){if(!at||!st)return this.defaultRenderer;switch(st.encapsulation){case e.ifc.Emulated:{let bt=this.rendererByCompId.get(st.id);return bt||(bt=new v(this.eventManager,this.sharedStylesHost,st,this.appId),this.rendererByCompId.set(st.id,bt)),bt.applyToHost(at),bt}case 1:case e.ifc.ShadowDom:return new n(this.eventManager,this.sharedStylesHost,at,st);default:if(!this.rendererByCompId.has(st.id)){const bt=i(st.id,st.styles,[]);this.sharedStylesHost.addStyles(bt),this.rendererByCompId.set(st.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(S),e.LFG(Y),e.LFG(e.AFp))},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})();class _{constructor(Ge){this.eventManager=Ge,this.data=Object.create(null),this.destroyNode=null}destroy(){}createElement(Ge,at){return at?document.createElementNS($[at]||at,Ge):document.createElement(Ge)}createComment(Ge){return document.createComment(Ge)}createText(Ge){return document.createTextNode(Ge)}appendChild(Ge,at){Ge.appendChild(at)}insertBefore(Ge,at,st){Ge&&Ge.insertBefore(at,st)}removeChild(Ge,at){Ge&&Ge.removeChild(at)}selectRootElement(Ge,at){let st="string"==typeof Ge?document.querySelector(Ge):Ge;if(!st)throw new Error(`The selector "${Ge}" did not match any elements`);return at||(st.textContent=""),st}parentNode(Ge){return Ge.parentNode}nextSibling(Ge){return Ge.nextSibling}setAttribute(Ge,at,st,bt){if(bt){at=bt+":"+at;const gi=$[bt];gi?Ge.setAttributeNS(gi,at,st):Ge.setAttribute(at,st)}else Ge.setAttribute(at,st)}removeAttribute(Ge,at,st){if(st){const bt=$[st];bt?Ge.removeAttributeNS(bt,at):Ge.removeAttribute(`${st}:${at}`)}else Ge.removeAttribute(at)}addClass(Ge,at){Ge.classList.add(at)}removeClass(Ge,at){Ge.classList.remove(at)}setStyle(Ge,at,st,bt){bt&(e.JOm.DashCase|e.JOm.Important)?Ge.style.setProperty(at,st,bt&e.JOm.Important?"important":""):Ge.style[at]=st}removeStyle(Ge,at,st){st&e.JOm.DashCase?Ge.style.removeProperty(at):Ge.style[at]=""}setProperty(Ge,at,st){Ge[at]=st}setValue(Ge,at){Ge.nodeValue=at}listen(Ge,at,st){return"string"==typeof Ge?this.eventManager.addGlobalEventListener(Ge,at,r(st)):this.eventManager.addEventListener(Ge,at,r(st))}}class v extends _{constructor(Ge,at,st,bt){super(Ge),this.component=st;const gi=i(bt+"-"+st.id,st.styles,[]);at.addStyles(gi),this.contentAttr=function me(Se){return"_ngcontent-%COMP%".replace(de,Se)}(bt+"-"+st.id),this.hostAttr=function y(Se){return"_nghost-%COMP%".replace(de,Se)}(bt+"-"+st.id)}applyToHost(Ge){super.setAttribute(Ge,this.hostAttr,"")}createElement(Ge,at){const st=super.createElement(Ge,at);return super.setAttribute(st,this.contentAttr,""),st}}class n extends _{constructor(Ge,at,st,bt){super(Ge),this.sharedStylesHost=at,this.hostEl=st,this.shadowRoot=st.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const gi=i(bt.id,bt.styles,[]);for(let qt=0;qt{class Se extends U{constructor(at){super(at)}supports(at){return!0}addEventListener(at,st,bt){return at.addEventListener(st,bt,!1),()=>this.removeEventListener(at,st,bt)}removeEventListener(at,st,bt){return at.removeEventListener(st,bt)}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(t.K0))},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})();const B=["alt","control","meta","shift"],H={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},q={A:"1",B:"2",C:"3",D:"4",E:"5",F:"6",G:"7",H:"8",I:"9",J:"*",K:"+",M:"-",N:".",O:"/","`":"0","\x90":"NumLock"},he={alt:Se=>Se.altKey,control:Se=>Se.ctrlKey,meta:Se=>Se.metaKey,shift:Se=>Se.shiftKey};let _e=(()=>{class Se extends U{constructor(at){super(at)}supports(at){return null!=Se.parseEventName(at)}addEventListener(at,st,bt){const gi=Se.parseEventName(st),qt=Se.eventCallback(gi.fullKey,bt,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,t.q)().onAndCancel(at,gi.domEventName,qt))}static parseEventName(at){const st=at.toLowerCase().split("."),bt=st.shift();if(0===st.length||"keydown"!==bt&&"keyup"!==bt)return null;const gi=Se._normalizeKey(st.pop());let qt="";if(B.forEach(qi=>{const fi=st.indexOf(qi);fi>-1&&(st.splice(fi,1),qt+=qi+".")}),qt+=gi,0!=st.length||0===gi.length)return null;const Xt={};return Xt.domEventName=bt,Xt.fullKey=qt,Xt}static getEventFullKey(at){let st="",bt=function Ne(Se){let Ge=Se.key;if(null==Ge){if(Ge=Se.keyIdentifier,null==Ge)return"Unidentified";Ge.startsWith("U+")&&(Ge=String.fromCharCode(parseInt(Ge.substring(2),16)),3===Se.location&&q.hasOwnProperty(Ge)&&(Ge=q[Ge]))}return H[Ge]||Ge}(at);return bt=bt.toLowerCase()," "===bt?bt="space":"."===bt&&(bt="dot"),B.forEach(gi=>{gi!=bt&&he[gi](at)&&(st+=gi+".")}),st+=bt,st}static eventCallback(at,st,bt){return gi=>{Se.getEventFullKey(gi)===at&&bt.runGuarded(()=>st(gi))}}static _normalizeKey(at){return"esc"===at?"escape":at}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(t.K0))},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})();const V=(0,e.eFA)(e._c5,"browser",[{provide:e.Lbi,useValue:t.bD},{provide:e.g9A,useValue:function we(){M.makeCurrent(),D.init()},multi:!0},{provide:t.K0,useFactory:function Ue(){return(0,e.RDi)(document),document},deps:[]}]),De=[{provide:e.zSh,useValue:"root"},{provide:e.qLn,useFactory:function Q(){return new e.qLn},deps:[]},{provide:k,useClass:C,multi:!0,deps:[t.K0,e.R0b,e.Lbi]},{provide:k,useClass:_e,multi:!0,deps:[t.K0]},{provide:c,useClass:c,deps:[S,Y,e.AFp]},{provide:e.FYo,useExisting:c},{provide:Z,useExisting:Y},{provide:Y,useClass:Y,deps:[t.K0]},{provide:e.dDg,useClass:e.dDg,deps:[e.R0b]},{provide:S,useClass:S,deps:[k,e.R0b]},{provide:t.JF,useClass:L,deps:[]}];let dt=(()=>{class Se{constructor(at){if(at)throw new Error("BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.")}static withServerTransition(at){return{ngModule:Se,providers:[{provide:e.AFp,useValue:at.appId},{provide:h,useExisting:e.AFp},w]}}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(Se,12))},Se.\u0275mod=e.oAB({type:Se}),Se.\u0275inj=e.cJS({providers:De,imports:[t.ez,e.hGG]}),Se})();"undefined"!=typeof window&&window;const Oe={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},ce=new e.OlP("HammerGestureConfig"),be=new e.OlP("HammerLoader");let pt=(()=>{class Se{constructor(){this.events=[],this.overrides={}}buildHammer(at){const st=new Hammer(at,this.options);st.get("pinch").set({enable:!0}),st.get("rotate").set({enable:!0});for(const bt in this.overrides)st.get(bt).set(this.overrides[bt]);return st}}return Se.\u0275fac=function(at){return new(at||Se)},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})(),mt=(()=>{class Se extends U{constructor(at,st,bt,gi){super(at),this._config=st,this.console=bt,this.loader=gi,this._loaderPromise=null}supports(at){return!(!Oe.hasOwnProperty(at.toLowerCase())&&!this.isCustomEvent(at)||!window.Hammer&&!this.loader)}addEventListener(at,st,bt){const gi=this.manager.getZone();if(st=st.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||this.loader();let qt=!1,Xt=()=>{qt=!0};return this._loaderPromise.then(()=>{window.Hammer?qt||(Xt=this.addEventListener(at,st,bt)):Xt=()=>{}}).catch(()=>{Xt=()=>{}}),()=>{Xt()}}return gi.runOutsideAngular(()=>{const qt=this._config.buildHammer(at),Xt=function(qi){gi.runGuarded(function(){bt(qi)})};return qt.on(st,Xt),()=>{qt.off(st,Xt),"function"==typeof qt.destroy&&qt.destroy()}})}isCustomEvent(at){return this._config.events.indexOf(at)>-1}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(t.K0),e.LFG(ce),e.LFG(e.c2e),e.LFG(be,8))},Se.\u0275prov=e.Yz7({token:Se,factory:Se.\u0275fac}),Se})(),Ht=(()=>{class Se{}return Se.\u0275fac=function(at){return new(at||Se)},Se.\u0275mod=e.oAB({type:Se}),Se.\u0275inj=e.cJS({providers:[{provide:k,useClass:mt,multi:!0,deps:[t.K0,ce,e.c2e,[new e.FiY,be]]},{provide:ce,useClass:pt,deps:[]}]}),Se})(),it=(()=>{class Se{}return Se.\u0275fac=function(at){return new(at||Se)},Se.\u0275prov=e.Yz7({token:Se,factory:function(at){let st=null;return st=at?new(at||Se):e.LFG(tt),st},providedIn:"root"}),Se})(),tt=(()=>{class Se extends it{constructor(at){super(),this._doc=at}sanitize(at,st){if(null==st)return null;switch(at){case e.q3G.NONE:return st;case e.q3G.HTML:return(0,e.qzn)(st,"HTML")?(0,e.z3N)(st):(0,e.EiD)(this._doc,String(st)).toString();case e.q3G.STYLE:return(0,e.qzn)(st,"Style")?(0,e.z3N)(st):st;case e.q3G.SCRIPT:if((0,e.qzn)(st,"Script"))return(0,e.z3N)(st);throw new Error("unsafe value used in a script context");case e.q3G.URL:return(0,e.yhl)(st),(0,e.qzn)(st,"URL")?(0,e.z3N)(st):(0,e.mCW)(String(st));case e.q3G.RESOURCE_URL:if((0,e.qzn)(st,"ResourceURL"))return(0,e.z3N)(st);throw new Error("unsafe value used in a resource URL context (see https://g.co/ng/security#xss)");default:throw new Error(`Unexpected SecurityContext ${at} (see https://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(at){return(0,e.JVY)(at)}bypassSecurityTrustStyle(at){return(0,e.L6k)(at)}bypassSecurityTrustScript(at){return(0,e.eBb)(at)}bypassSecurityTrustUrl(at){return(0,e.LAX)(at)}bypassSecurityTrustResourceUrl(at){return(0,e.pB0)(at)}}return Se.\u0275fac=function(at){return new(at||Se)(e.LFG(t.K0))},Se.\u0275prov=e.Yz7({token:Se,factory:function(at){let st=null;return st=at?new at:function Re(Se){return new tt(Se.get(t.K0))}(e.LFG(e.zs3)),st},providedIn:"root"}),Se})()},1402:(Ve,j,p)=>{"use strict";p.d(j,{gz:()=>Zi,gk:()=>H,m2:()=>P,Q3:()=>q,OD:()=>B,Av:()=>Q,F0:()=>_r,rH:()=>Et,Od:()=>Jt,yS:()=>Dt,Bz:()=>Da,lC:()=>Nr});var t=p(5e3),e=p(8306),f=p(727),M=p(4482),a=p(5403);function b(){return(0,M.e)((Be,Me)=>{let ge=null;Be._refCount++;const $e=(0,a.x)(Me,void 0,void 0,void 0,()=>{if(!Be||Be._refCount<=0||0<--Be._refCount)return void(ge=null);const ct=Be._connection,Pt=ge;ge=null,ct&&(!Pt||ct===Pt)&&ct.unsubscribe(),Me.unsubscribe()});Be.subscribe($e),$e.closed||(ge=Be.connect())})}class d extends e.y{constructor(Me,ge){super(),this.source=Me,this.subjectFactory=ge,this._subject=null,this._refCount=0,this._connection=null,(0,M.A)(Me)&&(this.lift=Me.lift)}_subscribe(Me){return this.getSubject().subscribe(Me)}getSubject(){const Me=this._subject;return(!Me||Me.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:Me}=this;this._subject=this._connection=null,null==Me||Me.unsubscribe()}connect(){let Me=this._connection;if(!Me){Me=this._connection=new f.w0;const ge=this.getSubject();Me.add(this.source.subscribe((0,a.x)(ge,void 0,()=>{this._teardown(),ge.complete()},$e=>{this._teardown(),ge.error($e)},()=>this._teardown()))),Me.closed&&(this._connection=null,Me=f.w0.EMPTY)}return Me}refCount(){return b()(this)}}var N=p(457),h=p(9646),A=p(1135),w=p(9841),D=p(2843),L=p(6805),k=p(7272),S=p(9770),U=p(515),Z=p(7579),Y=p(9300);function ne(Be){return Be<=0?()=>U.E:(0,M.e)((Me,ge)=>{let $e=[];Me.subscribe((0,a.x)(ge,ct=>{$e.push(ct),Be<$e.length&&$e.shift()},()=>{for(const ct of $e)ge.next(ct);ge.complete()},void 0,()=>{$e=null}))})}var $=p(8068),de=p(6590),te=p(4671),oe=p(4004),X=p(3900),me=p(5698),y=p(8675),i=p(5026),r=p(262),u=p(4351),c=p(590),_=p(5577),E=p(8505),I=p(8746),v=p(8189),n=p(9808);class C{constructor(Me,ge){this.id=Me,this.url=ge}}class B extends C{constructor(Me,ge,$e="imperative",ct=null){super(Me,ge),this.navigationTrigger=$e,this.restoredState=ct}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class P extends C{constructor(Me,ge,$e){super(Me,ge),this.urlAfterRedirects=$e}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class H extends C{constructor(Me,ge,$e){super(Me,ge),this.reason=$e}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class q extends C{constructor(Me,ge,$e){super(Me,ge),this.error=$e}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class he extends C{constructor(Me,ge,$e,ct){super(Me,ge),this.urlAfterRedirects=$e,this.state=ct}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class _e extends C{constructor(Me,ge,$e,ct){super(Me,ge),this.urlAfterRedirects=$e,this.state=ct}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Ne extends C{constructor(Me,ge,$e,ct,Pt){super(Me,ge),this.urlAfterRedirects=$e,this.state=ct,this.shouldActivate=Pt}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class we extends C{constructor(Me,ge,$e,ct){super(Me,ge),this.urlAfterRedirects=$e,this.state=ct}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Q extends C{constructor(Me,ge,$e,ct){super(Me,ge),this.urlAfterRedirects=$e,this.state=ct}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Ue{constructor(Me){this.route=Me}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class ve{constructor(Me){this.route=Me}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class V{constructor(Me){this.snapshot=Me}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class De{constructor(Me){this.snapshot=Me}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class dt{constructor(Me){this.snapshot=Me}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ie{constructor(Me){this.snapshot=Me}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ae{constructor(Me,ge,$e){this.routerEvent=Me,this.position=ge,this.anchor=$e}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}const le="primary";class Te{constructor(Me){this.params=Me||{}}has(Me){return Object.prototype.hasOwnProperty.call(this.params,Me)}get(Me){if(this.has(Me)){const ge=this.params[Me];return Array.isArray(ge)?ge[0]:ge}return null}getAll(Me){if(this.has(Me)){const ge=this.params[Me];return Array.isArray(ge)?ge:[ge]}return[]}get keys(){return Object.keys(this.params)}}function xe(Be){return new Te(Be)}const W="ngNavigationCancelingError";function ee(Be){const Me=Error("NavigationCancelingError: "+Be);return Me[W]=!0,Me}function Ce(Be,Me,ge){const $e=ge.path.split("/");if($e.length>Be.length||"full"===ge.pathMatch&&(Me.hasChildren()||$e.length$e[Pt]===ct)}return Be===Me}function It(Be){return Array.prototype.concat.apply([],Be)}function ui(Be){return Be.length>0?Be[Be.length-1]:null}function Gt(Be,Me){for(const ge in Be)Be.hasOwnProperty(ge)&&Me(Be[ge],ge)}function hi(Be){return(0,t.CqO)(Be)?Be:(0,t.QGY)(Be)?(0,N.D)(Promise.resolve(Be)):(0,h.of)(Be)}const Nt={exact:function ei(Be,Me,ge){if(!it(Be.segments,Me.segments)||!ce(Be.segments,Me.segments,ge)||Be.numberOfChildren!==Me.numberOfChildren)return!1;for(const $e in Me.children)if(!Be.children[$e]||!ei(Be.children[$e],Me.children[$e],ge))return!1;return!0},subset:Pe},Ct={exact:function yt(Be,Me){return ut(Be,Me)},subset:function Yt(Be,Me){return Object.keys(Me).length<=Object.keys(Be).length&&Object.keys(Me).every(ge=>ht(Be[ge],Me[ge]))},ignored:()=>!0};function et(Be,Me,ge){return Nt[ge.paths](Be.root,Me.root,ge.matrixParams)&&Ct[ge.queryParams](Be.queryParams,Me.queryParams)&&!("exact"===ge.fragment&&Be.fragment!==Me.fragment)}function Pe(Be,Me,ge){return Oe(Be,Me,Me.segments,ge)}function Oe(Be,Me,ge,$e){if(Be.segments.length>ge.length){const ct=Be.segments.slice(0,ge.length);return!(!it(ct,ge)||Me.hasChildren()||!ce(ct,ge,$e))}if(Be.segments.length===ge.length){if(!it(Be.segments,ge)||!ce(Be.segments,ge,$e))return!1;for(const ct in Me.children)if(!Be.children[ct]||!Pe(Be.children[ct],Me.children[ct],$e))return!1;return!0}{const ct=ge.slice(0,Be.segments.length),Pt=ge.slice(Be.segments.length);return!!(it(Be.segments,ct)&&ce(Be.segments,ct,$e)&&Be.children[le])&&Oe(Be.children[le],Me,Pt,$e)}}function ce(Be,Me,ge){return Me.every(($e,ct)=>Ct[ge](Be[ct].parameters,$e.parameters))}class be{constructor(Me,ge,$e){this.root=Me,this.queryParams=ge,this.fragment=$e}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=xe(this.queryParams)),this._queryParamMap}toString(){return Se.serialize(this)}}class pt{constructor(Me,ge){this.segments=Me,this.children=ge,this.parent=null,Gt(ge,($e,ct)=>$e.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ge(this)}}class mt{constructor(Me,ge){this.path=Me,this.parameters=ge}get parameterMap(){return this._parameterMap||(this._parameterMap=xe(this.parameters)),this._parameterMap}toString(){return fi(this)}}function it(Be,Me){return Be.length===Me.length&&Be.every((ge,$e)=>ge.path===Me[$e].path)}class tt{}class Xe{parse(Me){const ge=new je(Me);return new be(ge.parseRootSegment(),ge.parseQueryParams(),ge.parseFragment())}serialize(Me){const ge=`/${at(Me.root,!0)}`,$e=function $i(Be){const Me=Object.keys(Be).map(ge=>{const $e=Be[ge];return Array.isArray($e)?$e.map(ct=>`${bt(ge)}=${bt(ct)}`).join("&"):`${bt(ge)}=${bt($e)}`}).filter(ge=>!!ge);return Me.length?`?${Me.join("&")}`:""}(Me.queryParams);return`${ge}${$e}${"string"==typeof Me.fragment?`#${function gi(Be){return encodeURI(Be)}(Me.fragment)}`:""}`}}const Se=new Xe;function Ge(Be){return Be.segments.map(Me=>fi(Me)).join("/")}function at(Be,Me){if(!Be.hasChildren())return Ge(Be);if(Me){const ge=Be.children[le]?at(Be.children[le],!1):"",$e=[];return Gt(Be.children,(ct,Pt)=>{Pt!==le&&$e.push(`${Pt}:${at(ct,!1)}`)}),$e.length>0?`${ge}(${$e.join("//")})`:ge}{const ge=function Re(Be,Me){let ge=[];return Gt(Be.children,($e,ct)=>{ct===le&&(ge=ge.concat(Me($e,ct)))}),Gt(Be.children,($e,ct)=>{ct!==le&&(ge=ge.concat(Me($e,ct)))}),ge}(Be,($e,ct)=>ct===le?[at(Be.children[le],!1)]:[`${ct}:${at($e,!1)}`]);return 1===Object.keys(Be.children).length&&null!=Be.children[le]?`${Ge(Be)}/${ge[0]}`:`${Ge(Be)}/(${ge.join("//")})`}}function st(Be){return encodeURIComponent(Be).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function bt(Be){return st(Be).replace(/%3B/gi,";")}function qt(Be){return st(Be).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function Xt(Be){return decodeURIComponent(Be)}function qi(Be){return Xt(Be.replace(/\+/g,"%20"))}function fi(Be){return`${qt(Be.path)}${function si(Be){return Object.keys(Be).map(Me=>`;${qt(Me)}=${qt(Be[Me])}`).join("")}(Be.parameters)}`}const Bi=/^[^\/()?;=#]+/;function zi(Be){const Me=Be.match(Bi);return Me?Me[0]:""}const Ui=/^[^=?&#]+/,Tt=/^[^&#]+/;class je{constructor(Me){this.url=Me,this.remaining=Me}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new pt([],{}):new pt([],this.parseChildren())}parseQueryParams(){const Me={};if(this.consumeOptional("?"))do{this.parseQueryParam(Me)}while(this.consumeOptional("&"));return Me}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const Me=[];for(this.peekStartsWith("(")||Me.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),Me.push(this.parseSegment());let ge={};this.peekStartsWith("/(")&&(this.capture("/"),ge=this.parseParens(!0));let $e={};return this.peekStartsWith("(")&&($e=this.parseParens(!1)),(Me.length>0||Object.keys(ge).length>0)&&($e[le]=new pt(Me,ge)),$e}parseSegment(){const Me=zi(this.remaining);if(""===Me&&this.peekStartsWith(";"))throw new Error(`Empty path url segment cannot have parameters: '${this.remaining}'.`);return this.capture(Me),new mt(Xt(Me),this.parseMatrixParams())}parseMatrixParams(){const Me={};for(;this.consumeOptional(";");)this.parseParam(Me);return Me}parseParam(Me){const ge=zi(this.remaining);if(!ge)return;this.capture(ge);let $e="";if(this.consumeOptional("=")){const ct=zi(this.remaining);ct&&($e=ct,this.capture($e))}Me[Xt(ge)]=Xt($e)}parseQueryParam(Me){const ge=function ze(Be){const Me=Be.match(Ui);return Me?Me[0]:""}(this.remaining);if(!ge)return;this.capture(ge);let $e="";if(this.consumeOptional("=")){const $t=function pe(Be){const Me=Be.match(Tt);return Me?Me[0]:""}(this.remaining);$t&&($e=$t,this.capture($e))}const ct=qi(ge),Pt=qi($e);if(Me.hasOwnProperty(ct)){let $t=Me[ct];Array.isArray($t)||($t=[$t],Me[ct]=$t),$t.push(Pt)}else Me[ct]=Pt}parseParens(Me){const ge={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const $e=zi(this.remaining),ct=this.remaining[$e.length];if("/"!==ct&&")"!==ct&&";"!==ct)throw new Error(`Cannot parse url '${this.url}'`);let Pt;$e.indexOf(":")>-1?(Pt=$e.substr(0,$e.indexOf(":")),this.capture(Pt),this.capture(":")):Me&&(Pt=le);const $t=this.parseChildren();ge[Pt]=1===Object.keys($t).length?$t[le]:new pt([],$t),this.consumeOptional("//")}return ge}peekStartsWith(Me){return this.remaining.startsWith(Me)}consumeOptional(Me){return!!this.peekStartsWith(Me)&&(this.remaining=this.remaining.substring(Me.length),!0)}capture(Me){if(!this.consumeOptional(Me))throw new Error(`Expected "${Me}".`)}}class _t{constructor(Me){this._root=Me}get root(){return this._root.value}parent(Me){const ge=this.pathFromRoot(Me);return ge.length>1?ge[ge.length-2]:null}children(Me){const ge=re(Me,this._root);return ge?ge.children.map($e=>$e.value):[]}firstChild(Me){const ge=re(Me,this._root);return ge&&ge.children.length>0?ge.children[0].value:null}siblings(Me){const ge=qe(Me,this._root);return ge.length<2?[]:ge[ge.length-2].children.map(ct=>ct.value).filter(ct=>ct!==Me)}pathFromRoot(Me){return qe(Me,this._root).map(ge=>ge.value)}}function re(Be,Me){if(Be===Me.value)return Me;for(const ge of Me.children){const $e=re(Be,ge);if($e)return $e}return null}function qe(Be,Me){if(Be===Me.value)return[Me];for(const ge of Me.children){const $e=qe(Be,ge);if($e.length)return $e.unshift(Me),$e}return[]}class Mt{constructor(Me,ge){this.value=Me,this.children=ge}toString(){return`TreeNode(${this.value})`}}function zt(Be){const Me={};return Be&&Be.children.forEach(ge=>Me[ge.value.outlet]=ge),Me}class bi extends _t{constructor(Me,ge){super(Me),this.snapshot=ge,nt(this,Me)}toString(){return this.snapshot.toString()}}function Ei(Be,Me){const ge=function Xi(Be,Me){const $t=new jt([],{},{},"",{},le,Me,null,Be.root,-1,{});return new wi("",new Mt($t,[]))}(Be,Me),$e=new A.X([new mt("",{})]),ct=new A.X({}),Pt=new A.X({}),$t=new A.X({}),li=new A.X(""),Ri=new Zi($e,ct,$t,li,Pt,le,Me,ge.root);return Ri.snapshot=ge.root,new bi(new Mt(Ri,[]),ge)}class Zi{constructor(Me,ge,$e,ct,Pt,$t,li,Ri){this.url=Me,this.params=ge,this.queryParams=$e,this.fragment=ct,this.data=Pt,this.outlet=$t,this.component=li,this._futureSnapshot=Ri}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe((0,oe.U)(Me=>xe(Me)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe((0,oe.U)(Me=>xe(Me)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function sn(Be,Me="emptyOnly"){const ge=Be.pathFromRoot;let $e=0;if("always"!==Me)for($e=ge.length-1;$e>=1;){const ct=ge[$e],Pt=ge[$e-1];if(ct.routeConfig&&""===ct.routeConfig.path)$e--;else{if(Pt.component)break;$e--}}return function gn(Be){return Be.reduce((Me,ge)=>({params:Object.assign(Object.assign({},Me.params),ge.params),data:Object.assign(Object.assign({},Me.data),ge.data),resolve:Object.assign(Object.assign({},Me.resolve),ge._resolvedData)}),{params:{},data:{},resolve:{}})}(ge.slice($e))}class jt{constructor(Me,ge,$e,ct,Pt,$t,li,Ri,cn,Vn,Mn){this.url=Me,this.params=ge,this.queryParams=$e,this.fragment=ct,this.data=Pt,this.outlet=$t,this.component=li,this.routeConfig=Ri,this._urlSegment=cn,this._lastPathIndex=Vn,this._resolve=Mn}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=xe(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=xe(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map($e=>$e.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class wi extends _t{constructor(Me,ge){super(ge),this.url=Me,nt(this,ge)}toString(){return Ft(this._root)}}function nt(Be,Me){Me.value._routerState=Be,Me.children.forEach(ge=>nt(Be,ge))}function Ft(Be){const Me=Be.children.length>0?` { ${Be.children.map(Ft).join(", ")} } `:"";return`${Be.value}${Me}`}function Kt(Be){if(Be.snapshot){const Me=Be.snapshot,ge=Be._futureSnapshot;Be.snapshot=ge,ut(Me.queryParams,ge.queryParams)||Be.queryParams.next(ge.queryParams),Me.fragment!==ge.fragment&&Be.fragment.next(ge.fragment),ut(Me.params,ge.params)||Be.params.next(ge.params),function Le(Be,Me){if(Be.length!==Me.length)return!1;for(let ge=0;geut(ge.parameters,Me[$e].parameters))}(Be.url,Me.url);return ge&&!(!Be.parent!=!Me.parent)&&(!Be.parent||mi(Be.parent,Me.parent))}function ki(Be,Me,ge){if(ge&&Be.shouldReuseRoute(Me.value,ge.value.snapshot)){const $e=ge.value;$e._futureSnapshot=Me.value;const ct=function fn(Be,Me,ge){return Me.children.map($e=>{for(const ct of ge.children)if(Be.shouldReuseRoute($e.value,ct.value.snapshot))return ki(Be,$e,ct);return ki(Be,$e)})}(Be,Me,ge);return new Mt($e,ct)}{if(Be.shouldAttach(Me.value)){const Pt=Be.retrieve(Me.value);if(null!==Pt){const $t=Pt.route;return $t.value._futureSnapshot=Me.value,$t.children=Me.children.map(li=>ki(Be,li)),$t}}const $e=function Bn(Be){return new Zi(new A.X(Be.url),new A.X(Be.params),new A.X(Be.queryParams),new A.X(Be.fragment),new A.X(Be.data),Be.outlet,Be.component,Be)}(Me.value),ct=Me.children.map(Pt=>ki(Be,Pt));return new Mt($e,ct)}}function Xn(Be){return"object"==typeof Be&&null!=Be&&!Be.outlets&&!Be.segmentPath}function _n(Be){return"object"==typeof Be&&null!=Be&&Be.outlets}function Si(Be,Me,ge,$e,ct){let Pt={};if($e&&Gt($e,(li,Ri)=>{Pt[Ri]=Array.isArray(li)?li.map(cn=>`${cn}`):`${li}`}),Be===Me)return new be(ge,Pt,ct);const $t=Wi(Be,Me,ge);return new be($t,Pt,ct)}function Wi(Be,Me,ge){const $e={};return Gt(Be.children,(ct,Pt)=>{$e[Pt]=ct===Me?ge:Wi(ct,Me,ge)}),new pt(Be.segments,$e)}class Sn{constructor(Me,ge,$e){if(this.isAbsolute=Me,this.numberOfDoubleDots=ge,this.commands=$e,Me&&$e.length>0&&Xn($e[0]))throw new Error("Root segment cannot have matrix parameters");const ct=$e.find(_n);if(ct&&ct!==ui($e))throw new Error("{outlets:{}} has to be the last command")}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class dr{constructor(Me,ge,$e){this.segmentGroup=Me,this.processChildren=ge,this.index=$e}}function _a(Be,Me,ge){if(Be||(Be=new pt([],{})),0===Be.segments.length&&Be.hasChildren())return va(Be,Me,ge);const $e=function Va(Be,Me,ge){let $e=0,ct=Me;const Pt={match:!1,pathIndex:0,commandIndex:0};for(;ct=ge.length)return Pt;const $t=Be.segments[ct],li=ge[$e];if(_n(li))break;const Ri=`${li}`,cn=$e0&&void 0===Ri)break;if(Ri&&cn&&"object"==typeof cn&&void 0===cn.outlets){if(!ha(Ri,cn,$t))return Pt;$e+=2}else{if(!ha(Ri,{},$t))return Pt;$e++}ct++}return{match:!0,pathIndex:ct,commandIndex:$e}}(Be,Me,ge),ct=ge.slice($e.commandIndex);if($e.match&&$e.pathIndex{"string"==typeof Pt&&(Pt=[Pt]),null!==Pt&&(ct[$t]=_a(Be.children[$t],Me,Pt))}),Gt(Be.children,(Pt,$t)=>{void 0===$e[$t]&&(ct[$t]=Pt)}),new pt(Be.segments,ct)}}function za(Be,Me,ge){const $e=Be.segments.slice(0,Me);let ct=0;for(;ct{"string"==typeof ge&&(ge=[ge]),null!==ge&&(Me[$e]=za(new pt([],{}),0,ge))}),Me}function $r(Be){const Me={};return Gt(Be,(ge,$e)=>Me[$e]=`${ge}`),Me}function ha(Be,Me,ge){return Be==ge.path&&ut(Me,ge.parameters)}class Yr{constructor(Me,ge,$e,ct){this.routeReuseStrategy=Me,this.futureState=ge,this.currState=$e,this.forwardEvent=ct}activate(Me){const ge=this.futureState._root,$e=this.currState?this.currState._root:null;this.deactivateChildRoutes(ge,$e,Me),Kt(this.futureState.root),this.activateChildRoutes(ge,$e,Me)}deactivateChildRoutes(Me,ge,$e){const ct=zt(ge);Me.children.forEach(Pt=>{const $t=Pt.value.outlet;this.deactivateRoutes(Pt,ct[$t],$e),delete ct[$t]}),Gt(ct,(Pt,$t)=>{this.deactivateRouteAndItsChildren(Pt,$e)})}deactivateRoutes(Me,ge,$e){const ct=Me.value,Pt=ge?ge.value:null;if(ct===Pt)if(ct.component){const $t=$e.getContext(ct.outlet);$t&&this.deactivateChildRoutes(Me,ge,$t.children)}else this.deactivateChildRoutes(Me,ge,$e);else Pt&&this.deactivateRouteAndItsChildren(ge,$e)}deactivateRouteAndItsChildren(Me,ge){Me.value.component&&this.routeReuseStrategy.shouldDetach(Me.value.snapshot)?this.detachAndStoreRouteSubtree(Me,ge):this.deactivateRouteAndOutlet(Me,ge)}detachAndStoreRouteSubtree(Me,ge){const $e=ge.getContext(Me.value.outlet),ct=$e&&Me.value.component?$e.children:ge,Pt=zt(Me);for(const $t of Object.keys(Pt))this.deactivateRouteAndItsChildren(Pt[$t],ct);if($e&&$e.outlet){const $t=$e.outlet.detach(),li=$e.children.onOutletDeactivated();this.routeReuseStrategy.store(Me.value.snapshot,{componentRef:$t,route:Me,contexts:li})}}deactivateRouteAndOutlet(Me,ge){const $e=ge.getContext(Me.value.outlet),ct=$e&&Me.value.component?$e.children:ge,Pt=zt(Me);for(const $t of Object.keys(Pt))this.deactivateRouteAndItsChildren(Pt[$t],ct);$e&&$e.outlet&&($e.outlet.deactivate(),$e.children.onOutletDeactivated(),$e.attachRef=null,$e.resolver=null,$e.route=null)}activateChildRoutes(Me,ge,$e){const ct=zt(ge);Me.children.forEach(Pt=>{this.activateRoutes(Pt,ct[Pt.value.outlet],$e),this.forwardEvent(new Ie(Pt.value.snapshot))}),Me.children.length&&this.forwardEvent(new De(Me.value.snapshot))}activateRoutes(Me,ge,$e){const ct=Me.value,Pt=ge?ge.value:null;if(Kt(ct),ct===Pt)if(ct.component){const $t=$e.getOrCreateContext(ct.outlet);this.activateChildRoutes(Me,ge,$t.children)}else this.activateChildRoutes(Me,ge,$e);else if(ct.component){const $t=$e.getOrCreateContext(ct.outlet);if(this.routeReuseStrategy.shouldAttach(ct.snapshot)){const li=this.routeReuseStrategy.retrieve(ct.snapshot);this.routeReuseStrategy.store(ct.snapshot,null),$t.children.onOutletReAttached(li.contexts),$t.attachRef=li.componentRef,$t.route=li.route.value,$t.outlet&&$t.outlet.attach(li.componentRef,li.route.value),Kt(li.route.value),this.activateChildRoutes(Me,null,$t.children)}else{const li=function jr(Be){for(let Me=Be.parent;Me;Me=Me.parent){const ge=Me.routeConfig;if(ge&&ge._loadedConfig)return ge._loadedConfig;if(ge&&ge.component)return null}return null}(ct.snapshot),Ri=li?li.module.componentFactoryResolver:null;$t.attachRef=null,$t.route=ct,$t.resolver=Ri,$t.outlet&&$t.outlet.activateWith(ct,Ri),this.activateChildRoutes(Me,null,$t.children)}}else this.activateChildRoutes(Me,null,$e)}}class mr{constructor(Me,ge){this.routes=Me,this.module=ge}}function hn(Be){return"function"==typeof Be}function ir(Be){return Be instanceof be}const Pr=Symbol("INITIAL_VALUE");function zr(){return(0,X.w)(Be=>(0,w.a)(Be.map(Me=>Me.pipe((0,me.q)(1),(0,y.O)(Pr)))).pipe((0,i.R)((Me,ge)=>{let $e=!1;return ge.reduce((ct,Pt,$t)=>ct!==Pr?ct:(Pt===Pr&&($e=!0),$e||!1!==Pt&&$t!==ge.length-1&&!ir(Pt)?ct:Pt),Me)},Pr),(0,Y.h)(Me=>Me!==Pr),(0,oe.U)(Me=>ir(Me)?Me:!0===Me),(0,me.q)(1)))}class Qr{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.children=new xr,this.attachRef=null}}class xr{constructor(){this.contexts=new Map}onChildOutletCreated(Me,ge){const $e=this.getOrCreateContext(Me);$e.outlet=ge,this.contexts.set(Me,$e)}onChildOutletDestroyed(Me){const ge=this.getContext(Me);ge&&(ge.outlet=null,ge.attachRef=null)}onOutletDeactivated(){const Me=this.contexts;return this.contexts=new Map,Me}onOutletReAttached(Me){this.contexts=Me}getOrCreateContext(Me){let ge=this.getContext(Me);return ge||(ge=new Qr,this.contexts.set(Me,ge)),ge}getContext(Me){return this.contexts.get(Me)||null}}let Nr=(()=>{class Be{constructor(ge,$e,ct,Pt,$t){this.parentContexts=ge,this.location=$e,this.resolver=ct,this.changeDetector=$t,this.activated=null,this._activatedRoute=null,this.activateEvents=new t.vpe,this.deactivateEvents=new t.vpe,this.attachEvents=new t.vpe,this.detachEvents=new t.vpe,this.name=Pt||le,ge.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const ge=this.parentContexts.getContext(this.name);ge&&ge.route&&(ge.attachRef?this.attach(ge.attachRef,ge.route):this.activateWith(ge.route,ge.resolver||null))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new Error("Outlet is not activated");return this.activated.instance}get activatedRoute(){if(!this.activated)throw new Error("Outlet is not activated");return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new Error("Outlet is not activated");this.location.detach();const ge=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(ge.instance),ge}attach(ge,$e){this.activated=ge,this._activatedRoute=$e,this.location.insert(ge.hostView),this.attachEvents.emit(ge.instance)}deactivate(){if(this.activated){const ge=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(ge)}}activateWith(ge,$e){if(this.isActivated)throw new Error("Cannot activate an already activated outlet");this._activatedRoute=ge;const $t=($e=$e||this.resolver).resolveComponentFactory(ge._futureSnapshot.routeConfig.component),li=this.parentContexts.getOrCreateContext(this.name).children,Ri=new fa(ge,li,this.location.injector);this.activated=this.location.createComponent($t,this.location.length,Ri),this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.Y36(xr),t.Y36(t.s_b),t.Y36(t._Vd),t.$8M("name"),t.Y36(t.sBO))},Be.\u0275dir=t.lG2({type:Be,selectors:[["router-outlet"]],outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"]}),Be})();class fa{constructor(Me,ge,$e){this.route=Me,this.childContexts=ge,this.parent=$e}get(Me,ge){return Me===Zi?this.route:Me===xr?this.childContexts:this.parent.get(Me,ge)}}let ya=(()=>{class Be{}return Be.\u0275fac=function(ge){return new(ge||Be)},Be.\u0275cmp=t.Xpm({type:Be,selectors:[["ng-component"]],decls:1,vars:0,template:function(ge,$e){1&ge&&t._UZ(0,"router-outlet")},directives:[Nr],encapsulation:2}),Be})();function xa(Be,Me=""){for(let ge=0;ge$n($e)===Me);return ge.push(...Be.filter($e=>$n($e)!==Me)),ge}const Br={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Dr(Be,Me,ge){var $e;if(""===Me.path)return"full"===Me.pathMatch&&(Be.hasChildren()||ge.length>0)?Object.assign({},Br):{matched:!0,consumedSegments:[],remainingSegments:ge,parameters:{},positionalParamSegments:{}};const Pt=(Me.matcher||Ce)(ge,Be,Me);if(!Pt)return Object.assign({},Br);const $t={};Gt(Pt.posParams,(Ri,cn)=>{$t[cn]=Ri.path});const li=Pt.consumed.length>0?Object.assign(Object.assign({},$t),Pt.consumed[Pt.consumed.length-1].parameters):$t;return{matched:!0,consumedSegments:Pt.consumed,remainingSegments:ge.slice(Pt.consumed.length),parameters:li,positionalParamSegments:null!==($e=Pt.posParams)&&void 0!==$e?$e:{}}}function Ur(Be,Me,ge,$e,ct="corrected"){if(ge.length>0&&function Qn(Be,Me,ge){return ge.some($e=>St(Be,Me,$e)&&$n($e)!==le)}(Be,ge,$e)){const $t=new pt(Me,function Ua(Be,Me,ge,$e){const ct={};ct[le]=$e,$e._sourceSegment=Be,$e._segmentIndexShift=Me.length;for(const Pt of ge)if(""===Pt.path&&$n(Pt)!==le){const $t=new pt([],{});$t._sourceSegment=Be,$t._segmentIndexShift=Me.length,ct[$n(Pt)]=$t}return ct}(Be,Me,$e,new pt(ge,Be.children)));return $t._sourceSegment=Be,$t._segmentIndexShift=Me.length,{segmentGroup:$t,slicedSegments:[]}}if(0===ge.length&&function Je(Be,Me,ge){return ge.some($e=>St(Be,Me,$e))}(Be,ge,$e)){const $t=new pt(Be.segments,function ba(Be,Me,ge,$e,ct,Pt){const $t={};for(const li of $e)if(St(Be,ge,li)&&!ct[$n(li)]){const Ri=new pt([],{});Ri._sourceSegment=Be,Ri._segmentIndexShift="legacy"===Pt?Be.segments.length:Me.length,$t[$n(li)]=Ri}return Object.assign(Object.assign({},ct),$t)}(Be,Me,ge,$e,Be.children,ct));return $t._sourceSegment=Be,$t._segmentIndexShift=Me.length,{segmentGroup:$t,slicedSegments:ge}}const Pt=new pt(Be.segments,Be.children);return Pt._sourceSegment=Be,Pt._segmentIndexShift=Me.length,{segmentGroup:Pt,slicedSegments:ge}}function St(Be,Me,ge){return(!(Be.hasChildren()||Me.length>0)||"full"!==ge.pathMatch)&&""===ge.path}function Qe(Be,Me,ge,$e){return!!($n(Be)===$e||$e!==le&&St(Me,ge,Be))&&("**"===Be.path||Dr(Me,Be,ge).matched)}function kt(Be,Me,ge){return 0===Me.length&&!Be.children[ge]}class ai{constructor(Me){this.segmentGroup=Me||null}}class Ti{constructor(Me){this.urlTree=Me}}function Oi(Be){return(0,D._)(new ai(Be))}function rn(Be){return(0,D._)(new Ti(Be))}class gt{constructor(Me,ge,$e,ct,Pt){this.configLoader=ge,this.urlSerializer=$e,this.urlTree=ct,this.config=Pt,this.allowRedirects=!0,this.ngModule=Me.get(t.h0i)}apply(){const Me=Ur(this.urlTree.root,[],[],this.config).segmentGroup,ge=new pt(Me.segments,Me.children);return this.expandSegmentGroup(this.ngModule,this.config,ge,le).pipe((0,oe.U)(Pt=>this.createUrlTree(Di(Pt),this.urlTree.queryParams,this.urlTree.fragment))).pipe((0,r.K)(Pt=>{if(Pt instanceof Ti)return this.allowRedirects=!1,this.match(Pt.urlTree);throw Pt instanceof ai?this.noMatchError(Pt):Pt}))}match(Me){return this.expandSegmentGroup(this.ngModule,this.config,Me.root,le).pipe((0,oe.U)(ct=>this.createUrlTree(Di(ct),Me.queryParams,Me.fragment))).pipe((0,r.K)(ct=>{throw ct instanceof ai?this.noMatchError(ct):ct}))}noMatchError(Me){return new Error(`Cannot match any routes. URL Segment: '${Me.segmentGroup}'`)}createUrlTree(Me,ge,$e){const ct=Me.segments.length>0?new pt([],{[le]:Me}):Me;return new be(ct,ge,$e)}expandSegmentGroup(Me,ge,$e,ct){return 0===$e.segments.length&&$e.hasChildren()?this.expandChildren(Me,ge,$e).pipe((0,oe.U)(Pt=>new pt([],Pt))):this.expandSegment(Me,$e,ge,$e.segments,ct,!0)}expandChildren(Me,ge,$e){const ct=[];for(const Pt of Object.keys($e.children))"primary"===Pt?ct.unshift(Pt):ct.push(Pt);return(0,N.D)(ct).pipe((0,u.b)(Pt=>{const $t=$e.children[Pt],li=oa(ge,Pt);return this.expandSegmentGroup(Me,li,$t,Pt).pipe((0,oe.U)(Ri=>({segment:Ri,outlet:Pt})))}),(0,i.R)((Pt,$t)=>(Pt[$t.outlet]=$t.segment,Pt),{}),function ie(Be,Me){const ge=arguments.length>=2;return $e=>$e.pipe(Be?(0,Y.h)((ct,Pt)=>Be(ct,Pt,$e)):te.y,ne(1),ge?(0,de.d)(Me):(0,$.T)(()=>new L.K))}())}expandSegment(Me,ge,$e,ct,Pt,$t){return(0,N.D)($e).pipe((0,u.b)(li=>this.expandSegmentAgainstRoute(Me,ge,$e,li,ct,Pt,$t).pipe((0,r.K)(cn=>{if(cn instanceof ai)return(0,h.of)(null);throw cn}))),(0,c.P)(li=>!!li),(0,r.K)((li,Ri)=>{if(li instanceof L.K||"EmptyError"===li.name)return kt(ge,ct,Pt)?(0,h.of)(new pt([],{})):Oi(ge);throw li}))}expandSegmentAgainstRoute(Me,ge,$e,ct,Pt,$t,li){return Qe(ct,ge,Pt,$t)?void 0===ct.redirectTo?this.matchSegmentAgainstRoute(Me,ge,ct,Pt,$t):li&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(Me,ge,$e,ct,Pt,$t):Oi(ge):Oi(ge)}expandSegmentAgainstRouteUsingRedirect(Me,ge,$e,ct,Pt,$t){return"**"===ct.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(Me,$e,ct,$t):this.expandRegularSegmentAgainstRouteUsingRedirect(Me,ge,$e,ct,Pt,$t)}expandWildCardWithParamsAgainstRouteUsingRedirect(Me,ge,$e,ct){const Pt=this.applyRedirectCommands([],$e.redirectTo,{});return $e.redirectTo.startsWith("/")?rn(Pt):this.lineralizeSegments($e,Pt).pipe((0,_.z)($t=>{const li=new pt($t,{});return this.expandSegment(Me,li,ge,$t,ct,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(Me,ge,$e,ct,Pt,$t){const{matched:li,consumedSegments:Ri,remainingSegments:cn,positionalParamSegments:Vn}=Dr(ge,ct,Pt);if(!li)return Oi(ge);const Mn=this.applyRedirectCommands(Ri,ct.redirectTo,Vn);return ct.redirectTo.startsWith("/")?rn(Mn):this.lineralizeSegments(ct,Mn).pipe((0,_.z)(ur=>this.expandSegment(Me,ge,$e,ur.concat(cn),$t,!1)))}matchSegmentAgainstRoute(Me,ge,$e,ct,Pt){if("**"===$e.path)return $e.loadChildren?($e._loadedConfig?(0,h.of)($e._loadedConfig):this.configLoader.load(Me.injector,$e)).pipe((0,oe.U)(Mn=>($e._loadedConfig=Mn,new pt(ct,{})))):(0,h.of)(new pt(ct,{}));const{matched:$t,consumedSegments:li,remainingSegments:Ri}=Dr(ge,$e,ct);return $t?this.getChildConfig(Me,$e,ct).pipe((0,_.z)(Vn=>{const Mn=Vn.module,ur=Vn.routes,{segmentGroup:zn,slicedSegments:ns}=Ur(ge,li,Ri,ur),As=new pt(zn.segments,zn.children);if(0===ns.length&&As.hasChildren())return this.expandChildren(Mn,ur,As).pipe((0,oe.U)(oo=>new pt(li,oo)));if(0===ur.length&&0===ns.length)return(0,h.of)(new pt(li,{}));const zo=$n($e)===Pt;return this.expandSegment(Mn,As,ur,ns,zo?le:Pt,!0).pipe((0,oe.U)(wa=>new pt(li.concat(wa.segments),wa.children)))})):Oi(ge)}getChildConfig(Me,ge,$e){return ge.children?(0,h.of)(new mr(ge.children,Me)):ge.loadChildren?void 0!==ge._loadedConfig?(0,h.of)(ge._loadedConfig):this.runCanLoadGuards(Me.injector,ge,$e).pipe((0,_.z)(ct=>ct?this.configLoader.load(Me.injector,ge).pipe((0,oe.U)(Pt=>(ge._loadedConfig=Pt,Pt))):function Ot(Be){return(0,D._)(ee(`Cannot load children because the guard of the route "path: '${Be.path}'" returned false`))}(ge))):(0,h.of)(new mr([],Me))}runCanLoadGuards(Me,ge,$e){const ct=ge.canLoad;if(!ct||0===ct.length)return(0,h.of)(!0);const Pt=ct.map($t=>{const li=Me.get($t);let Ri;if(function Ka(Be){return Be&&hn(Be.canLoad)}(li))Ri=li.canLoad(ge,$e);else{if(!hn(li))throw new Error("Invalid CanLoad guard");Ri=li(ge,$e)}return hi(Ri)});return(0,h.of)(Pt).pipe(zr(),(0,E.b)($t=>{if(!ir($t))return;const li=ee(`Redirecting to "${this.urlSerializer.serialize($t)}"`);throw li.url=$t,li}),(0,oe.U)($t=>!0===$t))}lineralizeSegments(Me,ge){let $e=[],ct=ge.root;for(;;){if($e=$e.concat(ct.segments),0===ct.numberOfChildren)return(0,h.of)($e);if(ct.numberOfChildren>1||!ct.children[le])return(0,D._)(new Error(`Only absolute redirects can have named outlets. redirectTo: '${Me.redirectTo}'`));ct=ct.children[le]}}applyRedirectCommands(Me,ge,$e){return this.applyRedirectCreatreUrlTree(ge,this.urlSerializer.parse(ge),Me,$e)}applyRedirectCreatreUrlTree(Me,ge,$e,ct){const Pt=this.createSegmentGroup(Me,ge.root,$e,ct);return new be(Pt,this.createQueryParams(ge.queryParams,this.urlTree.queryParams),ge.fragment)}createQueryParams(Me,ge){const $e={};return Gt(Me,(ct,Pt)=>{if("string"==typeof ct&&ct.startsWith(":")){const li=ct.substring(1);$e[Pt]=ge[li]}else $e[Pt]=ct}),$e}createSegmentGroup(Me,ge,$e,ct){const Pt=this.createSegments(Me,ge.segments,$e,ct);let $t={};return Gt(ge.children,(li,Ri)=>{$t[Ri]=this.createSegmentGroup(Me,li,$e,ct)}),new pt(Pt,$t)}createSegments(Me,ge,$e,ct){return ge.map(Pt=>Pt.path.startsWith(":")?this.findPosParam(Me,Pt,ct):this.findOrReturn(Pt,$e))}findPosParam(Me,ge,$e){const ct=$e[ge.path.substring(1)];if(!ct)throw new Error(`Cannot redirect to '${Me}'. Cannot find '${ge.path}'.`);return ct}findOrReturn(Me,ge){let $e=0;for(const ct of ge){if(ct.path===Me.path)return ge.splice($e),ct;$e++}return Me}}function Di(Be){const Me={};for(const $e of Object.keys(Be.children)){const Pt=Di(Be.children[$e]);(Pt.segments.length>0||Pt.hasChildren())&&(Me[$e]=Pt)}return function Qt(Be){if(1===Be.numberOfChildren&&Be.children[le]){const Me=Be.children[le];return new pt(Be.segments.concat(Me.segments),Me.children)}return Be}(new pt(Be.segments,Me))}class Ke{constructor(Me){this.path=Me,this.route=this.path[this.path.length-1]}}class We{constructor(Me,ge){this.component=Me,this.route=ge}}function He(Be,Me,ge){const $e=Be._root;return Fn($e,Me?Me._root:null,ge,[$e.value])}function yi(Be,Me,ge){const $e=function Yi(Be){if(!Be)return null;for(let Me=Be.parent;Me;Me=Me.parent){const ge=Me.routeConfig;if(ge&&ge._loadedConfig)return ge._loadedConfig}return null}(Me);return($e?$e.module.injector:ge).get(Be)}function Fn(Be,Me,ge,$e,ct={canDeactivateChecks:[],canActivateChecks:[]}){const Pt=zt(Me);return Be.children.forEach($t=>{(function Rr(Be,Me,ge,$e,ct={canDeactivateChecks:[],canActivateChecks:[]}){const Pt=Be.value,$t=Me?Me.value:null,li=ge?ge.getContext(Be.value.outlet):null;if($t&&Pt.routeConfig===$t.routeConfig){const Ri=function Qa(Be,Me,ge){if("function"==typeof ge)return ge(Be,Me);switch(ge){case"pathParamsChange":return!it(Be.url,Me.url);case"pathParamsOrQueryParamsChange":return!it(Be.url,Me.url)||!ut(Be.queryParams,Me.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!mi(Be,Me)||!ut(Be.queryParams,Me.queryParams);default:return!mi(Be,Me)}}($t,Pt,Pt.routeConfig.runGuardsAndResolvers);Ri?ct.canActivateChecks.push(new Ke($e)):(Pt.data=$t.data,Pt._resolvedData=$t._resolvedData),Fn(Be,Me,Pt.component?li?li.children:null:ge,$e,ct),Ri&&li&&li.outlet&&li.outlet.isActivated&&ct.canDeactivateChecks.push(new We(li.outlet.component,$t))}else $t&&Ma(Me,li,ct),ct.canActivateChecks.push(new Ke($e)),Fn(Be,null,Pt.component?li?li.children:null:ge,$e,ct)})($t,Pt[$t.value.outlet],ge,$e.concat([$t.value]),ct),delete Pt[$t.value.outlet]}),Gt(Pt,($t,li)=>Ma($t,ge.getContext(li),ct)),ct}function Ma(Be,Me,ge){const $e=zt(Be),ct=Be.value;Gt($e,(Pt,$t)=>{Ma(Pt,ct.component?Me?Me.children.getContext($t):null:Me,ge)}),ge.canDeactivateChecks.push(new We(ct.component&&Me&&Me.outlet&&Me.outlet.isActivated?Me.outlet.component:null,ct))}class Ss{}function Es(Be){return new e.y(Me=>Me.error(Be))}class is{constructor(Me,ge,$e,ct,Pt,$t){this.rootComponentType=Me,this.config=ge,this.urlTree=$e,this.url=ct,this.paramsInheritanceStrategy=Pt,this.relativeLinkResolution=$t}recognize(){const Me=Ur(this.urlTree.root,[],[],this.config.filter($t=>void 0===$t.redirectTo),this.relativeLinkResolution).segmentGroup,ge=this.processSegmentGroup(this.config,Me,le);if(null===ge)return null;const $e=new jt([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},le,this.rootComponentType,null,this.urlTree.root,-1,{}),ct=new Mt($e,ge),Pt=new wi(this.url,ct);return this.inheritParamsAndData(Pt._root),Pt}inheritParamsAndData(Me){const ge=Me.value,$e=sn(ge,this.paramsInheritanceStrategy);ge.params=Object.freeze($e.params),ge.data=Object.freeze($e.data),Me.children.forEach(ct=>this.inheritParamsAndData(ct))}processSegmentGroup(Me,ge,$e){return 0===ge.segments.length&&ge.hasChildren()?this.processChildren(Me,ge):this.processSegment(Me,ge,ge.segments,$e)}processChildren(Me,ge){const $e=[];for(const Pt of Object.keys(ge.children)){const $t=ge.children[Pt],li=oa(Me,Pt),Ri=this.processSegmentGroup(li,$t,Pt);if(null===Ri)return null;$e.push(...Ri)}const ct=Ga($e);return function Ts(Be){Be.sort((Me,ge)=>Me.value.outlet===le?-1:ge.value.outlet===le?1:Me.value.outlet.localeCompare(ge.value.outlet))}(ct),ct}processSegment(Me,ge,$e,ct){for(const Pt of Me){const $t=this.processSegmentAgainstRoute(Pt,ge,$e,ct);if(null!==$t)return $t}return kt(ge,$e,ct)?[]:null}processSegmentAgainstRoute(Me,ge,$e,ct){if(Me.redirectTo||!Qe(Me,ge,$e,ct))return null;let Pt,$t=[],li=[];if("**"===Me.path){const zn=$e.length>0?ui($e).parameters:{};Pt=new jt($e,zn,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,Ye(Me),$n(Me),Me.component,Me,ae(ge),fe(ge)+$e.length,wt(Me))}else{const zn=Dr(ge,Me,$e);if(!zn.matched)return null;$t=zn.consumedSegments,li=zn.remainingSegments,Pt=new jt($t,zn.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,Ye(Me),$n(Me),Me.component,Me,ae(ge),fe(ge)+$t.length,wt(Me))}const Ri=function xs(Be){return Be.children?Be.children:Be.loadChildren?Be._loadedConfig.routes:[]}(Me),{segmentGroup:cn,slicedSegments:Vn}=Ur(ge,$t,li,Ri.filter(zn=>void 0===zn.redirectTo),this.relativeLinkResolution);if(0===Vn.length&&cn.hasChildren()){const zn=this.processChildren(Ri,cn);return null===zn?null:[new Mt(Pt,zn)]}if(0===Ri.length&&0===Vn.length)return[new Mt(Pt,[])];const Mn=$n(Me)===ct,ur=this.processSegment(Ri,cn,Vn,Mn?le:ct);return null===ur?null:[new Mt(Pt,ur)]}}function Gr(Be){const Me=Be.value.routeConfig;return Me&&""===Me.path&&void 0===Me.redirectTo}function Ga(Be){const Me=[],ge=new Set;for(const $e of Be){if(!Gr($e)){Me.push($e);continue}const ct=Me.find(Pt=>$e.value.routeConfig===Pt.value.routeConfig);void 0!==ct?(ct.children.push(...$e.children),ge.add(ct)):Me.push($e)}for(const $e of ge){const ct=Ga($e.children);Me.push(new Mt($e.value,ct))}return Me.filter($e=>!ge.has($e))}function ae(Be){let Me=Be;for(;Me._sourceSegment;)Me=Me._sourceSegment;return Me}function fe(Be){let Me=Be,ge=Me._segmentIndexShift?Me._segmentIndexShift:0;for(;Me._sourceSegment;)Me=Me._sourceSegment,ge+=Me._segmentIndexShift?Me._segmentIndexShift:0;return ge-1}function Ye(Be){return Be.data||{}}function wt(Be){return Be.resolve||{}}function Pi(Be){return[...Object.keys(Be),...Object.getOwnPropertySymbols(Be)]}function dn(Be){return(0,X.w)(Me=>{const ge=Be(Me);return ge?(0,N.D)(ge).pipe((0,oe.U)(()=>Me)):(0,h.of)(Me)})}class xn extends class Nn{shouldDetach(Me){return!1}store(Me,ge){}shouldAttach(Me){return!1}retrieve(Me){return null}shouldReuseRoute(Me,ge){return Me.routeConfig===ge.routeConfig}}{}const Tn=new t.OlP("ROUTES");class tr{constructor(Me,ge,$e,ct){this.injector=Me,this.compiler=ge,this.onLoadStartListener=$e,this.onLoadEndListener=ct}load(Me,ge){if(ge._loader$)return ge._loader$;this.onLoadStartListener&&this.onLoadStartListener(ge);const ct=this.loadModuleFactory(ge.loadChildren).pipe((0,oe.U)(Pt=>{this.onLoadEndListener&&this.onLoadEndListener(ge);const $t=Pt.create(Me);return new mr(It($t.injector.get(Tn,void 0,t.XFs.Self|t.XFs.Optional)).map(Oa),$t)}),(0,r.K)(Pt=>{throw ge._loader$=void 0,Pt}));return ge._loader$=new d(ct,()=>new Z.x).pipe(b()),ge._loader$}loadModuleFactory(Me){return hi(Me()).pipe((0,_.z)(ge=>ge instanceof t.YKP?(0,h.of)(ge):(0,N.D)(this.compiler.compileModuleAsync(ge))))}}class gr{shouldProcessUrl(Me){return!0}extract(Me){return Me}merge(Me,ge){return Me}}function ia(Be){throw Be}function qr(Be,Me,ge){return Me.parse("/")}function Cr(Be,Me){return(0,h.of)(null)}const Zr={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},Zn={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let _r=(()=>{class Be{constructor(ge,$e,ct,Pt,$t,li,Ri){this.rootComponentType=ge,this.urlSerializer=$e,this.rootContexts=ct,this.location=Pt,this.config=Ri,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.disposed=!1,this.navigationId=0,this.currentPageId=0,this.isNgZoneEnabled=!1,this.events=new Z.x,this.errorHandler=ia,this.malformedUriErrorHandler=qr,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:Cr,afterPreactivation:Cr},this.urlHandlingStrategy=new gr,this.routeReuseStrategy=new xn,this.onSameUrlNavigation="ignore",this.paramsInheritanceStrategy="emptyOnly",this.urlUpdateStrategy="deferred",this.relativeLinkResolution="corrected",this.canceledNavigationResolution="replace",this.ngModule=$t.get(t.h0i),this.console=$t.get(t.c2e);const Mn=$t.get(t.R0b);this.isNgZoneEnabled=Mn instanceof t.R0b&&t.R0b.isInAngularZone(),this.resetConfig(Ri),this.currentUrlTree=function xt(){return new be(new pt([],{}),{},null)}(),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new tr($t,li,ur=>this.triggerEvent(new Ue(ur)),ur=>this.triggerEvent(new ve(ur))),this.routerState=Ei(this.currentUrlTree,this.rootComponentType),this.transitions=new A.X({id:0,targetPageId:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:"imperative",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}get browserPageId(){var ge;return null===(ge=this.location.getState())||void 0===ge?void 0:ge.\u0275routerPageId}setupNavigations(ge){const $e=this.events;return ge.pipe((0,Y.h)(ct=>0!==ct.id),(0,oe.U)(ct=>Object.assign(Object.assign({},ct),{extractedUrl:this.urlHandlingStrategy.extract(ct.rawUrl)})),(0,X.w)(ct=>{let Pt=!1,$t=!1;return(0,h.of)(ct).pipe((0,E.b)(li=>{this.currentNavigation={id:li.id,initialUrl:li.currentRawUrl,extractedUrl:li.extractedUrl,trigger:li.source,extras:li.extras,previousNavigation:this.lastSuccessfulNavigation?Object.assign(Object.assign({},this.lastSuccessfulNavigation),{previousNavigation:null}):null}}),(0,X.w)(li=>{const Ri=this.browserUrlTree.toString(),cn=!this.navigated||li.extractedUrl.toString()!==Ri||Ri!==this.currentUrlTree.toString();if(("reload"===this.onSameUrlNavigation||cn)&&this.urlHandlingStrategy.shouldProcessUrl(li.rawUrl))return rt(li.source)&&(this.browserUrlTree=li.extractedUrl),(0,h.of)(li).pipe((0,X.w)(Mn=>{const ur=this.transitions.getValue();return $e.next(new B(Mn.id,this.serializeUrl(Mn.extractedUrl),Mn.source,Mn.restoredState)),ur!==this.transitions.getValue()?U.E:Promise.resolve(Mn)}),function Gi(Be,Me,ge,$e){return(0,X.w)(ct=>function oi(Be,Me,ge,$e,ct){return new gt(Be,Me,ge,$e,ct).apply()}(Be,Me,ge,ct.extractedUrl,$e).pipe((0,oe.U)(Pt=>Object.assign(Object.assign({},ct),{urlAfterRedirects:Pt}))))}(this.ngModule.injector,this.configLoader,this.urlSerializer,this.config),(0,E.b)(Mn=>{this.currentNavigation=Object.assign(Object.assign({},this.currentNavigation),{finalUrl:Mn.urlAfterRedirects})}),function Vt(Be,Me,ge,$e,ct){return(0,_.z)(Pt=>function Qs(Be,Me,ge,$e,ct="emptyOnly",Pt="legacy"){try{const $t=new is(Be,Me,ge,$e,ct,Pt).recognize();return null===$t?Es(new Ss):(0,h.of)($t)}catch($t){return Es($t)}}(Be,Me,Pt.urlAfterRedirects,ge(Pt.urlAfterRedirects),$e,ct).pipe((0,oe.U)($t=>Object.assign(Object.assign({},Pt),{targetSnapshot:$t}))))}(this.rootComponentType,this.config,Mn=>this.serializeUrl(Mn),this.paramsInheritanceStrategy,this.relativeLinkResolution),(0,E.b)(Mn=>{if("eager"===this.urlUpdateStrategy){if(!Mn.extras.skipLocationChange){const zn=this.urlHandlingStrategy.merge(Mn.urlAfterRedirects,Mn.rawUrl);this.setBrowserUrl(zn,Mn)}this.browserUrlTree=Mn.urlAfterRedirects}const ur=new he(Mn.id,this.serializeUrl(Mn.extractedUrl),this.serializeUrl(Mn.urlAfterRedirects),Mn.targetSnapshot);$e.next(ur)}));if(cn&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:ur,extractedUrl:zn,source:ns,restoredState:As,extras:zo}=li,o1=new B(ur,this.serializeUrl(zn),ns,As);$e.next(o1);const wa=Ei(zn,this.rootComponentType).snapshot;return(0,h.of)(Object.assign(Object.assign({},li),{targetSnapshot:wa,urlAfterRedirects:zn,extras:Object.assign(Object.assign({},zo),{skipLocationChange:!1,replaceUrl:!1})}))}return this.rawUrlTree=li.rawUrl,li.resolve(null),U.E}),dn(li=>{const{targetSnapshot:Ri,id:cn,extractedUrl:Vn,rawUrl:Mn,extras:{skipLocationChange:ur,replaceUrl:zn}}=li;return this.hooks.beforePreactivation(Ri,{navigationId:cn,appliedUrlTree:Vn,rawUrlTree:Mn,skipLocationChange:!!ur,replaceUrl:!!zn})}),(0,E.b)(li=>{const Ri=new _e(li.id,this.serializeUrl(li.extractedUrl),this.serializeUrl(li.urlAfterRedirects),li.targetSnapshot);this.triggerEvent(Ri)}),(0,oe.U)(li=>Object.assign(Object.assign({},li),{guards:He(li.targetSnapshot,li.currentSnapshot,this.rootContexts)})),function hs(Be,Me){return(0,_.z)(ge=>{const{targetSnapshot:$e,currentSnapshot:ct,guards:{canActivateChecks:Pt,canDeactivateChecks:$t}}=ge;return 0===$t.length&&0===Pt.length?(0,h.of)(Object.assign(Object.assign({},ge),{guardsResult:!0})):function Fi(Be,Me,ge,$e){return(0,N.D)(Be).pipe((0,_.z)(ct=>function pa(Be,Me,ge,$e,ct){const Pt=Me&&Me.routeConfig?Me.routeConfig.canDeactivate:null;if(!Pt||0===Pt.length)return(0,h.of)(!0);const $t=Pt.map(li=>{const Ri=yi(li,Me,ct);let cn;if(function ta(Be){return Be&&hn(Be.canDeactivate)}(Ri))cn=hi(Ri.canDeactivate(Be,Me,ge,$e));else{if(!hn(Ri))throw new Error("Invalid CanDeactivate guard");cn=hi(Ri(Be,Me,ge,$e))}return cn.pipe((0,c.P)())});return(0,h.of)($t).pipe(zr())}(ct.component,ct.route,ge,Me,$e)),(0,c.P)(ct=>!0!==ct,!0))}($t,$e,ct,Be).pipe((0,_.z)(li=>li&&function ea(Be){return"boolean"==typeof Be}(li)?function Gn(Be,Me,ge,$e){return(0,N.D)(Me).pipe((0,u.b)(ct=>(0,k.z)(function br(Be,Me){return null!==Be&&Me&&Me(new V(Be)),(0,h.of)(!0)}(ct.route.parent,$e),function es(Be,Me){return null!==Be&&Me&&Me(new dt(Be)),(0,h.of)(!0)}(ct.route,$e),function ts(Be,Me,ge){const $e=Me[Me.length-1],Pt=Me.slice(0,Me.length-1).reverse().map($t=>function Lt(Be){const Me=Be.routeConfig?Be.routeConfig.canActivateChild:null;return Me&&0!==Me.length?{node:Be,guards:Me}:null}($t)).filter($t=>null!==$t).map($t=>(0,S.P)(()=>{const li=$t.guards.map(Ri=>{const cn=yi(Ri,$t.node,ge);let Vn;if(function Ta(Be){return Be&&hn(Be.canActivateChild)}(cn))Vn=hi(cn.canActivateChild($e,Be));else{if(!hn(cn))throw new Error("Invalid CanActivateChild guard");Vn=hi(cn($e,Be))}return Vn.pipe((0,c.P)())});return(0,h.of)(li).pipe(zr())}));return(0,h.of)(Pt).pipe(zr())}(Be,ct.path,ge),function Ks(Be,Me,ge){const $e=Me.routeConfig?Me.routeConfig.canActivate:null;if(!$e||0===$e.length)return(0,h.of)(!0);const ct=$e.map(Pt=>(0,S.P)(()=>{const $t=yi(Pt,Me,ge);let li;if(function Kr(Be){return Be&&hn(Be.canActivate)}($t))li=hi($t.canActivate(Me,Be));else{if(!hn($t))throw new Error("Invalid CanActivate guard");li=hi($t(Me,Be))}return li.pipe((0,c.P)())}));return(0,h.of)(ct).pipe(zr())}(Be,ct.route,ge))),(0,c.P)(ct=>!0!==ct,!0))}($e,Pt,Be,Me):(0,h.of)(li)),(0,oe.U)(li=>Object.assign(Object.assign({},ge),{guardsResult:li})))})}(this.ngModule.injector,li=>this.triggerEvent(li)),(0,E.b)(li=>{if(ir(li.guardsResult)){const cn=ee(`Redirecting to "${this.serializeUrl(li.guardsResult)}"`);throw cn.url=li.guardsResult,cn}const Ri=new Ne(li.id,this.serializeUrl(li.extractedUrl),this.serializeUrl(li.urlAfterRedirects),li.targetSnapshot,!!li.guardsResult);this.triggerEvent(Ri)}),(0,Y.h)(li=>!!li.guardsResult||(this.restoreHistory(li),this.cancelNavigationTransition(li,""),!1)),dn(li=>{if(li.guards.canActivateChecks.length)return(0,h.of)(li).pipe((0,E.b)(Ri=>{const cn=new we(Ri.id,this.serializeUrl(Ri.extractedUrl),this.serializeUrl(Ri.urlAfterRedirects),Ri.targetSnapshot);this.triggerEvent(cn)}),(0,X.w)(Ri=>{let cn=!1;return(0,h.of)(Ri).pipe(function ii(Be,Me){return(0,_.z)(ge=>{const{targetSnapshot:$e,guards:{canActivateChecks:ct}}=ge;if(!ct.length)return(0,h.of)(ge);let Pt=0;return(0,N.D)(ct).pipe((0,u.b)($t=>function ni(Be,Me,ge,$e){return function _i(Be,Me,ge,$e){const ct=Pi(Be);if(0===ct.length)return(0,h.of)({});const Pt={};return(0,N.D)(ct).pipe((0,_.z)($t=>function tn(Be,Me,ge,$e){const ct=yi(Be,Me,$e);return hi(ct.resolve?ct.resolve(Me,ge):ct(Me,ge))}(Be[$t],Me,ge,$e).pipe((0,E.b)(li=>{Pt[$t]=li}))),ne(1),(0,_.z)(()=>Pi(Pt).length===ct.length?(0,h.of)(Pt):U.E))}(Be._resolve,Be,Me,$e).pipe((0,oe.U)(Pt=>(Be._resolvedData=Pt,Be.data=Object.assign(Object.assign({},Be.data),sn(Be,ge).resolve),null)))}($t.route,$e,Be,Me)),(0,E.b)(()=>Pt++),ne(1),(0,_.z)($t=>Pt===ct.length?(0,h.of)(ge):U.E))})}(this.paramsInheritanceStrategy,this.ngModule.injector),(0,E.b)({next:()=>cn=!0,complete:()=>{cn||(this.restoreHistory(Ri),this.cancelNavigationTransition(Ri,"At least one route resolver didn't emit any value."))}}))}),(0,E.b)(Ri=>{const cn=new Q(Ri.id,this.serializeUrl(Ri.extractedUrl),this.serializeUrl(Ri.urlAfterRedirects),Ri.targetSnapshot);this.triggerEvent(cn)}))}),dn(li=>{const{targetSnapshot:Ri,id:cn,extractedUrl:Vn,rawUrl:Mn,extras:{skipLocationChange:ur,replaceUrl:zn}}=li;return this.hooks.afterPreactivation(Ri,{navigationId:cn,appliedUrlTree:Vn,rawUrlTree:Mn,skipLocationChange:!!ur,replaceUrl:!!zn})}),(0,oe.U)(li=>{const Ri=function Ni(Be,Me,ge){const $e=ki(Be,Me._root,ge?ge._root:void 0);return new bi($e,Me)}(this.routeReuseStrategy,li.targetSnapshot,li.currentRouterState);return Object.assign(Object.assign({},li),{targetRouterState:Ri})}),(0,E.b)(li=>{this.currentUrlTree=li.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(li.urlAfterRedirects,li.rawUrl),this.routerState=li.targetRouterState,"deferred"===this.urlUpdateStrategy&&(li.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,li),this.browserUrlTree=li.urlAfterRedirects)}),((Be,Me,ge)=>(0,oe.U)($e=>(new Yr(Me,$e.targetRouterState,$e.currentRouterState,ge).activate(Be),$e)))(this.rootContexts,this.routeReuseStrategy,li=>this.triggerEvent(li)),(0,E.b)({next(){Pt=!0},complete(){Pt=!0}}),(0,I.x)(()=>{var li;Pt||$t||this.cancelNavigationTransition(ct,`Navigation ID ${ct.id} is not equal to the current navigation id ${this.navigationId}`),(null===(li=this.currentNavigation)||void 0===li?void 0:li.id)===ct.id&&(this.currentNavigation=null)}),(0,r.K)(li=>{if($t=!0,function ue(Be){return Be&&Be[W]}(li)){const Ri=ir(li.url);Ri||(this.navigated=!0,this.restoreHistory(ct,!0));const cn=new H(ct.id,this.serializeUrl(ct.extractedUrl),li.message);$e.next(cn),Ri?setTimeout(()=>{const Vn=this.urlHandlingStrategy.merge(li.url,this.rawUrlTree),Mn={skipLocationChange:ct.extras.skipLocationChange,replaceUrl:"eager"===this.urlUpdateStrategy||rt(ct.source)};this.scheduleNavigation(Vn,"imperative",null,Mn,{resolve:ct.resolve,reject:ct.reject,promise:ct.promise})},0):ct.resolve(!1)}else{this.restoreHistory(ct,!0);const Ri=new q(ct.id,this.serializeUrl(ct.extractedUrl),li);$e.next(Ri);try{ct.resolve(this.errorHandler(li))}catch(cn){ct.reject(cn)}}return U.E}))}))}resetRootComponentType(ge){this.rootComponentType=ge,this.routerState.root.component=this.rootComponentType}setTransition(ge){this.transitions.next(Object.assign(Object.assign({},this.transitions.value),ge))}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(ge=>{const $e="popstate"===ge.type?"popstate":"hashchange";"popstate"===$e&&setTimeout(()=>{var ct;const Pt={replaceUrl:!0},$t=(null===(ct=ge.state)||void 0===ct?void 0:ct.navigationId)?ge.state:null;if($t){const Ri=Object.assign({},$t);delete Ri.navigationId,delete Ri.\u0275routerPageId,0!==Object.keys(Ri).length&&(Pt.state=Ri)}const li=this.parseUrl(ge.url);this.scheduleNavigation(li,$e,$t,Pt)},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(ge){this.events.next(ge)}resetConfig(ge){xa(ge),this.config=ge.map(Oa),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.transitions.complete(),this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=void 0),this.disposed=!0}createUrlTree(ge,$e={}){const{relativeTo:ct,queryParams:Pt,fragment:$t,queryParamsHandling:li,preserveFragment:Ri}=$e,cn=ct||this.routerState.root,Vn=Ri?this.currentUrlTree.fragment:$t;let Mn=null;switch(li){case"merge":Mn=Object.assign(Object.assign({},this.currentUrlTree.queryParams),Pt);break;case"preserve":Mn=this.currentUrlTree.queryParams;break;default:Mn=Pt||null}return null!==Mn&&(Mn=this.removeEmptyProps(Mn)),function Dn(Be,Me,ge,$e,ct){if(0===ge.length)return Si(Me.root,Me.root,Me.root,$e,ct);const Pt=function jn(Be){if("string"==typeof Be[0]&&1===Be.length&&"/"===Be[0])return new Sn(!0,0,Be);let Me=0,ge=!1;const $e=Be.reduce((ct,Pt,$t)=>{if("object"==typeof Pt&&null!=Pt){if(Pt.outlets){const li={};return Gt(Pt.outlets,(Ri,cn)=>{li[cn]="string"==typeof Ri?Ri.split("/"):Ri}),[...ct,{outlets:li}]}if(Pt.segmentPath)return[...ct,Pt.segmentPath]}return"string"!=typeof Pt?[...ct,Pt]:0===$t?(Pt.split("/").forEach((li,Ri)=>{0==Ri&&"."===li||(0==Ri&&""===li?ge=!0:".."===li?Me++:""!=li&&ct.push(li))}),ct):[...ct,Pt]},[]);return new Sn(ge,Me,$e)}(ge);if(Pt.toRoot())return Si(Me.root,Me.root,new pt([],{}),$e,ct);const $t=function Fr(Be,Me,ge){if(Be.isAbsolute)return new dr(Me.root,!0,0);if(-1===ge.snapshot._lastPathIndex){const Pt=ge.snapshot._urlSegment;return new dr(Pt,Pt===Me.root,0)}const $e=Xn(Be.commands[0])?0:1;return function Vr(Be,Me,ge){let $e=Be,ct=Me,Pt=ge;for(;Pt>ct;){if(Pt-=ct,$e=$e.parent,!$e)throw new Error("Invalid number of '../'");ct=$e.segments.length}return new dr($e,!1,ct-Pt)}(ge.snapshot._urlSegment,ge.snapshot._lastPathIndex+$e,Be.numberOfDoubleDots)}(Pt,Me,Be),li=$t.processChildren?va($t.segmentGroup,$t.index,Pt.commands):_a($t.segmentGroup,$t.index,Pt.commands);return Si(Me.root,$t.segmentGroup,li,$e,ct)}(cn,this.currentUrlTree,ge,Mn,null!=Vn?Vn:null)}navigateByUrl(ge,$e={skipLocationChange:!1}){const ct=ir(ge)?ge:this.parseUrl(ge),Pt=this.urlHandlingStrategy.merge(ct,this.rawUrlTree);return this.scheduleNavigation(Pt,"imperative",null,$e)}navigate(ge,$e={skipLocationChange:!1}){return function Za(Be){for(let Me=0;Me{const Pt=ge[ct];return null!=Pt&&($e[ct]=Pt),$e},{})}processNavigations(){this.navigations.subscribe(ge=>{this.navigated=!0,this.lastSuccessfulId=ge.id,this.currentPageId=ge.targetPageId,this.events.next(new P(ge.id,this.serializeUrl(ge.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,ge.resolve(!0)},ge=>{this.console.warn(`Unhandled Navigation Error: ${ge}`)})}scheduleNavigation(ge,$e,ct,Pt,$t){var li,Ri;if(this.disposed)return Promise.resolve(!1);let cn,Vn,Mn;$t?(cn=$t.resolve,Vn=$t.reject,Mn=$t.promise):Mn=new Promise((ns,As)=>{cn=ns,Vn=As});const ur=++this.navigationId;let zn;return"computed"===this.canceledNavigationResolution?(0===this.currentPageId&&(ct=this.location.getState()),zn=ct&&ct.\u0275routerPageId?ct.\u0275routerPageId:Pt.replaceUrl||Pt.skipLocationChange?null!==(li=this.browserPageId)&&void 0!==li?li:0:(null!==(Ri=this.browserPageId)&&void 0!==Ri?Ri:0)+1):zn=0,this.setTransition({id:ur,targetPageId:zn,source:$e,restoredState:ct,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:ge,extras:Pt,resolve:cn,reject:Vn,promise:Mn,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),Mn.catch(ns=>Promise.reject(ns))}setBrowserUrl(ge,$e){const ct=this.urlSerializer.serialize(ge),Pt=Object.assign(Object.assign({},$e.extras.state),this.generateNgRouterState($e.id,$e.targetPageId));this.location.isCurrentPathEqualTo(ct)||$e.extras.replaceUrl?this.location.replaceState(ct,"",Pt):this.location.go(ct,"",Pt)}restoreHistory(ge,$e=!1){var ct,Pt;if("computed"===this.canceledNavigationResolution){const $t=this.currentPageId-ge.targetPageId;"popstate"!==ge.source&&"eager"!==this.urlUpdateStrategy&&this.currentUrlTree!==(null===(ct=this.currentNavigation)||void 0===ct?void 0:ct.finalUrl)||0===$t?this.currentUrlTree===(null===(Pt=this.currentNavigation)||void 0===Pt?void 0:Pt.finalUrl)&&0===$t&&(this.resetState(ge),this.browserUrlTree=ge.currentUrlTree,this.resetUrlToCurrentUrlTree()):this.location.historyGo($t)}else"replace"===this.canceledNavigationResolution&&($e&&this.resetState(ge),this.resetUrlToCurrentUrlTree())}resetState(ge){this.routerState=ge.currentRouterState,this.currentUrlTree=ge.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,ge.rawUrl)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}cancelNavigationTransition(ge,$e){const ct=new H(ge.id,this.serializeUrl(ge.extractedUrl),$e);this.triggerEvent(ct),ge.resolve(!1)}generateNgRouterState(ge,$e){return"computed"===this.canceledNavigationResolution?{navigationId:ge,\u0275routerPageId:$e}:{navigationId:ge}}}return Be.\u0275fac=function(ge){t.$Z()},Be.\u0275prov=t.Yz7({token:Be,factory:Be.\u0275fac}),Be})();function rt(Be){return"imperative"!==Be}let Et=(()=>{class Be{constructor(ge,$e,ct,Pt,$t){this.router=ge,this.route=$e,this.tabIndexAttribute=ct,this.renderer=Pt,this.el=$t,this.commands=null,this.onChanges=new Z.x,this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(ge){if(null!=this.tabIndexAttribute)return;const $e=this.renderer,ct=this.el.nativeElement;null!==ge?$e.setAttribute(ct,"tabindex",ge):$e.removeAttribute(ct,"tabindex")}ngOnChanges(ge){this.onChanges.next(this)}set routerLink(ge){null!=ge?(this.commands=Array.isArray(ge)?ge:[ge],this.setTabIndexIfNotOnNativeEl("0")):(this.commands=null,this.setTabIndexIfNotOnNativeEl(null))}onClick(){if(null===this.urlTree)return!0;const ge={skipLocationChange:Rt(this.skipLocationChange),replaceUrl:Rt(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,ge),!0}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:Rt(this.preserveFragment)})}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.Y36(_r),t.Y36(Zi),t.$8M("tabindex"),t.Y36(t.Qsj),t.Y36(t.SBq))},Be.\u0275dir=t.lG2({type:Be,selectors:[["","routerLink","",5,"a",5,"area"]],hostBindings:function(ge,$e){1&ge&&t.NdJ("click",function(){return $e.onClick()})},inputs:{queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",preserveFragment:"preserveFragment",skipLocationChange:"skipLocationChange",replaceUrl:"replaceUrl",state:"state",relativeTo:"relativeTo",routerLink:"routerLink"},features:[t.TTD]}),Be})(),Dt=(()=>{class Be{constructor(ge,$e,ct){this.router=ge,this.route=$e,this.locationStrategy=ct,this.commands=null,this.href=null,this.onChanges=new Z.x,this.subscription=ge.events.subscribe(Pt=>{Pt instanceof P&&this.updateTargetUrlAndHref()})}set routerLink(ge){this.commands=null!=ge?Array.isArray(ge)?ge:[ge]:null}ngOnChanges(ge){this.updateTargetUrlAndHref(),this.onChanges.next(this)}ngOnDestroy(){this.subscription.unsubscribe()}onClick(ge,$e,ct,Pt,$t){if(0!==ge||$e||ct||Pt||$t||"string"==typeof this.target&&"_self"!=this.target||null===this.urlTree)return!0;const li={skipLocationChange:Rt(this.skipLocationChange),replaceUrl:Rt(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,li),!1}updateTargetUrlAndHref(){this.href=null!==this.urlTree?this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree)):null}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:Rt(this.preserveFragment)})}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.Y36(_r),t.Y36(Zi),t.Y36(n.S$))},Be.\u0275dir=t.lG2({type:Be,selectors:[["a","routerLink",""],["area","routerLink",""]],hostVars:2,hostBindings:function(ge,$e){1&ge&&t.NdJ("click",function(Pt){return $e.onClick(Pt.button,Pt.ctrlKey,Pt.shiftKey,Pt.altKey,Pt.metaKey)}),2&ge&&t.uIk("target",$e.target)("href",$e.href,t.LSH)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",preserveFragment:"preserveFragment",skipLocationChange:"skipLocationChange",replaceUrl:"replaceUrl",state:"state",relativeTo:"relativeTo",routerLink:"routerLink"},features:[t.TTD]}),Be})();function Rt(Be){return""===Be||!!Be}let Jt=(()=>{class Be{constructor(ge,$e,ct,Pt,$t,li){this.router=ge,this.element=$e,this.renderer=ct,this.cdr=Pt,this.link=$t,this.linkWithHref=li,this.classes=[],this.isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new t.vpe,this.routerEventsSubscription=ge.events.subscribe(Ri=>{Ri instanceof P&&this.update()})}ngAfterContentInit(){(0,h.of)(this.links.changes,this.linksWithHrefs.changes,(0,h.of)(null)).pipe((0,v.J)()).subscribe(ge=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){var ge;null===(ge=this.linkInputChangesSubscription)||void 0===ge||ge.unsubscribe();const $e=[...this.links.toArray(),...this.linksWithHrefs.toArray(),this.link,this.linkWithHref].filter(ct=>!!ct).map(ct=>ct.onChanges);this.linkInputChangesSubscription=(0,N.D)($e).pipe((0,v.J)()).subscribe(ct=>{this.isActive!==this.isLinkActive(this.router)(ct)&&this.update()})}set routerLinkActive(ge){const $e=Array.isArray(ge)?ge:ge.split(" ");this.classes=$e.filter(ct=>!!ct)}ngOnChanges(ge){this.update()}ngOnDestroy(){var ge;this.routerEventsSubscription.unsubscribe(),null===(ge=this.linkInputChangesSubscription)||void 0===ge||ge.unsubscribe()}update(){!this.links||!this.linksWithHrefs||!this.router.navigated||Promise.resolve().then(()=>{const ge=this.hasActiveLinks();this.isActive!==ge&&(this.isActive=ge,this.cdr.markForCheck(),this.classes.forEach($e=>{ge?this.renderer.addClass(this.element.nativeElement,$e):this.renderer.removeClass(this.element.nativeElement,$e)}),this.isActiveChange.emit(ge))})}isLinkActive(ge){const $e=function Ci(Be){return!!Be.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return ct=>!!ct.urlTree&&ge.isActive(ct.urlTree,$e)}hasActiveLinks(){const ge=this.isLinkActive(this.router);return this.link&&ge(this.link)||this.linkWithHref&&ge(this.linkWithHref)||this.links.some(ge)||this.linksWithHrefs.some(ge)}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.Y36(_r),t.Y36(t.SBq),t.Y36(t.Qsj),t.Y36(t.sBO),t.Y36(Et,8),t.Y36(Dt,8))},Be.\u0275dir=t.lG2({type:Be,selectors:[["","routerLinkActive",""]],contentQueries:function(ge,$e,ct){if(1&ge&&(t.Suo(ct,Et,5),t.Suo(ct,Dt,5)),2&ge){let Pt;t.iGM(Pt=t.CRH())&&($e.links=Pt),t.iGM(Pt=t.CRH())&&($e.linksWithHrefs=Pt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],features:[t.TTD]}),Be})();class ti{}class Li{preload(Me,ge){return(0,h.of)(null)}}let Ki=(()=>{class Be{constructor(ge,$e,ct,Pt){this.router=ge,this.injector=ct,this.preloadingStrategy=Pt,this.loader=new tr(ct,$e,Ri=>ge.triggerEvent(new Ue(Ri)),Ri=>ge.triggerEvent(new ve(Ri)))}setUpPreloading(){this.subscription=this.router.events.pipe((0,Y.h)(ge=>ge instanceof P),(0,u.b)(()=>this.preload())).subscribe(()=>{})}preload(){const ge=this.injector.get(t.h0i);return this.processRoutes(ge,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(ge,$e){const ct=[];for(const Pt of $e)if(Pt.loadChildren&&!Pt.canLoad&&Pt._loadedConfig){const $t=Pt._loadedConfig;ct.push(this.processRoutes($t.module,$t.routes))}else Pt.loadChildren&&!Pt.canLoad?ct.push(this.preloadConfig(ge,Pt)):Pt.children&&ct.push(this.processRoutes(ge,Pt.children));return(0,N.D)(ct).pipe((0,v.J)(),(0,oe.U)(Pt=>{}))}preloadConfig(ge,$e){return this.preloadingStrategy.preload($e,()=>($e._loadedConfig?(0,h.of)($e._loadedConfig):this.loader.load(ge.injector,$e)).pipe((0,_.z)(Pt=>($e._loadedConfig=Pt,this.processRoutes(Pt.module,Pt.routes)))))}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.LFG(_r),t.LFG(t.Sil),t.LFG(t.zs3),t.LFG(ti))},Be.\u0275prov=t.Yz7({token:Be,factory:Be.\u0275fac}),Be})(),Ji=(()=>{class Be{constructor(ge,$e,ct={}){this.router=ge,this.viewportScroller=$e,this.options=ct,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},ct.scrollPositionRestoration=ct.scrollPositionRestoration||"disabled",ct.anchorScrolling=ct.anchorScrolling||"disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(ge=>{ge instanceof B?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=ge.navigationTrigger,this.restoredId=ge.restoredState?ge.restoredState.navigationId:0):ge instanceof P&&(this.lastId=ge.id,this.scheduleScrollEvent(ge,this.router.parseUrl(ge.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(ge=>{ge instanceof Ae&&(ge.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(ge.position):ge.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(ge.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(ge,$e){this.router.triggerEvent(new Ae(ge,"popstate"===this.lastSource?this.store[this.restoredId]:null,$e))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return Be.\u0275fac=function(ge){t.$Z()},Be.\u0275prov=t.Yz7({token:Be,factory:Be.\u0275fac}),Be})();const bn=new t.OlP("ROUTER_CONFIGURATION"),er=new t.OlP("ROUTER_FORROOT_GUARD"),kn=[n.Ye,{provide:tt,useClass:Xe},{provide:_r,useFactory:function Jr(Be,Me,ge,$e,ct,Pt,$t={},li,Ri){const cn=new _r(null,Be,Me,ge,$e,ct,It(Pt));return li&&(cn.urlHandlingStrategy=li),Ri&&(cn.routeReuseStrategy=Ri),function qa(Be,Me){Be.errorHandler&&(Me.errorHandler=Be.errorHandler),Be.malformedUriErrorHandler&&(Me.malformedUriErrorHandler=Be.malformedUriErrorHandler),Be.onSameUrlNavigation&&(Me.onSameUrlNavigation=Be.onSameUrlNavigation),Be.paramsInheritanceStrategy&&(Me.paramsInheritanceStrategy=Be.paramsInheritanceStrategy),Be.relativeLinkResolution&&(Me.relativeLinkResolution=Be.relativeLinkResolution),Be.urlUpdateStrategy&&(Me.urlUpdateStrategy=Be.urlUpdateStrategy),Be.canceledNavigationResolution&&(Me.canceledNavigationResolution=Be.canceledNavigationResolution)}($t,cn),$t.enableTracing&&cn.events.subscribe(Vn=>{var Mn,ur;null===(Mn=console.group)||void 0===Mn||Mn.call(console,`Router Event: ${Vn.constructor.name}`),console.log(Vn.toString()),console.log(Vn),null===(ur=console.groupEnd)||void 0===ur||ur.call(console)}),cn},deps:[tt,xr,n.Ye,t.zs3,t.Sil,Tn,bn,[class Lr{},new t.FiY],[class Ln{},new t.FiY]]},xr,{provide:Zi,useFactory:function fs(Be){return Be.routerState.root},deps:[_r]},Ki,Li,class pi{preload(Me,ge){return ge().pipe((0,r.K)(()=>(0,h.of)(null)))}},{provide:bn,useValue:{enableTracing:!1}}];function la(){return new t.PXZ("Router",_r)}let Da=(()=>{class Be{constructor(ge,$e){}static forRoot(ge,$e){return{ngModule:Be,providers:[kn,Hr(ge),{provide:er,useFactory:vr,deps:[[_r,new t.FiY,new t.tp0]]},{provide:bn,useValue:$e||{}},{provide:n.S$,useFactory:Sr,deps:[n.lw,[new t.tBr(n.mr),new t.FiY],bn]},{provide:Ji,useFactory:ar,deps:[_r,n.EM,bn]},{provide:ti,useExisting:$e&&$e.preloadingStrategy?$e.preloadingStrategy:Li},{provide:t.PXZ,multi:!0,useFactory:la},[ps,{provide:t.ip1,multi:!0,useFactory:bs,deps:[ps]},{provide:So,useFactory:qs,deps:[ps]},{provide:t.tb,multi:!0,useExisting:So}]]}}static forChild(ge){return{ngModule:Be,providers:[Hr(ge)]}}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.LFG(er,8),t.LFG(_r,8))},Be.\u0275mod=t.oAB({type:Be}),Be.\u0275inj=t.cJS({}),Be})();function ar(Be,Me,ge){return ge.scrollOffset&&Me.setOffset(ge.scrollOffset),new Ji(Be,Me,ge)}function Sr(Be,Me,ge={}){return ge.useHash?new n.Do(Be,Me):new n.b0(Be,Me)}function vr(Be){return"guarded"}function Hr(Be){return[{provide:t.deG,multi:!0,useValue:Be},{provide:Tn,multi:!0,useValue:Be}]}let ps=(()=>{class Be{constructor(ge){this.injector=ge,this.initNavigation=!1,this.destroyed=!1,this.resultOfPreactivationDone=new Z.x}appInitializer(){return this.injector.get(n.V_,Promise.resolve(null)).then(()=>{if(this.destroyed)return Promise.resolve(!0);let $e=null;const ct=new Promise(li=>$e=li),Pt=this.injector.get(_r),$t=this.injector.get(bn);return"disabled"===$t.initialNavigation?(Pt.setUpLocationChangeListener(),$e(!0)):"enabled"===$t.initialNavigation||"enabledBlocking"===$t.initialNavigation?(Pt.hooks.afterPreactivation=()=>this.initNavigation?(0,h.of)(null):(this.initNavigation=!0,$e(!0),this.resultOfPreactivationDone),Pt.initialNavigation()):$e(!0),ct})}bootstrapListener(ge){const $e=this.injector.get(bn),ct=this.injector.get(Ki),Pt=this.injector.get(Ji),$t=this.injector.get(_r),li=this.injector.get(t.z2F);ge===li.components[0]&&(("enabledNonBlocking"===$e.initialNavigation||void 0===$e.initialNavigation)&&$t.initialNavigation(),ct.setUpPreloading(),Pt.init(),$t.resetRootComponentType(li.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}ngOnDestroy(){this.destroyed=!0}}return Be.\u0275fac=function(ge){return new(ge||Be)(t.LFG(t.zs3))},Be.\u0275prov=t.Yz7({token:Be,factory:Be.\u0275fac}),Be})();function bs(Be){return Be.appInitializer.bind(Be)}function qs(Be){return Be.bootstrapListener.bind(Be)}const So=new t.OlP("Router Initializer")},9444:(Ve,j,p)=>{"use strict";p.d(j,{BN:()=>ia,uH:()=>Za});var t=p(5e3);function e(rt,Et){var Dt=Object.keys(rt);if(Object.getOwnPropertySymbols){var Rt=Object.getOwnPropertySymbols(rt);Et&&(Rt=Rt.filter(function(Jt){return Object.getOwnPropertyDescriptor(rt,Jt).enumerable})),Dt.push.apply(Dt,Rt)}return Dt}function f(rt){for(var Et=1;Etrt.length)&&(Et=rt.length);for(var Dt=0,Rt=new Array(Et);Dt0;)Et+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return Et}function Oe(rt){for(var Et=[],Dt=(rt||[]).length>>>0;Dt--;)Et[Dt]=rt[Dt];return Et}function ce(rt){return rt.classList?Oe(rt.classList):(rt.getAttribute("class")||"").split(" ").filter(function(Et){return Et})}function be(rt){return"".concat(rt).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function mt(rt){return Object.keys(rt||{}).reduce(function(Et,Dt){return Et+"".concat(Dt,": ").concat(rt[Dt].trim(),";")},"")}function Ht(rt){return rt.size!==yt.size||rt.x!==yt.x||rt.y!==yt.y||rt.rotate!==yt.rotate||rt.flipX||rt.flipY}function Xe(){var Et=H,Dt=xt.familyPrefix,Rt=xt.replacementClass,Jt=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";\n --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0);\n animation-delay: var(--fa-animation-delay, 0);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n transition-delay: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}';if("fa"!==Dt||Rt!==Et){var Ci=new RegExp("\\.".concat("fa","\\-"),"g"),ti=new RegExp("\\--".concat("fa","\\-"),"g"),pi=new RegExp("\\.".concat(Et),"g");Jt=Jt.replace(Ci,".".concat(Dt,"-")).replace(ti,"--".concat(Dt,"-")).replace(pi,".".concat(Rt))}return Jt}var Se=!1;function Ge(){xt.autoAddCss&&!Se&&(function ei(rt){if(rt&&v){var Et=c.createElement("style");Et.setAttribute("type","text/css"),Et.innerHTML=rt;for(var Dt=c.head.childNodes,Rt=null,Jt=Dt.length-1;Jt>-1;Jt--){var Ci=Dt[Jt],ti=(Ci.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(ti)>-1&&(Rt=Ci)}c.head.insertBefore(Et,Rt)}}(Xe()),Se=!0)}var at={mixout:function(){return{dom:{css:Xe,insertCss:Ge}}},hooks:function(){return{beforeDOMElementCreation:function(){Ge()},beforeI2svg:function(){Ge()}}}},st=u||{};st[C]||(st[C]={}),st[C].styles||(st[C].styles={}),st[C].hooks||(st[C].hooks={}),st[C].shims||(st[C].shims=[]);var bt=st[C],gi=[],Xt=!1;function qi(rt){!v||(Xt?setTimeout(rt,0):gi.push(rt))}function fi(rt){var Et=rt.tag,Dt=rt.attributes,Rt=void 0===Dt?{}:Dt,Jt=rt.children,Ci=void 0===Jt?[]:Jt;return"string"==typeof rt?be(rt):"<".concat(Et," ").concat(function pt(rt){return Object.keys(rt||{}).reduce(function(Et,Dt){return Et+"".concat(Dt,'="').concat(be(rt[Dt]),'" ')},"").trim()}(Rt),">").concat(Ci.map(fi).join(""),"")}function si(rt,Et,Dt){if(rt&&rt[Et]&&rt[Et][Dt])return{prefix:Et,iconName:Dt,icon:rt[Et][Dt]}}v&&((Xt=(c.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(c.readyState))||c.addEventListener("DOMContentLoaded",function rt(){c.removeEventListener("DOMContentLoaded",rt),Xt=1,gi.map(function(Et){return Et()})}));var Bi=function(Et,Dt,Rt,Jt){var Li,Ki,Ji,Ci=Object.keys(Et),ti=Ci.length,pi=void 0!==Jt?function(Et,Dt){return function(Rt,Jt,Ci,ti){return Et.call(Dt,Rt,Jt,Ci,ti)}}(Dt,Jt):Dt;for(void 0===Rt?(Li=1,Ji=Et[Ci[0]]):(Li=0,Ji=Rt);Li=55296&&Jt<=56319&&Dt2&&void 0!==arguments[2]?arguments[2]:{},Rt=Dt.skipHooks,Jt=void 0!==Rt&&Rt,Ci=Tt(Et);"function"!=typeof bt.hooks.addPack||Jt?bt.styles[rt]=f(f({},bt.styles[rt]||{}),Ci):bt.hooks.addPack(rt,Tt(Et)),"fas"===rt&&pe("fa",Et)}var _t=bt.styles,re=bt.shims,qe=Object.values(Ie),Mt=null,zt={},bi={},Ei={},Xi={},Zi={},sn=Object.keys(De);function jt(rt,Et){var Dt=Et.split("-"),Rt=Dt[0],Jt=Dt.slice(1).join("-");return Rt!==rt||""===Jt||function gn(rt){return~ut.indexOf(rt)}(Jt)?null:Jt}var wi=function(){var Et=function(Ci){return Bi(_t,function(ti,pi,Li){return ti[Li]=Bi(pi,Ci,{}),ti},{})};zt=Et(function(Jt,Ci,ti){return Ci[3]&&(Jt[Ci[3]]=ti),Ci[2]&&Ci[2].filter(function(Li){return"number"==typeof Li}).forEach(function(Li){Jt[Li.toString(16)]=ti}),Jt}),bi=Et(function(Jt,Ci,ti){return Jt[ti]=ti,Ci[2]&&Ci[2].filter(function(Li){return"string"==typeof Li}).forEach(function(Li){Jt[Li]=ti}),Jt}),Zi=Et(function(Jt,Ci,ti){var pi=Ci[2];return Jt[ti]=ti,pi.forEach(function(Li){Jt[Li]=ti}),Jt});var Dt="far"in _t||xt.autoFetchSvg,Rt=Bi(re,function(Jt,Ci){var ti=Ci[0],pi=Ci[1],Li=Ci[2];return"far"===pi&&!Dt&&(pi="fas"),"string"==typeof ti&&(Jt.names[ti]={prefix:pi,iconName:Li}),"number"==typeof ti&&(Jt.unicodes[ti.toString(16)]={prefix:pi,iconName:Li}),Jt},{names:{},unicodes:{}});Ei=Rt.names,Xi=Rt.unicodes,Mt=Bn(xt.styleDefault)};function nt(rt,Et){return(zt[rt]||{})[Et]}function Kt(rt,Et){return(Zi[rt]||{})[Et]}function mi(rt){return Ei[rt]||{prefix:null,iconName:null}}function ki(){return Mt}function Bn(rt){return dt[rt]||dt[De[rt]]||(rt in bt.styles?rt:null)||null}function Dn(rt){var Et=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Dt=Et.skipLookups,Rt=void 0!==Dt&&Dt,Jt=null,Ci=rt.reduce(function(ti,pi){var Li=jt(xt.familyPrefix,pi);if(_t[pi]?(pi=qe.includes(pi)?Ae[pi]:pi,Jt=pi,ti.prefix=pi):sn.indexOf(pi)>-1?(Jt=pi,ti.prefix=Bn(pi)):Li?ti.iconName=Li:pi!==xt.replacementClass&&ti.rest.push(pi),!Rt&&ti.prefix&&ti.iconName){var Ki="fa"===Jt?mi(ti.iconName):{},Ji=Kt(ti.prefix,ti.iconName);Ki.prefix&&(Jt=null),ti.iconName=Ki.iconName||Ji||ti.iconName,ti.prefix=Ki.prefix||ti.prefix,"far"===ti.prefix&&!_t.far&&_t.fas&&!xt.autoFetchSvg&&(ti.prefix="fas")}return ti},{prefix:null,iconName:null,rest:[]});return("fa"===Ci.prefix||"fa"===Jt)&&(Ci.prefix=ki()||"fas"),Ci}(function Ct(rt){Nt.push(rt)})(function(rt){Mt=Bn(rt.styleDefault)}),wi();var Xn=function(){function rt(){(function b(rt,Et){if(!(rt instanceof Et))throw new TypeError("Cannot call a class as a function")})(this,rt),this.definitions={}}return function N(rt,Et,Dt){Et&&d(rt.prototype,Et),Dt&&d(rt,Dt),Object.defineProperty(rt,"prototype",{writable:!1})}(rt,[{key:"add",value:function(){for(var Dt=this,Rt=arguments.length,Jt=new Array(Rt),Ci=0;Ci0&&Ji.forEach(function(on){"string"==typeof on&&(Dt[pi][on]=Ki)}),Dt[pi][Li]=Ki}),Dt}}]),rt}(),_n=[],Si={},Wi={},Sn=Object.keys(Wi);function dr(rt,Et){for(var Dt=arguments.length,Rt=new Array(Dt>2?Dt-2:0),Jt=2;Jt1?Et-1:0),Rt=1;Rt0&&void 0!==arguments[0]?arguments[0]:{};return v?(Fr("beforeI2svg",Et),Vr("pseudoElements2svg",Et),Vr("i2svg",Et)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var Et=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},Dt=Et.autoReplaceSvgRoot;!1===xt.autoReplaceSvg&&(xt.autoReplaceSvg=!0),xt.observeMutations=!0,qi(function(){$r({autoReplaceSvgRoot:Dt}),Fr("watch",Et)})}},cr={noAuto:function(){xt.autoReplaceSvg=!1,xt.observeMutations=!1,Fr("noAuto")},config:xt,dom:Va,parse:{icon:function(Et){if(null===Et)return null;if("object"===M(Et)&&Et.prefix&&Et.iconName)return{prefix:Et.prefix,iconName:Kt(Et.prefix,Et.iconName)||Et.iconName};if(Array.isArray(Et)&&2===Et.length){var Dt=0===Et[1].indexOf("fa-")?Et[1].slice(3):Et[1],Rt=Bn(Et[0]);return{prefix:Rt,iconName:Kt(Rt,Dt)||Dt}}if("string"==typeof Et&&(Et.indexOf("".concat(xt.familyPrefix,"-"))>-1||Et.match(le))){var Jt=Dn(Et.split(" "),{skipLookups:!0});return{prefix:Jt.prefix||ki(),iconName:Kt(Jt.prefix,Jt.iconName)||Jt.iconName}}if("string"==typeof Et){var Ci=ki();return{prefix:Ci,iconName:Kt(Ci,Et)||Et}}}},library:_a,findIconDefinition:ua,toHtml:fi},$r=function(){var Et=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},Dt=Et.autoReplaceSvgRoot,Rt=void 0===Dt?c:Dt;(Object.keys(bt.styles).length>0||xt.autoFetchSvg)&&v&&xt.autoReplaceSvg&&cr.dom.i2svg({node:Rt})};function ha(rt,Et){return Object.defineProperty(rt,"abstract",{get:Et}),Object.defineProperty(rt,"html",{get:function(){return rt.abstract.map(function(Rt){return fi(Rt)})}}),Object.defineProperty(rt,"node",{get:function(){if(v){var Rt=c.createElement("div");return Rt.innerHTML=rt.html,Rt.children}}}),rt}function jr(rt){var Et=rt.icons,Dt=Et.main,Rt=Et.mask,Jt=rt.prefix,Ci=rt.iconName,ti=rt.transform,pi=rt.symbol,Li=rt.title,Ki=rt.maskId,Ji=rt.titleId,on=rt.extra,bn=rt.watchable,er=void 0!==bn&&bn,kn=Rt.found?Rt:Dt,la=kn.width,Da=kn.height,ar="fak"===Jt,Sr=[xt.replacementClass,Ci?"".concat(xt.familyPrefix,"-").concat(Ci):""].filter(function(bs){return-1===on.classes.indexOf(bs)}).filter(function(bs){return""!==bs||!!bs}).concat(on.classes).join(" "),vr={children:[],attributes:f(f({},on.attributes),{},{"data-prefix":Jt,"data-icon":Ci,class:Sr,role:on.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(la," ").concat(Da)})},Hr=ar&&!~on.classes.indexOf("fa-fw")?{width:"".concat(la/Da*16*.0625,"em")}:{};er&&(vr.attributes[q]=""),Li&&(vr.children.push({tag:"title",attributes:{id:vr.attributes["aria-labelledby"]||"title-".concat(Ji||Pe())},children:[Li]}),delete vr.attributes.title);var Jr=f(f({},vr),{},{prefix:Jt,iconName:Ci,main:Dt,mask:Rt,maskId:Ki,transform:ti,symbol:pi,styles:f(f({},Hr),on.styles)}),qa=Rt.found&&Dt.found?Vr("generateAbstractMask",Jr)||{children:[],attributes:{}}:Vr("generateAbstractIcon",Jr)||{children:[],attributes:{}},ps=qa.attributes;return Jr.children=qa.children,Jr.attributes=ps,pi?function Yr(rt){var Dt=rt.iconName,Rt=rt.children,Jt=rt.attributes,Ci=rt.symbol,ti=!0===Ci?"".concat(rt.prefix,"-").concat(xt.familyPrefix,"-").concat(Dt):Ci;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:f(f({},Jt),{},{id:ti}),children:Rt}]}]}(Jr):function Ba(rt){var Et=rt.children,Dt=rt.main,Rt=rt.mask,Jt=rt.attributes,Ci=rt.styles,ti=rt.transform;if(Ht(ti)&&Dt.found&&!Rt.found){var Ki={x:Dt.width/Dt.height/2,y:.5};Jt.style=mt(f(f({},Ci),{},{"transform-origin":"".concat(Ki.x+ti.x/16,"em ").concat(Ki.y+ti.y/16,"em")}))}return[{tag:"svg",attributes:Jt,children:Et}]}(Jr)}function mr(rt){var Et=rt.content,Dt=rt.width,Rt=rt.height,Jt=rt.transform,Ci=rt.title,ti=rt.extra,pi=rt.watchable,Li=void 0!==pi&&pi,Ki=f(f(f({},ti.attributes),Ci?{title:Ci}:{}),{},{class:ti.classes.join(" ")});Li&&(Ki[q]="");var Ji=f({},ti.styles);Ht(Jt)&&(Ji.transform=function Re(rt){var Et=rt.transform,Dt=rt.width,Jt=rt.height,Ci=void 0===Jt?16:Jt,ti=rt.startCentered,pi=void 0!==ti&&ti,Li="";return Li+=pi&&n?"translate(".concat(Et.x/16-(void 0===Dt?16:Dt)/2,"em, ").concat(Et.y/16-Ci/2,"em) "):pi?"translate(calc(-50% + ".concat(Et.x/16,"em), calc(-50% + ").concat(Et.y/16,"em)) "):"translate(".concat(Et.x/16,"em, ").concat(Et.y/16,"em) "),(Li+="scale(".concat(Et.size/16*(Et.flipX?-1:1),", ").concat(Et.size/16*(Et.flipY?-1:1),") "))+"rotate(".concat(Et.rotate,"deg) ")}({transform:Jt,startCentered:!0,width:Dt,height:Rt}),Ji["-webkit-transform"]=Ji.transform);var on=mt(Ji);on.length>0&&(Ki.style=on);var bn=[];return bn.push({tag:"span",attributes:Ki,children:[Et]}),Ci&&bn.push({tag:"span",attributes:{class:"sr-only"},children:[Ci]}),bn}function hn(rt){var Et=rt.content,Dt=rt.title,Rt=rt.extra,Jt=f(f(f({},Rt.attributes),Dt?{title:Dt}:{}),{},{class:Rt.classes.join(" ")}),Ci=mt(Rt.styles);Ci.length>0&&(Jt.style=Ci);var ti=[];return ti.push({tag:"span",attributes:Jt,children:[Et]}),Dt&&ti.push({tag:"span",attributes:{class:"sr-only"},children:[Dt]}),ti}var ea=bt.styles;function ir(rt){var Et=rt[0],Dt=rt[1],Ci=D(rt.slice(4),1)[0];return{found:!0,width:Et,height:Dt,icon:Array.isArray(Ci)?{tag:"g",attributes:{class:"".concat(xt.familyPrefix,"-").concat("duotone-group")},children:[{tag:"path",attributes:{class:"".concat(xt.familyPrefix,"-").concat("secondary"),fill:"currentColor",d:Ci[0]}},{tag:"path",attributes:{class:"".concat(xt.familyPrefix,"-").concat("primary"),fill:"currentColor",d:Ci[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:Ci}}}}var Ka={found:!1,width:512,height:512};function Ta(rt,Et){var Dt=Et;return"fa"===Et&&null!==xt.styleDefault&&(Et=ki()),new Promise(function(Rt,Jt){if(Vr("missingIconAbstract"),"fa"===Dt){var ti=mi(rt)||{};rt=ti.iconName||rt,Et=ti.prefix||Et}if(rt&&Et&&ea[Et]&&ea[Et][rt])return Rt(ir(ea[Et][rt]));(function Kr(rt,Et){!V&&!xt.showMissingIcons&&rt&&console.error('Icon with name "'.concat(rt,'" and prefix "').concat(Et,'" is missing.'))})(rt,Et),Rt(f(f({},Ka),{},{icon:xt.showMissingIcons&&rt&&Vr("missingIconAbstract")||{}}))})}var ta=function(){},Pr=xt.measurePerformance&&E&&E.mark&&E.measure?E:{mark:ta,measure:ta},zr='FA "6.1.2"',Nr_begin=function(Et){return Pr.mark("".concat(zr," ").concat(Et," begins")),function(){return function(Et){Pr.mark("".concat(zr," ").concat(Et," ends")),Pr.measure("".concat(zr," ").concat(Et),"".concat(zr," ").concat(Et," begins"),"".concat(zr," ").concat(Et," ends"))}(Et)}},fa=function(){};function ya(rt){return"string"==typeof(rt.getAttribute?rt.getAttribute(q):null)}function Oa(rt){return c.createElementNS("http://www.w3.org/2000/svg",rt)}function $n(rt){return c.createElement(rt)}function oa(rt){var Et=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Dt=Et.ceFn,Rt=void 0===Dt?"svg"===rt.tag?Oa:$n:Dt;if("string"==typeof rt)return c.createTextNode(rt);var Jt=Rt(rt.tag);Object.keys(rt.attributes||[]).forEach(function(ti){Jt.setAttribute(ti,rt.attributes[ti])});var Ci=rt.children||[];return Ci.forEach(function(ti){Jt.appendChild(oa(ti,{ceFn:Rt}))}),Jt}var Dr={replace:function(Et){var Dt=Et[0];if(Dt.parentNode)if(Et[1].forEach(function(Jt){Dt.parentNode.insertBefore(oa(Jt),Dt)}),null===Dt.getAttribute(q)&&xt.keepOriginalSource){var Rt=c.createComment(function Br(rt){var Et=" ".concat(rt.outerHTML," ");return"".concat(Et,"Font Awesome fontawesome.com ")}(Dt));Dt.parentNode.replaceChild(Rt,Dt)}else Dt.remove()},nest:function(Et){var Dt=Et[0],Rt=Et[1];if(~ce(Dt).indexOf(xt.replacementClass))return Dr.replace(Et);var Jt=new RegExp("".concat(xt.familyPrefix,"-.*"));if(delete Rt[0].attributes.id,Rt[0].attributes.class){var Ci=Rt[0].attributes.class.split(" ").reduce(function(pi,Li){return Li===xt.replacementClass||Li.match(Jt)?pi.toSvg.push(Li):pi.toNode.push(Li),pi},{toNode:[],toSvg:[]});Rt[0].attributes.class=Ci.toSvg.join(" "),0===Ci.toNode.length?Dt.removeAttribute("class"):Dt.setAttribute("class",Ci.toNode.join(" "))}var ti=Rt.map(function(pi){return fi(pi)}).join("\n");Dt.setAttribute(q,""),Dt.innerHTML=ti}};function Ur(rt){rt()}function ba(rt,Et){var Dt="function"==typeof Et?Et:fa;if(0===rt.length)Dt();else{var Rt=Ur;"async"===xt.mutateApproach&&(Rt=u.requestAnimationFrame||Ur),Rt(function(){var Jt=function Aa(){return!0===xt.autoReplaceSvg?Dr.replace:Dr[xt.autoReplaceSvg]||Dr.replace}(),Ci=Nr_begin("mutate");rt.map(Jt),Ci(),Dt()})}}var Ua=!1;function Qn(){Ua=!0}function Je(){Ua=!1}var St=null;function Qe(rt){if(_&&xt.observeMutations){var Et=rt.treeCallback,Dt=void 0===Et?fa:Et,Rt=rt.nodeCallback,Jt=void 0===Rt?fa:Rt,Ci=rt.pseudoElementsCallback,ti=void 0===Ci?fa:Ci,pi=rt.observeMutationsRoot,Li=void 0===pi?c:pi;St=new _(function(Ki){if(!Ua){var Ji=ki();Oe(Ki).forEach(function(on){if("childList"===on.type&&on.addedNodes.length>0&&!ya(on.addedNodes[0])&&(xt.searchPseudoElements&&ti(on.target),Dt(on.target)),"attributes"===on.type&&on.target.parentNode&&xt.searchPseudoElements&&ti(on.target.parentNode),"attributes"===on.type&&ya(on.target)&&~Ce.indexOf(on.attributeName))if("class"===on.attributeName&&function xa(rt){var Et=rt.getAttribute?rt.getAttribute(Ne):null,Dt=rt.getAttribute?rt.getAttribute(we):null;return Et&&Dt}(on.target)){var bn=Dn(ce(on.target)),kn=bn.iconName;on.target.setAttribute(Ne,bn.prefix||Ji),kn&&on.target.setAttribute(we,kn)}else(function nr(rt){return rt&&rt.classList&&rt.classList.contains&&rt.classList.contains(xt.replacementClass)})(on.target)&&Jt(on.target)})}}),v&&St.observe(Li,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function ai(rt){var Et=rt.getAttribute("style"),Dt=[];return Et&&(Dt=Et.split(";").reduce(function(Rt,Jt){var Ci=Jt.split(":"),ti=Ci[0],pi=Ci.slice(1);return ti&&pi.length>0&&(Rt[ti]=pi.join(":").trim()),Rt},{})),Dt}function Ti(rt){var Et=rt.getAttribute("data-prefix"),Dt=rt.getAttribute("data-icon"),Rt=void 0!==rt.innerText?rt.innerText.trim():"",Jt=Dn(ce(rt));return Jt.prefix||(Jt.prefix=ki()),Et&&Dt&&(Jt.prefix=Et,Jt.iconName=Dt),Jt.iconName&&Jt.prefix||(Jt.prefix&&Rt.length>0&&(Jt.iconName=function Ft(rt,Et){return(bi[rt]||{})[Et]}(Jt.prefix,rt.innerText)||nt(Jt.prefix,Ui(rt.innerText))),!Jt.iconName&&xt.autoFetchSvg&&rt.firstChild&&rt.firstChild.nodeType===Node.TEXT_NODE&&(Jt.iconName=rt.firstChild.data)),Jt}function Oi(rt){var Et=Oe(rt.attributes).reduce(function(Jt,Ci){return"class"!==Jt.name&&"style"!==Jt.name&&(Jt[Ci.name]=Ci.value),Jt},{}),Dt=rt.getAttribute("title"),Rt=rt.getAttribute("data-fa-title-id");return xt.autoA11y&&(Dt?Et["aria-labelledby"]="".concat(xt.replacementClass,"-title-").concat(Rt||Pe()):(Et["aria-hidden"]="true",Et.focusable="false")),Et}function qn(rt){var Et=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},Dt=Ti(rt),Rt=Dt.iconName,Jt=Dt.prefix,Ci=Dt.rest,ti=Oi(rt),pi=dr("parseNodeAttributes",{},rt),Li=Et.styleParser?ai(rt):[];return f({iconName:Rt,title:rt.getAttribute("title"),titleId:rt.getAttribute("data-fa-title-id"),prefix:Jt,transform:yt,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:Ci,styles:Li,attributes:ti}},pi)}var Ot=bt.styles;function oi(rt){var Et="nest"===xt.autoReplaceSvg?qn(rt,{styleParser:!1}):qn(rt);return~Et.extra.classes.indexOf(Te)?Vr("generateLayersText",rt,Et):Vr("generateSvgReplacementMutation",rt,Et)}function gt(rt){var Et=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!v)return Promise.resolve();var Dt=c.documentElement.classList,Rt=function(on){return Dt.add("".concat(Q,"-").concat(on))},Jt=function(on){return Dt.remove("".concat(Q,"-").concat(on))},Ci=Object.keys(xt.autoFetchSvg?De:Ot);Ci.includes("fa")||Ci.push("fa");var ti=[".".concat(Te,":not([").concat(q,"])")].concat(Ci.map(function(Ji){return".".concat(Ji,":not([").concat(q,"])")})).join(", ");if(0===ti.length)return Promise.resolve();var pi=[];try{pi=Oe(rt.querySelectorAll(ti))}catch(Ji){}if(!(pi.length>0))return Promise.resolve();Rt("pending"),Jt("complete");var Li=Nr_begin("onTree"),Ki=pi.reduce(function(Ji,on){try{var bn=oi(on);bn&&Ji.push(bn)}catch(er){V||"MissingIcon"===er.name&&console.error(er)}return Ji},[]);return new Promise(function(Ji,on){Promise.all(Ki).then(function(bn){ba(bn,function(){Rt("active"),Rt("complete"),Jt("pending"),"function"==typeof Et&&Et(),Li(),Ji()})}).catch(function(bn){Li(),on(bn)})})}function Qt(rt){var Et=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;oi(rt).then(function(Dt){Dt&&ba([Dt],Et)})}var Gi=function(Et){var Dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Rt=Dt.transform,Jt=void 0===Rt?yt:Rt,Ci=Dt.symbol,ti=void 0!==Ci&&Ci,pi=Dt.mask,Li=void 0===pi?null:pi,Ki=Dt.maskId,Ji=void 0===Ki?null:Ki,on=Dt.title,bn=void 0===on?null:on,er=Dt.titleId,kn=void 0===er?null:er,la=Dt.classes,Da=void 0===la?[]:la,ar=Dt.attributes,Sr=void 0===ar?{}:ar,vr=Dt.styles,Hr=void 0===vr?{}:vr;if(Et){var Jr=Et.prefix,qa=Et.iconName,fs=Et.icon;return ha(f({type:"icon"},Et),function(){return Fr("beforeDOMElementCreation",{iconDefinition:Et,params:Dt}),xt.autoA11y&&(bn?Sr["aria-labelledby"]="".concat(xt.replacementClass,"-title-").concat(kn||Pe()):(Sr["aria-hidden"]="true",Sr.focusable="false")),jr({icons:{main:ir(fs),mask:Li?ir(Li.icon):{found:!1,width:null,height:null,icon:{}}},prefix:Jr,iconName:qa,transform:f(f({},yt),Jt),symbol:ti,title:bn,maskId:Ji,titleId:kn,extra:{attributes:Sr,styles:Hr,classes:Da}})})}},Ke={mixout:function(){return{icon:(rt=Gi,function(Et){var Dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Rt=(Et||{}).icon?Et:ua(Et||{}),Jt=Dt.mask;return Jt&&(Jt=(Jt||{}).icon?Jt:ua(Jt||{})),rt(Rt,f(f({},Dt),{},{mask:Jt}))})};var rt},hooks:function(){return{mutationObserverCallbacks:function(Dt){return Dt.treeCallback=gt,Dt.nodeCallback=Qt,Dt}}},provides:function(Et){Et.i2svg=function(Dt){var Rt=Dt.node,Ci=Dt.callback;return gt(void 0===Rt?c:Rt,void 0===Ci?function(){}:Ci)},Et.generateSvgReplacementMutation=function(Dt,Rt){var Jt=Rt.iconName,Ci=Rt.title,ti=Rt.titleId,pi=Rt.prefix,Li=Rt.transform,Ki=Rt.symbol,Ji=Rt.mask,on=Rt.maskId,bn=Rt.extra;return new Promise(function(er,kn){Promise.all([Ta(Jt,pi),Ji.iconName?Ta(Ji.iconName,Ji.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(la){var Da=D(la,2);er([Dt,jr({icons:{main:Da[0],mask:Da[1]},prefix:pi,iconName:Jt,transform:Li,symbol:Ki,maskId:on,title:Ci,titleId:ti,extra:bn,watchable:!0})])}).catch(kn)})},Et.generateAbstractIcon=function(Dt){var Ki,Rt=Dt.children,Jt=Dt.attributes,Ci=Dt.main,ti=Dt.transform,Li=mt(Dt.styles);return Li.length>0&&(Jt.style=Li),Ht(ti)&&(Ki=Vr("generateAbstractTransformGrouping",{main:Ci,transform:ti,containerWidth:Ci.width,iconWidth:Ci.width})),Rt.push(Ki||Ci.icon),{children:Rt,attributes:Jt}}}},We={mixout:function(){return{layer:function(Dt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Jt=Rt.classes,Ci=void 0===Jt?[]:Jt;return ha({type:"layer"},function(){Fr("beforeDOMElementCreation",{assembler:Dt,params:Rt});var ti=[];return Dt(function(pi){Array.isArray(pi)?pi.map(function(Li){ti=ti.concat(Li.abstract)}):ti=ti.concat(pi.abstract)}),[{tag:"span",attributes:{class:["".concat(xt.familyPrefix,"-layers")].concat(L(Ci)).join(" ")},children:ti}]})}}}},He={mixout:function(){return{counter:function(Dt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Jt=Rt.title,Ci=void 0===Jt?null:Jt,ti=Rt.classes,pi=void 0===ti?[]:ti,Li=Rt.attributes,Ki=void 0===Li?{}:Li,Ji=Rt.styles,on=void 0===Ji?{}:Ji;return ha({type:"counter",content:Dt},function(){return Fr("beforeDOMElementCreation",{content:Dt,params:Rt}),hn({content:Dt.toString(),title:Ci,extra:{attributes:Ki,styles:on,classes:["".concat(xt.familyPrefix,"-layers-counter")].concat(L(pi))}})})}}}},Lt={mixout:function(){return{text:function(Dt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Jt=Rt.transform,Ci=void 0===Jt?yt:Jt,ti=Rt.title,pi=void 0===ti?null:ti,Li=Rt.classes,Ki=void 0===Li?[]:Li,Ji=Rt.attributes,on=void 0===Ji?{}:Ji,bn=Rt.styles,er=void 0===bn?{}:bn;return ha({type:"text",content:Dt},function(){return Fr("beforeDOMElementCreation",{content:Dt,params:Rt}),mr({content:Dt,transform:f(f({},yt),Ci),title:pi,extra:{attributes:on,styles:er,classes:["".concat(xt.familyPrefix,"-layers-text")].concat(L(Ki))}})})}}},provides:function(Et){Et.generateLayersText=function(Dt,Rt){var Jt=Rt.title,Ci=Rt.transform,ti=Rt.extra,pi=null,Li=null;if(n){var Ki=parseInt(getComputedStyle(Dt).fontSize,10),Ji=Dt.getBoundingClientRect();pi=Ji.width/Ki,Li=Ji.height/Ki}return xt.autoA11y&&!Jt&&(ti.attributes["aria-hidden"]="true"),Promise.resolve([Dt,mr({content:Dt.innerHTML,width:pi,height:Li,transform:Ci,title:Jt,extra:ti,watchable:!0})])}}},yi=new RegExp('"',"ug"),Yi=[1105920,1112319];function Rr(rt,Et){var Dt="".concat("data-fa-pseudo-element-pending").concat(Et.replace(":","-"));return new Promise(function(Rt,Jt){if(null!==rt.getAttribute(Dt))return Rt();var ti=Oe(rt.children).filter(function(qa){return qa.getAttribute(he)===Et})[0],pi=u.getComputedStyle(rt,Et),Li=pi.getPropertyValue("font-family").match(xe),Ki=pi.getPropertyValue("font-weight"),Ji=pi.getPropertyValue("content");if(ti&&!Li)return rt.removeChild(ti),Rt();if(Li&&"none"!==Ji&&""!==Ji){var on=pi.getPropertyValue("content"),bn=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(Li[2])?dt[Li[2].toLowerCase()]:W[Ki],er=function Fn(rt){var Et=rt.replace(yi,""),Dt=function ze(rt,Et){var Jt,Dt=rt.length,Rt=rt.charCodeAt(Et);return Rt>=55296&&Rt<=56319&&Dt>Et+1&&(Jt=rt.charCodeAt(Et+1))>=56320&&Jt<=57343?1024*(Rt-55296)+Jt-56320+65536:Rt}(Et,0),Rt=Dt>=Yi[0]&&Dt<=Yi[1],Jt=2===Et.length&&Et[0]===Et[1];return{value:Ui(Jt?Et[0]:Et),isSecondary:Rt||Jt}}(on),kn=er.value,la=er.isSecondary,Da=Li[0].startsWith("FontAwesome"),ar=nt(bn,kn),Sr=ar;if(Da){var vr=function Ni(rt){var Et=Xi[rt],Dt=nt("fas",rt);return Et||(Dt?{prefix:"fas",iconName:Dt}:null)||{prefix:null,iconName:null}}(kn);vr.iconName&&vr.prefix&&(ar=vr.iconName,bn=vr.prefix)}if(!ar||la||ti&&ti.getAttribute(Ne)===bn&&ti.getAttribute(we)===Sr)Rt();else{rt.setAttribute(Dt,Sr),ti&&rt.removeChild(ti);var Hr=function rn(){return{iconName:null,title:null,titleId:null,prefix:null,transform:yt,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),Jr=Hr.extra;Jr.attributes[he]=Et,Ta(ar,bn).then(function(qa){var fs=jr(f(f({},Hr),{},{icons:{main:qa,mask:{prefix:null,iconName:null,rest:[]}},prefix:bn,iconName:Sr,extra:Jr,watchable:!0})),ps=c.createElement("svg");"::before"===Et?rt.insertBefore(ps,rt.firstChild):rt.appendChild(ps),ps.outerHTML=fs.map(function(bs){return fi(bs)}).join("\n"),rt.removeAttribute(Dt),Rt()}).catch(Jt)}}else Rt()})}function Qa(rt){return Promise.all([Rr(rt,"::before"),Rr(rt,"::after")])}function Ma(rt){return!(rt.parentNode===document.head||~ve.indexOf(rt.tagName.toUpperCase())||rt.getAttribute(he)||rt.parentNode&&"svg"===rt.parentNode.tagName)}function hs(rt){if(v)return new Promise(function(Et,Dt){var Rt=Oe(rt.querySelectorAll("*")).filter(Ma).map(Qa),Jt=Nr_begin("searchPseudoElements");Qn(),Promise.all(Rt).then(function(){Jt(),Je(),Et()}).catch(function(){Jt(),Je(),Dt()})})}var Gn=!1,br=function(Et){return Et.toLowerCase().split(" ").reduce(function(Rt,Jt){var Ci=Jt.toLowerCase().split("-"),ti=Ci[0],pi=Ci.slice(1).join("-");if(ti&&"h"===pi)return Rt.flipX=!0,Rt;if(ti&&"v"===pi)return Rt.flipY=!0,Rt;if(pi=parseFloat(pi),isNaN(pi))return Rt;switch(ti){case"grow":Rt.size=Rt.size+pi;break;case"shrink":Rt.size=Rt.size-pi;break;case"left":Rt.x=Rt.x-pi;break;case"right":Rt.x=Rt.x+pi;break;case"up":Rt.y=Rt.y-pi;break;case"down":Rt.y=Rt.y+pi;break;case"rotate":Rt.rotate=Rt.rotate+pi}return Rt},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},ts={x:0,y:0,width:"100%",height:"100%"};function pa(rt){var Et=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return rt.attributes&&(rt.attributes.fill||Et)&&(rt.attributes.fill="black"),rt}!function jn(rt,Et){var Dt=Et.mixoutsTo;_n=rt,Si={},Object.keys(Wi).forEach(function(Rt){-1===Sn.indexOf(Rt)&&delete Wi[Rt]}),_n.forEach(function(Rt){var Jt=Rt.mixout?Rt.mixout():{};if(Object.keys(Jt).forEach(function(ti){"function"==typeof Jt[ti]&&(Dt[ti]=Jt[ti]),"object"===M(Jt[ti])&&Object.keys(Jt[ti]).forEach(function(pi){Dt[ti]||(Dt[ti]={}),Dt[ti][pi]=Jt[ti][pi]})}),Rt.hooks){var Ci=Rt.hooks();Object.keys(Ci).forEach(function(ti){Si[ti]||(Si[ti]=[]),Si[ti].push(Ci[ti])})}Rt.provides&&Rt.provides(Wi)})}([at,Ke,We,He,Lt,{hooks:function(){return{mutationObserverCallbacks:function(Dt){return Dt.pseudoElementsCallback=hs,Dt}}},provides:function(Et){Et.pseudoElements2svg=function(Dt){var Rt=Dt.node;xt.searchPseudoElements&&hs(void 0===Rt?c:Rt)}}},{mixout:function(){return{dom:{unwatch:function(){Qn(),Gn=!0}}}},hooks:function(){return{bootstrap:function(){Qe(dr("mutationObserverCallbacks",{}))},noAuto:function(){!function kt(){!St||St.disconnect()}()},watch:function(Dt){var Rt=Dt.observeMutationsRoot;Gn?Je():Qe(dr("mutationObserverCallbacks",{observeMutationsRoot:Rt}))}}}},{mixout:function(){return{parse:{transform:function(Dt){return br(Dt)}}}},hooks:function(){return{parseNodeAttributes:function(Dt,Rt){var Jt=Rt.getAttribute("data-fa-transform");return Jt&&(Dt.transform=br(Jt)),Dt}}},provides:function(Et){Et.generateAbstractTransformGrouping=function(Dt){var Rt=Dt.main,Jt=Dt.transform,ti=Dt.iconWidth,pi={transform:"translate(".concat(Dt.containerWidth/2," 256)")},Li="translate(".concat(32*Jt.x,", ").concat(32*Jt.y,") "),Ki="scale(".concat(Jt.size/16*(Jt.flipX?-1:1),", ").concat(Jt.size/16*(Jt.flipY?-1:1),") "),Ji="rotate(".concat(Jt.rotate," 0 0)"),er={outer:pi,inner:{transform:"".concat(Li," ").concat(Ki," ").concat(Ji)},path:{transform:"translate(".concat(ti/2*-1," -256)")}};return{tag:"g",attributes:f({},er.outer),children:[{tag:"g",attributes:f({},er.inner),children:[{tag:Rt.icon.tag,children:Rt.icon.children,attributes:f(f({},Rt.icon.attributes),er.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(Dt,Rt){var Jt=Rt.getAttribute("data-fa-mask"),Ci=Jt?Dn(Jt.split(" ").map(function(ti){return ti.trim()})):{prefix:null,iconName:null,rest:[]};return Ci.prefix||(Ci.prefix=ki()),Dt.mask=Ci,Dt.maskId=Rt.getAttribute("data-fa-mask-id"),Dt}}},provides:function(Et){Et.generateAbstractMask=function(Dt){var rt,Rt=Dt.children,Jt=Dt.attributes,Ci=Dt.main,ti=Dt.mask,pi=Dt.maskId,Ji=Ci.icon,bn=ti.icon,er=function it(rt){var Et=rt.transform,Rt=rt.iconWidth,Jt={transform:"translate(".concat(rt.containerWidth/2," 256)")},Ci="translate(".concat(32*Et.x,", ").concat(32*Et.y,") "),ti="scale(".concat(Et.size/16*(Et.flipX?-1:1),", ").concat(Et.size/16*(Et.flipY?-1:1),") "),pi="rotate(".concat(Et.rotate," 0 0)");return{outer:Jt,inner:{transform:"".concat(Ci," ").concat(ti," ").concat(pi)},path:{transform:"translate(".concat(Rt/2*-1," -256)")}}}({transform:Dt.transform,containerWidth:ti.width,iconWidth:Ci.width}),kn={tag:"rect",attributes:f(f({},ts),{},{fill:"white"})},la=Ji.children?{children:Ji.children.map(pa)}:{},Da={tag:"g",attributes:f({},er.inner),children:[pa(f({tag:Ji.tag,attributes:f(f({},Ji.attributes),er.path)},la))]},ar={tag:"g",attributes:f({},er.outer),children:[Da]},Sr="mask-".concat(pi||Pe()),vr="clip-".concat(pi||Pe()),Hr={tag:"mask",attributes:f(f({},ts),{},{id:Sr,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[kn,ar]},Jr={tag:"defs",children:[{tag:"clipPath",attributes:{id:vr},children:(rt=bn,"g"===rt.tag?rt.children:[rt])},Hr]};return Rt.push(Jr,{tag:"rect",attributes:f({fill:"currentColor","clip-path":"url(#".concat(vr,")"),mask:"url(#".concat(Sr,")")},ts)}),{children:Rt,attributes:Jt}}}},{provides:function(Et){var Dt=!1;u.matchMedia&&(Dt=u.matchMedia("(prefers-reduced-motion: reduce)").matches),Et.missingIconAbstract=function(){var Rt=[],Jt={fill:"currentColor"},Ci={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Rt.push({tag:"path",attributes:f(f({},Jt),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var ti=f(f({},Ci),{},{attributeName:"opacity"}),pi={tag:"circle",attributes:f(f({},Jt),{},{cx:"256",cy:"364",r:"28"}),children:[]};return Dt||pi.children.push({tag:"animate",attributes:f(f({},Ci),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:f(f({},ti),{},{values:"1;0;1;1;0;1;"})}),Rt.push(pi),Rt.push({tag:"path",attributes:f(f({},Jt),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:Dt?[]:[{tag:"animate",attributes:f(f({},ti),{},{values:"1;0;0;0;0;1;"})}]}),Dt||Rt.push({tag:"path",attributes:f(f({},Jt),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:f(f({},ti),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:Rt}}}},{hooks:function(){return{parseNodeAttributes:function(Dt,Rt){var Jt=Rt.getAttribute("data-fa-symbol");return Dt.symbol=null!==Jt&&(""===Jt||Jt),Dt}}}}],{mixoutsTo:cr});var ae=cr.parse,wt=cr.icon,_i=p(2313);const Pi=["*"],Ln=rt=>{const Et={"fa-spin":rt.spin,"fa-pulse":rt.pulse,"fa-fw":rt.fixedWidth,"fa-border":rt.border,"fa-inverse":rt.inverse,"fa-layers-counter":rt.counter,"fa-flip-horizontal":"horizontal"===rt.flip||"both"===rt.flip,"fa-flip-vertical":"vertical"===rt.flip||"both"===rt.flip,[`fa-${rt.size}`]:null!==rt.size,[`fa-rotate-${rt.rotate}`]:null!==rt.rotate,[`fa-pull-${rt.pull}`]:null!==rt.pull,[`fa-stack-${rt.stackItemSize}`]:null!=rt.stackItemSize};return Object.keys(Et).map(Dt=>Et[Dt]?Dt:null).filter(Dt=>Dt)};let Tn=(()=>{class rt{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null}}return rt.\u0275fac=function(Dt){return new(Dt||rt)},rt.\u0275prov=t.Yz7({token:rt,factory:rt.\u0275fac,providedIn:"root"}),rt})(),tr=(()=>{class rt{constructor(){this.definitions={}}addIcons(...Dt){for(const Rt of Dt){Rt.prefix in this.definitions||(this.definitions[Rt.prefix]={}),this.definitions[Rt.prefix][Rt.iconName]=Rt;for(const Jt of Rt.icon[2])"string"==typeof Jt&&(this.definitions[Rt.prefix][Jt]=Rt)}}addIconPacks(...Dt){for(const Rt of Dt){const Jt=Object.keys(Rt).map(Ci=>Rt[Ci]);this.addIcons(...Jt)}}getIconDefinition(Dt,Rt){return Dt in this.definitions&&Rt in this.definitions[Dt]?this.definitions[Dt][Rt]:null}}return rt.\u0275fac=function(Dt){return new(Dt||rt)},rt.\u0275prov=t.Yz7({token:rt,factory:rt.\u0275fac,providedIn:"root"}),rt})(),Lr=(()=>{class rt{constructor(){this.stackItemSize="1x"}ngOnChanges(Dt){if("size"in Dt)throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')}}return rt.\u0275fac=function(Dt){return new(Dt||rt)},rt.\u0275dir=t.lG2({type:rt,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},features:[t.TTD]}),rt})(),gr=(()=>{class rt{constructor(Dt,Rt){this.renderer=Dt,this.elementRef=Rt}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(Dt){"size"in Dt&&(null!=Dt.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${Dt.size.currentValue}`),null!=Dt.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${Dt.size.previousValue}`))}}return rt.\u0275fac=function(Dt){return new(Dt||rt)(t.Y36(t.Qsj),t.Y36(t.SBq))},rt.\u0275cmp=t.Xpm({type:rt,selectors:[["fa-stack"]],inputs:{size:"size"},features:[t.TTD],ngContentSelectors:Pi,decls:1,vars:0,template:function(Dt,Rt){1&Dt&&(t.F$t(),t.Hsn(0))},encapsulation:2}),rt})(),ia=(()=>{class rt{constructor(Dt,Rt,Jt,Ci,ti){this.sanitizer=Dt,this.config=Rt,this.iconLibrary=Jt,this.stackItem=Ci,this.classes=[],null!=ti&&null==Ci&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(Dt){if(null==this.icon&&null==this.config.fallbackIcon)return(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})();let Rt=null;if(Rt=null==this.icon?this.config.fallbackIcon:this.icon,Dt){const Jt=this.findIconDefinition(Rt);if(null!=Jt){const Ci=this.buildParams();this.renderIcon(Jt,Ci)}}}render(){this.ngOnChanges({})}findIconDefinition(Dt){const Rt=((rt,Et)=>(rt=>void 0!==rt.prefix&&void 0!==rt.iconName)(rt)?rt:Array.isArray(rt)&&2===rt.length?{prefix:rt[0],iconName:rt[1]}:"string"==typeof rt?{prefix:Et,iconName:rt}:void 0)(Dt,this.config.defaultPrefix);if("icon"in Rt)return Rt;const Jt=this.iconLibrary.getIconDefinition(Rt.prefix,Rt.iconName);return null!=Jt?Jt:((rt=>{throw new Error(`Could not find icon with iconName=${rt.iconName} and prefix=${rt.prefix} in the icon library.`)})(Rt),null)}buildParams(){const Dt={flip:this.flip,spin:this.spin,pulse:this.pulse,border:this.border,inverse:this.inverse,size:this.size||null,pull:this.pull||null,rotate:this.rotate||null,fixedWidth:"boolean"==typeof this.fixedWidth?this.fixedWidth:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize:null},Rt="string"==typeof this.transform?ae.transform(this.transform):this.transform;return{title:this.title,transform:Rt,classes:[...Ln(Dt),...this.classes],mask:null!=this.mask?this.findIconDefinition(this.mask):null,styles:null!=this.styles?this.styles:{},symbol:this.symbol,attributes:{role:this.a11yRole}}}renderIcon(Dt,Rt){const Jt=wt(Dt,Rt);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(Jt.html.join("\n"))}}return rt.\u0275fac=function(Dt){return new(Dt||rt)(t.Y36(_i.H7),t.Y36(Tn),t.Y36(tr),t.Y36(Lr,8),t.Y36(gr,8))},rt.\u0275cmp=t.Xpm({type:rt,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(Dt,Rt){2&Dt&&(t.Ikx("innerHTML",Rt.renderedIconHTML,t.oJD),t.uIk("title",Rt.title))},inputs:{icon:"icon",title:"title",spin:"spin",pulse:"pulse",mask:"mask",styles:"styles",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",classes:"classes",transform:"transform",a11yRole:"a11yRole"},features:[t.TTD],decls:0,vars:0,template:function(Dt,Rt){},encapsulation:2}),rt})(),Za=(()=>{class rt{}return rt.\u0275fac=function(Dt){return new(Dt||rt)},rt.\u0275mod=t.oAB({type:rt}),rt.\u0275inj=t.cJS({}),rt})()},6642:(Ve,j,p)=>{"use strict";p.d(j,{eX:()=>he,sQ:()=>Nt,GW:()=>i,l4:()=>_e});var t=p(5620),e=p(6451),f=p(8306),M=p(7579),a=p(515),b=p(9646),d=p(2843),N=p(576);class A{constructor(Oe,ce,be){this.kind=Oe,this.value=ce,this.error=be,this.hasValue="N"===Oe}observe(Oe){return w(this,Oe)}do(Oe,ce,be){const{kind:pt,value:mt,error:Ht}=this;return"N"===pt?null==Oe?void 0:Oe(mt):"E"===pt?null==ce?void 0:ce(Ht):null==be?void 0:be()}accept(Oe,ce,be){var pt;return(0,N.m)(null===(pt=Oe)||void 0===pt?void 0:pt.next)?this.observe(Oe):this.do(Oe,ce,be)}toObservable(){const{kind:Oe,value:ce,error:be}=this,pt="N"===Oe?(0,b.of)(ce):"E"===Oe?(0,d._)(()=>be):"C"===Oe?a.E:0;if(!pt)throw new TypeError(`Unexpected notification kind ${Oe}`);return pt}static createNext(Oe){return new A("N",Oe)}static createError(Oe){return new A("E",void 0,Oe)}static createComplete(){return A.completeNotification}}function w(Pe,Oe){var ce,be,pt;const{kind:mt,value:Ht,error:it}=Pe;if("string"!=typeof mt)throw new TypeError('Invalid notification, missing "kind"');"N"===mt?null===(ce=Oe.next)||void 0===ce||ce.call(Oe,Ht):"E"===mt?null===(be=Oe.error)||void 0===be||be.call(Oe,it):null===(pt=Oe.complete)||void 0===pt||pt.call(Oe)}A.completeNotification=new A("C");var D=p(4482),L=p(5403),S=p(8421);function U(Pe,Oe,ce,be){return(0,D.e)((pt,mt)=>{let Ht;Oe&&"function"!=typeof Oe?({duration:ce,element:Ht,connector:be}=Oe):Ht=Oe;const it=new Map,Re=st=>{it.forEach(st),st(mt)},tt=st=>Re(bt=>bt.error(st));let Xe=0,Se=!1;const Ge=new L.Q(mt,st=>{try{const bt=Pe(st);let gi=it.get(bt);if(!gi){it.set(bt,gi=be?be():new M.x);const qt=function at(st,bt){const gi=new f.y(qt=>{Xe++;const Xt=bt.subscribe(qt);return()=>{Xt.unsubscribe(),0==--Xe&&Se&&Ge.unsubscribe()}});return gi.key=st,gi}(bt,gi);if(mt.next(qt),ce){const Xt=(0,L.x)(gi,()=>{gi.complete(),null==Xt||Xt.unsubscribe()},void 0,void 0,()=>it.delete(bt));Ge.add((0,S.Xf)(ce(qt)).subscribe(Xt))}}gi.next(Ht?Ht(st):st)}catch(bt){tt(bt)}},()=>Re(st=>st.complete()),tt,()=>it.clear(),()=>(Se=!0,0===Xe));pt.subscribe(Ge)})}var Z=p(4004);function Y(Pe,Oe){return Oe?ce=>ce.pipe(Y((be,pt)=>(0,S.Xf)(Pe(be,pt)).pipe((0,Z.U)((mt,Ht)=>Oe(be,mt,pt,Ht))))):(0,D.e)((ce,be)=>{let pt=0,mt=null,Ht=!1;ce.subscribe((0,L.x)(be,it=>{mt||(mt=(0,L.x)(be,void 0,()=>{mt=null,Ht&&be.complete()}),(0,S.Xf)(Pe(it,pt++)).subscribe(mt))},()=>{Ht=!0,!mt&&be.complete()}))})}var $=p(8502),de=p(262),te=p(9300),ie=p(5577),oe=p(5698),X=p(5e3);const me={dispatch:!0,useEffectsErrorHandler:!0},y="__@ngrx/effects_create__";function i(Pe,Oe){const ce=Pe(),be=Object.assign(Object.assign({},me),Oe);return Object.defineProperty(ce,y,{value:be}),ce}function r(Pe){return Object.getOwnPropertyNames(Pe).filter(be=>!(!Pe[be]||!Pe[be].hasOwnProperty(y))&&Pe[be][y].hasOwnProperty("dispatch")).map(be=>Object.assign({propertyName:be},Pe[be][y]))}function u(Pe){return Object.getPrototypeOf(Pe)}const c="__@ngrx/effects__";function E(Pe){return(0,t.qC)(n,u)(Pe)}function n(Pe){return function I(Pe){return Pe.constructor.hasOwnProperty(c)}(Pe)?Pe.constructor[c]:[]}function P(Pe,Oe,ce){const be=u(Pe).constructor.name,pt=function B(Pe){return[E,r].reduce((ce,be)=>ce.concat(be(Pe)),[])}(Pe).map(({propertyName:mt,dispatch:Ht,useEffectsErrorHandler:it})=>{const Re="function"==typeof Pe[mt]?Pe[mt]():Pe[mt],tt=it?ce(Re,Oe):Re;return!1===Ht?tt.pipe((0,$.l)()):tt.pipe(function k(){return(0,D.e)((Pe,Oe)=>{Pe.subscribe((0,L.x)(Oe,ce=>{Oe.next(A.createNext(ce))},()=>{Oe.next(A.createComplete()),Oe.complete()},ce=>{Oe.next(A.createError(ce)),Oe.complete()}))})}()).pipe((0,Z.U)(Se=>({effect:Pe[mt],notification:Se,propertyName:mt,sourceName:be,sourceInstance:Pe})))});return(0,e.T)(...pt)}function q(Pe,Oe,ce=10){return Pe.pipe((0,de.K)(be=>(Oe&&Oe.handleError(be),ce<=1?Pe:q(Pe,Oe,ce-1))))}let he=(()=>{class Pe extends f.y{constructor(ce){super(),ce&&(this.source=ce)}lift(ce){const be=new Pe;return be.source=this,be.operator=ce,be}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(X.LFG(t.Y$))},Pe.\u0275prov=X.Yz7({token:Pe,factory:Pe.\u0275fac}),Pe})();function _e(...Pe){return(0,te.h)(Oe=>Pe.some(ce=>"string"==typeof ce?ce===Oe.type:ce.type===Oe.type))}function Ae(Pe){return le(Pe,"ngrxOnInitEffects")}function le(Pe,Oe){return Pe&&Oe in Pe&&"function"==typeof Pe[Oe]}const Te=new X.OlP("@ngrx/effects Internal Root Guard"),xe=new X.OlP("@ngrx/effects User Provided Effects"),W=new X.OlP("@ngrx/effects Internal Root Effects"),ee=new X.OlP("@ngrx/effects Root Effects"),ue=new X.OlP("@ngrx/effects Internal Feature Effects"),Ce=new X.OlP("@ngrx/effects Feature Effects"),Le=new X.OlP("@ngrx/effects Effects Error Handler");let ut=(()=>{class Pe extends M.x{constructor(ce,be){super(),this.errorHandler=ce,this.effectsErrorHandler=be}addEffects(ce){this.next(ce)}toActions(){return this.pipe(U(u),(0,ie.z)(ce=>ce.pipe(U(ht))),(0,ie.z)(ce=>{const be=ce.pipe(Y(mt=>function It(Pe,Oe){return ce=>{const be=P(ce,Pe,Oe);return function dt(Pe){return le(Pe,"ngrxOnRunEffects")}(ce)?ce.ngrxOnRunEffects(be):be}}(this.errorHandler,this.effectsErrorHandler)(mt)),(0,Z.U)(mt=>(function Ne(Pe,Oe){if("N"===Pe.notification.kind){const ce=Pe.notification.value;!function we(Pe){return"function"!=typeof Pe&&Pe&&Pe.type&&"string"==typeof Pe.type}(ce)&&Oe.handleError(new Error(`Effect ${function Q({propertyName:Pe,sourceInstance:Oe,sourceName:ce}){const be="function"==typeof Oe[Pe];return`"${ce}.${String(Pe)}${be?"()":""}"`}(Pe)} dispatched an invalid action: ${function Ue(Pe){try{return JSON.stringify(Pe)}catch(Oe){return Pe}}(ce)}`))}}(mt,this.errorHandler),mt.notification)),(0,te.h)(mt=>"N"===mt.kind&&null!=mt.value),function ne(){return(0,D.e)((Pe,Oe)=>{Pe.subscribe((0,L.x)(Oe,ce=>w(ce,Oe)))})}()),pt=ce.pipe((0,oe.q)(1),(0,te.h)(Ae),(0,Z.U)(mt=>mt.ngrxOnInitEffects()));return(0,e.T)(be,pt)}))}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(X.LFG(X.qLn),X.LFG(Le))},Pe.\u0275prov=X.Yz7({token:Pe,factory:Pe.\u0275fac}),Pe})();function ht(Pe){return function V(Pe){return le(Pe,"ngrxOnIdentifyEffects")}(Pe)?Pe.ngrxOnIdentifyEffects():""}let ui=(()=>{class Pe{constructor(ce,be){this.effectSources=ce,this.store=be,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(X.LFG(ut),X.LFG(t.yh))},Pe.\u0275prov=X.Yz7({token:Pe,factory:Pe.\u0275fac}),Pe})();const Wt="@ngrx/effects/init";(0,t.PH)(Wt);let hi=(()=>{class Pe{constructor(ce,be,pt,mt,Ht,it,Re){this.sources=ce,be.start(),mt.forEach(tt=>ce.addEffects(tt)),pt.dispatch({type:Wt})}addEffects(ce){this.sources.addEffects(ce)}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(X.LFG(ut),X.LFG(ui),X.LFG(t.yh),X.LFG(ee),X.LFG(t.cr,8),X.LFG(t.CK,8),X.LFG(Te,8))},Pe.\u0275mod=X.oAB({type:Pe}),Pe.\u0275inj=X.cJS({}),Pe})(),xt=(()=>{class Pe{constructor(ce,be,pt,mt){be.forEach(Ht=>Ht.forEach(it=>ce.addEffects(it)))}}return Pe.\u0275fac=function(ce){return new(ce||Pe)(X.LFG(hi),X.LFG(Ce),X.LFG(t.cr,8),X.LFG(t.CK,8))},Pe.\u0275mod=X.oAB({type:Pe}),Pe.\u0275inj=X.cJS({}),Pe})(),Nt=(()=>{class Pe{static forFeature(ce=[]){return{ngModule:xt,providers:[ce,{provide:ue,multi:!0,useValue:ce},{provide:xe,multi:!0,useValue:[]},{provide:Ce,multi:!0,useFactory:Ct,deps:[X.zs3,ue,xe]}]}}static forRoot(ce=[]){return{ngModule:hi,providers:[{provide:Le,useValue:q},ui,ut,he,ce,{provide:W,useValue:[ce]},{provide:Te,useFactory:yt,deps:[[ui,new X.FiY,new X.tp0],[W,new X.PiD]]},{provide:xe,multi:!0,useValue:[]},{provide:ee,useFactory:Ct,deps:[X.zs3,W,xe]}]}}}return Pe.\u0275fac=function(ce){return new(ce||Pe)},Pe.\u0275mod=X.oAB({type:Pe}),Pe.\u0275inj=X.cJS({}),Pe})();function Ct(Pe,Oe,ce){const be=[];for(const pt of Oe)be.push(...pt);for(const pt of ce)be.push(...pt);return function et(Pe,Oe){return Oe.map(ce=>Pe.get(ce))}(Pe,be)}function yt(Pe,Oe){if((1!==Oe.length||0!==Oe[0].length)&&Pe)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9565:(__unused_webpack___webpack_module__,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{FT:()=>StoreDevtoolsModule});var _angular_core__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(5e3),_ngrx_store__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(5620),rxjs__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(515),rxjs__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(8306),rxjs__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(9646),rxjs__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(6451),rxjs__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(233),rxjs__WEBPACK_IMPORTED_MODULE_19__=__webpack_require__(4707),rxjs_operators__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(3099),rxjs_operators__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(9300),rxjs_operators__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(4004),rxjs_operators__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(4351),rxjs_operators__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(7414),rxjs_operators__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(8372),rxjs_operators__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(262),rxjs_operators__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(5698),rxjs_operators__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(2722),rxjs_operators__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(3900),rxjs_operators__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(5684),rxjs_operators__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(5363),rxjs_operators__WEBPACK_IMPORTED_MODULE_20__=__webpack_require__(1365),rxjs_operators__WEBPACK_IMPORTED_MODULE_21__=__webpack_require__(5026);class StoreDevtoolsConfig{constructor(){this.maxAge=!1}}const STORE_DEVTOOLS_CONFIG=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Options"),INITIAL_OPTIONS=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Initial Config");function noMonitor(){return null}const DEFAULT_NAME="NgRx Store DevTools";function createConfig(Ve){const j={maxAge:!1,monitor:noMonitor,actionSanitizer:void 0,stateSanitizer:void 0,name:DEFAULT_NAME,serialize:!1,logOnly:!1,autoPause:!1,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0}},p="function"==typeof Ve?Ve():Ve,f=Object.assign({},j,{features:p.features||!!p.logOnly&&{pause:!0,export:!0,test:!0}||j.features},p);if(f.maxAge&&f.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${f.maxAge}`);return f}const PERFORM_ACTION="PERFORM_ACTION",REFRESH="REFRESH",RESET="RESET",ROLLBACK="ROLLBACK",COMMIT="COMMIT",SWEEP="SWEEP",TOGGLE_ACTION="TOGGLE_ACTION",SET_ACTIONS_ACTIVE="SET_ACTIONS_ACTIVE",JUMP_TO_STATE="JUMP_TO_STATE",JUMP_TO_ACTION="JUMP_TO_ACTION",IMPORT_STATE="IMPORT_STATE",LOCK_CHANGES="LOCK_CHANGES",PAUSE_RECORDING="PAUSE_RECORDING";class PerformAction{constructor(j,p){if(this.action=j,this.timestamp=p,this.type=PERFORM_ACTION,void 0===j.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class Refresh{constructor(){this.type=REFRESH}}class Reset{constructor(j){this.timestamp=j,this.type=RESET}}class Rollback{constructor(j){this.timestamp=j,this.type=ROLLBACK}}class Commit{constructor(j){this.timestamp=j,this.type=COMMIT}}class Sweep{constructor(){this.type=SWEEP}}class ToggleAction{constructor(j){this.id=j,this.type=TOGGLE_ACTION}}class SetActionsActive{constructor(j,p,t=!0){this.start=j,this.end=p,this.active=t,this.type=SET_ACTIONS_ACTIVE}}class JumpToState{constructor(j){this.index=j,this.type=JUMP_TO_STATE}}class JumpToAction{constructor(j){this.actionId=j,this.type=JUMP_TO_ACTION}}class ImportState{constructor(j){this.nextLiftedState=j,this.type=IMPORT_STATE}}class LockChanges{constructor(j){this.status=j,this.type=LOCK_CHANGES}}class PauseRecording{constructor(j){this.status=j,this.type=PAUSE_RECORDING}}function difference(Ve,j){return Ve.filter(p=>j.indexOf(p)<0)}function unliftState(Ve){const{computedStates:j,currentStateIndex:p}=Ve;if(p>=j.length){const{state:e}=j[j.length-1];return e}const{state:t}=j[p];return t}function unliftAction(Ve){return Ve.actionsById[Ve.nextActionId-1]}function liftAction(Ve){return new PerformAction(Ve,+Date.now())}function sanitizeActions(Ve,j){return Object.keys(j).reduce((p,t)=>{const e=Number(t);return p[e]=sanitizeAction(Ve,j[e],e),p},{})}function sanitizeAction(Ve,j,p){return Object.assign(Object.assign({},j),{action:Ve(j.action,p)})}function sanitizeStates(Ve,j){return j.map((p,t)=>({state:sanitizeState(Ve,p.state,t),error:p.error}))}function sanitizeState(Ve,j,p){return Ve(j,p)}function shouldFilterActions(Ve){return Ve.predicate||Ve.actionsSafelist||Ve.actionsBlocklist}function filterLiftedState(Ve,j,p,t){const e=[],f={},M=[];return Ve.stagedActionIds.forEach((a,b)=>{const d=Ve.actionsById[a];!d||b&&isActionFiltered(Ve.computedStates[b],d,j,p,t)||(f[a]=d,e.push(a),M.push(Ve.computedStates[b]))}),Object.assign(Object.assign({},Ve),{stagedActionIds:e,actionsById:f,computedStates:M})}function isActionFiltered(Ve,j,p,t,e){const f=p&&!p(Ve,j.action),M=t&&!j.action.type.match(t.map(b=>escapeRegExp(b)).join("|")),a=e&&j.action.type.match(e.map(b=>escapeRegExp(b)).join("|"));return f||M||a}function escapeRegExp(Ve){return Ve.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}const INIT_ACTION={type:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.qg},RECOMPUTE="@ngrx/store-devtools/recompute",RECOMPUTE_ACTION={type:RECOMPUTE};function computeNextEntry(Ve,j,p,t,e){if(t)return{state:p,error:"Interrupted by an error up the chain"};let M,f=p;try{f=Ve(p,j)}catch(a){M=a.toString(),e.handleError(a)}return{state:f,error:M}}function recomputeStates(Ve,j,p,t,e,f,M,a,b){if(j>=Ve.length&&Ve.length===f.length)return Ve;const d=Ve.slice(0,j),N=f.length-(b?1:0);for(let h=j;h-1?D:computeNextEntry(p,w,L,k,a);d.push(U)}return b&&d.push(Ve[Ve.length-1]),d}function liftInitialState(Ve,j){return{monitorState:j(void 0,{}),nextActionId:1,actionsById:{0:liftAction(INIT_ACTION)},stagedActionIds:[0],skippedActionIds:[],committedState:Ve,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}function liftReducerWith(Ve,j,p,t,e={}){return f=>(M,a)=>{let{monitorState:b,actionsById:d,nextActionId:N,stagedActionIds:h,skippedActionIds:A,committedState:w,currentStateIndex:D,computedStates:L,isLocked:k,isPaused:S}=M||j;function U(ne){let $=ne,de=h.slice(1,$+1);for(let te=0;te-1===de.indexOf(te)),h=[0,...h.slice($+1)],w=L[$].state,L=L.slice($),D=D>$?D-$:0}function Z(){d={0:liftAction(INIT_ACTION)},N=1,h=[0],A=[],w=L[D].state,D=0,L=[]}M||(d=Object.create(d));let Y=0;switch(a.type){case LOCK_CHANGES:k=a.status,Y=1/0;break;case PAUSE_RECORDING:S=a.status,S?(h=[...h,N],d[N]=new PerformAction({type:"@ngrx/devtools/pause"},+Date.now()),N++,Y=h.length-1,L=L.concat(L[L.length-1]),D===h.length-2&&D++,Y=1/0):Z();break;case RESET:d={0:liftAction(INIT_ACTION)},N=1,h=[0],A=[],w=Ve,D=0,L=[];break;case COMMIT:Z();break;case ROLLBACK:d={0:liftAction(INIT_ACTION)},N=1,h=[0],A=[],D=0,L=[];break;case TOGGLE_ACTION:{const{id:ne}=a;A=-1===A.indexOf(ne)?[ne,...A]:A.filter(de=>de!==ne),Y=h.indexOf(ne);break}case SET_ACTIONS_ACTIVE:{const{start:ne,end:$,active:de}=a,te=[];for(let ie=ne;ie<$;ie++)te.push(ie);A=de?difference(A,te):[...A,...te],Y=h.indexOf(ne);break}case JUMP_TO_STATE:D=a.index,Y=1/0;break;case JUMP_TO_ACTION:{const ne=h.indexOf(a.actionId);-1!==ne&&(D=ne),Y=1/0;break}case SWEEP:h=difference(h,A),A=[],D=Math.min(D,h.length-1);break;case PERFORM_ACTION:{if(k)return M||j;if(S||M&&isActionFiltered(M.computedStates[D],a,e.predicate,e.actionsSafelist,e.actionsBlocklist)){const $=L[L.length-1];L=[...L.slice(0,-1),computeNextEntry(f,a.action,$.state,$.error,p)],Y=1/0;break}e.maxAge&&h.length===e.maxAge&&U(1),D===h.length-1&&D++;const ne=N++;d[ne]=a,h=[...h,ne],Y=h.length-1;break}case IMPORT_STATE:({monitorState:b,actionsById:d,nextActionId:N,stagedActionIds:h,skippedActionIds:A,committedState:w,currentStateIndex:D,computedStates:L,isLocked:k,isPaused:S}=a.nextLiftedState);break;case _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.qg:Y=0,e.maxAge&&h.length>e.maxAge&&(L=recomputeStates(L,Y,f,w,d,h,A,p,S),U(h.length-e.maxAge),Y=1/0);break;case _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.wb:if(L.filter($=>$.error).length>0)Y=0,e.maxAge&&h.length>e.maxAge&&(L=recomputeStates(L,Y,f,w,d,h,A,p,S),U(h.length-e.maxAge),Y=1/0);else{if(!S&&!k){D===h.length-1&&D++;const $=N++;d[$]=new PerformAction(a,+Date.now()),h=[...h,$],Y=h.length-1,L=recomputeStates(L,Y,f,w,d,h,A,p,S)}L=L.map($=>Object.assign(Object.assign({},$),{state:f($.state,RECOMPUTE_ACTION)})),D=h.length-1,e.maxAge&&h.length>e.maxAge&&U(h.length-e.maxAge),Y=1/0}break;default:Y=1/0}return L=recomputeStates(L,Y,f,w,d,h,A,p,S),b=t(b,a),{monitorState:b,actionsById:d,nextActionId:N,stagedActionIds:h,skippedActionIds:A,committedState:w,currentStateIndex:D,computedStates:L,isLocked:k,isPaused:S}}}let DevtoolsDispatcher=(()=>{class Ve extends _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.UO{}return Ve.\u0275fac=function(){let j;return function(t){return(j||(j=_angular_core__WEBPACK_IMPORTED_MODULE_0__.n5z(Ve)))(t||Ve)}}(),Ve.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:Ve,factory:Ve.\u0275fac}),Ve})();const ExtensionActionTypes={START:"START",DISPATCH:"DISPATCH",STOP:"STOP",ACTION:"ACTION"},REDUX_DEVTOOLS_EXTENSION=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Redux Devtools Extension");let DevtoolsExtension=(()=>{class DevtoolsExtension{constructor(Ve,j,p){this.config=j,this.dispatcher=p,this.devtoolsExtension=Ve,this.createActionStreams()}notify(Ve,j){if(this.devtoolsExtension)if(Ve.type===PERFORM_ACTION){if(j.isLocked||j.isPaused)return;const p=unliftState(j);if(shouldFilterActions(this.config)&&isActionFiltered(p,Ve,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const t=this.config.stateSanitizer?sanitizeState(this.config.stateSanitizer,p,j.currentStateIndex):p,e=this.config.actionSanitizer?sanitizeAction(this.config.actionSanitizer,Ve,j.nextActionId):Ve;this.sendToReduxDevtools(()=>this.extensionConnection.send(e,t))}else{const p=Object.assign(Object.assign({},j),{stagedActionIds:j.stagedActionIds,actionsById:this.config.actionSanitizer?sanitizeActions(this.config.actionSanitizer,j.actionsById):j.actionsById,computedStates:this.config.stateSanitizer?sanitizeStates(this.config.stateSanitizer,j.computedStates):j.computedStates});this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,p,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new rxjs__WEBPACK_IMPORTED_MODULE_3__.y(Ve=>{const j=this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=j,j.init(),j.subscribe(p=>Ve.next(p)),j.unsubscribe}):rxjs__WEBPACK_IMPORTED_MODULE_2__.E}createActionStreams(){const Ve=this.createChangesObservable().pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_4__.B)()),j=Ve.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.START)),p=Ve.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.STOP)),t=Ve.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.DISPATCH),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(a=>this.unwrapAction(a.payload)),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.b)(a=>a.type===IMPORT_STATE?this.dispatcher.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(b=>b.type===_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.wb),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_8__.V)(1e3),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_9__.b)(1e3),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(()=>a),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_10__.K)(()=>(0,rxjs__WEBPACK_IMPORTED_MODULE_11__.of)(a)),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_12__.q)(1)):(0,rxjs__WEBPACK_IMPORTED_MODULE_11__.of)(a))),f=Ve.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(a=>a.type===ExtensionActionTypes.ACTION),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(a=>this.unwrapAction(a.payload))).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p)),M=t.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p));this.start$=j.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p)),this.actions$=this.start$.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.w)(()=>f)),this.liftedActions$=this.start$.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.w)(()=>M))}unwrapAction(action){return"string"==typeof action?eval(`(${action})`):action}getExtensionConfig(Ve){var j;const p={name:Ve.name,features:Ve.features,serialize:Ve.serialize,autoPause:null!==(j=Ve.autoPause)&&void 0!==j&&j};return!1!==Ve.maxAge&&(p.maxAge=Ve.maxAge),p}sendToReduxDevtools(Ve){try{Ve()}catch(j){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",j)}}}return DevtoolsExtension.\u0275fac=function Ve(j){return new(j||DevtoolsExtension)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(REDUX_DEVTOOLS_EXTENSION),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(STORE_DEVTOOLS_CONFIG),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(DevtoolsDispatcher))},DevtoolsExtension.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:DevtoolsExtension,factory:DevtoolsExtension.\u0275fac}),DevtoolsExtension})(),StoreDevtools=(()=>{class Ve{constructor(p,t,e,f,M,a,b,d){const N=liftInitialState(b,d.monitor),h=liftReducerWith(b,N,a,d.monitor,d),A=(0,rxjs__WEBPACK_IMPORTED_MODULE_15__.T)((0,rxjs__WEBPACK_IMPORTED_MODULE_15__.T)(t.asObservable().pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.T)(1)),f.actions$).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(liftAction)),p,f.liftedActions$).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.Q)(rxjs__WEBPACK_IMPORTED_MODULE_18__.N)),w=e.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(h)),D=new rxjs__WEBPACK_IMPORTED_MODULE_19__.t(1),L=A.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_20__.M)(w),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_21__.R)(({state:Z},[Y,ne])=>{let $=ne(Z,Y);return Y.type!==PERFORM_ACTION&&shouldFilterActions(d)&&($=filterLiftedState($,d.predicate,d.actionsSafelist,d.actionsBlocklist)),f.notify(Y,$),{state:$,action:Y}},{state:N,action:null})).subscribe(({state:Z,action:Y})=>{D.next(Z),Y.type===PERFORM_ACTION&&M.next(Y.action)}),k=f.start$.subscribe(()=>{this.refresh()}),S=D.asObservable(),U=S.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(unliftState));this.extensionStartSubscription=k,this.stateSubscription=L,this.dispatcher=p,this.liftedState=S,this.state=U}dispatch(p){this.dispatcher.next(p)}next(p){this.dispatcher.next(p)}error(p){}complete(){}performAction(p){this.dispatch(new PerformAction(p,+Date.now()))}refresh(){this.dispatch(new Refresh)}reset(){this.dispatch(new Reset(+Date.now()))}rollback(){this.dispatch(new Rollback(+Date.now()))}commit(){this.dispatch(new Commit(+Date.now()))}sweep(){this.dispatch(new Sweep)}toggleAction(p){this.dispatch(new ToggleAction(p))}jumpToAction(p){this.dispatch(new JumpToAction(p))}jumpToState(p){this.dispatch(new JumpToState(p))}importState(p){this.dispatch(new ImportState(p))}lockChanges(p){this.dispatch(new LockChanges(p))}pauseRecording(p){this.dispatch(new PauseRecording(p))}}return Ve.\u0275fac=function(p){return new(p||Ve)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(DevtoolsDispatcher),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.UO),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.n$),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(DevtoolsExtension),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.Y$),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_angular_core__WEBPACK_IMPORTED_MODULE_0__.qLn),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.Y6),_angular_core__WEBPACK_IMPORTED_MODULE_0__.LFG(STORE_DEVTOOLS_CONFIG))},Ve.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:Ve,factory:Ve.\u0275fac}),Ve})();const IS_EXTENSION_OR_MONITOR_PRESENT=new _angular_core__WEBPACK_IMPORTED_MODULE_0__.OlP("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function createIsExtensionOrMonitorPresent(Ve,j){return Boolean(Ve)||j.monitor!==noMonitor}function createReduxDevtoolsExtension(){const Ve="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&void 0!==window[Ve]?window[Ve]:null}function createStateObservable(Ve){return Ve.state}let StoreDevtoolsModule=(()=>{class Ve{static instrument(p={}){return{ngModule:Ve,providers:[DevtoolsExtension,DevtoolsDispatcher,StoreDevtools,{provide:INITIAL_OPTIONS,useValue:p},{provide:IS_EXTENSION_OR_MONITOR_PRESENT,deps:[REDUX_DEVTOOLS_EXTENSION,STORE_DEVTOOLS_CONFIG],useFactory:createIsExtensionOrMonitorPresent},{provide:REDUX_DEVTOOLS_EXTENSION,useFactory:createReduxDevtoolsExtension},{provide:STORE_DEVTOOLS_CONFIG,deps:[INITIAL_OPTIONS],useFactory:createConfig},{provide:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.FR,deps:[StoreDevtools],useFactory:createStateObservable},{provide:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.mK,useExisting:DevtoolsDispatcher}]}}}return Ve.\u0275fac=function(p){return new(p||Ve)},Ve.\u0275mod=_angular_core__WEBPACK_IMPORTED_MODULE_0__.oAB({type:Ve}),Ve.\u0275inj=_angular_core__WEBPACK_IMPORTED_MODULE_0__.cJS({}),Ve})()},5620:(Ve,j,p)=>{"use strict";p.d(j,{UO:()=>oe,qg:()=>ie,Y6:()=>i,mK:()=>Ae,n$:()=>Ie,Y$:()=>W,FR:()=>ue,yh:()=>ht,CK:()=>Mt,Aw:()=>zt,cr:()=>qe,wb:()=>le,qC:()=>V,PH:()=>k,ZF:()=>at,Lq:()=>wi,P1:()=>Xe,on:()=>jt,Ky:()=>S});var t=p(5e3),e=p(1135),f=p(8306),M=p(7579),a=p(233),b=p(4004),N=p(5363),h=p(1365),A=p(5026),w=p(1884);const D={};function k(nt,Ft){if(D[nt]=(D[nt]||0)+1,"function"==typeof Ft)return Z(nt,(...mi)=>Object.assign(Object.assign({},Ft(...mi)),{type:nt}));switch(Ft?Ft._as:"empty"){case"empty":return Z(nt,()=>({type:nt}));case"props":return Z(nt,mi=>Object.assign(Object.assign({},mi),{type:nt}));default:throw new Error("Unexpected config.")}}function S(){return{_as:"props",_p:void 0}}function Z(nt,Ft){return Object.defineProperty(Ft,"type",{value:nt,writable:!1})}const ie="@ngrx/store/init";let oe=(()=>{class nt extends e.X{constructor(){super({type:ie})}next(Kt){if("function"==typeof Kt)throw new TypeError("\n Dispatch expected an object, instead it received a function.\n If you're using the createAction function, make sure to invoke the function\n before dispatching the action. For example, someAction should be someAction().");if(void 0===Kt)throw new TypeError("Actions must be objects");if(void 0===Kt.type)throw new TypeError("Actions must have a type property");super.next(Kt)}complete(){}ngOnDestroy(){super.complete()}}return nt.\u0275fac=function(Kt){return new(Kt||nt)},nt.\u0275prov=t.Yz7({token:nt,factory:nt.\u0275fac}),nt})();const X=[oe],me=new t.OlP("@ngrx/store Internal Root Guard"),y=new t.OlP("@ngrx/store Internal Initial State"),i=new t.OlP("@ngrx/store Initial State"),r=new t.OlP("@ngrx/store Reducer Factory"),u=new t.OlP("@ngrx/store Internal Reducer Factory Provider"),c=new t.OlP("@ngrx/store Initial Reducers"),_=new t.OlP("@ngrx/store Internal Initial Reducers"),E=new t.OlP("@ngrx/store Store Features"),I=new t.OlP("@ngrx/store Internal Store Reducers"),v=new t.OlP("@ngrx/store Internal Feature Reducers"),n=new t.OlP("@ngrx/store Internal Feature Configs"),C=new t.OlP("@ngrx/store Internal Store Features"),B=new t.OlP("@ngrx/store Internal Feature Reducers Token"),P=new t.OlP("@ngrx/store Feature Reducers"),H=new t.OlP("@ngrx/store User Provided Meta Reducers"),q=new t.OlP("@ngrx/store Meta Reducers"),he=new t.OlP("@ngrx/store Internal Resolved Meta Reducers"),_e=new t.OlP("@ngrx/store User Runtime Checks Config"),Ne=new t.OlP("@ngrx/store Internal User Runtime Checks Config"),we=new t.OlP("@ngrx/store Internal Runtime Checks"),Q=new t.OlP("@ngrx/store Check if Action types are unique");function Ue(nt,Ft={}){const Kt=Object.keys(nt),mi={};for(let ki=0;kiki(Ni),Kt(Ft))}}function De(nt,Ft){return Array.isArray(Ft)&&Ft.length>0&&(nt=V.apply(null,[...Ft,nt])),(Kt,mi)=>{const Ni=nt(Kt);return(ki,fn)=>Ni(ki=void 0===ki?mi:ki,fn)}}class Ie extends f.y{}class Ae extends oe{}const le="@ngrx/store/update-reducers";let Te=(()=>{class nt extends e.X{constructor(Kt,mi,Ni,ki){super(ki(Ni,mi)),this.dispatcher=Kt,this.initialState=mi,this.reducers=Ni,this.reducerFactory=ki}get currentReducers(){return this.reducers}addFeature(Kt){this.addFeatures([Kt])}addFeatures(Kt){const mi=Kt.reduce((Ni,{reducers:ki,reducerFactory:fn,metaReducers:Bn,initialState:Dn,key:Xn})=>{const _n="function"==typeof ki?function dt(nt){const Ft=Array.isArray(nt)&&nt.length>0?V(...nt):Kt=>Kt;return(Kt,mi)=>(Kt=Ft(Kt),(Ni,ki)=>Kt(Ni=void 0===Ni?mi:Ni,ki))}(Bn)(ki,Dn):De(fn,Bn)(ki,Dn);return Ni[Xn]=_n,Ni},{});this.addReducers(mi)}removeFeature(Kt){this.removeFeatures([Kt])}removeFeatures(Kt){this.removeReducers(Kt.map(mi=>mi.key))}addReducer(Kt,mi){this.addReducers({[Kt]:mi})}addReducers(Kt){this.reducers=Object.assign(Object.assign({},this.reducers),Kt),this.updateReducers(Object.keys(Kt))}removeReducer(Kt){this.removeReducers([Kt])}removeReducers(Kt){Kt.forEach(mi=>{this.reducers=function ve(nt,Ft){return Object.keys(nt).filter(Kt=>Kt!==Ft).reduce((Kt,mi)=>Object.assign(Kt,{[mi]:nt[mi]}),{})}(this.reducers,mi)}),this.updateReducers(Kt)}updateReducers(Kt){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:le,features:Kt})}ngOnDestroy(){this.complete()}}return nt.\u0275fac=function(Kt){return new(Kt||nt)(t.LFG(Ae),t.LFG(i),t.LFG(c),t.LFG(r))},nt.\u0275prov=t.Yz7({token:nt,factory:nt.\u0275fac}),nt})();const xe=[Te,{provide:Ie,useExisting:Te},{provide:Ae,useExisting:oe}];let W=(()=>{class nt extends M.x{ngOnDestroy(){this.complete()}}return nt.\u0275fac=function(){let Ft;return function(mi){return(Ft||(Ft=t.n5z(nt)))(mi||nt)}}(),nt.\u0275prov=t.Yz7({token:nt,factory:nt.\u0275fac}),nt})();const ee=[W];class ue extends f.y{}let Ce=(()=>{class nt extends e.X{constructor(Kt,mi,Ni,ki){super(ki);const Xn=Kt.pipe((0,N.Q)(a.N)).pipe((0,h.M)(mi)).pipe((0,A.R)(Le,{state:ki}));this.stateSubscription=Xn.subscribe(({state:_n,action:Si})=>{this.next(_n),Ni.next(Si)})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}}return nt.INIT=ie,nt.\u0275fac=function(Kt){return new(Kt||nt)(t.LFG(oe),t.LFG(Ie),t.LFG(W),t.LFG(i))},nt.\u0275prov=t.Yz7({token:nt,factory:nt.\u0275fac}),nt})();function Le(nt={state:void 0},[Ft,Kt]){const{state:mi}=nt;return{state:Kt(mi,Ft),action:Ft}}const ut=[Ce,{provide:ue,useExisting:Ce}];let ht=(()=>{class nt extends f.y{constructor(Kt,mi,Ni){super(),this.actionsObserver=mi,this.reducerManager=Ni,this.source=Kt}select(Kt,...mi){return ui.call(null,Kt,...mi)(this)}lift(Kt){const mi=new nt(this,this.actionsObserver,this.reducerManager);return mi.operator=Kt,mi}dispatch(Kt){this.actionsObserver.next(Kt)}next(Kt){this.actionsObserver.next(Kt)}error(Kt){this.actionsObserver.error(Kt)}complete(){this.actionsObserver.complete()}addReducer(Kt,mi){this.reducerManager.addReducer(Kt,mi)}removeReducer(Kt){this.reducerManager.removeReducer(Kt)}}return nt.\u0275fac=function(Kt){return new(Kt||nt)(t.LFG(ue),t.LFG(oe),t.LFG(Te))},nt.\u0275prov=t.Yz7({token:nt,factory:nt.\u0275fac}),nt})();const It=[ht];function ui(nt,Ft,...Kt){return function(Ni){let ki;if("string"==typeof nt){const fn=[Ft,...Kt].filter(Boolean);ki=Ni.pipe(function d(...nt){const Ft=nt.length;if(0===Ft)throw new Error("list of properties cannot be empty.");return(0,b.U)(Kt=>{let mi=Kt;for(let Ni=0;Nint(fn,Ft)))}return ki.pipe((0,w.x)())}}const Wt="https://ngrx.io/guide/store/configuration/runtime-checks";function Gt(nt){return void 0===nt}function hi(nt){return null===nt}function xt(nt){return Array.isArray(nt)}function yt(nt){return"object"==typeof nt&&null!==nt}function Pe(nt){return"function"==typeof nt}function Ht(nt,Ft){return nt===Ft}function it(nt,Ft,Kt){for(let mi=0;mi_n.release&&"function"==typeof _n.release),Bn=nt(function(..._n){return ki.apply(null,_n)}),Dn=tt(function(_n,Si){return Ft.stateFn.apply(null,[_n,Ni,Si,Bn])});return Object.assign(Dn.memoized,{release:function Xn(){Dn.reset(),Bn.reset(),fn.forEach(_n=>_n.release())},projector:Bn.memoized,setResult:Dn.setResult,clearResult:Dn.clearResult})}}(tt)(...nt)}function Se(nt,Ft,Kt,mi){if(void 0===Kt){const ki=Ft.map(fn=>fn(nt));return mi.memoized.apply(null,ki)}const Ni=Ft.map(ki=>ki(nt,Kt));return mi.memoized.apply(null,[...Ni,Kt])}function at(nt){return Xe(Ft=>{const Kt=Ft[nt];return(0,t.X6Q)()&&!(nt in Ft)&&console.warn(`@ngrx/store: The feature name "${nt}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${nt}', ...) or StoreModule.forFeature('${nt}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),Kt},Ft=>Ft)}function Xt(nt){Object.freeze(nt);const Ft=Pe(nt);return Object.getOwnPropertyNames(nt).forEach(Kt=>{if(!Kt.startsWith("\u0275")&&function ce(nt,Ft){return Object.prototype.hasOwnProperty.call(nt,Ft)}(nt,Kt)&&(!Ft||"caller"!==Kt&&"callee"!==Kt&&"arguments"!==Kt)){const mi=nt[Kt];(yt(mi)||Pe(mi))&&!Object.isFrozen(mi)&&Xt(mi)}}),nt}function fi(nt,Ft=[]){return(Gt(nt)||hi(nt))&&0===Ft.length?{path:["root"],value:nt}:Object.keys(nt).reduce((mi,Ni)=>{if(mi)return mi;const ki=nt[Ni];return function Oe(nt){return Pe(nt)&&nt.hasOwnProperty("\u0275cmp")}(ki)?mi:!(Gt(ki)||hi(ki)||function et(nt){return"number"==typeof nt}(ki)||function Ct(nt){return"boolean"==typeof nt}(ki)||function Nt(nt){return"string"==typeof nt}(ki)||xt(ki))&&(function Yt(nt){if(!function ei(nt){return yt(nt)&&!xt(nt)}(nt))return!1;const Ft=Object.getPrototypeOf(nt);return Ft===Object.prototype||null===Ft}(ki)?fi(ki,[...Ft,Ni]):{path:[...Ft,Ni],value:ki})},!1)}function si(nt,Ft){if(!1===nt)return;const Kt=nt.path.join("."),mi=new Error(`Detected unserializable ${Ft} at "${Kt}". ${Wt}#strict${Ft}serializability`);throw mi.value=nt.value,mi.unserializablePath=Kt,mi}function Bi(nt){return(0,t.X6Q)()?Object.assign({strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1},nt):{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function zi({strictActionSerializability:nt,strictStateSerializability:Ft}){return Kt=>nt||Ft?function qi(nt,Ft){return function(Kt,mi){Ft.action(mi)&&si(fi(mi),"action");const Ni=nt(Kt,mi);return Ft.state()&&si(fi(Ni),"state"),Ni}}(Kt,{action:mi=>nt&&!ze(mi),state:()=>Ft}):Kt}function Ui({strictActionImmutability:nt,strictStateImmutability:Ft}){return Kt=>nt||Ft?function qt(nt,Ft){return function(Kt,mi){const Ni=Ft.action(mi)?Xt(mi):mi,ki=nt(Kt,Ni);return Ft.state()?Xt(ki):ki}}(Kt,{action:mi=>nt&&!ze(mi),state:()=>Ft}):Kt}function ze(nt){return nt.type.startsWith("@ngrx")}function Tt({strictActionWithinNgZone:nt}){return Ft=>nt?function $i(nt,Ft){return function(Kt,mi){if(Ft.action(mi)&&!t.R0b.isInAngularZone())throw new Error(`Action '${mi.type}' running outside NgZone. ${Wt}#strictactionwithinngzone`);return nt(Kt,mi)}}(Ft,{action:Kt=>nt&&!ze(Kt)}):Ft}function pe(nt){return[{provide:Ne,useValue:nt},{provide:_e,useFactory:_t,deps:[Ne]},{provide:we,deps:[_e],useFactory:Bi},{provide:q,multi:!0,deps:[we],useFactory:Ui},{provide:q,multi:!0,deps:[we],useFactory:zi},{provide:q,multi:!0,deps:[we],useFactory:Tt}]}function je(){return[{provide:Q,multi:!0,deps:[we],useFactory:re}]}function _t(nt){return nt}function re(nt){if(!nt.strictActionTypeUniqueness)return;const Ft=Object.entries(D).filter(([,Kt])=>Kt>1).map(([Kt])=>Kt);if(Ft.length)throw new Error(`Action types are registered more than once, ${Ft.map(Kt=>`"${Kt}"`).join(", ")}. ${Wt}#strictactiontypeuniqueness`)}let qe=(()=>{class nt{constructor(Kt,mi,Ni,ki,fn,Bn){}}return nt.\u0275fac=function(Kt){return new(Kt||nt)(t.LFG(oe),t.LFG(Ie),t.LFG(W),t.LFG(ht),t.LFG(me,8),t.LFG(Q,8))},nt.\u0275mod=t.oAB({type:nt}),nt.\u0275inj=t.cJS({}),nt})(),Mt=(()=>{class nt{constructor(Kt,mi,Ni,ki,fn){this.features=Kt,this.featureReducers=mi,this.reducerManager=Ni;const Bn=Kt.map((Dn,Xn)=>{const Si=mi.shift()[Xn];return Object.assign(Object.assign({},Dn),{reducers:Si,initialState:Zi(Dn.initialState)})});Ni.addFeatures(Bn)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}}return nt.\u0275fac=function(Kt){return new(Kt||nt)(t.LFG(C),t.LFG(P),t.LFG(Te),t.LFG(qe),t.LFG(Q,8))},nt.\u0275mod=t.oAB({type:nt}),nt.\u0275inj=t.cJS({}),nt})(),zt=(()=>{class nt{static forRoot(Kt,mi={}){return{ngModule:qe,providers:[{provide:me,useFactory:gn,deps:[[ht,new t.FiY,new t.tp0]]},{provide:y,useValue:mi.initialState},{provide:i,useFactory:Zi,deps:[y]},{provide:_,useValue:Kt},{provide:I,useExisting:Kt instanceof t.OlP?Kt:_},{provide:c,deps:[t.zs3,_,[new t.tBr(I)]],useFactory:bi},{provide:H,useValue:mi.metaReducers?mi.metaReducers:[]},{provide:he,deps:[q,H],useFactory:sn},{provide:u,useValue:mi.reducerFactory?mi.reducerFactory:Ue},{provide:r,deps:[u,he],useFactory:De},X,xe,ee,ut,It,pe(mi.runtimeChecks),je()]}}static forFeature(Kt,mi,Ni={}){return{ngModule:Mt,providers:[{provide:n,multi:!0,useValue:Kt instanceof Object?{}:Ni},{provide:E,multi:!0,useValue:{key:Kt instanceof Object?Kt.name:Kt,reducerFactory:Ni instanceof t.OlP||!Ni.reducerFactory?Ue:Ni.reducerFactory,metaReducers:Ni instanceof t.OlP||!Ni.metaReducers?[]:Ni.metaReducers,initialState:Ni instanceof t.OlP||!Ni.initialState?void 0:Ni.initialState}},{provide:C,deps:[t.zs3,n,E],useFactory:Ei},{provide:v,multi:!0,useValue:Kt instanceof Object?Kt.reducer:mi},{provide:B,multi:!0,useExisting:mi instanceof t.OlP?mi:v},{provide:P,multi:!0,deps:[t.zs3,v,[new t.tBr(B)]],useFactory:Xi},je()]}}}return nt.\u0275fac=function(Kt){return new(Kt||nt)},nt.\u0275mod=t.oAB({type:nt}),nt.\u0275inj=t.cJS({}),nt})();function bi(nt,Ft){return Ft instanceof t.OlP?nt.get(Ft):Ft}function Ei(nt,Ft,Kt){return Kt.map((mi,Ni)=>{if(Ft[Ni]instanceof t.OlP){const ki=nt.get(Ft[Ni]);return{key:mi.key,reducerFactory:ki.reducerFactory?ki.reducerFactory:Ue,metaReducers:ki.metaReducers?ki.metaReducers:[],initialState:ki.initialState}}return mi})}function Xi(nt,Ft){return Ft.map(mi=>mi instanceof t.OlP?nt.get(mi):mi)}function Zi(nt){return"function"==typeof nt?nt():nt}function sn(nt,Ft){return nt.concat(Ft)}function gn(nt){if(nt)throw new TypeError("StoreModule.forRoot() called twice. Feature modules should use StoreModule.forFeature() instead.");return"guarded"}function jt(...nt){return{reducer:nt.pop(),types:nt.map(mi=>mi.type)}}function wi(nt,...Ft){const Kt=new Map;for(const mi of Ft)for(const Ni of mi.types){const ki=Kt.get(Ni);Kt.set(Ni,ki?(Bn,Dn)=>mi.reducer(ki(Bn,Dn),Dn):mi.reducer)}return function(mi=nt,Ni){const ki=Kt.get(Ni.type);return ki?ki(mi,Ni):mi}}},1210:(Ve,j,p)=>{"use strict";p.d(j,{H5:()=>Uc,K$:()=>Id,a4:()=>Kd});var t=p(5e3),e=p(9808),f=p(655),M=p(7429),a=p(4968),b=p(8372),d=p(1777);function N(){}function h(m){return null==m?N:function(){return this.querySelector(m)}}function w(m){return"object"==typeof m&&"length"in m?m:Array.from(m)}function D(){return[]}function L(m){return null==m?D:function(){return this.querySelectorAll(m)}}function U(m){return function(){return this.matches(m)}}function Z(m){return function(O){return O.matches(m)}}var Y=Array.prototype.find;function $(){return this.firstElementChild}var te=Array.prototype.filter;function ie(){return this.children}function y(m){return new Array(m.length)}function r(m,O){this.ownerDocument=m.ownerDocument,this.namespaceURI=m.namespaceURI,this._next=null,this._parent=m,this.__data__=O}function u(m){return function(){return m}}function c(m,O,o,x,z,J){for(var lt,ke=0,Ut=O.length,Bt=J.length;keO?1:m>=O?0:NaN}r.prototype={constructor:r,appendChild:function(m){return this._parent.insertBefore(m,this._next)},insertBefore:function(m,O){return this._parent.insertBefore(m,O)},querySelector:function(m){return this._parent.querySelector(m)},querySelectorAll:function(m){return this._parent.querySelectorAll(m)}};var Ue="http://www.w3.org/1999/xhtml";const ve={svg:"http://www.w3.org/2000/svg",xhtml:Ue,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function V(m){var O=m+="",o=O.indexOf(":");return o>=0&&"xmlns"!==(O=m.slice(0,o))&&(m=m.slice(o+1)),ve.hasOwnProperty(O)?{space:ve[O],local:m}:m}function De(m){return function(){this.removeAttribute(m)}}function dt(m){return function(){this.removeAttributeNS(m.space,m.local)}}function Ie(m,O){return function(){this.setAttribute(m,O)}}function Ae(m,O){return function(){this.setAttributeNS(m.space,m.local,O)}}function le(m,O){return function(){var o=O.apply(this,arguments);null==o?this.removeAttribute(m):this.setAttribute(m,o)}}function Te(m,O){return function(){var o=O.apply(this,arguments);null==o?this.removeAttributeNS(m.space,m.local):this.setAttributeNS(m.space,m.local,o)}}function W(m){return m.ownerDocument&&m.ownerDocument.defaultView||m.document&&m||m.defaultView}function ee(m){return function(){this.style.removeProperty(m)}}function ue(m,O,o){return function(){this.style.setProperty(m,O,o)}}function Ce(m,O,o){return function(){var x=O.apply(this,arguments);null==x?this.style.removeProperty(m):this.style.setProperty(m,x,o)}}function ut(m,O){return m.style.getPropertyValue(O)||W(m).getComputedStyle(m,null).getPropertyValue(O)}function ht(m){return function(){delete this[m]}}function It(m,O){return function(){this[m]=O}}function ui(m,O){return function(){var o=O.apply(this,arguments);null==o?delete this[m]:this[m]=o}}function Gt(m){return m.trim().split(/^|\s+/)}function hi(m){return m.classList||new xt(m)}function xt(m){this._node=m,this._names=Gt(m.getAttribute("class")||"")}function Nt(m,O){for(var o=hi(m),x=-1,z=O.length;++x=0&&(o=O.slice(x+1),O=O.slice(0,x)),{type:O,name:o}})}function ze(m){return function(){var O=this.__on;if(O){for(var J,o=0,x=-1,z=O.length;o=0&&(this._names.splice(O,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(m){return this._names.indexOf(m)>=0}};var zt=[null];function bi(m,O){this._groups=m,this._parents=O}function Ei(){return new bi([[document.documentElement]],zt)}bi.prototype=Ei.prototype={constructor:bi,select:function A(m){"function"!=typeof m&&(m=h(m));for(var O=this._groups,o=O.length,x=new Array(o),z=0;z=mn&&(mn=vn+1);!(In=Ii[mn])&&++mn=0;)(ke=x[z])&&(J&&4^ke.compareDocumentPosition(J)&&J.parentNode.insertBefore(ke,J),J=ke);return this},sort:function P(m){function O(xi,Mi){return xi&&Mi?m(xi.__data__,Mi.__data__):!xi-!Mi}m||(m=H);for(var o=this._groups,x=o.length,z=new Array(x),J=0;J1?this.each((null==O?ee:"function"==typeof O?Ce:ue)(m,O,null==o?"":o)):ut(this.node(),m)},property:function Wt(m,O){return arguments.length>1?this.each((null==O?ht:"function"==typeof O?ui:It)(m,O)):this.node()[m]},classed:function Yt(m,O){var o=Gt(m+"");if(arguments.length<2){for(var x=hi(this.node()),z=-1,J=o.length;++z{}};function jt(){for(var x,m=0,O=arguments.length,o={};m=0&&(x=o.slice(z+1),o=o.slice(0,z)),o&&!O.hasOwnProperty(o))throw new Error("unknown type: "+o);return{type:o,name:x}})}function Ft(m,O){for(var z,o=0,x=m.length;o0)for(var z,J,o=new Array(z),x=0;x>8&15|O>>4&240,O>>4&15|240&O,(15&O)<<4|15&O,1):8===o?mr(O>>24&255,O>>16&255,O>>8&255,(255&O)/255):4===o?mr(O>>12&15|O>>8&240,O>>8&15|O>>4&240,O>>4&15|240&O,((15&O)<<4|15&O)/255):null):(O=Vr.exec(m))?new ir(O[1],O[2],O[3],1):(O=ua.exec(m))?new ir(255*O[1]/100,255*O[2]/100,255*O[3]/100,1):(O=_a.exec(m))?mr(O[1],O[2],O[3],O[4]):(O=va.exec(m))?mr(255*O[1]/100,255*O[2]/100,255*O[3]/100,O[4]):(O=Va.exec(m))?ta(O[1],O[2]/100,O[3]/100,1):(O=za.exec(m))?ta(O[1],O[2]/100,O[3]/100,O[4]):cr.hasOwnProperty(m)?jr(cr[m]):"transparent"===m?new ir(NaN,NaN,NaN,0):null}function jr(m){return new ir(m>>16&255,m>>8&255,255&m,1)}function mr(m,O,o,x){return x<=0&&(m=O=o=NaN),new ir(m,O,o,x)}function hn(m){return m instanceof _n||(m=Yr(m)),m?new ir((m=m.rgb()).r,m.g,m.b,m.opacity):new ir}function ea(m,O,o,x){return 1===arguments.length?hn(m):new ir(m,O,o,null==x?1:x)}function ir(m,O,o,x){this.r=+m,this.g=+O,this.b=+o,this.opacity=+x}function Ka(){return"#"+Ta(this.r)+Ta(this.g)+Ta(this.b)}function Kr(){var m=this.opacity;return(1===(m=isNaN(m)?1:Math.max(0,Math.min(1,m)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===m?")":", "+m+")")}function Ta(m){return((m=Math.max(0,Math.min(255,Math.round(m)||0)))<16?"0":"")+m.toString(16)}function ta(m,O,o,x){return x<=0?m=O=o=NaN:o<=0||o>=1?m=O=NaN:O<=0&&(m=NaN),new Qr(m,O,o,x)}function Pr(m){if(m instanceof Qr)return new Qr(m.h,m.s,m.l,m.opacity);if(m instanceof _n||(m=Yr(m)),!m)return new Qr;if(m instanceof Qr)return m;var O=(m=m.rgb()).r/255,o=m.g/255,x=m.b/255,z=Math.min(O,o,x),J=Math.max(O,o,x),ke=NaN,lt=J-z,Ut=(J+z)/2;return lt?(ke=O===J?(o-x)/lt+6*(o0&&Ut<1?0:ke,new Qr(ke,lt,Ut,m.opacity)}function Qr(m,O,o,x){this.h=+m,this.s=+O,this.l=+o,this.opacity=+x}function xr(m,O,o){return 255*(m<60?O+(o-O)*m/60:m<180?o:m<240?O+(o-O)*(240-m)/60:O)}function Nr(m,O,o,x,z){var J=m*m,ke=J*m;return((1-3*m+3*J-ke)*O+(4-6*J+3*ke)*o+(1+3*m+3*J-3*ke)*x+ke*z)/6}Dn(_n,Yr,{copy:function(m){return Object.assign(new this.constructor,this,m)},displayable:function(){return this.rgb().displayable()},hex:$r,formatHex:$r,formatHsl:function ha(){return Pr(this).formatHsl()},formatRgb:Ba,toString:Ba}),Dn(ir,ea,Xn(_n,{brighter:function(m){return m=null==m?Wi:Math.pow(Wi,m),new ir(this.r*m,this.g*m,this.b*m,this.opacity)},darker:function(m){return m=null==m?.7:Math.pow(.7,m),new ir(this.r*m,this.g*m,this.b*m,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Ka,formatHex:Ka,formatRgb:Kr,toString:Kr})),Dn(Qr,function zr(m,O,o,x){return 1===arguments.length?Pr(m):new Qr(m,O,o,null==x?1:x)},Xn(_n,{brighter:function(m){return m=null==m?Wi:Math.pow(Wi,m),new Qr(this.h,this.s,this.l*m,this.opacity)},darker:function(m){return m=null==m?.7:Math.pow(.7,m),new Qr(this.h,this.s,this.l*m,this.opacity)},rgb:function(){var m=this.h%360+360*(this.h<0),O=isNaN(m)||isNaN(this.s)?0:this.s,o=this.l,x=o+(o<.5?o:1-o)*O,z=2*o-x;return new ir(xr(m>=240?m-240:m+120,z,x),xr(m,z,x),xr(m<120?m+240:m-120,z,x),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var m=this.opacity;return(1===(m=isNaN(m)?1:Math.max(0,Math.min(1,m)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===m?")":", "+m+")")}}));const xa=m=>()=>m;function oa(m,O){var o=O-m;return o?function nr(m,O){return function(o){return m+o*O}}(m,o):xa(isNaN(m)?O:m)}const Br=function m(O){var o=function $n(m){return 1==(m=+m)?oa:function(O,o){return o-O?function Aa(m,O,o){return m=Math.pow(m,o),O=Math.pow(O,o)-m,o=1/o,function(x){return Math.pow(m+x*O,o)}}(O,o,m):xa(isNaN(O)?o:O)}}(O);function x(z,J){var ke=o((z=ea(z)).r,(J=ea(J)).r),lt=o(z.g,J.g),Ut=o(z.b,J.b),Bt=oa(z.opacity,J.opacity);return function(ci){return z.r=ke(ci),z.g=lt(ci),z.b=Ut(ci),z.opacity=Bt(ci),z+""}}return x.gamma=m,x}(1);function Dr(m){return function(O){var ke,lt,o=O.length,x=new Array(o),z=new Array(o),J=new Array(o);for(ke=0;ke=1?(o=1,O-1):Math.floor(o*O),z=m[x],J=m[x+1];return Nr((o-x/O)*O,x>0?m[x-1]:2*z-J,z,J,xo&&(J=O.slice(o,J),lt[ke]?lt[ke]+=J:lt[++ke]=J),(x=x[0])===(z=z[0])?lt[ke]?lt[ke]+=z:lt[++ke]=z:(lt[++ke]=null,Ut.push({i:ke,x:St(x,z)})),o=ai.lastIndex;return o=0&&m._call.call(null,O),m=m._next;--Di}()}finally{Di=0,function ts(){for(var m,o,O=He,x=1/0;O;)O._call?(x>O._time&&(x=O._time),m=O,O=O._next):(o=O._next,O._next=null,O=m?m._next=o:He=o);Lt=m,pa(x)}(),Yi=0}}function Ks(){var m=Rr.now(),O=m-yi;O>1e3&&(Fn-=O,yi=m)}function pa(m){Di||(Gi&&(Gi=clearTimeout(Gi)),m-Yi>24?(m<1/0&&(Gi=setTimeout(br,m-Rr.now()-Fn)),Ke&&(Ke=clearInterval(Ke))):(Ke||(yi=Rr.now(),Ke=setInterval(Ks,1e3)),Di=1,Qa(br)))}function Ss(m,O,o){var x=new Fi;return x.restart(z=>{x.stop(),m(z+O)},O=null==O?0:+O,o),x}Fi.prototype=Gn.prototype={constructor:Fi,restart:function(m,O,o){if("function"!=typeof m)throw new TypeError("callback is not a function");o=(null==o?Ma():+o)+(null==O?0:+O),!this._next&&Lt!==this&&(Lt?Lt._next=this:He=this,Lt=this),this._call=m,this._time=o,pa()},stop:function(){this._call&&(this._call=null,this._time=1/0,pa())}};var Es=mi("start","end","cancel","interrupt"),Qs=[];function fe(m,O,o,x,z,J){var ke=m.__transition;if(ke){if(o in ke)return}else m.__transition={};!function ii(m,O,o){var z,x=m.__transition;function ke(Bt){var ci,xi,Mi,Ai;if(1!==o.state)return Ut();for(ci in x)if((Ai=x[ci]).name===o.name){if(3===Ai.state)return Ss(ke);4===Ai.state?(Ai.state=6,Ai.timer.stop(),Ai.on.call("interrupt",m,m.__data__,Ai.index,Ai.group),delete x[ci]):+ci0)throw new Error("too late; already scheduled");return o}function wt(m,O){var o=Vt(m,O);if(o.state>3)throw new Error("too late; already running");return o}function Vt(m,O){var o=m.__transition;if(!o||!(o=o[O]))throw new Error("transition not found");return o}var Ln,Pi=180/Math.PI,tn={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function dn(m,O,o,x,z,J){var ke,lt,Ut;return(ke=Math.sqrt(m*m+O*O))&&(m/=ke,O/=ke),(Ut=m*o+O*x)&&(o-=m*Ut,x-=O*Ut),(lt=Math.sqrt(o*o+x*x))&&(o/=lt,x/=lt,Ut/=lt),m*x180?ci+=360:ci-Bt>180&&(Bt+=360),Mi.push({i:xi.push(z(xi)+"rotate(",null,x)-2,x:St(Bt,ci)})):ci&&xi.push(z(xi)+"rotate("+ci+x)}(Bt.rotate,ci.rotate,xi,Mi),function lt(Bt,ci,xi,Mi){Bt!==ci?Mi.push({i:xi.push(z(xi)+"skewX(",null,x)-2,x:St(Bt,ci)}):ci&&xi.push(z(xi)+"skewX("+ci+x)}(Bt.skewX,ci.skewX,xi,Mi),function Ut(Bt,ci,xi,Mi,Ai,nn){if(Bt!==xi||ci!==Mi){var yn=Ai.push(z(Ai)+"scale(",null,",",null,")");nn.push({i:yn-4,x:St(Bt,xi)},{i:yn-2,x:St(ci,Mi)})}else(1!==xi||1!==Mi)&&Ai.push(z(Ai)+"scale("+xi+","+Mi+")")}(Bt.scaleX,Bt.scaleY,ci.scaleX,ci.scaleY,xi,Mi),Bt=ci=null,function(Ai){for(var Ii,nn=-1,yn=Mi.length;++nn=0&&(O=O.slice(0,o)),!O||"start"===O})}(O)?Ye:wt;return function(){var ke=J(this,m),lt=ke.on;lt!==x&&(z=(x=lt).copy()).on(O,o),ke.on=z}}var Js=Zi.prototype.constructor;function Me(m){return function(){this.style.removeProperty(m)}}function $t(m,O,o){return function(x){this.style.setProperty(m,O.call(this,x),o)}}function li(m,O,o){var x,z;function J(){var ke=O.apply(this,arguments);return ke!==z&&(x=(z=ke)&&$t(m,ke,o)),x}return J._value=O,J}function ur(m){return function(O){this.textContent=m.call(this,O)}}function zn(m){var O,o;function x(){var z=m.apply(this,arguments);return z!==o&&(O=(o=z)&&ur(z)),O}return x._value=m,x}var o1=0;function wa(m,O,o,x){this._groups=m,this._parents=O,this._name=o,this._id=x}function O2(){return++o1}var Xs=Zi.prototype;wa.prototype=function oo(m){return Zi().transition(m)}.prototype={constructor:wa,select:function qs(m){var O=this._name,o=this._id;"function"!=typeof m&&(m=h(m));for(var x=this._groups,z=x.length,J=new Array(z),ke=0;ke2&&x.state<5,x.state=6,x.timer.stop(),x.on.call(z?"interrupt":"cancel",m,m.__data__,x.index,x.group),delete o[ke]):J=!1;J&&delete m.__transition}}(this,m)})},Zi.prototype.transition=function na(m){var O,o;m instanceof wa?(O=m._id,m=m._name):(O=O2(),(o=O1).time=Ma(),m=null==m?null:m+"");for(var x=this._groups,z=x.length,J=0;JO?1:m>=O?0:NaN}function Ds(m){let O=m,o=m;function x(ke,lt,Ut,Bt){for(null==Ut&&(Ut=0),null==Bt&&(Bt=ke.length);Ut>>1;o(ke[ci],lt)<0?Ut=ci+1:Bt=ci}return Ut}return 1===m.length&&(O=(ke,lt)=>m(ke)-lt,o=function Is(m){return(O,o)=>uo(m(O),o)}(m)),{left:x,center:function J(ke,lt,Ut,Bt){null==Ut&&(Ut=0),null==Bt&&(Bt=ke.length);const ci=x(ke,lt,Ut,Bt-1);return ci>Ut&&O(ke[ci-1],lt)>-O(ke[ci],lt)?ci-1:ci},right:function z(ke,lt,Ut,Bt){for(null==Ut&&(Ut=0),null==Bt&&(Bt=ke.length);Ut>>1;o(ke[ci],lt)>0?Bt=ci:Ut=ci+1}return Ut}}}["w","e"].map(Ja),["n","s"].map(Ja),["n","w","e","s","nw","ne","sw","se"].map(Ja);var V1=Math.sqrt(50),H2=Math.sqrt(10),Os=Math.sqrt(2);function F2(m,O,o){var x=(O-m)/Math.max(0,o),z=Math.floor(Math.log(x)/Math.LN10),J=x/Math.pow(10,z);return z>=0?(J>=V1?10:J>=H2?5:J>=Os?2:1)*Math.pow(10,z):-Math.pow(10,-z)/(J>=V1?10:J>=H2?5:J>=Os?2:1)}function z1(m,O,o){var x=Math.abs(O-m)/Math.max(0,o),z=Math.pow(10,Math.floor(Math.log(x)/Math.LN10)),J=x/z;return J>=V1?z*=10:J>=H2?z*=5:J>=Os&&(z*=2),O0))return Ut;do{Ut.push(Bt=new Date(+J)),O(J,lt),m(J)}while(Bt=ke)for(;m(ke),!J(ke);)ke.setTime(ke-1)},function(ke,lt){if(ke>=ke)if(lt<0)for(;++lt<=0;)for(;O(ke,-1),!J(ke););else for(;--lt>=0;)for(;O(ke,1),!J(ke););})},o&&(z.count=function(J,ke){return B1.setTime(+J),U1.setTime(+ke),m(B1),m(U1),Math.floor(o(B1,U1))},z.every=function(J){return J=Math.floor(J),isFinite(J)&&J>0?J>1?z.filter(x?function(ke){return x(ke)%J==0}:function(ke){return z.count(0,ke)%J==0}):z:null}),z}var Yo=ga(function(){},function(m,O){m.setTime(+m+O)},function(m,O){return O-m});Yo.every=function(m){return m=Math.floor(m),isFinite(m)&&m>0?m>1?ga(function(O){O.setTime(Math.floor(O/m)*m)},function(O,o){O.setTime(+O+o*m)},function(O,o){return(o-O)/m}):Yo:null};const r3=Yo;const jo=ga(function(m){m.setTime(m-m.getMilliseconds())},function(m,O){m.setTime(+m+O*ks)},function(m,O){return(O-m)/ks},function(m){return m.getUTCSeconds()});const u1=ga(function(m){m.setTime(m-m.getMilliseconds()-m.getSeconds()*ks)},function(m,O){m.setTime(+m+O*Xa)},function(m,O){return(O-m)/Xa},function(m){return m.getMinutes()});const z2=ga(function(m){m.setTime(m-m.getMilliseconds()-m.getSeconds()*ks-m.getMinutes()*Xa)},function(m,O){m.setTime(+m+O*gs)},function(m,O){return(O-m)/gs},function(m){return m.getHours()});const po=ga(m=>m.setHours(0,0,0,0),(m,O)=>m.setDate(m.getDate()+O),(m,O)=>(O-m-(O.getTimezoneOffset()-m.getTimezoneOffset())*Xa)/Do,m=>m.getDate()-1);function Bs(m){return ga(function(O){O.setDate(O.getDate()-(O.getDay()+7-m)%7),O.setHours(0,0,0,0)},function(O,o){O.setDate(O.getDate()+7*o)},function(O,o){return(o-O-(o.getTimezoneOffset()-O.getTimezoneOffset())*Xa)/eo})}var Ps=Bs(0),h1=Bs(1),Ns=(Bs(2),Bs(3),Bs(4));const j1=(Bs(5),Bs(6),ga(function(m){m.setDate(1),m.setHours(0,0,0,0)},function(m,O){m.setMonth(m.getMonth()+O)},function(m,O){return O.getMonth()-m.getMonth()+12*(O.getFullYear()-m.getFullYear())},function(m){return m.getMonth()}));var K1=ga(function(m){m.setMonth(0,1),m.setHours(0,0,0,0)},function(m,O){m.setFullYear(m.getFullYear()+O)},function(m,O){return O.getFullYear()-m.getFullYear()},function(m){return m.getFullYear()});K1.every=function(m){return isFinite(m=Math.floor(m))&&m>0?ga(function(O){O.setFullYear(Math.floor(O.getFullYear()/m)*m),O.setMonth(0,1),O.setHours(0,0,0,0)},function(O,o){O.setFullYear(O.getFullYear()+o*m)}):null};const ws=K1;const Y2=ga(function(m){m.setUTCSeconds(0,0)},function(m,O){m.setTime(+m+O*Xa)},function(m,O){return(O-m)/Xa},function(m){return m.getUTCMinutes()});const f1=ga(function(m){m.setUTCMinutes(0,0,0)},function(m,O){m.setTime(+m+O*gs)},function(m,O){return(O-m)/gs},function(m){return m.getUTCHours()});const F=ga(function(m){m.setUTCHours(0,0,0,0)},function(m,O){m.setUTCDate(m.getUTCDate()+O)},function(m,O){return(O-m)/Do},function(m){return m.getUTCDate()-1});function ot(m){return ga(function(O){O.setUTCDate(O.getUTCDate()-(O.getUTCDay()+7-m)%7),O.setUTCHours(0,0,0,0)},function(O,o){O.setUTCDate(O.getUTCDate()+7*o)},function(O,o){return(o-O)/eo})}var ri=ot(0),en=ot(1),sr=(ot(2),ot(3),ot(4));const t0=(ot(5),ot(6),ga(function(m){m.setUTCDate(1),m.setUTCHours(0,0,0,0)},function(m,O){m.setUTCMonth(m.getUTCMonth()+O)},function(m,O){return O.getUTCMonth()-m.getUTCMonth()+12*(O.getUTCFullYear()-m.getUTCFullYear())},function(m){return m.getUTCMonth()}));var K2=ga(function(m){m.setUTCMonth(0,1),m.setUTCHours(0,0,0,0)},function(m,O){m.setUTCFullYear(m.getUTCFullYear()+O)},function(m,O){return O.getUTCFullYear()-m.getUTCFullYear()},function(m){return m.getUTCFullYear()});K2.every=function(m){return isFinite(m=Math.floor(m))&&m>0?ga(function(O){O.setUTCFullYear(Math.floor(O.getUTCFullYear()/m)*m),O.setUTCMonth(0,1),O.setUTCHours(0,0,0,0)},function(O,o){O.setUTCFullYear(O.getUTCFullYear()+o*m)}):null};const Q1=K2;function p1(m,O,o,x,z,J){const ke=[[jo,1,ks],[jo,5,5e3],[jo,15,15e3],[jo,30,3e4],[J,1,Xa],[J,5,5*Xa],[J,15,15*Xa],[J,30,30*Xa],[z,1,gs],[z,3,3*gs],[z,6,6*gs],[z,12,12*gs],[x,1,Do],[x,2,2*Do],[o,1,eo],[O,1,c1],[O,3,3*c1],[m,1,ho]];function Ut(Bt,ci,xi){const Mi=Math.abs(ci-Bt)/xi,Ai=Ds(([,,Ii])=>Ii).right(ke,Mi);if(Ai===ke.length)return m.every(z1(Bt/ho,ci/ho,xi));if(0===Ai)return r3.every(Math.max(z1(Bt,ci,xi),1));const[nn,yn]=ke[Mi/ke[Ai-1][2][O.toLowerCase(),o]))}function s0(m,O,o){var x=La.exec(O.slice(o,o+1));return x?(m.w=+x[0],o+x[0].length):-1}function L6(m,O,o){var x=La.exec(O.slice(o,o+1));return x?(m.u=+x[0],o+x[0].length):-1}function S6(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.U=+x[0],o+x[0].length):-1}function o0(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.V=+x[0],o+x[0].length):-1}function $1(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.W=+x[0],o+x[0].length):-1}function u3(m,O,o){var x=La.exec(O.slice(o,o+4));return x?(m.y=+x[0],o+x[0].length):-1}function e2(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.y=+x[0]+(+x[0]>68?1900:2e3),o+x[0].length):-1}function E6(m,O,o){var x=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(O.slice(o,o+6));return x?(m.Z=x[1]?0:-(x[2]+(x[3]||"00")),o+x[0].length):-1}function ca(m,O,o){var x=La.exec(O.slice(o,o+1));return x?(m.q=3*x[0]-3,o+x[0].length):-1}function l0(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.m=x[0]-1,o+x[0].length):-1}function h3(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.d=+x[0],o+x[0].length):-1}function f3(m,O,o){var x=La.exec(O.slice(o,o+3));return x?(m.m=0,m.d=+x[0],o+x[0].length):-1}function J2(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.H=+x[0],o+x[0].length):-1}function T6(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.M=+x[0],o+x[0].length):-1}function c0(m,O,o){var x=La.exec(O.slice(o,o+2));return x?(m.S=+x[0],o+x[0].length):-1}function A6(m,O,o){var x=La.exec(O.slice(o,o+3));return x?(m.L=+x[0],o+x[0].length):-1}function d0(m,O,o){var x=La.exec(O.slice(o,o+6));return x?(m.L=Math.floor(x[0]/1e3),o+x[0].length):-1}function D6(m,O,o){var x=q2.exec(O.slice(o,o+1));return x?o+x[0].length:-1}function I6(m,O,o){var x=La.exec(O.slice(o));return x?(m.Q=+x[0],o+x[0].length):-1}function sh(m,O,o){var x=La.exec(O.slice(o));return x?(m.s=+x[0],o+x[0].length):-1}function Xo(m,O){return fr(m.getDate(),O,2)}function ss(m,O){return fr(m.getHours(),O,2)}function t2(m,O){return fr(m.getHours()%12||12,O,2)}function u0(m,O){return fr(1+po.count(ws(m),m),O,3)}function p3(m,O){return fr(m.getMilliseconds(),O,3)}function $a(m,O){return p3(m,O)+"000"}function n2(m,O){return fr(m.getMonth()+1,O,2)}function m3(m,O){return fr(m.getMinutes(),O,2)}function O6(m,O){return fr(m.getSeconds(),O,2)}function k6(m){var O=m.getDay();return 0===O?7:O}function h0(m,O){return fr(Ps.count(ws(m)-1,m),O,2)}function f0(m){var O=m.getDay();return O>=4||0===O?Ns(m):Ns.ceil(m)}function g3(m,O){return m=f0(m),fr(Ns.count(ws(m),m)+(4===ws(m).getDay()),O,2)}function P6(m){return m.getDay()}function C3(m,O){return fr(h1.count(ws(m)-1,m),O,2)}function p0(m,O){return fr(m.getFullYear()%100,O,2)}function N6(m,O){return fr((m=f0(m)).getFullYear()%100,O,2)}function _3(m,O){return fr(m.getFullYear()%1e4,O,4)}function R6(m,O){var o=m.getDay();return fr((m=o>=4||0===o?Ns(m):Ns.ceil(m)).getFullYear()%1e4,O,4)}function v3(m){var O=m.getTimezoneOffset();return(O>0?"-":(O*=-1,"+"))+fr(O/60|0,"0",2)+fr(O%60,"0",2)}function X2(m,O){return fr(m.getUTCDate(),O,2)}function H6(m,O){return fr(m.getUTCHours(),O,2)}function y3(m,O){return fr(m.getUTCHours()%12||12,O,2)}function $2(m,O){return fr(1+F.count(Q1(m),m),O,3)}function m0(m,O){return fr(m.getUTCMilliseconds(),O,3)}function g0(m,O){return m0(m,O)+"000"}function F6(m,O){return fr(m.getUTCMonth()+1,O,2)}function V6(m,O){return fr(m.getUTCMinutes(),O,2)}function z6(m,O){return fr(m.getUTCSeconds(),O,2)}function C0(m){var O=m.getUTCDay();return 0===O?7:O}function B6(m,O){return fr(ri.count(Q1(m)-1,m),O,2)}function _0(m){var O=m.getUTCDay();return O>=4||0===O?sr(m):sr.ceil(m)}function U6(m,O){return m=_0(m),fr(sr.count(Q1(m),m)+(4===Q1(m).getUTCDay()),O,2)}function G6(m){return m.getUTCDay()}function Z6(m,O){return fr(en.count(Q1(m)-1,m),O,2)}function v0(m,O){return fr(m.getUTCFullYear()%100,O,2)}function y0(m,O){return fr((m=_0(m)).getUTCFullYear()%100,O,2)}function x0(m,O){return fr(m.getUTCFullYear()%1e4,O,4)}function g1(m,O){var o=m.getUTCDay();return fr((m=o>=4||0===o?sr(m):sr.ceil(m)).getUTCFullYear()%1e4,O,4)}function to(){return"+0000"}function W6(){return"%"}function Y6(m){return+m}function x3(m){return Math.floor(+m/1e3)}function C1(m){return null===m?NaN:+m}!function M0(m){(function ah(m){var O=m.dateTime,o=m.date,x=m.time,z=m.periods,J=m.days,ke=m.shortDays,lt=m.months,Ut=m.shortMonths,Bt=Jo(z),ci=X1(z),xi=Jo(J),Mi=X1(J),Ai=Jo(ke),nn=X1(ke),yn=Jo(lt),Ii=X1(lt),pn=Jo(Ut),vn=X1(Ut),mn={a:function ln(un){return ke[un.getDay()]},A:function cs(un){return J[un.getDay()]},b:function Mr(un){return Ut[un.getMonth()]},B:function Ia(un){return lt[un.getMonth()]},c:null,d:Xo,e:Xo,f:$a,g:N6,G:R6,H:ss,I:t2,j:u0,L:p3,m:n2,M:m3,p:function Xr(un){return z[+(un.getHours()>=12)]},q:function Ca(un){return 1+~~(un.getMonth()/3)},Q:Y6,s:x3,S:O6,u:k6,U:h0,V:g3,w:P6,W:C3,x:null,X:null,y:p0,Y:_3,Z:v3,"%":W6},Un={a:function Ho(un){return ke[un.getUTCDay()]},A:function wo(un){return J[un.getUTCDay()]},b:function kr(un){return Ut[un.getUTCMonth()]},B:function T2(un){return lt[un.getUTCMonth()]},c:null,d:X2,e:X2,f:g0,g:y0,G:g1,H:H6,I:y3,j:$2,L:m0,m:F6,M:V6,p:function ja(un){return z[+(un.getUTCHours()>=12)]},q:function Zl(un){return 1+~~(un.getUTCMonth()/3)},Q:Y6,s:x3,S:z6,u:C0,U:B6,V:U6,w:G6,W:Z6,x:null,X:null,y:v0,Y:x0,Z:to,"%":W6},In={a:function Ir(un,Yn,rr){var ji=Ai.exec(Yn.slice(rr));return ji?(un.w=nn.get(ji[0].toLowerCase()),rr+ji[0].length):-1},A:function On(un,Yn,rr){var ji=xi.exec(Yn.slice(rr));return ji?(un.w=Mi.get(ji[0].toLowerCase()),rr+ji[0].length):-1},b:function Ea(un,Yn,rr){var ji=pn.exec(Yn.slice(rr));return ji?(un.m=vn.get(ji[0].toLowerCase()),rr+ji[0].length):-1},B:function pr(un,Yn,rr){var ji=yn.exec(Yn.slice(rr));return ji?(un.m=Ii.get(ji[0].toLowerCase()),rr+ji[0].length):-1},c:function Or(un,Yn,rr){return Tr(un,O,Yn,rr)},d:h3,e:h3,f:d0,g:e2,G:u3,H:J2,I:J2,j:f3,L:A6,m:l0,M:T6,p:function Fa(un,Yn,rr){var ji=Bt.exec(Yn.slice(rr));return ji?(un.p=ci.get(ji[0].toLowerCase()),rr+ji[0].length):-1},q:ca,Q:I6,s:sh,S:c0,u:L6,U:S6,V:o0,w:s0,W:$1,x:function ls(un,Yn,rr){return Tr(un,o,Yn,rr)},X:function aa(un,Yn,rr){return Tr(un,x,Yn,rr)},y:e2,Y:u3,Z:E6,"%":D6};function wn(un,Yn){return function(rr){var us,Hn,da,ji=[],sa=-1,wr=0,ds=un.length;for(rr instanceof Date||(rr=new Date(+rr));++sa53)return null;"w"in ji||(ji.w=1),"Z"in ji?(ds=(wr=Q2(J1(ji.y,0,1))).getUTCDay(),wr=ds>4||0===ds?en.ceil(wr):en(wr),wr=F.offset(wr,7*(ji.V-1)),ji.y=wr.getUTCFullYear(),ji.m=wr.getUTCMonth(),ji.d=wr.getUTCDate()+(ji.w+6)%7):(ds=(wr=q1(J1(ji.y,0,1))).getDay(),wr=ds>4||0===ds?h1.ceil(wr):h1(wr),wr=po.offset(wr,7*(ji.V-1)),ji.y=wr.getFullYear(),ji.m=wr.getMonth(),ji.d=wr.getDate()+(ji.w+6)%7)}else("W"in ji||"U"in ji)&&("w"in ji||(ji.w="u"in ji?ji.u%7:"W"in ji?1:0),ds="Z"in ji?Q2(J1(ji.y,0,1)).getUTCDay():q1(J1(ji.y,0,1)).getDay(),ji.m=0,ji.d="W"in ji?(ji.w+6)%7+7*ji.W-(ds+5)%7:ji.w+7*ji.U-(ds+6)%7);return"Z"in ji?(ji.H+=ji.Z/100|0,ji.M+=ji.Z%100,Q2(ji)):q1(ji)}}function Tr(un,Yn,rr,ji){for(var us,Hn,sa=0,wr=Yn.length,ds=rr.length;sa=ds)return-1;if(37===(us=Yn.charCodeAt(sa++))){if(us=Yn.charAt(sa++),!(Hn=In[us in a0?Yn.charAt(sa++):us])||(ji=Hn(un,rr,ji))<0)return-1}else if(us!=rr.charCodeAt(ji++))return-1}return ji}return mn.x=wn(o,mn),mn.X=wn(x,mn),mn.c=wn(O,mn),Un.x=wn(o,Un),Un.X=wn(x,Un),Un.c=wn(O,Un),{format:function(un){var Yn=wn(un+="",mn);return Yn.toString=function(){return un},Yn},parse:function(un){var Yn=yr(un+="",!1);return Yn.toString=function(){return un},Yn},utcFormat:function(un){var Yn=wn(un+="",Un);return Yn.toString=function(){return un},Yn},utcParse:function(un){var Yn=yr(un+="",!0);return Yn.toString=function(){return un},Yn}}})(m)}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});const w3=Ds(uo).right,Q6=(Ds(C1),w3);function _1(m,O){return m=+m,O=+O,function(o){return Math.round(m*(1-o)+O*o)}}function L0(m){return+m}var S0=[0,1];function Io(m){return m}function il(m,O){return(O-=m=+m)?function(o){return(o-m)/O}:function tl(m){return function(){return m}}(isNaN(O)?NaN:.5)}function J6(m,O,o){var x=m[0],z=m[1],J=O[0],ke=O[1];return zO&&(o=m,m=O,O=o),function(x){return Math.max(m,Math.min(O,x))}}(m[0],m[Mi-1])),lt=Mi>2?X6:J6,Ut=Bt=null,xi}function xi(Mi){return null==Mi||isNaN(Mi=+Mi)?J:(Ut||(Ut=lt(m.map(x),O,o)))(x(ke(Mi)))}return xi.invert=function(Mi){return ke(z((Bt||(Bt=lt(O,m.map(x),St)))(Mi)))},xi.domain=function(Mi){return arguments.length?(m=Array.from(Mi,L0),ci()):m.slice()},xi.range=function(Mi){return arguments.length?(O=Array.from(Mi),ci()):O.slice()},xi.rangeRound=function(Mi){return O=Array.from(Mi),o=_1,ci()},xi.clamp=function(Mi){return arguments.length?(ke=!!Mi||Io,ci()):ke!==Io},xi.interpolate=function(Mi){return arguments.length?(o=Mi,ci()):o},xi.unknown=function(Mi){return arguments.length?(J=Mi,xi):J},function(Mi,Ai){return x=Mi,z=Ai,ci()}}()(Io,Io)}function $o(m,O){switch(arguments.length){case 0:break;case 1:this.range(m);break;default:this.range(O).domain(m)}return this}var rl,e1=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function a2(m){if(!(O=e1.exec(m)))throw new Error("invalid format: "+m);var O;return new nl({fill:O[1],align:O[2],sign:O[3],symbol:O[4],zero:O[5],width:O[6],comma:O[7],precision:O[8]&&O[8].slice(1),trim:O[9],type:O[10]})}function nl(m){this.fill=void 0===m.fill?" ":m.fill+"",this.align=void 0===m.align?">":m.align+"",this.sign=void 0===m.sign?"-":m.sign+"",this.symbol=void 0===m.symbol?"":m.symbol+"",this.zero=!!m.zero,this.width=void 0===m.width?void 0:+m.width,this.comma=!!m.comma,this.precision=void 0===m.precision?void 0:+m.precision,this.trim=!!m.trim,this.type=void 0===m.type?"":m.type+""}function t1(m,O){if((o=(m=O?m.toExponential(O-1):m.toExponential()).indexOf("e"))<0)return null;var o,x=m.slice(0,o);return[x.length>1?x[0]+x.slice(2):x,+m.slice(o+1)]}function v1(m){return(m=t1(Math.abs(m)))?m[1]:NaN}function s2(m,O){var o=t1(m,O);if(!o)return m+"";var x=o[0],z=o[1];return z<0?"0."+new Array(-z).join("0")+x:x.length>z+1?x.slice(0,z+1)+"."+x.slice(z+1):x+new Array(z-x.length+2).join("0")}a2.prototype=nl.prototype,nl.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const sl={"%":(m,O)=>(100*m).toFixed(O),b:m=>Math.round(m).toString(2),c:m=>m+"",d:function t5(m){return Math.abs(m=Math.round(m))>=1e21?m.toLocaleString("en").replace(/,/g,""):m.toString(10)},e:(m,O)=>m.toExponential(O),f:(m,O)=>m.toFixed(O),g:(m,O)=>m.toPrecision(O),o:m=>Math.round(m).toString(8),p:(m,O)=>s2(100*m,O),r:s2,s:function al(m,O){var o=t1(m,O);if(!o)return m+"";var x=o[0],z=o[1],J=z-(rl=3*Math.max(-8,Math.min(8,Math.floor(z/3))))+1,ke=x.length;return J===ke?x:J>ke?x+new Array(J-ke+1).join("0"):J>0?x.slice(0,J)+"."+x.slice(J):"0."+new Array(1-J).join("0")+t1(m,Math.max(0,O+J-1))[0]},X:m=>Math.round(m).toString(16).toUpperCase(),x:m=>Math.round(m).toString(16)};function ol(m){return m}var l2,cl,k0,D3=Array.prototype.map,ll=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function oh(m){var O=m.domain;return m.ticks=function(o){var x=O();return function n3(m,O,o){var x,J,ke,lt,z=-1;if(o=+o,(m=+m)==(O=+O)&&o>0)return[m];if((x=O0){let Ut=Math.round(m/lt),Bt=Math.round(O/lt);for(Ut*ltO&&--Bt,ke=new Array(J=Bt-Ut+1);++zO&&--Bt,ke=new Array(J=Bt-Ut+1);++z0;){if((Bt=F2(ke,lt,o))===Ut)return x[z]=ke,x[J]=lt,O(x);if(Bt>0)ke=Math.floor(ke/Bt)*Bt,lt=Math.ceil(lt/Bt)*Bt;else{if(!(Bt<0))break;ke=Math.ceil(ke*Bt)/Bt,lt=Math.floor(lt*Bt)/Bt}Ut=Bt}return m},m}function Oo(){var m=S3();return m.copy=function(){return L3(m,Oo())},$o.apply(m,arguments),oh(m)}function N0(m,O,o){m=+m,O=+O,o=(z=arguments.length)<2?(O=m,m=0,1):z<3?1:+o;for(var x=-1,z=0|Math.max(0,Math.ceil((O-m)/o)),J=new Array(z);++x0&<>0&&(Ut+lt+1>x&&(lt=Math.max(1,x-Ut)),J.push(o.substring(z-=lt,z+lt)),!((Ut+=lt+1)>x));)lt=m[ke=(ke+1)%m.length];return J.reverse().join(O)}}(D3.call(m.grouping,Number),m.thousands+""),o=void 0===m.currency?"":m.currency[0]+"",x=void 0===m.currency?"":m.currency[1]+"",z=void 0===m.decimal?".":m.decimal+"",J=void 0===m.numerals?ol:function O0(m){return function(O){return O.replace(/[0-9]/g,function(o){return m[+o]})}}(D3.call(m.numerals,String)),ke=void 0===m.percent?"%":m.percent+"",lt=void 0===m.minus?"\u2212":m.minus+"",Ut=void 0===m.nan?"NaN":m.nan+"";function Bt(xi){var Mi=(xi=a2(xi)).fill,Ai=xi.align,nn=xi.sign,yn=xi.symbol,Ii=xi.zero,pn=xi.width,vn=xi.comma,mn=xi.precision,Un=xi.trim,In=xi.type;"n"===In?(vn=!0,In="g"):sl[In]||(void 0===mn&&(mn=12),Un=!0,In="g"),(Ii||"0"===Mi&&"="===Ai)&&(Ii=!0,Mi="0",Ai="=");var wn="$"===yn?o:"#"===yn&&/[boxX]/.test(In)?"0"+In.toLowerCase():"",yr="$"===yn?x:/[%p]/.test(In)?ke:"",Tr=sl[In],Fa=/[defgprs%]/.test(In);function Ir(On){var Or,ls,aa,Ea=wn,pr=yr;if("c"===In)pr=Tr(On)+pr,On="";else{var ln=(On=+On)<0||1/On<0;if(On=isNaN(On)?Ut:Tr(Math.abs(On),mn),Un&&(On=function A3(m){e:for(var z,O=m.length,o=1,x=-1;o0&&(x=0)}return x>0?m.slice(0,x)+m.slice(z+1):m}(On)),ln&&0==+On&&"+"!==nn&&(ln=!1),Ea=(ln?"("===nn?nn:lt:"-"===nn||"("===nn?"":nn)+Ea,pr=("s"===In?ll[8+rl/3]:"")+pr+(ln&&"("===nn?")":""),Fa)for(Or=-1,ls=On.length;++Or(aa=On.charCodeAt(Or))||aa>57){pr=(46===aa?z+On.slice(Or+1):On.slice(Or))+pr,On=On.slice(0,Or);break}}vn&&!Ii&&(On=O(On,1/0));var cs=Ea.length+On.length+pr.length,Mr=cs>1)+Ea+On+pr+Mr.slice(cs);break;default:On=Mr+Ea+On+pr}return J(On)}return mn=void 0===mn?6:/[gprs]/.test(In)?Math.max(1,Math.min(21,mn)):Math.max(0,Math.min(20,mn)),Ir.toString=function(){return xi+""},Ir}return{format:Bt,formatPrefix:function ci(xi,Mi){var Ai=Bt(((xi=a2(xi)).type="f",xi)),nn=3*Math.max(-8,Math.min(8,Math.floor(v1(Mi)/3))),yn=Math.pow(10,-nn),Ii=ll[8+nn/3];return function(pn){return Ai(yn*pn)+Ii}}}}(m),cl=l2.format,k0=l2.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});const k3=Symbol("implicit");function P3(){var m=new Map,O=[],o=[],x=k3;function z(J){var ke=J+"",lt=m.get(ke);if(!lt){if(x!==k3)return x;m.set(ke,lt=O.push(J))}return o[(lt-1)%o.length]}return z.domain=function(J){if(!arguments.length)return O.slice();O=[],m=new Map;for(const ke of J){const lt=ke+"";m.has(lt)||m.set(lt,O.push(ke))}return z},z.range=function(J){return arguments.length?(o=Array.from(J),z):o.slice()},z.unknown=function(J){return arguments.length?(x=J,z):x},z.copy=function(){return P3(O,o).unknown(x)},$o.apply(z,arguments),z}function y1(){var J,ke,m=P3().unknown(void 0),O=m.domain,o=m.range,x=0,z=1,lt=!1,Ut=0,Bt=0,ci=.5;function xi(){var Mi=O().length,Ai=z=1)return+o(m[x-1],x-1,m);var x,z=(x-1)*O,J=Math.floor(z),ke=+o(m[J],J,m);return ke+(+o(m[J+1],J+1,m)-ke)*(z-J)}}function R0(){var x,m=[],O=[],o=[];function z(){var ke=0,lt=Math.max(1,O.length);for(o=new Array(lt-1);++ke0?o[lt-1]:m[0],lt{return(m=Jn||(Jn={})).Top="top",m.Bottom="bottom",m.Left="left",m.Right="right",m.Center="center",Jn;var m})();function c4(m,O,o){return o===Jn.Top?m.top-7:o===Jn.Bottom?m.top+m.height-O.height+7:o===Jn.Center?m.top+m.height/2-O.height/2:void 0}function d4(m,O,o){return o===Jn.Left?m.left-7:o===Jn.Right?m.left+m.width-O.width+7:o===Jn.Center?m.left+m.width/2-O.width/2:void 0}class vs{static calculateVerticalAlignment(O,o,x){let z=c4(O,o,x);return z+o.height>window.innerHeight&&(z=window.innerHeight-o.height),z}static calculateVerticalCaret(O,o,x,z){let J;z===Jn.Top&&(J=O.height/2-x.height/2+7),z===Jn.Bottom&&(J=o.height-O.height/2-x.height/2-7),z===Jn.Center&&(J=o.height/2-x.height/2);const ke=c4(O,o,z);return ke+o.height>window.innerHeight&&(J+=ke+o.height-window.innerHeight),J}static calculateHorizontalAlignment(O,o,x){let z=d4(O,o,x);return z+o.width>window.innerWidth&&(z=window.innerWidth-o.width),z}static calculateHorizontalCaret(O,o,x,z){let J;z===Jn.Left&&(J=O.width/2-x.width/2+7),z===Jn.Right&&(J=o.width-O.width/2-x.width/2-7),z===Jn.Center&&(J=o.width/2-x.width/2);const ke=d4(O,o,z);return ke+o.width>window.innerWidth&&(J+=ke+o.width-window.innerWidth),J}static shouldFlip(O,o,x,z){let J=!1;return x===Jn.Right&&O.left+O.width+o.width+z>window.innerWidth&&(J=!0),x===Jn.Left&&O.left-o.width-z<0&&(J=!0),x===Jn.Top&&O.top-o.height-z<0&&(J=!0),x===Jn.Bottom&&O.top+O.height+o.height+z>window.innerHeight&&(J=!0),J}static positionCaret(O,o,x,z,J){let ke=0,lt=0;return O===Jn.Right?(lt=-7,ke=vs.calculateVerticalCaret(x,o,z,J)):O===Jn.Left?(lt=o.width,ke=vs.calculateVerticalCaret(x,o,z,J)):O===Jn.Top?(ke=o.height,lt=vs.calculateHorizontalCaret(x,o,z,J)):O===Jn.Bottom&&(ke=-7,lt=vs.calculateHorizontalCaret(x,o,z,J)),{top:ke,left:lt}}static positionContent(O,o,x,z,J){let ke=0,lt=0;return O===Jn.Right?(lt=x.left+x.width+z,ke=vs.calculateVerticalAlignment(x,o,J)):O===Jn.Left?(lt=x.left-o.width-z,ke=vs.calculateVerticalAlignment(x,o,J)):O===Jn.Top?(ke=x.top-o.height-z,lt=vs.calculateHorizontalAlignment(x,o,J)):O===Jn.Bottom&&(ke=x.top+x.height+z,lt=vs.calculateHorizontalAlignment(x,o,J)),{top:ke,left:lt}}static determinePlacement(O,o,x,z){if(vs.shouldFlip(x,o,O,z)){if(O===Jn.Right)return Jn.Left;if(O===Jn.Left)return Jn.Right;if(O===Jn.Top)return Jn.Bottom;if(O===Jn.Bottom)return Jn.Top}return O}}let Tc=(()=>{class m{constructor(o,x,z){this.element=o,this.renderer=x,this.platformId=z}get cssClasses(){let o="ngx-charts-tooltip-content";return o+=` position-${this.placement}`,o+=` type-${this.type}`,o+=` ${this.cssClass}`,o}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,e.NF)(this.platformId))return;const o=this.element.nativeElement,x=this.host.nativeElement.getBoundingClientRect();if(!x.height&&!x.width)return;const z=o.getBoundingClientRect();this.checkFlip(x,z),this.positionContent(o,x,z),this.showCaret&&this.positionCaret(x,z),setTimeout(()=>this.renderer.addClass(o,"animate"),1)}positionContent(o,x,z){const{top:J,left:ke}=vs.positionContent(this.placement,z,x,this.spacing,this.alignment);this.renderer.setStyle(o,"top",`${J}px`),this.renderer.setStyle(o,"left",`${ke}px`)}positionCaret(o,x){const z=this.caretElm.nativeElement,J=z.getBoundingClientRect(),{top:ke,left:lt}=vs.positionCaret(this.placement,x,o,J,this.alignment);this.renderer.setStyle(z,"top",`${ke}px`),this.renderer.setStyle(z,"left",`${lt}px`)}checkFlip(o,x){this.placement=vs.determinePlacement(this.placement,x,o,this.spacing)}onWindowResize(){this.position()}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq),t.Y36(t.Qsj),t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-tooltip-content"]],viewQuery:function(o,x){if(1&o&&t.Gf(s5,5),2&o){let z;t.iGM(z=t.CRH())&&(x.caretElm=z.first)}},hostVars:2,hostBindings:function(o,x){1&o&&t.NdJ("resize",function(){return x.onWindowResize()},!1,t.Jf7),2&o&&t.Tol(x.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},decls:6,vars:6,consts:[[3,"hidden"],["caretElm",""],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(o,x){1&o&&(t.TgZ(0,"div"),t._UZ(1,"span",0,1),t.TgZ(3,"div",2),t.YNc(4,l5,2,4,"span",3),t.YNc(5,H0,1,1,"span",4),t.qZA()()),2&o&&(t.xp6(1),t.Gre("tooltip-caret position-",x.placement,""),t.Q6J("hidden",!x.showCaret),t.xp6(3),t.Q6J("ngIf",!x.title),t.xp6(1),t.Q6J("ngIf",x.title))},directives:[e.O5,e.tP],styles:[".ngx-charts-tooltip-content{position:fixed;border-radius:3px;z-index:5000;display:block;font-weight:400;opacity:0;pointer-events:none!important}.ngx-charts-tooltip-content.type-popover{background:#fff;color:#060709;border:1px solid #72809b;box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;font-size:13px;padding:4px}.ngx-charts-tooltip-content.type-popover .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff}.ngx-charts-tooltip-content.type-tooltip{color:#fff;background:rgba(0,0,0,.75);font-size:12px;padding:0 10px;text-align:center;pointer-events:auto}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content .tooltip-label{display:block;line-height:1em;padding:8px 5px 5px;font-size:1em}.ngx-charts-tooltip-content .tooltip-val{display:block;font-size:1.3em;line-height:1em;padding:0 5px 8px}.ngx-charts-tooltip-content .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.position-right{transform:translate(10px)}.ngx-charts-tooltip-content.position-left{transform:translate(-10px)}.ngx-charts-tooltip-content.position-top{transform:translateY(-10px)}.ngx-charts-tooltip-content.position-bottom{transform:translateY(10px)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translate(0);pointer-events:auto}.area-tooltip-container{padding:5px 0;pointer-events:none}.tooltip-item{text-align:left;line-height:1.2em;padding:5px 0}.tooltip-item .tooltip-item-color{display:inline-block;height:12px;width:12px;margin-right:5px;color:#5b646b;border-radius:3px}\n"],encapsulation:2}),(0,f.gn)([Ec(100)],m.prototype,"onWindowResize",null),m})(),h4=(()=>{class m{constructor(o,x,z){this.applicationRef=o,this.componentFactoryResolver=x,this.injector=z}static setGlobalRootViewContainer(o){m.globalRootViewContainer=o}getRootViewContainer(){if(this._container)return this._container;if(m.globalRootViewContainer)return m.globalRootViewContainer;if(this.applicationRef.components.length)return this.applicationRef.components[0];throw new Error("View Container not found! ngUpgrade needs to manually set this via setRootViewContainer or setGlobalRootViewContainer.")}setRootViewContainer(o){this._container=o}getComponentRootNode(o){return function u4(m){return m.element}(o)?o.element.nativeElement:o.hostView&&o.hostView.rootNodes.length>0?o.hostView.rootNodes[0]:o.location.nativeElement}getRootViewContainerNode(o){return this.getComponentRootNode(o)}projectComponentBindings(o,x){if(x){if(void 0!==x.inputs){const z=Object.getOwnPropertyNames(x.inputs);for(const J of z)o.instance[J]=x.inputs[J]}if(void 0!==x.outputs){const z=Object.getOwnPropertyNames(x.outputs);for(const J of z)o.instance[J]=x.outputs[J]}}return o}appendComponent(o,x={},z){z||(z=this.getRootViewContainer());const J=this.getComponentRootNode(z),ke=new M.u0(J,this.componentFactoryResolver,this.applicationRef,this.injector),lt=new M.C5(o),Ut=ke.attach(lt);return this.projectComponentBindings(Ut,x),Ut}}return m.globalRootViewContainer=null,m.\u0275fac=function(o){return new(o||m)(t.LFG(t.z2F),t.LFG(t._Vd),t.LFG(t.zs3))},m.\u0275prov=t.Yz7({token:m,factory:m.\u0275fac}),m})(),f4=(()=>{class m extends class _d{constructor(O){this.injectionService=O,this.defaults={},this.components=new Map}getByType(O=this.type){return this.components.get(O)}create(O){return this.createByType(this.type,O)}createByType(O,o){o=this.assignDefaults(o);const x=this.injectComponent(O,o);return this.register(O,x),x}destroy(O){const o=this.components.get(O.componentType);if(o&&o.length){const x=o.indexOf(O);x>-1&&(o[x].destroy(),o.splice(x,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(O){const o=this.components.get(O);if(o&&o.length){let x=o.length-1;for(;x>=0;)this.destroy(o[x--])}}injectComponent(O,o){return this.injectionService.appendComponent(O,o)}assignDefaults(O){const o=Object.assign({},this.defaults.inputs),x=Object.assign({},this.defaults.outputs);return!O.inputs&&!O.outputs&&(O={inputs:O}),o&&(O.inputs=Object.assign(Object.assign({},o),O.inputs)),x&&(O.outputs=Object.assign(Object.assign({},x),O.outputs)),O}register(O,o){this.components.has(O)||this.components.set(O,[]),this.components.get(O).push(o)}}{constructor(o){super(o),this.type=Tc}}return m.\u0275fac=function(o){return new(o||m)(t.LFG(h4))},m.\u0275prov=t.Yz7({token:m,factory:m.\u0275fac}),m})();var Zs=(()=>{return(m=Zs||(Zs={})).Right="right",m.Below="below",Zs;var m})(),r1=(()=>{return(m=r1||(r1={})).ScaleLegend="scaleLegend",m.Legend="legend",r1;var m})(),En=(()=>{return(m=En||(En={})).Time="time",m.Linear="linear",m.Ordinal="ordinal",m.Quantile="quantile",En;var m})();let Il=(()=>{class m{constructor(){this.horizontal=!1}ngOnChanges(o){const x=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${x})`}gradientString(o,x){x.push(1);const z=[];return o.reverse().forEach((J,ke)=>{z.push(`${J} ${Math.round(100*x[ke])}%`)}),z.join(", ")}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[t.TTD],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(o,x){1&o&&(t.TgZ(0,"div",0)(1,"div",1)(2,"span"),t._uU(3),t.qZA()(),t._UZ(4,"div",2),t.TgZ(5,"div",1)(6,"span"),t._uU(7),t.qZA()()()),2&o&&(t.Udp("height",x.horizontal?void 0:x.height,"px")("width",x.width,"px"),t.ekj("horizontal-legend",x.horizontal),t.xp6(3),t.Oqu(x.valueRange[1].toLocaleString()),t.xp6(1),t.Udp("background",x.gradient),t.xp6(3),t.Oqu(x.valueRange[0].toLocaleString()))},styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .scale-legend{text-align:center;display:flex;flex-direction:column}.chart-legend .scale-legend-wrap{display:inline-block;flex:1;width:30px;border-radius:5px;margin:0 auto}.chart-legend .scale-legend-label{font-size:12px}.chart-legend .horizontal-legend.scale-legend{flex-direction:row}.chart-legend .horizontal-legend .scale-legend-wrap{width:auto;height:30px;margin:0 16px}\n"],encapsulation:2,changeDetection:0}),m})();function v2(m){return m instanceof Date?m.toLocaleDateString():m.toLocaleString()}let Ol=(()=>{class m{constructor(){this.isActive=!1,this.select=new t.vpe,this.activate=new t.vpe,this.deactivate=new t.vpe,this.toggle=new t.vpe}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(o,x){1&o&&t.NdJ("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(){return x.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},decls:4,vars:6,consts:[["tabindex","-1",3,"title","click"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(o,x){1&o&&(t.TgZ(0,"span",0),t.NdJ("click",function(){return x.select.emit(x.formattedLabel)}),t.TgZ(1,"span",1),t.NdJ("click",function(){return x.toggle.emit(x.formattedLabel)}),t.qZA(),t.TgZ(2,"span",2),t._uU(3),t.qZA()()),2&o&&(t.ekj("active",x.isActive),t.Q6J("title",x.formattedLabel),t.xp6(1),t.Udp("background-color",x.color),t.xp6(2),t.hij(" ",x.trimmedLabel," "))},encapsulation:2,changeDetection:0}),m})(),kl=(()=>{class m{constructor(o){this.cd=o,this.horizontal=!1,this.labelClick=new t.vpe,this.labelActivate=new t.vpe,this.labelDeactivate=new t.vpe,this.legendEntries=[]}ngOnChanges(o){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const o=[];for(const x of this.data){const z=v2(x);-1===o.findIndex(ke=>ke.label===z)&&o.push({label:x,formattedLabel:z,color:this.colors.getColor(x)})}return o}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(z=>o.label===z.name)}activate(o){this.labelActivate.emit(o)}deactivate(o){this.labelDeactivate.emit(o)}trackBy(o,x){return x.label}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.sBO))},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-legend"]],inputs:{data:"data",title:"title",colors:"colors",height:"height",width:"width",activeEntries:"activeEntries",horizontal:"horizontal"},outputs:{labelClick:"labelClick",labelActivate:"labelActivate",labelDeactivate:"labelDeactivate"},features:[t.TTD],decls:5,vars:9,consts:[["class","legend-title",4,"ngIf"],[1,"legend-wrap"],[1,"legend-labels"],["class","legend-label",4,"ngFor","ngForOf","ngForTrackBy"],[1,"legend-title"],[1,"legend-title-text"],[1,"legend-label"],[3,"label","formattedLabel","color","isActive","select","activate","deactivate"]],template:function(o,x){1&o&&(t.TgZ(0,"div"),t.YNc(1,Wn,3,1,"header",0),t.TgZ(2,"div",1)(3,"ul",2),t.YNc(4,F0,2,4,"li",3),t.qZA()()()),2&o&&(t.Udp("width",x.width,"px"),t.xp6(1),t.Q6J("ngIf",(null==x.title?null:x.title.length)>0),t.xp6(2),t.Udp("max-height",x.height-45,"px"),t.ekj("horizontal-legend",x.horizontal),t.xp6(1),t.Q6J("ngForOf",x.legendEntries)("ngForTrackBy",x.trackBy))},directives:[Ol,e.O5,e.sg],styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .legend-title{white-space:nowrap;overflow:hidden;margin-left:10px;margin-bottom:5px;font-size:14px;font-weight:700}.chart-legend ul,.chart-legend li{padding:0;margin:0;list-style:none}.chart-legend .horizontal-legend li{display:inline-block}.chart-legend .legend-wrap{width:calc(100% - 10px)}.chart-legend .legend-labels{line-height:85%;list-style:none;text-align:left;float:left;width:100%;border-radius:3px;overflow-y:auto;overflow-x:hidden;white-space:nowrap;background:rgba(0,0,0,.05)}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;transition:.2s}.chart-legend .legend-label .active .legend-label-text{color:#000}.chart-legend .legend-label-color{display:inline-block;height:15px;width:15px;margin-right:5px;color:#5b646b;border-radius:3px}.chart-legend .legend-label-text{display:inline-block;vertical-align:top;line-height:15px;font-size:12px;width:calc(100% - 20px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.chart-legend .legend-title-text{vertical-align:bottom;display:inline-block;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}),m})(),p4=(()=>{class m{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new t.vpe,this.legendLabelActivate=new t.vpe,this.legendLabelDeactivate=new t.vpe,this.LegendPosition=Zs,this.LegendType=r1}ngOnChanges(o){this.update()}update(){let o=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===Zs.Right)&&(o=this.legendType===r1.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-o)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==Zs.Right?this.chartWidth:Math.floor(this.view[0]*o/12)}getLegendType(){return this.legendOptions.scaleType===En.Linear?r1.ScaleLegend:r1.Legend}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},features:[t._Bn([f4]),t.TTD],ngContentSelectors:c2,decls:5,vars:6,consts:[[1,"ngx-charts-outer"],[1,"ngx-charts"],["class","chart-legend",3,"horizontal","valueRange","colors","height","width",4,"ngIf"],["class","chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate",4,"ngIf"],[1,"chart-legend",3,"horizontal","valueRange","colors","height","width"],[1,"chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate"]],template:function(o,x){1&o&&(t.F$t(),t.TgZ(0,"div",0),t.O4$(),t.TgZ(1,"svg",1),t.Hsn(2),t.qZA(),t.YNc(3,V0,1,5,"ngx-charts-scale-legend",2),t.YNc(4,z0,1,7,"ngx-charts-legend",3),t.qZA()),2&o&&(t.Udp("width",x.view[0],"px"),t.xp6(1),t.uIk("width",x.chartWidth)("height",x.view[1]),t.xp6(2),t.Q6J("ngIf",x.showLegend&&x.legendType===x.LegendType.ScaleLegend),t.xp6(1),t.Q6J("ngIf",x.showLegend&&x.legendType===x.LegendType.Legend))},directives:[Il,kl,e.O5],encapsulation:2,changeDetection:0}),m})(),Wh=(()=>{class m{constructor(o,x){this.element=o,this.zone=x,this.visible=new t.vpe,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const o=()=>{if(!this.element)return;const{offsetHeight:x,offsetWidth:z}=this.element.nativeElement;x&&z?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o())})}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq),t.Y36(t.R0b))},m.\u0275dir=t.lG2({type:m,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),m})();function m4(m){return"[object Date]"===toString.call(m)}let Pl=(()=>{class m{constructor(o,x,z,J){this.chartElement=o,this.zone=x,this.cd=z,this.platformId=J,this.scheme="cool",this.schemeType=En.Ordinal,this.animations=!0,this.select=new t.vpe}ngOnInit(){(0,e.PM)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new Wh(this.chartElement,this.zone),this.visibilityObserver.visible.subscribe(this.update.bind(this))}ngOnDestroy(){this.unbindEvents(),this.visibilityObserver&&(this.visibilityObserver.visible.unsubscribe(),this.visibilityObserver.destroy())}ngOnChanges(o){this.update()}update(){if(this.results=this.results?this.cloneData(this.results):[],this.view)this.width=this.view[0],this.height=this.view[1];else{const o=this.getContainerDims();o&&(this.width=o.width,this.height=o.height)}this.width||(this.width=600),this.height||(this.height=400),this.width=Math.floor(this.width),this.height=Math.floor(this.height),this.cd&&this.cd.markForCheck()}getContainerDims(){let o,x;const z=this.chartElement.nativeElement;if((0,e.NF)(this.platformId)&&null!==z.parentNode){const J=z.parentNode.getBoundingClientRect();o=J.width,x=J.height}return o&&x?{width:o,height:x}:null}formatDates(){for(let o=0;o{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=x}cloneData(o){const x=[];for(const z of o){const J={name:z.name};if(void 0!==z.value&&(J.value=z.value),void 0!==z.series){J.series=[];for(const ke of z.series){const lt=Object.assign({},ke);J.series.push(lt)}}void 0!==z.extra&&(J.extra=JSON.parse(JSON.stringify(z.extra))),x.push(J)}return x}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(t.sBO),t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[t.TTD],decls:1,vars:0,template:function(o,x){1&o&&t._UZ(0,"div")},encapsulation:2}),m})();var Sa=(()=>{return(m=Sa||(Sa={})).Top="top",m.Bottom="bottom",m.Left="left",m.Right="right",Sa;var m})();let Ac=(()=>{class m{constructor(o){this.textHeight=25,this.margin=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Sa.Top:case Sa.Bottom:this.y=this.offset,this.x=this.width/2;break;case Sa.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Sa.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[t.TTD],attrs:Hs,decls:2,vars:6,template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"text"),t._uU(1),t.qZA()),2&o&&(t.uIk("stroke-width",x.strokeWidth)("x",x.x)("y",x.y)("text-anchor",x.textAnchor)("transform",x.transform),t.xp6(1),t.hij(" ",x.label," "))},encapsulation:2,changeDetection:0}),m})();function No(m,O=16){return"string"!=typeof m?"number"==typeof m?m+"":"":(m=m.trim()).length<=O?m:`${m.slice(0,O)}...`}function g4(m,O){if(m.length>O){const o=[],x=Math.floor(m.length/O);for(let z=0;z{return(m=Vs||(Vs={})).Start="start",m.Middle="middle",m.End="end",Vs;var m})();let C4=(()=>{class m{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.dimensionsChanged=new t.vpe,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=Vs.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,e.NF)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);o!==this.height&&(this.height=o,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const o=this.scale;this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(z){return"Date"===z.constructor.name?z.toLocaleDateString():z.toLocaleString()};const x=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(z){return this.scale(z)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",x&&0!==x?(this.textTransform=`rotate(${x})`,this.textAnchor=Vs.End,this.verticalSpacing=10):this.textAnchor=Vs.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(o){let x=0;this.maxTicksLength=0;for(let Bt=0;Btthis.maxTicksLength&&(this.maxTicksLength=xi)}const ke=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let lt=ke;const Ut=Math.floor(this.width/o.length);for(;lt>Ut&&x>-90;)x-=30,lt=Math.cos(x*(Math.PI/180))*ke;return this.approxHeight=Math.max(Math.abs(Math.sin(x*(Math.PI/180))*ke),10),x}getTicks(){let o;const x=this.getMaxTicks(20),z=this.getMaxTicks(100);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[z]):(o=this.scale.domain(),o=g4(o,x)),o}getMaxTicks(o){return Math.floor(this.width/o)}tickTransform(o){return"translate("+this.adjustedScale(o)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(o){return this.trimTicks?No(o,this.maxTickLength):o}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(o,x){if(1&o&&t.Gf(N3,5),2&o){let z;t.iGM(z=t.CRH())&&(x.ticksElement=z.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineHeight:"gridLineHeight",width:"width",rotateTicks:"rotateTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:B0,decls:4,vars:2,consts:[["ticksel",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],[1,"tick"],["stroke-width","0.01"],[4,"ngIf"],["y2","0",1,"gridline-path","gridline-path-vertical"]],template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"g",null,0),t.YNc(2,R3,5,7,"g",1),t.qZA(),t.YNc(3,H3,2,2,"g",2)),2&o&&(t.xp6(2),t.Q6J("ngForOf",x.ticks),t.xp6(1),t.Q6J("ngForOf",x.ticks))},directives:[e.sg,e.O5],encapsulation:2,changeDetection:0}),m})(),Nl=(()=>{class m{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Sa.Bottom,this.xAxisOffset=0,this.dimensionsChanged=new t.vpe,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=Sa}ngOnChanges(o){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,void 0!==this.xAxisTickCount&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:o}){const x=o+25+5;x!==this.labelOffset&&(this.labelOffset=x,setTimeout(()=>{this.dimensionsChanged.emit({height:o})},0))}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(o,x){if(1&o&&t.Gf(C4,5),2&o){let z;t.iGM(z=t.CRH())&&(x.ticksComponent=z.first)}},inputs:{xScale:"xScale",dims:"dims",trimTicks:"trimTicks",rotateTicks:"rotateTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",ticks:"ticks",xAxisTickCount:"xAxisTickCount",xOrient:"xOrient",xAxisOffset:"xAxisOffset"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:U0,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","dimensionsChanged"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"g"),t.YNc(1,ul,1,12,"g",0),t.YNc(2,ch,1,5,"g",1),t.qZA()),2&o&&(t.uIk("class",x.xAxisClassName)("transform",x.transform),t.xp6(1),t.Q6J("ngIf",x.xScale),t.xp6(1),t.Q6J("ngIf",x.showLabel))},directives:[C4,Ac,e.O5],encapsulation:2,changeDetection:0}),m})();function zs(m,O,o,x,z,[J,ke,lt,Ut]){let Bt="";return Bt=`M${[m+z,O]}`,Bt+="h"+((o=0===(o=Math.floor(o))?1:o)-2*z),Bt+=ke?`a${[z,z]} 0 0 1 ${[z,z]}`:`h${z}v${z}`,Bt+="v"+((x=0===(x=Math.floor(x))?1:x)-2*z),Bt+=Ut?`a${[z,z]} 0 0 1 ${[-z,z]}`:`v${z}h${-z}`,Bt+="h"+(2*z-o),Bt+=lt?`a${[z,z]} 0 0 1 ${[-z,-z]}`:`h${-z}v${-z}`,Bt+="v"+(2*z-x),Bt+=J?`a${[z,z]} 0 0 1 ${[z,-z]}`:`v${-z}h${z}`,Bt+="z",Bt}let Dc=(()=>{class m{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.showRefLabels=!1,this.showRefLines=!1,this.dimensionsChanged=new t.vpe,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=Vs.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Sa}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,e.NF)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);o!==this.width&&(this.width=o,this.dimensionsChanged.emit({width:o}),setTimeout(()=>this.updateDims()))}update(){let o;const x=this.orient===Sa.Top||this.orient===Sa.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,o=this.scale,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(z){return"Date"===z.constructor.name?z.toLocaleDateString():z.toLocaleString()},this.adjustedScale=o.bandwidth?function(z){return o(z)+.5*o.bandwidth()}:o,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Sa.Top:case Sa.Bottom:this.transform=function(z){return"translate("+this.adjustedScale(z)+",0)"},this.textAnchor=Vs.Middle,this.y2=this.innerTickSize*x,this.y1=this.tickSpacing*x,this.dy=x<0?"0em":".71em";break;case Sa.Left:this.transform=function(z){return"translate(0,"+this.adjustedScale(z)+")"},this.textAnchor=Vs.End,this.x2=this.innerTickSize*-x,this.x1=this.tickSpacing*-x,this.dy=".32em";break;case Sa.Right:this.transform=function(z){return"translate(0,"+this.adjustedScale(z)+")"},this.textAnchor=Vs.Start,this.x2=this.innerTickSize*-x,this.x1=this.tickSpacing*-x,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(o=>o.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(o=>o.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=zs(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let o;const x=this.getMaxTicks(20),z=this.getMaxTicks(50);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[z]):(o=this.scale.domain(),o=g4(o,x)),o}getMaxTicks(o){return Math.floor(this.height/o)}tickTransform(o){return`translate(${this.adjustedScale(o)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(o){return this.trimTicks?No(o,this.maxTickLength):o}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(z=>this.tickTrim(this.tickFormat(z)).length))}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(o,x){if(1&o&&t.Gf(N3,5),2&o){let z;t.iGM(z=t.CRH())&&(x.ticksElement=z.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineWidth:"gridLineWidth",height:"height",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:F3,decls:6,vars:4,consts:[["ticksel",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],[1,"tick"],["stroke-width","0.01"],[1,"reference-area"],[4,"ngIf"],["class","gridline-path gridline-path-horizontal","x1","0",4,"ngIf"],["x1","0",1,"gridline-path","gridline-path-horizontal"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"g",null,0),t.YNc(2,dh,5,9,"g",1),t.qZA(),t.YNc(3,hl,1,2,"path",2),t.YNc(4,z3,2,2,"g",3),t.YNc(5,d5,2,1,"g",3)),2&o&&(t.xp6(2),t.Q6J("ngForOf",x.ticks),t.xp6(1),t.Q6J("ngIf",x.referenceLineLength>1&&x.refMax&&x.refMin&&x.showRefLines),t.xp6(1),t.Q6J("ngForOf",x.ticks),t.xp6(1),t.Q6J("ngForOf",x.referenceLines))},directives:[e.sg,e.O5],encapsulation:2,changeDetection:0}),m})(),_4=(()=>{class m{constructor(){this.showGridLines=!1,this.yOrient=Sa.Left,this.yAxisOffset=0,this.dimensionsChanged=new t.vpe,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(o){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Sa.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):(this.offset=this.offset,this.transform=`translate(${this.offset} , 0)`),void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:o}){o!==this.labelOffset&&this.yOrient===Sa.Right?(this.labelOffset=o+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0)):o!==this.labelOffset&&(this.labelOffset=o,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0))}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(o,x){if(1&o&&t.Gf(Dc,5),2&o){let z;t.iGM(z=t.CRH())&&(x.ticksComponent=z.first)}},inputs:{yScale:"yScale",dims:"dims",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",ticks:"ticks",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",yAxisTickCount:"yAxisTickCount",yOrient:"yOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",yAxisOffset:"yAxisOffset"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:ml,decls:3,vars:4,consts:[["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","dimensionsChanged"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"g"),t.YNc(1,u5,1,14,"g",0),t.YNc(2,G0,1,5,"g",1),t.qZA()),2&o&&(t.uIk("class",x.yAxisClassName)("transform",x.transform),t.xp6(1),t.Q6J("ngIf",x.yScale),t.xp6(1),t.Q6J("ngIf",x.showLabel))},directives:[Dc,Ac,e.O5],encapsulation:2,changeDetection:0}),m})(),Ic=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[e.ez]]}),m})();var a1=(()=>{return(m=a1||(a1={})).popover="popover",m.tooltip="tooltip",a1;var m})(),Ro=(()=>{return(m=Ro||(Ro={}))[m.all="all"]="all",m[m.focus="focus"]="focus",m[m.mouseover="mouseover"]="mouseover",Ro;var m})();let v4=(()=>{class m{constructor(o,x,z){this.tooltipService=o,this.viewContainerRef=x,this.renderer=z,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=Jn.Top,this.tooltipAlignment=Jn.Center,this.tooltipType=a1.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=Ro.all,this.tooltipImmediateExit=!1,this.show=new t.vpe,this.hide=new t.vpe}get listensForFocus(){return this.tooltipShowEvent===Ro.all||this.tooltipShowEvent===Ro.focus}get listensForHover(){return this.tooltipShowEvent===Ro.all||this.tooltipShowEvent===Ro.mouseover}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(o){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(o))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(o){if(this.component||this.tooltipDisabled)return;const x=o?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?300:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const z=this.createBoundOptions();this.component=this.tooltipService.create(z),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},x)}addHideListeners(o){this.mouseEnterContentEvent=this.renderer.listen(o,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(o,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",x=>{o.contains(x.target)||this.hideTooltip()}))}hideTooltip(o=!1){if(!this.component)return;const x=()=>{this.mouseLeaveContentEvent&&this.mouseLeaveContentEvent(),this.mouseEnterContentEvent&&this.mouseEnterContentEvent(),this.documentClickEvent&&this.documentClickEvent(),this.hide.emit(!0),this.tooltipService.destroy(this.component),this.component=void 0};clearTimeout(this.timeout),o?x():this.timeout=setTimeout(x,this.tooltipHideTimeout)}createBoundOptions(){return{title:this.tooltipTitle,template:this.tooltipTemplate,host:this.viewContainerRef.element,placement:this.tooltipPlacement,alignment:this.tooltipAlignment,type:this.tooltipType,showCaret:this.tooltipShowCaret,cssClass:this.tooltipCssClass,spacing:this.tooltipSpacing,context:this.tooltipContext}}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(f4),t.Y36(t.s_b),t.Y36(t.Qsj))},m.\u0275dir=t.lG2({type:m,selectors:[["","ngx-tooltip",""]],hostBindings:function(o,x){1&o&&t.NdJ("focusin",function(){return x.onFocus()})("blur",function(){return x.onBlur()})("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(J){return x.onMouseLeave(J.target)})("click",function(){return x.onMouseClick()})},inputs:{tooltipCssClass:"tooltipCssClass",tooltipTitle:"tooltipTitle",tooltipAppendToBody:"tooltipAppendToBody",tooltipSpacing:"tooltipSpacing",tooltipDisabled:"tooltipDisabled",tooltipShowCaret:"tooltipShowCaret",tooltipPlacement:"tooltipPlacement",tooltipAlignment:"tooltipAlignment",tooltipType:"tooltipType",tooltipCloseOnClickOutside:"tooltipCloseOnClickOutside",tooltipCloseOnMouseLeave:"tooltipCloseOnMouseLeave",tooltipHideTimeout:"tooltipHideTimeout",tooltipShowTimeout:"tooltipShowTimeout",tooltipTemplate:"tooltipTemplate",tooltipShowEvent:"tooltipShowEvent",tooltipContext:"tooltipContext",tooltipImmediateExit:"tooltipImmediateExit"},outputs:{show:"show",hide:"hide"}}),m})(),Oc=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({providers:[h4,f4],imports:[[e.ez]]}),m})();const y4={};function x2(){let m=("0000"+(Math.random()*Math.pow(36,4)<<0).toString(36)).slice(-4);return m=`a${m}`,y4[m]?x2():(y4[m]=!0,m)}var ra=(()=>{return(m=ra||(ra={})).Vertical="vertical",m.Horizontal="horizontal",ra;var m})();let E1=(()=>{class m{constructor(){this.orientation=ra.Vertical}ngOnChanges(o){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===ra.Horizontal?this.x2="100%":this.orientation===ra.Vertical&&(this.y1="100%")}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[t.TTD],attrs:hh,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"linearGradient",0),t.YNc(1,Z0,1,5,"stop",1),t.qZA()),2&o&&(t.Q6J("id",x.name),t.uIk("x1",x.x1)("y1",x.y1)("x2",x.x2)("y2",x.y2),t.xp6(1),t.Q6J("ngForOf",x.stops))},directives:[e.sg],encapsulation:2,changeDetection:0}),m})(),kc=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:mh,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(o,x){1&o&&(t.O4$(),t._UZ(0,"rect",0)),2&o&&t.uIk("height",x.height)("width",x.width)("x",x.x)("y",x.y)},encapsulation:2,changeDetection:0}),m})();var M2=(()=>{return(m=M2||(M2={})).Odd="odd",m.Even="even",M2;var m})();let L2,T1=(()=>{class m{ngOnChanges(o){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(o=>{let x,z,J,ke,lt,Ut=M2.Odd;if(this.orient===ra.Vertical){const Bt=this.xScale(o.name);Number.parseInt((Bt/this.xScale.step()).toString(),10)%2==1&&(Ut=M2.Even),x=this.xScale.bandwidth()*this.xScale.paddingInner(),z=this.xScale.bandwidth()+x,J=this.dims.height,ke=this.xScale(o.name)-x/2,lt=0}else if(this.orient===ra.Horizontal){const Bt=this.yScale(o.name);Number.parseInt((Bt/this.yScale.step()).toString(),10)%2==1&&(Ut=M2.Even),x=this.yScale.bandwidth()*this.yScale.paddingInner(),z=this.dims.width,J=this.yScale.bandwidth()+x,ke=0,lt=this.yScale(o.name)-x/2}return{name:o.name,class:Ut,height:J,width:z,x:ke,y:lt}})}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[t.TTD],attrs:h5,decls:1,vars:1,consts:[["ngx-charts-grid-panel","",3,"height","width","x","y","grid-panel","odd","even",4,"ngFor","ngForOf"],["ngx-charts-grid-panel","",3,"height","width","x","y"]],template:function(o,x){1&o&&t.YNc(0,gh,1,10,"g",0),2&o&&t.Q6J("ngForOf",x.gridPanels)},directives:[kc,e.sg],encapsulation:2,changeDetection:0}),m})();"undefined"!=typeof window?L2=window:"undefined"!=typeof global&&(L2=global);let ys=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[e.ez,Ic,Oc],e.ez,Ic,Oc]}),m})();function zl({width:m,height:O,margins:o,showXAxis:x=!1,showYAxis:z=!1,xAxisHeight:J=0,yAxisWidth:ke=0,showXLabel:lt=!1,showYLabel:Ut=!1,showLegend:Bt=!1,legendType:ci=En.Ordinal,legendPosition:xi=Zs.Right,columns:Mi=12}){let Ai=o[3],nn=m,yn=O-o[0]-o[2];return Bt&&xi===Zs.Right&&(Mi-=ci===En.Ordinal?2:1),nn=nn*Mi/12,nn=nn-o[1]-o[3],x&&(yn-=5,yn-=J,lt&&(yn-=30)),z&&(nn-=5,nn-=ke,Ai+=ke,Ai+=10,Ut&&(nn-=30,Ai+=30)),nn=Math.max(0,nn),yn=Math.max(0,yn),{width:Math.floor(nn),height:Math.floor(yn),xOffset:Math.floor(Ai)}}let S4=[{name:"vivid",selectable:!0,group:En.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:En.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:En.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:En.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:En.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:En.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:En.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:En.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:En.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:En.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:En.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:En.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:En.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:En.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:En.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class S2{constructor(O,o,x,z){"string"==typeof O&&(O=S4.find(J=>J.name===O)),this.colorDomain=O.domain,this.scaleType=o,this.domain=x,this.customColors=z,this.scale=this.generateColorScheme(O,o,this.domain)}generateColorScheme(O,o,x){let z;switch("string"==typeof O&&(O=S4.find(J=>J.name===O)),o){case En.Quantile:z=R0().range(O.domain).domain(x);break;case En.Ordinal:z=P3().range(O.domain).domain(x);break;case En.Linear:{const J=[...O.domain];1===J.length&&(J.push(J[0]),this.colorDomain=J);const ke=N0(0,1,1/J.length);z=Oo().range(J).domain(ke)}}return z}getColor(O){if(null==O)throw new Error("Value can not be null");if(this.scaleType===En.Linear){const o=Oo().domain(this.domain).range([0,1]);return this.scale(o(O))}{if("function"==typeof this.customColors)return this.customColors(O);const o=O.toString();let x;return this.customColors&&this.customColors.length>0&&(x=this.customColors.find(z=>z.name.toLowerCase()===o.toLowerCase())),x?x.value:this.scale(O)}}getLinearGradientStops(O,o){void 0===o&&(o=this.domain[0]);const x=Oo().domain(this.domain).range([0,1]),z=y1().domain(this.colorDomain).range([0,1]),J=this.getColor(O),ke=x(o),lt=this.getColor(o),Ut=x(O);let Bt=1,ci=ke;const xi=[];for(xi.push({color:lt,offset:ke,originalOffset:ke,opacity:1});ci=(Ut-z.bandwidth()).toFixed(4))break;xi.push({color:Mi,offset:Ai,opacity:1}),ci=Ai,Bt++}}if(xi[xi.length-1].offset<100&&xi.push({color:J,offset:Ut,opacity:1}),Ut===ke)xi[0].offset=0,xi[1].offset=100;else if(100!==xi[xi.length-1].offset)for(const Mi of xi)Mi.offset=(Mi.offset-ke)/(Ut-ke)*100;return xi}}let Bl=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),Vc=(()=>{class m{constructor(o){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new t.vpe,this.activate=new t.vpe,this.deactivate=new t.vpe,this.hasGradient=!1,this.hideBar=!1,this.element=o.nativeElement}ngOnChanges(o){o.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+x2().toString(),this.gradientFill=`url(#${this.gradientId})`,this.gradient||this.stops?(this.gradientStops=this.getGradient(),this.hasGradient=!0):this.hasGradient=!1,this.updatePathEl(),this.checkToHideBar()}loadAnimation(){this.path=this.getStartingPath(),setTimeout(this.update.bind(this),100)}updatePathEl(){const o=function sn(m){return"string"==typeof m?new bi([[document.querySelector(m)]],[document.documentElement]):new bi([[m]],zt)}(this.element).select(".bar"),x=this.getPath();this.animations?o.transition().duration(500).attr("d",x):o.attr("d",x)}getGradient(){return this.stops?this.stops:[{offset:0,color:this.fill,opacity:this.getStartOpacity()},{offset:100,color:this.fill,opacity:1}]}getStartingPath(){if(!this.animations)return this.getPath();let x,o=this.getRadius();return this.roundEdges?this.orientation===ra.Vertical?(o=Math.min(this.height,o),x=zs(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===ra.Horizontal&&(o=Math.min(this.width,o),x=zs(this.x,this.y,1,this.height,0,this.edges)):this.orientation===ra.Vertical?x=zs(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===ra.Horizontal&&(x=zs(this.x,this.y,1,this.height,0,this.edges)),x}getPath(){let x,o=this.getRadius();return this.roundEdges?this.orientation===ra.Vertical?(o=Math.min(this.height,o),x=zs(this.x,this.y,this.width,this.height,o,this.edges)):this.orientation===ra.Horizontal&&(o=Math.min(this.width,o),x=zs(this.x,this.y,this.width,this.height,o,this.edges)):x=zs(this.x,this.y,this.width,this.height,o,this.edges),x}getRadius(){let o=0;return this.roundEdges&&this.height>5&&this.width>5&&(o=Math.floor(Math.min(5,this.height/2,this.width/2))),o}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let o=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===ra.Vertical?o=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===ra.Horizontal&&(o=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),o}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===ra.Vertical&&0===this.height||this.orientation===ra.Horizontal&&0===this.width)}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(o,x){1&o&&t.NdJ("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(){return x.onMouseLeave()})},inputs:{fill:"fill",data:"data",width:"width",height:"height",x:"x",y:"y",orientation:"orientation",roundEdges:"roundEdges",gradient:"gradient",offset:"offset",isActive:"isActive",stops:"stops",animations:"animations",ariaLabel:"ariaLabel",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate"},features:[t.TTD],attrs:M5,decls:2,vars:8,consts:[[4,"ngIf"],["stroke","none","role","img","tabIndex","-1",1,"bar",3,"click"],["ngx-charts-svg-linear-gradient","",3,"orientation","name","stops"]],template:function(o,x){1&o&&(t.YNc(0,_s,2,3,"defs",0),t.O4$(),t.TgZ(1,"path",1),t.NdJ("click",function(){return x.select.emit(x.data)}),t.qZA()),2&o&&(t.Q6J("ngIf",x.hasGradient),t.xp6(1),t.ekj("active",x.isActive)("hidden",x.hideBar),t.uIk("d",x.path)("aria-label",x.ariaLabel)("fill",x.hasGradient?x.gradientFill:x.fill))},directives:[E1,e.O5],encapsulation:2,changeDetection:0}),m})();var Ws=(()=>{return(m=Ws||(Ws={})).Standard="standard",m.Normalized="normalized",m.Stacked="stacked",Ws;var m})(),bo=(()=>{return(m=bo||(bo={})).positive="positive",m.negative="negative",bo;var m})();let zc=(()=>{class m{constructor(o){this.dimensionsChanged=new t.vpe,this.horizontalPadding=2,this.verticalPadding=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}getSize(){return{height:this.element.getBoundingClientRect().height,width:this.element.getBoundingClientRect().width,negative:this.value<0}}ngAfterViewInit(){this.dimensionsChanged.emit(this.getSize())}update(){this.formatedValue=this.valueFormatting?this.valueFormatting(this.value):v2(this.value),"horizontal"===this.orientation?(this.x=this.barX+this.barWidth,this.value<0?(this.x=this.x-this.horizontalPadding,this.textAnchor="end"):(this.x=this.x+this.horizontalPadding,this.textAnchor="start"),this.y=this.barY+this.barHeight/2):(this.x=this.barX+this.barWidth/2,this.y=this.barY+this.barHeight,this.value<0?(this.y=this.y+this.verticalPadding,this.textAnchor="end"):(this.y=this.y-this.verticalPadding,this.textAnchor="start"),this.transform=`rotate(-45, ${this.x} , ${this.y})`)}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.SBq))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[t.TTD],attrs:w5,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(o,x){1&o&&(t.O4$(),t.TgZ(0,"text",0),t._uU(1),t.qZA()),2&o&&(t.uIk("text-anchor",x.textAnchor)("transform",x.transform)("x",x.x)("y",x.y),t.xp6(1),t.hij(" ",x.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),m})(),Bc=(()=>{class m{constructor(o){this.platformId=o,this.type=Ws.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new t.vpe,this.activate=new t.vpe,this.deactivate=new t.vpe,this.dataLabelHeightChanged=new t.vpe,this.barsForDataLabels=[],this.barOrientation=ra,this.isSSR=!1}ngOnInit(){(0,e.PM)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(o){this.update()}update(){let o;this.updateTooltipSettings(),this.series.length&&(o=this.xScale.bandwidth()),o=Math.round(o);const x=Math.max(this.yScale.domain()[0],0),z={[bo.positive]:0,[bo.negative]:0};let ke,J=bo.positive;this.type===Ws.Normalized&&(ke=this.series.map(lt=>lt.value).reduce((lt,Ut)=>lt+Ut,0)),this.bars=this.series.map((lt,Ut)=>{let Bt=lt.value;const ci=this.getLabel(lt),xi=v2(ci);J=Bt>0?bo.positive:bo.negative;const Ai={value:Bt,label:ci,roundEdges:this.roundEdges,data:lt,width:o,formattedLabel:xi,height:0,x:0,y:0};if(this.type===Ws.Standard)Ai.height=Math.abs(this.yScale(Bt)-this.yScale(x)),Ai.x=this.xScale(ci),Ai.y=this.yScale(Bt<0?0:Bt);else if(this.type===Ws.Stacked){const yn=z[J],Ii=yn+Bt;z[J]+=Bt,Ai.height=this.yScale(yn)-this.yScale(Ii),Ai.x=0,Ai.y=this.yScale(Ii),Ai.offset0=yn,Ai.offset1=Ii}else if(this.type===Ws.Normalized){let yn=z[J],Ii=yn+Bt;z[J]+=Bt,ke>0?(yn=100*yn/ke,Ii=100*Ii/ke):(yn=0,Ii=0),Ai.height=this.yScale(yn)-this.yScale(Ii),Ai.x=0,Ai.y=this.yScale(Ii),Ai.offset0=yn,Ai.offset1=Ii,Bt=(Ii-yn).toFixed(2)+"%"}this.colors.scaleType===En.Ordinal?Ai.color=this.colors.getColor(ci):this.type===Ws.Standard?(Ai.color=this.colors.getColor(Bt),Ai.gradientStops=this.colors.getLinearGradientStops(Bt)):(Ai.color=this.colors.getColor(Ai.offset1),Ai.gradientStops=this.colors.getLinearGradientStops(Ai.offset1,Ai.offset0));let nn=xi;return Ai.ariaLabel=xi+" "+Bt.toLocaleString(),null!=this.seriesName&&(nn=`${this.seriesName} \u2022 ${xi}`,Ai.data.series=this.seriesName,Ai.ariaLabel=this.seriesName+" "+Ai.ariaLabel),Ai.tooltipText=this.tooltipDisabled?void 0:`\n ${function y2(m){return m.toLocaleString().replace(/[&'`"<>]/g,O=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[O]))}(nn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Bt):Bt.toLocaleString()}\n `,Ai}),this.updateDataLabels()}updateDataLabels(){if(this.type===Ws.Stacked){this.barsForDataLabels=[];const o={};o.series=this.seriesName;const x=this.series.map(J=>J.value).reduce((J,ke)=>ke>0?J+ke:J,0),z=this.series.map(J=>J.value).reduce((J,ke)=>ke<0?J+ke:J,0);o.total=x+z,o.x=0,o.y=0,o.height=this.yScale(o.total>0?x:z),o.width=this.xScale.bandwidth(),this.barsForDataLabels.push(o)}else this.barsForDataLabels=this.series.map(o=>{var x;const z={};return z.series=null!==(x=this.seriesName)&&void 0!==x?x:o.label,z.total=o.value,z.x=this.xScale(o.label),z.y=this.yScale(0),z.height=this.yScale(z.total)-this.yScale(0),z.width=this.xScale.bandwidth(),z})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:Jn.Top,this.tooltipType=this.tooltipDisabled?void 0:a1.tooltip}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(z=>o.name===z.name&&o.value===z.value)}onClick(o){this.select.emit(o)}getLabel(o){return o.label?o.label:o.name}trackBy(o,x){return x.label}trackDataLabelBy(o,x){return o+"#"+x.series+"#"+x.total}}return m.\u0275fac=function(o){return new(o||m)(t.Y36(t.Lbi))},m.\u0275cmp=t.Xpm({type:m,selectors:[["g","ngx-charts-series-vertical",""]],inputs:{dims:"dims",type:"type",series:"series",xScale:"xScale",yScale:"yScale",colors:"colors",gradient:"gradient",activeEntries:"activeEntries",seriesName:"seriesName",tooltipDisabled:"tooltipDisabled",tooltipTemplate:"tooltipTemplate",roundEdges:"roundEdges",animations:"animations",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",dataLabelHeightChanged:"dataLabelHeightChanged"},features:[t.TTD],attrs:J3,decls:3,vars:3,consts:[[4,"ngIf"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged"]],template:function(o,x){1&o&&(t.YNc(0,lc,2,2,"g",0),t.YNc(1,xl,2,2,"g",0),t.YNc(2,cc,2,2,"g",0)),2&o&&(t.Q6J("ngIf",!x.isSSR),t.xp6(1),t.Q6J("ngIf",x.isSSR),t.xp6(1),t.Q6J("ngIf",x.showDataLabel))},directives:[Vc,zc,e.O5,e.sg,v4],encapsulation:2,data:{animation:[(0,d.X$)("animationState",[(0,d.eR)(":leave",[(0,d.oB)({opacity:1}),(0,d.jt)(500,(0,d.oB)({opacity:0}))])])]},changeDetection:0}),m})(),Id=(()=>{class m extends Pl{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Zs.Right,this.tooltipDisabled=!1,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.activate=new t.vpe,this.deactivate=new t.vpe,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0}}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=zl({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.formatDates(),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.xScale=this.getXScale(),this.yScale=this.getYScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}getXScale(){this.xDomain=this.getXDomain();const o=this.xDomain.length/(this.dims.width/this.barPadding+1);return y1().range([0,this.dims.width]).paddingInner(o).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const o=Oo().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?o.nice():o}getXDomain(){return this.results.map(o=>o.label)}getYDomain(){const o=this.results.map(J=>J.value);let x=this.yScaleMin?Math.min(this.yScaleMin,...o):Math.min(0,...o);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(x=Math.min(x,...this.yAxisTicks));let z=this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(z=Math.max(z,...this.yAxisTicks)),[x,z]}onClick(o){this.select.emit(o)}setColors(){let o;o=this.schemeType===En.Ordinal?this.xDomain:this.yDomain,this.colors=new S2(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===En.Ordinal?(o.domain=this.xDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.yDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onDataLabelMaxHeightChanged(o){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),o.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(o,x=!1){o=this.results.find(J=>x?J.label===o.name:J.name===o.name),!(this.activeEntries.findIndex(J=>J.name===o.name&&J.value===o.value&&J.series===o.series)>-1)&&(this.activeEntries=[o,...this.activeEntries],this.activate.emit({value:o,entries:this.activeEntries}))}onDeactivate(o,x=!1){o=this.results.find(J=>x?J.label===o.name:J.name===o.name);const z=this.activeEntries.findIndex(J=>J.name===o.name&&J.value===o.value&&J.series===o.series);this.activeEntries.splice(z,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:o,entries:this.activeEntries})}}return m.\u0275fac=function(){let O;return function(x){return(O||(O=t.n5z(m)))(x||m)}}(),m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(o,x,z){if(1&o&&t.Suo(z,K0,5),2&o){let J;t.iGM(J=t.CRH())&&(x.tooltipTemplate=J.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{activate:"activate",deactivate:"deactivate"},features:[t.qOj],decls:5,vars:25,consts:[[3,"view","showLegend","legendOptions","activeEntries","animations","legendLabelClick","legendLabelActivate","legendLabelDeactivate"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero","activate","deactivate","select","dataLabelHeightChanged"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged"]],template:function(o,x){1&o&&(t.TgZ(0,"ngx-charts-chart",0),t.NdJ("legendLabelClick",function(J){return x.onClick(J)})("legendLabelActivate",function(J){return x.onActivate(J,!0)})("legendLabelDeactivate",function(J){return x.onDeactivate(J,!0)}),t.O4$(),t.TgZ(1,"g",1),t.YNc(2,bl,1,11,"g",2),t.YNc(3,Ml,1,9,"g",3),t.TgZ(4,"g",4),t.NdJ("activate",function(J){return x.onActivate(J)})("deactivate",function(J){return x.onDeactivate(J)})("select",function(J){return x.onClick(J)})("dataLabelHeightChanged",function(J){return x.onDataLabelMaxHeightChanged(J)}),t.qZA()()()),2&o&&(t.Q6J("view",t.WLB(22,Gs,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),t.xp6(1),t.uIk("transform",x.transform),t.xp6(1),t.Q6J("ngIf",x.xAxis),t.xp6(1),t.Q6J("ngIf",x.yAxis),t.xp6(1),t.Q6J("xScale",x.xScale)("yScale",x.yScale)("colors",x.colors)("series",x.results)("dims",x.dims)("gradient",x.gradient)("tooltipDisabled",x.tooltipDisabled)("tooltipTemplate",x.tooltipTemplate)("showDataLabel",x.showDataLabel)("dataLabelFormatting",x.dataLabelFormatting)("activeEntries",x.activeEntries)("roundEdges",x.roundEdges)("animations",x.animations)("noBarWhenZero",x.noBarWhenZero))},directives:[p4,Nl,_4,Bc,e.O5],styles:[$0],encapsulation:2,changeDetection:0}),m})(),Uc=(()=>{class m extends Pl{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Zs.Right,this.tooltipDisabled=!1,this.scaleType=En.Ordinal,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.groupPadding=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.activate=new t.vpe,this.deactivate=new t.vpe,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=ra,this.trackBy=(o,x)=>x.name}ngOnInit(){(0,e.PM)(this.platformId)&&(this.isSSR=!0)}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=zl({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.formatDates(),this.groupDomain=this.getGroupDomain(),this.innerDomain=this.getInnerDomain(),this.valueDomain=this.getValueDomain(),this.groupScale=this.getGroupScale(),this.innerScale=this.getInnerScale(),this.valueScale=this.getValueScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}onDataLabelMaxHeightChanged(o,x){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),x===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const o=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return y1().rangeRound([0,this.dims.width]).paddingInner(o).paddingOuter(o/2).domain(this.groupDomain)}getInnerScale(){const o=this.groupScale.bandwidth(),x=this.innerDomain.length/(o/this.barPadding+1);return y1().rangeRound([0,o]).paddingInner(x).domain(this.innerDomain)}getValueScale(){const o=Oo().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?o.nice():o}getGroupDomain(){const o=[];for(const x of this.results)o.includes(x.label)||o.push(x.label);return o}getInnerDomain(){const o=[];for(const x of this.results)for(const z of x.series)o.includes(z.label)||o.push(z.label);return o}getValueDomain(){const o=[];for(const J of this.results)for(const ke of J.series)o.includes(ke.value)||o.push(ke.value);return[Math.min(0,...o),this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o)]}groupTransform(o){return`translate(${this.groupScale(o.label)}, 0)`}onClick(o,x){x&&(o.series=x.name),this.select.emit(o)}setColors(){let o;o=this.schemeType===En.Ordinal?this.innerDomain:this.valueDomain,this.colors=new S2(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===En.Ordinal?(o.domain=this.innerDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.valueDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onActivate(o,x,z=!1){const J=Object.assign({},o);x&&(J.series=x.name);const ke=this.results.map(lt=>lt.series).flat().filter(lt=>z?lt.label===J.name:lt.name===J.name&<.series===J.series);this.activeEntries=[...ke],this.activate.emit({value:J,entries:this.activeEntries})}onDeactivate(o,x,z=!1){const J=Object.assign({},o);x&&(J.series=x.name),this.activeEntries=this.activeEntries.filter(ke=>z?ke.label!==J.name:!(ke.name===J.name&&ke.series===J.series)),this.deactivate.emit({value:J,entries:this.activeEntries})}}return m.\u0275fac=function(){let O;return function(x){return(O||(O=t.n5z(m)))(x||m)}}(),m.\u0275cmp=t.Xpm({type:m,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(o,x,z){if(1&o&&t.Suo(z,K0,5),2&o){let J;t.iGM(J=t.CRH())&&(x.tooltipTemplate=J.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",scaleType:"scaleType",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",groupPadding:"groupPadding",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{activate:"activate",deactivate:"deactivate"},features:[t.qOj],decls:7,vars:18,consts:[[3,"view","showLegend","legendOptions","activeEntries","animations","legendLabelActivate","legendLabelDeactivate","legendLabelClick"],[1,"bar-chart","chart"],["ngx-charts-grid-panel-series","",3,"xScale","yScale","data","dims","orient"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","dimensionsChanged"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","dimensionsChanged"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged"]],template:function(o,x){1&o&&(t.TgZ(0,"ngx-charts-chart",0),t.NdJ("legendLabelActivate",function(J){return x.onActivate(J,void 0,!0)})("legendLabelDeactivate",function(J){return x.onDeactivate(J,void 0,!0)})("legendLabelClick",function(J){return x.onClick(J)}),t.O4$(),t.TgZ(1,"g",1),t._UZ(2,"g",2),t.YNc(3,H5,1,10,"g",3),t.YNc(4,wl,1,9,"g",4),t.YNc(5,$3,2,2,"g",5),t.qZA(),t.YNc(6,F5,2,2,"g",5),t.qZA()),2&o&&(t.Q6J("view",t.WLB(15,Gs,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),t.xp6(1),t.uIk("transform",x.transform),t.xp6(1),t.Q6J("xScale",x.groupScale)("yScale",x.valueScale)("data",x.results)("dims",x.dims)("orient",x.barOrientation.Vertical),t.xp6(1),t.Q6J("ngIf",x.xAxis),t.xp6(1),t.Q6J("ngIf",x.yAxis),t.xp6(1),t.Q6J("ngIf",!x.isSSR),t.xp6(1),t.Q6J("ngIf",x.isSSR))},directives:[p4,T1,Nl,_4,Bc,e.O5,e.sg],styles:[$0],encapsulation:2,data:{animation:[(0,d.X$)("animationState",[(0,d.eR)(":leave",[(0,d.oB)({opacity:1,transform:"*"}),(0,d.jt)(500,(0,d.oB)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),m})(),T4=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),kd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),Nd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),qh=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),I4=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})();Math;let Gl=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),zd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys,Gl,I4]]}),m})(),N4=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),$c=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys]]}),m})(),jd=(()=>{class m{}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[[ys,Gl,T4]]}),m})(),Kd=(()=>{class m{constructor(){!function R4(){"undefined"!=typeof SVGElement&&void 0===SVGElement.prototype.contains&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return m.\u0275fac=function(o){return new(o||m)},m.\u0275mod=t.oAB({type:m}),m.\u0275inj=t.cJS({imports:[ys,Bl,T4,kd,Nd,qh,I4,zd,N4,Gl,$c,jd]}),m})()},159:(Ve,j,p)=>{"use strict";p.d(j,{OF:()=>A,uU:()=>h});var t=p(5e3),e=p(9808),f=p(655),M=p(3259);function a(w,D){if(1&w&&t._UZ(0,"canvas",1),2&w){const L=t.oxw();t.Q6J("qrCode",L.value)("qrCodeErrorCorrectionLevel",L.errorCorrectionLevel)("qrCodeCenterImageSrc",L.centerImageSrc)("qrCodeCenterImageWidth",L.centerImageSize)("qrCodeCenterImageHeight",L.centerImageSize)("qrCodeMargin",L.margin)("width",L.size)("height",L.size)("darkColor",L.darkColor)("lightColor",L.lightColor)}}const b=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let d=(()=>{class w{constructor(L){this.viewContainerRef=L,this.errorCorrectionLevel=w.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var L,k;return(0,f.mG)(this,void 0,void 0,function*(){if(!this.value)return;this.version&&this.version>40?(console.warn("[qrCode] max version is 40, clamping"),this.version=40):this.version&&this.version<1?(console.warn("[qrCode] min version is 1, clamping"),this.version=1):void 0!==this.version&&isNaN(this.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),this.version=void 0);const S=this.viewContainerRef.element.nativeElement;if(!S)return;const U=S.getContext("2d");U&&U.clearRect(0,0,U.canvas.width,U.canvas.height);const Z=null!==(L=this.errorCorrectionLevel)&&void 0!==L?L:w.DEFAULT_ERROR_CORRECTION_LEVEL,Y=b.test(this.darkColor)?this.darkColor:void 0,ne=b.test(this.lightColor)?this.lightColor:void 0;(0,t.X6Q)()&&(!Y&&this.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!ne&&this.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield M.toCanvas(S,this.value,{version:this.version,errorCorrectionLevel:Z,width:this.width,margin:this.margin,color:{dark:Y,light:ne}});const $=this.centerImageSrc,de=N(this.centerImageWidth,w.DEFAULT_CENTER_IMAGE_SIZE),te=N(this.centerImageHeight,w.DEFAULT_CENTER_IMAGE_SIZE);if($&&U){this.centerImage||(this.centerImage=new Image(de,te)),$!==(null===(k=this.centerImage)||void 0===k?void 0:k.src)&&(this.centerImage.src=$),de!==this.centerImage.width&&(this.centerImage.width=de),te!==this.centerImage.height&&(this.centerImage.height=te);const ie=this.centerImage;ie.onload=()=>{U.drawImage(ie,S.width/2-de/2,S.height/2-te/2,de,te)}}})}}return w.DEFAULT_ERROR_CORRECTION_LEVEL="M",w.DEFAULT_CENTER_IMAGE_SIZE=40,w.\u0275fac=function(L){return new(L||w)(t.Y36(t.s_b))},w.\u0275dir=t.lG2({type:w,selectors:[["canvas","qrCode",""]],inputs:{value:["qrCode","value"],version:["qrCodeVersion","version"],errorCorrectionLevel:["qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:["qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:["qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:["qrCodeCenterImageHeight","centerImageHeight"],margin:["qrCodeMargin","margin"]},features:[t.TTD]}),w})();function N(w,D){return void 0===w||""===w?D:"string"==typeof w?parseInt(w,10):w}let h=(()=>{class w{}return w.\u0275fac=function(L){return new(L||w)},w.\u0275cmp=t.Xpm({type:w,selectors:[["qr-code"]],inputs:{value:"value",size:"size",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","darkColor","lightColor",4,"ngIf"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","darkColor","lightColor"]],template:function(L,k){1&L&&t.YNc(0,a,1,10,"canvas",0),2&L&&t.Q6J("ngIf",k.value)},directives:[e.O5,d],encapsulation:2}),w})(),A=(()=>{class w{}return w.\u0275fac=function(L){return new(L||w)},w.\u0275mod=t.oAB({type:w}),w.\u0275inj=t.cJS({imports:[[e.ez]]}),w})()},8129:(Ve,j,p)=>{"use strict";p.d(j,{op:()=>ei,$V:()=>be,Xd:()=>Ht});var t=p(7579),e=p(4968),f=p(3601),M=p(2722),a=p(5e3),b=p(9808);function d(it){return getComputedStyle(it)}function N(it,Re){for(var tt in Re){var Xe=Re[tt];"number"==typeof Xe&&(Xe+="px"),it.style[tt]=Xe}return it}function h(it){var Re=document.createElement("div");return Re.className=it,Re}var A="undefined"!=typeof Element&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function w(it,Re){if(!A)throw new Error("No element matching method supported");return A.call(it,Re)}function D(it){it.remove?it.remove():it.parentNode&&it.parentNode.removeChild(it)}function L(it,Re){return Array.prototype.filter.call(it.children,function(tt){return w(tt,Re)})}var k_element_thumb=function(it){return"ps__thumb-"+it},k_element_rail=function(it){return"ps__rail-"+it},k_element_consuming="ps__child--consume",k_state_focus="ps--focus",k_state_clicking="ps--clicking",k_state_active=function(it){return"ps--active-"+it},k_state_scrolling=function(it){return"ps--scrolling-"+it},S={x:null,y:null};function U(it,Re){var tt=it.element.classList,Xe=k_state_scrolling(Re);tt.contains(Xe)?clearTimeout(S[Re]):tt.add(Xe)}function Z(it,Re){S[Re]=setTimeout(function(){return it.isAlive&&it.element.classList.remove(k_state_scrolling(Re))},it.settings.scrollingThreshold)}var ne=function(Re){this.element=Re,this.handlers={}},$={isEmpty:{configurable:!0}};ne.prototype.bind=function(Re,tt){void 0===this.handlers[Re]&&(this.handlers[Re]=[]),this.handlers[Re].push(tt),this.element.addEventListener(Re,tt,!1)},ne.prototype.unbind=function(Re,tt){var Xe=this;this.handlers[Re]=this.handlers[Re].filter(function(Se){return!(!tt||Se===tt)||(Xe.element.removeEventListener(Re,Se,!1),!1)})},ne.prototype.unbindAll=function(){for(var Re in this.handlers)this.unbind(Re)},$.isEmpty.get=function(){var it=this;return Object.keys(this.handlers).every(function(Re){return 0===it.handlers[Re].length})},Object.defineProperties(ne.prototype,$);var de=function(){this.eventElements=[]};function te(it){if("function"==typeof window.CustomEvent)return new CustomEvent(it);var Re=document.createEvent("CustomEvent");return Re.initCustomEvent(it,!1,!1,void 0),Re}function ie(it,Re,tt,Xe,Se){var Ge;if(void 0===Xe&&(Xe=!0),void 0===Se&&(Se=!1),"top"===Re)Ge=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==Re)throw new Error("A proper axis should be provided");Ge=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function oe(it,Re,tt,Xe,Se){var Ge=tt[0],at=tt[1],st=tt[2],bt=tt[3],gi=tt[4],qt=tt[5];void 0===Xe&&(Xe=!0),void 0===Se&&(Se=!1);var Xt=it.element;it.reach[bt]=null,Xt[st]<1&&(it.reach[bt]="start"),Xt[st]>it[Ge]-it[at]-1&&(it.reach[bt]="end"),Re&&(Xt.dispatchEvent(te("ps-scroll-"+bt)),Re<0?Xt.dispatchEvent(te("ps-scroll-"+gi)):Re>0&&Xt.dispatchEvent(te("ps-scroll-"+qt)),Xe&&function Y(it,Re){U(it,Re),Z(it,Re)}(it,bt)),it.reach[bt]&&(Re||Se)&&Xt.dispatchEvent(te("ps-"+bt+"-reach-"+it.reach[bt]))}(it,tt,Ge,Xe,Se)}function X(it){return parseInt(it,10)||0}de.prototype.eventElement=function(Re){var tt=this.eventElements.filter(function(Xe){return Xe.element===Re})[0];return tt||(tt=new ne(Re),this.eventElements.push(tt)),tt},de.prototype.bind=function(Re,tt,Xe){this.eventElement(Re).bind(tt,Xe)},de.prototype.unbind=function(Re,tt,Xe){var Se=this.eventElement(Re);Se.unbind(tt,Xe),Se.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(Se),1)},de.prototype.unbindAll=function(){this.eventElements.forEach(function(Re){return Re.unbindAll()}),this.eventElements=[]},de.prototype.once=function(Re,tt,Xe){var Se=this.eventElement(Re),Ge=function(at){Se.unbind(tt,Ge),Xe(at)};Se.bind(tt,Ge)};var i={isWebKit:"undefined"!=typeof document&&"WebkitAppearance"in document.documentElement.style,supportsTouch:"undefined"!=typeof window&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:"undefined"!=typeof navigator&&navigator.msMaxTouchPoints,isChrome:"undefined"!=typeof navigator&&/Chrome/i.test(navigator&&navigator.userAgent)};function r(it){var Re=it.element,tt=Math.floor(Re.scrollTop),Xe=Re.getBoundingClientRect();it.containerWidth=Math.round(Xe.width),it.containerHeight=Math.round(Xe.height),it.contentWidth=Re.scrollWidth,it.contentHeight=Re.scrollHeight,Re.contains(it.scrollbarXRail)||(L(Re,k_element_rail("x")).forEach(function(Se){return D(Se)}),Re.appendChild(it.scrollbarXRail)),Re.contains(it.scrollbarYRail)||(L(Re,k_element_rail("y")).forEach(function(Se){return D(Se)}),Re.appendChild(it.scrollbarYRail)),!it.settings.suppressScrollX&&it.containerWidth+it.settings.scrollXMarginOffset=it.railXWidth-it.scrollbarXWidth&&(it.scrollbarXLeft=it.railXWidth-it.scrollbarXWidth),it.scrollbarYTop>=it.railYHeight-it.scrollbarYHeight&&(it.scrollbarYTop=it.railYHeight-it.scrollbarYHeight),function c(it,Re){var tt={width:Re.railXWidth},Xe=Math.floor(it.scrollTop);tt.left=Re.isRtl?Re.negativeScrollAdjustment+it.scrollLeft+Re.containerWidth-Re.contentWidth:it.scrollLeft,Re.isScrollbarXUsingBottom?tt.bottom=Re.scrollbarXBottom-Xe:tt.top=Re.scrollbarXTop+Xe,N(Re.scrollbarXRail,tt);var Se={top:Xe,height:Re.railYHeight};Re.isScrollbarYUsingRight?Se.right=Re.isRtl?Re.contentWidth-(Re.negativeScrollAdjustment+it.scrollLeft)-Re.scrollbarYRight-Re.scrollbarYOuterWidth-9:Re.scrollbarYRight-it.scrollLeft:Se.left=Re.isRtl?Re.negativeScrollAdjustment+it.scrollLeft+2*Re.containerWidth-Re.contentWidth-Re.scrollbarYLeft-Re.scrollbarYOuterWidth:Re.scrollbarYLeft+it.scrollLeft,N(Re.scrollbarYRail,Se),N(Re.scrollbarX,{left:Re.scrollbarXLeft,width:Re.scrollbarXWidth-Re.railBorderXWidth}),N(Re.scrollbarY,{top:Re.scrollbarYTop,height:Re.scrollbarYHeight-Re.railBorderYWidth})}(Re,it),it.scrollbarXActive?Re.classList.add(k_state_active("x")):(Re.classList.remove(k_state_active("x")),it.scrollbarXWidth=0,it.scrollbarXLeft=0,Re.scrollLeft=!0===it.isRtl?it.contentWidth:0),it.scrollbarYActive?Re.classList.add(k_state_active("y")):(Re.classList.remove(k_state_active("y")),it.scrollbarYHeight=0,it.scrollbarYTop=0,Re.scrollTop=0)}function u(it,Re){return it.settings.minScrollbarLength&&(Re=Math.max(Re,it.settings.minScrollbarLength)),it.settings.maxScrollbarLength&&(Re=Math.min(Re,it.settings.maxScrollbarLength)),Re}function I(it,Re){var tt=Re[0],Xe=Re[1],Se=Re[2],Ge=Re[3],at=Re[4],st=Re[5],bt=Re[6],gi=Re[7],qt=Re[8],Xt=it.element,qi=null,fi=null,si=null;function $i(Ui){Ui.touches&&Ui.touches[0]&&(Ui[Se]=Ui.touches[0].pageY),Xt[bt]=qi+si*(Ui[Se]-fi),U(it,gi),r(it),Ui.stopPropagation(),Ui.type.startsWith("touch")&&Ui.changedTouches.length>1&&Ui.preventDefault()}function Bi(){Z(it,gi),it[qt].classList.remove(k_state_clicking),it.event.unbind(it.ownerDocument,"mousemove",$i)}function zi(Ui,ze){qi=Xt[bt],ze&&Ui.touches&&(Ui[Se]=Ui.touches[0].pageY),fi=Ui[Se],si=(it[Xe]-it[tt])/(it[Ge]-it[st]),ze?it.event.bind(it.ownerDocument,"touchmove",$i):(it.event.bind(it.ownerDocument,"mousemove",$i),it.event.once(it.ownerDocument,"mouseup",Bi),Ui.preventDefault()),it[qt].classList.add(k_state_clicking),Ui.stopPropagation()}it.event.bind(it[at],"mousedown",function(Ui){zi(Ui)}),it.event.bind(it[at],"touchstart",function(Ui){zi(Ui,!0)})}var P={"click-rail":function _(it){it.event.bind(it.scrollbarY,"mousedown",function(tt){return tt.stopPropagation()}),it.event.bind(it.scrollbarYRail,"mousedown",function(tt){var Xe=tt.pageY-window.pageYOffset-it.scrollbarYRail.getBoundingClientRect().top;it.element.scrollTop+=(Xe>it.scrollbarYTop?1:-1)*it.containerHeight,r(it),tt.stopPropagation()}),it.event.bind(it.scrollbarX,"mousedown",function(tt){return tt.stopPropagation()}),it.event.bind(it.scrollbarXRail,"mousedown",function(tt){var Xe=tt.pageX-window.pageXOffset-it.scrollbarXRail.getBoundingClientRect().left;it.element.scrollLeft+=(Xe>it.scrollbarXLeft?1:-1)*it.containerWidth,r(it),tt.stopPropagation()})},"drag-thumb":function E(it){I(it,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),I(it,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function v(it){var Re=it.element;it.event.bind(it.ownerDocument,"keydown",function(Ge){if(!(Ge.isDefaultPrevented&&Ge.isDefaultPrevented()||Ge.defaultPrevented)&&(w(Re,":hover")||w(it.scrollbarX,":focus")||w(it.scrollbarY,":focus"))){var at=document.activeElement?document.activeElement:it.ownerDocument.activeElement;if(at){if("IFRAME"===at.tagName)at=at.contentDocument.activeElement;else for(;at.shadowRoot;)at=at.shadowRoot.activeElement;if(function me(it){return w(it,"input,[contenteditable]")||w(it,"select,[contenteditable]")||w(it,"textarea,[contenteditable]")||w(it,"button,[contenteditable]")}(at))return}var st=0,bt=0;switch(Ge.which){case 37:st=Ge.metaKey?-it.contentWidth:Ge.altKey?-it.containerWidth:-30;break;case 38:bt=Ge.metaKey?it.contentHeight:Ge.altKey?it.containerHeight:30;break;case 39:st=Ge.metaKey?it.contentWidth:Ge.altKey?it.containerWidth:30;break;case 40:bt=Ge.metaKey?-it.contentHeight:Ge.altKey?-it.containerHeight:-30;break;case 32:bt=Ge.shiftKey?it.containerHeight:-it.containerHeight;break;case 33:bt=it.containerHeight;break;case 34:bt=-it.containerHeight;break;case 36:bt=it.contentHeight;break;case 35:bt=-it.contentHeight;break;default:return}it.settings.suppressScrollX&&0!==st||it.settings.suppressScrollY&&0!==bt||(Re.scrollTop-=bt,Re.scrollLeft+=st,r(it),function Se(Ge,at){var st=Math.floor(Re.scrollTop);if(0===Ge){if(!it.scrollbarYActive)return!1;if(0===st&&at>0||st>=it.contentHeight-it.containerHeight&&at<0)return!it.settings.wheelPropagation}var bt=Re.scrollLeft;if(0===at){if(!it.scrollbarXActive)return!1;if(0===bt&&Ge<0||bt>=it.contentWidth-it.containerWidth&&Ge>0)return!it.settings.wheelPropagation}return!0}(st,bt)&&Ge.preventDefault())}})},wheel:function n(it){var Re=it.element;function Ge(at){var st=function Xe(at){var st=at.deltaX,bt=-1*at.deltaY;return(void 0===st||void 0===bt)&&(st=-1*at.wheelDeltaX/6,bt=at.wheelDeltaY/6),at.deltaMode&&1===at.deltaMode&&(st*=10,bt*=10),st!=st&&bt!=bt&&(st=0,bt=at.wheelDelta),at.shiftKey?[-bt,-st]:[st,bt]}(at),bt=st[0],gi=st[1];if(!function Se(at,st,bt){if(!i.isWebKit&&Re.querySelector("select:focus"))return!0;if(!Re.contains(at))return!1;for(var gi=at;gi&&gi!==Re;){if(gi.classList.contains(k_element_consuming))return!0;var qt=d(gi);if(bt&&qt.overflowY.match(/(scroll|auto)/)){var Xt=gi.scrollHeight-gi.clientHeight;if(Xt>0&&(gi.scrollTop>0&&bt<0||gi.scrollTop0))return!0}if(st&&qt.overflowX.match(/(scroll|auto)/)){var qi=gi.scrollWidth-gi.clientWidth;if(qi>0&&(gi.scrollLeft>0&&st<0||gi.scrollLeft0))return!0}gi=gi.parentNode}return!1}(at.target,bt,gi)){var qt=!1;it.settings.useBothWheelAxes?it.scrollbarYActive&&!it.scrollbarXActive?(gi?Re.scrollTop-=gi*it.settings.wheelSpeed:Re.scrollTop+=bt*it.settings.wheelSpeed,qt=!0):it.scrollbarXActive&&!it.scrollbarYActive&&(bt?Re.scrollLeft+=bt*it.settings.wheelSpeed:Re.scrollLeft-=gi*it.settings.wheelSpeed,qt=!0):(Re.scrollTop-=gi*it.settings.wheelSpeed,Re.scrollLeft+=bt*it.settings.wheelSpeed),r(it),qt=qt||function tt(at,st){var bt=Math.floor(Re.scrollTop),gi=0===Re.scrollTop,qt=bt+Re.offsetHeight===Re.scrollHeight,Xt=0===Re.scrollLeft,qi=Re.scrollLeft+Re.offsetWidth===Re.scrollWidth;return!(Math.abs(st)>Math.abs(at)?gi||qt:Xt||qi)||!it.settings.wheelPropagation}(bt,gi),qt&&!at.ctrlKey&&(at.stopPropagation(),at.preventDefault())}}void 0!==window.onwheel?it.event.bind(Re,"wheel",Ge):void 0!==window.onmousewheel&&it.event.bind(Re,"mousewheel",Ge)},touch:function C(it){if(i.supportsTouch||i.supportsIePointer){var Re=it.element,Se={},Ge=0,at={},st=null;i.supportsTouch?(it.event.bind(Re,"touchstart",qt),it.event.bind(Re,"touchmove",qi),it.event.bind(Re,"touchend",fi)):i.supportsIePointer&&(window.PointerEvent?(it.event.bind(Re,"pointerdown",qt),it.event.bind(Re,"pointermove",qi),it.event.bind(Re,"pointerup",fi)):window.MSPointerEvent&&(it.event.bind(Re,"MSPointerDown",qt),it.event.bind(Re,"MSPointerMove",qi),it.event.bind(Re,"MSPointerUp",fi)))}function Xe(si,$i){Re.scrollTop-=$i,Re.scrollLeft-=si,r(it)}function bt(si){return si.targetTouches?si.targetTouches[0]:si}function gi(si){return!(si.pointerType&&"pen"===si.pointerType&&0===si.buttons||!(si.targetTouches&&1===si.targetTouches.length||si.pointerType&&"mouse"!==si.pointerType&&si.pointerType!==si.MSPOINTER_TYPE_MOUSE))}function qt(si){if(gi(si)){var $i=bt(si);Se.pageX=$i.pageX,Se.pageY=$i.pageY,Ge=(new Date).getTime(),null!==st&&clearInterval(st)}}function qi(si){if(gi(si)){var $i=bt(si),Bi={pageX:$i.pageX,pageY:$i.pageY},zi=Bi.pageX-Se.pageX,Ui=Bi.pageY-Se.pageY;if(function Xt(si,$i,Bi){if(!Re.contains(si))return!1;for(var zi=si;zi&&zi!==Re;){if(zi.classList.contains(k_element_consuming))return!0;var Ui=d(zi);if(Bi&&Ui.overflowY.match(/(scroll|auto)/)){var ze=zi.scrollHeight-zi.clientHeight;if(ze>0&&(zi.scrollTop>0&&Bi<0||zi.scrollTop0))return!0}if($i&&Ui.overflowX.match(/(scroll|auto)/)){var Tt=zi.scrollWidth-zi.clientWidth;if(Tt>0&&(zi.scrollLeft>0&&$i<0||zi.scrollLeft0))return!0}zi=zi.parentNode}return!1}(si.target,zi,Ui))return;Xe(zi,Ui),Se=Bi;var ze=(new Date).getTime(),Tt=ze-Ge;Tt>0&&(at.x=zi/Tt,at.y=Ui/Tt,Ge=ze),function tt(si,$i){var Bi=Math.floor(Re.scrollTop),zi=Re.scrollLeft,Ui=Math.abs(si),ze=Math.abs($i);if(ze>Ui){if($i<0&&Bi===it.contentHeight-it.containerHeight||$i>0&&0===Bi)return 0===window.scrollY&&$i>0&&i.isChrome}else if(Ui>ze&&(si<0&&zi===it.contentWidth-it.containerWidth||si>0&&0===zi))return!0;return!0}(zi,Ui)&&si.preventDefault()}}function fi(){it.settings.swipeEasing&&(clearInterval(st),st=setInterval(function(){it.isInitialized?clearInterval(st):at.x||at.y?Math.abs(at.x)<.01&&Math.abs(at.y)<.01?clearInterval(st):it.element?(Xe(30*at.x,30*at.y),at.x*=.8,at.y*=.8):clearInterval(st):clearInterval(st)},10))}}},H=function(Re,tt){var Xe=this;if(void 0===tt&&(tt={}),"string"==typeof Re&&(Re=document.querySelector(Re)),!Re||!Re.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var Se in this.element=Re,Re.classList.add("ps"),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1},tt)this.settings[Se]=tt[Se];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var qt,gi,Ge=function(){return Re.classList.add(k_state_focus)},at=function(){return Re.classList.remove(k_state_focus)};this.isRtl="rtl"===d(Re).direction,!0===this.isRtl&&Re.classList.add("ps__rtl"),this.isNegativeScroll=(gi=Re.scrollLeft,Re.scrollLeft=-1,qt=Re.scrollLeft<0,Re.scrollLeft=gi,qt),this.negativeScrollAdjustment=this.isNegativeScroll?Re.scrollWidth-Re.clientWidth:0,this.event=new de,this.ownerDocument=Re.ownerDocument||document,this.scrollbarXRail=h(k_element_rail("x")),Re.appendChild(this.scrollbarXRail),this.scrollbarX=h(k_element_thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Ge),this.event.bind(this.scrollbarX,"blur",at),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var st=d(this.scrollbarXRail);this.scrollbarXBottom=parseInt(st.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=X(st.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=X(st.borderLeftWidth)+X(st.borderRightWidth),N(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=X(st.marginLeft)+X(st.marginRight),N(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=h(k_element_rail("y")),Re.appendChild(this.scrollbarYRail),this.scrollbarY=h(k_element_thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Ge),this.event.bind(this.scrollbarY,"blur",at),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var bt=d(this.scrollbarYRail);this.scrollbarYRight=parseInt(bt.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=X(bt.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function y(it){var Re=d(it);return X(Re.width)+X(Re.paddingLeft)+X(Re.paddingRight)+X(Re.borderLeftWidth)+X(Re.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=X(bt.borderTopWidth)+X(bt.borderBottomWidth),N(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=X(bt.marginTop)+X(bt.marginBottom),N(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:Re.scrollLeft<=0?"start":Re.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:Re.scrollTop<=0?"start":Re.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(gi){return P[gi](Xe)}),this.lastScrollTop=Math.floor(Re.scrollTop),this.lastScrollLeft=Re.scrollLeft,this.event.bind(this.element,"scroll",function(gi){return Xe.onScroll(gi)}),r(this)};H.prototype.update=function(){!this.isAlive||(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,N(this.scrollbarXRail,{display:"block"}),N(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=X(d(this.scrollbarXRail).marginLeft)+X(d(this.scrollbarXRail).marginRight),this.railYMarginHeight=X(d(this.scrollbarYRail).marginTop)+X(d(this.scrollbarYRail).marginBottom),N(this.scrollbarXRail,{display:"none"}),N(this.scrollbarYRail,{display:"none"}),r(this),ie(this,"top",0,!1,!0),ie(this,"left",0,!1,!0),N(this.scrollbarXRail,{display:""}),N(this.scrollbarYRail,{display:""}))},H.prototype.onScroll=function(Re){!this.isAlive||(r(this),ie(this,"top",this.element.scrollTop-this.lastScrollTop),ie(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},H.prototype.destroy=function(){!this.isAlive||(this.event.unbindAll(),D(this.scrollbarX),D(this.scrollbarY),D(this.scrollbarXRail),D(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},H.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(Re){return!Re.match(/^ps([-_].+|)$/)}).join(" ")};const q=H;var he=function(){if("undefined"!=typeof Map)return Map;function it(Re,tt){var Xe=-1;return Re.some(function(Se,Ge){return Se[0]===tt&&(Xe=Ge,!0)}),Xe}return function(){function Re(){this.__entries__=[]}return Object.defineProperty(Re.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),Re.prototype.get=function(tt){var Xe=it(this.__entries__,tt),Se=this.__entries__[Xe];return Se&&Se[1]},Re.prototype.set=function(tt,Xe){var Se=it(this.__entries__,tt);~Se?this.__entries__[Se][1]=Xe:this.__entries__.push([tt,Xe])},Re.prototype.delete=function(tt){var Xe=this.__entries__,Se=it(Xe,tt);~Se&&Xe.splice(Se,1)},Re.prototype.has=function(tt){return!!~it(this.__entries__,tt)},Re.prototype.clear=function(){this.__entries__.splice(0)},Re.prototype.forEach=function(tt,Xe){void 0===Xe&&(Xe=null);for(var Se=0,Ge=this.__entries__;Se0},it.prototype.connect_=function(){!_e||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),De?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},it.prototype.disconnect_=function(){!_e||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},it.prototype.onTransitionEnd_=function(Re){var tt=Re.propertyName,Xe=void 0===tt?"":tt;V.some(function(Ge){return!!~Xe.indexOf(Ge)})&&this.refresh()},it.getInstance=function(){return this.instance_||(this.instance_=new it),this.instance_},it.instance_=null,it}(),Ie=function(it,Re){for(var tt=0,Xe=Object.keys(Re);tt0},it}(),hi="undefined"!=typeof WeakMap?new WeakMap:new he,xt=function it(Re){if(!(this instanceof it))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var tt=dt.getInstance(),Xe=new Gt(Re,tt,this);hi.set(this,Xe)};["observe","unobserve","disconnect"].forEach(function(it){xt.prototype[it]=function(){var Re;return(Re=hi.get(this))[it].apply(Re,arguments)}});const Ct=void 0!==Ne.ResizeObserver?Ne.ResizeObserver:xt,ei=new a.OlP("PERFECT_SCROLLBAR_CONFIG");class Yt{constructor(Re,tt,Xe,Se){this.x=Re,this.y=tt,this.w=Xe,this.h=Se}}class Pe{constructor(Re,tt){this.x=Re,this.y=tt}}const Oe=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class ce{constructor(Re={}){this.assign(Re)}assign(Re={}){for(const tt in Re)this[tt]=Re[tt]}}let be=(()=>{class it{constructor(tt,Xe,Se,Ge,at){this.zone=tt,this.differs=Xe,this.elementRef=Se,this.platformId=Ge,this.defaults=at,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new t.x,this.disabled=!1,this.psScrollY=new a.vpe,this.psScrollX=new a.vpe,this.psScrollUp=new a.vpe,this.psScrollDown=new a.vpe,this.psScrollLeft=new a.vpe,this.psScrollRight=new a.vpe,this.psYReachEnd=new a.vpe,this.psYReachStart=new a.vpe,this.psXReachEnd=new a.vpe,this.psXReachStart=new a.vpe}ngOnInit(){if(!this.disabled&&(0,b.NF)(this.platformId)){const tt=new ce(this.defaults);tt.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new q(this.elementRef.nativeElement,tt)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new Ct(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{Oe.forEach(Xe=>{const Se=Xe.replace(/([A-Z])/g,Ge=>`-${Ge.toLowerCase()}`);(0,e.R)(this.elementRef.nativeElement,Se).pipe((0,f.e)(20),(0,M.R)(this.ngDestroy)).subscribe(Ge=>{this[Xe].emit(Ge)})})})}}ngOnDestroy(){(0,b.NF)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&"undefined"!=typeof window&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,b.NF)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(tt){tt.disabled&&!tt.disabled.isFirstChange()&&(0,b.NF)(this.platformId)&&tt.disabled.currentValue!==tt.disabled.previousValue&&(!0===tt.disabled.currentValue?this.ngOnDestroy():!1===tt.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){"undefined"!=typeof window&&(this.timeout&&window.clearTimeout(this.timeout),this.timeout=window.setTimeout(()=>{if(!this.disabled&&this.configDiff)try{this.zone.runOutsideAngular(()=>{this.instance&&this.instance.update()})}catch(tt){}},0))}geometry(tt="scroll"){return new Yt(this.elementRef.nativeElement[tt+"Left"],this.elementRef.nativeElement[tt+"Top"],this.elementRef.nativeElement[tt+"Width"],this.elementRef.nativeElement[tt+"Height"])}position(tt=!1){return!tt&&this.instance?new Pe(this.instance.reach.x||0,this.instance.reach.y||0):new Pe(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(tt="any"){const Xe=this.elementRef.nativeElement;return"any"===tt?Xe.classList.contains("ps--active-x")||Xe.classList.contains("ps--active-y"):"both"===tt?Xe.classList.contains("ps--active-x")&&Xe.classList.contains("ps--active-y"):Xe.classList.contains("ps--active-"+tt)}scrollTo(tt,Xe,Se){this.disabled||(null==Xe&&null==Se?this.animateScrolling("scrollTop",tt,Se):(null!=tt&&this.animateScrolling("scrollLeft",tt,Se),null!=Xe&&this.animateScrolling("scrollTop",Xe,Se)))}scrollToX(tt,Xe){this.animateScrolling("scrollLeft",tt,Xe)}scrollToY(tt,Xe){this.animateScrolling("scrollTop",tt,Xe)}scrollToTop(tt,Xe){this.animateScrolling("scrollTop",tt||0,Xe)}scrollToLeft(tt,Xe){this.animateScrolling("scrollLeft",tt||0,Xe)}scrollToRight(tt,Xe){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(tt||0),Xe)}scrollToBottom(tt,Xe){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(tt||0),Xe)}scrollToElement(tt,Xe,Se){if("string"==typeof tt&&(tt=this.elementRef.nativeElement.querySelector(tt)),tt){const Ge=tt.getBoundingClientRect(),at=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Ge.left-at.left+this.elementRef.nativeElement.scrollLeft+(Xe||0),Se),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Ge.top-at.top+this.elementRef.nativeElement.scrollTop+(Xe||0),Se)}}animateScrolling(tt,Xe,Se){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),Se&&"undefined"!=typeof window){if(Xe!==this.elementRef.nativeElement[tt]){let Ge=0,at=0,st=performance.now(),bt=this.elementRef.nativeElement[tt];const gi=(bt-Xe)/2,qt=Xt=>{at+=Math.PI/(Se/(Xt-st)),Ge=Math.round(Xe+gi+gi*Math.cos(at)),this.elementRef.nativeElement[tt]===bt&&(at>=Math.PI?this.animateScrolling(tt,Xe,0):(this.elementRef.nativeElement[tt]=Ge,bt=this.elementRef.nativeElement[tt],st=Xt,this.animation=window.requestAnimationFrame(qt)))};window.requestAnimationFrame(qt)}}else this.elementRef.nativeElement[tt]=Xe}}return it.\u0275fac=function(tt){return new(tt||it)(a.Y36(a.R0b),a.Y36(a.aQg),a.Y36(a.SBq),a.Y36(a.Lbi),a.Y36(ei,8))},it.\u0275dir=a.lG2({type:it,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:["perfectScrollbar","config"]},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],features:[a.TTD]}),it})(),Ht=(()=>{class it{}return it.\u0275fac=function(tt){return new(tt||it)},it.\u0275mod=a.oAB({type:it}),it.\u0275inj=a.cJS({imports:[[b.ez],b.ez]}),it})()},4946:Ve=>{"use strict";Ve.exports=JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}')},5207:Ve=>{"use strict";Ve.exports=JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}')},1308:Ve=>{"use strict";Ve.exports=JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}')},9799:Ve=>{"use strict";Ve.exports=JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}')},8597:Ve=>{"use strict";Ve.exports={i8:"6.5.4"}},2562:Ve=>{"use strict";Ve.exports=JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}')}},Ve=>{Ve(Ve.s=9115)}]); \ No newline at end of file diff --git a/frontend/runtime.1ca59cd92764ed45.js b/frontend/runtime.4c81b553a9df7303.js similarity index 75% rename from frontend/runtime.1ca59cd92764ed45.js rename to frontend/runtime.4c81b553a9df7303.js index efcf3bff..0b741a32 100644 --- a/frontend/runtime.1ca59cd92764ed45.js +++ b/frontend/runtime.4c81b553a9df7303.js @@ -1 +1 @@ -(()=>{"use strict";var e,v={},g={};function r(e){var n=g[e];if(void 0!==n)return n.exports;var t=g[e]={id:e,loaded:!1,exports:{}};return v[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=v,e=[],r.O=(n,t,f,o)=>{if(!t){var a=1/0;for(i=0;i=o)&&Object.keys(r.O).every(b=>r.O[b](t[u]))?t.splice(u--,1):(c=!1,o0&&e[i-1][2]>o;i--)e[i]=e[i-1];e[i]=[t,f,o]},r.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return r.d(n,{a:n}),n},r.d=(e,n)=>{for(var t in n)r.o(n,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((n,t)=>(r.f[t](e,n),n),[])),r.u=e=>e+"."+{564:"3d38ee9330b2ba94",636:"95c8ae357b1ed820",893:"9a615c46b89a5a79",924:"1c1eb885f1f101d2"}[e]+".js",r.miniCssF=e=>{},r.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),(()=>{var e={},n="RTLApp:";r.l=(t,f,o,i)=>{if(e[t])e[t].push(f);else{var a,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d{a.onerror=a.onload=null,clearTimeout(p);var h=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),h&&h.forEach(_=>_(b)),m)return m(b)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),c&&document.head.appendChild(a)}}})(),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:n=>n},"undefined"!=typeof trustedTypes&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={666:0};r.f.j=(f,o)=>{var i=r.o(e,f)?e[f]:void 0;if(0!==i)if(i)o.push(i[2]);else if(666!=f){var a=new Promise((l,s)=>i=e[f]=[l,s]);o.push(i[2]=a);var c=r.p+r.u(f),u=new Error;r.l(c,l=>{if(r.o(e,f)&&(0!==(i=e[f])&&(e[f]=void 0),i)){var s=l&&("load"===l.type?"missing":l.type),p=l&&l.target&&l.target.src;u.message="Loading chunk "+f+" failed.\n("+s+": "+p+")",u.name="ChunkLoadError",u.type=s,u.request=p,i[1](u)}},"chunk-"+f,f)}else e[f]=0},r.O.j=f=>0===e[f];var n=(f,o)=>{var u,d,[i,a,c]=o,l=0;if(i.some(p=>0!==e[p])){for(u in a)r.o(a,u)&&(r.m[u]=a[u]);if(c)var s=c(r)}for(f&&f(o);l{"use strict";var e,v={},g={};function r(e){var n=g[e];if(void 0!==n)return n.exports;var t=g[e]={id:e,loaded:!1,exports:{}};return v[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=v,e=[],r.O=(n,t,f,o)=>{if(!t){var a=1/0;for(i=0;i=o)&&Object.keys(r.O).every(b=>r.O[b](t[u]))?t.splice(u--,1):(c=!1,o0&&e[i-1][2]>o;i--)e[i]=e[i-1];e[i]=[t,f,o]},r.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return r.d(n,{a:n}),n},r.d=(e,n)=>{for(var t in n)r.o(n,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((n,t)=>(r.f[t](e,n),n),[])),r.u=e=>e+"."+{258:"fb8729850462aa0e",267:"4a643eeda98f6031",564:"c60bd98c3a9d472b",636:"2c7ab7c33992b609"}[e]+".js",r.miniCssF=e=>{},r.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),(()=>{var e={},n="RTLApp:";r.l=(t,f,o,i)=>{if(e[t])e[t].push(f);else{var a,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),l=0;l{a.onerror=a.onload=null,clearTimeout(p);var h=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),h&&h.forEach(_=>_(b)),m)return m(b)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),c&&document.head.appendChild(a)}}})(),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:n=>n},"undefined"!=typeof trustedTypes&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={666:0};r.f.j=(f,o)=>{var i=r.o(e,f)?e[f]:void 0;if(0!==i)if(i)o.push(i[2]);else if(666!=f){var a=new Promise((d,s)=>i=e[f]=[d,s]);o.push(i[2]=a);var c=r.p+r.u(f),u=new Error;r.l(c,d=>{if(r.o(e,f)&&(0!==(i=e[f])&&(e[f]=void 0),i)){var s=d&&("load"===d.type?"missing":d.type),p=d&&d.target&&d.target.src;u.message="Loading chunk "+f+" failed.\n("+s+": "+p+")",u.name="ChunkLoadError",u.type=s,u.request=p,i[1](u)}},"chunk-"+f,f)}else e[f]=0},r.O.j=f=>0===e[f];var n=(f,o)=>{var u,l,[i,a,c]=o,d=0;if(i.some(p=>0!==e[p])){for(u in a)r.o(a,u)&&(r.m[u]=a[u]);if(c)var s=c(r)}for(f&&f(o);d.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:transparent;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:4px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:4px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:6px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:6px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:62.5%}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}.rtl-container{position:absolute;width:100%;height:100%;top:0;left:0;right:0;bottom:0;overflow:hidden}.rtl-container .mat-menu-panel .mat-menu-content{padding-top:0;padding-bottom:0}.rtl-container .mat-nested-tree-node-child>.mat-tree-node{padding-left:4rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:22rem;height:100%;overflow:hidden!important}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.sticky{position:fixed;top:0;z-index:9999}.horizontal-menu{padding:0;z-index:999;position:fixed;top:0;height:5rem;overflow:visible}.inner-sidenav-content{position:relative;top:0;bottom:0;left:0;right:0;padding:.8rem;height:95%}@media only screen and (max-width: 56.25em){.inner-sidenav-content{padding:.8rem .4rem}}@media only screen and (max-width: 37.5em){.inner-sidenav-content{padding:.4rem .2rem}}.top-50{top:5rem}*{margin:0;padding:0}.rtl-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;width:100%;position:fixed;background:#fff;z-index:999999;visibility:visible;opacity:1}.rtl-spinner h4{margin-top:1rem}.padding-gap{padding:.8rem!important}@media only screen and (max-width: 56.25em){.padding-gap{padding:.4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap{padding:.2rem!important}}.padding-gap-x{padding:0 .8rem!important}@media only screen and (max-width: 75em){.padding-gap-x{padding:0 .4rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x{padding:0 .4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x{padding:0 .2rem!important}}.padding-gap-large{padding:1.6rem!important}@media only screen and (max-width: 75em){.padding-gap-large{padding:.8rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-large{padding:.4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-large{padding:.2rem!important}}.padding-gap-x-large{padding:0 1.6rem!important}@media only screen and (max-width: 75em){.padding-gap-x-large{padding:0 .8rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x-large{padding:0 .4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x-large{padding:0 .2rem!important}}.padding-gap-bottom-large{padding-bottom:1.6rem!important}@media only screen and (max-width: 56.25em){.padding-gap-bottom-large{padding-bottom:.8rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-bottom-large{padding-bottom:.2rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-card-original{padding:1.6rem!important;border-radius:4px!important}.mat-tab-body-wrapper,.card-content-gap{padding:.96rem 1.6rem!important;height:100%}@media only screen and (max-width: 56.25em){.mat-tab-body-wrapper,.card-content-gap{padding:.8rem!important}}@media only screen and (max-width: 37.5em){.mat-tab-body-wrapper,.card-content-gap{padding:.4rem .2rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.4rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.2rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.4rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.2rem!important}}.routing-tabs-block .mat-tab-body-wrapper{padding:0!important;min-height:10rem}.mat-card-actions{display:block;margin-bottom:1.6rem;padding-left:.6rem;padding-right:.6rem}.mat-card-content,.mat-card-subtitle,.mat-card-title{display:block;margin-bottom:1.6rem}.mat-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-select{margin:0 1.5rem 0 0}.green{color:#388e3c!important}.yellow{color:#ffd740!important}.red{color:#c62828!important}.grey{color:#ccc!important}.mt-1px{margin-top:1px!important}.mt-2px{margin-top:2px!important}.mt-4px{margin-top:4px!important}.mt-5px{margin-top:5px!important}.my-2px{margin:2px 0!important}.mt-0{margin-top:0!important}.mt-1{margin-top:1rem!important}@media only screen and (max-width: 56.25em){.mt-1{margin-top:.8rem!important}}@media only screen and (max-width: 37.5em){.mt-1{margin-top:.8rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:1rem!important}@media only screen and (max-width: 56.25em){.mb-1{margin-bottom:.8rem!important}}@media only screen and (max-width: 37.5em){.mb-1{margin-bottom:.8rem!important}}.mb-6{margin-bottom:6rem!important}@media only screen and (max-width: 56.25em){.mb-6{margin-bottom:5rem!important}}@media only screen and (max-width: 37.5em){.mb-6{margin-bottom:5rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.5rem!important}.ml-1{margin-left:1rem!important}@media only screen and (max-width: 56.25em){.ml-1{margin-left:.4rem!important}}@media only screen and (max-width: 37.5em){.ml-1{margin-left:.2rem!important}}.ml-minus-1{margin-left:-1rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:.3rem!important}.mr-5px{margin-right:.5rem!important}.mr-1{margin-right:1rem!important}@media only screen and (max-width: 56.25em){.mr-1{margin-right:.4rem!important}}@media only screen and (max-width: 37.5em){.mr-1{margin-right:.2rem!important}}.mx-1{margin:0 1rem!important}@media only screen and (max-width: 56.25em){.mx-1{margin:0 .4rem!important}}@media only screen and (max-width: 37.5em){.mx-1{margin:0 .2rem!important}}.my-1{margin:1rem 0!important}@media only screen and (max-width: 56.25em){.my-1{margin:.8rem 0!important}}@media only screen and (max-width: 37.5em){.my-1{margin:.8rem 0!important}}.m-1{margin:1rem!important}@media only screen and (max-width: 56.25em){.m-1{margin:.8rem!important}}@media only screen and (max-width: 37.5em){.m-1{margin:.8rem!important}}.mt-2{margin-top:2rem!important}@media only screen and (max-width: 56.25em){.mt-2{margin-top:1.6rem!important}}@media only screen and (max-width: 37.5em){.mt-2{margin-top:1.6rem!important}}.mt-3{margin-top:3rem!important}@media only screen and (max-width: 56.25em){.mt-3{margin-top:2.4rem!important}}@media only screen and (max-width: 37.5em){.mt-3{margin-top:2.6rem!important}}.mt-4{margin-top:4rem!important}@media only screen and (max-width: 56.25em){.mt-4{margin-top:3.4rem!important}}@media only screen and (max-width: 37.5em){.mt-4{margin-top:3.4rem!important}}.mt-6{margin-top:6rem!important}@media only screen and (max-width: 56.25em){.mt-6{margin-top:4.8rem!important}}@media only screen and (max-width: 37.5em){.mt-6{margin-top:4.8rem!important}}.mt-minus-1{margin-top:-1rem!important}@media only screen and (max-width: 56.25em){.mt-minus-1{margin-top:-.8rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-1{margin-top:-.8rem!important}}.mt-minus-2{margin-top:-2rem!important}@media only screen and (max-width: 56.25em){.mt-minus-2{margin-top:-1.6rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-2{margin-top:-1.6rem!important}}.mb-2{margin-bottom:2rem!important}@media only screen and (max-width: 56.25em){.mb-2{margin-bottom:1.6rem!important}}@media only screen and (max-width: 37.5em){.mb-2{margin-bottom:1.6rem!important}}.mb-3{margin-bottom:3rem!important}@media only screen and (max-width: 56.25em){.mb-3{margin-bottom:2.4rem!important}}@media only screen and (max-width: 37.5em){.mb-3{margin-bottom:2.4rem!important}}.mb-4{margin-bottom:4rem!important}@media only screen and (max-width: 56.25em){.mb-4{margin-bottom:3.2rem!important}}@media only screen and (max-width: 37.5em){.mb-4{margin-bottom:3.2rem!important}}.ml-2{margin-left:2rem!important}@media only screen and (max-width: 56.25em){.ml-2{margin-left:.8rem!important}}@media only screen and (max-width: 37.5em){.ml-2{margin-left:.4rem!important}}.mr-2{margin-right:2rem!important}@media only screen and (max-width: 56.25em){.mr-2{margin-right:.8rem!important}}@media only screen and (max-width: 37.5em){.mr-2{margin-right:.4rem!important}}.ml-4{margin-left:4rem!important}@media only screen and (max-width: 56.25em){.ml-4{margin-left:1.6rem!important}}@media only screen and (max-width: 37.5em){.ml-4{margin-left:.8rem!important}}.ml-5{margin-left:5rem!important}@media only screen and (max-width: 56.25em){.ml-5{margin-left:2rem!important}}@media only screen and (max-width: 37.5em){.ml-5{margin-left:1rem!important}}.mr-4{margin-right:4rem!important}@media only screen and (max-width: 56.25em){.mr-4{margin-right:1.6rem!important}}@media only screen and (max-width: 37.5em){.mr-4{margin-right:.8rem!important}}.mr-5{margin-right:5rem!important}@media only screen and (max-width: 56.25em){.mr-5{margin-right:2rem!important}}@media only screen and (max-width: 37.5em){.mr-5{margin-right:1rem!important}}.mr-6{margin-right:6rem!important}@media only screen and (max-width: 56.25em){.mr-6{margin-right:3rem!important}}@media only screen and (max-width: 37.5em){.mr-6{margin-right:2rem!important}}.mx-2{margin:0 2rem!important}@media only screen and (max-width: 56.25em){.mx-2{margin:0 .8rem!important}}@media only screen and (max-width: 37.5em){.mx-2{margin:0 .4rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:2rem 0!important}@media only screen and (max-width: 56.25em){.my-2{margin:1.6rem 0!important}}@media only screen and (max-width: 37.5em){.my-2{margin:1.6rem 0!important}}.my-3{margin:3rem 0!important}@media only screen and (max-width: 56.25em){.my-3{margin:2.4rem 0!important}}@media only screen and (max-width: 37.5em){.my-3{margin:2.4rem 0!important}}.my-4{margin:4rem 0!important}@media only screen and (max-width: 56.25em){.my-4{margin:3.2rem 0!important}}@media only screen and (max-width: 37.5em){.my-4{margin:3.2rem 0!important}}.m-2{margin:2rem!important}@media only screen and (max-width: 56.25em){.m-2{margin:1.6rem!important}}@media only screen and (max-width: 37.5em){.m-2{margin:1.6rem!important}}.pt-1{padding-top:1rem!important}@media only screen and (max-width: 56.25em){.pt-1{padding-top:.8rem!important}}@media only screen and (max-width: 37.5em){.pt-1{padding-top:.8rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:1rem!important}@media only screen and (max-width: 56.25em){.pb-1{padding-bottom:.8rem!important}}@media only screen and (max-width: 37.5em){.pb-1{padding-bottom:.8rem!important}}.pl-1{padding-left:1rem!important}@media only screen and (max-width: 56.25em){.pl-1{padding-left:.4rem!important}}@media only screen and (max-width: 37.5em){.pl-1{padding-left:.2rem!important}}.pl-15px{padding-left:1.5rem!important}@media only screen and (max-width: 56.25em){.pl-15px{padding-left:.6rem!important}}@media only screen and (max-width: 37.5em){.pl-15px{padding-left:.4rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:1rem!important}@media only screen and (max-width: 56.25em){.pr-1{padding-right:.4rem!important}}@media only screen and (max-width: 37.5em){.pr-1{padding-right:.2rem!important}}.pr-3{padding-right:3rem!important}@media only screen and (max-width: 56.25em){.pr-3{padding-right:1.2rem!important}}@media only screen and (max-width: 37.5em){.pr-3{padding-right:.6rem!important}}.pr-4{padding-right:4rem!important}@media only screen and (max-width: 56.25em){.pr-4{padding-right:1.6rem!important}}@media only screen and (max-width: 37.5em){.pr-4{padding-right:.8rem!important}}.pr-4px{padding-right:.4rem!important}.p-0{padding:0!important}.p-5px{padding:.5rem!important}.pl-0{padding-left:0!important}.px-1{padding:0 1rem!important}@media only screen and (max-width: 56.25em){.px-1{padding:0 .4rem!important}}@media only screen and (max-width: 37.5em){.px-1{padding:0 .2rem!important}}.py-0{padding:1rem 0!important}@media only screen and (max-width: 56.25em){.py-0{padding:.8rem 0!important}}@media only screen and (max-width: 37.5em){.py-0{padding:.8rem 0!important}}.py-1{padding:1rem 0!important}@media only screen and (max-width: 56.25em){.py-1{padding:.8rem 0!important}}@media only screen and (max-width: 37.5em){.py-1{padding:.8rem 0!important}}.p-1{padding:1rem!important}@media only screen and (max-width: 56.25em){.p-1{padding:.8rem!important}}@media only screen and (max-width: 37.5em){.p-1{padding:.8rem!important}}.p-16{padding:1.6rem!important}@media only screen and (max-width: 56.25em){.p-16{padding:.8rem!important}}@media only screen and (max-width: 37.5em){.p-16{padding:.4rem!important}}.pt-2{padding-top:2rem!important}@media only screen and (max-width: 56.25em){.pt-2{padding-top:1.6rem!important}}@media only screen and (max-width: 37.5em){.pt-2{padding-top:1.6rem!important}}.pt-3{padding-top:3rem!important}@media only screen and (max-width: 56.25em){.pt-3{padding-top:2.4rem!important}}@media only screen and (max-width: 37.5em){.pt-3{padding-top:2.4rem!important}}.pb-2{padding-bottom:2rem!important}@media only screen and (max-width: 56.25em){.pb-2{padding-bottom:1.6rem!important}}@media only screen and (max-width: 37.5em){.pb-2{padding-bottom:1.6rem!important}}.pl-2{padding-left:2rem!important}@media only screen and (max-width: 56.25em){.pl-2{padding-left:.8rem!important}}@media only screen and (max-width: 37.5em){.pl-2{padding-left:.4rem!important}}.pt-4{padding-top:3.2rem!important}@media only screen and (max-width: 56.25em){.pt-4{padding-top:2.5rem!important}}@media only screen and (max-width: 37.5em){.pt-4{padding-top:2.5rem!important}}.pl-3{padding-left:3rem!important}@media only screen and (max-width: 56.25em){.pl-3{padding-left:1.2rem!important}}@media only screen and (max-width: 37.5em){.pl-3{padding-left:.6rem!important}}.pl-4{padding-left:4rem!important}@media only screen and (max-width: 56.25em){.pl-4{padding-left:1.6rem!important}}@media only screen and (max-width: 37.5em){.pl-4{padding-left:.8rem!important}}.pr-2{padding-right:2rem!important}@media only screen and (max-width: 56.25em){.pr-2{padding-right:.8rem!important}}@media only screen and (max-width: 37.5em){.pr-2{padding-right:.4rem!important}}.pr-5{padding-right:4rem!important}@media only screen and (max-width: 56.25em){.pr-5{padding-right:1.6rem!important}}@media only screen and (max-width: 37.5em){.pr-5{padding-right:.8rem!important}}.px-2{padding:0 2rem!important}@media only screen and (max-width: 56.25em){.px-2{padding:0 .8rem!important}}@media only screen and (max-width: 37.5em){.px-2{padding:0 .4rem!important}}.px-3{padding:0 3rem!important}@media only screen and (max-width: 56.25em){.px-3{padding:0 1.2rem!important}}@media only screen and (max-width: 37.5em){.px-3{padding:0 .6rem!important}}.px-4{padding:0 4rem!important}@media only screen and (max-width: 56.25em){.px-4{padding:0 1.6rem!important}}@media only screen and (max-width: 37.5em){.px-4{padding:0 .8rem!important}}.py-2{padding:2rem 0!important}@media only screen and (max-width: 56.25em){.py-2{padding:1.6rem 0!important}}@media only screen and (max-width: 37.5em){.py-2{padding:1.6rem 0!important}}.p-2{padding:2rem!important}@media only screen and (max-width: 56.25em){.p-2{padding:1.6rem!important}}@media only screen and (max-width: 37.5em){.p-2{padding:1.6rem!important}}.p-24{padding:2.4rem!important}@media only screen and (max-width: 56.25em){.p-24{padding:1.2rem!important}}@media only screen and (max-width: 37.5em){.p-24{padding:1rem!important}}.m-1px{margin:1px!important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-auto{overflow:auto}.mat-footer-row .mat-footer-cell{border-bottom:none!important}.mat-row:last-child .mat-cell{border-bottom:none!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:3rem}.mat-list,.mat-list .mat-list-item .mat-list-item-content,.mat-nav-list,.mat-selection-list{padding:0!important}.inline-spinner{display:inline-flex!important;top:.5rem!important}.top-minus-5px{position:relative;top:-.5rem}.top-minus-15px{position:relative;top:-1.5rem}.top-minus-25px{position:relative;top:-2.5rem;margin-bottom:-2.5rem!important}.top-minus-30px{position:relative;top:-3rem}.cursor-pointer{cursor:pointer!important}.cursor-default{cursor:default!important}.cursor-not-allowed{cursor:not-allowed!important}.inline-flex{display:inline-flex!important}.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.settings-container h4{margin:1.2rem 0 .6rem}.settings-container .skin{width:2rem;height:2rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.settings-container .skin.selected-color{width:1.75rem;height:1.75rem;border:.25rem solid}.settings-container .skin.purple{background-color:#5e4ea5}.settings-container .skin.indigo{background-color:#3f51b5}.settings-container .skin.teal{background-color:#00695c}.settings-container .skin.pink{background-color:#d81b60}.settings-container .skin.yellow{background-color:#a1842c}.settings-container .mat-radio-group{flex-direction:row;place-content:flex-start space-between;align-items:flex-start;box-sizing:border-box;display:flex}.settings-container .mat-radio-group .mat-radio-button{margin:2px 0}.settings-container .mat-slide-toggle{padding:0 1.4rem 0 .4rem}.settings-container .mat-flat-button{width:100%;max-height:3.6rem}.op-image{box-shadow:0 0 2px #ccc;border:2px solid;border-color:transparent;cursor:pointer;transition:.2s}.settings-icon{position:fixed;top:30%;right:0;width:4.2rem;height:4.2rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.fa-icon-small,.top-icon-small{min-width:2rem;width:2rem;max-width:2rem}.botlz-icon-sm{min-width:1.6rem;width:1.6rem;max-width:1.6rem}.copy-icon{position:relative;top:.5rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:.5rem}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mat-icon-button.top-toolbar-icon{margin-right:2rem}.mat-icon-button.top-toolbar-icon .top-toolbar-img{padding-right:.7rem;cursor:pointer}.mt-minus-5{position:relative;margin-top:-.5rem}.custom-card{padding:0 0 .8rem!important}.not-found-box{min-width:50%}.w-100{width:100%!important}.w-96{width:96%!important}.w-84{width:84%!important}.h-100{height:100%!important}.h-93{height:93%!important}.h-40{height:40rem!important}.h-46{height:46rem!important}.h-50{height:50rem!important}.h-10{height:10rem!important}.h-4{height:4rem!important}.h-35px{height:3.5rem!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem;padding:0 1.2rem;cursor:pointer}.mat-tree-node:focus,.mat-tree-node:active,.mat-nested-tree-node:focus,.mat-nested-tree-node:active,.mat-nested-tree-node-parent:focus,.mat-nested-tree-node-parent:active,.mat-tree-node span:focus,.mat-tree-node span:active,.mat-nested-tree-node-parent span:focus,.mat-nested-tree-node-parent span:active,.mat-tree-node div:focus,.mat-tree-node div:active,.mat-nested-tree-node-parent div:focus,.mat-nested-tree-node-parent div:active,.mat-tree-node .mat-icon:focus,.mat-tree-node .mat-icon:active,.mat-nested-tree-node-parent .mat-icon:focus,.mat-nested-tree-node-parent .mat-icon:active{outline:none}.lnd-info{height:9rem}.flex-wrap{flex-wrap:wrap!important}.word-break{word-break:break-all!important}.font-bold-500{font-weight:500!important}.font-bold-700{font-weight:700!important}.pubkey-info-top{flex-wrap:wrap;margin-top:1px;min-height:1.5rem;cursor:pointer;display:flex;align-content:center}.top-toolbar-icon.icon-pinned{width:3rem;height:3rem;padding:1rem 0 0 1.2rem;cursor:pointer}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:4rem;width:4rem;max-width:4rem}.icon-large{margin-left:-100%}.icon-small{height:2rem!important;width:2rem!important}.icon-smaller{height:1rem!important;width:1rem!important}.mat-icon-36{width:3.6rem!important;height:3.6rem!important}.mat-select.multi-node-select{width:87%}.page-title-container{padding:0 1.2rem;margin-bottom:.8rem}@media only screen and (max-width: 56.25em){.page-title-container{padding:0 .8rem;margin:.8rem 0}}@media only screen and (max-width: 37.5em){.page-title-container{padding:0 .8rem;margin:.8rem 0}}table{width:100%}@media only screen and (max-width: 75em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:1.6rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:1.2rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:.8rem!important}}@media only screen and (max-width: 75em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:1.6rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:1.2rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:.8rem!important}}.dot{display:inline-flex;width:1.2rem;height:1.2rem;border-radius:1.2rem;margin:.4rem 1rem 0 0}.dot.tiny-dot{width:.8rem;height:.8rem;border-radius:.8rem;margin:0 .6rem .1rem 0}.dot.green{background-color:#28ca43}.dot.yellow{background-color:#ffbd2e}.dot.red{background-color:#c62828}.dot.grey{background-color:#aaa}.font-size-80{font-size:80%!important}.font-size-90{font-size:90%!important}.font-size-120{font-size:120%!important}.font-size-200{font-size:200%!important}.font-size-300{font-size:300%!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-vertical-stepper-header{padding:1rem 1rem 1rem .8rem!important}.ellipsis-child{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.blinker{animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite}@keyframes blink-animation{to{visibility:hidden}}.mat-progress-bar.dashboard-progress-bar{height:6px;min-height:6px}.alert{margin-bottom:1rem;padding:.6rem 1rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:4.8rem}.mat-tab-body-content{overflow:hidden!important}.dashboard-tabs-group .mat-tab-label{min-width:32%!important}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:2rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:2rem!important}.border-valid{border:1px solid #28ca43!important}.border-invalid{border:1px solid #c62828!important}.icon-green{fill:#28ca43}.visible{visibility:visible!important}.hidden{visibility:hidden!important}.h-5{height:5rem}.btn-sticky-container{height:0rem;opacity:.5}.btn-sticky-container .mat-icon{animation:scrollDownAnimation 2s infinite}@keyframes scrollDownAnimation{0%{transform:translateY(0)}10%{transform:translateY(-20%)}20%{transform:translateY(20%)}30%{transform:translateY(-20%)}40%{transform:translateY(20%)}50%{transform:translateY(0)}}.mat-form-field-appearance-legacy.mat-form-field-disabled input,.mat-form-field-appearance-legacy.mat-form-field-disabled mat-select,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-trigger,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-value,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arro-wrapper,.mat-form-field-appearance-legacy.mat-form-field-disabled textarea,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-infix{cursor:not-allowed}.ngx-charts-tooltip-content.type-tooltip{background:rgba(50,50,50,.9)!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-card.dashboard-card{margin:.8rem;padding:1.2rem 2.4rem!important}@media only screen and (max-width: 56.25em){.mat-card.dashboard-card{padding:.5rem 1rem!important;margin-top:4rem!important}}@media only screen and (max-width: 37.5em){.mat-card.dashboard-card{padding:.4rem .8rem!important;margin-top:4rem!important}}.mat-card.dashboard-card.p-0{padding:0!important}.mat-card.dashboard-card .mat-card-header-text{width:100%}.mat-progress-bar{min-height:4px}.dashboard-card-content{text-align:left}.mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 2.4rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .8rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .4rem}}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator{margin-top:-5px}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 2.4rem 1.6rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .8rem .8rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .4rem .2rem}}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.8rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.4rem}}.rtl-container .mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-badge-small .mat-badge-content{font-size:9px}.rtl-container .mat-badge-large .mat-badge-content{font-size:24px}.rtl-container .mat-h1,.rtl-container .mat-headline,.rtl-container .mat-typography .mat-h1,.rtl-container .mat-typography .mat-headline,.rtl-container .mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h2,.rtl-container .mat-title,.rtl-container .mat-typography .mat-h2,.rtl-container .mat-typography .mat-title,.rtl-container .mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h3,.rtl-container .mat-subheading-2,.rtl-container .mat-typography .mat-h3,.rtl-container .mat-typography .mat-subheading-2,.rtl-container .mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h4,.rtl-container .mat-subheading-1,.rtl-container .mat-typography .mat-h4,.rtl-container .mat-typography .mat-subheading-1,.rtl-container .mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h5,.rtl-container .mat-typography .mat-h5,.rtl-container .mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.rtl-container .mat-h6,.rtl-container .mat-typography .mat-h6,.rtl-container .mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.rtl-container .mat-body-strong,.rtl-container .mat-body-2,.rtl-container .mat-typography .mat-body-strong,.rtl-container .mat-typography .mat-body-2{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-body,.rtl-container .mat-body-1,.rtl-container .mat-typography .mat-body,.rtl-container .mat-typography .mat-body-1,.rtl-container .mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-body p,.rtl-container .mat-body-1 p,.rtl-container .mat-typography .mat-body p,.rtl-container .mat-typography .mat-body-1 p,.rtl-container .mat-typography p{margin:0 0 12px}.rtl-container .mat-small,.rtl-container .mat-caption,.rtl-container .mat-typography .mat-small,.rtl-container .mat-typography .mat-caption{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-display-4,.rtl-container .mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}.rtl-container .mat-display-3,.rtl-container .mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}.rtl-container .mat-display-2,.rtl-container .mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}.rtl-container .mat-display-1,.rtl-container .mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}.rtl-container .mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-button,.rtl-container .mat-raised-button,.rtl-container .mat-icon-button,.rtl-container .mat-stroked-button,.rtl-container .mat-flat-button,.rtl-container .mat-fab,.rtl-container .mat-mini-fab{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.rtl-container .mat-button-toggle,.rtl-container .mat-card{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-card-title{font-size:24px;font-weight:500}.rtl-container .mat-card-header .mat-card-title{font-size:20px}.rtl-container .mat-card-subtitle,.rtl-container .mat-card-content{font-size:14px}.rtl-container .mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-checkbox-layout .mat-checkbox-label{line-height:24px}.rtl-container .mat-chip{font-size:14px;font-weight:500}.rtl-container .mat-chip .mat-chip-trailing-icon.mat-icon,.rtl-container .mat-chip .mat-chip-remove.mat-icon{font-size:18px}.rtl-container .mat-table{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-header-cell{font-size:12px;font-weight:500}.rtl-container .mat-cell,.rtl-container .mat-footer-cell{font-size:14px}.rtl-container .mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-calendar-body{font-size:13px}.rtl-container .mat-calendar-body-label,.rtl-container .mat-calendar-period-button{font-size:14px;font-weight:500}.rtl-container .mat-calendar-table-header th{font-size:11px;font-weight:400}.rtl-container .mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}.rtl-container .mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-form-field-wrapper{padding-bottom:1.34375em}.rtl-container .mat-form-field-prefix .mat-icon,.rtl-container .mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.rtl-container .mat-form-field-prefix .mat-icon-button,.rtl-container .mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.rtl-container .mat-form-field-prefix .mat-icon-button .mat-icon,.rtl-container .mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.rtl-container .mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}.rtl-container .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}.rtl-container .mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}.rtl-container .mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}.rtl-container .mat-form-field-label{top:1.34375em}.rtl-container .mat-form-field-underline{bottom:1.34375em}.rtl-container .mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}.rtl-container .mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}.rtl-container .mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}.rtl-container .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}.rtl-container .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}.rtl-container .mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}.rtl-container .mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}.rtl-container .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}.rtl-container .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}.rtl-container .mat-grid-tile-header,.rtl-container .mat-grid-tile-footer{font-size:14px}.rtl-container .mat-grid-tile-header .mat-line,.rtl-container .mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-grid-tile-header .mat-line:nth-child(n+2),.rtl-container .mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}.rtl-container input.mat-input-element{margin-top:-.0625em}.rtl-container .mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}.rtl-container .mat-paginator,.rtl-container .mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}.rtl-container .mat-radio-button,.rtl-container .mat-select{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-select-trigger{height:1.125em}.rtl-container .mat-slide-toggle-content{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}.rtl-container .mat-stepper-vertical,.rtl-container .mat-stepper-horizontal{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-step-label{font-size:14px;font-weight:400}.rtl-container .mat-step-sub-label-error{font-weight:400}.rtl-container .mat-step-label-error{font-size:14px}.rtl-container .mat-step-label-selected{font-size:14px;font-weight:500}.rtl-container .mat-tab-group{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-tab-label,.rtl-container .mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.rtl-container .mat-toolbar,.rtl-container .mat-toolbar h1,.rtl-container .mat-toolbar h2,.rtl-container .mat-toolbar h3,.rtl-container .mat-toolbar h4,.rtl-container .mat-toolbar h5,.rtl-container .mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}.rtl-container .mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.rtl-container .mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}.rtl-container .mat-list-item,.rtl-container .mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-list-base .mat-list-item{font-size:16px}.rtl-container .mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.rtl-container .mat-list-base .mat-list-option{font-size:16px}.rtl-container .mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.rtl-container .mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.rtl-container .mat-list-base[dense] .mat-list-item{font-size:12px}.rtl-container .mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.rtl-container .mat-list-base[dense] .mat-list-option{font-size:12px}.rtl-container .mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.rtl-container .mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}.rtl-container .mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}.rtl-container .mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}.rtl-container .mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.rtl-container .mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-tree-node,.rtl-container .mat-nested-tree-node{font-weight:400;font-size:14px}.rtl-container .mat-ripple{overflow:hidden;position:relative}.rtl-container .mat-ripple:not(:empty){transform:translateZ(0)}.rtl-container .mat-ripple.mat-ripple-unbounded{overflow:visible}.rtl-container .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active .rtl-container .mat-ripple-element{display:none}.rtl-container .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .rtl-container .cdk-visually-hidden{left:auto;right:0}.rtl-container .cdk-overlay-container,.rtl-container .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.rtl-container .cdk-overlay-container{position:fixed;z-index:1000}.rtl-container .cdk-overlay-container:empty{display:none}.rtl-container .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.rtl-container .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.rtl-container .cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.rtl-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.rtl-container .cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.rtl-container .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.rtl-container .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.rtl-container .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.rtl-container textarea.cdk-textarea-autosize{resize:none}.rtl-container textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}.rtl-container textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.rtl-container .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.rtl-container .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.rtl-container .mat-focus-indicator,.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container.purple.small.small .mat-header-cell{font-weight:700}.rtl-container.purple.small.small .mr-4{margin-right:1rem!important}.rtl-container.purple.small.small .mat-menu-item,.rtl-container.purple.small.small .mat-tree .mat-tree-node,.rtl-container.purple.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.purple.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.purple.small.small .genseed-message,.rtl-container.purple.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.purple.small.small .fa-icon-small,.rtl-container.purple.small.small .top-icon-small{font-size:1.44rem}.rtl-container.purple.small.small .page-title-container,.rtl-container.purple.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.purple.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.purple.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.purple.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.purple.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.purple.small.small .material-icons,.rtl-container.purple.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.purple.small.small .mat-expansion-panel-header,.rtl-container.purple.small.small .mat-menu-item,.rtl-container.purple.small.small .mat-list .mat-list-item,.rtl-container.purple.small.small .mat-nav-list .mat-list-item,.rtl-container.purple.small.small .mat-option,.rtl-container.purple.small.small .mat-select,.rtl-container.purple.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.purple.small.small .logo{font-size:2.4rem}.rtl-container.purple.small.small .font-60-percent{font-size:.72rem}.rtl-container.purple.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.purple.small.small .icon-large{font-size:6rem}.rtl-container.purple.small.small .icon-small{font-size:1.8rem!important}.rtl-container.purple.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.purple.small.small .size-triple{font-size:3.6rem}.rtl-container.purple.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.purple.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.small.medium .mat-header-cell{font-weight:700}.rtl-container.purple.small.medium .mat-tree .mat-tree-node,.rtl-container.purple.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.purple.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.purple.small.medium .genseed-message,.rtl-container.purple.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.purple.small.medium .page-title-container,.rtl-container.purple.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.purple.small.medium .fa-icon-small,.rtl-container.purple.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.purple.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.purple.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.purple.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.purple.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.purple.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.purple.small.medium .material-icons{font-size:2.8rem}.rtl-container.purple.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.purple.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.purple.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.purple.small.medium .mat-expansion-panel-header,.rtl-container.purple.small.medium .mat-menu-item,.rtl-container.purple.small.medium .mat-list .mat-list-item,.rtl-container.purple.small.medium .mat-nav-list .mat-list-item,.rtl-container.purple.small.medium .mat-option,.rtl-container.purple.small.medium .mat-select,.rtl-container.purple.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.purple.small.medium .logo{font-size:2.8rem}.rtl-container.purple.small.medium .font-60-percent{font-size:.84rem}.rtl-container.purple.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.purple.small.medium .icon-large{font-size:7rem}.rtl-container.purple.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.purple.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.purple.small.medium .size-triple{font-size:4.2rem}.rtl-container.purple.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.purple.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.small.large .mat-header-cell{font-weight:800}.rtl-container.purple.small.large .mat-tree .mat-tree-node,.rtl-container.purple.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.purple.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.purple.small.large .genseed-message,.rtl-container.purple.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.purple.small.large .page-title-container,.rtl-container.purple.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.purple.small.large .fa-icon-small,.rtl-container.purple.small.large .top-icon-small,.rtl-container.purple.small.large .modal-info-header{font-size:1.92rem}.rtl-container.purple.small.large .top-toolbar-icon.icon-pinned,.rtl-container.purple.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.purple.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.purple.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.purple.small.large .material-icons{font-size:4rem}.rtl-container.purple.small.large .mat-expansion-panel-header,.rtl-container.purple.small.large .mat-menu-item,.rtl-container.purple.small.large .mat-list .mat-list-item,.rtl-container.purple.small.large .mat-nav-list .mat-list-item,.rtl-container.purple.small.large .mat-option,.rtl-container.purple.small.large .mat-select,.rtl-container.purple.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.purple.small.large .logo{font-size:3.2rem}.rtl-container.purple.small.large .font-60-percent{font-size:.96rem}.rtl-container.purple.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.purple.small.large .icon-large{font-size:8rem}.rtl-container.purple.small.large .icon-small{font-size:2.4rem!important}.rtl-container.purple.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.purple.small.large .size-triple{font-size:4.8rem}.rtl-container.purple.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.purple.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.small .mat-icon.material-icons:focus{outline:none}.rtl-container.purple.small .mat-flat-button.mat-primary:focus,.rtl-container.purple.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.purple.medium.small .mat-header-cell{font-weight:700}.rtl-container.purple.medium.small .mr-4{margin-right:1rem!important}.rtl-container.purple.medium.small .mat-menu-item,.rtl-container.purple.medium.small .mat-tree .mat-tree-node,.rtl-container.purple.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.purple.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.purple.medium.small .genseed-message,.rtl-container.purple.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.purple.medium.small .fa-icon-small,.rtl-container.purple.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.purple.medium.small .page-title-container,.rtl-container.purple.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.purple.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.purple.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.purple.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.purple.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.purple.medium.small .material-icons,.rtl-container.purple.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.purple.medium.small .mat-expansion-panel-header,.rtl-container.purple.medium.small .mat-menu-item,.rtl-container.purple.medium.small .mat-list .mat-list-item,.rtl-container.purple.medium.small .mat-nav-list .mat-list-item,.rtl-container.purple.medium.small .mat-option,.rtl-container.purple.medium.small .mat-select,.rtl-container.purple.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.purple.medium.small .logo{font-size:2.4rem}.rtl-container.purple.medium.small .font-60-percent{font-size:.72rem}.rtl-container.purple.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.purple.medium.small .icon-large{font-size:6rem}.rtl-container.purple.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.purple.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.purple.medium.small .size-triple{font-size:3.6rem}.rtl-container.purple.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.purple.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.medium.medium .mat-header-cell{font-weight:700}.rtl-container.purple.medium.medium .mat-tree .mat-tree-node,.rtl-container.purple.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.purple.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.purple.medium.medium .genseed-message,.rtl-container.purple.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.purple.medium.medium .page-title-container,.rtl-container.purple.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.purple.medium.medium .fa-icon-small,.rtl-container.purple.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.purple.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.purple.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.purple.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.purple.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.purple.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.purple.medium.medium .material-icons{font-size:2.8rem}.rtl-container.purple.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.purple.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.purple.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.purple.medium.medium .mat-expansion-panel-header,.rtl-container.purple.medium.medium .mat-menu-item,.rtl-container.purple.medium.medium .mat-list .mat-list-item,.rtl-container.purple.medium.medium .mat-nav-list .mat-list-item,.rtl-container.purple.medium.medium .mat-option,.rtl-container.purple.medium.medium .mat-select,.rtl-container.purple.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.purple.medium.medium .logo{font-size:2.8rem}.rtl-container.purple.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.purple.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.purple.medium.medium .icon-large{font-size:7rem}.rtl-container.purple.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.purple.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.purple.medium.medium .size-triple{font-size:4.2rem}.rtl-container.purple.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.purple.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.medium.large .mat-header-cell{font-weight:800}.rtl-container.purple.medium.large .mat-tree .mat-tree-node,.rtl-container.purple.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.purple.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.purple.medium.large .genseed-message,.rtl-container.purple.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.purple.medium.large .page-title-container,.rtl-container.purple.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.purple.medium.large .fa-icon-small,.rtl-container.purple.medium.large .top-icon-small,.rtl-container.purple.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.purple.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.purple.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.purple.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.purple.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.purple.medium.large .material-icons{font-size:4rem}.rtl-container.purple.medium.large .mat-expansion-panel-header,.rtl-container.purple.medium.large .mat-menu-item,.rtl-container.purple.medium.large .mat-list .mat-list-item,.rtl-container.purple.medium.large .mat-nav-list .mat-list-item,.rtl-container.purple.medium.large .mat-option,.rtl-container.purple.medium.large .mat-select,.rtl-container.purple.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.purple.medium.large .logo{font-size:3.2rem}.rtl-container.purple.medium.large .font-60-percent{font-size:.96rem}.rtl-container.purple.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.purple.medium.large .icon-large{font-size:8rem}.rtl-container.purple.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.purple.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.purple.medium.large .size-triple{font-size:4.8rem}.rtl-container.purple.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.purple.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.purple.medium .mat-flat-button.mat-primary:focus,.rtl-container.purple.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.purple.large.small .mat-header-cell{font-weight:700}.rtl-container.purple.large.small .mr-4{margin-right:1rem!important}.rtl-container.purple.large.small .mat-menu-item,.rtl-container.purple.large.small .mat-tree .mat-tree-node,.rtl-container.purple.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.purple.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.purple.large.small .genseed-message,.rtl-container.purple.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.purple.large.small .fa-icon-small,.rtl-container.purple.large.small .top-icon-small{font-size:1.44rem}.rtl-container.purple.large.small .page-title-container,.rtl-container.purple.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.purple.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.purple.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.purple.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.purple.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.purple.large.small .material-icons,.rtl-container.purple.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.purple.large.small .mat-expansion-panel-header,.rtl-container.purple.large.small .mat-menu-item,.rtl-container.purple.large.small .mat-list .mat-list-item,.rtl-container.purple.large.small .mat-nav-list .mat-list-item,.rtl-container.purple.large.small .mat-option,.rtl-container.purple.large.small .mat-select,.rtl-container.purple.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.purple.large.small .logo{font-size:2.4rem}.rtl-container.purple.large.small .font-60-percent{font-size:.72rem}.rtl-container.purple.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.purple.large.small .icon-large{font-size:6rem}.rtl-container.purple.large.small .icon-small{font-size:1.8rem!important}.rtl-container.purple.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.purple.large.small .size-triple{font-size:3.6rem}.rtl-container.purple.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.purple.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.large.medium .mat-header-cell{font-weight:700}.rtl-container.purple.large.medium .mat-tree .mat-tree-node,.rtl-container.purple.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.purple.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.purple.large.medium .genseed-message,.rtl-container.purple.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.purple.large.medium .page-title-container,.rtl-container.purple.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.purple.large.medium .fa-icon-small,.rtl-container.purple.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.purple.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.purple.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.purple.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.purple.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.purple.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.purple.large.medium .material-icons{font-size:2.8rem}.rtl-container.purple.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.purple.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.purple.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.purple.large.medium .mat-expansion-panel-header,.rtl-container.purple.large.medium .mat-menu-item,.rtl-container.purple.large.medium .mat-list .mat-list-item,.rtl-container.purple.large.medium .mat-nav-list .mat-list-item,.rtl-container.purple.large.medium .mat-option,.rtl-container.purple.large.medium .mat-select,.rtl-container.purple.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.purple.large.medium .logo{font-size:2.8rem}.rtl-container.purple.large.medium .font-60-percent{font-size:.84rem}.rtl-container.purple.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.purple.large.medium .icon-large{font-size:7rem}.rtl-container.purple.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.purple.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.purple.large.medium .size-triple{font-size:4.2rem}.rtl-container.purple.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.purple.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.large.large .mat-header-cell{font-weight:800}.rtl-container.purple.large.large .mat-tree .mat-tree-node,.rtl-container.purple.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.purple.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.purple.large.large .genseed-message,.rtl-container.purple.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.purple.large.large .page-title-container,.rtl-container.purple.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.purple.large.large .fa-icon-small,.rtl-container.purple.large.large .top-icon-small,.rtl-container.purple.large.large .modal-info-header{font-size:1.92rem}.rtl-container.purple.large.large .top-toolbar-icon.icon-pinned,.rtl-container.purple.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.purple.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.purple.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.purple.large.large .material-icons{font-size:4rem}.rtl-container.purple.large.large .mat-expansion-panel-header,.rtl-container.purple.large.large .mat-menu-item,.rtl-container.purple.large.large .mat-list .mat-list-item,.rtl-container.purple.large.large .mat-nav-list .mat-list-item,.rtl-container.purple.large.large .mat-option,.rtl-container.purple.large.large .mat-select,.rtl-container.purple.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.purple.large.large .logo{font-size:3.2rem}.rtl-container.purple.large.large .font-60-percent{font-size:.96rem}.rtl-container.purple.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.purple.large.large .icon-large{font-size:8rem}.rtl-container.purple.large.large .icon-small{font-size:2.4rem!important}.rtl-container.purple.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.purple.large.large .size-triple{font-size:4.8rem}.rtl-container.purple.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.purple.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.large .mat-icon.material-icons:focus{outline:none}.rtl-container.purple.large .mat-flat-button.mat-primary:focus,.rtl-container.purple.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.purple.day .mat-ripple-element{background-color:#0000001a}.rtl-container.purple.day .mat-option{color:#000000de}.rtl-container.purple.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.purple.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#5e4ea5}.rtl-container.purple.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.purple.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.purple.day .mat-optgroup-label{color:#0000008a}.rtl-container.purple.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.purple.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.purple.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.purple.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.purple.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#5e4ea5}.rtl-container.purple.day .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-pseudo-checkbox-indeterminate,.rtl-container.purple.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.purple.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.purple.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.purple.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.purple.day .mat-app-background,.rtl-container.purple.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.purple.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.purple.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.purple.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.purple.day .mat-badge{position:relative}.rtl-container.purple.day .mat-badge.mat-badge{overflow:visible}.rtl-container.purple.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.purple.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.purple.day .ng-animate-disabled .mat-badge-content,.rtl-container.purple.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.purple.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.purple.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.purple.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.purple.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.purple.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.purple.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.purple.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.purple.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.purple.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.purple.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.purple.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.purple.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.purple.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.purple.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.purple.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.purple.day .mat-badge-content{color:#fff;background:#5e4ea5}.cdk-high-contrast-active .rtl-container.purple.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.purple.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.purple.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.purple.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.purple.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.purple.day .mat-button.mat-primary,.rtl-container.purple.day .mat-icon-button.mat-primary,.rtl-container.purple.day .mat-stroked-button.mat-primary{color:#5e4ea5}.rtl-container.purple.day .mat-button.mat-accent,.rtl-container.purple.day .mat-icon-button.mat-accent,.rtl-container.purple.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.purple.day .mat-button.mat-warn,.rtl-container.purple.day .mat-icon-button.mat-warn,.rtl-container.purple.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.purple.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.purple.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#5e4ea5}.rtl-container.purple.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.purple.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.purple.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.purple.day .mat-button .mat-ripple-element,.rtl-container.purple.day .mat-icon-button .mat-ripple-element,.rtl-container.purple.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.purple.day .mat-button-focus-overlay{background:black}.rtl-container.purple.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.purple.day .mat-flat-button,.rtl-container.purple.day .mat-raised-button,.rtl-container.purple.day .mat-fab,.rtl-container.purple.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.purple.day .mat-flat-button.mat-primary,.rtl-container.purple.day .mat-raised-button.mat-primary,.rtl-container.purple.day .mat-fab.mat-primary,.rtl-container.purple.day .mat-mini-fab.mat-primary,.rtl-container.purple.day .mat-flat-button.mat-accent,.rtl-container.purple.day .mat-raised-button.mat-accent,.rtl-container.purple.day .mat-fab.mat-accent,.rtl-container.purple.day .mat-mini-fab.mat-accent,.rtl-container.purple.day .mat-flat-button.mat-warn,.rtl-container.purple.day .mat-raised-button.mat-warn,.rtl-container.purple.day .mat-fab.mat-warn,.rtl-container.purple.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.purple.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.purple.day .mat-flat-button.mat-primary,.rtl-container.purple.day .mat-raised-button.mat-primary,.rtl-container.purple.day .mat-fab.mat-primary,.rtl-container.purple.day .mat-mini-fab.mat-primary{background-color:#5e4ea5}.rtl-container.purple.day .mat-flat-button.mat-accent,.rtl-container.purple.day .mat-raised-button.mat-accent,.rtl-container.purple.day .mat-fab.mat-accent,.rtl-container.purple.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.purple.day .mat-flat-button.mat-warn,.rtl-container.purple.day .mat-raised-button.mat-warn,.rtl-container.purple.day .mat-fab.mat-warn,.rtl-container.purple.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.purple.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.purple.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.purple.day .mat-button-toggle{color:#00000061}.rtl-container.purple.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.purple.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.purple.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.purple.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.purple.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.purple.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.purple.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.purple.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.purple.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.purple.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.purple.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.purple.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.purple.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}.rtl-container.purple.day .mat-card{background:white;color:#000000de}.rtl-container.purple.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-card-subtitle{color:#0000008a}.rtl-container.purple.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.purple.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.purple.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.purple.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.purple.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#5e4ea5}.rtl-container.purple.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.purple.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.purple.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.purple.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.purple.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.purple.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.purple.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#5e4ea5}.rtl-container.purple.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.purple.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.purple.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.purple.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-table{background:white}.rtl-container.purple.day .mat-table thead,.rtl-container.purple.day .mat-table tbody,.rtl-container.purple.day .mat-table tfoot,.rtl-container.purple.day mat-header-row,.rtl-container.purple.day mat-row,.rtl-container.purple.day mat-footer-row,.rtl-container.purple.day [mat-header-row],.rtl-container.purple.day [mat-row],.rtl-container.purple.day [mat-footer-row],.rtl-container.purple.day .mat-table-sticky{background:inherit}.rtl-container.purple.day mat-row,.rtl-container.purple.day mat-header-row,.rtl-container.purple.day mat-footer-row,.rtl-container.purple.day th.mat-header-cell,.rtl-container.purple.day td.mat-cell,.rtl-container.purple.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.purple.day .mat-header-cell{color:#0000008a}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-footer-cell{color:#000000de}.rtl-container.purple.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.purple.day .mat-datepicker-toggle,.rtl-container.purple.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.purple.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.purple.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-calendar-table-header,.rtl-container.purple.day .mat-calendar-body-label{color:#0000008a}.rtl-container.purple.day .mat-calendar-body-cell-content,.rtl-container.purple.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.purple.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.purple.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.purple.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.purple.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.purple.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.purple.day .mat-calendar-body-in-range:before{background:rgba(94,78,165,.2)}.rtl-container.purple.day .mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.day .mat-calendar-body-selected{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#5e4ea566}.rtl-container.purple.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}@media (hover: hover){.rtl-container.purple.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}}.rtl-container.purple.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.purple.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.day .mat-datepicker-toggle-active{color:#5e4ea5}.rtl-container.purple.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.purple.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.purple.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.purple.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.purple.day .mat-divider{border-top-color:#0000001f}.rtl-container.purple.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.purple.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.purple.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-action-row{border-top-color:#0000001f}.rtl-container.purple.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.purple.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.purple.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.purple.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.purple.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.purple.day .mat-expansion-panel-header-description,.rtl-container.purple.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}.rtl-container.purple.day .mat-form-field-label,.rtl-container.purple.day .mat-hint{color:#0009}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-label{color:#5e4ea5}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.purple.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.purple.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#5e4ea5}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#5e4ea5}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.purple.day .mat-error{color:#b00020}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.purple.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.purple.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.purple.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.purple.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.purple.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.purple.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.purple.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#5e4ea5}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.purple.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.purple.day .mat-icon.mat-primary{color:#5e4ea5}.rtl-container.purple.day .mat-icon.mat-accent{color:#424242}.rtl-container.purple.day .mat-icon.mat-warn{color:#b00020}.rtl-container.purple.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.purple.day .mat-input-element:disabled,.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.purple.day .mat-input-element{caret-color:#5e4ea5}.rtl-container.purple.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.purple.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.purple.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.purple.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.purple.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.purple.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.purple.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.purple.day .mat-list-base .mat-list-item,.rtl-container.purple.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.purple.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.purple.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.purple.day .mat-list-option:hover,.rtl-container.purple.day .mat-list-option:focus,.rtl-container.purple.day .mat-nav-list .mat-list-item:hover,.rtl-container.purple.day .mat-nav-list .mat-list-item:focus,.rtl-container.purple.day .mat-action-list .mat-list-item:hover,.rtl-container.purple.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-list-single-selected-option,.rtl-container.purple.day .mat-list-single-selected-option:hover,.rtl-container.purple.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-menu-panel{background:white}.rtl-container.purple.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.purple.day .mat-menu-item[disabled],.rtl-container.purple.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.purple.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.purple.day .mat-menu-item .mat-icon-no-color,.rtl-container.purple.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.purple.day .mat-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-paginator{background:white}.rtl-container.purple.day .mat-paginator,.rtl-container.purple.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.purple.day .mat-paginator-decrement,.rtl-container.purple.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.purple.day .mat-paginator-first,.rtl-container.purple.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.mat-paginator-container{min-height:56px}.rtl-container.purple.day .mat-progress-bar-background{fill:#d3cfe5}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#d3cfe5}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#5e4ea5}.rtl-container.purple.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.purple.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.purple.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.purple.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.purple.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.purple.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.purple.day .mat-progress-spinner circle,.rtl-container.purple.day .mat-spinner circle{stroke:#5e4ea5}.rtl-container.purple.day .mat-progress-spinner.mat-accent circle,.rtl-container.purple.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.purple.day .mat-progress-spinner.mat-warn circle,.rtl-container.purple.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.purple.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.purple.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#5e4ea5}.rtl-container.purple.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.purple.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#5e4ea5}.rtl-container.purple.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.purple.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.purple.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.purple.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.purple.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.purple.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.purple.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.purple.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.purple.day .mat-select-value{color:#000000de}.rtl-container.purple.day .mat-select-placeholder{color:#0000006b}.rtl-container.purple.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.purple.day .mat-select-arrow{color:#0000008a}.rtl-container.purple.day .mat-select-panel{background:white}.rtl-container.purple.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#5e4ea5}.rtl-container.purple.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.purple.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.purple.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.purple.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.purple.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.purple.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.purple.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.purple.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.purple.day .mat-drawer-side.mat-drawer-end,.rtl-container.purple.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.purple.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.purple.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.purple.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.purple.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.purple.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.purple.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#5e4ea58a}.rtl-container.purple.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.purple.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.purple.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.purple.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.purple.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.purple.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.purple.day .mat-slider-track-background{background-color:#00000042}.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#5e4ea5}.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#5e4ea533}.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.purple.day .mat-slider:hover .mat-slider-track-background,.rtl-container.purple.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.purple.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.purple.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.purple.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.purple.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.purple.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.purple.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.purple.day .mat-step-header.cdk-keyboard-focused,.rtl-container.purple.day .mat-step-header.cdk-program-focused,.rtl-container.purple.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.purple.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.purple.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.purple.day .mat-step-header:hover{background:none}}.rtl-container.purple.day .mat-step-header .mat-step-label,.rtl-container.purple.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.purple.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.purple.day .mat-step-header .mat-step-icon-selected,.rtl-container.purple.day .mat-step-header .mat-step-icon-state-done,.rtl-container.purple.day .mat-step-header .mat-step-icon-state-edit{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.purple.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.purple.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.purple.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.purple.day .mat-stepper-horizontal,.rtl-container.purple.day .mat-stepper-vertical{background-color:#fff}.rtl-container.purple.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.purple.day .mat-horizontal-stepper-header:before,.rtl-container.purple.day .mat-horizontal-stepper-header:after,.rtl-container.purple.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px}.mat-stepper-vertical-line:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}.rtl-container.purple.day .mat-sort-header-arrow{color:#757575}.rtl-container.purple.day .mat-tab-nav-bar,.rtl-container.purple.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.purple.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.purple.day .mat-tab-label,.rtl-container.purple.day .mat-tab-link{color:#000000de}.rtl-container.purple.day .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.purple.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.purple.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.purple.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#5e4ea5}.rtl-container.purple.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.purple.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.purple.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.purple.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#5e4ea5}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.purple.day .mat-toolbar.mat-primary{background:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.purple.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.purple.day .mat-toolbar .mat-form-field-underline,.rtl-container.purple.day .mat-toolbar .mat-form-field-ripple,.rtl-container.purple.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.purple.day .mat-toolbar .mat-form-field-label,.rtl-container.purple.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.purple.day .mat-toolbar .mat-select-value,.rtl-container.purple.day .mat-toolbar .mat-select-arrow,.rtl-container.purple.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.purple.day .mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}.rtl-container.purple.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.purple.day .mat-tree{background:white}.rtl-container.purple.day .mat-tree-node,.rtl-container.purple.day .mat-nested-tree-node{color:#000000de}.mat-tree-node{min-height:48px}.rtl-container.purple.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.day .mat-simple-snackbar-action{color:#424242}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.purple.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#5e4ea5}.rtl-container.purple.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.purple.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.purple.day .mat-tab-label.mat-tab-label-active{color:#5e4ea5}.rtl-container.purple.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#5e4ea5}.rtl-container.purple.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.purple.day .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.purple.day .mat-form-field-suffix{color:#0000008a}.rtl-container.purple.day .mat-stroked-button.mat-primary{border-color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.purple.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .selected-color{border-color:#8e83c0}.rtl-container.purple.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.purple.day .page-title-container,.rtl-container.purple.day .page-sub-title-container{color:#0000008a}.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.purple.day .page-title-container .mat-input-element,.rtl-container.purple.day .page-title-container .mat-radio-label-content,.rtl-container.purple.day .page-title-container .theme-name,.rtl-container.purple.day .page-sub-title-container .mat-input-element,.rtl-container.purple.day .page-sub-title-container .mat-radio-label-content,.rtl-container.purple.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.purple.day .cc-data-block .cc-data-title{color:#5e4ea5}.rtl-container.purple.day .active-link,.rtl-container.purple.day .active-link .fa-icon-small{color:#5e4ea5;font-weight:500;cursor:pointer;fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#5e4ea5;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day svg.top-icon-small{fill:#000000de}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#312579}.rtl-container.purple.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-tab-label,.rtl-container.purple.day .mat-tab-link{color:#0000008a}.rtl-container.purple.day .mat-card,.rtl-container.purple.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.purple.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-info-value{color:#0000008a}.rtl-container.purple.day .color-primary{color:#5e4ea5!important}.rtl-container.purple.day .dot-primary{background-color:#5e4ea5!important}.rtl-container.purple.day .dot-primary-lighter{background-color:#8e83c0!important}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-tooltip{font-size:120%}.rtl-container.purple.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.purple.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.purple.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.purple.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-1{fill:#fff}.rtl-container.purple.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.purple.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-6{fill:#fff}.rtl-container.purple.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-9{fill:#fff}.rtl-container.purple.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-16{fill:#404040}.rtl-container.purple.day svg .fill-color-17{fill:#404040}.rtl-container.purple.day svg .fill-color-18{fill:#000}.rtl-container.purple.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-24{fill:#000}.rtl-container.purple.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.day svg .fill-color-27{fill:#000}.rtl-container.purple.day svg .fill-color-28{fill:#313131}.rtl-container.purple.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-30{fill:#fff}.rtl-container.purple.day svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.day svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.day svg .fill-color-primary-darker{fill:#5e4ea5}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.purple.day .material-icons.info-icon{color:#0000008a}.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.purple.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#5e4ea5}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#312579}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#afa7d2}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.purple.day .foreground.mat-progress-spinner circle,.rtl-container.purple.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.purple.day .mat-toolbar-row,.rtl-container.purple.day .mat-toolbar-single-row{height:5rem}.rtl-container.purple.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day a{color:#5e4ea5}.rtl-container.purple.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.day .h-active-link{border-bottom:2px solid white}.rtl-container.purple.day .mat-icon-36{color:#0000008a}.rtl-container.purple.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.purple.day .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.day .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.day .border-accent{border:1px solid #424242}.rtl-container.purple.day .border-warn{border:1px solid #b00020}.rtl-container.purple.day .material-icons.primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.accent{color:#424242}.rtl-container.purple.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.purple.day .row-disabled{background-color:gray}.rtl-container.purple.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.day .mat-menu-panel{min-width:6.4rem}.rtl-container.purple.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.purple.day .horizontal-button:hover{background:#8e83c0;color:#424242}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button,.rtl-container.purple.day .mat-flat-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.purple.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-header-cell,.rtl-container.purple.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.purple.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-table thead tr th{color:#000}.rtl-container.purple.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .more-button{color:#00000061}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.purple.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.purple.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.purple.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.purple.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.purple.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.purple.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.purple.day .color-warn{color:#b00020}.rtl-container.purple.day .fill-warn{fill:#b00020}.rtl-container.purple.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.purple.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-info a{color:#004085}.rtl-container.purple.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-warn a{color:#856404}.rtl-container.purple.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.day .help-expansion .mat-expansion-panel-header,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.day .help-expansion .mat-expansion-panel-content,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.purple.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.day .failed-status{color:#b00020}.rtl-container.purple.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.purple.day .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.day .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.purple.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.purple.day ngx-charts-bar-vertical text,.rtl-container.purple.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.purple.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.day .mat-paginator-container{padding:0}.rtl-container.purple.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.day .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.purple.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-option{color:#fff}.rtl-container.purple.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#5e4ea5}.rtl-container.purple.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.purple.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.purple.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.purple.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#5e4ea5}.rtl-container.purple.night .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.purple.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.purple.night .mat-app-background,.rtl-container.purple.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.purple.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.purple.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.purple.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.purple.night .mat-badge{position:relative}.rtl-container.purple.night .mat-badge.mat-badge{overflow:visible}.rtl-container.purple.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.purple.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.purple.night .ng-animate-disabled .mat-badge-content,.rtl-container.purple.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.purple.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.purple.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.purple.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.purple.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.purple.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.purple.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.purple.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.purple.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.purple.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.purple.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.purple.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.purple.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.purple.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.purple.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.purple.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.purple.night .mat-badge-content{color:#fff;background:#5e4ea5}.cdk-high-contrast-active .rtl-container.purple.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.purple.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.purple.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.purple.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.purple.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#5e4ea5}.rtl-container.purple.night .mat-button.mat-accent,.rtl-container.purple.night .mat-icon-button.mat-accent,.rtl-container.purple.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.purple.night .mat-button.mat-warn,.rtl-container.purple.night .mat-icon-button.mat-warn,.rtl-container.purple.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.purple.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#5e4ea5}.rtl-container.purple.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.purple.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.purple.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.purple.night .mat-button .mat-ripple-element,.rtl-container.purple.night .mat-icon-button .mat-ripple-element,.rtl-container.purple.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.purple.night .mat-button-focus-overlay{background:white}.rtl-container.purple.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.purple.night .mat-flat-button,.rtl-container.purple.night .mat-raised-button,.rtl-container.purple.night .mat-fab,.rtl-container.purple.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.purple.night .mat-flat-button.mat-primary,.rtl-container.purple.night .mat-raised-button.mat-primary,.rtl-container.purple.night .mat-fab.mat-primary,.rtl-container.purple.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.purple.night .mat-flat-button.mat-accent,.rtl-container.purple.night .mat-raised-button.mat-accent,.rtl-container.purple.night .mat-fab.mat-accent,.rtl-container.purple.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.purple.night .mat-flat-button.mat-warn,.rtl-container.purple.night .mat-raised-button.mat-warn,.rtl-container.purple.night .mat-fab.mat-warn,.rtl-container.purple.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.purple.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.purple.night .mat-flat-button.mat-primary,.rtl-container.purple.night .mat-raised-button.mat-primary,.rtl-container.purple.night .mat-fab.mat-primary,.rtl-container.purple.night .mat-mini-fab.mat-primary{background-color:#5e4ea5}.rtl-container.purple.night .mat-flat-button.mat-accent,.rtl-container.purple.night .mat-raised-button.mat-accent,.rtl-container.purple.night .mat-fab.mat-accent,.rtl-container.purple.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.purple.night .mat-flat-button.mat-warn,.rtl-container.purple.night .mat-raised-button.mat-warn,.rtl-container.purple.night .mat-fab.mat-warn,.rtl-container.purple.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.purple.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.purple.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.purple.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.purple.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.purple.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.purple.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.purple.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.purple.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.purple.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.purple.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.purple.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.purple.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.purple.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.purple.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.purple.night .mat-card{background:#202020;color:#fff}.rtl-container.purple.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.purple.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.purple.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.purple.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#5e4ea5}.rtl-container.purple.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.purple.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.purple.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.purple.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.purple.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.purple.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#5e4ea5}.rtl-container.purple.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.purple.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.purple.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.purple.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.purple.night .mat-table{background:#202020}.rtl-container.purple.night .mat-table thead,.rtl-container.purple.night .mat-table tbody,.rtl-container.purple.night .mat-table tfoot,.rtl-container.purple.night mat-header-row,.rtl-container.purple.night mat-row,.rtl-container.purple.night mat-footer-row,.rtl-container.purple.night [mat-header-row],.rtl-container.purple.night [mat-row],.rtl-container.purple.night [mat-footer-row],.rtl-container.purple.night .mat-table-sticky{background:inherit}.rtl-container.purple.night mat-row,.rtl-container.purple.night mat-header-row,.rtl-container.purple.night mat-footer-row,.rtl-container.purple.night th.mat-header-cell,.rtl-container.purple.night td.mat-cell,.rtl-container.purple.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-footer-cell{color:#fff}.rtl-container.purple.night .mat-calendar-arrow{fill:#fff}.rtl-container.purple.night .mat-datepicker-toggle,.rtl-container.purple.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.purple.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.purple.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.purple.night .mat-calendar-body-cell-content,.rtl-container.purple.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.purple.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.purple.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.purple.night .mat-calendar-body-in-range:before{background:rgba(94,78,165,.2)}.rtl-container.purple.night .mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.night .mat-calendar-body-selected{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#5e4ea566}.rtl-container.purple.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}@media (hover: hover){.rtl-container.purple.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}}.rtl-container.purple.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.purple.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.purple.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-datepicker-toggle-active{color:#5e4ea5}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.purple.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.purple.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.purple.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.purple.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.purple.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.purple.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.purple.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.purple.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.purple.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-label{color:#5e4ea5}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.purple.night .mat-form-field-ripple{background-color:#fff}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#5e4ea5}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#5e4ea5}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.purple.night .mat-error{color:#ff343b}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.purple.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.purple.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.purple.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.purple.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.purple.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.purple.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.purple.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#5e4ea5}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.purple.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.purple.night .mat-icon.mat-primary{color:#5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{color:#eee}.rtl-container.purple.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-input-element{caret-color:#5e4ea5}.rtl-container.purple.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.purple.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.purple.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.purple.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.purple.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.purple.night .mat-list-base .mat-list-item,.rtl-container.purple.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.purple.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.purple.night .mat-list-option:hover,.rtl-container.purple.night .mat-list-option:focus,.rtl-container.purple.night .mat-nav-list .mat-list-item:hover,.rtl-container.purple.night .mat-nav-list .mat-list-item:focus,.rtl-container.purple.night .mat-action-list .mat-list-item:hover,.rtl-container.purple.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-list-single-selected-option,.rtl-container.purple.night .mat-list-single-selected-option:hover,.rtl-container.purple.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.purple.night .mat-menu-panel{background:#202020}.rtl-container.purple.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.purple.night .mat-menu-item .mat-icon-no-color,.rtl-container.purple.night .mat-menu-submenu-icon{color:#fff}.rtl-container.purple.night .mat-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-paginator{background:#202020}.rtl-container.purple.night .mat-paginator-decrement,.rtl-container.purple.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.purple.night .mat-paginator-first,.rtl-container.purple.night .mat-paginator-last{border-top:2px solid white}.rtl-container.purple.night .mat-progress-bar-background{fill:#211d33}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#211d33}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#5e4ea5}.rtl-container.purple.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.purple.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.purple.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.purple.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.purple.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.purple.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.purple.night .mat-progress-spinner circle,.rtl-container.purple.night .mat-spinner circle{stroke:#5e4ea5}.rtl-container.purple.night .mat-progress-spinner.mat-accent circle,.rtl-container.purple.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.purple.night .mat-progress-spinner.mat-warn circle,.rtl-container.purple.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.purple.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#5e4ea5}.rtl-container.purple.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.purple.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#5e4ea5}.rtl-container.purple.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.purple.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.purple.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.purple.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.purple.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.purple.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.purple.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.purple.night .mat-select-value{color:#fff}.rtl-container.purple.night .mat-select-panel{background:#202020}.rtl-container.purple.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.purple.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#5e4ea5}.rtl-container.purple.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.purple.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.purple.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.purple.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.purple.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.purple.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.purple.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.purple.night .mat-drawer-side.mat-drawer-end,.rtl-container.purple.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.purple.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.purple.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.purple.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.purple.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.purple.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.purple.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#5e4ea5}.rtl-container.purple.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#5e4ea58a}.rtl-container.purple.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#5e4ea5}.rtl-container.purple.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.purple.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.purple.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.purple.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.purple.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.purple.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#5e4ea5}.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#5e4ea533}.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.purple.night .mat-slider:hover .mat-slider-track-background,.rtl-container.purple.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.purple.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.purple.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.purple.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.purple.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.purple.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.purple.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.purple.night .mat-step-header.cdk-keyboard-focused,.rtl-container.purple.night .mat-step-header.cdk-program-focused,.rtl-container.purple.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.purple.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.purple.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.purple.night .mat-step-header:hover{background:none}}.rtl-container.purple.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.purple.night .mat-step-header .mat-step-icon-selected,.rtl-container.purple.night .mat-step-header .mat-step-icon-state-done,.rtl-container.purple.night .mat-step-header .mat-step-icon-state-edit{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.purple.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.purple.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.purple.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.purple.night .mat-stepper-horizontal,.rtl-container.purple.night .mat-stepper-vertical{background-color:#202020}.rtl-container.purple.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.purple.night .mat-horizontal-stepper-header:before,.rtl-container.purple.night .mat-horizontal-stepper-header:after,.rtl-container.purple.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.purple.night .mat-tab-nav-bar,.rtl-container.purple.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.purple.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.purple.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.purple.night .mat-tab-label,.rtl-container.purple.night .mat-tab-link{color:#fff}.rtl-container.purple.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.purple.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#5e4ea5}.rtl-container.purple.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.purple.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.purple.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.purple.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#5e4ea5}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.purple.night .mat-toolbar.mat-primary{background:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.purple.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.purple.night .mat-toolbar .mat-form-field-underline,.rtl-container.purple.night .mat-toolbar .mat-form-field-ripple,.rtl-container.purple.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.purple.night .mat-toolbar .mat-form-field-label,.rtl-container.purple.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.purple.night .mat-toolbar .mat-select-value,.rtl-container.purple.night .mat-toolbar .mat-select-arrow,.rtl-container.purple.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.purple.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.purple.night .mat-tree{background:#202020}.rtl-container.purple.night .mat-tree-node,.rtl-container.purple.night .mat-nested-tree-node{color:#fff}.rtl-container.purple.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-simple-snackbar-action{color:inherit}.rtl-container.purple.night .mat-primary{color:#9787ff}.rtl-container.purple.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-tab-label.mat-tab-label-active{color:#9787ff}.rtl-container.purple.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.purple.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.purple.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.purple.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#9787ff}.rtl-container.purple.night .cc-data-block .cc-data-title{color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary{border-color:#9787ff;color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.purple.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.purple.night .active-link,.rtl-container.purple.night .active-link .fa-icon-small,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#9787ff;font-weight:500;cursor:pointer;fill:#9787ff}.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover,.rtl-container.purple.night .mat-nested-tree-node-parent:hover,.rtl-container.purple.night .mat-select-panel .mat-option:hover,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#9787ff;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.purple.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.night .mat-tree-node:hover .mat-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#9787ff}.rtl-container.purple.night .mat-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.night .page-title-container .page-title-img,.rtl-container.purple.night svg.top-icon-small{fill:#fff}.rtl-container.purple.night .selected-color{border-color:#8e83c0}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#56479d}.rtl-container.purple.night .chart-legend .legend-label:hover,.rtl-container.purple.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.purple.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-select-panel{background-color:#262626}.rtl-container.purple.night .mat-tree{background:#262626}.rtl-container.purple.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.purple.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.purple.night .dashboard-info-title{color:#9787ff}.rtl-container.purple.night .dashboard-info-value,.rtl-container.purple.night .dashboard-capacity-header{color:#fff}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.purple.night .color-primary{color:#9787ff!important}.rtl-container.purple.night .dot-primary{background-color:#9787ff!important}.rtl-container.purple.night .dot-primary-lighter{background-color:#5e4ea5!important}.rtl-container.purple.night .mat-stepper-vertical{background-color:#262626}.rtl-container.purple.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.purple.night svg .boltz-icon-fill{fill:#fff}.rtl-container.purple.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.purple.night svg .fill-color-0{fill:#171717}.rtl-container.purple.night svg .fill-color-1{fill:#232323}.rtl-container.purple.night svg .fill-color-2{fill:#222}.rtl-container.purple.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.purple.night svg .fill-color-4{fill:#383838}.rtl-container.purple.night svg .fill-color-5{fill:#555}.rtl-container.purple.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.purple.night svg .fill-color-7{fill:#202020}.rtl-container.purple.night svg .fill-color-8{fill:#242424}.rtl-container.purple.night svg .fill-color-9{fill:#262626}.rtl-container.purple.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.purple.night svg .fill-color-11{fill:#171717}.rtl-container.purple.night svg .fill-color-12{fill:#ccc}.rtl-container.purple.night svg .fill-color-13{fill:#adadad}.rtl-container.purple.night svg .fill-color-14{fill:#ababab}.rtl-container.purple.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.purple.night svg .fill-color-16{fill:#707070}.rtl-container.purple.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.purple.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.purple.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.purple.night svg .fill-color-21{fill:#cacaca}.rtl-container.purple.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.purple.night svg .fill-color-23{fill:#777}.rtl-container.purple.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.purple.night svg .fill-color-25{fill:#252525}.rtl-container.purple.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.night svg .fill-color-27{fill:#000}.rtl-container.purple.night svg .fill-color-28{fill:#313131}.rtl-container.purple.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.purple.night svg .fill-color-30{fill:#fff}.rtl-container.purple.night svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.night svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.night svg .fill-color-primary-darker{fill:#9787ff}.rtl-container.purple.night .mat-select-value,.rtl-container.purple.night .mat-select-arrow{color:#fff}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.purple.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.purple.night .mat-slide-toggle-bar,.rtl-container.purple.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.purple.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#9787ff}.rtl-container.purple.night tr.alert.alert-warn .mat-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-header-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.purple.night .material-icons.info-icon,.rtl-container.purple.night .material-icons.info-icon.info-icon-primary{color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.purple.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#9787ff}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#42358a}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9787ff}.rtl-container.purple.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.purple.night .foreground.mat-progress-spinner circle,.rtl-container.purple.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.purple.night .mat-toolbar-row,.rtl-container.purple.night .mat-toolbar-single-row{height:5rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.purple.night a{color:#5e4ea5}.rtl-container.purple.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.night .h-active-link{border-bottom:2px solid white}.rtl-container.purple.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.purple.night .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.night .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.night .border-accent{border:1px solid #eeeeee}.rtl-container.purple.night .border-warn{border:1px solid #ff343b}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#eee}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.purple.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.purple.night .row-disabled{background-color:gray}.rtl-container.purple.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.night .mat-menu-panel{min-width:6.4rem}.rtl-container.purple.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.purple.night .horizontal-button:hover{background:#8e83c0;color:#eee}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button,.rtl-container.purple.night .mat-flat-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.purple.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-header-cell,.rtl-container.purple.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.purple.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.purple.night table.mat-table thead tr th{color:#fff}.rtl-container.purple.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.purple.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.purple.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.purple.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.purple.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.purple.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.purple.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.purple.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.purple.night .color-warn{color:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.rtl-container.purple.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.purple.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-info a{color:#004085}.rtl-container.purple.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-warn a{color:#856404}.rtl-container.purple.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.night .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.purple.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.night .failed-status{color:#ff343b}.rtl-container.purple.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.purple.night .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.night .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.purple.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.purple.night ngx-charts-bar-vertical text,.rtl-container.purple.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.purple.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.night .mat-paginator-container{padding:0}.rtl-container.purple.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.night .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.small.small .mat-header-cell{font-weight:700}.rtl-container.blue.small.small .mr-4{margin-right:1rem!important}.rtl-container.blue.small.small .mat-menu-item,.rtl-container.blue.small.small .mat-tree .mat-tree-node,.rtl-container.blue.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.blue.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.blue.small.small .genseed-message,.rtl-container.blue.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.blue.small.small .fa-icon-small,.rtl-container.blue.small.small .top-icon-small{font-size:1.44rem}.rtl-container.blue.small.small .page-title-container,.rtl-container.blue.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.blue.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.blue.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.blue.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.blue.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.blue.small.small .material-icons,.rtl-container.blue.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.blue.small.small .mat-expansion-panel-header,.rtl-container.blue.small.small .mat-menu-item,.rtl-container.blue.small.small .mat-list .mat-list-item,.rtl-container.blue.small.small .mat-nav-list .mat-list-item,.rtl-container.blue.small.small .mat-option,.rtl-container.blue.small.small .mat-select,.rtl-container.blue.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.blue.small.small .logo{font-size:2.4rem}.rtl-container.blue.small.small .font-60-percent{font-size:.72rem}.rtl-container.blue.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.blue.small.small .icon-large{font-size:6rem}.rtl-container.blue.small.small .icon-small{font-size:1.8rem!important}.rtl-container.blue.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.blue.small.small .size-triple{font-size:3.6rem}.rtl-container.blue.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.blue.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.small.medium .mat-header-cell{font-weight:700}.rtl-container.blue.small.medium .mat-tree .mat-tree-node,.rtl-container.blue.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.blue.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.blue.small.medium .genseed-message,.rtl-container.blue.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.blue.small.medium .page-title-container,.rtl-container.blue.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.blue.small.medium .fa-icon-small,.rtl-container.blue.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.blue.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.blue.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.blue.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.blue.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.blue.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.blue.small.medium .material-icons{font-size:2.8rem}.rtl-container.blue.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.blue.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.blue.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.blue.small.medium .mat-expansion-panel-header,.rtl-container.blue.small.medium .mat-menu-item,.rtl-container.blue.small.medium .mat-list .mat-list-item,.rtl-container.blue.small.medium .mat-nav-list .mat-list-item,.rtl-container.blue.small.medium .mat-option,.rtl-container.blue.small.medium .mat-select,.rtl-container.blue.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.blue.small.medium .logo{font-size:2.8rem}.rtl-container.blue.small.medium .font-60-percent{font-size:.84rem}.rtl-container.blue.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.blue.small.medium .icon-large{font-size:7rem}.rtl-container.blue.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.blue.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.blue.small.medium .size-triple{font-size:4.2rem}.rtl-container.blue.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.blue.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.small.large .mat-header-cell{font-weight:800}.rtl-container.blue.small.large .mat-tree .mat-tree-node,.rtl-container.blue.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.blue.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.blue.small.large .genseed-message,.rtl-container.blue.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.blue.small.large .page-title-container,.rtl-container.blue.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.blue.small.large .fa-icon-small,.rtl-container.blue.small.large .top-icon-small,.rtl-container.blue.small.large .modal-info-header{font-size:1.92rem}.rtl-container.blue.small.large .top-toolbar-icon.icon-pinned,.rtl-container.blue.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.blue.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.blue.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.blue.small.large .material-icons{font-size:4rem}.rtl-container.blue.small.large .mat-expansion-panel-header,.rtl-container.blue.small.large .mat-menu-item,.rtl-container.blue.small.large .mat-list .mat-list-item,.rtl-container.blue.small.large .mat-nav-list .mat-list-item,.rtl-container.blue.small.large .mat-option,.rtl-container.blue.small.large .mat-select,.rtl-container.blue.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.blue.small.large .logo{font-size:3.2rem}.rtl-container.blue.small.large .font-60-percent{font-size:.96rem}.rtl-container.blue.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.blue.small.large .icon-large{font-size:8rem}.rtl-container.blue.small.large .icon-small{font-size:2.4rem!important}.rtl-container.blue.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.blue.small.large .size-triple{font-size:4.8rem}.rtl-container.blue.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.blue.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.small .mat-icon.material-icons:focus{outline:none}.rtl-container.blue.small .mat-flat-button.mat-primary:focus,.rtl-container.blue.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.blue.medium.small .mat-header-cell{font-weight:700}.rtl-container.blue.medium.small .mr-4{margin-right:1rem!important}.rtl-container.blue.medium.small .mat-menu-item,.rtl-container.blue.medium.small .mat-tree .mat-tree-node,.rtl-container.blue.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.blue.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.blue.medium.small .genseed-message,.rtl-container.blue.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.blue.medium.small .fa-icon-small,.rtl-container.blue.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.blue.medium.small .page-title-container,.rtl-container.blue.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.blue.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.blue.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.blue.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.blue.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.blue.medium.small .material-icons,.rtl-container.blue.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.blue.medium.small .mat-expansion-panel-header,.rtl-container.blue.medium.small .mat-menu-item,.rtl-container.blue.medium.small .mat-list .mat-list-item,.rtl-container.blue.medium.small .mat-nav-list .mat-list-item,.rtl-container.blue.medium.small .mat-option,.rtl-container.blue.medium.small .mat-select,.rtl-container.blue.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.blue.medium.small .logo{font-size:2.4rem}.rtl-container.blue.medium.small .font-60-percent{font-size:.72rem}.rtl-container.blue.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.blue.medium.small .icon-large{font-size:6rem}.rtl-container.blue.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.blue.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.blue.medium.small .size-triple{font-size:3.6rem}.rtl-container.blue.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.blue.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.medium.medium .mat-header-cell{font-weight:700}.rtl-container.blue.medium.medium .mat-tree .mat-tree-node,.rtl-container.blue.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.blue.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.blue.medium.medium .genseed-message,.rtl-container.blue.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.blue.medium.medium .page-title-container,.rtl-container.blue.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.blue.medium.medium .fa-icon-small,.rtl-container.blue.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.blue.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.blue.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.blue.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.blue.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.blue.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.blue.medium.medium .material-icons{font-size:2.8rem}.rtl-container.blue.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.blue.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.blue.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.blue.medium.medium .mat-expansion-panel-header,.rtl-container.blue.medium.medium .mat-menu-item,.rtl-container.blue.medium.medium .mat-list .mat-list-item,.rtl-container.blue.medium.medium .mat-nav-list .mat-list-item,.rtl-container.blue.medium.medium .mat-option,.rtl-container.blue.medium.medium .mat-select,.rtl-container.blue.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.blue.medium.medium .logo{font-size:2.8rem}.rtl-container.blue.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.blue.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.blue.medium.medium .icon-large{font-size:7rem}.rtl-container.blue.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.blue.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.blue.medium.medium .size-triple{font-size:4.2rem}.rtl-container.blue.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.blue.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.medium.large .mat-header-cell{font-weight:800}.rtl-container.blue.medium.large .mat-tree .mat-tree-node,.rtl-container.blue.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.blue.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.blue.medium.large .genseed-message,.rtl-container.blue.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.blue.medium.large .page-title-container,.rtl-container.blue.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.blue.medium.large .fa-icon-small,.rtl-container.blue.medium.large .top-icon-small,.rtl-container.blue.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.blue.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.blue.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.blue.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.blue.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.blue.medium.large .material-icons{font-size:4rem}.rtl-container.blue.medium.large .mat-expansion-panel-header,.rtl-container.blue.medium.large .mat-menu-item,.rtl-container.blue.medium.large .mat-list .mat-list-item,.rtl-container.blue.medium.large .mat-nav-list .mat-list-item,.rtl-container.blue.medium.large .mat-option,.rtl-container.blue.medium.large .mat-select,.rtl-container.blue.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.blue.medium.large .logo{font-size:3.2rem}.rtl-container.blue.medium.large .font-60-percent{font-size:.96rem}.rtl-container.blue.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.blue.medium.large .icon-large{font-size:8rem}.rtl-container.blue.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.blue.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.blue.medium.large .size-triple{font-size:4.8rem}.rtl-container.blue.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.blue.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.blue.medium .mat-flat-button.mat-primary:focus,.rtl-container.blue.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.blue.large.small .mat-header-cell{font-weight:700}.rtl-container.blue.large.small .mr-4{margin-right:1rem!important}.rtl-container.blue.large.small .mat-menu-item,.rtl-container.blue.large.small .mat-tree .mat-tree-node,.rtl-container.blue.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.blue.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.blue.large.small .genseed-message,.rtl-container.blue.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.blue.large.small .fa-icon-small,.rtl-container.blue.large.small .top-icon-small{font-size:1.44rem}.rtl-container.blue.large.small .page-title-container,.rtl-container.blue.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.blue.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.blue.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.blue.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.blue.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.blue.large.small .material-icons,.rtl-container.blue.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.blue.large.small .mat-expansion-panel-header,.rtl-container.blue.large.small .mat-menu-item,.rtl-container.blue.large.small .mat-list .mat-list-item,.rtl-container.blue.large.small .mat-nav-list .mat-list-item,.rtl-container.blue.large.small .mat-option,.rtl-container.blue.large.small .mat-select,.rtl-container.blue.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.blue.large.small .logo{font-size:2.4rem}.rtl-container.blue.large.small .font-60-percent{font-size:.72rem}.rtl-container.blue.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.blue.large.small .icon-large{font-size:6rem}.rtl-container.blue.large.small .icon-small{font-size:1.8rem!important}.rtl-container.blue.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.blue.large.small .size-triple{font-size:3.6rem}.rtl-container.blue.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.blue.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.large.medium .mat-header-cell{font-weight:700}.rtl-container.blue.large.medium .mat-tree .mat-tree-node,.rtl-container.blue.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.blue.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.blue.large.medium .genseed-message,.rtl-container.blue.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.blue.large.medium .page-title-container,.rtl-container.blue.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.blue.large.medium .fa-icon-small,.rtl-container.blue.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.blue.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.blue.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.blue.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.blue.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.blue.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.blue.large.medium .material-icons{font-size:2.8rem}.rtl-container.blue.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.blue.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.blue.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.blue.large.medium .mat-expansion-panel-header,.rtl-container.blue.large.medium .mat-menu-item,.rtl-container.blue.large.medium .mat-list .mat-list-item,.rtl-container.blue.large.medium .mat-nav-list .mat-list-item,.rtl-container.blue.large.medium .mat-option,.rtl-container.blue.large.medium .mat-select,.rtl-container.blue.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.blue.large.medium .logo{font-size:2.8rem}.rtl-container.blue.large.medium .font-60-percent{font-size:.84rem}.rtl-container.blue.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.blue.large.medium .icon-large{font-size:7rem}.rtl-container.blue.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.blue.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.blue.large.medium .size-triple{font-size:4.2rem}.rtl-container.blue.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.blue.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.large.large .mat-header-cell{font-weight:800}.rtl-container.blue.large.large .mat-tree .mat-tree-node,.rtl-container.blue.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.blue.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.blue.large.large .genseed-message,.rtl-container.blue.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.blue.large.large .page-title-container,.rtl-container.blue.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.blue.large.large .fa-icon-small,.rtl-container.blue.large.large .top-icon-small,.rtl-container.blue.large.large .modal-info-header{font-size:1.92rem}.rtl-container.blue.large.large .top-toolbar-icon.icon-pinned,.rtl-container.blue.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.blue.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.blue.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.blue.large.large .material-icons{font-size:4rem}.rtl-container.blue.large.large .mat-expansion-panel-header,.rtl-container.blue.large.large .mat-menu-item,.rtl-container.blue.large.large .mat-list .mat-list-item,.rtl-container.blue.large.large .mat-nav-list .mat-list-item,.rtl-container.blue.large.large .mat-option,.rtl-container.blue.large.large .mat-select,.rtl-container.blue.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.blue.large.large .logo{font-size:3.2rem}.rtl-container.blue.large.large .font-60-percent{font-size:.96rem}.rtl-container.blue.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.blue.large.large .icon-large{font-size:8rem}.rtl-container.blue.large.large .icon-small{font-size:2.4rem!important}.rtl-container.blue.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.blue.large.large .size-triple{font-size:4.8rem}.rtl-container.blue.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.blue.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.large .mat-icon.material-icons:focus{outline:none}.rtl-container.blue.large .mat-flat-button.mat-primary:focus,.rtl-container.blue.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.blue.day .mat-ripple-element{background-color:#0000001a}.rtl-container.blue.day .mat-option{color:#000000de}.rtl-container.blue.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.blue.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#1976d2}.rtl-container.blue.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.blue.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.blue.day .mat-optgroup-label{color:#0000008a}.rtl-container.blue.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.blue.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.blue.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.blue.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#1976d2}.rtl-container.blue.day .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.blue.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.blue.day .mat-app-background,.rtl-container.blue.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.blue.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.blue.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.blue.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.blue.day .mat-badge{position:relative}.rtl-container.blue.day .mat-badge.mat-badge{overflow:visible}.rtl-container.blue.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.blue.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.blue.day .ng-animate-disabled .mat-badge-content,.rtl-container.blue.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.blue.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.blue.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.blue.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.blue.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.blue.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.blue.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.blue.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.blue.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.blue.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.blue.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.blue.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.blue.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.blue.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.blue.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.blue.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.blue.day .mat-badge-content{color:#fff;background:#1976d2}.cdk-high-contrast-active .rtl-container.blue.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.blue.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.blue.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.blue.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.blue.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.blue.day .mat-button.mat-primary,.rtl-container.blue.day .mat-icon-button.mat-primary,.rtl-container.blue.day .mat-stroked-button.mat-primary{color:#1976d2}.rtl-container.blue.day .mat-button.mat-accent,.rtl-container.blue.day .mat-icon-button.mat-accent,.rtl-container.blue.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.blue.day .mat-button.mat-warn,.rtl-container.blue.day .mat-icon-button.mat-warn,.rtl-container.blue.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.blue.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.blue.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#1976d2}.rtl-container.blue.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.blue.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.blue.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.blue.day .mat-button .mat-ripple-element,.rtl-container.blue.day .mat-icon-button .mat-ripple-element,.rtl-container.blue.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.blue.day .mat-button-focus-overlay{background:black}.rtl-container.blue.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.blue.day .mat-flat-button,.rtl-container.blue.day .mat-raised-button,.rtl-container.blue.day .mat-fab,.rtl-container.blue.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.blue.day .mat-flat-button.mat-primary,.rtl-container.blue.day .mat-raised-button.mat-primary,.rtl-container.blue.day .mat-fab.mat-primary,.rtl-container.blue.day .mat-mini-fab.mat-primary,.rtl-container.blue.day .mat-flat-button.mat-accent,.rtl-container.blue.day .mat-raised-button.mat-accent,.rtl-container.blue.day .mat-fab.mat-accent,.rtl-container.blue.day .mat-mini-fab.mat-accent,.rtl-container.blue.day .mat-flat-button.mat-warn,.rtl-container.blue.day .mat-raised-button.mat-warn,.rtl-container.blue.day .mat-fab.mat-warn,.rtl-container.blue.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.blue.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.blue.day .mat-flat-button.mat-primary,.rtl-container.blue.day .mat-raised-button.mat-primary,.rtl-container.blue.day .mat-fab.mat-primary,.rtl-container.blue.day .mat-mini-fab.mat-primary{background-color:#1976d2}.rtl-container.blue.day .mat-flat-button.mat-accent,.rtl-container.blue.day .mat-raised-button.mat-accent,.rtl-container.blue.day .mat-fab.mat-accent,.rtl-container.blue.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.blue.day .mat-flat-button.mat-warn,.rtl-container.blue.day .mat-raised-button.mat-warn,.rtl-container.blue.day .mat-fab.mat-warn,.rtl-container.blue.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.blue.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.blue.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.blue.day .mat-button-toggle{color:#00000061}.rtl-container.blue.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.blue.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.blue.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.blue.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.blue.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.blue.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.blue.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.blue.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.blue.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.blue.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.blue.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.blue.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.blue.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.blue.day .mat-card{background:white;color:#000000de}.rtl-container.blue.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-card-subtitle{color:#0000008a}.rtl-container.blue.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.blue.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.blue.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.blue.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.blue.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#1976d2}.rtl-container.blue.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.blue.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.blue.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.blue.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.blue.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.blue.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.blue.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#1976d2}.rtl-container.blue.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.blue.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.blue.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.blue.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-table{background:white}.rtl-container.blue.day .mat-table thead,.rtl-container.blue.day .mat-table tbody,.rtl-container.blue.day .mat-table tfoot,.rtl-container.blue.day mat-header-row,.rtl-container.blue.day mat-row,.rtl-container.blue.day mat-footer-row,.rtl-container.blue.day [mat-header-row],.rtl-container.blue.day [mat-row],.rtl-container.blue.day [mat-footer-row],.rtl-container.blue.day .mat-table-sticky{background:inherit}.rtl-container.blue.day mat-row,.rtl-container.blue.day mat-header-row,.rtl-container.blue.day mat-footer-row,.rtl-container.blue.day th.mat-header-cell,.rtl-container.blue.day td.mat-cell,.rtl-container.blue.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.blue.day .mat-header-cell{color:#0000008a}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-footer-cell{color:#000000de}.rtl-container.blue.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.blue.day .mat-datepicker-toggle,.rtl-container.blue.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.blue.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.blue.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-calendar-table-header,.rtl-container.blue.day .mat-calendar-body-label{color:#0000008a}.rtl-container.blue.day .mat-calendar-body-cell-content,.rtl-container.blue.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.blue.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.blue.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.blue.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.blue.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.blue.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.blue.day .mat-calendar-body-in-range:before{background:rgba(25,118,210,.2)}.rtl-container.blue.day .mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.day .mat-calendar-body-selected{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#1976d266}.rtl-container.blue.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}@media (hover: hover){.rtl-container.blue.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}}.rtl-container.blue.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.blue.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-datepicker-toggle-active{color:#1976d2}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.blue.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.blue.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.blue.day .mat-divider{border-top-color:#0000001f}.rtl-container.blue.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.blue.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.blue.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-action-row{border-top-color:#0000001f}.rtl-container.blue.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.blue.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.blue.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.blue.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.blue.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.blue.day .mat-expansion-panel-header-description,.rtl-container.blue.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.blue.day .mat-form-field-label,.rtl-container.blue.day .mat-hint{color:#0009}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-label{color:#1976d2}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.blue.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.blue.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#1976d2}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#1976d2}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.blue.day .mat-error{color:#b00020}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.blue.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.blue.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.blue.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.blue.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.blue.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.blue.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.blue.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#1976d2}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.blue.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.blue.day .mat-icon.mat-primary{color:#1976d2}.rtl-container.blue.day .mat-icon.mat-accent{color:#424242}.rtl-container.blue.day .mat-icon.mat-warn{color:#b00020}.rtl-container.blue.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.blue.day .mat-input-element:disabled,.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.blue.day .mat-input-element{caret-color:#1976d2}.rtl-container.blue.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.blue.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.blue.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.blue.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.blue.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.blue.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.blue.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.blue.day .mat-list-base .mat-list-item,.rtl-container.blue.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.blue.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.blue.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.blue.day .mat-list-option:hover,.rtl-container.blue.day .mat-list-option:focus,.rtl-container.blue.day .mat-nav-list .mat-list-item:hover,.rtl-container.blue.day .mat-nav-list .mat-list-item:focus,.rtl-container.blue.day .mat-action-list .mat-list-item:hover,.rtl-container.blue.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-list-single-selected-option,.rtl-container.blue.day .mat-list-single-selected-option:hover,.rtl-container.blue.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-menu-panel{background:white}.rtl-container.blue.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.blue.day .mat-menu-item[disabled],.rtl-container.blue.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.blue.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.blue.day .mat-menu-item .mat-icon-no-color,.rtl-container.blue.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.blue.day .mat-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-paginator{background:white}.rtl-container.blue.day .mat-paginator,.rtl-container.blue.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.blue.day .mat-paginator-decrement,.rtl-container.blue.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.blue.day .mat-paginator-first,.rtl-container.blue.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.blue.day .mat-progress-bar-background{fill:#c2d9f0}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#c2d9f0}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#1976d2}.rtl-container.blue.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.blue.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.blue.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.blue.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.blue.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.blue.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.blue.day .mat-progress-spinner circle,.rtl-container.blue.day .mat-spinner circle{stroke:#1976d2}.rtl-container.blue.day .mat-progress-spinner.mat-accent circle,.rtl-container.blue.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.blue.day .mat-progress-spinner.mat-warn circle,.rtl-container.blue.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.blue.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.blue.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#1976d2}.rtl-container.blue.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.blue.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#1976d2}.rtl-container.blue.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.blue.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.blue.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.blue.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.blue.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.blue.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.blue.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.blue.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.blue.day .mat-select-value{color:#000000de}.rtl-container.blue.day .mat-select-placeholder{color:#0000006b}.rtl-container.blue.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.blue.day .mat-select-arrow{color:#0000008a}.rtl-container.blue.day .mat-select-panel{background:white}.rtl-container.blue.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#1976d2}.rtl-container.blue.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.blue.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.blue.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.blue.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.blue.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.blue.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.blue.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.blue.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.blue.day .mat-drawer-side.mat-drawer-end,.rtl-container.blue.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.blue.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.blue.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.blue.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.blue.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.blue.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.blue.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#1976d2}.rtl-container.blue.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1976d28a}.rtl-container.blue.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#1976d2}.rtl-container.blue.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.blue.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.blue.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.blue.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.blue.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.blue.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.blue.day .mat-slider-track-background{background-color:#00000042}.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#1976d2}.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#1976d233}.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.blue.day .mat-slider:hover .mat-slider-track-background,.rtl-container.blue.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.blue.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.blue.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.blue.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.blue.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.blue.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.blue.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.blue.day .mat-step-header.cdk-keyboard-focused,.rtl-container.blue.day .mat-step-header.cdk-program-focused,.rtl-container.blue.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.blue.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.blue.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.blue.day .mat-step-header:hover{background:none}}.rtl-container.blue.day .mat-step-header .mat-step-label,.rtl-container.blue.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.blue.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.blue.day .mat-step-header .mat-step-icon-selected,.rtl-container.blue.day .mat-step-header .mat-step-icon-state-done,.rtl-container.blue.day .mat-step-header .mat-step-icon-state-edit{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.blue.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.blue.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.blue.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.blue.day .mat-stepper-horizontal,.rtl-container.blue.day .mat-stepper-vertical{background-color:#fff}.rtl-container.blue.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.blue.day .mat-horizontal-stepper-header:before,.rtl-container.blue.day .mat-horizontal-stepper-header:after,.rtl-container.blue.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.blue.day .mat-sort-header-arrow{color:#757575}.rtl-container.blue.day .mat-tab-nav-bar,.rtl-container.blue.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.blue.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.blue.day .mat-tab-label,.rtl-container.blue.day .mat-tab-link{color:#000000de}.rtl-container.blue.day .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.blue.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.blue.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.blue.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#1976d2}.rtl-container.blue.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.blue.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.blue.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.blue.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#1976d2}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.blue.day .mat-toolbar.mat-primary{background:#1976d2;color:#fff}.rtl-container.blue.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.blue.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.blue.day .mat-toolbar .mat-form-field-underline,.rtl-container.blue.day .mat-toolbar .mat-form-field-ripple,.rtl-container.blue.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.blue.day .mat-toolbar .mat-form-field-label,.rtl-container.blue.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.blue.day .mat-toolbar .mat-select-value,.rtl-container.blue.day .mat-toolbar .mat-select-arrow,.rtl-container.blue.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.blue.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.blue.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.blue.day .mat-tree{background:white}.rtl-container.blue.day .mat-tree-node,.rtl-container.blue.day .mat-nested-tree-node{color:#000000de}.rtl-container.blue.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-simple-snackbar-action{color:#424242}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.blue.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.blue.day .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#1976d2}.rtl-container.blue.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.blue.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.blue.day .mat-tab-label.mat-tab-label-active{color:#1976d2}.rtl-container.blue.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#1976d2}.rtl-container.blue.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.blue.day .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.blue.day .mat-form-field-suffix{color:#0000008a}.rtl-container.blue.day .mat-stroked-button.mat-primary{border-color:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.blue.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .selected-color{border-color:#90caf9}.rtl-container.blue.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.blue.day .page-title-container,.rtl-container.blue.day .page-sub-title-container{color:#0000008a}.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.blue.day .page-title-container .mat-input-element,.rtl-container.blue.day .page-title-container .mat-radio-label-content,.rtl-container.blue.day .page-title-container .theme-name,.rtl-container.blue.day .page-sub-title-container .mat-input-element,.rtl-container.blue.day .page-sub-title-container .mat-radio-label-content,.rtl-container.blue.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.blue.day .cc-data-block .cc-data-title{color:#1976d2}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#1976d2;font-weight:500;cursor:pointer;fill:#1976d2}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#1976d2;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#1976d2}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#1976d2}.rtl-container.blue.day .mat-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day svg.top-icon-small{fill:#000000de}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#0d47a1}.rtl-container.blue.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-tab-label,.rtl-container.blue.day .mat-tab-link{color:#0000008a}.rtl-container.blue.day .mat-card,.rtl-container.blue.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.blue.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#1976d2}.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#1976d2!important}.rtl-container.blue.day .dot-primary{background-color:#1976d2!important}.rtl-container.blue.day .dot-primary-lighter{background-color:#90caf9!important}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-tooltip{font-size:120%}.rtl-container.blue.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.blue.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.blue.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.blue.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-1{fill:#fff}.rtl-container.blue.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.blue.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-6{fill:#fff}.rtl-container.blue.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-9{fill:#fff}.rtl-container.blue.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-16{fill:#404040}.rtl-container.blue.day svg .fill-color-17{fill:#404040}.rtl-container.blue.day svg .fill-color-18{fill:#000}.rtl-container.blue.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-24{fill:#000}.rtl-container.blue.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.day svg .fill-color-27{fill:#000}.rtl-container.blue.day svg .fill-color-28{fill:#313131}.rtl-container.blue.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-30{fill:#fff}.rtl-container.blue.day svg .fill-color-31{fill:#1976d2}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#1976d2}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.blue.day .material-icons.info-icon{color:#0000008a}.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#1976d2}.rtl-container.blue.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.blue.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#1976d2}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#0d47a1}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.blue.day .foreground.mat-progress-spinner circle,.rtl-container.blue.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.blue.day .mat-toolbar-row,.rtl-container.blue.day .mat-toolbar-single-row{height:5rem}.rtl-container.blue.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day a{color:#1976d2}.rtl-container.blue.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.day .h-active-link{border-bottom:2px solid white}.rtl-container.blue.day .mat-icon-36{color:#0000008a}.rtl-container.blue.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.blue.day .genseed-message{width:10%;color:#1976d2}.rtl-container.blue.day .border-primary{border:1px solid #1976d2}.rtl-container.blue.day .border-accent{border:1px solid #424242}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#1976d2}.rtl-container.blue.day .material-icons.accent{color:#424242}.rtl-container.blue.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.blue.day .row-disabled{background-color:gray}.rtl-container.blue.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.day .mat-menu-panel{min-width:6.4rem}.rtl-container.blue.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.blue.day .horizontal-button:hover{background:#90caf9;color:#424242}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button,.rtl-container.blue.day .mat-flat-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.blue.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-header-cell,.rtl-container.blue.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.blue.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-table thead tr th{color:#000}.rtl-container.blue.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .more-button{color:#00000061}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.blue.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.blue.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.blue.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.blue.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.blue.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.blue.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.blue.day .color-warn{color:#b00020}.rtl-container.blue.day .fill-warn{fill:#b00020}.rtl-container.blue.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.blue.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-info a{color:#004085}.rtl-container.blue.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-warn a{color:#856404}.rtl-container.blue.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.day .help-expansion .mat-expansion-panel-header,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.day .help-expansion .mat-expansion-panel-content,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.blue.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.day .failed-status{color:#b00020}.rtl-container.blue.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.blue.day .svg-fill-primary{fill:#1976d2}.rtl-container.blue.day .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.blue.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.blue.day ngx-charts-bar-vertical text,.rtl-container.blue.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.blue.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.day .mat-paginator-container{padding:0}.rtl-container.blue.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.day .invoice-animation-div .particles-circle{position:absolute;background-color:#1976d2;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #1976d2;background-color:transparent}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-option{color:#fff}.rtl-container.blue.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#1976d2}.rtl-container.blue.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.blue.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.blue.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.blue.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#1976d2}.rtl-container.blue.night .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.blue.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.blue.night .mat-app-background,.rtl-container.blue.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.blue.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.blue.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.blue.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.blue.night .mat-badge{position:relative}.rtl-container.blue.night .mat-badge.mat-badge{overflow:visible}.rtl-container.blue.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.blue.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.blue.night .ng-animate-disabled .mat-badge-content,.rtl-container.blue.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.blue.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.blue.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.blue.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.blue.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.blue.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.blue.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.blue.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.blue.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.blue.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.blue.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.blue.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.blue.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.blue.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.blue.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.blue.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.blue.night .mat-badge-content{color:#fff;background:#1976d2}.cdk-high-contrast-active .rtl-container.blue.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.blue.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.blue.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.blue.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.blue.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#1976d2}.rtl-container.blue.night .mat-button.mat-accent,.rtl-container.blue.night .mat-icon-button.mat-accent,.rtl-container.blue.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.blue.night .mat-button.mat-warn,.rtl-container.blue.night .mat-icon-button.mat-warn,.rtl-container.blue.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.blue.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#1976d2}.rtl-container.blue.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.blue.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.blue.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.blue.night .mat-button .mat-ripple-element,.rtl-container.blue.night .mat-icon-button .mat-ripple-element,.rtl-container.blue.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.blue.night .mat-button-focus-overlay{background:white}.rtl-container.blue.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.blue.night .mat-flat-button,.rtl-container.blue.night .mat-raised-button,.rtl-container.blue.night .mat-fab,.rtl-container.blue.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.blue.night .mat-flat-button.mat-primary,.rtl-container.blue.night .mat-raised-button.mat-primary,.rtl-container.blue.night .mat-fab.mat-primary,.rtl-container.blue.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.blue.night .mat-flat-button.mat-accent,.rtl-container.blue.night .mat-raised-button.mat-accent,.rtl-container.blue.night .mat-fab.mat-accent,.rtl-container.blue.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.blue.night .mat-flat-button.mat-warn,.rtl-container.blue.night .mat-raised-button.mat-warn,.rtl-container.blue.night .mat-fab.mat-warn,.rtl-container.blue.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.blue.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.blue.night .mat-flat-button.mat-primary,.rtl-container.blue.night .mat-raised-button.mat-primary,.rtl-container.blue.night .mat-fab.mat-primary,.rtl-container.blue.night .mat-mini-fab.mat-primary{background-color:#1976d2}.rtl-container.blue.night .mat-flat-button.mat-accent,.rtl-container.blue.night .mat-raised-button.mat-accent,.rtl-container.blue.night .mat-fab.mat-accent,.rtl-container.blue.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.blue.night .mat-flat-button.mat-warn,.rtl-container.blue.night .mat-raised-button.mat-warn,.rtl-container.blue.night .mat-fab.mat-warn,.rtl-container.blue.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.blue.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.blue.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.blue.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.blue.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.blue.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.blue.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.blue.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.blue.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.blue.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.blue.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.blue.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.blue.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.blue.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.blue.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.blue.night .mat-card{background:#202020;color:#fff}.rtl-container.blue.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.blue.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.blue.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.blue.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#1976d2}.rtl-container.blue.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.blue.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.blue.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.blue.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.blue.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.blue.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#1976d2}.rtl-container.blue.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.blue.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.blue.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.blue.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.blue.night .mat-table{background:#202020}.rtl-container.blue.night .mat-table thead,.rtl-container.blue.night .mat-table tbody,.rtl-container.blue.night .mat-table tfoot,.rtl-container.blue.night mat-header-row,.rtl-container.blue.night mat-row,.rtl-container.blue.night mat-footer-row,.rtl-container.blue.night [mat-header-row],.rtl-container.blue.night [mat-row],.rtl-container.blue.night [mat-footer-row],.rtl-container.blue.night .mat-table-sticky{background:inherit}.rtl-container.blue.night mat-row,.rtl-container.blue.night mat-header-row,.rtl-container.blue.night mat-footer-row,.rtl-container.blue.night th.mat-header-cell,.rtl-container.blue.night td.mat-cell,.rtl-container.blue.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-footer-cell{color:#fff}.rtl-container.blue.night .mat-calendar-arrow{fill:#fff}.rtl-container.blue.night .mat-datepicker-toggle,.rtl-container.blue.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.blue.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.blue.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.blue.night .mat-calendar-body-cell-content,.rtl-container.blue.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.blue.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.blue.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.blue.night .mat-calendar-body-in-range:before{background:rgba(25,118,210,.2)}.rtl-container.blue.night .mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.night .mat-calendar-body-selected{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#1976d266}.rtl-container.blue.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}@media (hover: hover){.rtl-container.blue.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}}.rtl-container.blue.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.blue.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.blue.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-datepicker-toggle-active{color:#1976d2}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.blue.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.blue.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.blue.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.blue.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.blue.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.blue.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.blue.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.blue.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.blue.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-label{color:#1976d2}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.blue.night .mat-form-field-ripple{background-color:#fff}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#1976d2}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#1976d2}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.blue.night .mat-error{color:#ff343b}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.blue.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.blue.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.blue.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.blue.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.blue.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.blue.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.blue.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#1976d2}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.blue.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.blue.night .mat-icon.mat-primary{color:#1976d2}.rtl-container.blue.night .mat-icon.mat-accent{color:#eee}.rtl-container.blue.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-input-element{caret-color:#1976d2}.rtl-container.blue.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.blue.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.blue.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.blue.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.blue.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.blue.night .mat-list-base .mat-list-item,.rtl-container.blue.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.blue.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.blue.night .mat-list-option:hover,.rtl-container.blue.night .mat-list-option:focus,.rtl-container.blue.night .mat-nav-list .mat-list-item:hover,.rtl-container.blue.night .mat-nav-list .mat-list-item:focus,.rtl-container.blue.night .mat-action-list .mat-list-item:hover,.rtl-container.blue.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-list-single-selected-option,.rtl-container.blue.night .mat-list-single-selected-option:hover,.rtl-container.blue.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.blue.night .mat-menu-panel{background:#202020}.rtl-container.blue.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.blue.night .mat-menu-item .mat-icon-no-color,.rtl-container.blue.night .mat-menu-submenu-icon{color:#fff}.rtl-container.blue.night .mat-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-paginator{background:#202020}.rtl-container.blue.night .mat-paginator-decrement,.rtl-container.blue.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.blue.night .mat-paginator-first,.rtl-container.blue.night .mat-paginator-last{border-top:2px solid white}.rtl-container.blue.night .mat-progress-bar-background{fill:#10273e}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#10273e}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1976d2}.rtl-container.blue.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.blue.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.blue.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.blue.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.blue.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.blue.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.blue.night .mat-progress-spinner circle,.rtl-container.blue.night .mat-spinner circle{stroke:#1976d2}.rtl-container.blue.night .mat-progress-spinner.mat-accent circle,.rtl-container.blue.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.blue.night .mat-progress-spinner.mat-warn circle,.rtl-container.blue.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.blue.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#1976d2}.rtl-container.blue.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.blue.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#1976d2}.rtl-container.blue.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.blue.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.blue.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.blue.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.blue.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.blue.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.blue.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.blue.night .mat-select-value{color:#fff}.rtl-container.blue.night .mat-select-panel{background:#202020}.rtl-container.blue.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.blue.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#1976d2}.rtl-container.blue.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.blue.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.blue.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.blue.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.blue.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.blue.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.blue.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.blue.night .mat-drawer-side.mat-drawer-end,.rtl-container.blue.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.blue.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.blue.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.blue.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.blue.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.blue.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.blue.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#1976d2}.rtl-container.blue.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1976d28a}.rtl-container.blue.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#1976d2}.rtl-container.blue.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.blue.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.blue.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.blue.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.blue.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.blue.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#1976d2}.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#1976d233}.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.blue.night .mat-slider:hover .mat-slider-track-background,.rtl-container.blue.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.blue.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.blue.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.blue.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.blue.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.blue.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.blue.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.blue.night .mat-step-header.cdk-keyboard-focused,.rtl-container.blue.night .mat-step-header.cdk-program-focused,.rtl-container.blue.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.blue.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.blue.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.blue.night .mat-step-header:hover{background:none}}.rtl-container.blue.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.blue.night .mat-step-header .mat-step-icon-selected,.rtl-container.blue.night .mat-step-header .mat-step-icon-state-done,.rtl-container.blue.night .mat-step-header .mat-step-icon-state-edit{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.blue.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.blue.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.blue.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.blue.night .mat-stepper-horizontal,.rtl-container.blue.night .mat-stepper-vertical{background-color:#202020}.rtl-container.blue.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.blue.night .mat-horizontal-stepper-header:before,.rtl-container.blue.night .mat-horizontal-stepper-header:after,.rtl-container.blue.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.blue.night .mat-tab-nav-bar,.rtl-container.blue.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.blue.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.blue.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.blue.night .mat-tab-label,.rtl-container.blue.night .mat-tab-link{color:#fff}.rtl-container.blue.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.blue.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#1976d2}.rtl-container.blue.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.blue.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.blue.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.blue.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#1976d2}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.blue.night .mat-toolbar.mat-primary{background:#1976d2;color:#fff}.rtl-container.blue.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.blue.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.blue.night .mat-toolbar .mat-form-field-underline,.rtl-container.blue.night .mat-toolbar .mat-form-field-ripple,.rtl-container.blue.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.blue.night .mat-toolbar .mat-form-field-label,.rtl-container.blue.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.blue.night .mat-toolbar .mat-select-value,.rtl-container.blue.night .mat-toolbar .mat-select-arrow,.rtl-container.blue.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.blue.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.blue.night .mat-tree{background:#202020}.rtl-container.blue.night .mat-tree-node,.rtl-container.blue.night .mat-nested-tree-node{color:#fff}.rtl-container.blue.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-simple-snackbar-action{color:inherit}.rtl-container.blue.night .mat-primary{color:#448aff}.rtl-container.blue.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.blue.night .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-tab-label.mat-tab-label-active{color:#448aff}.rtl-container.blue.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.blue.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.blue.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.blue.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#448aff}.rtl-container.blue.night .cc-data-block .cc-data-title{color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary{border-color:#448aff;color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.blue.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.blue.night .active-link,.rtl-container.blue.night .active-link .fa-icon-small,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#448aff;font-weight:500;cursor:pointer;fill:#448aff}.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-tree-node:hover,.rtl-container.blue.night .mat-nested-tree-node-parent:hover,.rtl-container.blue.night .mat-select-panel .mat-option:hover,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#448aff;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.blue.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.night .mat-tree-node:hover .mat-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#448aff}.rtl-container.blue.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#448aff}.rtl-container.blue.night .mat-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.night .page-title-container .page-title-img,.rtl-container.blue.night svg.top-icon-small{fill:#fff}.rtl-container.blue.night .selected-color{border-color:#90caf9}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1e88e5}.rtl-container.blue.night .chart-legend .legend-label:hover,.rtl-container.blue.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.blue.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-select-panel{background-color:#262626}.rtl-container.blue.night .mat-tree{background:#262626}.rtl-container.blue.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.blue.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.blue.night .dashboard-info-title{color:#448aff}.rtl-container.blue.night .dashboard-info-value,.rtl-container.blue.night .dashboard-capacity-header{color:#fff}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.blue.night .color-primary{color:#448aff!important}.rtl-container.blue.night .dot-primary{background-color:#448aff!important}.rtl-container.blue.night .dot-primary-lighter{background-color:#1976d2!important}.rtl-container.blue.night .mat-stepper-vertical{background-color:#262626}.rtl-container.blue.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.blue.night svg .boltz-icon-fill{fill:#fff}.rtl-container.blue.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.blue.night svg .fill-color-0{fill:#171717}.rtl-container.blue.night svg .fill-color-1{fill:#232323}.rtl-container.blue.night svg .fill-color-2{fill:#222}.rtl-container.blue.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.blue.night svg .fill-color-4{fill:#383838}.rtl-container.blue.night svg .fill-color-5{fill:#555}.rtl-container.blue.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.blue.night svg .fill-color-7{fill:#202020}.rtl-container.blue.night svg .fill-color-8{fill:#242424}.rtl-container.blue.night svg .fill-color-9{fill:#262626}.rtl-container.blue.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.blue.night svg .fill-color-11{fill:#171717}.rtl-container.blue.night svg .fill-color-12{fill:#ccc}.rtl-container.blue.night svg .fill-color-13{fill:#adadad}.rtl-container.blue.night svg .fill-color-14{fill:#ababab}.rtl-container.blue.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.blue.night svg .fill-color-16{fill:#707070}.rtl-container.blue.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.blue.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.blue.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.blue.night svg .fill-color-21{fill:#cacaca}.rtl-container.blue.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.blue.night svg .fill-color-23{fill:#777}.rtl-container.blue.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.blue.night svg .fill-color-25{fill:#252525}.rtl-container.blue.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.night svg .fill-color-27{fill:#000}.rtl-container.blue.night svg .fill-color-28{fill:#313131}.rtl-container.blue.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.blue.night svg .fill-color-30{fill:#fff}.rtl-container.blue.night svg .fill-color-31{fill:#1976d2}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.night svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.night svg .fill-color-primary-darker{fill:#448aff}.rtl-container.blue.night .mat-select-value,.rtl-container.blue.night .mat-select-arrow{color:#fff}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.blue.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.blue.night .mat-slide-toggle-bar,.rtl-container.blue.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.blue.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#448aff}.rtl-container.blue.night tr.alert.alert-warn .mat-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-header-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.blue.night .material-icons.info-icon,.rtl-container.blue.night .material-icons.info-icon.info-icon-primary{color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.blue.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#448aff}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#1565c0}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#448aff}.rtl-container.blue.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.blue.night .foreground.mat-progress-spinner circle,.rtl-container.blue.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.blue.night .mat-toolbar-row,.rtl-container.blue.night .mat-toolbar-single-row{height:5rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.blue.night a{color:#1976d2}.rtl-container.blue.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.night .h-active-link{border-bottom:2px solid white}.rtl-container.blue.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.blue.night .genseed-message{width:10%;color:#1976d2}.rtl-container.blue.night .border-primary{border:1px solid #1976d2}.rtl-container.blue.night .border-accent{border:1px solid #eeeeee}.rtl-container.blue.night .border-warn{border:1px solid #ff343b}.rtl-container.blue.night .material-icons.primary{color:#1976d2}.rtl-container.blue.night .material-icons.accent{color:#eee}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.blue.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.blue.night .row-disabled{background-color:gray}.rtl-container.blue.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.night .mat-menu-panel{min-width:6.4rem}.rtl-container.blue.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.blue.night .horizontal-button:hover{background:#90caf9;color:#eee}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#1976d2}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button,.rtl-container.blue.night .mat-flat-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.blue.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-header-cell,.rtl-container.blue.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.blue.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.blue.night table.mat-table thead tr th{color:#fff}.rtl-container.blue.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.blue.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.blue.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.blue.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.blue.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.blue.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.blue.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.blue.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.blue.night .color-warn{color:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.rtl-container.blue.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.blue.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-info a{color:#004085}.rtl-container.blue.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-warn a{color:#856404}.rtl-container.blue.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.night .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.blue.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.night .failed-status{color:#ff343b}.rtl-container.blue.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.blue.night .svg-fill-primary{fill:#1976d2}.rtl-container.blue.night .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.blue.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.blue.night ngx-charts-bar-vertical text,.rtl-container.blue.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.blue.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.night .mat-paginator-container{padding:0}.rtl-container.blue.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.night .invoice-animation-div .particles-circle{position:absolute;background-color:#1976d2;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #1976d2;background-color:transparent}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.small.small .mat-header-cell{font-weight:700}.rtl-container.indigo.small.small .mr-4{margin-right:1rem!important}.rtl-container.indigo.small.small .mat-menu-item,.rtl-container.indigo.small.small .mat-tree .mat-tree-node,.rtl-container.indigo.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.indigo.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.indigo.small.small .genseed-message,.rtl-container.indigo.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.indigo.small.small .fa-icon-small,.rtl-container.indigo.small.small .top-icon-small{font-size:1.44rem}.rtl-container.indigo.small.small .page-title-container,.rtl-container.indigo.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.indigo.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.indigo.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.indigo.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.indigo.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.indigo.small.small .material-icons,.rtl-container.indigo.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.indigo.small.small .mat-expansion-panel-header,.rtl-container.indigo.small.small .mat-menu-item,.rtl-container.indigo.small.small .mat-list .mat-list-item,.rtl-container.indigo.small.small .mat-nav-list .mat-list-item,.rtl-container.indigo.small.small .mat-option,.rtl-container.indigo.small.small .mat-select,.rtl-container.indigo.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.indigo.small.small .logo{font-size:2.4rem}.rtl-container.indigo.small.small .font-60-percent{font-size:.72rem}.rtl-container.indigo.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.indigo.small.small .icon-large{font-size:6rem}.rtl-container.indigo.small.small .icon-small{font-size:1.8rem!important}.rtl-container.indigo.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.indigo.small.small .size-triple{font-size:3.6rem}.rtl-container.indigo.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.indigo.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.small.medium .mat-header-cell{font-weight:700}.rtl-container.indigo.small.medium .mat-tree .mat-tree-node,.rtl-container.indigo.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.indigo.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.indigo.small.medium .genseed-message,.rtl-container.indigo.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.indigo.small.medium .page-title-container,.rtl-container.indigo.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.indigo.small.medium .fa-icon-small,.rtl-container.indigo.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.indigo.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.indigo.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.indigo.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.indigo.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.indigo.small.medium .material-icons{font-size:2.8rem}.rtl-container.indigo.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.indigo.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.indigo.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.indigo.small.medium .mat-expansion-panel-header,.rtl-container.indigo.small.medium .mat-menu-item,.rtl-container.indigo.small.medium .mat-list .mat-list-item,.rtl-container.indigo.small.medium .mat-nav-list .mat-list-item,.rtl-container.indigo.small.medium .mat-option,.rtl-container.indigo.small.medium .mat-select,.rtl-container.indigo.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.indigo.small.medium .logo{font-size:2.8rem}.rtl-container.indigo.small.medium .font-60-percent{font-size:.84rem}.rtl-container.indigo.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.indigo.small.medium .icon-large{font-size:7rem}.rtl-container.indigo.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.indigo.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.indigo.small.medium .size-triple{font-size:4.2rem}.rtl-container.indigo.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.indigo.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.small.large .mat-header-cell{font-weight:800}.rtl-container.indigo.small.large .mat-tree .mat-tree-node,.rtl-container.indigo.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.indigo.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.indigo.small.large .genseed-message,.rtl-container.indigo.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.indigo.small.large .page-title-container,.rtl-container.indigo.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.indigo.small.large .fa-icon-small,.rtl-container.indigo.small.large .top-icon-small,.rtl-container.indigo.small.large .modal-info-header{font-size:1.92rem}.rtl-container.indigo.small.large .top-toolbar-icon.icon-pinned,.rtl-container.indigo.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.indigo.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.indigo.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.indigo.small.large .material-icons{font-size:4rem}.rtl-container.indigo.small.large .mat-expansion-panel-header,.rtl-container.indigo.small.large .mat-menu-item,.rtl-container.indigo.small.large .mat-list .mat-list-item,.rtl-container.indigo.small.large .mat-nav-list .mat-list-item,.rtl-container.indigo.small.large .mat-option,.rtl-container.indigo.small.large .mat-select,.rtl-container.indigo.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.indigo.small.large .logo{font-size:3.2rem}.rtl-container.indigo.small.large .font-60-percent{font-size:.96rem}.rtl-container.indigo.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.indigo.small.large .icon-large{font-size:8rem}.rtl-container.indigo.small.large .icon-small{font-size:2.4rem!important}.rtl-container.indigo.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.indigo.small.large .size-triple{font-size:4.8rem}.rtl-container.indigo.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.indigo.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.small .mat-icon.material-icons:focus{outline:none}.rtl-container.indigo.small .mat-flat-button.mat-primary:focus,.rtl-container.indigo.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.indigo.medium.small .mat-header-cell{font-weight:700}.rtl-container.indigo.medium.small .mr-4{margin-right:1rem!important}.rtl-container.indigo.medium.small .mat-menu-item,.rtl-container.indigo.medium.small .mat-tree .mat-tree-node,.rtl-container.indigo.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.indigo.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.indigo.medium.small .genseed-message,.rtl-container.indigo.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.indigo.medium.small .fa-icon-small,.rtl-container.indigo.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.indigo.medium.small .page-title-container,.rtl-container.indigo.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.indigo.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.indigo.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.indigo.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.indigo.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.indigo.medium.small .material-icons,.rtl-container.indigo.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.indigo.medium.small .mat-expansion-panel-header,.rtl-container.indigo.medium.small .mat-menu-item,.rtl-container.indigo.medium.small .mat-list .mat-list-item,.rtl-container.indigo.medium.small .mat-nav-list .mat-list-item,.rtl-container.indigo.medium.small .mat-option,.rtl-container.indigo.medium.small .mat-select,.rtl-container.indigo.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.indigo.medium.small .logo{font-size:2.4rem}.rtl-container.indigo.medium.small .font-60-percent{font-size:.72rem}.rtl-container.indigo.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.indigo.medium.small .icon-large{font-size:6rem}.rtl-container.indigo.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.indigo.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.indigo.medium.small .size-triple{font-size:3.6rem}.rtl-container.indigo.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.indigo.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.medium.medium .mat-header-cell{font-weight:700}.rtl-container.indigo.medium.medium .mat-tree .mat-tree-node,.rtl-container.indigo.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.indigo.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.indigo.medium.medium .genseed-message,.rtl-container.indigo.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.indigo.medium.medium .page-title-container,.rtl-container.indigo.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.indigo.medium.medium .fa-icon-small,.rtl-container.indigo.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.indigo.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.indigo.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.indigo.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.indigo.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.indigo.medium.medium .material-icons{font-size:2.8rem}.rtl-container.indigo.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.indigo.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.indigo.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.indigo.medium.medium .mat-expansion-panel-header,.rtl-container.indigo.medium.medium .mat-menu-item,.rtl-container.indigo.medium.medium .mat-list .mat-list-item,.rtl-container.indigo.medium.medium .mat-nav-list .mat-list-item,.rtl-container.indigo.medium.medium .mat-option,.rtl-container.indigo.medium.medium .mat-select,.rtl-container.indigo.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.indigo.medium.medium .logo{font-size:2.8rem}.rtl-container.indigo.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.indigo.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.indigo.medium.medium .icon-large{font-size:7rem}.rtl-container.indigo.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.indigo.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.indigo.medium.medium .size-triple{font-size:4.2rem}.rtl-container.indigo.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.indigo.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.medium.large .mat-header-cell{font-weight:800}.rtl-container.indigo.medium.large .mat-tree .mat-tree-node,.rtl-container.indigo.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.indigo.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.indigo.medium.large .genseed-message,.rtl-container.indigo.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.indigo.medium.large .page-title-container,.rtl-container.indigo.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.indigo.medium.large .fa-icon-small,.rtl-container.indigo.medium.large .top-icon-small,.rtl-container.indigo.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.indigo.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.indigo.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.indigo.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.indigo.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.indigo.medium.large .material-icons{font-size:4rem}.rtl-container.indigo.medium.large .mat-expansion-panel-header,.rtl-container.indigo.medium.large .mat-menu-item,.rtl-container.indigo.medium.large .mat-list .mat-list-item,.rtl-container.indigo.medium.large .mat-nav-list .mat-list-item,.rtl-container.indigo.medium.large .mat-option,.rtl-container.indigo.medium.large .mat-select,.rtl-container.indigo.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.indigo.medium.large .logo{font-size:3.2rem}.rtl-container.indigo.medium.large .font-60-percent{font-size:.96rem}.rtl-container.indigo.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.indigo.medium.large .icon-large{font-size:8rem}.rtl-container.indigo.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.indigo.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.indigo.medium.large .size-triple{font-size:4.8rem}.rtl-container.indigo.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.indigo.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.indigo.medium .mat-flat-button.mat-primary:focus,.rtl-container.indigo.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.indigo.large.small .mat-header-cell{font-weight:700}.rtl-container.indigo.large.small .mr-4{margin-right:1rem!important}.rtl-container.indigo.large.small .mat-menu-item,.rtl-container.indigo.large.small .mat-tree .mat-tree-node,.rtl-container.indigo.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.indigo.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.indigo.large.small .genseed-message,.rtl-container.indigo.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.indigo.large.small .fa-icon-small,.rtl-container.indigo.large.small .top-icon-small{font-size:1.44rem}.rtl-container.indigo.large.small .page-title-container,.rtl-container.indigo.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.indigo.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.indigo.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.indigo.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.indigo.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.indigo.large.small .material-icons,.rtl-container.indigo.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.indigo.large.small .mat-expansion-panel-header,.rtl-container.indigo.large.small .mat-menu-item,.rtl-container.indigo.large.small .mat-list .mat-list-item,.rtl-container.indigo.large.small .mat-nav-list .mat-list-item,.rtl-container.indigo.large.small .mat-option,.rtl-container.indigo.large.small .mat-select,.rtl-container.indigo.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.indigo.large.small .logo{font-size:2.4rem}.rtl-container.indigo.large.small .font-60-percent{font-size:.72rem}.rtl-container.indigo.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.indigo.large.small .icon-large{font-size:6rem}.rtl-container.indigo.large.small .icon-small{font-size:1.8rem!important}.rtl-container.indigo.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.indigo.large.small .size-triple{font-size:3.6rem}.rtl-container.indigo.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.indigo.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.large.medium .mat-header-cell{font-weight:700}.rtl-container.indigo.large.medium .mat-tree .mat-tree-node,.rtl-container.indigo.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.indigo.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.indigo.large.medium .genseed-message,.rtl-container.indigo.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.indigo.large.medium .page-title-container,.rtl-container.indigo.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.indigo.large.medium .fa-icon-small,.rtl-container.indigo.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.indigo.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.indigo.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.indigo.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.indigo.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.indigo.large.medium .material-icons{font-size:2.8rem}.rtl-container.indigo.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.indigo.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.indigo.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.indigo.large.medium .mat-expansion-panel-header,.rtl-container.indigo.large.medium .mat-menu-item,.rtl-container.indigo.large.medium .mat-list .mat-list-item,.rtl-container.indigo.large.medium .mat-nav-list .mat-list-item,.rtl-container.indigo.large.medium .mat-option,.rtl-container.indigo.large.medium .mat-select,.rtl-container.indigo.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.indigo.large.medium .logo{font-size:2.8rem}.rtl-container.indigo.large.medium .font-60-percent{font-size:.84rem}.rtl-container.indigo.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.indigo.large.medium .icon-large{font-size:7rem}.rtl-container.indigo.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.indigo.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.indigo.large.medium .size-triple{font-size:4.2rem}.rtl-container.indigo.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.indigo.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.large.large .mat-header-cell{font-weight:800}.rtl-container.indigo.large.large .mat-tree .mat-tree-node,.rtl-container.indigo.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.indigo.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.indigo.large.large .genseed-message,.rtl-container.indigo.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.indigo.large.large .page-title-container,.rtl-container.indigo.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.indigo.large.large .fa-icon-small,.rtl-container.indigo.large.large .top-icon-small,.rtl-container.indigo.large.large .modal-info-header{font-size:1.92rem}.rtl-container.indigo.large.large .top-toolbar-icon.icon-pinned,.rtl-container.indigo.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.indigo.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.indigo.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.indigo.large.large .material-icons{font-size:4rem}.rtl-container.indigo.large.large .mat-expansion-panel-header,.rtl-container.indigo.large.large .mat-menu-item,.rtl-container.indigo.large.large .mat-list .mat-list-item,.rtl-container.indigo.large.large .mat-nav-list .mat-list-item,.rtl-container.indigo.large.large .mat-option,.rtl-container.indigo.large.large .mat-select,.rtl-container.indigo.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.indigo.large.large .logo{font-size:3.2rem}.rtl-container.indigo.large.large .font-60-percent{font-size:.96rem}.rtl-container.indigo.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.indigo.large.large .icon-large{font-size:8rem}.rtl-container.indigo.large.large .icon-small{font-size:2.4rem!important}.rtl-container.indigo.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.indigo.large.large .size-triple{font-size:4.8rem}.rtl-container.indigo.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.indigo.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.large .mat-icon.material-icons:focus{outline:none}.rtl-container.indigo.large .mat-flat-button.mat-primary:focus,.rtl-container.indigo.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.indigo.day .mat-ripple-element{background-color:#0000001a}.rtl-container.indigo.day .mat-option{color:#000000de}.rtl-container.indigo.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.indigo.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#3f51b5}.rtl-container.indigo.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.indigo.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.indigo.day .mat-optgroup-label{color:#0000008a}.rtl-container.indigo.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.indigo.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.indigo.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.indigo.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#3f51b5}.rtl-container.indigo.day .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.indigo.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.indigo.day .mat-app-background,.rtl-container.indigo.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.indigo.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.indigo.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.indigo.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.indigo.day .mat-badge{position:relative}.rtl-container.indigo.day .mat-badge.mat-badge{overflow:visible}.rtl-container.indigo.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.indigo.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.indigo.day .ng-animate-disabled .mat-badge-content,.rtl-container.indigo.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.indigo.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.indigo.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.indigo.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.indigo.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.indigo.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.indigo.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.indigo.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.indigo.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.indigo.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.indigo.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.indigo.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.indigo.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.indigo.day .mat-badge-content{color:#fff;background:#3f51b5}.cdk-high-contrast-active .rtl-container.indigo.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.indigo.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.indigo.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.indigo.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.indigo.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.indigo.day .mat-button.mat-primary,.rtl-container.indigo.day .mat-icon-button.mat-primary,.rtl-container.indigo.day .mat-stroked-button.mat-primary{color:#3f51b5}.rtl-container.indigo.day .mat-button.mat-accent,.rtl-container.indigo.day .mat-icon-button.mat-accent,.rtl-container.indigo.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.indigo.day .mat-button.mat-warn,.rtl-container.indigo.day .mat-icon-button.mat-warn,.rtl-container.indigo.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.indigo.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#3f51b5}.rtl-container.indigo.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.indigo.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.indigo.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.indigo.day .mat-button .mat-ripple-element,.rtl-container.indigo.day .mat-icon-button .mat-ripple-element,.rtl-container.indigo.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.indigo.day .mat-button-focus-overlay{background:black}.rtl-container.indigo.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.indigo.day .mat-flat-button,.rtl-container.indigo.day .mat-raised-button,.rtl-container.indigo.day .mat-fab,.rtl-container.indigo.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.indigo.day .mat-flat-button.mat-primary,.rtl-container.indigo.day .mat-raised-button.mat-primary,.rtl-container.indigo.day .mat-fab.mat-primary,.rtl-container.indigo.day .mat-mini-fab.mat-primary,.rtl-container.indigo.day .mat-flat-button.mat-accent,.rtl-container.indigo.day .mat-raised-button.mat-accent,.rtl-container.indigo.day .mat-fab.mat-accent,.rtl-container.indigo.day .mat-mini-fab.mat-accent,.rtl-container.indigo.day .mat-flat-button.mat-warn,.rtl-container.indigo.day .mat-raised-button.mat-warn,.rtl-container.indigo.day .mat-fab.mat-warn,.rtl-container.indigo.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.indigo.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.indigo.day .mat-flat-button.mat-primary,.rtl-container.indigo.day .mat-raised-button.mat-primary,.rtl-container.indigo.day .mat-fab.mat-primary,.rtl-container.indigo.day .mat-mini-fab.mat-primary{background-color:#3f51b5}.rtl-container.indigo.day .mat-flat-button.mat-accent,.rtl-container.indigo.day .mat-raised-button.mat-accent,.rtl-container.indigo.day .mat-fab.mat-accent,.rtl-container.indigo.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.indigo.day .mat-flat-button.mat-warn,.rtl-container.indigo.day .mat-raised-button.mat-warn,.rtl-container.indigo.day .mat-fab.mat-warn,.rtl-container.indigo.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.indigo.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.indigo.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.indigo.day .mat-button-toggle{color:#00000061}.rtl-container.indigo.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.indigo.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.indigo.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.indigo.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.indigo.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.indigo.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.indigo.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.indigo.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.indigo.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.indigo.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.indigo.day .mat-card{background:white;color:#000000de}.rtl-container.indigo.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-card-subtitle{color:#0000008a}.rtl-container.indigo.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.indigo.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.indigo.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.indigo.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.indigo.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#3f51b5}.rtl-container.indigo.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.indigo.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.indigo.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.indigo.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.indigo.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.indigo.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.indigo.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#3f51b5}.rtl-container.indigo.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.indigo.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.indigo.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.indigo.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-table{background:white}.rtl-container.indigo.day .mat-table thead,.rtl-container.indigo.day .mat-table tbody,.rtl-container.indigo.day .mat-table tfoot,.rtl-container.indigo.day mat-header-row,.rtl-container.indigo.day mat-row,.rtl-container.indigo.day mat-footer-row,.rtl-container.indigo.day [mat-header-row],.rtl-container.indigo.day [mat-row],.rtl-container.indigo.day [mat-footer-row],.rtl-container.indigo.day .mat-table-sticky{background:inherit}.rtl-container.indigo.day mat-row,.rtl-container.indigo.day mat-header-row,.rtl-container.indigo.day mat-footer-row,.rtl-container.indigo.day th.mat-header-cell,.rtl-container.indigo.day td.mat-cell,.rtl-container.indigo.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.indigo.day .mat-header-cell{color:#0000008a}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-footer-cell{color:#000000de}.rtl-container.indigo.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.indigo.day .mat-datepicker-toggle,.rtl-container.indigo.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.indigo.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.indigo.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-calendar-table-header,.rtl-container.indigo.day .mat-calendar-body-label{color:#0000008a}.rtl-container.indigo.day .mat-calendar-body-cell-content,.rtl-container.indigo.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.indigo.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.indigo.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.indigo.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.indigo.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.indigo.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.indigo.day .mat-calendar-body-in-range:before{background:rgba(63,81,181,.2)}.rtl-container.indigo.day .mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.day .mat-calendar-body-selected{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#3f51b566}.rtl-container.indigo.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}@media (hover: hover){.rtl-container.indigo.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}}.rtl-container.indigo.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.indigo.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-datepicker-toggle-active{color:#3f51b5}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.indigo.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.indigo.day .mat-divider{border-top-color:#0000001f}.rtl-container.indigo.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.indigo.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.indigo.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-action-row{border-top-color:#0000001f}.rtl-container.indigo.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.indigo.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.indigo.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.indigo.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.indigo.day .mat-expansion-panel-header-description,.rtl-container.indigo.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.indigo.day .mat-form-field-label,.rtl-container.indigo.day .mat-hint{color:#0009}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-label{color:#3f51b5}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.indigo.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#3f51b5}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#3f51b5}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.indigo.day .mat-error{color:#b00020}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.indigo.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.indigo.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.indigo.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.indigo.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.indigo.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.indigo.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.indigo.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#3f51b5}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.indigo.day .mat-icon.mat-primary{color:#3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{color:#424242}.rtl-container.indigo.day .mat-icon.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.indigo.day .mat-input-element:disabled,.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.indigo.day .mat-input-element{caret-color:#3f51b5}.rtl-container.indigo.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.indigo.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.indigo.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.indigo.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.indigo.day .mat-list-base .mat-list-item,.rtl-container.indigo.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.indigo.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.indigo.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.indigo.day .mat-list-option:hover,.rtl-container.indigo.day .mat-list-option:focus,.rtl-container.indigo.day .mat-nav-list .mat-list-item:hover,.rtl-container.indigo.day .mat-nav-list .mat-list-item:focus,.rtl-container.indigo.day .mat-action-list .mat-list-item:hover,.rtl-container.indigo.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-list-single-selected-option,.rtl-container.indigo.day .mat-list-single-selected-option:hover,.rtl-container.indigo.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-menu-panel{background:white}.rtl-container.indigo.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.indigo.day .mat-menu-item[disabled],.rtl-container.indigo.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.indigo.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.indigo.day .mat-menu-item .mat-icon-no-color,.rtl-container.indigo.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.indigo.day .mat-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-paginator{background:white}.rtl-container.indigo.day .mat-paginator,.rtl-container.indigo.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.indigo.day .mat-paginator-decrement,.rtl-container.indigo.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.indigo.day .mat-paginator-first,.rtl-container.indigo.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.indigo.day .mat-progress-bar-background{fill:#cbd0e9}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#cbd0e9}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#3f51b5}.rtl-container.indigo.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.indigo.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.indigo.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.indigo.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.indigo.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.indigo.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.indigo.day .mat-progress-spinner circle,.rtl-container.indigo.day .mat-spinner circle{stroke:#3f51b5}.rtl-container.indigo.day .mat-progress-spinner.mat-accent circle,.rtl-container.indigo.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.indigo.day .mat-progress-spinner.mat-warn circle,.rtl-container.indigo.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.indigo.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.indigo.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#3f51b5}.rtl-container.indigo.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.indigo.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#3f51b5}.rtl-container.indigo.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.indigo.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.indigo.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.indigo.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.indigo.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.indigo.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.indigo.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.indigo.day .mat-select-value{color:#000000de}.rtl-container.indigo.day .mat-select-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.indigo.day .mat-select-arrow{color:#0000008a}.rtl-container.indigo.day .mat-select-panel{background:white}.rtl-container.indigo.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#3f51b5}.rtl-container.indigo.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.indigo.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.indigo.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.indigo.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.indigo.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.indigo.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.indigo.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.indigo.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-drawer-side.mat-drawer-end,.rtl-container.indigo.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.indigo.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.indigo.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.indigo.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.indigo.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.indigo.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#3f51b58a}.rtl-container.indigo.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.indigo.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.indigo.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.indigo.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.indigo.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.indigo.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.indigo.day .mat-slider-track-background{background-color:#00000042}.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#3f51b5}.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#3f51b533}.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.indigo.day .mat-slider:hover .mat-slider-track-background,.rtl-container.indigo.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.indigo.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.indigo.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.indigo.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.indigo.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.indigo.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.day .mat-step-header.cdk-keyboard-focused,.rtl-container.indigo.day .mat-step-header.cdk-program-focused,.rtl-container.indigo.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.indigo.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.indigo.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.indigo.day .mat-step-header:hover{background:none}}.rtl-container.indigo.day .mat-step-header .mat-step-label,.rtl-container.indigo.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.indigo.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.indigo.day .mat-step-header .mat-step-icon-selected,.rtl-container.indigo.day .mat-step-header .mat-step-icon-state-done,.rtl-container.indigo.day .mat-step-header .mat-step-icon-state-edit{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.indigo.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.indigo.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.indigo.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.indigo.day .mat-stepper-horizontal,.rtl-container.indigo.day .mat-stepper-vertical{background-color:#fff}.rtl-container.indigo.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.indigo.day .mat-horizontal-stepper-header:before,.rtl-container.indigo.day .mat-horizontal-stepper-header:after,.rtl-container.indigo.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.indigo.day .mat-sort-header-arrow{color:#757575}.rtl-container.indigo.day .mat-tab-nav-bar,.rtl-container.indigo.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.indigo.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.indigo.day .mat-tab-label,.rtl-container.indigo.day .mat-tab-link{color:#000000de}.rtl-container.indigo.day .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.indigo.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.indigo.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.indigo.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#3f51b5}.rtl-container.indigo.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.indigo.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.indigo.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#3f51b5}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.indigo.day .mat-toolbar.mat-primary{background:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.indigo.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.indigo.day .mat-toolbar .mat-form-field-underline,.rtl-container.indigo.day .mat-toolbar .mat-form-field-ripple,.rtl-container.indigo.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.indigo.day .mat-toolbar .mat-form-field-label,.rtl-container.indigo.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.indigo.day .mat-toolbar .mat-select-value,.rtl-container.indigo.day .mat-toolbar .mat-select-arrow,.rtl-container.indigo.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.indigo.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.indigo.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.indigo.day .mat-tree{background:white}.rtl-container.indigo.day .mat-tree-node,.rtl-container.indigo.day .mat-nested-tree-node{color:#000000de}.rtl-container.indigo.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-simple-snackbar-action{color:#424242}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.indigo.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#3f51b5}.rtl-container.indigo.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.indigo.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.indigo.day .mat-tab-label.mat-tab-label-active{color:#3f51b5}.rtl-container.indigo.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#3f51b5}.rtl-container.indigo.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.indigo.day .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.indigo.day .mat-form-field-suffix{color:#0000008a}.rtl-container.indigo.day .mat-stroked-button.mat-primary{border-color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.indigo.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .selected-color{border-color:#9fa8da}.rtl-container.indigo.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.indigo.day .page-title-container,.rtl-container.indigo.day .page-sub-title-container{color:#0000008a}.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.indigo.day .page-title-container .mat-input-element,.rtl-container.indigo.day .page-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-title-container .theme-name,.rtl-container.indigo.day .page-sub-title-container .mat-input-element,.rtl-container.indigo.day .page-sub-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.indigo.day .cc-data-block .cc-data-title{color:#3f51b5}.rtl-container.indigo.day .active-link,.rtl-container.indigo.day .active-link .fa-icon-small{color:#3f51b5;font-weight:500;cursor:pointer;fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#3f51b5;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day svg.top-icon-small{fill:#000000de}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#1a237e}.rtl-container.indigo.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-tab-label,.rtl-container.indigo.day .mat-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-card,.rtl-container.indigo.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.indigo.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-info-value{color:#0000008a}.rtl-container.indigo.day .color-primary{color:#3f51b5!important}.rtl-container.indigo.day .dot-primary{background-color:#3f51b5!important}.rtl-container.indigo.day .dot-primary-lighter{background-color:#9fa8da!important}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-tooltip{font-size:120%}.rtl-container.indigo.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.indigo.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.indigo.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.indigo.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-1{fill:#fff}.rtl-container.indigo.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.indigo.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-6{fill:#fff}.rtl-container.indigo.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-9{fill:#fff}.rtl-container.indigo.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-16{fill:#404040}.rtl-container.indigo.day svg .fill-color-17{fill:#404040}.rtl-container.indigo.day svg .fill-color-18{fill:#000}.rtl-container.indigo.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-24{fill:#000}.rtl-container.indigo.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.day svg .fill-color-27{fill:#000}.rtl-container.indigo.day svg .fill-color-28{fill:#313131}.rtl-container.indigo.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-30{fill:#fff}.rtl-container.indigo.day svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.day svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day svg .fill-color-primary-darker{fill:#3f51b5}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.indigo.day .material-icons.info-icon{color:#0000008a}.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.indigo.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#3f51b5}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#1a237e}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.indigo.day .foreground.mat-progress-spinner circle,.rtl-container.indigo.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.indigo.day .mat-toolbar-row,.rtl-container.indigo.day .mat-toolbar-single-row{height:5rem}.rtl-container.indigo.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day a{color:#3f51b5}.rtl-container.indigo.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.day .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.day .mat-icon-36{color:#0000008a}.rtl-container.indigo.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.indigo.day .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.day .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.day .border-accent{border:1px solid #424242}.rtl-container.indigo.day .border-warn{border:1px solid #b00020}.rtl-container.indigo.day .material-icons.primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.accent{color:#424242}.rtl-container.indigo.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.indigo.day .row-disabled{background-color:gray}.rtl-container.indigo.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.day .mat-menu-panel{min-width:6.4rem}.rtl-container.indigo.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.indigo.day .horizontal-button:hover{background:#9fa8da;color:#424242}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button,.rtl-container.indigo.day .mat-flat-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.indigo.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-header-cell,.rtl-container.indigo.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.indigo.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-table thead tr th{color:#000}.rtl-container.indigo.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .more-button{color:#00000061}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.indigo.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.indigo.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.indigo.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.indigo.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.indigo.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.indigo.day .color-warn{color:#b00020}.rtl-container.indigo.day .fill-warn{fill:#b00020}.rtl-container.indigo.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.indigo.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-info a{color:#004085}.rtl-container.indigo.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-warn a{color:#856404}.rtl-container.indigo.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.indigo.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.day .failed-status{color:#b00020}.rtl-container.indigo.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.indigo.day .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.day .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.indigo.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.indigo.day ngx-charts-bar-vertical text,.rtl-container.indigo.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.indigo.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.day .mat-paginator-container{padding:0}.rtl-container.indigo.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.day .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-option{color:#fff}.rtl-container.indigo.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#3f51b5}.rtl-container.indigo.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.indigo.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.indigo.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.indigo.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#3f51b5}.rtl-container.indigo.night .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.indigo.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.indigo.night .mat-app-background,.rtl-container.indigo.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.indigo.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.indigo.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.indigo.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.indigo.night .mat-badge{position:relative}.rtl-container.indigo.night .mat-badge.mat-badge{overflow:visible}.rtl-container.indigo.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.indigo.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.indigo.night .ng-animate-disabled .mat-badge-content,.rtl-container.indigo.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.indigo.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.indigo.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.indigo.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.indigo.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.indigo.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.indigo.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.indigo.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.indigo.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.indigo.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.indigo.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.indigo.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.indigo.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.indigo.night .mat-badge-content{color:#fff;background:#3f51b5}.cdk-high-contrast-active .rtl-container.indigo.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.indigo.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.indigo.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.indigo.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.indigo.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#3f51b5}.rtl-container.indigo.night .mat-button.mat-accent,.rtl-container.indigo.night .mat-icon-button.mat-accent,.rtl-container.indigo.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.indigo.night .mat-button.mat-warn,.rtl-container.indigo.night .mat-icon-button.mat-warn,.rtl-container.indigo.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.indigo.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#3f51b5}.rtl-container.indigo.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.indigo.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.indigo.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.indigo.night .mat-button .mat-ripple-element,.rtl-container.indigo.night .mat-icon-button .mat-ripple-element,.rtl-container.indigo.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.indigo.night .mat-button-focus-overlay{background:white}.rtl-container.indigo.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.indigo.night .mat-flat-button,.rtl-container.indigo.night .mat-raised-button,.rtl-container.indigo.night .mat-fab,.rtl-container.indigo.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.indigo.night .mat-flat-button.mat-primary,.rtl-container.indigo.night .mat-raised-button.mat-primary,.rtl-container.indigo.night .mat-fab.mat-primary,.rtl-container.indigo.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.indigo.night .mat-flat-button.mat-accent,.rtl-container.indigo.night .mat-raised-button.mat-accent,.rtl-container.indigo.night .mat-fab.mat-accent,.rtl-container.indigo.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.indigo.night .mat-flat-button.mat-warn,.rtl-container.indigo.night .mat-raised-button.mat-warn,.rtl-container.indigo.night .mat-fab.mat-warn,.rtl-container.indigo.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.indigo.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.indigo.night .mat-flat-button.mat-primary,.rtl-container.indigo.night .mat-raised-button.mat-primary,.rtl-container.indigo.night .mat-fab.mat-primary,.rtl-container.indigo.night .mat-mini-fab.mat-primary{background-color:#3f51b5}.rtl-container.indigo.night .mat-flat-button.mat-accent,.rtl-container.indigo.night .mat-raised-button.mat-accent,.rtl-container.indigo.night .mat-fab.mat-accent,.rtl-container.indigo.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.indigo.night .mat-flat-button.mat-warn,.rtl-container.indigo.night .mat-raised-button.mat-warn,.rtl-container.indigo.night .mat-fab.mat-warn,.rtl-container.indigo.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.indigo.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.indigo.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.indigo.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.indigo.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.indigo.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.indigo.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.indigo.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.indigo.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.indigo.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.indigo.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.indigo.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.indigo.night .mat-card{background:#202020;color:#fff}.rtl-container.indigo.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.indigo.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.indigo.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.indigo.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#3f51b5}.rtl-container.indigo.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.indigo.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.indigo.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.indigo.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.indigo.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.indigo.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#3f51b5}.rtl-container.indigo.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.indigo.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.indigo.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.indigo.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.indigo.night .mat-table{background:#202020}.rtl-container.indigo.night .mat-table thead,.rtl-container.indigo.night .mat-table tbody,.rtl-container.indigo.night .mat-table tfoot,.rtl-container.indigo.night mat-header-row,.rtl-container.indigo.night mat-row,.rtl-container.indigo.night mat-footer-row,.rtl-container.indigo.night [mat-header-row],.rtl-container.indigo.night [mat-row],.rtl-container.indigo.night [mat-footer-row],.rtl-container.indigo.night .mat-table-sticky{background:inherit}.rtl-container.indigo.night mat-row,.rtl-container.indigo.night mat-header-row,.rtl-container.indigo.night mat-footer-row,.rtl-container.indigo.night th.mat-header-cell,.rtl-container.indigo.night td.mat-cell,.rtl-container.indigo.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-footer-cell{color:#fff}.rtl-container.indigo.night .mat-calendar-arrow{fill:#fff}.rtl-container.indigo.night .mat-datepicker-toggle,.rtl-container.indigo.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.indigo.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.indigo.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-calendar-body-cell-content,.rtl-container.indigo.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.indigo.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.indigo.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.indigo.night .mat-calendar-body-in-range:before{background:rgba(63,81,181,.2)}.rtl-container.indigo.night .mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.night .mat-calendar-body-selected{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#3f51b566}.rtl-container.indigo.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}@media (hover: hover){.rtl-container.indigo.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}}.rtl-container.indigo.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.indigo.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-datepicker-toggle-active{color:#3f51b5}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.indigo.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.indigo.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.indigo.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.indigo.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.indigo.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.indigo.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.indigo.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.indigo.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.indigo.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-label{color:#3f51b5}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.indigo.night .mat-form-field-ripple{background-color:#fff}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#3f51b5}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#3f51b5}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.indigo.night .mat-error{color:#ff343b}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.indigo.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.indigo.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.indigo.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.indigo.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.indigo.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.indigo.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.indigo.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#3f51b5}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.indigo.night .mat-icon.mat-primary{color:#3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{color:#eee}.rtl-container.indigo.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-input-element{caret-color:#3f51b5}.rtl-container.indigo.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.indigo.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.indigo.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.indigo.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.indigo.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.indigo.night .mat-list-base .mat-list-item,.rtl-container.indigo.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.indigo.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.indigo.night .mat-list-option:hover,.rtl-container.indigo.night .mat-list-option:focus,.rtl-container.indigo.night .mat-nav-list .mat-list-item:hover,.rtl-container.indigo.night .mat-nav-list .mat-list-item:focus,.rtl-container.indigo.night .mat-action-list .mat-list-item:hover,.rtl-container.indigo.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-list-single-selected-option,.rtl-container.indigo.night .mat-list-single-selected-option:hover,.rtl-container.indigo.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.indigo.night .mat-menu-panel{background:#202020}.rtl-container.indigo.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.indigo.night .mat-menu-item .mat-icon-no-color,.rtl-container.indigo.night .mat-menu-submenu-icon{color:#fff}.rtl-container.indigo.night .mat-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-paginator{background:#202020}.rtl-container.indigo.night .mat-paginator-decrement,.rtl-container.indigo.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.indigo.night .mat-paginator-first,.rtl-container.indigo.night .mat-paginator-last{border-top:2px solid white}.rtl-container.indigo.night .mat-progress-bar-background{fill:#1a1e37}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#1a1e37}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3f51b5}.rtl-container.indigo.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.indigo.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.indigo.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.indigo.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.indigo.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.indigo.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.indigo.night .mat-progress-spinner circle,.rtl-container.indigo.night .mat-spinner circle{stroke:#3f51b5}.rtl-container.indigo.night .mat-progress-spinner.mat-accent circle,.rtl-container.indigo.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.indigo.night .mat-progress-spinner.mat-warn circle,.rtl-container.indigo.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.indigo.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#3f51b5}.rtl-container.indigo.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.indigo.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#3f51b5}.rtl-container.indigo.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.indigo.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.indigo.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.indigo.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.indigo.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.indigo.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.indigo.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.indigo.night .mat-select-value{color:#fff}.rtl-container.indigo.night .mat-select-panel{background:#202020}.rtl-container.indigo.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.indigo.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#3f51b5}.rtl-container.indigo.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.indigo.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.indigo.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.indigo.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.indigo.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.indigo.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.indigo.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-drawer-side.mat-drawer-end,.rtl-container.indigo.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.indigo.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.indigo.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.indigo.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.indigo.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.indigo.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#3f51b5}.rtl-container.indigo.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#3f51b58a}.rtl-container.indigo.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#3f51b5}.rtl-container.indigo.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.indigo.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.indigo.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.indigo.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.indigo.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.indigo.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#3f51b5}.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#3f51b533}.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.indigo.night .mat-slider:hover .mat-slider-track-background,.rtl-container.indigo.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.indigo.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.indigo.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.indigo.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.indigo.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.indigo.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.night .mat-step-header.cdk-keyboard-focused,.rtl-container.indigo.night .mat-step-header.cdk-program-focused,.rtl-container.indigo.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.indigo.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.indigo.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.indigo.night .mat-step-header:hover{background:none}}.rtl-container.indigo.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.indigo.night .mat-step-header .mat-step-icon-selected,.rtl-container.indigo.night .mat-step-header .mat-step-icon-state-done,.rtl-container.indigo.night .mat-step-header .mat-step-icon-state-edit{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.indigo.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.indigo.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.indigo.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.indigo.night .mat-stepper-horizontal,.rtl-container.indigo.night .mat-stepper-vertical{background-color:#202020}.rtl-container.indigo.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.indigo.night .mat-horizontal-stepper-header:before,.rtl-container.indigo.night .mat-horizontal-stepper-header:after,.rtl-container.indigo.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.indigo.night .mat-tab-nav-bar,.rtl-container.indigo.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.indigo.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.indigo.night .mat-tab-label,.rtl-container.indigo.night .mat-tab-link{color:#fff}.rtl-container.indigo.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.indigo.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#3f51b5}.rtl-container.indigo.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.indigo.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.indigo.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#3f51b5}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.indigo.night .mat-toolbar.mat-primary{background:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.indigo.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.indigo.night .mat-toolbar .mat-form-field-underline,.rtl-container.indigo.night .mat-toolbar .mat-form-field-ripple,.rtl-container.indigo.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.indigo.night .mat-toolbar .mat-form-field-label,.rtl-container.indigo.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.indigo.night .mat-toolbar .mat-select-value,.rtl-container.indigo.night .mat-toolbar .mat-select-arrow,.rtl-container.indigo.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.indigo.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.indigo.night .mat-tree{background:#202020}.rtl-container.indigo.night .mat-tree-node,.rtl-container.indigo.night .mat-nested-tree-node{color:#fff}.rtl-container.indigo.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-simple-snackbar-action{color:inherit}.rtl-container.indigo.night .mat-primary{color:#536dfe}.rtl-container.indigo.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-tab-label.mat-tab-label-active{color:#536dfe}.rtl-container.indigo.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.indigo.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.indigo.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#536dfe}.rtl-container.indigo.night .cc-data-block .cc-data-title{color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary{border-color:#536dfe;color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.indigo.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.indigo.night .active-link,.rtl-container.indigo.night .active-link .fa-icon-small,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#536dfe;font-weight:500;cursor:pointer;fill:#536dfe}.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover,.rtl-container.indigo.night .mat-select-panel .mat-option:hover,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#536dfe;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.indigo.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.night .mat-tree-node:hover .mat-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.night .page-title-container .page-title-img,.rtl-container.indigo.night svg.top-icon-small{fill:#fff}.rtl-container.indigo.night .selected-color{border-color:#9fa8da}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3949ab}.rtl-container.indigo.night .chart-legend .legend-label:hover,.rtl-container.indigo.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.indigo.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-select-panel{background-color:#262626}.rtl-container.indigo.night .mat-tree{background:#262626}.rtl-container.indigo.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.indigo.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.indigo.night .dashboard-info-title{color:#536dfe}.rtl-container.indigo.night .dashboard-info-value,.rtl-container.indigo.night .dashboard-capacity-header{color:#fff}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.indigo.night .color-primary{color:#536dfe!important}.rtl-container.indigo.night .dot-primary{background-color:#536dfe!important}.rtl-container.indigo.night .dot-primary-lighter{background-color:#3f51b5!important}.rtl-container.indigo.night .mat-stepper-vertical{background-color:#262626}.rtl-container.indigo.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.indigo.night svg .boltz-icon-fill{fill:#fff}.rtl-container.indigo.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.indigo.night svg .fill-color-0{fill:#171717}.rtl-container.indigo.night svg .fill-color-1{fill:#232323}.rtl-container.indigo.night svg .fill-color-2{fill:#222}.rtl-container.indigo.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.indigo.night svg .fill-color-4{fill:#383838}.rtl-container.indigo.night svg .fill-color-5{fill:#555}.rtl-container.indigo.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.indigo.night svg .fill-color-7{fill:#202020}.rtl-container.indigo.night svg .fill-color-8{fill:#242424}.rtl-container.indigo.night svg .fill-color-9{fill:#262626}.rtl-container.indigo.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.indigo.night svg .fill-color-11{fill:#171717}.rtl-container.indigo.night svg .fill-color-12{fill:#ccc}.rtl-container.indigo.night svg .fill-color-13{fill:#adadad}.rtl-container.indigo.night svg .fill-color-14{fill:#ababab}.rtl-container.indigo.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.indigo.night svg .fill-color-16{fill:#707070}.rtl-container.indigo.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.indigo.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.indigo.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.indigo.night svg .fill-color-21{fill:#cacaca}.rtl-container.indigo.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.indigo.night svg .fill-color-23{fill:#777}.rtl-container.indigo.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.indigo.night svg .fill-color-25{fill:#252525}.rtl-container.indigo.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.night svg .fill-color-27{fill:#000}.rtl-container.indigo.night svg .fill-color-28{fill:#313131}.rtl-container.indigo.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.indigo.night svg .fill-color-30{fill:#fff}.rtl-container.indigo.night svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.night svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night svg .fill-color-primary-darker{fill:#536dfe}.rtl-container.indigo.night .mat-select-value,.rtl-container.indigo.night .mat-select-arrow{color:#fff}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.indigo.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.indigo.night .mat-slide-toggle-bar,.rtl-container.indigo.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#536dfe}.rtl-container.indigo.night tr.alert.alert-warn .mat-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-header-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.indigo.night .material-icons.info-icon,.rtl-container.indigo.night .material-icons.info-icon.info-icon-primary{color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#536dfe}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#283593}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#536dfe}.rtl-container.indigo.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.indigo.night .foreground.mat-progress-spinner circle,.rtl-container.indigo.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.indigo.night .mat-toolbar-row,.rtl-container.indigo.night .mat-toolbar-single-row{height:5rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.indigo.night a{color:#3f51b5}.rtl-container.indigo.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.night .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.indigo.night .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.night .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.night .border-accent{border:1px solid #eeeeee}.rtl-container.indigo.night .border-warn{border:1px solid #ff343b}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#eee}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.indigo.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.indigo.night .row-disabled{background-color:gray}.rtl-container.indigo.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.night .mat-menu-panel{min-width:6.4rem}.rtl-container.indigo.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.indigo.night .horizontal-button:hover{background:#9fa8da;color:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button,.rtl-container.indigo.night .mat-flat-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.indigo.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-header-cell,.rtl-container.indigo.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.indigo.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-table thead tr th{color:#fff}.rtl-container.indigo.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.indigo.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.indigo.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.indigo.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.indigo.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.indigo.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.indigo.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.indigo.night .color-warn{color:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.rtl-container.indigo.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.indigo.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-info a{color:#004085}.rtl-container.indigo.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-warn a{color:#856404}.rtl-container.indigo.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.indigo.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.night .failed-status{color:#ff343b}.rtl-container.indigo.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.indigo.night .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.night .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.indigo.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.indigo.night ngx-charts-bar-vertical text,.rtl-container.indigo.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.night .mat-paginator-container{padding:0}.rtl-container.indigo.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.night .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.small.small .mat-header-cell{font-weight:700}.rtl-container.green.small.small .mr-4{margin-right:1rem!important}.rtl-container.green.small.small .mat-menu-item,.rtl-container.green.small.small .mat-tree .mat-tree-node,.rtl-container.green.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.green.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.green.small.small .genseed-message,.rtl-container.green.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.green.small.small .fa-icon-small,.rtl-container.green.small.small .top-icon-small{font-size:1.44rem}.rtl-container.green.small.small .page-title-container,.rtl-container.green.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.green.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.green.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.green.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.green.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.green.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.green.small.small .material-icons,.rtl-container.green.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.green.small.small .mat-expansion-panel-header,.rtl-container.green.small.small .mat-menu-item,.rtl-container.green.small.small .mat-list .mat-list-item,.rtl-container.green.small.small .mat-nav-list .mat-list-item,.rtl-container.green.small.small .mat-option,.rtl-container.green.small.small .mat-select,.rtl-container.green.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.green.small.small .logo{font-size:2.4rem}.rtl-container.green.small.small .font-60-percent{font-size:.72rem}.rtl-container.green.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.green.small.small .icon-large{font-size:6rem}.rtl-container.green.small.small .icon-small{font-size:1.8rem!important}.rtl-container.green.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.green.small.small .size-triple{font-size:3.6rem}.rtl-container.green.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.green.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.small.medium .mat-header-cell{font-weight:700}.rtl-container.green.small.medium .mat-tree .mat-tree-node,.rtl-container.green.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.green.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.green.small.medium .genseed-message,.rtl-container.green.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.green.small.medium .page-title-container,.rtl-container.green.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.green.small.medium .fa-icon-small,.rtl-container.green.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.green.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.green.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.green.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.green.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.green.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.green.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.green.small.medium .material-icons{font-size:2.8rem}.rtl-container.green.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.green.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.green.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.green.small.medium .mat-expansion-panel-header,.rtl-container.green.small.medium .mat-menu-item,.rtl-container.green.small.medium .mat-list .mat-list-item,.rtl-container.green.small.medium .mat-nav-list .mat-list-item,.rtl-container.green.small.medium .mat-option,.rtl-container.green.small.medium .mat-select,.rtl-container.green.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.green.small.medium .logo{font-size:2.8rem}.rtl-container.green.small.medium .font-60-percent{font-size:.84rem}.rtl-container.green.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.green.small.medium .icon-large{font-size:7rem}.rtl-container.green.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.green.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.green.small.medium .size-triple{font-size:4.2rem}.rtl-container.green.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.green.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.small.large .mat-header-cell{font-weight:800}.rtl-container.green.small.large .mat-tree .mat-tree-node,.rtl-container.green.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.green.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.green.small.large .genseed-message,.rtl-container.green.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.green.small.large .page-title-container,.rtl-container.green.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.green.small.large .fa-icon-small,.rtl-container.green.small.large .top-icon-small,.rtl-container.green.small.large .modal-info-header{font-size:1.92rem}.rtl-container.green.small.large .top-toolbar-icon.icon-pinned,.rtl-container.green.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.green.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.green.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.green.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.green.small.large .material-icons{font-size:4rem}.rtl-container.green.small.large .mat-expansion-panel-header,.rtl-container.green.small.large .mat-menu-item,.rtl-container.green.small.large .mat-list .mat-list-item,.rtl-container.green.small.large .mat-nav-list .mat-list-item,.rtl-container.green.small.large .mat-option,.rtl-container.green.small.large .mat-select,.rtl-container.green.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.green.small.large .logo{font-size:3.2rem}.rtl-container.green.small.large .font-60-percent{font-size:.96rem}.rtl-container.green.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.green.small.large .icon-large{font-size:8rem}.rtl-container.green.small.large .icon-small{font-size:2.4rem!important}.rtl-container.green.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.green.small.large .size-triple{font-size:4.8rem}.rtl-container.green.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.green.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.small .mat-icon.material-icons:focus{outline:none}.rtl-container.green.small .mat-flat-button.mat-primary:focus,.rtl-container.green.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.green.medium.small .mat-header-cell{font-weight:700}.rtl-container.green.medium.small .mr-4{margin-right:1rem!important}.rtl-container.green.medium.small .mat-menu-item,.rtl-container.green.medium.small .mat-tree .mat-tree-node,.rtl-container.green.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.green.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.green.medium.small .genseed-message,.rtl-container.green.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.green.medium.small .fa-icon-small,.rtl-container.green.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.green.medium.small .page-title-container,.rtl-container.green.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.green.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.green.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.green.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.green.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.green.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.green.medium.small .material-icons,.rtl-container.green.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.green.medium.small .mat-expansion-panel-header,.rtl-container.green.medium.small .mat-menu-item,.rtl-container.green.medium.small .mat-list .mat-list-item,.rtl-container.green.medium.small .mat-nav-list .mat-list-item,.rtl-container.green.medium.small .mat-option,.rtl-container.green.medium.small .mat-select,.rtl-container.green.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.green.medium.small .logo{font-size:2.4rem}.rtl-container.green.medium.small .font-60-percent{font-size:.72rem}.rtl-container.green.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.green.medium.small .icon-large{font-size:6rem}.rtl-container.green.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.green.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.green.medium.small .size-triple{font-size:3.6rem}.rtl-container.green.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.green.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.medium.medium .mat-header-cell{font-weight:700}.rtl-container.green.medium.medium .mat-tree .mat-tree-node,.rtl-container.green.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.green.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.green.medium.medium .genseed-message,.rtl-container.green.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.green.medium.medium .page-title-container,.rtl-container.green.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.green.medium.medium .fa-icon-small,.rtl-container.green.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.green.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.green.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.green.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.green.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.green.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.green.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.green.medium.medium .material-icons{font-size:2.8rem}.rtl-container.green.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.green.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.green.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.green.medium.medium .mat-expansion-panel-header,.rtl-container.green.medium.medium .mat-menu-item,.rtl-container.green.medium.medium .mat-list .mat-list-item,.rtl-container.green.medium.medium .mat-nav-list .mat-list-item,.rtl-container.green.medium.medium .mat-option,.rtl-container.green.medium.medium .mat-select,.rtl-container.green.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.green.medium.medium .logo{font-size:2.8rem}.rtl-container.green.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.green.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.green.medium.medium .icon-large{font-size:7rem}.rtl-container.green.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.green.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.green.medium.medium .size-triple{font-size:4.2rem}.rtl-container.green.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.green.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.medium.large .mat-header-cell{font-weight:800}.rtl-container.green.medium.large .mat-tree .mat-tree-node,.rtl-container.green.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.green.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.green.medium.large .genseed-message,.rtl-container.green.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.green.medium.large .page-title-container,.rtl-container.green.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.green.medium.large .fa-icon-small,.rtl-container.green.medium.large .top-icon-small,.rtl-container.green.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.green.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.green.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.green.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.green.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.green.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.green.medium.large .material-icons{font-size:4rem}.rtl-container.green.medium.large .mat-expansion-panel-header,.rtl-container.green.medium.large .mat-menu-item,.rtl-container.green.medium.large .mat-list .mat-list-item,.rtl-container.green.medium.large .mat-nav-list .mat-list-item,.rtl-container.green.medium.large .mat-option,.rtl-container.green.medium.large .mat-select,.rtl-container.green.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.green.medium.large .logo{font-size:3.2rem}.rtl-container.green.medium.large .font-60-percent{font-size:.96rem}.rtl-container.green.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.green.medium.large .icon-large{font-size:8rem}.rtl-container.green.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.green.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.green.medium.large .size-triple{font-size:4.8rem}.rtl-container.green.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.green.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.green.medium .mat-flat-button.mat-primary:focus,.rtl-container.green.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.green.large.small .mat-header-cell{font-weight:700}.rtl-container.green.large.small .mr-4{margin-right:1rem!important}.rtl-container.green.large.small .mat-menu-item,.rtl-container.green.large.small .mat-tree .mat-tree-node,.rtl-container.green.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.green.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.green.large.small .genseed-message,.rtl-container.green.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.green.large.small .fa-icon-small,.rtl-container.green.large.small .top-icon-small{font-size:1.44rem}.rtl-container.green.large.small .page-title-container,.rtl-container.green.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.green.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.green.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.green.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.green.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.green.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.green.large.small .material-icons,.rtl-container.green.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.green.large.small .mat-expansion-panel-header,.rtl-container.green.large.small .mat-menu-item,.rtl-container.green.large.small .mat-list .mat-list-item,.rtl-container.green.large.small .mat-nav-list .mat-list-item,.rtl-container.green.large.small .mat-option,.rtl-container.green.large.small .mat-select,.rtl-container.green.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.green.large.small .logo{font-size:2.4rem}.rtl-container.green.large.small .font-60-percent{font-size:.72rem}.rtl-container.green.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.green.large.small .icon-large{font-size:6rem}.rtl-container.green.large.small .icon-small{font-size:1.8rem!important}.rtl-container.green.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.green.large.small .size-triple{font-size:3.6rem}.rtl-container.green.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.green.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.large.medium .mat-header-cell{font-weight:700}.rtl-container.green.large.medium .mat-tree .mat-tree-node,.rtl-container.green.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.green.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.green.large.medium .genseed-message,.rtl-container.green.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.green.large.medium .page-title-container,.rtl-container.green.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.green.large.medium .fa-icon-small,.rtl-container.green.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.green.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.green.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.green.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.green.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.green.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.green.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.green.large.medium .material-icons{font-size:2.8rem}.rtl-container.green.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.green.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.green.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.green.large.medium .mat-expansion-panel-header,.rtl-container.green.large.medium .mat-menu-item,.rtl-container.green.large.medium .mat-list .mat-list-item,.rtl-container.green.large.medium .mat-nav-list .mat-list-item,.rtl-container.green.large.medium .mat-option,.rtl-container.green.large.medium .mat-select,.rtl-container.green.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.green.large.medium .logo{font-size:2.8rem}.rtl-container.green.large.medium .font-60-percent{font-size:.84rem}.rtl-container.green.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.green.large.medium .icon-large{font-size:7rem}.rtl-container.green.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.green.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.green.large.medium .size-triple{font-size:4.2rem}.rtl-container.green.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.green.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.large.large .mat-header-cell{font-weight:800}.rtl-container.green.large.large .mat-tree .mat-tree-node,.rtl-container.green.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.green.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.green.large.large .genseed-message,.rtl-container.green.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.green.large.large .page-title-container,.rtl-container.green.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.green.large.large .fa-icon-small,.rtl-container.green.large.large .top-icon-small,.rtl-container.green.large.large .modal-info-header{font-size:1.92rem}.rtl-container.green.large.large .top-toolbar-icon.icon-pinned,.rtl-container.green.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.green.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.green.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.green.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.green.large.large .material-icons{font-size:4rem}.rtl-container.green.large.large .mat-expansion-panel-header,.rtl-container.green.large.large .mat-menu-item,.rtl-container.green.large.large .mat-list .mat-list-item,.rtl-container.green.large.large .mat-nav-list .mat-list-item,.rtl-container.green.large.large .mat-option,.rtl-container.green.large.large .mat-select,.rtl-container.green.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.green.large.large .logo{font-size:3.2rem}.rtl-container.green.large.large .font-60-percent{font-size:.96rem}.rtl-container.green.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.green.large.large .icon-large{font-size:8rem}.rtl-container.green.large.large .icon-small{font-size:2.4rem!important}.rtl-container.green.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.green.large.large .size-triple{font-size:4.8rem}.rtl-container.green.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.green.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.large .mat-icon.material-icons:focus{outline:none}.rtl-container.green.large .mat-flat-button.mat-primary:focus,.rtl-container.green.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.green.day .mat-ripple-element{background-color:#0000001a}.rtl-container.green.day .mat-option{color:#000000de}.rtl-container.green.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.green.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#185127}.rtl-container.green.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.green.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.green.day .mat-optgroup-label{color:#0000008a}.rtl-container.green.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.green.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.green.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.green.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#185127}.rtl-container.green.day .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.green.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.green.day .mat-app-background,.rtl-container.green.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.green.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.green.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.green.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.green.day .mat-badge{position:relative}.rtl-container.green.day .mat-badge.mat-badge{overflow:visible}.rtl-container.green.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.green.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.green.day .ng-animate-disabled .mat-badge-content,.rtl-container.green.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.green.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.green.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.green.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.green.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.green.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.green.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.green.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.green.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.green.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.green.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.green.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.green.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.green.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.green.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.green.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.green.day .mat-badge-content{color:#fff;background:#185127}.cdk-high-contrast-active .rtl-container.green.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.green.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.green.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.green.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.green.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.green.day .mat-button.mat-primary,.rtl-container.green.day .mat-icon-button.mat-primary,.rtl-container.green.day .mat-stroked-button.mat-primary{color:#185127}.rtl-container.green.day .mat-button.mat-accent,.rtl-container.green.day .mat-icon-button.mat-accent,.rtl-container.green.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.green.day .mat-button.mat-warn,.rtl-container.green.day .mat-icon-button.mat-warn,.rtl-container.green.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.green.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.green.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#185127}.rtl-container.green.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.green.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.green.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.green.day .mat-button .mat-ripple-element,.rtl-container.green.day .mat-icon-button .mat-ripple-element,.rtl-container.green.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.green.day .mat-button-focus-overlay{background:black}.rtl-container.green.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.green.day .mat-flat-button,.rtl-container.green.day .mat-raised-button,.rtl-container.green.day .mat-fab,.rtl-container.green.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.green.day .mat-flat-button.mat-primary,.rtl-container.green.day .mat-raised-button.mat-primary,.rtl-container.green.day .mat-fab.mat-primary,.rtl-container.green.day .mat-mini-fab.mat-primary,.rtl-container.green.day .mat-flat-button.mat-accent,.rtl-container.green.day .mat-raised-button.mat-accent,.rtl-container.green.day .mat-fab.mat-accent,.rtl-container.green.day .mat-mini-fab.mat-accent,.rtl-container.green.day .mat-flat-button.mat-warn,.rtl-container.green.day .mat-raised-button.mat-warn,.rtl-container.green.day .mat-fab.mat-warn,.rtl-container.green.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.green.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.green.day .mat-flat-button.mat-primary,.rtl-container.green.day .mat-raised-button.mat-primary,.rtl-container.green.day .mat-fab.mat-primary,.rtl-container.green.day .mat-mini-fab.mat-primary{background-color:#185127}.rtl-container.green.day .mat-flat-button.mat-accent,.rtl-container.green.day .mat-raised-button.mat-accent,.rtl-container.green.day .mat-fab.mat-accent,.rtl-container.green.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.green.day .mat-flat-button.mat-warn,.rtl-container.green.day .mat-raised-button.mat-warn,.rtl-container.green.day .mat-fab.mat-warn,.rtl-container.green.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.green.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.green.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.green.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.green.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.green.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.green.day .mat-button-toggle{color:#00000061}.rtl-container.green.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.green.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.green.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.green.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.green.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.green.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.green.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.green.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.green.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.green.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.green.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.green.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.green.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.green.day .mat-card{background:white;color:#000000de}.rtl-container.green.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-card-subtitle{color:#0000008a}.rtl-container.green.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.green.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.green.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.green.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.green.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#185127}.rtl-container.green.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.green.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.green.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.green.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.green.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.green.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.green.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.green.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#185127}.rtl-container.green.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.green.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.green.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.green.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.green.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.green.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-table{background:white}.rtl-container.green.day .mat-table thead,.rtl-container.green.day .mat-table tbody,.rtl-container.green.day .mat-table tfoot,.rtl-container.green.day mat-header-row,.rtl-container.green.day mat-row,.rtl-container.green.day mat-footer-row,.rtl-container.green.day [mat-header-row],.rtl-container.green.day [mat-row],.rtl-container.green.day [mat-footer-row],.rtl-container.green.day .mat-table-sticky{background:inherit}.rtl-container.green.day mat-row,.rtl-container.green.day mat-header-row,.rtl-container.green.day mat-footer-row,.rtl-container.green.day th.mat-header-cell,.rtl-container.green.day td.mat-cell,.rtl-container.green.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.green.day .mat-header-cell{color:#0000008a}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-footer-cell{color:#000000de}.rtl-container.green.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.green.day .mat-datepicker-toggle,.rtl-container.green.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.green.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.green.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-calendar-table-header,.rtl-container.green.day .mat-calendar-body-label{color:#0000008a}.rtl-container.green.day .mat-calendar-body-cell-content,.rtl-container.green.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.green.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.green.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.green.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.green.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.green.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.green.day .mat-calendar-body-in-range:before{background:rgba(24,81,39,.2)}.rtl-container.green.day .mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.day .mat-calendar-body-selected{background-color:#185127;color:#fff}.rtl-container.green.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#18512766}.rtl-container.green.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}@media (hover: hover){.rtl-container.green.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}}.rtl-container.green.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.green.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-datepicker-toggle-active{color:#185127}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.green.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.green.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.green.day .mat-divider{border-top-color:#0000001f}.rtl-container.green.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.green.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.green.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-action-row{border-top-color:#0000001f}.rtl-container.green.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.green.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.green.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.green.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.green.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.green.day .mat-expansion-panel-header-description,.rtl-container.green.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.green.day .mat-form-field-label,.rtl-container.green.day .mat-hint{color:#0009}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-label{color:#185127}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.green.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.green.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#185127}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#185127}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.green.day .mat-error{color:#b00020}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.green.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.green.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.green.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.green.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.green.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.green.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.green.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.green.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#185127}.rtl-container.green.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.green.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.green.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.green.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.green.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.green.day .mat-icon.mat-primary{color:#185127}.rtl-container.green.day .mat-icon.mat-accent{color:#424242}.rtl-container.green.day .mat-icon.mat-warn{color:#b00020}.rtl-container.green.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.green.day .mat-input-element:disabled,.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.green.day .mat-input-element{caret-color:#185127}.rtl-container.green.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.green.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.green.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.green.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.green.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.green.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.green.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.green.day .mat-list-base .mat-list-item,.rtl-container.green.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.green.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.green.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.green.day .mat-list-option:hover,.rtl-container.green.day .mat-list-option:focus,.rtl-container.green.day .mat-nav-list .mat-list-item:hover,.rtl-container.green.day .mat-nav-list .mat-list-item:focus,.rtl-container.green.day .mat-action-list .mat-list-item:hover,.rtl-container.green.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-list-single-selected-option,.rtl-container.green.day .mat-list-single-selected-option:hover,.rtl-container.green.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-menu-panel{background:white}.rtl-container.green.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.green.day .mat-menu-item[disabled],.rtl-container.green.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.green.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.green.day .mat-menu-item .mat-icon-no-color,.rtl-container.green.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.green.day .mat-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-paginator{background:white}.rtl-container.green.day .mat-paginator,.rtl-container.green.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.green.day .mat-paginator-decrement,.rtl-container.green.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.green.day .mat-paginator-first,.rtl-container.green.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.green.day .mat-progress-bar-background{fill:#c2d0c5}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#c2d0c5}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#185127}.rtl-container.green.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.green.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.green.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.green.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.green.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.green.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.green.day .mat-progress-spinner circle,.rtl-container.green.day .mat-spinner circle{stroke:#185127}.rtl-container.green.day .mat-progress-spinner.mat-accent circle,.rtl-container.green.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.green.day .mat-progress-spinner.mat-warn circle,.rtl-container.green.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.green.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.green.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#185127}.rtl-container.green.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.green.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#185127}.rtl-container.green.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.green.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.green.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.green.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.green.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.green.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.green.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.green.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.green.day .mat-select-value{color:#000000de}.rtl-container.green.day .mat-select-placeholder{color:#0000006b}.rtl-container.green.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.green.day .mat-select-arrow{color:#0000008a}.rtl-container.green.day .mat-select-panel{background:white}.rtl-container.green.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#185127}.rtl-container.green.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.green.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.green.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.green.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.green.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.green.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.green.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.green.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.green.day .mat-drawer-side.mat-drawer-end,.rtl-container.green.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.green.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.green.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.green.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.green.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.green.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.green.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1851278a}.rtl-container.green.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.green.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.green.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.green.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.green.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.green.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.green.day .mat-slider-track-background{background-color:#00000042}.rtl-container.green.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#185127}.rtl-container.green.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#18512733}.rtl-container.green.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.green.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.green.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.green.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.green.day .mat-slider:hover .mat-slider-track-background,.rtl-container.green.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.green.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.green.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.green.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.green.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.green.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.green.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.green.day .mat-step-header.cdk-keyboard-focused,.rtl-container.green.day .mat-step-header.cdk-program-focused,.rtl-container.green.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.green.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.green.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.green.day .mat-step-header:hover{background:none}}.rtl-container.green.day .mat-step-header .mat-step-label,.rtl-container.green.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.green.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.green.day .mat-step-header .mat-step-icon-selected,.rtl-container.green.day .mat-step-header .mat-step-icon-state-done,.rtl-container.green.day .mat-step-header .mat-step-icon-state-edit{background-color:#185127;color:#fff}.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.green.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.green.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.green.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.green.day .mat-stepper-horizontal,.rtl-container.green.day .mat-stepper-vertical{background-color:#fff}.rtl-container.green.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.green.day .mat-horizontal-stepper-header:before,.rtl-container.green.day .mat-horizontal-stepper-header:after,.rtl-container.green.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.green.day .mat-sort-header-arrow{color:#757575}.rtl-container.green.day .mat-tab-nav-bar,.rtl-container.green.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.green.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.green.day .mat-tab-label,.rtl-container.green.day .mat-tab-link{color:#000000de}.rtl-container.green.day .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.green.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.green.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.green.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#185127}.rtl-container.green.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.green.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.green.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.green.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#185127}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.green.day .mat-toolbar.mat-primary{background:#185127;color:#fff}.rtl-container.green.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.green.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.green.day .mat-toolbar .mat-form-field-underline,.rtl-container.green.day .mat-toolbar .mat-form-field-ripple,.rtl-container.green.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.green.day .mat-toolbar .mat-form-field-label,.rtl-container.green.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.green.day .mat-toolbar .mat-select-value,.rtl-container.green.day .mat-toolbar .mat-select-arrow,.rtl-container.green.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.green.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.green.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.green.day .mat-tree{background:white}.rtl-container.green.day .mat-tree-node,.rtl-container.green.day .mat-nested-tree-node{color:#000000de}.rtl-container.green.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-simple-snackbar-action{color:#424242}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.green.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#185127}.rtl-container.green.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.green.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.green.day .mat-tab-label.mat-tab-label-active{color:#185127}.rtl-container.green.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#185127}.rtl-container.green.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.green.day .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.green.day .mat-form-field-suffix{color:#0000008a}.rtl-container.green.day .mat-stroked-button.mat-primary{border-color:#185127}.rtl-container.green.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.green.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.day .selected-color{border-color:#5d8568}.rtl-container.green.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.green.day .page-title-container,.rtl-container.green.day .page-sub-title-container{color:#0000008a}.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.green.day .page-title-container .mat-input-element,.rtl-container.green.day .page-title-container .mat-radio-label-content,.rtl-container.green.day .page-title-container .theme-name,.rtl-container.green.day .page-sub-title-container .mat-input-element,.rtl-container.green.day .page-sub-title-container .mat-radio-label-content,.rtl-container.green.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.green.day .cc-data-block .cc-data-title{color:#185127}.rtl-container.green.day .active-link,.rtl-container.green.day .active-link .fa-icon-small{color:#185127;font-weight:500;cursor:pointer;fill:#185127}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#185127;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#185127}.rtl-container.green.day .mat-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day svg.top-icon-small{fill:#000000de}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#08270e}.rtl-container.green.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-tab-label,.rtl-container.green.day .mat-tab-link{color:#0000008a}.rtl-container.green.day .mat-card,.rtl-container.green.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.green.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-info-value{color:#0000008a}.rtl-container.green.day .color-primary{color:#185127!important}.rtl-container.green.day .dot-primary{background-color:#185127!important}.rtl-container.green.day .dot-primary-lighter{background-color:#5d8568!important}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-tooltip{font-size:120%}.rtl-container.green.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.green.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.green.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.green.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-1{fill:#fff}.rtl-container.green.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.green.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-6{fill:#fff}.rtl-container.green.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-9{fill:#fff}.rtl-container.green.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-16{fill:#404040}.rtl-container.green.day svg .fill-color-17{fill:#404040}.rtl-container.green.day svg .fill-color-18{fill:#000}.rtl-container.green.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-24{fill:#000}.rtl-container.green.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.day svg .fill-color-27{fill:#000}.rtl-container.green.day svg .fill-color-28{fill:#313131}.rtl-container.green.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-30{fill:#fff}.rtl-container.green.day svg .fill-color-31{fill:#185127}.rtl-container.green.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.day svg .fill-color-primary{fill:#185127}.rtl-container.green.day svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.day svg .fill-color-primary-darker{fill:#185127}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.green.day .material-icons.info-icon{color:#0000008a}.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.green.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#185127}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#08270e}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#8ca893}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.green.day .foreground.mat-progress-spinner circle,.rtl-container.green.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.green.day .mat-toolbar-row,.rtl-container.green.day .mat-toolbar-single-row{height:5rem}.rtl-container.green.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day a{color:#185127}.rtl-container.green.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.day .h-active-link{border-bottom:2px solid white}.rtl-container.green.day .mat-icon-36{color:#0000008a}.rtl-container.green.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.green.day .genseed-message{width:10%;color:#185127}.rtl-container.green.day .border-primary{border:1px solid #185127}.rtl-container.green.day .border-accent{border:1px solid #424242}.rtl-container.green.day .border-warn{border:1px solid #b00020}.rtl-container.green.day .material-icons.primary{color:#185127}.rtl-container.green.day .material-icons.accent{color:#424242}.rtl-container.green.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.green.day .row-disabled{background-color:gray}.rtl-container.green.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.day .mat-menu-panel{min-width:6.4rem}.rtl-container.green.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.green.day .horizontal-button:hover{background:#5d8568;color:#424242}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#185127}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button,.rtl-container.green.day .mat-flat-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.green.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-header-cell,.rtl-container.green.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.green.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-table thead tr th{color:#000}.rtl-container.green.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .more-button{color:#00000061}.rtl-container.green.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.green.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.green.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.green.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.green.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.green.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.green.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.green.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.green.day .color-warn{color:#b00020}.rtl-container.green.day .fill-warn{fill:#b00020}.rtl-container.green.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.green.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-info a{color:#004085}.rtl-container.green.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-warn a{color:#856404}.rtl-container.green.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.day .help-expansion .mat-expansion-panel-header,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-indicator:after,.rtl-container.green.day .help-expansion .mat-expansion-panel-content,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.green.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.day .failed-status{color:#b00020}.rtl-container.green.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.green.day .svg-fill-primary{fill:#185127}.rtl-container.green.day .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.green.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.green.day ngx-charts-bar-vertical text,.rtl-container.green.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.green.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.day .mat-paginator-container{padding:0}.rtl-container.green.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.day .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-option{color:#fff}.rtl-container.green.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#185127}.rtl-container.green.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.green.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.green.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.green.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#185127}.rtl-container.green.night .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.green.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.green.night .mat-app-background,.rtl-container.green.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.green.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.green.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.green.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.green.night .mat-badge{position:relative}.rtl-container.green.night .mat-badge.mat-badge{overflow:visible}.rtl-container.green.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.green.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.green.night .ng-animate-disabled .mat-badge-content,.rtl-container.green.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.green.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.green.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.green.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.green.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.green.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.green.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.green.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.green.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.green.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.green.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.green.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.green.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.green.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.green.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.green.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.green.night .mat-badge-content{color:#fff;background:#185127}.cdk-high-contrast-active .rtl-container.green.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.green.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.green.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.green.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.green.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#185127}.rtl-container.green.night .mat-button.mat-accent,.rtl-container.green.night .mat-icon-button.mat-accent,.rtl-container.green.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.green.night .mat-button.mat-warn,.rtl-container.green.night .mat-icon-button.mat-warn,.rtl-container.green.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.green.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.green.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#185127}.rtl-container.green.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.green.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.green.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.green.night .mat-button .mat-ripple-element,.rtl-container.green.night .mat-icon-button .mat-ripple-element,.rtl-container.green.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.green.night .mat-button-focus-overlay{background:white}.rtl-container.green.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.green.night .mat-flat-button,.rtl-container.green.night .mat-raised-button,.rtl-container.green.night .mat-fab,.rtl-container.green.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.green.night .mat-flat-button.mat-primary,.rtl-container.green.night .mat-raised-button.mat-primary,.rtl-container.green.night .mat-fab.mat-primary,.rtl-container.green.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.green.night .mat-flat-button.mat-accent,.rtl-container.green.night .mat-raised-button.mat-accent,.rtl-container.green.night .mat-fab.mat-accent,.rtl-container.green.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.green.night .mat-flat-button.mat-warn,.rtl-container.green.night .mat-raised-button.mat-warn,.rtl-container.green.night .mat-fab.mat-warn,.rtl-container.green.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.green.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.green.night .mat-flat-button.mat-primary,.rtl-container.green.night .mat-raised-button.mat-primary,.rtl-container.green.night .mat-fab.mat-primary,.rtl-container.green.night .mat-mini-fab.mat-primary{background-color:#185127}.rtl-container.green.night .mat-flat-button.mat-accent,.rtl-container.green.night .mat-raised-button.mat-accent,.rtl-container.green.night .mat-fab.mat-accent,.rtl-container.green.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.green.night .mat-flat-button.mat-warn,.rtl-container.green.night .mat-raised-button.mat-warn,.rtl-container.green.night .mat-fab.mat-warn,.rtl-container.green.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.green.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.green.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.green.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.green.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.green.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.green.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.green.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.green.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.green.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.green.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.green.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.green.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.green.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.green.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.green.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.green.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.green.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.green.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.green.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.green.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.green.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.green.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.green.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.green.night .mat-card{background:#202020;color:#fff}.rtl-container.green.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.green.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.green.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.green.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#185127}.rtl-container.green.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.green.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.green.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.green.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.green.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.green.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.green.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#185127}.rtl-container.green.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.green.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.green.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.green.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.green.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.green.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.green.night .mat-table{background:#202020}.rtl-container.green.night .mat-table thead,.rtl-container.green.night .mat-table tbody,.rtl-container.green.night .mat-table tfoot,.rtl-container.green.night mat-header-row,.rtl-container.green.night mat-row,.rtl-container.green.night mat-footer-row,.rtl-container.green.night [mat-header-row],.rtl-container.green.night [mat-row],.rtl-container.green.night [mat-footer-row],.rtl-container.green.night .mat-table-sticky{background:inherit}.rtl-container.green.night mat-row,.rtl-container.green.night mat-header-row,.rtl-container.green.night mat-footer-row,.rtl-container.green.night th.mat-header-cell,.rtl-container.green.night td.mat-cell,.rtl-container.green.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-footer-cell{color:#fff}.rtl-container.green.night .mat-calendar-arrow{fill:#fff}.rtl-container.green.night .mat-datepicker-toggle,.rtl-container.green.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.green.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.green.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.green.night .mat-calendar-body-cell-content,.rtl-container.green.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.green.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.green.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.green.night .mat-calendar-body-in-range:before{background:rgba(24,81,39,.2)}.rtl-container.green.night .mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.night .mat-calendar-body-selected{background-color:#185127;color:#fff}.rtl-container.green.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#18512766}.rtl-container.green.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}@media (hover: hover){.rtl-container.green.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}}.rtl-container.green.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.green.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.green.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-datepicker-toggle-active{color:#185127}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.green.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.green.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.green.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.green.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.green.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.green.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.green.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.green.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.green.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.green.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-label{color:#185127}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.green.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.green.night .mat-form-field-ripple{background-color:#fff}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#185127}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#185127}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.green.night .mat-error{color:#ff343b}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.green.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.green.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.green.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.green.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.green.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.green.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.green.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.green.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#185127}.rtl-container.green.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.green.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.green.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.green.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.green.night .mat-icon.mat-primary{color:#185127}.rtl-container.green.night .mat-icon.mat-accent{color:#eee}.rtl-container.green.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.green.night .mat-input-element{caret-color:#185127}.rtl-container.green.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.green.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.green.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.green.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.green.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.green.night .mat-list-base .mat-list-item,.rtl-container.green.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.green.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.green.night .mat-list-option:hover,.rtl-container.green.night .mat-list-option:focus,.rtl-container.green.night .mat-nav-list .mat-list-item:hover,.rtl-container.green.night .mat-nav-list .mat-list-item:focus,.rtl-container.green.night .mat-action-list .mat-list-item:hover,.rtl-container.green.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-list-single-selected-option,.rtl-container.green.night .mat-list-single-selected-option:hover,.rtl-container.green.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.green.night .mat-menu-panel{background:#202020}.rtl-container.green.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.green.night .mat-menu-item .mat-icon-no-color,.rtl-container.green.night .mat-menu-submenu-icon{color:#fff}.rtl-container.green.night .mat-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-paginator{background:#202020}.rtl-container.green.night .mat-paginator-decrement,.rtl-container.green.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.green.night .mat-paginator-first,.rtl-container.green.night .mat-paginator-last{border-top:2px solid white}.rtl-container.green.night .mat-progress-bar-background{fill:#101e14}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#101e14}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#185127}.rtl-container.green.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.green.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.green.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.green.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.green.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.green.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.green.night .mat-progress-spinner circle,.rtl-container.green.night .mat-spinner circle{stroke:#185127}.rtl-container.green.night .mat-progress-spinner.mat-accent circle,.rtl-container.green.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.green.night .mat-progress-spinner.mat-warn circle,.rtl-container.green.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.green.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#185127}.rtl-container.green.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.green.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#185127}.rtl-container.green.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.green.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.green.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.green.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.green.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.green.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.green.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.green.night .mat-select-value{color:#fff}.rtl-container.green.night .mat-select-panel{background:#202020}.rtl-container.green.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.green.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#185127}.rtl-container.green.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.green.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.green.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.green.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.green.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.green.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.green.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.green.night .mat-drawer-side.mat-drawer-end,.rtl-container.green.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.green.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.green.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.green.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.green.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.green.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.green.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#185127}.rtl-container.green.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1851278a}.rtl-container.green.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#185127}.rtl-container.green.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.green.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.green.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.green.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.green.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.green.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.green.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#185127}.rtl-container.green.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#18512733}.rtl-container.green.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.green.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.green.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.green.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.green.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.green.night .mat-slider:hover .mat-slider-track-background,.rtl-container.green.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.green.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.green.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.green.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.green.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.green.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.green.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.green.night .mat-step-header.cdk-keyboard-focused,.rtl-container.green.night .mat-step-header.cdk-program-focused,.rtl-container.green.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.green.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.green.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.green.night .mat-step-header:hover{background:none}}.rtl-container.green.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.green.night .mat-step-header .mat-step-icon-selected,.rtl-container.green.night .mat-step-header .mat-step-icon-state-done,.rtl-container.green.night .mat-step-header .mat-step-icon-state-edit{background-color:#185127;color:#fff}.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.green.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.green.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.green.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.green.night .mat-stepper-horizontal,.rtl-container.green.night .mat-stepper-vertical{background-color:#202020}.rtl-container.green.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.green.night .mat-horizontal-stepper-header:before,.rtl-container.green.night .mat-horizontal-stepper-header:after,.rtl-container.green.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.green.night .mat-tab-nav-bar,.rtl-container.green.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.green.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.green.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.green.night .mat-tab-label,.rtl-container.green.night .mat-tab-link{color:#fff}.rtl-container.green.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.green.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#185127}.rtl-container.green.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.green.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.green.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.green.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#185127}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.green.night .mat-toolbar.mat-primary{background:#185127;color:#fff}.rtl-container.green.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.green.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.green.night .mat-toolbar .mat-form-field-underline,.rtl-container.green.night .mat-toolbar .mat-form-field-ripple,.rtl-container.green.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.green.night .mat-toolbar .mat-form-field-label,.rtl-container.green.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.green.night .mat-toolbar .mat-select-value,.rtl-container.green.night .mat-toolbar .mat-select-arrow,.rtl-container.green.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.green.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.green.night .mat-tree{background:#202020}.rtl-container.green.night .mat-tree-node,.rtl-container.green.night .mat-nested-tree-node{color:#fff}.rtl-container.green.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-simple-snackbar-action{color:inherit}.rtl-container.green.night .mat-primary{color:#30ff4b}.rtl-container.green.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-tab-label.mat-tab-label-active{color:#30ff4b}.rtl-container.green.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.green.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.green.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.green.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#30ff4b}.rtl-container.green.night .cc-data-block .cc-data-title{color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary{border-color:#30ff4b;color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.green.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.green.night .active-link,.rtl-container.green.night .active-link .fa-icon-small,.rtl-container.green.night .mat-select-panel .mat-option.mat-active,.rtl-container.green.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#30ff4b;font-weight:500;cursor:pointer;fill:#30ff4b}.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover,.rtl-container.green.night .mat-nested-tree-node-parent:hover,.rtl-container.green.night .mat-select-panel .mat-option:hover,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#30ff4b;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.green.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.night .mat-tree-node:hover .mat-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#30ff4b}.rtl-container.green.night .mat-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.night .page-title-container .page-title-img,.rtl-container.green.night svg.top-icon-small{fill:#fff}.rtl-container.green.night .selected-color{border-color:#5d8568}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#154a23}.rtl-container.green.night .chart-legend .legend-label:hover,.rtl-container.green.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.green.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-select-panel{background-color:#262626}.rtl-container.green.night .mat-tree{background:#262626}.rtl-container.green.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.green.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.green.night .dashboard-info-title{color:#30ff4b}.rtl-container.green.night .dashboard-info-value,.rtl-container.green.night .dashboard-capacity-header{color:#fff}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.green.night .color-primary{color:#30ff4b!important}.rtl-container.green.night .dot-primary{background-color:#30ff4b!important}.rtl-container.green.night .dot-primary-lighter{background-color:#185127!important}.rtl-container.green.night .mat-stepper-vertical{background-color:#262626}.rtl-container.green.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.green.night svg .boltz-icon-fill{fill:#fff}.rtl-container.green.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.green.night svg .fill-color-0{fill:#171717}.rtl-container.green.night svg .fill-color-1{fill:#232323}.rtl-container.green.night svg .fill-color-2{fill:#222}.rtl-container.green.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.green.night svg .fill-color-4{fill:#383838}.rtl-container.green.night svg .fill-color-5{fill:#555}.rtl-container.green.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.green.night svg .fill-color-7{fill:#202020}.rtl-container.green.night svg .fill-color-8{fill:#242424}.rtl-container.green.night svg .fill-color-9{fill:#262626}.rtl-container.green.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.green.night svg .fill-color-11{fill:#171717}.rtl-container.green.night svg .fill-color-12{fill:#ccc}.rtl-container.green.night svg .fill-color-13{fill:#adadad}.rtl-container.green.night svg .fill-color-14{fill:#ababab}.rtl-container.green.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.green.night svg .fill-color-16{fill:#707070}.rtl-container.green.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.green.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.green.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.green.night svg .fill-color-21{fill:#cacaca}.rtl-container.green.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.green.night svg .fill-color-23{fill:#777}.rtl-container.green.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.green.night svg .fill-color-25{fill:#252525}.rtl-container.green.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.night svg .fill-color-27{fill:#000}.rtl-container.green.night svg .fill-color-28{fill:#313131}.rtl-container.green.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.green.night svg .fill-color-30{fill:#fff}.rtl-container.green.night svg .fill-color-31{fill:#185127}.rtl-container.green.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.night svg .fill-color-primary{fill:#185127}.rtl-container.green.night svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.night svg .fill-color-primary-darker{fill:#30ff4b}.rtl-container.green.night .mat-select-value,.rtl-container.green.night .mat-select-arrow{color:#fff}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.green.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.green.night .mat-slide-toggle-bar,.rtl-container.green.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.green.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#30ff4b}.rtl-container.green.night tr.alert.alert-warn .mat-cell,.rtl-container.green.night tr.alert.alert-warn .mat-header-cell,.rtl-container.green.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.green.night .material-icons.info-icon,.rtl-container.green.night .material-icons.info-icon.info-icon-primary{color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.green.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#30ff4b}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#0e3717}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#30ff4b}.rtl-container.green.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.green.night .foreground.mat-progress-spinner circle,.rtl-container.green.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.green.night .mat-toolbar-row,.rtl-container.green.night .mat-toolbar-single-row{height:5rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.green.night a{color:#185127}.rtl-container.green.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.night .h-active-link{border-bottom:2px solid white}.rtl-container.green.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.green.night .genseed-message{width:10%;color:#185127}.rtl-container.green.night .border-primary{border:1px solid #185127}.rtl-container.green.night .border-accent{border:1px solid #eeeeee}.rtl-container.green.night .border-warn{border:1px solid #ff343b}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#eee}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.green.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.green.night .row-disabled{background-color:gray}.rtl-container.green.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.night .mat-menu-panel{min-width:6.4rem}.rtl-container.green.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.green.night .horizontal-button:hover{background:#5d8568;color:#eee}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#185127}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button,.rtl-container.green.night .mat-flat-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.green.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-header-cell,.rtl-container.green.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.green.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.green.night table.mat-table thead tr th{color:#fff}.rtl-container.green.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.green.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.green.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.green.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.green.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.green.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.green.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.green.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.green.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.green.night .color-warn{color:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.rtl-container.green.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.green.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-info a{color:#004085}.rtl-container.green.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-warn a{color:#856404}.rtl-container.green.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.night .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.green.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.night .failed-status{color:#ff343b}.rtl-container.green.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.green.night .svg-fill-primary{fill:#185127}.rtl-container.green.night .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.green.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.green.night ngx-charts-bar-vertical text,.rtl-container.green.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.green.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.night .mat-paginator-container{padding:0}.rtl-container.green.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.night .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.small.small .mat-header-cell{font-weight:700}.rtl-container.teal.small.small .mr-4{margin-right:1rem!important}.rtl-container.teal.small.small .mat-menu-item,.rtl-container.teal.small.small .mat-tree .mat-tree-node,.rtl-container.teal.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.teal.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.teal.small.small .genseed-message,.rtl-container.teal.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.teal.small.small .fa-icon-small,.rtl-container.teal.small.small .top-icon-small{font-size:1.44rem}.rtl-container.teal.small.small .page-title-container,.rtl-container.teal.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.teal.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.teal.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.teal.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.teal.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.teal.small.small .material-icons,.rtl-container.teal.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.teal.small.small .mat-expansion-panel-header,.rtl-container.teal.small.small .mat-menu-item,.rtl-container.teal.small.small .mat-list .mat-list-item,.rtl-container.teal.small.small .mat-nav-list .mat-list-item,.rtl-container.teal.small.small .mat-option,.rtl-container.teal.small.small .mat-select,.rtl-container.teal.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.teal.small.small .logo{font-size:2.4rem}.rtl-container.teal.small.small .font-60-percent{font-size:.72rem}.rtl-container.teal.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.teal.small.small .icon-large{font-size:6rem}.rtl-container.teal.small.small .icon-small{font-size:1.8rem!important}.rtl-container.teal.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.teal.small.small .size-triple{font-size:3.6rem}.rtl-container.teal.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.teal.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.small.medium .mat-header-cell{font-weight:700}.rtl-container.teal.small.medium .mat-tree .mat-tree-node,.rtl-container.teal.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.teal.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.teal.small.medium .genseed-message,.rtl-container.teal.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.teal.small.medium .page-title-container,.rtl-container.teal.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.teal.small.medium .fa-icon-small,.rtl-container.teal.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.teal.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.teal.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.teal.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.teal.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.teal.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.teal.small.medium .material-icons{font-size:2.8rem}.rtl-container.teal.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.teal.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.teal.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.teal.small.medium .mat-expansion-panel-header,.rtl-container.teal.small.medium .mat-menu-item,.rtl-container.teal.small.medium .mat-list .mat-list-item,.rtl-container.teal.small.medium .mat-nav-list .mat-list-item,.rtl-container.teal.small.medium .mat-option,.rtl-container.teal.small.medium .mat-select,.rtl-container.teal.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.teal.small.medium .logo{font-size:2.8rem}.rtl-container.teal.small.medium .font-60-percent{font-size:.84rem}.rtl-container.teal.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.teal.small.medium .icon-large{font-size:7rem}.rtl-container.teal.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.teal.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.teal.small.medium .size-triple{font-size:4.2rem}.rtl-container.teal.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.teal.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.small.large .mat-header-cell{font-weight:800}.rtl-container.teal.small.large .mat-tree .mat-tree-node,.rtl-container.teal.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.teal.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.teal.small.large .genseed-message,.rtl-container.teal.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.teal.small.large .page-title-container,.rtl-container.teal.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.teal.small.large .fa-icon-small,.rtl-container.teal.small.large .top-icon-small,.rtl-container.teal.small.large .modal-info-header{font-size:1.92rem}.rtl-container.teal.small.large .top-toolbar-icon.icon-pinned,.rtl-container.teal.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.teal.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.teal.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.teal.small.large .material-icons{font-size:4rem}.rtl-container.teal.small.large .mat-expansion-panel-header,.rtl-container.teal.small.large .mat-menu-item,.rtl-container.teal.small.large .mat-list .mat-list-item,.rtl-container.teal.small.large .mat-nav-list .mat-list-item,.rtl-container.teal.small.large .mat-option,.rtl-container.teal.small.large .mat-select,.rtl-container.teal.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.teal.small.large .logo{font-size:3.2rem}.rtl-container.teal.small.large .font-60-percent{font-size:.96rem}.rtl-container.teal.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.teal.small.large .icon-large{font-size:8rem}.rtl-container.teal.small.large .icon-small{font-size:2.4rem!important}.rtl-container.teal.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.teal.small.large .size-triple{font-size:4.8rem}.rtl-container.teal.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.teal.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.small .mat-icon.material-icons:focus{outline:none}.rtl-container.teal.small .mat-flat-button.mat-primary:focus,.rtl-container.teal.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.teal.medium.small .mat-header-cell{font-weight:700}.rtl-container.teal.medium.small .mr-4{margin-right:1rem!important}.rtl-container.teal.medium.small .mat-menu-item,.rtl-container.teal.medium.small .mat-tree .mat-tree-node,.rtl-container.teal.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.teal.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.teal.medium.small .genseed-message,.rtl-container.teal.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.teal.medium.small .fa-icon-small,.rtl-container.teal.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.teal.medium.small .page-title-container,.rtl-container.teal.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.teal.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.teal.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.teal.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.teal.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.teal.medium.small .material-icons,.rtl-container.teal.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.teal.medium.small .mat-expansion-panel-header,.rtl-container.teal.medium.small .mat-menu-item,.rtl-container.teal.medium.small .mat-list .mat-list-item,.rtl-container.teal.medium.small .mat-nav-list .mat-list-item,.rtl-container.teal.medium.small .mat-option,.rtl-container.teal.medium.small .mat-select,.rtl-container.teal.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.teal.medium.small .logo{font-size:2.4rem}.rtl-container.teal.medium.small .font-60-percent{font-size:.72rem}.rtl-container.teal.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.teal.medium.small .icon-large{font-size:6rem}.rtl-container.teal.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.teal.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.teal.medium.small .size-triple{font-size:3.6rem}.rtl-container.teal.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.teal.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.medium.medium .mat-header-cell{font-weight:700}.rtl-container.teal.medium.medium .mat-tree .mat-tree-node,.rtl-container.teal.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.teal.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.teal.medium.medium .genseed-message,.rtl-container.teal.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.teal.medium.medium .page-title-container,.rtl-container.teal.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.teal.medium.medium .fa-icon-small,.rtl-container.teal.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.teal.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.teal.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.teal.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.teal.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.teal.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.teal.medium.medium .material-icons{font-size:2.8rem}.rtl-container.teal.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.teal.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.teal.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.teal.medium.medium .mat-expansion-panel-header,.rtl-container.teal.medium.medium .mat-menu-item,.rtl-container.teal.medium.medium .mat-list .mat-list-item,.rtl-container.teal.medium.medium .mat-nav-list .mat-list-item,.rtl-container.teal.medium.medium .mat-option,.rtl-container.teal.medium.medium .mat-select,.rtl-container.teal.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.teal.medium.medium .logo{font-size:2.8rem}.rtl-container.teal.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.teal.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.teal.medium.medium .icon-large{font-size:7rem}.rtl-container.teal.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.teal.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.teal.medium.medium .size-triple{font-size:4.2rem}.rtl-container.teal.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.teal.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.medium.large .mat-header-cell{font-weight:800}.rtl-container.teal.medium.large .mat-tree .mat-tree-node,.rtl-container.teal.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.teal.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.teal.medium.large .genseed-message,.rtl-container.teal.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.teal.medium.large .page-title-container,.rtl-container.teal.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.teal.medium.large .fa-icon-small,.rtl-container.teal.medium.large .top-icon-small,.rtl-container.teal.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.teal.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.teal.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.teal.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.teal.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.teal.medium.large .material-icons{font-size:4rem}.rtl-container.teal.medium.large .mat-expansion-panel-header,.rtl-container.teal.medium.large .mat-menu-item,.rtl-container.teal.medium.large .mat-list .mat-list-item,.rtl-container.teal.medium.large .mat-nav-list .mat-list-item,.rtl-container.teal.medium.large .mat-option,.rtl-container.teal.medium.large .mat-select,.rtl-container.teal.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.teal.medium.large .logo{font-size:3.2rem}.rtl-container.teal.medium.large .font-60-percent{font-size:.96rem}.rtl-container.teal.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.teal.medium.large .icon-large{font-size:8rem}.rtl-container.teal.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.teal.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.teal.medium.large .size-triple{font-size:4.8rem}.rtl-container.teal.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.teal.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.teal.medium .mat-flat-button.mat-primary:focus,.rtl-container.teal.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.teal.large.small .mat-header-cell{font-weight:700}.rtl-container.teal.large.small .mr-4{margin-right:1rem!important}.rtl-container.teal.large.small .mat-menu-item,.rtl-container.teal.large.small .mat-tree .mat-tree-node,.rtl-container.teal.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.teal.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.teal.large.small .genseed-message,.rtl-container.teal.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.teal.large.small .fa-icon-small,.rtl-container.teal.large.small .top-icon-small{font-size:1.44rem}.rtl-container.teal.large.small .page-title-container,.rtl-container.teal.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.teal.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.teal.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.teal.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.teal.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.teal.large.small .material-icons,.rtl-container.teal.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.teal.large.small .mat-expansion-panel-header,.rtl-container.teal.large.small .mat-menu-item,.rtl-container.teal.large.small .mat-list .mat-list-item,.rtl-container.teal.large.small .mat-nav-list .mat-list-item,.rtl-container.teal.large.small .mat-option,.rtl-container.teal.large.small .mat-select,.rtl-container.teal.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.teal.large.small .logo{font-size:2.4rem}.rtl-container.teal.large.small .font-60-percent{font-size:.72rem}.rtl-container.teal.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.teal.large.small .icon-large{font-size:6rem}.rtl-container.teal.large.small .icon-small{font-size:1.8rem!important}.rtl-container.teal.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.teal.large.small .size-triple{font-size:3.6rem}.rtl-container.teal.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.teal.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.large.medium .mat-header-cell{font-weight:700}.rtl-container.teal.large.medium .mat-tree .mat-tree-node,.rtl-container.teal.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.teal.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.teal.large.medium .genseed-message,.rtl-container.teal.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.teal.large.medium .page-title-container,.rtl-container.teal.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.teal.large.medium .fa-icon-small,.rtl-container.teal.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.teal.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.teal.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.teal.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.teal.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.teal.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.teal.large.medium .material-icons{font-size:2.8rem}.rtl-container.teal.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.teal.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.teal.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.teal.large.medium .mat-expansion-panel-header,.rtl-container.teal.large.medium .mat-menu-item,.rtl-container.teal.large.medium .mat-list .mat-list-item,.rtl-container.teal.large.medium .mat-nav-list .mat-list-item,.rtl-container.teal.large.medium .mat-option,.rtl-container.teal.large.medium .mat-select,.rtl-container.teal.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.teal.large.medium .logo{font-size:2.8rem}.rtl-container.teal.large.medium .font-60-percent{font-size:.84rem}.rtl-container.teal.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.teal.large.medium .icon-large{font-size:7rem}.rtl-container.teal.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.teal.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.teal.large.medium .size-triple{font-size:4.2rem}.rtl-container.teal.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.teal.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.large.large .mat-header-cell{font-weight:800}.rtl-container.teal.large.large .mat-tree .mat-tree-node,.rtl-container.teal.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.teal.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.teal.large.large .genseed-message,.rtl-container.teal.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.teal.large.large .page-title-container,.rtl-container.teal.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.teal.large.large .fa-icon-small,.rtl-container.teal.large.large .top-icon-small,.rtl-container.teal.large.large .modal-info-header{font-size:1.92rem}.rtl-container.teal.large.large .top-toolbar-icon.icon-pinned,.rtl-container.teal.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.teal.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.teal.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.teal.large.large .material-icons{font-size:4rem}.rtl-container.teal.large.large .mat-expansion-panel-header,.rtl-container.teal.large.large .mat-menu-item,.rtl-container.teal.large.large .mat-list .mat-list-item,.rtl-container.teal.large.large .mat-nav-list .mat-list-item,.rtl-container.teal.large.large .mat-option,.rtl-container.teal.large.large .mat-select,.rtl-container.teal.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.teal.large.large .logo{font-size:3.2rem}.rtl-container.teal.large.large .font-60-percent{font-size:.96rem}.rtl-container.teal.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.teal.large.large .icon-large{font-size:8rem}.rtl-container.teal.large.large .icon-small{font-size:2.4rem!important}.rtl-container.teal.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.teal.large.large .size-triple{font-size:4.8rem}.rtl-container.teal.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.teal.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.large .mat-icon.material-icons:focus{outline:none}.rtl-container.teal.large .mat-flat-button.mat-primary:focus,.rtl-container.teal.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.teal.day .mat-ripple-element{background-color:#0000001a}.rtl-container.teal.day .mat-option{color:#000000de}.rtl-container.teal.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.teal.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#00695c}.rtl-container.teal.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.teal.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.teal.day .mat-optgroup-label{color:#0000008a}.rtl-container.teal.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.teal.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.teal.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.teal.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#00695c}.rtl-container.teal.day .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.teal.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.teal.day .mat-app-background,.rtl-container.teal.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.teal.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.teal.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.teal.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.teal.day .mat-badge{position:relative}.rtl-container.teal.day .mat-badge.mat-badge{overflow:visible}.rtl-container.teal.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.teal.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.teal.day .ng-animate-disabled .mat-badge-content,.rtl-container.teal.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.teal.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.teal.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.teal.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.teal.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.teal.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.teal.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.teal.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.teal.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.teal.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.teal.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.teal.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.teal.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.teal.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.teal.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.teal.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.teal.day .mat-badge-content{color:#fff;background:#00695c}.cdk-high-contrast-active .rtl-container.teal.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.teal.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.teal.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.teal.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.teal.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.teal.day .mat-button.mat-primary,.rtl-container.teal.day .mat-icon-button.mat-primary,.rtl-container.teal.day .mat-stroked-button.mat-primary{color:#00695c}.rtl-container.teal.day .mat-button.mat-accent,.rtl-container.teal.day .mat-icon-button.mat-accent,.rtl-container.teal.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.teal.day .mat-button.mat-warn,.rtl-container.teal.day .mat-icon-button.mat-warn,.rtl-container.teal.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.teal.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.teal.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#00695c}.rtl-container.teal.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.teal.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.teal.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.teal.day .mat-button .mat-ripple-element,.rtl-container.teal.day .mat-icon-button .mat-ripple-element,.rtl-container.teal.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.teal.day .mat-button-focus-overlay{background:black}.rtl-container.teal.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.teal.day .mat-flat-button,.rtl-container.teal.day .mat-raised-button,.rtl-container.teal.day .mat-fab,.rtl-container.teal.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.teal.day .mat-flat-button.mat-primary,.rtl-container.teal.day .mat-raised-button.mat-primary,.rtl-container.teal.day .mat-fab.mat-primary,.rtl-container.teal.day .mat-mini-fab.mat-primary,.rtl-container.teal.day .mat-flat-button.mat-accent,.rtl-container.teal.day .mat-raised-button.mat-accent,.rtl-container.teal.day .mat-fab.mat-accent,.rtl-container.teal.day .mat-mini-fab.mat-accent,.rtl-container.teal.day .mat-flat-button.mat-warn,.rtl-container.teal.day .mat-raised-button.mat-warn,.rtl-container.teal.day .mat-fab.mat-warn,.rtl-container.teal.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.teal.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.teal.day .mat-flat-button.mat-primary,.rtl-container.teal.day .mat-raised-button.mat-primary,.rtl-container.teal.day .mat-fab.mat-primary,.rtl-container.teal.day .mat-mini-fab.mat-primary{background-color:#00695c}.rtl-container.teal.day .mat-flat-button.mat-accent,.rtl-container.teal.day .mat-raised-button.mat-accent,.rtl-container.teal.day .mat-fab.mat-accent,.rtl-container.teal.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.teal.day .mat-flat-button.mat-warn,.rtl-container.teal.day .mat-raised-button.mat-warn,.rtl-container.teal.day .mat-fab.mat-warn,.rtl-container.teal.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.teal.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.teal.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.teal.day .mat-button-toggle{color:#00000061}.rtl-container.teal.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.teal.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.teal.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.teal.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.teal.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.teal.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.teal.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.teal.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.teal.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.teal.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.teal.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.teal.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.teal.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.teal.day .mat-card{background:white;color:#000000de}.rtl-container.teal.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-card-subtitle{color:#0000008a}.rtl-container.teal.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.teal.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.teal.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.teal.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.teal.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#00695c}.rtl-container.teal.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.teal.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.teal.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.teal.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.teal.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.teal.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.teal.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#00695c}.rtl-container.teal.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.teal.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.teal.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.teal.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-table{background:white}.rtl-container.teal.day .mat-table thead,.rtl-container.teal.day .mat-table tbody,.rtl-container.teal.day .mat-table tfoot,.rtl-container.teal.day mat-header-row,.rtl-container.teal.day mat-row,.rtl-container.teal.day mat-footer-row,.rtl-container.teal.day [mat-header-row],.rtl-container.teal.day [mat-row],.rtl-container.teal.day [mat-footer-row],.rtl-container.teal.day .mat-table-sticky{background:inherit}.rtl-container.teal.day mat-row,.rtl-container.teal.day mat-header-row,.rtl-container.teal.day mat-footer-row,.rtl-container.teal.day th.mat-header-cell,.rtl-container.teal.day td.mat-cell,.rtl-container.teal.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.teal.day .mat-header-cell{color:#0000008a}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-footer-cell{color:#000000de}.rtl-container.teal.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.teal.day .mat-datepicker-toggle,.rtl-container.teal.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.teal.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.teal.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-calendar-table-header,.rtl-container.teal.day .mat-calendar-body-label{color:#0000008a}.rtl-container.teal.day .mat-calendar-body-cell-content,.rtl-container.teal.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.teal.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.teal.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.teal.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.teal.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.teal.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.teal.day .mat-calendar-body-in-range:before{background:rgba(0,105,92,.2)}.rtl-container.teal.day .mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.day .mat-calendar-body-selected{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#00695c66}.rtl-container.teal.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}@media (hover: hover){.rtl-container.teal.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}}.rtl-container.teal.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.teal.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-datepicker-toggle-active{color:#00695c}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.teal.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.teal.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.teal.day .mat-divider{border-top-color:#0000001f}.rtl-container.teal.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.teal.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.teal.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-action-row{border-top-color:#0000001f}.rtl-container.teal.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.teal.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.teal.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.teal.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.teal.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.teal.day .mat-expansion-panel-header-description,.rtl-container.teal.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.teal.day .mat-form-field-label,.rtl-container.teal.day .mat-hint{color:#0009}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-label{color:#00695c}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.teal.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.teal.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#00695c}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#00695c}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.teal.day .mat-error{color:#b00020}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.teal.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.teal.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.teal.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.teal.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.teal.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.teal.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.teal.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#00695c}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.teal.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.teal.day .mat-icon.mat-primary{color:#00695c}.rtl-container.teal.day .mat-icon.mat-accent{color:#424242}.rtl-container.teal.day .mat-icon.mat-warn{color:#b00020}.rtl-container.teal.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.teal.day .mat-input-element:disabled,.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.teal.day .mat-input-element{caret-color:#00695c}.rtl-container.teal.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.teal.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.teal.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.teal.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.teal.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.teal.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.teal.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.teal.day .mat-list-base .mat-list-item,.rtl-container.teal.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.teal.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.teal.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.teal.day .mat-list-option:hover,.rtl-container.teal.day .mat-list-option:focus,.rtl-container.teal.day .mat-nav-list .mat-list-item:hover,.rtl-container.teal.day .mat-nav-list .mat-list-item:focus,.rtl-container.teal.day .mat-action-list .mat-list-item:hover,.rtl-container.teal.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-list-single-selected-option,.rtl-container.teal.day .mat-list-single-selected-option:hover,.rtl-container.teal.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-menu-panel{background:white}.rtl-container.teal.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.teal.day .mat-menu-item[disabled],.rtl-container.teal.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.teal.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.teal.day .mat-menu-item .mat-icon-no-color,.rtl-container.teal.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.teal.day .mat-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-paginator{background:white}.rtl-container.teal.day .mat-paginator,.rtl-container.teal.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.teal.day .mat-paginator-decrement,.rtl-container.teal.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.teal.day .mat-paginator-first,.rtl-container.teal.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.teal.day .mat-progress-bar-background{fill:#bcd6d3}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#bcd6d3}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#00695c}.rtl-container.teal.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.teal.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.teal.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.teal.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.teal.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.teal.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.teal.day .mat-progress-spinner circle,.rtl-container.teal.day .mat-spinner circle{stroke:#00695c}.rtl-container.teal.day .mat-progress-spinner.mat-accent circle,.rtl-container.teal.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.teal.day .mat-progress-spinner.mat-warn circle,.rtl-container.teal.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.teal.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.teal.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#00695c}.rtl-container.teal.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.teal.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#00695c}.rtl-container.teal.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.teal.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.teal.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.teal.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.teal.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.teal.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.teal.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.teal.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.teal.day .mat-select-value{color:#000000de}.rtl-container.teal.day .mat-select-placeholder{color:#0000006b}.rtl-container.teal.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.teal.day .mat-select-arrow{color:#0000008a}.rtl-container.teal.day .mat-select-panel{background:white}.rtl-container.teal.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#00695c}.rtl-container.teal.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.teal.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.teal.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.teal.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.teal.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.teal.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.teal.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.teal.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.teal.day .mat-drawer-side.mat-drawer-end,.rtl-container.teal.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.teal.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.teal.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.teal.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.teal.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.teal.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.teal.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#00695c}.rtl-container.teal.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#00695c8a}.rtl-container.teal.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#00695c}.rtl-container.teal.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.teal.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.teal.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.teal.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.teal.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.teal.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.teal.day .mat-slider-track-background{background-color:#00000042}.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#00695c}.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#00695c33}.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.teal.day .mat-slider:hover .mat-slider-track-background,.rtl-container.teal.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.teal.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.teal.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.teal.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.teal.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.teal.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.teal.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.teal.day .mat-step-header.cdk-keyboard-focused,.rtl-container.teal.day .mat-step-header.cdk-program-focused,.rtl-container.teal.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.teal.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.teal.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.teal.day .mat-step-header:hover{background:none}}.rtl-container.teal.day .mat-step-header .mat-step-label,.rtl-container.teal.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.teal.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.teal.day .mat-step-header .mat-step-icon-selected,.rtl-container.teal.day .mat-step-header .mat-step-icon-state-done,.rtl-container.teal.day .mat-step-header .mat-step-icon-state-edit{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.teal.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.teal.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.teal.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.teal.day .mat-stepper-horizontal,.rtl-container.teal.day .mat-stepper-vertical{background-color:#fff}.rtl-container.teal.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.teal.day .mat-horizontal-stepper-header:before,.rtl-container.teal.day .mat-horizontal-stepper-header:after,.rtl-container.teal.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.teal.day .mat-sort-header-arrow{color:#757575}.rtl-container.teal.day .mat-tab-nav-bar,.rtl-container.teal.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.teal.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.teal.day .mat-tab-label,.rtl-container.teal.day .mat-tab-link{color:#000000de}.rtl-container.teal.day .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.teal.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.teal.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.teal.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#00695c}.rtl-container.teal.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.teal.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.teal.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.teal.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#00695c}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.teal.day .mat-toolbar.mat-primary{background:#00695c;color:#fff}.rtl-container.teal.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.teal.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.teal.day .mat-toolbar .mat-form-field-underline,.rtl-container.teal.day .mat-toolbar .mat-form-field-ripple,.rtl-container.teal.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.teal.day .mat-toolbar .mat-form-field-label,.rtl-container.teal.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.teal.day .mat-toolbar .mat-select-value,.rtl-container.teal.day .mat-toolbar .mat-select-arrow,.rtl-container.teal.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.teal.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.teal.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.teal.day .mat-tree{background:white}.rtl-container.teal.day .mat-tree-node,.rtl-container.teal.day .mat-nested-tree-node{color:#000000de}.rtl-container.teal.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-simple-snackbar-action{color:#424242}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.teal.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.teal.day .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#00695c}.rtl-container.teal.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.teal.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.teal.day .mat-tab-label.mat-tab-label-active{color:#00695c}.rtl-container.teal.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#00695c}.rtl-container.teal.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.teal.day .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.teal.day .mat-form-field-suffix{color:#0000008a}.rtl-container.teal.day .mat-stroked-button.mat-primary{border-color:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.teal.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .selected-color{border-color:#4db6ac}.rtl-container.teal.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.teal.day .page-title-container,.rtl-container.teal.day .page-sub-title-container{color:#0000008a}.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.teal.day .page-title-container .mat-input-element,.rtl-container.teal.day .page-title-container .mat-radio-label-content,.rtl-container.teal.day .page-title-container .theme-name,.rtl-container.teal.day .page-sub-title-container .mat-input-element,.rtl-container.teal.day .page-sub-title-container .mat-radio-label-content,.rtl-container.teal.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.teal.day .cc-data-block .cc-data-title{color:#00695c}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#00695c;font-weight:500;cursor:pointer;fill:#00695c}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#00695c;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#00695c}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#00695c}.rtl-container.teal.day .mat-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day svg.top-icon-small{fill:#000000de}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#004d40}.rtl-container.teal.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-tab-label,.rtl-container.teal.day .mat-tab-link{color:#0000008a}.rtl-container.teal.day .mat-card,.rtl-container.teal.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.teal.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#00695c}.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#00695c!important}.rtl-container.teal.day .dot-primary{background-color:#00695c!important}.rtl-container.teal.day .dot-primary-lighter{background-color:#4db6ac!important}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-tooltip{font-size:120%}.rtl-container.teal.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.teal.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.teal.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.teal.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-1{fill:#fff}.rtl-container.teal.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.teal.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-6{fill:#fff}.rtl-container.teal.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-9{fill:#fff}.rtl-container.teal.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-16{fill:#404040}.rtl-container.teal.day svg .fill-color-17{fill:#404040}.rtl-container.teal.day svg .fill-color-18{fill:#000}.rtl-container.teal.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-24{fill:#000}.rtl-container.teal.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.day svg .fill-color-27{fill:#000}.rtl-container.teal.day svg .fill-color-28{fill:#313131}.rtl-container.teal.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-30{fill:#fff}.rtl-container.teal.day svg .fill-color-31{fill:#00695c}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#00695c}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#00695c}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.teal.day .material-icons.info-icon{color:#0000008a}.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#00695c}.rtl-container.teal.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.teal.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#00695c}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#004d40}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#80cbc4}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.teal.day .foreground.mat-progress-spinner circle,.rtl-container.teal.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.teal.day .mat-toolbar-row,.rtl-container.teal.day .mat-toolbar-single-row{height:5rem}.rtl-container.teal.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day a{color:#00695c}.rtl-container.teal.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.day .h-active-link{border-bottom:2px solid white}.rtl-container.teal.day .mat-icon-36{color:#0000008a}.rtl-container.teal.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.teal.day .genseed-message{width:10%;color:#00695c}.rtl-container.teal.day .border-primary{border:1px solid #00695c}.rtl-container.teal.day .border-accent{border:1px solid #424242}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#00695c}.rtl-container.teal.day .material-icons.accent{color:#424242}.rtl-container.teal.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.teal.day .row-disabled{background-color:gray}.rtl-container.teal.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.day .mat-menu-panel{min-width:6.4rem}.rtl-container.teal.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.teal.day .horizontal-button:hover{background:#4db6ac;color:#424242}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button,.rtl-container.teal.day .mat-flat-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.teal.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-header-cell,.rtl-container.teal.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.teal.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-table thead tr th{color:#000}.rtl-container.teal.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .more-button{color:#00000061}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.teal.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.teal.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.teal.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.teal.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.teal.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.teal.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.teal.day .color-warn{color:#b00020}.rtl-container.teal.day .fill-warn{fill:#b00020}.rtl-container.teal.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.teal.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-info a{color:#004085}.rtl-container.teal.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-warn a{color:#856404}.rtl-container.teal.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.day .help-expansion .mat-expansion-panel-header,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.day .help-expansion .mat-expansion-panel-content,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.teal.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.day .failed-status{color:#b00020}.rtl-container.teal.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.teal.day .svg-fill-primary{fill:#00695c}.rtl-container.teal.day .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.teal.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.teal.day ngx-charts-bar-vertical text,.rtl-container.teal.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.teal.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.day .mat-paginator-container{padding:0}.rtl-container.teal.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.day .invoice-animation-div .particles-circle{position:absolute;background-color:#00695c;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #00695c;background-color:transparent}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-option{color:#fff}.rtl-container.teal.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#00695c}.rtl-container.teal.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.teal.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.teal.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.teal.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#00695c}.rtl-container.teal.night .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.teal.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.teal.night .mat-app-background,.rtl-container.teal.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.teal.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.teal.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.teal.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.teal.night .mat-badge{position:relative}.rtl-container.teal.night .mat-badge.mat-badge{overflow:visible}.rtl-container.teal.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.teal.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.teal.night .ng-animate-disabled .mat-badge-content,.rtl-container.teal.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.teal.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.teal.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.teal.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.teal.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.teal.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.teal.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.teal.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.teal.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.teal.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.teal.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.teal.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.teal.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.teal.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.teal.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.teal.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.teal.night .mat-badge-content{color:#fff;background:#00695c}.cdk-high-contrast-active .rtl-container.teal.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.teal.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.teal.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.teal.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.teal.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#00695c}.rtl-container.teal.night .mat-button.mat-accent,.rtl-container.teal.night .mat-icon-button.mat-accent,.rtl-container.teal.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.teal.night .mat-button.mat-warn,.rtl-container.teal.night .mat-icon-button.mat-warn,.rtl-container.teal.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.teal.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#00695c}.rtl-container.teal.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.teal.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.teal.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.teal.night .mat-button .mat-ripple-element,.rtl-container.teal.night .mat-icon-button .mat-ripple-element,.rtl-container.teal.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.teal.night .mat-button-focus-overlay{background:white}.rtl-container.teal.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.teal.night .mat-flat-button,.rtl-container.teal.night .mat-raised-button,.rtl-container.teal.night .mat-fab,.rtl-container.teal.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.teal.night .mat-flat-button.mat-primary,.rtl-container.teal.night .mat-raised-button.mat-primary,.rtl-container.teal.night .mat-fab.mat-primary,.rtl-container.teal.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.teal.night .mat-flat-button.mat-accent,.rtl-container.teal.night .mat-raised-button.mat-accent,.rtl-container.teal.night .mat-fab.mat-accent,.rtl-container.teal.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.teal.night .mat-flat-button.mat-warn,.rtl-container.teal.night .mat-raised-button.mat-warn,.rtl-container.teal.night .mat-fab.mat-warn,.rtl-container.teal.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.teal.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.teal.night .mat-flat-button.mat-primary,.rtl-container.teal.night .mat-raised-button.mat-primary,.rtl-container.teal.night .mat-fab.mat-primary,.rtl-container.teal.night .mat-mini-fab.mat-primary{background-color:#00695c}.rtl-container.teal.night .mat-flat-button.mat-accent,.rtl-container.teal.night .mat-raised-button.mat-accent,.rtl-container.teal.night .mat-fab.mat-accent,.rtl-container.teal.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.teal.night .mat-flat-button.mat-warn,.rtl-container.teal.night .mat-raised-button.mat-warn,.rtl-container.teal.night .mat-fab.mat-warn,.rtl-container.teal.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.teal.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.teal.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.teal.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.teal.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.teal.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.teal.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.teal.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.teal.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.teal.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.teal.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.teal.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.teal.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.teal.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.teal.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.teal.night .mat-card{background:#202020;color:#fff}.rtl-container.teal.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.teal.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.teal.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.teal.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#00695c}.rtl-container.teal.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.teal.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.teal.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.teal.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.teal.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.teal.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#00695c}.rtl-container.teal.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.teal.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.teal.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.teal.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.teal.night .mat-table{background:#202020}.rtl-container.teal.night .mat-table thead,.rtl-container.teal.night .mat-table tbody,.rtl-container.teal.night .mat-table tfoot,.rtl-container.teal.night mat-header-row,.rtl-container.teal.night mat-row,.rtl-container.teal.night mat-footer-row,.rtl-container.teal.night [mat-header-row],.rtl-container.teal.night [mat-row],.rtl-container.teal.night [mat-footer-row],.rtl-container.teal.night .mat-table-sticky{background:inherit}.rtl-container.teal.night mat-row,.rtl-container.teal.night mat-header-row,.rtl-container.teal.night mat-footer-row,.rtl-container.teal.night th.mat-header-cell,.rtl-container.teal.night td.mat-cell,.rtl-container.teal.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-footer-cell{color:#fff}.rtl-container.teal.night .mat-calendar-arrow{fill:#fff}.rtl-container.teal.night .mat-datepicker-toggle,.rtl-container.teal.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.teal.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.teal.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.teal.night .mat-calendar-body-cell-content,.rtl-container.teal.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.teal.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.teal.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.teal.night .mat-calendar-body-in-range:before{background:rgba(0,105,92,.2)}.rtl-container.teal.night .mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.night .mat-calendar-body-selected{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#00695c66}.rtl-container.teal.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}@media (hover: hover){.rtl-container.teal.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}}.rtl-container.teal.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.teal.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.teal.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-datepicker-toggle-active{color:#00695c}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.teal.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.teal.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.teal.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.teal.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.teal.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.teal.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.teal.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.teal.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.teal.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-label{color:#00695c}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.teal.night .mat-form-field-ripple{background-color:#fff}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#00695c}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#00695c}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.teal.night .mat-error{color:#ff343b}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.teal.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.teal.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.teal.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.teal.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.teal.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.teal.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.teal.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#00695c}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.teal.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.teal.night .mat-icon.mat-primary{color:#00695c}.rtl-container.teal.night .mat-icon.mat-accent{color:#eee}.rtl-container.teal.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-input-element{caret-color:#00695c}.rtl-container.teal.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.teal.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.teal.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.teal.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.teal.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.teal.night .mat-list-base .mat-list-item,.rtl-container.teal.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.teal.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.teal.night .mat-list-option:hover,.rtl-container.teal.night .mat-list-option:focus,.rtl-container.teal.night .mat-nav-list .mat-list-item:hover,.rtl-container.teal.night .mat-nav-list .mat-list-item:focus,.rtl-container.teal.night .mat-action-list .mat-list-item:hover,.rtl-container.teal.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-list-single-selected-option,.rtl-container.teal.night .mat-list-single-selected-option:hover,.rtl-container.teal.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.teal.night .mat-menu-panel{background:#202020}.rtl-container.teal.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.teal.night .mat-menu-item .mat-icon-no-color,.rtl-container.teal.night .mat-menu-submenu-icon{color:#fff}.rtl-container.teal.night .mat-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-paginator{background:#202020}.rtl-container.teal.night .mat-paginator-decrement,.rtl-container.teal.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.teal.night .mat-paginator-first,.rtl-container.teal.night .mat-paginator-last{border-top:2px solid white}.rtl-container.teal.night .mat-progress-bar-background{fill:#0a2421}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#0a2421}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00695c}.rtl-container.teal.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.teal.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.teal.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.teal.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.teal.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.teal.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.teal.night .mat-progress-spinner circle,.rtl-container.teal.night .mat-spinner circle{stroke:#00695c}.rtl-container.teal.night .mat-progress-spinner.mat-accent circle,.rtl-container.teal.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.teal.night .mat-progress-spinner.mat-warn circle,.rtl-container.teal.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.teal.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#00695c}.rtl-container.teal.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.teal.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#00695c}.rtl-container.teal.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.teal.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.teal.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.teal.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.teal.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.teal.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.teal.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.teal.night .mat-select-value{color:#fff}.rtl-container.teal.night .mat-select-panel{background:#202020}.rtl-container.teal.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.teal.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#00695c}.rtl-container.teal.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.teal.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.teal.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.teal.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.teal.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.teal.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.teal.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.teal.night .mat-drawer-side.mat-drawer-end,.rtl-container.teal.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.teal.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.teal.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.teal.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.teal.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.teal.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.teal.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#00695c}.rtl-container.teal.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#00695c8a}.rtl-container.teal.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#00695c}.rtl-container.teal.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.teal.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.teal.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.teal.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.teal.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.teal.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#00695c}.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#00695c33}.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.teal.night .mat-slider:hover .mat-slider-track-background,.rtl-container.teal.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.teal.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.teal.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.teal.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.teal.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.teal.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.teal.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.teal.night .mat-step-header.cdk-keyboard-focused,.rtl-container.teal.night .mat-step-header.cdk-program-focused,.rtl-container.teal.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.teal.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.teal.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.teal.night .mat-step-header:hover{background:none}}.rtl-container.teal.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.teal.night .mat-step-header .mat-step-icon-selected,.rtl-container.teal.night .mat-step-header .mat-step-icon-state-done,.rtl-container.teal.night .mat-step-header .mat-step-icon-state-edit{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.teal.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.teal.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.teal.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.teal.night .mat-stepper-horizontal,.rtl-container.teal.night .mat-stepper-vertical{background-color:#202020}.rtl-container.teal.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.teal.night .mat-horizontal-stepper-header:before,.rtl-container.teal.night .mat-horizontal-stepper-header:after,.rtl-container.teal.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.teal.night .mat-tab-nav-bar,.rtl-container.teal.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.teal.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.teal.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.teal.night .mat-tab-label,.rtl-container.teal.night .mat-tab-link{color:#fff}.rtl-container.teal.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.teal.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#00695c}.rtl-container.teal.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.teal.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.teal.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.teal.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#00695c}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.teal.night .mat-toolbar.mat-primary{background:#00695c;color:#fff}.rtl-container.teal.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.teal.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.teal.night .mat-toolbar .mat-form-field-underline,.rtl-container.teal.night .mat-toolbar .mat-form-field-ripple,.rtl-container.teal.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.teal.night .mat-toolbar .mat-form-field-label,.rtl-container.teal.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.teal.night .mat-toolbar .mat-select-value,.rtl-container.teal.night .mat-toolbar .mat-select-arrow,.rtl-container.teal.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.teal.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.teal.night .mat-tree{background:#202020}.rtl-container.teal.night .mat-tree-node,.rtl-container.teal.night .mat-nested-tree-node{color:#fff}.rtl-container.teal.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-simple-snackbar-action{color:inherit}.rtl-container.teal.night .mat-primary{color:#64ffda}.rtl-container.teal.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.teal.night .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-tab-label.mat-tab-label-active{color:#64ffda}.rtl-container.teal.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.teal.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.teal.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.teal.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#64ffda}.rtl-container.teal.night .cc-data-block .cc-data-title{color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary{border-color:#64ffda;color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.teal.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.teal.night .active-link,.rtl-container.teal.night .active-link .fa-icon-small,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#64ffda;font-weight:500;cursor:pointer;fill:#64ffda}.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover,.rtl-container.teal.night .mat-nested-tree-node-parent:hover,.rtl-container.teal.night .mat-select-panel .mat-option:hover,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#64ffda;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.teal.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.night .mat-tree-node:hover .mat-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#64ffda}.rtl-container.teal.night .mat-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.night .page-title-container .page-title-img,.rtl-container.teal.night svg.top-icon-small{fill:#fff}.rtl-container.teal.night .selected-color{border-color:#4db6ac}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00897b}.rtl-container.teal.night .chart-legend .legend-label:hover,.rtl-container.teal.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.teal.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-select-panel{background-color:#262626}.rtl-container.teal.night .mat-tree{background:#262626}.rtl-container.teal.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.teal.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.teal.night .dashboard-info-title{color:#64ffda}.rtl-container.teal.night .dashboard-info-value,.rtl-container.teal.night .dashboard-capacity-header{color:#fff}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.teal.night .color-primary{color:#64ffda!important}.rtl-container.teal.night .dot-primary{background-color:#64ffda!important}.rtl-container.teal.night .dot-primary-lighter{background-color:#00695c!important}.rtl-container.teal.night .mat-stepper-vertical{background-color:#262626}.rtl-container.teal.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.teal.night svg .boltz-icon-fill{fill:#fff}.rtl-container.teal.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.teal.night svg .fill-color-0{fill:#171717}.rtl-container.teal.night svg .fill-color-1{fill:#232323}.rtl-container.teal.night svg .fill-color-2{fill:#222}.rtl-container.teal.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.teal.night svg .fill-color-4{fill:#383838}.rtl-container.teal.night svg .fill-color-5{fill:#555}.rtl-container.teal.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.teal.night svg .fill-color-7{fill:#202020}.rtl-container.teal.night svg .fill-color-8{fill:#242424}.rtl-container.teal.night svg .fill-color-9{fill:#262626}.rtl-container.teal.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.teal.night svg .fill-color-11{fill:#171717}.rtl-container.teal.night svg .fill-color-12{fill:#ccc}.rtl-container.teal.night svg .fill-color-13{fill:#adadad}.rtl-container.teal.night svg .fill-color-14{fill:#ababab}.rtl-container.teal.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.teal.night svg .fill-color-16{fill:#707070}.rtl-container.teal.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.teal.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.teal.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.teal.night svg .fill-color-21{fill:#cacaca}.rtl-container.teal.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.teal.night svg .fill-color-23{fill:#777}.rtl-container.teal.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.teal.night svg .fill-color-25{fill:#252525}.rtl-container.teal.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.night svg .fill-color-27{fill:#000}.rtl-container.teal.night svg .fill-color-28{fill:#313131}.rtl-container.teal.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.teal.night svg .fill-color-30{fill:#fff}.rtl-container.teal.night svg .fill-color-31{fill:#00695c}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#00695c}.rtl-container.teal.night svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.night svg .fill-color-primary-darker{fill:#64ffda}.rtl-container.teal.night .mat-select-value,.rtl-container.teal.night .mat-select-arrow{color:#fff}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.teal.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.teal.night .mat-slide-toggle-bar,.rtl-container.teal.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.teal.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#64ffda}.rtl-container.teal.night tr.alert.alert-warn .mat-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-header-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.teal.night .material-icons.info-icon,.rtl-container.teal.night .material-icons.info-icon.info-icon-primary{color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.teal.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#64ffda}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#00695c}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#64ffda}.rtl-container.teal.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.teal.night .foreground.mat-progress-spinner circle,.rtl-container.teal.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.teal.night .mat-toolbar-row,.rtl-container.teal.night .mat-toolbar-single-row{height:5rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.teal.night a{color:#00695c}.rtl-container.teal.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.night .h-active-link{border-bottom:2px solid white}.rtl-container.teal.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.teal.night .genseed-message{width:10%;color:#00695c}.rtl-container.teal.night .border-primary{border:1px solid #00695c}.rtl-container.teal.night .border-accent{border:1px solid #eeeeee}.rtl-container.teal.night .border-warn{border:1px solid #ff343b}.rtl-container.teal.night .material-icons.primary{color:#00695c}.rtl-container.teal.night .material-icons.accent{color:#eee}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.teal.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.teal.night .row-disabled{background-color:gray}.rtl-container.teal.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.night .mat-menu-panel{min-width:6.4rem}.rtl-container.teal.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.teal.night .horizontal-button:hover{background:#4db6ac;color:#eee}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#00695c}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button,.rtl-container.teal.night .mat-flat-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.teal.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-header-cell,.rtl-container.teal.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.teal.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.teal.night table.mat-table thead tr th{color:#fff}.rtl-container.teal.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.teal.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.teal.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.teal.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.teal.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.teal.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.teal.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.teal.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.teal.night .color-warn{color:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.rtl-container.teal.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.teal.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-info a{color:#004085}.rtl-container.teal.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-warn a{color:#856404}.rtl-container.teal.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.night .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.teal.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.night .failed-status{color:#ff343b}.rtl-container.teal.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.teal.night .svg-fill-primary{fill:#00695c}.rtl-container.teal.night .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.teal.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.teal.night ngx-charts-bar-vertical text,.rtl-container.teal.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.teal.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.night .mat-paginator-container{padding:0}.rtl-container.teal.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.night .invoice-animation-div .particles-circle{position:absolute;background-color:#00695c;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #00695c;background-color:transparent}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.small.small .mat-header-cell{font-weight:700}.rtl-container.pink.small.small .mr-4{margin-right:1rem!important}.rtl-container.pink.small.small .mat-menu-item,.rtl-container.pink.small.small .mat-tree .mat-tree-node,.rtl-container.pink.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.pink.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.pink.small.small .genseed-message,.rtl-container.pink.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.pink.small.small .fa-icon-small,.rtl-container.pink.small.small .top-icon-small{font-size:1.44rem}.rtl-container.pink.small.small .page-title-container,.rtl-container.pink.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.pink.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.pink.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.pink.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.pink.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.pink.small.small .material-icons,.rtl-container.pink.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.pink.small.small .mat-expansion-panel-header,.rtl-container.pink.small.small .mat-menu-item,.rtl-container.pink.small.small .mat-list .mat-list-item,.rtl-container.pink.small.small .mat-nav-list .mat-list-item,.rtl-container.pink.small.small .mat-option,.rtl-container.pink.small.small .mat-select,.rtl-container.pink.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.pink.small.small .logo{font-size:2.4rem}.rtl-container.pink.small.small .font-60-percent{font-size:.72rem}.rtl-container.pink.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.pink.small.small .icon-large{font-size:6rem}.rtl-container.pink.small.small .icon-small{font-size:1.8rem!important}.rtl-container.pink.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.pink.small.small .size-triple{font-size:3.6rem}.rtl-container.pink.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.pink.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.small.medium .mat-header-cell{font-weight:700}.rtl-container.pink.small.medium .mat-tree .mat-tree-node,.rtl-container.pink.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.pink.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.pink.small.medium .genseed-message,.rtl-container.pink.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.pink.small.medium .page-title-container,.rtl-container.pink.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.pink.small.medium .fa-icon-small,.rtl-container.pink.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.pink.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.pink.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.pink.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.pink.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.pink.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.pink.small.medium .material-icons{font-size:2.8rem}.rtl-container.pink.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.pink.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.pink.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.pink.small.medium .mat-expansion-panel-header,.rtl-container.pink.small.medium .mat-menu-item,.rtl-container.pink.small.medium .mat-list .mat-list-item,.rtl-container.pink.small.medium .mat-nav-list .mat-list-item,.rtl-container.pink.small.medium .mat-option,.rtl-container.pink.small.medium .mat-select,.rtl-container.pink.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.pink.small.medium .logo{font-size:2.8rem}.rtl-container.pink.small.medium .font-60-percent{font-size:.84rem}.rtl-container.pink.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.pink.small.medium .icon-large{font-size:7rem}.rtl-container.pink.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.pink.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.pink.small.medium .size-triple{font-size:4.2rem}.rtl-container.pink.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.pink.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.small.large .mat-header-cell{font-weight:800}.rtl-container.pink.small.large .mat-tree .mat-tree-node,.rtl-container.pink.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.pink.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.pink.small.large .genseed-message,.rtl-container.pink.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.pink.small.large .page-title-container,.rtl-container.pink.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.pink.small.large .fa-icon-small,.rtl-container.pink.small.large .top-icon-small,.rtl-container.pink.small.large .modal-info-header{font-size:1.92rem}.rtl-container.pink.small.large .top-toolbar-icon.icon-pinned,.rtl-container.pink.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.pink.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.pink.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.pink.small.large .material-icons{font-size:4rem}.rtl-container.pink.small.large .mat-expansion-panel-header,.rtl-container.pink.small.large .mat-menu-item,.rtl-container.pink.small.large .mat-list .mat-list-item,.rtl-container.pink.small.large .mat-nav-list .mat-list-item,.rtl-container.pink.small.large .mat-option,.rtl-container.pink.small.large .mat-select,.rtl-container.pink.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.pink.small.large .logo{font-size:3.2rem}.rtl-container.pink.small.large .font-60-percent{font-size:.96rem}.rtl-container.pink.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.pink.small.large .icon-large{font-size:8rem}.rtl-container.pink.small.large .icon-small{font-size:2.4rem!important}.rtl-container.pink.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.pink.small.large .size-triple{font-size:4.8rem}.rtl-container.pink.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.pink.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.small .mat-icon.material-icons:focus{outline:none}.rtl-container.pink.small .mat-flat-button.mat-primary:focus,.rtl-container.pink.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.pink.medium.small .mat-header-cell{font-weight:700}.rtl-container.pink.medium.small .mr-4{margin-right:1rem!important}.rtl-container.pink.medium.small .mat-menu-item,.rtl-container.pink.medium.small .mat-tree .mat-tree-node,.rtl-container.pink.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.pink.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.pink.medium.small .genseed-message,.rtl-container.pink.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.pink.medium.small .fa-icon-small,.rtl-container.pink.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.pink.medium.small .page-title-container,.rtl-container.pink.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.pink.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.pink.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.pink.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.pink.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.pink.medium.small .material-icons,.rtl-container.pink.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.pink.medium.small .mat-expansion-panel-header,.rtl-container.pink.medium.small .mat-menu-item,.rtl-container.pink.medium.small .mat-list .mat-list-item,.rtl-container.pink.medium.small .mat-nav-list .mat-list-item,.rtl-container.pink.medium.small .mat-option,.rtl-container.pink.medium.small .mat-select,.rtl-container.pink.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.pink.medium.small .logo{font-size:2.4rem}.rtl-container.pink.medium.small .font-60-percent{font-size:.72rem}.rtl-container.pink.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.pink.medium.small .icon-large{font-size:6rem}.rtl-container.pink.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.pink.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.pink.medium.small .size-triple{font-size:3.6rem}.rtl-container.pink.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.pink.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.medium.medium .mat-header-cell{font-weight:700}.rtl-container.pink.medium.medium .mat-tree .mat-tree-node,.rtl-container.pink.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.pink.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.pink.medium.medium .genseed-message,.rtl-container.pink.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.pink.medium.medium .page-title-container,.rtl-container.pink.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.pink.medium.medium .fa-icon-small,.rtl-container.pink.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.pink.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.pink.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.pink.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.pink.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.pink.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.pink.medium.medium .material-icons{font-size:2.8rem}.rtl-container.pink.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.pink.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.pink.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.pink.medium.medium .mat-expansion-panel-header,.rtl-container.pink.medium.medium .mat-menu-item,.rtl-container.pink.medium.medium .mat-list .mat-list-item,.rtl-container.pink.medium.medium .mat-nav-list .mat-list-item,.rtl-container.pink.medium.medium .mat-option,.rtl-container.pink.medium.medium .mat-select,.rtl-container.pink.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.pink.medium.medium .logo{font-size:2.8rem}.rtl-container.pink.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.pink.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.pink.medium.medium .icon-large{font-size:7rem}.rtl-container.pink.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.pink.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.pink.medium.medium .size-triple{font-size:4.2rem}.rtl-container.pink.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.pink.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.medium.large .mat-header-cell{font-weight:800}.rtl-container.pink.medium.large .mat-tree .mat-tree-node,.rtl-container.pink.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.pink.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.pink.medium.large .genseed-message,.rtl-container.pink.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.pink.medium.large .page-title-container,.rtl-container.pink.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.pink.medium.large .fa-icon-small,.rtl-container.pink.medium.large .top-icon-small,.rtl-container.pink.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.pink.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.pink.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.pink.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.pink.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.pink.medium.large .material-icons{font-size:4rem}.rtl-container.pink.medium.large .mat-expansion-panel-header,.rtl-container.pink.medium.large .mat-menu-item,.rtl-container.pink.medium.large .mat-list .mat-list-item,.rtl-container.pink.medium.large .mat-nav-list .mat-list-item,.rtl-container.pink.medium.large .mat-option,.rtl-container.pink.medium.large .mat-select,.rtl-container.pink.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.pink.medium.large .logo{font-size:3.2rem}.rtl-container.pink.medium.large .font-60-percent{font-size:.96rem}.rtl-container.pink.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.pink.medium.large .icon-large{font-size:8rem}.rtl-container.pink.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.pink.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.pink.medium.large .size-triple{font-size:4.8rem}.rtl-container.pink.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.pink.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.pink.medium .mat-flat-button.mat-primary:focus,.rtl-container.pink.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.pink.large.small .mat-header-cell{font-weight:700}.rtl-container.pink.large.small .mr-4{margin-right:1rem!important}.rtl-container.pink.large.small .mat-menu-item,.rtl-container.pink.large.small .mat-tree .mat-tree-node,.rtl-container.pink.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.pink.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.pink.large.small .genseed-message,.rtl-container.pink.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.pink.large.small .fa-icon-small,.rtl-container.pink.large.small .top-icon-small{font-size:1.44rem}.rtl-container.pink.large.small .page-title-container,.rtl-container.pink.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.pink.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.pink.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.pink.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.pink.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.pink.large.small .material-icons,.rtl-container.pink.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.pink.large.small .mat-expansion-panel-header,.rtl-container.pink.large.small .mat-menu-item,.rtl-container.pink.large.small .mat-list .mat-list-item,.rtl-container.pink.large.small .mat-nav-list .mat-list-item,.rtl-container.pink.large.small .mat-option,.rtl-container.pink.large.small .mat-select,.rtl-container.pink.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.pink.large.small .logo{font-size:2.4rem}.rtl-container.pink.large.small .font-60-percent{font-size:.72rem}.rtl-container.pink.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.pink.large.small .icon-large{font-size:6rem}.rtl-container.pink.large.small .icon-small{font-size:1.8rem!important}.rtl-container.pink.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.pink.large.small .size-triple{font-size:3.6rem}.rtl-container.pink.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.pink.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.large.medium .mat-header-cell{font-weight:700}.rtl-container.pink.large.medium .mat-tree .mat-tree-node,.rtl-container.pink.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.pink.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.pink.large.medium .genseed-message,.rtl-container.pink.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.pink.large.medium .page-title-container,.rtl-container.pink.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.pink.large.medium .fa-icon-small,.rtl-container.pink.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.pink.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.pink.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.pink.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.pink.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.pink.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.pink.large.medium .material-icons{font-size:2.8rem}.rtl-container.pink.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.pink.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.pink.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.pink.large.medium .mat-expansion-panel-header,.rtl-container.pink.large.medium .mat-menu-item,.rtl-container.pink.large.medium .mat-list .mat-list-item,.rtl-container.pink.large.medium .mat-nav-list .mat-list-item,.rtl-container.pink.large.medium .mat-option,.rtl-container.pink.large.medium .mat-select,.rtl-container.pink.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.pink.large.medium .logo{font-size:2.8rem}.rtl-container.pink.large.medium .font-60-percent{font-size:.84rem}.rtl-container.pink.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.pink.large.medium .icon-large{font-size:7rem}.rtl-container.pink.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.pink.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.pink.large.medium .size-triple{font-size:4.2rem}.rtl-container.pink.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.pink.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.large.large .mat-header-cell{font-weight:800}.rtl-container.pink.large.large .mat-tree .mat-tree-node,.rtl-container.pink.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.pink.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.pink.large.large .genseed-message,.rtl-container.pink.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.pink.large.large .page-title-container,.rtl-container.pink.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.pink.large.large .fa-icon-small,.rtl-container.pink.large.large .top-icon-small,.rtl-container.pink.large.large .modal-info-header{font-size:1.92rem}.rtl-container.pink.large.large .top-toolbar-icon.icon-pinned,.rtl-container.pink.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.pink.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.pink.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.pink.large.large .material-icons{font-size:4rem}.rtl-container.pink.large.large .mat-expansion-panel-header,.rtl-container.pink.large.large .mat-menu-item,.rtl-container.pink.large.large .mat-list .mat-list-item,.rtl-container.pink.large.large .mat-nav-list .mat-list-item,.rtl-container.pink.large.large .mat-option,.rtl-container.pink.large.large .mat-select,.rtl-container.pink.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.pink.large.large .logo{font-size:3.2rem}.rtl-container.pink.large.large .font-60-percent{font-size:.96rem}.rtl-container.pink.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.pink.large.large .icon-large{font-size:8rem}.rtl-container.pink.large.large .icon-small{font-size:2.4rem!important}.rtl-container.pink.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.pink.large.large .size-triple{font-size:4.8rem}.rtl-container.pink.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.pink.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.large .mat-icon.material-icons:focus{outline:none}.rtl-container.pink.large .mat-flat-button.mat-primary:focus,.rtl-container.pink.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.pink.day .mat-ripple-element{background-color:#0000001a}.rtl-container.pink.day .mat-option{color:#000000de}.rtl-container.pink.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.pink.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#e91e63}.rtl-container.pink.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.pink.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.pink.day .mat-optgroup-label{color:#0000008a}.rtl-container.pink.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.pink.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.pink.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.pink.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#e91e63}.rtl-container.pink.day .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.pink.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.pink.day .mat-app-background,.rtl-container.pink.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.pink.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.pink.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.pink.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.pink.day .mat-badge{position:relative}.rtl-container.pink.day .mat-badge.mat-badge{overflow:visible}.rtl-container.pink.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.pink.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.pink.day .ng-animate-disabled .mat-badge-content,.rtl-container.pink.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.pink.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.pink.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.pink.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.pink.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.pink.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.pink.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.pink.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.pink.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.pink.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.pink.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.pink.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.pink.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.pink.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.pink.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.pink.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.pink.day .mat-badge-content{color:#fff;background:#e91e63}.cdk-high-contrast-active .rtl-container.pink.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.pink.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.pink.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.pink.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.pink.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.pink.day .mat-button.mat-primary,.rtl-container.pink.day .mat-icon-button.mat-primary,.rtl-container.pink.day .mat-stroked-button.mat-primary{color:#e91e63}.rtl-container.pink.day .mat-button.mat-accent,.rtl-container.pink.day .mat-icon-button.mat-accent,.rtl-container.pink.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.pink.day .mat-button.mat-warn,.rtl-container.pink.day .mat-icon-button.mat-warn,.rtl-container.pink.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.pink.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.pink.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#e91e63}.rtl-container.pink.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.pink.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.pink.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.pink.day .mat-button .mat-ripple-element,.rtl-container.pink.day .mat-icon-button .mat-ripple-element,.rtl-container.pink.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.pink.day .mat-button-focus-overlay{background:black}.rtl-container.pink.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.pink.day .mat-flat-button,.rtl-container.pink.day .mat-raised-button,.rtl-container.pink.day .mat-fab,.rtl-container.pink.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.pink.day .mat-flat-button.mat-primary,.rtl-container.pink.day .mat-raised-button.mat-primary,.rtl-container.pink.day .mat-fab.mat-primary,.rtl-container.pink.day .mat-mini-fab.mat-primary,.rtl-container.pink.day .mat-flat-button.mat-accent,.rtl-container.pink.day .mat-raised-button.mat-accent,.rtl-container.pink.day .mat-fab.mat-accent,.rtl-container.pink.day .mat-mini-fab.mat-accent,.rtl-container.pink.day .mat-flat-button.mat-warn,.rtl-container.pink.day .mat-raised-button.mat-warn,.rtl-container.pink.day .mat-fab.mat-warn,.rtl-container.pink.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.pink.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.pink.day .mat-flat-button.mat-primary,.rtl-container.pink.day .mat-raised-button.mat-primary,.rtl-container.pink.day .mat-fab.mat-primary,.rtl-container.pink.day .mat-mini-fab.mat-primary{background-color:#e91e63}.rtl-container.pink.day .mat-flat-button.mat-accent,.rtl-container.pink.day .mat-raised-button.mat-accent,.rtl-container.pink.day .mat-fab.mat-accent,.rtl-container.pink.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.pink.day .mat-flat-button.mat-warn,.rtl-container.pink.day .mat-raised-button.mat-warn,.rtl-container.pink.day .mat-fab.mat-warn,.rtl-container.pink.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.pink.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.pink.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.pink.day .mat-button-toggle{color:#00000061}.rtl-container.pink.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.pink.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.pink.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.pink.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.pink.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.pink.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.pink.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.pink.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.pink.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.pink.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.pink.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.pink.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.pink.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.pink.day .mat-card{background:white;color:#000000de}.rtl-container.pink.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-card-subtitle{color:#0000008a}.rtl-container.pink.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.pink.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.pink.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.pink.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.pink.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#e91e63}.rtl-container.pink.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.pink.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.pink.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.pink.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.pink.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.pink.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.pink.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#e91e63}.rtl-container.pink.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.pink.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.pink.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.pink.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-table{background:white}.rtl-container.pink.day .mat-table thead,.rtl-container.pink.day .mat-table tbody,.rtl-container.pink.day .mat-table tfoot,.rtl-container.pink.day mat-header-row,.rtl-container.pink.day mat-row,.rtl-container.pink.day mat-footer-row,.rtl-container.pink.day [mat-header-row],.rtl-container.pink.day [mat-row],.rtl-container.pink.day [mat-footer-row],.rtl-container.pink.day .mat-table-sticky{background:inherit}.rtl-container.pink.day mat-row,.rtl-container.pink.day mat-header-row,.rtl-container.pink.day mat-footer-row,.rtl-container.pink.day th.mat-header-cell,.rtl-container.pink.day td.mat-cell,.rtl-container.pink.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.pink.day .mat-header-cell{color:#0000008a}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-footer-cell{color:#000000de}.rtl-container.pink.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.pink.day .mat-datepicker-toggle,.rtl-container.pink.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.pink.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.pink.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-calendar-table-header,.rtl-container.pink.day .mat-calendar-body-label{color:#0000008a}.rtl-container.pink.day .mat-calendar-body-cell-content,.rtl-container.pink.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.pink.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.pink.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.pink.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.pink.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.pink.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.pink.day .mat-calendar-body-in-range:before{background:rgba(233,30,99,.2)}.rtl-container.pink.day .mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.day .mat-calendar-body-selected{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#e91e6366}.rtl-container.pink.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}@media (hover: hover){.rtl-container.pink.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}}.rtl-container.pink.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.pink.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-datepicker-toggle-active{color:#e91e63}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.pink.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.pink.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.pink.day .mat-divider{border-top-color:#0000001f}.rtl-container.pink.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.pink.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.pink.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-action-row{border-top-color:#0000001f}.rtl-container.pink.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.pink.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.pink.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.pink.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.pink.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.pink.day .mat-expansion-panel-header-description,.rtl-container.pink.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.pink.day .mat-form-field-label,.rtl-container.pink.day .mat-hint{color:#0009}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-label{color:#e91e63}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.pink.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.pink.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#e91e63}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#e91e63}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.pink.day .mat-error{color:#b00020}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.pink.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.pink.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.pink.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.pink.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.pink.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.pink.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.pink.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#e91e63}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.pink.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.pink.day .mat-icon.mat-primary{color:#e91e63}.rtl-container.pink.day .mat-icon.mat-accent{color:#424242}.rtl-container.pink.day .mat-icon.mat-warn{color:#b00020}.rtl-container.pink.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.pink.day .mat-input-element:disabled,.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.pink.day .mat-input-element{caret-color:#e91e63}.rtl-container.pink.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.pink.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.pink.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.pink.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.pink.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.pink.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.pink.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.pink.day .mat-list-base .mat-list-item,.rtl-container.pink.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.pink.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.pink.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.pink.day .mat-list-option:hover,.rtl-container.pink.day .mat-list-option:focus,.rtl-container.pink.day .mat-nav-list .mat-list-item:hover,.rtl-container.pink.day .mat-nav-list .mat-list-item:focus,.rtl-container.pink.day .mat-action-list .mat-list-item:hover,.rtl-container.pink.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-list-single-selected-option,.rtl-container.pink.day .mat-list-single-selected-option:hover,.rtl-container.pink.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-menu-panel{background:white}.rtl-container.pink.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.pink.day .mat-menu-item[disabled],.rtl-container.pink.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.pink.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.pink.day .mat-menu-item .mat-icon-no-color,.rtl-container.pink.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.pink.day .mat-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-paginator{background:white}.rtl-container.pink.day .mat-paginator,.rtl-container.pink.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.pink.day .mat-paginator-decrement,.rtl-container.pink.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.pink.day .mat-paginator-first,.rtl-container.pink.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.pink.day .mat-progress-bar-background{fill:#f6c3d4}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f6c3d4}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#e91e63}.rtl-container.pink.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.pink.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.pink.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.pink.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.pink.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.pink.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.pink.day .mat-progress-spinner circle,.rtl-container.pink.day .mat-spinner circle{stroke:#e91e63}.rtl-container.pink.day .mat-progress-spinner.mat-accent circle,.rtl-container.pink.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.pink.day .mat-progress-spinner.mat-warn circle,.rtl-container.pink.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.pink.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.pink.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#e91e63}.rtl-container.pink.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.pink.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#e91e63}.rtl-container.pink.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.pink.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.pink.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.pink.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.pink.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.pink.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.pink.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.pink.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.pink.day .mat-select-value{color:#000000de}.rtl-container.pink.day .mat-select-placeholder{color:#0000006b}.rtl-container.pink.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.pink.day .mat-select-arrow{color:#0000008a}.rtl-container.pink.day .mat-select-panel{background:white}.rtl-container.pink.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#e91e63}.rtl-container.pink.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.pink.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.pink.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.pink.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.pink.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.pink.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.pink.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.pink.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.pink.day .mat-drawer-side.mat-drawer-end,.rtl-container.pink.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.pink.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.pink.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.pink.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.pink.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.pink.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.pink.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#e91e638a}.rtl-container.pink.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.pink.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.pink.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.pink.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.pink.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.pink.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.pink.day .mat-slider-track-background{background-color:#00000042}.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#e91e63}.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#e91e6333}.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.pink.day .mat-slider:hover .mat-slider-track-background,.rtl-container.pink.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.pink.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.pink.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.pink.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.pink.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.pink.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.pink.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.pink.day .mat-step-header.cdk-keyboard-focused,.rtl-container.pink.day .mat-step-header.cdk-program-focused,.rtl-container.pink.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.pink.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.pink.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.pink.day .mat-step-header:hover{background:none}}.rtl-container.pink.day .mat-step-header .mat-step-label,.rtl-container.pink.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.pink.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.pink.day .mat-step-header .mat-step-icon-selected,.rtl-container.pink.day .mat-step-header .mat-step-icon-state-done,.rtl-container.pink.day .mat-step-header .mat-step-icon-state-edit{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.pink.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.pink.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.pink.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.pink.day .mat-stepper-horizontal,.rtl-container.pink.day .mat-stepper-vertical{background-color:#fff}.rtl-container.pink.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.pink.day .mat-horizontal-stepper-header:before,.rtl-container.pink.day .mat-horizontal-stepper-header:after,.rtl-container.pink.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.pink.day .mat-sort-header-arrow{color:#757575}.rtl-container.pink.day .mat-tab-nav-bar,.rtl-container.pink.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.pink.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.pink.day .mat-tab-label,.rtl-container.pink.day .mat-tab-link{color:#000000de}.rtl-container.pink.day .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.pink.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.pink.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.pink.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#e91e63}.rtl-container.pink.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.pink.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.pink.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.pink.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#e91e63}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.pink.day .mat-toolbar.mat-primary{background:#e91e63;color:#fff}.rtl-container.pink.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.pink.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.pink.day .mat-toolbar .mat-form-field-underline,.rtl-container.pink.day .mat-toolbar .mat-form-field-ripple,.rtl-container.pink.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.pink.day .mat-toolbar .mat-form-field-label,.rtl-container.pink.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.pink.day .mat-toolbar .mat-select-value,.rtl-container.pink.day .mat-toolbar .mat-select-arrow,.rtl-container.pink.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.pink.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.pink.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.pink.day .mat-tree{background:white}.rtl-container.pink.day .mat-tree-node,.rtl-container.pink.day .mat-nested-tree-node{color:#000000de}.rtl-container.pink.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-simple-snackbar-action{color:#424242}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.pink.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#e91e63}.rtl-container.pink.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.pink.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.pink.day .mat-tab-label.mat-tab-label-active{color:#e91e63}.rtl-container.pink.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#e91e63}.rtl-container.pink.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.pink.day .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.pink.day .mat-form-field-suffix{color:#0000008a}.rtl-container.pink.day .mat-stroked-button.mat-primary{border-color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.pink.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .selected-color{border-color:#f06292}.rtl-container.pink.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.pink.day .page-title-container,.rtl-container.pink.day .page-sub-title-container{color:#0000008a}.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.pink.day .page-title-container .mat-input-element,.rtl-container.pink.day .page-title-container .mat-radio-label-content,.rtl-container.pink.day .page-title-container .theme-name,.rtl-container.pink.day .page-sub-title-container .mat-input-element,.rtl-container.pink.day .page-sub-title-container .mat-radio-label-content,.rtl-container.pink.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.pink.day .cc-data-block .cc-data-title{color:#e91e63}.rtl-container.pink.day .active-link,.rtl-container.pink.day .active-link .fa-icon-small{color:#e91e63;font-weight:500;cursor:pointer;fill:#e91e63}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#e91e63;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .mat-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day svg.top-icon-small{fill:#000000de}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#880e4f}.rtl-container.pink.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-tab-label,.rtl-container.pink.day .mat-tab-link{color:#0000008a}.rtl-container.pink.day .mat-card,.rtl-container.pink.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.pink.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-info-value{color:#0000008a}.rtl-container.pink.day .color-primary{color:#e91e63!important}.rtl-container.pink.day .dot-primary{background-color:#e91e63!important}.rtl-container.pink.day .dot-primary-lighter{background-color:#f06292!important}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-tooltip{font-size:120%}.rtl-container.pink.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.pink.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.pink.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.pink.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-1{fill:#fff}.rtl-container.pink.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.pink.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-6{fill:#fff}.rtl-container.pink.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-9{fill:#fff}.rtl-container.pink.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-16{fill:#404040}.rtl-container.pink.day svg .fill-color-17{fill:#404040}.rtl-container.pink.day svg .fill-color-18{fill:#000}.rtl-container.pink.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-24{fill:#000}.rtl-container.pink.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.day svg .fill-color-27{fill:#000}.rtl-container.pink.day svg .fill-color-28{fill:#313131}.rtl-container.pink.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-30{fill:#fff}.rtl-container.pink.day svg .fill-color-31{fill:#e91e63}.rtl-container.pink.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.day svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.day svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.day svg .fill-color-primary-darker{fill:#e91e63}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.pink.day .material-icons.info-icon{color:#0000008a}.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.pink.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#e91e63}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#880e4f}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#f48fb1}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.pink.day .foreground.mat-progress-spinner circle,.rtl-container.pink.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.pink.day .mat-toolbar-row,.rtl-container.pink.day .mat-toolbar-single-row{height:5rem}.rtl-container.pink.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day a{color:#e91e63}.rtl-container.pink.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.day .h-active-link{border-bottom:2px solid white}.rtl-container.pink.day .mat-icon-36{color:#0000008a}.rtl-container.pink.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.pink.day .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.day .border-primary{border:1px solid #e91e63}.rtl-container.pink.day .border-accent{border:1px solid #424242}.rtl-container.pink.day .border-warn{border:1px solid #b00020}.rtl-container.pink.day .material-icons.primary{color:#e91e63}.rtl-container.pink.day .material-icons.accent{color:#424242}.rtl-container.pink.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.pink.day .row-disabled{background-color:gray}.rtl-container.pink.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.day .mat-menu-panel{min-width:6.4rem}.rtl-container.pink.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.pink.day .horizontal-button:hover{background:#f06292;color:#424242}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button,.rtl-container.pink.day .mat-flat-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.pink.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-header-cell,.rtl-container.pink.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.pink.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-table thead tr th{color:#000}.rtl-container.pink.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .more-button{color:#00000061}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.pink.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.pink.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.pink.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.pink.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.pink.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.pink.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.pink.day .color-warn{color:#b00020}.rtl-container.pink.day .fill-warn{fill:#b00020}.rtl-container.pink.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.pink.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-info a{color:#004085}.rtl-container.pink.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-warn a{color:#856404}.rtl-container.pink.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.day .help-expansion .mat-expansion-panel-header,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.day .help-expansion .mat-expansion-panel-content,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.pink.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.day .failed-status{color:#b00020}.rtl-container.pink.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.pink.day .svg-fill-primary{fill:#e91e63}.rtl-container.pink.day .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.pink.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.pink.day ngx-charts-bar-vertical text,.rtl-container.pink.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.pink.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.day .mat-paginator-container{padding:0}.rtl-container.pink.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.day .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-option{color:#fff}.rtl-container.pink.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#e91e63}.rtl-container.pink.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.pink.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.pink.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.pink.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#e91e63}.rtl-container.pink.night .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.pink.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.pink.night .mat-app-background,.rtl-container.pink.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.pink.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.pink.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.pink.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.pink.night .mat-badge{position:relative}.rtl-container.pink.night .mat-badge.mat-badge{overflow:visible}.rtl-container.pink.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.pink.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.pink.night .ng-animate-disabled .mat-badge-content,.rtl-container.pink.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.pink.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.pink.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.pink.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.pink.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.pink.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.pink.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.pink.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.pink.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.pink.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.pink.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.pink.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.pink.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.pink.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.pink.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.pink.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.pink.night .mat-badge-content{color:#fff;background:#e91e63}.cdk-high-contrast-active .rtl-container.pink.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.pink.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.pink.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.pink.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.pink.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#e91e63}.rtl-container.pink.night .mat-button.mat-accent,.rtl-container.pink.night .mat-icon-button.mat-accent,.rtl-container.pink.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.pink.night .mat-button.mat-warn,.rtl-container.pink.night .mat-icon-button.mat-warn,.rtl-container.pink.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.pink.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#e91e63}.rtl-container.pink.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.pink.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.pink.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.pink.night .mat-button .mat-ripple-element,.rtl-container.pink.night .mat-icon-button .mat-ripple-element,.rtl-container.pink.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.pink.night .mat-button-focus-overlay{background:white}.rtl-container.pink.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.pink.night .mat-flat-button,.rtl-container.pink.night .mat-raised-button,.rtl-container.pink.night .mat-fab,.rtl-container.pink.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.pink.night .mat-flat-button.mat-primary,.rtl-container.pink.night .mat-raised-button.mat-primary,.rtl-container.pink.night .mat-fab.mat-primary,.rtl-container.pink.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.pink.night .mat-flat-button.mat-accent,.rtl-container.pink.night .mat-raised-button.mat-accent,.rtl-container.pink.night .mat-fab.mat-accent,.rtl-container.pink.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.pink.night .mat-flat-button.mat-warn,.rtl-container.pink.night .mat-raised-button.mat-warn,.rtl-container.pink.night .mat-fab.mat-warn,.rtl-container.pink.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.pink.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.pink.night .mat-flat-button.mat-primary,.rtl-container.pink.night .mat-raised-button.mat-primary,.rtl-container.pink.night .mat-fab.mat-primary,.rtl-container.pink.night .mat-mini-fab.mat-primary{background-color:#e91e63}.rtl-container.pink.night .mat-flat-button.mat-accent,.rtl-container.pink.night .mat-raised-button.mat-accent,.rtl-container.pink.night .mat-fab.mat-accent,.rtl-container.pink.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.pink.night .mat-flat-button.mat-warn,.rtl-container.pink.night .mat-raised-button.mat-warn,.rtl-container.pink.night .mat-fab.mat-warn,.rtl-container.pink.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.pink.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.pink.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.pink.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.pink.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.pink.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.pink.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.pink.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.pink.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.pink.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.pink.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.pink.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.pink.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.pink.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.pink.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.pink.night .mat-card{background:#202020;color:#fff}.rtl-container.pink.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.pink.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.pink.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.pink.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#e91e63}.rtl-container.pink.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.pink.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.pink.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.pink.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.pink.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.pink.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#e91e63}.rtl-container.pink.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.pink.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.pink.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.pink.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.pink.night .mat-table{background:#202020}.rtl-container.pink.night .mat-table thead,.rtl-container.pink.night .mat-table tbody,.rtl-container.pink.night .mat-table tfoot,.rtl-container.pink.night mat-header-row,.rtl-container.pink.night mat-row,.rtl-container.pink.night mat-footer-row,.rtl-container.pink.night [mat-header-row],.rtl-container.pink.night [mat-row],.rtl-container.pink.night [mat-footer-row],.rtl-container.pink.night .mat-table-sticky{background:inherit}.rtl-container.pink.night mat-row,.rtl-container.pink.night mat-header-row,.rtl-container.pink.night mat-footer-row,.rtl-container.pink.night th.mat-header-cell,.rtl-container.pink.night td.mat-cell,.rtl-container.pink.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-footer-cell{color:#fff}.rtl-container.pink.night .mat-calendar-arrow{fill:#fff}.rtl-container.pink.night .mat-datepicker-toggle,.rtl-container.pink.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.pink.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.pink.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.pink.night .mat-calendar-body-cell-content,.rtl-container.pink.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.pink.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.pink.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.pink.night .mat-calendar-body-in-range:before{background:rgba(233,30,99,.2)}.rtl-container.pink.night .mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.night .mat-calendar-body-selected{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#e91e6366}.rtl-container.pink.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}@media (hover: hover){.rtl-container.pink.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}}.rtl-container.pink.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.pink.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.pink.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-datepicker-toggle-active{color:#e91e63}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.pink.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.pink.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.pink.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.pink.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.pink.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.pink.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.pink.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.pink.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.pink.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-label{color:#e91e63}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.pink.night .mat-form-field-ripple{background-color:#fff}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#e91e63}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#e91e63}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.pink.night .mat-error{color:#ff343b}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.pink.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.pink.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.pink.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.pink.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.pink.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.pink.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.pink.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#e91e63}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.pink.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.pink.night .mat-icon.mat-primary{color:#e91e63}.rtl-container.pink.night .mat-icon.mat-accent{color:#eee}.rtl-container.pink.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-input-element{caret-color:#e91e63}.rtl-container.pink.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.pink.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.pink.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.pink.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.pink.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.pink.night .mat-list-base .mat-list-item,.rtl-container.pink.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.pink.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.pink.night .mat-list-option:hover,.rtl-container.pink.night .mat-list-option:focus,.rtl-container.pink.night .mat-nav-list .mat-list-item:hover,.rtl-container.pink.night .mat-nav-list .mat-list-item:focus,.rtl-container.pink.night .mat-action-list .mat-list-item:hover,.rtl-container.pink.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-list-single-selected-option,.rtl-container.pink.night .mat-list-single-selected-option:hover,.rtl-container.pink.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.pink.night .mat-menu-panel{background:#202020}.rtl-container.pink.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.pink.night .mat-menu-item .mat-icon-no-color,.rtl-container.pink.night .mat-menu-submenu-icon{color:#fff}.rtl-container.pink.night .mat-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-paginator{background:#202020}.rtl-container.pink.night .mat-paginator-decrement,.rtl-container.pink.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.pink.night .mat-paginator-first,.rtl-container.pink.night .mat-paginator-last{border-top:2px solid white}.rtl-container.pink.night .mat-progress-bar-background{fill:#441123}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#441123}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#e91e63}.rtl-container.pink.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.pink.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.pink.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.pink.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.pink.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.pink.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.pink.night .mat-progress-spinner circle,.rtl-container.pink.night .mat-spinner circle{stroke:#e91e63}.rtl-container.pink.night .mat-progress-spinner.mat-accent circle,.rtl-container.pink.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.pink.night .mat-progress-spinner.mat-warn circle,.rtl-container.pink.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.pink.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#e91e63}.rtl-container.pink.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.pink.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#e91e63}.rtl-container.pink.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.pink.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.pink.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.pink.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.pink.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.pink.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.pink.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.pink.night .mat-select-value{color:#fff}.rtl-container.pink.night .mat-select-panel{background:#202020}.rtl-container.pink.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.pink.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#e91e63}.rtl-container.pink.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.pink.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.pink.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.pink.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.pink.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.pink.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.pink.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.pink.night .mat-drawer-side.mat-drawer-end,.rtl-container.pink.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.pink.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.pink.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.pink.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.pink.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.pink.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.pink.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#e91e63}.rtl-container.pink.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#e91e638a}.rtl-container.pink.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#e91e63}.rtl-container.pink.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.pink.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.pink.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.pink.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.pink.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.pink.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#e91e63}.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#e91e6333}.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.pink.night .mat-slider:hover .mat-slider-track-background,.rtl-container.pink.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.pink.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.pink.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.pink.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.pink.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.pink.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.pink.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.pink.night .mat-step-header.cdk-keyboard-focused,.rtl-container.pink.night .mat-step-header.cdk-program-focused,.rtl-container.pink.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.pink.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.pink.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.pink.night .mat-step-header:hover{background:none}}.rtl-container.pink.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.pink.night .mat-step-header .mat-step-icon-selected,.rtl-container.pink.night .mat-step-header .mat-step-icon-state-done,.rtl-container.pink.night .mat-step-header .mat-step-icon-state-edit{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.pink.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.pink.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.pink.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.pink.night .mat-stepper-horizontal,.rtl-container.pink.night .mat-stepper-vertical{background-color:#202020}.rtl-container.pink.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.pink.night .mat-horizontal-stepper-header:before,.rtl-container.pink.night .mat-horizontal-stepper-header:after,.rtl-container.pink.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.pink.night .mat-tab-nav-bar,.rtl-container.pink.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.pink.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.pink.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.pink.night .mat-tab-label,.rtl-container.pink.night .mat-tab-link{color:#fff}.rtl-container.pink.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.pink.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#e91e63}.rtl-container.pink.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.pink.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.pink.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.pink.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#e91e63}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.pink.night .mat-toolbar.mat-primary{background:#e91e63;color:#fff}.rtl-container.pink.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.pink.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.pink.night .mat-toolbar .mat-form-field-underline,.rtl-container.pink.night .mat-toolbar .mat-form-field-ripple,.rtl-container.pink.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.pink.night .mat-toolbar .mat-form-field-label,.rtl-container.pink.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.pink.night .mat-toolbar .mat-select-value,.rtl-container.pink.night .mat-toolbar .mat-select-arrow,.rtl-container.pink.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.pink.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.pink.night .mat-tree{background:#202020}.rtl-container.pink.night .mat-tree-node,.rtl-container.pink.night .mat-nested-tree-node{color:#fff}.rtl-container.pink.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-simple-snackbar-action{color:inherit}.rtl-container.pink.night .mat-primary{color:#ff4081}.rtl-container.pink.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-tab-label.mat-tab-label-active{color:#ff4081}.rtl-container.pink.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.pink.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.pink.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.pink.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ff4081}.rtl-container.pink.night .cc-data-block .cc-data-title{color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary{border-color:#ff4081;color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.pink.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.pink.night .active-link,.rtl-container.pink.night .active-link .fa-icon-small,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ff4081;font-weight:500;cursor:pointer;fill:#ff4081}.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover,.rtl-container.pink.night .mat-nested-tree-node-parent:hover,.rtl-container.pink.night .mat-select-panel .mat-option:hover,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ff4081;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.pink.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.night .mat-tree-node:hover .mat-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#ff4081}.rtl-container.pink.night .mat-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.night .page-title-container .page-title-img,.rtl-container.pink.night svg.top-icon-small{fill:#fff}.rtl-container.pink.night .selected-color{border-color:#f06292}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#d81b60}.rtl-container.pink.night .chart-legend .legend-label:hover,.rtl-container.pink.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.pink.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-select-panel{background-color:#262626}.rtl-container.pink.night .mat-tree{background:#262626}.rtl-container.pink.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.pink.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.pink.night .dashboard-info-title{color:#ff4081}.rtl-container.pink.night .dashboard-info-value,.rtl-container.pink.night .dashboard-capacity-header{color:#fff}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.pink.night .color-primary{color:#ff4081!important}.rtl-container.pink.night .dot-primary{background-color:#ff4081!important}.rtl-container.pink.night .dot-primary-lighter{background-color:#e91e63!important}.rtl-container.pink.night .mat-stepper-vertical{background-color:#262626}.rtl-container.pink.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.pink.night svg .boltz-icon-fill{fill:#fff}.rtl-container.pink.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.pink.night svg .fill-color-0{fill:#171717}.rtl-container.pink.night svg .fill-color-1{fill:#232323}.rtl-container.pink.night svg .fill-color-2{fill:#222}.rtl-container.pink.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.pink.night svg .fill-color-4{fill:#383838}.rtl-container.pink.night svg .fill-color-5{fill:#555}.rtl-container.pink.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.pink.night svg .fill-color-7{fill:#202020}.rtl-container.pink.night svg .fill-color-8{fill:#242424}.rtl-container.pink.night svg .fill-color-9{fill:#262626}.rtl-container.pink.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.pink.night svg .fill-color-11{fill:#171717}.rtl-container.pink.night svg .fill-color-12{fill:#ccc}.rtl-container.pink.night svg .fill-color-13{fill:#adadad}.rtl-container.pink.night svg .fill-color-14{fill:#ababab}.rtl-container.pink.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.pink.night svg .fill-color-16{fill:#707070}.rtl-container.pink.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.pink.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.pink.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.pink.night svg .fill-color-21{fill:#cacaca}.rtl-container.pink.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.pink.night svg .fill-color-23{fill:#777}.rtl-container.pink.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.pink.night svg .fill-color-25{fill:#252525}.rtl-container.pink.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.night svg .fill-color-27{fill:#000}.rtl-container.pink.night svg .fill-color-28{fill:#313131}.rtl-container.pink.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.pink.night svg .fill-color-30{fill:#fff}.rtl-container.pink.night svg .fill-color-31{fill:#e91e63}.rtl-container.pink.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.night svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.night svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.night svg .fill-color-primary-darker{fill:#ff4081}.rtl-container.pink.night .mat-select-value,.rtl-container.pink.night .mat-select-arrow{color:#fff}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.pink.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.pink.night .mat-slide-toggle-bar,.rtl-container.pink.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.pink.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#ff4081}.rtl-container.pink.night tr.alert.alert-warn .mat-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-header-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.pink.night .material-icons.info-icon,.rtl-container.pink.night .material-icons.info-icon.info-icon-primary{color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.pink.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ff4081}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#ad1457}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ff4081}.rtl-container.pink.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.pink.night .foreground.mat-progress-spinner circle,.rtl-container.pink.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.pink.night .mat-toolbar-row,.rtl-container.pink.night .mat-toolbar-single-row{height:5rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.pink.night a{color:#e91e63}.rtl-container.pink.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.night .h-active-link{border-bottom:2px solid white}.rtl-container.pink.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.pink.night .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.night .border-primary{border:1px solid #e91e63}.rtl-container.pink.night .border-accent{border:1px solid #eeeeee}.rtl-container.pink.night .border-warn{border:1px solid #ff343b}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#eee}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.pink.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.pink.night .row-disabled{background-color:gray}.rtl-container.pink.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.night .mat-menu-panel{min-width:6.4rem}.rtl-container.pink.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.pink.night .horizontal-button:hover{background:#f06292;color:#eee}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#e91e63}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button,.rtl-container.pink.night .mat-flat-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.pink.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-header-cell,.rtl-container.pink.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.pink.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.pink.night table.mat-table thead tr th{color:#fff}.rtl-container.pink.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.pink.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.pink.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.pink.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.pink.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.pink.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.pink.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.pink.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.pink.night .color-warn{color:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.rtl-container.pink.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.pink.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-info a{color:#004085}.rtl-container.pink.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-warn a{color:#856404}.rtl-container.pink.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.night .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.pink.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.night .failed-status{color:#ff343b}.rtl-container.pink.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.pink.night .svg-fill-primary{fill:#e91e63}.rtl-container.pink.night .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.pink.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.pink.night ngx-charts-bar-vertical text,.rtl-container.pink.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.pink.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.night .mat-paginator-container{padding:0}.rtl-container.pink.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.night .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.small.small .mat-header-cell{font-weight:700}.rtl-container.yellow.small.small .mr-4{margin-right:1rem!important}.rtl-container.yellow.small.small .mat-menu-item,.rtl-container.yellow.small.small .mat-tree .mat-tree-node,.rtl-container.yellow.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.yellow.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.yellow.small.small .genseed-message,.rtl-container.yellow.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.yellow.small.small .fa-icon-small,.rtl-container.yellow.small.small .top-icon-small{font-size:1.44rem}.rtl-container.yellow.small.small .page-title-container,.rtl-container.yellow.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.yellow.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.yellow.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.yellow.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.yellow.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.yellow.small.small .material-icons,.rtl-container.yellow.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.yellow.small.small .mat-expansion-panel-header,.rtl-container.yellow.small.small .mat-menu-item,.rtl-container.yellow.small.small .mat-list .mat-list-item,.rtl-container.yellow.small.small .mat-nav-list .mat-list-item,.rtl-container.yellow.small.small .mat-option,.rtl-container.yellow.small.small .mat-select,.rtl-container.yellow.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.yellow.small.small .logo{font-size:2.4rem}.rtl-container.yellow.small.small .font-60-percent{font-size:.72rem}.rtl-container.yellow.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.yellow.small.small .icon-large{font-size:6rem}.rtl-container.yellow.small.small .icon-small{font-size:1.8rem!important}.rtl-container.yellow.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.yellow.small.small .size-triple{font-size:3.6rem}.rtl-container.yellow.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.yellow.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.small.medium .mat-header-cell{font-weight:700}.rtl-container.yellow.small.medium .mat-tree .mat-tree-node,.rtl-container.yellow.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.yellow.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.yellow.small.medium .genseed-message,.rtl-container.yellow.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.yellow.small.medium .page-title-container,.rtl-container.yellow.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.yellow.small.medium .fa-icon-small,.rtl-container.yellow.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.yellow.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.yellow.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.yellow.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.yellow.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.yellow.small.medium .material-icons{font-size:2.8rem}.rtl-container.yellow.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.yellow.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.yellow.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.yellow.small.medium .mat-expansion-panel-header,.rtl-container.yellow.small.medium .mat-menu-item,.rtl-container.yellow.small.medium .mat-list .mat-list-item,.rtl-container.yellow.small.medium .mat-nav-list .mat-list-item,.rtl-container.yellow.small.medium .mat-option,.rtl-container.yellow.small.medium .mat-select,.rtl-container.yellow.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.yellow.small.medium .logo{font-size:2.8rem}.rtl-container.yellow.small.medium .font-60-percent{font-size:.84rem}.rtl-container.yellow.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.yellow.small.medium .icon-large{font-size:7rem}.rtl-container.yellow.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.yellow.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.yellow.small.medium .size-triple{font-size:4.2rem}.rtl-container.yellow.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.yellow.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.small.large .mat-header-cell{font-weight:800}.rtl-container.yellow.small.large .mat-tree .mat-tree-node,.rtl-container.yellow.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.yellow.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.yellow.small.large .genseed-message,.rtl-container.yellow.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.yellow.small.large .page-title-container,.rtl-container.yellow.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.yellow.small.large .fa-icon-small,.rtl-container.yellow.small.large .top-icon-small,.rtl-container.yellow.small.large .modal-info-header{font-size:1.92rem}.rtl-container.yellow.small.large .top-toolbar-icon.icon-pinned,.rtl-container.yellow.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.yellow.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.yellow.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.yellow.small.large .material-icons{font-size:4rem}.rtl-container.yellow.small.large .mat-expansion-panel-header,.rtl-container.yellow.small.large .mat-menu-item,.rtl-container.yellow.small.large .mat-list .mat-list-item,.rtl-container.yellow.small.large .mat-nav-list .mat-list-item,.rtl-container.yellow.small.large .mat-option,.rtl-container.yellow.small.large .mat-select,.rtl-container.yellow.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.yellow.small.large .logo{font-size:3.2rem}.rtl-container.yellow.small.large .font-60-percent{font-size:.96rem}.rtl-container.yellow.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.yellow.small.large .icon-large{font-size:8rem}.rtl-container.yellow.small.large .icon-small{font-size:2.4rem!important}.rtl-container.yellow.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.yellow.small.large .size-triple{font-size:4.8rem}.rtl-container.yellow.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.yellow.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.small .mat-icon.material-icons:focus{outline:none}.rtl-container.yellow.small .mat-flat-button.mat-primary:focus,.rtl-container.yellow.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.yellow.medium.small .mat-header-cell{font-weight:700}.rtl-container.yellow.medium.small .mr-4{margin-right:1rem!important}.rtl-container.yellow.medium.small .mat-menu-item,.rtl-container.yellow.medium.small .mat-tree .mat-tree-node,.rtl-container.yellow.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.yellow.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.yellow.medium.small .genseed-message,.rtl-container.yellow.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.yellow.medium.small .fa-icon-small,.rtl-container.yellow.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.yellow.medium.small .page-title-container,.rtl-container.yellow.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.yellow.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.yellow.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.yellow.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.yellow.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.yellow.medium.small .material-icons,.rtl-container.yellow.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.yellow.medium.small .mat-expansion-panel-header,.rtl-container.yellow.medium.small .mat-menu-item,.rtl-container.yellow.medium.small .mat-list .mat-list-item,.rtl-container.yellow.medium.small .mat-nav-list .mat-list-item,.rtl-container.yellow.medium.small .mat-option,.rtl-container.yellow.medium.small .mat-select,.rtl-container.yellow.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.yellow.medium.small .logo{font-size:2.4rem}.rtl-container.yellow.medium.small .font-60-percent{font-size:.72rem}.rtl-container.yellow.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.yellow.medium.small .icon-large{font-size:6rem}.rtl-container.yellow.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.yellow.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.yellow.medium.small .size-triple{font-size:3.6rem}.rtl-container.yellow.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.yellow.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.medium.medium .mat-header-cell{font-weight:700}.rtl-container.yellow.medium.medium .mat-tree .mat-tree-node,.rtl-container.yellow.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.yellow.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.yellow.medium.medium .genseed-message,.rtl-container.yellow.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.yellow.medium.medium .page-title-container,.rtl-container.yellow.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.yellow.medium.medium .fa-icon-small,.rtl-container.yellow.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.yellow.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.yellow.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.yellow.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.yellow.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.yellow.medium.medium .material-icons{font-size:2.8rem}.rtl-container.yellow.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.yellow.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.yellow.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.yellow.medium.medium .mat-expansion-panel-header,.rtl-container.yellow.medium.medium .mat-menu-item,.rtl-container.yellow.medium.medium .mat-list .mat-list-item,.rtl-container.yellow.medium.medium .mat-nav-list .mat-list-item,.rtl-container.yellow.medium.medium .mat-option,.rtl-container.yellow.medium.medium .mat-select,.rtl-container.yellow.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.yellow.medium.medium .logo{font-size:2.8rem}.rtl-container.yellow.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.yellow.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.yellow.medium.medium .icon-large{font-size:7rem}.rtl-container.yellow.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.yellow.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.yellow.medium.medium .size-triple{font-size:4.2rem}.rtl-container.yellow.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.yellow.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.medium.large .mat-header-cell{font-weight:800}.rtl-container.yellow.medium.large .mat-tree .mat-tree-node,.rtl-container.yellow.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.yellow.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.yellow.medium.large .genseed-message,.rtl-container.yellow.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.yellow.medium.large .page-title-container,.rtl-container.yellow.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.yellow.medium.large .fa-icon-small,.rtl-container.yellow.medium.large .top-icon-small,.rtl-container.yellow.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.yellow.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.yellow.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.yellow.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.yellow.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.yellow.medium.large .material-icons{font-size:4rem}.rtl-container.yellow.medium.large .mat-expansion-panel-header,.rtl-container.yellow.medium.large .mat-menu-item,.rtl-container.yellow.medium.large .mat-list .mat-list-item,.rtl-container.yellow.medium.large .mat-nav-list .mat-list-item,.rtl-container.yellow.medium.large .mat-option,.rtl-container.yellow.medium.large .mat-select,.rtl-container.yellow.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.yellow.medium.large .logo{font-size:3.2rem}.rtl-container.yellow.medium.large .font-60-percent{font-size:.96rem}.rtl-container.yellow.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.yellow.medium.large .icon-large{font-size:8rem}.rtl-container.yellow.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.yellow.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.yellow.medium.large .size-triple{font-size:4.8rem}.rtl-container.yellow.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.yellow.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.yellow.medium .mat-flat-button.mat-primary:focus,.rtl-container.yellow.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.yellow.large.small .mat-header-cell{font-weight:700}.rtl-container.yellow.large.small .mr-4{margin-right:1rem!important}.rtl-container.yellow.large.small .mat-menu-item,.rtl-container.yellow.large.small .mat-tree .mat-tree-node,.rtl-container.yellow.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.yellow.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.yellow.large.small .genseed-message,.rtl-container.yellow.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.yellow.large.small .fa-icon-small,.rtl-container.yellow.large.small .top-icon-small{font-size:1.44rem}.rtl-container.yellow.large.small .page-title-container,.rtl-container.yellow.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.yellow.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.yellow.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.yellow.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.yellow.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.yellow.large.small .material-icons,.rtl-container.yellow.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.yellow.large.small .mat-expansion-panel-header,.rtl-container.yellow.large.small .mat-menu-item,.rtl-container.yellow.large.small .mat-list .mat-list-item,.rtl-container.yellow.large.small .mat-nav-list .mat-list-item,.rtl-container.yellow.large.small .mat-option,.rtl-container.yellow.large.small .mat-select,.rtl-container.yellow.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.yellow.large.small .logo{font-size:2.4rem}.rtl-container.yellow.large.small .font-60-percent{font-size:.72rem}.rtl-container.yellow.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.yellow.large.small .icon-large{font-size:6rem}.rtl-container.yellow.large.small .icon-small{font-size:1.8rem!important}.rtl-container.yellow.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.yellow.large.small .size-triple{font-size:3.6rem}.rtl-container.yellow.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.yellow.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.large.medium .mat-header-cell{font-weight:700}.rtl-container.yellow.large.medium .mat-tree .mat-tree-node,.rtl-container.yellow.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.yellow.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.yellow.large.medium .genseed-message,.rtl-container.yellow.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.yellow.large.medium .page-title-container,.rtl-container.yellow.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.yellow.large.medium .fa-icon-small,.rtl-container.yellow.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.yellow.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.yellow.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.yellow.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.yellow.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.yellow.large.medium .material-icons{font-size:2.8rem}.rtl-container.yellow.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.yellow.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.yellow.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.yellow.large.medium .mat-expansion-panel-header,.rtl-container.yellow.large.medium .mat-menu-item,.rtl-container.yellow.large.medium .mat-list .mat-list-item,.rtl-container.yellow.large.medium .mat-nav-list .mat-list-item,.rtl-container.yellow.large.medium .mat-option,.rtl-container.yellow.large.medium .mat-select,.rtl-container.yellow.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.yellow.large.medium .logo{font-size:2.8rem}.rtl-container.yellow.large.medium .font-60-percent{font-size:.84rem}.rtl-container.yellow.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.yellow.large.medium .icon-large{font-size:7rem}.rtl-container.yellow.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.yellow.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.yellow.large.medium .size-triple{font-size:4.2rem}.rtl-container.yellow.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.yellow.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.large.large .mat-header-cell{font-weight:800}.rtl-container.yellow.large.large .mat-tree .mat-tree-node,.rtl-container.yellow.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.yellow.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.yellow.large.large .genseed-message,.rtl-container.yellow.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.yellow.large.large .page-title-container,.rtl-container.yellow.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.yellow.large.large .fa-icon-small,.rtl-container.yellow.large.large .top-icon-small,.rtl-container.yellow.large.large .modal-info-header{font-size:1.92rem}.rtl-container.yellow.large.large .top-toolbar-icon.icon-pinned,.rtl-container.yellow.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.yellow.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.yellow.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.yellow.large.large .material-icons{font-size:4rem}.rtl-container.yellow.large.large .mat-expansion-panel-header,.rtl-container.yellow.large.large .mat-menu-item,.rtl-container.yellow.large.large .mat-list .mat-list-item,.rtl-container.yellow.large.large .mat-nav-list .mat-list-item,.rtl-container.yellow.large.large .mat-option,.rtl-container.yellow.large.large .mat-select,.rtl-container.yellow.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.yellow.large.large .logo{font-size:3.2rem}.rtl-container.yellow.large.large .font-60-percent{font-size:.96rem}.rtl-container.yellow.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.yellow.large.large .icon-large{font-size:8rem}.rtl-container.yellow.large.large .icon-small{font-size:2.4rem!important}.rtl-container.yellow.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.yellow.large.large .size-triple{font-size:4.8rem}.rtl-container.yellow.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.yellow.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.large .mat-icon.material-icons:focus{outline:none}.rtl-container.yellow.large .mat-flat-button.mat-primary:focus,.rtl-container.yellow.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.yellow.day .mat-ripple-element{background-color:#0000001a}.rtl-container.yellow.day .mat-option{color:#000000de}.rtl-container.yellow.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.yellow.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#945f1f}.rtl-container.yellow.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.yellow.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.yellow.day .mat-optgroup-label{color:#0000008a}.rtl-container.yellow.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.yellow.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.yellow.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.yellow.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#945f1f}.rtl-container.yellow.day .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.yellow.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.yellow.day .mat-app-background,.rtl-container.yellow.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.yellow.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.yellow.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.yellow.day .mat-badge{position:relative}.rtl-container.yellow.day .mat-badge.mat-badge{overflow:visible}.rtl-container.yellow.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.yellow.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.yellow.day .ng-animate-disabled .mat-badge-content,.rtl-container.yellow.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.yellow.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.yellow.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.yellow.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.yellow.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.yellow.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.yellow.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.yellow.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.yellow.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.yellow.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.yellow.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.yellow.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.yellow.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.yellow.day .mat-badge-content{color:#fff;background:#945f1f}.cdk-high-contrast-active .rtl-container.yellow.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.yellow.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.yellow.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.yellow.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.yellow.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.yellow.day .mat-button.mat-primary,.rtl-container.yellow.day .mat-icon-button.mat-primary,.rtl-container.yellow.day .mat-stroked-button.mat-primary{color:#945f1f}.rtl-container.yellow.day .mat-button.mat-accent,.rtl-container.yellow.day .mat-icon-button.mat-accent,.rtl-container.yellow.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.yellow.day .mat-button.mat-warn,.rtl-container.yellow.day .mat-icon-button.mat-warn,.rtl-container.yellow.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.yellow.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#945f1f}.rtl-container.yellow.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.yellow.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.yellow.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.yellow.day .mat-button .mat-ripple-element,.rtl-container.yellow.day .mat-icon-button .mat-ripple-element,.rtl-container.yellow.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.yellow.day .mat-button-focus-overlay{background:black}.rtl-container.yellow.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.yellow.day .mat-flat-button,.rtl-container.yellow.day .mat-raised-button,.rtl-container.yellow.day .mat-fab,.rtl-container.yellow.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.yellow.day .mat-flat-button.mat-primary,.rtl-container.yellow.day .mat-raised-button.mat-primary,.rtl-container.yellow.day .mat-fab.mat-primary,.rtl-container.yellow.day .mat-mini-fab.mat-primary,.rtl-container.yellow.day .mat-flat-button.mat-accent,.rtl-container.yellow.day .mat-raised-button.mat-accent,.rtl-container.yellow.day .mat-fab.mat-accent,.rtl-container.yellow.day .mat-mini-fab.mat-accent,.rtl-container.yellow.day .mat-flat-button.mat-warn,.rtl-container.yellow.day .mat-raised-button.mat-warn,.rtl-container.yellow.day .mat-fab.mat-warn,.rtl-container.yellow.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.yellow.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.yellow.day .mat-flat-button.mat-primary,.rtl-container.yellow.day .mat-raised-button.mat-primary,.rtl-container.yellow.day .mat-fab.mat-primary,.rtl-container.yellow.day .mat-mini-fab.mat-primary{background-color:#945f1f}.rtl-container.yellow.day .mat-flat-button.mat-accent,.rtl-container.yellow.day .mat-raised-button.mat-accent,.rtl-container.yellow.day .mat-fab.mat-accent,.rtl-container.yellow.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.yellow.day .mat-flat-button.mat-warn,.rtl-container.yellow.day .mat-raised-button.mat-warn,.rtl-container.yellow.day .mat-fab.mat-warn,.rtl-container.yellow.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.yellow.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.yellow.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.yellow.day .mat-button-toggle{color:#00000061}.rtl-container.yellow.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.yellow.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.yellow.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.yellow.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.yellow.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.yellow.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.yellow.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.yellow.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.yellow.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.yellow.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.yellow.day .mat-card{background:white;color:#000000de}.rtl-container.yellow.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-card-subtitle{color:#0000008a}.rtl-container.yellow.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.yellow.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.yellow.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.yellow.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.yellow.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#945f1f}.rtl-container.yellow.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.yellow.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.yellow.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.yellow.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.yellow.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.yellow.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.yellow.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#945f1f}.rtl-container.yellow.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.yellow.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.yellow.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.yellow.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-table{background:white}.rtl-container.yellow.day .mat-table thead,.rtl-container.yellow.day .mat-table tbody,.rtl-container.yellow.day .mat-table tfoot,.rtl-container.yellow.day mat-header-row,.rtl-container.yellow.day mat-row,.rtl-container.yellow.day mat-footer-row,.rtl-container.yellow.day [mat-header-row],.rtl-container.yellow.day [mat-row],.rtl-container.yellow.day [mat-footer-row],.rtl-container.yellow.day .mat-table-sticky{background:inherit}.rtl-container.yellow.day mat-row,.rtl-container.yellow.day mat-header-row,.rtl-container.yellow.day mat-footer-row,.rtl-container.yellow.day th.mat-header-cell,.rtl-container.yellow.day td.mat-cell,.rtl-container.yellow.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.yellow.day .mat-header-cell{color:#0000008a}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-footer-cell{color:#000000de}.rtl-container.yellow.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.yellow.day .mat-datepicker-toggle,.rtl-container.yellow.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.yellow.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.yellow.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-calendar-table-header,.rtl-container.yellow.day .mat-calendar-body-label{color:#0000008a}.rtl-container.yellow.day .mat-calendar-body-cell-content,.rtl-container.yellow.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.yellow.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.yellow.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.yellow.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.yellow.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.yellow.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.yellow.day .mat-calendar-body-in-range:before{background:rgba(148,95,31,.2)}.rtl-container.yellow.day .mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.day .mat-calendar-body-selected{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#945f1f66}.rtl-container.yellow.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}@media (hover: hover){.rtl-container.yellow.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}}.rtl-container.yellow.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.yellow.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-datepicker-toggle-active{color:#945f1f}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.yellow.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.yellow.day .mat-divider{border-top-color:#0000001f}.rtl-container.yellow.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.yellow.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.yellow.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-action-row{border-top-color:#0000001f}.rtl-container.yellow.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.yellow.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.yellow.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.yellow.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.yellow.day .mat-expansion-panel-header-description,.rtl-container.yellow.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.yellow.day .mat-form-field-label,.rtl-container.yellow.day .mat-hint{color:#0009}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-label{color:#945f1f}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.yellow.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#945f1f}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#945f1f}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.yellow.day .mat-error{color:#b00020}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.yellow.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.yellow.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.yellow.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.yellow.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.yellow.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.yellow.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.yellow.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#945f1f}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.yellow.day .mat-icon.mat-primary{color:#945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{color:#424242}.rtl-container.yellow.day .mat-icon.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.yellow.day .mat-input-element:disabled,.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.yellow.day .mat-input-element{caret-color:#945f1f}.rtl-container.yellow.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.yellow.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.yellow.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.yellow.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.yellow.day .mat-list-base .mat-list-item,.rtl-container.yellow.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.yellow.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.yellow.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.yellow.day .mat-list-option:hover,.rtl-container.yellow.day .mat-list-option:focus,.rtl-container.yellow.day .mat-nav-list .mat-list-item:hover,.rtl-container.yellow.day .mat-nav-list .mat-list-item:focus,.rtl-container.yellow.day .mat-action-list .mat-list-item:hover,.rtl-container.yellow.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-list-single-selected-option,.rtl-container.yellow.day .mat-list-single-selected-option:hover,.rtl-container.yellow.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-menu-panel{background:white}.rtl-container.yellow.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.yellow.day .mat-menu-item[disabled],.rtl-container.yellow.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.yellow.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.yellow.day .mat-menu-item .mat-icon-no-color,.rtl-container.yellow.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.yellow.day .mat-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-paginator{background:white}.rtl-container.yellow.day .mat-paginator,.rtl-container.yellow.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.yellow.day .mat-paginator-decrement,.rtl-container.yellow.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.yellow.day .mat-paginator-first,.rtl-container.yellow.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.yellow.day .mat-progress-bar-background{fill:#e1d3c3}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#e1d3c3}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#945f1f}.rtl-container.yellow.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.yellow.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.yellow.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.yellow.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.yellow.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.yellow.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.yellow.day .mat-progress-spinner circle,.rtl-container.yellow.day .mat-spinner circle{stroke:#945f1f}.rtl-container.yellow.day .mat-progress-spinner.mat-accent circle,.rtl-container.yellow.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.yellow.day .mat-progress-spinner.mat-warn circle,.rtl-container.yellow.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.yellow.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.yellow.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#945f1f}.rtl-container.yellow.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.yellow.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#945f1f}.rtl-container.yellow.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.yellow.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.yellow.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.yellow.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.yellow.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.yellow.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.yellow.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.yellow.day .mat-select-value{color:#000000de}.rtl-container.yellow.day .mat-select-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.yellow.day .mat-select-arrow{color:#0000008a}.rtl-container.yellow.day .mat-select-panel{background:white}.rtl-container.yellow.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#945f1f}.rtl-container.yellow.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.yellow.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.yellow.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.yellow.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.yellow.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.yellow.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.yellow.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.yellow.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-drawer-side.mat-drawer-end,.rtl-container.yellow.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.yellow.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.yellow.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.yellow.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.yellow.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.yellow.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#945f1f8a}.rtl-container.yellow.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.yellow.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.yellow.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.yellow.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.yellow.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.yellow.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.yellow.day .mat-slider-track-background{background-color:#00000042}.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#945f1f}.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#945f1f33}.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.yellow.day .mat-slider:hover .mat-slider-track-background,.rtl-container.yellow.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.yellow.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.yellow.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.yellow.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.yellow.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.yellow.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.day .mat-step-header.cdk-keyboard-focused,.rtl-container.yellow.day .mat-step-header.cdk-program-focused,.rtl-container.yellow.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.yellow.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.yellow.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.yellow.day .mat-step-header:hover{background:none}}.rtl-container.yellow.day .mat-step-header .mat-step-label,.rtl-container.yellow.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.yellow.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.yellow.day .mat-step-header .mat-step-icon-selected,.rtl-container.yellow.day .mat-step-header .mat-step-icon-state-done,.rtl-container.yellow.day .mat-step-header .mat-step-icon-state-edit{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.yellow.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.yellow.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.yellow.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.yellow.day .mat-stepper-horizontal,.rtl-container.yellow.day .mat-stepper-vertical{background-color:#fff}.rtl-container.yellow.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.yellow.day .mat-horizontal-stepper-header:before,.rtl-container.yellow.day .mat-horizontal-stepper-header:after,.rtl-container.yellow.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.yellow.day .mat-sort-header-arrow{color:#757575}.rtl-container.yellow.day .mat-tab-nav-bar,.rtl-container.yellow.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.yellow.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.yellow.day .mat-tab-label,.rtl-container.yellow.day .mat-tab-link{color:#000000de}.rtl-container.yellow.day .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.yellow.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.yellow.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.yellow.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#945f1f}.rtl-container.yellow.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.yellow.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.yellow.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#945f1f}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.yellow.day .mat-toolbar.mat-primary{background:#945f1f;color:#fff}.rtl-container.yellow.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.yellow.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.yellow.day .mat-toolbar .mat-form-field-underline,.rtl-container.yellow.day .mat-toolbar .mat-form-field-ripple,.rtl-container.yellow.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.yellow.day .mat-toolbar .mat-form-field-label,.rtl-container.yellow.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.yellow.day .mat-toolbar .mat-select-value,.rtl-container.yellow.day .mat-toolbar .mat-select-arrow,.rtl-container.yellow.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.yellow.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.yellow.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.yellow.day .mat-tree{background:white}.rtl-container.yellow.day .mat-tree-node,.rtl-container.yellow.day .mat-nested-tree-node{color:#000000de}.rtl-container.yellow.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-simple-snackbar-action{color:#424242}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.yellow.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#945f1f}.rtl-container.yellow.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.yellow.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.yellow.day .mat-tab-label.mat-tab-label-active{color:#945f1f}.rtl-container.yellow.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#945f1f}.rtl-container.yellow.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.yellow.day .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.yellow.day .mat-form-field-suffix{color:#0000008a}.rtl-container.yellow.day .mat-stroked-button.mat-primary{border-color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.yellow.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .selected-color{border-color:#b48f62}.rtl-container.yellow.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.yellow.day .page-title-container,.rtl-container.yellow.day .page-sub-title-container{color:#0000008a}.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.yellow.day .page-title-container .mat-input-element,.rtl-container.yellow.day .page-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-title-container .theme-name,.rtl-container.yellow.day .page-sub-title-container .mat-input-element,.rtl-container.yellow.day .page-sub-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.yellow.day .cc-data-block .cc-data-title{color:#945f1f}.rtl-container.yellow.day .active-link,.rtl-container.yellow.day .active-link .fa-icon-small{color:#945f1f;font-weight:500;cursor:pointer;fill:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#945f1f;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .mat-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day svg.top-icon-small{fill:#000000de}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#65320a}.rtl-container.yellow.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-tab-label,.rtl-container.yellow.day .mat-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-card,.rtl-container.yellow.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.yellow.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-info-value{color:#0000008a}.rtl-container.yellow.day .color-primary{color:#945f1f!important}.rtl-container.yellow.day .dot-primary{background-color:#945f1f!important}.rtl-container.yellow.day .dot-primary-lighter{background-color:#b48f62!important}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-tooltip{font-size:120%}.rtl-container.yellow.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.yellow.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.yellow.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.yellow.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-1{fill:#fff}.rtl-container.yellow.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.yellow.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-6{fill:#fff}.rtl-container.yellow.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-9{fill:#fff}.rtl-container.yellow.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-16{fill:#404040}.rtl-container.yellow.day svg .fill-color-17{fill:#404040}.rtl-container.yellow.day svg .fill-color-18{fill:#000}.rtl-container.yellow.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-24{fill:#000}.rtl-container.yellow.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.day svg .fill-color-27{fill:#000}.rtl-container.yellow.day svg .fill-color-28{fill:#313131}.rtl-container.yellow.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-30{fill:#fff}.rtl-container.yellow.day svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.day svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.day svg .fill-color-primary-darker{fill:#945f1f}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.yellow.day .material-icons.info-icon{color:#0000008a}.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#945f1f}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#65320a}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#caaf8f}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.yellow.day .foreground.mat-progress-spinner circle,.rtl-container.yellow.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.yellow.day .mat-toolbar-row,.rtl-container.yellow.day .mat-toolbar-single-row{height:5rem}.rtl-container.yellow.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day a{color:#945f1f}.rtl-container.yellow.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.day .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.day .mat-icon-36{color:#0000008a}.rtl-container.yellow.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.yellow.day .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.day .border-primary{border:1px solid #945f1f}.rtl-container.yellow.day .border-accent{border:1px solid #424242}.rtl-container.yellow.day .border-warn{border:1px solid #b00020}.rtl-container.yellow.day .material-icons.primary{color:#945f1f}.rtl-container.yellow.day .material-icons.accent{color:#424242}.rtl-container.yellow.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.yellow.day .row-disabled{background-color:gray}.rtl-container.yellow.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.day .mat-menu-panel{min-width:6.4rem}.rtl-container.yellow.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.yellow.day .horizontal-button:hover{background:#b48f62;color:#424242}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button,.rtl-container.yellow.day .mat-flat-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.yellow.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-header-cell,.rtl-container.yellow.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.yellow.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-table thead tr th{color:#000}.rtl-container.yellow.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .more-button{color:#00000061}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.yellow.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.yellow.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.yellow.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.yellow.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.day .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.yellow.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.yellow.day .color-warn{color:#b00020}.rtl-container.yellow.day .fill-warn{fill:#b00020}.rtl-container.yellow.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.yellow.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-info a{color:#004085}.rtl-container.yellow.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-warn a{color:#856404}.rtl-container.yellow.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.yellow.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.day .failed-status{color:#b00020}.rtl-container.yellow.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.yellow.day .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.day .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.yellow.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.day .mat-paginator-container{padding:0}.rtl-container.yellow.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.day .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.yellow.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.day .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.day .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-option{color:#fff}.rtl-container.yellow.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#945f1f}.rtl-container.yellow.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.yellow.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.yellow.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.yellow.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#945f1f}.rtl-container.yellow.night .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.yellow.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.yellow.night .mat-app-background,.rtl-container.yellow.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.yellow.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.yellow.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.yellow.night .mat-badge{position:relative}.rtl-container.yellow.night .mat-badge.mat-badge{overflow:visible}.rtl-container.yellow.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.yellow.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.yellow.night .ng-animate-disabled .mat-badge-content,.rtl-container.yellow.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.yellow.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.yellow.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.yellow.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.yellow.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.yellow.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.yellow.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.yellow.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.yellow.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.yellow.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.yellow.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.yellow.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.yellow.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.yellow.night .mat-badge-content{color:#fff;background:#945f1f}.cdk-high-contrast-active .rtl-container.yellow.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.yellow.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.yellow.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.yellow.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.yellow.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#945f1f}.rtl-container.yellow.night .mat-button.mat-accent,.rtl-container.yellow.night .mat-icon-button.mat-accent,.rtl-container.yellow.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.yellow.night .mat-button.mat-warn,.rtl-container.yellow.night .mat-icon-button.mat-warn,.rtl-container.yellow.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.yellow.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#945f1f}.rtl-container.yellow.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.yellow.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.yellow.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.yellow.night .mat-button .mat-ripple-element,.rtl-container.yellow.night .mat-icon-button .mat-ripple-element,.rtl-container.yellow.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.yellow.night .mat-button-focus-overlay{background:white}.rtl-container.yellow.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.yellow.night .mat-flat-button,.rtl-container.yellow.night .mat-raised-button,.rtl-container.yellow.night .mat-fab,.rtl-container.yellow.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.yellow.night .mat-flat-button.mat-primary,.rtl-container.yellow.night .mat-raised-button.mat-primary,.rtl-container.yellow.night .mat-fab.mat-primary,.rtl-container.yellow.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.yellow.night .mat-flat-button.mat-accent,.rtl-container.yellow.night .mat-raised-button.mat-accent,.rtl-container.yellow.night .mat-fab.mat-accent,.rtl-container.yellow.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.yellow.night .mat-flat-button.mat-warn,.rtl-container.yellow.night .mat-raised-button.mat-warn,.rtl-container.yellow.night .mat-fab.mat-warn,.rtl-container.yellow.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.yellow.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.yellow.night .mat-flat-button.mat-primary,.rtl-container.yellow.night .mat-raised-button.mat-primary,.rtl-container.yellow.night .mat-fab.mat-primary,.rtl-container.yellow.night .mat-mini-fab.mat-primary{background-color:#945f1f}.rtl-container.yellow.night .mat-flat-button.mat-accent,.rtl-container.yellow.night .mat-raised-button.mat-accent,.rtl-container.yellow.night .mat-fab.mat-accent,.rtl-container.yellow.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.yellow.night .mat-flat-button.mat-warn,.rtl-container.yellow.night .mat-raised-button.mat-warn,.rtl-container.yellow.night .mat-fab.mat-warn,.rtl-container.yellow.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.yellow.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.yellow.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.yellow.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.yellow.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.yellow.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.yellow.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.yellow.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.yellow.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.yellow.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.yellow.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.yellow.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.yellow.night .mat-card{background:#202020;color:#fff}.rtl-container.yellow.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.yellow.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.yellow.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.yellow.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#945f1f}.rtl-container.yellow.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.yellow.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.yellow.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.yellow.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.yellow.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.yellow.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#945f1f}.rtl-container.yellow.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.yellow.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.yellow.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.yellow.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.yellow.night .mat-table{background:#202020}.rtl-container.yellow.night .mat-table thead,.rtl-container.yellow.night .mat-table tbody,.rtl-container.yellow.night .mat-table tfoot,.rtl-container.yellow.night mat-header-row,.rtl-container.yellow.night mat-row,.rtl-container.yellow.night mat-footer-row,.rtl-container.yellow.night [mat-header-row],.rtl-container.yellow.night [mat-row],.rtl-container.yellow.night [mat-footer-row],.rtl-container.yellow.night .mat-table-sticky{background:inherit}.rtl-container.yellow.night mat-row,.rtl-container.yellow.night mat-header-row,.rtl-container.yellow.night mat-footer-row,.rtl-container.yellow.night th.mat-header-cell,.rtl-container.yellow.night td.mat-cell,.rtl-container.yellow.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-footer-cell{color:#fff}.rtl-container.yellow.night .mat-calendar-arrow{fill:#fff}.rtl-container.yellow.night .mat-datepicker-toggle,.rtl-container.yellow.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.yellow.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.yellow.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-calendar-body-cell-content,.rtl-container.yellow.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.yellow.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.yellow.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.yellow.night .mat-calendar-body-in-range:before{background:rgba(148,95,31,.2)}.rtl-container.yellow.night .mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.night .mat-calendar-body-selected{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#945f1f66}.rtl-container.yellow.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}@media (hover: hover){.rtl-container.yellow.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}}.rtl-container.yellow.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.yellow.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.night .mat-datepicker-toggle-active{color:#945f1f}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.yellow.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.yellow.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.yellow.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.yellow.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.yellow.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.yellow.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.yellow.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.yellow.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.yellow.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-label{color:#945f1f}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.yellow.night .mat-form-field-ripple{background-color:#fff}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#945f1f}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#945f1f}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.yellow.night .mat-error{color:#ff343b}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.yellow.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.yellow.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.yellow.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.yellow.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.yellow.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.yellow.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.yellow.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#945f1f}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.yellow.night .mat-icon.mat-primary{color:#945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{color:#eee}.rtl-container.yellow.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-input-element{caret-color:#945f1f}.rtl-container.yellow.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.yellow.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.yellow.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.yellow.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.yellow.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.yellow.night .mat-list-base .mat-list-item,.rtl-container.yellow.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.yellow.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.yellow.night .mat-list-option:hover,.rtl-container.yellow.night .mat-list-option:focus,.rtl-container.yellow.night .mat-nav-list .mat-list-item:hover,.rtl-container.yellow.night .mat-nav-list .mat-list-item:focus,.rtl-container.yellow.night .mat-action-list .mat-list-item:hover,.rtl-container.yellow.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-list-single-selected-option,.rtl-container.yellow.night .mat-list-single-selected-option:hover,.rtl-container.yellow.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.yellow.night .mat-menu-panel{background:#202020}.rtl-container.yellow.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.yellow.night .mat-menu-item .mat-icon-no-color,.rtl-container.yellow.night .mat-menu-submenu-icon{color:#fff}.rtl-container.yellow.night .mat-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-paginator{background:#202020}.rtl-container.yellow.night .mat-paginator-decrement,.rtl-container.yellow.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.yellow.night .mat-paginator-first,.rtl-container.yellow.night .mat-paginator-last{border-top:2px solid white}.rtl-container.yellow.night .mat-progress-bar-background{fill:#2f2212}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#2f2212}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#945f1f}.rtl-container.yellow.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.yellow.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.yellow.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.yellow.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.yellow.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.yellow.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.yellow.night .mat-progress-spinner circle,.rtl-container.yellow.night .mat-spinner circle{stroke:#945f1f}.rtl-container.yellow.night .mat-progress-spinner.mat-accent circle,.rtl-container.yellow.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.yellow.night .mat-progress-spinner.mat-warn circle,.rtl-container.yellow.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.yellow.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#945f1f}.rtl-container.yellow.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.yellow.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#945f1f}.rtl-container.yellow.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.yellow.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.yellow.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.yellow.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.yellow.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.yellow.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.yellow.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.yellow.night .mat-select-value{color:#fff}.rtl-container.yellow.night .mat-select-panel{background:#202020}.rtl-container.yellow.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.yellow.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#945f1f}.rtl-container.yellow.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.yellow.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.yellow.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.yellow.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.yellow.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.yellow.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.yellow.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-drawer-side.mat-drawer-end,.rtl-container.yellow.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.yellow.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.yellow.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.yellow.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.yellow.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.yellow.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#945f1f}.rtl-container.yellow.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#945f1f8a}.rtl-container.yellow.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#945f1f}.rtl-container.yellow.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.yellow.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.yellow.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.yellow.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.yellow.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.yellow.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#945f1f}.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#945f1f33}.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.yellow.night .mat-slider:hover .mat-slider-track-background,.rtl-container.yellow.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.yellow.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.yellow.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.yellow.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.yellow.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.yellow.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.night .mat-step-header.cdk-keyboard-focused,.rtl-container.yellow.night .mat-step-header.cdk-program-focused,.rtl-container.yellow.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.yellow.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.yellow.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.yellow.night .mat-step-header:hover{background:none}}.rtl-container.yellow.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.yellow.night .mat-step-header .mat-step-icon-selected,.rtl-container.yellow.night .mat-step-header .mat-step-icon-state-done,.rtl-container.yellow.night .mat-step-header .mat-step-icon-state-edit{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.yellow.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.yellow.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.yellow.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.yellow.night .mat-stepper-horizontal,.rtl-container.yellow.night .mat-stepper-vertical{background-color:#202020}.rtl-container.yellow.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.yellow.night .mat-horizontal-stepper-header:before,.rtl-container.yellow.night .mat-horizontal-stepper-header:after,.rtl-container.yellow.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.yellow.night .mat-tab-nav-bar,.rtl-container.yellow.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.yellow.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.yellow.night .mat-tab-label,.rtl-container.yellow.night .mat-tab-link{color:#fff}.rtl-container.yellow.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.yellow.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#945f1f}.rtl-container.yellow.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.yellow.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.yellow.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#945f1f}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.yellow.night .mat-toolbar.mat-primary{background:#945f1f;color:#fff}.rtl-container.yellow.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.yellow.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.yellow.night .mat-toolbar .mat-form-field-underline,.rtl-container.yellow.night .mat-toolbar .mat-form-field-ripple,.rtl-container.yellow.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.yellow.night .mat-toolbar .mat-form-field-label,.rtl-container.yellow.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.yellow.night .mat-toolbar .mat-select-value,.rtl-container.yellow.night .mat-toolbar .mat-select-arrow,.rtl-container.yellow.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.yellow.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.yellow.night .mat-tree{background:#202020}.rtl-container.yellow.night .mat-tree-node,.rtl-container.yellow.night .mat-nested-tree-node{color:#fff}.rtl-container.yellow.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-simple-snackbar-action{color:inherit}.rtl-container.yellow.night .mat-primary{color:#ffa164}.rtl-container.yellow.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-tab-label.mat-tab-label-active{color:#ffa164}.rtl-container.yellow.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.yellow.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.yellow.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ffa164}.rtl-container.yellow.night .cc-data-block .cc-data-title{color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary{border-color:#ffa164;color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.yellow.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.yellow.night .active-link,.rtl-container.yellow.night .active-link .fa-icon-small,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ffa164;font-weight:500;cursor:pointer;fill:#ffa164}.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover,.rtl-container.yellow.night .mat-select-panel .mat-option:hover,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ffa164;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.yellow.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.night .mat-tree-node:hover .mat-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.night .page-title-container .page-title-img,.rtl-container.yellow.night svg.top-icon-small{fill:#fff}.rtl-container.yellow.night .selected-color{border-color:#b48f62}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#8c571b}.rtl-container.yellow.night .chart-legend .legend-label:hover,.rtl-container.yellow.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.yellow.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-select-panel{background-color:#262626}.rtl-container.yellow.night .mat-tree{background:#262626}.rtl-container.yellow.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.yellow.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.yellow.night .dashboard-info-title{color:#ffa164}.rtl-container.yellow.night .dashboard-info-value,.rtl-container.yellow.night .dashboard-capacity-header{color:#fff}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.yellow.night .color-primary{color:#ffa164!important}.rtl-container.yellow.night .dot-primary{background-color:#ffa164!important}.rtl-container.yellow.night .dot-primary-lighter{background-color:#945f1f!important}.rtl-container.yellow.night .mat-stepper-vertical{background-color:#262626}.rtl-container.yellow.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.yellow.night svg .boltz-icon-fill{fill:#fff}.rtl-container.yellow.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.yellow.night svg .fill-color-0{fill:#171717}.rtl-container.yellow.night svg .fill-color-1{fill:#232323}.rtl-container.yellow.night svg .fill-color-2{fill:#222}.rtl-container.yellow.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.yellow.night svg .fill-color-4{fill:#383838}.rtl-container.yellow.night svg .fill-color-5{fill:#555}.rtl-container.yellow.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.yellow.night svg .fill-color-7{fill:#202020}.rtl-container.yellow.night svg .fill-color-8{fill:#242424}.rtl-container.yellow.night svg .fill-color-9{fill:#262626}.rtl-container.yellow.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.yellow.night svg .fill-color-11{fill:#171717}.rtl-container.yellow.night svg .fill-color-12{fill:#ccc}.rtl-container.yellow.night svg .fill-color-13{fill:#adadad}.rtl-container.yellow.night svg .fill-color-14{fill:#ababab}.rtl-container.yellow.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.yellow.night svg .fill-color-16{fill:#707070}.rtl-container.yellow.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.yellow.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.yellow.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.yellow.night svg .fill-color-21{fill:#cacaca}.rtl-container.yellow.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.yellow.night svg .fill-color-23{fill:#777}.rtl-container.yellow.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.yellow.night svg .fill-color-25{fill:#252525}.rtl-container.yellow.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.night svg .fill-color-27{fill:#000}.rtl-container.yellow.night svg .fill-color-28{fill:#313131}.rtl-container.yellow.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.yellow.night svg .fill-color-30{fill:#fff}.rtl-container.yellow.night svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.night svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.night svg .fill-color-primary-darker{fill:#ffa164}.rtl-container.yellow.night .mat-select-value,.rtl-container.yellow.night .mat-select-arrow{color:#fff}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.yellow.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.yellow.night .mat-slide-toggle-bar,.rtl-container.yellow.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#ffa164}.rtl-container.yellow.night tr.alert.alert-warn .mat-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-header-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.yellow.night .material-icons.info-icon,.rtl-container.yellow.night .material-icons.info-icon.info-icon-primary{color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ffa164}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#774312}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ffa164}.rtl-container.yellow.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.yellow.night .foreground.mat-progress-spinner circle,.rtl-container.yellow.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.yellow.night .mat-toolbar-row,.rtl-container.yellow.night .mat-toolbar-single-row{height:5rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.yellow.night a{color:#945f1f}.rtl-container.yellow.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.night .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.yellow.night .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.night .border-primary{border:1px solid #945f1f}.rtl-container.yellow.night .border-accent{border:1px solid #eeeeee}.rtl-container.yellow.night .border-warn{border:1px solid #ff343b}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#eee}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.yellow.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.yellow.night .row-disabled{background-color:gray}.rtl-container.yellow.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.night .mat-menu-panel{min-width:6.4rem}.rtl-container.yellow.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.yellow.night .horizontal-button:hover{background:#b48f62;color:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button,.rtl-container.yellow.night .mat-flat-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.yellow.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-header-cell,.rtl-container.yellow.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.yellow.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-table thead tr th{color:#fff}.rtl-container.yellow.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.yellow.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.yellow.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.yellow.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.yellow.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.yellow.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.night .table-actions-select{padding:.5rem 1rem;margin:.7rem 0;min-width:10rem;width:10rem;float:right}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.yellow.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.yellow.night .color-warn{color:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.rtl-container.yellow.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.yellow.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-info a{color:#004085}.rtl-container.yellow.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-warn a{color:#856404}.rtl-container.yellow.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.yellow.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.night .failed-status{color:#ff343b}.rtl-container.yellow.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.yellow.night .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.night .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.yellow.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.yellow.night ngx-charts-bar-vertical text,.rtl-container.yellow.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.night .mat-paginator-container{padding:0}.rtl-container.yellow.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.night .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}@keyframes particles-1{0%{transform:scale(1);visibility:visible}to{left:199px;top:201px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}@keyframes particles-2{0%{transform:scale(1);visibility:visible}to{left:-40px;top:82px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}@keyframes particles-3{0%{transform:scale(1);visibility:visible}to{left:162px;top:109px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}@keyframes particles-4{0%{transform:scale(1);visibility:visible}to{left:223px;top:78px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}@keyframes particles-5{0%{transform:scale(1);visibility:visible}to{left:184px;top:113px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}@keyframes particles-6{0%{transform:scale(1);visibility:visible}to{left:-42px;top:-238px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}@keyframes particles-7{0%{transform:scale(1);visibility:visible}to{left:150px;top:-98px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}@keyframes particles-8{0%{transform:scale(1);visibility:visible}to{left:62px;top:225px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}@keyframes particles-9{0%{transform:scale(1);visibility:visible}to{left:113px;top:86px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}@keyframes particles-10{0%{transform:scale(1);visibility:visible}to{left:229px;top:-127px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}@keyframes particles-11{0%{transform:scale(1);visibility:visible}to{left:243px;top:-106px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}@keyframes particles-12{0%{transform:scale(1);visibility:visible}to{left:-168px;top:138px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}@keyframes particles-13{0%{transform:scale(1);visibility:visible}to{left:-124px;top:62px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}@keyframes particles-14{0%{transform:scale(1);visibility:visible}to{left:246px;top:30px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}@keyframes particles-15{0%{transform:scale(1);visibility:visible}to{left:-22px;top:-171px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}@keyframes particles-16{0%{transform:scale(1);visibility:visible}to{left:-144px;top:115px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}@keyframes particles-17{0%{transform:scale(1);visibility:visible}to{left:209px;top:84px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}@keyframes particles-18{0%{transform:scale(1);visibility:visible}to{left:84px;top:-190px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}@keyframes particles-19{0%{transform:scale(1);visibility:visible}to{left:-94px;top:208px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}@keyframes particles-20{0%{transform:scale(1);visibility:visible}to{left:147px;top:203px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}@keyframes particles-21{0%{transform:scale(1);visibility:visible}to{left:178px;top:206px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}@keyframes particles-22{0%{transform:scale(1);visibility:visible}to{left:-10px;top:-226px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}@keyframes particles-23{0%{transform:scale(1);visibility:visible}to{left:3px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}@keyframes particles-24{0%{transform:scale(1);visibility:visible}to{left:-182px;top:-44px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}@keyframes particles-25{0%{transform:scale(1);visibility:visible}to{left:-146px;top:166px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}@keyframes particles-26{0%{transform:scale(1);visibility:visible}to{left:144px;top:218px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}@keyframes particles-27{0%{transform:scale(1);visibility:visible}to{left:48px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}@keyframes particles-28{0%{transform:scale(1);visibility:visible}to{left:-48px;top:50px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}@keyframes particles-29{0%{transform:scale(1);visibility:visible}to{left:-228px;top:-15px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}@keyframes particles-30{0%{transform:scale(1);visibility:visible}to{left:91px;top:-199px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}@keyframes particles-31{0%{transform:scale(1);visibility:visible}to{left:-40px;top:104px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}@keyframes particles-32{0%{transform:scale(1);visibility:visible}to{left:-102px;top:4px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}@keyframes particles-33{0%{transform:scale(1);visibility:visible}to{left:-26px;top:-89px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}@keyframes particles-34{0%{transform:scale(1);visibility:visible}to{left:-151px;top:-149px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}@keyframes particles-35{0%{transform:scale(1);visibility:visible}to{left:186px;top:200px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.night .wiggle{animation:.5s wiggle ease-in-out infinite}@keyframes wiggle{0%{transform:rotate(-3deg)}20%{transform:rotate(20deg)}40%{transform:rotate(-15deg)}60%{transform:rotate(5deg)}90%{transform:rotate(-1deg)}to{transform:rotate(0)}}.rtl-container.yellow.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.night .shockwave:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.night .shockwave:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;animation:shockwave 1s .5s ease-out infinite}@keyframes shockwaveJump{0%{transform:scale(1)}40%{transform:scale(1.08)}50%{transform:scale(.98)}55%{transform:scale(1.02)}60%{transform:scale(.98)}to{transform:scale(1)}}@keyframes shockwave{0%{transform:scale(1);box-shadow:0 0 2px #00000026,inset 0 0 1px #00000026}95%{box-shadow:0 0 50px #0000,inset 0 0 30px #0000}to{transform:scale(2.25)}} diff --git a/frontend/styles.74a7770ce3bccfdd.css b/frontend/styles.74a7770ce3bccfdd.css new file mode 100644 index 00000000..7f794fcf --- /dev/null +++ b/frontend/styles.74a7770ce3bccfdd.css @@ -0,0 +1 @@ +@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(MaterialIcons-Regular.1e50f5c2ffa6aba4.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(MaterialIcons-Regular.7ea2023eeca07427.woff2) format("woff2"),url(MaterialIcons-Regular.db852539204b1a34.woff) format("woff"),url(MaterialIcons-Regular.196fa4a92dd6fa73.ttf) format("truetype")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff")}.ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0;margin-top:-15px;position:relative}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:0px;right:0;position:relative}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:transparent;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:4px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:4px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:6px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:6px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:62.5%}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}.rtl-container{position:absolute;width:100%;height:100%;inset:0;overflow:hidden}.rtl-container .mat-menu-panel .mat-menu-content{padding-top:0;padding-bottom:0}.rtl-container .mat-nested-tree-node-child>.mat-tree-node{padding-left:4rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:22rem;height:100%;overflow:hidden!important}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.sticky{position:fixed;top:0;z-index:9999}.horizontal-menu{padding:0;z-index:999;position:fixed;top:0;height:5rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.8rem;height:95%}@media only screen and (max-width: 56.25em){.inner-sidenav-content{padding:.8rem .4rem}}@media only screen and (max-width: 37.5em){.inner-sidenav-content{padding:.4rem .2rem}}.top-50{top:5rem}*{margin:0;padding:0}.rtl-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;width:100%;position:fixed;background:#fff;z-index:999999;visibility:visible;opacity:1}.rtl-spinner h4{margin-top:1rem}.padding-gap{padding:.8rem!important}@media only screen and (max-width: 56.25em){.padding-gap{padding:.4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap{padding:.2rem!important}}.padding-gap-x{padding:0 .8rem!important}@media only screen and (max-width: 75em){.padding-gap-x{padding:0 .4rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x{padding:0 .4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x{padding:0 .2rem!important}}.padding-gap-large{padding:1.6rem!important}@media only screen and (max-width: 75em){.padding-gap-large{padding:3.2rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-large{padding:.4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-large{padding:.2rem!important}}.padding-gap-x-large{padding:0 1.6rem!important}@media only screen and (max-width: 75em){.padding-gap-x-large{padding:0 .8rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x-large{padding:0 .4rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x-large{padding:0 .2rem!important}}.padding-gap-bottom-large{padding-bottom:1.6rem!important}@media only screen and (max-width: 56.25em){.padding-gap-bottom-large{padding-bottom:.8rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-bottom-large{padding-bottom:.2rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-card-original{padding:1.6rem!important;border-radius:4px!important}.mat-tab-body-wrapper,.card-content-gap{padding:.96rem 1.6rem!important;height:100%}@media only screen and (max-width: 56.25em){.mat-tab-body-wrapper,.card-content-gap{padding:.8rem!important}}@media only screen and (max-width: 37.5em){.mat-tab-body-wrapper,.card-content-gap{padding:.4rem .2rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.4rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.2rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.4rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.2rem!important}}.routing-tabs-block .mat-tab-body-wrapper{padding:0!important;min-height:10rem}.mat-card-actions{display:block;margin-bottom:1.6rem;padding-left:.6rem;padding-right:.6rem}.mat-card-content,.mat-card-subtitle,.mat-card-title{display:block;margin-bottom:1.6rem}.mat-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-select{margin:0 1.5rem 0 0}.green{color:#28ca43!important}.yellow{color:#ffbd2e!important}.red{color:#c62828!important}.grey{color:#ccc!important}.mt-1px{margin-top:1px!important}.mt-2px{margin-top:2px!important}.mt-4px{margin-top:4px!important}.mt-5px{margin-top:5px!important}.my-2px{margin:2px 0!important}.mt-0{margin-top:0!important}.mt-1{margin-top:1rem!important}@media only screen and (max-width: 56.25em){.mt-1{margin-top:.8rem!important}}@media only screen and (max-width: 37.5em){.mt-1{margin-top:.8rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:1rem!important}@media only screen and (max-width: 56.25em){.mb-1{margin-bottom:.8rem!important}}@media only screen and (max-width: 37.5em){.mb-1{margin-bottom:.8rem!important}}.mb-6{margin-bottom:6rem!important}@media only screen and (max-width: 56.25em){.mb-6{margin-bottom:5rem!important}}@media only screen and (max-width: 37.5em){.mb-6{margin-bottom:5rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.5rem!important}.ml-1{margin-left:1rem!important}@media only screen and (max-width: 56.25em){.ml-1{margin-left:.4rem!important}}@media only screen and (max-width: 37.5em){.ml-1{margin-left:.2rem!important}}.ml-minus-1{margin-left:-1rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:.3rem!important}.mr-5px{margin-right:.5rem!important}.mr-1{margin-right:1rem!important}@media only screen and (max-width: 56.25em){.mr-1{margin-right:.4rem!important}}@media only screen and (max-width: 37.5em){.mr-1{margin-right:.2rem!important}}.mx-1{margin:0 1rem!important}@media only screen and (max-width: 56.25em){.mx-1{margin:0 .4rem!important}}@media only screen and (max-width: 37.5em){.mx-1{margin:0 .2rem!important}}.my-1{margin:1rem 0!important}@media only screen and (max-width: 56.25em){.my-1{margin:.8rem 0!important}}@media only screen and (max-width: 37.5em){.my-1{margin:.8rem 0!important}}.m-1{margin:1rem!important}@media only screen and (max-width: 56.25em){.m-1{margin:.8rem!important}}@media only screen and (max-width: 37.5em){.m-1{margin:.8rem!important}}.mt-2{margin-top:2rem!important}@media only screen and (max-width: 56.25em){.mt-2{margin-top:1.6rem!important}}@media only screen and (max-width: 37.5em){.mt-2{margin-top:1.6rem!important}}.mt-3{margin-top:3rem!important}@media only screen and (max-width: 56.25em){.mt-3{margin-top:2.4rem!important}}@media only screen and (max-width: 37.5em){.mt-3{margin-top:2.6rem!important}}.mt-4{margin-top:4rem!important}@media only screen and (max-width: 56.25em){.mt-4{margin-top:3.4rem!important}}@media only screen and (max-width: 37.5em){.mt-4{margin-top:3.4rem!important}}.mt-6{margin-top:6rem!important}@media only screen and (max-width: 56.25em){.mt-6{margin-top:4.8rem!important}}@media only screen and (max-width: 37.5em){.mt-6{margin-top:4.8rem!important}}.mt-minus-1{margin-top:-1rem!important}@media only screen and (max-width: 56.25em){.mt-minus-1{margin-top:-.8rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-1{margin-top:-.8rem!important}}.mt-minus-2{margin-top:-2rem!important}@media only screen and (max-width: 56.25em){.mt-minus-2{margin-top:-1.6rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-2{margin-top:-1.6rem!important}}.mb-2{margin-bottom:2rem!important}@media only screen and (max-width: 56.25em){.mb-2{margin-bottom:1.6rem!important}}@media only screen and (max-width: 37.5em){.mb-2{margin-bottom:1.6rem!important}}.mb-3{margin-bottom:3rem!important}@media only screen and (max-width: 56.25em){.mb-3{margin-bottom:2.4rem!important}}@media only screen and (max-width: 37.5em){.mb-3{margin-bottom:2.4rem!important}}.mb-4{margin-bottom:4rem!important}@media only screen and (max-width: 56.25em){.mb-4{margin-bottom:3.2rem!important}}@media only screen and (max-width: 37.5em){.mb-4{margin-bottom:3.2rem!important}}.ml-2{margin-left:2rem!important}@media only screen and (max-width: 56.25em){.ml-2{margin-left:.8rem!important}}@media only screen and (max-width: 37.5em){.ml-2{margin-left:.4rem!important}}.mr-2{margin-right:2rem!important}@media only screen and (max-width: 56.25em){.mr-2{margin-right:.8rem!important}}@media only screen and (max-width: 37.5em){.mr-2{margin-right:.4rem!important}}.ml-4{margin-left:4rem!important}@media only screen and (max-width: 56.25em){.ml-4{margin-left:1.6rem!important}}@media only screen and (max-width: 37.5em){.ml-4{margin-left:.8rem!important}}.ml-5{margin-left:5rem!important}@media only screen and (max-width: 56.25em){.ml-5{margin-left:2rem!important}}@media only screen and (max-width: 37.5em){.ml-5{margin-left:1rem!important}}.mr-4{margin-right:4rem!important}@media only screen and (max-width: 56.25em){.mr-4{margin-right:1.6rem!important}}@media only screen and (max-width: 37.5em){.mr-4{margin-right:.8rem!important}}.mr-5{margin-right:5rem!important}@media only screen and (max-width: 56.25em){.mr-5{margin-right:2rem!important}}@media only screen and (max-width: 37.5em){.mr-5{margin-right:1rem!important}}.mr-6{margin-right:6rem!important}@media only screen and (max-width: 56.25em){.mr-6{margin-right:3rem!important}}@media only screen and (max-width: 37.5em){.mr-6{margin-right:2rem!important}}.mx-2{margin:0 2rem!important}@media only screen and (max-width: 56.25em){.mx-2{margin:0 .8rem!important}}@media only screen and (max-width: 37.5em){.mx-2{margin:0 .4rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:2rem 0!important}@media only screen and (max-width: 56.25em){.my-2{margin:1.6rem 0!important}}@media only screen and (max-width: 37.5em){.my-2{margin:1.6rem 0!important}}.my-3{margin:3rem 0!important}@media only screen and (max-width: 56.25em){.my-3{margin:2.4rem 0!important}}@media only screen and (max-width: 37.5em){.my-3{margin:2.4rem 0!important}}.my-4{margin:4rem 0!important}@media only screen and (max-width: 56.25em){.my-4{margin:3.2rem 0!important}}@media only screen and (max-width: 37.5em){.my-4{margin:3.2rem 0!important}}.m-2{margin:2rem!important}@media only screen and (max-width: 56.25em){.m-2{margin:1.6rem!important}}@media only screen and (max-width: 37.5em){.m-2{margin:1.6rem!important}}.pt-1{padding-top:1rem!important}@media only screen and (max-width: 56.25em){.pt-1{padding-top:.8rem!important}}@media only screen and (max-width: 37.5em){.pt-1{padding-top:.8rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:1rem!important}@media only screen and (max-width: 56.25em){.pb-1{padding-bottom:.8rem!important}}@media only screen and (max-width: 37.5em){.pb-1{padding-bottom:.8rem!important}}.pl-5px{padding-left:.5rem!important}@media only screen and (max-width: 56.25em){.pl-5px{padding-left:.4rem!important}}@media only screen and (max-width: 37.5em){.pl-5px{padding-left:.3rem!important}}.pl-1{padding-left:1rem!important}@media only screen and (max-width: 56.25em){.pl-1{padding-left:.4rem!important}}@media only screen and (max-width: 37.5em){.pl-1{padding-left:.2rem!important}}.pl-15px{padding-left:1.5rem!important}@media only screen and (max-width: 56.25em){.pl-15px{padding-left:.6rem!important}}@media only screen and (max-width: 37.5em){.pl-15px{padding-left:.4rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:1rem!important}@media only screen and (max-width: 56.25em){.pr-1{padding-right:.4rem!important}}@media only screen and (max-width: 37.5em){.pr-1{padding-right:.2rem!important}}.pr-3{padding-right:3rem!important}@media only screen and (max-width: 56.25em){.pr-3{padding-right:1.2rem!important}}@media only screen and (max-width: 37.5em){.pr-3{padding-right:.6rem!important}}.pr-4{padding-right:4rem!important}@media only screen and (max-width: 56.25em){.pr-4{padding-right:1.6rem!important}}@media only screen and (max-width: 37.5em){.pr-4{padding-right:.8rem!important}}.pr-4px{padding-right:.4rem!important}.pr-6px{padding-right:.6rem!important}.p-0{padding:0!important}.p-5px{padding:.5rem!important}.pl-0{padding-left:0!important}.px-1{padding:0 1rem!important}@media only screen and (max-width: 56.25em){.px-1{padding:0 .4rem!important}}@media only screen and (max-width: 37.5em){.px-1{padding:0 .2rem!important}}.py-0{padding:1rem 0!important}@media only screen and (max-width: 56.25em){.py-0{padding:.8rem 0!important}}@media only screen and (max-width: 37.5em){.py-0{padding:.8rem 0!important}}.py-1{padding:1rem 0!important}@media only screen and (max-width: 56.25em){.py-1{padding:.8rem 0!important}}@media only screen and (max-width: 37.5em){.py-1{padding:.8rem 0!important}}.p-1{padding:1rem!important}@media only screen and (max-width: 56.25em){.p-1{padding:.8rem!important}}@media only screen and (max-width: 37.5em){.p-1{padding:.8rem!important}}.p-16{padding:1.6rem!important}@media only screen and (max-width: 56.25em){.p-16{padding:.8rem!important}}@media only screen and (max-width: 37.5em){.p-16{padding:.4rem!important}}.pt-2{padding-top:2rem!important}@media only screen and (max-width: 56.25em){.pt-2{padding-top:1.6rem!important}}@media only screen and (max-width: 37.5em){.pt-2{padding-top:1.6rem!important}}.pt-3{padding-top:3rem!important}@media only screen and (max-width: 56.25em){.pt-3{padding-top:2.4rem!important}}@media only screen and (max-width: 37.5em){.pt-3{padding-top:2.4rem!important}}.pb-2{padding-bottom:2rem!important}@media only screen and (max-width: 56.25em){.pb-2{padding-bottom:1.6rem!important}}@media only screen and (max-width: 37.5em){.pb-2{padding-bottom:1.6rem!important}}.pl-2{padding-left:2rem!important}@media only screen and (max-width: 56.25em){.pl-2{padding-left:.8rem!important}}@media only screen and (max-width: 37.5em){.pl-2{padding-left:.4rem!important}}.pt-4{padding-top:3.2rem!important}@media only screen and (max-width: 56.25em){.pt-4{padding-top:2.5rem!important}}@media only screen and (max-width: 37.5em){.pt-4{padding-top:2.5rem!important}}.pl-3{padding-left:3rem!important}@media only screen and (max-width: 56.25em){.pl-3{padding-left:1.2rem!important}}@media only screen and (max-width: 37.5em){.pl-3{padding-left:.6rem!important}}.pl-4{padding-left:4rem!important}@media only screen and (max-width: 56.25em){.pl-4{padding-left:1.6rem!important}}@media only screen and (max-width: 37.5em){.pl-4{padding-left:.8rem!important}}.pr-2{padding-right:2rem!important}@media only screen and (max-width: 56.25em){.pr-2{padding-right:.8rem!important}}@media only screen and (max-width: 37.5em){.pr-2{padding-right:.4rem!important}}.pr-5{padding-right:4rem!important}@media only screen and (max-width: 56.25em){.pr-5{padding-right:1.6rem!important}}@media only screen and (max-width: 37.5em){.pr-5{padding-right:.8rem!important}}.px-2{padding:0 2rem!important}@media only screen and (max-width: 56.25em){.px-2{padding:0 .8rem!important}}@media only screen and (max-width: 37.5em){.px-2{padding:0 .4rem!important}}.px-3{padding:0 3rem!important}@media only screen and (max-width: 56.25em){.px-3{padding:0 1.2rem!important}}@media only screen and (max-width: 37.5em){.px-3{padding:0 .6rem!important}}.px-4{padding:0 4rem!important}@media only screen and (max-width: 56.25em){.px-4{padding:0 1.6rem!important}}@media only screen and (max-width: 37.5em){.px-4{padding:0 .8rem!important}}.py-2{padding:2rem 0!important}@media only screen and (max-width: 56.25em){.py-2{padding:1.6rem 0!important}}@media only screen and (max-width: 37.5em){.py-2{padding:1.6rem 0!important}}.p-2{padding:2rem!important}@media only screen and (max-width: 56.25em){.p-2{padding:1.6rem!important}}@media only screen and (max-width: 37.5em){.p-2{padding:1.6rem!important}}.p-24{padding:2.4rem!important}@media only screen and (max-width: 56.25em){.p-24{padding:1.2rem!important}}@media only screen and (max-width: 37.5em){.p-24{padding:1rem!important}}.m-1px{margin:1px!important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-auto{overflow:auto}.mat-footer-row .mat-footer-cell{border-bottom:none!important}.mat-row:last-child .mat-cell{border-bottom:none!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:3rem}.mat-list,.mat-list .mat-list-item .mat-list-item-content,.mat-nav-list,.mat-selection-list{padding:0!important}.inline-spinner{display:inline-flex!important;top:.5rem!important}.top-minus-5px{position:relative;top:-.5rem}.top-minus-15px{position:relative;top:-1.5rem}.top-minus-25px{position:relative;top:-2.5rem;margin-bottom:-2.5rem!important}.top-minus-30px{position:relative;top:-3rem}.cursor-pointer{cursor:pointer!important}.cursor-default{cursor:default!important}.cursor-not-allowed{cursor:not-allowed!important}.inline-flex{display:inline-flex!important}.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.settings-container h4{margin:1.2rem 0 .6rem}.settings-container .skin{width:2rem;height:2rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.settings-container .skin.selected-color{width:1.75rem;height:1.75rem;border:.25rem solid}.settings-container .skin.purple{background-color:#5e4ea5}.settings-container .skin.indigo{background-color:#3f51b5}.settings-container .skin.teal{background-color:#00695c}.settings-container .skin.pink{background-color:#d81b60}.settings-container .skin.yellow{background-color:#a1842c}.settings-container .mat-radio-group{flex-direction:row;place-content:flex-start space-between;align-items:flex-start;box-sizing:border-box;display:flex}.settings-container .mat-radio-group .mat-radio-button{margin:2px 0}.settings-container .mat-slide-toggle{padding:0 1.4rem 0 .4rem}.settings-container .mat-flat-button{width:100%;max-height:3.6rem}.op-image{box-shadow:0 0 2px #ccc;border:2px solid;border-color:transparent;cursor:pointer;transition:.2s}.settings-icon{position:fixed;top:30%;right:0;width:4.2rem;height:4.2rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.fa-icon-small,.top-icon-small{min-width:2rem;width:2rem;max-width:2rem}.botlz-icon-sm{min-width:1.6rem;width:1.6rem;max-width:1.6rem}.copy-icon{position:relative;top:.5rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:.5rem}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mat-icon-button.top-toolbar-icon{margin-right:2rem}.mat-icon-button.top-toolbar-icon .top-toolbar-img{padding-right:.7rem;cursor:pointer}.mt-minus-5{position:relative;margin-top:-.5rem}.custom-card{padding:0 0 .8rem!important}.not-found-box{min-width:50%}.w-100{width:100%!important}.w-96{width:96%!important}.w-84{width:84%!important}.h-100{height:100%!important}.h-93{height:93%!important}.h-40{height:40rem!important}.h-46{height:46rem!important}.h-50{height:50rem!important}.h-10{height:10rem!important}.h-4{height:4rem!important}.h-35px{height:3.5rem!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem;padding:0 1.2rem;cursor:pointer}.mat-tree-node:focus,.mat-tree-node:active,.mat-nested-tree-node:focus,.mat-nested-tree-node:active,.mat-nested-tree-node-parent:focus,.mat-nested-tree-node-parent:active,.mat-tree-node span:focus,.mat-tree-node span:active,.mat-nested-tree-node-parent span:focus,.mat-nested-tree-node-parent span:active,.mat-tree-node div:focus,.mat-tree-node div:active,.mat-nested-tree-node-parent div:focus,.mat-nested-tree-node-parent div:active,.mat-tree-node .mat-icon:focus,.mat-tree-node .mat-icon:active,.mat-nested-tree-node-parent .mat-icon:focus,.mat-nested-tree-node-parent .mat-icon:active{outline:none}.lnd-info{height:9rem}.flex-wrap{flex-wrap:wrap!important}.word-break{word-break:break-all!important}.font-bold-500{font-weight:500!important}.font-bold-700{font-weight:700!important}.pubkey-info-top{flex-wrap:wrap;margin-top:1px;min-height:1.5rem;cursor:pointer;display:flex;align-content:center}.top-toolbar-icon.icon-pinned{width:3rem;height:3rem;padding:1rem 0 0 1.2rem;cursor:pointer}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:4rem;width:4rem;max-width:4rem}.icon-large{margin-left:-100%}.icon-small{height:2rem!important;width:2rem!important}.icon-smaller{height:1rem!important;width:1rem!important}.mat-icon-36{width:3.6rem!important;height:3.6rem!important}.mat-select.multi-node-select{width:87%}.page-title-container{padding:0 1.2rem;margin-bottom:.8rem}@media only screen and (max-width: 56.25em){.page-title-container{padding:0 .8rem;margin:.8rem 0}}@media only screen and (max-width: 37.5em){.page-title-container{padding:0 .8rem;margin:.8rem 0}}table{width:100%}@media only screen and (max-width: 75em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:1.6rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:1.2rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:first-of-type,td.mat-cell:first-of-type,td.mat-footer-cell:first-of-type{padding-left:.8rem!important}}@media only screen and (max-width: 75em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:1.6rem!important}}@media only screen and (max-width: 56.25em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:1.2rem!important}}@media only screen and (max-width: 37.5em){th.mat-header-cell:last-of-type,td.mat-cell:last-of-type,td.mat-footer-cell:last-of-type{padding-right:.8rem!important}}.dot{display:inline-flex;width:1.2rem;height:1.2rem;border-radius:1.2rem;margin:.4rem 0 0}.dot.tiny-dot{width:.8rem;height:.8rem;border-radius:.8rem;margin:0 .6rem .1rem 0}.dot.green{background-color:#28ca43}.dot.yellow{background-color:#ffbd2e}.dot.red{background-color:#c62828}.dot.grey{background-color:#ccc}.font-size-80{font-size:80%!important}.font-size-90{font-size:90%!important}.font-size-120{font-size:120%!important}.font-size-200{font-size:200%!important}.font-size-300{font-size:300%!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-vertical-stepper-header{padding:1rem 1rem 1rem .8rem!important}.ellipsis-child{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.blinker{animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite}@keyframes blink-animation{to{visibility:hidden}}.mat-progress-bar.dashboard-progress-bar{height:6px;min-height:6px}.alert{margin-bottom:1rem;padding:.6rem 1rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:4.8rem}.mat-tab-body-content{overflow:hidden!important}.dashboard-tabs-group .mat-tab-label{min-width:32%!important}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:2rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:2rem!important}.border-valid{border:1px solid #28ca43!important}.border-invalid{border:1px solid #c62828!important}.icon-green{fill:#28ca43}.visible{visibility:visible!important}.hidden{visibility:hidden!important}.h-5{height:5rem}.btn-sticky-container{height:0rem;opacity:.5}.btn-sticky-container .mat-icon{animation:scrollDownAnimation 2s infinite}@keyframes scrollDownAnimation{0%{transform:translateY(0)}10%{transform:translateY(-20%)}20%{transform:translateY(20%)}30%{transform:translateY(-20%)}40%{transform:translateY(20%)}50%{transform:translateY(0)}}.mat-form-field-appearance-legacy.mat-form-field-disabled input,.mat-form-field-appearance-legacy.mat-form-field-disabled mat-select,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-trigger,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-value,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arro-wrapper,.mat-form-field-appearance-legacy.mat-form-field-disabled textarea,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-infix{cursor:not-allowed}.ngx-charts-tooltip-content.type-tooltip{background:rgba(50,50,50,.9)!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-card.dashboard-card{margin:.8rem;padding:1.2rem 2.4rem!important}@media only screen and (max-width: 56.25em){.mat-card.dashboard-card{padding:.5rem 1rem!important;margin-top:4rem!important}}@media only screen and (max-width: 37.5em){.mat-card.dashboard-card{padding:.4rem .8rem!important;margin-top:4rem!important}}.mat-card.dashboard-card.p-0{padding:0!important}.mat-card.dashboard-card .mat-card-header-text{width:100%}.mat-progress-bar{min-height:4px}.dashboard-card-content{text-align:left}.ellipsis-parent{display:flex}.mat-column-actions{min-height:4.8rem}.mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 1.6rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .8rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .4rem}}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator{margin-top:-5px}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 2.4rem 1.6rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .8rem .8rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .4rem .2rem}}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.8rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.4rem}}.rtl-container .mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-badge-small .mat-badge-content{font-size:9px}.rtl-container .mat-badge-large .mat-badge-content{font-size:24px}.rtl-container .mat-h1,.rtl-container .mat-headline,.rtl-container .mat-typography .mat-h1,.rtl-container .mat-typography .mat-headline,.rtl-container .mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h2,.rtl-container .mat-title,.rtl-container .mat-typography .mat-h2,.rtl-container .mat-typography .mat-title,.rtl-container .mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h3,.rtl-container .mat-subheading-2,.rtl-container .mat-typography .mat-h3,.rtl-container .mat-typography .mat-subheading-2,.rtl-container .mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h4,.rtl-container .mat-subheading-1,.rtl-container .mat-typography .mat-h4,.rtl-container .mat-typography .mat-subheading-1,.rtl-container .mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}.rtl-container .mat-h5,.rtl-container .mat-typography .mat-h5,.rtl-container .mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.rtl-container .mat-h6,.rtl-container .mat-typography .mat-h6,.rtl-container .mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}.rtl-container .mat-body-strong,.rtl-container .mat-body-2,.rtl-container .mat-typography .mat-body-strong,.rtl-container .mat-typography .mat-body-2{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-body,.rtl-container .mat-body-1,.rtl-container .mat-typography .mat-body,.rtl-container .mat-typography .mat-body-1,.rtl-container .mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-body p,.rtl-container .mat-body-1 p,.rtl-container .mat-typography .mat-body p,.rtl-container .mat-typography .mat-body-1 p,.rtl-container .mat-typography p{margin:0 0 12px}.rtl-container .mat-small,.rtl-container .mat-caption,.rtl-container .mat-typography .mat-small,.rtl-container .mat-typography .mat-caption{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-display-4,.rtl-container .mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}.rtl-container .mat-display-3,.rtl-container .mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}.rtl-container .mat-display-2,.rtl-container .mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}.rtl-container .mat-display-1,.rtl-container .mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}.rtl-container .mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-button,.rtl-container .mat-raised-button,.rtl-container .mat-icon-button,.rtl-container .mat-stroked-button,.rtl-container .mat-flat-button,.rtl-container .mat-fab,.rtl-container .mat-mini-fab{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.rtl-container .mat-button-toggle,.rtl-container .mat-card{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-card-title{font-size:24px;font-weight:500}.rtl-container .mat-card-header .mat-card-title{font-size:20px}.rtl-container .mat-card-subtitle,.rtl-container .mat-card-content{font-size:14px}.rtl-container .mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-checkbox-layout .mat-checkbox-label{line-height:24px}.rtl-container .mat-chip{font-size:14px;font-weight:500}.rtl-container .mat-chip .mat-chip-trailing-icon.mat-icon,.rtl-container .mat-chip .mat-chip-remove.mat-icon{font-size:18px}.rtl-container .mat-table{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-header-cell{font-size:12px;font-weight:500}.rtl-container .mat-cell,.rtl-container .mat-footer-cell{font-size:14px}.rtl-container .mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-calendar-body{font-size:13px}.rtl-container .mat-calendar-body-label,.rtl-container .mat-calendar-period-button{font-size:14px;font-weight:500}.rtl-container .mat-calendar-table-header th{font-size:11px;font-weight:400}.rtl-container .mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}.rtl-container .mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-form-field-wrapper{padding-bottom:1.34375em}.rtl-container .mat-form-field-prefix .mat-icon,.rtl-container .mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.rtl-container .mat-form-field-prefix .mat-icon-button,.rtl-container .mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.rtl-container .mat-form-field-prefix .mat-icon-button .mat-icon,.rtl-container .mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.rtl-container .mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}.rtl-container .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}.rtl-container .mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}.rtl-container .mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}.rtl-container .mat-form-field-label{top:1.34375em}.rtl-container .mat-form-field-underline{bottom:1.34375em}.rtl-container .mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.rtl-container .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}.rtl-container .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}.rtl-container .mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}.rtl-container .mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}.rtl-container .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}.rtl-container .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}.rtl-container .mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}.rtl-container .mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}.rtl-container .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.rtl-container .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}.rtl-container .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}.rtl-container .mat-grid-tile-header,.rtl-container .mat-grid-tile-footer{font-size:14px}.rtl-container .mat-grid-tile-header .mat-line,.rtl-container .mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-grid-tile-header .mat-line:nth-child(n+2),.rtl-container .mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}.rtl-container input.mat-input-element{margin-top:-.0625em}.rtl-container .mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}.rtl-container .mat-paginator,.rtl-container .mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}.rtl-container .mat-radio-button,.rtl-container .mat-select{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-select-trigger{height:1.125em}.rtl-container .mat-slide-toggle-content{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}.rtl-container .mat-stepper-vertical,.rtl-container .mat-stepper-horizontal{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-step-label{font-size:14px;font-weight:400}.rtl-container .mat-step-sub-label-error{font-weight:400}.rtl-container .mat-step-label-error{font-size:14px}.rtl-container .mat-step-label-selected{font-size:14px;font-weight:500}.rtl-container .mat-tab-group{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-tab-label,.rtl-container .mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.rtl-container .mat-toolbar,.rtl-container .mat-toolbar h1,.rtl-container .mat-toolbar h2,.rtl-container .mat-toolbar h3,.rtl-container .mat-toolbar h4,.rtl-container .mat-toolbar h5,.rtl-container .mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}.rtl-container .mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.rtl-container .mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}.rtl-container .mat-list-item,.rtl-container .mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-list-base .mat-list-item{font-size:16px}.rtl-container .mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.rtl-container .mat-list-base .mat-list-option{font-size:16px}.rtl-container .mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.rtl-container .mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}.rtl-container .mat-list-base[dense] .mat-list-item{font-size:12px}.rtl-container .mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.rtl-container .mat-list-base[dense] .mat-list-option{font-size:12px}.rtl-container .mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.rtl-container .mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.rtl-container .mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}.rtl-container .mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}.rtl-container .mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}.rtl-container .mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}.rtl-container .mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.rtl-container .mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}.rtl-container .mat-tree-node,.rtl-container .mat-nested-tree-node{font-weight:400;font-size:14px}.rtl-container .mat-ripple{overflow:hidden;position:relative}.rtl-container .mat-ripple:not(:empty){transform:translateZ(0)}.rtl-container .mat-ripple.mat-ripple-unbounded{overflow:visible}.rtl-container .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active .rtl-container .mat-ripple-element{display:none}.rtl-container .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .rtl-container .cdk-visually-hidden{left:auto;right:0}.rtl-container .cdk-overlay-container,.rtl-container .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.rtl-container .cdk-overlay-container{position:fixed;z-index:1000}.rtl-container .cdk-overlay-container:empty{display:none}.rtl-container .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.rtl-container .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.rtl-container .cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.rtl-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.rtl-container .cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.rtl-container .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.rtl-container .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.rtl-container .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.rtl-container textarea.cdk-textarea-autosize{resize:none}.rtl-container textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}.rtl-container textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.rtl-container .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.rtl-container .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.rtl-container .mat-focus-indicator,.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container.purple.small.small .mat-header-cell{font-weight:700}.rtl-container.purple.small.small .mr-4{margin-right:1rem!important}.rtl-container.purple.small.small .mat-menu-item,.rtl-container.purple.small.small .mat-tree .mat-tree-node,.rtl-container.purple.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.purple.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.purple.small.small .genseed-message,.rtl-container.purple.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.purple.small.small .fa-icon-small,.rtl-container.purple.small.small .top-icon-small{font-size:1.44rem}.rtl-container.purple.small.small .page-title-container,.rtl-container.purple.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.purple.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.purple.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.purple.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.purple.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.purple.small.small .material-icons,.rtl-container.purple.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.purple.small.small .mat-expansion-panel-header,.rtl-container.purple.small.small .mat-menu-item,.rtl-container.purple.small.small .mat-list .mat-list-item,.rtl-container.purple.small.small .mat-nav-list .mat-list-item,.rtl-container.purple.small.small .mat-option,.rtl-container.purple.small.small .mat-select,.rtl-container.purple.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.purple.small.small .logo{font-size:2.4rem}.rtl-container.purple.small.small .font-60-percent{font-size:.72rem}.rtl-container.purple.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.purple.small.small .icon-large{font-size:6rem}.rtl-container.purple.small.small .icon-small{font-size:1.8rem!important}.rtl-container.purple.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.purple.small.small .size-triple{font-size:3.6rem}.rtl-container.purple.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.purple.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.small.medium .mat-header-cell{font-weight:700}.rtl-container.purple.small.medium .mat-tree .mat-tree-node,.rtl-container.purple.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.purple.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.purple.small.medium .genseed-message,.rtl-container.purple.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.purple.small.medium .page-title-container,.rtl-container.purple.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.purple.small.medium .fa-icon-small,.rtl-container.purple.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.purple.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.purple.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.purple.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.purple.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.purple.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.purple.small.medium .material-icons{font-size:2.8rem}.rtl-container.purple.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.purple.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.purple.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.purple.small.medium .mat-expansion-panel-header,.rtl-container.purple.small.medium .mat-menu-item,.rtl-container.purple.small.medium .mat-list .mat-list-item,.rtl-container.purple.small.medium .mat-nav-list .mat-list-item,.rtl-container.purple.small.medium .mat-option,.rtl-container.purple.small.medium .mat-select,.rtl-container.purple.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.purple.small.medium .logo{font-size:2.8rem}.rtl-container.purple.small.medium .font-60-percent{font-size:.84rem}.rtl-container.purple.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.purple.small.medium .icon-large{font-size:7rem}.rtl-container.purple.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.purple.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.purple.small.medium .size-triple{font-size:4.2rem}.rtl-container.purple.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.purple.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.small.large .mat-header-cell{font-weight:800}.rtl-container.purple.small.large .mat-tree .mat-tree-node,.rtl-container.purple.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.purple.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.purple.small.large .genseed-message,.rtl-container.purple.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.purple.small.large .page-title-container,.rtl-container.purple.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.purple.small.large .fa-icon-small,.rtl-container.purple.small.large .top-icon-small,.rtl-container.purple.small.large .modal-info-header{font-size:1.92rem}.rtl-container.purple.small.large .top-toolbar-icon.icon-pinned,.rtl-container.purple.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.purple.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.purple.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.purple.small.large .material-icons{font-size:4rem}.rtl-container.purple.small.large .mat-expansion-panel-header,.rtl-container.purple.small.large .mat-menu-item,.rtl-container.purple.small.large .mat-list .mat-list-item,.rtl-container.purple.small.large .mat-nav-list .mat-list-item,.rtl-container.purple.small.large .mat-option,.rtl-container.purple.small.large .mat-select,.rtl-container.purple.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.purple.small.large .logo{font-size:3.2rem}.rtl-container.purple.small.large .font-60-percent{font-size:.96rem}.rtl-container.purple.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.purple.small.large .icon-large{font-size:8rem}.rtl-container.purple.small.large .icon-small{font-size:2.4rem!important}.rtl-container.purple.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.purple.small.large .size-triple{font-size:4.8rem}.rtl-container.purple.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.purple.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.small .mat-icon.material-icons:focus{outline:none}.rtl-container.purple.small .mat-flat-button.mat-primary:focus,.rtl-container.purple.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.purple.medium.small .mat-header-cell{font-weight:700}.rtl-container.purple.medium.small .mr-4{margin-right:1rem!important}.rtl-container.purple.medium.small .mat-menu-item,.rtl-container.purple.medium.small .mat-tree .mat-tree-node,.rtl-container.purple.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.purple.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.purple.medium.small .genseed-message,.rtl-container.purple.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.purple.medium.small .fa-icon-small,.rtl-container.purple.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.purple.medium.small .page-title-container,.rtl-container.purple.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.purple.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.purple.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.purple.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.purple.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.purple.medium.small .material-icons,.rtl-container.purple.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.purple.medium.small .mat-expansion-panel-header,.rtl-container.purple.medium.small .mat-menu-item,.rtl-container.purple.medium.small .mat-list .mat-list-item,.rtl-container.purple.medium.small .mat-nav-list .mat-list-item,.rtl-container.purple.medium.small .mat-option,.rtl-container.purple.medium.small .mat-select,.rtl-container.purple.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.purple.medium.small .logo{font-size:2.4rem}.rtl-container.purple.medium.small .font-60-percent{font-size:.72rem}.rtl-container.purple.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.purple.medium.small .icon-large{font-size:6rem}.rtl-container.purple.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.purple.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.purple.medium.small .size-triple{font-size:3.6rem}.rtl-container.purple.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.purple.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.medium.medium .mat-header-cell{font-weight:700}.rtl-container.purple.medium.medium .mat-tree .mat-tree-node,.rtl-container.purple.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.purple.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.purple.medium.medium .genseed-message,.rtl-container.purple.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.purple.medium.medium .page-title-container,.rtl-container.purple.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.purple.medium.medium .fa-icon-small,.rtl-container.purple.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.purple.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.purple.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.purple.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.purple.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.purple.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.purple.medium.medium .material-icons{font-size:2.8rem}.rtl-container.purple.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.purple.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.purple.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.purple.medium.medium .mat-expansion-panel-header,.rtl-container.purple.medium.medium .mat-menu-item,.rtl-container.purple.medium.medium .mat-list .mat-list-item,.rtl-container.purple.medium.medium .mat-nav-list .mat-list-item,.rtl-container.purple.medium.medium .mat-option,.rtl-container.purple.medium.medium .mat-select,.rtl-container.purple.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.purple.medium.medium .logo{font-size:2.8rem}.rtl-container.purple.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.purple.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.purple.medium.medium .icon-large{font-size:7rem}.rtl-container.purple.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.purple.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.purple.medium.medium .size-triple{font-size:4.2rem}.rtl-container.purple.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.purple.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.medium.large .mat-header-cell{font-weight:800}.rtl-container.purple.medium.large .mat-tree .mat-tree-node,.rtl-container.purple.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.purple.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.purple.medium.large .genseed-message,.rtl-container.purple.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.purple.medium.large .page-title-container,.rtl-container.purple.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.purple.medium.large .fa-icon-small,.rtl-container.purple.medium.large .top-icon-small,.rtl-container.purple.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.purple.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.purple.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.purple.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.purple.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.purple.medium.large .material-icons{font-size:4rem}.rtl-container.purple.medium.large .mat-expansion-panel-header,.rtl-container.purple.medium.large .mat-menu-item,.rtl-container.purple.medium.large .mat-list .mat-list-item,.rtl-container.purple.medium.large .mat-nav-list .mat-list-item,.rtl-container.purple.medium.large .mat-option,.rtl-container.purple.medium.large .mat-select,.rtl-container.purple.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.purple.medium.large .logo{font-size:3.2rem}.rtl-container.purple.medium.large .font-60-percent{font-size:.96rem}.rtl-container.purple.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.purple.medium.large .icon-large{font-size:8rem}.rtl-container.purple.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.purple.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.purple.medium.large .size-triple{font-size:4.8rem}.rtl-container.purple.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.purple.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.purple.medium .mat-flat-button.mat-primary:focus,.rtl-container.purple.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.purple.large.small .mat-header-cell{font-weight:700}.rtl-container.purple.large.small .mr-4{margin-right:1rem!important}.rtl-container.purple.large.small .mat-menu-item,.rtl-container.purple.large.small .mat-tree .mat-tree-node,.rtl-container.purple.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.purple.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.purple.large.small .genseed-message,.rtl-container.purple.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.purple.large.small .fa-icon-small,.rtl-container.purple.large.small .top-icon-small{font-size:1.44rem}.rtl-container.purple.large.small .page-title-container,.rtl-container.purple.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.purple.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.purple.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.purple.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.purple.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.purple.large.small .material-icons,.rtl-container.purple.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.purple.large.small .mat-expansion-panel-header,.rtl-container.purple.large.small .mat-menu-item,.rtl-container.purple.large.small .mat-list .mat-list-item,.rtl-container.purple.large.small .mat-nav-list .mat-list-item,.rtl-container.purple.large.small .mat-option,.rtl-container.purple.large.small .mat-select,.rtl-container.purple.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.purple.large.small .logo{font-size:2.4rem}.rtl-container.purple.large.small .font-60-percent{font-size:.72rem}.rtl-container.purple.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.purple.large.small .icon-large{font-size:6rem}.rtl-container.purple.large.small .icon-small{font-size:1.8rem!important}.rtl-container.purple.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.purple.large.small .size-triple{font-size:3.6rem}.rtl-container.purple.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.purple.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.large.medium .mat-header-cell{font-weight:700}.rtl-container.purple.large.medium .mat-tree .mat-tree-node,.rtl-container.purple.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.purple.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.purple.large.medium .genseed-message,.rtl-container.purple.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.purple.large.medium .page-title-container,.rtl-container.purple.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.purple.large.medium .fa-icon-small,.rtl-container.purple.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.purple.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.purple.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.purple.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.purple.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.purple.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.purple.large.medium .material-icons{font-size:2.8rem}.rtl-container.purple.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.purple.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.purple.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.purple.large.medium .mat-expansion-panel-header,.rtl-container.purple.large.medium .mat-menu-item,.rtl-container.purple.large.medium .mat-list .mat-list-item,.rtl-container.purple.large.medium .mat-nav-list .mat-list-item,.rtl-container.purple.large.medium .mat-option,.rtl-container.purple.large.medium .mat-select,.rtl-container.purple.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.purple.large.medium .logo{font-size:2.8rem}.rtl-container.purple.large.medium .font-60-percent{font-size:.84rem}.rtl-container.purple.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.purple.large.medium .icon-large{font-size:7rem}.rtl-container.purple.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.purple.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.purple.large.medium .size-triple{font-size:4.2rem}.rtl-container.purple.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.purple.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.large.large .mat-header-cell{font-weight:800}.rtl-container.purple.large.large .mat-tree .mat-tree-node,.rtl-container.purple.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.purple.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.purple.large.large .genseed-message,.rtl-container.purple.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.purple.large.large .page-title-container,.rtl-container.purple.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.purple.large.large .fa-icon-small,.rtl-container.purple.large.large .top-icon-small,.rtl-container.purple.large.large .modal-info-header{font-size:1.92rem}.rtl-container.purple.large.large .top-toolbar-icon.icon-pinned,.rtl-container.purple.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.purple.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.purple.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.purple.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.purple.large.large .material-icons{font-size:4rem}.rtl-container.purple.large.large .mat-expansion-panel-header,.rtl-container.purple.large.large .mat-menu-item,.rtl-container.purple.large.large .mat-list .mat-list-item,.rtl-container.purple.large.large .mat-nav-list .mat-list-item,.rtl-container.purple.large.large .mat-option,.rtl-container.purple.large.large .mat-select,.rtl-container.purple.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.purple.large.large .logo{font-size:3.2rem}.rtl-container.purple.large.large .font-60-percent{font-size:.96rem}.rtl-container.purple.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.purple.large.large .icon-large{font-size:8rem}.rtl-container.purple.large.large .icon-small{font-size:2.4rem!important}.rtl-container.purple.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.purple.large.large .size-triple{font-size:4.8rem}.rtl-container.purple.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.purple.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.purple.large .mat-icon.material-icons:focus{outline:none}.rtl-container.purple.large .mat-flat-button.mat-primary:focus,.rtl-container.purple.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.purple.day .mat-ripple-element{background-color:#0000001a}.rtl-container.purple.day .mat-option{color:#000000de}.rtl-container.purple.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.purple.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#5e4ea5}.rtl-container.purple.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.purple.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.purple.day .mat-optgroup-label{color:#0000008a}.rtl-container.purple.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.purple.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.purple.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.purple.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.purple.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#5e4ea5}.rtl-container.purple.day .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-pseudo-checkbox-indeterminate,.rtl-container.purple.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.purple.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.purple.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.purple.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.purple.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.purple.day .mat-app-background,.rtl-container.purple.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.purple.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.purple.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.purple.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.purple.day .mat-badge{position:relative}.rtl-container.purple.day .mat-badge.mat-badge{overflow:visible}.rtl-container.purple.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.purple.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.purple.day .ng-animate-disabled .mat-badge-content,.rtl-container.purple.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.purple.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.purple.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.purple.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.purple.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.purple.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.purple.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.purple.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.purple.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.purple.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.purple.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.purple.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.purple.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.purple.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.purple.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.purple.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.purple.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.purple.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.purple.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.purple.day .mat-badge-content{color:#fff;background:#5e4ea5}.cdk-high-contrast-active .rtl-container.purple.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.purple.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.purple.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.purple.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.purple.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.purple.day .mat-button.mat-primary,.rtl-container.purple.day .mat-icon-button.mat-primary,.rtl-container.purple.day .mat-stroked-button.mat-primary{color:#5e4ea5}.rtl-container.purple.day .mat-button.mat-accent,.rtl-container.purple.day .mat-icon-button.mat-accent,.rtl-container.purple.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.purple.day .mat-button.mat-warn,.rtl-container.purple.day .mat-icon-button.mat-warn,.rtl-container.purple.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.purple.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.purple.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#5e4ea5}.rtl-container.purple.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.purple.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.purple.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.purple.day .mat-button .mat-ripple-element,.rtl-container.purple.day .mat-icon-button .mat-ripple-element,.rtl-container.purple.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.purple.day .mat-button-focus-overlay{background:black}.rtl-container.purple.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.purple.day .mat-flat-button,.rtl-container.purple.day .mat-raised-button,.rtl-container.purple.day .mat-fab,.rtl-container.purple.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.purple.day .mat-flat-button.mat-primary,.rtl-container.purple.day .mat-raised-button.mat-primary,.rtl-container.purple.day .mat-fab.mat-primary,.rtl-container.purple.day .mat-mini-fab.mat-primary,.rtl-container.purple.day .mat-flat-button.mat-accent,.rtl-container.purple.day .mat-raised-button.mat-accent,.rtl-container.purple.day .mat-fab.mat-accent,.rtl-container.purple.day .mat-mini-fab.mat-accent,.rtl-container.purple.day .mat-flat-button.mat-warn,.rtl-container.purple.day .mat-raised-button.mat-warn,.rtl-container.purple.day .mat-fab.mat-warn,.rtl-container.purple.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.purple.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.purple.day .mat-flat-button.mat-primary,.rtl-container.purple.day .mat-raised-button.mat-primary,.rtl-container.purple.day .mat-fab.mat-primary,.rtl-container.purple.day .mat-mini-fab.mat-primary{background-color:#5e4ea5}.rtl-container.purple.day .mat-flat-button.mat-accent,.rtl-container.purple.day .mat-raised-button.mat-accent,.rtl-container.purple.day .mat-fab.mat-accent,.rtl-container.purple.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.purple.day .mat-flat-button.mat-warn,.rtl-container.purple.day .mat-raised-button.mat-warn,.rtl-container.purple.day .mat-fab.mat-warn,.rtl-container.purple.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.purple.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.purple.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.purple.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.purple.day .mat-button-toggle{color:#00000061}.rtl-container.purple.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.purple.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.purple.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.purple.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.purple.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.purple.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.purple.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.purple.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.purple.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.purple.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.purple.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.purple.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.purple.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}.rtl-container.purple.day .mat-card{background:white;color:#000000de}.rtl-container.purple.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.day .mat-card-subtitle{color:#0000008a}.rtl-container.purple.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.purple.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.purple.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.purple.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.purple.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#5e4ea5}.rtl-container.purple.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.purple.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.purple.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.purple.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.purple.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.purple.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.purple.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.purple.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.purple.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#5e4ea5}.rtl-container.purple.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.purple.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.purple.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.purple.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.purple.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.purple.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.day .mat-table{background:white}.rtl-container.purple.day .mat-table thead,.rtl-container.purple.day .mat-table tbody,.rtl-container.purple.day .mat-table tfoot,.rtl-container.purple.day mat-header-row,.rtl-container.purple.day mat-row,.rtl-container.purple.day mat-footer-row,.rtl-container.purple.day [mat-header-row],.rtl-container.purple.day [mat-row],.rtl-container.purple.day [mat-footer-row],.rtl-container.purple.day .mat-table-sticky{background:inherit}.rtl-container.purple.day mat-row,.rtl-container.purple.day mat-header-row,.rtl-container.purple.day mat-footer-row,.rtl-container.purple.day th.mat-header-cell,.rtl-container.purple.day td.mat-cell,.rtl-container.purple.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.purple.day .mat-header-cell{color:#0000008a}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-footer-cell{color:#000000de}.rtl-container.purple.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.purple.day .mat-datepicker-toggle,.rtl-container.purple.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.purple.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.purple.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-calendar-table-header,.rtl-container.purple.day .mat-calendar-body-label{color:#0000008a}.rtl-container.purple.day .mat-calendar-body-cell-content,.rtl-container.purple.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.purple.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.purple.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.purple.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.purple.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.purple.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.purple.day .mat-calendar-body-in-range:before{background:rgba(94,78,165,.2)}.rtl-container.purple.day .mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.day .mat-calendar-body-selected{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#5e4ea566}.rtl-container.purple.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}@media (hover: hover){.rtl-container.purple.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}}.rtl-container.purple.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.purple.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.purple.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.purple.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.day .mat-datepicker-toggle-active{color:#5e4ea5}.rtl-container.purple.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.purple.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.purple.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.purple.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.purple.day .mat-divider{border-top-color:#0000001f}.rtl-container.purple.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.purple.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.purple.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.day .mat-action-row{border-top-color:#0000001f}.rtl-container.purple.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.purple.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.purple.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.purple.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.purple.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.purple.day .mat-expansion-panel-header-description,.rtl-container.purple.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}.rtl-container.purple.day .mat-form-field-label,.rtl-container.purple.day .mat-hint{color:#0009}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-label{color:#5e4ea5}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.purple.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.purple.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#5e4ea5}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.purple.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#5e4ea5}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.purple.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.purple.day .mat-error{color:#b00020}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.purple.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.purple.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.purple.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.purple.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.purple.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.purple.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.purple.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#5e4ea5}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.purple.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.purple.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.purple.day .mat-icon.mat-primary{color:#5e4ea5}.rtl-container.purple.day .mat-icon.mat-accent{color:#424242}.rtl-container.purple.day .mat-icon.mat-warn{color:#b00020}.rtl-container.purple.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.purple.day .mat-input-element:disabled,.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.purple.day .mat-input-element{caret-color:#5e4ea5}.rtl-container.purple.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.purple.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.purple.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.purple.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.purple.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.purple.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.purple.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.purple.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.purple.day .mat-list-base .mat-list-item,.rtl-container.purple.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.purple.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.purple.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.purple.day .mat-list-option:hover,.rtl-container.purple.day .mat-list-option:focus,.rtl-container.purple.day .mat-nav-list .mat-list-item:hover,.rtl-container.purple.day .mat-nav-list .mat-list-item:focus,.rtl-container.purple.day .mat-action-list .mat-list-item:hover,.rtl-container.purple.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-list-single-selected-option,.rtl-container.purple.day .mat-list-single-selected-option:hover,.rtl-container.purple.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-menu-panel{background:white}.rtl-container.purple.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.purple.day .mat-menu-item[disabled],.rtl-container.purple.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.purple.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.purple.day .mat-menu-item .mat-icon-no-color,.rtl-container.purple.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.purple.day .mat-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-paginator{background:white}.rtl-container.purple.day .mat-paginator,.rtl-container.purple.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.purple.day .mat-paginator-decrement,.rtl-container.purple.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.purple.day .mat-paginator-first,.rtl-container.purple.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.purple.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.mat-paginator-container{min-height:56px}.rtl-container.purple.day .mat-progress-bar-background{fill:#d3cfe5}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#d3cfe5}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#5e4ea5}.rtl-container.purple.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.purple.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.purple.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.purple.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.purple.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.purple.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.purple.day .mat-progress-spinner circle,.rtl-container.purple.day .mat-spinner circle{stroke:#5e4ea5}.rtl-container.purple.day .mat-progress-spinner.mat-accent circle,.rtl-container.purple.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.purple.day .mat-progress-spinner.mat-warn circle,.rtl-container.purple.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.purple.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.purple.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#5e4ea5}.rtl-container.purple.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.purple.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#5e4ea5}.rtl-container.purple.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.purple.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.purple.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.purple.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.purple.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.purple.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.purple.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.purple.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.purple.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.purple.day .mat-select-value{color:#000000de}.rtl-container.purple.day .mat-select-placeholder{color:#0000006b}.rtl-container.purple.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.purple.day .mat-select-arrow{color:#0000008a}.rtl-container.purple.day .mat-select-panel{background:white}.rtl-container.purple.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#5e4ea5}.rtl-container.purple.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.purple.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.purple.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.purple.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.purple.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.purple.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.purple.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.purple.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.purple.day .mat-drawer-side.mat-drawer-end,.rtl-container.purple.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.purple.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.purple.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.purple.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.purple.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.purple.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.purple.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#5e4ea58a}.rtl-container.purple.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.purple.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.purple.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.purple.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.purple.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.purple.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.purple.day .mat-slider-track-background{background-color:#00000042}.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#5e4ea5}.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#5e4ea533}.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.purple.day .mat-slider:hover .mat-slider-track-background,.rtl-container.purple.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.purple.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.purple.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.purple.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.purple.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.purple.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.purple.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.purple.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.purple.day .mat-step-header.cdk-keyboard-focused,.rtl-container.purple.day .mat-step-header.cdk-program-focused,.rtl-container.purple.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.purple.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.purple.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.purple.day .mat-step-header:hover{background:none}}.rtl-container.purple.day .mat-step-header .mat-step-label,.rtl-container.purple.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.purple.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.purple.day .mat-step-header .mat-step-icon-selected,.rtl-container.purple.day .mat-step-header .mat-step-icon-state-done,.rtl-container.purple.day .mat-step-header .mat-step-icon-state-edit{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.purple.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.purple.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.purple.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.purple.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.purple.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.purple.day .mat-stepper-horizontal,.rtl-container.purple.day .mat-stepper-vertical{background-color:#fff}.rtl-container.purple.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.purple.day .mat-horizontal-stepper-header:before,.rtl-container.purple.day .mat-horizontal-stepper-header:after,.rtl-container.purple.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px}.mat-stepper-vertical-line:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}.rtl-container.purple.day .mat-sort-header-arrow{color:#757575}.rtl-container.purple.day .mat-tab-nav-bar,.rtl-container.purple.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.purple.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.purple.day .mat-tab-label,.rtl-container.purple.day .mat-tab-link{color:#000000de}.rtl-container.purple.day .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.purple.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.purple.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.purple.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#5e4ea5}.rtl-container.purple.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.purple.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.purple.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.purple.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#5e4ea5}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.purple.day .mat-toolbar.mat-primary{background:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.purple.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.purple.day .mat-toolbar .mat-form-field-underline,.rtl-container.purple.day .mat-toolbar .mat-form-field-ripple,.rtl-container.purple.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.purple.day .mat-toolbar .mat-form-field-label,.rtl-container.purple.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.purple.day .mat-toolbar .mat-select-value,.rtl-container.purple.day .mat-toolbar .mat-select-arrow,.rtl-container.purple.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.purple.day .mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}.rtl-container.purple.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.purple.day .mat-tree{background:white}.rtl-container.purple.day .mat-tree-node,.rtl-container.purple.day .mat-nested-tree-node{color:#000000de}.mat-tree-node{min-height:48px}.rtl-container.purple.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.day .mat-simple-snackbar-action{color:#424242}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.purple.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#5e4ea5}.rtl-container.purple.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.purple.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.purple.day .mat-tab-label.mat-tab-label-active{color:#5e4ea5}.rtl-container.purple.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#5e4ea5}.rtl-container.purple.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.purple.day .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.purple.day .mat-form-field-suffix{color:#0000008a}.rtl-container.purple.day .mat-stroked-button.mat-primary{border-color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.purple.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .selected-color{border-color:#8e83c0}.rtl-container.purple.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.purple.day .page-title-container,.rtl-container.purple.day .page-sub-title-container{color:#0000008a}.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.purple.day .page-title-container .mat-input-element,.rtl-container.purple.day .page-title-container .mat-radio-label-content,.rtl-container.purple.day .page-title-container .theme-name,.rtl-container.purple.day .page-sub-title-container .mat-input-element,.rtl-container.purple.day .page-sub-title-container .mat-radio-label-content,.rtl-container.purple.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.purple.day .cc-data-block .cc-data-title{color:#5e4ea5}.rtl-container.purple.day .active-link,.rtl-container.purple.day .active-link .fa-icon-small{color:#5e4ea5;font-weight:500;cursor:pointer;fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#5e4ea5;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day svg.top-icon-small{fill:#000000de}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#312579}.rtl-container.purple.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.purple.day .mat-tab-label,.rtl-container.purple.day .mat-tab-link{color:#0000008a}.rtl-container.purple.day .mat-card,.rtl-container.purple.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.purple.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-info-value{color:#0000008a}.rtl-container.purple.day .color-primary{color:#5e4ea5!important}.rtl-container.purple.day .dot-primary{background-color:#5e4ea5!important}.rtl-container.purple.day .dot-primary-lighter{background-color:#8e83c0!important}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-tooltip{font-size:120%}.rtl-container.purple.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.purple.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.purple.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.purple.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-1{fill:#fff}.rtl-container.purple.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.purple.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-6{fill:#fff}.rtl-container.purple.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-9{fill:#fff}.rtl-container.purple.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-16{fill:#404040}.rtl-container.purple.day svg .fill-color-17{fill:#404040}.rtl-container.purple.day svg .fill-color-18{fill:#000}.rtl-container.purple.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-24{fill:#000}.rtl-container.purple.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.day svg .fill-color-27{fill:#000}.rtl-container.purple.day svg .fill-color-28{fill:#313131}.rtl-container.purple.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-30{fill:#fff}.rtl-container.purple.day svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.day svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.day svg .fill-color-primary-darker{fill:#5e4ea5}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.purple.day .material-icons.info-icon{color:#0000008a}.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.purple.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#5e4ea5}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#312579}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#afa7d2}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.purple.day .foreground.mat-progress-spinner circle,.rtl-container.purple.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.purple.day .mat-toolbar-row,.rtl-container.purple.day .mat-toolbar-single-row{height:5rem}.rtl-container.purple.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day a{color:#5e4ea5}.rtl-container.purple.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.day .h-active-link{border-bottom:2px solid white}.rtl-container.purple.day .mat-icon-36{color:#0000008a}.rtl-container.purple.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.purple.day .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.day .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.day .border-accent{border:1px solid #424242}.rtl-container.purple.day .border-warn{border:1px solid #b00020}.rtl-container.purple.day .material-icons.primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.accent{color:#424242}.rtl-container.purple.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.purple.day .row-disabled{background-color:gray}.rtl-container.purple.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.day .mat-menu-panel{min-width:6.4rem}.rtl-container.purple.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.purple.day .horizontal-button:hover{background:#8e83c0;color:#424242}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button,.rtl-container.purple.day .mat-flat-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.purple.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-header-cell,.rtl-container.purple.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.purple.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-table thead tr th{color:#000}.rtl-container.purple.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.purple.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.purple.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.day .more-button{color:#00000061}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.purple.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.purple.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.purple.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.purple.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.purple.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.purple.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.purple.day .color-warn{color:#b00020}.rtl-container.purple.day .fill-warn{fill:#b00020}.rtl-container.purple.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.purple.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-info a{color:#004085}.rtl-container.purple.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-warn a{color:#856404}.rtl-container.purple.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.day .help-expansion .mat-expansion-panel-header,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.day .help-expansion .mat-expansion-panel-content,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.purple.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.day .failed-status{color:#b00020}.rtl-container.purple.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.purple.day .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.day .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.purple.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.purple.day ngx-charts-bar-vertical text,.rtl-container.purple.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.purple.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.day .mat-paginator-container{padding:0}.rtl-container.purple.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.day .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.purple.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-option{color:#fff}.rtl-container.purple.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#5e4ea5}.rtl-container.purple.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.purple.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.purple.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.purple.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#5e4ea5}.rtl-container.purple.night .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.purple.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.purple.night .mat-app-background,.rtl-container.purple.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.purple.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.purple.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.purple.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.purple.night .mat-badge{position:relative}.rtl-container.purple.night .mat-badge.mat-badge{overflow:visible}.rtl-container.purple.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.purple.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.purple.night .ng-animate-disabled .mat-badge-content,.rtl-container.purple.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.purple.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.purple.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.purple.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.purple.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.purple.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.purple.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.purple.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.purple.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.purple.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.purple.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.purple.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.purple.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.purple.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.purple.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.purple.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.purple.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.purple.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.purple.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.purple.night .mat-badge-content{color:#fff;background:#5e4ea5}.cdk-high-contrast-active .rtl-container.purple.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.purple.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.purple.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.purple.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.purple.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#5e4ea5}.rtl-container.purple.night .mat-button.mat-accent,.rtl-container.purple.night .mat-icon-button.mat-accent,.rtl-container.purple.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.purple.night .mat-button.mat-warn,.rtl-container.purple.night .mat-icon-button.mat-warn,.rtl-container.purple.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.purple.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#5e4ea5}.rtl-container.purple.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.purple.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.purple.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.purple.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.purple.night .mat-button .mat-ripple-element,.rtl-container.purple.night .mat-icon-button .mat-ripple-element,.rtl-container.purple.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.purple.night .mat-button-focus-overlay{background:white}.rtl-container.purple.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.purple.night .mat-flat-button,.rtl-container.purple.night .mat-raised-button,.rtl-container.purple.night .mat-fab,.rtl-container.purple.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.purple.night .mat-flat-button.mat-primary,.rtl-container.purple.night .mat-raised-button.mat-primary,.rtl-container.purple.night .mat-fab.mat-primary,.rtl-container.purple.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.purple.night .mat-flat-button.mat-accent,.rtl-container.purple.night .mat-raised-button.mat-accent,.rtl-container.purple.night .mat-fab.mat-accent,.rtl-container.purple.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.purple.night .mat-flat-button.mat-warn,.rtl-container.purple.night .mat-raised-button.mat-warn,.rtl-container.purple.night .mat-fab.mat-warn,.rtl-container.purple.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.purple.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.purple.night .mat-flat-button.mat-primary,.rtl-container.purple.night .mat-raised-button.mat-primary,.rtl-container.purple.night .mat-fab.mat-primary,.rtl-container.purple.night .mat-mini-fab.mat-primary{background-color:#5e4ea5}.rtl-container.purple.night .mat-flat-button.mat-accent,.rtl-container.purple.night .mat-raised-button.mat-accent,.rtl-container.purple.night .mat-fab.mat-accent,.rtl-container.purple.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.purple.night .mat-flat-button.mat-warn,.rtl-container.purple.night .mat-raised-button.mat-warn,.rtl-container.purple.night .mat-fab.mat-warn,.rtl-container.purple.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.purple.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.purple.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.purple.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.purple.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.purple.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.purple.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.purple.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.purple.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.purple.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.purple.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.purple.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.purple.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.purple.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.purple.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.purple.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.purple.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.purple.night .mat-card{background:#202020;color:#fff}.rtl-container.purple.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.purple.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.purple.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.purple.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#5e4ea5}.rtl-container.purple.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.purple.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.purple.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.purple.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.purple.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.purple.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.purple.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.purple.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#5e4ea5}.rtl-container.purple.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.purple.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.purple.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.purple.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.purple.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.purple.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.purple.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.purple.night .mat-table{background:#202020}.rtl-container.purple.night .mat-table thead,.rtl-container.purple.night .mat-table tbody,.rtl-container.purple.night .mat-table tfoot,.rtl-container.purple.night mat-header-row,.rtl-container.purple.night mat-row,.rtl-container.purple.night mat-footer-row,.rtl-container.purple.night [mat-header-row],.rtl-container.purple.night [mat-row],.rtl-container.purple.night [mat-footer-row],.rtl-container.purple.night .mat-table-sticky{background:inherit}.rtl-container.purple.night mat-row,.rtl-container.purple.night mat-header-row,.rtl-container.purple.night mat-footer-row,.rtl-container.purple.night th.mat-header-cell,.rtl-container.purple.night td.mat-cell,.rtl-container.purple.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-footer-cell{color:#fff}.rtl-container.purple.night .mat-calendar-arrow{fill:#fff}.rtl-container.purple.night .mat-datepicker-toggle,.rtl-container.purple.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.purple.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.purple.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.purple.night .mat-calendar-body-cell-content,.rtl-container.purple.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.purple.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.purple.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.purple.night .mat-calendar-body-in-range:before{background:rgba(94,78,165,.2)}.rtl-container.purple.night .mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(94,78,165,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.night .mat-calendar-body-selected{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#5e4ea566}.rtl-container.purple.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}@media (hover: hover){.rtl-container.purple.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#5e4ea54d}}.rtl-container.purple.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.purple.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.purple.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.purple.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.purple.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.purple.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.purple.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.purple.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.purple.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-datepicker-toggle-active{color:#5e4ea5}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.purple.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.purple.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.purple.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.purple.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.purple.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.purple.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.purple.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.purple.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.purple.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-label{color:#5e4ea5}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.purple.night .mat-form-field-ripple{background-color:#fff}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#5e4ea5}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.purple.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#5e4ea5}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.purple.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.purple.night .mat-error{color:#ff343b}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.purple.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.purple.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.purple.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.purple.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.purple.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.purple.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.purple.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.purple.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#5e4ea5}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.purple.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.purple.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.purple.night .mat-icon.mat-primary{color:#5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{color:#eee}.rtl-container.purple.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.purple.night .mat-input-element{caret-color:#5e4ea5}.rtl-container.purple.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.purple.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.purple.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.purple.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.purple.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.purple.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.purple.night .mat-list-base .mat-list-item,.rtl-container.purple.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.purple.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.purple.night .mat-list-option:hover,.rtl-container.purple.night .mat-list-option:focus,.rtl-container.purple.night .mat-nav-list .mat-list-item:hover,.rtl-container.purple.night .mat-nav-list .mat-list-item:focus,.rtl-container.purple.night .mat-action-list .mat-list-item:hover,.rtl-container.purple.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-list-single-selected-option,.rtl-container.purple.night .mat-list-single-selected-option:hover,.rtl-container.purple.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.purple.night .mat-menu-panel{background:#202020}.rtl-container.purple.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.purple.night .mat-menu-item .mat-icon-no-color,.rtl-container.purple.night .mat-menu-submenu-icon{color:#fff}.rtl-container.purple.night .mat-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.purple.night .mat-paginator{background:#202020}.rtl-container.purple.night .mat-paginator-decrement,.rtl-container.purple.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.purple.night .mat-paginator-first,.rtl-container.purple.night .mat-paginator-last{border-top:2px solid white}.rtl-container.purple.night .mat-progress-bar-background{fill:#211d33}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#211d33}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#5e4ea5}.rtl-container.purple.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.purple.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.purple.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.purple.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.purple.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.purple.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.purple.night .mat-progress-spinner circle,.rtl-container.purple.night .mat-spinner circle{stroke:#5e4ea5}.rtl-container.purple.night .mat-progress-spinner.mat-accent circle,.rtl-container.purple.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.purple.night .mat-progress-spinner.mat-warn circle,.rtl-container.purple.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.purple.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#5e4ea5}.rtl-container.purple.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.purple.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#5e4ea5}.rtl-container.purple.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.purple.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.purple.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.purple.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.purple.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.purple.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.purple.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.purple.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.purple.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.purple.night .mat-select-value{color:#fff}.rtl-container.purple.night .mat-select-panel{background:#202020}.rtl-container.purple.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.purple.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#5e4ea5}.rtl-container.purple.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.purple.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.purple.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.purple.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.purple.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.purple.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.purple.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.purple.night .mat-drawer-side.mat-drawer-end,.rtl-container.purple.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.purple.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.purple.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.purple.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.purple.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.purple.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.purple.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#5e4ea5}.rtl-container.purple.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#5e4ea58a}.rtl-container.purple.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#5e4ea5}.rtl-container.purple.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.purple.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.purple.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.purple.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.purple.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.purple.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#5e4ea5}.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#5e4ea533}.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.purple.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.purple.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.purple.night .mat-slider:hover .mat-slider-track-background,.rtl-container.purple.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.purple.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.purple.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.purple.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.purple.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.purple.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.purple.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.purple.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.purple.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.purple.night .mat-step-header.cdk-keyboard-focused,.rtl-container.purple.night .mat-step-header.cdk-program-focused,.rtl-container.purple.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.purple.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.purple.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.purple.night .mat-step-header:hover{background:none}}.rtl-container.purple.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.purple.night .mat-step-header .mat-step-icon-selected,.rtl-container.purple.night .mat-step-header .mat-step-icon-state-done,.rtl-container.purple.night .mat-step-header .mat-step-icon-state-edit{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.purple.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.purple.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.purple.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.purple.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.purple.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.purple.night .mat-stepper-horizontal,.rtl-container.purple.night .mat-stepper-vertical{background-color:#202020}.rtl-container.purple.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.purple.night .mat-horizontal-stepper-header:before,.rtl-container.purple.night .mat-horizontal-stepper-header:after,.rtl-container.purple.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.purple.night .mat-tab-nav-bar,.rtl-container.purple.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.purple.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.purple.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.purple.night .mat-tab-label,.rtl-container.purple.night .mat-tab-link{color:#fff}.rtl-container.purple.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.purple.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#5e4ea5}.rtl-container.purple.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.purple.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.purple.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.purple.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#8e83c04d}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#5e4ea5}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.purple.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.purple.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.purple.night .mat-toolbar.mat-primary{background:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.purple.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.purple.night .mat-toolbar .mat-form-field-underline,.rtl-container.purple.night .mat-toolbar .mat-form-field-ripple,.rtl-container.purple.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.purple.night .mat-toolbar .mat-form-field-label,.rtl-container.purple.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.purple.night .mat-toolbar .mat-select-value,.rtl-container.purple.night .mat-toolbar .mat-select-arrow,.rtl-container.purple.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.purple.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.purple.night .mat-tree{background:#202020}.rtl-container.purple.night .mat-tree-node,.rtl-container.purple.night .mat-nested-tree-node{color:#fff}.rtl-container.purple.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-simple-snackbar-action{color:inherit}.rtl-container.purple.night .mat-primary{color:#9787ff}.rtl-container.purple.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-tab-label.mat-tab-label-active{color:#9787ff}.rtl-container.purple.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.purple.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.purple.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.purple.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#9787ff}.rtl-container.purple.night .cc-data-block .cc-data-title{color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary{border-color:#9787ff;color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.purple.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.purple.night .active-link,.rtl-container.purple.night .active-link .fa-icon-small,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#9787ff;font-weight:500;cursor:pointer;fill:#9787ff}.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover,.rtl-container.purple.night .mat-nested-tree-node-parent:hover,.rtl-container.purple.night .mat-select-panel .mat-option:hover,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#9787ff;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.purple.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.night .mat-tree-node:hover .mat-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#9787ff}.rtl-container.purple.night .mat-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.night .page-title-container .page-title-img,.rtl-container.purple.night svg.top-icon-small{fill:#fff}.rtl-container.purple.night .selected-color{border-color:#8e83c0}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#56479d}.rtl-container.purple.night .chart-legend .legend-label:hover,.rtl-container.purple.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.purple.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-select-panel{background-color:#262626}.rtl-container.purple.night .mat-tree{background:#262626}.rtl-container.purple.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.purple.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.purple.night .dashboard-info-title{color:#9787ff}.rtl-container.purple.night .dashboard-info-value,.rtl-container.purple.night .dashboard-capacity-header{color:#fff}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.purple.night .color-primary{color:#9787ff!important}.rtl-container.purple.night .dot-primary{background-color:#9787ff!important}.rtl-container.purple.night .dot-primary-lighter{background-color:#5e4ea5!important}.rtl-container.purple.night .mat-stepper-vertical{background-color:#262626}.rtl-container.purple.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.purple.night svg .boltz-icon-fill{fill:#fff}.rtl-container.purple.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.purple.night svg .fill-color-0{fill:#171717}.rtl-container.purple.night svg .fill-color-1{fill:#232323}.rtl-container.purple.night svg .fill-color-2{fill:#222}.rtl-container.purple.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.purple.night svg .fill-color-4{fill:#383838}.rtl-container.purple.night svg .fill-color-5{fill:#555}.rtl-container.purple.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.purple.night svg .fill-color-7{fill:#202020}.rtl-container.purple.night svg .fill-color-8{fill:#242424}.rtl-container.purple.night svg .fill-color-9{fill:#262626}.rtl-container.purple.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.purple.night svg .fill-color-11{fill:#171717}.rtl-container.purple.night svg .fill-color-12{fill:#ccc}.rtl-container.purple.night svg .fill-color-13{fill:#adadad}.rtl-container.purple.night svg .fill-color-14{fill:#ababab}.rtl-container.purple.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.purple.night svg .fill-color-16{fill:#707070}.rtl-container.purple.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.purple.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.purple.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.purple.night svg .fill-color-21{fill:#cacaca}.rtl-container.purple.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.purple.night svg .fill-color-23{fill:#777}.rtl-container.purple.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.purple.night svg .fill-color-25{fill:#252525}.rtl-container.purple.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.night svg .fill-color-27{fill:#000}.rtl-container.purple.night svg .fill-color-28{fill:#313131}.rtl-container.purple.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.purple.night svg .fill-color-30{fill:#fff}.rtl-container.purple.night svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.night svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.night svg .fill-color-primary-darker{fill:#9787ff}.rtl-container.purple.night .mat-select-value,.rtl-container.purple.night .mat-select-arrow{color:#fff}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.purple.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.purple.night .mat-slide-toggle-bar,.rtl-container.purple.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.purple.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#9787ff}.rtl-container.purple.night tr.alert.alert-warn .mat-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-header-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.purple.night .material-icons.info-icon,.rtl-container.purple.night .material-icons.info-icon.info-icon-primary{color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.purple.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#9787ff}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#42358a}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9787ff}.rtl-container.purple.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.purple.night .foreground.mat-progress-spinner circle,.rtl-container.purple.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.purple.night .mat-toolbar-row,.rtl-container.purple.night .mat-toolbar-single-row{height:5rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.purple.night a{color:#5e4ea5}.rtl-container.purple.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.night .h-active-link{border-bottom:2px solid white}.rtl-container.purple.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.purple.night .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.night .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.night .border-accent{border:1px solid #eeeeee}.rtl-container.purple.night .border-warn{border:1px solid #ff343b}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#eee}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.purple.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.purple.night .row-disabled{background-color:gray}.rtl-container.purple.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.night .mat-menu-panel{min-width:6.4rem}.rtl-container.purple.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.purple.night .horizontal-button:hover{background:#8e83c0;color:#eee}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button,.rtl-container.purple.night .mat-flat-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.purple.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-header-cell,.rtl-container.purple.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.purple.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.purple.night table.mat-table thead tr th{color:#fff}.rtl-container.purple.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.purple.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.purple.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.purple.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.purple.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.purple.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.purple.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.purple.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.purple.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.purple.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.purple.night .color-warn{color:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.rtl-container.purple.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.purple.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-info a{color:#004085}.rtl-container.purple.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-warn a{color:#856404}.rtl-container.purple.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.night .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.purple.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.night .failed-status{color:#ff343b}.rtl-container.purple.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.purple.night .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.night .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.purple.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.purple.night ngx-charts-bar-vertical text,.rtl-container.purple.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.purple.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.night .mat-paginator-container{padding:0}.rtl-container.purple.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.night .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.small.small .mat-header-cell{font-weight:700}.rtl-container.blue.small.small .mr-4{margin-right:1rem!important}.rtl-container.blue.small.small .mat-menu-item,.rtl-container.blue.small.small .mat-tree .mat-tree-node,.rtl-container.blue.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.blue.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.blue.small.small .genseed-message,.rtl-container.blue.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.blue.small.small .fa-icon-small,.rtl-container.blue.small.small .top-icon-small{font-size:1.44rem}.rtl-container.blue.small.small .page-title-container,.rtl-container.blue.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.blue.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.blue.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.blue.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.blue.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.blue.small.small .material-icons,.rtl-container.blue.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.blue.small.small .mat-expansion-panel-header,.rtl-container.blue.small.small .mat-menu-item,.rtl-container.blue.small.small .mat-list .mat-list-item,.rtl-container.blue.small.small .mat-nav-list .mat-list-item,.rtl-container.blue.small.small .mat-option,.rtl-container.blue.small.small .mat-select,.rtl-container.blue.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.blue.small.small .logo{font-size:2.4rem}.rtl-container.blue.small.small .font-60-percent{font-size:.72rem}.rtl-container.blue.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.blue.small.small .icon-large{font-size:6rem}.rtl-container.blue.small.small .icon-small{font-size:1.8rem!important}.rtl-container.blue.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.blue.small.small .size-triple{font-size:3.6rem}.rtl-container.blue.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.blue.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.small.medium .mat-header-cell{font-weight:700}.rtl-container.blue.small.medium .mat-tree .mat-tree-node,.rtl-container.blue.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.blue.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.blue.small.medium .genseed-message,.rtl-container.blue.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.blue.small.medium .page-title-container,.rtl-container.blue.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.blue.small.medium .fa-icon-small,.rtl-container.blue.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.blue.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.blue.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.blue.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.blue.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.blue.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.blue.small.medium .material-icons{font-size:2.8rem}.rtl-container.blue.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.blue.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.blue.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.blue.small.medium .mat-expansion-panel-header,.rtl-container.blue.small.medium .mat-menu-item,.rtl-container.blue.small.medium .mat-list .mat-list-item,.rtl-container.blue.small.medium .mat-nav-list .mat-list-item,.rtl-container.blue.small.medium .mat-option,.rtl-container.blue.small.medium .mat-select,.rtl-container.blue.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.blue.small.medium .logo{font-size:2.8rem}.rtl-container.blue.small.medium .font-60-percent{font-size:.84rem}.rtl-container.blue.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.blue.small.medium .icon-large{font-size:7rem}.rtl-container.blue.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.blue.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.blue.small.medium .size-triple{font-size:4.2rem}.rtl-container.blue.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.blue.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.small.large .mat-header-cell{font-weight:800}.rtl-container.blue.small.large .mat-tree .mat-tree-node,.rtl-container.blue.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.blue.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.blue.small.large .genseed-message,.rtl-container.blue.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.blue.small.large .page-title-container,.rtl-container.blue.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.blue.small.large .fa-icon-small,.rtl-container.blue.small.large .top-icon-small,.rtl-container.blue.small.large .modal-info-header{font-size:1.92rem}.rtl-container.blue.small.large .top-toolbar-icon.icon-pinned,.rtl-container.blue.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.blue.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.blue.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.blue.small.large .material-icons{font-size:4rem}.rtl-container.blue.small.large .mat-expansion-panel-header,.rtl-container.blue.small.large .mat-menu-item,.rtl-container.blue.small.large .mat-list .mat-list-item,.rtl-container.blue.small.large .mat-nav-list .mat-list-item,.rtl-container.blue.small.large .mat-option,.rtl-container.blue.small.large .mat-select,.rtl-container.blue.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.blue.small.large .logo{font-size:3.2rem}.rtl-container.blue.small.large .font-60-percent{font-size:.96rem}.rtl-container.blue.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.blue.small.large .icon-large{font-size:8rem}.rtl-container.blue.small.large .icon-small{font-size:2.4rem!important}.rtl-container.blue.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.blue.small.large .size-triple{font-size:4.8rem}.rtl-container.blue.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.blue.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.small .mat-icon.material-icons:focus{outline:none}.rtl-container.blue.small .mat-flat-button.mat-primary:focus,.rtl-container.blue.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.blue.medium.small .mat-header-cell{font-weight:700}.rtl-container.blue.medium.small .mr-4{margin-right:1rem!important}.rtl-container.blue.medium.small .mat-menu-item,.rtl-container.blue.medium.small .mat-tree .mat-tree-node,.rtl-container.blue.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.blue.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.blue.medium.small .genseed-message,.rtl-container.blue.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.blue.medium.small .fa-icon-small,.rtl-container.blue.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.blue.medium.small .page-title-container,.rtl-container.blue.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.blue.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.blue.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.blue.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.blue.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.blue.medium.small .material-icons,.rtl-container.blue.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.blue.medium.small .mat-expansion-panel-header,.rtl-container.blue.medium.small .mat-menu-item,.rtl-container.blue.medium.small .mat-list .mat-list-item,.rtl-container.blue.medium.small .mat-nav-list .mat-list-item,.rtl-container.blue.medium.small .mat-option,.rtl-container.blue.medium.small .mat-select,.rtl-container.blue.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.blue.medium.small .logo{font-size:2.4rem}.rtl-container.blue.medium.small .font-60-percent{font-size:.72rem}.rtl-container.blue.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.blue.medium.small .icon-large{font-size:6rem}.rtl-container.blue.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.blue.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.blue.medium.small .size-triple{font-size:3.6rem}.rtl-container.blue.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.blue.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.medium.medium .mat-header-cell{font-weight:700}.rtl-container.blue.medium.medium .mat-tree .mat-tree-node,.rtl-container.blue.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.blue.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.blue.medium.medium .genseed-message,.rtl-container.blue.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.blue.medium.medium .page-title-container,.rtl-container.blue.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.blue.medium.medium .fa-icon-small,.rtl-container.blue.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.blue.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.blue.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.blue.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.blue.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.blue.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.blue.medium.medium .material-icons{font-size:2.8rem}.rtl-container.blue.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.blue.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.blue.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.blue.medium.medium .mat-expansion-panel-header,.rtl-container.blue.medium.medium .mat-menu-item,.rtl-container.blue.medium.medium .mat-list .mat-list-item,.rtl-container.blue.medium.medium .mat-nav-list .mat-list-item,.rtl-container.blue.medium.medium .mat-option,.rtl-container.blue.medium.medium .mat-select,.rtl-container.blue.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.blue.medium.medium .logo{font-size:2.8rem}.rtl-container.blue.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.blue.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.blue.medium.medium .icon-large{font-size:7rem}.rtl-container.blue.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.blue.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.blue.medium.medium .size-triple{font-size:4.2rem}.rtl-container.blue.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.blue.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.medium.large .mat-header-cell{font-weight:800}.rtl-container.blue.medium.large .mat-tree .mat-tree-node,.rtl-container.blue.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.blue.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.blue.medium.large .genseed-message,.rtl-container.blue.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.blue.medium.large .page-title-container,.rtl-container.blue.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.blue.medium.large .fa-icon-small,.rtl-container.blue.medium.large .top-icon-small,.rtl-container.blue.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.blue.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.blue.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.blue.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.blue.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.blue.medium.large .material-icons{font-size:4rem}.rtl-container.blue.medium.large .mat-expansion-panel-header,.rtl-container.blue.medium.large .mat-menu-item,.rtl-container.blue.medium.large .mat-list .mat-list-item,.rtl-container.blue.medium.large .mat-nav-list .mat-list-item,.rtl-container.blue.medium.large .mat-option,.rtl-container.blue.medium.large .mat-select,.rtl-container.blue.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.blue.medium.large .logo{font-size:3.2rem}.rtl-container.blue.medium.large .font-60-percent{font-size:.96rem}.rtl-container.blue.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.blue.medium.large .icon-large{font-size:8rem}.rtl-container.blue.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.blue.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.blue.medium.large .size-triple{font-size:4.8rem}.rtl-container.blue.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.blue.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.blue.medium .mat-flat-button.mat-primary:focus,.rtl-container.blue.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.blue.large.small .mat-header-cell{font-weight:700}.rtl-container.blue.large.small .mr-4{margin-right:1rem!important}.rtl-container.blue.large.small .mat-menu-item,.rtl-container.blue.large.small .mat-tree .mat-tree-node,.rtl-container.blue.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.blue.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.blue.large.small .genseed-message,.rtl-container.blue.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.blue.large.small .fa-icon-small,.rtl-container.blue.large.small .top-icon-small{font-size:1.44rem}.rtl-container.blue.large.small .page-title-container,.rtl-container.blue.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.blue.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.blue.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.blue.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.blue.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.blue.large.small .material-icons,.rtl-container.blue.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.blue.large.small .mat-expansion-panel-header,.rtl-container.blue.large.small .mat-menu-item,.rtl-container.blue.large.small .mat-list .mat-list-item,.rtl-container.blue.large.small .mat-nav-list .mat-list-item,.rtl-container.blue.large.small .mat-option,.rtl-container.blue.large.small .mat-select,.rtl-container.blue.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.blue.large.small .logo{font-size:2.4rem}.rtl-container.blue.large.small .font-60-percent{font-size:.72rem}.rtl-container.blue.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.blue.large.small .icon-large{font-size:6rem}.rtl-container.blue.large.small .icon-small{font-size:1.8rem!important}.rtl-container.blue.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.blue.large.small .size-triple{font-size:3.6rem}.rtl-container.blue.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.blue.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.large.medium .mat-header-cell{font-weight:700}.rtl-container.blue.large.medium .mat-tree .mat-tree-node,.rtl-container.blue.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.blue.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.blue.large.medium .genseed-message,.rtl-container.blue.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.blue.large.medium .page-title-container,.rtl-container.blue.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.blue.large.medium .fa-icon-small,.rtl-container.blue.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.blue.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.blue.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.blue.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.blue.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.blue.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.blue.large.medium .material-icons{font-size:2.8rem}.rtl-container.blue.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.blue.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.blue.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.blue.large.medium .mat-expansion-panel-header,.rtl-container.blue.large.medium .mat-menu-item,.rtl-container.blue.large.medium .mat-list .mat-list-item,.rtl-container.blue.large.medium .mat-nav-list .mat-list-item,.rtl-container.blue.large.medium .mat-option,.rtl-container.blue.large.medium .mat-select,.rtl-container.blue.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.blue.large.medium .logo{font-size:2.8rem}.rtl-container.blue.large.medium .font-60-percent{font-size:.84rem}.rtl-container.blue.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.blue.large.medium .icon-large{font-size:7rem}.rtl-container.blue.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.blue.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.blue.large.medium .size-triple{font-size:4.2rem}.rtl-container.blue.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.blue.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.large.large .mat-header-cell{font-weight:800}.rtl-container.blue.large.large .mat-tree .mat-tree-node,.rtl-container.blue.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.blue.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.blue.large.large .genseed-message,.rtl-container.blue.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.blue.large.large .page-title-container,.rtl-container.blue.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.blue.large.large .fa-icon-small,.rtl-container.blue.large.large .top-icon-small,.rtl-container.blue.large.large .modal-info-header{font-size:1.92rem}.rtl-container.blue.large.large .top-toolbar-icon.icon-pinned,.rtl-container.blue.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.blue.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.blue.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.blue.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.blue.large.large .material-icons{font-size:4rem}.rtl-container.blue.large.large .mat-expansion-panel-header,.rtl-container.blue.large.large .mat-menu-item,.rtl-container.blue.large.large .mat-list .mat-list-item,.rtl-container.blue.large.large .mat-nav-list .mat-list-item,.rtl-container.blue.large.large .mat-option,.rtl-container.blue.large.large .mat-select,.rtl-container.blue.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.blue.large.large .logo{font-size:3.2rem}.rtl-container.blue.large.large .font-60-percent{font-size:.96rem}.rtl-container.blue.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.blue.large.large .icon-large{font-size:8rem}.rtl-container.blue.large.large .icon-small{font-size:2.4rem!important}.rtl-container.blue.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.blue.large.large .size-triple{font-size:4.8rem}.rtl-container.blue.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.blue.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.blue.large .mat-icon.material-icons:focus{outline:none}.rtl-container.blue.large .mat-flat-button.mat-primary:focus,.rtl-container.blue.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.blue.day .mat-ripple-element{background-color:#0000001a}.rtl-container.blue.day .mat-option{color:#000000de}.rtl-container.blue.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.blue.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#1976d2}.rtl-container.blue.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.blue.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.blue.day .mat-optgroup-label{color:#0000008a}.rtl-container.blue.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.blue.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.blue.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.blue.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#1976d2}.rtl-container.blue.day .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.blue.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.blue.day .mat-app-background,.rtl-container.blue.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.blue.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.blue.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.blue.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.blue.day .mat-badge{position:relative}.rtl-container.blue.day .mat-badge.mat-badge{overflow:visible}.rtl-container.blue.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.blue.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.blue.day .ng-animate-disabled .mat-badge-content,.rtl-container.blue.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.blue.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.blue.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.blue.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.blue.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.blue.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.blue.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.blue.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.blue.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.blue.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.blue.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.blue.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.blue.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.blue.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.blue.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.blue.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.blue.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.blue.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.blue.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.blue.day .mat-badge-content{color:#fff;background:#1976d2}.cdk-high-contrast-active .rtl-container.blue.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.blue.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.blue.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.blue.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.blue.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.blue.day .mat-button.mat-primary,.rtl-container.blue.day .mat-icon-button.mat-primary,.rtl-container.blue.day .mat-stroked-button.mat-primary{color:#1976d2}.rtl-container.blue.day .mat-button.mat-accent,.rtl-container.blue.day .mat-icon-button.mat-accent,.rtl-container.blue.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.blue.day .mat-button.mat-warn,.rtl-container.blue.day .mat-icon-button.mat-warn,.rtl-container.blue.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.blue.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.blue.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#1976d2}.rtl-container.blue.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.blue.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.blue.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.blue.day .mat-button .mat-ripple-element,.rtl-container.blue.day .mat-icon-button .mat-ripple-element,.rtl-container.blue.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.blue.day .mat-button-focus-overlay{background:black}.rtl-container.blue.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.blue.day .mat-flat-button,.rtl-container.blue.day .mat-raised-button,.rtl-container.blue.day .mat-fab,.rtl-container.blue.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.blue.day .mat-flat-button.mat-primary,.rtl-container.blue.day .mat-raised-button.mat-primary,.rtl-container.blue.day .mat-fab.mat-primary,.rtl-container.blue.day .mat-mini-fab.mat-primary,.rtl-container.blue.day .mat-flat-button.mat-accent,.rtl-container.blue.day .mat-raised-button.mat-accent,.rtl-container.blue.day .mat-fab.mat-accent,.rtl-container.blue.day .mat-mini-fab.mat-accent,.rtl-container.blue.day .mat-flat-button.mat-warn,.rtl-container.blue.day .mat-raised-button.mat-warn,.rtl-container.blue.day .mat-fab.mat-warn,.rtl-container.blue.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.blue.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.blue.day .mat-flat-button.mat-primary,.rtl-container.blue.day .mat-raised-button.mat-primary,.rtl-container.blue.day .mat-fab.mat-primary,.rtl-container.blue.day .mat-mini-fab.mat-primary{background-color:#1976d2}.rtl-container.blue.day .mat-flat-button.mat-accent,.rtl-container.blue.day .mat-raised-button.mat-accent,.rtl-container.blue.day .mat-fab.mat-accent,.rtl-container.blue.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.blue.day .mat-flat-button.mat-warn,.rtl-container.blue.day .mat-raised-button.mat-warn,.rtl-container.blue.day .mat-fab.mat-warn,.rtl-container.blue.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.blue.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.blue.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.blue.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.blue.day .mat-button-toggle{color:#00000061}.rtl-container.blue.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.blue.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.blue.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.blue.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.blue.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.blue.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.blue.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.blue.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.blue.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.blue.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.blue.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.blue.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.blue.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.blue.day .mat-card{background:white;color:#000000de}.rtl-container.blue.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-card-subtitle{color:#0000008a}.rtl-container.blue.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.blue.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.blue.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.blue.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.blue.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#1976d2}.rtl-container.blue.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.blue.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.blue.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.blue.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.blue.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.blue.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.blue.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.blue.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.blue.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#1976d2}.rtl-container.blue.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.blue.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.blue.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.blue.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.blue.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.blue.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.day .mat-table{background:white}.rtl-container.blue.day .mat-table thead,.rtl-container.blue.day .mat-table tbody,.rtl-container.blue.day .mat-table tfoot,.rtl-container.blue.day mat-header-row,.rtl-container.blue.day mat-row,.rtl-container.blue.day mat-footer-row,.rtl-container.blue.day [mat-header-row],.rtl-container.blue.day [mat-row],.rtl-container.blue.day [mat-footer-row],.rtl-container.blue.day .mat-table-sticky{background:inherit}.rtl-container.blue.day mat-row,.rtl-container.blue.day mat-header-row,.rtl-container.blue.day mat-footer-row,.rtl-container.blue.day th.mat-header-cell,.rtl-container.blue.day td.mat-cell,.rtl-container.blue.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.blue.day .mat-header-cell{color:#0000008a}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-footer-cell{color:#000000de}.rtl-container.blue.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.blue.day .mat-datepicker-toggle,.rtl-container.blue.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.blue.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.blue.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-calendar-table-header,.rtl-container.blue.day .mat-calendar-body-label{color:#0000008a}.rtl-container.blue.day .mat-calendar-body-cell-content,.rtl-container.blue.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.blue.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.blue.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.blue.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.blue.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.blue.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.blue.day .mat-calendar-body-in-range:before{background:rgba(25,118,210,.2)}.rtl-container.blue.day .mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.day .mat-calendar-body-selected{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#1976d266}.rtl-container.blue.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}@media (hover: hover){.rtl-container.blue.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}}.rtl-container.blue.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.blue.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.blue.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.blue.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-datepicker-toggle-active{color:#1976d2}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.blue.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.blue.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.blue.day .mat-divider{border-top-color:#0000001f}.rtl-container.blue.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.blue.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.blue.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-action-row{border-top-color:#0000001f}.rtl-container.blue.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.blue.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.blue.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.blue.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.blue.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.blue.day .mat-expansion-panel-header-description,.rtl-container.blue.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.blue.day .mat-form-field-label,.rtl-container.blue.day .mat-hint{color:#0009}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-label{color:#1976d2}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.blue.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.blue.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#1976d2}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.blue.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#1976d2}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.blue.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.blue.day .mat-error{color:#b00020}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.blue.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.blue.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.blue.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.blue.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.blue.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.blue.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.blue.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#1976d2}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.blue.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.blue.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.blue.day .mat-icon.mat-primary{color:#1976d2}.rtl-container.blue.day .mat-icon.mat-accent{color:#424242}.rtl-container.blue.day .mat-icon.mat-warn{color:#b00020}.rtl-container.blue.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.blue.day .mat-input-element:disabled,.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.blue.day .mat-input-element{caret-color:#1976d2}.rtl-container.blue.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.blue.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.blue.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.blue.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.blue.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.blue.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.blue.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.blue.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.blue.day .mat-list-base .mat-list-item,.rtl-container.blue.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.blue.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.blue.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.blue.day .mat-list-option:hover,.rtl-container.blue.day .mat-list-option:focus,.rtl-container.blue.day .mat-nav-list .mat-list-item:hover,.rtl-container.blue.day .mat-nav-list .mat-list-item:focus,.rtl-container.blue.day .mat-action-list .mat-list-item:hover,.rtl-container.blue.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-list-single-selected-option,.rtl-container.blue.day .mat-list-single-selected-option:hover,.rtl-container.blue.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-menu-panel{background:white}.rtl-container.blue.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.blue.day .mat-menu-item[disabled],.rtl-container.blue.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.blue.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.blue.day .mat-menu-item .mat-icon-no-color,.rtl-container.blue.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.blue.day .mat-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-paginator{background:white}.rtl-container.blue.day .mat-paginator,.rtl-container.blue.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.blue.day .mat-paginator-decrement,.rtl-container.blue.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.blue.day .mat-paginator-first,.rtl-container.blue.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.blue.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.blue.day .mat-progress-bar-background{fill:#c2d9f0}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#c2d9f0}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#1976d2}.rtl-container.blue.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.blue.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.blue.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.blue.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.blue.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.blue.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.blue.day .mat-progress-spinner circle,.rtl-container.blue.day .mat-spinner circle{stroke:#1976d2}.rtl-container.blue.day .mat-progress-spinner.mat-accent circle,.rtl-container.blue.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.blue.day .mat-progress-spinner.mat-warn circle,.rtl-container.blue.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.blue.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.blue.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#1976d2}.rtl-container.blue.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.blue.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#1976d2}.rtl-container.blue.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.blue.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.blue.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.blue.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.blue.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.blue.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.blue.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.blue.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.blue.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.blue.day .mat-select-value{color:#000000de}.rtl-container.blue.day .mat-select-placeholder{color:#0000006b}.rtl-container.blue.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.blue.day .mat-select-arrow{color:#0000008a}.rtl-container.blue.day .mat-select-panel{background:white}.rtl-container.blue.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#1976d2}.rtl-container.blue.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.blue.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.blue.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.blue.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.blue.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.blue.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.blue.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.blue.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.blue.day .mat-drawer-side.mat-drawer-end,.rtl-container.blue.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.blue.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.blue.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.blue.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.blue.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.blue.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.blue.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#1976d2}.rtl-container.blue.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1976d28a}.rtl-container.blue.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#1976d2}.rtl-container.blue.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.blue.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.blue.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.blue.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.blue.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.blue.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.blue.day .mat-slider-track-background{background-color:#00000042}.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#1976d2}.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#1976d233}.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.blue.day .mat-slider:hover .mat-slider-track-background,.rtl-container.blue.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.blue.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.blue.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.blue.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.blue.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.blue.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.blue.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.blue.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.blue.day .mat-step-header.cdk-keyboard-focused,.rtl-container.blue.day .mat-step-header.cdk-program-focused,.rtl-container.blue.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.blue.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.blue.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.blue.day .mat-step-header:hover{background:none}}.rtl-container.blue.day .mat-step-header .mat-step-label,.rtl-container.blue.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.blue.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.blue.day .mat-step-header .mat-step-icon-selected,.rtl-container.blue.day .mat-step-header .mat-step-icon-state-done,.rtl-container.blue.day .mat-step-header .mat-step-icon-state-edit{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.blue.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.blue.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.blue.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.blue.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.blue.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.blue.day .mat-stepper-horizontal,.rtl-container.blue.day .mat-stepper-vertical{background-color:#fff}.rtl-container.blue.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.blue.day .mat-horizontal-stepper-header:before,.rtl-container.blue.day .mat-horizontal-stepper-header:after,.rtl-container.blue.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.blue.day .mat-sort-header-arrow{color:#757575}.rtl-container.blue.day .mat-tab-nav-bar,.rtl-container.blue.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.blue.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.blue.day .mat-tab-label,.rtl-container.blue.day .mat-tab-link{color:#000000de}.rtl-container.blue.day .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.blue.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.blue.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.blue.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#1976d2}.rtl-container.blue.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.blue.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.blue.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.blue.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#1976d2}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.blue.day .mat-toolbar.mat-primary{background:#1976d2;color:#fff}.rtl-container.blue.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.blue.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.blue.day .mat-toolbar .mat-form-field-underline,.rtl-container.blue.day .mat-toolbar .mat-form-field-ripple,.rtl-container.blue.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.blue.day .mat-toolbar .mat-form-field-label,.rtl-container.blue.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.blue.day .mat-toolbar .mat-select-value,.rtl-container.blue.day .mat-toolbar .mat-select-arrow,.rtl-container.blue.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.blue.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.blue.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.blue.day .mat-tree{background:white}.rtl-container.blue.day .mat-tree-node,.rtl-container.blue.day .mat-nested-tree-node{color:#000000de}.rtl-container.blue.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-simple-snackbar-action{color:#424242}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.blue.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.blue.day .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#1976d2}.rtl-container.blue.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.blue.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.blue.day .mat-tab-label.mat-tab-label-active{color:#1976d2}.rtl-container.blue.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#1976d2}.rtl-container.blue.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.blue.day .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.blue.day .mat-form-field-suffix{color:#0000008a}.rtl-container.blue.day .mat-stroked-button.mat-primary{border-color:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.blue.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .selected-color{border-color:#90caf9}.rtl-container.blue.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.blue.day .page-title-container,.rtl-container.blue.day .page-sub-title-container{color:#0000008a}.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.blue.day .page-title-container .mat-input-element,.rtl-container.blue.day .page-title-container .mat-radio-label-content,.rtl-container.blue.day .page-title-container .theme-name,.rtl-container.blue.day .page-sub-title-container .mat-input-element,.rtl-container.blue.day .page-sub-title-container .mat-radio-label-content,.rtl-container.blue.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.blue.day .cc-data-block .cc-data-title{color:#1976d2}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#1976d2;font-weight:500;cursor:pointer;fill:#1976d2}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#1976d2;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#1976d2}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#1976d2}.rtl-container.blue.day .mat-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day svg.top-icon-small{fill:#000000de}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#0d47a1}.rtl-container.blue.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.blue.day .mat-tab-label,.rtl-container.blue.day .mat-tab-link{color:#0000008a}.rtl-container.blue.day .mat-card,.rtl-container.blue.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.blue.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#1976d2}.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#1976d2!important}.rtl-container.blue.day .dot-primary{background-color:#1976d2!important}.rtl-container.blue.day .dot-primary-lighter{background-color:#90caf9!important}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-tooltip{font-size:120%}.rtl-container.blue.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.blue.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.blue.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.blue.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-1{fill:#fff}.rtl-container.blue.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.blue.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-6{fill:#fff}.rtl-container.blue.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-9{fill:#fff}.rtl-container.blue.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-16{fill:#404040}.rtl-container.blue.day svg .fill-color-17{fill:#404040}.rtl-container.blue.day svg .fill-color-18{fill:#000}.rtl-container.blue.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-24{fill:#000}.rtl-container.blue.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.day svg .fill-color-27{fill:#000}.rtl-container.blue.day svg .fill-color-28{fill:#313131}.rtl-container.blue.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-30{fill:#fff}.rtl-container.blue.day svg .fill-color-31{fill:#1976d2}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#1976d2}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.blue.day .material-icons.info-icon{color:#0000008a}.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#1976d2}.rtl-container.blue.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.blue.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#1976d2}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#0d47a1}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.blue.day .foreground.mat-progress-spinner circle,.rtl-container.blue.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.blue.day .mat-toolbar-row,.rtl-container.blue.day .mat-toolbar-single-row{height:5rem}.rtl-container.blue.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day a{color:#1976d2}.rtl-container.blue.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.day .h-active-link{border-bottom:2px solid white}.rtl-container.blue.day .mat-icon-36{color:#0000008a}.rtl-container.blue.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.blue.day .genseed-message{width:10%;color:#1976d2}.rtl-container.blue.day .border-primary{border:1px solid #1976d2}.rtl-container.blue.day .border-accent{border:1px solid #424242}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#1976d2}.rtl-container.blue.day .material-icons.accent{color:#424242}.rtl-container.blue.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.blue.day .row-disabled{background-color:gray}.rtl-container.blue.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.day .mat-menu-panel{min-width:6.4rem}.rtl-container.blue.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.blue.day .horizontal-button:hover{background:#90caf9;color:#424242}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button,.rtl-container.blue.day .mat-flat-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.blue.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-header-cell,.rtl-container.blue.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.blue.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-table thead tr th{color:#000}.rtl-container.blue.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.blue.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.blue.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.day .more-button{color:#00000061}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.blue.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.blue.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.blue.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.blue.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.blue.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.blue.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.blue.day .color-warn{color:#b00020}.rtl-container.blue.day .fill-warn{fill:#b00020}.rtl-container.blue.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.blue.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-info a{color:#004085}.rtl-container.blue.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-warn a{color:#856404}.rtl-container.blue.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.day .help-expansion .mat-expansion-panel-header,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.day .help-expansion .mat-expansion-panel-content,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.blue.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.day .failed-status{color:#b00020}.rtl-container.blue.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.blue.day .svg-fill-primary{fill:#1976d2}.rtl-container.blue.day .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.blue.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.blue.day ngx-charts-bar-vertical text,.rtl-container.blue.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.blue.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.day .mat-paginator-container{padding:0}.rtl-container.blue.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.day .invoice-animation-div .particles-circle{position:absolute;background-color:#1976d2;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #1976d2;background-color:transparent}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-option{color:#fff}.rtl-container.blue.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#1976d2}.rtl-container.blue.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.blue.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.blue.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.blue.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#1976d2}.rtl-container.blue.night .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.blue.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.blue.night .mat-app-background,.rtl-container.blue.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.blue.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.blue.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.blue.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.blue.night .mat-badge{position:relative}.rtl-container.blue.night .mat-badge.mat-badge{overflow:visible}.rtl-container.blue.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.blue.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.blue.night .ng-animate-disabled .mat-badge-content,.rtl-container.blue.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.blue.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.blue.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.blue.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.blue.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.blue.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.blue.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.blue.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.blue.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.blue.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.blue.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.blue.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.blue.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.blue.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.blue.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.blue.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.blue.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.blue.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.blue.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.blue.night .mat-badge-content{color:#fff;background:#1976d2}.cdk-high-contrast-active .rtl-container.blue.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.blue.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.blue.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.blue.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.blue.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#1976d2}.rtl-container.blue.night .mat-button.mat-accent,.rtl-container.blue.night .mat-icon-button.mat-accent,.rtl-container.blue.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.blue.night .mat-button.mat-warn,.rtl-container.blue.night .mat-icon-button.mat-warn,.rtl-container.blue.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.blue.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#1976d2}.rtl-container.blue.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.blue.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.blue.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.blue.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.blue.night .mat-button .mat-ripple-element,.rtl-container.blue.night .mat-icon-button .mat-ripple-element,.rtl-container.blue.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.blue.night .mat-button-focus-overlay{background:white}.rtl-container.blue.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.blue.night .mat-flat-button,.rtl-container.blue.night .mat-raised-button,.rtl-container.blue.night .mat-fab,.rtl-container.blue.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.blue.night .mat-flat-button.mat-primary,.rtl-container.blue.night .mat-raised-button.mat-primary,.rtl-container.blue.night .mat-fab.mat-primary,.rtl-container.blue.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.blue.night .mat-flat-button.mat-accent,.rtl-container.blue.night .mat-raised-button.mat-accent,.rtl-container.blue.night .mat-fab.mat-accent,.rtl-container.blue.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.blue.night .mat-flat-button.mat-warn,.rtl-container.blue.night .mat-raised-button.mat-warn,.rtl-container.blue.night .mat-fab.mat-warn,.rtl-container.blue.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.blue.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.blue.night .mat-flat-button.mat-primary,.rtl-container.blue.night .mat-raised-button.mat-primary,.rtl-container.blue.night .mat-fab.mat-primary,.rtl-container.blue.night .mat-mini-fab.mat-primary{background-color:#1976d2}.rtl-container.blue.night .mat-flat-button.mat-accent,.rtl-container.blue.night .mat-raised-button.mat-accent,.rtl-container.blue.night .mat-fab.mat-accent,.rtl-container.blue.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.blue.night .mat-flat-button.mat-warn,.rtl-container.blue.night .mat-raised-button.mat-warn,.rtl-container.blue.night .mat-fab.mat-warn,.rtl-container.blue.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.blue.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.blue.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.blue.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.blue.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.blue.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.blue.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.blue.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.blue.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.blue.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.blue.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.blue.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.blue.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.blue.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.blue.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.blue.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.blue.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.blue.night .mat-card{background:#202020;color:#fff}.rtl-container.blue.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.blue.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.blue.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.blue.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#1976d2}.rtl-container.blue.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.blue.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.blue.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.blue.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.blue.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.blue.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.blue.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.blue.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#1976d2}.rtl-container.blue.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.blue.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.blue.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.blue.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.blue.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.blue.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.blue.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.blue.night .mat-table{background:#202020}.rtl-container.blue.night .mat-table thead,.rtl-container.blue.night .mat-table tbody,.rtl-container.blue.night .mat-table tfoot,.rtl-container.blue.night mat-header-row,.rtl-container.blue.night mat-row,.rtl-container.blue.night mat-footer-row,.rtl-container.blue.night [mat-header-row],.rtl-container.blue.night [mat-row],.rtl-container.blue.night [mat-footer-row],.rtl-container.blue.night .mat-table-sticky{background:inherit}.rtl-container.blue.night mat-row,.rtl-container.blue.night mat-header-row,.rtl-container.blue.night mat-footer-row,.rtl-container.blue.night th.mat-header-cell,.rtl-container.blue.night td.mat-cell,.rtl-container.blue.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-footer-cell{color:#fff}.rtl-container.blue.night .mat-calendar-arrow{fill:#fff}.rtl-container.blue.night .mat-datepicker-toggle,.rtl-container.blue.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.blue.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.blue.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.blue.night .mat-calendar-body-cell-content,.rtl-container.blue.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.blue.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.blue.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.blue.night .mat-calendar-body-in-range:before{background:rgba(25,118,210,.2)}.rtl-container.blue.night .mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(25,118,210,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.night .mat-calendar-body-selected{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#1976d266}.rtl-container.blue.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}@media (hover: hover){.rtl-container.blue.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1976d24d}}.rtl-container.blue.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.blue.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.blue.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.blue.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.blue.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.blue.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.blue.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.blue.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.blue.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-datepicker-toggle-active{color:#1976d2}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.blue.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.blue.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.blue.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.blue.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.blue.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.blue.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.blue.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.blue.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.blue.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-label{color:#1976d2}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.blue.night .mat-form-field-ripple{background-color:#fff}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#1976d2}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.blue.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#1976d2}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.blue.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.blue.night .mat-error{color:#ff343b}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.blue.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.blue.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.blue.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.blue.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.blue.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.blue.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.blue.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.blue.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#1976d2}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.blue.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.blue.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.blue.night .mat-icon.mat-primary{color:#1976d2}.rtl-container.blue.night .mat-icon.mat-accent{color:#eee}.rtl-container.blue.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.blue.night .mat-input-element{caret-color:#1976d2}.rtl-container.blue.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.blue.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.blue.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.blue.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.blue.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.blue.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.blue.night .mat-list-base .mat-list-item,.rtl-container.blue.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.blue.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.blue.night .mat-list-option:hover,.rtl-container.blue.night .mat-list-option:focus,.rtl-container.blue.night .mat-nav-list .mat-list-item:hover,.rtl-container.blue.night .mat-nav-list .mat-list-item:focus,.rtl-container.blue.night .mat-action-list .mat-list-item:hover,.rtl-container.blue.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-list-single-selected-option,.rtl-container.blue.night .mat-list-single-selected-option:hover,.rtl-container.blue.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.blue.night .mat-menu-panel{background:#202020}.rtl-container.blue.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.blue.night .mat-menu-item .mat-icon-no-color,.rtl-container.blue.night .mat-menu-submenu-icon{color:#fff}.rtl-container.blue.night .mat-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.blue.night .mat-paginator{background:#202020}.rtl-container.blue.night .mat-paginator-decrement,.rtl-container.blue.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.blue.night .mat-paginator-first,.rtl-container.blue.night .mat-paginator-last{border-top:2px solid white}.rtl-container.blue.night .mat-progress-bar-background{fill:#10273e}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#10273e}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1976d2}.rtl-container.blue.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.blue.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.blue.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.blue.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.blue.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.blue.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.blue.night .mat-progress-spinner circle,.rtl-container.blue.night .mat-spinner circle{stroke:#1976d2}.rtl-container.blue.night .mat-progress-spinner.mat-accent circle,.rtl-container.blue.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.blue.night .mat-progress-spinner.mat-warn circle,.rtl-container.blue.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.blue.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#1976d2}.rtl-container.blue.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.blue.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#1976d2}.rtl-container.blue.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.blue.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.blue.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.blue.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.blue.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.blue.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.blue.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.blue.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.blue.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.blue.night .mat-select-value{color:#fff}.rtl-container.blue.night .mat-select-panel{background:#202020}.rtl-container.blue.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.blue.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#1976d2}.rtl-container.blue.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.blue.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.blue.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.blue.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.blue.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.blue.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.blue.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.blue.night .mat-drawer-side.mat-drawer-end,.rtl-container.blue.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.blue.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.blue.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.blue.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.blue.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.blue.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.blue.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#1976d2}.rtl-container.blue.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1976d28a}.rtl-container.blue.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#1976d2}.rtl-container.blue.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.blue.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.blue.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.blue.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.blue.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.blue.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#1976d2}.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#1976d233}.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.blue.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.blue.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.blue.night .mat-slider:hover .mat-slider-track-background,.rtl-container.blue.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.blue.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.blue.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.blue.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.blue.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.blue.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.blue.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.blue.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.blue.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.blue.night .mat-step-header.cdk-keyboard-focused,.rtl-container.blue.night .mat-step-header.cdk-program-focused,.rtl-container.blue.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.blue.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.blue.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.blue.night .mat-step-header:hover{background:none}}.rtl-container.blue.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.blue.night .mat-step-header .mat-step-icon-selected,.rtl-container.blue.night .mat-step-header .mat-step-icon-state-done,.rtl-container.blue.night .mat-step-header .mat-step-icon-state-edit{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.blue.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.blue.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.blue.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.blue.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.blue.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.blue.night .mat-stepper-horizontal,.rtl-container.blue.night .mat-stepper-vertical{background-color:#202020}.rtl-container.blue.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.blue.night .mat-horizontal-stepper-header:before,.rtl-container.blue.night .mat-horizontal-stepper-header:after,.rtl-container.blue.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.blue.night .mat-tab-nav-bar,.rtl-container.blue.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.blue.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.blue.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.blue.night .mat-tab-label,.rtl-container.blue.night .mat-tab-link{color:#fff}.rtl-container.blue.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.blue.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#1976d2}.rtl-container.blue.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.blue.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.blue.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.blue.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#90caf94d}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#1976d2}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.blue.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.blue.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.blue.night .mat-toolbar.mat-primary{background:#1976d2;color:#fff}.rtl-container.blue.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.blue.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.blue.night .mat-toolbar .mat-form-field-underline,.rtl-container.blue.night .mat-toolbar .mat-form-field-ripple,.rtl-container.blue.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.blue.night .mat-toolbar .mat-form-field-label,.rtl-container.blue.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.blue.night .mat-toolbar .mat-select-value,.rtl-container.blue.night .mat-toolbar .mat-select-arrow,.rtl-container.blue.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.blue.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.blue.night .mat-tree{background:#202020}.rtl-container.blue.night .mat-tree-node,.rtl-container.blue.night .mat-nested-tree-node{color:#fff}.rtl-container.blue.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-simple-snackbar-action{color:inherit}.rtl-container.blue.night .mat-primary{color:#448aff}.rtl-container.blue.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.blue.night .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-tab-label.mat-tab-label-active{color:#448aff}.rtl-container.blue.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.blue.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.blue.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.blue.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#448aff}.rtl-container.blue.night .cc-data-block .cc-data-title{color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary{border-color:#448aff;color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.blue.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.blue.night .active-link,.rtl-container.blue.night .active-link .fa-icon-small,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#448aff;font-weight:500;cursor:pointer;fill:#448aff}.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-tree-node:hover,.rtl-container.blue.night .mat-nested-tree-node-parent:hover,.rtl-container.blue.night .mat-select-panel .mat-option:hover,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#448aff;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.blue.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.night .mat-tree-node:hover .mat-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#448aff}.rtl-container.blue.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#448aff}.rtl-container.blue.night .mat-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.night .page-title-container .page-title-img,.rtl-container.blue.night svg.top-icon-small{fill:#fff}.rtl-container.blue.night .selected-color{border-color:#90caf9}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1e88e5}.rtl-container.blue.night .chart-legend .legend-label:hover,.rtl-container.blue.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.blue.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-select-panel{background-color:#262626}.rtl-container.blue.night .mat-tree{background:#262626}.rtl-container.blue.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.blue.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.blue.night .dashboard-info-title{color:#448aff}.rtl-container.blue.night .dashboard-info-value,.rtl-container.blue.night .dashboard-capacity-header{color:#fff}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.blue.night .color-primary{color:#448aff!important}.rtl-container.blue.night .dot-primary{background-color:#448aff!important}.rtl-container.blue.night .dot-primary-lighter{background-color:#1976d2!important}.rtl-container.blue.night .mat-stepper-vertical{background-color:#262626}.rtl-container.blue.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.blue.night svg .boltz-icon-fill{fill:#fff}.rtl-container.blue.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.blue.night svg .fill-color-0{fill:#171717}.rtl-container.blue.night svg .fill-color-1{fill:#232323}.rtl-container.blue.night svg .fill-color-2{fill:#222}.rtl-container.blue.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.blue.night svg .fill-color-4{fill:#383838}.rtl-container.blue.night svg .fill-color-5{fill:#555}.rtl-container.blue.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.blue.night svg .fill-color-7{fill:#202020}.rtl-container.blue.night svg .fill-color-8{fill:#242424}.rtl-container.blue.night svg .fill-color-9{fill:#262626}.rtl-container.blue.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.blue.night svg .fill-color-11{fill:#171717}.rtl-container.blue.night svg .fill-color-12{fill:#ccc}.rtl-container.blue.night svg .fill-color-13{fill:#adadad}.rtl-container.blue.night svg .fill-color-14{fill:#ababab}.rtl-container.blue.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.blue.night svg .fill-color-16{fill:#707070}.rtl-container.blue.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.blue.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.blue.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.blue.night svg .fill-color-21{fill:#cacaca}.rtl-container.blue.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.blue.night svg .fill-color-23{fill:#777}.rtl-container.blue.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.blue.night svg .fill-color-25{fill:#252525}.rtl-container.blue.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.night svg .fill-color-27{fill:#000}.rtl-container.blue.night svg .fill-color-28{fill:#313131}.rtl-container.blue.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.blue.night svg .fill-color-30{fill:#fff}.rtl-container.blue.night svg .fill-color-31{fill:#1976d2}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.night svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.night svg .fill-color-primary-darker{fill:#448aff}.rtl-container.blue.night .mat-select-value,.rtl-container.blue.night .mat-select-arrow{color:#fff}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.blue.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.blue.night .mat-slide-toggle-bar,.rtl-container.blue.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.blue.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#448aff}.rtl-container.blue.night tr.alert.alert-warn .mat-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-header-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.blue.night .material-icons.info-icon,.rtl-container.blue.night .material-icons.info-icon.info-icon-primary{color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.blue.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#448aff}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#1565c0}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#448aff}.rtl-container.blue.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.blue.night .foreground.mat-progress-spinner circle,.rtl-container.blue.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.blue.night .mat-toolbar-row,.rtl-container.blue.night .mat-toolbar-single-row{height:5rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.blue.night a{color:#1976d2}.rtl-container.blue.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.night .h-active-link{border-bottom:2px solid white}.rtl-container.blue.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.blue.night .genseed-message{width:10%;color:#1976d2}.rtl-container.blue.night .border-primary{border:1px solid #1976d2}.rtl-container.blue.night .border-accent{border:1px solid #eeeeee}.rtl-container.blue.night .border-warn{border:1px solid #ff343b}.rtl-container.blue.night .material-icons.primary{color:#1976d2}.rtl-container.blue.night .material-icons.accent{color:#eee}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.blue.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.blue.night .row-disabled{background-color:gray}.rtl-container.blue.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.night .mat-menu-panel{min-width:6.4rem}.rtl-container.blue.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.blue.night .horizontal-button:hover{background:#90caf9;color:#eee}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#1976d2}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button,.rtl-container.blue.night .mat-flat-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.blue.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-header-cell,.rtl-container.blue.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.blue.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.blue.night table.mat-table thead tr th{color:#fff}.rtl-container.blue.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.blue.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.blue.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.blue.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.blue.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.blue.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.blue.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.blue.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.blue.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.blue.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.blue.night .color-warn{color:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.rtl-container.blue.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.blue.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-info a{color:#004085}.rtl-container.blue.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-warn a{color:#856404}.rtl-container.blue.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.night .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.blue.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.night .failed-status{color:#ff343b}.rtl-container.blue.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.blue.night .svg-fill-primary{fill:#1976d2}.rtl-container.blue.night .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.blue.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.blue.night ngx-charts-bar-vertical text,.rtl-container.blue.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.blue.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.night .mat-paginator-container{padding:0}.rtl-container.blue.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.night .invoice-animation-div .particles-circle{position:absolute;background-color:#1976d2;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #1976d2;background-color:transparent}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.small.small .mat-header-cell{font-weight:700}.rtl-container.indigo.small.small .mr-4{margin-right:1rem!important}.rtl-container.indigo.small.small .mat-menu-item,.rtl-container.indigo.small.small .mat-tree .mat-tree-node,.rtl-container.indigo.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.indigo.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.indigo.small.small .genseed-message,.rtl-container.indigo.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.indigo.small.small .fa-icon-small,.rtl-container.indigo.small.small .top-icon-small{font-size:1.44rem}.rtl-container.indigo.small.small .page-title-container,.rtl-container.indigo.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.indigo.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.indigo.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.indigo.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.indigo.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.indigo.small.small .material-icons,.rtl-container.indigo.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.indigo.small.small .mat-expansion-panel-header,.rtl-container.indigo.small.small .mat-menu-item,.rtl-container.indigo.small.small .mat-list .mat-list-item,.rtl-container.indigo.small.small .mat-nav-list .mat-list-item,.rtl-container.indigo.small.small .mat-option,.rtl-container.indigo.small.small .mat-select,.rtl-container.indigo.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.indigo.small.small .logo{font-size:2.4rem}.rtl-container.indigo.small.small .font-60-percent{font-size:.72rem}.rtl-container.indigo.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.indigo.small.small .icon-large{font-size:6rem}.rtl-container.indigo.small.small .icon-small{font-size:1.8rem!important}.rtl-container.indigo.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.indigo.small.small .size-triple{font-size:3.6rem}.rtl-container.indigo.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.indigo.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.small.medium .mat-header-cell{font-weight:700}.rtl-container.indigo.small.medium .mat-tree .mat-tree-node,.rtl-container.indigo.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.indigo.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.indigo.small.medium .genseed-message,.rtl-container.indigo.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.indigo.small.medium .page-title-container,.rtl-container.indigo.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.indigo.small.medium .fa-icon-small,.rtl-container.indigo.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.indigo.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.indigo.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.indigo.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.indigo.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.indigo.small.medium .material-icons{font-size:2.8rem}.rtl-container.indigo.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.indigo.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.indigo.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.indigo.small.medium .mat-expansion-panel-header,.rtl-container.indigo.small.medium .mat-menu-item,.rtl-container.indigo.small.medium .mat-list .mat-list-item,.rtl-container.indigo.small.medium .mat-nav-list .mat-list-item,.rtl-container.indigo.small.medium .mat-option,.rtl-container.indigo.small.medium .mat-select,.rtl-container.indigo.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.indigo.small.medium .logo{font-size:2.8rem}.rtl-container.indigo.small.medium .font-60-percent{font-size:.84rem}.rtl-container.indigo.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.indigo.small.medium .icon-large{font-size:7rem}.rtl-container.indigo.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.indigo.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.indigo.small.medium .size-triple{font-size:4.2rem}.rtl-container.indigo.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.indigo.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.small.large .mat-header-cell{font-weight:800}.rtl-container.indigo.small.large .mat-tree .mat-tree-node,.rtl-container.indigo.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.indigo.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.indigo.small.large .genseed-message,.rtl-container.indigo.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.indigo.small.large .page-title-container,.rtl-container.indigo.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.indigo.small.large .fa-icon-small,.rtl-container.indigo.small.large .top-icon-small,.rtl-container.indigo.small.large .modal-info-header{font-size:1.92rem}.rtl-container.indigo.small.large .top-toolbar-icon.icon-pinned,.rtl-container.indigo.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.indigo.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.indigo.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.indigo.small.large .material-icons{font-size:4rem}.rtl-container.indigo.small.large .mat-expansion-panel-header,.rtl-container.indigo.small.large .mat-menu-item,.rtl-container.indigo.small.large .mat-list .mat-list-item,.rtl-container.indigo.small.large .mat-nav-list .mat-list-item,.rtl-container.indigo.small.large .mat-option,.rtl-container.indigo.small.large .mat-select,.rtl-container.indigo.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.indigo.small.large .logo{font-size:3.2rem}.rtl-container.indigo.small.large .font-60-percent{font-size:.96rem}.rtl-container.indigo.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.indigo.small.large .icon-large{font-size:8rem}.rtl-container.indigo.small.large .icon-small{font-size:2.4rem!important}.rtl-container.indigo.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.indigo.small.large .size-triple{font-size:4.8rem}.rtl-container.indigo.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.indigo.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.small .mat-icon.material-icons:focus{outline:none}.rtl-container.indigo.small .mat-flat-button.mat-primary:focus,.rtl-container.indigo.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.indigo.medium.small .mat-header-cell{font-weight:700}.rtl-container.indigo.medium.small .mr-4{margin-right:1rem!important}.rtl-container.indigo.medium.small .mat-menu-item,.rtl-container.indigo.medium.small .mat-tree .mat-tree-node,.rtl-container.indigo.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.indigo.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.indigo.medium.small .genseed-message,.rtl-container.indigo.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.indigo.medium.small .fa-icon-small,.rtl-container.indigo.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.indigo.medium.small .page-title-container,.rtl-container.indigo.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.indigo.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.indigo.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.indigo.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.indigo.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.indigo.medium.small .material-icons,.rtl-container.indigo.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.indigo.medium.small .mat-expansion-panel-header,.rtl-container.indigo.medium.small .mat-menu-item,.rtl-container.indigo.medium.small .mat-list .mat-list-item,.rtl-container.indigo.medium.small .mat-nav-list .mat-list-item,.rtl-container.indigo.medium.small .mat-option,.rtl-container.indigo.medium.small .mat-select,.rtl-container.indigo.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.indigo.medium.small .logo{font-size:2.4rem}.rtl-container.indigo.medium.small .font-60-percent{font-size:.72rem}.rtl-container.indigo.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.indigo.medium.small .icon-large{font-size:6rem}.rtl-container.indigo.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.indigo.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.indigo.medium.small .size-triple{font-size:3.6rem}.rtl-container.indigo.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.indigo.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.medium.medium .mat-header-cell{font-weight:700}.rtl-container.indigo.medium.medium .mat-tree .mat-tree-node,.rtl-container.indigo.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.indigo.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.indigo.medium.medium .genseed-message,.rtl-container.indigo.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.indigo.medium.medium .page-title-container,.rtl-container.indigo.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.indigo.medium.medium .fa-icon-small,.rtl-container.indigo.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.indigo.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.indigo.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.indigo.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.indigo.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.indigo.medium.medium .material-icons{font-size:2.8rem}.rtl-container.indigo.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.indigo.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.indigo.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.indigo.medium.medium .mat-expansion-panel-header,.rtl-container.indigo.medium.medium .mat-menu-item,.rtl-container.indigo.medium.medium .mat-list .mat-list-item,.rtl-container.indigo.medium.medium .mat-nav-list .mat-list-item,.rtl-container.indigo.medium.medium .mat-option,.rtl-container.indigo.medium.medium .mat-select,.rtl-container.indigo.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.indigo.medium.medium .logo{font-size:2.8rem}.rtl-container.indigo.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.indigo.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.indigo.medium.medium .icon-large{font-size:7rem}.rtl-container.indigo.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.indigo.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.indigo.medium.medium .size-triple{font-size:4.2rem}.rtl-container.indigo.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.indigo.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.medium.large .mat-header-cell{font-weight:800}.rtl-container.indigo.medium.large .mat-tree .mat-tree-node,.rtl-container.indigo.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.indigo.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.indigo.medium.large .genseed-message,.rtl-container.indigo.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.indigo.medium.large .page-title-container,.rtl-container.indigo.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.indigo.medium.large .fa-icon-small,.rtl-container.indigo.medium.large .top-icon-small,.rtl-container.indigo.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.indigo.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.indigo.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.indigo.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.indigo.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.indigo.medium.large .material-icons{font-size:4rem}.rtl-container.indigo.medium.large .mat-expansion-panel-header,.rtl-container.indigo.medium.large .mat-menu-item,.rtl-container.indigo.medium.large .mat-list .mat-list-item,.rtl-container.indigo.medium.large .mat-nav-list .mat-list-item,.rtl-container.indigo.medium.large .mat-option,.rtl-container.indigo.medium.large .mat-select,.rtl-container.indigo.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.indigo.medium.large .logo{font-size:3.2rem}.rtl-container.indigo.medium.large .font-60-percent{font-size:.96rem}.rtl-container.indigo.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.indigo.medium.large .icon-large{font-size:8rem}.rtl-container.indigo.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.indigo.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.indigo.medium.large .size-triple{font-size:4.8rem}.rtl-container.indigo.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.indigo.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.indigo.medium .mat-flat-button.mat-primary:focus,.rtl-container.indigo.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.indigo.large.small .mat-header-cell{font-weight:700}.rtl-container.indigo.large.small .mr-4{margin-right:1rem!important}.rtl-container.indigo.large.small .mat-menu-item,.rtl-container.indigo.large.small .mat-tree .mat-tree-node,.rtl-container.indigo.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.indigo.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.indigo.large.small .genseed-message,.rtl-container.indigo.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.indigo.large.small .fa-icon-small,.rtl-container.indigo.large.small .top-icon-small{font-size:1.44rem}.rtl-container.indigo.large.small .page-title-container,.rtl-container.indigo.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.indigo.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.indigo.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.indigo.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.indigo.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.indigo.large.small .material-icons,.rtl-container.indigo.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.indigo.large.small .mat-expansion-panel-header,.rtl-container.indigo.large.small .mat-menu-item,.rtl-container.indigo.large.small .mat-list .mat-list-item,.rtl-container.indigo.large.small .mat-nav-list .mat-list-item,.rtl-container.indigo.large.small .mat-option,.rtl-container.indigo.large.small .mat-select,.rtl-container.indigo.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.indigo.large.small .logo{font-size:2.4rem}.rtl-container.indigo.large.small .font-60-percent{font-size:.72rem}.rtl-container.indigo.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.indigo.large.small .icon-large{font-size:6rem}.rtl-container.indigo.large.small .icon-small{font-size:1.8rem!important}.rtl-container.indigo.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.indigo.large.small .size-triple{font-size:3.6rem}.rtl-container.indigo.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.indigo.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.large.medium .mat-header-cell{font-weight:700}.rtl-container.indigo.large.medium .mat-tree .mat-tree-node,.rtl-container.indigo.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.indigo.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.indigo.large.medium .genseed-message,.rtl-container.indigo.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.indigo.large.medium .page-title-container,.rtl-container.indigo.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.indigo.large.medium .fa-icon-small,.rtl-container.indigo.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.indigo.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.indigo.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.indigo.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.indigo.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.indigo.large.medium .material-icons{font-size:2.8rem}.rtl-container.indigo.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.indigo.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.indigo.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.indigo.large.medium .mat-expansion-panel-header,.rtl-container.indigo.large.medium .mat-menu-item,.rtl-container.indigo.large.medium .mat-list .mat-list-item,.rtl-container.indigo.large.medium .mat-nav-list .mat-list-item,.rtl-container.indigo.large.medium .mat-option,.rtl-container.indigo.large.medium .mat-select,.rtl-container.indigo.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.indigo.large.medium .logo{font-size:2.8rem}.rtl-container.indigo.large.medium .font-60-percent{font-size:.84rem}.rtl-container.indigo.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.indigo.large.medium .icon-large{font-size:7rem}.rtl-container.indigo.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.indigo.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.indigo.large.medium .size-triple{font-size:4.2rem}.rtl-container.indigo.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.indigo.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.large.large .mat-header-cell{font-weight:800}.rtl-container.indigo.large.large .mat-tree .mat-tree-node,.rtl-container.indigo.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.indigo.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.indigo.large.large .genseed-message,.rtl-container.indigo.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.indigo.large.large .page-title-container,.rtl-container.indigo.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.indigo.large.large .fa-icon-small,.rtl-container.indigo.large.large .top-icon-small,.rtl-container.indigo.large.large .modal-info-header{font-size:1.92rem}.rtl-container.indigo.large.large .top-toolbar-icon.icon-pinned,.rtl-container.indigo.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.indigo.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.indigo.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.indigo.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.indigo.large.large .material-icons{font-size:4rem}.rtl-container.indigo.large.large .mat-expansion-panel-header,.rtl-container.indigo.large.large .mat-menu-item,.rtl-container.indigo.large.large .mat-list .mat-list-item,.rtl-container.indigo.large.large .mat-nav-list .mat-list-item,.rtl-container.indigo.large.large .mat-option,.rtl-container.indigo.large.large .mat-select,.rtl-container.indigo.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.indigo.large.large .logo{font-size:3.2rem}.rtl-container.indigo.large.large .font-60-percent{font-size:.96rem}.rtl-container.indigo.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.indigo.large.large .icon-large{font-size:8rem}.rtl-container.indigo.large.large .icon-small{font-size:2.4rem!important}.rtl-container.indigo.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.indigo.large.large .size-triple{font-size:4.8rem}.rtl-container.indigo.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.indigo.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.indigo.large .mat-icon.material-icons:focus{outline:none}.rtl-container.indigo.large .mat-flat-button.mat-primary:focus,.rtl-container.indigo.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.indigo.day .mat-ripple-element{background-color:#0000001a}.rtl-container.indigo.day .mat-option{color:#000000de}.rtl-container.indigo.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.indigo.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#3f51b5}.rtl-container.indigo.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.indigo.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.indigo.day .mat-optgroup-label{color:#0000008a}.rtl-container.indigo.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.indigo.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.indigo.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.indigo.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#3f51b5}.rtl-container.indigo.day .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.indigo.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.indigo.day .mat-app-background,.rtl-container.indigo.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.indigo.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.indigo.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.indigo.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.indigo.day .mat-badge{position:relative}.rtl-container.indigo.day .mat-badge.mat-badge{overflow:visible}.rtl-container.indigo.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.indigo.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.indigo.day .ng-animate-disabled .mat-badge-content,.rtl-container.indigo.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.indigo.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.indigo.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.indigo.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.indigo.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.indigo.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.indigo.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.indigo.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.indigo.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.indigo.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.indigo.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.indigo.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.indigo.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.indigo.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.indigo.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.indigo.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.indigo.day .mat-badge-content{color:#fff;background:#3f51b5}.cdk-high-contrast-active .rtl-container.indigo.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.indigo.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.indigo.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.indigo.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.indigo.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.indigo.day .mat-button.mat-primary,.rtl-container.indigo.day .mat-icon-button.mat-primary,.rtl-container.indigo.day .mat-stroked-button.mat-primary{color:#3f51b5}.rtl-container.indigo.day .mat-button.mat-accent,.rtl-container.indigo.day .mat-icon-button.mat-accent,.rtl-container.indigo.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.indigo.day .mat-button.mat-warn,.rtl-container.indigo.day .mat-icon-button.mat-warn,.rtl-container.indigo.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.indigo.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#3f51b5}.rtl-container.indigo.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.indigo.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.indigo.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.indigo.day .mat-button .mat-ripple-element,.rtl-container.indigo.day .mat-icon-button .mat-ripple-element,.rtl-container.indigo.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.indigo.day .mat-button-focus-overlay{background:black}.rtl-container.indigo.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.indigo.day .mat-flat-button,.rtl-container.indigo.day .mat-raised-button,.rtl-container.indigo.day .mat-fab,.rtl-container.indigo.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.indigo.day .mat-flat-button.mat-primary,.rtl-container.indigo.day .mat-raised-button.mat-primary,.rtl-container.indigo.day .mat-fab.mat-primary,.rtl-container.indigo.day .mat-mini-fab.mat-primary,.rtl-container.indigo.day .mat-flat-button.mat-accent,.rtl-container.indigo.day .mat-raised-button.mat-accent,.rtl-container.indigo.day .mat-fab.mat-accent,.rtl-container.indigo.day .mat-mini-fab.mat-accent,.rtl-container.indigo.day .mat-flat-button.mat-warn,.rtl-container.indigo.day .mat-raised-button.mat-warn,.rtl-container.indigo.day .mat-fab.mat-warn,.rtl-container.indigo.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.indigo.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.indigo.day .mat-flat-button.mat-primary,.rtl-container.indigo.day .mat-raised-button.mat-primary,.rtl-container.indigo.day .mat-fab.mat-primary,.rtl-container.indigo.day .mat-mini-fab.mat-primary{background-color:#3f51b5}.rtl-container.indigo.day .mat-flat-button.mat-accent,.rtl-container.indigo.day .mat-raised-button.mat-accent,.rtl-container.indigo.day .mat-fab.mat-accent,.rtl-container.indigo.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.indigo.day .mat-flat-button.mat-warn,.rtl-container.indigo.day .mat-raised-button.mat-warn,.rtl-container.indigo.day .mat-fab.mat-warn,.rtl-container.indigo.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.indigo.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.indigo.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.indigo.day .mat-button-toggle{color:#00000061}.rtl-container.indigo.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.indigo.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.indigo.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.indigo.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.indigo.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.indigo.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.indigo.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.indigo.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.indigo.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.indigo.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.indigo.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.indigo.day .mat-card{background:white;color:#000000de}.rtl-container.indigo.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-card-subtitle{color:#0000008a}.rtl-container.indigo.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.indigo.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.indigo.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.indigo.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.indigo.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#3f51b5}.rtl-container.indigo.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.indigo.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.indigo.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.indigo.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.indigo.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.indigo.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.indigo.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.indigo.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.indigo.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#3f51b5}.rtl-container.indigo.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.indigo.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.indigo.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.indigo.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.indigo.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.indigo.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.day .mat-table{background:white}.rtl-container.indigo.day .mat-table thead,.rtl-container.indigo.day .mat-table tbody,.rtl-container.indigo.day .mat-table tfoot,.rtl-container.indigo.day mat-header-row,.rtl-container.indigo.day mat-row,.rtl-container.indigo.day mat-footer-row,.rtl-container.indigo.day [mat-header-row],.rtl-container.indigo.day [mat-row],.rtl-container.indigo.day [mat-footer-row],.rtl-container.indigo.day .mat-table-sticky{background:inherit}.rtl-container.indigo.day mat-row,.rtl-container.indigo.day mat-header-row,.rtl-container.indigo.day mat-footer-row,.rtl-container.indigo.day th.mat-header-cell,.rtl-container.indigo.day td.mat-cell,.rtl-container.indigo.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.indigo.day .mat-header-cell{color:#0000008a}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-footer-cell{color:#000000de}.rtl-container.indigo.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.indigo.day .mat-datepicker-toggle,.rtl-container.indigo.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.indigo.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.indigo.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-calendar-table-header,.rtl-container.indigo.day .mat-calendar-body-label{color:#0000008a}.rtl-container.indigo.day .mat-calendar-body-cell-content,.rtl-container.indigo.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.indigo.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.indigo.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.indigo.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.indigo.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.indigo.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.indigo.day .mat-calendar-body-in-range:before{background:rgba(63,81,181,.2)}.rtl-container.indigo.day .mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.day .mat-calendar-body-selected{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#3f51b566}.rtl-container.indigo.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}@media (hover: hover){.rtl-container.indigo.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}}.rtl-container.indigo.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.indigo.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.indigo.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.indigo.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-datepicker-toggle-active{color:#3f51b5}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.indigo.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.indigo.day .mat-divider{border-top-color:#0000001f}.rtl-container.indigo.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.indigo.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.indigo.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-action-row{border-top-color:#0000001f}.rtl-container.indigo.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.indigo.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.indigo.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.indigo.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.indigo.day .mat-expansion-panel-header-description,.rtl-container.indigo.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.indigo.day .mat-form-field-label,.rtl-container.indigo.day .mat-hint{color:#0009}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-label{color:#3f51b5}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.indigo.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#3f51b5}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.indigo.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#3f51b5}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.indigo.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.indigo.day .mat-error{color:#b00020}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.indigo.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.indigo.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.indigo.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.indigo.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.indigo.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.indigo.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.indigo.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#3f51b5}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.indigo.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.indigo.day .mat-icon.mat-primary{color:#3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{color:#424242}.rtl-container.indigo.day .mat-icon.mat-warn{color:#b00020}.rtl-container.indigo.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.indigo.day .mat-input-element:disabled,.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.indigo.day .mat-input-element{caret-color:#3f51b5}.rtl-container.indigo.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.indigo.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.indigo.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.indigo.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.indigo.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.indigo.day .mat-list-base .mat-list-item,.rtl-container.indigo.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.indigo.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.indigo.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.indigo.day .mat-list-option:hover,.rtl-container.indigo.day .mat-list-option:focus,.rtl-container.indigo.day .mat-nav-list .mat-list-item:hover,.rtl-container.indigo.day .mat-nav-list .mat-list-item:focus,.rtl-container.indigo.day .mat-action-list .mat-list-item:hover,.rtl-container.indigo.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-list-single-selected-option,.rtl-container.indigo.day .mat-list-single-selected-option:hover,.rtl-container.indigo.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-menu-panel{background:white}.rtl-container.indigo.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.indigo.day .mat-menu-item[disabled],.rtl-container.indigo.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.indigo.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.indigo.day .mat-menu-item .mat-icon-no-color,.rtl-container.indigo.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.indigo.day .mat-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-paginator{background:white}.rtl-container.indigo.day .mat-paginator,.rtl-container.indigo.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.indigo.day .mat-paginator-decrement,.rtl-container.indigo.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.indigo.day .mat-paginator-first,.rtl-container.indigo.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.indigo.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.indigo.day .mat-progress-bar-background{fill:#cbd0e9}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#cbd0e9}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#3f51b5}.rtl-container.indigo.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.indigo.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.indigo.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.indigo.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.indigo.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.indigo.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.indigo.day .mat-progress-spinner circle,.rtl-container.indigo.day .mat-spinner circle{stroke:#3f51b5}.rtl-container.indigo.day .mat-progress-spinner.mat-accent circle,.rtl-container.indigo.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.indigo.day .mat-progress-spinner.mat-warn circle,.rtl-container.indigo.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.indigo.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.indigo.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#3f51b5}.rtl-container.indigo.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.indigo.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#3f51b5}.rtl-container.indigo.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.indigo.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.indigo.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.indigo.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.indigo.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.indigo.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.indigo.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.indigo.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.indigo.day .mat-select-value{color:#000000de}.rtl-container.indigo.day .mat-select-placeholder{color:#0000006b}.rtl-container.indigo.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.indigo.day .mat-select-arrow{color:#0000008a}.rtl-container.indigo.day .mat-select-panel{background:white}.rtl-container.indigo.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#3f51b5}.rtl-container.indigo.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.indigo.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.indigo.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.indigo.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.indigo.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.indigo.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.indigo.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.indigo.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-drawer-side.mat-drawer-end,.rtl-container.indigo.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.indigo.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.indigo.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.indigo.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.indigo.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.indigo.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#3f51b58a}.rtl-container.indigo.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.indigo.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.indigo.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.indigo.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.indigo.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.indigo.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.indigo.day .mat-slider-track-background{background-color:#00000042}.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#3f51b5}.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#3f51b533}.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.indigo.day .mat-slider:hover .mat-slider-track-background,.rtl-container.indigo.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.indigo.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.indigo.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.indigo.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.indigo.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.indigo.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.indigo.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.day .mat-step-header.cdk-keyboard-focused,.rtl-container.indigo.day .mat-step-header.cdk-program-focused,.rtl-container.indigo.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.indigo.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.indigo.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.indigo.day .mat-step-header:hover{background:none}}.rtl-container.indigo.day .mat-step-header .mat-step-label,.rtl-container.indigo.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.indigo.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.indigo.day .mat-step-header .mat-step-icon-selected,.rtl-container.indigo.day .mat-step-header .mat-step-icon-state-done,.rtl-container.indigo.day .mat-step-header .mat-step-icon-state-edit{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.indigo.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.indigo.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.indigo.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.indigo.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.indigo.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.indigo.day .mat-stepper-horizontal,.rtl-container.indigo.day .mat-stepper-vertical{background-color:#fff}.rtl-container.indigo.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.indigo.day .mat-horizontal-stepper-header:before,.rtl-container.indigo.day .mat-horizontal-stepper-header:after,.rtl-container.indigo.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.indigo.day .mat-sort-header-arrow{color:#757575}.rtl-container.indigo.day .mat-tab-nav-bar,.rtl-container.indigo.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.indigo.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.indigo.day .mat-tab-label,.rtl-container.indigo.day .mat-tab-link{color:#000000de}.rtl-container.indigo.day .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.indigo.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.indigo.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.indigo.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#3f51b5}.rtl-container.indigo.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.indigo.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.indigo.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.indigo.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#3f51b5}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.indigo.day .mat-toolbar.mat-primary{background:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.indigo.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.indigo.day .mat-toolbar .mat-form-field-underline,.rtl-container.indigo.day .mat-toolbar .mat-form-field-ripple,.rtl-container.indigo.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.indigo.day .mat-toolbar .mat-form-field-label,.rtl-container.indigo.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.indigo.day .mat-toolbar .mat-select-value,.rtl-container.indigo.day .mat-toolbar .mat-select-arrow,.rtl-container.indigo.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.indigo.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.indigo.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.indigo.day .mat-tree{background:white}.rtl-container.indigo.day .mat-tree-node,.rtl-container.indigo.day .mat-nested-tree-node{color:#000000de}.rtl-container.indigo.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-simple-snackbar-action{color:#424242}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.indigo.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#3f51b5}.rtl-container.indigo.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.indigo.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.indigo.day .mat-tab-label.mat-tab-label-active{color:#3f51b5}.rtl-container.indigo.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#3f51b5}.rtl-container.indigo.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.indigo.day .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.indigo.day .mat-form-field-suffix{color:#0000008a}.rtl-container.indigo.day .mat-stroked-button.mat-primary{border-color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.indigo.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .selected-color{border-color:#9fa8da}.rtl-container.indigo.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.indigo.day .page-title-container,.rtl-container.indigo.day .page-sub-title-container{color:#0000008a}.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.indigo.day .page-title-container .mat-input-element,.rtl-container.indigo.day .page-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-title-container .theme-name,.rtl-container.indigo.day .page-sub-title-container .mat-input-element,.rtl-container.indigo.day .page-sub-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.indigo.day .cc-data-block .cc-data-title{color:#3f51b5}.rtl-container.indigo.day .active-link,.rtl-container.indigo.day .active-link .fa-icon-small{color:#3f51b5;font-weight:500;cursor:pointer;fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#3f51b5;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day svg.top-icon-small{fill:#000000de}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#1a237e}.rtl-container.indigo.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-tab-label,.rtl-container.indigo.day .mat-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-card,.rtl-container.indigo.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.indigo.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-info-value{color:#0000008a}.rtl-container.indigo.day .color-primary{color:#3f51b5!important}.rtl-container.indigo.day .dot-primary{background-color:#3f51b5!important}.rtl-container.indigo.day .dot-primary-lighter{background-color:#9fa8da!important}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-tooltip{font-size:120%}.rtl-container.indigo.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.indigo.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.indigo.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.indigo.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-1{fill:#fff}.rtl-container.indigo.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.indigo.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-6{fill:#fff}.rtl-container.indigo.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-9{fill:#fff}.rtl-container.indigo.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-16{fill:#404040}.rtl-container.indigo.day svg .fill-color-17{fill:#404040}.rtl-container.indigo.day svg .fill-color-18{fill:#000}.rtl-container.indigo.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-24{fill:#000}.rtl-container.indigo.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.day svg .fill-color-27{fill:#000}.rtl-container.indigo.day svg .fill-color-28{fill:#313131}.rtl-container.indigo.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-30{fill:#fff}.rtl-container.indigo.day svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.day svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day svg .fill-color-primary-darker{fill:#3f51b5}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.indigo.day .material-icons.info-icon{color:#0000008a}.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.indigo.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#3f51b5}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#1a237e}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.indigo.day .foreground.mat-progress-spinner circle,.rtl-container.indigo.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.indigo.day .mat-toolbar-row,.rtl-container.indigo.day .mat-toolbar-single-row{height:5rem}.rtl-container.indigo.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day a{color:#3f51b5}.rtl-container.indigo.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.day .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.day .mat-icon-36{color:#0000008a}.rtl-container.indigo.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.indigo.day .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.day .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.day .border-accent{border:1px solid #424242}.rtl-container.indigo.day .border-warn{border:1px solid #b00020}.rtl-container.indigo.day .material-icons.primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.accent{color:#424242}.rtl-container.indigo.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.indigo.day .row-disabled{background-color:gray}.rtl-container.indigo.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.day .mat-menu-panel{min-width:6.4rem}.rtl-container.indigo.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.indigo.day .horizontal-button:hover{background:#9fa8da;color:#424242}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button,.rtl-container.indigo.day .mat-flat-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.indigo.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-header-cell,.rtl-container.indigo.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.indigo.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-table thead tr th{color:#000}.rtl-container.indigo.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.indigo.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.day .more-button{color:#00000061}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.indigo.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.indigo.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.indigo.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.indigo.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.indigo.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.indigo.day .color-warn{color:#b00020}.rtl-container.indigo.day .fill-warn{fill:#b00020}.rtl-container.indigo.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.indigo.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-info a{color:#004085}.rtl-container.indigo.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-warn a{color:#856404}.rtl-container.indigo.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.indigo.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.day .failed-status{color:#b00020}.rtl-container.indigo.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.indigo.day .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.day .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.indigo.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.indigo.day ngx-charts-bar-vertical text,.rtl-container.indigo.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.indigo.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.day .mat-paginator-container{padding:0}.rtl-container.indigo.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.day .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-option{color:#fff}.rtl-container.indigo.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#3f51b5}.rtl-container.indigo.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.indigo.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.indigo.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.indigo.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#3f51b5}.rtl-container.indigo.night .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.indigo.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.indigo.night .mat-app-background,.rtl-container.indigo.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.indigo.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.indigo.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.indigo.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.indigo.night .mat-badge{position:relative}.rtl-container.indigo.night .mat-badge.mat-badge{overflow:visible}.rtl-container.indigo.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.indigo.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.indigo.night .ng-animate-disabled .mat-badge-content,.rtl-container.indigo.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.indigo.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.indigo.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.indigo.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.indigo.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.indigo.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.indigo.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.indigo.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.indigo.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.indigo.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.indigo.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.indigo.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.indigo.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.indigo.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.indigo.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.indigo.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.indigo.night .mat-badge-content{color:#fff;background:#3f51b5}.cdk-high-contrast-active .rtl-container.indigo.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.indigo.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.indigo.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.indigo.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.indigo.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#3f51b5}.rtl-container.indigo.night .mat-button.mat-accent,.rtl-container.indigo.night .mat-icon-button.mat-accent,.rtl-container.indigo.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.indigo.night .mat-button.mat-warn,.rtl-container.indigo.night .mat-icon-button.mat-warn,.rtl-container.indigo.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.indigo.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#3f51b5}.rtl-container.indigo.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.indigo.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.indigo.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.indigo.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.indigo.night .mat-button .mat-ripple-element,.rtl-container.indigo.night .mat-icon-button .mat-ripple-element,.rtl-container.indigo.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.indigo.night .mat-button-focus-overlay{background:white}.rtl-container.indigo.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.indigo.night .mat-flat-button,.rtl-container.indigo.night .mat-raised-button,.rtl-container.indigo.night .mat-fab,.rtl-container.indigo.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.indigo.night .mat-flat-button.mat-primary,.rtl-container.indigo.night .mat-raised-button.mat-primary,.rtl-container.indigo.night .mat-fab.mat-primary,.rtl-container.indigo.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.indigo.night .mat-flat-button.mat-accent,.rtl-container.indigo.night .mat-raised-button.mat-accent,.rtl-container.indigo.night .mat-fab.mat-accent,.rtl-container.indigo.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.indigo.night .mat-flat-button.mat-warn,.rtl-container.indigo.night .mat-raised-button.mat-warn,.rtl-container.indigo.night .mat-fab.mat-warn,.rtl-container.indigo.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.indigo.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.indigo.night .mat-flat-button.mat-primary,.rtl-container.indigo.night .mat-raised-button.mat-primary,.rtl-container.indigo.night .mat-fab.mat-primary,.rtl-container.indigo.night .mat-mini-fab.mat-primary{background-color:#3f51b5}.rtl-container.indigo.night .mat-flat-button.mat-accent,.rtl-container.indigo.night .mat-raised-button.mat-accent,.rtl-container.indigo.night .mat-fab.mat-accent,.rtl-container.indigo.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.indigo.night .mat-flat-button.mat-warn,.rtl-container.indigo.night .mat-raised-button.mat-warn,.rtl-container.indigo.night .mat-fab.mat-warn,.rtl-container.indigo.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.indigo.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.indigo.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.indigo.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.indigo.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.indigo.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.indigo.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.indigo.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.indigo.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.indigo.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.indigo.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.indigo.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.indigo.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.indigo.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.indigo.night .mat-card{background:#202020;color:#fff}.rtl-container.indigo.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.indigo.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.indigo.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.indigo.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#3f51b5}.rtl-container.indigo.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.indigo.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.indigo.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.indigo.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.indigo.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.indigo.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.indigo.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.indigo.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#3f51b5}.rtl-container.indigo.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.indigo.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.indigo.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.indigo.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.indigo.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.indigo.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.indigo.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.indigo.night .mat-table{background:#202020}.rtl-container.indigo.night .mat-table thead,.rtl-container.indigo.night .mat-table tbody,.rtl-container.indigo.night .mat-table tfoot,.rtl-container.indigo.night mat-header-row,.rtl-container.indigo.night mat-row,.rtl-container.indigo.night mat-footer-row,.rtl-container.indigo.night [mat-header-row],.rtl-container.indigo.night [mat-row],.rtl-container.indigo.night [mat-footer-row],.rtl-container.indigo.night .mat-table-sticky{background:inherit}.rtl-container.indigo.night mat-row,.rtl-container.indigo.night mat-header-row,.rtl-container.indigo.night mat-footer-row,.rtl-container.indigo.night th.mat-header-cell,.rtl-container.indigo.night td.mat-cell,.rtl-container.indigo.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-footer-cell{color:#fff}.rtl-container.indigo.night .mat-calendar-arrow{fill:#fff}.rtl-container.indigo.night .mat-datepicker-toggle,.rtl-container.indigo.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.indigo.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.indigo.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-calendar-body-cell-content,.rtl-container.indigo.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.indigo.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.indigo.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.indigo.night .mat-calendar-body-in-range:before{background:rgba(63,81,181,.2)}.rtl-container.indigo.night .mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(63,81,181,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.night .mat-calendar-body-selected{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#3f51b566}.rtl-container.indigo.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}@media (hover: hover){.rtl-container.indigo.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#3f51b54d}}.rtl-container.indigo.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.indigo.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.indigo.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.indigo.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.indigo.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.indigo.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.indigo.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.indigo.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.indigo.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-datepicker-toggle-active{color:#3f51b5}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.indigo.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.indigo.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.indigo.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.indigo.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.indigo.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.indigo.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.indigo.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.indigo.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.indigo.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-label{color:#3f51b5}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.indigo.night .mat-form-field-ripple{background-color:#fff}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#3f51b5}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.indigo.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#3f51b5}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.indigo.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.indigo.night .mat-error{color:#ff343b}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.indigo.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.indigo.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.indigo.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.indigo.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.indigo.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.indigo.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.indigo.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.indigo.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#3f51b5}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.indigo.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.indigo.night .mat-icon.mat-primary{color:#3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{color:#eee}.rtl-container.indigo.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.indigo.night .mat-input-element{caret-color:#3f51b5}.rtl-container.indigo.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.indigo.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.indigo.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.indigo.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.indigo.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.indigo.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.indigo.night .mat-list-base .mat-list-item,.rtl-container.indigo.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.indigo.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.indigo.night .mat-list-option:hover,.rtl-container.indigo.night .mat-list-option:focus,.rtl-container.indigo.night .mat-nav-list .mat-list-item:hover,.rtl-container.indigo.night .mat-nav-list .mat-list-item:focus,.rtl-container.indigo.night .mat-action-list .mat-list-item:hover,.rtl-container.indigo.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-list-single-selected-option,.rtl-container.indigo.night .mat-list-single-selected-option:hover,.rtl-container.indigo.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.indigo.night .mat-menu-panel{background:#202020}.rtl-container.indigo.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.indigo.night .mat-menu-item .mat-icon-no-color,.rtl-container.indigo.night .mat-menu-submenu-icon{color:#fff}.rtl-container.indigo.night .mat-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.indigo.night .mat-paginator{background:#202020}.rtl-container.indigo.night .mat-paginator-decrement,.rtl-container.indigo.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.indigo.night .mat-paginator-first,.rtl-container.indigo.night .mat-paginator-last{border-top:2px solid white}.rtl-container.indigo.night .mat-progress-bar-background{fill:#1a1e37}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#1a1e37}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3f51b5}.rtl-container.indigo.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.indigo.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.indigo.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.indigo.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.indigo.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.indigo.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.indigo.night .mat-progress-spinner circle,.rtl-container.indigo.night .mat-spinner circle{stroke:#3f51b5}.rtl-container.indigo.night .mat-progress-spinner.mat-accent circle,.rtl-container.indigo.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.indigo.night .mat-progress-spinner.mat-warn circle,.rtl-container.indigo.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.indigo.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#3f51b5}.rtl-container.indigo.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.indigo.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#3f51b5}.rtl-container.indigo.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.indigo.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.indigo.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.indigo.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.indigo.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.indigo.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.indigo.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.indigo.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.indigo.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.indigo.night .mat-select-value{color:#fff}.rtl-container.indigo.night .mat-select-panel{background:#202020}.rtl-container.indigo.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.indigo.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#3f51b5}.rtl-container.indigo.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.indigo.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.indigo.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.indigo.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.indigo.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.indigo.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.indigo.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-drawer-side.mat-drawer-end,.rtl-container.indigo.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.indigo.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.indigo.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.indigo.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.indigo.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.indigo.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#3f51b5}.rtl-container.indigo.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#3f51b58a}.rtl-container.indigo.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#3f51b5}.rtl-container.indigo.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.indigo.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.indigo.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.indigo.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.indigo.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.indigo.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#3f51b5}.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#3f51b533}.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.indigo.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.indigo.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.indigo.night .mat-slider:hover .mat-slider-track-background,.rtl-container.indigo.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.indigo.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.indigo.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.indigo.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.indigo.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.indigo.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.indigo.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.indigo.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.indigo.night .mat-step-header.cdk-keyboard-focused,.rtl-container.indigo.night .mat-step-header.cdk-program-focused,.rtl-container.indigo.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.indigo.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.indigo.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.indigo.night .mat-step-header:hover{background:none}}.rtl-container.indigo.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.indigo.night .mat-step-header .mat-step-icon-selected,.rtl-container.indigo.night .mat-step-header .mat-step-icon-state-done,.rtl-container.indigo.night .mat-step-header .mat-step-icon-state-edit{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.indigo.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.indigo.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.indigo.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.indigo.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.indigo.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.indigo.night .mat-stepper-horizontal,.rtl-container.indigo.night .mat-stepper-vertical{background-color:#202020}.rtl-container.indigo.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.indigo.night .mat-horizontal-stepper-header:before,.rtl-container.indigo.night .mat-horizontal-stepper-header:after,.rtl-container.indigo.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.indigo.night .mat-tab-nav-bar,.rtl-container.indigo.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.indigo.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.indigo.night .mat-tab-label,.rtl-container.indigo.night .mat-tab-link{color:#fff}.rtl-container.indigo.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.indigo.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#3f51b5}.rtl-container.indigo.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.indigo.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.indigo.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.indigo.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9fa8da4d}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#3f51b5}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.indigo.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.indigo.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.indigo.night .mat-toolbar.mat-primary{background:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.indigo.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.indigo.night .mat-toolbar .mat-form-field-underline,.rtl-container.indigo.night .mat-toolbar .mat-form-field-ripple,.rtl-container.indigo.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.indigo.night .mat-toolbar .mat-form-field-label,.rtl-container.indigo.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.indigo.night .mat-toolbar .mat-select-value,.rtl-container.indigo.night .mat-toolbar .mat-select-arrow,.rtl-container.indigo.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.indigo.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.indigo.night .mat-tree{background:#202020}.rtl-container.indigo.night .mat-tree-node,.rtl-container.indigo.night .mat-nested-tree-node{color:#fff}.rtl-container.indigo.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-simple-snackbar-action{color:inherit}.rtl-container.indigo.night .mat-primary{color:#536dfe}.rtl-container.indigo.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-tab-label.mat-tab-label-active{color:#536dfe}.rtl-container.indigo.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.indigo.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.indigo.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.indigo.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#536dfe}.rtl-container.indigo.night .cc-data-block .cc-data-title{color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary{border-color:#536dfe;color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.indigo.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.indigo.night .active-link,.rtl-container.indigo.night .active-link .fa-icon-small,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#536dfe;font-weight:500;cursor:pointer;fill:#536dfe}.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover,.rtl-container.indigo.night .mat-select-panel .mat-option:hover,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#536dfe;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.indigo.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.night .mat-tree-node:hover .mat-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.night .page-title-container .page-title-img,.rtl-container.indigo.night svg.top-icon-small{fill:#fff}.rtl-container.indigo.night .selected-color{border-color:#9fa8da}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3949ab}.rtl-container.indigo.night .chart-legend .legend-label:hover,.rtl-container.indigo.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.indigo.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-select-panel{background-color:#262626}.rtl-container.indigo.night .mat-tree{background:#262626}.rtl-container.indigo.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.indigo.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.indigo.night .dashboard-info-title{color:#536dfe}.rtl-container.indigo.night .dashboard-info-value,.rtl-container.indigo.night .dashboard-capacity-header{color:#fff}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.indigo.night .color-primary{color:#536dfe!important}.rtl-container.indigo.night .dot-primary{background-color:#536dfe!important}.rtl-container.indigo.night .dot-primary-lighter{background-color:#3f51b5!important}.rtl-container.indigo.night .mat-stepper-vertical{background-color:#262626}.rtl-container.indigo.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.indigo.night svg .boltz-icon-fill{fill:#fff}.rtl-container.indigo.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.indigo.night svg .fill-color-0{fill:#171717}.rtl-container.indigo.night svg .fill-color-1{fill:#232323}.rtl-container.indigo.night svg .fill-color-2{fill:#222}.rtl-container.indigo.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.indigo.night svg .fill-color-4{fill:#383838}.rtl-container.indigo.night svg .fill-color-5{fill:#555}.rtl-container.indigo.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.indigo.night svg .fill-color-7{fill:#202020}.rtl-container.indigo.night svg .fill-color-8{fill:#242424}.rtl-container.indigo.night svg .fill-color-9{fill:#262626}.rtl-container.indigo.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.indigo.night svg .fill-color-11{fill:#171717}.rtl-container.indigo.night svg .fill-color-12{fill:#ccc}.rtl-container.indigo.night svg .fill-color-13{fill:#adadad}.rtl-container.indigo.night svg .fill-color-14{fill:#ababab}.rtl-container.indigo.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.indigo.night svg .fill-color-16{fill:#707070}.rtl-container.indigo.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.indigo.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.indigo.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.indigo.night svg .fill-color-21{fill:#cacaca}.rtl-container.indigo.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.indigo.night svg .fill-color-23{fill:#777}.rtl-container.indigo.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.indigo.night svg .fill-color-25{fill:#252525}.rtl-container.indigo.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.night svg .fill-color-27{fill:#000}.rtl-container.indigo.night svg .fill-color-28{fill:#313131}.rtl-container.indigo.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.indigo.night svg .fill-color-30{fill:#fff}.rtl-container.indigo.night svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.night svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night svg .fill-color-primary-darker{fill:#536dfe}.rtl-container.indigo.night .mat-select-value,.rtl-container.indigo.night .mat-select-arrow{color:#fff}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.indigo.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.indigo.night .mat-slide-toggle-bar,.rtl-container.indigo.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#536dfe}.rtl-container.indigo.night tr.alert.alert-warn .mat-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-header-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.indigo.night .material-icons.info-icon,.rtl-container.indigo.night .material-icons.info-icon.info-icon-primary{color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#536dfe}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#283593}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#536dfe}.rtl-container.indigo.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.indigo.night .foreground.mat-progress-spinner circle,.rtl-container.indigo.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.indigo.night .mat-toolbar-row,.rtl-container.indigo.night .mat-toolbar-single-row{height:5rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.indigo.night a{color:#3f51b5}.rtl-container.indigo.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.night .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.indigo.night .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.night .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.night .border-accent{border:1px solid #eeeeee}.rtl-container.indigo.night .border-warn{border:1px solid #ff343b}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#eee}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.indigo.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.indigo.night .row-disabled{background-color:gray}.rtl-container.indigo.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.night .mat-menu-panel{min-width:6.4rem}.rtl-container.indigo.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.indigo.night .horizontal-button:hover{background:#9fa8da;color:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button,.rtl-container.indigo.night .mat-flat-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.indigo.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-header-cell,.rtl-container.indigo.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.indigo.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-table thead tr th{color:#fff}.rtl-container.indigo.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.indigo.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.indigo.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.indigo.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.indigo.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.indigo.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.indigo.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.indigo.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.indigo.night .color-warn{color:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.rtl-container.indigo.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.indigo.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-info a{color:#004085}.rtl-container.indigo.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-warn a{color:#856404}.rtl-container.indigo.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.indigo.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.night .failed-status{color:#ff343b}.rtl-container.indigo.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.indigo.night .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.night .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.indigo.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.indigo.night ngx-charts-bar-vertical text,.rtl-container.indigo.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.night .mat-paginator-container{padding:0}.rtl-container.indigo.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.night .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.small.small .mat-header-cell{font-weight:700}.rtl-container.green.small.small .mr-4{margin-right:1rem!important}.rtl-container.green.small.small .mat-menu-item,.rtl-container.green.small.small .mat-tree .mat-tree-node,.rtl-container.green.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.green.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.green.small.small .genseed-message,.rtl-container.green.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.green.small.small .fa-icon-small,.rtl-container.green.small.small .top-icon-small{font-size:1.44rem}.rtl-container.green.small.small .page-title-container,.rtl-container.green.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.green.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.green.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.green.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.green.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.green.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.green.small.small .material-icons,.rtl-container.green.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.green.small.small .mat-expansion-panel-header,.rtl-container.green.small.small .mat-menu-item,.rtl-container.green.small.small .mat-list .mat-list-item,.rtl-container.green.small.small .mat-nav-list .mat-list-item,.rtl-container.green.small.small .mat-option,.rtl-container.green.small.small .mat-select,.rtl-container.green.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.green.small.small .logo{font-size:2.4rem}.rtl-container.green.small.small .font-60-percent{font-size:.72rem}.rtl-container.green.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.green.small.small .icon-large{font-size:6rem}.rtl-container.green.small.small .icon-small{font-size:1.8rem!important}.rtl-container.green.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.green.small.small .size-triple{font-size:3.6rem}.rtl-container.green.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.green.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.small.medium .mat-header-cell{font-weight:700}.rtl-container.green.small.medium .mat-tree .mat-tree-node,.rtl-container.green.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.green.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.green.small.medium .genseed-message,.rtl-container.green.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.green.small.medium .page-title-container,.rtl-container.green.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.green.small.medium .fa-icon-small,.rtl-container.green.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.green.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.green.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.green.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.green.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.green.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.green.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.green.small.medium .material-icons{font-size:2.8rem}.rtl-container.green.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.green.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.green.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.green.small.medium .mat-expansion-panel-header,.rtl-container.green.small.medium .mat-menu-item,.rtl-container.green.small.medium .mat-list .mat-list-item,.rtl-container.green.small.medium .mat-nav-list .mat-list-item,.rtl-container.green.small.medium .mat-option,.rtl-container.green.small.medium .mat-select,.rtl-container.green.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.green.small.medium .logo{font-size:2.8rem}.rtl-container.green.small.medium .font-60-percent{font-size:.84rem}.rtl-container.green.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.green.small.medium .icon-large{font-size:7rem}.rtl-container.green.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.green.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.green.small.medium .size-triple{font-size:4.2rem}.rtl-container.green.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.green.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.small.large .mat-header-cell{font-weight:800}.rtl-container.green.small.large .mat-tree .mat-tree-node,.rtl-container.green.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.green.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.green.small.large .genseed-message,.rtl-container.green.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.green.small.large .page-title-container,.rtl-container.green.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.green.small.large .fa-icon-small,.rtl-container.green.small.large .top-icon-small,.rtl-container.green.small.large .modal-info-header{font-size:1.92rem}.rtl-container.green.small.large .top-toolbar-icon.icon-pinned,.rtl-container.green.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.green.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.green.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.green.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.green.small.large .material-icons{font-size:4rem}.rtl-container.green.small.large .mat-expansion-panel-header,.rtl-container.green.small.large .mat-menu-item,.rtl-container.green.small.large .mat-list .mat-list-item,.rtl-container.green.small.large .mat-nav-list .mat-list-item,.rtl-container.green.small.large .mat-option,.rtl-container.green.small.large .mat-select,.rtl-container.green.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.green.small.large .logo{font-size:3.2rem}.rtl-container.green.small.large .font-60-percent{font-size:.96rem}.rtl-container.green.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.green.small.large .icon-large{font-size:8rem}.rtl-container.green.small.large .icon-small{font-size:2.4rem!important}.rtl-container.green.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.green.small.large .size-triple{font-size:4.8rem}.rtl-container.green.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.green.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.small .mat-icon.material-icons:focus{outline:none}.rtl-container.green.small .mat-flat-button.mat-primary:focus,.rtl-container.green.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.green.medium.small .mat-header-cell{font-weight:700}.rtl-container.green.medium.small .mr-4{margin-right:1rem!important}.rtl-container.green.medium.small .mat-menu-item,.rtl-container.green.medium.small .mat-tree .mat-tree-node,.rtl-container.green.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.green.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.green.medium.small .genseed-message,.rtl-container.green.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.green.medium.small .fa-icon-small,.rtl-container.green.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.green.medium.small .page-title-container,.rtl-container.green.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.green.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.green.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.green.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.green.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.green.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.green.medium.small .material-icons,.rtl-container.green.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.green.medium.small .mat-expansion-panel-header,.rtl-container.green.medium.small .mat-menu-item,.rtl-container.green.medium.small .mat-list .mat-list-item,.rtl-container.green.medium.small .mat-nav-list .mat-list-item,.rtl-container.green.medium.small .mat-option,.rtl-container.green.medium.small .mat-select,.rtl-container.green.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.green.medium.small .logo{font-size:2.4rem}.rtl-container.green.medium.small .font-60-percent{font-size:.72rem}.rtl-container.green.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.green.medium.small .icon-large{font-size:6rem}.rtl-container.green.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.green.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.green.medium.small .size-triple{font-size:3.6rem}.rtl-container.green.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.green.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.medium.medium .mat-header-cell{font-weight:700}.rtl-container.green.medium.medium .mat-tree .mat-tree-node,.rtl-container.green.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.green.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.green.medium.medium .genseed-message,.rtl-container.green.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.green.medium.medium .page-title-container,.rtl-container.green.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.green.medium.medium .fa-icon-small,.rtl-container.green.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.green.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.green.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.green.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.green.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.green.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.green.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.green.medium.medium .material-icons{font-size:2.8rem}.rtl-container.green.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.green.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.green.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.green.medium.medium .mat-expansion-panel-header,.rtl-container.green.medium.medium .mat-menu-item,.rtl-container.green.medium.medium .mat-list .mat-list-item,.rtl-container.green.medium.medium .mat-nav-list .mat-list-item,.rtl-container.green.medium.medium .mat-option,.rtl-container.green.medium.medium .mat-select,.rtl-container.green.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.green.medium.medium .logo{font-size:2.8rem}.rtl-container.green.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.green.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.green.medium.medium .icon-large{font-size:7rem}.rtl-container.green.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.green.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.green.medium.medium .size-triple{font-size:4.2rem}.rtl-container.green.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.green.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.medium.large .mat-header-cell{font-weight:800}.rtl-container.green.medium.large .mat-tree .mat-tree-node,.rtl-container.green.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.green.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.green.medium.large .genseed-message,.rtl-container.green.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.green.medium.large .page-title-container,.rtl-container.green.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.green.medium.large .fa-icon-small,.rtl-container.green.medium.large .top-icon-small,.rtl-container.green.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.green.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.green.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.green.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.green.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.green.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.green.medium.large .material-icons{font-size:4rem}.rtl-container.green.medium.large .mat-expansion-panel-header,.rtl-container.green.medium.large .mat-menu-item,.rtl-container.green.medium.large .mat-list .mat-list-item,.rtl-container.green.medium.large .mat-nav-list .mat-list-item,.rtl-container.green.medium.large .mat-option,.rtl-container.green.medium.large .mat-select,.rtl-container.green.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.green.medium.large .logo{font-size:3.2rem}.rtl-container.green.medium.large .font-60-percent{font-size:.96rem}.rtl-container.green.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.green.medium.large .icon-large{font-size:8rem}.rtl-container.green.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.green.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.green.medium.large .size-triple{font-size:4.8rem}.rtl-container.green.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.green.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.green.medium .mat-flat-button.mat-primary:focus,.rtl-container.green.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.green.large.small .mat-header-cell{font-weight:700}.rtl-container.green.large.small .mr-4{margin-right:1rem!important}.rtl-container.green.large.small .mat-menu-item,.rtl-container.green.large.small .mat-tree .mat-tree-node,.rtl-container.green.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.green.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.green.large.small .genseed-message,.rtl-container.green.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.green.large.small .fa-icon-small,.rtl-container.green.large.small .top-icon-small{font-size:1.44rem}.rtl-container.green.large.small .page-title-container,.rtl-container.green.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.green.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.green.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.green.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.green.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.green.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.green.large.small .material-icons,.rtl-container.green.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.green.large.small .mat-expansion-panel-header,.rtl-container.green.large.small .mat-menu-item,.rtl-container.green.large.small .mat-list .mat-list-item,.rtl-container.green.large.small .mat-nav-list .mat-list-item,.rtl-container.green.large.small .mat-option,.rtl-container.green.large.small .mat-select,.rtl-container.green.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.green.large.small .logo{font-size:2.4rem}.rtl-container.green.large.small .font-60-percent{font-size:.72rem}.rtl-container.green.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.green.large.small .icon-large{font-size:6rem}.rtl-container.green.large.small .icon-small{font-size:1.8rem!important}.rtl-container.green.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.green.large.small .size-triple{font-size:3.6rem}.rtl-container.green.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.green.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.large.medium .mat-header-cell{font-weight:700}.rtl-container.green.large.medium .mat-tree .mat-tree-node,.rtl-container.green.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.green.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.green.large.medium .genseed-message,.rtl-container.green.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.green.large.medium .page-title-container,.rtl-container.green.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.green.large.medium .fa-icon-small,.rtl-container.green.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.green.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.green.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.green.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.green.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.green.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.green.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.green.large.medium .material-icons{font-size:2.8rem}.rtl-container.green.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.green.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.green.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.green.large.medium .mat-expansion-panel-header,.rtl-container.green.large.medium .mat-menu-item,.rtl-container.green.large.medium .mat-list .mat-list-item,.rtl-container.green.large.medium .mat-nav-list .mat-list-item,.rtl-container.green.large.medium .mat-option,.rtl-container.green.large.medium .mat-select,.rtl-container.green.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.green.large.medium .logo{font-size:2.8rem}.rtl-container.green.large.medium .font-60-percent{font-size:.84rem}.rtl-container.green.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.green.large.medium .icon-large{font-size:7rem}.rtl-container.green.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.green.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.green.large.medium .size-triple{font-size:4.2rem}.rtl-container.green.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.green.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.large.large .mat-header-cell{font-weight:800}.rtl-container.green.large.large .mat-tree .mat-tree-node,.rtl-container.green.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.green.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.green.large.large .genseed-message,.rtl-container.green.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.green.large.large .page-title-container,.rtl-container.green.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.green.large.large .fa-icon-small,.rtl-container.green.large.large .top-icon-small,.rtl-container.green.large.large .modal-info-header{font-size:1.92rem}.rtl-container.green.large.large .top-toolbar-icon.icon-pinned,.rtl-container.green.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.green.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.green.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.green.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.green.large.large .material-icons{font-size:4rem}.rtl-container.green.large.large .mat-expansion-panel-header,.rtl-container.green.large.large .mat-menu-item,.rtl-container.green.large.large .mat-list .mat-list-item,.rtl-container.green.large.large .mat-nav-list .mat-list-item,.rtl-container.green.large.large .mat-option,.rtl-container.green.large.large .mat-select,.rtl-container.green.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.green.large.large .logo{font-size:3.2rem}.rtl-container.green.large.large .font-60-percent{font-size:.96rem}.rtl-container.green.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.green.large.large .icon-large{font-size:8rem}.rtl-container.green.large.large .icon-small{font-size:2.4rem!important}.rtl-container.green.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.green.large.large .size-triple{font-size:4.8rem}.rtl-container.green.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.green.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.green.large .mat-icon.material-icons:focus{outline:none}.rtl-container.green.large .mat-flat-button.mat-primary:focus,.rtl-container.green.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.green.day .mat-ripple-element{background-color:#0000001a}.rtl-container.green.day .mat-option{color:#000000de}.rtl-container.green.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.green.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#185127}.rtl-container.green.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.green.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.green.day .mat-optgroup-label{color:#0000008a}.rtl-container.green.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.green.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.green.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.green.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#185127}.rtl-container.green.day .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.green.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.green.day .mat-app-background,.rtl-container.green.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.green.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.green.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.green.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.green.day .mat-badge{position:relative}.rtl-container.green.day .mat-badge.mat-badge{overflow:visible}.rtl-container.green.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.green.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.green.day .ng-animate-disabled .mat-badge-content,.rtl-container.green.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.green.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.green.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.green.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.green.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.green.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.green.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.green.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.green.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.green.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.green.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.green.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.green.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.green.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.green.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.green.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.green.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.green.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.green.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.green.day .mat-badge-content{color:#fff;background:#185127}.cdk-high-contrast-active .rtl-container.green.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.green.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.green.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.green.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.green.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.green.day .mat-button.mat-primary,.rtl-container.green.day .mat-icon-button.mat-primary,.rtl-container.green.day .mat-stroked-button.mat-primary{color:#185127}.rtl-container.green.day .mat-button.mat-accent,.rtl-container.green.day .mat-icon-button.mat-accent,.rtl-container.green.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.green.day .mat-button.mat-warn,.rtl-container.green.day .mat-icon-button.mat-warn,.rtl-container.green.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.green.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.green.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#185127}.rtl-container.green.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.green.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.green.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.green.day .mat-button .mat-ripple-element,.rtl-container.green.day .mat-icon-button .mat-ripple-element,.rtl-container.green.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.green.day .mat-button-focus-overlay{background:black}.rtl-container.green.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.green.day .mat-flat-button,.rtl-container.green.day .mat-raised-button,.rtl-container.green.day .mat-fab,.rtl-container.green.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.green.day .mat-flat-button.mat-primary,.rtl-container.green.day .mat-raised-button.mat-primary,.rtl-container.green.day .mat-fab.mat-primary,.rtl-container.green.day .mat-mini-fab.mat-primary,.rtl-container.green.day .mat-flat-button.mat-accent,.rtl-container.green.day .mat-raised-button.mat-accent,.rtl-container.green.day .mat-fab.mat-accent,.rtl-container.green.day .mat-mini-fab.mat-accent,.rtl-container.green.day .mat-flat-button.mat-warn,.rtl-container.green.day .mat-raised-button.mat-warn,.rtl-container.green.day .mat-fab.mat-warn,.rtl-container.green.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.green.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.green.day .mat-flat-button.mat-primary,.rtl-container.green.day .mat-raised-button.mat-primary,.rtl-container.green.day .mat-fab.mat-primary,.rtl-container.green.day .mat-mini-fab.mat-primary{background-color:#185127}.rtl-container.green.day .mat-flat-button.mat-accent,.rtl-container.green.day .mat-raised-button.mat-accent,.rtl-container.green.day .mat-fab.mat-accent,.rtl-container.green.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.green.day .mat-flat-button.mat-warn,.rtl-container.green.day .mat-raised-button.mat-warn,.rtl-container.green.day .mat-fab.mat-warn,.rtl-container.green.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.green.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.green.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.green.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.green.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.green.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.green.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.green.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.green.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.green.day .mat-button-toggle{color:#00000061}.rtl-container.green.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.green.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.green.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.green.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.green.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.green.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.green.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.green.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.green.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.green.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.green.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.green.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.green.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.green.day .mat-card{background:white;color:#000000de}.rtl-container.green.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-card-subtitle{color:#0000008a}.rtl-container.green.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.green.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.green.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.green.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.green.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#185127}.rtl-container.green.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.green.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.green.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.green.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.green.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.green.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.green.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.green.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.green.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#185127}.rtl-container.green.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.green.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.green.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.green.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.green.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.green.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.day .mat-table{background:white}.rtl-container.green.day .mat-table thead,.rtl-container.green.day .mat-table tbody,.rtl-container.green.day .mat-table tfoot,.rtl-container.green.day mat-header-row,.rtl-container.green.day mat-row,.rtl-container.green.day mat-footer-row,.rtl-container.green.day [mat-header-row],.rtl-container.green.day [mat-row],.rtl-container.green.day [mat-footer-row],.rtl-container.green.day .mat-table-sticky{background:inherit}.rtl-container.green.day mat-row,.rtl-container.green.day mat-header-row,.rtl-container.green.day mat-footer-row,.rtl-container.green.day th.mat-header-cell,.rtl-container.green.day td.mat-cell,.rtl-container.green.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.green.day .mat-header-cell{color:#0000008a}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-footer-cell{color:#000000de}.rtl-container.green.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.green.day .mat-datepicker-toggle,.rtl-container.green.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.green.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.green.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-calendar-table-header,.rtl-container.green.day .mat-calendar-body-label{color:#0000008a}.rtl-container.green.day .mat-calendar-body-cell-content,.rtl-container.green.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.green.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.green.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.green.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.green.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.green.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.green.day .mat-calendar-body-in-range:before{background:rgba(24,81,39,.2)}.rtl-container.green.day .mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.day .mat-calendar-body-selected{background-color:#185127;color:#fff}.rtl-container.green.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#18512766}.rtl-container.green.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}@media (hover: hover){.rtl-container.green.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}}.rtl-container.green.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.green.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.green.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.green.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-datepicker-toggle-active{color:#185127}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.green.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.green.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.green.day .mat-divider{border-top-color:#0000001f}.rtl-container.green.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.green.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.green.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-action-row{border-top-color:#0000001f}.rtl-container.green.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.green.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.green.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.green.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.green.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.green.day .mat-expansion-panel-header-description,.rtl-container.green.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.green.day .mat-form-field-label,.rtl-container.green.day .mat-hint{color:#0009}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-label{color:#185127}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.green.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.green.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#185127}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.green.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#185127}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.green.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.green.day .mat-error{color:#b00020}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.green.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.green.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.green.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.green.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.green.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.green.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.green.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.green.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#185127}.rtl-container.green.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.green.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.green.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.green.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.green.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.green.day .mat-icon.mat-primary{color:#185127}.rtl-container.green.day .mat-icon.mat-accent{color:#424242}.rtl-container.green.day .mat-icon.mat-warn{color:#b00020}.rtl-container.green.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.green.day .mat-input-element:disabled,.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.green.day .mat-input-element{caret-color:#185127}.rtl-container.green.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.green.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.green.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.green.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.green.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.green.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.green.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.green.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.green.day .mat-list-base .mat-list-item,.rtl-container.green.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.green.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.green.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.green.day .mat-list-option:hover,.rtl-container.green.day .mat-list-option:focus,.rtl-container.green.day .mat-nav-list .mat-list-item:hover,.rtl-container.green.day .mat-nav-list .mat-list-item:focus,.rtl-container.green.day .mat-action-list .mat-list-item:hover,.rtl-container.green.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-list-single-selected-option,.rtl-container.green.day .mat-list-single-selected-option:hover,.rtl-container.green.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-menu-panel{background:white}.rtl-container.green.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.green.day .mat-menu-item[disabled],.rtl-container.green.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.green.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.green.day .mat-menu-item .mat-icon-no-color,.rtl-container.green.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.green.day .mat-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-paginator{background:white}.rtl-container.green.day .mat-paginator,.rtl-container.green.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.green.day .mat-paginator-decrement,.rtl-container.green.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.green.day .mat-paginator-first,.rtl-container.green.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.green.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.green.day .mat-progress-bar-background{fill:#c2d0c5}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#c2d0c5}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#185127}.rtl-container.green.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.green.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.green.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.green.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.green.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.green.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.green.day .mat-progress-spinner circle,.rtl-container.green.day .mat-spinner circle{stroke:#185127}.rtl-container.green.day .mat-progress-spinner.mat-accent circle,.rtl-container.green.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.green.day .mat-progress-spinner.mat-warn circle,.rtl-container.green.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.green.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.green.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#185127}.rtl-container.green.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.green.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#185127}.rtl-container.green.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.green.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.green.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.green.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.green.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.green.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.green.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.green.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.green.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.green.day .mat-select-value{color:#000000de}.rtl-container.green.day .mat-select-placeholder{color:#0000006b}.rtl-container.green.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.green.day .mat-select-arrow{color:#0000008a}.rtl-container.green.day .mat-select-panel{background:white}.rtl-container.green.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#185127}.rtl-container.green.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.green.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.green.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.green.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.green.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.green.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.green.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.green.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.green.day .mat-drawer-side.mat-drawer-end,.rtl-container.green.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.green.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.green.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.green.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.green.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.green.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.green.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1851278a}.rtl-container.green.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.green.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.green.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.green.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.green.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.green.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.green.day .mat-slider-track-background{background-color:#00000042}.rtl-container.green.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#185127}.rtl-container.green.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#18512733}.rtl-container.green.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.green.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.green.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.green.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.green.day .mat-slider:hover .mat-slider-track-background,.rtl-container.green.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.green.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.green.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.green.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.green.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.green.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.green.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.green.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.green.day .mat-step-header.cdk-keyboard-focused,.rtl-container.green.day .mat-step-header.cdk-program-focused,.rtl-container.green.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.green.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.green.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.green.day .mat-step-header:hover{background:none}}.rtl-container.green.day .mat-step-header .mat-step-label,.rtl-container.green.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.green.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.green.day .mat-step-header .mat-step-icon-selected,.rtl-container.green.day .mat-step-header .mat-step-icon-state-done,.rtl-container.green.day .mat-step-header .mat-step-icon-state-edit{background-color:#185127;color:#fff}.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.green.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.green.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.green.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.green.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.green.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.green.day .mat-stepper-horizontal,.rtl-container.green.day .mat-stepper-vertical{background-color:#fff}.rtl-container.green.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.green.day .mat-horizontal-stepper-header:before,.rtl-container.green.day .mat-horizontal-stepper-header:after,.rtl-container.green.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.green.day .mat-sort-header-arrow{color:#757575}.rtl-container.green.day .mat-tab-nav-bar,.rtl-container.green.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.green.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.green.day .mat-tab-label,.rtl-container.green.day .mat-tab-link{color:#000000de}.rtl-container.green.day .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.green.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.green.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.green.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#185127}.rtl-container.green.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.green.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.green.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.green.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#185127}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.green.day .mat-toolbar.mat-primary{background:#185127;color:#fff}.rtl-container.green.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.green.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.green.day .mat-toolbar .mat-form-field-underline,.rtl-container.green.day .mat-toolbar .mat-form-field-ripple,.rtl-container.green.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.green.day .mat-toolbar .mat-form-field-label,.rtl-container.green.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.green.day .mat-toolbar .mat-select-value,.rtl-container.green.day .mat-toolbar .mat-select-arrow,.rtl-container.green.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.green.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.green.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.green.day .mat-tree{background:white}.rtl-container.green.day .mat-tree-node,.rtl-container.green.day .mat-nested-tree-node{color:#000000de}.rtl-container.green.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-simple-snackbar-action{color:#424242}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.green.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#185127}.rtl-container.green.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.green.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.green.day .mat-tab-label.mat-tab-label-active{color:#185127}.rtl-container.green.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#185127}.rtl-container.green.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.green.day .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.green.day .mat-form-field-suffix{color:#0000008a}.rtl-container.green.day .mat-stroked-button.mat-primary{border-color:#185127}.rtl-container.green.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.green.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.day .selected-color{border-color:#5d8568}.rtl-container.green.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.green.day .page-title-container,.rtl-container.green.day .page-sub-title-container{color:#0000008a}.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.green.day .page-title-container .mat-input-element,.rtl-container.green.day .page-title-container .mat-radio-label-content,.rtl-container.green.day .page-title-container .theme-name,.rtl-container.green.day .page-sub-title-container .mat-input-element,.rtl-container.green.day .page-sub-title-container .mat-radio-label-content,.rtl-container.green.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.green.day .cc-data-block .cc-data-title{color:#185127}.rtl-container.green.day .active-link,.rtl-container.green.day .active-link .fa-icon-small{color:#185127;font-weight:500;cursor:pointer;fill:#185127}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#185127;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#185127}.rtl-container.green.day .mat-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day svg.top-icon-small{fill:#000000de}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#08270e}.rtl-container.green.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.green.day .mat-tab-label,.rtl-container.green.day .mat-tab-link{color:#0000008a}.rtl-container.green.day .mat-card,.rtl-container.green.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.green.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-info-value{color:#0000008a}.rtl-container.green.day .color-primary{color:#185127!important}.rtl-container.green.day .dot-primary{background-color:#185127!important}.rtl-container.green.day .dot-primary-lighter{background-color:#5d8568!important}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-tooltip{font-size:120%}.rtl-container.green.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.green.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.green.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.green.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-1{fill:#fff}.rtl-container.green.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.green.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-6{fill:#fff}.rtl-container.green.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-9{fill:#fff}.rtl-container.green.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-16{fill:#404040}.rtl-container.green.day svg .fill-color-17{fill:#404040}.rtl-container.green.day svg .fill-color-18{fill:#000}.rtl-container.green.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-24{fill:#000}.rtl-container.green.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.day svg .fill-color-27{fill:#000}.rtl-container.green.day svg .fill-color-28{fill:#313131}.rtl-container.green.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-30{fill:#fff}.rtl-container.green.day svg .fill-color-31{fill:#185127}.rtl-container.green.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.day svg .fill-color-primary{fill:#185127}.rtl-container.green.day svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.day svg .fill-color-primary-darker{fill:#185127}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.green.day .material-icons.info-icon{color:#0000008a}.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.green.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#185127}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#08270e}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#8ca893}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.green.day .foreground.mat-progress-spinner circle,.rtl-container.green.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.green.day .mat-toolbar-row,.rtl-container.green.day .mat-toolbar-single-row{height:5rem}.rtl-container.green.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day a{color:#185127}.rtl-container.green.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.day .h-active-link{border-bottom:2px solid white}.rtl-container.green.day .mat-icon-36{color:#0000008a}.rtl-container.green.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.green.day .genseed-message{width:10%;color:#185127}.rtl-container.green.day .border-primary{border:1px solid #185127}.rtl-container.green.day .border-accent{border:1px solid #424242}.rtl-container.green.day .border-warn{border:1px solid #b00020}.rtl-container.green.day .material-icons.primary{color:#185127}.rtl-container.green.day .material-icons.accent{color:#424242}.rtl-container.green.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.green.day .row-disabled{background-color:gray}.rtl-container.green.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.day .mat-menu-panel{min-width:6.4rem}.rtl-container.green.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.green.day .horizontal-button:hover{background:#5d8568;color:#424242}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#185127}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button,.rtl-container.green.day .mat-flat-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.green.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-header-cell,.rtl-container.green.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.green.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-table thead tr th{color:#000}.rtl-container.green.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.green.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.green.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.day .more-button{color:#00000061}.rtl-container.green.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.green.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.green.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.green.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.green.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.green.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.green.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.green.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.green.day .color-warn{color:#b00020}.rtl-container.green.day .fill-warn{fill:#b00020}.rtl-container.green.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.green.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-info a{color:#004085}.rtl-container.green.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-warn a{color:#856404}.rtl-container.green.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.day .help-expansion .mat-expansion-panel-header,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-indicator:after,.rtl-container.green.day .help-expansion .mat-expansion-panel-content,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.green.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.day .failed-status{color:#b00020}.rtl-container.green.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.green.day .svg-fill-primary{fill:#185127}.rtl-container.green.day .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.green.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.green.day ngx-charts-bar-vertical text,.rtl-container.green.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.green.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.day .mat-paginator-container{padding:0}.rtl-container.green.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.day .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-option{color:#fff}.rtl-container.green.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#185127}.rtl-container.green.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.green.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.green.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.green.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#185127}.rtl-container.green.night .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.green.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.green.night .mat-app-background,.rtl-container.green.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.green.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.green.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.green.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.green.night .mat-badge{position:relative}.rtl-container.green.night .mat-badge.mat-badge{overflow:visible}.rtl-container.green.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.green.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.green.night .ng-animate-disabled .mat-badge-content,.rtl-container.green.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.green.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.green.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.green.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.green.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.green.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.green.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.green.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.green.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.green.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.green.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.green.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.green.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.green.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.green.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.green.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.green.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.green.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.green.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.green.night .mat-badge-content{color:#fff;background:#185127}.cdk-high-contrast-active .rtl-container.green.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.green.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.green.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.green.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.green.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#185127}.rtl-container.green.night .mat-button.mat-accent,.rtl-container.green.night .mat-icon-button.mat-accent,.rtl-container.green.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.green.night .mat-button.mat-warn,.rtl-container.green.night .mat-icon-button.mat-warn,.rtl-container.green.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.green.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.green.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#185127}.rtl-container.green.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.green.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.green.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.green.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.green.night .mat-button .mat-ripple-element,.rtl-container.green.night .mat-icon-button .mat-ripple-element,.rtl-container.green.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.green.night .mat-button-focus-overlay{background:white}.rtl-container.green.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.green.night .mat-flat-button,.rtl-container.green.night .mat-raised-button,.rtl-container.green.night .mat-fab,.rtl-container.green.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.green.night .mat-flat-button.mat-primary,.rtl-container.green.night .mat-raised-button.mat-primary,.rtl-container.green.night .mat-fab.mat-primary,.rtl-container.green.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.green.night .mat-flat-button.mat-accent,.rtl-container.green.night .mat-raised-button.mat-accent,.rtl-container.green.night .mat-fab.mat-accent,.rtl-container.green.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.green.night .mat-flat-button.mat-warn,.rtl-container.green.night .mat-raised-button.mat-warn,.rtl-container.green.night .mat-fab.mat-warn,.rtl-container.green.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.green.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.green.night .mat-flat-button.mat-primary,.rtl-container.green.night .mat-raised-button.mat-primary,.rtl-container.green.night .mat-fab.mat-primary,.rtl-container.green.night .mat-mini-fab.mat-primary{background-color:#185127}.rtl-container.green.night .mat-flat-button.mat-accent,.rtl-container.green.night .mat-raised-button.mat-accent,.rtl-container.green.night .mat-fab.mat-accent,.rtl-container.green.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.green.night .mat-flat-button.mat-warn,.rtl-container.green.night .mat-raised-button.mat-warn,.rtl-container.green.night .mat-fab.mat-warn,.rtl-container.green.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.green.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.green.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.green.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.green.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.green.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.green.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.green.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.green.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.green.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.green.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.green.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.green.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.green.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.green.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.green.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.green.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.green.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.green.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.green.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.green.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.green.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.green.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.green.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.green.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.green.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.green.night .mat-card{background:#202020;color:#fff}.rtl-container.green.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.green.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.green.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.green.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#185127}.rtl-container.green.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.green.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.green.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.green.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.green.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.green.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.green.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.green.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#185127}.rtl-container.green.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.green.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.green.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.green.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.green.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.green.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.green.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.green.night .mat-table{background:#202020}.rtl-container.green.night .mat-table thead,.rtl-container.green.night .mat-table tbody,.rtl-container.green.night .mat-table tfoot,.rtl-container.green.night mat-header-row,.rtl-container.green.night mat-row,.rtl-container.green.night mat-footer-row,.rtl-container.green.night [mat-header-row],.rtl-container.green.night [mat-row],.rtl-container.green.night [mat-footer-row],.rtl-container.green.night .mat-table-sticky{background:inherit}.rtl-container.green.night mat-row,.rtl-container.green.night mat-header-row,.rtl-container.green.night mat-footer-row,.rtl-container.green.night th.mat-header-cell,.rtl-container.green.night td.mat-cell,.rtl-container.green.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-footer-cell{color:#fff}.rtl-container.green.night .mat-calendar-arrow{fill:#fff}.rtl-container.green.night .mat-datepicker-toggle,.rtl-container.green.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.green.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.green.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.green.night .mat-calendar-body-cell-content,.rtl-container.green.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.green.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.green.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.green.night .mat-calendar-body-in-range:before{background:rgba(24,81,39,.2)}.rtl-container.green.night .mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(24,81,39,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.night .mat-calendar-body-selected{background-color:#185127;color:#fff}.rtl-container.green.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#18512766}.rtl-container.green.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}@media (hover: hover){.rtl-container.green.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#1851274d}}.rtl-container.green.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.green.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.green.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.green.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.green.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.green.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.green.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.green.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.green.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-datepicker-toggle-active{color:#185127}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.green.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.green.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.green.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.green.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.green.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.green.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.green.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.green.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.green.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.green.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-label{color:#185127}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.green.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.green.night .mat-form-field-ripple{background-color:#fff}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#185127}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.green.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#185127}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.green.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.green.night .mat-error{color:#ff343b}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.green.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.green.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.green.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.green.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.green.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.green.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.green.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.green.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.green.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#185127}.rtl-container.green.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.green.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.green.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.green.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.green.night .mat-icon.mat-primary{color:#185127}.rtl-container.green.night .mat-icon.mat-accent{color:#eee}.rtl-container.green.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.green.night .mat-input-element{caret-color:#185127}.rtl-container.green.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.green.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.green.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.green.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.green.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.green.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.green.night .mat-list-base .mat-list-item,.rtl-container.green.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.green.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.green.night .mat-list-option:hover,.rtl-container.green.night .mat-list-option:focus,.rtl-container.green.night .mat-nav-list .mat-list-item:hover,.rtl-container.green.night .mat-nav-list .mat-list-item:focus,.rtl-container.green.night .mat-action-list .mat-list-item:hover,.rtl-container.green.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-list-single-selected-option,.rtl-container.green.night .mat-list-single-selected-option:hover,.rtl-container.green.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.green.night .mat-menu-panel{background:#202020}.rtl-container.green.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.green.night .mat-menu-item .mat-icon-no-color,.rtl-container.green.night .mat-menu-submenu-icon{color:#fff}.rtl-container.green.night .mat-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.green.night .mat-paginator{background:#202020}.rtl-container.green.night .mat-paginator-decrement,.rtl-container.green.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.green.night .mat-paginator-first,.rtl-container.green.night .mat-paginator-last{border-top:2px solid white}.rtl-container.green.night .mat-progress-bar-background{fill:#101e14}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#101e14}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#185127}.rtl-container.green.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.green.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.green.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.green.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.green.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.green.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.green.night .mat-progress-spinner circle,.rtl-container.green.night .mat-spinner circle{stroke:#185127}.rtl-container.green.night .mat-progress-spinner.mat-accent circle,.rtl-container.green.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.green.night .mat-progress-spinner.mat-warn circle,.rtl-container.green.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.green.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#185127}.rtl-container.green.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.green.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#185127}.rtl-container.green.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.green.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.green.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.green.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.green.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.green.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.green.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.green.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.green.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.green.night .mat-select-value{color:#fff}.rtl-container.green.night .mat-select-panel{background:#202020}.rtl-container.green.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.green.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#185127}.rtl-container.green.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.green.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.green.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.green.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.green.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.green.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.green.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.green.night .mat-drawer-side.mat-drawer-end,.rtl-container.green.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.green.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.green.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.green.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.green.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.green.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.green.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#185127}.rtl-container.green.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#1851278a}.rtl-container.green.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#185127}.rtl-container.green.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.green.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.green.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.green.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.green.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.green.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.green.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#185127}.rtl-container.green.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#18512733}.rtl-container.green.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.green.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.green.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.green.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.green.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.green.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.green.night .mat-slider:hover .mat-slider-track-background,.rtl-container.green.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.green.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.green.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.green.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.green.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.green.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.green.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.green.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.green.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.green.night .mat-step-header.cdk-keyboard-focused,.rtl-container.green.night .mat-step-header.cdk-program-focused,.rtl-container.green.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.green.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.green.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.green.night .mat-step-header:hover{background:none}}.rtl-container.green.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.green.night .mat-step-header .mat-step-icon-selected,.rtl-container.green.night .mat-step-header .mat-step-icon-state-done,.rtl-container.green.night .mat-step-header .mat-step-icon-state-edit{background-color:#185127;color:#fff}.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.green.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.green.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.green.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.green.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.green.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.green.night .mat-stepper-horizontal,.rtl-container.green.night .mat-stepper-vertical{background-color:#202020}.rtl-container.green.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.green.night .mat-horizontal-stepper-header:before,.rtl-container.green.night .mat-horizontal-stepper-header:after,.rtl-container.green.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.green.night .mat-tab-nav-bar,.rtl-container.green.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.green.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.green.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.green.night .mat-tab-label,.rtl-container.green.night .mat-tab-link{color:#fff}.rtl-container.green.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.green.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#185127}.rtl-container.green.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.green.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.green.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.green.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#5d85684d}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#185127}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.green.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.green.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.green.night .mat-toolbar.mat-primary{background:#185127;color:#fff}.rtl-container.green.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.green.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.green.night .mat-toolbar .mat-form-field-underline,.rtl-container.green.night .mat-toolbar .mat-form-field-ripple,.rtl-container.green.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.green.night .mat-toolbar .mat-form-field-label,.rtl-container.green.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.green.night .mat-toolbar .mat-select-value,.rtl-container.green.night .mat-toolbar .mat-select-arrow,.rtl-container.green.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.green.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.green.night .mat-tree{background:#202020}.rtl-container.green.night .mat-tree-node,.rtl-container.green.night .mat-nested-tree-node{color:#fff}.rtl-container.green.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-simple-snackbar-action{color:inherit}.rtl-container.green.night .mat-primary{color:#30ff4b}.rtl-container.green.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-tab-label.mat-tab-label-active{color:#30ff4b}.rtl-container.green.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.green.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.green.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.green.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#30ff4b}.rtl-container.green.night .cc-data-block .cc-data-title{color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary{border-color:#30ff4b;color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.green.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.green.night .active-link,.rtl-container.green.night .active-link .fa-icon-small,.rtl-container.green.night .mat-select-panel .mat-option.mat-active,.rtl-container.green.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#30ff4b;font-weight:500;cursor:pointer;fill:#30ff4b}.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover,.rtl-container.green.night .mat-nested-tree-node-parent:hover,.rtl-container.green.night .mat-select-panel .mat-option:hover,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#30ff4b;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.green.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.night .mat-tree-node:hover .mat-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#30ff4b}.rtl-container.green.night .mat-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.night .page-title-container .page-title-img,.rtl-container.green.night svg.top-icon-small{fill:#fff}.rtl-container.green.night .selected-color{border-color:#5d8568}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#154a23}.rtl-container.green.night .chart-legend .legend-label:hover,.rtl-container.green.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.green.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-select-panel{background-color:#262626}.rtl-container.green.night .mat-tree{background:#262626}.rtl-container.green.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.green.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.green.night .dashboard-info-title{color:#30ff4b}.rtl-container.green.night .dashboard-info-value,.rtl-container.green.night .dashboard-capacity-header{color:#fff}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.green.night .color-primary{color:#30ff4b!important}.rtl-container.green.night .dot-primary{background-color:#30ff4b!important}.rtl-container.green.night .dot-primary-lighter{background-color:#185127!important}.rtl-container.green.night .mat-stepper-vertical{background-color:#262626}.rtl-container.green.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.green.night svg .boltz-icon-fill{fill:#fff}.rtl-container.green.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.green.night svg .fill-color-0{fill:#171717}.rtl-container.green.night svg .fill-color-1{fill:#232323}.rtl-container.green.night svg .fill-color-2{fill:#222}.rtl-container.green.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.green.night svg .fill-color-4{fill:#383838}.rtl-container.green.night svg .fill-color-5{fill:#555}.rtl-container.green.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.green.night svg .fill-color-7{fill:#202020}.rtl-container.green.night svg .fill-color-8{fill:#242424}.rtl-container.green.night svg .fill-color-9{fill:#262626}.rtl-container.green.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.green.night svg .fill-color-11{fill:#171717}.rtl-container.green.night svg .fill-color-12{fill:#ccc}.rtl-container.green.night svg .fill-color-13{fill:#adadad}.rtl-container.green.night svg .fill-color-14{fill:#ababab}.rtl-container.green.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.green.night svg .fill-color-16{fill:#707070}.rtl-container.green.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.green.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.green.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.green.night svg .fill-color-21{fill:#cacaca}.rtl-container.green.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.green.night svg .fill-color-23{fill:#777}.rtl-container.green.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.green.night svg .fill-color-25{fill:#252525}.rtl-container.green.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.night svg .fill-color-27{fill:#000}.rtl-container.green.night svg .fill-color-28{fill:#313131}.rtl-container.green.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.green.night svg .fill-color-30{fill:#fff}.rtl-container.green.night svg .fill-color-31{fill:#185127}.rtl-container.green.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.night svg .fill-color-primary{fill:#185127}.rtl-container.green.night svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.night svg .fill-color-primary-darker{fill:#30ff4b}.rtl-container.green.night .mat-select-value,.rtl-container.green.night .mat-select-arrow{color:#fff}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.green.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.green.night .mat-slide-toggle-bar,.rtl-container.green.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.green.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#30ff4b}.rtl-container.green.night tr.alert.alert-warn .mat-cell,.rtl-container.green.night tr.alert.alert-warn .mat-header-cell,.rtl-container.green.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.green.night .material-icons.info-icon,.rtl-container.green.night .material-icons.info-icon.info-icon-primary{color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.green.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#30ff4b}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#0e3717}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#30ff4b}.rtl-container.green.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.green.night .foreground.mat-progress-spinner circle,.rtl-container.green.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.green.night .mat-toolbar-row,.rtl-container.green.night .mat-toolbar-single-row{height:5rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.green.night a{color:#185127}.rtl-container.green.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.night .h-active-link{border-bottom:2px solid white}.rtl-container.green.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.green.night .genseed-message{width:10%;color:#185127}.rtl-container.green.night .border-primary{border:1px solid #185127}.rtl-container.green.night .border-accent{border:1px solid #eeeeee}.rtl-container.green.night .border-warn{border:1px solid #ff343b}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#eee}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.green.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.green.night .row-disabled{background-color:gray}.rtl-container.green.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.night .mat-menu-panel{min-width:6.4rem}.rtl-container.green.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.green.night .horizontal-button:hover{background:#5d8568;color:#eee}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#185127}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button,.rtl-container.green.night .mat-flat-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.green.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-header-cell,.rtl-container.green.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.green.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.green.night table.mat-table thead tr th{color:#fff}.rtl-container.green.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.green.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.green.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.green.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.green.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.green.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.green.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.green.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.green.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.green.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.green.night .color-warn{color:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.rtl-container.green.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.green.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-info a{color:#004085}.rtl-container.green.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-warn a{color:#856404}.rtl-container.green.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.night .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.green.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.night .failed-status{color:#ff343b}.rtl-container.green.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.green.night .svg-fill-primary{fill:#185127}.rtl-container.green.night .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.green.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.green.night ngx-charts-bar-vertical text,.rtl-container.green.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.green.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.night .mat-paginator-container{padding:0}.rtl-container.green.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.night .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.small.small .mat-header-cell{font-weight:700}.rtl-container.teal.small.small .mr-4{margin-right:1rem!important}.rtl-container.teal.small.small .mat-menu-item,.rtl-container.teal.small.small .mat-tree .mat-tree-node,.rtl-container.teal.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.teal.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.teal.small.small .genseed-message,.rtl-container.teal.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.teal.small.small .fa-icon-small,.rtl-container.teal.small.small .top-icon-small{font-size:1.44rem}.rtl-container.teal.small.small .page-title-container,.rtl-container.teal.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.teal.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.teal.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.teal.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.teal.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.teal.small.small .material-icons,.rtl-container.teal.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.teal.small.small .mat-expansion-panel-header,.rtl-container.teal.small.small .mat-menu-item,.rtl-container.teal.small.small .mat-list .mat-list-item,.rtl-container.teal.small.small .mat-nav-list .mat-list-item,.rtl-container.teal.small.small .mat-option,.rtl-container.teal.small.small .mat-select,.rtl-container.teal.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.teal.small.small .logo{font-size:2.4rem}.rtl-container.teal.small.small .font-60-percent{font-size:.72rem}.rtl-container.teal.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.teal.small.small .icon-large{font-size:6rem}.rtl-container.teal.small.small .icon-small{font-size:1.8rem!important}.rtl-container.teal.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.teal.small.small .size-triple{font-size:3.6rem}.rtl-container.teal.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.teal.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.small.medium .mat-header-cell{font-weight:700}.rtl-container.teal.small.medium .mat-tree .mat-tree-node,.rtl-container.teal.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.teal.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.teal.small.medium .genseed-message,.rtl-container.teal.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.teal.small.medium .page-title-container,.rtl-container.teal.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.teal.small.medium .fa-icon-small,.rtl-container.teal.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.teal.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.teal.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.teal.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.teal.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.teal.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.teal.small.medium .material-icons{font-size:2.8rem}.rtl-container.teal.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.teal.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.teal.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.teal.small.medium .mat-expansion-panel-header,.rtl-container.teal.small.medium .mat-menu-item,.rtl-container.teal.small.medium .mat-list .mat-list-item,.rtl-container.teal.small.medium .mat-nav-list .mat-list-item,.rtl-container.teal.small.medium .mat-option,.rtl-container.teal.small.medium .mat-select,.rtl-container.teal.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.teal.small.medium .logo{font-size:2.8rem}.rtl-container.teal.small.medium .font-60-percent{font-size:.84rem}.rtl-container.teal.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.teal.small.medium .icon-large{font-size:7rem}.rtl-container.teal.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.teal.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.teal.small.medium .size-triple{font-size:4.2rem}.rtl-container.teal.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.teal.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.small.large .mat-header-cell{font-weight:800}.rtl-container.teal.small.large .mat-tree .mat-tree-node,.rtl-container.teal.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.teal.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.teal.small.large .genseed-message,.rtl-container.teal.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.teal.small.large .page-title-container,.rtl-container.teal.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.teal.small.large .fa-icon-small,.rtl-container.teal.small.large .top-icon-small,.rtl-container.teal.small.large .modal-info-header{font-size:1.92rem}.rtl-container.teal.small.large .top-toolbar-icon.icon-pinned,.rtl-container.teal.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.teal.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.teal.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.teal.small.large .material-icons{font-size:4rem}.rtl-container.teal.small.large .mat-expansion-panel-header,.rtl-container.teal.small.large .mat-menu-item,.rtl-container.teal.small.large .mat-list .mat-list-item,.rtl-container.teal.small.large .mat-nav-list .mat-list-item,.rtl-container.teal.small.large .mat-option,.rtl-container.teal.small.large .mat-select,.rtl-container.teal.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.teal.small.large .logo{font-size:3.2rem}.rtl-container.teal.small.large .font-60-percent{font-size:.96rem}.rtl-container.teal.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.teal.small.large .icon-large{font-size:8rem}.rtl-container.teal.small.large .icon-small{font-size:2.4rem!important}.rtl-container.teal.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.teal.small.large .size-triple{font-size:4.8rem}.rtl-container.teal.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.teal.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.small .mat-icon.material-icons:focus{outline:none}.rtl-container.teal.small .mat-flat-button.mat-primary:focus,.rtl-container.teal.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.teal.medium.small .mat-header-cell{font-weight:700}.rtl-container.teal.medium.small .mr-4{margin-right:1rem!important}.rtl-container.teal.medium.small .mat-menu-item,.rtl-container.teal.medium.small .mat-tree .mat-tree-node,.rtl-container.teal.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.teal.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.teal.medium.small .genseed-message,.rtl-container.teal.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.teal.medium.small .fa-icon-small,.rtl-container.teal.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.teal.medium.small .page-title-container,.rtl-container.teal.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.teal.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.teal.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.teal.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.teal.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.teal.medium.small .material-icons,.rtl-container.teal.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.teal.medium.small .mat-expansion-panel-header,.rtl-container.teal.medium.small .mat-menu-item,.rtl-container.teal.medium.small .mat-list .mat-list-item,.rtl-container.teal.medium.small .mat-nav-list .mat-list-item,.rtl-container.teal.medium.small .mat-option,.rtl-container.teal.medium.small .mat-select,.rtl-container.teal.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.teal.medium.small .logo{font-size:2.4rem}.rtl-container.teal.medium.small .font-60-percent{font-size:.72rem}.rtl-container.teal.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.teal.medium.small .icon-large{font-size:6rem}.rtl-container.teal.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.teal.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.teal.medium.small .size-triple{font-size:3.6rem}.rtl-container.teal.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.teal.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.medium.medium .mat-header-cell{font-weight:700}.rtl-container.teal.medium.medium .mat-tree .mat-tree-node,.rtl-container.teal.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.teal.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.teal.medium.medium .genseed-message,.rtl-container.teal.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.teal.medium.medium .page-title-container,.rtl-container.teal.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.teal.medium.medium .fa-icon-small,.rtl-container.teal.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.teal.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.teal.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.teal.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.teal.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.teal.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.teal.medium.medium .material-icons{font-size:2.8rem}.rtl-container.teal.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.teal.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.teal.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.teal.medium.medium .mat-expansion-panel-header,.rtl-container.teal.medium.medium .mat-menu-item,.rtl-container.teal.medium.medium .mat-list .mat-list-item,.rtl-container.teal.medium.medium .mat-nav-list .mat-list-item,.rtl-container.teal.medium.medium .mat-option,.rtl-container.teal.medium.medium .mat-select,.rtl-container.teal.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.teal.medium.medium .logo{font-size:2.8rem}.rtl-container.teal.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.teal.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.teal.medium.medium .icon-large{font-size:7rem}.rtl-container.teal.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.teal.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.teal.medium.medium .size-triple{font-size:4.2rem}.rtl-container.teal.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.teal.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.medium.large .mat-header-cell{font-weight:800}.rtl-container.teal.medium.large .mat-tree .mat-tree-node,.rtl-container.teal.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.teal.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.teal.medium.large .genseed-message,.rtl-container.teal.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.teal.medium.large .page-title-container,.rtl-container.teal.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.teal.medium.large .fa-icon-small,.rtl-container.teal.medium.large .top-icon-small,.rtl-container.teal.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.teal.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.teal.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.teal.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.teal.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.teal.medium.large .material-icons{font-size:4rem}.rtl-container.teal.medium.large .mat-expansion-panel-header,.rtl-container.teal.medium.large .mat-menu-item,.rtl-container.teal.medium.large .mat-list .mat-list-item,.rtl-container.teal.medium.large .mat-nav-list .mat-list-item,.rtl-container.teal.medium.large .mat-option,.rtl-container.teal.medium.large .mat-select,.rtl-container.teal.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.teal.medium.large .logo{font-size:3.2rem}.rtl-container.teal.medium.large .font-60-percent{font-size:.96rem}.rtl-container.teal.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.teal.medium.large .icon-large{font-size:8rem}.rtl-container.teal.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.teal.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.teal.medium.large .size-triple{font-size:4.8rem}.rtl-container.teal.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.teal.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.teal.medium .mat-flat-button.mat-primary:focus,.rtl-container.teal.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.teal.large.small .mat-header-cell{font-weight:700}.rtl-container.teal.large.small .mr-4{margin-right:1rem!important}.rtl-container.teal.large.small .mat-menu-item,.rtl-container.teal.large.small .mat-tree .mat-tree-node,.rtl-container.teal.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.teal.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.teal.large.small .genseed-message,.rtl-container.teal.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.teal.large.small .fa-icon-small,.rtl-container.teal.large.small .top-icon-small{font-size:1.44rem}.rtl-container.teal.large.small .page-title-container,.rtl-container.teal.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.teal.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.teal.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.teal.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.teal.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.teal.large.small .material-icons,.rtl-container.teal.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.teal.large.small .mat-expansion-panel-header,.rtl-container.teal.large.small .mat-menu-item,.rtl-container.teal.large.small .mat-list .mat-list-item,.rtl-container.teal.large.small .mat-nav-list .mat-list-item,.rtl-container.teal.large.small .mat-option,.rtl-container.teal.large.small .mat-select,.rtl-container.teal.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.teal.large.small .logo{font-size:2.4rem}.rtl-container.teal.large.small .font-60-percent{font-size:.72rem}.rtl-container.teal.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.teal.large.small .icon-large{font-size:6rem}.rtl-container.teal.large.small .icon-small{font-size:1.8rem!important}.rtl-container.teal.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.teal.large.small .size-triple{font-size:3.6rem}.rtl-container.teal.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.teal.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.large.medium .mat-header-cell{font-weight:700}.rtl-container.teal.large.medium .mat-tree .mat-tree-node,.rtl-container.teal.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.teal.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.teal.large.medium .genseed-message,.rtl-container.teal.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.teal.large.medium .page-title-container,.rtl-container.teal.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.teal.large.medium .fa-icon-small,.rtl-container.teal.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.teal.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.teal.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.teal.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.teal.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.teal.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.teal.large.medium .material-icons{font-size:2.8rem}.rtl-container.teal.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.teal.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.teal.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.teal.large.medium .mat-expansion-panel-header,.rtl-container.teal.large.medium .mat-menu-item,.rtl-container.teal.large.medium .mat-list .mat-list-item,.rtl-container.teal.large.medium .mat-nav-list .mat-list-item,.rtl-container.teal.large.medium .mat-option,.rtl-container.teal.large.medium .mat-select,.rtl-container.teal.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.teal.large.medium .logo{font-size:2.8rem}.rtl-container.teal.large.medium .font-60-percent{font-size:.84rem}.rtl-container.teal.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.teal.large.medium .icon-large{font-size:7rem}.rtl-container.teal.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.teal.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.teal.large.medium .size-triple{font-size:4.2rem}.rtl-container.teal.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.teal.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.large.large .mat-header-cell{font-weight:800}.rtl-container.teal.large.large .mat-tree .mat-tree-node,.rtl-container.teal.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.teal.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.teal.large.large .genseed-message,.rtl-container.teal.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.teal.large.large .page-title-container,.rtl-container.teal.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.teal.large.large .fa-icon-small,.rtl-container.teal.large.large .top-icon-small,.rtl-container.teal.large.large .modal-info-header{font-size:1.92rem}.rtl-container.teal.large.large .top-toolbar-icon.icon-pinned,.rtl-container.teal.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.teal.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.teal.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.teal.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.teal.large.large .material-icons{font-size:4rem}.rtl-container.teal.large.large .mat-expansion-panel-header,.rtl-container.teal.large.large .mat-menu-item,.rtl-container.teal.large.large .mat-list .mat-list-item,.rtl-container.teal.large.large .mat-nav-list .mat-list-item,.rtl-container.teal.large.large .mat-option,.rtl-container.teal.large.large .mat-select,.rtl-container.teal.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.teal.large.large .logo{font-size:3.2rem}.rtl-container.teal.large.large .font-60-percent{font-size:.96rem}.rtl-container.teal.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.teal.large.large .icon-large{font-size:8rem}.rtl-container.teal.large.large .icon-small{font-size:2.4rem!important}.rtl-container.teal.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.teal.large.large .size-triple{font-size:4.8rem}.rtl-container.teal.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.teal.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.teal.large .mat-icon.material-icons:focus{outline:none}.rtl-container.teal.large .mat-flat-button.mat-primary:focus,.rtl-container.teal.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.teal.day .mat-ripple-element{background-color:#0000001a}.rtl-container.teal.day .mat-option{color:#000000de}.rtl-container.teal.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.teal.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#00695c}.rtl-container.teal.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.teal.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.teal.day .mat-optgroup-label{color:#0000008a}.rtl-container.teal.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.teal.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.teal.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.teal.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#00695c}.rtl-container.teal.day .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.teal.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.teal.day .mat-app-background,.rtl-container.teal.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.teal.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.teal.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.teal.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.teal.day .mat-badge{position:relative}.rtl-container.teal.day .mat-badge.mat-badge{overflow:visible}.rtl-container.teal.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.teal.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.teal.day .ng-animate-disabled .mat-badge-content,.rtl-container.teal.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.teal.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.teal.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.teal.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.teal.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.teal.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.teal.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.teal.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.teal.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.teal.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.teal.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.teal.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.teal.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.teal.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.teal.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.teal.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.teal.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.teal.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.teal.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.teal.day .mat-badge-content{color:#fff;background:#00695c}.cdk-high-contrast-active .rtl-container.teal.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.teal.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.teal.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.teal.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.teal.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.teal.day .mat-button.mat-primary,.rtl-container.teal.day .mat-icon-button.mat-primary,.rtl-container.teal.day .mat-stroked-button.mat-primary{color:#00695c}.rtl-container.teal.day .mat-button.mat-accent,.rtl-container.teal.day .mat-icon-button.mat-accent,.rtl-container.teal.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.teal.day .mat-button.mat-warn,.rtl-container.teal.day .mat-icon-button.mat-warn,.rtl-container.teal.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.teal.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.teal.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#00695c}.rtl-container.teal.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.teal.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.teal.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.teal.day .mat-button .mat-ripple-element,.rtl-container.teal.day .mat-icon-button .mat-ripple-element,.rtl-container.teal.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.teal.day .mat-button-focus-overlay{background:black}.rtl-container.teal.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.teal.day .mat-flat-button,.rtl-container.teal.day .mat-raised-button,.rtl-container.teal.day .mat-fab,.rtl-container.teal.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.teal.day .mat-flat-button.mat-primary,.rtl-container.teal.day .mat-raised-button.mat-primary,.rtl-container.teal.day .mat-fab.mat-primary,.rtl-container.teal.day .mat-mini-fab.mat-primary,.rtl-container.teal.day .mat-flat-button.mat-accent,.rtl-container.teal.day .mat-raised-button.mat-accent,.rtl-container.teal.day .mat-fab.mat-accent,.rtl-container.teal.day .mat-mini-fab.mat-accent,.rtl-container.teal.day .mat-flat-button.mat-warn,.rtl-container.teal.day .mat-raised-button.mat-warn,.rtl-container.teal.day .mat-fab.mat-warn,.rtl-container.teal.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.teal.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.teal.day .mat-flat-button.mat-primary,.rtl-container.teal.day .mat-raised-button.mat-primary,.rtl-container.teal.day .mat-fab.mat-primary,.rtl-container.teal.day .mat-mini-fab.mat-primary{background-color:#00695c}.rtl-container.teal.day .mat-flat-button.mat-accent,.rtl-container.teal.day .mat-raised-button.mat-accent,.rtl-container.teal.day .mat-fab.mat-accent,.rtl-container.teal.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.teal.day .mat-flat-button.mat-warn,.rtl-container.teal.day .mat-raised-button.mat-warn,.rtl-container.teal.day .mat-fab.mat-warn,.rtl-container.teal.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.teal.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.teal.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.teal.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.teal.day .mat-button-toggle{color:#00000061}.rtl-container.teal.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.teal.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.teal.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.teal.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.teal.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.teal.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.teal.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.teal.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.teal.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.teal.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.teal.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.teal.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.teal.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.teal.day .mat-card{background:white;color:#000000de}.rtl-container.teal.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-card-subtitle{color:#0000008a}.rtl-container.teal.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.teal.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.teal.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.teal.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.teal.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#00695c}.rtl-container.teal.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.teal.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.teal.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.teal.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.teal.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.teal.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.teal.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.teal.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.teal.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#00695c}.rtl-container.teal.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.teal.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.teal.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.teal.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.teal.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.teal.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.day .mat-table{background:white}.rtl-container.teal.day .mat-table thead,.rtl-container.teal.day .mat-table tbody,.rtl-container.teal.day .mat-table tfoot,.rtl-container.teal.day mat-header-row,.rtl-container.teal.day mat-row,.rtl-container.teal.day mat-footer-row,.rtl-container.teal.day [mat-header-row],.rtl-container.teal.day [mat-row],.rtl-container.teal.day [mat-footer-row],.rtl-container.teal.day .mat-table-sticky{background:inherit}.rtl-container.teal.day mat-row,.rtl-container.teal.day mat-header-row,.rtl-container.teal.day mat-footer-row,.rtl-container.teal.day th.mat-header-cell,.rtl-container.teal.day td.mat-cell,.rtl-container.teal.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.teal.day .mat-header-cell{color:#0000008a}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-footer-cell{color:#000000de}.rtl-container.teal.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.teal.day .mat-datepicker-toggle,.rtl-container.teal.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.teal.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.teal.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-calendar-table-header,.rtl-container.teal.day .mat-calendar-body-label{color:#0000008a}.rtl-container.teal.day .mat-calendar-body-cell-content,.rtl-container.teal.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.teal.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.teal.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.teal.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.teal.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.teal.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.teal.day .mat-calendar-body-in-range:before{background:rgba(0,105,92,.2)}.rtl-container.teal.day .mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.day .mat-calendar-body-selected{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#00695c66}.rtl-container.teal.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}@media (hover: hover){.rtl-container.teal.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}}.rtl-container.teal.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.teal.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.teal.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.teal.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-datepicker-toggle-active{color:#00695c}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.teal.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.teal.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.teal.day .mat-divider{border-top-color:#0000001f}.rtl-container.teal.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.teal.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.teal.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-action-row{border-top-color:#0000001f}.rtl-container.teal.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.teal.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.teal.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.teal.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.teal.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.teal.day .mat-expansion-panel-header-description,.rtl-container.teal.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.teal.day .mat-form-field-label,.rtl-container.teal.day .mat-hint{color:#0009}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-label{color:#00695c}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.teal.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.teal.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#00695c}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.teal.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#00695c}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.teal.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.teal.day .mat-error{color:#b00020}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.teal.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.teal.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.teal.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.teal.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.teal.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.teal.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.teal.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#00695c}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.teal.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.teal.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.teal.day .mat-icon.mat-primary{color:#00695c}.rtl-container.teal.day .mat-icon.mat-accent{color:#424242}.rtl-container.teal.day .mat-icon.mat-warn{color:#b00020}.rtl-container.teal.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.teal.day .mat-input-element:disabled,.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.teal.day .mat-input-element{caret-color:#00695c}.rtl-container.teal.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.teal.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.teal.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.teal.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.teal.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.teal.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.teal.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.teal.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.teal.day .mat-list-base .mat-list-item,.rtl-container.teal.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.teal.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.teal.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.teal.day .mat-list-option:hover,.rtl-container.teal.day .mat-list-option:focus,.rtl-container.teal.day .mat-nav-list .mat-list-item:hover,.rtl-container.teal.day .mat-nav-list .mat-list-item:focus,.rtl-container.teal.day .mat-action-list .mat-list-item:hover,.rtl-container.teal.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-list-single-selected-option,.rtl-container.teal.day .mat-list-single-selected-option:hover,.rtl-container.teal.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-menu-panel{background:white}.rtl-container.teal.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.teal.day .mat-menu-item[disabled],.rtl-container.teal.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.teal.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.teal.day .mat-menu-item .mat-icon-no-color,.rtl-container.teal.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.teal.day .mat-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-paginator{background:white}.rtl-container.teal.day .mat-paginator,.rtl-container.teal.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.teal.day .mat-paginator-decrement,.rtl-container.teal.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.teal.day .mat-paginator-first,.rtl-container.teal.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.teal.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.teal.day .mat-progress-bar-background{fill:#bcd6d3}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#bcd6d3}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#00695c}.rtl-container.teal.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.teal.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.teal.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.teal.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.teal.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.teal.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.teal.day .mat-progress-spinner circle,.rtl-container.teal.day .mat-spinner circle{stroke:#00695c}.rtl-container.teal.day .mat-progress-spinner.mat-accent circle,.rtl-container.teal.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.teal.day .mat-progress-spinner.mat-warn circle,.rtl-container.teal.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.teal.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.teal.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#00695c}.rtl-container.teal.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.teal.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#00695c}.rtl-container.teal.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.teal.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.teal.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.teal.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.teal.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.teal.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.teal.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.teal.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.teal.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.teal.day .mat-select-value{color:#000000de}.rtl-container.teal.day .mat-select-placeholder{color:#0000006b}.rtl-container.teal.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.teal.day .mat-select-arrow{color:#0000008a}.rtl-container.teal.day .mat-select-panel{background:white}.rtl-container.teal.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#00695c}.rtl-container.teal.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.teal.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.teal.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.teal.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.teal.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.teal.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.teal.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.teal.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.teal.day .mat-drawer-side.mat-drawer-end,.rtl-container.teal.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.teal.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.teal.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.teal.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.teal.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.teal.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.teal.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#00695c}.rtl-container.teal.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#00695c8a}.rtl-container.teal.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#00695c}.rtl-container.teal.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.teal.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.teal.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.teal.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.teal.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.teal.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.teal.day .mat-slider-track-background{background-color:#00000042}.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#00695c}.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#00695c33}.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.teal.day .mat-slider:hover .mat-slider-track-background,.rtl-container.teal.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.teal.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.teal.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.teal.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.teal.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.teal.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.teal.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.teal.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.teal.day .mat-step-header.cdk-keyboard-focused,.rtl-container.teal.day .mat-step-header.cdk-program-focused,.rtl-container.teal.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.teal.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.teal.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.teal.day .mat-step-header:hover{background:none}}.rtl-container.teal.day .mat-step-header .mat-step-label,.rtl-container.teal.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.teal.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.teal.day .mat-step-header .mat-step-icon-selected,.rtl-container.teal.day .mat-step-header .mat-step-icon-state-done,.rtl-container.teal.day .mat-step-header .mat-step-icon-state-edit{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.teal.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.teal.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.teal.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.teal.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.teal.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.teal.day .mat-stepper-horizontal,.rtl-container.teal.day .mat-stepper-vertical{background-color:#fff}.rtl-container.teal.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.teal.day .mat-horizontal-stepper-header:before,.rtl-container.teal.day .mat-horizontal-stepper-header:after,.rtl-container.teal.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.teal.day .mat-sort-header-arrow{color:#757575}.rtl-container.teal.day .mat-tab-nav-bar,.rtl-container.teal.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.teal.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.teal.day .mat-tab-label,.rtl-container.teal.day .mat-tab-link{color:#000000de}.rtl-container.teal.day .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.teal.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.teal.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.teal.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#00695c}.rtl-container.teal.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.teal.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.teal.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.teal.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#00695c}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.teal.day .mat-toolbar.mat-primary{background:#00695c;color:#fff}.rtl-container.teal.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.teal.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.teal.day .mat-toolbar .mat-form-field-underline,.rtl-container.teal.day .mat-toolbar .mat-form-field-ripple,.rtl-container.teal.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.teal.day .mat-toolbar .mat-form-field-label,.rtl-container.teal.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.teal.day .mat-toolbar .mat-select-value,.rtl-container.teal.day .mat-toolbar .mat-select-arrow,.rtl-container.teal.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.teal.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.teal.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.teal.day .mat-tree{background:white}.rtl-container.teal.day .mat-tree-node,.rtl-container.teal.day .mat-nested-tree-node{color:#000000de}.rtl-container.teal.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-simple-snackbar-action{color:#424242}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.teal.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.teal.day .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#00695c}.rtl-container.teal.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.teal.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.teal.day .mat-tab-label.mat-tab-label-active{color:#00695c}.rtl-container.teal.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#00695c}.rtl-container.teal.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.teal.day .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.teal.day .mat-form-field-suffix{color:#0000008a}.rtl-container.teal.day .mat-stroked-button.mat-primary{border-color:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.teal.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .selected-color{border-color:#4db6ac}.rtl-container.teal.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.teal.day .page-title-container,.rtl-container.teal.day .page-sub-title-container{color:#0000008a}.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.teal.day .page-title-container .mat-input-element,.rtl-container.teal.day .page-title-container .mat-radio-label-content,.rtl-container.teal.day .page-title-container .theme-name,.rtl-container.teal.day .page-sub-title-container .mat-input-element,.rtl-container.teal.day .page-sub-title-container .mat-radio-label-content,.rtl-container.teal.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.teal.day .cc-data-block .cc-data-title{color:#00695c}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#00695c;font-weight:500;cursor:pointer;fill:#00695c}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#00695c;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#00695c}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#00695c}.rtl-container.teal.day .mat-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day svg.top-icon-small{fill:#000000de}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#004d40}.rtl-container.teal.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.teal.day .mat-tab-label,.rtl-container.teal.day .mat-tab-link{color:#0000008a}.rtl-container.teal.day .mat-card,.rtl-container.teal.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.teal.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#00695c}.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#00695c!important}.rtl-container.teal.day .dot-primary{background-color:#00695c!important}.rtl-container.teal.day .dot-primary-lighter{background-color:#4db6ac!important}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-tooltip{font-size:120%}.rtl-container.teal.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.teal.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.teal.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.teal.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-1{fill:#fff}.rtl-container.teal.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.teal.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-6{fill:#fff}.rtl-container.teal.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-9{fill:#fff}.rtl-container.teal.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-16{fill:#404040}.rtl-container.teal.day svg .fill-color-17{fill:#404040}.rtl-container.teal.day svg .fill-color-18{fill:#000}.rtl-container.teal.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-24{fill:#000}.rtl-container.teal.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.day svg .fill-color-27{fill:#000}.rtl-container.teal.day svg .fill-color-28{fill:#313131}.rtl-container.teal.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-30{fill:#fff}.rtl-container.teal.day svg .fill-color-31{fill:#00695c}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#00695c}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#00695c}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.teal.day .material-icons.info-icon{color:#0000008a}.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#00695c}.rtl-container.teal.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.teal.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#00695c}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#004d40}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#80cbc4}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.teal.day .foreground.mat-progress-spinner circle,.rtl-container.teal.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.teal.day .mat-toolbar-row,.rtl-container.teal.day .mat-toolbar-single-row{height:5rem}.rtl-container.teal.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day a{color:#00695c}.rtl-container.teal.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.day .h-active-link{border-bottom:2px solid white}.rtl-container.teal.day .mat-icon-36{color:#0000008a}.rtl-container.teal.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.teal.day .genseed-message{width:10%;color:#00695c}.rtl-container.teal.day .border-primary{border:1px solid #00695c}.rtl-container.teal.day .border-accent{border:1px solid #424242}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#00695c}.rtl-container.teal.day .material-icons.accent{color:#424242}.rtl-container.teal.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.teal.day .row-disabled{background-color:gray}.rtl-container.teal.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.day .mat-menu-panel{min-width:6.4rem}.rtl-container.teal.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.teal.day .horizontal-button:hover{background:#4db6ac;color:#424242}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button,.rtl-container.teal.day .mat-flat-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.teal.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-header-cell,.rtl-container.teal.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.teal.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-table thead tr th{color:#000}.rtl-container.teal.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.teal.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.teal.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.day .more-button{color:#00000061}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.teal.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.teal.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.teal.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.teal.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.teal.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.teal.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.teal.day .color-warn{color:#b00020}.rtl-container.teal.day .fill-warn{fill:#b00020}.rtl-container.teal.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.teal.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-info a{color:#004085}.rtl-container.teal.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-warn a{color:#856404}.rtl-container.teal.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.day .help-expansion .mat-expansion-panel-header,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.day .help-expansion .mat-expansion-panel-content,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.teal.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.day .failed-status{color:#b00020}.rtl-container.teal.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.teal.day .svg-fill-primary{fill:#00695c}.rtl-container.teal.day .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.teal.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.teal.day ngx-charts-bar-vertical text,.rtl-container.teal.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.teal.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.day .mat-paginator-container{padding:0}.rtl-container.teal.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.day .invoice-animation-div .particles-circle{position:absolute;background-color:#00695c;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #00695c;background-color:transparent}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-option{color:#fff}.rtl-container.teal.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#00695c}.rtl-container.teal.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.teal.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.teal.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.teal.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#00695c}.rtl-container.teal.night .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.teal.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.teal.night .mat-app-background,.rtl-container.teal.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.teal.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.teal.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.teal.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.teal.night .mat-badge{position:relative}.rtl-container.teal.night .mat-badge.mat-badge{overflow:visible}.rtl-container.teal.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.teal.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.teal.night .ng-animate-disabled .mat-badge-content,.rtl-container.teal.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.teal.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.teal.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.teal.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.teal.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.teal.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.teal.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.teal.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.teal.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.teal.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.teal.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.teal.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.teal.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.teal.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.teal.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.teal.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.teal.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.teal.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.teal.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.teal.night .mat-badge-content{color:#fff;background:#00695c}.cdk-high-contrast-active .rtl-container.teal.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.teal.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.teal.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.teal.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.teal.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#00695c}.rtl-container.teal.night .mat-button.mat-accent,.rtl-container.teal.night .mat-icon-button.mat-accent,.rtl-container.teal.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.teal.night .mat-button.mat-warn,.rtl-container.teal.night .mat-icon-button.mat-warn,.rtl-container.teal.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.teal.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#00695c}.rtl-container.teal.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.teal.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.teal.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.teal.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.teal.night .mat-button .mat-ripple-element,.rtl-container.teal.night .mat-icon-button .mat-ripple-element,.rtl-container.teal.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.teal.night .mat-button-focus-overlay{background:white}.rtl-container.teal.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.teal.night .mat-flat-button,.rtl-container.teal.night .mat-raised-button,.rtl-container.teal.night .mat-fab,.rtl-container.teal.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.teal.night .mat-flat-button.mat-primary,.rtl-container.teal.night .mat-raised-button.mat-primary,.rtl-container.teal.night .mat-fab.mat-primary,.rtl-container.teal.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.teal.night .mat-flat-button.mat-accent,.rtl-container.teal.night .mat-raised-button.mat-accent,.rtl-container.teal.night .mat-fab.mat-accent,.rtl-container.teal.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.teal.night .mat-flat-button.mat-warn,.rtl-container.teal.night .mat-raised-button.mat-warn,.rtl-container.teal.night .mat-fab.mat-warn,.rtl-container.teal.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.teal.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.teal.night .mat-flat-button.mat-primary,.rtl-container.teal.night .mat-raised-button.mat-primary,.rtl-container.teal.night .mat-fab.mat-primary,.rtl-container.teal.night .mat-mini-fab.mat-primary{background-color:#00695c}.rtl-container.teal.night .mat-flat-button.mat-accent,.rtl-container.teal.night .mat-raised-button.mat-accent,.rtl-container.teal.night .mat-fab.mat-accent,.rtl-container.teal.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.teal.night .mat-flat-button.mat-warn,.rtl-container.teal.night .mat-raised-button.mat-warn,.rtl-container.teal.night .mat-fab.mat-warn,.rtl-container.teal.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.teal.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.teal.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.teal.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.teal.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.teal.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.teal.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.teal.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.teal.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.teal.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.teal.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.teal.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.teal.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.teal.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.teal.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.teal.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.teal.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.teal.night .mat-card{background:#202020;color:#fff}.rtl-container.teal.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.teal.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.teal.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.teal.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#00695c}.rtl-container.teal.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.teal.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.teal.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.teal.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.teal.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.teal.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.teal.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.teal.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#00695c}.rtl-container.teal.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.teal.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.teal.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.teal.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.teal.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.teal.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.teal.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.teal.night .mat-table{background:#202020}.rtl-container.teal.night .mat-table thead,.rtl-container.teal.night .mat-table tbody,.rtl-container.teal.night .mat-table tfoot,.rtl-container.teal.night mat-header-row,.rtl-container.teal.night mat-row,.rtl-container.teal.night mat-footer-row,.rtl-container.teal.night [mat-header-row],.rtl-container.teal.night [mat-row],.rtl-container.teal.night [mat-footer-row],.rtl-container.teal.night .mat-table-sticky{background:inherit}.rtl-container.teal.night mat-row,.rtl-container.teal.night mat-header-row,.rtl-container.teal.night mat-footer-row,.rtl-container.teal.night th.mat-header-cell,.rtl-container.teal.night td.mat-cell,.rtl-container.teal.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-footer-cell{color:#fff}.rtl-container.teal.night .mat-calendar-arrow{fill:#fff}.rtl-container.teal.night .mat-datepicker-toggle,.rtl-container.teal.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.teal.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.teal.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.teal.night .mat-calendar-body-cell-content,.rtl-container.teal.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.teal.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.teal.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.teal.night .mat-calendar-body-in-range:before{background:rgba(0,105,92,.2)}.rtl-container.teal.night .mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(0,105,92,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.night .mat-calendar-body-selected{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#00695c66}.rtl-container.teal.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}@media (hover: hover){.rtl-container.teal.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#00695c4d}}.rtl-container.teal.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.teal.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.teal.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.teal.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.teal.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.teal.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.teal.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.teal.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.teal.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-datepicker-toggle-active{color:#00695c}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.teal.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.teal.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.teal.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.teal.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.teal.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.teal.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.teal.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.teal.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.teal.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-label{color:#00695c}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.teal.night .mat-form-field-ripple{background-color:#fff}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#00695c}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.teal.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#00695c}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.teal.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.teal.night .mat-error{color:#ff343b}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.teal.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.teal.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.teal.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.teal.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.teal.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.teal.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.teal.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.teal.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#00695c}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.teal.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.teal.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.teal.night .mat-icon.mat-primary{color:#00695c}.rtl-container.teal.night .mat-icon.mat-accent{color:#eee}.rtl-container.teal.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.teal.night .mat-input-element{caret-color:#00695c}.rtl-container.teal.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.teal.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.teal.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.teal.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.teal.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.teal.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.teal.night .mat-list-base .mat-list-item,.rtl-container.teal.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.teal.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.teal.night .mat-list-option:hover,.rtl-container.teal.night .mat-list-option:focus,.rtl-container.teal.night .mat-nav-list .mat-list-item:hover,.rtl-container.teal.night .mat-nav-list .mat-list-item:focus,.rtl-container.teal.night .mat-action-list .mat-list-item:hover,.rtl-container.teal.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-list-single-selected-option,.rtl-container.teal.night .mat-list-single-selected-option:hover,.rtl-container.teal.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.teal.night .mat-menu-panel{background:#202020}.rtl-container.teal.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.teal.night .mat-menu-item .mat-icon-no-color,.rtl-container.teal.night .mat-menu-submenu-icon{color:#fff}.rtl-container.teal.night .mat-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.teal.night .mat-paginator{background:#202020}.rtl-container.teal.night .mat-paginator-decrement,.rtl-container.teal.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.teal.night .mat-paginator-first,.rtl-container.teal.night .mat-paginator-last{border-top:2px solid white}.rtl-container.teal.night .mat-progress-bar-background{fill:#0a2421}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#0a2421}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00695c}.rtl-container.teal.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.teal.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.teal.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.teal.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.teal.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.teal.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.teal.night .mat-progress-spinner circle,.rtl-container.teal.night .mat-spinner circle{stroke:#00695c}.rtl-container.teal.night .mat-progress-spinner.mat-accent circle,.rtl-container.teal.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.teal.night .mat-progress-spinner.mat-warn circle,.rtl-container.teal.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.teal.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#00695c}.rtl-container.teal.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.teal.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#00695c}.rtl-container.teal.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.teal.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.teal.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.teal.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.teal.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.teal.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.teal.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.teal.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.teal.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.teal.night .mat-select-value{color:#fff}.rtl-container.teal.night .mat-select-panel{background:#202020}.rtl-container.teal.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.teal.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#00695c}.rtl-container.teal.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.teal.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.teal.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.teal.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.teal.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.teal.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.teal.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.teal.night .mat-drawer-side.mat-drawer-end,.rtl-container.teal.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.teal.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.teal.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.teal.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.teal.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.teal.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.teal.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#00695c}.rtl-container.teal.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#00695c8a}.rtl-container.teal.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#00695c}.rtl-container.teal.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.teal.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.teal.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.teal.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.teal.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.teal.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#00695c}.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#00695c33}.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.teal.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.teal.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.teal.night .mat-slider:hover .mat-slider-track-background,.rtl-container.teal.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.teal.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.teal.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.teal.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.teal.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.teal.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.teal.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.teal.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.teal.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.teal.night .mat-step-header.cdk-keyboard-focused,.rtl-container.teal.night .mat-step-header.cdk-program-focused,.rtl-container.teal.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.teal.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.teal.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.teal.night .mat-step-header:hover{background:none}}.rtl-container.teal.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.teal.night .mat-step-header .mat-step-icon-selected,.rtl-container.teal.night .mat-step-header .mat-step-icon-state-done,.rtl-container.teal.night .mat-step-header .mat-step-icon-state-edit{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.teal.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.teal.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.teal.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.teal.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.teal.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.teal.night .mat-stepper-horizontal,.rtl-container.teal.night .mat-stepper-vertical{background-color:#202020}.rtl-container.teal.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.teal.night .mat-horizontal-stepper-header:before,.rtl-container.teal.night .mat-horizontal-stepper-header:after,.rtl-container.teal.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.teal.night .mat-tab-nav-bar,.rtl-container.teal.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.teal.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.teal.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.teal.night .mat-tab-label,.rtl-container.teal.night .mat-tab-link{color:#fff}.rtl-container.teal.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.teal.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#00695c}.rtl-container.teal.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.teal.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.teal.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.teal.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#4db6ac4d}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#00695c}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.teal.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.teal.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.teal.night .mat-toolbar.mat-primary{background:#00695c;color:#fff}.rtl-container.teal.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.teal.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.teal.night .mat-toolbar .mat-form-field-underline,.rtl-container.teal.night .mat-toolbar .mat-form-field-ripple,.rtl-container.teal.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.teal.night .mat-toolbar .mat-form-field-label,.rtl-container.teal.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.teal.night .mat-toolbar .mat-select-value,.rtl-container.teal.night .mat-toolbar .mat-select-arrow,.rtl-container.teal.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.teal.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.teal.night .mat-tree{background:#202020}.rtl-container.teal.night .mat-tree-node,.rtl-container.teal.night .mat-nested-tree-node{color:#fff}.rtl-container.teal.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-simple-snackbar-action{color:inherit}.rtl-container.teal.night .mat-primary{color:#64ffda}.rtl-container.teal.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.teal.night .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-tab-label.mat-tab-label-active{color:#64ffda}.rtl-container.teal.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.teal.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.teal.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.teal.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#64ffda}.rtl-container.teal.night .cc-data-block .cc-data-title{color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary{border-color:#64ffda;color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.teal.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.teal.night .active-link,.rtl-container.teal.night .active-link .fa-icon-small,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#64ffda;font-weight:500;cursor:pointer;fill:#64ffda}.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover,.rtl-container.teal.night .mat-nested-tree-node-parent:hover,.rtl-container.teal.night .mat-select-panel .mat-option:hover,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#64ffda;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.teal.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.night .mat-tree-node:hover .mat-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#64ffda}.rtl-container.teal.night .mat-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.night .page-title-container .page-title-img,.rtl-container.teal.night svg.top-icon-small{fill:#fff}.rtl-container.teal.night .selected-color{border-color:#4db6ac}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00897b}.rtl-container.teal.night .chart-legend .legend-label:hover,.rtl-container.teal.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.teal.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-select-panel{background-color:#262626}.rtl-container.teal.night .mat-tree{background:#262626}.rtl-container.teal.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.teal.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.teal.night .dashboard-info-title{color:#64ffda}.rtl-container.teal.night .dashboard-info-value,.rtl-container.teal.night .dashboard-capacity-header{color:#fff}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.teal.night .color-primary{color:#64ffda!important}.rtl-container.teal.night .dot-primary{background-color:#64ffda!important}.rtl-container.teal.night .dot-primary-lighter{background-color:#00695c!important}.rtl-container.teal.night .mat-stepper-vertical{background-color:#262626}.rtl-container.teal.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.teal.night svg .boltz-icon-fill{fill:#fff}.rtl-container.teal.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.teal.night svg .fill-color-0{fill:#171717}.rtl-container.teal.night svg .fill-color-1{fill:#232323}.rtl-container.teal.night svg .fill-color-2{fill:#222}.rtl-container.teal.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.teal.night svg .fill-color-4{fill:#383838}.rtl-container.teal.night svg .fill-color-5{fill:#555}.rtl-container.teal.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.teal.night svg .fill-color-7{fill:#202020}.rtl-container.teal.night svg .fill-color-8{fill:#242424}.rtl-container.teal.night svg .fill-color-9{fill:#262626}.rtl-container.teal.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.teal.night svg .fill-color-11{fill:#171717}.rtl-container.teal.night svg .fill-color-12{fill:#ccc}.rtl-container.teal.night svg .fill-color-13{fill:#adadad}.rtl-container.teal.night svg .fill-color-14{fill:#ababab}.rtl-container.teal.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.teal.night svg .fill-color-16{fill:#707070}.rtl-container.teal.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.teal.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.teal.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.teal.night svg .fill-color-21{fill:#cacaca}.rtl-container.teal.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.teal.night svg .fill-color-23{fill:#777}.rtl-container.teal.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.teal.night svg .fill-color-25{fill:#252525}.rtl-container.teal.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.night svg .fill-color-27{fill:#000}.rtl-container.teal.night svg .fill-color-28{fill:#313131}.rtl-container.teal.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.teal.night svg .fill-color-30{fill:#fff}.rtl-container.teal.night svg .fill-color-31{fill:#00695c}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#00695c}.rtl-container.teal.night svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.night svg .fill-color-primary-darker{fill:#64ffda}.rtl-container.teal.night .mat-select-value,.rtl-container.teal.night .mat-select-arrow{color:#fff}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.teal.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.teal.night .mat-slide-toggle-bar,.rtl-container.teal.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.teal.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#64ffda}.rtl-container.teal.night tr.alert.alert-warn .mat-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-header-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.teal.night .material-icons.info-icon,.rtl-container.teal.night .material-icons.info-icon.info-icon-primary{color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.teal.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#64ffda}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#00695c}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#64ffda}.rtl-container.teal.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.teal.night .foreground.mat-progress-spinner circle,.rtl-container.teal.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.teal.night .mat-toolbar-row,.rtl-container.teal.night .mat-toolbar-single-row{height:5rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.teal.night a{color:#00695c}.rtl-container.teal.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.night .h-active-link{border-bottom:2px solid white}.rtl-container.teal.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.teal.night .genseed-message{width:10%;color:#00695c}.rtl-container.teal.night .border-primary{border:1px solid #00695c}.rtl-container.teal.night .border-accent{border:1px solid #eeeeee}.rtl-container.teal.night .border-warn{border:1px solid #ff343b}.rtl-container.teal.night .material-icons.primary{color:#00695c}.rtl-container.teal.night .material-icons.accent{color:#eee}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.teal.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.teal.night .row-disabled{background-color:gray}.rtl-container.teal.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.night .mat-menu-panel{min-width:6.4rem}.rtl-container.teal.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.teal.night .horizontal-button:hover{background:#4db6ac;color:#eee}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#00695c}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button,.rtl-container.teal.night .mat-flat-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.teal.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-header-cell,.rtl-container.teal.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.teal.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.teal.night table.mat-table thead tr th{color:#fff}.rtl-container.teal.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.teal.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.teal.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.teal.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.teal.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.teal.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.teal.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.teal.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.teal.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.teal.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.teal.night .color-warn{color:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.rtl-container.teal.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.teal.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-info a{color:#004085}.rtl-container.teal.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-warn a{color:#856404}.rtl-container.teal.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.night .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.teal.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.night .failed-status{color:#ff343b}.rtl-container.teal.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.teal.night .svg-fill-primary{fill:#00695c}.rtl-container.teal.night .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.teal.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.teal.night ngx-charts-bar-vertical text,.rtl-container.teal.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.teal.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.night .mat-paginator-container{padding:0}.rtl-container.teal.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.night .invoice-animation-div .particles-circle{position:absolute;background-color:#00695c;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #00695c;background-color:transparent}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.small.small .mat-header-cell{font-weight:700}.rtl-container.pink.small.small .mr-4{margin-right:1rem!important}.rtl-container.pink.small.small .mat-menu-item,.rtl-container.pink.small.small .mat-tree .mat-tree-node,.rtl-container.pink.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.pink.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.pink.small.small .genseed-message,.rtl-container.pink.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.pink.small.small .fa-icon-small,.rtl-container.pink.small.small .top-icon-small{font-size:1.44rem}.rtl-container.pink.small.small .page-title-container,.rtl-container.pink.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.pink.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.pink.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.pink.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.pink.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.pink.small.small .material-icons,.rtl-container.pink.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.pink.small.small .mat-expansion-panel-header,.rtl-container.pink.small.small .mat-menu-item,.rtl-container.pink.small.small .mat-list .mat-list-item,.rtl-container.pink.small.small .mat-nav-list .mat-list-item,.rtl-container.pink.small.small .mat-option,.rtl-container.pink.small.small .mat-select,.rtl-container.pink.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.pink.small.small .logo{font-size:2.4rem}.rtl-container.pink.small.small .font-60-percent{font-size:.72rem}.rtl-container.pink.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.pink.small.small .icon-large{font-size:6rem}.rtl-container.pink.small.small .icon-small{font-size:1.8rem!important}.rtl-container.pink.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.pink.small.small .size-triple{font-size:3.6rem}.rtl-container.pink.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.pink.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.small.medium .mat-header-cell{font-weight:700}.rtl-container.pink.small.medium .mat-tree .mat-tree-node,.rtl-container.pink.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.pink.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.pink.small.medium .genseed-message,.rtl-container.pink.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.pink.small.medium .page-title-container,.rtl-container.pink.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.pink.small.medium .fa-icon-small,.rtl-container.pink.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.pink.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.pink.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.pink.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.pink.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.pink.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.pink.small.medium .material-icons{font-size:2.8rem}.rtl-container.pink.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.pink.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.pink.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.pink.small.medium .mat-expansion-panel-header,.rtl-container.pink.small.medium .mat-menu-item,.rtl-container.pink.small.medium .mat-list .mat-list-item,.rtl-container.pink.small.medium .mat-nav-list .mat-list-item,.rtl-container.pink.small.medium .mat-option,.rtl-container.pink.small.medium .mat-select,.rtl-container.pink.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.pink.small.medium .logo{font-size:2.8rem}.rtl-container.pink.small.medium .font-60-percent{font-size:.84rem}.rtl-container.pink.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.pink.small.medium .icon-large{font-size:7rem}.rtl-container.pink.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.pink.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.pink.small.medium .size-triple{font-size:4.2rem}.rtl-container.pink.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.pink.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.small.large .mat-header-cell{font-weight:800}.rtl-container.pink.small.large .mat-tree .mat-tree-node,.rtl-container.pink.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.pink.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.pink.small.large .genseed-message,.rtl-container.pink.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.pink.small.large .page-title-container,.rtl-container.pink.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.pink.small.large .fa-icon-small,.rtl-container.pink.small.large .top-icon-small,.rtl-container.pink.small.large .modal-info-header{font-size:1.92rem}.rtl-container.pink.small.large .top-toolbar-icon.icon-pinned,.rtl-container.pink.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.pink.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.pink.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.pink.small.large .material-icons{font-size:4rem}.rtl-container.pink.small.large .mat-expansion-panel-header,.rtl-container.pink.small.large .mat-menu-item,.rtl-container.pink.small.large .mat-list .mat-list-item,.rtl-container.pink.small.large .mat-nav-list .mat-list-item,.rtl-container.pink.small.large .mat-option,.rtl-container.pink.small.large .mat-select,.rtl-container.pink.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.pink.small.large .logo{font-size:3.2rem}.rtl-container.pink.small.large .font-60-percent{font-size:.96rem}.rtl-container.pink.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.pink.small.large .icon-large{font-size:8rem}.rtl-container.pink.small.large .icon-small{font-size:2.4rem!important}.rtl-container.pink.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.pink.small.large .size-triple{font-size:4.8rem}.rtl-container.pink.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.pink.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.small .mat-icon.material-icons:focus{outline:none}.rtl-container.pink.small .mat-flat-button.mat-primary:focus,.rtl-container.pink.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.pink.medium.small .mat-header-cell{font-weight:700}.rtl-container.pink.medium.small .mr-4{margin-right:1rem!important}.rtl-container.pink.medium.small .mat-menu-item,.rtl-container.pink.medium.small .mat-tree .mat-tree-node,.rtl-container.pink.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.pink.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.pink.medium.small .genseed-message,.rtl-container.pink.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.pink.medium.small .fa-icon-small,.rtl-container.pink.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.pink.medium.small .page-title-container,.rtl-container.pink.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.pink.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.pink.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.pink.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.pink.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.pink.medium.small .material-icons,.rtl-container.pink.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.pink.medium.small .mat-expansion-panel-header,.rtl-container.pink.medium.small .mat-menu-item,.rtl-container.pink.medium.small .mat-list .mat-list-item,.rtl-container.pink.medium.small .mat-nav-list .mat-list-item,.rtl-container.pink.medium.small .mat-option,.rtl-container.pink.medium.small .mat-select,.rtl-container.pink.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.pink.medium.small .logo{font-size:2.4rem}.rtl-container.pink.medium.small .font-60-percent{font-size:.72rem}.rtl-container.pink.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.pink.medium.small .icon-large{font-size:6rem}.rtl-container.pink.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.pink.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.pink.medium.small .size-triple{font-size:3.6rem}.rtl-container.pink.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.pink.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.medium.medium .mat-header-cell{font-weight:700}.rtl-container.pink.medium.medium .mat-tree .mat-tree-node,.rtl-container.pink.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.pink.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.pink.medium.medium .genseed-message,.rtl-container.pink.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.pink.medium.medium .page-title-container,.rtl-container.pink.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.pink.medium.medium .fa-icon-small,.rtl-container.pink.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.pink.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.pink.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.pink.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.pink.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.pink.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.pink.medium.medium .material-icons{font-size:2.8rem}.rtl-container.pink.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.pink.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.pink.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.pink.medium.medium .mat-expansion-panel-header,.rtl-container.pink.medium.medium .mat-menu-item,.rtl-container.pink.medium.medium .mat-list .mat-list-item,.rtl-container.pink.medium.medium .mat-nav-list .mat-list-item,.rtl-container.pink.medium.medium .mat-option,.rtl-container.pink.medium.medium .mat-select,.rtl-container.pink.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.pink.medium.medium .logo{font-size:2.8rem}.rtl-container.pink.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.pink.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.pink.medium.medium .icon-large{font-size:7rem}.rtl-container.pink.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.pink.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.pink.medium.medium .size-triple{font-size:4.2rem}.rtl-container.pink.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.pink.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.medium.large .mat-header-cell{font-weight:800}.rtl-container.pink.medium.large .mat-tree .mat-tree-node,.rtl-container.pink.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.pink.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.pink.medium.large .genseed-message,.rtl-container.pink.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.pink.medium.large .page-title-container,.rtl-container.pink.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.pink.medium.large .fa-icon-small,.rtl-container.pink.medium.large .top-icon-small,.rtl-container.pink.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.pink.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.pink.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.pink.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.pink.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.pink.medium.large .material-icons{font-size:4rem}.rtl-container.pink.medium.large .mat-expansion-panel-header,.rtl-container.pink.medium.large .mat-menu-item,.rtl-container.pink.medium.large .mat-list .mat-list-item,.rtl-container.pink.medium.large .mat-nav-list .mat-list-item,.rtl-container.pink.medium.large .mat-option,.rtl-container.pink.medium.large .mat-select,.rtl-container.pink.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.pink.medium.large .logo{font-size:3.2rem}.rtl-container.pink.medium.large .font-60-percent{font-size:.96rem}.rtl-container.pink.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.pink.medium.large .icon-large{font-size:8rem}.rtl-container.pink.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.pink.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.pink.medium.large .size-triple{font-size:4.8rem}.rtl-container.pink.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.pink.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.pink.medium .mat-flat-button.mat-primary:focus,.rtl-container.pink.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.pink.large.small .mat-header-cell{font-weight:700}.rtl-container.pink.large.small .mr-4{margin-right:1rem!important}.rtl-container.pink.large.small .mat-menu-item,.rtl-container.pink.large.small .mat-tree .mat-tree-node,.rtl-container.pink.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.pink.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.pink.large.small .genseed-message,.rtl-container.pink.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.pink.large.small .fa-icon-small,.rtl-container.pink.large.small .top-icon-small{font-size:1.44rem}.rtl-container.pink.large.small .page-title-container,.rtl-container.pink.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.pink.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.pink.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.pink.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.pink.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.pink.large.small .material-icons,.rtl-container.pink.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.pink.large.small .mat-expansion-panel-header,.rtl-container.pink.large.small .mat-menu-item,.rtl-container.pink.large.small .mat-list .mat-list-item,.rtl-container.pink.large.small .mat-nav-list .mat-list-item,.rtl-container.pink.large.small .mat-option,.rtl-container.pink.large.small .mat-select,.rtl-container.pink.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.pink.large.small .logo{font-size:2.4rem}.rtl-container.pink.large.small .font-60-percent{font-size:.72rem}.rtl-container.pink.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.pink.large.small .icon-large{font-size:6rem}.rtl-container.pink.large.small .icon-small{font-size:1.8rem!important}.rtl-container.pink.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.pink.large.small .size-triple{font-size:3.6rem}.rtl-container.pink.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.pink.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.large.medium .mat-header-cell{font-weight:700}.rtl-container.pink.large.medium .mat-tree .mat-tree-node,.rtl-container.pink.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.pink.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.pink.large.medium .genseed-message,.rtl-container.pink.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.pink.large.medium .page-title-container,.rtl-container.pink.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.pink.large.medium .fa-icon-small,.rtl-container.pink.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.pink.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.pink.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.pink.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.pink.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.pink.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.pink.large.medium .material-icons{font-size:2.8rem}.rtl-container.pink.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.pink.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.pink.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.pink.large.medium .mat-expansion-panel-header,.rtl-container.pink.large.medium .mat-menu-item,.rtl-container.pink.large.medium .mat-list .mat-list-item,.rtl-container.pink.large.medium .mat-nav-list .mat-list-item,.rtl-container.pink.large.medium .mat-option,.rtl-container.pink.large.medium .mat-select,.rtl-container.pink.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.pink.large.medium .logo{font-size:2.8rem}.rtl-container.pink.large.medium .font-60-percent{font-size:.84rem}.rtl-container.pink.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.pink.large.medium .icon-large{font-size:7rem}.rtl-container.pink.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.pink.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.pink.large.medium .size-triple{font-size:4.2rem}.rtl-container.pink.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.pink.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.large.large .mat-header-cell{font-weight:800}.rtl-container.pink.large.large .mat-tree .mat-tree-node,.rtl-container.pink.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.pink.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.pink.large.large .genseed-message,.rtl-container.pink.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.pink.large.large .page-title-container,.rtl-container.pink.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.pink.large.large .fa-icon-small,.rtl-container.pink.large.large .top-icon-small,.rtl-container.pink.large.large .modal-info-header{font-size:1.92rem}.rtl-container.pink.large.large .top-toolbar-icon.icon-pinned,.rtl-container.pink.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.pink.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.pink.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.pink.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.pink.large.large .material-icons{font-size:4rem}.rtl-container.pink.large.large .mat-expansion-panel-header,.rtl-container.pink.large.large .mat-menu-item,.rtl-container.pink.large.large .mat-list .mat-list-item,.rtl-container.pink.large.large .mat-nav-list .mat-list-item,.rtl-container.pink.large.large .mat-option,.rtl-container.pink.large.large .mat-select,.rtl-container.pink.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.pink.large.large .logo{font-size:3.2rem}.rtl-container.pink.large.large .font-60-percent{font-size:.96rem}.rtl-container.pink.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.pink.large.large .icon-large{font-size:8rem}.rtl-container.pink.large.large .icon-small{font-size:2.4rem!important}.rtl-container.pink.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.pink.large.large .size-triple{font-size:4.8rem}.rtl-container.pink.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.pink.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.pink.large .mat-icon.material-icons:focus{outline:none}.rtl-container.pink.large .mat-flat-button.mat-primary:focus,.rtl-container.pink.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.pink.day .mat-ripple-element{background-color:#0000001a}.rtl-container.pink.day .mat-option{color:#000000de}.rtl-container.pink.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.pink.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#e91e63}.rtl-container.pink.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.pink.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.pink.day .mat-optgroup-label{color:#0000008a}.rtl-container.pink.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.pink.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.pink.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.pink.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#e91e63}.rtl-container.pink.day .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.pink.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.pink.day .mat-app-background,.rtl-container.pink.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.pink.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.pink.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.pink.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.pink.day .mat-badge{position:relative}.rtl-container.pink.day .mat-badge.mat-badge{overflow:visible}.rtl-container.pink.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.pink.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.pink.day .ng-animate-disabled .mat-badge-content,.rtl-container.pink.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.pink.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.pink.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.pink.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.pink.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.pink.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.pink.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.pink.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.pink.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.pink.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.pink.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.pink.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.pink.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.pink.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.pink.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.pink.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.pink.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.pink.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.pink.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.pink.day .mat-badge-content{color:#fff;background:#e91e63}.cdk-high-contrast-active .rtl-container.pink.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.pink.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.pink.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.pink.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.pink.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.pink.day .mat-button.mat-primary,.rtl-container.pink.day .mat-icon-button.mat-primary,.rtl-container.pink.day .mat-stroked-button.mat-primary{color:#e91e63}.rtl-container.pink.day .mat-button.mat-accent,.rtl-container.pink.day .mat-icon-button.mat-accent,.rtl-container.pink.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.pink.day .mat-button.mat-warn,.rtl-container.pink.day .mat-icon-button.mat-warn,.rtl-container.pink.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.pink.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.pink.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#e91e63}.rtl-container.pink.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.pink.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.pink.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.pink.day .mat-button .mat-ripple-element,.rtl-container.pink.day .mat-icon-button .mat-ripple-element,.rtl-container.pink.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.pink.day .mat-button-focus-overlay{background:black}.rtl-container.pink.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.pink.day .mat-flat-button,.rtl-container.pink.day .mat-raised-button,.rtl-container.pink.day .mat-fab,.rtl-container.pink.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.pink.day .mat-flat-button.mat-primary,.rtl-container.pink.day .mat-raised-button.mat-primary,.rtl-container.pink.day .mat-fab.mat-primary,.rtl-container.pink.day .mat-mini-fab.mat-primary,.rtl-container.pink.day .mat-flat-button.mat-accent,.rtl-container.pink.day .mat-raised-button.mat-accent,.rtl-container.pink.day .mat-fab.mat-accent,.rtl-container.pink.day .mat-mini-fab.mat-accent,.rtl-container.pink.day .mat-flat-button.mat-warn,.rtl-container.pink.day .mat-raised-button.mat-warn,.rtl-container.pink.day .mat-fab.mat-warn,.rtl-container.pink.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.pink.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.pink.day .mat-flat-button.mat-primary,.rtl-container.pink.day .mat-raised-button.mat-primary,.rtl-container.pink.day .mat-fab.mat-primary,.rtl-container.pink.day .mat-mini-fab.mat-primary{background-color:#e91e63}.rtl-container.pink.day .mat-flat-button.mat-accent,.rtl-container.pink.day .mat-raised-button.mat-accent,.rtl-container.pink.day .mat-fab.mat-accent,.rtl-container.pink.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.pink.day .mat-flat-button.mat-warn,.rtl-container.pink.day .mat-raised-button.mat-warn,.rtl-container.pink.day .mat-fab.mat-warn,.rtl-container.pink.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.pink.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.pink.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.pink.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.pink.day .mat-button-toggle{color:#00000061}.rtl-container.pink.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.pink.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.pink.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.pink.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.pink.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.pink.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.pink.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.pink.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.pink.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.pink.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.pink.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.pink.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.pink.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.pink.day .mat-card{background:white;color:#000000de}.rtl-container.pink.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-card-subtitle{color:#0000008a}.rtl-container.pink.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.pink.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.pink.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.pink.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.pink.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#e91e63}.rtl-container.pink.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.pink.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.pink.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.pink.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.pink.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.pink.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.pink.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.pink.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.pink.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#e91e63}.rtl-container.pink.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.pink.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.pink.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.pink.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.pink.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.pink.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.day .mat-table{background:white}.rtl-container.pink.day .mat-table thead,.rtl-container.pink.day .mat-table tbody,.rtl-container.pink.day .mat-table tfoot,.rtl-container.pink.day mat-header-row,.rtl-container.pink.day mat-row,.rtl-container.pink.day mat-footer-row,.rtl-container.pink.day [mat-header-row],.rtl-container.pink.day [mat-row],.rtl-container.pink.day [mat-footer-row],.rtl-container.pink.day .mat-table-sticky{background:inherit}.rtl-container.pink.day mat-row,.rtl-container.pink.day mat-header-row,.rtl-container.pink.day mat-footer-row,.rtl-container.pink.day th.mat-header-cell,.rtl-container.pink.day td.mat-cell,.rtl-container.pink.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.pink.day .mat-header-cell{color:#0000008a}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-footer-cell{color:#000000de}.rtl-container.pink.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.pink.day .mat-datepicker-toggle,.rtl-container.pink.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.pink.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.pink.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-calendar-table-header,.rtl-container.pink.day .mat-calendar-body-label{color:#0000008a}.rtl-container.pink.day .mat-calendar-body-cell-content,.rtl-container.pink.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.pink.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.pink.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.pink.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.pink.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.pink.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.pink.day .mat-calendar-body-in-range:before{background:rgba(233,30,99,.2)}.rtl-container.pink.day .mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.day .mat-calendar-body-selected{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#e91e6366}.rtl-container.pink.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}@media (hover: hover){.rtl-container.pink.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}}.rtl-container.pink.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.pink.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.pink.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.pink.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-datepicker-toggle-active{color:#e91e63}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.pink.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.pink.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.pink.day .mat-divider{border-top-color:#0000001f}.rtl-container.pink.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.pink.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.pink.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-action-row{border-top-color:#0000001f}.rtl-container.pink.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.pink.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.pink.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.pink.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.pink.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.pink.day .mat-expansion-panel-header-description,.rtl-container.pink.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.pink.day .mat-form-field-label,.rtl-container.pink.day .mat-hint{color:#0009}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-label{color:#e91e63}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.pink.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.pink.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#e91e63}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.pink.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#e91e63}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.pink.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.pink.day .mat-error{color:#b00020}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.pink.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.pink.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.pink.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.pink.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.pink.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.pink.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.pink.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#e91e63}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.pink.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.pink.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.pink.day .mat-icon.mat-primary{color:#e91e63}.rtl-container.pink.day .mat-icon.mat-accent{color:#424242}.rtl-container.pink.day .mat-icon.mat-warn{color:#b00020}.rtl-container.pink.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.pink.day .mat-input-element:disabled,.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.pink.day .mat-input-element{caret-color:#e91e63}.rtl-container.pink.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.pink.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.pink.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.pink.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.pink.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.pink.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.pink.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.pink.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.pink.day .mat-list-base .mat-list-item,.rtl-container.pink.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.pink.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.pink.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.pink.day .mat-list-option:hover,.rtl-container.pink.day .mat-list-option:focus,.rtl-container.pink.day .mat-nav-list .mat-list-item:hover,.rtl-container.pink.day .mat-nav-list .mat-list-item:focus,.rtl-container.pink.day .mat-action-list .mat-list-item:hover,.rtl-container.pink.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-list-single-selected-option,.rtl-container.pink.day .mat-list-single-selected-option:hover,.rtl-container.pink.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-menu-panel{background:white}.rtl-container.pink.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.pink.day .mat-menu-item[disabled],.rtl-container.pink.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.pink.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.pink.day .mat-menu-item .mat-icon-no-color,.rtl-container.pink.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.pink.day .mat-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-paginator{background:white}.rtl-container.pink.day .mat-paginator,.rtl-container.pink.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.pink.day .mat-paginator-decrement,.rtl-container.pink.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.pink.day .mat-paginator-first,.rtl-container.pink.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.pink.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.pink.day .mat-progress-bar-background{fill:#f6c3d4}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f6c3d4}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#e91e63}.rtl-container.pink.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.pink.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.pink.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.pink.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.pink.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.pink.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.pink.day .mat-progress-spinner circle,.rtl-container.pink.day .mat-spinner circle{stroke:#e91e63}.rtl-container.pink.day .mat-progress-spinner.mat-accent circle,.rtl-container.pink.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.pink.day .mat-progress-spinner.mat-warn circle,.rtl-container.pink.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.pink.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.pink.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#e91e63}.rtl-container.pink.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.pink.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#e91e63}.rtl-container.pink.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.pink.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.pink.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.pink.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.pink.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.pink.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.pink.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.pink.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.pink.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.pink.day .mat-select-value{color:#000000de}.rtl-container.pink.day .mat-select-placeholder{color:#0000006b}.rtl-container.pink.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.pink.day .mat-select-arrow{color:#0000008a}.rtl-container.pink.day .mat-select-panel{background:white}.rtl-container.pink.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#e91e63}.rtl-container.pink.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.pink.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.pink.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.pink.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.pink.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.pink.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.pink.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.pink.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.pink.day .mat-drawer-side.mat-drawer-end,.rtl-container.pink.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.pink.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.pink.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.pink.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.pink.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.pink.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.pink.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#e91e638a}.rtl-container.pink.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.pink.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.pink.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.pink.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.pink.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.pink.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.pink.day .mat-slider-track-background{background-color:#00000042}.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#e91e63}.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#e91e6333}.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.pink.day .mat-slider:hover .mat-slider-track-background,.rtl-container.pink.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.pink.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.pink.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.pink.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.pink.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.pink.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.pink.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.pink.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.pink.day .mat-step-header.cdk-keyboard-focused,.rtl-container.pink.day .mat-step-header.cdk-program-focused,.rtl-container.pink.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.pink.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.pink.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.pink.day .mat-step-header:hover{background:none}}.rtl-container.pink.day .mat-step-header .mat-step-label,.rtl-container.pink.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.pink.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.pink.day .mat-step-header .mat-step-icon-selected,.rtl-container.pink.day .mat-step-header .mat-step-icon-state-done,.rtl-container.pink.day .mat-step-header .mat-step-icon-state-edit{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.pink.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.pink.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.pink.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.pink.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.pink.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.pink.day .mat-stepper-horizontal,.rtl-container.pink.day .mat-stepper-vertical{background-color:#fff}.rtl-container.pink.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.pink.day .mat-horizontal-stepper-header:before,.rtl-container.pink.day .mat-horizontal-stepper-header:after,.rtl-container.pink.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.pink.day .mat-sort-header-arrow{color:#757575}.rtl-container.pink.day .mat-tab-nav-bar,.rtl-container.pink.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.pink.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.pink.day .mat-tab-label,.rtl-container.pink.day .mat-tab-link{color:#000000de}.rtl-container.pink.day .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.pink.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.pink.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.pink.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#e91e63}.rtl-container.pink.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.pink.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.pink.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.pink.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#e91e63}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.pink.day .mat-toolbar.mat-primary{background:#e91e63;color:#fff}.rtl-container.pink.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.pink.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.pink.day .mat-toolbar .mat-form-field-underline,.rtl-container.pink.day .mat-toolbar .mat-form-field-ripple,.rtl-container.pink.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.pink.day .mat-toolbar .mat-form-field-label,.rtl-container.pink.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.pink.day .mat-toolbar .mat-select-value,.rtl-container.pink.day .mat-toolbar .mat-select-arrow,.rtl-container.pink.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.pink.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.pink.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.pink.day .mat-tree{background:white}.rtl-container.pink.day .mat-tree-node,.rtl-container.pink.day .mat-nested-tree-node{color:#000000de}.rtl-container.pink.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-simple-snackbar-action{color:#424242}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.pink.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#e91e63}.rtl-container.pink.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.pink.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.pink.day .mat-tab-label.mat-tab-label-active{color:#e91e63}.rtl-container.pink.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#e91e63}.rtl-container.pink.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.pink.day .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.pink.day .mat-form-field-suffix{color:#0000008a}.rtl-container.pink.day .mat-stroked-button.mat-primary{border-color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.pink.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .selected-color{border-color:#f06292}.rtl-container.pink.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.pink.day .page-title-container,.rtl-container.pink.day .page-sub-title-container{color:#0000008a}.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.pink.day .page-title-container .mat-input-element,.rtl-container.pink.day .page-title-container .mat-radio-label-content,.rtl-container.pink.day .page-title-container .theme-name,.rtl-container.pink.day .page-sub-title-container .mat-input-element,.rtl-container.pink.day .page-sub-title-container .mat-radio-label-content,.rtl-container.pink.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.pink.day .cc-data-block .cc-data-title{color:#e91e63}.rtl-container.pink.day .active-link,.rtl-container.pink.day .active-link .fa-icon-small{color:#e91e63;font-weight:500;cursor:pointer;fill:#e91e63}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#e91e63;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .mat-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day svg.top-icon-small{fill:#000000de}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#880e4f}.rtl-container.pink.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.pink.day .mat-tab-label,.rtl-container.pink.day .mat-tab-link{color:#0000008a}.rtl-container.pink.day .mat-card,.rtl-container.pink.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.pink.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-info-value{color:#0000008a}.rtl-container.pink.day .color-primary{color:#e91e63!important}.rtl-container.pink.day .dot-primary{background-color:#e91e63!important}.rtl-container.pink.day .dot-primary-lighter{background-color:#f06292!important}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-tooltip{font-size:120%}.rtl-container.pink.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.pink.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.pink.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.pink.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-1{fill:#fff}.rtl-container.pink.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.pink.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-6{fill:#fff}.rtl-container.pink.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-9{fill:#fff}.rtl-container.pink.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-16{fill:#404040}.rtl-container.pink.day svg .fill-color-17{fill:#404040}.rtl-container.pink.day svg .fill-color-18{fill:#000}.rtl-container.pink.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-24{fill:#000}.rtl-container.pink.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.day svg .fill-color-27{fill:#000}.rtl-container.pink.day svg .fill-color-28{fill:#313131}.rtl-container.pink.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-30{fill:#fff}.rtl-container.pink.day svg .fill-color-31{fill:#e91e63}.rtl-container.pink.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.day svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.day svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.day svg .fill-color-primary-darker{fill:#e91e63}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.pink.day .material-icons.info-icon{color:#0000008a}.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.pink.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#e91e63}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#880e4f}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#f48fb1}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.pink.day .foreground.mat-progress-spinner circle,.rtl-container.pink.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.pink.day .mat-toolbar-row,.rtl-container.pink.day .mat-toolbar-single-row{height:5rem}.rtl-container.pink.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day a{color:#e91e63}.rtl-container.pink.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.day .h-active-link{border-bottom:2px solid white}.rtl-container.pink.day .mat-icon-36{color:#0000008a}.rtl-container.pink.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.pink.day .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.day .border-primary{border:1px solid #e91e63}.rtl-container.pink.day .border-accent{border:1px solid #424242}.rtl-container.pink.day .border-warn{border:1px solid #b00020}.rtl-container.pink.day .material-icons.primary{color:#e91e63}.rtl-container.pink.day .material-icons.accent{color:#424242}.rtl-container.pink.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.pink.day .row-disabled{background-color:gray}.rtl-container.pink.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.day .mat-menu-panel{min-width:6.4rem}.rtl-container.pink.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.pink.day .horizontal-button:hover{background:#f06292;color:#424242}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button,.rtl-container.pink.day .mat-flat-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.pink.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-header-cell,.rtl-container.pink.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.pink.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-table thead tr th{color:#000}.rtl-container.pink.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.pink.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.pink.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.day .more-button{color:#00000061}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.pink.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.pink.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.pink.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.pink.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.pink.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.pink.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.pink.day .color-warn{color:#b00020}.rtl-container.pink.day .fill-warn{fill:#b00020}.rtl-container.pink.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.pink.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-info a{color:#004085}.rtl-container.pink.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-warn a{color:#856404}.rtl-container.pink.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.day .help-expansion .mat-expansion-panel-header,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.day .help-expansion .mat-expansion-panel-content,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.pink.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.day .failed-status{color:#b00020}.rtl-container.pink.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.pink.day .svg-fill-primary{fill:#e91e63}.rtl-container.pink.day .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.pink.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.pink.day ngx-charts-bar-vertical text,.rtl-container.pink.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.pink.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.day .mat-paginator-container{padding:0}.rtl-container.pink.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.day .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-option{color:#fff}.rtl-container.pink.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#e91e63}.rtl-container.pink.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.pink.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.pink.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.pink.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#e91e63}.rtl-container.pink.night .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.pink.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.pink.night .mat-app-background,.rtl-container.pink.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.pink.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.pink.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.pink.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.pink.night .mat-badge{position:relative}.rtl-container.pink.night .mat-badge.mat-badge{overflow:visible}.rtl-container.pink.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.pink.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.pink.night .ng-animate-disabled .mat-badge-content,.rtl-container.pink.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.pink.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.pink.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.pink.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.pink.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.pink.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.pink.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.pink.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.pink.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.pink.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.pink.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.pink.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.pink.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.pink.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.pink.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.pink.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.pink.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.pink.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.pink.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.pink.night .mat-badge-content{color:#fff;background:#e91e63}.cdk-high-contrast-active .rtl-container.pink.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.pink.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.pink.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.pink.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.pink.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#e91e63}.rtl-container.pink.night .mat-button.mat-accent,.rtl-container.pink.night .mat-icon-button.mat-accent,.rtl-container.pink.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.pink.night .mat-button.mat-warn,.rtl-container.pink.night .mat-icon-button.mat-warn,.rtl-container.pink.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.pink.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#e91e63}.rtl-container.pink.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.pink.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.pink.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.pink.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.pink.night .mat-button .mat-ripple-element,.rtl-container.pink.night .mat-icon-button .mat-ripple-element,.rtl-container.pink.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.pink.night .mat-button-focus-overlay{background:white}.rtl-container.pink.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.pink.night .mat-flat-button,.rtl-container.pink.night .mat-raised-button,.rtl-container.pink.night .mat-fab,.rtl-container.pink.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.pink.night .mat-flat-button.mat-primary,.rtl-container.pink.night .mat-raised-button.mat-primary,.rtl-container.pink.night .mat-fab.mat-primary,.rtl-container.pink.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.pink.night .mat-flat-button.mat-accent,.rtl-container.pink.night .mat-raised-button.mat-accent,.rtl-container.pink.night .mat-fab.mat-accent,.rtl-container.pink.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.pink.night .mat-flat-button.mat-warn,.rtl-container.pink.night .mat-raised-button.mat-warn,.rtl-container.pink.night .mat-fab.mat-warn,.rtl-container.pink.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.pink.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.pink.night .mat-flat-button.mat-primary,.rtl-container.pink.night .mat-raised-button.mat-primary,.rtl-container.pink.night .mat-fab.mat-primary,.rtl-container.pink.night .mat-mini-fab.mat-primary{background-color:#e91e63}.rtl-container.pink.night .mat-flat-button.mat-accent,.rtl-container.pink.night .mat-raised-button.mat-accent,.rtl-container.pink.night .mat-fab.mat-accent,.rtl-container.pink.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.pink.night .mat-flat-button.mat-warn,.rtl-container.pink.night .mat-raised-button.mat-warn,.rtl-container.pink.night .mat-fab.mat-warn,.rtl-container.pink.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.pink.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.pink.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.pink.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.pink.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.pink.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.pink.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.pink.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.pink.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.pink.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.pink.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.pink.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.pink.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.pink.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.pink.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.pink.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.pink.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.pink.night .mat-card{background:#202020;color:#fff}.rtl-container.pink.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.pink.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.pink.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.pink.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#e91e63}.rtl-container.pink.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.pink.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.pink.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.pink.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.pink.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.pink.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.pink.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.pink.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#e91e63}.rtl-container.pink.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.pink.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.pink.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.pink.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.pink.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.pink.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.pink.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.pink.night .mat-table{background:#202020}.rtl-container.pink.night .mat-table thead,.rtl-container.pink.night .mat-table tbody,.rtl-container.pink.night .mat-table tfoot,.rtl-container.pink.night mat-header-row,.rtl-container.pink.night mat-row,.rtl-container.pink.night mat-footer-row,.rtl-container.pink.night [mat-header-row],.rtl-container.pink.night [mat-row],.rtl-container.pink.night [mat-footer-row],.rtl-container.pink.night .mat-table-sticky{background:inherit}.rtl-container.pink.night mat-row,.rtl-container.pink.night mat-header-row,.rtl-container.pink.night mat-footer-row,.rtl-container.pink.night th.mat-header-cell,.rtl-container.pink.night td.mat-cell,.rtl-container.pink.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-footer-cell{color:#fff}.rtl-container.pink.night .mat-calendar-arrow{fill:#fff}.rtl-container.pink.night .mat-datepicker-toggle,.rtl-container.pink.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.pink.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.pink.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.pink.night .mat-calendar-body-cell-content,.rtl-container.pink.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.pink.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.pink.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.pink.night .mat-calendar-body-in-range:before{background:rgba(233,30,99,.2)}.rtl-container.pink.night .mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(233,30,99,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.night .mat-calendar-body-selected{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#e91e6366}.rtl-container.pink.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}@media (hover: hover){.rtl-container.pink.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#e91e634d}}.rtl-container.pink.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.pink.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.pink.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.pink.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.pink.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.pink.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.pink.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.pink.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.pink.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-datepicker-toggle-active{color:#e91e63}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.pink.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.pink.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.pink.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.pink.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.pink.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.pink.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.pink.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.pink.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.pink.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-label{color:#e91e63}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.pink.night .mat-form-field-ripple{background-color:#fff}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#e91e63}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.pink.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#e91e63}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.pink.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.pink.night .mat-error{color:#ff343b}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.pink.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.pink.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.pink.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.pink.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.pink.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.pink.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.pink.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.pink.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#e91e63}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.pink.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.pink.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.pink.night .mat-icon.mat-primary{color:#e91e63}.rtl-container.pink.night .mat-icon.mat-accent{color:#eee}.rtl-container.pink.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.pink.night .mat-input-element{caret-color:#e91e63}.rtl-container.pink.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.pink.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.pink.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.pink.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.pink.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.pink.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.pink.night .mat-list-base .mat-list-item,.rtl-container.pink.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.pink.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.pink.night .mat-list-option:hover,.rtl-container.pink.night .mat-list-option:focus,.rtl-container.pink.night .mat-nav-list .mat-list-item:hover,.rtl-container.pink.night .mat-nav-list .mat-list-item:focus,.rtl-container.pink.night .mat-action-list .mat-list-item:hover,.rtl-container.pink.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-list-single-selected-option,.rtl-container.pink.night .mat-list-single-selected-option:hover,.rtl-container.pink.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.pink.night .mat-menu-panel{background:#202020}.rtl-container.pink.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.pink.night .mat-menu-item .mat-icon-no-color,.rtl-container.pink.night .mat-menu-submenu-icon{color:#fff}.rtl-container.pink.night .mat-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.pink.night .mat-paginator{background:#202020}.rtl-container.pink.night .mat-paginator-decrement,.rtl-container.pink.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.pink.night .mat-paginator-first,.rtl-container.pink.night .mat-paginator-last{border-top:2px solid white}.rtl-container.pink.night .mat-progress-bar-background{fill:#441123}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#441123}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#e91e63}.rtl-container.pink.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.pink.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.pink.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.pink.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.pink.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.pink.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.pink.night .mat-progress-spinner circle,.rtl-container.pink.night .mat-spinner circle{stroke:#e91e63}.rtl-container.pink.night .mat-progress-spinner.mat-accent circle,.rtl-container.pink.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.pink.night .mat-progress-spinner.mat-warn circle,.rtl-container.pink.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.pink.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#e91e63}.rtl-container.pink.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.pink.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#e91e63}.rtl-container.pink.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.pink.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.pink.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.pink.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.pink.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.pink.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.pink.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.pink.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.pink.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.pink.night .mat-select-value{color:#fff}.rtl-container.pink.night .mat-select-panel{background:#202020}.rtl-container.pink.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.pink.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#e91e63}.rtl-container.pink.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.pink.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.pink.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.pink.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.pink.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.pink.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.pink.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.pink.night .mat-drawer-side.mat-drawer-end,.rtl-container.pink.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.pink.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.pink.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.pink.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.pink.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.pink.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.pink.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#e91e63}.rtl-container.pink.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#e91e638a}.rtl-container.pink.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#e91e63}.rtl-container.pink.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.pink.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.pink.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.pink.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.pink.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.pink.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#e91e63}.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#e91e6333}.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.pink.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.pink.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.pink.night .mat-slider:hover .mat-slider-track-background,.rtl-container.pink.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.pink.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.pink.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.pink.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.pink.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.pink.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.pink.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.pink.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.pink.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.pink.night .mat-step-header.cdk-keyboard-focused,.rtl-container.pink.night .mat-step-header.cdk-program-focused,.rtl-container.pink.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.pink.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.pink.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.pink.night .mat-step-header:hover{background:none}}.rtl-container.pink.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.pink.night .mat-step-header .mat-step-icon-selected,.rtl-container.pink.night .mat-step-header .mat-step-icon-state-done,.rtl-container.pink.night .mat-step-header .mat-step-icon-state-edit{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.pink.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.pink.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.pink.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.pink.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.pink.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.pink.night .mat-stepper-horizontal,.rtl-container.pink.night .mat-stepper-vertical{background-color:#202020}.rtl-container.pink.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.pink.night .mat-horizontal-stepper-header:before,.rtl-container.pink.night .mat-horizontal-stepper-header:after,.rtl-container.pink.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.pink.night .mat-tab-nav-bar,.rtl-container.pink.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.pink.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.pink.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.pink.night .mat-tab-label,.rtl-container.pink.night .mat-tab-link{color:#fff}.rtl-container.pink.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.pink.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#e91e63}.rtl-container.pink.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.pink.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.pink.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.pink.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#f062924d}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#e91e63}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.pink.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.pink.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.pink.night .mat-toolbar.mat-primary{background:#e91e63;color:#fff}.rtl-container.pink.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.pink.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.pink.night .mat-toolbar .mat-form-field-underline,.rtl-container.pink.night .mat-toolbar .mat-form-field-ripple,.rtl-container.pink.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.pink.night .mat-toolbar .mat-form-field-label,.rtl-container.pink.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.pink.night .mat-toolbar .mat-select-value,.rtl-container.pink.night .mat-toolbar .mat-select-arrow,.rtl-container.pink.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.pink.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.pink.night .mat-tree{background:#202020}.rtl-container.pink.night .mat-tree-node,.rtl-container.pink.night .mat-nested-tree-node{color:#fff}.rtl-container.pink.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-simple-snackbar-action{color:inherit}.rtl-container.pink.night .mat-primary{color:#ff4081}.rtl-container.pink.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-tab-label.mat-tab-label-active{color:#ff4081}.rtl-container.pink.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.pink.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.pink.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.pink.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ff4081}.rtl-container.pink.night .cc-data-block .cc-data-title{color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary{border-color:#ff4081;color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.pink.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.pink.night .active-link,.rtl-container.pink.night .active-link .fa-icon-small,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ff4081;font-weight:500;cursor:pointer;fill:#ff4081}.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover,.rtl-container.pink.night .mat-nested-tree-node-parent:hover,.rtl-container.pink.night .mat-select-panel .mat-option:hover,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ff4081;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.pink.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.night .mat-tree-node:hover .mat-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#ff4081}.rtl-container.pink.night .mat-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.night .page-title-container .page-title-img,.rtl-container.pink.night svg.top-icon-small{fill:#fff}.rtl-container.pink.night .selected-color{border-color:#f06292}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#d81b60}.rtl-container.pink.night .chart-legend .legend-label:hover,.rtl-container.pink.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.pink.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-select-panel{background-color:#262626}.rtl-container.pink.night .mat-tree{background:#262626}.rtl-container.pink.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.pink.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.pink.night .dashboard-info-title{color:#ff4081}.rtl-container.pink.night .dashboard-info-value,.rtl-container.pink.night .dashboard-capacity-header{color:#fff}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.pink.night .color-primary{color:#ff4081!important}.rtl-container.pink.night .dot-primary{background-color:#ff4081!important}.rtl-container.pink.night .dot-primary-lighter{background-color:#e91e63!important}.rtl-container.pink.night .mat-stepper-vertical{background-color:#262626}.rtl-container.pink.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.pink.night svg .boltz-icon-fill{fill:#fff}.rtl-container.pink.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.pink.night svg .fill-color-0{fill:#171717}.rtl-container.pink.night svg .fill-color-1{fill:#232323}.rtl-container.pink.night svg .fill-color-2{fill:#222}.rtl-container.pink.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.pink.night svg .fill-color-4{fill:#383838}.rtl-container.pink.night svg .fill-color-5{fill:#555}.rtl-container.pink.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.pink.night svg .fill-color-7{fill:#202020}.rtl-container.pink.night svg .fill-color-8{fill:#242424}.rtl-container.pink.night svg .fill-color-9{fill:#262626}.rtl-container.pink.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.pink.night svg .fill-color-11{fill:#171717}.rtl-container.pink.night svg .fill-color-12{fill:#ccc}.rtl-container.pink.night svg .fill-color-13{fill:#adadad}.rtl-container.pink.night svg .fill-color-14{fill:#ababab}.rtl-container.pink.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.pink.night svg .fill-color-16{fill:#707070}.rtl-container.pink.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.pink.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.pink.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.pink.night svg .fill-color-21{fill:#cacaca}.rtl-container.pink.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.pink.night svg .fill-color-23{fill:#777}.rtl-container.pink.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.pink.night svg .fill-color-25{fill:#252525}.rtl-container.pink.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.night svg .fill-color-27{fill:#000}.rtl-container.pink.night svg .fill-color-28{fill:#313131}.rtl-container.pink.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.pink.night svg .fill-color-30{fill:#fff}.rtl-container.pink.night svg .fill-color-31{fill:#e91e63}.rtl-container.pink.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.night svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.night svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.night svg .fill-color-primary-darker{fill:#ff4081}.rtl-container.pink.night .mat-select-value,.rtl-container.pink.night .mat-select-arrow{color:#fff}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.pink.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.pink.night .mat-slide-toggle-bar,.rtl-container.pink.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.pink.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#ff4081}.rtl-container.pink.night tr.alert.alert-warn .mat-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-header-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.pink.night .material-icons.info-icon,.rtl-container.pink.night .material-icons.info-icon.info-icon-primary{color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.pink.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ff4081}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#ad1457}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ff4081}.rtl-container.pink.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.pink.night .foreground.mat-progress-spinner circle,.rtl-container.pink.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.pink.night .mat-toolbar-row,.rtl-container.pink.night .mat-toolbar-single-row{height:5rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.pink.night a{color:#e91e63}.rtl-container.pink.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.night .h-active-link{border-bottom:2px solid white}.rtl-container.pink.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.pink.night .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.night .border-primary{border:1px solid #e91e63}.rtl-container.pink.night .border-accent{border:1px solid #eeeeee}.rtl-container.pink.night .border-warn{border:1px solid #ff343b}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#eee}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.pink.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.pink.night .row-disabled{background-color:gray}.rtl-container.pink.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.night .mat-menu-panel{min-width:6.4rem}.rtl-container.pink.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.pink.night .horizontal-button:hover{background:#f06292;color:#eee}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#e91e63}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button,.rtl-container.pink.night .mat-flat-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.pink.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-header-cell,.rtl-container.pink.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.pink.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.pink.night table.mat-table thead tr th{color:#fff}.rtl-container.pink.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.pink.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.pink.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.pink.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.pink.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.pink.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.pink.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.pink.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.pink.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.pink.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.pink.night .color-warn{color:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.rtl-container.pink.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.pink.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-info a{color:#004085}.rtl-container.pink.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-warn a{color:#856404}.rtl-container.pink.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.night .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.pink.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.night .failed-status{color:#ff343b}.rtl-container.pink.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.pink.night .svg-fill-primary{fill:#e91e63}.rtl-container.pink.night .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.pink.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.pink.night ngx-charts-bar-vertical text,.rtl-container.pink.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.pink.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.night .mat-paginator-container{padding:0}.rtl-container.pink.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.night .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.small.small .mat-header-cell{font-weight:700}.rtl-container.yellow.small.small .mr-4{margin-right:1rem!important}.rtl-container.yellow.small.small .mat-menu-item,.rtl-container.yellow.small.small .mat-tree .mat-tree-node,.rtl-container.yellow.small.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.yellow.small.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.small.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.yellow.small.small .genseed-message,.rtl-container.yellow.small.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.yellow.small.small .fa-icon-small,.rtl-container.yellow.small.small .top-icon-small{font-size:1.44rem}.rtl-container.yellow.small.small .page-title-container,.rtl-container.yellow.small.small .page-sub-title-container{font-size:1.32rem}.rtl-container.yellow.small.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.yellow.small.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.yellow.small.small .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.small.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.yellow.small.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.yellow.small.small .material-icons,.rtl-container.yellow.small.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.yellow.small.small .mat-expansion-panel-header,.rtl-container.yellow.small.small .mat-menu-item,.rtl-container.yellow.small.small .mat-list .mat-list-item,.rtl-container.yellow.small.small .mat-nav-list .mat-list-item,.rtl-container.yellow.small.small .mat-option,.rtl-container.yellow.small.small .mat-select,.rtl-container.yellow.small.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.yellow.small.small .logo{font-size:2.4rem}.rtl-container.yellow.small.small .font-60-percent{font-size:.72rem}.rtl-container.yellow.small.small .fa-icon-regular{font-size:2.1rem}.rtl-container.yellow.small.small .icon-large{font-size:6rem}.rtl-container.yellow.small.small .icon-small{font-size:1.8rem!important}.rtl-container.yellow.small.small .icon-smaller{font-size:.9rem!important}.rtl-container.yellow.small.small .size-triple{font-size:3.6rem}.rtl-container.yellow.small.small .mat-icon-36{font-size:2.4rem}.rtl-container.yellow.small.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.small.medium .mat-header-cell{font-weight:700}.rtl-container.yellow.small.medium .mat-tree .mat-tree-node,.rtl-container.yellow.small.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.yellow.small.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.small.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.yellow.small.medium .genseed-message,.rtl-container.yellow.small.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.yellow.small.medium .page-title-container,.rtl-container.yellow.small.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.yellow.small.medium .fa-icon-small,.rtl-container.yellow.small.medium .top-icon-small{font-size:1.68rem}.rtl-container.yellow.small.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.small.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.small.medium .modal-info-header{padding:.2rem!important}}.rtl-container.yellow.small.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.yellow.small.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.small.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.yellow.small.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.yellow.small.medium .material-icons{font-size:2.8rem}.rtl-container.yellow.small.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.yellow.small.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.yellow.small.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.yellow.small.medium .mat-expansion-panel-header,.rtl-container.yellow.small.medium .mat-menu-item,.rtl-container.yellow.small.medium .mat-list .mat-list-item,.rtl-container.yellow.small.medium .mat-nav-list .mat-list-item,.rtl-container.yellow.small.medium .mat-option,.rtl-container.yellow.small.medium .mat-select,.rtl-container.yellow.small.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.yellow.small.medium .logo{font-size:2.8rem}.rtl-container.yellow.small.medium .font-60-percent{font-size:.84rem}.rtl-container.yellow.small.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.yellow.small.medium .icon-large{font-size:7rem}.rtl-container.yellow.small.medium .icon-small{font-size:2.1rem!important}.rtl-container.yellow.small.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.yellow.small.medium .size-triple{font-size:4.2rem}.rtl-container.yellow.small.medium .mat-icon-36{font-size:2.8rem}.rtl-container.yellow.small.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.small.large .mat-header-cell{font-weight:800}.rtl-container.yellow.small.large .mat-tree .mat-tree-node,.rtl-container.yellow.small.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.yellow.small.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.small.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.yellow.small.large .genseed-message,.rtl-container.yellow.small.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.yellow.small.large .page-title-container,.rtl-container.yellow.small.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.yellow.small.large .fa-icon-small,.rtl-container.yellow.small.large .top-icon-small,.rtl-container.yellow.small.large .modal-info-header{font-size:1.92rem}.rtl-container.yellow.small.large .top-toolbar-icon.icon-pinned,.rtl-container.yellow.small.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.yellow.small.large .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.small.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.yellow.small.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.yellow.small.large .material-icons{font-size:4rem}.rtl-container.yellow.small.large .mat-expansion-panel-header,.rtl-container.yellow.small.large .mat-menu-item,.rtl-container.yellow.small.large .mat-list .mat-list-item,.rtl-container.yellow.small.large .mat-nav-list .mat-list-item,.rtl-container.yellow.small.large .mat-option,.rtl-container.yellow.small.large .mat-select,.rtl-container.yellow.small.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.yellow.small.large .logo{font-size:3.2rem}.rtl-container.yellow.small.large .font-60-percent{font-size:.96rem}.rtl-container.yellow.small.large .fa-icon-regular{font-size:2.8rem}.rtl-container.yellow.small.large .icon-large{font-size:8rem}.rtl-container.yellow.small.large .icon-small{font-size:2.4rem!important}.rtl-container.yellow.small.large .icon-smaller{font-size:1.2rem!important}.rtl-container.yellow.small.large .size-triple{font-size:4.8rem}.rtl-container.yellow.small.large .mat-icon-36{font-size:3.2rem}.rtl-container.yellow.small.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.small .mat-icon.material-icons:focus{outline:none}.rtl-container.yellow.small .mat-flat-button.mat-primary:focus,.rtl-container.yellow.small .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.small .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.yellow.medium.small .mat-header-cell{font-weight:700}.rtl-container.yellow.medium.small .mr-4{margin-right:1rem!important}.rtl-container.yellow.medium.small .mat-menu-item,.rtl-container.yellow.medium.small .mat-tree .mat-tree-node,.rtl-container.yellow.medium.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.yellow.medium.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.medium.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.yellow.medium.small .genseed-message,.rtl-container.yellow.medium.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.yellow.medium.small .fa-icon-small,.rtl-container.yellow.medium.small .top-icon-small{font-size:1.44rem}.rtl-container.yellow.medium.small .page-title-container,.rtl-container.yellow.medium.small .page-sub-title-container{font-size:1.32rem}.rtl-container.yellow.medium.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.yellow.medium.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.yellow.medium.small .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.medium.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.yellow.medium.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.yellow.medium.small .material-icons,.rtl-container.yellow.medium.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.yellow.medium.small .mat-expansion-panel-header,.rtl-container.yellow.medium.small .mat-menu-item,.rtl-container.yellow.medium.small .mat-list .mat-list-item,.rtl-container.yellow.medium.small .mat-nav-list .mat-list-item,.rtl-container.yellow.medium.small .mat-option,.rtl-container.yellow.medium.small .mat-select,.rtl-container.yellow.medium.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.yellow.medium.small .logo{font-size:2.4rem}.rtl-container.yellow.medium.small .font-60-percent{font-size:.72rem}.rtl-container.yellow.medium.small .fa-icon-regular{font-size:2.1rem}.rtl-container.yellow.medium.small .icon-large{font-size:6rem}.rtl-container.yellow.medium.small .icon-small{font-size:1.8rem!important}.rtl-container.yellow.medium.small .icon-smaller{font-size:.9rem!important}.rtl-container.yellow.medium.small .size-triple{font-size:3.6rem}.rtl-container.yellow.medium.small .mat-icon-36{font-size:2.4rem}.rtl-container.yellow.medium.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.medium.medium .mat-header-cell{font-weight:700}.rtl-container.yellow.medium.medium .mat-tree .mat-tree-node,.rtl-container.yellow.medium.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.yellow.medium.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.medium.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.yellow.medium.medium .genseed-message,.rtl-container.yellow.medium.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.yellow.medium.medium .page-title-container,.rtl-container.yellow.medium.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.yellow.medium.medium .fa-icon-small,.rtl-container.yellow.medium.medium .top-icon-small{font-size:1.68rem}.rtl-container.yellow.medium.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.medium.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.medium.medium .modal-info-header{padding:.2rem!important}}.rtl-container.yellow.medium.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.yellow.medium.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.medium.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.yellow.medium.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.yellow.medium.medium .material-icons{font-size:2.8rem}.rtl-container.yellow.medium.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.yellow.medium.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.yellow.medium.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.yellow.medium.medium .mat-expansion-panel-header,.rtl-container.yellow.medium.medium .mat-menu-item,.rtl-container.yellow.medium.medium .mat-list .mat-list-item,.rtl-container.yellow.medium.medium .mat-nav-list .mat-list-item,.rtl-container.yellow.medium.medium .mat-option,.rtl-container.yellow.medium.medium .mat-select,.rtl-container.yellow.medium.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.yellow.medium.medium .logo{font-size:2.8rem}.rtl-container.yellow.medium.medium .font-60-percent{font-size:.84rem}.rtl-container.yellow.medium.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.yellow.medium.medium .icon-large{font-size:7rem}.rtl-container.yellow.medium.medium .icon-small{font-size:2.1rem!important}.rtl-container.yellow.medium.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.yellow.medium.medium .size-triple{font-size:4.2rem}.rtl-container.yellow.medium.medium .mat-icon-36{font-size:2.8rem}.rtl-container.yellow.medium.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.medium.large .mat-header-cell{font-weight:800}.rtl-container.yellow.medium.large .mat-tree .mat-tree-node,.rtl-container.yellow.medium.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.yellow.medium.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.medium.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.yellow.medium.large .genseed-message,.rtl-container.yellow.medium.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.yellow.medium.large .page-title-container,.rtl-container.yellow.medium.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.yellow.medium.large .fa-icon-small,.rtl-container.yellow.medium.large .top-icon-small,.rtl-container.yellow.medium.large .modal-info-header{font-size:1.92rem}.rtl-container.yellow.medium.large .top-toolbar-icon.icon-pinned,.rtl-container.yellow.medium.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.yellow.medium.large .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.medium.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.yellow.medium.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.yellow.medium.large .material-icons{font-size:4rem}.rtl-container.yellow.medium.large .mat-expansion-panel-header,.rtl-container.yellow.medium.large .mat-menu-item,.rtl-container.yellow.medium.large .mat-list .mat-list-item,.rtl-container.yellow.medium.large .mat-nav-list .mat-list-item,.rtl-container.yellow.medium.large .mat-option,.rtl-container.yellow.medium.large .mat-select,.rtl-container.yellow.medium.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.yellow.medium.large .logo{font-size:3.2rem}.rtl-container.yellow.medium.large .font-60-percent{font-size:.96rem}.rtl-container.yellow.medium.large .fa-icon-regular{font-size:2.8rem}.rtl-container.yellow.medium.large .icon-large{font-size:8rem}.rtl-container.yellow.medium.large .icon-small{font-size:2.4rem!important}.rtl-container.yellow.medium.large .icon-smaller{font-size:1.2rem!important}.rtl-container.yellow.medium.large .size-triple{font-size:4.8rem}.rtl-container.yellow.medium.large .mat-icon-36{font-size:3.2rem}.rtl-container.yellow.medium.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.medium .mat-icon.material-icons:focus{outline:none}.rtl-container.yellow.medium .mat-flat-button.mat-primary:focus,.rtl-container.yellow.medium .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.medium .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.yellow.large.small .mat-header-cell{font-weight:700}.rtl-container.yellow.large.small .mr-4{margin-right:1rem!important}.rtl-container.yellow.large.small .mat-menu-item,.rtl-container.yellow.large.small .mat-tree .mat-tree-node,.rtl-container.yellow.large.small .mat-tree .mat-nested-tree-node-parent{min-height:2.8rem;height:2.8rem}.rtl-container.yellow.large.small .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.large.small .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.32rem}.rtl-container.yellow.large.small .genseed-message,.rtl-container.yellow.large.small .validation-error-message .validation-error-icon.mat-icon,.rtl-container.yellow.large.small .fa-icon-small,.rtl-container.yellow.large.small .top-icon-small{font-size:1.44rem}.rtl-container.yellow.large.small .page-title-container,.rtl-container.yellow.large.small .page-sub-title-container{font-size:1.32rem}.rtl-container.yellow.large.small .mat-icon-button .top-toolbar-icon.icon-pinned,.rtl-container.yellow.large.small .mat-step-header .mat-step-icon .mat-icon{padding-top:1rem}.rtl-container.yellow.large.small .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.large.small .sidenav-img svg{width:2.16rem;height:2.16rem;font-size:1.5rem}.rtl-container.yellow.large.small .horizontal-button .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:2.2rem}.rtl-container.yellow.large.small .material-icons,.rtl-container.yellow.large.small .modal-info-header{font-size:1.8rem;line-height:2rem}.rtl-container.yellow.large.small .mat-expansion-panel-header,.rtl-container.yellow.large.small .mat-menu-item,.rtl-container.yellow.large.small .mat-list .mat-list-item,.rtl-container.yellow.large.small .mat-nav-list .mat-list-item,.rtl-container.yellow.large.small .mat-option,.rtl-container.yellow.large.small .mat-select,.rtl-container.yellow.large.small .mat-selection-list .mat-list-item{font-size:1.2rem!important}.rtl-container.yellow.large.small .logo{font-size:2.4rem}.rtl-container.yellow.large.small .font-60-percent{font-size:.72rem}.rtl-container.yellow.large.small .fa-icon-regular{font-size:2.1rem}.rtl-container.yellow.large.small .icon-large{font-size:6rem}.rtl-container.yellow.large.small .icon-small{font-size:1.8rem!important}.rtl-container.yellow.large.small .icon-smaller{font-size:.9rem!important}.rtl-container.yellow.large.small .size-triple{font-size:3.6rem}.rtl-container.yellow.large.small .mat-icon-36{font-size:2.4rem}.rtl-container.yellow.large.small .btn-close-x{font-size:1.8rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.large.medium .mat-header-cell{font-weight:700}.rtl-container.yellow.large.medium .mat-tree .mat-tree-node,.rtl-container.yellow.large.medium .mat-tree .mat-nested-tree-node-parent{min-height:4rem;height:4rem}.rtl-container.yellow.large.medium .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.large.medium .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.54rem}.rtl-container.yellow.large.medium .genseed-message,.rtl-container.yellow.large.medium .validation-error-message .validation-error-icon.mat-icon{font-size:1.68rem}.rtl-container.yellow.large.medium .page-title-container,.rtl-container.yellow.large.medium .page-sub-title-container{font-size:1.54rem}.rtl-container.yellow.large.medium .fa-icon-small,.rtl-container.yellow.large.medium .top-icon-small{font-size:1.68rem}.rtl-container.yellow.large.medium .modal-info-header{font-size:1.82rem;padding:.8rem 1.6rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.large.medium .modal-info-header{padding:.4rem .4rem .4rem .8rem!important}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.large.medium .modal-info-header{padding:.2rem!important}}.rtl-container.yellow.large.medium .top-toolbar-icon.icon-pinned{font-size:1.82rem}.rtl-container.yellow.large.medium .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.large.medium .sidenav-img svg{width:2.52rem;height:2.52rem;font-size:1.82rem}.rtl-container.yellow.large.medium .horizontal-button .sidenav-img svg{width:3.08rem;height:3.08rem;font-size:2.5rem}.rtl-container.yellow.large.medium .material-icons{font-size:2.8rem}.rtl-container.yellow.large.medium .material-icons.info-icon{font-size:1.4rem;margin:0 2px;width:1.4rem;height:1.4rem}.rtl-container.yellow.large.medium .material-icons.mat-icon.small-icon{font-size:1.68rem}.rtl-container.yellow.large.medium .mat-step-header .mat-step-icon .mat-icon{font-size:initial}.rtl-container.yellow.large.medium .mat-expansion-panel-header,.rtl-container.yellow.large.medium .mat-menu-item,.rtl-container.yellow.large.medium .mat-list .mat-list-item,.rtl-container.yellow.large.medium .mat-nav-list .mat-list-item,.rtl-container.yellow.large.medium .mat-option,.rtl-container.yellow.large.medium .mat-select,.rtl-container.yellow.large.medium .mat-selection-list .mat-list-item{font-size:1.4rem!important}.rtl-container.yellow.large.medium .logo{font-size:2.8rem}.rtl-container.yellow.large.medium .font-60-percent{font-size:.84rem}.rtl-container.yellow.large.medium .fa-icon-regular{font-size:2.45rem}.rtl-container.yellow.large.medium .icon-large{font-size:7rem}.rtl-container.yellow.large.medium .icon-small{font-size:2.1rem!important}.rtl-container.yellow.large.medium .icon-smaller{font-size:1.05rem!important}.rtl-container.yellow.large.medium .size-triple{font-size:4.2rem}.rtl-container.yellow.large.medium .mat-icon-36{font-size:2.8rem}.rtl-container.yellow.large.medium .btn-close-x{font-size:2.1rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.large.large .mat-header-cell{font-weight:800}.rtl-container.yellow.large.large .mat-tree .mat-tree-node,.rtl-container.yellow.large.large .mat-tree .mat-nested-tree-node-parent{height:4rem}.rtl-container.yellow.large.large .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.large.large .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){font-size:1.76rem}.rtl-container.yellow.large.large .genseed-message,.rtl-container.yellow.large.large .validation-error-message .validation-error-icon.mat-icon{font-size:1.92rem}.rtl-container.yellow.large.large .page-title-container,.rtl-container.yellow.large.large .page-sub-title-container{margin-top:.5rem;font-size:1.76rem}.rtl-container.yellow.large.large .fa-icon-small,.rtl-container.yellow.large.large .top-icon-small,.rtl-container.yellow.large.large .modal-info-header{font-size:1.92rem}.rtl-container.yellow.large.large .top-toolbar-icon.icon-pinned,.rtl-container.yellow.large.large .mat-step-header .mat-step-icon .mat-icon{font-size:2rem}.rtl-container.yellow.large.large .top-toolbar-icon .top-toolbar-img,.rtl-container.yellow.large.large .sidenav-img svg{width:3.2rem;height:3.2rem;font-size:2rem}.rtl-container.yellow.large.large .horizontal-button .sidenav-img svg{width:3.6rem;height:3.6rem;font-size:3.2rem}.rtl-container.yellow.large.large .material-icons{font-size:4rem}.rtl-container.yellow.large.large .mat-expansion-panel-header,.rtl-container.yellow.large.large .mat-menu-item,.rtl-container.yellow.large.large .mat-list .mat-list-item,.rtl-container.yellow.large.large .mat-nav-list .mat-list-item,.rtl-container.yellow.large.large .mat-option,.rtl-container.yellow.large.large .mat-select,.rtl-container.yellow.large.large .mat-selection-list .mat-list-item{font-size:1.6rem!important}.rtl-container.yellow.large.large .logo{font-size:3.2rem}.rtl-container.yellow.large.large .font-60-percent{font-size:.96rem}.rtl-container.yellow.large.large .fa-icon-regular{font-size:2.8rem}.rtl-container.yellow.large.large .icon-large{font-size:8rem}.rtl-container.yellow.large.large .icon-small{font-size:2.4rem!important}.rtl-container.yellow.large.large .icon-smaller{font-size:1.2rem!important}.rtl-container.yellow.large.large .size-triple{font-size:4.8rem}.rtl-container.yellow.large.large .mat-icon-36{font-size:3.2rem}.rtl-container.yellow.large.large .btn-close-x{font-size:2.4rem;font-weight:600;min-width:3.6rem;max-width:3.6rem}.rtl-container.yellow.large .mat-icon.material-icons:focus{outline:none}.rtl-container.yellow.large .mat-flat-button.mat-primary:focus,.rtl-container.yellow.large .mat-flat-button.mat-primary:hover{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.large .mat-flat-button.mat-primary:disabled{cursor:not-allowed}.rtl-container.yellow.day .mat-ripple-element{background-color:#0000001a}.rtl-container.yellow.day .mat-option{color:#000000de}.rtl-container.yellow.day .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}.rtl-container.yellow.day .mat-option.mat-option-disabled{color:#00000061}.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#945f1f}.rtl-container.yellow.day .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#424242}.rtl-container.yellow.day .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#b00020}.rtl-container.yellow.day .mat-optgroup-label{color:#0000008a}.rtl-container.yellow.day .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}.rtl-container.yellow.day .mat-pseudo-checkbox{color:#0000008a}.rtl-container.yellow.day .mat-pseudo-checkbox:after{color:#fafafa}.rtl-container.yellow.day .mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-indeterminate{background:#945f1f}.rtl-container.yellow.day .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-indeterminate{background:#424242}.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-indeterminate{background:#b00020}.rtl-container.yellow.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.rtl-container.yellow.day .mat-app-background,.rtl-container.yellow.day.mat-app-background{background-color:#fafafa;color:#000000de}.rtl-container.yellow.day .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.day .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.day .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.day .mat-autocomplete-panel{background:white;color:#000000de}.rtl-container.yellow.day .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}.rtl-container.yellow.day .mat-badge{position:relative}.rtl-container.yellow.day .mat-badge.mat-badge{overflow:visible}.rtl-container.yellow.day .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.yellow.day .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.yellow.day .ng-animate-disabled .mat-badge-content,.rtl-container.yellow.day .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.yellow.day .mat-badge-content.mat-badge-active{transform:none}.rtl-container.yellow.day .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.yellow.day .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.yellow.day .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.yellow.day .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.yellow.day .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.yellow.day .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.yellow.day .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.yellow.day .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.yellow.day .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.yellow.day .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.yellow.day .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.yellow.day .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.yellow.day .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.yellow.day .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.yellow.day .mat-badge-content{color:#fff;background:#945f1f}.cdk-high-contrast-active .rtl-container.yellow.day .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.yellow.day .mat-badge-accent .mat-badge-content{background:#424242;color:#fff}.rtl-container.yellow.day .mat-badge-warn .mat-badge-content{color:#fff;background:#b00020}.rtl-container.yellow.day .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}.rtl-container.yellow.day .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button{color:inherit;background:transparent}.rtl-container.yellow.day .mat-button.mat-primary,.rtl-container.yellow.day .mat-icon-button.mat-primary,.rtl-container.yellow.day .mat-stroked-button.mat-primary{color:#945f1f}.rtl-container.yellow.day .mat-button.mat-accent,.rtl-container.yellow.day .mat-icon-button.mat-accent,.rtl-container.yellow.day .mat-stroked-button.mat-accent{color:#424242}.rtl-container.yellow.day .mat-button.mat-warn,.rtl-container.yellow.day .mat-icon-button.mat-warn,.rtl-container.yellow.day .mat-stroked-button.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.yellow.day .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#945f1f}.rtl-container.yellow.day .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#424242}.rtl-container.yellow.day .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#b00020}.rtl-container.yellow.day .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.day .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.day .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.yellow.day .mat-button .mat-ripple-element,.rtl-container.yellow.day .mat-icon-button .mat-ripple-element,.rtl-container.yellow.day .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.yellow.day .mat-button-focus-overlay{background:black}.rtl-container.yellow.day .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}.rtl-container.yellow.day .mat-flat-button,.rtl-container.yellow.day .mat-raised-button,.rtl-container.yellow.day .mat-fab,.rtl-container.yellow.day .mat-mini-fab{color:#000000de;background-color:#fff}.rtl-container.yellow.day .mat-flat-button.mat-primary,.rtl-container.yellow.day .mat-raised-button.mat-primary,.rtl-container.yellow.day .mat-fab.mat-primary,.rtl-container.yellow.day .mat-mini-fab.mat-primary,.rtl-container.yellow.day .mat-flat-button.mat-accent,.rtl-container.yellow.day .mat-raised-button.mat-accent,.rtl-container.yellow.day .mat-fab.mat-accent,.rtl-container.yellow.day .mat-mini-fab.mat-accent,.rtl-container.yellow.day .mat-flat-button.mat-warn,.rtl-container.yellow.day .mat-raised-button.mat-warn,.rtl-container.yellow.day .mat-fab.mat-warn,.rtl-container.yellow.day .mat-mini-fab.mat-warn{color:#fff}.rtl-container.yellow.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}.rtl-container.yellow.day .mat-flat-button.mat-primary,.rtl-container.yellow.day .mat-raised-button.mat-primary,.rtl-container.yellow.day .mat-fab.mat-primary,.rtl-container.yellow.day .mat-mini-fab.mat-primary{background-color:#945f1f}.rtl-container.yellow.day .mat-flat-button.mat-accent,.rtl-container.yellow.day .mat-raised-button.mat-accent,.rtl-container.yellow.day .mat-fab.mat-accent,.rtl-container.yellow.day .mat-mini-fab.mat-accent{background-color:#424242}.rtl-container.yellow.day .mat-flat-button.mat-warn,.rtl-container.yellow.day .mat-raised-button.mat-warn,.rtl-container.yellow.day .mat-fab.mat-warn,.rtl-container.yellow.day .mat-mini-fab.mat-warn{background-color:#b00020}.rtl-container.yellow.day .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.day .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}.rtl-container.yellow.day .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-fab.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-mini-fab.mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-fab.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-mini-fab.mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-fab.mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-fab:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.yellow.day .mat-button-toggle{color:#00000061}.rtl-container.yellow.day .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}.rtl-container.yellow.day .mat-button-toggle-appearance-standard{color:#000000de;background:white}.rtl-container.yellow.day .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}.rtl-container.yellow.day [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.rtl-container.yellow.day .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}.rtl-container.yellow.day .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}.rtl-container.yellow.day .mat-button-toggle-disabled{color:#00000042;background-color:#eee}.rtl-container.yellow.day .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}.rtl-container.yellow.day .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.rtl-container.yellow.day .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.yellow.day .mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.rtl-container.yellow.day .mat-card{background:white;color:#000000de}.rtl-container.yellow.day .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-card-subtitle{color:#0000008a}.rtl-container.yellow.day .mat-checkbox-frame{border-color:#0000008a}.rtl-container.yellow.day .mat-checkbox-checkmark{fill:#fafafa}.rtl-container.yellow.day .mat-checkbox-checkmark-path{stroke:#fafafa!important}.rtl-container.yellow.day .mat-checkbox-mixedmark{background-color:#fafafa}.rtl-container.yellow.day .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#945f1f}.rtl-container.yellow.day .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#424242}.rtl-container.yellow.day .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#b00020}.rtl-container.yellow.day .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.yellow.day .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.rtl-container.yellow.day .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.rtl-container.yellow.day .mat-checkbox-disabled .mat-checkbox-label{color:#00000061}.rtl-container.yellow.day .mat-checkbox .mat-ripple-element{background-color:#000}.rtl-container.yellow.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.yellow.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#945f1f}.rtl-container.yellow.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.yellow.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#424242}.rtl-container.yellow.day .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.yellow.day .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#b00020}.rtl-container.yellow.day .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}.rtl-container.yellow.day .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip:after{background:black}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#b00020;color:#fff}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#424242;color:#fff}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.day .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.day .mat-table{background:white}.rtl-container.yellow.day .mat-table thead,.rtl-container.yellow.day .mat-table tbody,.rtl-container.yellow.day .mat-table tfoot,.rtl-container.yellow.day mat-header-row,.rtl-container.yellow.day mat-row,.rtl-container.yellow.day mat-footer-row,.rtl-container.yellow.day [mat-header-row],.rtl-container.yellow.day [mat-row],.rtl-container.yellow.day [mat-footer-row],.rtl-container.yellow.day .mat-table-sticky{background:inherit}.rtl-container.yellow.day mat-row,.rtl-container.yellow.day mat-header-row,.rtl-container.yellow.day mat-footer-row,.rtl-container.yellow.day th.mat-header-cell,.rtl-container.yellow.day td.mat-cell,.rtl-container.yellow.day td.mat-footer-cell{border-bottom-color:#0000001f}.rtl-container.yellow.day .mat-header-cell{color:#0000008a}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-footer-cell{color:#000000de}.rtl-container.yellow.day .mat-calendar-arrow{fill:#0000008a}.rtl-container.yellow.day .mat-datepicker-toggle,.rtl-container.yellow.day .mat-datepicker-content .mat-calendar-next-button,.rtl-container.yellow.day .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}.rtl-container.yellow.day .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-calendar-table-header,.rtl-container.yellow.day .mat-calendar-body-label{color:#0000008a}.rtl-container.yellow.day .mat-calendar-body-cell-content,.rtl-container.yellow.day .mat-date-range-input-separator{color:#000000de;border-color:transparent}.rtl-container.yellow.day .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}.rtl-container.yellow.day .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}.rtl-container.yellow.day .mat-calendar-body-in-preview{color:#0000003d}.rtl-container.yellow.day .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}.rtl-container.yellow.day .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}.rtl-container.yellow.day .mat-calendar-body-in-range:before{background:rgba(148,95,31,.2)}.rtl-container.yellow.day .mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.day .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.day [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.day [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.day .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.day .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.day .mat-calendar-body-selected{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#945f1f66}.rtl-container.yellow.day .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.day .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.day .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}@media (hover: hover){.rtl-container.yellow.day .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}}.rtl-container.yellow.day .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(66,66,66,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.day .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(66,66,66,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#424242;color:#fff}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#42424266}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.day .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.day .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}@media (hover: hover){.rtl-container.yellow.day .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4242424d}}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(176,0,32,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.day .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(176,0,32,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#b00020;color:#fff}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#b0002066}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.day .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.day .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}@media (hover: hover){.rtl-container.yellow.day .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#b000204d}}.rtl-container.yellow.day .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-datepicker-toggle-active{color:#945f1f}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{color:#424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-date-range-input-inner[disabled]{color:#00000061}.rtl-container.yellow.day .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}.rtl-container.yellow.day .mat-divider{border-top-color:#0000001f}.rtl-container.yellow.day .mat-divider-vertical{border-right-color:#0000001f}.rtl-container.yellow.day .mat-expansion-panel{background:white;color:#000000de}.rtl-container.yellow.day .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-action-row{border-top-color:#0000001f}.rtl-container.yellow.day .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.yellow.day .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.yellow.day .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.yellow.day .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#000000de}.rtl-container.yellow.day .mat-expansion-panel-header-description,.rtl-container.yellow.day .mat-expansion-indicator:after{color:#0000008a}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.yellow.day .mat-form-field-label,.rtl-container.yellow.day .mat-hint{color:#0009}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-label{color:#945f1f}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#424242}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-focused .mat-form-field-required-marker{color:#424242}.rtl-container.yellow.day .mat-form-field-ripple{background-color:#000000de}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#945f1f}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#424242}.rtl-container.yellow.day .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#b00020}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#945f1f}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#424242}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#b00020}.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#b00020}.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.yellow.day .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#b00020}.rtl-container.yellow.day .mat-error{color:#b00020}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-label,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}.rtl-container.yellow.day .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.day .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}.rtl-container.yellow.day .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.day .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}.rtl-container.yellow.day .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}.rtl-container.yellow.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.yellow.day .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.yellow.day .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}.rtl-container.yellow.day .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#945f1f}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#424242}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#b00020}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}.rtl-container.yellow.day .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}.rtl-container.yellow.day .mat-icon.mat-primary{color:#945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{color:#424242}.rtl-container.yellow.day .mat-icon.mat-warn{color:#b00020}.rtl-container.yellow.day .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}.rtl-container.yellow.day .mat-input-element:disabled,.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}.rtl-container.yellow.day .mat-input-element{caret-color:#945f1f}.rtl-container.yellow.day .mat-input-element::placeholder{color:#0000006b}.rtl-container.yellow.day .mat-input-element::-moz-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-input-element::-webkit-input-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-input-element:-ms-input-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-form-field.mat-accent .mat-input-element{caret-color:#424242}.rtl-container.yellow.day .mat-form-field.mat-warn .mat-input-element,.rtl-container.yellow.day .mat-form-field-invalid .mat-input-element{caret-color:#b00020}.rtl-container.yellow.day .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#b00020}.rtl-container.yellow.day .mat-list-base .mat-list-item,.rtl-container.yellow.day .mat-list-base .mat-list-option{color:#000000de}.rtl-container.yellow.day .mat-list-base .mat-subheader{color:#0000008a}.rtl-container.yellow.day .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}.rtl-container.yellow.day .mat-list-option:hover,.rtl-container.yellow.day .mat-list-option:focus,.rtl-container.yellow.day .mat-nav-list .mat-list-item:hover,.rtl-container.yellow.day .mat-nav-list .mat-list-item:focus,.rtl-container.yellow.day .mat-action-list .mat-list-item:hover,.rtl-container.yellow.day .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-list-single-selected-option,.rtl-container.yellow.day .mat-list-single-selected-option:hover,.rtl-container.yellow.day .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-menu-panel{background:white}.rtl-container.yellow.day .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-menu-item{background:transparent;color:#000000de}.rtl-container.yellow.day .mat-menu-item[disabled],.rtl-container.yellow.day .mat-menu-item[disabled] .mat-menu-submenu-icon,.rtl-container.yellow.day .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}.rtl-container.yellow.day .mat-menu-item .mat-icon-no-color,.rtl-container.yellow.day .mat-menu-submenu-icon{color:#0000008a}.rtl-container.yellow.day .mat-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-paginator{background:white}.rtl-container.yellow.day .mat-paginator,.rtl-container.yellow.day .mat-paginator-page-size .mat-select-trigger{color:#0000008a}.rtl-container.yellow.day .mat-paginator-decrement,.rtl-container.yellow.day .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.rtl-container.yellow.day .mat-paginator-first,.rtl-container.yellow.day .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-decrement,.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-increment,.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-first,.rtl-container.yellow.day .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.rtl-container.yellow.day .mat-progress-bar-background{fill:#e1d3c3}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#e1d3c3}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#945f1f}.rtl-container.yellow.day .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ccc}.rtl-container.yellow.day .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ccc}.rtl-container.yellow.day .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#424242}.rtl-container.yellow.day .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#e8bcc4}.rtl-container.yellow.day .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#e8bcc4}.rtl-container.yellow.day .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#b00020}.rtl-container.yellow.day .mat-progress-spinner circle,.rtl-container.yellow.day .mat-spinner circle{stroke:#945f1f}.rtl-container.yellow.day .mat-progress-spinner.mat-accent circle,.rtl-container.yellow.day .mat-spinner.mat-accent circle{stroke:#424242}.rtl-container.yellow.day .mat-progress-spinner.mat-warn circle,.rtl-container.yellow.day .mat-spinner.mat-warn circle{stroke:#b00020}.rtl-container.yellow.day .mat-radio-outer-circle{border-color:#0000008a}.rtl-container.yellow.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#945f1f}.rtl-container.yellow.day .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.yellow.day .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.day .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.day .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#945f1f}.rtl-container.yellow.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#424242}.rtl-container.yellow.day .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.yellow.day .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.day .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.day .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#424242}.rtl-container.yellow.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#b00020}.rtl-container.yellow.day .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.yellow.day .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.day .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.day .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#b00020}.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}.rtl-container.yellow.day .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}.rtl-container.yellow.day .mat-radio-button .mat-ripple-element{background-color:#000}.rtl-container.yellow.day .mat-select-value{color:#000000de}.rtl-container.yellow.day .mat-select-placeholder{color:#0000006b}.rtl-container.yellow.day .mat-select-disabled .mat-select-value{color:#00000061}.rtl-container.yellow.day .mat-select-arrow{color:#0000008a}.rtl-container.yellow.day .mat-select-panel{background:white}.rtl-container.yellow.day .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#945f1f}.rtl-container.yellow.day .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#424242}.rtl-container.yellow.day .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.yellow.day .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#b00020}.rtl-container.yellow.day .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}.rtl-container.yellow.day .mat-drawer-container{background-color:#fafafa;color:#000000de}.rtl-container.yellow.day .mat-drawer{background-color:#fff;color:#000000de}.rtl-container.yellow.day .mat-drawer.mat-drawer-push{background-color:#fff}.rtl-container.yellow.day .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-drawer-side.mat-drawer-end,.rtl-container.yellow.day [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}.rtl-container.yellow.day [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}.rtl-container.yellow.day .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#424242}.rtl-container.yellow.day .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#4242428a}.rtl-container.yellow.day .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#424242}.rtl-container.yellow.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#945f1f8a}.rtl-container.yellow.day .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#b00020}.rtl-container.yellow.day .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#b000208a}.rtl-container.yellow.day .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#b00020}.rtl-container.yellow.day .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.rtl-container.yellow.day .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}.rtl-container.yellow.day .mat-slide-toggle-bar{background-color:#00000061}.rtl-container.yellow.day .mat-slider-track-background{background-color:#00000042}.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#945f1f}.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.day .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#945f1f33}.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#424242}.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.day .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#42424233}.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#b00020}.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.day .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#b0002033}.rtl-container.yellow.day .mat-slider:hover .mat-slider-track-background,.rtl-container.yellow.day .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}.rtl-container.yellow.day .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.yellow.day .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.yellow.day .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}.rtl-container.yellow.day .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.day .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}.rtl-container.yellow.day .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}.rtl-container.yellow.day .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.day .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.day .mat-step-header.cdk-keyboard-focused,.rtl-container.yellow.day .mat-step-header.cdk-program-focused,.rtl-container.yellow.day .mat-step-header:hover:not([aria-disabled]),.rtl-container.yellow.day .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.yellow.day .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.yellow.day .mat-step-header:hover{background:none}}.rtl-container.yellow.day .mat-step-header .mat-step-label,.rtl-container.yellow.day .mat-step-header .mat-step-optional{color:#0000008a}.rtl-container.yellow.day .mat-step-header .mat-step-icon{background-color:#0000008a;color:#fff}.rtl-container.yellow.day .mat-step-header .mat-step-icon-selected,.rtl-container.yellow.day .mat-step-header .mat-step-icon-state-done,.rtl-container.yellow.day .mat-step-header .mat-step-icon-state-edit{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon{color:#fff}.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.yellow.day .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#424242;color:#fff}.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.yellow.day .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#b00020;color:#fff}.rtl-container.yellow.day .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#b00020}.rtl-container.yellow.day .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}.rtl-container.yellow.day .mat-step-header .mat-step-label.mat-step-label-error{color:#b00020}.rtl-container.yellow.day .mat-stepper-horizontal,.rtl-container.yellow.day .mat-stepper-vertical{background-color:#fff}.rtl-container.yellow.day .mat-stepper-vertical-line:before{border-left-color:#0000001f}.rtl-container.yellow.day .mat-horizontal-stepper-header:before,.rtl-container.yellow.day .mat-horizontal-stepper-header:after,.rtl-container.yellow.day .mat-stepper-horizontal-line{border-top-color:#0000001f}.rtl-container.yellow.day .mat-sort-header-arrow{color:#757575}.rtl-container.yellow.day .mat-tab-nav-bar,.rtl-container.yellow.day .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.yellow.day .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.rtl-container.yellow.day .mat-tab-label,.rtl-container.yellow.day .mat-tab-link{color:#000000de}.rtl-container.yellow.day .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-link.mat-tab-disabled{color:#00000061}.rtl-container.yellow.day .mat-tab-header-pagination-chevron{border-color:#000000de}.rtl-container.yellow.day .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}.rtl-container.yellow.day .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.day .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#945f1f}.rtl-container.yellow.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.yellow.day .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#424242}.rtl-container.yellow.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.day .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#b00020}.rtl-container.yellow.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.day .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#945f1f}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#7575754d}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#424242}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#b00020}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.day .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.day .mat-toolbar{background:whitesmoke;color:#000000de}.rtl-container.yellow.day .mat-toolbar.mat-primary{background:#945f1f;color:#fff}.rtl-container.yellow.day .mat-toolbar.mat-accent{background:#424242;color:#fff}.rtl-container.yellow.day .mat-toolbar.mat-warn{background:#b00020;color:#fff}.rtl-container.yellow.day .mat-toolbar .mat-form-field-underline,.rtl-container.yellow.day .mat-toolbar .mat-form-field-ripple,.rtl-container.yellow.day .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.yellow.day .mat-toolbar .mat-form-field-label,.rtl-container.yellow.day .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.yellow.day .mat-toolbar .mat-select-value,.rtl-container.yellow.day .mat-toolbar .mat-select-arrow,.rtl-container.yellow.day .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.yellow.day .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.yellow.day .mat-tooltip{background:rgba(97,97,97,.9)}.rtl-container.yellow.day .mat-tree{background:white}.rtl-container.yellow.day .mat-tree-node,.rtl-container.yellow.day .mat-nested-tree-node{color:#000000de}.rtl-container.yellow.day .mat-snack-bar-container{color:#ffffffb3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-simple-snackbar-action{color:#424242}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.yellow.day .rtl-top-toolbar{border-bottom:1px solid white}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .rtl-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#945f1f}.rtl-container.yellow.day .rtl-warn-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#b00020}.rtl-container.yellow.day .rtl-accent-snack-bar{max-width:90vw!important;font-weight:600;background-color:#fff;opacity:.9!important;color:#424242}.rtl-container.yellow.day .mat-tab-label.mat-tab-label-active{color:#945f1f}.rtl-container.yellow.day .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#945f1f}.rtl-container.yellow.day .mat-tab-label .tab-badge .mat-badge-content{background:rgba(0,0,0,.54)}.rtl-container.yellow.day .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.yellow.day .mat-form-field-suffix{color:#0000008a}.rtl-container.yellow.day .mat-stroked-button.mat-primary{border-color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.yellow.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .selected-color{border-color:#b48f62}.rtl-container.yellow.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.yellow.day .page-title-container,.rtl-container.yellow.day .page-sub-title-container{color:#0000008a}.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.yellow.day .page-title-container .mat-input-element,.rtl-container.yellow.day .page-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-title-container .theme-name,.rtl-container.yellow.day .page-sub-title-container .mat-input-element,.rtl-container.yellow.day .page-sub-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.yellow.day .cc-data-block .cc-data-title{color:#945f1f}.rtl-container.yellow.day .active-link,.rtl-container.yellow.day .active-link .fa-icon-small{color:#945f1f;font-weight:500;cursor:pointer;fill:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#945f1f;cursor:pointer;background:rgba(0,0,0,.04)}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .mat-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day svg.top-icon-small{fill:#000000de}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#65320a}.rtl-container.yellow.day .modal-qr-code-container{background:rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-tab-label,.rtl-container.yellow.day .mat-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-card,.rtl-container.yellow.day .mat-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-card-header .mat-card-title,.rtl-container.yellow.day .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-info-value{color:#0000008a}.rtl-container.yellow.day .color-primary{color:#945f1f!important}.rtl-container.yellow.day .dot-primary{background-color:#945f1f!important}.rtl-container.yellow.day .dot-primary-lighter{background-color:#b48f62!important}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-tooltip{font-size:120%}.rtl-container.yellow.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.yellow.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.yellow.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.yellow.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-1{fill:#fff}.rtl-container.yellow.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.yellow.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-6{fill:#fff}.rtl-container.yellow.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-9{fill:#fff}.rtl-container.yellow.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-16{fill:#404040}.rtl-container.yellow.day svg .fill-color-17{fill:#404040}.rtl-container.yellow.day svg .fill-color-18{fill:#000}.rtl-container.yellow.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-24{fill:#000}.rtl-container.yellow.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.day svg .fill-color-27{fill:#000}.rtl-container.yellow.day svg .fill-color-28{fill:#313131}.rtl-container.yellow.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-30{fill:#fff}.rtl-container.yellow.day svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.day svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.day svg .fill-color-primary-darker{fill:#945f1f}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.yellow.day .material-icons.info-icon{color:#0000008a}.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#945f1f}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#65320a}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#caaf8f}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.yellow.day .foreground.mat-progress-spinner circle,.rtl-container.yellow.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.yellow.day .mat-toolbar-row,.rtl-container.yellow.day .mat-toolbar-single-row{height:5rem}.rtl-container.yellow.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day a{color:#945f1f}.rtl-container.yellow.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.day .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.day .mat-icon-36{color:#0000008a}.rtl-container.yellow.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.day .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.yellow.day .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.day .border-primary{border:1px solid #945f1f}.rtl-container.yellow.day .border-accent{border:1px solid #424242}.rtl-container.yellow.day .border-warn{border:1px solid #b00020}.rtl-container.yellow.day .material-icons.primary{color:#945f1f}.rtl-container.yellow.day .material-icons.accent{color:#424242}.rtl-container.yellow.day .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.yellow.day .row-disabled{background-color:gray}.rtl-container.yellow.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.day .mat-menu-panel{min-width:6.4rem}.rtl-container.yellow.day .horizontal-button{height:5rem;border-radius:0}.rtl-container.yellow.day .horizontal-button:hover{background:#b48f62;color:#424242}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button,.rtl-container.yellow.day .mat-flat-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.yellow.day .cc-data-block .cc-data-value{font-size:120%;color:#0000008a}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-header-cell,.rtl-container.yellow.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.yellow.day table.mat-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-table thead tr th{color:#000}.rtl-container.yellow.day table.mat-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.yellow.day table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.day .more-button{color:#00000061}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.yellow.day .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500}.rtl-container.yellow.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.yellow.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.yellow.day .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.day .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:9rem;width:9rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.day .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.yellow.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid rgba(0,0,0,.54)}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700;color:#0000008a}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.yellow.day .color-warn{color:#b00020}.rtl-container.yellow.day .fill-warn{fill:#b00020}.rtl-container.yellow.day .alert{border:1px solid rgba(0,0,0,.54);color:#0000008a;background-color:#0000000a}.rtl-container.yellow.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-info a{color:#004085}.rtl-container.yellow.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-warn a{color:#856404}.rtl-container.yellow.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.yellow.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.day .failed-status{color:#b00020}.rtl-container.yellow.day .material-icons.icon-failed-status{font-size:1.8rem;fill:#b00020;height:2rem}.rtl-container.yellow.day .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.day .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.yellow.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.day .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.day .mat-paginator-container{padding:0}.rtl-container.yellow.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.day .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.yellow.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.night .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-option{color:#fff}.rtl-container.yellow.night .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-option.mat-active{background:rgba(0,0,0,.04);color:#fff}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#945f1f}.rtl-container.yellow.night .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#eee}.rtl-container.yellow.night .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ff343b}.rtl-container.yellow.night .mat-pseudo-checkbox:after{color:#0d0d0d}.rtl-container.yellow.night .mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-indeterminate{background:#945f1f}.rtl-container.yellow.night .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-indeterminate{background:#eeeeee}.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-checked,.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ff343b}.rtl-container.yellow.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#686868}.rtl-container.yellow.night .mat-app-background,.rtl-container.yellow.night.mat-app-background{background-color:#0d0d0d;color:#fff}.rtl-container.yellow.night .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.night .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.night .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.night .mat-autocomplete-panel{background:#202020;color:#fff}.rtl-container.yellow.night .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#202020}.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#fff}.rtl-container.yellow.night .mat-badge{position:relative}.rtl-container.yellow.night .mat-badge.mat-badge{overflow:visible}.rtl-container.yellow.night .mat-badge-hidden .mat-badge-content{display:none}.rtl-container.yellow.night .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.rtl-container.yellow.night .ng-animate-disabled .mat-badge-content,.rtl-container.yellow.night .mat-badge-content._mat-animation-noopable{transition:none}.rtl-container.yellow.night .mat-badge-content.mat-badge-active{transform:none}.rtl-container.yellow.night .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.rtl-container.yellow.night .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.rtl-container.yellow.night .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.rtl-container.yellow.night .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.rtl-container.yellow.night .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .rtl-container.yellow.night .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.rtl-container.yellow.night .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .rtl-container.yellow.night .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.rtl-container.yellow.night .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.rtl-container.yellow.night .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.rtl-container.yellow.night .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.rtl-container.yellow.night .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.rtl-container.yellow.night .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .rtl-container.yellow.night .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.rtl-container.yellow.night .mat-badge-content{color:#fff;background:#945f1f}.cdk-high-contrast-active .rtl-container.yellow.night .mat-badge-content{outline:solid 1px;border-radius:0}.rtl-container.yellow.night .mat-badge-accent .mat-badge-content{background:#eeeeee;color:#000}.rtl-container.yellow.night .mat-badge-warn .mat-badge-content{color:#fff;background:#ff343b}.rtl-container.yellow.night .mat-badge-disabled .mat-badge-content{background:#4c4c4c}.rtl-container.yellow.night .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:#262626;color:#fff}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button{color:inherit;background:transparent}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#945f1f}.rtl-container.yellow.night .mat-button.mat-accent,.rtl-container.yellow.night .mat-icon-button.mat-accent,.rtl-container.yellow.night .mat-stroked-button.mat-accent{color:#eee}.rtl-container.yellow.night .mat-button.mat-warn,.rtl-container.yellow.night .mat-icon-button.mat-warn,.rtl-container.yellow.night .mat-stroked-button.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-icon-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.yellow.night .mat-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-primary .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#945f1f}.rtl-container.yellow.night .mat-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-accent .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#eee}.rtl-container.yellow.night .mat-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-warn .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ff343b}.rtl-container.yellow.night .mat-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.night .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.rtl-container.yellow.night .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.rtl-container.yellow.night .mat-button .mat-ripple-element,.rtl-container.yellow.night .mat-icon-button .mat-ripple-element,.rtl-container.yellow.night .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.rtl-container.yellow.night .mat-button-focus-overlay{background:white}.rtl-container.yellow.night .mat-stroked-button:not(.mat-button-disabled){border-color:#ffffff4d}.rtl-container.yellow.night .mat-flat-button,.rtl-container.yellow.night .mat-raised-button,.rtl-container.yellow.night .mat-fab,.rtl-container.yellow.night .mat-mini-fab{color:#fff;background-color:#363636}.rtl-container.yellow.night .mat-flat-button.mat-primary,.rtl-container.yellow.night .mat-raised-button.mat-primary,.rtl-container.yellow.night .mat-fab.mat-primary,.rtl-container.yellow.night .mat-mini-fab.mat-primary{color:#fff}.rtl-container.yellow.night .mat-flat-button.mat-accent,.rtl-container.yellow.night .mat-raised-button.mat-accent,.rtl-container.yellow.night .mat-fab.mat-accent,.rtl-container.yellow.night .mat-mini-fab.mat-accent{color:#000}.rtl-container.yellow.night .mat-flat-button.mat-warn,.rtl-container.yellow.night .mat-raised-button.mat-warn,.rtl-container.yellow.night .mat-fab.mat-warn,.rtl-container.yellow.night .mat-mini-fab.mat-warn{color:#fff}.rtl-container.yellow.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#ffffff42}.rtl-container.yellow.night .mat-flat-button.mat-primary,.rtl-container.yellow.night .mat-raised-button.mat-primary,.rtl-container.yellow.night .mat-fab.mat-primary,.rtl-container.yellow.night .mat-mini-fab.mat-primary{background-color:#945f1f}.rtl-container.yellow.night .mat-flat-button.mat-accent,.rtl-container.yellow.night .mat-raised-button.mat-accent,.rtl-container.yellow.night .mat-fab.mat-accent,.rtl-container.yellow.night .mat-mini-fab.mat-accent{background-color:#eee}.rtl-container.yellow.night .mat-flat-button.mat-warn,.rtl-container.yellow.night .mat-raised-button.mat-warn,.rtl-container.yellow.night .mat-fab.mat-warn,.rtl-container.yellow.night .mat-mini-fab.mat-warn{background-color:#ff343b}.rtl-container.yellow.night .mat-flat-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-flat-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-raised-button.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-fab.mat-button-disabled.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-primary.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-accent.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-warn.mat-button-disabled,.rtl-container.yellow.night .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#404040}.rtl-container.yellow.night .mat-flat-button.mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-raised-button.mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-fab.mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-flat-button.mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-raised-button.mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-fab.mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.yellow.night .mat-flat-button.mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-raised-button.mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-fab.mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-stroked-button:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-fab:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-button-toggle-standalone:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.rtl-container.yellow.night .mat-button-toggle-appearance-standard{color:#fff;background:#202020}.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #636363}.rtl-container.yellow.night [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #636363}.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #636363}.rtl-container.yellow.night .mat-button-toggle-checked{background-color:#303030}.rtl-container.yellow.night .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#fff}.rtl-container.yellow.night .mat-button-toggle-disabled{color:#ffffff42;background-color:#404040}.rtl-container.yellow.night .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#202020}.rtl-container.yellow.night .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#363636}.rtl-container.yellow.night .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.rtl-container.yellow.night .mat-button-toggle-group-appearance-standard{border:solid 1px #636363}.rtl-container.yellow.night .mat-card{background:#202020;color:#fff}.rtl-container.yellow.night .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-checkbox-checkmark{fill:#0d0d0d}.rtl-container.yellow.night .mat-checkbox-checkmark-path{stroke:#0d0d0d!important}.rtl-container.yellow.night .mat-checkbox-mixedmark{background-color:#0d0d0d}.rtl-container.yellow.night .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#945f1f}.rtl-container.yellow.night .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#eee}.rtl-container.yellow.night .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ff343b}.rtl-container.yellow.night .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.rtl-container.yellow.night .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#686868}.rtl-container.yellow.night .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#686868}.rtl-container.yellow.night .mat-checkbox .mat-ripple-element{background-color:#fff}.rtl-container.yellow.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.rtl-container.yellow.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#945f1f}.rtl-container.yellow.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.rtl-container.yellow.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#eeeeee}.rtl-container.yellow.night .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.rtl-container.yellow.night .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ff343b}.rtl-container.yellow.night .mat-chip.mat-standard-chip{background-color:#404040;color:#fff}.rtl-container.yellow.night .mat-chip.mat-standard-chip .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip:after{background:white}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ff343b;color:#fff}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#ffffff1a}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#eee;color:#000}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#000;opacity:.4}.rtl-container.yellow.night .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#0000001a}.rtl-container.yellow.night .mat-table{background:#202020}.rtl-container.yellow.night .mat-table thead,.rtl-container.yellow.night .mat-table tbody,.rtl-container.yellow.night .mat-table tfoot,.rtl-container.yellow.night mat-header-row,.rtl-container.yellow.night mat-row,.rtl-container.yellow.night mat-footer-row,.rtl-container.yellow.night [mat-header-row],.rtl-container.yellow.night [mat-row],.rtl-container.yellow.night [mat-footer-row],.rtl-container.yellow.night .mat-table-sticky{background:inherit}.rtl-container.yellow.night mat-row,.rtl-container.yellow.night mat-header-row,.rtl-container.yellow.night mat-footer-row,.rtl-container.yellow.night th.mat-header-cell,.rtl-container.yellow.night td.mat-cell,.rtl-container.yellow.night td.mat-footer-cell{border-bottom-color:#ffffff4d}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-footer-cell{color:#fff}.rtl-container.yellow.night .mat-calendar-arrow{fill:#fff}.rtl-container.yellow.night .mat-datepicker-toggle,.rtl-container.yellow.night .mat-datepicker-content .mat-calendar-next-button,.rtl-container.yellow.night .mat-datepicker-content .mat-calendar-previous-button{color:#fff}.rtl-container.yellow.night .mat-calendar-table-header-divider:after{background:rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-calendar-body-cell-content,.rtl-container.yellow.night .mat-date-range-input-separator{color:#fff;border-color:transparent}.rtl-container.yellow.night .mat-calendar-body-in-preview{color:#fff9}.rtl-container.yellow.night .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){opacity:.5}.rtl-container.yellow.night .mat-calendar-body-in-range:before{background:rgba(148,95,31,.2)}.rtl-container.yellow.night .mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.night .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.night [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.night [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(148,95,31,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.night .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.night .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.night .mat-calendar-body-selected{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#945f1f66}.rtl-container.yellow.night .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.night .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.night .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}@media (hover: hover){.rtl-container.yellow.night .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#945f1f4d}}.rtl-container.yellow.night .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#202020;color:#fff}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(238,238,238,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.night .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(238,238,238,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#eee;color:#000}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#eee6}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #000}.rtl-container.yellow.night .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.night .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}@media (hover: hover){.rtl-container.yellow.night .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#eeeeee4d}}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(255,52,59,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,.rtl-container.yellow.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,.rtl-container.yellow.night .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(255,52,59,.2) 50%,rgba(249,171,0,.2) 50%)}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ff343b;color:#fff}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ff343b66}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.rtl-container.yellow.night .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.rtl-container.yellow.night .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}@media (hover: hover){.rtl-container.yellow.night .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ff343b4d}}.rtl-container.yellow.night .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.night .mat-datepicker-toggle-active{color:#945f1f}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{color:#eee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:#262626;color:#fff}.rtl-container.yellow.night .mat-divider{border-top-color:#ffffff4d}.rtl-container.yellow.night .mat-divider-vertical{border-right-color:#ffffff4d}.rtl-container.yellow.night .mat-expansion-panel{background:#202020;color:#fff}.rtl-container.yellow.night .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-action-row{border-top-color:#ffffff4d}.rtl-container.yellow.night .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.rtl-container.yellow.night .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.rtl-container.yellow.night .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){.rtl-container.yellow.night .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#202020}}.rtl-container.yellow.night .mat-expansion-panel-header-title{color:#fff}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#ffffff42}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-label{color:#945f1f}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#eee}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-focused .mat-form-field-required-marker{color:#eee}.rtl-container.yellow.night .mat-form-field-ripple{background-color:#fff}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#945f1f}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#eee}.rtl-container.yellow.night .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ff343b}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#945f1f}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#eee}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ff343b}.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-label,.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ff343b}.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.rtl-container.yellow.night .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ff343b}.rtl-container.yellow.night .mat-error{color:#ff343b}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.yellow.night .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.night .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#ffffffb3}.rtl-container.yellow.night .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.rtl-container.yellow.night .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#ffffff1a}.rtl-container.yellow.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0d}.rtl-container.yellow.night .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#ffffff80}.rtl-container.yellow.night .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}.rtl-container.yellow.night .mat-form-field-appearance-outline .mat-form-field-outline{color:#ffffff4d}.rtl-container.yellow.night .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#fff}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#945f1f}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#eee}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick,.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ff343b}.rtl-container.yellow.night .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#ffffff26}.rtl-container.yellow.night .mat-icon.mat-primary{color:#945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{color:#eee}.rtl-container.yellow.night .mat-icon.mat-warn{color:#ff343b}.rtl-container.yellow.night .mat-input-element{caret-color:#945f1f}.rtl-container.yellow.night .mat-input-element:not(.mat-native-select-inline) option{color:#000000de}.rtl-container.yellow.night .mat-input-element:not(.mat-native-select-inline) option:disabled{color:#00000061}.rtl-container.yellow.night .mat-form-field.mat-accent .mat-input-element{caret-color:#eee}.rtl-container.yellow.night .mat-form-field.mat-warn .mat-input-element,.rtl-container.yellow.night .mat-form-field-invalid .mat-input-element{caret-color:#ff343b}.rtl-container.yellow.night .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ff343b}.rtl-container.yellow.night .mat-list-base .mat-list-item,.rtl-container.yellow.night .mat-list-base .mat-list-option{color:#fff}.rtl-container.yellow.night .mat-list-base .mat-list-item-disabled{background-color:#444}.rtl-container.yellow.night .mat-list-option:hover,.rtl-container.yellow.night .mat-list-option:focus,.rtl-container.yellow.night .mat-nav-list .mat-list-item:hover,.rtl-container.yellow.night .mat-nav-list .mat-list-item:focus,.rtl-container.yellow.night .mat-action-list .mat-list-item:hover,.rtl-container.yellow.night .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-list-single-selected-option,.rtl-container.yellow.night .mat-list-single-selected-option:hover,.rtl-container.yellow.night .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.rtl-container.yellow.night .mat-menu-panel{background:#202020}.rtl-container.yellow.night .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-menu-item{background:transparent;color:#fff}.rtl-container.yellow.night .mat-menu-item .mat-icon-no-color,.rtl-container.yellow.night .mat-menu-submenu-icon{color:#fff}.rtl-container.yellow.night .mat-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.rtl-container.yellow.night .mat-paginator{background:#202020}.rtl-container.yellow.night .mat-paginator-decrement,.rtl-container.yellow.night .mat-paginator-increment{border-top:2px solid white;border-right:2px solid white}.rtl-container.yellow.night .mat-paginator-first,.rtl-container.yellow.night .mat-paginator-last{border-top:2px solid white}.rtl-container.yellow.night .mat-progress-bar-background{fill:#2f2212}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#2f2212}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#945f1f}.rtl-container.yellow.night .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#454545}.rtl-container.yellow.night .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#454545}.rtl-container.yellow.night .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#eee}.rtl-container.yellow.night .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#4a1719}.rtl-container.yellow.night .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#4a1719}.rtl-container.yellow.night .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ff343b}.rtl-container.yellow.night .mat-progress-spinner circle,.rtl-container.yellow.night .mat-spinner circle{stroke:#945f1f}.rtl-container.yellow.night .mat-progress-spinner.mat-accent circle,.rtl-container.yellow.night .mat-spinner.mat-accent circle{stroke:#eee}.rtl-container.yellow.night .mat-progress-spinner.mat-warn circle,.rtl-container.yellow.night .mat-spinner.mat-warn circle{stroke:#ff343b}.rtl-container.yellow.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#945f1f}.rtl-container.yellow.night .mat-radio-button.mat-primary .mat-radio-inner-circle,.rtl-container.yellow.night .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.night .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.night .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#945f1f}.rtl-container.yellow.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#eee}.rtl-container.yellow.night .mat-radio-button.mat-accent .mat-radio-inner-circle,.rtl-container.yellow.night .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.night .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.night .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#eee}.rtl-container.yellow.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ff343b}.rtl-container.yellow.night .mat-radio-button.mat-warn .mat-radio-inner-circle,.rtl-container.yellow.night .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.rtl-container.yellow.night .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.rtl-container.yellow.night .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ff343b}.rtl-container.yellow.night .mat-radio-button .mat-ripple-element{background-color:#fff}.rtl-container.yellow.night .mat-select-value{color:#fff}.rtl-container.yellow.night .mat-select-panel{background:#202020}.rtl-container.yellow.night .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.rtl-container.yellow.night .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#945f1f}.rtl-container.yellow.night .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#eee}.rtl-container.yellow.night .mat-form-field.mat-focused.mat-warn .mat-select-arrow,.rtl-container.yellow.night .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ff343b}.rtl-container.yellow.night .mat-drawer-container{background-color:#0d0d0d;color:#fff}.rtl-container.yellow.night .mat-drawer{background-color:#262626;color:#fff}.rtl-container.yellow.night .mat-drawer.mat-drawer-push{background-color:#262626}.rtl-container.yellow.night .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-drawer-side{border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-drawer-side.mat-drawer-end,.rtl-container.yellow.night [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(255,255,255,.3);border-right:none}.rtl-container.yellow.night [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-drawer-backdrop.mat-drawer-shown{background-color:#dfdfdf99}.rtl-container.yellow.night .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#eee}.rtl-container.yellow.night .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#eeeeee8a}.rtl-container.yellow.night .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#eee}.rtl-container.yellow.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#945f1f}.rtl-container.yellow.night .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#945f1f8a}.rtl-container.yellow.night .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#945f1f}.rtl-container.yellow.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ff343b}.rtl-container.yellow.night .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ff343b8a}.rtl-container.yellow.night .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ff343b}.rtl-container.yellow.night .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#fff}.rtl-container.yellow.night .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#bdbdbd}.rtl-container.yellow.night .mat-slider-track-background{background-color:#ffffff80}.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#945f1f}.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.night .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#945f1f33}.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#eee}.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#000}.rtl-container.yellow.night .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#eee3}.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ff343b}.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.rtl-container.yellow.night .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ff343b33}.rtl-container.yellow.night .mat-slider:hover .mat-slider-track-background,.rtl-container.yellow.night .mat-slider.cdk-focused .mat-slider-track-background{background-color:#fff9}.rtl-container.yellow.night .mat-slider.mat-slider-disabled .mat-slider-track-background,.rtl-container.yellow.night .mat-slider.mat-slider-disabled .mat-slider-track-fill,.rtl-container.yellow.night .mat-slider.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#ffffff80}.rtl-container.yellow.night .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#ffffff1f}.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#fff}.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#ffffff80}.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#ffffff80;background-color:transparent}.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#fff9}.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.rtl-container.yellow.night .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#ffffff80}.rtl-container.yellow.night .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#ffffffb3}.rtl-container.yellow.night .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.night .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(255,255,255,.7),rgba(255,255,255,.7) 2px,transparent 0,transparent)}.rtl-container.yellow.night .mat-step-header.cdk-keyboard-focused,.rtl-container.yellow.night .mat-step-header.cdk-program-focused,.rtl-container.yellow.night .mat-step-header:hover:not([aria-disabled]),.rtl-container.yellow.night .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}.rtl-container.yellow.night .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){.rtl-container.yellow.night .mat-step-header:hover{background:none}}.rtl-container.yellow.night .mat-step-header .mat-step-icon{color:#fff}.rtl-container.yellow.night .mat-step-header .mat-step-icon-selected,.rtl-container.yellow.night .mat-step-header .mat-step-icon-state-done,.rtl-container.yellow.night .mat-step-header .mat-step-icon-state-edit{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon{color:#000}.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon-selected,.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon-state-done,.rtl-container.yellow.night .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#eee;color:#000}.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon{color:#fff}.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon-selected,.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon-state-done,.rtl-container.yellow.night .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ff343b;color:#fff}.rtl-container.yellow.night .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ff343b}.rtl-container.yellow.night .mat-step-header .mat-step-label.mat-step-label-active{color:#fff}.rtl-container.yellow.night .mat-step-header .mat-step-label.mat-step-label-error{color:#ff343b}.rtl-container.yellow.night .mat-stepper-horizontal,.rtl-container.yellow.night .mat-stepper-vertical{background-color:#202020}.rtl-container.yellow.night .mat-stepper-vertical-line:before{border-left-color:#ffffff4d}.rtl-container.yellow.night .mat-horizontal-stepper-header:before,.rtl-container.yellow.night .mat-horizontal-stepper-header:after,.rtl-container.yellow.night .mat-stepper-horizontal-line{border-top-color:#ffffff4d}.rtl-container.yellow.night .mat-tab-nav-bar,.rtl-container.yellow.night .mat-tab-header{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-tab-group-inverted-header .mat-tab-nav-bar,.rtl-container.yellow.night .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(255,255,255,.3);border-bottom:none}.rtl-container.yellow.night .mat-tab-label,.rtl-container.yellow.night .mat-tab-link{color:#fff}.rtl-container.yellow.night .mat-tab-header-pagination-chevron{border-color:#fff}.rtl-container.yellow.night .mat-tab-group[class*=mat-background-]>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#945f1f}.rtl-container.yellow.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.yellow.night .mat-tab-group.mat-accent .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#eee}.rtl-container.yellow.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#000}.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.night .mat-tab-group.mat-warn .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ff343b}.rtl-container.yellow.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#b48f624d}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#945f1f}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#9999994d}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#eee}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#000}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#0006}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#000}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e7b3bc4d}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ff343b}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#fff6}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#fff}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.rtl-container.yellow.night .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.rtl-container.yellow.night .mat-toolbar{background:#262626;color:#fff}.rtl-container.yellow.night .mat-toolbar.mat-primary{background:#945f1f;color:#fff}.rtl-container.yellow.night .mat-toolbar.mat-accent{background:#eeeeee;color:#000}.rtl-container.yellow.night .mat-toolbar.mat-warn{background:#ff343b;color:#fff}.rtl-container.yellow.night .mat-toolbar .mat-form-field-underline,.rtl-container.yellow.night .mat-toolbar .mat-form-field-ripple,.rtl-container.yellow.night .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.rtl-container.yellow.night .mat-toolbar .mat-form-field-label,.rtl-container.yellow.night .mat-toolbar .mat-focused .mat-form-field-label,.rtl-container.yellow.night .mat-toolbar .mat-select-value,.rtl-container.yellow.night .mat-toolbar .mat-select-arrow,.rtl-container.yellow.night .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.rtl-container.yellow.night .mat-toolbar .mat-input-element{caret-color:currentColor}.rtl-container.yellow.night .mat-tree{background:#202020}.rtl-container.yellow.night .mat-tree-node,.rtl-container.yellow.night .mat-nested-tree-node{color:#fff}.rtl-container.yellow.night .mat-snack-bar-container{color:#000000de;background:#fafafa;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-simple-snackbar-action{color:inherit}.rtl-container.yellow.night .mat-primary{color:#ffa164}.rtl-container.yellow.night .mat-button-base.mat-flat-button.mat-primary{color:#fff}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #202020}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-tab-label.mat-tab-label-active{color:#ffa164}.rtl-container.yellow.night .mat-tab-label.mat-tab-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mat-tab-label .tab-badge .mat-badge-content{color:#262626}.rtl-container.yellow.night .rtl-snack-bar{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar{max-width:90vw!important;font-weight:700;color:#ff343b}.rtl-container.yellow.night .rtl-accent-snack-bar{max-width:90vw!important;font-weight:700;color:#eee}.rtl-container.yellow.night .mat-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ffa164}.rtl-container.yellow.night .cc-data-block .cc-data-title{color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary{border-color:#ffa164;color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.yellow.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.yellow.night .active-link,.rtl-container.yellow.night .active-link .fa-icon-small,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ffa164;font-weight:500;cursor:pointer;fill:#ffa164}.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover,.rtl-container.yellow.night .mat-select-panel .mat-option:hover,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ffa164;cursor:pointer;background:rgba(255,255,255,.06)}.rtl-container.yellow.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.night .mat-tree-node:hover .mat-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.night .page-title-container .page-title-img,.rtl-container.yellow.night svg.top-icon-small{fill:#fff}.rtl-container.yellow.night .selected-color{border-color:#b48f62}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#8c571b}.rtl-container.yellow.night .chart-legend .legend-label:hover,.rtl-container.yellow.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.yellow.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-select-panel{background-color:#262626}.rtl-container.yellow.night .mat-tree{background:#262626}.rtl-container.yellow.night .dashboard-card .mat-card-header .mat-card-title,.rtl-container.yellow.night .dashboard-card .mat-card-header .mat-card-title .ng-fa-icon{color:#fff}.rtl-container.yellow.night .dashboard-info-title{color:#ffa164}.rtl-container.yellow.night .dashboard-info-value,.rtl-container.yellow.night .dashboard-capacity-header{color:#fff}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.yellow.night .color-primary{color:#ffa164!important}.rtl-container.yellow.night .dot-primary{background-color:#ffa164!important}.rtl-container.yellow.night .dot-primary-lighter{background-color:#945f1f!important}.rtl-container.yellow.night .mat-stepper-vertical{background-color:#262626}.rtl-container.yellow.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.yellow.night svg .boltz-icon-fill{fill:#fff}.rtl-container.yellow.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.yellow.night svg .fill-color-0{fill:#171717}.rtl-container.yellow.night svg .fill-color-1{fill:#232323}.rtl-container.yellow.night svg .fill-color-2{fill:#222}.rtl-container.yellow.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.yellow.night svg .fill-color-4{fill:#383838}.rtl-container.yellow.night svg .fill-color-5{fill:#555}.rtl-container.yellow.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.yellow.night svg .fill-color-7{fill:#202020}.rtl-container.yellow.night svg .fill-color-8{fill:#242424}.rtl-container.yellow.night svg .fill-color-9{fill:#262626}.rtl-container.yellow.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.yellow.night svg .fill-color-11{fill:#171717}.rtl-container.yellow.night svg .fill-color-12{fill:#ccc}.rtl-container.yellow.night svg .fill-color-13{fill:#adadad}.rtl-container.yellow.night svg .fill-color-14{fill:#ababab}.rtl-container.yellow.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.yellow.night svg .fill-color-16{fill:#707070}.rtl-container.yellow.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.yellow.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.yellow.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.yellow.night svg .fill-color-21{fill:#cacaca}.rtl-container.yellow.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.yellow.night svg .fill-color-23{fill:#777}.rtl-container.yellow.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.yellow.night svg .fill-color-25{fill:#252525}.rtl-container.yellow.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.night svg .fill-color-27{fill:#000}.rtl-container.yellow.night svg .fill-color-28{fill:#313131}.rtl-container.yellow.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.yellow.night svg .fill-color-30{fill:#fff}.rtl-container.yellow.night svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.night svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.night svg .fill-color-primary-darker{fill:#ffa164}.rtl-container.yellow.night .mat-select-value,.rtl-container.yellow.night .mat-select-arrow{color:#fff}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.yellow.night .mat-tooltip{background-color:#ffffffe6;color:#202020;font-size:120%}.rtl-container.yellow.night .mat-slide-toggle-bar,.rtl-container.yellow.night .mat-step-header .mat-step-icon:not(.mat-step-icon-selected){background-color:#484848}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#ffa164}.rtl-container.yellow.night tr.alert.alert-warn .mat-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-header-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.yellow.night .material-icons.info-icon,.rtl-container.yellow.night .material-icons.info-icon.info-icon-primary{color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ffa164}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path{fill:#774312}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ffa164}.rtl-container.yellow.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.night .foreground-secondary-text{color:!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:2rem}.rtl-container.yellow.night .foreground.mat-progress-spinner circle,.rtl-container.yellow.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.yellow.night .mat-toolbar-row,.rtl-container.yellow.night .mat-toolbar-single-row{height:5rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.3)}.rtl-container.yellow.night a{color:#945f1f}.rtl-container.yellow.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.night .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.night .validation-error-icon{position:relative;top:2px;left:.4rem}.rtl-container.yellow.night .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.night .border-primary{border:1px solid #945f1f}.rtl-container.yellow.night .border-accent{border:1px solid #eeeeee}.rtl-container.yellow.night .border-warn{border:1px solid #ff343b}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#eee}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.5rem;width:100%;color:#ff343b}.rtl-container.yellow.night .mat-vertical-content{padding:0 .4rem 0 1.2rem}.rtl-container.yellow.night .row-disabled{background-color:gray}.rtl-container.yellow.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.night .mat-menu-panel{min-width:6.4rem}.rtl-container.yellow.night .horizontal-button{height:5rem;border-radius:0}.rtl-container.yellow.night .horizontal-button:hover{background:#b48f62;color:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:2.4rem;border-radius:12rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button,.rtl-container.yellow.night .mat-flat-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-size:80%;font-weight:500;min-width:14rem}.rtl-container.yellow.night .cc-data-block .cc-data-value{font-size:120%}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-header-cell,.rtl-container.yellow.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff4d}.rtl-container.yellow.night table.mat-table{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-table thead tr th{color:#fff}.rtl-container.yellow.night table.mat-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-table tbody tr td:not(:first-of-type){padding-left:1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night table.mat-table tbody tr td.mat-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night table.mat-table tbody tr td.mat-cell{white-space:unset}}.rtl-container.yellow.night table.mat-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.night .bordered-box{border:1px solid rgba(255,255,255,.3);border-radius:2px;background:none}.rtl-container.yellow.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.3)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1.6rem;line-height:1.6rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .material-icons{font-size:1.6rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1.6rem}.rtl-container.yellow.night .dashboard-tabs-group .mat-tab-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mat-tab-label:last-child .more-button{position:absolute;right:.4rem;top:.4rem;max-width:2rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500}.rtl-container.yellow.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.yellow.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:1px}.rtl-container.yellow.night .tab-badge .mat-badge-content{width:auto;min-width:.8rem;height:.8rem;line-height:.8rem;border-radius:.96rem;margin:auto;padding:.5rem;font-size:80%;font-weight:500;overflow:visible;text-overflow:inherit}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:1rem!important}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.night .table-actions-select{padding:.5rem 1rem;margin:.9rem 0;min-height:3.6rem;min-width:9rem;width:9rem;float:right}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:9rem;width:9rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-tab-label{opacity:1;padding:0;min-width:18rem}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:2rem;height:2rem;line-height:2rem}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.night .dashboard-card .mat-card-header .mat-card-title{min-height:4rem;font-size:180%;margin-bottom:0 0 .8rem 0}.rtl-container.yellow.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px 1rem;border:1px solid}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:1.2rem;height:1.2rem;margin-right:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-size:130%;font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header.this-channel-capacity{font-size:120%}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:2rem;max-width:2rem}.rtl-container.yellow.night .color-warn{color:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.rtl-container.yellow.night .alert{border:1px solid;background-color:#0000000a}.rtl-container.yellow.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-info a{color:#004085}.rtl-container.yellow.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-warn a{color:#856404}.rtl-container.yellow.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1.8rem}.rtl-container.yellow.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.night .failed-status{color:#ff343b}.rtl-container.yellow.night .material-icons.icon-failed-status{font-size:1.8rem;fill:#ff343b;height:2rem}.rtl-container.yellow.night .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.night .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.yellow.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.night .mat-chip-list-wrapper .mat-standard-chip{margin:.8rem .2rem;font-size:80%;min-height:2.4rem}.rtl-container.yellow.night ngx-charts-bar-vertical text,.rtl-container.yellow.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.night .mat-paginator-container{padding:0}.rtl-container.yellow.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.night .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}@keyframes particles-1{0%{transform:scale(1);visibility:visible}to{left:199px;top:201px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}@keyframes particles-2{0%{transform:scale(1);visibility:visible}to{left:-40px;top:82px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}@keyframes particles-3{0%{transform:scale(1);visibility:visible}to{left:162px;top:109px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}@keyframes particles-4{0%{transform:scale(1);visibility:visible}to{left:223px;top:78px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}@keyframes particles-5{0%{transform:scale(1);visibility:visible}to{left:184px;top:113px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}@keyframes particles-6{0%{transform:scale(1);visibility:visible}to{left:-42px;top:-238px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}@keyframes particles-7{0%{transform:scale(1);visibility:visible}to{left:150px;top:-98px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}@keyframes particles-8{0%{transform:scale(1);visibility:visible}to{left:62px;top:225px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}@keyframes particles-9{0%{transform:scale(1);visibility:visible}to{left:113px;top:86px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}@keyframes particles-10{0%{transform:scale(1);visibility:visible}to{left:229px;top:-127px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}@keyframes particles-11{0%{transform:scale(1);visibility:visible}to{left:243px;top:-106px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}@keyframes particles-12{0%{transform:scale(1);visibility:visible}to{left:-168px;top:138px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}@keyframes particles-13{0%{transform:scale(1);visibility:visible}to{left:-124px;top:62px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}@keyframes particles-14{0%{transform:scale(1);visibility:visible}to{left:246px;top:30px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}@keyframes particles-15{0%{transform:scale(1);visibility:visible}to{left:-22px;top:-171px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}@keyframes particles-16{0%{transform:scale(1);visibility:visible}to{left:-144px;top:115px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}@keyframes particles-17{0%{transform:scale(1);visibility:visible}to{left:209px;top:84px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}@keyframes particles-18{0%{transform:scale(1);visibility:visible}to{left:84px;top:-190px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}@keyframes particles-19{0%{transform:scale(1);visibility:visible}to{left:-94px;top:208px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}@keyframes particles-20{0%{transform:scale(1);visibility:visible}to{left:147px;top:203px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}@keyframes particles-21{0%{transform:scale(1);visibility:visible}to{left:178px;top:206px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}@keyframes particles-22{0%{transform:scale(1);visibility:visible}to{left:-10px;top:-226px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}@keyframes particles-23{0%{transform:scale(1);visibility:visible}to{left:3px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}@keyframes particles-24{0%{transform:scale(1);visibility:visible}to{left:-182px;top:-44px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}@keyframes particles-25{0%{transform:scale(1);visibility:visible}to{left:-146px;top:166px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}@keyframes particles-26{0%{transform:scale(1);visibility:visible}to{left:144px;top:218px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}@keyframes particles-27{0%{transform:scale(1);visibility:visible}to{left:48px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}@keyframes particles-28{0%{transform:scale(1);visibility:visible}to{left:-48px;top:50px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}@keyframes particles-29{0%{transform:scale(1);visibility:visible}to{left:-228px;top:-15px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}@keyframes particles-30{0%{transform:scale(1);visibility:visible}to{left:91px;top:-199px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}@keyframes particles-31{0%{transform:scale(1);visibility:visible}to{left:-40px;top:104px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}@keyframes particles-32{0%{transform:scale(1);visibility:visible}to{left:-102px;top:4px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}@keyframes particles-33{0%{transform:scale(1);visibility:visible}to{left:-26px;top:-89px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}@keyframes particles-34{0%{transform:scale(1);visibility:visible}to{left:-151px;top:-149px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}@keyframes particles-35{0%{transform:scale(1);visibility:visible}to{left:186px;top:200px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.night .wiggle{animation:.5s wiggle ease-in-out infinite}@keyframes wiggle{0%{transform:rotate(-3deg)}20%{transform:rotate(20deg)}40%{transform:rotate(-15deg)}60%{transform:rotate(5deg)}90%{transform:rotate(-1deg)}to{transform:rotate(0)}}.rtl-container.yellow.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}@keyframes shockwaveJump{0%{transform:scale(1)}40%{transform:scale(1.08)}50%{transform:scale(.98)}55%{transform:scale(1.02)}60%{transform:scale(.98)}to{transform:scale(1)}}@keyframes shockwave{0%{transform:scale(1);box-shadow:0 0 2px #00000026,inset 0 0 1px #00000026}95%{box-shadow:0 0 50px #0000,inset 0 0 30px #0000}to{transform:scale(2.25)}} diff --git a/package-lock.json b/package-lock.json index 6c2b2e68..07c6c754 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,29 +1,14 @@ { "name": "rtl", - "version": "0.13.1-beta", + "version": "0.13.2-beta", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rtl", - "version": "0.13.1-beta", + "version": "0.13.2-beta", "license": "MIT", "dependencies": { - "@angular/animations": "~13.3.0", - "@angular/cdk": "^13.3.9", - "@angular/common": "~13.3.0", - "@angular/compiler": "~13.3.0", - "@angular/core": "~13.3.0", - "@angular/flex-layout": "^13.0.0-beta.38", - "@angular/forms": "~13.3.0", - "@angular/material": "^13.3.9", - "@angular/platform-browser": "~13.3.0", - "@angular/platform-browser-dynamic": "~13.3.0", - "@angular/router": "~13.3.0", - "@fortawesome/angular-fontawesome": "^0.10.2", - "@fortawesome/fontawesome-svg-core": "^6.1.2", - "@fortawesome/free-regular-svg-icons": "^6.1.2", - "@fortawesome/free-solid-svg-icons": "^6.1.2", "@ngrx/effects": "^13.2.0", "@ngrx/store": "^13.2.0", "@swimlane/ngx-charts": "^20.1.0", @@ -36,17 +21,14 @@ "hocon-parser": "^1.0.1", "ini": "^3.0.0", "jsonwebtoken": "^8.5.1", - "material-design-icons": "^3.0.1", "ng-qrcode": "^6.0.0", "ngx-perfect-scrollbar-next": "^10.1.1", "otplib": "^12.0.1", "pdfmake": "^0.2.5", "request-promise": "^4.2.6", - "roboto-fontface": "^0.10.0", "rxjs": "^7.4.0", "sha256": "^0.2.0", "tslib": "^2.3.0", - "typescript": "~4.6.2", "ws": "^8.8.1", "zone.js": "~0.11.4" }, @@ -57,8 +39,23 @@ "@angular-eslint/eslint-plugin-template": "13.0.1", "@angular-eslint/schematics": "13.0.1", "@angular-eslint/template-parser": "13.0.1", + "@angular/animations": "~13.3.0", + "@angular/cdk": "^13.3.9", "@angular/cli": "~13.3.5", + "@angular/common": "~13.3.0", + "@angular/compiler": "~13.3.0", "@angular/compiler-cli": "~13.3.0", + "@angular/core": "~13.3.0", + "@angular/flex-layout": "^13.0.0-beta.38", + "@angular/forms": "~13.3.0", + "@angular/material": "^13.3.9", + "@angular/platform-browser": "~13.3.0", + "@angular/platform-browser-dynamic": "~13.3.0", + "@angular/router": "~13.3.0", + "@fortawesome/angular-fontawesome": "^0.10.2", + "@fortawesome/fontawesome-svg-core": "^6.1.2", + "@fortawesome/free-regular-svg-icons": "^6.1.2", + "@fortawesome/free-solid-svg-icons": "^6.1.2", "@ngrx/store-devtools": "^13.0.2", "@types/jasmine": "~3.10.0", "@types/node": "^12.11.1", @@ -75,10 +72,13 @@ "karma-coverage": "~2.1.0", "karma-jasmine": "~4.0.0", "karma-jasmine-html-reporter": "~1.7.0", + "material-design-icons": "^3.0.1", "nodemon": "~2.0.19", "protractor": "~7.0.0", + "roboto-fontface": "^0.10.0", "stream-browserify": "^3.0.0", - "ts-node": "~10.9.1" + "ts-node": "~10.9.1", + "typescript": "~4.6.2" } }, "node_modules/@ampproject/remapping": { @@ -95,12 +95,12 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.1303.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.9.tgz", - "integrity": "sha512-RMHqCGDxbLqT+250A0a8vagsoTdqGjAxjhrvTeq7PJmClI7uJ/uA1Fs18+t85toIqVKn2hovdY9sNf42nBDD2Q==", + "version": "0.1303.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.10.tgz", + "integrity": "sha512-A8blp98GY9Lg5RdgZ4M/nT0DhWsFv+YikC6+ebJsUTn/L06GcQNhyZKGCwB69S4Xe/kcYJgKpI2nAYnOLDpJlQ==", "dev": true, "dependencies": { - "@angular-devkit/core": "13.3.9", + "@angular-devkit/core": "13.3.10", "rxjs": "6.6.7" }, "engines": { @@ -128,15 +128,15 @@ "dev": true }, "node_modules/@angular-devkit/build-angular": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.9.tgz", - "integrity": "sha512-1LqcMizeabx3yOkx3tptCSAoEhG6nO6hPgI/B3EJ07G/ZcoxunMWSeN3P3zT10dZMEHhcxl+8cSStSXaXj9hfA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.10.tgz", + "integrity": "sha512-eKMjwr7XHlh/lYqYvdIrHZfVPM8fCxP4isKzCDiOjsJ+4fl+Ycq8RvjtOLntBN6A1U8h93rZNE+VOTEGCJcGig==", "dev": true, "dependencies": { "@ampproject/remapping": "2.2.0", - "@angular-devkit/architect": "0.1303.9", - "@angular-devkit/build-webpack": "0.1303.9", - "@angular-devkit/core": "13.3.9", + "@angular-devkit/architect": "0.1303.10", + "@angular-devkit/build-webpack": "0.1303.10", + "@angular-devkit/core": "13.3.10", "@babel/core": "7.16.12", "@babel/generator": "7.16.8", "@babel/helper-annotate-as-pure": "7.16.7", @@ -147,7 +147,7 @@ "@babel/runtime": "7.16.7", "@babel/template": "7.16.7", "@discoveryjs/json-ext": "0.5.6", - "@ngtools/webpack": "13.3.9", + "@ngtools/webpack": "13.3.10", "ansi-colors": "4.1.1", "babel-loader": "8.2.5", "babel-plugin-istanbul": "6.1.1", @@ -167,7 +167,7 @@ "less": "4.1.2", "less-loader": "10.2.0", "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.0", + "loader-utils": "3.2.1", "mini-css-extract-plugin": "2.5.3", "minimatch": "3.0.5", "open": "8.4.0", @@ -262,12 +262,12 @@ "dev": true }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1303.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.9.tgz", - "integrity": "sha512-CdYXvAN1xAik8FyfdF1B8Nt1B/1aBvkZr65AUVFOmP6wuVzcdn78BMZmZD42srYbV2449sWi5Vyo/j0a/lfJww==", + "version": "0.1303.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.10.tgz", + "integrity": "sha512-nthTy6r4YQQTrvOpOS3dqjoJog/SL9Hn5YLytqnEp2r2he5evYsKV2Jtqi49/VgW1ohrGzw+bI0c3dUGKweyfw==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1303.9", + "@angular-devkit/architect": "0.1303.10", "rxjs": "6.6.7" }, "engines": { @@ -299,9 +299,9 @@ "dev": true }, "node_modules/@angular-devkit/core": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.9.tgz", - "integrity": "sha512-XqCuIWyoqIsLABjV3GQL/+EiBCt3xVPPtNp3Mg4gjBsDLW7PEnvbb81yGkiZQmIsq4EIyQC/6fQa3VdjsCshGg==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.10.tgz", + "integrity": "sha512-NSjyrccES+RkVL/wt1t1jNmJOV9z5H4/DtVjJQbAt/tDE5Mo0ygnhELd/QiUmjVfzfSkhr75LqQD8NtURoGBwQ==", "dev": true, "dependencies": { "ajv": "8.9.0", @@ -344,12 +344,12 @@ "dev": true }, "node_modules/@angular-devkit/schematics": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.9.tgz", - "integrity": "sha512-oNHLNtwbtEJ0dYPPXy1NpfRdSiFsYBl7+ozJklLgNV/AEOxlSi2qlVx6DoxNVjz5XgQ7Z+eoVDMw7ewGPnGSyA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.10.tgz", + "integrity": "sha512-/G0xInGBfFiJJQET3nKMe8V7Ny+fcxAZsXxFuOpuH2jfKqty9JMmuJw6ll5qEP0h3NnKPsF+9J1Gvq8Bmb4uDQ==", "dev": true, "dependencies": { - "@angular-devkit/core": "13.3.9", + "@angular-devkit/core": "13.3.10", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", @@ -503,16 +503,16 @@ } }, "node_modules/@angular/cli": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.9.tgz", - "integrity": "sha512-b64mfB7A8vw5QmopEnkCVhGH8zDX5FrQVKKCRlK1dO3GEtAdfhFJb5J7TBbCOwp1XfYJ5jl+biNQy4HoX5HQPw==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.10.tgz", + "integrity": "sha512-MssGlWSFv2d8d6b0+ml0NLYWr/X+2FzIleaoEwkYnLeCTBrH07xghVkCbSk8OnTvEmuBcUcsNiPprpLFY4cGEw==", "dev": true, "hasInstallScript": true, "dependencies": { - "@angular-devkit/architect": "0.1303.9", - "@angular-devkit/core": "13.3.9", - "@angular-devkit/schematics": "13.3.9", - "@schematics/angular": "13.3.9", + "@angular-devkit/architect": "0.1303.10", + "@angular-devkit/core": "13.3.10", + "@angular-devkit/schematics": "13.3.10", + "@schematics/angular": "13.3.10", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.1", "debug": "4.3.3", @@ -604,21 +604,21 @@ } }, "node_modules/@angular/compiler-cli/node_modules/@babel/core": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz", - "integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.10", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-module-transforms": "^7.18.9", - "@babel/helpers": "^7.18.9", - "@babel/parser": "^7.18.10", + "@babel/generator": "^7.20.2", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.1", + "@babel/parser": "^7.20.2", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.18.10", - "@babel/types": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -643,12 +643,12 @@ } }, "node_modules/@angular/compiler-cli/node_modules/@babel/generator": { - "version": "7.18.12", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz", - "integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", + "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", "dev": true, "dependencies": { - "@babel/types": "^7.18.10", + "@babel/types": "^7.20.2", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -685,9 +685,9 @@ } }, "node_modules/@angular/compiler-cli/node_modules/magic-string": { - "version": "0.26.2", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.2.tgz", - "integrity": "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==", + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", + "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", "dev": true, "dependencies": { "sourcemap-codec": "^1.4.8" @@ -715,6 +715,8 @@ "version": "13.0.0-beta.38", "resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-13.0.0-beta.38.tgz", "integrity": "sha512-kcWb7CcoHbvw7fjo/knizWVmSSmvaTnr8v1ML6zOdxu1PK9UPPOcOS8RTm6fy61zoC2LABivP1/6Z2jF5XfpdQ==", + "deprecated": "This package has been deprecated. Please see https://blog.angular.io/modern-css-in-angular-layouts-4a259dca9127", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -747,6 +749,7 @@ "version": "13.3.9", "resolved": "https://registry.npmjs.org/@angular/material/-/material-13.3.9.tgz", "integrity": "sha512-FU8lcMgo+AL8ckd27B4V097ZPoIZNRHiCe3wpgkImT1qC0YwcyXZVn0MqQTTFSdC9a/aI8wPm3AbTClJEVw5Vw==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -802,6 +805,7 @@ "version": "13.3.11", "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.11.tgz", "integrity": "sha512-bJTcxDYKEyoqtsi1kJcDJWLmEN+dXpwhU07SsqUwfyN4V5fYF1ApDhpJ4c17hNdjEqe106srT9tiHXhmWayhmQ==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -834,9 +838,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", - "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -939,14 +943,14 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", - "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.18.8", + "@babel/compat-data": "^7.20.0", "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.20.2", + "browserslist": "^4.21.3", "semver": "^6.3.0" }, "engines": { @@ -966,17 +970,17 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", - "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", + "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6" }, "engines": { @@ -999,9 +1003,9 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz", - "integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -1027,9 +1031,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz", - "integrity": "sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.17.7", @@ -1074,13 +1078,13 @@ } }, "node_modules/@babel/helper-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", - "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, "dependencies": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.9" + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" }, "engines": { "node": ">=6.9.0" @@ -1137,19 +1141,19 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", - "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1182,9 +1186,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", - "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -1221,40 +1225,40 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", - "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", + "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/traverse": "^7.19.1", + "@babel/types": "^7.19.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.20.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", - "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", "dev": true, "dependencies": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.0" }, "engines": { "node": ">=6.9.0" @@ -1273,18 +1277,18 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", - "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true, "engines": { "node": ">=6.9.0" @@ -1300,15 +1304,15 @@ } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.18.11", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz", - "integrity": "sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.18.11", - "@babel/types": "^7.18.10" + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" }, "engines": { "node": ">=6.9.0" @@ -1329,14 +1333,14 @@ } }, "node_modules/@babel/helpers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", - "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", "dev": true, "dependencies": { - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.0" }, "engines": { "node": ">=6.9.0" @@ -1371,9 +1375,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.18.11", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.11.tgz", - "integrity": "sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==", + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz", + "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -1561,16 +1565,16 @@ } }, "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", - "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", + "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.18.8", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.8" + "@babel/plugin-transform-parameters": "^7.20.1" }, "engines": { "node": ">=6.9.0" @@ -1899,12 +1903,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", - "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz", + "integrity": "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1914,17 +1918,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", - "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", + "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.0", "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" }, @@ -1963,12 +1968,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", - "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", + "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -2087,14 +2092,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", + "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0" }, "engines": { "node": ">=6.9.0" @@ -2104,15 +2108,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", + "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-simple-access": "^7.19.4" }, "engines": { "node": ">=6.9.0" @@ -2122,16 +2125,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", - "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", + "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.19.1" }, "engines": { "node": ">=6.9.0" @@ -2157,13 +2159,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz", - "integrity": "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", + "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" }, "engines": { "node": ">=6.9.0" @@ -2204,12 +2206,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", - "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz", + "integrity": "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -2309,12 +2311,12 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", - "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" }, "engines": { @@ -2526,18 +2528,24 @@ } }, "node_modules/@babel/runtime-corejs3": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", - "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz", + "integrity": "sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==", "dev": true, "dependencies": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" + "core-js-pure": "^3.25.1", + "regenerator-runtime": "^0.13.10" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/runtime-corejs3/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, "node_modules/@babel/template": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", @@ -2553,19 +2561,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.18.11", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.11.tgz", - "integrity": "sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", + "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.10", + "@babel/generator": "^7.20.1", "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.11", - "@babel/types": "^7.18.10", + "@babel/parser": "^7.20.1", + "@babel/types": "^7.20.0", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -2574,12 +2582,12 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.18.12", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz", - "integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", + "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", "dev": true, "dependencies": { - "@babel/types": "^7.18.10", + "@babel/types": "^7.20.2", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -2602,13 +2610,13 @@ } }, "node_modules/@babel/types": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz", - "integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz", + "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.18.10", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2688,14 +2696,14 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", - "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", + "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.3.2", + "espree": "^9.4.0", "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", @@ -2705,6 +2713,9 @@ }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/eslintrc/node_modules/ajv": { @@ -2730,9 +2741,9 @@ "dev": true }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", + "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -2847,6 +2858,7 @@ "version": "0.10.2", "resolved": "https://registry.npmjs.org/@fortawesome/angular-fontawesome/-/angular-fontawesome-0.10.2.tgz", "integrity": "sha512-VxsCAo2lK74KwD236AKAhGpiethfz9yqCViIG2iRAZqgNmuZ6ihwumjbLW32n6hV4fFvCqLcHmpngoEl3TNiOg==", + "dev": true, "dependencies": { "tslib": "^2.3.1" }, @@ -2855,45 +2867,49 @@ } }, "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.1.2.tgz", - "integrity": "sha512-wBaAPGz1Awxg05e0PBRkDRuTsy4B3dpBm+zreTTyd9TH4uUM27cAL4xWyWR0rLJCrRwzVsQ4hF3FvM6rqydKPA==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.1.tgz", + "integrity": "sha512-Sz07mnQrTekFWLz5BMjOzHl/+NooTdW8F8kDQxjWwbpOJcnoSg4vUDng8d/WR1wOxM0O+CY9Zw0nR054riNYtQ==", + "dev": true, "hasInstallScript": true, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.1.2.tgz", - "integrity": "sha512-853G/Htp0BOdXnPoeCPTjFrVwyrJHpe8MhjB/DYE9XjwhnNDfuBCd3aKc2YUYbEfHEcBws4UAA0kA9dymZKGjA==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.2.1.tgz", + "integrity": "sha512-HELwwbCz6C1XEcjzyT1Jugmz2NNklMrSPjZOWMlc+ZsHIVk+XOvOXLGGQtFBwSyqfJDNgRq4xBCwWOaZ/d9DEA==", + "dev": true, "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.1.2" + "@fortawesome/fontawesome-common-types": "6.2.1" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-regular-svg-icons": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.1.2.tgz", - "integrity": "sha512-xR4hA+tAwsaTHGfb+25H1gVU/aJ0Rzu+xIUfnyrhaL13yNQ7TWiI2RvzniAaB+VGHDU2a+Pk96Ve+pkN3/+TTQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.2.1.tgz", + "integrity": "sha512-wiqcNDNom75x+pe88FclpKz7aOSqS2lOivZeicMV5KRwOAeypxEYWAK/0v+7r+LrEY30+qzh8r2XDaEHvoLsMA==", + "dev": true, "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.1.2" + "@fortawesome/fontawesome-common-types": "6.2.1" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.1.2.tgz", - "integrity": "sha512-lTgZz+cMpzjkHmCwOG3E1ilUZrnINYdqMmrkv30EC3XbRsGlbIOL8H9LaNp5SV4g0pNJDfQ4EdTWWaMvdwyLiQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.2.1.tgz", + "integrity": "sha512-oKuqrP5jbfEPJWTij4sM+/RvgX+RMFwx3QZCZcK9PrBDgxC35zuc7AOFsyMjMd/PIFPeB2JxyqDr5zs/DZFPPw==", + "dev": true, "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.1.2" + "@fortawesome/fontawesome-common-types": "6.2.1" }, "engines": { "node": ">=6" @@ -2906,24 +2922,27 @@ "dev": true }, "node_modules/@humanwhocodes/config-array": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz", - "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==", + "version": "0.11.7", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz", + "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, - "node_modules/@humanwhocodes/gitignore-to-minimatch": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz", - "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==", + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "engines": { + "node": ">=12.22" + }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" @@ -3022,13 +3041,13 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", - "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, "node_modules/@ngrx/effects": { @@ -3070,9 +3089,9 @@ } }, "node_modules/@ngtools/webpack": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.9.tgz", - "integrity": "sha512-wmgOI5sogAuilwBZJqCHVMjm2uhDxjdSmNLFx7eznwGDa6LjvjuATqCv2dVlftq0Y/5oZFVrg5NpyHt5kfZ8Cg==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.10.tgz", + "integrity": "sha512-QQ8ELLqW5PtvrEAMt99D0s982NW303k8UpZrQoQ9ODgnSVDMdbbzFPNTXq/20dg+nbp8nlOakUrkjB47TBwTNA==", "dev": true, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", @@ -3166,6 +3185,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", "dev": true, "dependencies": { "mkdirp": "^1.0.4", @@ -3425,13 +3445,13 @@ } }, "node_modules/@schematics/angular": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.9.tgz", - "integrity": "sha512-tm5wst7+Z8cOgOJ/4JVlYKOFCCOVnqKYFtYf0BIWq6RFBXcw6QqbGW1wXH8ASmuev4QZXKgqc7YKALPpYAKCeQ==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.10.tgz", + "integrity": "sha512-sw6K8YihfcqNyfa2/65ACPixZHQJRBw1aNm8w0DRGFyO3aXRe9G5X23MkCMLH+63oK9R1cK63/fZ8zqfdSq7zA==", "dev": true, "dependencies": { - "@angular-devkit/core": "13.3.9", - "@angular-devkit/schematics": "13.3.9", + "@angular-devkit/core": "13.3.10", + "@angular-devkit/schematics": "13.3.10", "jsonc-parser": "3.0.0" }, "engines": { @@ -3440,6 +3460,12 @@ "yarn": ">= 1.13.0" } }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", + "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==", + "dev": true + }, "node_modules/@swimlane/ngx-charts": { "version": "20.1.0", "resolved": "https://registry.npmjs.org/@swimlane/ngx-charts/-/ngx-charts-20.1.0.tgz", @@ -3522,12 +3548,6 @@ "@types/node": "*" } }, - "node_modules/@types/component-emitter": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", - "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", - "dev": true - }, "node_modules/@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", @@ -3573,9 +3593,9 @@ } }, "node_modules/@types/eslint": { - "version": "8.4.5", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz", - "integrity": "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==", + "version": "8.4.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", "dev": true, "dependencies": { "@types/estree": "*", @@ -3599,9 +3619,9 @@ "dev": true }, "node_modules/@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "version": "4.17.14", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", + "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", "dev": true, "dependencies": { "@types/body-parser": "*", @@ -3611,9 +3631,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.30", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz", - "integrity": "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==", + "version": "4.17.31", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "dev": true, "dependencies": { "@types/node": "*", @@ -3690,6 +3710,12 @@ "integrity": "sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA==", "dev": true }, + "node_modules/@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, "node_modules/@types/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", @@ -3728,17 +3754,17 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz", - "integrity": "sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.43.0.tgz", + "integrity": "sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.33.0", - "@typescript-eslint/type-utils": "5.33.0", - "@typescript-eslint/utils": "5.33.0", + "@typescript-eslint/scope-manager": "5.43.0", + "@typescript-eslint/type-utils": "5.43.0", + "@typescript-eslint/utils": "5.43.0", "debug": "^4.3.4", - "functional-red-black-tree": "^1.0.1", "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", "regexpp": "^3.2.0", "semver": "^7.3.7", "tsutils": "^3.21.0" @@ -3787,9 +3813,9 @@ } }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3859,24 +3885,15 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/@typescript-eslint/parser": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.33.0.tgz", - "integrity": "sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.43.0.tgz", + "integrity": "sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.33.0", - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/typescript-estree": "5.33.0", + "@typescript-eslint/scope-manager": "5.43.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/typescript-estree": "5.43.0", "debug": "^4.3.4" }, "engines": { @@ -3896,9 +3913,9 @@ } }, "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3909,13 +3926,13 @@ } }, "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz", - "integrity": "sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz", + "integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/visitor-keys": "5.33.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -3953,9 +3970,9 @@ } }, "node_modules/@typescript-eslint/parser/node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -3968,13 +3985,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.33.0.tgz", - "integrity": "sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz", + "integrity": "sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/visitor-keys": "5.33.0" + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3985,9 +4002,9 @@ } }, "node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3998,12 +4015,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.33.0.tgz", - "integrity": "sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.43.0.tgz", + "integrity": "sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==", "dev": true, "dependencies": { - "@typescript-eslint/utils": "5.33.0", + "@typescript-eslint/typescript-estree": "5.43.0", + "@typescript-eslint/utils": "5.43.0", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -4023,6 +4041,46 @@ } } }, + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz", + "integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/@typescript-eslint/type-utils/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -4040,6 +4098,21 @@ } } }, + "node_modules/@typescript-eslint/type-utils/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@typescript-eslint/types": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.3.0.tgz", @@ -4097,27 +4170,20 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/@typescript-eslint/utils": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.33.0.tgz", - "integrity": "sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.43.0.tgz", + "integrity": "sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.9", - "@typescript-eslint/scope-manager": "5.33.0", - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/typescript-estree": "5.33.0", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.43.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/typescript-estree": "5.43.0", "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" + "eslint-utils": "^3.0.0", + "semver": "^7.3.7" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -4131,9 +4197,9 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -4144,13 +4210,13 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz", - "integrity": "sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz", + "integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/visitor-keys": "5.33.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -4188,9 +4254,9 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -4203,12 +4269,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.33.0.tgz", - "integrity": "sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz", + "integrity": "sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.33.0", + "@typescript-eslint/types": "5.43.0", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -4220,9 +4286,9 @@ } }, "node_modules/@typescript-eslint/visitor-keys/node_modules/@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -4232,15 +4298,6 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", @@ -4430,9 +4487,10 @@ } }, "node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -4440,6 +4498,15 @@ "node": ">=0.4.0" } }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4459,6 +4526,17 @@ "xtend": "^4.0.2" } }, + "node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", @@ -4481,9 +4559,9 @@ } }, "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -4867,9 +4945,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.8", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.8.tgz", - "integrity": "sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==", + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "dev": true, "funding": [ { @@ -4882,8 +4960,8 @@ } ], "dependencies": { - "browserslist": "^4.21.3", - "caniuse-lite": "^1.0.30001373", + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -4938,9 +5016,9 @@ } }, "node_modules/babel-loader/node_modules/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -4951,15 +5029,6 @@ "node": ">=8.9.0" } }, - "node_modules/babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "dev": true, - "dependencies": { - "object.assign": "^4.1.0" - } - }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", @@ -4977,13 +5046,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz", - "integrity": "sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.2", + "@babel/helper-define-polyfill-provider": "^0.3.3", "semver": "^6.1.1" }, "peerDependencies": { @@ -5128,9 +5197,9 @@ "dev": true }, "node_modules/body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -5140,7 +5209,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", + "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -5349,30 +5418,10 @@ "safe-buffer": "^5.2.0" } }, - "node_modules/browserify-sign/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/browserslist": { - "version": "4.21.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz", - "integrity": "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==", + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, "funding": [ { @@ -5385,10 +5434,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001370", - "electron-to-chromium": "^1.4.202", + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.5" + "update-browserslist-db": "^1.0.9" }, "bin": { "browserslist": "cli.js" @@ -5567,9 +5616,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001374", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001374.tgz", - "integrity": "sha512-mWvzatRx3w+j5wx/mpFN5v5twlPrabG8NqX2c6e45LCpymdoGqNvRkRutFUqpRTXKFQFNQJasvK0YT7suW6/Hw==", + "version": "1.0.30001434", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", + "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==", "dev": true, "funding": [ { @@ -5717,14 +5766,17 @@ } }, "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, "node_modules/clone": { @@ -5811,12 +5863,6 @@ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -5871,6 +5917,12 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -5905,6 +5957,11 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "node_modules/concat-stream/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -6003,29 +6060,10 @@ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dependencies": { "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-disposition/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + }, + "engines": { + "node": ">= 0.6" + } }, "node_modules/content-type": { "version": "1.0.4", @@ -6041,12 +6079,9 @@ "integrity": "sha512-w20BOb1PiR/sEJdS6wNrUjF5CSfscZFUp7R9NSlXH8h2wynzXVEPFPJECAnkNylZ+cvf3p7TyRUHggDmrwXT9A==" }, "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dependencies": { - "safe-buffer": "~5.1.1" - } + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" }, "node_modules/convert-string": { "version": "0.1.0", @@ -6202,32 +6237,22 @@ } }, "node_modules/core-js-compat": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.24.1.tgz", - "integrity": "sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", + "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", "dev": true, "dependencies": { - "browserslist": "^4.21.3", - "semver": "7.0.0" + "browserslist": "^4.21.4" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, - "node_modules/core-js-compat/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/core-js-pure": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz", - "integrity": "sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz", + "integrity": "sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==", "dev": true, "hasInstallScript": true, "funding": { @@ -6254,9 +6279,9 @@ } }, "node_modules/cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "dependencies": { "@types/parse-json": "^4.0.0", @@ -6609,6 +6634,7 @@ "version": "1.11.0", "resolved": "https://registry.npmjs.org/csurf/-/csurf-1.11.0.tgz", "integrity": "sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ==", + "deprecated": "Please use another csrf package", "dependencies": { "cookie": "0.4.0", "cookie-signature": "1.0.6", @@ -6787,9 +6813,9 @@ } }, "node_modules/date-format": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.13.tgz", - "integrity": "sha512-bnYCwf8Emc3pTD8pXnre+wfnjGtfi5ncMDKy7+cWZXbmRAsdWkOQHrfC1yz/KiwP5thDp2kCHWYWKBX4HP1hoQ==", + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", + "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", "dev": true, "engines": { "node": ">=4.0" @@ -6863,12 +6889,15 @@ } }, "node_modules/defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "dependencies": { "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/define-lazy-prop": { @@ -7205,6 +7234,11 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/duplexer2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "node_modules/duplexer2/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -7251,9 +7285,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.213", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.213.tgz", - "integrity": "sha512-+3DbGHGOCHTVB/Ms63bGqbyC1b8y7Fk86+7ltssB8NQrZtSCvZG6eooSl9U2Q0yw++fL2DpHKOdTU0NVEkFObg==", + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", "dev": true }, "node_modules/elliptic": { @@ -7328,9 +7362,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz", - "integrity": "sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", + "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", "dev": true, "dependencies": { "@types/cookie": "^0.4.1", @@ -7514,25 +7548,25 @@ } }, "node_modules/es6-set": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", - "integrity": "sha512-7S8YXIcUfPMOr3rqJBVMePAbRsD1nWeSMQ86K/lDI76S3WKXz+KWILvTIPbTroubOkZTGh+b+7/xIIphZXNYbA==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz", + "integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==", "dependencies": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-symbol": "3.1.1", - "event-emitter": "~0.3.5" + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "es6-iterator": "~2.0.3", + "es6-symbol": "^3.1.3", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" } }, - "node_modules/es6-set/node_modules/es6-symbol": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", - "integrity": "sha512-exfuQY8UGtn/N+gL1iKkH8fpNd5sJ760nJq6mmZAHldfxMD5kX07lbQuYlspoXsuknXNv9Fb7y2GsPOnQIbxHg==", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } + "node_modules/es6-set/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" }, "node_modules/es6-symbol": { "version": "3.1.3", @@ -7978,14 +8012,15 @@ } }, "node_modules/eslint": { - "version": "8.21.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz", - "integrity": "sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==", + "version": "8.28.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.28.0.tgz", + "integrity": "sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.3.0", - "@humanwhocodes/config-array": "^0.10.4", - "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", + "@eslint/eslintrc": "^1.3.3", + "@humanwhocodes/config-array": "^0.11.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -7995,21 +8030,21 @@ "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.3", + "espree": "^9.4.0", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", + "glob-parent": "^6.0.2", "globals": "^13.15.0", - "globby": "^11.1.0", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", @@ -8020,8 +8055,7 @@ "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" @@ -8034,9 +8068,9 @@ } }, "node_modules/eslint-plugin-deprecation": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-1.3.2.tgz", - "integrity": "sha512-z93wbx9w7H/E3ogPw6AZMkkNJ6m51fTZRNZPNQqxQLmx+KKt7aLkMU9wN67s71i+VVHN4tLOZ3zT3QLbnlC0Mg==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-1.3.3.tgz", + "integrity": "sha512-Bbkv6ZN2cCthVXz/oZKPwsSY5S/CbgTLRG4Q2s2gpPpgNsT0uJ0dB5oLNiWzFYY8AgKX4ULxXFG1l/rDav9QFA==", "dev": true, "dependencies": { "@typescript-eslint/experimental-utils": "^5.0.0", @@ -8079,7 +8113,7 @@ "eslint": ">=5" } }, - "node_modules/eslint-visitor-keys": { + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", @@ -8088,6 +8122,15 @@ "node": ">=10" } }, + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/eslint/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -8184,15 +8227,6 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/eslint/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", @@ -8231,9 +8265,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", + "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -8363,9 +8397,9 @@ } }, "node_modules/espree": { - "version": "9.3.3", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.3.tgz", - "integrity": "sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==", + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, "dependencies": { "acorn": "^8.8.0", @@ -8379,27 +8413,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/espree/node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -8556,13 +8569,13 @@ } }, "node_modules/express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.0", + "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", @@ -8581,7 +8594,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.10.3", + "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -8635,25 +8648,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/express-session/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/express/node_modules/cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", @@ -8690,25 +8684,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/express/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -8718,11 +8693,11 @@ } }, "node_modules/ext": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", - "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dependencies": { - "type": "^2.5.0" + "type": "^2.7.2" } }, "node_modules/ext/node_modules/type": { @@ -8775,9 +8750,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "node_modules/fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -8963,15 +8938,15 @@ } }, "node_modules/flatted": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", - "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", - "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true, "funding": [ { @@ -9096,12 +9071,6 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -9152,9 +9121,9 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", - "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -9425,26 +9394,6 @@ "node": ">=4" } }, - "node_modules/hash-base/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/hash.js": { "version": "1.1.7", "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", @@ -9527,6 +9476,12 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -9859,9 +9814,9 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz", - "integrity": "sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } @@ -10014,9 +9969,9 @@ } }, "node_modules/is-core-module": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", - "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "dependencies": { "has": "^1.0.3" }, @@ -10127,7 +10082,7 @@ "node": ">=0.10.0" } }, - "node_modules/is-path-inside": { + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", @@ -10139,6 +10094,15 @@ "node": ">=0.10.0" } }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", @@ -10272,9 +10236,9 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", @@ -10537,6 +10501,16 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/js-sdsl": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", + "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -10716,6 +10690,12 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/jszip/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "node_modules/jszip/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -10885,6 +10865,17 @@ "source-map-support": "^0.5.5" } }, + "node_modules/karma/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, "node_modules/karma/node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -11109,9 +11100,9 @@ } }, "node_modules/loader-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true, "engines": { "node": ">= 12.13.0" @@ -11267,16 +11258,16 @@ } }, "node_modules/log4js": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.6.1.tgz", - "integrity": "sha512-J8VYFH2UQq/xucdNu71io4Fo+purYYudyErgBbswWKO0MC6QVOERRomt5su/z6d3RJSmLyTGmXl3Q/XjKCf+/A==", + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.7.0.tgz", + "integrity": "sha512-KA0W9ffgNBLDj6fZCq/lRbgR6ABAodRIDHrZnS48vOtfKa4PzWImb0Md1lmGCdO3n3sbCm/n1/WmrNlZ8kCI3Q==", "dev": true, "dependencies": { - "date-format": "^4.0.13", + "date-format": "^4.0.14", "debug": "^4.3.4", - "flatted": "^3.2.6", + "flatted": "^3.2.7", "rfdc": "^1.3.0", - "streamroller": "^3.1.2" + "streamroller": "^3.1.3" }, "engines": { "node": ">=8.0" @@ -11380,7 +11371,8 @@ "node_modules/material-design-icons": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/material-design-icons/-/material-design-icons-3.0.1.tgz", - "integrity": "sha512-t19Z+QZBwSZulxptEu05kIm+UyfIdJY1JDwI+nx02j269m6W414whiQz9qfvQIiLrdx71RQv+T48nHhuQXOCIQ==" + "integrity": "sha512-t19Z+QZBwSZulxptEu05kIm+UyfIdJY1JDwI+nx02j269m6W414whiQz9qfvQIiLrdx71RQv+T48nHhuQXOCIQ==", + "dev": true }, "node_modules/md5.js": { "version": "1.3.5", @@ -11402,9 +11394,9 @@ } }, "node_modules/memfs": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", - "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "version": "3.4.12", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz", + "integrity": "sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==", "dev": true, "dependencies": { "fs-monkey": "^1.0.3" @@ -11592,9 +11584,12 @@ } }, "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/minipass": { "version": "3.3.4", @@ -11756,6 +11751,12 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, "node_modules/needle": { "version": "2.9.1", "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", @@ -11904,16 +11905,15 @@ "dev": true }, "node_modules/nodemon": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", - "integrity": "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==", + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz", + "integrity": "sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==", "dev": true, - "hasInstallScript": true, "dependencies": { "chokidar": "^3.5.2", "debug": "^3.2.7", "ignore-by-default": "^1.0.1", - "minimatch": "^3.0.4", + "minimatch": "^3.1.2", "pstree.remy": "^1.1.8", "semver": "^5.7.1", "simple-update-notifier": "^1.0.7", @@ -11941,6 +11941,18 @@ "ms": "^2.1.1" } }, + "node_modules/nodemon/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/nodemon/node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -12072,9 +12084,9 @@ } }, "node_modules/npm-registry-fetch/node_modules/@npmcli/fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.1.tgz", - "integrity": "sha512-1Q0uzx6c/NVNGszePbr5Gc2riSU1zLpNlo/1YWntH+eaPmMgBssAW0qXofCVkpdj3ce4swZtlDYQu+NKiYcptg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", "dev": true, "dependencies": { "@gar/promisify": "^1.1.3", @@ -12085,9 +12097,10 @@ } }, "node_modules/npm-registry-fetch/node_modules/@npmcli/move-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.0.tgz", - "integrity": "sha512-UR6D5f4KEGWJV6BGPH3Qb2EtgH+t+1XQ1Tt85c7qicN6cezzuHPdZwwAxqZr4JLtnQu0LZsTza/5gmNmSl8XLg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "deprecated": "This functionality has been moved to @npmcli/fs", "dev": true, "dependencies": { "mkdirp": "^1.0.4", @@ -12116,9 +12129,9 @@ } }, "node_modules/npm-registry-fetch/node_modules/cacache": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.1.tgz", - "integrity": "sha512-VDKN+LHyCQXaaYZ7rA/qtkURU+/yYhviUdvqEv2LT6QPZU8jpyzEkEVAcKlKLt5dJ5BRp11ym8lo3NKLluEPLg==", + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", "dev": true, "dependencies": { "@npmcli/fs": "^2.1.0", @@ -12138,7 +12151,7 @@ "rimraf": "^3.0.2", "ssri": "^9.0.0", "tar": "^6.1.11", - "unique-filename": "^1.1.1" + "unique-filename": "^2.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" @@ -12178,18 +12191,18 @@ } }, "node_modules/npm-registry-fetch/node_modules/lru-cache": { - "version": "7.13.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.13.2.tgz", - "integrity": "sha512-VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA==", + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", "dev": true, "engines": { "node": ">=12" } }, "node_modules/npm-registry-fetch/node_modules/make-fetch-happen": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.0.tgz", - "integrity": "sha512-OnEfCLofQVJ5zgKwGk55GaqosqKjaR6khQlJY3dBAA+hM25Bc5CmX5rKUfVut+rYA3uidA7zb7AvcglU87rPRg==", + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", "dev": true, "dependencies": { "agentkeepalive": "^4.2.1", @@ -12214,9 +12227,9 @@ } }, "node_modules/npm-registry-fetch/node_modules/make-fetch-happen/node_modules/minipass-fetch": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.0.tgz", - "integrity": "sha512-H9U4UVBGXEyyWJnqYDCLp1PwD8XIkJ4akNHp1aGVI+2Ym7wQMlxDKi4IB4JbmyU+pl9pEs/cVrK6cOuvmbK4Sg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", "dev": true, "dependencies": { "minipass": "^3.1.6", @@ -12268,6 +12281,30 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/npm-registry-fetch/node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dev": true, + "dependencies": { + "unique-slug": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm-registry-fetch/node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -12355,24 +12392,6 @@ "node": ">= 0.4" } }, - "node_modules/object.assign": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.3.tgz", - "integrity": "sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -12857,9 +12876,9 @@ } }, "node_modules/pdfmake": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.5.tgz", - "integrity": "sha512-NlayjehMtuZEdw2Lyipf/MxOCR2vATZQ7jn8cH0/dHwsNb+mqof9/6SW4jZT5p+So4qz+0mD21KG81+dDQSEhA==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.6.tgz", + "integrity": "sha512-gZARnKLJjTuHWKIkqF4G6dafIaPfH7NFqBz9U9wb26PV5koHQ5eeQ/0rgZmIdfJzMKqHzXB9aK25ykG2AnnzEQ==", "dependencies": { "@foliojs-fork/linebreak": "^1.1.1", "@foliojs-fork/pdfkit": "^0.13.0", @@ -12979,9 +12998,9 @@ } }, "node_modules/portfinder": { - "version": "1.0.29", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.29.tgz", - "integrity": "sha512-Z5+DarHWCKlufshB9Z1pN95oLtANoY5Wn9X3JGELGyQ6VhEcBfT2t+1fGUBq7MwUant6g/mqowH+4HifByPbiQ==", + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "dev": true, "dependencies": { "async": "^2.6.4", @@ -13136,9 +13155,9 @@ } }, "node_modules/postcss-custom-properties": { - "version": "12.1.8", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz", - "integrity": "sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==", + "version": "12.1.10", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz", + "integrity": "sha512-U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -13151,7 +13170,7 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/postcss-custom-selectors": { @@ -13453,9 +13472,9 @@ } }, "node_modules/postcss-nesting": { - "version": "10.1.10", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.10.tgz", - "integrity": "sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", "dev": true, "dependencies": { "@csstools/selector-specificity": "^2.0.0", @@ -13607,9 +13626,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -13674,6 +13693,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/protractor/-/protractor-7.0.0.tgz", "integrity": "sha512-UqkFjivi4GcvUQYzqGYNe0mLzfn5jiLmO8w9nMhQoJRLhy2grJonpga2IWhI6yJO30LibWXJJtA4MOIZD2GgZw==", + "deprecated": "We have news to share - Protractor is deprecated and will reach end-of-life by Summer 2023. To learn more and find out about other options please refer to this post on the Angular blog. Thank you for using and contributing to Protractor. https://goo.gle/state-of-e2e-in-angular", "dev": true, "dependencies": { "@types/q": "^0.0.32", @@ -14100,9 +14120,9 @@ } }, "node_modules/qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dependencies": { "side-channel": "^1.0.4" }, @@ -14279,9 +14299,9 @@ "dev": true }, "node_modules/regenerate-unicode-properties": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", - "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, "dependencies": { "regenerate": "^1.4.2" @@ -14297,9 +14317,9 @@ "dev": true }, "node_modules/regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, "dependencies": { "@babel/runtime": "^7.8.4" @@ -14340,32 +14360,32 @@ } }, "node_modules/regexpu-core": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", - "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", "dev": true, "dependencies": { "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.0.1", - "regjsgen": "^0.6.0", - "regjsparser": "^0.8.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsgen": "^0.7.1", + "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { "node": ">=4" } }, "node_modules/regjsgen": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", - "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", + "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", "dev": true }, "node_modules/regjsparser": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", - "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, "dependencies": { "jsesc": "~0.5.0" @@ -14538,9 +14558,9 @@ } }, "node_modules/resolve-url-loader/node_modules/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -14631,7 +14651,8 @@ "node_modules/roboto-fontface": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/roboto-fontface/-/roboto-fontface-0.10.0.tgz", - "integrity": "sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==" + "integrity": "sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==", + "dev": true }, "node_modules/run-async": { "version": "2.4.1", @@ -14666,17 +14687,31 @@ } }, "node_modules/rxjs": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz", - "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", + "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/safer-buffer": { "version": "2.1.2", @@ -14894,9 +14929,9 @@ } }, "node_modules/selfsigned": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, "dependencies": { "node-forge": "^1" @@ -15232,9 +15267,9 @@ } }, "node_modules/socket.io": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.1.tgz", - "integrity": "sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz", + "integrity": "sha512-zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg==", "dev": true, "dependencies": { "accepts": "~1.3.4", @@ -15242,7 +15277,7 @@ "debug": "~4.3.2", "engine.io": "~6.2.0", "socket.io-adapter": "~2.4.0", - "socket.io-parser": "~4.0.4" + "socket.io-parser": "~4.2.0" }, "engines": { "node": ">=10.0.0" @@ -15255,13 +15290,12 @@ "dev": true }, "node_modules/socket.io-parser": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.5.tgz", - "integrity": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.1.tgz", + "integrity": "sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==", "dev": true, "dependencies": { - "@types/component-emitter": "^1.2.10", - "component-emitter": "~1.3.0", + "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" }, "engines": { @@ -15280,9 +15314,9 @@ } }, "node_modules/socks": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", - "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", "dev": true, "dependencies": { "ip": "^2.0.0", @@ -15650,6 +15684,11 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/static-module/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "node_modules/static-module/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -15705,12 +15744,12 @@ } }, "node_modules/streamroller": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.2.tgz", - "integrity": "sha512-wZswqzbgGGsXYIrBYhOE0yP+nQ6XRk7xDcYwuQAGTYXdyAUmvgVFE0YU1g5pvQT0m7GBaQfYcSnlHbapuK0H0A==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.3.tgz", + "integrity": "sha512-CphIJyFx2SALGHeINanjFRKQ4l7x2c+rXYJ4BMq0gd+ZK0gi4VT8b+eHe2wi58x4UayBAKx4xtHpXT/ea1cz8w==", "dev": true, "dependencies": { - "date-format": "^4.0.13", + "date-format": "^4.0.14", "debug": "^4.3.4", "fs-extra": "^8.1.0" }, @@ -15776,26 +15815,6 @@ "safe-buffer": "~5.2.0" } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -15925,9 +15944,9 @@ } }, "node_modules/tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "version": "6.1.12", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.12.tgz", + "integrity": "sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==", "dev": true, "dependencies": { "chownr": "^2.0.0", @@ -15938,7 +15957,7 @@ "yallist": "^4.0.0" }, "engines": { - "node": ">= 10" + "node": ">=10" } }, "node_modules/terser": { @@ -15960,16 +15979,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", - "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.7", + "@jridgewell/trace-mapping": "^0.3.14", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.0", - "terser": "^5.7.2" + "terser": "^5.14.1" }, "engines": { "node": ">= 10.13.0" @@ -16042,18 +16061,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/terser/node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -16110,6 +16117,11 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "node_modules/through2/node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -16261,18 +16273,6 @@ } } }, - "node_modules/ts-node/node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/ts-node/node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", @@ -16283,9 +16283,9 @@ } }, "node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/tsscmp": { "version": "1.0.6", @@ -16388,6 +16388,7 @@ "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", + "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -16397,9 +16398,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", - "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", + "version": "0.7.32", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", + "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", "dev": true, "funding": [ { @@ -16455,9 +16456,9 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true, "engines": { "node": ">=4" @@ -16473,9 +16474,9 @@ } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", - "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, "engines": { "node": ">=4" @@ -16531,9 +16532,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", - "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", "dev": true, "funding": [ { @@ -16586,12 +16587,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -16980,15 +16975,6 @@ "node": ">=6" } }, - "node_modules/webpack-dev-server/node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/webpack-dev-server/node_modules/schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -17066,27 +17052,6 @@ } } }, - "node_modules/webpack/node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "dev": true, - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/webpack/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -17259,9 +17224,9 @@ "dev": true }, "node_modules/ws": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", - "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -17341,18 +17306,18 @@ } }, "node_modules/yargs": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", - "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", "dev": true, "dependencies": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" + "yargs-parser": "^21.1.1" }, "engines": { "node": ">=12" @@ -17398,9 +17363,9 @@ } }, "node_modules/zone.js": { - "version": "0.11.7", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.7.tgz", - "integrity": "sha512-e39K2EdK5JfA3FDuUTVRvPlYV4aBfnOOcGuILhQAT7nzeV12uSrLBzImUM9CDVoncDSX4brR/gwqu0heQ3BQ0g==", + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", + "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dependencies": { "tslib": "^2.3.0" } @@ -17418,12 +17383,12 @@ } }, "@angular-devkit/architect": { - "version": "0.1303.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.9.tgz", - "integrity": "sha512-RMHqCGDxbLqT+250A0a8vagsoTdqGjAxjhrvTeq7PJmClI7uJ/uA1Fs18+t85toIqVKn2hovdY9sNf42nBDD2Q==", + "version": "0.1303.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.10.tgz", + "integrity": "sha512-A8blp98GY9Lg5RdgZ4M/nT0DhWsFv+YikC6+ebJsUTn/L06GcQNhyZKGCwB69S4Xe/kcYJgKpI2nAYnOLDpJlQ==", "dev": true, "requires": { - "@angular-devkit/core": "13.3.9", + "@angular-devkit/core": "13.3.10", "rxjs": "6.6.7" }, "dependencies": { @@ -17445,15 +17410,15 @@ } }, "@angular-devkit/build-angular": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.9.tgz", - "integrity": "sha512-1LqcMizeabx3yOkx3tptCSAoEhG6nO6hPgI/B3EJ07G/ZcoxunMWSeN3P3zT10dZMEHhcxl+8cSStSXaXj9hfA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-13.3.10.tgz", + "integrity": "sha512-eKMjwr7XHlh/lYqYvdIrHZfVPM8fCxP4isKzCDiOjsJ+4fl+Ycq8RvjtOLntBN6A1U8h93rZNE+VOTEGCJcGig==", "dev": true, "requires": { "@ampproject/remapping": "2.2.0", - "@angular-devkit/architect": "0.1303.9", - "@angular-devkit/build-webpack": "0.1303.9", - "@angular-devkit/core": "13.3.9", + "@angular-devkit/architect": "0.1303.10", + "@angular-devkit/build-webpack": "0.1303.10", + "@angular-devkit/core": "13.3.10", "@babel/core": "7.16.12", "@babel/generator": "7.16.8", "@babel/helper-annotate-as-pure": "7.16.7", @@ -17464,7 +17429,7 @@ "@babel/runtime": "7.16.7", "@babel/template": "7.16.7", "@discoveryjs/json-ext": "0.5.6", - "@ngtools/webpack": "13.3.9", + "@ngtools/webpack": "13.3.10", "ansi-colors": "4.1.1", "babel-loader": "8.2.5", "babel-plugin-istanbul": "6.1.1", @@ -17485,7 +17450,7 @@ "less": "4.1.2", "less-loader": "10.2.0", "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.0", + "loader-utils": "3.2.1", "mini-css-extract-plugin": "2.5.3", "minimatch": "3.0.5", "open": "8.4.0", @@ -17543,12 +17508,12 @@ } }, "@angular-devkit/build-webpack": { - "version": "0.1303.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.9.tgz", - "integrity": "sha512-CdYXvAN1xAik8FyfdF1B8Nt1B/1aBvkZr65AUVFOmP6wuVzcdn78BMZmZD42srYbV2449sWi5Vyo/j0a/lfJww==", + "version": "0.1303.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1303.10.tgz", + "integrity": "sha512-nthTy6r4YQQTrvOpOS3dqjoJog/SL9Hn5YLytqnEp2r2he5evYsKV2Jtqi49/VgW1ohrGzw+bI0c3dUGKweyfw==", "dev": true, "requires": { - "@angular-devkit/architect": "0.1303.9", + "@angular-devkit/architect": "0.1303.10", "rxjs": "6.6.7" }, "dependencies": { @@ -17570,9 +17535,9 @@ } }, "@angular-devkit/core": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.9.tgz", - "integrity": "sha512-XqCuIWyoqIsLABjV3GQL/+EiBCt3xVPPtNp3Mg4gjBsDLW7PEnvbb81yGkiZQmIsq4EIyQC/6fQa3VdjsCshGg==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.10.tgz", + "integrity": "sha512-NSjyrccES+RkVL/wt1t1jNmJOV9z5H4/DtVjJQbAt/tDE5Mo0ygnhELd/QiUmjVfzfSkhr75LqQD8NtURoGBwQ==", "dev": true, "requires": { "ajv": "8.9.0", @@ -17601,12 +17566,12 @@ } }, "@angular-devkit/schematics": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.9.tgz", - "integrity": "sha512-oNHLNtwbtEJ0dYPPXy1NpfRdSiFsYBl7+ozJklLgNV/AEOxlSi2qlVx6DoxNVjz5XgQ7Z+eoVDMw7ewGPnGSyA==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.10.tgz", + "integrity": "sha512-/G0xInGBfFiJJQET3nKMe8V7Ny+fcxAZsXxFuOpuH2jfKqty9JMmuJw6ll5qEP0h3NnKPsF+9J1Gvq8Bmb4uDQ==", "dev": true, "requires": { - "@angular-devkit/core": "13.3.9", + "@angular-devkit/core": "13.3.10", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", @@ -17718,15 +17683,15 @@ } }, "@angular/cli": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.9.tgz", - "integrity": "sha512-b64mfB7A8vw5QmopEnkCVhGH8zDX5FrQVKKCRlK1dO3GEtAdfhFJb5J7TBbCOwp1XfYJ5jl+biNQy4HoX5HQPw==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-13.3.10.tgz", + "integrity": "sha512-MssGlWSFv2d8d6b0+ml0NLYWr/X+2FzIleaoEwkYnLeCTBrH07xghVkCbSk8OnTvEmuBcUcsNiPprpLFY4cGEw==", "dev": true, "requires": { - "@angular-devkit/architect": "0.1303.9", - "@angular-devkit/core": "13.3.9", - "@angular-devkit/schematics": "13.3.9", - "@schematics/angular": "13.3.9", + "@angular-devkit/architect": "0.1303.10", + "@angular-devkit/core": "13.3.10", + "@angular-devkit/schematics": "13.3.10", + "@schematics/angular": "13.3.10", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.1", "debug": "4.3.3", @@ -17787,21 +17752,21 @@ }, "dependencies": { "@babel/core": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz", - "integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.10", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-module-transforms": "^7.18.9", - "@babel/helpers": "^7.18.9", - "@babel/parser": "^7.18.10", + "@babel/generator": "^7.20.2", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.1", + "@babel/parser": "^7.20.2", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.18.10", - "@babel/types": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -17818,12 +17783,12 @@ } }, "@babel/generator": { - "version": "7.18.12", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz", - "integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", + "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", "dev": true, "requires": { - "@babel/types": "^7.18.10", + "@babel/types": "^7.20.2", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } @@ -17851,9 +17816,9 @@ } }, "magic-string": { - "version": "0.26.2", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.2.tgz", - "integrity": "sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==", + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", + "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", "dev": true, "requires": { "sourcemap-codec": "^1.4.8" @@ -17873,6 +17838,7 @@ "version": "13.0.0-beta.38", "resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-13.0.0-beta.38.tgz", "integrity": "sha512-kcWb7CcoHbvw7fjo/knizWVmSSmvaTnr8v1ML6zOdxu1PK9UPPOcOS8RTm6fy61zoC2LABivP1/6Z2jF5XfpdQ==", + "dev": true, "requires": { "tslib": "^2.3.0" } @@ -17889,6 +17855,7 @@ "version": "13.3.9", "resolved": "https://registry.npmjs.org/@angular/material/-/material-13.3.9.tgz", "integrity": "sha512-FU8lcMgo+AL8ckd27B4V097ZPoIZNRHiCe3wpgkImT1qC0YwcyXZVn0MqQTTFSdC9a/aI8wPm3AbTClJEVw5Vw==", + "dev": true, "requires": { "tslib": "^2.3.0" } @@ -17913,6 +17880,7 @@ "version": "13.3.11", "resolved": "https://registry.npmjs.org/@angular/router/-/router-13.3.11.tgz", "integrity": "sha512-bJTcxDYKEyoqtsi1kJcDJWLmEN+dXpwhU07SsqUwfyN4V5fYF1ApDhpJ4c17hNdjEqe106srT9tiHXhmWayhmQ==", + "dev": true, "requires": { "tslib": "^2.3.0" } @@ -17933,9 +17901,9 @@ } }, "@babel/compat-data": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", - "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", "dev": true }, "@babel/core": { @@ -18014,14 +17982,14 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz", - "integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.18.8", + "@babel/compat-data": "^7.20.0", "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.20.2", + "browserslist": "^4.21.3", "semver": "^6.3.0" }, "dependencies": { @@ -18034,17 +18002,17 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz", - "integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", + "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6" }, "dependencies": { @@ -18060,9 +18028,9 @@ } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz", - "integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", @@ -18081,9 +18049,9 @@ } }, "@babel/helper-define-polyfill-provider": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz", - "integrity": "sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", "dev": true, "requires": { "@babel/helper-compilation-targets": "^7.17.7", @@ -18118,13 +18086,13 @@ } }, "@babel/helper-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz", - "integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.9" + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" }, "dependencies": { "@babel/template": { @@ -18168,19 +18136,19 @@ } }, "@babel/helper-module-transforms": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz", - "integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" }, "dependencies": { "@babel/template": { @@ -18206,9 +18174,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz", - "integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "dev": true }, "@babel/helper-remap-async-to-generator": { @@ -18235,34 +18203,34 @@ } }, "@babel/helper-replace-supers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", - "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", + "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-member-expression-to-functions": "^7.18.9", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/traverse": "^7.19.1", + "@babel/types": "^7.19.0" } }, "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.20.2" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", - "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", "dev": true, "requires": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.0" } }, "@babel/helper-split-export-declaration": { @@ -18275,15 +18243,15 @@ } }, "@babel/helper-string-parser": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", - "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "dev": true }, "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true }, "@babel/helper-validator-option": { @@ -18293,15 +18261,15 @@ "dev": true }, "@babel/helper-wrap-function": { - "version": "7.18.11", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz", - "integrity": "sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.18.11", - "@babel/types": "^7.18.10" + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" }, "dependencies": { "@babel/template": { @@ -18318,14 +18286,14 @@ } }, "@babel/helpers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz", - "integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", "dev": true, "requires": { - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.0" }, "dependencies": { "@babel/template": { @@ -18353,9 +18321,9 @@ } }, "@babel/parser": { - "version": "7.18.11", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.11.tgz", - "integrity": "sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==", + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz", + "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "dev": true }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { @@ -18471,16 +18439,16 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", - "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", + "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.18.8", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.8" + "@babel/plugin-transform-parameters": "^7.20.1" } }, "@babel/plugin-proposal-optional-catch-binding": { @@ -18703,26 +18671,27 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", - "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz", + "integrity": "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-classes": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz", - "integrity": "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", + "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.0", "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.19.1", "@babel/helper-split-export-declaration": "^7.18.6", "globals": "^11.1.0" }, @@ -18748,12 +18717,12 @@ } }, "@babel/plugin-transform-destructuring": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz", - "integrity": "sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", + "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-dotall-regex": { @@ -18824,39 +18793,36 @@ } }, "@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", + "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", + "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-simple-access": "^7.19.4" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz", - "integrity": "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==", + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", + "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-module-transforms": "^7.19.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.19.1" } }, "@babel/plugin-transform-modules-umd": { @@ -18870,13 +18836,13 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz", - "integrity": "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", + "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" } }, "@babel/plugin-transform-new-target": { @@ -18899,12 +18865,12 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", - "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "version": "7.20.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz", + "integrity": "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-transform-property-literals": { @@ -18967,12 +18933,12 @@ } }, "@babel/plugin-transform-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz", - "integrity": "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" } }, @@ -19135,13 +19101,21 @@ } }, "@babel/runtime-corejs3": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", - "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz", + "integrity": "sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==", "dev": true, "requires": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" + "core-js-pure": "^3.25.1", + "regenerator-runtime": "^0.13.10" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + } } }, "@babel/template": { @@ -19156,30 +19130,30 @@ } }, "@babel/traverse": { - "version": "7.18.11", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.11.tgz", - "integrity": "sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==", + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", + "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.10", + "@babel/generator": "^7.20.1", "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.11", - "@babel/types": "^7.18.10", + "@babel/parser": "^7.20.1", + "@babel/types": "^7.20.0", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { "@babel/generator": { - "version": "7.18.12", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz", - "integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", + "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", "dev": true, "requires": { - "@babel/types": "^7.18.10", + "@babel/types": "^7.20.2", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" } @@ -19198,13 +19172,13 @@ } }, "@babel/types": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz", - "integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz", + "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.18.10", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } }, @@ -19258,14 +19232,14 @@ "dev": true }, "@eslint/eslintrc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", - "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", + "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.3.2", + "espree": "^9.4.0", "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", @@ -19293,9 +19267,9 @@ "dev": true }, "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", + "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -19393,37 +19367,42 @@ "version": "0.10.2", "resolved": "https://registry.npmjs.org/@fortawesome/angular-fontawesome/-/angular-fontawesome-0.10.2.tgz", "integrity": "sha512-VxsCAo2lK74KwD236AKAhGpiethfz9yqCViIG2iRAZqgNmuZ6ihwumjbLW32n6hV4fFvCqLcHmpngoEl3TNiOg==", + "dev": true, "requires": { "tslib": "^2.3.1" } }, "@fortawesome/fontawesome-common-types": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.1.2.tgz", - "integrity": "sha512-wBaAPGz1Awxg05e0PBRkDRuTsy4B3dpBm+zreTTyd9TH4uUM27cAL4xWyWR0rLJCrRwzVsQ4hF3FvM6rqydKPA==" + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.2.1.tgz", + "integrity": "sha512-Sz07mnQrTekFWLz5BMjOzHl/+NooTdW8F8kDQxjWwbpOJcnoSg4vUDng8d/WR1wOxM0O+CY9Zw0nR054riNYtQ==", + "dev": true }, "@fortawesome/fontawesome-svg-core": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.1.2.tgz", - "integrity": "sha512-853G/Htp0BOdXnPoeCPTjFrVwyrJHpe8MhjB/DYE9XjwhnNDfuBCd3aKc2YUYbEfHEcBws4UAA0kA9dymZKGjA==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.2.1.tgz", + "integrity": "sha512-HELwwbCz6C1XEcjzyT1Jugmz2NNklMrSPjZOWMlc+ZsHIVk+XOvOXLGGQtFBwSyqfJDNgRq4xBCwWOaZ/d9DEA==", + "dev": true, "requires": { - "@fortawesome/fontawesome-common-types": "6.1.2" + "@fortawesome/fontawesome-common-types": "6.2.1" } }, "@fortawesome/free-regular-svg-icons": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.1.2.tgz", - "integrity": "sha512-xR4hA+tAwsaTHGfb+25H1gVU/aJ0Rzu+xIUfnyrhaL13yNQ7TWiI2RvzniAaB+VGHDU2a+Pk96Ve+pkN3/+TTQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.2.1.tgz", + "integrity": "sha512-wiqcNDNom75x+pe88FclpKz7aOSqS2lOivZeicMV5KRwOAeypxEYWAK/0v+7r+LrEY30+qzh8r2XDaEHvoLsMA==", + "dev": true, "requires": { - "@fortawesome/fontawesome-common-types": "6.1.2" + "@fortawesome/fontawesome-common-types": "6.2.1" } }, "@fortawesome/free-solid-svg-icons": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.1.2.tgz", - "integrity": "sha512-lTgZz+cMpzjkHmCwOG3E1ilUZrnINYdqMmrkv30EC3XbRsGlbIOL8H9LaNp5SV4g0pNJDfQ4EdTWWaMvdwyLiQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.2.1.tgz", + "integrity": "sha512-oKuqrP5jbfEPJWTij4sM+/RvgX+RMFwx3QZCZcK9PrBDgxC35zuc7AOFsyMjMd/PIFPeB2JxyqDr5zs/DZFPPw==", + "dev": true, "requires": { - "@fortawesome/fontawesome-common-types": "6.1.2" + "@fortawesome/fontawesome-common-types": "6.2.1" } }, "@gar/promisify": { @@ -19433,20 +19412,20 @@ "dev": true }, "@humanwhocodes/config-array": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz", - "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==", + "version": "0.11.7", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz", + "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==", "dev": true, "requires": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" } }, - "@humanwhocodes/gitignore-to-minimatch": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz", - "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==", + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true }, "@humanwhocodes/object-schema": { @@ -19526,13 +19505,13 @@ "dev": true }, "@jridgewell/trace-mapping": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", - "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "dev": true, "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, "@ngrx/effects": { @@ -19561,9 +19540,9 @@ } }, "@ngtools/webpack": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.9.tgz", - "integrity": "sha512-wmgOI5sogAuilwBZJqCHVMjm2uhDxjdSmNLFx7eznwGDa6LjvjuATqCv2dVlftq0Y/5oZFVrg5NpyHt5kfZ8Cg==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-13.3.10.tgz", + "integrity": "sha512-QQ8ELLqW5PtvrEAMt99D0s982NW303k8UpZrQoQ9ODgnSVDMdbbzFPNTXq/20dg+nbp8nlOakUrkjB47TBwTNA==", "dev": true, "requires": {} }, @@ -19853,16 +19832,22 @@ } }, "@schematics/angular": { - "version": "13.3.9", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.9.tgz", - "integrity": "sha512-tm5wst7+Z8cOgOJ/4JVlYKOFCCOVnqKYFtYf0BIWq6RFBXcw6QqbGW1wXH8ASmuev4QZXKgqc7YKALPpYAKCeQ==", + "version": "13.3.10", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.10.tgz", + "integrity": "sha512-sw6K8YihfcqNyfa2/65ACPixZHQJRBw1aNm8w0DRGFyO3aXRe9G5X23MkCMLH+63oK9R1cK63/fZ8zqfdSq7zA==", "dev": true, "requires": { - "@angular-devkit/core": "13.3.9", - "@angular-devkit/schematics": "13.3.9", + "@angular-devkit/core": "13.3.10", + "@angular-devkit/schematics": "13.3.10", "jsonc-parser": "3.0.0" } }, + "@socket.io/component-emitter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", + "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==", + "dev": true + }, "@swimlane/ngx-charts": { "version": "20.1.0", "resolved": "https://registry.npmjs.org/@swimlane/ngx-charts/-/ngx-charts-20.1.0.tgz", @@ -19932,12 +19917,6 @@ "@types/node": "*" } }, - "@types/component-emitter": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", - "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", - "dev": true - }, "@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", @@ -19983,9 +19962,9 @@ } }, "@types/eslint": { - "version": "8.4.5", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz", - "integrity": "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==", + "version": "8.4.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", "dev": true, "requires": { "@types/estree": "*", @@ -20009,9 +19988,9 @@ "dev": true }, "@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "version": "4.17.14", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", + "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", "dev": true, "requires": { "@types/body-parser": "*", @@ -20021,9 +20000,9 @@ } }, "@types/express-serve-static-core": { - "version": "4.17.30", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz", - "integrity": "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==", + "version": "4.17.31", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "dev": true, "requires": { "@types/node": "*", @@ -20100,6 +20079,12 @@ "integrity": "sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA==", "dev": true }, + "@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, "@types/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", @@ -20138,17 +20123,17 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz", - "integrity": "sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.43.0.tgz", + "integrity": "sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "5.33.0", - "@typescript-eslint/type-utils": "5.33.0", - "@typescript-eslint/utils": "5.33.0", + "@typescript-eslint/scope-manager": "5.43.0", + "@typescript-eslint/type-utils": "5.43.0", + "@typescript-eslint/utils": "5.43.0", "debug": "^4.3.4", - "functional-red-black-tree": "^1.0.1", "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", "regexpp": "^3.2.0", "semver": "^7.3.7", "tsutils": "^3.21.0" @@ -20170,9 +20155,9 @@ "dev": true }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -20213,41 +20198,35 @@ "@typescript-eslint/types": "5.3.0", "eslint-visitor-keys": "^3.0.0" } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true } } }, "@typescript-eslint/parser": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.33.0.tgz", - "integrity": "sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.43.0.tgz", + "integrity": "sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "5.33.0", - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/typescript-estree": "5.33.0", + "@typescript-eslint/scope-manager": "5.43.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/typescript-estree": "5.43.0", "debug": "^4.3.4" }, "dependencies": { "@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz", - "integrity": "sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz", + "integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==", "dev": true, "requires": { - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/visitor-keys": "5.33.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -20265,9 +20244,9 @@ } }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -20276,34 +20255,56 @@ } }, "@typescript-eslint/scope-manager": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.33.0.tgz", - "integrity": "sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz", + "integrity": "sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==", "dev": true, "requires": { - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/visitor-keys": "5.33.0" + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0" }, "dependencies": { "@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true } } }, "@typescript-eslint/type-utils": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.33.0.tgz", - "integrity": "sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.43.0.tgz", + "integrity": "sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==", "dev": true, "requires": { - "@typescript-eslint/utils": "5.33.0", + "@typescript-eslint/typescript-estree": "5.43.0", + "@typescript-eslint/utils": "5.43.0", "debug": "^4.3.4", "tsutils": "^3.21.0" }, "dependencies": { + "@typescript-eslint/types": { + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz", + "integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -20312,6 +20313,15 @@ "requires": { "ms": "2.1.2" } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } } } }, @@ -20345,43 +20355,39 @@ "@typescript-eslint/types": "5.3.0", "eslint-visitor-keys": "^3.0.0" } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true } } }, "@typescript-eslint/utils": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.33.0.tgz", - "integrity": "sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.43.0.tgz", + "integrity": "sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==", "dev": true, "requires": { "@types/json-schema": "^7.0.9", - "@typescript-eslint/scope-manager": "5.33.0", - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/typescript-estree": "5.33.0", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.43.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/typescript-estree": "5.43.0", "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" + "eslint-utils": "^3.0.0", + "semver": "^7.3.7" }, "dependencies": { "@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.33.0.tgz", - "integrity": "sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz", + "integrity": "sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==", "dev": true, "requires": { - "@typescript-eslint/types": "5.33.0", - "@typescript-eslint/visitor-keys": "5.33.0", + "@typescript-eslint/types": "5.43.0", + "@typescript-eslint/visitor-keys": "5.43.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -20399,9 +20405,9 @@ } }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -20410,25 +20416,19 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.33.0.tgz", - "integrity": "sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz", + "integrity": "sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==", "dev": true, "requires": { - "@typescript-eslint/types": "5.33.0", + "@typescript-eslint/types": "5.43.0", "eslint-visitor-keys": "^3.3.0" }, "dependencies": { "@typescript-eslint/types": { - "version": "5.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.33.0.tgz", - "integrity": "sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==", - "dev": true - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "version": "5.43.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz", + "integrity": "sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==", "dev": true } } @@ -20619,9 +20619,17 @@ } }, "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "requires": {} }, "acorn-jsx": { "version": "5.3.2", @@ -20638,6 +20646,13 @@ "acorn": "^7.0.0", "acorn-walk": "^7.0.0", "xtend": "^4.0.2" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } } }, "acorn-walk": { @@ -20656,9 +20671,9 @@ }, "dependencies": { "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -20948,13 +20963,13 @@ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, "autoprefixer": { - "version": "10.4.8", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.8.tgz", - "integrity": "sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==", + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "dev": true, "requires": { - "browserslist": "^4.21.3", - "caniuse-lite": "^1.0.30001373", + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -20990,9 +21005,9 @@ }, "dependencies": { "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -21002,15 +21017,6 @@ } } }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "dev": true, - "requires": { - "object.assign": "^4.1.0" - } - }, "babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", @@ -21025,13 +21031,13 @@ } }, "babel-plugin-polyfill-corejs2": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz", - "integrity": "sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", "dev": true, "requires": { "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.2", + "@babel/helper-define-polyfill-provider": "^0.3.3", "semver": "^6.1.1" }, "dependencies": { @@ -21137,9 +21143,9 @@ "dev": true }, "body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "requires": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -21149,7 +21155,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", + "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -21346,26 +21352,18 @@ "parse-asn1": "^5.1.5", "readable-stream": "^3.6.0", "safe-buffer": "^5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } } }, "browserslist": { - "version": "4.21.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz", - "integrity": "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==", + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001370", - "electron-to-chromium": "^1.4.202", + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.5" + "update-browserslist-db": "^1.0.9" } }, "browserstack": { @@ -21502,9 +21500,9 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, "caniuse-lite": { - "version": "1.0.30001374", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001374.tgz", - "integrity": "sha512-mWvzatRx3w+j5wx/mpFN5v5twlPrabG8NqX2c6e45LCpymdoGqNvRkRutFUqpRTXKFQFNQJasvK0YT7suW6/Hw==", + "version": "1.0.30001434", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", + "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==", "dev": true }, "caseless": { @@ -21602,13 +21600,13 @@ "dev": true }, "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "requires": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, @@ -21681,12 +21679,6 @@ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, "compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -21731,6 +21723,12 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true } } }, @@ -21765,6 +21763,11 @@ "util-deprecate": "~1.0.1" } }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -21852,13 +21855,6 @@ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "requires": { "safe-buffer": "5.2.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } } }, "content-type": { @@ -21872,12 +21868,9 @@ "integrity": "sha512-w20BOb1PiR/sEJdS6wNrUjF5CSfscZFUp7R9NSlXH8h2wynzXVEPFPJECAnkNylZ+cvf3p7TyRUHggDmrwXT9A==" }, "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "requires": { - "safe-buffer": "~5.1.1" - } + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" }, "convert-string": { "version": "0.1.0", @@ -21982,27 +21975,18 @@ "dev": true }, "core-js-compat": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.24.1.tgz", - "integrity": "sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", + "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", "dev": true, "requires": { - "browserslist": "^4.21.3", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true - } + "browserslist": "^4.21.4" } }, "core-js-pure": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz", - "integrity": "sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==", + "version": "3.26.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz", + "integrity": "sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==", "dev": true }, "core-util-is": { @@ -22021,9 +22005,9 @@ } }, "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "requires": { "@types/parse-json": "^4.0.0", @@ -22463,9 +22447,9 @@ } }, "date-format": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.13.tgz", - "integrity": "sha512-bnYCwf8Emc3pTD8pXnre+wfnjGtfi5ncMDKy7+cWZXbmRAsdWkOQHrfC1yz/KiwP5thDp2kCHWYWKBX4HP1hoQ==", + "version": "4.0.14", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", + "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", "dev": true }, "debug": { @@ -22516,9 +22500,9 @@ } }, "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "requires": { "clone": "^1.0.2" @@ -22800,6 +22784,11 @@ "util-deprecate": "~1.0.1" } }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -22842,9 +22831,9 @@ } }, "electron-to-chromium": { - "version": "1.4.213", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.213.tgz", - "integrity": "sha512-+3DbGHGOCHTVB/Ms63bGqbyC1b8y7Fk86+7ltssB8NQrZtSCvZG6eooSl9U2Q0yw++fL2DpHKOdTU0NVEkFObg==", + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", "dev": true }, "elliptic": { @@ -22914,9 +22903,9 @@ } }, "engine.io": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz", - "integrity": "sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", + "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", "dev": true, "requires": { "@types/cookie": "^0.4.1", @@ -23063,25 +23052,22 @@ } }, "es6-set": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", - "integrity": "sha512-7S8YXIcUfPMOr3rqJBVMePAbRsD1nWeSMQ86K/lDI76S3WKXz+KWILvTIPbTroubOkZTGh+b+7/xIIphZXNYbA==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz", + "integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==", "requires": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-symbol": "3.1.1", - "event-emitter": "~0.3.5" + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "es6-iterator": "~2.0.3", + "es6-symbol": "^3.1.3", + "event-emitter": "^0.3.5", + "type": "^2.7.2" }, "dependencies": { - "es6-symbol": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", - "integrity": "sha512-exfuQY8UGtn/N+gL1iKkH8fpNd5sJ760nJq6mmZAHldfxMD5kX07lbQuYlspoXsuknXNv9Fb7y2GsPOnQIbxHg==", - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } + "type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" } } }, @@ -23316,14 +23302,15 @@ } }, "eslint": { - "version": "8.21.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz", - "integrity": "sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==", + "version": "8.28.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.28.0.tgz", + "integrity": "sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==", "dev": true, "requires": { - "@eslint/eslintrc": "^1.3.0", - "@humanwhocodes/config-array": "^0.10.4", - "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", + "@eslint/eslintrc": "^1.3.3", + "@humanwhocodes/config-array": "^0.11.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -23333,21 +23320,21 @@ "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.3", + "espree": "^9.4.0", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", + "glob-parent": "^6.0.2", "globals": "^13.15.0", - "globby": "^11.1.0", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", @@ -23358,8 +23345,7 @@ "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "dependencies": { "ajv": { @@ -23430,12 +23416,6 @@ "estraverse": "^5.2.0" } }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - }, "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", @@ -23462,9 +23442,9 @@ } }, "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", + "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -23551,9 +23531,9 @@ } }, "eslint-plugin-deprecation": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-1.3.2.tgz", - "integrity": "sha512-z93wbx9w7H/E3ogPw6AZMkkNJ6m51fTZRNZPNQqxQLmx+KKt7aLkMU9wN67s71i+VVHN4tLOZ3zT3QLbnlC0Mg==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-1.3.3.tgz", + "integrity": "sha512-Bbkv6ZN2cCthVXz/oZKPwsSY5S/CbgTLRG4Q2s2gpPpgNsT0uJ0dB5oLNiWzFYY8AgKX4ULxXFG1l/rDav9QFA==", "dev": true, "requires": { "@typescript-eslint/experimental-utils": "^5.0.0", @@ -23578,37 +23558,31 @@ "dev": true, "requires": { "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } } }, "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true }, "espree": { - "version": "9.3.3", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.3.tgz", - "integrity": "sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==", + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, "requires": { "acorn": "^8.8.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.3.0" - }, - "dependencies": { - "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - } } }, "esprima": { @@ -23731,13 +23705,13 @@ "dev": true }, "express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.0", + "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", @@ -23756,7 +23730,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.10.3", + "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -23798,11 +23772,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, "toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -23842,20 +23811,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, "ext": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", - "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "requires": { - "type": "^2.5.0" + "type": "^2.7.2" }, "dependencies": { "type": { @@ -23903,9 +23867,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -24059,15 +24023,15 @@ } }, "flatted": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", - "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, "follow-redirects": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", - "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "dev": true }, "forever-agent": { @@ -24146,12 +24110,6 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, "functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -24190,9 +24148,9 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "get-intrinsic": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", - "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -24393,14 +24351,6 @@ "inherits": "^2.0.4", "readable-stream": "^3.6.0", "safe-buffer": "^5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } } }, "hash.js": { @@ -24482,6 +24432,12 @@ "util-deprecate": "~1.0.1" } }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -24735,9 +24691,9 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.0.tgz", - "integrity": "sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==" + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==" }, "inquirer": { "version": "8.2.0", @@ -24853,9 +24809,9 @@ } }, "is-core-module": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", - "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "requires": { "has": "^1.0.3" } @@ -24925,16 +24881,24 @@ "dev": true, "requires": { "is-path-inside": "^1.0.0" + }, + "dependencies": { + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + } } }, "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true }, "is-plain-obj": { "version": "3.0.0", @@ -25027,9 +24991,9 @@ "dev": true }, "istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "requires": { "@babel/core": "^7.12.3", @@ -25235,6 +25199,12 @@ } } }, + "js-sdsl": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", + "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", + "dev": true + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -25386,6 +25356,12 @@ "util-deprecate": "~1.0.1" } }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -25448,6 +25424,17 @@ "yargs": "^16.1.1" }, "dependencies": { + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, "mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -25694,9 +25681,9 @@ "dev": true }, "loader-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true }, "locate-path": { @@ -25821,16 +25808,16 @@ } }, "log4js": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.6.1.tgz", - "integrity": "sha512-J8VYFH2UQq/xucdNu71io4Fo+purYYudyErgBbswWKO0MC6QVOERRomt5su/z6d3RJSmLyTGmXl3Q/XjKCf+/A==", + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.7.0.tgz", + "integrity": "sha512-KA0W9ffgNBLDj6fZCq/lRbgR6ABAodRIDHrZnS48vOtfKa4PzWImb0Md1lmGCdO3n3sbCm/n1/WmrNlZ8kCI3Q==", "dev": true, "requires": { - "date-format": "^4.0.13", + "date-format": "^4.0.14", "debug": "^4.3.4", - "flatted": "^3.2.6", + "flatted": "^3.2.7", "rfdc": "^1.3.0", - "streamroller": "^3.1.2" + "streamroller": "^3.1.3" }, "dependencies": { "debug": { @@ -25912,7 +25899,8 @@ "material-design-icons": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/material-design-icons/-/material-design-icons-3.0.1.tgz", - "integrity": "sha512-t19Z+QZBwSZulxptEu05kIm+UyfIdJY1JDwI+nx02j269m6W414whiQz9qfvQIiLrdx71RQv+T48nHhuQXOCIQ==" + "integrity": "sha512-t19Z+QZBwSZulxptEu05kIm+UyfIdJY1JDwI+nx02j269m6W414whiQz9qfvQIiLrdx71RQv+T48nHhuQXOCIQ==", + "dev": true }, "md5.js": { "version": "1.3.5", @@ -25931,9 +25919,9 @@ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" }, "memfs": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", - "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "version": "3.4.12", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz", + "integrity": "sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==", "dev": true, "requires": { "fs-monkey": "^1.0.3" @@ -26074,9 +26062,9 @@ } }, "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" }, "minipass": { "version": "3.3.4", @@ -26200,6 +26188,12 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, "needle": { "version": "2.9.1", "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", @@ -26315,15 +26309,15 @@ "dev": true }, "nodemon": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.19.tgz", - "integrity": "sha512-4pv1f2bMDj0Eeg/MhGqxrtveeQ5/G/UVe9iO6uTZzjnRluSA4PVWf8CW99LUPwGB3eNIA7zUFoP77YuI7hOc0A==", + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.20.tgz", + "integrity": "sha512-Km2mWHKKY5GzRg6i1j5OxOHQtuvVsgskLfigG25yTtbyfRGn/GNvIbRyOf1PSCKJ2aT/58TiuUsuOU5UToVViw==", "dev": true, "requires": { "chokidar": "^3.5.2", "debug": "^3.2.7", "ignore-by-default": "^1.0.1", - "minimatch": "^3.0.4", + "minimatch": "^3.1.2", "pstree.remy": "^1.1.8", "semver": "^5.7.1", "simple-update-notifier": "^1.0.7", @@ -26341,6 +26335,15 @@ "ms": "^2.1.1" } }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -26444,9 +26447,9 @@ }, "dependencies": { "@npmcli/fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.1.tgz", - "integrity": "sha512-1Q0uzx6c/NVNGszePbr5Gc2riSU1zLpNlo/1YWntH+eaPmMgBssAW0qXofCVkpdj3ce4swZtlDYQu+NKiYcptg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", "dev": true, "requires": { "@gar/promisify": "^1.1.3", @@ -26454,9 +26457,9 @@ } }, "@npmcli/move-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.0.tgz", - "integrity": "sha512-UR6D5f4KEGWJV6BGPH3Qb2EtgH+t+1XQ1Tt85c7qicN6cezzuHPdZwwAxqZr4JLtnQu0LZsTza/5gmNmSl8XLg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", "dev": true, "requires": { "mkdirp": "^1.0.4", @@ -26479,9 +26482,9 @@ } }, "cacache": { - "version": "16.1.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.1.tgz", - "integrity": "sha512-VDKN+LHyCQXaaYZ7rA/qtkURU+/yYhviUdvqEv2LT6QPZU8jpyzEkEVAcKlKLt5dJ5BRp11ym8lo3NKLluEPLg==", + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", "dev": true, "requires": { "@npmcli/fs": "^2.1.0", @@ -26501,7 +26504,7 @@ "rimraf": "^3.0.2", "ssri": "^9.0.0", "tar": "^6.1.11", - "unique-filename": "^1.1.1" + "unique-filename": "^2.0.0" } }, "glob": { @@ -26529,15 +26532,15 @@ } }, "lru-cache": { - "version": "7.13.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.13.2.tgz", - "integrity": "sha512-VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA==", + "version": "7.14.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.14.1.tgz", + "integrity": "sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==", "dev": true }, "make-fetch-happen": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.0.tgz", - "integrity": "sha512-OnEfCLofQVJ5zgKwGk55GaqosqKjaR6khQlJY3dBAA+hM25Bc5CmX5rKUfVut+rYA3uidA7zb7AvcglU87rPRg==", + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", "dev": true, "requires": { "agentkeepalive": "^4.2.1", @@ -26559,9 +26562,9 @@ }, "dependencies": { "minipass-fetch": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.0.tgz", - "integrity": "sha512-H9U4UVBGXEyyWJnqYDCLp1PwD8XIkJ4akNHp1aGVI+2Ym7wQMlxDKi4IB4JbmyU+pl9pEs/cVrK6cOuvmbK4Sg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", "dev": true, "requires": { "encoding": "^0.1.13", @@ -26600,6 +26603,24 @@ "requires": { "minipass": "^3.1.1" } + }, + "unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dev": true, + "requires": { + "unique-slug": "^3.0.0" + } + }, + "unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } } } }, @@ -26663,18 +26684,6 @@ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, - "object.assign": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.3.tgz", - "integrity": "sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -27058,9 +27067,9 @@ } }, "pdfmake": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.5.tgz", - "integrity": "sha512-NlayjehMtuZEdw2Lyipf/MxOCR2vATZQ7jn8cH0/dHwsNb+mqof9/6SW4jZT5p+So4qz+0mD21KG81+dDQSEhA==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.6.tgz", + "integrity": "sha512-gZARnKLJjTuHWKIkqF4G6dafIaPfH7NFqBz9U9wb26PV5koHQ5eeQ/0rgZmIdfJzMKqHzXB9aK25ykG2AnnzEQ==", "requires": { "@foliojs-fork/linebreak": "^1.1.1", "@foliojs-fork/pdfkit": "^0.13.0", @@ -27153,9 +27162,9 @@ "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" }, "portfinder": { - "version": "1.0.29", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.29.tgz", - "integrity": "sha512-Z5+DarHWCKlufshB9Z1pN95oLtANoY5Wn9X3JGELGyQ6VhEcBfT2t+1fGUBq7MwUant6g/mqowH+4HifByPbiQ==", + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", "dev": true, "requires": { "async": "^2.6.4", @@ -27249,9 +27258,9 @@ } }, "postcss-custom-properties": { - "version": "12.1.8", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz", - "integrity": "sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==", + "version": "12.1.10", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz", + "integrity": "sha512-U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -27425,9 +27434,9 @@ } }, "postcss-nesting": { - "version": "10.1.10", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.10.tgz", - "integrity": "sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", "dev": true, "requires": { "@csstools/selector-specificity": "^2.0.0", @@ -27526,9 +27535,9 @@ } }, "postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, "requires": { "cssesc": "^3.0.0", @@ -27922,9 +27931,9 @@ } }, "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "requires": { "side-channel": "^1.0.4" } @@ -28056,9 +28065,9 @@ "dev": true }, "regenerate-unicode-properties": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", - "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, "requires": { "regenerate": "^1.4.2" @@ -28071,9 +28080,9 @@ "dev": true }, "regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", "dev": true, "requires": { "@babel/runtime": "^7.8.4" @@ -28102,29 +28111,29 @@ "dev": true }, "regexpu-core": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", - "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", + "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", "dev": true, "requires": { "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.0.1", - "regjsgen": "^0.6.0", - "regjsparser": "^0.8.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsgen": "^0.7.1", + "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" } }, "regjsgen": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", - "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", + "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==", "dev": true }, "regjsparser": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", - "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, "requires": { "jsesc": "~0.5.0" @@ -28253,9 +28262,9 @@ }, "dependencies": { "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -28326,7 +28335,8 @@ "roboto-fontface": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/roboto-fontface/-/roboto-fontface-0.10.0.tgz", - "integrity": "sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==" + "integrity": "sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==", + "dev": true }, "run-async": { "version": "2.4.1", @@ -28344,17 +28354,17 @@ } }, "rxjs": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz", - "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==", + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", + "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "requires": { "tslib": "^2.1.0" } }, "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, "safer-buffer": { "version": "2.1.2", @@ -28517,9 +28527,9 @@ } }, "selfsigned": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "dev": true, "requires": { "node-forge": "^1" @@ -28796,9 +28806,9 @@ "dev": true }, "socket.io": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.1.tgz", - "integrity": "sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz", + "integrity": "sha512-zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg==", "dev": true, "requires": { "accepts": "~1.3.4", @@ -28806,7 +28816,7 @@ "debug": "~4.3.2", "engine.io": "~6.2.0", "socket.io-adapter": "~2.4.0", - "socket.io-parser": "~4.0.4" + "socket.io-parser": "~4.2.0" } }, "socket.io-adapter": { @@ -28816,13 +28826,12 @@ "dev": true }, "socket.io-parser": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.5.tgz", - "integrity": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.1.tgz", + "integrity": "sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==", "dev": true, "requires": { - "@types/component-emitter": "^1.2.10", - "component-emitter": "~1.3.0", + "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" } }, @@ -28838,9 +28847,9 @@ } }, "socks": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", - "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", "dev": true, "requires": { "ip": "^2.0.0", @@ -29128,6 +29137,11 @@ "util-deprecate": "~1.0.1" } }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -29173,12 +29187,12 @@ } }, "streamroller": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.2.tgz", - "integrity": "sha512-wZswqzbgGGsXYIrBYhOE0yP+nQ6XRk7xDcYwuQAGTYXdyAUmvgVFE0YU1g5pvQT0m7GBaQfYcSnlHbapuK0H0A==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.3.tgz", + "integrity": "sha512-CphIJyFx2SALGHeINanjFRKQ4l7x2c+rXYJ4BMq0gd+ZK0gi4VT8b+eHe2wi58x4UayBAKx4xtHpXT/ea1cz8w==", "dev": true, "requires": { - "date-format": "^4.0.13", + "date-format": "^4.0.14", "debug": "^4.3.4", "fs-extra": "^8.1.0" }, @@ -29227,14 +29241,6 @@ "dev": true, "requires": { "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } } }, "string-width": { @@ -29319,9 +29325,9 @@ "dev": true }, "tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "version": "6.1.12", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.12.tgz", + "integrity": "sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==", "dev": true, "requires": { "chownr": "^2.0.0", @@ -29342,27 +29348,19 @@ "acorn": "^8.5.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" - }, - "dependencies": { - "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true - } } }, "terser-webpack-plugin": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", - "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "requires": { - "@jridgewell/trace-mapping": "^0.3.7", + "@jridgewell/trace-mapping": "^0.3.14", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.0", - "terser": "^5.7.2" + "terser": "^5.14.1" }, "dependencies": { "ajv": { @@ -29453,6 +29451,11 @@ "util-deprecate": "~1.0.1" } }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -29559,12 +29562,6 @@ "yn": "3.1.1" }, "dependencies": { - "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true - }, "acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", @@ -29574,9 +29571,9 @@ } }, "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "tsscmp": { "version": "1.0.6", @@ -29656,12 +29653,13 @@ "typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", - "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==" + "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", + "dev": true }, "ua-parser-js": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", - "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", + "version": "0.7.32", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", + "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", "dev": true }, "uid-safe": { @@ -29695,9 +29693,9 @@ } }, "unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true }, "unicode-properties": { @@ -29710,9 +29708,9 @@ } }, "unicode-property-aliases-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", - "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true }, "unicode-trie": { @@ -29761,9 +29759,9 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz", - "integrity": "sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", "dev": true, "requires": { "escalade": "^3.1.1", @@ -29794,12 +29792,6 @@ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, "v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -29988,19 +29980,6 @@ "webpack-sources": "^3.2.3" }, "dependencies": { - "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true - }, - "acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "dev": true, - "requires": {} - }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -30137,12 +30116,6 @@ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", "dev": true }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, "schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -30286,9 +30259,9 @@ "dev": true }, "ws": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", - "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xml2js": { @@ -30339,18 +30312,18 @@ "dev": true }, "yargs": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", - "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", "dev": true, "requires": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" + "yargs-parser": "^21.1.1" }, "dependencies": { "yargs-parser": { @@ -30380,9 +30353,9 @@ "dev": true }, "zone.js": { - "version": "0.11.7", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.7.tgz", - "integrity": "sha512-e39K2EdK5JfA3FDuUTVRvPlYV4aBfnOOcGuILhQAT7nzeV12uSrLBzImUM9CDVoncDSX4brR/gwqu0heQ3BQ0g==", + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", + "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "requires": { "tslib": "^2.3.0" } diff --git a/package.json b/package.json index 19f18d1d..e9929eb7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rtl", - "version": "0.13.1-beta", + "version": "0.13.2-beta", "license": "MIT", "type": "module", "scripts": { @@ -12,8 +12,8 @@ "buildfrontend": "ng build --configuration production", "buildbackend": "tsc --project tsconfig.json", "watchbackend": "tsc --project tsconfig.json --watch", - "server": "set NODE_ENV=development&&nodemon ./rtl.js", - "serverUbuntu": "NODE_ENV=development nodemon ./rtl.js", + "server": "set NODE_ENV=development&&nodemon --watch backend --watch server ./rtl.js", + "serverUbuntu": "NODE_ENV=development nodemon --watch backend --watch server ./rtl.js", "testdev": "ng test --watch=true --code-coverage", "test": "ng test --watch=false", "lint": "ng lint", @@ -21,21 +21,6 @@ }, "private": true, "dependencies": { - "@angular/animations": "~13.3.0", - "@angular/cdk": "^13.3.9", - "@angular/common": "~13.3.0", - "@angular/compiler": "~13.3.0", - "@angular/core": "~13.3.0", - "@angular/flex-layout": "^13.0.0-beta.38", - "@angular/forms": "~13.3.0", - "@angular/material": "^13.3.9", - "@angular/platform-browser": "~13.3.0", - "@angular/platform-browser-dynamic": "~13.3.0", - "@angular/router": "~13.3.0", - "@fortawesome/angular-fontawesome": "^0.10.2", - "@fortawesome/fontawesome-svg-core": "^6.1.2", - "@fortawesome/free-regular-svg-icons": "^6.1.2", - "@fortawesome/free-solid-svg-icons": "^6.1.2", "@ngrx/effects": "^13.2.0", "@ngrx/store": "^13.2.0", "@swimlane/ngx-charts": "^20.1.0", @@ -48,17 +33,14 @@ "hocon-parser": "^1.0.1", "ini": "^3.0.0", "jsonwebtoken": "^8.5.1", - "material-design-icons": "^3.0.1", "ng-qrcode": "^6.0.0", "ngx-perfect-scrollbar-next": "^10.1.1", "otplib": "^12.0.1", "pdfmake": "^0.2.5", "request-promise": "^4.2.6", - "roboto-fontface": "^0.10.0", "rxjs": "^7.4.0", "sha256": "^0.2.0", "tslib": "^2.3.0", - "typescript": "~4.6.2", "ws": "^8.8.1", "zone.js": "~0.11.4" }, @@ -69,8 +51,23 @@ "@angular-eslint/eslint-plugin-template": "13.0.1", "@angular-eslint/schematics": "13.0.1", "@angular-eslint/template-parser": "13.0.1", + "@angular/animations": "~13.3.0", + "@angular/cdk": "^13.3.9", "@angular/cli": "~13.3.5", + "@angular/common": "~13.3.0", + "@angular/compiler": "~13.3.0", "@angular/compiler-cli": "~13.3.0", + "@angular/core": "~13.3.0", + "@angular/flex-layout": "^13.0.0-beta.38", + "@angular/forms": "~13.3.0", + "@angular/material": "^13.3.9", + "@angular/platform-browser": "~13.3.0", + "@angular/platform-browser-dynamic": "~13.3.0", + "@angular/router": "~13.3.0", + "@fortawesome/angular-fontawesome": "^0.10.2", + "@fortawesome/fontawesome-svg-core": "^6.1.2", + "@fortawesome/free-regular-svg-icons": "^6.1.2", + "@fortawesome/free-solid-svg-icons": "^6.1.2", "@ngrx/store-devtools": "^13.0.2", "@types/jasmine": "~3.10.0", "@types/node": "^12.11.1", @@ -87,9 +84,12 @@ "karma-coverage": "~2.1.0", "karma-jasmine": "~4.0.0", "karma-jasmine-html-reporter": "~1.7.0", + "material-design-icons": "^3.0.1", "nodemon": "~2.0.19", "protractor": "~7.0.0", + "roboto-fontface": "^0.10.0", "stream-browserify": "^3.0.0", - "ts-node": "~10.9.1" + "ts-node": "~10.9.1", + "typescript": "~4.6.2" } } diff --git a/server/controllers/cln/getInfo.ts b/server/controllers/cln/getInfo.ts index 64f3c4a8..f5317931 100644 --- a/server/controllers/cln/getInfo.ts +++ b/server/controllers/cln/getInfo.ts @@ -56,7 +56,7 @@ export const getInfo = (req, res, next) => { req.session.selectedNode.ln_version = body.version || ''; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Connecting to the Core Lightning\'s Websocket Server.' }); clWsClient.updateSelectedNode(req.session.selectedNode); - databaseService.loadDatabase(req.session.selectedNode); + databaseService.loadDatabase(req.session); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Node Information Received', data: body }); return res.status(200).json(body); } diff --git a/server/controllers/cln/invoices.ts b/server/controllers/cln/invoices.ts index f5a0aaf3..32d3ce60 100644 --- a/server/controllers/cln/invoices.ts +++ b/server/controllers/cln/invoices.ts @@ -29,10 +29,6 @@ export const listInvoices = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List URL', data: options.url }); request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body }); - if (body.invoices && body.invoices.length > 0) { - body.invoices = common.sortDescByKey(body.invoices, 'expires_at'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); res.status(200).json(body); }).catch((errRes) => { const err = common.handleError(errRes, 'Invoice', 'List Invoices Error', req.session.selectedNode); diff --git a/server/controllers/cln/network.ts b/server/controllers/cln/network.ts index 3f2e6f73..81e5f1a4 100644 --- a/server/controllers/cln/network.ts +++ b/server/controllers/cln/network.ts @@ -72,8 +72,10 @@ export const listNodes = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'List Nodes Finished', data: body }); body.forEach((node) => { if (node.option_will_fund) { - node.option_will_fund.lease_fee_base_msat = (node.option_will_fund.lease_fee_base_msat && typeof node.option_will_fund.lease_fee_base_msat === 'string' && node.option_will_fund.lease_fee_base_msat.includes('msat')) ? node.option_will_fund.lease_fee_base_msat?.replace('msat', '') : node.option_will_fund.lease_fee_base_msat; - node.option_will_fund.channel_fee_max_base_msat = (node.option_will_fund.channel_fee_max_base_msat && typeof node.option_will_fund.channel_fee_max_base_msat === 'string' && node.option_will_fund.channel_fee_max_base_msat.includes('msat')) ? node.option_will_fund.channel_fee_max_base_msat?.replace('msat', '') : node.option_will_fund.channel_fee_max_base_msat; + node.option_will_fund.lease_fee_base_msat = (node.option_will_fund.lease_fee_base_msat && typeof node.option_will_fund.lease_fee_base_msat === 'string' && + node.option_will_fund.lease_fee_base_msat.includes('msat')) ? node.option_will_fund.lease_fee_base_msat?.replace('msat', '') : node.option_will_fund.lease_fee_base_msat; + node.option_will_fund.channel_fee_max_base_msat = (node.option_will_fund.channel_fee_max_base_msat && typeof node.option_will_fund.channel_fee_max_base_msat === 'string' && + node.option_will_fund.channel_fee_max_base_msat.includes('msat')) ? node.option_will_fund.channel_fee_max_base_msat?.replace('msat', '') : node.option_will_fund.channel_fee_max_base_msat; } return node; }); diff --git a/server/controllers/cln/offers.ts b/server/controllers/cln/offers.ts index 3d71dcfd..bf6c8ae0 100644 --- a/server/controllers/cln/offers.ts +++ b/server/controllers/cln/offers.ts @@ -11,11 +11,8 @@ const databaseService: DatabaseService = Database; export const listOfferBookmarks = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Getting Offer Bookmarks..' }); - databaseService.find(req.session.selectedNode, CollectionsEnum.OFFERS).then((offers: Offer[]) => { + databaseService.find(req.session.selectedNode, CollectionsEnum.OFFERS).then((offers: any) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Bookmarks Received', data: offers }); - if (offers && offers.length > 0) { - offers = common.sortDescByKey(offers, 'lastUpdatedAt'); - } res.status(200).json(offers); }).catch((errRes) => { const err = common.handleError(errRes, 'Offers', 'Offer Bookmarks Error', req.session.selectedNode); @@ -25,7 +22,7 @@ export const listOfferBookmarks = (req, res, next) => { export const deleteOfferBookmark = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Deleting Offer Bookmark..' }); - databaseService.destroy(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, req.params.offerStr).then((deleteRes) => { + databaseService.remove(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, req.params.offerStr).then((deleteRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Bookmark Deleted', data: deleteRes }); res.status(204).json(req.params.offerStr); }).catch((errRes) => { diff --git a/server/controllers/cln/onchain.ts b/server/controllers/cln/onchain.ts index 0242c788..8003be78 100644 --- a/server/controllers/cln/onchain.ts +++ b/server/controllers/cln/onchain.ts @@ -41,7 +41,6 @@ export const getUTXOs = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.ln_server_url + '/v1/listFunds'; request(options).then((body) => { - if (body.outputs) { body.outputs = common.sortDescByStrKey(body.outputs, 'status'); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Funds List Received', data: body }); res.status(200).json(body); }).catch((errRes) => { diff --git a/server/controllers/cln/payments.ts b/server/controllers/cln/payments.ts index 692ac09c..222b2db1 100644 --- a/server/controllers/cln/payments.ts +++ b/server/controllers/cln/payments.ts @@ -63,10 +63,6 @@ export const listPayments = (req, res, next) => { options.url = req.session.selectedNode.ln_server_url + '/v1/pay/listPayments'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment List Received', data: body.payments }); - if (body && body.payments && body.payments.length > 0) { - body.payments = common.sortDescByKey(body.payments, 'created_at'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sorted Payments List Received', data: body.payments }); res.status(200).json(groupBy(body.payments)); }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'List Payments Error', req.session.selectedNode); @@ -95,15 +91,21 @@ export const postPayment = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent', data: body }); if (req.body.paymentType === 'OFFER') { if (req.body.saveToDB && req.body.bolt12) { - const offerToUpdate: Offer = { bolt12: req.body.bolt12, amountmSat: (req.body.zeroAmtOffer ? 0 : req.body.amount), title: req.body.title, lastUpdatedAt: new Date(Date.now()).getTime() }; + const offerToUpdate: Offer = { bolt12: req.body.bolt12, amountMSat: (req.body.zeroAmtOffer ? 0 : req.body.amount), title: req.body.title, lastUpdatedAt: new Date(Date.now()).getTime() }; if (req.body.vendor) { offerToUpdate['vendor'] = req.body.vendor; } if (req.body.description) { offerToUpdate['description'] = req.body.description; } - return databaseService.update(req.session.selectedNode, CollectionsEnum.OFFERS, offerToUpdate, CollectionFieldsEnum.BOLT12, req.body.bolt12).then((updatedOffer) => { - logger.log({ level: 'DEBUG', fileName: 'Offer', msg: 'Offer Updated', data: updatedOffer }); - return res.status(201).json({ paymentResponse: body, saveToDBResponse: updatedOffer }); - }).catch((errDB) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Payments', msg: 'Offer DB update error', error: errDB }); - return res.status(201).json({ paymentResponse: body, saveToDBError: errDB }); + // eslint-disable-next-line arrow-body-style + return databaseService.validateDocument(CollectionsEnum.OFFERS, offerToUpdate).then((validated) => { + return databaseService.update(req.session.selectedNode, CollectionsEnum.OFFERS, offerToUpdate, CollectionFieldsEnum.BOLT12, req.body.bolt12).then((updatedOffer) => { + logger.log({ level: 'DEBUG', fileName: 'Payments', msg: 'Offer Updated', data: updatedOffer }); + return res.status(201).json({ paymentResponse: body, saveToDBResponse: updatedOffer }); + }).catch((errDB) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Payments', msg: 'Offer DB update error', error: errDB }); + return res.status(201).json({ paymentResponse: body, saveToDBError: errDB }); + }); + }).catch((errValidation) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Payments', msg: 'Offer DB validation error', error: errValidation }); + return res.status(201).json({ paymentResponse: body, saveToDBError: errValidation }); }); } else { return res.status(201).json({ paymentResponse: body, saveToDBResponse: 'NA' }); diff --git a/server/controllers/cln/peers.ts b/server/controllers/cln/peers.ts index 5229a6ec..fb247b9b 100644 --- a/server/controllers/cln/peers.ts +++ b/server/controllers/cln/peers.ts @@ -16,9 +16,8 @@ export const getPeers = (req, res, next) => { peer.alias = peer.id.substring(0, 20); } }); - const peers = (body) ? common.sortDescByStrKey(body, 'alias') : []; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers with Alias Received', data: peers }); - res.status(200).json(peers); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers with Alias Received', data: body }); + res.status(200).json(body || []); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); @@ -31,12 +30,11 @@ export const postPeer = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.ln_server_url + '/v1/peer/connect'; options.body = req.body; - request.post(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: body }); + request.post(options).then((connectRes) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: connectRes }); options.url = req.session.selectedNode.ln_server_url + '/v1/peer/listPeers'; - request(options).then((body) => { - let peers = (body) ? common.sortDescByStrKey(body, 'alias') : []; - peers = common.newestOnTop(peers, 'id', req.body.id); + request(options).then((listPeersRes) => { + const peers = listPeersRes ? common.newestOnTop(listPeersRes, 'id', req.body.id) : []; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); res.status(201).json(peers); }).catch((errRes) => { diff --git a/server/controllers/eclair/channels.ts b/server/controllers/eclair/channels.ts index c4d03c4f..15e3c89e 100644 --- a/server/controllers/eclair/channels.ts +++ b/server/controllers/eclair/channels.ts @@ -15,10 +15,10 @@ export const simplifyAllChannels = (selNode: CommonSelectedNode, channels) => { nodeId: channel.nodeId ? channel.nodeId : '', channelId: channel.channelId ? channel.channelId : '', state: channel.state ? channel.state : '', - channelFlags: channel.data && channel.data.commitments && channel.data.commitments.channelFlags ? channel.data.commitments.channelFlags : 0, + announceChannel: channel.data && channel.data.commitments && channel.data.commitments.channelFlags && channel.data.commitments.channelFlags.announceChannel ? channel.data.commitments.channelFlags.announceChannel : false, toLocal: (channel.data.commitments.localCommit.spec.toLocal) ? Math.round(+channel.data.commitments.localCommit.spec.toLocal / 1000) : 0, toRemote: (channel.data.commitments.localCommit.spec.toRemote) ? Math.round(+channel.data.commitments.localCommit.spec.toRemote / 1000) : 0, - shortChannelId: channel.data && channel.data.shortChannelId ? channel.data.shortChannelId : '', + shortChannelId: channel.data && channel.data.channelUpdate && channel.data.channelUpdate.shortChannelId ? channel.data.channelUpdate.shortChannelId : '', isFunder: channel.data && channel.data.commitments && channel.data.commitments.localParams && channel.data.commitments.localParams.isFunder ? channel.data.commitments.localParams.isFunder : false, buried: channel.data && channel.data.buried ? channel.data.buried : false, feeBaseMsat: channel.data && channel.data.channelUpdate && channel.data.channelUpdate.feeBaseMsat ? channel.data.channelUpdate.feeBaseMsat : 0, diff --git a/server/controllers/eclair/fees.ts b/server/controllers/eclair/fees.ts index f4cecf53..c67d14d7 100644 --- a/server/controllers/eclair/fees.ts +++ b/server/controllers/eclair/fees.ts @@ -72,9 +72,6 @@ export const arrangePayments = (selNode: CommonSelectedNode, body) => { if (relayedEle.amountIn) { relayedEle.amountIn = Math.round(relayedEle.amountIn / 1000); } if (relayedEle.amountOut) { relayedEle.amountOut = Math.round(relayedEle.amountOut / 1000); } }); - payments.sent = common.sortDescByKey(payments.sent, 'firstPartTimestamp'); - payments.received = common.sortDescByKey(payments.received, 'firstPartTimestamp'); - payments.relayed = common.sortDescByKey(payments.relayed, 'timestamp'); logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Fees', msg: 'Arranged Payments Received', data: payments }); return payments; }; diff --git a/server/controllers/eclair/getInfo.ts b/server/controllers/eclair/getInfo.ts index 1707d178..2a99627c 100644 --- a/server/controllers/eclair/getInfo.ts +++ b/server/controllers/eclair/getInfo.ts @@ -36,11 +36,11 @@ export const getInfo = (req, res, next) => { body.lnImplementation = 'Eclair'; req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; eclWsClient.updateSelectedNode(req.session.selectedNode); - databaseService.loadDatabase(req.session.selectedNode); + databaseService.loadDatabase(req.session); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Node Information Received', data: body }); return res.status(200).json(body); }).catch((errRes) => { - const err = common.handleError(errRes, 'GetInfo', 'Get Info Error', req); + const err = common.handleError(errRes, 'GetInfo', 'Get Info Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); } diff --git a/server/controllers/eclair/invoices.ts b/server/controllers/eclair/invoices.ts index 25b9bf2e..94067937 100644 --- a/server/controllers/eclair/invoices.ts +++ b/server/controllers/eclair/invoices.ts @@ -67,10 +67,7 @@ export const listInvoices = (req, res, next) => { const invoices = (!body[0] || body[0].length <= 0) ? [] : body[0]; pendingInvoices = (!body[1] || body[1].length <= 0) ? [] : body[1]; return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.ln_server_url, invoice))). - then((values) => { - body = common.sortDescByKey(invoices, 'expiresAt'); - return res.status(200).json(invoices); - }); + then((values) => res.status(200).json(invoices)); }); } else { return Promise.all([request(options1), request(options2)]). @@ -81,7 +78,6 @@ export const listInvoices = (req, res, next) => { if (invoices && invoices.length > 0) { return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.ln_server_url, invoice))). then((values) => { - body = common.sortDescByKey(invoices, 'expiresAt'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Sorted Invoices List Received', data: invoices }); return res.status(200).json(invoices); }). diff --git a/server/controllers/eclair/onchain.ts b/server/controllers/eclair/onchain.ts index 03e38cc1..a431e8f8 100644 --- a/server/controllers/eclair/onchain.ts +++ b/server/controllers/eclair/onchain.ts @@ -59,7 +59,6 @@ export const getTransactions = (req, res, next) => { }; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Getting On Chain Transactions Options', data: options.form }); request.post(options).then((body) => { - if (body && body.length > 0) { body = common.sortDescByKey(body, 'timestamp'); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'On Chain Transactions Received', data: body }); res.status(200).json(body); }).catch((errRes) => { diff --git a/server/controllers/eclair/peers.ts b/server/controllers/eclair/peers.ts index 88996101..78dcfc0b 100644 --- a/server/controllers/eclair/peers.ts +++ b/server/controllers/eclair/peers.ts @@ -37,7 +37,6 @@ export const getPeers = (req, res, next) => { peer.alias = foundPeer ? foundPeer.alias : peer.nodeId.substring(0, 20); return peer; }); - body = common.sortDescByStrKey(body, 'alias'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body }); res.status(200).json(body); }); @@ -87,8 +86,7 @@ export const connectPeer = (req, res, next) => { peer.alias = foundPeer ? foundPeer.alias : peer.nodeId.substring(0, 20); return peer; }); - let peers = (body) ? common.sortDescByStrKey(body, 'alias') : []; - peers = common.newestOnTop(peers, 'nodeId', req.query.nodeId ? req.query.nodeId : req.query.uri ? req.query.uri.substring(0, req.query.uri.indexOf('@')) : ''); + const peers = common.newestOnTop(body || [], 'nodeId', req.query.nodeId ? req.query.nodeId : req.query.uri ? req.query.uri.substring(0, req.query.uri.indexOf('@')) : ''); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); res.status(201).json(peers); }); diff --git a/server/controllers/lnd/channels.ts b/server/controllers/lnd/channels.ts index 5eda1bbd..c9dd27a7 100644 --- a/server/controllers/lnd/channels.ts +++ b/server/controllers/lnd/channels.ts @@ -11,11 +11,11 @@ export const getAliasForChannel = (selNode: CommonSelectedNode, channel) => { options.url = selNode.ln_server_url + '/v1/graph/node/' + pubkey; return request(options).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Alias Received', data: aliasBody.node.alias }); - channel.remote_alias = aliasBody.node.alias; - return aliasBody.node.alias; + channel.remote_alias = aliasBody.node.alias && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); + return channel; }).catch((err) => { - channel.remote_alias = pubkey.slice(0, 10) + '...' + pubkey.slice(-10); - return pubkey; + channel.remote_alias = pubkey.slice(0, 20); + return channel; }); }; @@ -40,7 +40,6 @@ export const getAllChannels = (req, res, next) => { return getAliasForChannel(req.session.selectedNode, channel); }) ).then((values) => { - body.channels = common.sortDescByKey(body.channels, 'balancedness'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); return res.status(200).json(body); }).catch((errRes) => { @@ -72,12 +71,12 @@ export const getPendingChannels = (req, res, next) => { if (body.pending_open_channels && body.pending_open_channels.length > 0) { body.pending_open_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } - if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); - } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { body.pending_force_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } + if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { + body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { body.waiting_close_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); } @@ -109,7 +108,6 @@ export const getClosedChannels = (req, res, next) => { return getAliasForChannel(req.session.selectedNode, channel); }) ).then((values) => { - body.channels = common.sortDescByKey(body.channels, 'close_height'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); return res.status(200).json(body); }).catch((errRes) => { @@ -156,7 +154,7 @@ export const postTransactions = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sending Payment..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/transactions'; + options.url = req.session.selectedNode.ln_server_url + '/v1/channels/transaction-stream'; options.form = { payment_request: req.body.paymentReq }; if (req.body.paymentAmount) { options.form.amt = req.body.paymentAmount; diff --git a/server/controllers/lnd/getInfo.ts b/server/controllers/lnd/getInfo.ts index fdaaedab..386b503b 100644 --- a/server/controllers/lnd/getInfo.ts +++ b/server/controllers/lnd/getInfo.ts @@ -40,7 +40,7 @@ export const getInfo = (req, res, next) => { } else { req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; lndWsClient.updateSelectedNode(req.session.selectedNode); - databaseService.loadDatabase(req.session.selectedNode); + databaseService.loadDatabase(req.session); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Node Information Received', data: body }); return res.status(200).json(body); } diff --git a/server/controllers/lnd/graph.ts b/server/controllers/lnd/graph.ts index 4ed5289c..cb98cbd3 100644 --- a/server/controllers/lnd/graph.ts +++ b/server/controllers/lnd/graph.ts @@ -12,7 +12,7 @@ export const getAliasFromPubkey = (selNode: CommonSelectedNode, pubkey) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; }). - catch((err) => pubkey.substring(0, 17) + '...'); + catch((err) => pubkey.substring(0, 20)); }; export const getDescribeGraph = (req, res, next) => { diff --git a/server/controllers/lnd/invoices.ts b/server/controllers/lnd/invoices.ts index bcb2f92c..9db033ec 100644 --- a/server/controllers/lnd/invoices.ts +++ b/server/controllers/lnd/invoices.ts @@ -44,7 +44,6 @@ export const listInvoices = (req, res, next) => { invoice.r_hash = invoice.r_hash ? Buffer.from(invoice.r_hash, 'base64').toString('hex') : ''; invoice.description_hash = invoice.description_hash ? Buffer.from(invoice.description_hash, 'base64').toString('hex') : null; }); - body.invoices = common.sortDescByKey(body.invoices, 'creation_date'); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); res.status(200).json(body); @@ -59,17 +58,7 @@ export const addInvoice = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.ln_server_url + '/v1/invoices'; - options.form = { - memo: req.body.memo, - private: req.body.private, - expiry: req.body.expiry - }; - if (req.body.amount > 0 && req.body.amount < 1) { - options.form.value_msat = req.body.amount * 1000; - } else { - options.form.value = req.body.amount; - } - options.form = JSON.stringify(options.form); + options.form = JSON.stringify(req.body); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Added', data: body }); try { diff --git a/server/controllers/lnd/payments.ts b/server/controllers/lnd/payments.ts index 11ebb78a..6122bbdd 100644 --- a/server/controllers/lnd/payments.ts +++ b/server/controllers/lnd/payments.ts @@ -57,10 +57,6 @@ export const getPayments = (req, res, next) => { options.url = req.session.selectedNode.ln_server_url + '/v1/payments?max_payments=' + req.query.max_payments + '&index_offset=' + req.query.index_offset + '&reversed=' + req.query.reversed; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment List Received', data: body }); - if (body.payments && body.payments.length > 0) { - body.payments = common.sortDescByKey(body.payments, 'creation_date'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sorted Payments List Received', data: body }); res.status(200).json(body); }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'List Payments Error', req.session.selectedNode); diff --git a/server/controllers/lnd/peers.ts b/server/controllers/lnd/peers.ts index a40bddfe..af6e46c8 100644 --- a/server/controllers/lnd/peers.ts +++ b/server/controllers/lnd/peers.ts @@ -13,7 +13,7 @@ export const getAliasForPeers = (selNode: CommonSelectedNode, peer) => { peer.alias = aliasBody.node.alias; return aliasBody.node.alias; }).catch((err) => { - peer.alias = peer.pub_key.slice(0, 10) + '...' + peer.pub_key.slice(-10); + peer.alias = peer.pub_key.slice(0, 20); return peer.pub_key; }); }; @@ -27,10 +27,6 @@ export const getPeers = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers with Alias before Sort', data: body }); - if (body.peers) { - body.peers = common.sortDescByStrKey(body.peers, 'alias'); - } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); res.status(200).json(body.peers); }); @@ -56,7 +52,6 @@ export const postPeer = (req, res, next) => { const peers = (!body.peers) ? [] : body.peers; return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { if (body.peers) { - body.peers = common.sortDescByStrKey(body.peers, 'alias'); body.peers = common.newestOnTop(body.peers, 'pub_key', req.body.pubkey); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); } diff --git a/server/controllers/lnd/switch.ts b/server/controllers/lnd/switch.ts index 04477887..6d634e9f 100644 --- a/server/controllers/lnd/switch.ts +++ b/server/controllers/lnd/switch.ts @@ -40,9 +40,6 @@ export const getAllForwardingEvents = (req, start, end, offset, caller, callback } if (!body.last_offset_index || body.last_offset_index < offset + num_max_events) { responseData[caller].last_offset_index = body.last_offset_index ? body.last_offset_index : 0; - if (responseData[caller].forwarding_events) { - responseData[caller].forwarding_events = common.sortDescByKey(responseData[caller].forwarding_events, 'timestamp'); - } return callback(responseData[caller]); } else { return getAllForwardingEvents(req, start, end, offset + num_max_events, caller, callback); diff --git a/server/controllers/lnd/transactions.ts b/server/controllers/lnd/transactions.ts index 65f400d9..688ddb78 100644 --- a/server/controllers/lnd/transactions.ts +++ b/server/controllers/lnd/transactions.ts @@ -12,10 +12,6 @@ export const getTransactions = (req, res, next) => { options.url = req.session.selectedNode.ln_server_url + '/v1/transactions'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Transactions', msg: 'Transactions List Received', data: body }); - if (body.transactions && body.transactions.length > 0) { - body.transactions = common.sortDescByKey(body.transactions, 'time_stamp'); - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Transactions', msg: 'Sorted Transactions List Received', data: body.transactions }); res.status(200).json(body.transactions); }).catch((errRes) => { const err = common.handleError(errRes, 'Transactions', 'List Transactions Error', req.session.selectedNode); diff --git a/server/controllers/shared/RTLConf.ts b/server/controllers/shared/RTLConf.ts index 4dca8407..03347624 100644 --- a/server/controllers/shared/RTLConf.ts +++ b/server/controllers/shared/RTLConf.ts @@ -22,7 +22,7 @@ export const updateSelectedNode = (req, res, next) => { if (req.headers && req.headers.authorization && req.headers.authorization !== '') { wsServer.updateLNWSClientDetails(req.session.id, +req.session.selectedNode.index, +req.params.prevNodeIndex); if (req.params.prevNodeIndex !== -1) { - databaseService.unloadDatabase(req.params.prevNodeIndex); + databaseService.unloadDatabase(req.params.prevNodeIndex, req.session.id); } } const responseVal = !req.session.selectedNode.ln_node ? '' : req.session.selectedNode.ln_node; @@ -51,10 +51,11 @@ export const getRTLConfigInitial = (req, res, next) => { const nodesArr = []; if (common.nodes && common.nodes.length > 0) { common.nodes.forEach((node, i) => { - const settings: NodeSettingsConfiguration = {}; + const settings: NodeSettingsConfiguration = { unannouncedChannels: false }; settings.userPersona = node.user_persona ? node.user_persona : 'MERCHANT'; settings.themeMode = (node.theme_mode) ? node.theme_mode : 'DAY'; settings.themeColor = (node.theme_color) ? node.theme_color : 'PURPLE'; + settings.unannouncedChannels = !!node.unannounced_channels || false; settings.fiatConversion = (node.fiat_conversion) ? !!node.fiat_conversion : false; settings.currencyUnit = node.currency_unit; nodesArr.push({ @@ -98,10 +99,11 @@ export const getRTLConfig = (req, res, next) => { authentication.configPath = (node.config_path) ? node.config_path : ''; authentication.swapMacaroonPath = (node.swap_macaroon_path) ? node.swap_macaroon_path : ''; authentication.boltzMacaroonPath = (node.boltz_macaroon_path) ? node.boltz_macaroon_path : ''; - const settings: NodeSettingsConfiguration = {}; + const settings: NodeSettingsConfiguration = { unannouncedChannels: false }; settings.userPersona = node.user_persona ? node.user_persona : 'MERCHANT'; settings.themeMode = (node.theme_mode) ? node.theme_mode : 'DAY'; settings.themeColor = (node.theme_color) ? node.theme_color : 'PURPLE'; + settings.unannouncedChannels = !!node.unannounced_channels || false; settings.fiatConversion = (node.fiat_conversion) ? !!node.fiat_conversion : false; settings.bitcoindConfigPath = node.bitcoind_config_path; settings.logLevel = node.log_level ? node.log_level : 'ERROR'; @@ -109,6 +111,7 @@ export const getRTLConfig = (req, res, next) => { settings.swapServerUrl = node.swap_server_url; settings.boltzServerUrl = node.boltz_server_url; settings.enableOffers = node.enable_offers; + settings.enablePeerswap = node.enable_peerswap; settings.channelBackupPath = node.channel_backup_path; settings.currencyUnit = node.currency_unit; nodesArr.push({ @@ -136,6 +139,7 @@ export const updateUISettings = (req, res, next) => { node.Settings.userPersona = req.body.updatedSettings.userPersona; node.Settings.themeMode = req.body.updatedSettings.themeMode; node.Settings.themeColor = req.body.updatedSettings.themeColor; + node.Settings.unannouncedChannels = req.body.updatedSettings.unannouncedChannels; node.Settings.fiatConversion = req.body.updatedSettings.fiatConversion; if (req.body.updatedSettings.fiatConversion) { node.Settings.currencyUnit = req.body.updatedSettings.currencyUnit ? req.body.updatedSettings.currencyUnit : 'USD'; @@ -146,6 +150,7 @@ export const updateUISettings = (req, res, next) => { selectedNode.user_persona = req.body.updatedSettings.userPersona; selectedNode.theme_mode = req.body.updatedSettings.themeMode; selectedNode.theme_color = req.body.updatedSettings.themeColor; + selectedNode.unannounced_channels = req.body.updatedSettings.unannouncedChannels; selectedNode.fiat_conversion = req.body.updatedSettings.fiatConversion; if (req.body.updatedSettings.fiatConversion) { selectedNode.currency_unit = req.body.updatedSettings.currencyUnit ? req.body.updatedSettings.currencyUnit : 'USD'; @@ -240,7 +245,7 @@ export const getConfig = (req, res, next) => { if (jsonConfig['Application Options'] && jsonConfig['Application Options'].color) { jsonConfig['Application Options'].color = '#' + jsonConfig['Application Options'].color; } - if (req.session.selectedNode.ln_implementation === 'ECL' && !jsonConfig['eclair.api.password']) { + if (req.params.nodeType === 'ln' && req.session.selectedNode.ln_implementation === 'ECL' && !jsonConfig['eclair.api.password']) { fileFormat = 'HOCON'; jsonConfig = parseHocon(data); } @@ -306,7 +311,7 @@ export const updateServiceSettings = (req, res, next) => { const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); const selectedNode = common.findNode(req.session.selectedNode.index); - config.nodes.find((node) => { + config.nodes.forEach((node) => { if (node.index === req.session.selectedNode.index) { switch (req.body.service) { case 'LOOP': @@ -342,6 +347,11 @@ export const updateServiceSettings = (req, res, next) => { selectedNode.enable_offers = req.body.settings.enableOffers; break; + case 'PEERSWAP': + node.Settings.enablePeerswap = req.body.settings.enablePeerswap; + selectedNode.enable_peerswap = req.body.settings.enablePeerswap; + break; + default: break; } @@ -370,7 +380,8 @@ export const maskPasswords = (obj) => { } if (typeof keys[i] === 'string' && (keys[i].toLowerCase().includes('password') || keys[i].toLowerCase().includes('multipass') || - keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword')) + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser')) ) { obj[keys[i]] = '********************'; } diff --git a/server/controllers/shared/authenticate.ts b/server/controllers/shared/authenticate.ts index b161b3f5..1275ae48 100644 --- a/server/controllers/shared/authenticate.ts +++ b/server/controllers/shared/authenticate.ts @@ -120,7 +120,7 @@ export const resetPassword = (req, res, next) => { export const logoutUser = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Logged out' }); if (req.session.selectedNode && req.session.selectedNode.index) { - databaseService.unloadDatabase(+req.session.selectedNode.index); + databaseService.unloadDatabase(+req.session.selectedNode.index, req.session.id); } req.session.destroy((err) => { res.clearCookie('connect.sid'); diff --git a/server/controllers/shared/loop.ts b/server/controllers/shared/loop.ts index 84d8953b..ab13fa5a 100644 --- a/server/controllers/shared/loop.ts +++ b/server/controllers/shared/loop.ts @@ -219,10 +219,6 @@ export const swaps = (req, res, next) => { options.url = options.url + '/v1/loop/swaps'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Loop', msg: 'Loop Swaps Received', data: body }); - if (body.swaps && body.swaps.length > 0) { - body.swaps = common.sortDescByKey(body.swaps, 'initiation_time'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Sorted Loop Swaps List Received', data: body }); - } res.status(200).json(body.swaps); }).catch((errRes) => { const err = common.handleError(errRes, 'Loop', 'List Swaps Error', req.session.selectedNode); diff --git a/server/controllers/shared/pageSettings.ts b/server/controllers/shared/pageSettings.ts new file mode 100644 index 00000000..acf05a7f --- /dev/null +++ b/server/controllers/shared/pageSettings.ts @@ -0,0 +1,36 @@ +import { Database, DatabaseService } from '../../utils/database.js'; +import { Logger, LoggerService } from '../../utils/logger.js'; +import { Common, CommonService } from '../../utils/common.js'; +import { CollectionsEnum, PageSettings } from '../../models/database.model.js'; + +const logger: LoggerService = Logger; +const common: CommonService = Common; +const databaseService: DatabaseService = Database; + +export const getPageSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Getting Page Settings..' }); + databaseService.find(req.session.selectedNode, CollectionsEnum.PAGE_SETTINGS).then((settings: PageSettings) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Page Settings Received', data: settings }); + res.status(200).json(settings); + }).catch((errRes) => { + const err = common.handleError(errRes, 'Page Settings', 'Page Settings Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; + +export const savePageSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Saving Page Settings..' }); + // eslint-disable-next-line arrow-body-style + return Promise.all(req.body.map((page) => databaseService.validateDocument(CollectionsEnum.PAGE_SETTINGS, page))).then((values) => { + return databaseService.insert(req.session.selectedNode, CollectionsEnum.PAGE_SETTINGS, req.body).then((insertRes) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Page Settings', msg: 'Page Settings Updated', data: insertRes }); + res.status(201).json(insertRes); + }).catch((insertErrRes) => { + const err = common.handleError(insertErrRes, 'Page Settings', 'Page Settings Update Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); + }).catch((errRes) => { + const err = common.handleError(errRes, 'Page Settings', 'Page Settings Validation Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; diff --git a/server/models/config.model.ts b/server/models/config.model.ts index 45cb15e9..ab0f00f0 100644 --- a/server/models/config.model.ts +++ b/server/models/config.model.ts @@ -21,11 +21,13 @@ export class CommonSelectedNode { public user_persona?: string, public theme_mode?: string, public theme_color?: string, + public unannounced_channels?: boolean, public fiat_conversion?: boolean, public currency_unit?: string, public ln_version?: string, public api_version?: string, - public enable_offers?: boolean + public enable_offers?: boolean, + public enable_peerswap?: boolean ) { } } @@ -46,6 +48,7 @@ export class NodeSettingsConfiguration { public userPersona?: string, public themeMode?: string, public themeColor?: string, + public unannouncedChannels?: boolean, public fiatConversion?: boolean, public currencyUnit?: string, public bitcoindConfigPath?: string, @@ -54,7 +57,8 @@ export class NodeSettingsConfiguration { public swapServerUrl?: string, public boltzServerUrl?: string, public channelBackupPath?: string, - public enableOffers?: boolean + public enableOffers?: boolean, + public enablePeerswap?: boolean ) { } } diff --git a/server/models/database.model.ts b/server/models/database.model.ts index 388bbb81..27fbdf5d 100644 --- a/server/models/database.model.ts +++ b/server/models/database.model.ts @@ -1,26 +1,16 @@ -export enum CollectionsEnum { - OFFERS = 'Offers' -} - -export type Collections = { - Offers: Offer[]; -} - export enum OfferFieldsEnum { BOLT12 = 'bolt12', - AMOUNTMSAT = 'amountmSat', + AMOUNTMSAT = 'amountMSat', TITLE = 'title', VENDOR = 'vendor', DESCRIPTION = 'description' } -export const CollectionFieldsEnum = { ...OfferFieldsEnum }; - export class Offer { constructor( public bolt12: string, - public amountmSat: number, + public amountMSat: number, public title: string, public vendor?: string, public description?: string, @@ -29,18 +19,138 @@ export class Offer { } +export const validateDocument = (collectionName: CollectionsEnum, documentToValidate: any): any => { + switch (collectionName) { + case CollectionsEnum.OFFERS: + return validateOffer(documentToValidate); + case CollectionsEnum.PAGE_SETTINGS: + return validatePageSettings(documentToValidate); + default: + return ({ isValid: false, error: 'Collection does not exist' }); + } +}; + export const validateOffer = (documentToValidate): any => { if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.BOLT12)) { - return ({ isValid: false, error: CollectionFieldsEnum.BOLT12 + 'is mandatory.' }); + return ({ isValid: false, error: 'Bolt12 is mandatory.' }); } if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.AMOUNTMSAT)) { - return ({ isValid: false, error: CollectionFieldsEnum.AMOUNTMSAT + 'is mandatory.' }); + return ({ isValid: false, error: 'Amount mSat is mandatory.' }); } if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.TITLE)) { - return ({ isValid: false, error: CollectionFieldsEnum.TITLE + 'is mandatory.' }); + return ({ isValid: false, error: 'Title is mandatory.' }); } if ((typeof documentToValidate[CollectionFieldsEnum.AMOUNTMSAT] !== 'number')) { - return ({ isValid: false, error: CollectionFieldsEnum.AMOUNTMSAT + 'should be a number.' }); + return ({ isValid: false, error: 'Amount mSat should be a number.' }); } return ({ isValid: true }); }; + +export enum SortOrderEnum { + ASCENDING = 'asc', + DESCENDING = 'desc' +} + +export enum PageSettingsFieldsEnum { + PAGE_ID = 'pageId', + TABLES = 'tables' +} + +export enum TableSettingsFieldsEnum { + TABLE_ID = 'tableId', + RECORDS_PER_PAGE = 'recordsPerPage', + SORT_BY = 'sortBy', + SORT_ORDER = 'sortOrder', + COLUMN_SELECTION = 'columnSelection', + COLUMN_SELECTION_SM = 'columnSelectionSM' +} + +export class TableSetting { + + constructor( + public tableId: string, + public recordsPerPage?: number, + public sortBy?: string, + public sortOrder?: SortOrderEnum, + public columnSelection?: any[] + ) { } + +} + +export class PageSettings { + + constructor( + public pageId: string, + public tables: TableSetting[] + ) { } + +} + +export const validatePageSettings = (documentToValidate): any => { + let errorMessages = ''; + if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.PAGE_ID)) { + errorMessages = errorMessages + 'Page ID is mandatory.'; + } + if (!documentToValidate.hasOwnProperty(CollectionFieldsEnum.TABLES)) { + errorMessages = errorMessages + 'Tables is mandatory.'; + } + const tablesMessages = documentToValidate.tables.reduce((tableAcc, table: TableSetting, tableIdx) => { + let errMsg = ''; + if (!table.hasOwnProperty(CollectionFieldsEnum.TABLE_ID)) { + errMsg = errMsg + 'Table ID is mandatory.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.SORT_BY)) { + errMsg = errMsg + 'Sort By is mandatory.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.SORT_ORDER)) { + errMsg = errMsg + 'Sort Order is mandatory.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.COLUMN_SELECTION_SM)) { + errMsg = errMsg + 'Column Selection (Mobile Resolution) is mandatory.'; + } + if (table[CollectionFieldsEnum.COLUMN_SELECTION_SM].length < 1) { + errMsg = errMsg + 'Column Selection (Mobile Resolution) should have at least 1 field.'; + } + if (table[CollectionFieldsEnum.COLUMN_SELECTION_SM].length > 3) { + errMsg = errMsg + 'Column Selection (Mobile Resolution) should have maximum 3 fields.'; + } + if (!table.hasOwnProperty(CollectionFieldsEnum.COLUMN_SELECTION)) { + errMsg = errMsg + 'Column Selection (Desktop Resolution) is mandatory.'; + } + if (table[CollectionFieldsEnum.COLUMN_SELECTION].length < 2) { + errMsg = errMsg + 'Column Selection (Desktop Resolution) should have at least 2 fields.'; + } + if (errMsg.trim() !== '') { + tableAcc.push({ table: (table.hasOwnProperty(CollectionFieldsEnum.TABLE_ID) ? table[CollectionFieldsEnum.TABLE_ID] : (tableIdx + 1)), message: errMsg }); + } + return tableAcc; + }, []); + if (errorMessages.trim() === '' && tablesMessages.length === 0) { + return ({ isValid: true }); + } else { + const errObj = { page: (documentToValidate.hasOwnProperty(CollectionFieldsEnum.PAGE_ID) ? documentToValidate[CollectionFieldsEnum.PAGE_ID] : 'Unknown') }; + if (errorMessages.trim() !== '') { + errObj['message'] = errorMessages; + } + if (tablesMessages.length && tablesMessages.length > 0) { + errObj['tables'] = tablesMessages; + } + return ({ isValid: false, error: JSON.stringify(errObj) }); + } +}; + +export enum CollectionsEnum { + OFFERS = 'Offers', + PAGE_SETTINGS = 'PageSettings' +} + +export type Collections = { + Offers: Offer[]; + PageSettings: PageSettings[]; +} + +export const CollectionFieldsEnum = { ...OfferFieldsEnum, ...PageSettingsFieldsEnum, ...TableSettingsFieldsEnum }; + +export const LNDCollection = [CollectionsEnum.PAGE_SETTINGS]; +export const ECLCollection = [CollectionsEnum.PAGE_SETTINGS]; +export const CLNCollection = [CollectionsEnum.PAGE_SETTINGS, CollectionsEnum.OFFERS]; diff --git a/server/routes/shared/index.ts b/server/routes/shared/index.ts index fce3c789..234153f9 100644 --- a/server/routes/shared/index.ts +++ b/server/routes/shared/index.ts @@ -4,6 +4,7 @@ import authenticateRoutes from './authenticate.js'; import boltzRoutes from './boltz.js'; import loopRoutes from './loop.js'; import RTLConfRoutes from './RTLConf.js'; +import pageSettingsRoutes from './pageSettings.js'; const router = Router(); @@ -11,7 +12,8 @@ const sharedRoutes = [ { path: '/authenticate', route: authenticateRoutes }, { path: '/boltz', route: boltzRoutes }, { path: '/loop', route: loopRoutes }, - { path: '/conf', route: RTLConfRoutes } + { path: '/conf', route: RTLConfRoutes }, + { path: '/pagesettings', route: pageSettingsRoutes } ]; sharedRoutes.forEach((route) => { diff --git a/server/routes/shared/pageSettings.ts b/server/routes/shared/pageSettings.ts new file mode 100644 index 00000000..dc2ccc56 --- /dev/null +++ b/server/routes/shared/pageSettings.ts @@ -0,0 +1,11 @@ +import exprs from 'express'; +const { Router } = exprs; +import { isAuthenticated } from '../../utils/authCheck.js'; +import { getPageSettings, savePageSettings } from '../../controllers/shared/pageSettings.js'; + +const router = Router(); + +router.get('/', isAuthenticated, getPageSettings); +router.post('/', isAuthenticated, savePageSettings); + +export default router; diff --git a/server/utils/app.ts b/server/utils/app.ts index e4751145..8a712788 100644 --- a/server/utils/app.ts +++ b/server/utils/app.ts @@ -63,13 +63,14 @@ export class ExpressApplication { this.app.use(this.common.baseHref + '/api/ecl', eclRoutes); this.app.use(this.common.baseHref, express.static(join(this.directoryName, '../..', 'frontend'))); this.app.use((req: any, res, next) => { - // For Angular App - res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); - // For JQuery Browser Plugin - res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); + res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); // RTL Angular Frontend + res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : ''); // RTL Quickpay JQuery res.sendFile(join(this.directoryName, '../..', 'frontend', 'index.html')); }); - this.app.use((err, req, res, next) => this.handleApplicationErrors(err, res)); + this.app.use((err, req, res, next) => { + this.handleApplicationErrors(err, res); + next(); + }); this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; diff --git a/server/utils/common.ts b/server/utils/common.ts index 52c1b10a..8b8f9147 100644 --- a/server/utils/common.ts +++ b/server/utils/common.ts @@ -26,7 +26,10 @@ export class CommonService { public read_dummy_data = false; public baseHref = '/rtl'; private dummy_data_array_from_file = []; - private MONTHS = [{ name: 'JAN', days: 31 }, { name: 'FEB', days: 28 }, { name: 'MAR', days: 31 }, { name: 'APR', days: 30 }, { name: 'MAY', days: 31 }, { name: 'JUN', days: 30 }, { name: 'JUL', days: 31 }, { name: 'AUG', days: 31 }, { name: 'SEP', days: 30 }, { name: 'OCT', days: 31 }, { name: 'NOV', days: 30 }, { name: 'DEC', days: 31 }]; + private MONTHS = [ + { name: 'JAN', days: 31 }, { name: 'FEB', days: 28 }, { name: 'MAR', days: 31 }, { name: 'APR', days: 30 }, { name: 'MAY', days: 31 }, { name: 'JUN', days: 30 }, + { name: 'JUL', days: 31 }, { name: 'AUG', days: 31 }, { name: 'SEP', days: 30 }, { name: 'OCT', days: 31 }, { name: 'NOV', days: 30 }, { name: 'DEC', days: 31 } + ]; constructor() { } @@ -268,18 +271,28 @@ export class CommonService { break; } this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: fileName, msg: errMsg, error: (typeof err === 'object' ? JSON.stringify(err) : (typeof err === 'string') ? err : 'Unknown Error') }); - const newErrorObj = { - statusCode: err.statusCode ? err.statusCode : err.status ? err.status : (err.error && err.error.code && err.error.code === 'ECONNREFUSED') ? 503 : 500, - message: (err.error && err.error.message) ? err.error.message : err.message ? err.message : errMsg, - error: ( - (err.error && err.error.error && err.error.error.error && typeof err.error.error.error === 'string') ? err.error.error.error : - (err.error && err.error.error && typeof err.error.error === 'string') ? err.error.error : - (err.error && err.error.error && err.error.error.message && typeof err.error.error.message === 'string') ? err.error.error.message : - (err.error && err.error.message && typeof err.error.message === 'string') ? err.error.message : - (err.error && typeof err.error === 'string') ? err.error : - (err.message && typeof err.message === 'string') ? err.message : (typeof err === 'string') ? err : 'Unknown Error' - ) - }; + let newErrorObj = { statusCode: 500, message: '', error: '' }; + if (err.code && err.code === 'ENOENT') { + newErrorObj = { + statusCode: 500, + message: 'No such file or directory ' + (err.path ? err.path : ''), + error: 'No such file or directory ' + (err.path ? err.path : '') + }; + } else { + newErrorObj = { + statusCode: err.statusCode ? err.statusCode : err.status ? err.status : (err.error && err.error.code && err.error.code === 'ECONNREFUSED') ? 503 : 500, + message: (err.error && err.error.message) ? err.error.message : err.message ? err.message : errMsg, + error: ( + (err.error && err.error.error && err.error.error.error && typeof err.error.error.error === 'string') ? err.error.error.error : + (err.error && err.error.error && typeof err.error.error === 'string') ? err.error.error : + (err.error && err.error.error && err.error.error.message && typeof err.error.error.message === 'string') ? err.error.error.message : + (err.error && err.error.message && typeof err.error.message === 'string') ? err.error.message : + (err.error && typeof err.error === 'string') ? err.error : + (err.message && typeof err.message === 'string') ? err.message : (typeof err === 'string') ? err : 'Unknown Error' + ) + }; + } + if (selectedNode.ln_implementation === 'ECL' && err.message.indexOf('Authentication Error') < 0 && err.name === 'StatusCodeError') { newErrorObj.statusCode = 500; } return newErrorObj; }; diff --git a/server/utils/config.ts b/server/utils/config.ts index fe0d3f2b..3fe66b9c 100644 --- a/server/utils/config.ts +++ b/server/utils/config.ts @@ -70,12 +70,13 @@ export class ConfigService { channelBackupPath: channelBackupPath, logLevel: 'ERROR', lnServerUrl: 'https://localhost:8080', - fiatConversion: false + fiatConversion: false, + unannouncedChannels: false } } ] }; - if (+process.env.RTL_SSO === 0) { + if (+process.env.RTL_SSO === 0 || configData.SSO.rtlSSO === 0) { configData['multiPass'] = 'password'; } return configData; @@ -200,6 +201,7 @@ export class ConfigService { this.common.nodes[idx].user_persona = node.Settings.userPersona ? node.Settings.userPersona : 'MERCHANT'; this.common.nodes[idx].theme_mode = node.Settings.themeMode ? node.Settings.themeMode : 'DAY'; this.common.nodes[idx].theme_color = node.Settings.themeColor ? node.Settings.themeColor : 'PURPLE'; + this.common.nodes[idx].unannounced_channels = node.Settings.unannouncedChannels ? !!node.Settings.unannouncedChannels : false; this.common.nodes[idx].log_level = node.Settings.logLevel ? node.Settings.logLevel : 'ERROR'; this.common.nodes[idx].fiat_conversion = node.Settings.fiatConversion ? !!node.Settings.fiatConversion : false; if (this.common.nodes[idx].fiat_conversion) { @@ -226,6 +228,7 @@ export class ConfigService { this.common.nodes[idx].boltz_macaroon_path = ''; } this.common.nodes[idx].enable_offers = process.env.ENABLE_OFFERS ? process.env.ENABLE_OFFERS : (node.Settings.enableOffers) ? node.Settings.enableOffers : false; + this.common.nodes[idx].enable_peerswap = process.env.ENABLE_PEERSWAP ? process.env.ENABLE_PEERSWAP : (node.Settings.enablePeerswap) ? node.Settings.enablePeerswap : false; this.common.nodes[idx].bitcoind_config_path = process.env.BITCOIND_CONFIG_PATH ? process.env.BITCOIND_CONFIG_PATH : (node.Settings.bitcoindConfigPath) ? node.Settings.bitcoindConfigPath : ''; this.common.nodes[idx].channel_backup_path = process.env.CHANNEL_BACKUP_PATH ? process.env.CHANNEL_BACKUP_PATH : (node.Settings.channelBackupPath) ? node.Settings.channelBackupPath : this.common.rtl_conf_file_path + sep + 'channels-backup' + sep + 'node-' + node.index; try { diff --git a/server/utils/database.ts b/server/utils/database.ts index 3ebfe6ce..b58acfb4 100644 --- a/server/utils/database.ts +++ b/server/utils/database.ts @@ -3,7 +3,7 @@ import { join, dirname, sep } from 'path'; import { fileURLToPath } from 'url'; import { Common, CommonService } from '../utils/common.js'; import { Logger, LoggerService } from '../utils/logger.js'; -import { Collections, CollectionsEnum, validateOffer } from '../models/database.model.js'; +import { Collections, CollectionsEnum, validateDocument, LNDCollection, ECLCollection, CLNCollection } from '../models/database.model.js'; import { CommonSelectedNode } from '../models/config.model.js'; export class DatabaseService { @@ -15,32 +15,70 @@ export class DatabaseService { constructor() { } - loadDatabase(selectedNode: CommonSelectedNode) { + loadDatabase(session: any) { + const { id, selectedNode } = session; try { if (!this.nodeDatabase[selectedNode.index]) { - this.nodeDatabase[selectedNode.index] = { adapter: null, data: null }; + this.nodeDatabase[selectedNode.index] = { adapter: null, data: {} }; + this.nodeDatabase[selectedNode.index].adapter = new DatabaseAdapter(this.dbDirectory, selectedNode, id); + this.fetchNodeData(selectedNode); + this.logger.log({ selectedNode: selectedNode, level: 'DEBUG', fileName: 'Database', msg: 'Database Loaded', data: this.nodeDatabase[selectedNode.index].data }); + } else { + this.nodeDatabase[selectedNode.index].adapter.insertSession(id); } - this.nodeDatabase[selectedNode.index].adapter = new DatabaseAdapter(this.dbDirectory, 'rtldb', selectedNode); - this.nodeDatabase[selectedNode.index].data = this.nodeDatabase[selectedNode.index].adapter.fetchData(); } catch (err) { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: 'Database', msg: 'Database Load Error', error: err }); } } - create(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, newDocument: any) { + fetchNodeData(selectedNode: CommonSelectedNode) { + switch (selectedNode.ln_implementation) { + case 'CLN': + for (const collectionName in CLNCollection) { + if (CLNCollection.hasOwnProperty(collectionName)) { + this.nodeDatabase[selectedNode.index].data[CLNCollection[collectionName]] = this.nodeDatabase[selectedNode.index].adapter.fetchData(CLNCollection[collectionName]); + } + } + break; + + case 'ECL': + for (const collectionName in ECLCollection) { + if (ECLCollection.hasOwnProperty(collectionName)) { + this.nodeDatabase[selectedNode.index].data[ECLCollection[collectionName]] = this.nodeDatabase[selectedNode.index].adapter.fetchData(ECLCollection[collectionName]); + } + } + break; + + default: + for (const collectionName in LNDCollection) { + if (LNDCollection.hasOwnProperty(collectionName)) { + this.nodeDatabase[selectedNode.index].data[LNDCollection[collectionName]] = this.nodeDatabase[selectedNode.index].adapter.fetchData(LNDCollection[collectionName]); + } + } + break; + } + } + + validateDocument(collectionName, newDocument) { + return new Promise((resolve, reject) => { + const validationRes = validateDocument(collectionName, newDocument); + if (!validationRes.isValid) { + reject(validationRes.error); + } else { + resolve(true); + } + }); + } + + insert(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, newCollection: any) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { reject(new Error('Selected Node Config Not Found.')); } - const validationRes = this.validateDocument(CollectionsEnum.OFFERS, newDocument); - if (!validationRes.isValid) { - reject(validationRes.error); - } else { - this.nodeDatabase[selectedNode.index].data[collectionName].push(newDocument); - this.saveDatabase(+selectedNode.index); - resolve(newDocument); - } + this.nodeDatabase[selectedNode.index].data[collectionName] = newCollection; + this.saveDatabase(selectedNode, collectionName); + resolve(this.nodeDatabase[selectedNode.index].data[collectionName]); } catch (errRes) { reject(errRes); } @@ -67,21 +105,16 @@ export class DatabaseService { } updatedDocument = foundDoc; } - const validationRes = this.validateDocument(CollectionsEnum.OFFERS, updatedDocument); - if (!validationRes.isValid) { - reject(validationRes.error); + if (foundDocIdx > -1) { + this.nodeDatabase[selectedNode.index].data[collectionName].splice(foundDocIdx, 1, updatedDocument); } else { - if (foundDocIdx > -1) { - this.nodeDatabase[selectedNode.index].data[collectionName].splice(foundDocIdx, 1, updatedDocument); - } else { - if (!this.nodeDatabase[selectedNode.index].data[collectionName]) { - this.nodeDatabase[selectedNode.index].data[collectionName] = []; - } - this.nodeDatabase[selectedNode.index].data[collectionName].push(updatedDocument); + if (!this.nodeDatabase[selectedNode.index].data[collectionName]) { + this.nodeDatabase[selectedNode.index].data[collectionName] = []; } - this.saveDatabase(+selectedNode.index); - resolve(updatedDocument); + this.nodeDatabase[selectedNode.index].data[collectionName].push(updatedDocument); } + this.saveDatabase(selectedNode, collectionName); + resolve(updatedDocument); } catch (errRes) { reject(errRes); } @@ -105,7 +138,7 @@ export class DatabaseService { }); } - destroy(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, documentFieldName: string, documentFieldValue: string) { + remove(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, documentFieldName: string, documentFieldValue: string) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { @@ -117,7 +150,7 @@ export class DatabaseService { } else { reject(new Error('Unable to delete, document not found.')); } - this.saveDatabase(+selectedNode.index); + this.saveDatabase(selectedNode, collectionName); resolve(documentFieldValue); } catch (errRes) { reject(errRes); @@ -125,19 +158,10 @@ export class DatabaseService { }); } - validateDocument(collectionName: CollectionsEnum, documentToValidate: any) { - switch (collectionName) { - case CollectionsEnum.OFFERS: - return validateOffer(documentToValidate); - - default: - return ({ isValid: false, error: 'Collection does not exist' }); - } - } - - saveDatabase(nodeIndex: number) { + saveDatabase(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum) { + const nodeIndex = +selectedNode.index; try { - if (+nodeIndex < 1) { + if (nodeIndex < 1) { return true; } const selNode = this.nodeDatabase[nodeIndex] && this.nodeDatabase[nodeIndex].adapter && this.nodeDatabase[nodeIndex].adapter.selNode ? this.nodeDatabase[nodeIndex].adapter.selNode : null; @@ -145,51 +169,103 @@ export class DatabaseService { this.logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Database', msg: 'Database Save Error: Selected Node Setup Not Found.' }); throw new Error('Database Save Error: Selected Node Setup Not Found.'); } - this.nodeDatabase[nodeIndex].adapter.saveData(this.nodeDatabase[nodeIndex].data); - this.logger.log({ selectedNode: this.nodeDatabase[nodeIndex].adapter.selNode, level: 'INFO', fileName: 'Database', msg: 'Database Saved' }); + this.nodeDatabase[nodeIndex].adapter.saveData(collectionName, this.nodeDatabase[selectedNode.index].data[collectionName]); + this.logger.log({ selectedNode: this.nodeDatabase[nodeIndex].adapter.selNode, level: 'INFO', fileName: 'Database', msg: 'Database Collection ' + collectionName + ' Saved' }); return true; } catch (err) { const selNode = this.nodeDatabase[nodeIndex] && this.nodeDatabase[nodeIndex].adapter && this.nodeDatabase[nodeIndex].adapter.selNode ? this.nodeDatabase[nodeIndex].adapter.selNode : null; this.logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Database', msg: 'Database Save Error', error: err }); - return new Error(err); + throw err; } } - unloadDatabase(nodeIndex: number) { - this.saveDatabase(nodeIndex); - this.nodeDatabase[nodeIndex] = null; + unloadDatabase(nodeIndex: number, sessionID: string) { + if (nodeIndex > 0) { + if (this.nodeDatabase[nodeIndex] && this.nodeDatabase[nodeIndex].adapter) { + this.nodeDatabase[nodeIndex].adapter.removeSession(sessionID); + if (this.nodeDatabase[nodeIndex].adapter.userSessions && this.nodeDatabase[nodeIndex].adapter.userSessions.length <= 0) { + delete this.nodeDatabase[nodeIndex]; + } + } + } } } export class DatabaseAdapter { - private dbFile = ''; + private logger: LoggerService = Logger; + private common: CommonService = Common; + private dbFilePath = ''; + private userSessions = []; - constructor(public dbDirectoryPath: string, public fileName: string, private selNode: CommonSelectedNode = null) { - this.dbFile = dbDirectoryPath + sep + fileName + '-node-' + selNode.index + '.json'; + constructor(public dbDirectoryPath: string, private selNode: CommonSelectedNode = null, private id: string = '') { + this.dbFilePath = dbDirectoryPath + sep + 'node-' + selNode.index; + // For backward compatibility Start + const oldFilePath = dbDirectoryPath + sep + 'rtldb-node-' + selNode.index + '.json'; + if (selNode.ln_implementation === 'CLN' && fs.existsSync(oldFilePath)) { this.renameOldDB(oldFilePath, selNode); } + // For backward compatibility End + this.insertSession(id); } - fetchData() { + renameOldDB(oldFilePath: string, selNode: CommonSelectedNode = null) { + const newFilePath = this.dbFilePath + sep + 'rtldb-' + selNode.ln_implementation + '-Offers.json'; try { - if (!fs.existsSync(this.dbDirectoryPath)) { - fs.mkdirSync(this.dbDirectoryPath); + this.common.createDirectory(this.dbFilePath); + const oldOffers: any = JSON.parse(fs.readFileSync(oldFilePath, 'utf-8')); + fs.writeFileSync(oldFilePath, JSON.stringify(oldOffers.Offers, null, 2)); + fs.renameSync(oldFilePath, newFilePath); + } catch (err) { + this.logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Database', msg: 'Rename Old Database Error', error: err }); + } + } + + fetchData(collectionName: string) { + try { + if (!fs.existsSync(this.dbFilePath)) { + this.common.createDirectory(this.dbFilePath); } } catch (err) { - return new Error('Unable to Create Directory Error ' + JSON.stringify(err)); + throw new Error(JSON.stringify(err)); } + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; try { - if (!fs.existsSync(this.dbFile)) { - fs.writeFileSync(this.dbFile, '{}'); + if (!fs.existsSync(collectionFilePath)) { + fs.writeFileSync(collectionFilePath, '[]'); } } catch (err) { - return new Error('Unable to Create Database File Error ' + JSON.stringify(err)); + throw new Error(JSON.stringify(err)); + } + try { + const otherFiles = fs.readdirSync(this.dbFilePath); + otherFiles.forEach((oFileName) => { + let collectionValid = false; + switch (this.selNode.ln_implementation) { + case 'CLN': + collectionValid = CLNCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + break; + + case 'ECL': + collectionValid = ECLCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + break; + + default: + collectionValid = LNDCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + break; + } + if (oFileName.endsWith('.json') && !collectionValid) { + fs.renameSync(this.dbFilePath + sep + oFileName, this.dbFilePath + sep + oFileName + '.tmp'); + } + }); + } catch (err) { + this.logger.log({ selectedNode: this.selNode, level: 'ERROR', fileName: 'Database', msg: 'Rename Other Implementation DB Error', error: err }); } try { - const dataFromFile = fs.readFileSync(this.dbFile, 'utf-8'); - return !dataFromFile ? null : (JSON.parse(dataFromFile)); + const dataFromFile = fs.readFileSync(collectionFilePath, 'utf-8'); + const dataObj = !dataFromFile ? null : (JSON.parse(dataFromFile)); + return dataObj; } catch (err) { - return new Error('Database Read Error ' + JSON.stringify(err)); + throw new Error(JSON.stringify(err)); } } @@ -197,19 +273,30 @@ export class DatabaseAdapter { return this.selNode; } - saveData(data: any) { + saveData(collectionName: string, collectionData: any) { try { - if (data) { - const tempFile = this.dbFile + '.tmp'; - fs.writeFileSync(tempFile, JSON.stringify(data, null, 2)); - fs.renameSync(tempFile, this.dbFile); + if (collectionData) { + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; + const tempFile = collectionFilePath + '.tmp'; + fs.writeFileSync(tempFile, JSON.stringify(collectionData, null, 2)); + fs.renameSync(tempFile, collectionFilePath); } return true; } catch (err) { - return new Error('Database Write Error ' + JSON.stringify(err)); + throw err; } } + insertSession(id: string = '') { + if (!this.userSessions.includes(id)) { + this.userSessions.push(id); + } + } + + removeSession(sessionID: string = '') { + this.userSessions.splice(this.userSessions.findIndex((sId) => sId === sessionID), 1); + } + } export const Database = new DatabaseService(); diff --git a/server/utils/logger.ts b/server/utils/logger.ts index 50868660..d0259407 100644 --- a/server/utils/logger.ts +++ b/server/utils/logger.ts @@ -9,8 +9,10 @@ export class LoggerService { switch (msgJSON.level) { case 'ERROR': if (msgJSON.error) { - msgStr = msgStr + ': ' + ((msgJSON.error.error && msgJSON.error.error.message && typeof msgJSON.error.error.message === 'string') ? msgJSON.error.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.message && typeof msgJSON.error.message === 'string') ? msgJSON.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.stack && typeof msgJSON.error.stack === 'string') ? - msgJSON.error.stack : (typeof msgJSON.error === 'object') ? JSON.stringify(msgJSON.error) : (typeof msgJSON.error === 'string') ? msgJSON.error : '') + '\r\n'; + msgStr = msgStr + ': ' + ((msgJSON.error.error && msgJSON.error.error.message && typeof msgJSON.error.error.message === 'string') ? + msgJSON.error.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.message && typeof msgJSON.error.message === 'string') ? msgJSON.error.message : (typeof msgJSON.error === 'object' && msgJSON.error.stack && typeof msgJSON.error.stack === 'string') ? + msgJSON.error.stack : (typeof msgJSON.error === 'object') ? JSON.stringify(msgJSON.error) : (typeof msgJSON.error === 'string') ? + msgJSON.error : '') + '\r\n'; } else { msgStr = msgStr + '.\r\n'; } @@ -69,7 +71,9 @@ export class LoggerService { const prepMsgData = (msgJSON, msgStr) => { if (msgJSON.data) { - msgStr = msgStr + ': ' + (typeof msgJSON.data === 'object' ? (msgJSON.data.message && typeof msgJSON.data.message === 'string') ? msgJSON.data.message : (msgJSON.data.stack && typeof msgJSON.data.stack === 'string') ? msgJSON.data.stack : JSON.stringify(msgJSON.data) : (typeof msgJSON.data === 'string') ? msgJSON.data : '') + '\r\n'; + msgStr = msgStr + ': ' + (typeof msgJSON.data === 'object' ? (msgJSON.data.message && typeof msgJSON.data.message === 'string') ? + msgJSON.data.message : (msgJSON.data.stack && typeof msgJSON.data.stack === 'string') ? + msgJSON.data.stack : JSON.stringify(msgJSON.data) : (typeof msgJSON.data === 'string') ? msgJSON.data : '') + '\r\n'; } else { msgStr = msgStr + '.\r\n'; } diff --git a/server/utils/webSocketServer.ts b/server/utils/webSocketServer.ts index 57ae3839..334f2064 100644 --- a/server/utils/webSocketServer.ts +++ b/server/utils/webSocketServer.ts @@ -57,10 +57,10 @@ export class RTLWebSocketServer { public mountEventsOnConnection = (websocket, request) => { const protocols = !request.headers['sec-websocket-protocol'] ? [] : request.headers['sec-websocket-protocol'].split(',')?.map((s) => s.trim()); - const cookies = parse(request.headers.cookie); + const cookies = request.headers.cookie ? parse(request.headers.cookie) : null; websocket.clientId = Date.now(); websocket.isAlive = true; - websocket.sessionId = cookieParser.signedCookie(cookies['connect.sid'], this.common.secret_key); + websocket.sessionId = cookies && cookies['connect.sid'] ? cookieParser.signedCookie(cookies['connect.sid'], this.common.secret_key) : null; websocket.clientNodeIndex = +protocols[1]; this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connected: ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); websocket.on('error', this.sendErrorToAllLNClients); diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 5b90cb94..38283cd9 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -39,7 +39,7 @@ import { ECLReducer } from './eclair/store/ecl.reducers'; routing, LayoutModule, HammerModule, - UserIdleModule.forRoot({ idle: 3590, timeout: 10, ping: 12000 }), // One hour + UserIdleModule.forRoot({ idle: 3590, timeout: 10, ping: 12000 }), // One hour => 3590 + 10 = 3600 StoreModule.forRoot( { root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }, { diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index 85ff5471..63a5915e 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -8,6 +8,7 @@ import { BitcoinConfigComponent } from './shared/components/settings/bitcoin-con import { NodeConfigComponent } from './shared/components/node-config/node-config.component'; import { LNPConfigComponent } from './shared/components/node-config/lnp-config/lnp-config.component'; import { NodeSettingsComponent } from './shared/components/node-config/node-settings/node-settings.component'; +import { PageSettingsComponent } from './shared/components/node-config/page-settings/page-settings.component'; import { ServicesSettingsComponent } from './shared/components/node-config/services-settings/services-settings.component'; import { LoopServiceSettingsComponent } from './shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component'; import { BoltzServiceSettingsComponent } from './shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component'; @@ -36,8 +37,9 @@ export const routes: Routes = [ }, { path: 'config', component: NodeConfigComponent, canActivate: [AuthGuard], children: [ - { path: '', pathMatch: 'full', redirectTo: 'layout' }, - { path: 'layout', component: NodeSettingsComponent, canActivate: [AuthGuard] }, + { path: '', pathMatch: 'full', redirectTo: 'nodesettings' }, + { path: 'nodesettings', component: NodeSettingsComponent, canActivate: [AuthGuard] }, + { path: 'pglayout', component: PageSettingsComponent, canActivate: [AuthGuard] }, { path: 'services', component: ServicesSettingsComponent, canActivate: [AuthGuard], children: [ { path: '', pathMatch: 'full', redirectTo: 'loop' }, @@ -65,4 +67,4 @@ export const routes: Routes = [ ]; // Export const routing: ModuleWithProviders = RouterModule.forRoot(routes, { enableTracing: true }); -export const routing: ModuleWithProviders = RouterModule.forRoot(routes); +export const routing: ModuleWithProviders = RouterModule.forRoot(routes, { scrollPositionRestoration: 'enabled' }); diff --git a/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.html b/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.html index aaf8424a..49471a05 100644 --- a/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.html +++ b/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.html @@ -8,7 +8,7 @@
-

Short Channel Id

+

Short Channel ID

{{lookupResult[0]?.short_channel_id}}
@@ -89,7 +89,7 @@
-

Short Channel Id

+

Short Channel ID

{{lookupResult[1]?.short_channel_id}}
diff --git a/src/app/cln/graph/lookups/lookups.component.html b/src/app/cln/graph/lookups/lookups.component.html index 418afee0..e1329bbf 100644 --- a/src/app/cln/graph/lookups/lookups.component.html +++ b/src/app/cln/graph/lookups/lookups.component.html @@ -17,7 +17,7 @@ - +
{{lookupFields[selectedFieldId].name}} Details @@ -27,7 +27,7 @@

Error! Unable to find details!

-
+ diff --git a/src/app/cln/graph/lookups/lookups.component.scss b/src/app/cln/graph/lookups/lookups.component.scss index d45059cb..51956474 100644 --- a/src/app/cln/graph/lookups/lookups.component.scss +++ b/src/app/cln/graph/lookups/lookups.component.scss @@ -8,7 +8,3 @@ margin-bottom: 0; list-style-type: none; } - -.pl-3 { - padding-left: 3rem; -} \ No newline at end of file diff --git a/src/app/cln/graph/lookups/lookups.component.ts b/src/app/cln/graph/lookups/lookups.component.ts index 1f4fba95..d9a0a680 100644 --- a/src/app/cln/graph/lookups/lookups.component.ts +++ b/src/app/cln/graph/lookups/lookups.component.ts @@ -24,7 +24,6 @@ export class CLNLookupsComponent implements OnInit, OnDestroy { public nodeLookupValue = { nodeid: '' }; public channelLookupValue = []; public flgSetLookupValue = false; - public temp: any; public messageObj = []; public selectedFieldId = 0; public lookupFields = [ diff --git a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.html b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.html index 8522a5c8..b26db718 100644 --- a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.html +++ b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.html @@ -1,5 +1,5 @@
- +

Alias

@@ -24,25 +24,27 @@

Addresses

-
- +
+
- + - + - + - - + diff --git a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss index e69de29b..2b50b930 100644 --- a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss +++ b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.scss @@ -0,0 +1,10 @@ +div.bordered-box.table-actions-select.btn-action { + min-width: 13rem; + width: 13rem; + min-height: 3.6rem; +} + +button.mat-stroked-button.btn-action-copy { + min-width: 13rem; + width: 13rem; +} diff --git a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts index 6fc46973..b0810a90 100644 --- a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts +++ b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts @@ -17,7 +17,7 @@ export class CLNNodeLookupComponent implements OnInit { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @Input() lookupResult: LookupNode; public featureDescriptions: string[] = []; - public addresses: any; + public addresses: any = new MatTableDataSource([]); public displayedColumns = ['type', 'address', 'port', 'actions']; constructor(private logger: LoggerService, private snackBar: MatSnackBar) { } diff --git a/src/app/cln/graph/query-routes/query-routes.component.html b/src/app/cln/graph/query-routes/query-routes.component.html index 5015fdd5..d8386d56 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.html +++ b/src/app/cln/graph/query-routes/query-routes.component.html @@ -27,42 +27,46 @@
Type {{address?.type}} {{address?.type}} Address {{address?.address}} {{address?.address}} Port {{address?.port}} {{address?.port}} Actions + +
Actions
+
- +
- - + + - - + + - - + + - - + + - - + + - - - - - - + + - - + - +
ID {{hop?.id}} ID +
+ {{hop?.id}} +
+
Alias {{hop?.alias}} Alias +
+ {{hop?.alias}} +
+
Channel {{hop?.channel}} Channel{{hop?.channel}} Direction {{hop?.direction}} Direction{{hop?.direction}} Delay {{hop?.delay | number}} - Delay{{hop?.delay | number}} Amount (Sats) {{hop?.msatoshi/1000 | number}} - Amount mSat {{hop?.amount_msat}} Amount (Sats){{hop?.msatoshi/1000 | number}} Actions - + +
Actions
+
+
diff --git a/src/app/cln/graph/query-routes/query-routes.component.scss b/src/app/cln/graph/query-routes/query-routes.component.scss index f5961ac5..e69de29b 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.scss +++ b/src/app/cln/graph/query-routes/query-routes.component.scss @@ -1,11 +0,0 @@ -.mat-column-actions { - flex: 0 0 5%; - width: 5%; -} - -.mat-column-pubkey_alias { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/cln/graph/query-routes/query-routes.component.ts b/src/app/cln/graph/query-routes/query-routes.component.ts index 8d4cb1d0..7943cd75 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.ts +++ b/src/app/cln/graph/query-routes/query-routes.component.ts @@ -7,13 +7,16 @@ import { MatTableDataSource } from '@angular/material/table'; import { faRoute, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { Routes } from '../../../shared/models/clnModels'; -import { AlertTypeEnum, DataTypeEnum, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; +import { AlertTypeEnum, CLN_DEFAULT_PAGE_SETTINGS, DataTypeEnum, PAGE_SIZE, ScreenSizeEnum, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; import { CLNEffects } from '../../store/cln.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getQueryRoutes } from '../../store/cln.actions'; +import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { clnPageSettings } from '../../store/cln.selector'; +import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ selector: 'rtl-cln-query-routes', @@ -24,38 +27,35 @@ export class CLNQueryRoutesComponent implements OnInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild('queryRoutesForm', { static: true }) form: any; + public PAGE_ID = 'graph_lookup'; + public tableSetting: TableSetting = { tableId: 'query_routes', recordsPerPage: PAGE_SIZE, sortBy: 'id', sortOrder: SortOrderEnum.ASCENDING }; public destinationPubkey = ''; public amount: number | null = null; - public qrHops: any; - public flgSticky = false; + public qrHops: any = new MatTableDataSource([]); public displayedColumns: any[] = []; public flgLoading: Array = [false]; // 0: peers public faRoute = faRoute; public faExclamationTriangle = faExclamationTriangle; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private store: Store, private clnEffects: CLNEffects, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'direction', 'msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'direction', 'delay', 'msatoshi', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'channel', 'direction', 'delay', 'msatoshi', 'actions']; - } } ngOnInit() { + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + }); this.clnEffects.setQueryRoutesCL.pipe(takeUntil(this.unSubs[1])).subscribe((queryRoute) => { - this.qrHops = new MatTableDataSource([]); this.qrHops.data = []; if (queryRoute.routes && queryRoute.routes.length && queryRoute.routes.length > 0) { this.flgLoading[0] = false; @@ -66,6 +66,7 @@ export class CLNQueryRoutesComponent implements OnInit, OnDestroy { } this.qrHops.sort = this.sort; this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); + this.qrHops.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); }); } diff --git a/src/app/cln/home/home.component.html b/src/app/cln/home/home.component.html index 455ebee2..f050f45c 100644 --- a/src/app/cln/home/home.component.html +++ b/src/app/cln/home/home.component.html @@ -100,9 +100,9 @@ - + - +

Error! Unable to find information!

diff --git a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html index 743024ac..e92faa93 100644 --- a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html +++ b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.html @@ -9,9 +9,9 @@
- Ads should be supplemented with additional research of the nodes, before buying liquidity. + Ads should be supplemented with additional research of the node, before buying liquidity.
-
+
Liquidity Ask @@ -23,8 +23,8 @@ Channel amount is required. - - Channel opening fee rate is required. + + Channel opening fee rate is required.
@@ -38,75 +38,108 @@
- - Node capacity is required. + + Node capacity is required. - +
--> -
-
+
+
Liquidity Providing Peers
- -
- -
-
+
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
- - + - - + + - - + + + + + + + + + + + - - + + - - + + + + + + - - - +
Alias - {{lqNode?.alias}} - - - {{addrType === 'tor' ? 'Tor' : addrType === 'ipv' ? 'Clearnet' : addrType}} - - + Alias +
+ + {{lqNode?.alias}} + + + {{addrType === 'tor' ? 'Tor' : addrType === 'ipv' ? 'Clearnet' : addrType}} + + + +
Capacity/Channels Node ID - {{lqNode?.nodeCapacity/100000000 | number:'1.0-2'}} BTC / {{lqNode?.channelCount | number:'1.0-0'}} +
+ {{lqNode?.nodeid}} +
Lease Fee Last Announcement At{{((lqNode?.last_timestamp * 1000) | date:'dd/MMM/y HH:mm') || '-'}}Compact Lease{{ lqNode?.option_will_fund?.compact_lease }} Lease Fee {{lqNode?.option_will_fund?.lease_fee_base_msat/1000 | number:'1.0-0'}} Sats + {{(lqNode?.option_will_fund?.lease_fee_basis/100) | number:'1.2-2'}}% Routing Fee Routing Fee {{lqNode?.option_will_fund?.channel_fee_max_base_msat/1000 | number:'1.0-0'}} Sats + {{lqNode?.option_will_fund?.channel_fee_max_proportional_thousandths * 1000 | number:'1.0-0'}} ppm Channel Opening Fee Channel Opening Fee (Sats) - {{lqNode.channelOpeningFee | number:'1.0-0'}} Sats + {{lqNode.channel_opening_fee | number:'1.0-0'}} + + Funding Weight + + {{lqNode?.option_will_fund?.funding_weight | number:'1.0-0'}} -
+
+
Download CSV
-
+ +
@@ -126,7 +159,7 @@
diff --git a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.scss b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.scss index 81784717..e69de29b 100644 --- a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.scss +++ b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.scss @@ -1,11 +0,0 @@ -.mat-column-alias { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - min-height: 4.8rem; -} - -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.ts b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.ts index dd561dbd..4f95101e 100644 --- a/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.ts +++ b/src/app/cln/liquidity-ads/liquidity-ads-list/liquidity-ads-list.component.ts @@ -10,7 +10,7 @@ import { faBullhorn, faExclamationTriangle, faUsers } from '@fortawesome/free-so import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; -import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, getPaginatorLabel, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum, NODE_FEATURES_CLN } from '../../../shared/services/consts-enums-functions'; +import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, getPaginatorLabel, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum, NODE_FEATURES_CLN, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { GetInfo, LookupNode } from '../../../shared/models/clnModels'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; @@ -18,8 +18,10 @@ import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { RTLState } from '../../../store/rtl.state'; import { RTLEffects } from '../../../store/rtl.effects'; import { CLNOpenLiquidityChannelComponent } from '../open-liquidity-channel-modal/open-liquidity-channel-modal.component'; -import { nodeInfoAndNodeSettingsAndBalance } from '../../store/cln.selector'; -import { DecimalPipe } from '@angular/common'; +import { clnPageSettings, nodeInfoAndNodeSettingsAndBalance } from '../../store/cln.selector'; +import { DatePipe } from '@angular/common'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-liquidity-ads-list', @@ -33,6 +35,11 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'liquidity_ads'; + public tableSetting: TableSetting = { tableId: 'liquidity_ads', recordsPerPage: PAGE_SIZE, sortBy: 'channel_opening_fee', sortOrder: SortOrderEnum.ASCENDING }; public askTooltipMsg = ''; public nodesTooltipMsg = ''; public displayedColumns: any[] = []; @@ -42,12 +49,11 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { public totalBalance = 0; public information: GetInfo; public channelAmount = 100000; - public channelOpeningFeeRate = 10; - public nodeCapacity = 500000; - public channelCount = 5; + public channel_opening_feeRate = 10; + public node_capacity = 500000; + public channel_count = 5; public liquidityNodesData: LookupNode[] = []; - public liquidityNodes: any; - public flgSticky = false; + public liquidityNodes: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -56,30 +62,37 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { public selFilter = ''; public apiCallStatus: ApiCallStatusPayload = { status: APICallStatusEnum.INITIATED }; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private dataService: DataService, private commonService: CommonService, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe) { + constructor(private logger: LoggerService, private store: Store, private dataService: DataService, private commonService: CommonService, private rtlEffects: RTLEffects, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.askTooltipMsg = 'Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you'; this.nodesTooltipMsg = 'These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n'; - this.nodesTooltipMsg = this.nodesTooltipMsg + '- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers'; + this.nodesTooltipMsg = this.nodesTooltipMsg + '- The number of channels open on the node, the more the better' + + '\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better' + + '\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers'; this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'channelOpeningFee', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'leaseFee', 'routingFee', 'channelOpeningFee', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'leaseFee', 'routingFee', 'channelOpeningFee', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'leaseFee', 'routingFee', 'channelOpeningFee', 'actions']; - } } ngOnInit(): void { - combineLatest([this.store.select(nodeInfoAndNodeSettingsAndBalance), this.dataService.listNetworkNodes('?liquidity_ads=yes')]).pipe(takeUntil(this.unSubs[0])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + combineLatest([this.store.select(nodeInfoAndNodeSettingsAndBalance), this.dataService.listNetworkNodes('?liquidity_ads=yes')]).pipe(takeUntil(this.unSubs[1])). subscribe({ next: ([infoSettingsBalSelector, nodeListRes]) => { this.information = infoSettingsBalSelector.information; @@ -97,7 +110,7 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { return acc; }, a))); }); - this.liquidityNodesData = (nodeListRes).filter(node => node.nodeid !== this.information.id); + this.liquidityNodesData = (nodeListRes).filter((node) => node.nodeid !== this.information.id); this.onCalculateOpeningFee(); this.loadLiqNodesTable(this.liquidityNodesData); }, error: (err) => { @@ -111,7 +124,7 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { onCalculateOpeningFee() { this.liquidityNodesData.forEach((lqNode) => { if (lqNode.option_will_fund) { - lqNode.channelOpeningFee = (+(lqNode.option_will_fund.lease_fee_base_msat || 0) / 1000) + (this.channelAmount * (+(lqNode.option_will_fund.lease_fee_basis || 0)) / 10000) + ((+(lqNode.option_will_fund.funding_weight || 0) / 4) * this.channelOpeningFeeRate); + lqNode.channel_opening_fee = (+(lqNode.option_will_fund.lease_fee_base_msat || 0) / 1000) + (this.channelAmount * (+(lqNode.option_will_fund.lease_fee_basis || 0)) / 10000) + ((+(lqNode.option_will_fund.funding_weight || 0) / 4) * this.channel_opening_feeRate); } }); if (this.paginator) { this.paginator.firstPage(); } @@ -125,21 +138,59 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { this.liquidityNodes.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.liquidityNodes.filterPredicate = (rowData: LookupNode, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.alias) ? rowData.alias.toLocaleLowerCase() : '') + (rowData.channel_opening_fee ? rowData.channel_opening_fee + ' Sats' : '') + + (rowData.option_will_fund?.lease_fee_base_msat ? (rowData.option_will_fund?.lease_fee_base_msat / 1000) + ' Sats' : '') + (rowData.option_will_fund?.lease_fee_basis ? ((rowData.option_will_fund?.lease_fee_basis / 100) + '%') : '') + + (rowData.option_will_fund?.channel_fee_max_base_msat ? (rowData.option_will_fund?.channel_fee_max_base_msat / 1000) + ' Sats' : '') + (rowData.option_will_fund?.channel_fee_max_proportional_thousandths ? (rowData.option_will_fund?.channel_fee_max_proportional_thousandths * 1000) + ' ppm' : '') + + (rowData.address_types ? rowData.address_types.reduce((acc, curr) => acc + (curr === 'tor' ? ' tor' : curr === 'ipv' ? ' clearnet' : (' ' + curr.toLowerCase())), '') : ''); + break; + + case 'alias': + rowToFilter = ((rowData?.alias?.toLowerCase() || ' ') + rowData?.address_types?.reduce((acc, curr) => acc + (!curr ? '' : (curr === 'ipv' ? 'clearnet' : curr)), ' ')) || ''; + break; + + case 'last_timestamp': + rowToFilter = this.datePipe.transform(new Date((rowData.last_timestamp || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'compact_lease': + rowToFilter = rowData?.option_will_fund?.compact_lease?.toLowerCase() || ''; + break; + + case 'lease_fee': + rowToFilter = ((((rowData.option_will_fund?.lease_fee_base_msat || 0) / 1000) + ' sats ' || ' ') + (((rowData.option_will_fund?.lease_fee_basis || 0) / 100) + '%')) || ''; + break; + + case 'routing_fee': + rowToFilter = ((((rowData.option_will_fund?.channel_fee_max_base_msat || 0) / 1000) + ' sats ' || ' ') + (((rowData.option_will_fund?.channel_fee_max_proportional_thousandths || 0) * 1000) + ' ppm')) || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadLiqNodesTable(liqNodes: LookupNode[]) { this.liquidityNodes = new MatTableDataSource([...liqNodes]); this.liquidityNodes.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.liquidityNodes.sort = this.sort; - this.liquidityNodes.paginator = this.paginator; - if (this.sort) { this.sort.sort({ id: 'channelOpeningFee', start: 'asc', disableClear: true }); } - this.liquidityNodes.filterPredicate = (node: LookupNode, fltr: string) => { - const newNode = ((node.alias) ? node.alias.toLocaleLowerCase() : '') + (node.channelOpeningFee ? node.channelOpeningFee + ' Sats' : '') - + (node.option_will_fund?.lease_fee_base_msat ? (node.option_will_fund?.lease_fee_base_msat/1000) + ' Sats' : '') + (node.option_will_fund?.lease_fee_basis ? (this.decimalPipe.transform(node.option_will_fund?.lease_fee_basis/100, '1.2-2') + '%') : '') - + (node.option_will_fund?.channel_fee_max_base_msat ? (node.option_will_fund?.channel_fee_max_base_msat/1000) + ' Sats' : '') + (node.option_will_fund?.channel_fee_max_proportional_thousandths ? (node.option_will_fund?.channel_fee_max_proportional_thousandths*1000) + ' ppm' : '') - + (node.address_types ? node.address_types.reduce((acc, curr) => acc + (curr === 'tor' ? ' tor' : curr === 'ipv' ? ' clearnet' : (' ' + curr.toLowerCase())), '') : ''); - return newNode.includes(fltr); - } + this.liquidityNodes.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.setFilterPredicate(); this.applyFilter(); - // this.liquidityNodes.filterPredicate = (node: LookupNode, fltr: string) => node.channelCount >= this.channelCount && node.nodeCapacity >= this.nodeCapacity; + this.liquidityNodes.paginator = this.paginator; + // this.liquidityNodes.filterPredicate = (rowData: LookupNode, fltr: string) => rowData.channel_count >= this.channel_count && rowData.node_capacity >= this.node_capacity; // this.onFilter(); } @@ -156,7 +207,7 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { node: lqNode, balance: this.totalBalance, requestedAmount: this.channelAmount, - feeRate: this.channelOpeningFeeRate, + feeRate: this.channel_opening_feeRate, localAmount: 20000 }; this.store.dispatch(openAlert({ @@ -208,7 +259,7 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { } } })); - this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[1])).subscribe((confirmRes) => { + this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[2])).subscribe((confirmRes) => { if (confirmRes) { this.onOpenChannel(lqNode); } @@ -222,8 +273,8 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { } onFilterReset() { - this.nodeCapacity = 0; - this.channelCount = 0; + this.node_capacity = 0; + this.channel_count = 0; } ngOnDestroy() { diff --git a/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.html b/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.html index 96516b49..79a15649 100644 --- a/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.html +++ b/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.html @@ -30,7 +30,7 @@
- Total cost to lease {{node.channelOpeningFee | number}} (Sats) + Total cost to lease {{node.channel_opening_fee | number}} (Sats)
@@ -73,15 +73,15 @@ - + - + - + diff --git a/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.spec.ts b/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.spec.ts index 1b300317..73220169 100644 --- a/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.spec.ts +++ b/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.spec.ts @@ -55,7 +55,7 @@ describe('CLNOpenLiquidityChannelComponent', () => { channel_fee_max_proportional_thousandths: 1, compact_lease: '029a0032000100004e20' }, - channelOpeningFee: 22165 + channel_opening_fee: 22165 }, balance: 100000, requestedAmount: 20000, feeRate: 10, localAmount: 20000 } diff --git a/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.ts b/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.ts index 6c6771fb..db69bdf5 100644 --- a/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.ts +++ b/src/app/cln/liquidity-ads/open-liquidity-channel-modal/open-liquidity-channel-modal.component.ts @@ -68,7 +68,7 @@ export class CLNOpenLiquidityChannelComponent implements OnInit, OnDestroy { } calculateFee() { - this.node.channelOpeningFee = (+(this.node.option_will_fund?.lease_fee_base_msat || 0) / 1000) + (this.requestedAmount * (+(this.node.option_will_fund?.lease_fee_basis || 0)) / 10000) + ((+(this.node.option_will_fund?.funding_weight || 0) / 4) * this.feeRate); + this.node.channel_opening_fee = (+(this.node.option_will_fund?.lease_fee_base_msat || 0) / 1000) + (this.requestedAmount * (+(this.node.option_will_fund?.lease_fee_basis || 0)) / 10000) + ((+(this.node.option_will_fund?.funding_weight || 0) / 4) * this.feeRate); } onOpenChannel(): boolean | void { diff --git a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index d6bd50a5..6248ced4 100644 --- a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -15,7 +15,7 @@ Amount replaced by UTXO balance - {{selAmountUnit}} + {{selAmountUnit}} {{amountError}} diff --git a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 5a293fe6..152aac2e 100644 --- a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -77,7 +77,17 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { public screenSizeEnum = ScreenSizeEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNOnChainSendFunds, private logger: LoggerService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions, private formBuilder: FormBuilder, private rtlEffects: RTLEffects, private snackBar: MatSnackBar) { + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: CLNOnChainSendFunds, + private logger: LoggerService, + private store: Store, + private commonService: CommonService, + private decimalPipe: DecimalPipe, + private actions: Actions, + private formBuilder: FormBuilder, + private rtlEffects: RTLEffects, + private snackBar: MatSnackBar) { this.screenSize = this.commonService.getScreenSize(); } @@ -196,7 +206,9 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { this.transaction.minconf = this.sendFundFormGroup.controls.flgMinConf.value ? this.sendFundFormGroup.controls.minConfValue.value : null; } else { delete this.transaction.minconf; - this.transaction.feeRate = (this.sendFundFormGroup.controls.selFeeRate.value === 'customperkb' && !this.sendFundFormGroup.controls.flgMinConf.value && this.sendFundFormGroup.controls.customFeeRate.value) ? ((this.sendFundFormGroup.controls.customFeeRate.value * 1000) + 'perkb') : this.sendFundFormGroup.controls.selFeeRate.value; + this.transaction.feeRate = (this.sendFundFormGroup.controls.selFeeRate.value === 'customperkb' && + !this.sendFundFormGroup.controls.flgMinConf.value && this.sendFundFormGroup.controls.customFeeRate.value) ? + ((this.sendFundFormGroup.controls.customFeeRate.value * 1000) + 'perkb') : this.sendFundFormGroup.controls.selFeeRate.value; } delete this.transaction.utxos; this.store.dispatch(setChannelTransaction({ payload: this.transaction })); diff --git a/src/app/cln/on-chain/on-chain.component.ts b/src/app/cln/on-chain/on-chain.component.ts index 4e9ebab9..bc9e817a 100644 --- a/src/app/cln/on-chain/on-chain.component.ts +++ b/src/app/cln/on-chain/on-chain.component.ts @@ -50,7 +50,7 @@ export class CLNOnChainComponent implements OnInit, OnDestroy { }); this.store.select(balance).pipe(takeUntil(this.unSubs[2])). subscribe((balanceSeletor: { balance: Balance, apiCallStatus: ApiCallStatusPayload }) => { - this.balances = [{ title: 'Total Balance', dataValue: balanceSeletor.balance.totalBalance || 0 }, { title: 'Confirmed', dataValue: (balanceSeletor.balance.confBalance || 0)}, { title: 'Unconfirmed', dataValue: (balanceSeletor.balance.unconfBalance || 0) }]; + this.balances = [{ title: 'Total Balance', dataValue: balanceSeletor.balance.totalBalance || 0 }, { title: 'Confirmed', dataValue: (balanceSeletor.balance.confBalance || 0) }, { title: 'Unconfirmed', dataValue: (balanceSeletor.balance.unconfBalance || 0) }]; }); } diff --git a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html index b5cebce0..add92d02 100644 --- a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html +++ b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html @@ -4,13 +4,13 @@ UTXOs - + Dust UTXOs - + diff --git a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.spec.ts b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.spec.ts index 1726ef8e..7662f8a3 100644 --- a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.spec.ts +++ b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.spec.ts @@ -1,5 +1,6 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { RouterTestingModule } from '@angular/router/testing'; import { StoreModule } from '@ngrx/store'; import { CommonService } from '../../../shared/services/common.service'; import { DataService } from '../../../shared/services/data.service'; @@ -24,6 +25,7 @@ describe('CLNUTXOTablesComponent', () => { imports: [ BrowserAnimationsModule, SharedModule, + RouterTestingModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [ diff --git a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts index 62e91819..da011393 100644 --- a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts +++ b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts @@ -19,10 +19,9 @@ export class CLNUTXOTablesComponent implements OnInit, OnDestroy { @Input() selectedTableIndex = 0; @Output() readonly selectedTableIndexChange = new EventEmitter(); - public utxos: UTXO[] = []; public numUtxos = 0; - public dustUtxos: UTXO[] = []; public numDustUtxos = 0; + public DUST_AMOUNT = 1000; private unSubs: Array> = [new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store) { } @@ -31,14 +30,8 @@ export class CLNUTXOTablesComponent implements OnInit, OnDestroy { this.store.select(utxos).pipe(takeUntil(this.unSubs[0])). subscribe((utxosSeletor: { utxos: UTXO[], apiCallStatus: ApiCallStatusPayload }) => { if (utxosSeletor.utxos && utxosSeletor.utxos.length > 0) { - this.utxos = utxosSeletor.utxos; - this.numUtxos = this.utxos.length; - this.dustUtxos = utxosSeletor.utxos?.filter((utxo) => +(utxo.value || 0) < 1000); - this.numDustUtxos = this.dustUtxos.length; - } - if (utxosSeletor.utxos && utxosSeletor.utxos.length > 0) { - this.utxos = utxosSeletor.utxos; - this.numUtxos = this.utxos.length; + this.numUtxos = utxosSeletor.utxos.length || 0; + this.numDustUtxos = utxosSeletor.utxos?.filter((utxo) => +(utxo.value || 0) < this.DUST_AMOUNT).length || 0; } this.logger.info(utxosSeletor); }); diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html index 52449c4f..eaf90597 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html @@ -1,57 +1,94 @@ -
-
-
- - - +
+
+
+
+ + + {{getLabel(column)}} + + + + + +
-
Type {{address?.type}} {{address?.type}} Address {{address?.address }} {{address?.address }} Port {{address?.port}} {{address?.port}}
+
+ + + + + + + + - + + + + + + + + + - + - + - + + + + + - - @@ -62,7 +99,7 @@ - +
+ + warning + + + + + Transaction ID Transaction ID - - - - warning - - - - + {{utxo.txid}} Address + + {{utxo.address}} + + Script Pubkey + + {{utxo.scriptpubkey}} + + Output Output {{utxo?.output | number}} Value (Sats) Value (Sats) {{utxo.value | number}} ({{utxo.value * -1 | number}}) Blockheight Blockheight {{utxo?.blockheight | number}} Reserved + {{utxo.reserved ? 'Yes' : 'No'}} + -
+
+
Download CSV
-
- + + +
diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.scss b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.scss index 19521a42..4835e4ff 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.scss +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.scss @@ -1,11 +1,9 @@ -.mat-column-txid { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } +.mat-column-is_dust { + max-width: 1.2rem; + width: 1.2rem; } -.mat-column-actions { - min-height: 4.8rem; +.mat-column-status { + max-width: 1.2rem; + width: 1.2rem; } diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.spec.ts b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.spec.ts index 31961125..e1224c87 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.spec.ts +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.spec.ts @@ -1,5 +1,6 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { RouterTestingModule } from '@angular/router/testing'; import { StoreModule } from '@ngrx/store'; import { CommonService } from '../../../../shared/services/common.service'; import { DataService } from '../../../../shared/services/data.service'; @@ -23,6 +24,7 @@ describe('CLNOnChainUtxosComponent', () => { imports: [ BrowserAnimationsModule, SharedModule, + RouterTestingModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [ diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts index b69e01aa..f2dba1d7 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts @@ -1,4 +1,5 @@ -import { Component, ViewChild, Input, OnChanges, AfterViewInit, OnDestroy, OnInit } from '@angular/core'; +import { Component, ViewChild, Input, AfterViewInit, OnDestroy, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; @@ -7,14 +8,16 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { UTXO } from '../../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert } from '../../../../store/rtl.actions'; -import { utxos } from '../../../store/cln.selector'; +import { clnPageSettings, utxos } from '../../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-on-chain-utxos', @@ -24,16 +27,22 @@ import { utxos } from '../../../store/cln.selector'; { provide: MatPaginatorIntl, useValue: getPaginatorLabel('UTXOs') } ] }) -export class CLNOnChainUtxosComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy { +export class CLNOnChainUtxosComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; @Input() numDustUTXOs = 0; @Input() isDustUTXO = false; - @Input() utxos: UTXO[]; + @Input() dustAmount = 1000; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'on_chain'; + public tableSetting: TableSetting = { tableId: 'utxos', recordsPerPage: PAGE_SIZE, sortBy: 'status', sortOrder: SortOrderEnum.DESCENDING }; public displayedColumns: any[] = []; - public listUTXOs: any; - public flgSticky = false; + public utxos: UTXO[]; + public dustUtxos: UTXO[]; + public listUTXOs: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -42,53 +51,66 @@ export class CLNOnChainUtxosComponent implements OnInit, OnChanges, AfterViewIni public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private router: Router, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['txid', 'value', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['txid', 'output', 'value', 'blockheight', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['txid', 'output', 'value', 'blockheight', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['txid', 'output', 'value', 'blockheight', 'actions']; - } } ngOnInit() { - this.store.select(utxos).pipe(takeUntil(this.unSubs[0])). - subscribe((utxosSeletor: { utxos: UTXO[], apiCallStatus: ApiCallStatusPayload }) => { + this.router.routeReuseStrategy.shouldReuseRoute = () => false; + this.router.onSameUrlNavigation = 'reload'; + this.tableSetting.tableId = this.isDustUTXO ? 'dust_utxos' : 'utxos'; + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; - this.apiCallStatus = utxosSeletor.apiCallStatus; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('status'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(utxos).pipe(takeUntil(this.unSubs[1])). + subscribe((utxosSelector: { utxos: UTXO[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = utxosSelector.apiCallStatus; if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } - this.logger.info(utxosSeletor); + if (utxosSelector.utxos && utxosSelector.utxos.length > 0) { + this.dustUtxos = utxosSelector.utxos?.filter((utxo) => +(utxo.value || 0) < this.dustAmount); + this.utxos = utxosSelector.utxos; + if (this.isDustUTXO) { + if (this.dustUtxos && this.dustUtxos.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { + this.loadUTXOsTable(this.dustUtxos); + } + } else { + this.displayedColumns.unshift('is_dust'); + if (this.utxos && this.utxos.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { + this.loadUTXOsTable(this.utxos); + } + } + } + this.logger.info(utxosSelector); }); } ngAfterViewInit() { - if (this.utxos && this.utxos.length > 0 && this.sort && this.paginator) { + if (this.utxos && this.utxos.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadUTXOsTable(this.utxos); } } - ngOnChanges() { - if (this.utxos && this.utxos.length > 0) { - this.loadUTXOsTable(this.utxos); - } - } - - applyFilter() { - this.listUTXOs.filter = this.selFilter.trim().toLowerCase(); - } - onUTXOClick(selUtxo: UTXO, event: any) { const reorderedUTXO = [ [{ key: 'txid', value: selUtxo.txid, title: 'Transaction ID', width: 100 }], @@ -109,12 +131,51 @@ export class CLNOnChainUtxosComponent implements OnInit, OnChanges, AfterViewIni })); } + applyFilter() { + this.listUTXOs.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : column === 'is_dust' ? 'Dust' : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.listUTXOs.filterPredicate = (rowData: UTXO, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'is_dust': + rowToFilter = (rowData?.value || 0) < this.dustAmount ? 'dust' : 'nondust'; + break; + + case 'status': + rowToFilter = rowData?.status?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'is_dust' || this.selFilterBy === 'status') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadUTXOsTable(utxos: any[]) { this.listUTXOs = new MatTableDataSource([...utxos]); - this.listUTXOs.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); + this.listUTXOs.sortingDataAccessor = (data: UTXO, sortHeaderId: string) => { + switch (sortHeaderId) { + case 'is_dust': return +(data.value || 0) < this.dustAmount; + default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; + } + }; this.listUTXOs.sort = this.sort; - this.listUTXOs.filterPredicate = (utxo: UTXO, fltr: string) => JSON.stringify(utxo).toLowerCase().includes(fltr); + this.listUTXOs.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.listUTXOs.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listUTXOs); } diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html index 511b4bb0..0947aa1e 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -75,7 +75,7 @@
-

Funding Transaction Id

+

Funding Transaction ID

{{channel.funding_txid}}
diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index 865a67b6..6e726e26 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -1,66 +1,104 @@ -
+
- - - +
+ + + {{getLabel(column)}} + + + + + +
- +
+ + + + - + - + - - - + + + - - - + + + - - - + + + - - + + + + + + + {{channel?.our_channel_reserve_satoshis | number:'1.0-0'}} - - + + + {{channel?.their_channel_reserve_satoshis | number:'1.0-0'}} - + + {{channel?.msatoshi_total/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} - + + {{channel?.spendable_msatoshi/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} + + + + + + + + - - + - - - +
+ + + Short Channel ID Short Channel ID -
- - +
{{channel?.short_channel_id}}
Alias Alias -
+
{{channel?.alias}}
Connected {{(channel?.connected) ? 'Connected' : 'Disconnected'}} ID +
+ {{channel?.id}} +
+
Private {{(channel?.private ? 'Private' : 'Public')}} Channel ID +
+ {{channel?.channel_id}} +
+
State {{channel?.state}}Funding Transaction ID +
+ {{channel?.funding_txid}} +
+
Local Balance (Sats) Connected{{(channel?.connected) ? 'Connected' : 'Disconnected'}}Local Reserve (Sats) - {{channel?.msatoshi_to_us/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} Remote Balance (Sats) Remote Reserve (Sats) - {{channel?.msatoshi_to_them/1000 | number:channel?.msatoshi_to_them < 1000 ? '1.0-4' : '1.0-0'}} Total mSatoshis Total (Sats) - {{channel?.msatoshi_total | number}} Spendable Satoshi Spendable (Sats) - {{channel?.spendable_msatoshi | number}} Local Balance (Sats) + {{channel?.msatoshi_to_us/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} Remote Balance (Sats) + {{channel?.msatoshi_to_them/1000 | number:channel?.msatoshi_to_them < 1000 ? '1.0-4' : '1.0-0'}} Balance Score + Balance Score
{{channel.balancedness || 0 | number}}
@@ -68,16 +106,16 @@
-
+
+
Update Fee Policy Download CSV
-
+ +
@@ -98,7 +136,7 @@
diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss index fa046b31..86a77caa 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss @@ -1,44 +1,10 @@ -@import "../../../../../shared/theme/styles/mixins.scss"; - -.mat-column-short_channel_id { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-alias { - flex: 0 0 20%; - width: 20%; - & .ellipsis-parent { - display: flex; - } +.mat-column-private { + max-width: 1.2rem; + width:1.2rem; } .mat-column-balancedness { - padding-left: 3rem; - flex: 0 0 22%; - width: 22%; -} - -.mat-column-state, .mat-column-msatoshi_to_us, .mat-column-msatoshi_to_them { - flex: 1 1 15%; - width: 15%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - @include for_screensize(phone) { - white-space: unset; - } -} - -.mat-column-actions { - min-height: 4.8rem; - & .bordered-box.table-actions-select { - flex: 0 0 100%; - @include for_screensize(phone) { - flex: 0 0 80%; - } - } + padding-left: 2rem; + min-width: 15rem; + max-width: 30rem; } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts index 43c702c3..be25e90a 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts @@ -9,7 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Channel, GetInfo, ChannelEdge, Balance } from '../../../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, FEE_RATE_TYPES, APICallStatusEnum, UI_MESSAGES } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, FEE_RATE_TYPES, APICallStatusEnum, UI_MESSAGES, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum, CLN_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; @@ -21,7 +21,9 @@ import { RTLEffects } from '../../../../../store/rtl.effects'; import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; import { channelLookup, closeChannel, updateChannel } from '../../../../store/cln.actions'; -import { channels, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; +import { channels, clnPageSettings, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-channel-open-table', @@ -37,16 +39,20 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public faEye = faEye; public faEyeSlash = faEyeSlash; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'open_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public totalBalance = 0; public displayedColumns: any[] = []; public channelsData: Channel[] = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public feeRateTypes = FEE_RATE_TYPES; public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -54,23 +60,10 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private clnEffects: CLNEffects, private commonService: CommonService, private router: Router) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private clnEffects: CLNEffects, private commonService: CommonService, private router: Router, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'msatoshi_to_us', 'msatoshi_to_them', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['short_channel_id', 'alias', 'msatoshi_to_us', 'msatoshi_to_them', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['short_channel_id', 'alias', 'msatoshi_to_us', 'msatoshi_to_them', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['short_channel_id', 'alias', 'msatoshi_to_us', 'msatoshi_to_them', 'balancedness', 'actions']; - } this.selFilter = this.router?.getCurrentNavigation()?.extras?.state?.filter ? this.router?.getCurrentNavigation()?.extras?.state?.filter : ''; } @@ -82,7 +75,26 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe this.totalBalance = infoBalNumpeersSelector.balance.totalBalance || 0; this.logger.info(infoBalNumpeersSelector); }); - this.store.select(channels).pipe(takeUntil(this.unSubs[1])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[1])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('private'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(channels).pipe(takeUntil(this.unSubs[2])). subscribe((channelsSeletor: { activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = channelsSeletor.apiCallStatus; @@ -159,7 +171,7 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } } })); - this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[1])).subscribe((confirmRes) => { + this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[3])).subscribe((confirmRes) => { if (confirmRes) { const base_fee = confirmRes[0].inputValue; const fee_rate = confirmRes[1].inputValue; @@ -178,7 +190,9 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe this.myChanPolicy = { fee_base_msat: 0, fee_rate_milli_msat: 0 }; } this.logger.info(this.myChanPolicy); - const titleMsg = 'Update fee policy for Channel: ' + ((!channelToUpdate.alias && !channelToUpdate.short_channel_id) ? channelToUpdate.channel_id : (channelToUpdate.alias && channelToUpdate.short_channel_id) ? channelToUpdate.alias + ' (' + channelToUpdate.short_channel_id + ')' : channelToUpdate.alias ? channelToUpdate.alias : channelToUpdate.short_channel_id); + const titleMsg = 'Update fee policy for Channel: ' + ((!channelToUpdate.alias && !channelToUpdate.short_channel_id) ? + channelToUpdate.channel_id : (channelToUpdate.alias && channelToUpdate.short_channel_id) ? channelToUpdate.alias + + ' (' + channelToUpdate.short_channel_id + ')' : channelToUpdate.alias ? channelToUpdate.alias : channelToUpdate.short_channel_id); const confirmationMsg = []; setTimeout(() => { this.store.dispatch(openConfirmation({ @@ -201,7 +215,7 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe }, 0); }); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[2])). + pipe(takeUntil(this.unSubs[4])). subscribe((confirmRes) => { if (confirmRes) { const base_fee = confirmRes[0].inputValue; @@ -223,14 +237,16 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe data: { type: AlertTypeEnum.CONFIRM, alertTitle: 'Close Channel', - titleMessage: 'Closing channel: ' + ((!channelToClose.alias && !channelToClose.short_channel_id) ? channelToClose.channel_id : (channelToClose.alias && channelToClose.short_channel_id) ? channelToClose.alias + ' (' + channelToClose.short_channel_id + ')' : channelToClose.alias ? channelToClose.alias : channelToClose.short_channel_id), + titleMessage: 'Closing channel: ' + ((!channelToClose.alias && !channelToClose.short_channel_id) ? channelToClose.channel_id : + (channelToClose.alias && channelToClose.short_channel_id) ? channelToClose.alias + ' (' + channelToClose.short_channel_id + ')' : + channelToClose.alias ? channelToClose.alias : channelToClose.short_channel_id), noBtnText: 'Cancel', yesBtnText: 'Close Channel' } } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(closeChannel({ payload: { id: channelToClose.id || '', channelId: channelToClose.channel_id || '', force: false } })); @@ -238,10 +254,6 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe }); } - applyFilter() { - this.channels.filter = this.selFilter.trim().toLowerCase(); - } - onChannelClick(selChannel: Channel, event: any) { this.store.dispatch(openAlert({ payload: { @@ -254,21 +266,58 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe })); } + applyFilter() { + this.channels.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.connected) ? 'connected' : 'disconnected') + (rowData.channel_id ? rowData.channel_id.toLowerCase() : '') + + (rowData.short_channel_id ? rowData.short_channel_id.toLowerCase() : '') + (rowData.id ? rowData.id.toLowerCase() : '') + (rowData.alias ? rowData.alias.toLowerCase() : '') + + (rowData.private ? 'private' : 'public') + (rowData.state ? rowData.state.toLowerCase() : '') + + (rowData.funding_txid ? rowData.funding_txid.toLowerCase() : '') + (rowData.msatoshi_to_us ? rowData.msatoshi_to_us : '') + + (rowData.msatoshi_total ? rowData.msatoshi_total : '') + (rowData.their_channel_reserve_satoshis ? rowData.their_channel_reserve_satoshis : '') + + (rowData.our_channel_reserve_satoshis ? rowData.our_channel_reserve_satoshis : '') + (rowData.spendable_msatoshi ? rowData.spendable_msatoshi : ''); + break; + + case 'private': + rowToFilter = rowData?.private ? 'private' : 'public'; + break; + + case 'connected': + rowToFilter = rowData?.connected ? 'connected' : 'disconnected'; + break; + + case 'msatoshi_total': + case 'spendable_msatoshi': + case 'msatoshi_to_us': + case 'msatoshi_to_them': + rowToFilter = ((+(rowData[this.selFilterBy] || 0)) / 1000)?.toString() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'connected' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadChannelsTable(mychannels) { - mychannels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? 1 : -1))); this.channels = new MatTableDataSource([...mychannels]); - this.channels.filterPredicate = (channel: Channel, fltr: string) => { - const newChannel = ((channel.connected) ? 'connected' : 'disconnected') + (channel.channel_id ? channel.channel_id.toLowerCase() : '') + - (channel.short_channel_id ? channel.short_channel_id.toLowerCase() : '') + (channel.id ? channel.id.toLowerCase() : '') + (channel.alias ? channel.alias.toLowerCase() : '') + - (channel.private ? 'private' : 'public') + (channel.state ? channel.state.toLowerCase() : '') + - (channel.funding_txid ? channel.funding_txid.toLowerCase() : '') + (channel.msatoshi_to_us ? channel.msatoshi_to_us : '') + - (channel.msatoshi_total ? channel.msatoshi_total : '') + (channel.their_channel_reserve_satoshis ? channel.their_channel_reserve_satoshis : '') + - (channel.our_channel_reserve_satoshis ? channel.our_channel_reserve_satoshis : '') + (channel.spendable_msatoshi ? channel.spendable_msatoshi : ''); - return newChannel.includes(fltr); - }; this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.channels); } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index 71e7df2c..f6040e29 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -1,59 +1,108 @@ -
+
- - - +
+ + + {{getLabel(column)}} + + + + + +
- - - - +
Short Channel ID {{channel?.short_channel_id}}
+ + + - - + + - - - + + + - - - + + + + + + + + + + + - - + + - - + + + + + + + {{channel?.their_channel_reserve_satoshis | number:'1.0-0'}} - + + {{channel?.msatoshi_total/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} - + + + + + + + + + + {{channel?.msatoshi_to_them/1000 | number:channel?.msatoshi_to_them < 1000 ? '1.0-4' : '1.0-0'}} - - - +
+ + + Alias {{channel?.alias}}Alias +
+ {{channel?.alias}} +
+
Connected {{(channel?.connected) ? 'Connected' : 'Disconnected'}} ID +
+ {{channel?.id}} +
+
Private {{(channel?.private ? 'Private' : 'Public')}} Channel ID +
+ {{channel?.channel_id}} +
+
Funding Transaction ID +
+ {{channel?.funding_txid}} +
+
Connected{{(channel?.connected) ? 'Connected' : 'Disconnected'}} State {{CLNChannelPendingState[channel?.state]}} State{{CLNChannelPendingState[channel?.state]}} mSatoshi To Us Local Reserve (Sats) + {{channel?.our_channel_reserve_satoshis | number:'1.0-0'}} Remote Reserve (Sats) - {{channel?.msatoshi_to_us | number}} Total (Sats) Total (Sats) - {{channel?.msatoshi_total/1000 | number}} Spendable Satoshi Spendable (Sats) + {{channel?.spendable_msatoshi/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} Local Balance (Sats) + {{channel?.msatoshi_to_us/1000 | number:channel?.msatoshi_to_us < 1000 ? '1.0-4' : '1.0-0'}} Remote Balance (Sats) - {{channel?.spendable_msatoshi | number}} -
+
+
Download CSV
-
-
+ +
+
View Info @@ -72,7 +121,7 @@
diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss index e04787fd..2b4219f5 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss @@ -1,12 +1,4 @@ -@import "../../../../../shared/theme/styles/mixins.scss"; - -.mat-column-actions { - min-height: 4.8rem; -} - -.mat-column-state { - flex: 1 1 15%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; +.mat-column-private { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index 7eeba308..18b89c88 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -5,9 +5,10 @@ import { Store } from '@ngrx/store'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { faEye, faEyeSlash } from '@fortawesome/free-solid-svg-icons'; import { GetInfo, Channel, Balance } from '../../../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, AlertTypeEnum, APICallStatusEnum, CLNChannelPendingState } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, AlertTypeEnum, APICallStatusEnum, CLNChannelPendingState, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; @@ -18,7 +19,9 @@ import { CLNBumpFeeComponent } from '../../bump-fee-modal/bump-fee.component'; import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; import { closeChannel } from '../../../../store/cln.actions'; -import { channels, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; +import { channels, clnPageSettings, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-channel-pending-table', @@ -32,17 +35,23 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public faEye = faEye; + public faEyeSlash = faEyeSlash; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'pending_inactive_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public isCompatibleVersion = false; public totalBalance = 0; public displayedColumns: any[] = []; public channelsData: Channel[] = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public feeRateTypes = FEE_RATE_TYPES; public selFilter = ''; - public flgSticky = false; public CLNChannelPendingState = CLNChannelPendingState; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; @@ -53,21 +62,8 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'state', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'connected', 'state', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'connected', 'state', 'msatoshi_total', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'connected', 'state', 'msatoshi_total', 'actions']; - } } ngOnInit() { @@ -81,7 +77,26 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O this.totalBalance = infoBalNumpeersSelector.balance.totalBalance || 0; this.logger.info(infoBalNumpeersSelector); }); - this.store.select(channels).pipe(takeUntil(this.unSubs[1])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[1])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('private'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(channels).pipe(takeUntil(this.unSubs[2])). subscribe((channelsSeletor: { activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = channelsSeletor.apiCallStatus; @@ -103,10 +118,6 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O } } - applyFilter() { - this.channels.filter = this.selFilter.trim().toLowerCase(); - } - onBumpFee(selChannel: Channel) { this.store.dispatch(openAlert({ payload: { @@ -136,14 +147,16 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O data: { type: AlertTypeEnum.CONFIRM, alertTitle: 'Force Close Channel', - titleMessage: 'Force closing channel: ' + ((!channelToClose.alias && !channelToClose.short_channel_id) ? channelToClose.channel_id : (channelToClose.alias && channelToClose.short_channel_id) ? channelToClose.alias + ' (' + channelToClose.short_channel_id + ')' : channelToClose.alias ? channelToClose.alias : channelToClose.short_channel_id), + titleMessage: 'Force closing channel: ' + ((!channelToClose.alias && !channelToClose.short_channel_id) ? channelToClose.channel_id : + (channelToClose.alias && channelToClose.short_channel_id) ? channelToClose.alias + ' (' + channelToClose.short_channel_id + ')' : + channelToClose.alias ? channelToClose.alias : channelToClose.short_channel_id), noBtnText: 'Cancel', yesBtnText: 'Force Close' } } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[2])). + pipe(takeUntil(this.unSubs[3])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(closeChannel({ payload: { id: channelToClose.id!, channelId: channelToClose.channel_id!, force: true } })); @@ -151,18 +164,57 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O }); } + applyFilter() { + this.channels.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.connected) ? 'connected' : 'disconnected') + (rowData.channel_id ? rowData.channel_id.toLowerCase() : '') + + (rowData.short_channel_id ? rowData.short_channel_id.toLowerCase() : '') + (rowData.id ? rowData.id.toLowerCase() : '') + (rowData.alias ? rowData.alias.toLowerCase() : '') + + (rowData.private ? 'private' : 'public') + ((rowData.state && this.CLNChannelPendingState[rowData.state]) ? this.CLNChannelPendingState[rowData.state].toLowerCase() : '') + + (rowData.funding_txid ? rowData.funding_txid.toLowerCase() : '') + (rowData.msatoshi_to_us ? rowData.msatoshi_to_us : '') + + (rowData.msatoshi_total ? rowData.msatoshi_total : '') + (rowData.their_channel_reserve_satoshis ? rowData.their_channel_reserve_satoshis : '') + + (rowData.our_channel_reserve_satoshis ? rowData.our_channel_reserve_satoshis : '') + (rowData.spendable_msatoshi ? rowData.spendable_msatoshi : ''); + break; + + case 'private': + rowToFilter = rowData?.private ? 'private' : 'public'; + break; + + case 'connected': + rowToFilter = rowData?.connected ? 'connected' : 'disconnected'; + break; + + case 'msatoshi_total': + case 'spendable_msatoshi': + case 'msatoshi_to_us': + case 'msatoshi_to_them': + rowToFilter = ((+(rowData[this.selFilterBy] || 0)) / 1000)?.toString() || ''; + break; + + case 'state': + rowToFilter = rowData?.state ? this.CLNChannelPendingState[rowData?.state] : ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'connected' || this.selFilterBy === 'state') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadChannelsTable(mychannels) { - mychannels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? 1 : -1))); this.channels = new MatTableDataSource([...mychannels]); - this.channels.filterPredicate = (channel: Channel, fltr: string) => { - const newChannel = ((channel.connected) ? 'connected' : 'disconnected') + (channel.channel_id ? channel.channel_id.toLowerCase() : '') + - (channel.short_channel_id ? channel.short_channel_id.toLowerCase() : '') + (channel.id ? channel.id.toLowerCase() : '') + (channel.alias ? channel.alias.toLowerCase() : '') + - (channel.private ? 'private' : 'public') + ((channel.state && this.CLNChannelPendingState[channel.state]) ? this.CLNChannelPendingState[channel.state].toLowerCase() : '') + - (channel.funding_txid ? channel.funding_txid.toLowerCase() : '') + (channel.msatoshi_to_us ? channel.msatoshi_to_us : '') + - (channel.msatoshi_total ? channel.msatoshi_total : '') + (channel.their_channel_reserve_satoshis ? channel.their_channel_reserve_satoshis : '') + - (channel.our_channel_reserve_satoshis ? channel.our_channel_reserve_satoshis : '') + (channel.spendable_msatoshi ? channel.spendable_msatoshi : ''); - return newChannel.includes(fltr); - }; this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => { switch (sortHeaderId) { @@ -173,7 +225,10 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; + this.setFilterPredicate(); + this.applyFilter(); this.logger.info(this.channels); } diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts index c8df9c7e..afa89dde 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -15,6 +15,8 @@ import { APICallStatusEnum, CLNActions, FEE_RATE_TYPES, ScreenSizeEnum } from '. import { RTLState } from '../../../../store/rtl.state'; import { saveNewChannel } from '../../../store/cln.actions'; +import { clnNodeSettings } from '../../../store/cln.selector'; +import { SelNodeChild } from '../../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-cln-open-channel', @@ -28,6 +30,7 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { public faExclamationTriangle = faExclamationTriangle; public alertTitle: string; public isCompatibleVersion = false; + public selNode: SelNodeChild | null = {}; public peer: Peer | null; public peers: Peer[]; public sortedPeers: Peer[]; @@ -50,7 +53,7 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { public minConfValue = null; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNOpenChannelAlert, private store: Store, private actions: Actions, private decimalPipe: DecimalPipe, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); @@ -70,11 +73,16 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.totalBalance = 0; this.utxos = []; this.peer = null; - this.peers = []; + this.peers = []; } this.alertTitle = this.data.alertTitle || 'Alert'; + this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: SelNodeChild | null) => { + this.selNode = nodeSettings; + this.isPrivate = !!nodeSettings?.unannouncedChannels; + }); this.actions.pipe( - takeUntil(this.unSubs[0]), + takeUntil(this.unSubs[1]), filter((action) => action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN || action.type === CLNActions.FETCH_CHANNELS_CLN)). subscribe((action: any) => { if (action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN && action.payload.status === APICallStatusEnum.ERROR && action.payload.action === 'SaveNewChannel') { @@ -91,7 +99,7 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { y = p2.alias ? p2.alias.toLowerCase() : p1.id ? p1.id.toLowerCase() : ''; return ((x < y) ? -1 : ((x > y) ? 1 : 0)); }); - this.filteredPeers = this.selectedPeer.valueChanges.pipe(takeUntil(this.unSubs[1]), startWith(''), + this.filteredPeers = this.selectedPeer.valueChanges.pipe(takeUntil(this.unSubs[2]), startWith(''), map((peer) => (typeof peer === 'string' ? peer : peer.alias ? peer.alias : peer.id)), map((alias) => (alias ? this.filterPeers(alias) : this.sortedPeers.slice())) ); @@ -131,7 +139,7 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.minConfValue = null; this.selectedPeer.setValue(''); this.fundingAmount = null; - this.isPrivate = false; + this.isPrivate = !!this.selNode?.unannouncedChannels; this.channelConnectionError = ''; this.advancedTitle = 'Advanced Options'; this.form.resetForm(); diff --git a/src/app/cln/peers-channels/connect-peer/connect-peer.component.html b/src/app/cln/peers-channels/connect-peer/connect-peer.component.html index 387b8ba5..d43a321e 100644 --- a/src/app/cln/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/cln/peers-channels/connect-peer/connect-peer.component.html @@ -11,7 +11,7 @@
- {{peerFormLabel}} + {{peerFormLabel}} Address is required. diff --git a/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts b/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts index 10e39ff4..0a6d4430 100644 --- a/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts +++ b/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts @@ -16,6 +16,8 @@ import { APICallStatusEnum, CLNActions, FEE_RATE_TYPES, ScreenSizeEnum } from '. import { RTLState } from '../../../store/rtl.state'; import { saveNewChannel, saveNewPeer } from '../../store/cln.actions'; +import { clnNodeSettings } from '../../store/cln.selector'; +import { SelNodeChild } from '../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-cln-connect-peer', @@ -27,6 +29,7 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { @ViewChild('peersForm', { static: false }) form: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public selNode: SelNodeChild | null = {}; public peerAddress = ''; public totalBalance = 0; public feeRateTypes = FEE_RATE_TYPES; @@ -43,7 +46,7 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { peerFormGroup: FormGroup; channelFormGroup: FormGroup; statusFormGroup: FormGroup; - private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNOpenChannelAlert, private store: Store, private formBuilder: FormBuilder, private actions: Actions, private logger: LoggerService, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); @@ -64,7 +67,7 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { }); this.channelFormGroup = this.formBuilder.group({ fundingAmount: ['', [Validators.required, Validators.min(1), Validators.max(this.totalBalance)]], - isPrivate: [false], + isPrivate: [!!this.selNode?.unannouncedChannels], selFeeRate: [null], customFeeRate: [null], flgMinConf: [false], @@ -72,7 +75,12 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { hiddenAmount: ['', [Validators.required]] }); this.statusFormGroup = this.formBuilder.group({}); - this.channelFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[0])).subscribe((flg) => { + this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: SelNodeChild | null) => { + this.selNode = nodeSettings; + this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.unannouncedChannels); + }); + this.channelFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((flg) => { if (flg) { this.channelFormGroup.controls.selFeeRate.setValue(null); this.channelFormGroup.controls.selFeeRate.disable(); @@ -87,7 +95,7 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { this.channelFormGroup.controls.minConfValue.setValidators(null); } }); - this.channelFormGroup.controls.selFeeRate.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((feeRate) => { + this.channelFormGroup.controls.selFeeRate.valueChanges.pipe(takeUntil(this.unSubs[2])).subscribe((feeRate) => { this.channelFormGroup.controls.customFeeRate.setValue(null); this.channelFormGroup.controls.customFeeRate.reset(); if (feeRate === 'customperkb' && !this.channelFormGroup.controls.flgMinConf.value) { @@ -97,7 +105,7 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { } }); this.actions.pipe( - takeUntil(this.unSubs[2]), + takeUntil(this.unSubs[3]), filter((action) => action.type === CLNActions.NEWLY_ADDED_PEER_CLN || action.type === CLNActions.FETCH_CHANNELS_CLN || action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN)). subscribe((action: any) => { if (action.type === CLNActions.NEWLY_ADDED_PEER_CLN) { diff --git a/src/app/cln/peers-channels/peers/peers.component.html b/src/app/cln/peers-channels/peers/peers.component.html index d4acd5e1..da20770e 100644 --- a/src/app/cln/peers-channels/peers/peers.component.html +++ b/src/app/cln/peers-channels/peers/peers.component.html @@ -4,50 +4,66 @@
-
+
Connected Peers
- -
- -
-
+
+ + + {{getLabel(column)}} + + + + + +
-
+
- - - - + + + + - + - - + + + + + + @@ -44,16 +67,16 @@ - - @@ -64,7 +87,7 @@ - +
Alias + + + + + + + + - - + - - + - - - +
- {{peer?.alias}} + Alias +
+ {{peer?.alias}} +
ID - {{peer?.id}} + ID +
+ {{peer?.id}} +
Network Address - {{addr}},
+
Network Address +
+ {{addr}},
+
-
+
+
Download CSV
-
-
+ +
+
View Info @@ -66,7 +82,7 @@
diff --git a/src/app/cln/peers-channels/peers/peers.component.scss b/src/app/cln/peers-channels/peers/peers.component.scss index 680fd8b3..259e0818 100644 --- a/src/app/cln/peers-channels/peers/peers.component.scss +++ b/src/app/cln/peers-channels/peers/peers.component.scss @@ -1,24 +1,4 @@ -.mat-column-alias { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-id { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - padding-left: 2rem; -} - -.mat-column-netaddr { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-connected { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/cln/peers-channels/peers/peers.component.ts b/src/app/cln/peers-channels/peers/peers.component.ts index 66ca773b..a70e6aa0 100644 --- a/src/app/cln/peers-channels/peers/peers.component.ts +++ b/src/app/cln/peers-channels/peers/peers.component.ts @@ -10,7 +10,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Peer, GetInfo, Balance } from '../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNActions } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNActions, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; @@ -21,7 +21,9 @@ import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { detachPeer } from '../../store/cln.actions'; -import { nodeInfoAndBalance, peers } from '../../store/cln.selector'; +import { clnPageSettings, nodeInfoAndBalance, peers } from '../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-peers', @@ -36,14 +38,18 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public faUsers = faUsers; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'peers', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public newlyAddedPeer = ''; public displayedColumns: any[] = []; public peerAddress: string | null = ''; public peersData: Peer[] = []; - public peers: any; + public peers: any = new MatTableDataSource([]); public information: GetInfo = {}; public availableBalance = 0; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -52,23 +58,10 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private actions: Actions, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private actions: Actions, private commonService: CommonService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'id', 'netaddr', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'id', 'netaddr', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'id', 'netaddr', 'actions']; - } } ngOnInit() { @@ -77,7 +70,26 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { this.information = infoBalSelector.information; this.availableBalance = infoBalSelector.balance.totalBalance || 0; }); - this.store.select(peers).pipe(takeUntil(this.unSubs[1])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[1])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('connected'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(peers).pipe(takeUntil(this.unSubs[2])). subscribe((peersSeletor: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = peersSeletor.apiCallStatus; @@ -92,7 +104,7 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { }); this.actions. pipe( - takeUntil(this.unSubs[2]), + takeUntil(this.unSubs[3]), filter((action) => action.type === CLNActions.SET_PEERS_CLN) ).subscribe((setPeers: any) => { this.peerAddress = null; @@ -168,7 +180,7 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[4])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(detachPeer({ payload: { id: peerToDetach.id!, force: false } })); @@ -180,6 +192,35 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { this.peers.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.peers.filterPredicate = (rowData: Peer, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'connected': + rowToFilter = rowData?.connected ? 'connected' : 'disconnected'; + break; + + case 'netaddr': + rowToFilter = rowData.netaddr ? rowData.netaddr.reduce((acc, curr) => acc + curr, ' ') : ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'connected' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadPeersTable(peersArr: Peer[]) { this.peers = new MatTableDataSource([...peersArr]); this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => { @@ -196,8 +237,9 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { } }; this.peers.sort = this.sort; - this.peers.filterPredicate = (peer: Peer, fltr: string) => JSON.stringify(peer).toLowerCase().includes(fltr); + this.peers.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.peers.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/cln/reports/routing/routing-report.component.html b/src/app/cln/reports/routing/routing-report.component.html index 5ef997f7..0a9921f6 100644 --- a/src/app/cln/reports/routing/routing-report.component.html +++ b/src/app/cln/reports/routing/routing-report.component.html @@ -42,7 +42,7 @@
- +
diff --git a/src/app/cln/reports/transactions/transactions-report.component.html b/src/app/cln/reports/transactions/transactions-report.component.html index 2670e1b6..2d2b866b 100644 --- a/src/app/cln/reports/transactions/transactions-report.component.html +++ b/src/app/cln/reports/transactions/transactions-report.component.html @@ -35,7 +35,7 @@
- +
diff --git a/src/app/cln/reports/transactions/transactions-report.component.ts b/src/app/cln/reports/transactions/transactions-report.component.ts index bde15fa0..4e4a475c 100644 --- a/src/app/cln/reports/transactions/transactions-report.component.ts +++ b/src/app/cln/reports/transactions/transactions-report.component.ts @@ -5,13 +5,14 @@ import { Store } from '@ngrx/store'; import { Payment, Invoice, ListInvoices } from '../../../shared/models/clnModels'; import { CommonService } from '../../../shared/services/common.service'; -import { MONTHS, ScreenSizeEnum, SCROLL_RANGES } from '../../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, CLN_DEFAULT_PAGE_SETTINGS, MONTHS, PAGE_SIZE, ScreenSizeEnum, SCROLL_RANGES, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { fadeIn } from '../../../shared/animation/opacity-animation'; import { RTLState } from '../../../store/rtl.state'; -import { payments, listInvoices } from '../../store/cln.selector'; +import { payments, listInvoices, clnPageSettings } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; +import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; @Component({ selector: 'rtl-cln-transactions-report', @@ -26,6 +27,10 @@ export class CLNTransactionsReportComponent implements OnInit, OnDestroy { public secondsInADay = 24 * 60 * 60; public payments: Payment[] = []; public invoices: Invoice[] = []; + public colWidth = '20rem'; + public PAGE_ID = 'reports'; + public tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING }; + public displayedColumns: any[] = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; public transactionsReportSummary = { paymentsSelectedPeriod: 0, invoicesSelectedPeriod: 0, amountPaidSelectedPeriod: 0, amountReceivedSelectedPeriod: 0 }; public transactionFilterValue = ''; public today = new Date(Date.now()); @@ -41,14 +46,26 @@ export class CLNTransactionsReportComponent implements OnInit, OnDestroy { public showYAxisLabel = true; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); this.showYAxisLabel = !(this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM); - this.store.select(payments).pipe(takeUntil(this.unSubs[0]), + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[1]), withLatestFrom(this.store.select(listInvoices))). subscribe(([paymentsSelector, invoicesSelector]: [{ payments: Payment[], apiCallStatus: ApiCallStatusPayload }, { listInvoices: ListInvoices, apiCallStatus: ApiCallStatusPayload }]) => { this.payments = paymentsSelector.payments; @@ -56,7 +73,7 @@ export class CLNTransactionsReportComponent implements OnInit, OnDestroy { this.transactionsReportData = this.filterTransactionsForSelectedPeriod(this.startDate, this.endDate); this.transactionsNonZeroReportData = this.prepareTableData(); }); - this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[1])).subscribe((CONTAINER_SIZE) => { + this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[2])).subscribe((CONTAINER_SIZE) => { switch (this.screenSize) { case ScreenSizeEnum.MD: this.screenPaddingX = CONTAINER_SIZE.width / 10; diff --git a/src/app/cln/routing/failed-transactions/failed-transactions.component.html b/src/app/cln/routing/failed-transactions/failed-transactions.component.html index 1500eac2..5134edbb 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.html +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.html @@ -7,9 +7,16 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
@@ -24,13 +31,29 @@
{{(fhEvent?.resolved_time * 1000) | date:'dd/MMM/y HH:mm'}} In Channel ID{{fhEvent?.in_channel}}In Channel{{fhEvent?.in_channel_alias}} + + {{fhEvent?.in_channel_alias}} + + Out Channel{{fhEvent?.out_channel_alias}}Out Channel ID{{fhEvent?.out_channel}} Out Channel + + {{fhEvent?.out_channel_alias}} + + Amount In (Sats) {{fhEvent?.in_msatoshi/1000 | number:fhEvent?.in_msatoshi < 1000 ? '1.0-4' : '1.0-0'}}{{fhEvent?.fee | number:'1.0-0'}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/cln/routing/failed-transactions/failed-transactions.component.scss b/src/app/cln/routing/failed-transactions/failed-transactions.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.scss +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/routing/failed-transactions/failed-transactions.component.ts b/src/app/cln/routing/failed-transactions/failed-transactions.component.ts index e56bf3df..2dc84c12 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.ts +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.ts @@ -9,7 +9,7 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { ForwardingEvent, ListForwards } from '../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNForwardingEventsStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNForwardingEventsStatusEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; @@ -17,8 +17,10 @@ import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getForwardingHistory } from '../../store/cln.actions'; -import { failedForwardingHistory } from '../../store/cln.selector'; +import { clnPageSettings, failedForwardingHistory } from '../../store/cln.selector'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-failed-history', @@ -32,12 +34,16 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'routing'; + public tableSetting: TableSetting = { tableId: 'failed', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING }; public faExclamationTriangle = faExclamationTriangle; - public failedEvents: any; + public failedEvents: any[] = []; public errorMessage = ''; public displayedColumns: any[] = []; - public failedForwardingEvents: any; - public flgSticky = false; + public failedForwardingEvents: any = new MatTableDataSource([]); public selFilter = ''; public totalFailedTransactions = 0; public pageSize = PAGE_SIZE; @@ -48,25 +54,33 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private router: Router) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private router: Router, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['received_time', 'in_channel', 'in_msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM || this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['received_time', 'in_channel', 'out_channel', 'in_msatoshi', 'out_msatoshi', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['received_time', 'resolved_time', 'in_channel', 'out_channel', 'in_msatoshi', 'out_msatoshi', 'fee', 'actions']; - } } ngOnInit() { this.router.routeReuseStrategy.shouldReuseRoute = () => false; this.router.onSameUrlNavigation = 'reload'; this.store.dispatch(getForwardingHistory({ payload: { status: CLNForwardingEventsStatusEnum.FAILED } })); - this.store.select(failedForwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(failedForwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((ffhSeletor: { failedForwardingHistory: ListForwards, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = ffhSeletor.apiCallStatus; @@ -75,7 +89,7 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On } this.totalFailedTransactions = ffhSeletor.failedForwardingHistory.totalForwards || 0; this.failedEvents = ffhSeletor.failedForwardingHistory.listForwards || []; - if (this.failedEvents.length > 0 && this.sort && this.paginator) { + if (this.failedEvents.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadFailedEventsTable(this.failedEvents); } this.logger.info(ffhSeletor); @@ -112,21 +126,53 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On })); } + applyFilter() { + this.failedForwardingEvents.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.failedForwardingEvents.filterPredicate = (rowData: ForwardingEvent, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = (rowData.received_time ? this.datePipe.transform(new Date(rowData.received_time * 1000), 'dd/MMM/YYYY HH:mm')!.toLowerCase() : '') + + (rowData.resolved_time ? this.datePipe.transform(new Date(rowData.resolved_time * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + + (rowData.payment_hash ? rowData.payment_hash.toLowerCase() : '') + + (rowData.in_channel ? rowData.in_channel.toLowerCase() : '') + (rowData.out_channel ? rowData.out_channel.toLowerCase() : '') + + (rowData.in_channel_alias ? rowData.in_channel_alias.toLowerCase() : '') + (rowData.out_channel_alias ? rowData.out_channel_alias.toLowerCase() : '') + + (rowData.in_msatoshi ? (rowData.in_msatoshi / 1000) : '') + (rowData.out_msatoshi ? (rowData.out_msatoshi / 1000) : '') + (rowData.fee ? rowData.fee : ''); + break; + + case 'received_time': + case 'resolved_time': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'in_msatoshi': + case 'out_msatoshi': + rowToFilter = ((+(rowData[this.selFilterBy] || 0)) / 1000)?.toString() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadFailedEventsTable(forwardingEvents: ForwardingEvent[]) { this.failedForwardingEvents = new MatTableDataSource([...forwardingEvents]); this.failedForwardingEvents.sort = this.sort; this.failedForwardingEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.failedForwardingEvents.filterPredicate = (event: ForwardingEvent, fltr: string) => { - const newEvent = - (event.received_time ? this.datePipe.transform(new Date(event.received_time * 1000), 'dd/MMM/YYYY HH:mm')!.toLowerCase() : '') + - (event.resolved_time ? this.datePipe.transform(new Date(event.resolved_time * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + - (event.payment_hash ? event.payment_hash.toLowerCase() : '') + - (event.in_channel ? event.in_channel.toLowerCase() : '') + (event.out_channel ? event.out_channel.toLowerCase() : '') + - (event.in_channel_alias ? event.in_channel_alias.toLowerCase() : '') + (event.out_channel_alias ? event.out_channel_alias.toLowerCase() : '') + - (event.in_msatoshi ? (event.in_msatoshi / 1000) : '') + (event.out_msatoshi ? (event.out_msatoshi / 1000) : '') + (event.fee ? event.fee : ''); - return newEvent?.includes(fltr) || false; - }; + this.failedForwardingEvents.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.failedForwardingEvents.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.failedForwardingEvents); } @@ -137,10 +183,6 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On } } - applyFilter() { - this.failedForwardingEvents.filter = this.selFilter.trim().toLowerCase(); - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/routing/forwarding-history/forwarding-history.component.html b/src/app/cln/routing/forwarding-history/forwarding-history.component.html index a0ded86d..b624d9a8 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.html @@ -2,17 +2,20 @@
{{errorMessage}}
- - - +
+ + + {{getLabel(column)}} + + + + + +
- - - - @@ -22,12 +25,36 @@ + + + + - + + + + + - + + + + + @@ -42,16 +69,16 @@ - - @@ -62,7 +89,7 @@ - +
Status{{fhEvent?.status}} Received Time {{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}{{(fhEvent?.resolved_time * 1000) | date:'dd/MMM/y HH:mm'}} In Channel ID{{fhEvent?.in_channel}}In Channel{{fhEvent?.in_channel_alias}} +
+ {{fhEvent?.in_channel_alias}} +
+
Out Channel ID{{fhEvent?.out_channel}}Out Channel{{fhEvent?.out_channel_alias}} +
+ {{fhEvent?.out_channel_alias}} +
+
Payment Hash +
+ {{fhEvent?.payment_hash}} +
+
Amount In (Sats){{fhEvent?.fee | number}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/cln/routing/forwarding-history/forwarding-history.component.scss b/src/app/cln/routing/forwarding-history/forwarding-history.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.scss +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts index 871db925..f86ae042 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts @@ -9,15 +9,17 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { ForwardingEvent, ListForwards } from '../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNForwardingEventsStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNForwardingEventsStatusEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; -import { forwardingHistory } from '../../store/cln.selector'; +import { clnPageSettings, forwardingHistory } from '../../store/cln.selector'; import { getForwardingHistory } from '../../store/cln.actions'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-forwarding-history', @@ -31,12 +33,17 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + @Input() pageId = 'routing'; + @Input() tableId = 'forwarding_history'; @Input() eventsData = []; - @Input() filterValue = ''; + @Input() selFilter = ''; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public tableSetting: TableSetting = { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING }; public successfulEvents: ForwardingEvent[] = []; public displayedColumns: any[] = []; - public forwardingHistoryEvents: any; - public flgSticky = false; + public forwardingHistoryEvents: any = new MatTableDataSource([]); public totalForwardedTransactions = 0; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; @@ -47,29 +54,38 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private router: Router) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private router: Router, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['in_msatoshi', 'out_msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM || this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['received_time', 'in_msatoshi', 'out_msatoshi', 'fee', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['received_time', 'resolved_time', 'in_channel', 'out_channel', 'in_msatoshi', 'out_msatoshi', 'fee', 'actions']; - } } ngOnInit() { this.router.routeReuseStrategy.shouldReuseRoute = () => false; this.router.onSameUrlNavigation = 'reload'; + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting.tableId = this.tableId; + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); this.store.pipe(take(1)).subscribe((state) => { if (state.cln.apisCallStatus.FetchForwardingHistoryS.status === APICallStatusEnum.UN_INITIATED && !state.cln.forwardingHistory.listForwards?.length) { this.store.dispatch(getForwardingHistory({ payload: { status: CLNForwardingEventsStatusEnum.SETTLED } })); } }); - this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((fhSeletor: { forwardingHistory: ListForwards, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = fhSeletor.apiCallStatus; @@ -79,7 +95,7 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi if (this.eventsData.length <= 0 && fhSeletor.forwardingHistory.listForwards) { this.totalForwardedTransactions = fhSeletor.forwardingHistory.totalForwards || 0; this.successfulEvents = fhSeletor.forwardingHistory.listForwards || []; - if (this.successfulEvents.length > 0 && this.sort && this.paginator) { + if (this.successfulEvents.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadForwardingEventsTable(this.successfulEvents); } this.logger.info(fhSeletor); @@ -104,7 +120,8 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi this.loadForwardingEventsTable(this.successfulEvents); } } - if (changes.filterValue && !changes.filterValue.firstChange) { + if (changes.selFilter && !changes.selFilter.firstChange) { + this.selFilterBy = 'all'; this.applyFilter(); } } @@ -132,20 +149,55 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi })); } + applyFilter() { + if (this.forwardingHistoryEvents) { + this.forwardingHistoryEvents.filter = this.selFilter.trim().toLowerCase(); + } + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.forwardingHistoryEvents.filterPredicate = (rowData: ForwardingEvent, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = (rowData.received_time ? this.datePipe.transform(new Date(rowData.received_time * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() + ' ' : '') + + (rowData.resolved_time ? this.datePipe.transform(new Date(rowData.resolved_time * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() + ' ' : '') + + (rowData.in_channel ? rowData.in_channel.toLowerCase() + ' ' : '') + (rowData.out_channel ? rowData.out_channel.toLowerCase() + ' ' : '') + + (rowData.in_channel_alias ? rowData.in_channel_alias.toLowerCase() + ' ' : '') + (rowData.out_channel_alias ? rowData.out_channel_alias.toLowerCase() + ' ' : '') + + (rowData.in_msatoshi ? (rowData.in_msatoshi / 1000) + ' ' : '') + (rowData.out_msatoshi ? (rowData.out_msatoshi / 1000) + ' ' : '') + (rowData.fee ? rowData.fee + ' ' : ''); + break; + + case 'received_time': + case 'resolved_time': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'in_msatoshi': + case 'out_msatoshi': + rowToFilter = ((+(rowData[this.selFilterBy] || 0)) / 1000)?.toString() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadForwardingEventsTable(forwardingEvents: ForwardingEvent[]) { this.forwardingHistoryEvents = new MatTableDataSource([...forwardingEvents]); this.forwardingHistoryEvents.sort = this.sort; this.forwardingHistoryEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.forwardingHistoryEvents.filterPredicate = (event: ForwardingEvent, fltr: string) => { - const newEvent = (event.received_time ? this.datePipe.transform(new Date(event.received_time * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() + ' ' : '') + - (event.resolved_time ? this.datePipe.transform(new Date(event.resolved_time * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() + ' ' : '') + - (event.in_channel ? event.in_channel.toLowerCase() + ' ' : '') + (event.out_channel ? event.out_channel.toLowerCase() + ' ' : '') + - (event.in_channel_alias ? event.in_channel_alias.toLowerCase() + ' ' : '') + (event.out_channel_alias ? event.out_channel_alias.toLowerCase() + ' ' : '') + - (event.in_msatoshi ? (event.in_msatoshi / 1000) + ' ' : '') + (event.out_msatoshi ? (event.out_msatoshi / 1000) + ' ' : '') + (event.fee ? event.fee + ' ' : ''); - return newEvent.includes(fltr); - }; + this.forwardingHistoryEvents.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.forwardingHistoryEvents.paginator = this.paginator; - this.applyFilter(); + this.setFilterPredicate(); + this.applyFilter(); this.logger.info(this.forwardingHistoryEvents); } @@ -155,12 +207,6 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi } } - applyFilter() { - if (this.forwardingHistoryEvents) { - this.forwardingHistoryEvents.filter = this.filterValue.trim().toLowerCase(); - } - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html index 3f00af81..0f2a8be3 100644 --- a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html +++ b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.html @@ -7,9 +7,16 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
@@ -20,28 +27,52 @@ {{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}} + In Channel ID + {{fhEvent?.in_channel}} + + In Channel - {{fhEvent?.in_channel_alias}} + + + {{fhEvent?.in_channel_alias}} + + + + + Out Channel ID + {{fhEvent?.out_channel}} + + + Out Channel + + + {{fhEvent?.out_channel_alias}} + + Amount In (Sats) {{fhEvent?.in_msatoshi/1000 | number:fhEvent?.in_msatoshi < 1000 ? '1.0-4' : '1.0-0'}} + + Style + {{fhEvent?.style}} + - Fail Reason - {{CLNFailReason[fhEvent?.failreason]}} + Fail Reason + {{CLNFailReason[fhEvent?.failreason]}} - -
+ +
Download CSV
- - - + + + @@ -52,7 +83,7 @@ - +
diff --git a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.scss b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.scss +++ b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts index 853a4217..6c9ffafd 100644 --- a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts +++ b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts @@ -9,7 +9,7 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { ListForwards, LocalFailedEvent } from '../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNFailReason, CLNForwardingEventsStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, CLNFailReason, CLNForwardingEventsStatusEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; @@ -17,8 +17,10 @@ import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getForwardingHistory } from '../../store/cln.actions'; -import { localFailedForwardingHistory } from '../../store/cln.selector'; +import { clnPageSettings, localFailedForwardingHistory } from '../../store/cln.selector'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-local-failed-history', @@ -33,12 +35,16 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public faExclamationTriangle = faExclamationTriangle; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'routing'; + public tableSetting: TableSetting = { tableId: 'local_failed', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING }; public CLNFailReason = CLNFailReason; - public failedLocalEvents: any; + public failedLocalEvents: any[] = []; public errorMessage = ''; public displayedColumns: any[] = []; - public failedLocalForwardingEvents: any; - public flgSticky = false; + public failedLocalForwardingEvents: any = new MatTableDataSource([]); public selFilter = ''; public totalLocalFailedTransactions = 0; public pageSize = PAGE_SIZE; @@ -49,25 +55,33 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private router: Router) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private router: Router, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['received_time', 'in_channel', 'in_msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM || this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['received_time', 'in_channel', 'in_msatoshi', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['received_time', 'in_channel', 'in_msatoshi', 'failreason', 'actions']; - } } ngOnInit() { this.router.routeReuseStrategy.shouldReuseRoute = () => false; this.router.onSameUrlNavigation = 'reload'; this.store.dispatch(getForwardingHistory({ payload: { status: CLNForwardingEventsStatusEnum.LOCAL_FAILED } })); - this.store.select(localFailedForwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(localFailedForwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((lffhSeletor: { localFailedForwardingHistory: ListForwards, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = lffhSeletor.apiCallStatus; @@ -76,7 +90,7 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni } this.totalLocalFailedTransactions = lffhSeletor.localFailedForwardingHistory.totalForwards || 0; this.failedLocalEvents = lffhSeletor.localFailedForwardingHistory.listForwards || []; - if (this.failedLocalEvents.length > 0 && this.sort && this.paginator) { + if (this.failedLocalEvents.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadLocalfailedLocalEventsTable(this.failedLocalEvents); } this.logger.info(lffhSeletor); @@ -107,15 +121,48 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni })); } + applyFilter() { + this.failedLocalForwardingEvents.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.failedLocalForwardingEvents.filterPredicate = (rowData: LocalFailedEvent, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = (rowData.received_time ? this.datePipe.transform(new Date(rowData.received_time * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + + (rowData.in_channel_alias ? rowData.in_channel_alias.toLowerCase() : '') + + ((rowData.failreason && this.CLNFailReason[rowData.failreason]) ? this.CLNFailReason[rowData.failreason].toLowerCase() : '') + + (rowData.in_msatoshi ? (rowData.in_msatoshi / 1000) : ''); + break; + + case 'received_time': + rowToFilter = this.datePipe.transform(new Date((rowData.received_time || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'in_msatoshi': + rowToFilter = ((+(rowData.in_msatoshi || 0)) / 1000)?.toString() || ''; + break; + + case 'failreason': + rowToFilter = rowData?.failreason ? this.CLNFailReason[rowData?.failreason] : ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'failreason' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadLocalfailedLocalEventsTable(forwardingEvents: LocalFailedEvent[]) { this.failedLocalForwardingEvents = new MatTableDataSource([...forwardingEvents]); - this.failedLocalForwardingEvents.filterPredicate = (event: LocalFailedEvent, fltr: string) => { - const newEvent = (event.received_time ? this.datePipe.transform(new Date(event.received_time * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + - (event.in_channel_alias ? event.in_channel_alias.toLowerCase() : '') + - ((event.failreason && this.CLNFailReason[event.failreason]) ? this.CLNFailReason[event.failreason].toLowerCase() : '') + - (event.in_msatoshi ? (event.in_msatoshi / 1000) : ''); - return newEvent?.includes(fltr) || false; - }; this.failedLocalForwardingEvents.sort = this.sort; this.failedLocalForwardingEvents.sortingDataAccessor = (data: LocalFailedEvent, sortHeaderId: string) => { switch (sortHeaderId) { @@ -126,7 +173,9 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; + this.failedLocalForwardingEvents.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.failedLocalForwardingEvents.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.failedLocalForwardingEvents); } @@ -137,10 +186,6 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni } } - applyFilter() { - this.failedLocalForwardingEvents.filter = this.selFilter.trim().toLowerCase(); - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/routing/routing-peers/routing-peers.component.html b/src/app/cln/routing/routing-peers/routing-peers.component.html index 277722fe..ada5b9f9 100644 --- a/src/app/cln/routing/routing-peers/routing-peers.component.html +++ b/src/app/cln/routing/routing-peers/routing-peers.component.html @@ -1,23 +1,38 @@
{{errorMessage}}
-
+
Incoming
- - - +
+ +
- +
- + - + @@ -34,13 +49,13 @@ - - + +
Channel ID{{rPeer.channel_id}} +
+ {{rPeer.channel_id}} +
+
Peer Alias{{rPeer.alias}} +
+ {{rPeer.alias}} +
+
Events -

No incoming routing peer available.

-

Getting incoming routing peers...

-

{{errorMessage}}

+

No incoming routing peer available.

+

Getting incoming routing peers...

+

{{errorMessage}}

@@ -49,20 +64,35 @@
Outgoing
- - - +
+ +
- +
- + - + @@ -79,13 +109,13 @@ - - + +
Channel ID{{rPeer.channel_id}} +
+ {{rPeer.channel_id}} +
+
Peer Alias{{rPeer.alias}} +
+ {{rPeer.alias}} +
+
Events -

No outgoing routing peer available.

-

Getting outgoing routing peers...

-

{{errorMessage}}

+

No outgoing routing peer available.

+

Getting outgoing routing peers...

+

{{errorMessage}}

diff --git a/src/app/cln/routing/routing-peers/routing-peers.component.scss b/src/app/cln/routing/routing-peers/routing-peers.component.scss index fcd63fdf..e69de29b 100644 --- a/src/app/cln/routing/routing-peers/routing-peers.component.scss +++ b/src/app/cln/routing/routing-peers/routing-peers.component.scss @@ -1,6 +0,0 @@ -.mat-column-channelId, .mat-column-alias { - flex: 1 1 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/cln/routing/routing-peers/routing-peers.component.ts b/src/app/cln/routing/routing-peers/routing-peers.component.ts index 0dda03ad..267715c2 100644 --- a/src/app/cln/routing/routing-peers/routing-peers.component.ts +++ b/src/app/cln/routing/routing-peers/routing-peers.component.ts @@ -1,19 +1,22 @@ import { Component, OnInit, AfterViewInit, ViewChild, OnDestroy, Input, SimpleChanges, OnChanges } from '@angular/core'; import { Subject } from 'rxjs'; -import { takeUntil } from 'rxjs/operators'; +import { take, takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { MatSort } from '@angular/material/sort'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatTableDataSource } from '@angular/material/table'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLNForwardingEventsStatusEnum, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ForwardingEvent, ListForwards, RoutingPeer } from '../../../shared/models/clnModels'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; -import { forwardingHistory } from '../../store/cln.selector'; +import { clnPageSettings, forwardingHistory } from '../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { getForwardingHistory } from '../../store/cln.actions'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-routing-peers', @@ -30,12 +33,17 @@ export class CLNRoutingPeersComponent implements OnInit, OnChanges, AfterViewIni @ViewChild('paginatorIn', { static: false }) paginatorIn: MatPaginator | undefined; @ViewChild('paginatorOut', { static: false }) paginatorOut: MatPaginator | undefined; @Input() eventsData = []; - @Input() filterValue = ''; + @Input() selFilter = ''; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterByIn = 'all'; + public selFilterByOut = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'routing'; + public tableSetting: TableSetting = { tableId: 'routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'total_fee', sortOrder: SortOrderEnum.DESCENDING }; public successfulEvents: ForwardingEvent[] = []; public displayedColumns: any[] = []; - public RoutingPeersIncoming: any = []; - public RoutingPeersOutgoing: any = []; - public flgSticky = false; + public routingPeersIncoming: any = new MatTableDataSource([]); + public routingPeersOutgoing: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -47,25 +55,34 @@ export class CLNRoutingPeersComponent implements OnInit, OnChanges, AfterViewIni public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'total_fee']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'events', 'total_fee']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'events', 'total_amount', 'total_fee']; - } else { - this.flgSticky = true; - this.displayedColumns = ['channel_id', 'alias', 'events', 'total_amount', 'total_fee']; - } } ngOnInit() { - this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.pipe(take(1)).subscribe((state) => { + if (state.cln.apisCallStatus.FetchForwardingHistoryS.status === APICallStatusEnum.UN_INITIATED && !state.cln.forwardingHistory.listForwards?.length) { + this.store.dispatch(getForwardingHistory({ payload: { status: CLNForwardingEventsStatusEnum.SETTLED } })); + } + }); + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / (this.displayedColumns.length * 2)) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((fhSeletor: { forwardingHistory: ListForwards, apiCallStatus: ApiCallStatusPayload }) => { if (this.eventsData.length <= 0) { this.errorMessage = ''; @@ -99,28 +116,70 @@ export class CLNRoutingPeersComponent implements OnInit, OnChanges, AfterViewIni } } + applyIncomingFilter() { + this.routingPeersIncoming.filter = this.filterIn.toLowerCase(); + } + + applyOutgoingFilter() { + this.routingPeersOutgoing.filter = this.filterOut.toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : 'all'; + } + + setFilterPredicate() { + this.routingPeersIncoming.filterPredicate = (rpIn: RoutingPeer, fltr: string) => JSON.stringify(rpIn).toLowerCase().includes(fltr); + this.routingPeersOutgoing.filterPredicate = (rpOut: RoutingPeer, fltr: string) => JSON.stringify(rpOut).toLowerCase().includes(fltr); + // this.routingPeersIncoming.filterPredicate = (rowData: RoutingPeer, fltr: string) => { + // let rowToFilter = ''; + // switch (this.selFilterBy) { + // case 'all': + // for (let i = 0; i < this.displayedColumns.length - 1; i++) { + // rowToFilter = rowToFilter + ( + // (this.displayedColumns[i] === '') ? + // (rowData ? rowData..toLowerCase() : '') : + // (rowData[this.displayedColumns[i]] ? rowData[this.displayedColumns[i]].toLowerCase() : '') + // ) + ', '; + // } + // break; + + // case '': + // rowToFilter = (rowData ? rowData..toLowerCase() : ''); + // break; + + // default: + // rowToFilter = (rowData[this.selFilterBy] ? rowData[this.selFilterBy].toLowerCase() : ''); + // break; + // } + // return rowToFilter.includes(fltr); + // }; + } + loadRoutingPeersTable(events: ForwardingEvent[]) { if (events.length > 0) { const results = this.groupRoutingPeers(events); - this.RoutingPeersIncoming = new MatTableDataSource(results[0]); - this.RoutingPeersIncoming.sort = this.sortIn; - this.RoutingPeersIncoming.filterPredicate = (rpIn: RoutingPeer, fltr: string) => JSON.stringify(rpIn).toLowerCase().includes(fltr); - this.RoutingPeersIncoming.paginator = this.paginatorIn; - this.logger.info(this.RoutingPeersIncoming); - this.RoutingPeersOutgoing = new MatTableDataSource(results[1]); - this.RoutingPeersOutgoing.sort = this.sortOut; - this.RoutingPeersOutgoing.filterPredicate = (rpOut: RoutingPeer, fltr: string) => JSON.stringify(rpOut).toLowerCase().includes(fltr); - this.RoutingPeersOutgoing.paginator = this.paginatorOut; - this.logger.info(this.RoutingPeersOutgoing); + this.routingPeersIncoming = new MatTableDataSource(results[0]); + this.routingPeersIncoming.sort = this.sortIn; + this.routingPeersIncoming.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.routingPeersIncoming.paginator = this.paginatorIn; + this.logger.info(this.routingPeersIncoming); + this.routingPeersOutgoing = new MatTableDataSource(results[1]); + this.routingPeersOutgoing.sort = this.sortOut; + this.routingPeersOutgoing.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.routingPeersOutgoing.paginator = this.paginatorOut; + this.logger.info(this.routingPeersOutgoing); } else { // To reset table after other Forwarding history calls - this.RoutingPeersIncoming = new MatTableDataSource([]); - this.RoutingPeersOutgoing = new MatTableDataSource([]); + this.routingPeersIncoming = new MatTableDataSource([]); + this.routingPeersOutgoing = new MatTableDataSource([]); } + this.setFilterPredicate(); this.applyIncomingFilter(); this.applyOutgoingFilter(); - this.logger.info(this.RoutingPeersIncoming); - this.logger.info(this.RoutingPeersOutgoing); + this.logger.info(this.routingPeersIncoming); + this.logger.info(this.routingPeersOutgoing); } groupRoutingPeers(forwardingEvents: ForwardingEvent[]) { @@ -147,14 +206,6 @@ export class CLNRoutingPeersComponent implements OnInit, OnChanges, AfterViewIni return [this.commonService.sortDescByKey(incomingResults, 'total_fee'), this.commonService.sortDescByKey(outgoingResults, 'total_fee')]; } - applyIncomingFilter() { - this.RoutingPeersIncoming.filter = this.filterIn.toLowerCase(); - } - - applyOutgoingFilter() { - this.RoutingPeersOutgoing.filter = this.filterOut.toLowerCase(); - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/sign-verify-message/sign/sign.component.scss b/src/app/cln/sign-verify-message/sign/sign.component.scss index d67b1ba8..e69de29b 100644 --- a/src/app/cln/sign-verify-message/sign/sign.component.scss +++ b/src/app/cln/sign-verify-message/sign/sign.component.scss @@ -1,6 +0,0 @@ -.mat-column-channel_point { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/cln/sign-verify-message/verify/verify.component.scss b/src/app/cln/sign-verify-message/verify/verify.component.scss index d67b1ba8..e69de29b 100644 --- a/src/app/cln/sign-verify-message/verify/verify.component.scss +++ b/src/app/cln/sign-verify-message/verify/verify.component.scss @@ -1,6 +0,0 @@ -.mat-column-channel_point { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/cln/store/cln.actions.ts b/src/app/cln/store/cln.actions.ts index 2f055743..6ecee235 100644 --- a/src/app/cln/store/cln.actions.ts +++ b/src/app/cln/store/cln.actions.ts @@ -3,7 +3,9 @@ import { createAction, props } from '@ngrx/store'; import { CLNActions } from '../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../shared/models/RTLconfig'; -import { GetInfo, Fees, Peer, Payment, QueryRoutes, Channel, FeeRates, Invoice, ListInvoices, OnChain, UTXO, SaveChannel, GetNewAddress, DetachPeer, UpdateChannel, CloseChannel, SendPayment, GetQueryRoutes, ChannelLookup, OfferInvoice, Offer, OfferBookmark, ListForwards, FetchListForwards, LocalFailedEvent, ForwardingEvent } from '../../shared/models/clnModels'; +import { GetInfo, Fees, Peer, Payment, QueryRoutes, Channel, FeeRates, Invoice, ListInvoices, OnChain, UTXO, SaveChannel, + GetNewAddress, DetachPeer, UpdateChannel, CloseChannel, SendPayment, GetQueryRoutes, ChannelLookup, OfferInvoice, Offer, OfferBookmark, ListForwards, FetchListForwards } from '../../shared/models/clnModels'; +import { PageSettings } from '../../shared/models/pageSettings'; export const updateCLAPICallStatus = createAction(CLNActions.UPDATE_API_CALL_STATUS_CLN, props<{ payload: ApiCallStatusPayload }>()); @@ -11,6 +13,12 @@ export const resetCLStore = createAction(CLNActions.RESET_CLN_STORE, props<{ pay export const setChildNodeSettingsCL = createAction(CLNActions.SET_CHILD_NODE_SETTINGS_CLN, props<{ payload: SelNodeChild }>()); +export const fetchPageSettings = createAction(CLNActions.FETCH_PAGE_SETTINGS_CLN); + +export const setPageSettings = createAction(CLNActions.SET_PAGE_SETTINGS_CLN, props<{ payload: PageSettings[] }>()); + +export const savePageSettings = createAction(CLNActions.SAVE_PAGE_SETTINGS_CLN, props<{ payload: PageSettings[] }>()); + export const fetchInfoCL = createAction(CLNActions.FETCH_INFO_CLN, props<{ payload: { loadPage: string } }>()); export const setInfo = createAction(CLNActions.SET_INFO_CLN, props<{ payload: GetInfo }>()); diff --git a/src/app/cln/store/cln.effects.ts b/src/app/cln/store/cln.effects.ts index 2efe63de..d5384a45 100644 --- a/src/app/cln/store/cln.effects.ts +++ b/src/app/cln/store/cln.effects.ts @@ -14,13 +14,15 @@ import { SessionService } from '../../shared/services/session.service'; import { WebSocketClientService } from '../../shared/services/web-socket.service'; import { ErrorMessageComponent } from '../../shared/components/data-modal/error-message/error-message.component'; import { CLNInvoiceInformationComponent } from '../transactions/invoices/invoice-information-modal/invoice-information.component'; -import { GetInfo, Fees, Balance, LocalRemoteBalance, Payment, FeeRates, ListInvoices, Invoice, Peer, OnChain, QueryRoutes, SaveChannel, GetNewAddress, DetachPeer, UpdateChannel, CloseChannel, SendPayment, GetQueryRoutes, ChannelLookup, FetchInvoices, Channel, OfferInvoice, Offer, ListForwards, FetchListForwards, ForwardingEvent, LocalFailedEvent } from '../../shared/models/clnModels'; +import { GetInfo, Fees, Balance, LocalRemoteBalance, Payment, FeeRates, ListInvoices, Invoice, Peer, OnChain, QueryRoutes, SaveChannel, GetNewAddress, DetachPeer, UpdateChannel, CloseChannel, SendPayment, GetQueryRoutes, ChannelLookup, FetchInvoices, Channel, OfferInvoice, Offer } from '../../shared/models/clnModels'; import { AlertTypeEnum, APICallStatusEnum, UI_MESSAGES, CLNWSEventTypeEnum, CLNActions, RTLActions, CLNForwardingEventsStatusEnum } from '../../shared/services/consts-enums-functions'; import { closeAllDialogs, closeSpinner, logout, openAlert, openSnackBar, openSpinner, setApiUrl, setNodeData } from '../../store/rtl.actions'; import { RTLState } from '../../store/rtl.state'; -import { addUpdateOfferBookmark, fetchBalance, fetchChannels, fetchFeeRates, fetchFees, fetchInvoices, fetchLocalRemoteBalance, fetchPayments, fetchPeers, fetchUTXOs, getForwardingHistory, setLookup, setPeers, setQueryRoutes, updateCLAPICallStatus, updateInvoice, setOfferInvoice, sendPaymentStatus, setForwardingHistory } from './cln.actions'; -import { allAPIsCallStatus, clnNodeInformation } from './cln.selector'; +import { addUpdateOfferBookmark, fetchBalance, fetchChannels, fetchFeeRates, fetchFees, fetchInvoices, fetchLocalRemoteBalance, + fetchPayments, fetchPeers, fetchUTXOs, setLookup, setPeers, setQueryRoutes, updateCLAPICallStatus, updateInvoice, setOfferInvoice, + sendPaymentStatus, setForwardingHistory, fetchPageSettings } from './cln.actions'; +import { allAPIsCallStatus } from './cln.selector'; import { ApiCallsListCL } from '../../shared/models/apiCallsPayload'; import { CLNOfferInformationComponent } from '../transactions/offers/offer-information-modal/offer-information.component'; @@ -94,7 +96,9 @@ export class CLNEffects implements OnDestroy { map((info) => { this.logger.info(info); if (info.chains && info.chains.length && info.chains[0] && - (typeof info.chains[0] === 'object' && info.chains[0].hasOwnProperty('chain') && info?.chains[0].chain && info?.chains[0].chain.toLowerCase().indexOf('bitcoin') < 0) + (typeof info.chains[0] === 'object' && info.chains[0].hasOwnProperty('chain') && info?.chains[0].chain && + (info?.chains[0].chain.toLowerCase().indexOf('bitcoin') < 0 && info?.chains[0].chain.toLowerCase().indexOf('liquid') < 0) + ) ) { this.store.dispatch(updateCLAPICallStatus({ payload: { action: 'FetchInfo', status: APICallStatusEnum.COMPLETED } })); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.GET_NODE_INFO })); @@ -733,7 +737,7 @@ export class CLNEffects implements OnDestroy { } } })); - }, 100); + }, 200); return { type: CLNActions.ADD_INVOICE_CLN, payload: postRes @@ -934,6 +938,52 @@ export class CLNEffects implements OnDestroy { }) )); + pageSettingsFetchCL = createEffect(() => this.actions.pipe( + ofType(CLNActions.FETCH_PAGE_SETTINGS_CLN), + mergeMap(() => { + this.store.dispatch(updateCLAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.INITIATED } })); + return this.httpClient.get(environment.PAGE_SETTINGS_API).pipe( + map((pageSettings: any) => { + this.logger.info(pageSettings); + this.store.dispatch(updateCLAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.COMPLETED } })); + return { + type: CLNActions.SET_PAGE_SETTINGS_CLN, + payload: pageSettings || [] + }; + }), + catchError((err: any) => { + this.handleErrorWithoutAlert('FetchPageSettings', UI_MESSAGES.NO_SPINNER, 'Fetching Page Settings Failed.', err); + return of({ type: RTLActions.VOID }); + }) + ); + }) + )); + + savePageSettingsCL = createEffect(() => this.actions.pipe( + ofType(CLNActions.SAVE_PAGE_SETTINGS_CLN), + mergeMap((action: { type: string, payload: any }) => { + this.store.dispatch(openSpinner({ payload: UI_MESSAGES.UPDATE_PAGE_SETTINGS })); + this.store.dispatch(updateCLAPICallStatus({ payload: { action: 'SavePageSettings', status: APICallStatusEnum.INITIATED } })); + return this.httpClient.post(environment.PAGE_SETTINGS_API, action.payload). + pipe( + map((postRes: any) => { + this.logger.info(postRes); + this.store.dispatch(updateCLAPICallStatus({ payload: { action: 'SavePageSettings', status: APICallStatusEnum.COMPLETED } })); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.UPDATE_PAGE_SETTINGS })); + this.store.dispatch(openSnackBar({ payload: 'Page Layout Updated Successfully!' })); + return { + type: CLNActions.SET_PAGE_SETTINGS_CLN, + payload: postRes || [] + }; + }), + catchError((err: any) => { + this.handleErrorWithAlert('SavePageSettings', UI_MESSAGES.UPDATE_PAGE_SETTINGS, 'Page Settings Update Failed.', environment.PAGE_SETTINGS_API, err); + return of({ type: RTLActions.VOID }); + }) + ); + }) + )); + initializeRemainingData(info: any, landingPage: string) { this.sessionService.setItem('clUnlocked', 'true'); const node_data = { @@ -958,6 +1008,7 @@ export class CLNEffects implements OnDestroy { newRoute = '/cln/home'; } this.router.navigate([newRoute]); + this.store.dispatch(fetchPageSettings()); this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: 1000000, index_offset: 0, reversed: true } })); this.store.dispatch(fetchFees()); this.store.dispatch(fetchChannels()); diff --git a/src/app/cln/store/cln.reducers.ts b/src/app/cln/store/cln.reducers.ts index 015de624..c32b91b8 100644 --- a/src/app/cln/store/cln.reducers.ts +++ b/src/app/cln/store/cln.reducers.ts @@ -4,10 +4,11 @@ import { addInvoice, addPeer, removeChannel, removePeer, resetCLStore, setBalance, setChannels, setChildNodeSettingsCL, setFeeRates, setFees, setForwardingHistory, setInfo, setInvoices, setLocalRemoteBalance, setOffers, addOffer, setPayments, setPeers, setUTXOs, - updateCLAPICallStatus, updateInvoice, updateOffer, setOfferBookmarks, addUpdateOfferBookmark, removeOfferBookmark + updateCLAPICallStatus, updateInvoice, updateOffer, setOfferBookmarks, addUpdateOfferBookmark, removeOfferBookmark, setPageSettings } from './cln.actions'; import { Channel, OfferBookmark } from '../../shared/models/clnModels'; -import { CLNForwardingEventsStatusEnum } from '../../shared/services/consts-enums-functions'; +import { CLNForwardingEventsStatusEnum, CLN_DEFAULT_PAGE_SETTINGS } from '../../shared/services/consts-enums-functions'; +import { PageSettings } from '../../shared/models/pageSettings'; export const CLNReducer = createReducer(initCLNState, on(updateCLAPICallStatus, (state, { payload }) => { @@ -19,7 +20,7 @@ export const CLNReducer = createReducer(initCLNState, message: payload.message, URL: payload.URL, filePath: payload.filePath - }; + }; } return { ...state, @@ -195,7 +196,7 @@ export const CLNReducer = createReducer(initCLNState, } else { const updatedOffer = { ...newOfferBMs[offerBMExistsIdx] }; updatedOffer.title = payload.title; - updatedOffer.amountmSat = payload.amountmSat; + updatedOffer.amountMSat = payload.amountMSat; updatedOffer.lastUpdatedAt = payload.lastUpdatedAt; updatedOffer.description = payload.description; updatedOffer.vendor = payload.vendor; @@ -216,6 +217,31 @@ export const CLNReducer = createReducer(initCLNState, ...state, offersBookmarks: modifiedOfferBookmarks }; + }), + on(setPageSettings, (state, { payload }) => { + const newPageSettings: PageSettings[] = []; + CLN_DEFAULT_PAGE_SETTINGS.forEach((defaultPage) => { + const pageSetting = payload && payload.length && payload.length > 0 ? payload.find((p) => p.pageId === defaultPage.pageId) : null; + if (pageSetting) { + const tablesSettings = JSON.parse(JSON.stringify(pageSetting.tables)); + pageSetting.tables = []; // To maintain settings order + defaultPage.tables.forEach((defaultTable) => { + const tableSetting = tablesSettings.find((t) => t.tableId === defaultTable.tableId) || null; + if (tableSetting) { + pageSetting.tables.push(tableSetting); + } else { + pageSetting.tables.push(JSON.parse(JSON.stringify(defaultTable))); + } + }); + newPageSettings.push(pageSetting); + } else { + newPageSettings.push(JSON.parse(JSON.stringify(defaultPage))); + } + }); + return { + ...state, + pageSettings: newPageSettings + }; }) ); diff --git a/src/app/cln/store/cln.selector.ts b/src/app/cln/store/cln.selector.ts index e1b9e6d9..605ced46 100644 --- a/src/app/cln/store/cln.selector.ts +++ b/src/app/cln/store/cln.selector.ts @@ -4,6 +4,7 @@ import { CLNState } from './cln.state'; export const clnState = createFeatureSelector('cln'); export const clnNodeSettings = createSelector(clnState, (state: CLNState) => state.nodeSettings); +export const clnPageSettings = createSelector(clnState, (state: CLNState) => ({ pageSettings: state.pageSettings, apiCallStatus: state.apisCallStatus.FetchPageSettings })); export const clnNodeInformation = createSelector(clnState, (state: CLNState) => state.information); export const apiCallStatusNodeInfo = createSelector(clnState, (state: CLNState) => state.apisCallStatus.FetchInfo); export const allAPIsCallStatus = createSelector(clnState, (state: CLNState) => state.apisCallStatus); diff --git a/src/app/cln/store/cln.state.ts b/src/app/cln/store/cln.state.ts index 6cb36265..97d5100d 100644 --- a/src/app/cln/store/cln.state.ts +++ b/src/app/cln/store/cln.state.ts @@ -1,11 +1,13 @@ import { SelNodeChild } from '../../shared/models/RTLconfig'; -import { APICallStatusEnum, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, CLN_DEFAULT_PAGE_SETTINGS, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; import { GetInfo, Fees, Balance, LocalRemoteBalance, Peer, Payment, Channel, FeeRates, ListInvoices, UTXO, Offer, OfferBookmark, ListForwards } from '../../shared/models/clnModels'; import { ApiCallsListCL } from '../../shared/models/apiCallsPayload'; +import { PageSettings } from '../../shared/models/pageSettings'; export interface CLNState { apisCallStatus: ApiCallsListCL; nodeSettings: SelNodeChild | null; + pageSettings: PageSettings[]; information: GetInfo; fees: Fees; feeRatesPerKB: FeeRates; @@ -28,6 +30,7 @@ export interface CLNState { export const initCLNState: CLNState = { apisCallStatus: { + FetchPageSettings: { status: APICallStatusEnum.UN_INITIATED }, FetchInfo: { status: APICallStatusEnum.UN_INITIATED }, FetchInvoices: { status: APICallStatusEnum.UN_INITIATED }, FetchFees: { status: APICallStatusEnum.UN_INITIATED }, @@ -45,7 +48,8 @@ export const initCLNState: CLNState = { FetchOffers: { status: APICallStatusEnum.UN_INITIATED }, FetchOfferBookmarks: { status: APICallStatusEnum.UN_INITIATED } }, - nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, selCurrencyUnit: 'USD', fiatConversion: false, channelBackupPath: '', currencyUnits: [], enableOffers: false }, + nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, unannouncedChannels: false, selCurrencyUnit: 'USD', fiatConversion: false, channelBackupPath: '', currencyUnits: [], enableOffers: false, enablePeerswap: false }, + pageSettings: CLN_DEFAULT_PAGE_SETTINGS, information: {}, fees: {}, feeRatesPerKB: {}, diff --git a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html index 0e89684c..60c60d4e 100644 --- a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html +++ b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html @@ -19,7 +19,7 @@ - {{selTimeUnit | titlecase}} + {{selTimeUnit | titlecase}} diff --git a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.scss b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.scss +++ b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts index 49a896f2..a449fcba 100644 --- a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts +++ b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts @@ -31,7 +31,6 @@ export class CLNCreateInvoiceComponent implements OnInit, OnDestroy { public invoiceValue: number | null; public invoiceValueHint = ''; public invoicePaymentReq = ''; - public invoices: any; public information: GetInfo = {}; public private = false; public expiryStep = 100; diff --git a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts index ec4137ef..61e00211 100644 --- a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts +++ b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts @@ -52,7 +52,8 @@ export class CLNInvoiceInformationComponent implements OnInit, OnDestroy { subscribe((invoicesSelector: { listInvoices: ListInvoices, apiCallStatus: ApiCallStatusPayload }) => { const invoiceStatus = this.invoice.status; const invoices = invoicesSelector.listInvoices.invoices || []; - this.invoice = invoices?.find((invoice) => invoice.payment_hash === this.invoice.payment_hash)!; + const foundInvoice = invoices?.find((invoice) => invoice.payment_hash === this.invoice.payment_hash) || null; + if (foundInvoice) { this.invoice = foundInvoice; } if (invoiceStatus !== this.invoice.status && this.invoice.status === 'paid') { this.flgInvoicePaid = true; setTimeout(() => { this.flgInvoicePaid = false; }, 4000); diff --git a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html index 8d38e14d..5c281666 100644 --- a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html +++ b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.html @@ -23,63 +23,99 @@ Invoices History
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- - - +
Expiry Date
+ + + + + + - + - - + + - + + + + + + + + + + + + + - - + + - - + + - - @@ -90,7 +126,7 @@ - +
+ Expiry Date {{(invoice?.expires_at * 1000) | date:'dd/MMM/y HH:mm'}} Date Settled Date Settled {{((invoice?.paid_at * 1000) | date:'dd/MMM/y HH:mm') || '-'}} Type {{ invoice?.bolt12 ? 'Bolt12' : (invoice?.bolt11 && !invoice.label.includes('keysend-')) ? 'Bolt11' : 'Keysend' }}Type{{ invoice?.bolt12 ? 'Bolt12' : (invoice?.bolt11 && invoice.label.includes('keysend-')) ? 'Keysend' : 'Bolt11' }} Description Description -
+
{{invoice?.description}}
Label +
+ {{invoice?.label}} +
+
Payment Hash +
+ {{invoice?.payment_hash}} +
+
Invoice +
+ {{invoice?.bolt11}} +
+
Amount (Sats) {{invoice?.msatoshi/1000 | number:invoice?.msatoshi < 1000 ? '1.0-4' : '1.0-0'}}Amount (Sats){{invoice?.msatoshi/1000 | number:invoice?.msatoshi < 1000 ? '1.0-4' : '1.0-0'}} Amount Settled (Sats) {{invoice?.msatoshi_received/1000 | number:invoice?.msatoshi_received < 1000 ? '1.0-4' : '1.0-0'}}Amount Settled (Sats){{invoice?.msatoshi_received/1000 | number:invoice?.msatoshi_received < 1000 ? '1.0-4' : '1.0-0'}} -
+
+
Download CSV
-
+ +
View Info Refresh -
+
diff --git a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.scss b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.scss index 2ce046dc..4ccf74d1 100644 --- a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.scss +++ b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.scss @@ -1,11 +1,4 @@ -.mat-column-description { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-status { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts index cc888772..c934ead2 100644 --- a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts +++ b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts @@ -9,7 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, CLNActions } from '../../../../shared/services/consts-enums-functions'; +import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, CLNActions, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum, CLN_PAGE_DEFS } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../../shared/models/RTLconfig'; import { GetInfo, Invoice, ListInvoices } from '../../../../shared/models/clnModels'; @@ -23,7 +23,9 @@ import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; import { deleteExpiredInvoice, invoiceLookup, saveNewInvoice } from '../../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings, listInvoices } from '../../../store/cln.selector'; +import { clnNodeInformation, clnNodeSettings, clnPageSettings, listInvoices } from '../../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-lightning-invoices-table', @@ -39,6 +41,11 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'expires_at', sortOrder: SortOrderEnum.DESCENDING }; public selNode: SelNodeChild | null = {}; public newlyAddedInvoiceMemo = ''; public newlyAddedInvoiceValue = 0; @@ -48,10 +55,9 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit public invoiceValueHint = ''; public displayedColumns: any[] = []; public invoicePaymentReq = ''; - public invoices: any; + public invoices: any = new MatTableDataSource([]); public invoiceJSONArr: Invoice[] = []; public information: GetInfo = {}; - public flgSticky = false; public private = false; public expiryStep = 100; public pageSize = PAGE_SIZE; @@ -62,23 +68,10 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private rtlEffects: RTLEffects, private datePipe: DatePipe, private actions: Actions) { + constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private rtlEffects: RTLEffects, private datePipe: DatePipe, private actions: Actions, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['expires_at', 'msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['expires_at', 'description', 'msatoshi', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['expires_at', 'type', 'description', 'msatoshi', 'msatoshi_received', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['expires_at', 'paid_at', 'type', 'description', 'msatoshi', 'msatoshi_received', 'actions']; - } } ngOnInit() { @@ -88,7 +81,26 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(listInvoices).pipe(takeUntil(this.unSubs[2])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('status'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(listInvoices).pipe(takeUntil(this.unSubs[3])). subscribe((invoicesSeletor: { listInvoices: ListInvoices, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = invoicesSeletor.apiCallStatus; @@ -96,12 +108,12 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.invoiceJSONArr = invoicesSeletor.listInvoices.invoices || []; - if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator) { + if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } this.logger.info(invoicesSeletor); }); - this.actions.pipe(takeUntil(this.unSubs[3]), filter((action) => (action.type === CLNActions.SET_LOOKUP_CLN || action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN))). + this.actions.pipe(takeUntil(this.unSubs[4]), filter((action) => (action.type === CLNActions.SET_LOOKUP_CLN || action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN))). subscribe((resLookup: any) => { if (resLookup.type === CLNActions.SET_LOOKUP_CLN) { if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && resLookup.payload) { @@ -113,7 +125,7 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit } ngAfterViewInit() { - if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator) { + if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } } @@ -151,7 +163,7 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(deleteExpiredInvoice({ payload: null })); @@ -194,11 +206,52 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit this.invoices.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.invoices.filterPredicate = (rowData: Invoice, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = this.datePipe.transform(new Date((rowData.paid_at || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase()! + + (this.datePipe.transform(new Date((rowData.expires_at || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase()) + + ((rowData.bolt12) ? 'bolt12' : (rowData.bolt11) ? 'bolt11' : 'keysend') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'status': + rowToFilter = rowData?.status === 'paid' ? 'paid' : rowData?.status === 'unpaid' ? 'unpaid' : 'expired'; + break; + + case 'expires_at': + case 'paid_at': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'type': + rowToFilter = rowData?.bolt12 ? 'bolt12' : (rowData?.bolt11 && rowData?.label?.includes('keysend-')) ? 'keysend' : 'bolt11'; + break; + + case 'msatoshi': + case 'msatoshi_received': + rowToFilter = ((+(rowData[this.selFilterBy] || 0)) / 1000)?.toString() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'status' || this.selFilterBy === 'type') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + onInvoiceValueChange() { - if (this.selNode.fiatConversion && this.invoiceValue! > 99) { + if (this.selNode && this.selNode.fiatConversion && this.invoiceValue! > 99) { this.invoiceValueHint = ''; - this.commonService.convertCurrency(this.invoiceValue!, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). - pipe(takeUntil(this.unSubs[5])). + this.commonService.convertCurrency(this.invoiceValue!, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode?.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). + pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; @@ -221,12 +274,10 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit this.invoices = (invs) ? new MatTableDataSource([...invs]) : new MatTableDataSource([]); this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.invoices.sort = this.sort; - this.invoices.filterPredicate = (rowData: Invoice, fltr: string) => { - const newRowData = this.datePipe.transform(new Date((rowData.paid_at || 0) * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase()! + (this.datePipe.transform(new Date((rowData.expires_at || 0) * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase()) + ((rowData.bolt12) ? 'bolt12' : (rowData.bolt11) ? 'bolt11' : 'keysend') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.invoices.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.invoices.paginator = this.paginator; this.applyFilter(); + this.setFilterPredicate(); } onDownloadCSV() { diff --git a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.scss b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.scss +++ b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts index dc6e0807..dc275493 100644 --- a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts +++ b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts @@ -30,7 +30,6 @@ export class CLNCreateOfferComponent implements OnInit, OnDestroy { public offerValue: number | null; public vendor = ''; public offerValueHint = ''; - public offers: any; public information: GetInfo = {}; public pageSize = PAGE_SIZE; public offerError = ''; diff --git a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html index 51fba973..5a5219c4 100644 --- a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html +++ b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.html @@ -6,47 +6,66 @@ Offer Bookmarks
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
- + - + - - - - - + + + + + + + + + + + + + - - @@ -65,7 +84,7 @@ - +
Updated At Updated At {{offersbookmark.lastUpdatedAt | date:'dd/MMM/y HH:mm'}} Title Title -
+
{{offersbookmark.title}}
Amount (Sats) {{(offersbookmark.amountmSat === 0) ? 'Open' : (offersbookmark.amountmSat / 1000) | number}} Description Description -
+
{{offersbookmark.description}}
Vendor{{offersbookmark.vendor}}Invoice +
+ {{offersbookmark.bolt12}} +
+
Amount (Sats){{(offersbookmark.amountMSat === 0) ? 'Open' : (offersbookmark.amountMSat / 1000) | number}} -
+
+
Download CSV
-
+ +
@@ -54,7 +73,7 @@ Pay Again Delete Bookmark -
+
diff --git a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.scss b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.scss index fe876dfd..e69de29b 100644 --- a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.scss +++ b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.scss @@ -1,11 +0,0 @@ -.mat-column-title, .mat-column-description { - flex: 0 0 30%; - width: 30%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts index f976e883..4da656a4 100644 --- a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts +++ b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts @@ -7,7 +7,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, PaymentTypes, AlertTypeEnum } from '../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, PaymentTypes, AlertTypeEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, UI_MESSAGES, CLN_PAGE_DEFS } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { OfferBookmark } from '../../../../shared/models/clnModels'; import { LoggerService } from '../../../../shared/services/logger.service'; @@ -16,10 +16,13 @@ import { CommonService } from '../../../../shared/services/common.service'; import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; -import { offerBookmarks } from '../../../store/cln.selector'; +import { clnPageSettings, offerBookmarks } from '../../../store/cln.selector'; import { CLNOfferInformationComponent } from '../offer-information-modal/offer-information.component'; import { CLNLightningSendPaymentsComponent } from '../../send-payment-modal/send-payment.component'; -import { deleteOfferBookmark } from '../../../store/cln.actions'; +import { deleteOfferBookmark, sendPayment } from '../../../store/cln.actions'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; +import { DatePipe } from '@angular/common'; @Component({ selector: 'rtl-cln-offer-bookmarks-table', @@ -34,10 +37,14 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'offer_bookmarks', recordsPerPage: PAGE_SIZE, sortBy: 'lastUpdatedAt', sortOrder: SortOrderEnum.DESCENDING }; public displayedColumns: any[] = []; - public offersBookmarks: any; + public offersBookmarks: any = new MatTableDataSource([]); public offersBookmarksJSONArr: OfferBookmark[] = []; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -48,25 +55,30 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private commonService: CommonService, private rtlEffects: RTLEffects) { + constructor(private logger: LoggerService, private store: Store, private commonService: CommonService, private rtlEffects: RTLEffects, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['lastUpdatedAt', 'title', 'amountmSat', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['lastUpdatedAt', 'title', 'amountmSat', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['lastUpdatedAt', 'title', 'amountmSat', 'description', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['lastUpdatedAt', 'title', 'amountmSat', 'description', 'actions']; - } } ngOnInit() { - this.store.select(offerBookmarks).pipe(takeUntil(this.unSubs[0])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(offerBookmarks).pipe(takeUntil(this.unSubs[1])). subscribe((offerBMsSeletor: { offersBookmarks: OfferBookmark[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = offerBMsSeletor.apiCallStatus; @@ -74,7 +86,7 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.offersBookmarksJSONArr = offerBMsSeletor.offersBookmarks || []; - if (this.offersBookmarksJSONArr && this.offersBookmarksJSONArr.length > 0 && this.sort && this.paginator) { + if (this.offersBookmarksJSONArr && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadOffersTable(this.offersBookmarksJSONArr); } this.logger.info(offerBMsSeletor); @@ -82,7 +94,7 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O } ngAfterViewInit() { - if (this.offersBookmarksJSONArr && this.offersBookmarksJSONArr.length > 0 && this.sort && this.paginator) { + if (this.offersBookmarksJSONArr && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadOffersTable(this.offersBookmarksJSONArr); } } @@ -111,7 +123,7 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O } } })); - this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[1])).subscribe((confirmRes) => { + this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[2])).subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(deleteOfferBookmark({ payload: { bolt12: selOffer.bolt12! } })); } @@ -135,12 +147,42 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O this.offersBookmarks.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.offersBookmarks.filterPredicate = (rowData: OfferBookmark, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'lastUpdatedAt': + rowToFilter = this.datePipe.transform(new Date(rowData.lastUpdatedAt || 0), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'amountMSat': + rowToFilter = ((!rowData.amountMSat || rowData.amountMSat === 0) ? 'Open' : (rowData.amountMSat / 1000).toString()) || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadOffersTable(OffrBMs: OfferBookmark[]) { this.offersBookmarks = (OffrBMs) ? new MatTableDataSource([...OffrBMs]) : new MatTableDataSource([]); this.offersBookmarks.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.offersBookmarks.sort = this.sort; - this.offersBookmarks.filterPredicate = (Ofrbm: OfferBookmark, fltr: string) => JSON.stringify(Ofrbm).toLowerCase().includes(fltr); + this.offersBookmarks.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.offersBookmarks.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/cln/transactions/offers/offers-table/offers-table.component.html b/src/app/cln/transactions/offers/offers-table/offers-table.component.html index df11ee14..738efc5b 100644 --- a/src/app/cln/transactions/offers/offers-table/offers-table.component.html +++ b/src/app/cln/transactions/offers/offers-table/offers-table.component.html @@ -8,45 +8,67 @@ Offers History
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
+ + + + - + - + - + + + + + - - @@ -65,7 +87,7 @@ - +
+ + + Offer ID Offer ID -
+
- - {{offer.offer_id}}
Single Use Single Use {{offer.single_use ? 'Yes' : 'No'}} Used Used {{offer.used ? 'Yes' : 'No'}} Invoice +
+ + {{offer.bolt12}} + +
+
-
+
+
Download CSV
-
+ +
@@ -54,7 +76,7 @@ Disable Offer Export QR code -
+
diff --git a/src/app/cln/transactions/offers/offers-table/offers-table.component.scss b/src/app/cln/transactions/offers/offers-table/offers-table.component.scss index 5652a1bc..5d86c71f 100644 --- a/src/app/cln/transactions/offers/offers-table/offers-table.component.scss +++ b/src/app/cln/transactions/offers/offers-table/offers-table.component.scss @@ -1,11 +1,4 @@ -.mat-column-offer_id { - flex: 0 0 65%; - width: 65%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-active { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/cln/transactions/offers/offers-table/offers-table.component.ts b/src/app/cln/transactions/offers/offers-table/offers-table.component.ts index 51f0fc3a..ca3208bb 100644 --- a/src/app/cln/transactions/offers/offers-table/offers-table.component.ts +++ b/src/app/cln/transactions/offers/offers-table/offers-table.component.ts @@ -1,6 +1,6 @@ /* eslint-disable max-len */ import { Component, OnInit, OnDestroy, ViewChild, AfterViewInit } from '@angular/core'; -import { DecimalPipe, DatePipe } from '@angular/common'; +import { DecimalPipe } from '@angular/common'; import { Subject } from 'rxjs'; import { take, takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; @@ -11,7 +11,7 @@ import { MatTableDataSource } from '@angular/material/table'; import * as pdfMake from 'pdfmake/build/pdfmake'; import * as pdfFonts from 'pdfmake/build/vfs_fonts'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, AlertTypeEnum } from '../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, AlertTypeEnum, SortOrderEnum, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../../shared/models/RTLconfig'; import { GetInfo, Offer, OfferRequest } from '../../../../shared/models/clnModels'; @@ -26,7 +26,9 @@ import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; import { disableOffer } from '../../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings, offers } from '../../../store/cln.selector'; +import { clnNodeInformation, clnNodeSettings, clnPageSettings, offers } from '../../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-offers-table', @@ -41,6 +43,11 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'offers', recordsPerPage: PAGE_SIZE, sortBy: 'offer_id', sortOrder: SortOrderEnum.DESCENDING }; public selNode: SelNodeChild | null = {}; public newlyAddedOfferMemo = ''; public newlyAddedOfferValue = 0; @@ -53,7 +60,6 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy public offers: any; public offerJSONArr: Offer[] = []; public information: GetInfo = {}; - public flgSticky = false; public private = false; public expiryStep = 100; public pageSize = PAGE_SIZE; @@ -66,21 +72,8 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private commonService: CommonService, private rtlEffects: RTLEffects, private dataService: DataService, private decimalPipe: DecimalPipe, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private store: Store, private commonService: CommonService, private rtlEffects: RTLEffects, private dataService: DataService, private decimalPipe: DecimalPipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['offer_id', 'single_use', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['offer_id', 'single_use', 'used', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['offer_id', 'single_use', 'used', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['offer_id', 'single_use', 'used', 'actions']; - } } ngOnInit() { @@ -90,7 +83,26 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(offers).pipe(takeUntil(this.unSubs[2])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('active'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(offers).pipe(takeUntil(this.unSubs[3])). subscribe((offersSeletor: { offers: Offer[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = offersSeletor.apiCallStatus; @@ -98,7 +110,7 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.offerJSONArr = offersSeletor.offers || []; - if (this.offerJSONArr && this.offerJSONArr.length > 0 && this.sort && this.paginator) { + if (this.offerJSONArr && this.offerJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadOffersTable(this.offerJSONArr); } this.logger.info(offersSeletor); @@ -106,7 +118,7 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy } ngAfterViewInit() { - if (this.offerJSONArr && this.offerJSONArr.length > 0 && this.sort && this.paginator) { + if (this.offerJSONArr && this.offerJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadOffersTable(this.offerJSONArr); } } @@ -154,7 +166,7 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy } } })); - this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[3])).subscribe((confirmRes) => { + this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[4])).subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(disableOffer({ payload: { offer_id: selOffer.offer_id! } })); } @@ -217,18 +229,41 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy this.offers.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.offers.filterPredicate = (rowData: Offer, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.active) ? ' active' : ' inactive') + ((rowData.used) ? ' yes' : ' no') + ((rowData.single_use) ? ' single' : ' multiple') + JSON.stringify(rowData).toLowerCase(); + if (fltr === 'active' || fltr === 'inactive' || fltr === 'single' || fltr === 'multiple') { + fltr = ' ' + fltr; + } + break; + + case 'active': + rowToFilter = rowData?.active ? 'active' : 'inactive'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'active' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadOffersTable(offrs: Offer[]) { this.offers = (offrs) ? new MatTableDataSource([...offrs]) : new MatTableDataSource([]); this.offers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.offers.sort = this.sort; - this.offers.filterPredicate = (rowData: Offer, fltr: string) => { - const newRowData = ((rowData.active) ? ' active' : ' inactive') + ((rowData.used) ? ' used' : ' unused') + ((rowData.single_use) ? ' single' : ' multiple') + JSON.stringify(rowData).toLowerCase(); - if (fltr === 'active' || fltr === 'inactive' || fltr === 'used' || fltr === 'unused' || fltr === 'single' || fltr === 'multiple') { - fltr = ' ' + fltr; - } - return newRowData.includes(fltr); - }; + this.offers.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.offers.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/cln/transactions/payments/lightning-payments.component.html b/src/app/cln/transactions/payments/lightning-payments.component.html index 962a8d4d..1044452a 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.html +++ b/src/app/cln/transactions/payments/lightning-payments.component.html @@ -19,34 +19,78 @@ Payments History
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
+ + + + - + + + + + + + + + + + + + + + + + @@ -56,52 +100,62 @@ - - - + + + + - + - + - + + + + + + + + + + + + + - + - - - - + +
+ + + Created At - - {{(payment?.created_at * 1000) | date:'dd/MMM/y HH:mm'}} Type Type {{ payment?.bolt12 ? 'Bolt12' : payment?.bolt11 ? 'Bolt11' : 'Keysend' }} Payment Hash - + {{payment?.payment_hash}} Invoice + + {{payment?.bolt11}} + + Label + + {{payment?.label}} + + Destination + + {{payment?.destination}} + + Memo + + {{payment?.memo}} + + Sats Sent {{payment?.msatoshi_sent/1000 | number:payment?.msatoshi_sent < 1000 ? '1.0-4' : '1.0-0'}}{{payment?.msatoshi/1000 | number:payment?.msatoshi < 1000 ? '1.0-4' : '1.0-0'}} -
+
+
Download CSV
-
- + + + -

No payment available.

-

Getting payments...

-

{{errorMessage}}

+

No payment available.

+

Getting payments...

+

{{errorMessage}}

+ + + + + + + + + + + - - Total Attempts: {{payment?.total_parts}} - - - + {{(mpp.created_at * 1000) | date:'dd/MMM/y HH:mm'}} {{ payment?.bolt12 ? 'Bolt12' : payment?.bolt11 ? 'Bolt11' : 'Keysend' }} - {{ payment?.bolt12 ? 'Bolt12' : payment?.bolt11 ? 'Bolt11' : 'Keysend' }} + - + {{payment?.payment_hash}} @@ -111,7 +165,55 @@ + + {{payment?.bolt11}} + + + + + + + + + {{payment?.label}} + + + + + + + + + {{payment?.destination}} + + + + + + + + + {{payment?.memo}} + + + + + + + {{payment?.msatoshi_sent/1000 | number:payment?.msatoshi_sent < 1000 ? '1.0-4' : '1.0-0'}} @@ -121,7 +223,7 @@ {{payment?.msatoshi/1000 | number:payment?.msatoshi < 1000 ? '1.0-4' : '1.0-0'}} @@ -131,8 +233,8 @@ + + @@ -145,8 +247,8 @@
diff --git a/src/app/cln/transactions/payments/lightning-payments.component.scss b/src/app/cln/transactions/payments/lightning-payments.component.scss index e74d0e5f..50298673 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.scss +++ b/src/app/cln/transactions/payments/lightning-payments.component.scss @@ -1,25 +1,26 @@ -.mat-column-payment_hash { - flex: 0 0 25%; - width: 25%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-status, .mat-column-group_status { + max-width: 1.2rem; + width:1.2rem; } -.mat-column-groupAction { +.mat-column-group_actions { min-height: 4.8rem; & .btn-mpp-expand { - width: 9rem; + min-width: 10rem; + width: 10rem; } & .btn-mpp-info { - margin-top: 0.5rem; - width: 9rem; + margin-top: 0.5rem; + min-width: 9rem; + width: 9rem; + } +} + +.mat-column-group_status, .mat-column-group_created_at { + .mpp-row-span:not(:first-of-type) { + padding-left: 3rem; } } @@ -27,8 +28,15 @@ min-height: 4.2rem; place-content: center flex-start; align-items: center; + &.ellipsis-parent { + display: flex; + } + & .dot { + margin-top: -0.4rem; + position: absolute; + } } -.mat-column-groupTotal { +.mat-column-group_created_at { min-width: 17rem; } diff --git a/src/app/cln/transactions/payments/lightning-payments.component.ts b/src/app/cln/transactions/payments/lightning-payments.component.ts index 3d404790..584aeb69 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.ts +++ b/src/app/cln/transactions/payments/lightning-payments.component.ts @@ -9,7 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { GetInfo, Payment, PayRequest } from '../../../shared/models/clnModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, UI_MESSAGES, PaymentTypes } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, UI_MESSAGES, PaymentTypes, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; @@ -23,7 +23,9 @@ import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { sendPayment } from '../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings, payments } from '../../store/cln.selector'; +import { clnNodeInformation, clnNodeSettings, clnPageSettings, payments } from '../../store/cln.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-cln-lightning-payments', @@ -35,22 +37,26 @@ import { clnNodeInformation, clnNodeSettings, payments } from '../../store/cln.s }) export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnDestroy { - @Input() calledFrom = 'transactions'; // Transactions/home + @Input() calledFrom = 'transactions'; // transactions/home @ViewChild('sendPaymentForm', { static: false }) form; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = CLN_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'created_at', sortOrder: SortOrderEnum.DESCENDING }; public faHistory = faHistory; public newlyAddedPayment = ''; public selNode: SelNodeChild | null = {}; public information: GetInfo = {}; - public payments: any; + public payments: any = new MatTableDataSource([]); public paymentJSONArr: Payment[] = []; public displayedColumns: any[] = []; public mppColumns: string[] = []; public paymentDecoded: PayRequest = {}; public paymentRequest = ''; public paymentDecodedHint = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -59,27 +65,19 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private rtlEffects: RTLEffects, private clnEffects: CLNEffects, private decimalPipe: DecimalPipe, private titleCasePipe: TitleCasePipe, private datePipe: DatePipe, private dataService: DataService) { + constructor( + private logger: LoggerService, + private commonService: CommonService, + private store: Store, + private rtlEffects: RTLEffects, + private decimalPipe: DecimalPipe, + private titleCasePipe: TitleCasePipe, + private datePipe: DatePipe, + private dataService: DataService, + private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['created_at', 'actions']; - this.mppColumns = ['groupTotal', 'groupAction']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['created_at', 'msatoshi', 'actions']; - this.mppColumns = ['groupTotal', 'groupAmtRecv', 'groupAction']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['created_at', 'type', 'msatoshi_sent', 'msatoshi', 'actions']; - this.mppColumns = ['groupTotal', 'groupType', 'groupAmtSent', 'groupAmtRecv', 'groupAction']; - } else { - this.flgSticky = true; - this.displayedColumns = ['created_at', 'type', 'payment_hash', 'msatoshi_sent', 'msatoshi', 'actions']; - this.mppColumns = ['groupTotal', 'groupType', 'groupHash', 'groupAmtSent', 'groupAmtRecv', 'groupAction']; - } } ngOnInit() { @@ -89,7 +87,29 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(payments).pipe(takeUntil(this.unSubs[2])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || CLN_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('status'); + this.displayedColumns.push('actions'); + this.mppColumns = []; + this.displayedColumns.map((col) => this.mppColumns.push('group_' + col)); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + this.logger.info(this.mppColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[3])). subscribe((paymentsSeletor: { payments: Payment[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = paymentsSeletor.apiCallStatus; @@ -97,7 +117,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.paymentJSONArr = paymentsSeletor.payments || []; - if (this.paymentJSONArr.length > 0 && this.sort && this.paginator) { + if (this.paymentJSONArr.length && this.paymentJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadPaymentsTable(this.paymentJSONArr); } this.logger.info(paymentsSeletor); @@ -105,7 +125,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } ngAfterViewInit() { - if (this.paymentJSONArr.length > 0 && this.sort && this.paginator) { + if (this.paymentJSONArr.length && this.paymentJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadPaymentsTable(this.paymentJSONArr); } } @@ -122,7 +142,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD this.sendPayment(); } else { this.dataService.decodePayment(this.paymentRequest, false). - pipe(takeUntil(this.unSubs[1])).subscribe((decodedPayment: PayRequest) => { + pipe(takeUntil(this.unSubs[4])).subscribe((decodedPayment: PayRequest) => { this.paymentDecoded = decodedPayment; if (this.paymentDecoded.created_at) { if (!this.paymentDecoded.msatoshi) { @@ -210,21 +230,25 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD this.paymentDecodedHint = ''; if (this.paymentRequest && this.paymentRequest.length > 100) { this.dataService.decodePayment(this.paymentRequest, false). - pipe(takeUntil(this.unSubs[1])).subscribe((decodedPayment: PayRequest) => { + pipe(takeUntil(this.unSubs[5])).subscribe((decodedPayment: PayRequest) => { this.paymentDecoded = decodedPayment; if (this.paymentDecoded.msatoshi) { if (this.selNode?.fiatConversion) { this.commonService.convertCurrency(this.paymentDecoded.msatoshi ? this.paymentDecoded.msatoshi / 1000 : 0, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.msatoshi ? this.paymentDecoded.msatoshi / 1000 : 0) + ' Sats (' + data.symbol + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.msatoshi ? + this.paymentDecoded.msatoshi / 1000 : 0) + ' Sats (' + data.symbol + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), + CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.msatoshi ? this.paymentDecoded.msatoshi / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.msatoshi ? this.paymentDecoded.msatoshi / 1000 : 0) + + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.msatoshi ? this.paymentDecoded.msatoshi / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.msatoshi ? this.paymentDecoded.msatoshi / 1000 : 0) + + ' Sats | Memo: ' + this.paymentDecoded.description; } } else { this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; @@ -289,15 +313,51 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD this.payments.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.payments.filterPredicate = (rowData: Payment, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.created_at) ? this.datePipe.transform(new Date(rowData.created_at * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + ((rowData.bolt12) ? 'bolt12' : (rowData.bolt11) ? 'bolt11' : 'keysend') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'status': + rowToFilter = rowData?.status === 'complete' ? 'completed' : 'incomplete/failed'; + break; + + case 'created_at': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'msatoshi_sent': + case 'msatoshi': + rowToFilter = ((+(rowData[this.selFilterBy] || 0)) / 1000)?.toString() || ''; + break; + + case 'type': + rowToFilter = rowData?.bolt12 ? 'bolt12' : rowData?.bolt11 ? 'bolt11' : 'keysend'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'status' || this.selFilterBy === 'type') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadPaymentsTable(payments: Payment[]) { this.payments = (payments) ? new MatTableDataSource([...payments]) : new MatTableDataSource([]); - this.payments.sort = this.sort; this.payments.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.payments.filterPredicate = (rowData: Payment, fltr: string) => { - const newRowData = ((rowData.created_at) ? this.datePipe.transform(new Date(rowData.created_at * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + ((rowData.bolt12) ? 'bolt12' : (rowData.bolt11) ? 'bolt11' : 'keysend') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.payments.sort = this.sort; + this.payments.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.payments.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/cln/transactions/send-payment-modal/send-payment.component.html b/src/app/cln/transactions/send-payment-modal/send-payment.component.html index 165703e7..f05d4455 100644 --- a/src/app/cln/transactions/send-payment-modal/send-payment.component.html +++ b/src/app/cln/transactions/send-payment-modal/send-payment.component.html @@ -4,7 +4,7 @@
Send Payment
- + diff --git a/src/app/cln/transactions/send-payment-modal/send-payment.component.scss b/src/app/cln/transactions/send-payment-modal/send-payment.component.scss index f18d5d79..e69de29b 100644 --- a/src/app/cln/transactions/send-payment-modal/send-payment.component.scss +++ b/src/app/cln/transactions/send-payment-modal/send-payment.component.scss @@ -1,10 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} - -.mat-column-payment_hash { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} \ No newline at end of file diff --git a/src/app/cln/transactions/send-payment-modal/send-payment.component.ts b/src/app/cln/transactions/send-payment-modal/send-payment.component.ts index f6ec6acd..aa1463e7 100644 --- a/src/app/cln/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/cln/transactions/send-payment-modal/send-payment.component.ts @@ -77,7 +77,15 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { public isCompatibleVersion = false; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNPaymentInformation, private store: Store, private logger: LoggerService, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions, private dataService: DataService) { } + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: CLNPaymentInformation, + private store: Store, + private logger: LoggerService, + private commonService: CommonService, + private decimalPipe: DecimalPipe, + private actions: Actions, + private dataService: DataService) { } ngOnInit() { if (this.data && this.data.paymentType) { @@ -225,7 +233,10 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { } } else { if (this.offerAmount) { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentType: PaymentTypes.OFFER, invoice: this.offerInvoice.invoice, saveToDB: this.flgSaveToDB, bolt12: this.offerRequest, amount: this.offerAmount * 1000, zeroAmtOffer: this.zeroAmtOffer, title: this.offerTitle, vendor: this.offerVendor, description: this.offerDescription, fromDialog: true } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentType: PaymentTypes.OFFER, + invoice: this.offerInvoice.invoice, saveToDB: this.flgSaveToDB, bolt12: this.offerRequest, amount: this.offerAmount * 1000, + zeroAmtOffer: this.zeroAmtOffer, title: this.offerTitle, vendor: this.offerVendor, description: this.offerDescription, + fromDialog: true } })); } } } diff --git a/src/app/eclair/graph/lookups/lookups.component.scss b/src/app/eclair/graph/lookups/lookups.component.scss index d45059cb..51956474 100644 --- a/src/app/eclair/graph/lookups/lookups.component.scss +++ b/src/app/eclair/graph/lookups/lookups.component.scss @@ -8,7 +8,3 @@ margin-bottom: 0; list-style-type: none; } - -.pl-3 { - padding-left: 3rem; -} \ No newline at end of file diff --git a/src/app/eclair/graph/lookups/lookups.component.ts b/src/app/eclair/graph/lookups/lookups.component.ts index 6fd04dee..2fd8191a 100644 --- a/src/app/eclair/graph/lookups/lookups.component.ts +++ b/src/app/eclair/graph/lookups/lookups.component.ts @@ -27,7 +27,6 @@ export class ECLLookupsComponent implements OnInit, OnDestroy { public nodeLookupValue: LookupNode = {}; public channelLookupValue = []; public flgSetLookupValue = false; - public temp: any; public messageObj = []; public selectedFieldId = 0; public lookupFields = [ diff --git a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html index 4e51881e..f419dcc1 100644 --- a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html +++ b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.html @@ -31,17 +31,19 @@

Addresses

-
+
- + - - + diff --git a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss index e69de29b..203f71c1 100644 --- a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss +++ b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.scss @@ -0,0 +1,11 @@ +div.bordered-box.table-actions-select.btn-action { + min-width: 13rem; + width: 13rem; + min-height: 3.6rem; +} + +button.mat-stroked-button.btn-action-copy { + min-width: 13rem; + width: 13rem; +} + \ No newline at end of file diff --git a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts index 1dcc6816..e3473524 100644 --- a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts +++ b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts @@ -16,7 +16,7 @@ export class ECLNodeLookupComponent implements OnInit { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @Input() lookupResult: LookupNode = {}; - public addresses: any; + public addresses: any = new MatTableDataSource([]); public displayedColumns = ['address', 'actions']; public nodeFeaturesEnum = NodeFeaturesECL; diff --git a/src/app/eclair/graph/query-routes/query-routes.component.html b/src/app/eclair/graph/query-routes/query-routes.component.html index d35c96b8..58def3cf 100644 --- a/src/app/eclair/graph/query-routes/query-routes.component.html +++ b/src/app/eclair/graph/query-routes/query-routes.component.html @@ -38,20 +38,30 @@
Address {{address}} {{address}} Actions + +
Actions
+
- +
- - + + - - + + - - + - +
Alias {{hop?.alias}} Alias + + {{hop?.alias}} + + ID {{hop?.nodeId}} ID + + {{hop?.nodeId}} + + Actions - + +
Actions
+
+
diff --git a/src/app/eclair/graph/query-routes/query-routes.component.scss b/src/app/eclair/graph/query-routes/query-routes.component.scss index f5961ac5..e69de29b 100644 --- a/src/app/eclair/graph/query-routes/query-routes.component.scss +++ b/src/app/eclair/graph/query-routes/query-routes.component.scss @@ -1,11 +0,0 @@ -.mat-column-actions { - flex: 0 0 5%; - width: 5%; -} - -.mat-column-pubkey_alias { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/eclair/graph/query-routes/query-routes.component.ts b/src/app/eclair/graph/query-routes/query-routes.component.ts index 35ec1ddb..b96e7e1d 100644 --- a/src/app/eclair/graph/query-routes/query-routes.component.ts +++ b/src/app/eclair/graph/query-routes/query-routes.component.ts @@ -26,8 +26,7 @@ export class ECLQueryRoutesComponent implements OnInit, OnDestroy { public nodeId = ''; public amount = 0; public qrHops: Array = []; - public flgSticky = false; - public displayedColumns: any; + public displayedColumns = ['alias', 'nodeId', 'actions']; public flgLoading: Array = [false]; // 0: peers public faRoute = faRoute; public faExclamationTriangle = faExclamationTriangle; @@ -37,19 +36,6 @@ export class ECLQueryRoutesComponent implements OnInit, OnDestroy { constructor(private store: Store, private eclEffects: ECLEffects, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'nodeId', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'nodeId', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'nodeId', 'actions']; - } } ngOnInit() { diff --git a/src/app/eclair/home/fee-info/fee-info.component.ts b/src/app/eclair/home/fee-info/fee-info.component.ts index a00f0e66..862b9df8 100644 --- a/src/app/eclair/home/fee-info/fee-info.component.ts +++ b/src/app/eclair/home/fee-info/fee-info.component.ts @@ -17,7 +17,7 @@ export class ECLFeeInfoComponent implements OnChanges { ngOnChanges() { if (this.fees?.monthly_fee) { - this.totalFees = [{ name: 'Monthly', value: this.fees.monthly_fee }, { name: 'Weekly', value: this.fees.weekly_fee || 0 }, { name: 'Daily ', value: this.fees.daily_fee || 0}]; + this.totalFees = [{ name: 'Monthly', value: this.fees.monthly_fee }, { name: 'Weekly', value: this.fees.weekly_fee || 0 }, { name: 'Daily ', value: this.fees.daily_fee || 0 }]; const e = Math.ceil(Math.log(this.fees.monthly_fee + 1) / Math.LN10); const m = 10 ** (e - 1); this.maxFeeValue = (Math.ceil(this.fees.monthly_fee / m) * m) / 5 || 100; diff --git a/src/app/eclair/home/home.component.ts b/src/app/eclair/home/home.component.ts index 7bba0812..83303e79 100644 --- a/src/app/eclair/home/home.component.ts +++ b/src/app/eclair/home/home.component.ts @@ -14,7 +14,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; -import { allChannelsInfo, eclnNodeSettings, fees, nodeInfoStatus, onchainBalance } from '../store/ecl.selector'; +import { allChannelsInfo, eclNodeSettings, fees, nodeInfoStatus, onchainBalance } from '../store/ecl.selector'; export interface Tile { id: string; @@ -117,7 +117,7 @@ export class ECLHomeComponent implements OnInit, OnDestroy { } ngOnInit() { - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings) => { this.selNode = nodeSettings; }); @@ -142,7 +142,8 @@ export class ECLHomeComponent implements OnInit, OnDestroy { }); this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[3]), withLatestFrom(this.store.select(onchainBalance))). - subscribe(([allChannelsSelector, oCBalanceSelector]: [({ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload }), ({ onchainBalance: OnChainBalance, apiCallStatus: ApiCallStatusPayload })]) => { + subscribe(([allChannelsSelector, oCBalanceSelector]: [({ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload }), + ({ onchainBalance: OnChainBalance, apiCallStatus: ApiCallStatusPayload })]) => { this.errorMessages[2] = ''; this.errorMessages[3] = ''; this.apiCallStatusAllChannels = allChannelsSelector.apiCallStatus; diff --git a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index febc8a1d..87f8d5b1 100644 --- a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -14,7 +14,7 @@ - {{selAmountUnit}} + {{selAmountUnit}} {{amountError}} diff --git a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html index aac104f0..0675e2bd 100644 --- a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html +++ b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.html @@ -4,50 +4,77 @@ Transaction History
- - - +
+ + + {{getLabel(column)}} + + + + + +
+ [ngClass]="{'error-border': errorMessage !== ''}"> - - + + + + + + + + + + + + + + - + - - + + - - + - - - - - - @@ -58,7 +85,7 @@ - +
Date/Time {{(transaction.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}Date/Time{{(transaction?.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}Address +
+ {{transaction?.address}} +
+
Blockhash +
+ {{transaction?.blockHash}} +
+
Transaction ID +
+ {{transaction?.txid}} +
+
Amount (Sats) Amount (Sats) - {{transaction.amount | number}} - ({{transaction.amount * -1 | number}}) + {{transaction?.amount | number}} + ({{transaction?.amount * -1 | number}}) Fees (Sats) {{transaction.fees | number}}Fees (Sats){{transaction?.fees | number}} Confirmations + Confirmations {{transaction?.confirmations | number}} Address {{transaction.address}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.scss b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.scss +++ b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts index 8b0f9679..f2d85fec 100644 --- a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts +++ b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts @@ -10,14 +10,16 @@ import { MatTableDataSource } from '@angular/material/table'; import { Transaction } from '../../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { fetchTransactions } from '../../store/ecl.actions'; -import { transactions } from '../../store/ecl.selector'; +import { eclPageSettings, transactions } from '../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-on-chain-transaction-history', @@ -31,10 +33,14 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; - faHistory = faHistory; + public faHistory = faHistory; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'on_chain'; + public tableSetting: TableSetting = { tableId: 'transaction', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING }; public displayedColumns: any[] = []; - public listTransactions: any; - public flgSticky = false; + public listTransactions: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -43,28 +49,33 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unsub: Array> = [new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amount', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amount', 'confirmations', 'fees', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amount', 'fees', 'confirmations', 'address', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['timestamp', 'amount', 'fees', 'confirmations', 'address', 'actions']; - } } ngOnInit() { this.store.dispatch(fetchTransactions()); - this.store.select(transactions).pipe(takeUntil(this.unsub[0])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(transactions).pipe(takeUntil(this.unSubs[1])). subscribe((transactionsSelector: { transactions: Transaction[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = transactionsSelector.apiCallStatus; @@ -82,6 +93,31 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy this.listTransactions.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.listTransactions.filterPredicate = (rowData: Transaction, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'timestamp': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + onTransactionClick(selTransaction: Transaction, event: any) { const reorderedTransactions = [ [{ key: 'blockHash', value: selTransaction.blockHash, title: 'Block Hash', width: 100 }], @@ -107,11 +143,9 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy this.listTransactions = new MatTableDataSource([...transactions]); this.listTransactions.sort = this.sort; this.listTransactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.listTransactions.filterPredicate = (rowData: Transaction, fltr: string) => { - const newRowData = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.listTransactions.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.listTransactions.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listTransactions); } @@ -123,7 +157,7 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy } ngOnDestroy() { - this.unsub.forEach((completeSub) => { + this.unSubs.forEach((completeSub) => { completeSub.next(null); completeSub.complete(); }); diff --git a/src/app/eclair/on-chain/on-chain.component.ts b/src/app/eclair/on-chain/on-chain.component.ts index 06603001..231ec029 100644 --- a/src/app/eclair/on-chain/on-chain.component.ts +++ b/src/app/eclair/on-chain/on-chain.component.ts @@ -9,7 +9,7 @@ import { ECLOnChainSendModalComponent } from './on-chain-send-modal/on-chain-sen import { SelNodeChild } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; import { openAlert } from '../../store/rtl.actions'; -import { eclnNodeSettings, onchainBalance } from '../store/ecl.selector'; +import { eclNodeSettings, onchainBalance } from '../store/ecl.selector'; import { OnChainBalance } from '../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @@ -40,7 +40,7 @@ export class ECLOnChainComponent implements OnInit, OnDestroy { this.activeLink = linkFound ? linkFound.link : this.links[0].link; } }); - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[1])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[1])). subscribe((nodeSettings) => { this.selNode = nodeSettings; }); diff --git a/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.html index 33771042..94fbfa8e 100644 --- a/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -41,7 +41,7 @@

Private

- {{channel.channelFlags === 0 ? 'Yes' : 'No'}} + {{!channel.announceChannel ? 'Yes' : 'No'}}

Funder

diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html index 7e71fb99..5a0f9441 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html @@ -1,48 +1,85 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- - - +
State
+ + + + + + - + + + + + - + + + + + + + + + + + + + - + - + + + + + - - + - - - +
-
- - - {{channel?.state | titlecase}} -
+ +
State{{channel?.state | titlecase}} Short Channel ID Short Channel ID {{channel?.shortChannelId}} Channel ID +
+ {{channel?.channelId}} +
+
Alias Alias -
+
{{channel.alias}}
Node ID +
+ {{channel?.nodeId}} +
+
Funder{{channel?.isFunder ? 'Yes' : 'No'}}Buried{{channel?.buried ? 'Yes' : 'No'}} Local Balance (Sats) Local Balance (Sats) {{channel?.toLocal | number:'1.0-0'}} Remote Balance (Sats) Remote Balance (Sats) {{channel?.toRemote | number:'1.0-0'}} Local Fee/KW + {{channel?.feeRatePerKw | number:'1.0-0'}} Balance Score + Balance Score
{{channel?.balancedness || 0 | number}}
@@ -50,15 +87,15 @@
-
+
+
Download CSV
-
+ +
@@ -76,7 +113,7 @@
diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.scss b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.scss index ff0e307d..13cfbdfe 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.scss +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.scss @@ -1,44 +1,10 @@ -@import "../../../../../shared/theme/styles/mixins.scss"; - -.mat-column-state { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-alias { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } +.mat-column-announceChannel { + max-width: 1.2rem; + width:1.2rem; } .mat-column-balancedness { padding-left: 3rem; - flex: 0 0 20%; - width: 20%; -} - -.mat-column-shortChannelId, .mat-column-toLocal, .mat-column-toRemote { - flex: 1 1 15%; - width: 15%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - @include for_screensize(phone) { - white-space: unset; - } -} - -.mat-column-actions { - min-height: 4.8rem; - & .bordered-box.table-actions-select { - flex: 0 0 100%; - @include for_screensize(phone) { - flex: 0 0 80%; - } - } + min-width: 15rem; + max-width: 30rem; } diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts index 6bc7c1e7..f0c7407c 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts @@ -8,7 +8,7 @@ import { MatTableDataSource } from '@angular/material/table'; import { faEye, faEyeSlash } from '@fortawesome/free-solid-svg-icons'; import { Channel, ChannelsStatus, GetInfo, LightningBalance, OnChainBalance, Peer } from '../../../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, AlertTypeEnum, APICallStatusEnum } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, AlertTypeEnum, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; @@ -18,7 +18,9 @@ import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPaylo import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; import { closeChannel } from '../../../../store/ecl.actions'; -import { allChannelsInfo, eclNodeInformation, onchainBalance, peers } from '../../../../store/ecl.selector'; +import { allChannelsInfo, eclNodeInformation, eclPageSettings, onchainBalance, peers } from '../../../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-channel-inactive-table', @@ -34,16 +36,20 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public faEye = faEye; public faEyeSlash = faEyeSlash; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'inactive_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public inactiveChannels: Channel[]; public totalBalance = 0; public displayedColumns: any[] = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public feeRateTypes = FEE_RATE_TYPES; public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -51,27 +57,33 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['state', 'alias', 'toLocal', 'toRemote', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['state', 'alias', 'toLocal', 'toRemote', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['state', 'shortChannelId', 'alias', 'toLocal', 'toRemote', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['state', 'shortChannelId', 'alias', 'toLocal', 'toRemote', 'balancedness', 'actions']; - } } ngOnInit() { - this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('announceChannel'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[1])). subscribe((allChannelsSelector: ({ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload })) => { this.errorMessage = ''; this.apiCallStatus = allChannelsSelector.apiCallStatus; @@ -82,15 +94,15 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, this.loadChannelsTable(); this.logger.info(allChannelsSelector); }); - this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[1])). + this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[2])). subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(peers).pipe(takeUntil(this.unSubs[2])). + this.store.select(peers).pipe(takeUntil(this.unSubs[3])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.numPeers = (peersSelector.peers && peersSelector.peers.length) ? peersSelector.peers.length : 0; }); - this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[3])). + this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[4])). subscribe((ocBalSelector: { onchainBalance: OnChainBalance, apiCallStatus: ApiCallStatusPayload }) => { this.totalBalance = ocBalSelector.onchainBalance.total || 0; }); @@ -106,8 +118,12 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, const alertTitle = (forceClose) ? 'Force Close Channel' : 'Close Channel'; const yesBtnText = (forceClose) ? 'Force Close' : 'Close Channel'; const titleMessage = (forceClose) ? - ('Force closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)) : - ('Closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)); + ('Force closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : + (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : + channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)) : + ('Closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : + (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : + channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)); this.store.dispatch(openConfirmation({ payload: { data: { @@ -120,7 +136,7 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(closeChannel({ payload: { channelId: channelToClose.channelId || '', force: forceClose } })); @@ -128,10 +144,6 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, }); } - applyFilter() { - this.channels.filter = this.selFilter.trim().toLocaleLowerCase(); - } - onChannelClick(selChannel: Channel, event: any) { this.store.dispatch(openAlert({ payload: { @@ -144,13 +156,42 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit, })); } + applyFilter() { + this.channels.filter = this.selFilter.trim().toLocaleLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : column === 'announceChannel' ? 'Private' : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'announceChannel': + rowToFilter = rowData?.announceChannel ? 'public' : 'private'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadChannelsTable() { - this.inactiveChannels.sort((a, b) => ((a.alias === b.alias) ? 0 : ((b.alias) ? 1 : -1))); this.channels = new MatTableDataSource([...this.inactiveChannels]); this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.channels.filterPredicate = (channel: Channel, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.channels); } diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index 361846e8..0f36e163 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -1,71 +1,108 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
+ + + + - + + + + + - + + + + + + + + + + + + + - + - + - + - + + + + + - - + - - - +
+ + + Short Channel ID Short Channel ID{{channel?.shortChannelId}}Channel ID -
- - - {{channel?.shortChannelId}} +
+ {{channel?.channelId}}
Alias Alias +
+ {{channel?.alias}} +
+
Node ID -
- {{channel.alias}} +
+ {{channel?.nodeId}}
Funder{{channel?.isFunder ? 'Yes' : 'No'}}Buried{{channel?.buried ? 'Yes' : 'No'}} Base Fee (mSats) Base Fee (mSats) {{channel?.feeBaseMsat | number:'1.0-0'}} Fee Rate (mili mSats) Fee Rate (mili mSats) {{channel?.feeProportionalMillionths | number:'1.0-0'}} Local Balance (Sats) Local Balance (Sats) {{channel?.toLocal | number:'1.0-0'}} Remote Balance (Sats) Remote Balance (Sats) {{channel?.toRemote | number:'1.0-0'}} Fee/KW + {{channel?.feeRatePerKw | number:'1.0-0'}} Balance Score + Balance Score
{{channel?.balancedness || 0 | number}}
- +
-
+
+
Update Fee Policy Download CSV
-
+ +
@@ -79,14 +116,14 @@
-

No peers connected. Add a peer in order to open a channel.

+

No peers connected. Add a peer in order to open a channel?.

No channel available.

Getting channels...

{{errorMessage}}

diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss index 4147e3d9..bc1f695b 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss @@ -1,53 +1,10 @@ -@import "../../../../../shared/theme/styles/mixins.scss"; - -.mat-column-shortChannelId { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-alias { - padding-left: 1rem; - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } +.mat-column-announceChannel { + max-width: 1.2rem; + width:1.2rem; } .mat-column-balancedness { padding-left: 2rem; - flex: 0 0 17%; - width: 17%; -} - -.mat-column-state, .mat-column-feeBaseMsat, .mat-column-feeProportionalMillionths, .mat-column-toLocal, .mat-column-toRemote { - flex: 1 1 10%; - width: 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - @include for_screensize(tab-port) { - white-space: unset; - flex: 1 1 20%; - width: 20%; - } - @include for_screensize(phone) { - white-space: unset; - } -} - -.mat-column-actions { - min-height: 4.8rem; - & .bordered-box.table-actions-select { - flex: 0 0 100%; - @include for_screensize(tab-port) { - flex: 0 0 90%; - } - @include for_screensize(phone) { - flex: 0 0 80%; - } - } + min-width: 15rem; + max-width: 30rem; } diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts index 1e9f80aa..ceff038c 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts @@ -9,7 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Channel, ChannelsStatus, GetInfo, LightningBalance, OnChainBalance, Peer } from '../../../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, AlertTypeEnum, APICallStatusEnum } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, AlertTypeEnum, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; @@ -19,7 +19,9 @@ import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPaylo import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; import { closeChannel, updateChannel } from '../../../../store/ecl.actions'; -import { allChannelsInfo, eclNodeInformation, onchainBalance, peers } from '../../../../store/ecl.selector'; +import { allChannelsInfo, eclNodeInformation, eclPageSettings, onchainBalance, peers } from '../../../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-channel-open-table', @@ -35,16 +37,20 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public faEye = faEye; public faEyeSlash = faEyeSlash; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'open_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public activeChannels: Channel[]; public totalBalance = 0; public displayedColumns: any[] = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public feeRateTypes = FEE_RATE_TYPES; public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -52,28 +58,34 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private router: Router) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private router: Router, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'toLocal', 'toRemote', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['shortChannelId', 'alias', 'toLocal', 'toRemote', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['shortChannelId', 'alias', 'feeBaseMsat', 'feeProportionalMillionths', 'toLocal', 'toRemote', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['shortChannelId', 'alias', 'feeBaseMsat', 'feeProportionalMillionths', 'toLocal', 'toRemote', 'balancedness', 'actions']; - } this.selFilter = this.router.getCurrentNavigation()?.extras?.state?.filter ? this.router.getCurrentNavigation()?.extras?.state?.filter : ''; } ngOnInit() { - this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('announceChannel'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[1])). subscribe((allChannelsSelector: ({ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload })) => { this.errorMessage = ''; this.apiCallStatus = allChannelsSelector.apiCallStatus; @@ -81,27 +93,27 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.activeChannels = allChannelsSelector.activeChannels; - if (this.activeChannels.length > 0 && this.sort && this.paginator) { + if (this.activeChannels.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadChannelsTable(); } this.logger.info(allChannelsSelector); }); - this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[1])). + this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[2])). subscribe((nodeInfo: any) => { this.information = nodeInfo; }); - this.store.select(peers).pipe(takeUntil(this.unSubs[2])). + this.store.select(peers).pipe(takeUntil(this.unSubs[3])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.numPeers = (peersSelector.peers && peersSelector.peers.length) ? peersSelector.peers.length : 0; }); - this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[3])). + this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[4])). subscribe((ocBalSelector: { onchainBalance: OnChainBalance, apiCallStatus: ApiCallStatusPayload }) => { this.totalBalance = ocBalSelector.onchainBalance.total || 0; }); } ngAfterViewInit() { - if (this.activeChannels.length > 0 && this.sort && this.paginator) { + if (this.activeChannels.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadChannelsTable(); } } @@ -111,7 +123,9 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe return; } const titleMsg = channelToUpdate === 'all' ? 'Update fee policy for all channels' : - ('Update fee policy for Channel: ' + ((!channelToUpdate.alias && !channelToUpdate.shortChannelId) ? channelToUpdate.channelId : (channelToUpdate.alias && channelToUpdate.shortChannelId) ? channelToUpdate.alias + ' (' + channelToUpdate.shortChannelId + ')' : channelToUpdate.alias ? channelToUpdate.alias : channelToUpdate.shortChannelId)); + ('Update fee policy for Channel: ' + ((!channelToUpdate.alias && !channelToUpdate.shortChannelId) ? channelToUpdate.channelId : + (channelToUpdate.alias && channelToUpdate.shortChannelId) ? channelToUpdate.alias + ' (' + channelToUpdate.shortChannelId + ')' : + channelToUpdate.alias ? channelToUpdate.alias : channelToUpdate.shortChannelId)); const confirmationMsg = []; this.store.dispatch(openConfirmation({ payload: { @@ -131,7 +145,7 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { const base_fee = confirmRes[0].inputValue; @@ -174,8 +188,12 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe const alertTitle = (forceClose) ? 'Force Close Channel' : 'Close Channel'; const yesBtnText = (forceClose) ? 'Force Close' : 'Close Channel'; const titleMessage = (forceClose) ? - ('Force closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)) : - ('Closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)); + ('Force closing channel: ' + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : + (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : + channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)) : ('Closing channel: ' + + ((!channelToClose.alias && !channelToClose.shortChannelId) ? channelToClose.channelId : + (channelToClose.alias && channelToClose.shortChannelId) ? channelToClose.alias + ' (' + channelToClose.shortChannelId + ')' : + channelToClose.alias ? channelToClose.alias : channelToClose.shortChannelId)); this.store.dispatch(openConfirmation({ payload: { data: { @@ -188,7 +206,7 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[6])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(closeChannel({ payload: { channelId: channelToClose.channelId, force: forceClose } })); @@ -196,10 +214,6 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe }); } - applyFilter() { - this.channels.filter = this.selFilter.trim().toLowerCase(); - } - onChannelClick(selChannel: Channel, event: any) { this.store.dispatch(openAlert({ payload: { @@ -212,13 +226,42 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe })); } + applyFilter() { + this.channels.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : column === 'announceChannel' ? 'Private' : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'announceChannel': + rowToFilter = rowData?.announceChannel ? 'public' : 'private'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadChannelsTable() { - this.activeChannels.sort((a, b) => ((a.alias === b.alias) ? 0 : ((b.alias) ? 1 : -1))); this.channels = new MatTableDataSource([...this.activeChannels]); this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.channels.filterPredicate = (channel: Channel, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.channels); } diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index 32ad2b71..05bc3f0e 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -1,42 +1,85 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
+ + + + - - + + + + + + - + + + + + + + + + + + + + - + - + + + + + - - @@ -47,7 +90,7 @@ - +
+ + + State {{channel?.state | titlecase}}State{{channel?.state | titlecase}}Channel ID +
+ {{channel?.channelId}} +
+
Alias Alias {{channel?.alias}} Node ID +
+ {{channel?.nodeId}} +
+
Funder{{channel?.isFunder ? 'Yes' : 'No'}}Buried{{channel?.buried ? 'Yes' : 'No'}} Local Balance (Sats) Local Balance (Sats) {{channel?.toLocal | number:'1.0-0'}} Remote Balance (Sats) Remote Balance (Sats) {{channel?.toRemote | number:'1.0-0'}} Fee/KW + {{channel?.feeRatePerKw | number:'1.0-0'}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss index 0ad983c7..4f321d27 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss @@ -1,3 +1,4 @@ -.mat-column-actions { - min-height: 4.8rem; +.mat-column-announceChannel { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index d7d23edc..b9b450b3 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -6,9 +6,10 @@ import { Store } from '@ngrx/store'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { faEye, faEyeSlash } from '@fortawesome/free-solid-svg-icons'; import { Channel, ChannelsStatus, GetInfo, LightningBalance, OnChainBalance, Peer } from '../../../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, APICallStatusEnum } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, FEE_RATE_TYPES, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { ECLChannelInformationComponent } from '../../channel-information-modal/channel-information.component'; import { LoggerService } from '../../../../../shared/services/logger.service'; @@ -16,7 +17,9 @@ import { CommonService } from '../../../../../shared/services/common.service'; import { openAlert } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { allChannelsInfo, eclNodeInformation, onchainBalance, peers } from '../../../../store/ecl.selector'; +import { allChannelsInfo, eclNodeInformation, eclPageSettings, onchainBalance, peers } from '../../../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../../../shared/pipes/app.pipe'; @Component({ @@ -31,16 +34,22 @@ export class ECLChannelPendingTableComponent implements OnInit, AfterViewInit, O @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public faEye = faEye; + public faEyeSlash = faEyeSlash; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'pending_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public pendingChannels: Channel[]; public totalBalance = 0; public displayedColumns: any[] = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public feeRateTypes = FEE_RATE_TYPES; public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -50,25 +59,31 @@ export class ECLChannelPendingTableComponent implements OnInit, AfterViewInit, O public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private commonService: CommonService, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['state', 'alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['state', 'alias', 'toLocal', 'toRemote', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['state', 'alias', 'toLocal', 'toRemote', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['state', 'alias', 'toLocal', 'toRemote', 'actions']; - } } ngOnInit() { - this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('announceChannel'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[1])). subscribe((allChannelsSelector: ({ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload })) => { this.errorMessage = ''; this.apiCallStatus = allChannelsSelector.apiCallStatus; @@ -79,15 +94,15 @@ export class ECLChannelPendingTableComponent implements OnInit, AfterViewInit, O this.loadChannelsTable(); this.logger.info(allChannelsSelector); }); - this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[1])). + this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[2])). subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(peers).pipe(takeUntil(this.unSubs[4])). + this.store.select(peers).pipe(takeUntil(this.unSubs[3])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.numPeers = (peersSelector.peers && peersSelector.peers.length) ? peersSelector.peers.length : 0; }); - this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[5])). + this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[4])). subscribe((oCBalanceSelector: { onchainBalance: OnChainBalance, apiCallStatus: ApiCallStatusPayload }) => { this.totalBalance = oCBalanceSelector.onchainBalance.total || 0; }); @@ -99,10 +114,6 @@ export class ECLChannelPendingTableComponent implements OnInit, AfterViewInit, O } } - applyFilter() { - this.channels.filter = this.selFilter.trim().toLowerCase(); - } - onChannelClick(selChannel: Channel, event: any) { this.store.dispatch(openAlert({ payload: { @@ -115,13 +126,42 @@ export class ECLChannelPendingTableComponent implements OnInit, AfterViewInit, O })); } + applyFilter() { + this.channels.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : column === 'announceChannel' ? 'Private' : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'announceChannel': + rowToFilter = rowData?.announceChannel ? 'public' : 'private'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadChannelsTable() { - this.pendingChannels.sort((a, b) => ((a.alias === b.alias) ? 0 : ((b.alias) ? 1 : -1))); this.channels = new MatTableDataSource([...this.pendingChannels]); this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.channels.filterPredicate = (channel: Channel, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.channels); } diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts index 96701dcd..39ff54d6 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts @@ -11,7 +11,7 @@ import { SelNodeChild } from '../../../../shared/models/RTLconfig'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert } from '../../../../store/rtl.actions'; -import { allChannelsInfo, eclNodeInformation, eclnNodeSettings, onchainBalance, peers } from '../../../store/ecl.selector'; +import { allChannelsInfo, eclNodeInformation, eclNodeSettings, onchainBalance, peers } from '../../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ @@ -49,7 +49,7 @@ export class ECLChannelsTablesComponent implements OnInit, OnDestroy { this.numOfInactiveChannels = (allChannelsSelector.channelsStatus && allChannelsSelector.channelsStatus.inactive && allChannelsSelector.channelsStatus.inactive.channels) ? allChannelsSelector.channelsStatus.inactive.channels : 0; this.logger.info(allChannelsSelector); }); - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[2])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[2])). subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); diff --git a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.html index 82ec6385..6a822603 100644 --- a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -4,7 +4,7 @@
{{alertTitle}}
- +
@@ -40,8 +40,8 @@
-
- +
+
@@ -54,8 +54,8 @@ {{channelConnectionError}}
- - + +
diff --git a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts index 26b10fdb..73f2000c 100644 --- a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -13,6 +13,8 @@ import { ECLOpenChannelAlert } from '../../../../shared/models/alertData'; import { RTLState } from '../../../../store/rtl.state'; import { saveNewChannel } from '../../../store/ecl.actions'; +import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { eclNodeSettings } from '../../../store/ecl.selector'; @Component({ selector: 'rtl-ecl-open-channel', @@ -22,6 +24,7 @@ import { saveNewChannel } from '../../../store/ecl.actions'; export class ECLOpenChannelComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; + public selNode: SelNodeChild | null = {}; public selectedPeer = new FormControl(); public faExclamationTriangle = faExclamationTriangle; public alertTitle: string; @@ -36,8 +39,8 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { public fundingAmount: number | null; public selectedPubkey = ''; public isPrivate = false; - public feeRate : number | null = null; - private unSubs: Array> = [new Subject(), new Subject()]; + public feeRate: number | null = null; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: ECLOpenChannelAlert, private store: Store, private actions: Actions) { } @@ -46,16 +49,21 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { this.information = this.data.message.information; this.totalBalance = this.data.message.balance; this.peer = this.data.message.peer || null; - this.peers = this.data.message.peers || []; + this.peers = this.data.message.peers || []; } else { this.information = {}; this.totalBalance = 0; this.peer = null; - this.peers = []; + this.peers = []; } this.alertTitle = this.data.alertTitle || 'Alert'; + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: SelNodeChild | null) => { + this.selNode = nodeSettings; + this.isPrivate = !!nodeSettings?.unannouncedChannels; + }); this.actions.pipe( - takeUntil(this.unSubs[0]), + takeUntil(this.unSubs[1]), filter((action) => action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL || action.type === ECLActions.FETCH_CHANNELS_ECL)). subscribe((action: any) => { if (action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL && action.payload.status === APICallStatusEnum.ERROR && action.payload.action === 'SaveNewChannel') { @@ -73,7 +81,7 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { return ((x < y) ? -1 : ((x > y) ? 1 : 0)); }); this.filteredPeers = this.selectedPeer.valueChanges.pipe( - takeUntil(this.unSubs[1]), startWith(''), + takeUntil(this.unSubs[2]), startWith(''), map((peer) => (typeof peer === 'string' ? peer : peer.alias ? peer.alias : peer.nodeId)), map((alias) => (alias ? this.filterPeers(alias) : this.sortedPeers.slice())) ); @@ -111,17 +119,18 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { this.feeRate = null; this.selectedPeer.setValue(''); this.fundingAmount = null; - this.isPrivate = false; + this.isPrivate = !!this.selNode?.unannouncedChannels; this.channelConnectionError = ''; this.advancedTitle = 'Advanced Options'; this.form.resetForm(); } onAdvancedPanelToggle(isClosed: boolean) { + this.advancedTitle = 'Advanced Options'; if (isClosed) { - this.advancedTitle = (this.feeRate && this.feeRate > 0) ? 'Advanced Options | Fee (Sats/vByte): ' + this.feeRate : 'Advanced Options'; - } else { - this.advancedTitle = 'Advanced Options'; + if (this.feeRate && this.feeRate > 0) { + this.advancedTitle = this.advancedTitle + ' | Fee (Sats/vByte): ' + this.feeRate; + } } } diff --git a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html index 79c4842e..b0e12904 100644 --- a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.html @@ -11,7 +11,7 @@
- {{peerFormLabel}} + {{peerFormLabel}} Address is required. @@ -30,7 +30,7 @@ {{channelFormLabel}}
- + Remaining Bal: {{totalBalance - ((channelFormGroup.controls.fundingAmount.value) ? channelFormGroup.controls.fundingAmount.value : 0)}} Sats @@ -38,17 +38,13 @@ Amount must be a positive number. Amount must be less than or equal to {{totalBalance}}. + + +
Private Channel
-
-
- - - -
-
diff --git a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts index b6a5f288..8cb4c1b4 100644 --- a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts +++ b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts @@ -15,6 +15,8 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { RTLState } from '../../../store/rtl.state'; import { saveNewChannel, saveNewPeer } from '../../store/ecl.actions'; +import { eclNodeSettings } from '../../store/ecl.selector'; +import { SelNodeChild } from '../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-ecl-connect-peer', @@ -26,6 +28,7 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { @ViewChild('peersForm', { static: false }) form: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public selNode: SelNodeChild | null = {}; public peerAddress = ''; public totalBalance = 0; public flgChannelOpened = false; @@ -47,7 +50,7 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { if (this.data.message) { this.totalBalance = this.data.message.balance; this.peerAddress = (this.data.message.peer && this.data.message.peer.nodeId && this.data.message.peer.address) ? (this.data.message.peer.nodeId + '@' + this.data.message.peer.address) : - (this.data.message.peer && this.data.message.peer.nodeId && !this.data.message.peer.address) ? this.data.message.peer.nodeId : ''; + (this.data.message.peer && this.data.message.peer.nodeId && !this.data.message.peer.address) ? this.data.message.peer.nodeId : ''; } else { this.totalBalance = 0; this.peerAddress = ''; @@ -58,11 +61,16 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { }); this.channelFormGroup = this.formBuilder.group({ fundingAmount: ['', [Validators.required, Validators.min(1), Validators.max(this.totalBalance)]], - isPrivate: [false], + isPrivate: [!!this.selNode?.unannouncedChannels], feeRate: [null], hiddenAmount: ['', [Validators.required]] }); this.statusFormGroup = this.formBuilder.group({}); + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: SelNodeChild | null) => { + this.selNode = nodeSettings; + this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.unannouncedChannels); + }); this.actions.pipe( takeUntil(this.unSubs[1]), filter((action) => action.type === ECLActions.NEWLY_ADDED_PEER_ECL || action.type === ECLActions.FETCH_CHANNELS_ECL || action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL)). diff --git a/src/app/eclair/peers-channels/peers/peers.component.html b/src/app/eclair/peers-channels/peers/peers.component.html index ae38855a..fcecb6de 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.html +++ b/src/app/eclair/peers-channels/peers/peers.component.html @@ -8,54 +8,64 @@ Peers
- -
- -
-
+
+ + + {{getLabel(column)}} + + + + + +
-
+
- - - - + + + + - + + + + + - + @@ -34,16 +65,16 @@ - - @@ -54,7 +85,7 @@ - +
ID - {{peer?.nodeId}} + + + + - - + - - - + + + - - + - - + + - - - +
+ + Alias - - - {{peer?.alias}} + Alias +
+ {{peer?.alias}} +
State {{peer?.state}} Node ID +
+ {{peer?.nodeId}} +
+
Network Address + Network Address {{peer?.address}} Channels {{peer?.channels}} Channels{{peer?.channels}} -
+
+
Download CSV
-
-
+ +
+
View Info @@ -74,7 +84,7 @@
diff --git a/src/app/eclair/peers-channels/peers/peers.component.scss b/src/app/eclair/peers-channels/peers/peers.component.scss index 9c8718e3..6e0dcbe8 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.scss +++ b/src/app/eclair/peers-channels/peers/peers.component.scss @@ -1,24 +1,4 @@ -.mat-column-alias { - flex: 1 1 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-nodeId { - flex: 1 1 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - padding-right: 2rem; -} - -.mat-column-address { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-state { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/eclair/peers-channels/peers/peers.component.ts b/src/app/eclair/peers-channels/peers/peers.component.ts index d5d5fb29..bf6d7966 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.ts +++ b/src/app/eclair/peers-channels/peers/peers.component.ts @@ -10,7 +10,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Peer, GetInfo, OnChainBalance } from '../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, ScreenSizeEnum, APICallStatusEnum, ECLActions } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, ScreenSizeEnum, APICallStatusEnum, ECLActions, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @@ -21,7 +21,9 @@ import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { disconnectPeer } from '../../store/ecl.actions'; -import { eclNodeInformation, onchainBalance, peers } from '../../store/ecl.selector'; +import { eclNodeInformation, eclPageSettings, onchainBalance, peers } from '../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-peers', @@ -35,15 +37,19 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'peers', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public faUsers = faUsers; public newlyAddedPeer = ''; public displayedColumns: any[] = []; public peerAddress: string | null = ''; public peersData: Peer[] = []; - public peers: any; + public peers: any = new MatTableDataSource([]); public information: GetInfo = {}; public availableBalance = 0; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -52,23 +58,10 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private actions: Actions, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private actions: Actions, private commonService: CommonService, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'nodeId', 'address', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'nodeId', 'address', 'channels', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'nodeId', 'address', 'channels', 'actions']; - } } ngOnInit() { @@ -76,7 +69,27 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { subscribe((nodeInfo: any) => { this.information = nodeInfo; }); - this.store.select(peers).pipe(takeUntil(this.unSubs[1])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[1])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('state'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + + this.store.select(peers).pipe(takeUntil(this.unSubs[2])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = peersSelector.apiCallStatus; @@ -87,11 +100,11 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { this.loadPeersTable(this.peersData); this.logger.info(peersSelector); }); - this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[2])). + this.store.select(onchainBalance).pipe(takeUntil(this.unSubs[3])). subscribe((oCBalanceSelector: { onchainBalance: OnChainBalance, apiCallStatus: ApiCallStatusPayload }) => { this.availableBalance = oCBalanceSelector.onchainBalance.total || 0; }); - this.actions.pipe(takeUntil(this.unSubs[3]), filter((action) => action.type === ECLActions.SET_PEERS_ECL)). + this.actions.pipe(takeUntil(this.unSubs[4]), filter((action) => action.type === ECLActions.SET_PEERS_ECL)). subscribe((setPeers: any) => { this.peerAddress = null; }); @@ -182,7 +195,7 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { })); } this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(disconnectPeer({ payload: { nodeId: (peerToDetach.nodeId || '') } })); @@ -194,12 +207,38 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { this.peers.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.peers.filterPredicate = (rowData: Peer, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'state': + rowToFilter = rowData?.state?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'state' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadPeersTable(peers: Peer[]) { this.peers = (peers) ? new MatTableDataSource([...peers]) : new MatTableDataSource([]); this.peers.sort = this.sort; this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.peers.filterPredicate = (peer: Peer, fltr: string) => JSON.stringify(peer).toLowerCase().includes(fltr); + this.peers.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.peers.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/eclair/reports/routing/routing-report.component.html b/src/app/eclair/reports/routing/routing-report.component.html index 980391b9..7cc75580 100644 --- a/src/app/eclair/reports/routing/routing-report.component.html +++ b/src/app/eclair/reports/routing/routing-report.component.html @@ -37,7 +37,7 @@
- +
diff --git a/src/app/eclair/reports/transactions/transactions-report.component.html b/src/app/eclair/reports/transactions/transactions-report.component.html index 1f660910..75614810 100644 --- a/src/app/eclair/reports/transactions/transactions-report.component.html +++ b/src/app/eclair/reports/transactions/transactions-report.component.html @@ -35,7 +35,7 @@
- +
diff --git a/src/app/eclair/reports/transactions/transactions-report.component.ts b/src/app/eclair/reports/transactions/transactions-report.component.ts index 4306a31b..7cefa2d4 100644 --- a/src/app/eclair/reports/transactions/transactions-report.component.ts +++ b/src/app/eclair/reports/transactions/transactions-report.component.ts @@ -5,13 +5,14 @@ import { Store } from '@ngrx/store'; import { PaymentSent, Invoice, Payments } from '../../../shared/models/eclModels'; import { CommonService } from '../../../shared/services/common.service'; -import { MONTHS, ScreenSizeEnum, SCROLL_RANGES } from '../../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, ECL_DEFAULT_PAGE_SETTINGS, MONTHS, PAGE_SIZE, ScreenSizeEnum, SCROLL_RANGES, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { fadeIn } from '../../../shared/animation/opacity-animation'; import { RTLState } from '../../../store/rtl.state'; -import { invoices, payments } from '../../store/ecl.selector'; +import { eclPageSettings, invoices, payments } from '../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; +import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; @Component({ selector: 'rtl-ecl-transactions-report', @@ -26,6 +27,10 @@ export class ECLTransactionsReportComponent implements OnInit, OnDestroy { public secondsInADay = 24 * 60 * 60; public payments: PaymentSent[] = []; public invoices: Invoice[] = []; + public colWidth = '20rem'; + public PAGE_ID = 'reports'; + public tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING }; + public displayedColumns: any[] = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; public transactionsReportSummary = { paymentsSelectedPeriod: 0, invoicesSelectedPeriod: 0, amountPaidSelectedPeriod: 0, amountReceivedSelectedPeriod: 0 }; public transactionFilterValue = ''; public today = new Date(Date.now()); @@ -41,14 +46,27 @@ export class ECLTransactionsReportComponent implements OnInit, OnDestroy { public showYAxisLabel = true; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); this.showYAxisLabel = !(this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM); - this.store.select(payments).pipe(takeUntil(this.unSubs[0]), + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + + this.store.select(payments).pipe(takeUntil(this.unSubs[1]), withLatestFrom(this.store.select(invoices))). subscribe(([paymentsSelector, invoicesSelector]: [({ payments: Payments, apiCallStatus: ApiCallStatusPayload }), ({ invoices: Invoice[], apiCallStatus: ApiCallStatusPayload })]) => { this.payments = paymentsSelector.payments.sent ? paymentsSelector.payments.sent : []; @@ -58,7 +76,7 @@ export class ECLTransactionsReportComponent implements OnInit, OnDestroy { this.transactionsNonZeroReportData = this.prepareTableData(); } }); - this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[1])).subscribe((CONTAINER_SIZE) => { + this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[2])).subscribe((CONTAINER_SIZE) => { switch (this.screenSize) { case ScreenSizeEnum.MD: this.screenPaddingX = CONTAINER_SIZE.width / 10; diff --git a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html index 3504a3e1..d9aaf1a6 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html @@ -2,27 +2,79 @@
{{errorMessage}}
- - - +
+ + + {{getLabel(column)}} + + + + + +
+ + + + + + + + + + + + - + + + + + + + + + - + + + + + @@ -37,16 +89,16 @@ - - @@ -57,7 +109,7 @@ - +
+ + Date/Time - {{fhEvent?.timestamp | date:'dd/MMM/y HH:mm'}} In Channel ID +
+ {{fhEvent?.fromChannelId}} +
+
In Channel Short ID{{fhEvent?.fromShortChannelId}} In Channel{{fhEvent?.fromChannelAlias}} +
+ {{fhEvent?.fromChannelAlias}} +
+
Out Channel ID +
+ {{fhEvent?.toChannelId}} +
+
Out Channel Short ID{{fhEvent?.toShortChannelId}} Out Channel{{fhEvent?.toChannelAlias}} +
+ {{fhEvent?.toChannelAlias}} +
+
Payment Hash +
+ {{fhEvent?.paymentHash}} +
+
Amount In (Sats){{(fhEvent?.amountIn - fhEvent?.amountOut) | number}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/eclair/routing/forwarding-history/forwarding-history.component.scss b/src/app/eclair/routing/forwarding-history/forwarding-history.component.scss index c96dde9e..0a4b3933 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.scss +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.scss @@ -1,21 +1,8 @@ -.mat-column-fromAlias { - padding-left: 2rem; - flex: 1 1 20%; - width: 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-toAlias { - padding-left: 1rem; - flex: 1 1 20%; - width: 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-type { + max-width: 1.2rem; + width:1.2rem; + & svg { + max-width: 1.6rem; + width:1.6rem; + } } diff --git a/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts b/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts index 86861d0a..7a125bd9 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts @@ -8,14 +8,16 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { PaymentRelayed, Payments } from '../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; -import { payments } from '../../store/ecl.selector'; +import { eclPageSettings, payments } from '../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-forwarding-history', @@ -29,11 +31,16 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + @Input() pageId = 'routing'; + @Input() tableId = 'forwarding_history'; @Input() eventsData: PaymentRelayed[] = []; - @Input() filterValue = ''; + @Input() selFilter = ''; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public tableSetting: TableSetting = { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING }; public displayedColumns: any[] = []; - public forwardingHistoryEvents: any; - public flgSticky = false; + public forwardingHistoryEvents: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -43,25 +50,32 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amountIn', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amountIn', 'fee', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amountIn', 'amountOut', 'fee', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['timestamp', 'fromChannelAlias', 'toChannelAlias', 'amountIn', 'amountOut', 'fee', 'actions']; - } } ngOnInit() { - this.store.select(payments).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting.tableId = this.tableId; + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('type'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[1])). subscribe((paymentsSelector: { payments: Payments, apiCallStatus: ApiCallStatusPayload }) => { if (this.eventsData.length === 0) { this.errorMessage = ''; @@ -70,7 +84,7 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.eventsData = paymentsSelector.payments && paymentsSelector.payments.relayed ? paymentsSelector.payments.relayed : []; - if (this.eventsData.length > 0 && this.sort && this.paginator) { + if (this.eventsData.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadForwardingEventsTable(this.eventsData); } this.logger.info(this.eventsData); @@ -92,7 +106,8 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi this.loadForwardingEventsTable(this.eventsData); } } - if (changes.filterValue && !changes.filterValue.firstChange) { + if (changes.selFilter && !changes.selFilter.firstChange) { + this.selFilterBy = 'all'; this.applyFilter(); } } @@ -106,10 +121,10 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi { key: 'amountOut', value: selFEvent.amountOut, title: 'Amount Out (Sats)', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'fromChannelAlias', value: selFEvent.fromChannelAlias, title: 'From Channel Alias', width: 50, type: DataTypeEnum.STRING }, { key: 'fromShortChannelId', value: selFEvent.fromShortChannelId, title: 'From Short Channel ID', width: 50, type: DataTypeEnum.STRING }], - [{ key: 'fromChannelId', value: selFEvent.fromChannelId, title: 'From Channel Id', width: 100, type: DataTypeEnum.STRING }], + [{ key: 'fromChannelId', value: selFEvent.fromChannelId, title: 'From Channel ID', width: 100, type: DataTypeEnum.STRING }], [{ key: 'toChannelAlias', value: selFEvent.toChannelAlias, title: 'To Channel Alias', width: 50, type: DataTypeEnum.STRING }, { key: 'toShortChannelId', value: selFEvent.toShortChannelId, title: 'To Short Channel ID', width: 50, type: DataTypeEnum.STRING }], - [{ key: 'toChannelId', value: selFEvent.toChannelId, title: 'To Channel Id', width: 100, type: DataTypeEnum.STRING }] + [{ key: 'toChannelId', value: selFEvent.toChannelId, title: 'To Channel ID', width: 100, type: DataTypeEnum.STRING }] ]; if (selFEvent.type !== 'payment-relayed') { reorderedFHEvent?.unshift([{ key: 'type', value: this.commonService.camelCase(selFEvent.type), title: 'Relay Type', width: 100, type: DataTypeEnum.STRING }]); @@ -125,6 +140,41 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi })); } + applyFilter() { + if (this.forwardingHistoryEvents) { + this.forwardingHistoryEvents.filter = this.selFilter.trim().toLowerCase(); + } + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column) : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.forwardingHistoryEvents.filterPredicate = (rowData: PaymentRelayed, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'timestamp': + rowToFilter = this.datePipe.transform(new Date((rowData.timestamp || 0)), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'fee': + rowToFilter = (rowData.amountIn - rowData.amountOut).toString() || '0'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadForwardingEventsTable(forwardingEvents: PaymentRelayed[]) { this.forwardingHistoryEvents = new MatTableDataSource([...forwardingEvents]); this.forwardingHistoryEvents.sort = this.sort; @@ -137,11 +187,9 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; - this.forwardingHistoryEvents.filterPredicate = (rowData: PaymentRelayed, fltr: string) => { - const newRowData = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.forwardingHistoryEvents.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.forwardingHistoryEvents.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.forwardingHistoryEvents); } @@ -152,12 +200,6 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi } } - applyFilter() { - if (this.forwardingHistoryEvents) { - this.forwardingHistoryEvents.filter = this.filterValue.trim().toLowerCase(); - } - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/eclair/routing/routing-peers/routing-peers.component.html b/src/app/eclair/routing/routing-peers/routing-peers.component.html index b64b1e5a..5185861c 100644 --- a/src/app/eclair/routing/routing-peers/routing-peers.component.html +++ b/src/app/eclair/routing/routing-peers/routing-peers.component.html @@ -1,23 +1,38 @@
{{errorMessage}}
-
+
Incoming
- - - +
+ +
- +
- + - + @@ -34,13 +49,13 @@ - - + +
Channel ID{{rPeer.channelId}} +
+ {{rPeer?.channelId}} +
+
Peer Alias{{rPeer.alias}} +
+ {{rPeer?.alias}} +
+
Events -

No incoming routing peer available.

-

Getting incoming routing peers...

-

{{errorMessage}}

+

No incoming routing peer available.

+

Getting incoming routing peers...

+

{{errorMessage}}

@@ -49,20 +64,35 @@
Outgoing
- - - +
+ +
- +
- + - + @@ -79,13 +109,13 @@ - - + +
Channel ID{{rPeer.channelId}} +
+ {{rPeer?.channelId}} +
+
Peer Alias{{rPeer.alias}} +
+ {{rPeer?.alias}} +
+
Events -

No outgoing routing peer available.

-

Getting outgoing routing peers...

-

{{errorMessage}}

+

No outgoing routing peer available.

+

Getting outgoing routing peers...

+

{{errorMessage}}

diff --git a/src/app/eclair/routing/routing-peers/routing-peers.component.scss b/src/app/eclair/routing/routing-peers/routing-peers.component.scss index fcd63fdf..e69de29b 100644 --- a/src/app/eclair/routing/routing-peers/routing-peers.component.scss +++ b/src/app/eclair/routing/routing-peers/routing-peers.component.scss @@ -1,6 +0,0 @@ -.mat-column-channelId, .mat-column-alias { - flex: 1 1 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/eclair/routing/routing-peers/routing-peers.component.ts b/src/app/eclair/routing/routing-peers/routing-peers.component.ts index aea44c00..08bef9c0 100644 --- a/src/app/eclair/routing/routing-peers/routing-peers.component.ts +++ b/src/app/eclair/routing/routing-peers/routing-peers.component.ts @@ -7,13 +7,15 @@ import { MatSort } from '@angular/material/sort'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatTableDataSource } from '@angular/material/table'; import { PaymentRelayed, Payments, RoutingPeers } from '../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; -import { payments } from '../../store/ecl.selector'; +import { eclPageSettings, payments } from '../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-routing-peers', @@ -29,11 +31,16 @@ export class ECLRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro @ViewChild('tableOut', { read: MatSort, static: false }) sortOut: MatSort; @ViewChild('paginatorIn', { static: false }) paginatorIn: MatPaginator | undefined; @ViewChild('paginatorOut', { static: false }) paginatorOut: MatPaginator | undefined; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterByIn = 'all'; + public selFilterByOut = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'routing'; + public tableSetting: TableSetting = { tableId: 'routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'totalFee', sortOrder: SortOrderEnum.DESCENDING }; public routingPeersData: PaymentRelayed[] = []; public displayedColumns: any[] = []; - public RoutingPeersIncoming: any; - public RoutingPeersOutgoing: any; - public flgSticky = false; + public routingPeersIncoming: any = new MatTableDataSource([]); + public routingPeersOutgoing: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -45,26 +52,29 @@ export class ECLRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'totalFee']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'events', 'totalFee']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'events', 'totalAmount', 'totalFee']; - } else { - this.flgSticky = true; - this.displayedColumns = ['channelId', 'alias', 'events', 'totalAmount', 'totalFee']; - } } ngOnInit() { - this.store.select(payments). - pipe(takeUntil(this.unSubs[0])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / (this.displayedColumns.length * 2)) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[1])). subscribe((paymentsSelector: { payments: Payments, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = paymentsSelector.apiCallStatus; @@ -85,26 +95,75 @@ export class ECLRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro } } + applyFilterIncoming() { + this.routingPeersIncoming.filter = this.filterIn.trim().toLowerCase(); + } + + applyFilterOutgoing() { + this.routingPeersOutgoing.filter = this.filterOut.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.routingPeersIncoming.filterPredicate = (rowDataIn: RoutingPeers, fltr: string) => { + let rowToFilterIn = ''; + switch (this.selFilterByIn) { + case 'all': + rowToFilterIn = JSON.stringify(rowDataIn).toLowerCase(); + break; + + default: + rowToFilterIn = typeof rowDataIn[this.selFilterByIn] === 'string' ? rowDataIn[this.selFilterByIn].toLowerCase() : typeof rowDataIn[this.selFilterByIn] === 'boolean' ? (rowDataIn[this.selFilterByIn] ? 'yes' : 'no') : rowDataIn[this.selFilterByIn].toString(); + break; + } + return rowToFilterIn.includes(fltr); + }; + + this.routingPeersOutgoing.filterPredicate = (rowDataOut: RoutingPeers, fltr: string) => { + let rowToFilterOut = ''; + switch (this.selFilterByOut) { + case 'all': + rowToFilterOut = JSON.stringify(rowDataOut).toLowerCase(); + break; + + case 'total_amount': + case 'total_fee': + rowToFilterOut = ((+(rowDataOut[this.selFilterByOut] || 0)) / 1000)?.toString() || ''; + break; + + default: + rowToFilterOut = typeof rowDataOut[this.selFilterByOut] === 'string' ? rowDataOut[this.selFilterByOut].toLowerCase() : typeof rowDataOut[this.selFilterByOut] === 'boolean' ? (rowDataOut[this.selFilterByOut] ? 'yes' : 'no') : rowDataOut[this.selFilterByOut].toString(); + break; + } + return rowToFilterOut.includes(fltr); + }; + } + loadRoutingPeersTable(forwardingEvents: PaymentRelayed[]) { if (forwardingEvents.length > 0) { const results = this.groupRoutingPeers(forwardingEvents); - this.RoutingPeersIncoming = new MatTableDataSource(results[0]); - this.RoutingPeersIncoming.sort = this.sortIn; - this.RoutingPeersIncoming.filterPredicate = (rpIn: RoutingPeers, fltr: string) => JSON.stringify(rpIn).toLowerCase().includes(fltr); - this.RoutingPeersIncoming.paginator = this.paginatorIn; - this.logger.info(this.RoutingPeersIncoming); - this.RoutingPeersOutgoing = new MatTableDataSource(results[1]); - this.RoutingPeersOutgoing.sort = this.sortOut; - this.RoutingPeersOutgoing.filterPredicate = (rpOut: RoutingPeers, fltr: string) => JSON.stringify(rpOut).toLowerCase().includes(fltr); - this.RoutingPeersOutgoing.paginator = this.paginatorOut; - this.logger.info(this.RoutingPeersOutgoing); + this.routingPeersIncoming = new MatTableDataSource(results[0]); + this.routingPeersIncoming.sort = this.sortIn; + this.routingPeersIncoming.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.routingPeersIncoming.paginator = this.paginatorIn; + this.logger.info(this.routingPeersIncoming); + this.routingPeersOutgoing = new MatTableDataSource(results[1]); + this.routingPeersOutgoing.sort = this.sortOut; + this.routingPeersOutgoing.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.routingPeersOutgoing.paginator = this.paginatorOut; + this.logger.info(this.routingPeersOutgoing); } else { // To reset table after other Forwarding history calls - this.RoutingPeersIncoming = new MatTableDataSource([]); - this.RoutingPeersOutgoing = new MatTableDataSource([]); + this.routingPeersIncoming = new MatTableDataSource([]); + this.routingPeersOutgoing = new MatTableDataSource([]); } - this.applyIncomingFilter(); - this.applyOutgoingFilter(); + this.setFilterPredicate(); + this.applyFilterIncoming(); + this.applyFilterOutgoing(); } groupRoutingPeers(forwardingEvents: PaymentRelayed[]) { @@ -131,14 +190,6 @@ export class ECLRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro return [this.commonService.sortDescByKey(incomingResults, 'totalFee'), this.commonService.sortDescByKey(outgoingResults, 'totalFee')]; } - applyIncomingFilter() { - this.RoutingPeersIncoming.filter = this.filterIn.toLowerCase(); - } - - applyOutgoingFilter() { - this.RoutingPeersOutgoing.filter = this.filterOut.toLowerCase(); - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/eclair/store/ecl.actions.ts b/src/app/eclair/store/ecl.actions.ts index 94a64814..5e269a83 100644 --- a/src/app/eclair/store/ecl.actions.ts +++ b/src/app/eclair/store/ecl.actions.ts @@ -3,7 +3,10 @@ import { createAction, props } from '@ngrx/store'; import { ECLActions } from '../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../shared/models/RTLconfig'; -import { GetInfo, Channel, Fees, Peer, LightningBalance, OnChainBalance, ChannelsStatus, Payments, QueryRoutes, Transaction, SendPaymentOnChain, Invoice, PaymentReceived, ChannelStateUpdate, SaveChannel, UpdateChannel, CloseChannel, GetQueryRoutes, CreateInvoice, SendPayment, PaymentRelayed } from '../../shared/models/eclModels'; +import { GetInfo, Channel, Fees, Peer, LightningBalance, OnChainBalance, ChannelsStatus, Payments, QueryRoutes, Transaction, + SendPaymentOnChain, Invoice, PaymentReceived, ChannelStateUpdate, SaveChannel, UpdateChannel, CloseChannel, GetQueryRoutes, + CreateInvoice, SendPayment, PaymentRelayed } from '../../shared/models/eclModels'; +import { PageSettings } from '../../shared/models/pageSettings'; export const updateECLAPICallStatus = createAction(ECLActions.UPDATE_API_CALL_STATUS_ECL, props<{ payload: ApiCallStatusPayload }>()); @@ -11,6 +14,12 @@ export const resetECLStore = createAction(ECLActions.RESET_ECL_STORE, props<{ pa export const setChildNodeSettingsECL = createAction(ECLActions.SET_CHILD_NODE_SETTINGS_ECL, props<{ payload: SelNodeChild }>()); +export const fetchPageSettings = createAction(ECLActions.FETCH_PAGE_SETTINGS_ECL); + +export const setPageSettings = createAction(ECLActions.SET_PAGE_SETTINGS_ECL, props<{ payload: PageSettings[] }>()); + +export const savePageSettings = createAction(ECLActions.SAVE_PAGE_SETTINGS_ECL, props<{ payload: PageSettings[] }>()); + export const fetchInfoECL = createAction(ECLActions.FETCH_INFO_ECL, props<{ payload: { loadPage: string } }>()); export const setInfo = createAction(ECLActions.SET_INFO_ECL, props<{ payload: GetInfo }>()); diff --git a/src/app/eclair/store/ecl.effects.ts b/src/app/eclair/store/ecl.effects.ts index 8860be93..cea5b4a2 100644 --- a/src/app/eclair/store/ecl.effects.ts +++ b/src/app/eclair/store/ecl.effects.ts @@ -13,13 +13,16 @@ import { SessionService } from '../../shared/services/session.service'; import { CommonService } from '../../shared/services/common.service'; import { WebSocketClientService } from '../../shared/services/web-socket.service'; import { ErrorMessageComponent } from '../../shared/components/data-modal/error-message/error-message.component'; -import { GetInfo, OnChainBalance, Peer, Audit, Transaction, Invoice, Channel, ChannelStateUpdate, SaveChannel, UpdateChannel, CloseChannel, GetQueryRoutes, QueryRoutes, SendPayment, SendPaymentOnChain, CreateInvoice } from '../../shared/models/eclModels'; +import { GetInfo, OnChainBalance, Peer, Audit, Transaction, Invoice, Channel, ChannelStateUpdate, SaveChannel, UpdateChannel, CloseChannel, + GetQueryRoutes, QueryRoutes, SendPayment, SendPaymentOnChain, CreateInvoice } from '../../shared/models/eclModels'; import { RTLActions, ECLActions, APICallStatusEnum, UI_MESSAGES, ECLWSEventTypeEnum } from '../../shared/services/consts-enums-functions'; import { closeAllDialogs, closeSpinner, logout, openAlert, openSnackBar, openSpinner, setApiUrl, setNodeData } from '../../store/rtl.actions'; import { ECLInvoiceInformationComponent } from '../transactions/invoice-information-modal/invoice-information.component'; import { RTLState } from '../../store/rtl.state'; -import { fetchChannels, fetchFees, fetchInvoices, fetchOnchainBalance, fetchPayments, fetchPeers, sendPaymentStatus, setActiveChannels, setChannelsStatus, setInactiveChannels, setLightningBalance, setPeers, setPendingChannels, setQueryRoutes, updateECLAPICallStatus, updateChannelState, updateInvoice, updateRelayedPayment } from './ecl.actions'; +import { fetchChannels, fetchFees, fetchInvoices, fetchOnchainBalance, fetchPayments, fetchPeers, sendPaymentStatus, setActiveChannels, + setChannelsStatus, setInactiveChannels, setLightningBalance, setPeers, setPendingChannels, setQueryRoutes, updateECLAPICallStatus, + updateChannelState, updateInvoice, updateRelayedPayment, fetchPageSettings } from './ecl.actions'; import { allAPIsCallStatus } from './ecl.selector'; import { ApiCallsListECL } from '../../shared/models/apiCallsPayload'; @@ -73,7 +76,9 @@ export class ECLEffects implements OnDestroy { case ECLWSEventTypeEnum.PAYMENT_FAILED: if (newMessage && newMessage.id && this.latestPaymentRes === newMessage.id) { this.flgReceivedPaymentUpdateFromWS = true; - snackBarMsg = 'Payment Failed: ' + ((newMessage.failures && newMessage.failures.length && newMessage.failures.length > 0 && newMessage.failures[0].t) ? newMessage.failures[0].t : (newMessage.failures && newMessage.failures.length && newMessage.failures.length > 0 && newMessage.failures[0].e && newMessage.failures[0].e.failureMessage) ? newMessage.failures[0].e.failureMessage : JSON.stringify(newMessage)); + snackBarMsg = 'Payment Failed: ' + ((newMessage.failures && newMessage.failures.length && newMessage.failures.length > 0 && + newMessage.failures[0].t) ? newMessage.failures[0].t : (newMessage.failures && newMessage.failures.length && newMessage.failures.length > 0 && + newMessage.failures[0].e && newMessage.failures[0].e.failureMessage) ? newMessage.failures[0].e.failureMessage : JSON.stringify(newMessage)); this.handleSendPaymentStatus(snackBarMsg); } break; @@ -332,9 +337,10 @@ export class ECLEffects implements OnDestroy { mergeMap((action: { type: string, payload: SaveChannel }) => { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.OPEN_CHANNEL })); this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'SaveNewChannel', status: APICallStatusEnum.INITIATED } })); - const reqBody = action.payload.feeRate && action.payload.feeRate > 0 ? - { nodeId: action.payload.nodeId, fundingSatoshis: action.payload.amount, channelFlags: +!action.payload.private, fundingFeerateSatByte: action.payload.feeRate } : - { nodeId: action.payload.nodeId, fundingSatoshis: action.payload.amount, channelFlags: +!action.payload.private }; + const reqBody = { nodeId: action.payload.nodeId, fundingSatoshis: action.payload.amount, announceChannel: !action.payload.private }; + if (action.payload.feeRate && action.payload.feeRate > 0) { + reqBody['fundingFeerateSatByte'] = action.payload.feeRate; + } return this.httpClient.post(this.CHILD_API_URL + environment.CHANNELS_API, reqBody). pipe( map((postRes: any) => { @@ -547,7 +553,7 @@ export class ECLEffects implements OnDestroy { } } })); - }, 100); + }, 200); return { type: ECLActions.ADD_INVOICE_ECL, payload: postRes @@ -643,6 +649,52 @@ export class ECLEffects implements OnDestroy { { dispatch: false } ); + pageSettingsFetchCL = createEffect(() => this.actions.pipe( + ofType(ECLActions.FETCH_PAGE_SETTINGS_ECL), + mergeMap(() => { + this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.INITIATED } })); + return this.httpClient.get(environment.PAGE_SETTINGS_API).pipe( + map((pageSettings: any) => { + this.logger.info(pageSettings); + this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.COMPLETED } })); + return { + type: ECLActions.SET_PAGE_SETTINGS_ECL, + payload: pageSettings || [] + }; + }), + catchError((err: any) => { + this.handleErrorWithoutAlert('FetchPageSettings', UI_MESSAGES.NO_SPINNER, 'Fetching Page Settings Failed.', err); + return of({ type: RTLActions.VOID }); + }) + ); + }) + )); + + savePageSettingsCL = createEffect(() => this.actions.pipe( + ofType(ECLActions.SAVE_PAGE_SETTINGS_ECL), + mergeMap((action: { type: string, payload: any }) => { + this.store.dispatch(openSpinner({ payload: UI_MESSAGES.UPDATE_PAGE_SETTINGS })); + this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'SavePageSettings', status: APICallStatusEnum.INITIATED } })); + return this.httpClient.post(environment.PAGE_SETTINGS_API, action.payload). + pipe( + map((postRes: any) => { + this.logger.info(postRes); + this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'SavePageSettings', status: APICallStatusEnum.COMPLETED } })); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.UPDATE_PAGE_SETTINGS })); + this.store.dispatch(openSnackBar({ payload: 'Page Layout Updated Successfully!' })); + return { + type: ECLActions.SET_PAGE_SETTINGS_ECL, + payload: postRes || [] + }; + }), + catchError((err: any) => { + this.handleErrorWithAlert('SavePageSettings', UI_MESSAGES.UPDATE_PAGE_SETTINGS, 'Page Settings Update Failed.', environment.PAGE_SETTINGS_API, err); + return of({ type: RTLActions.VOID }); + }) + ); + }) + )); + setChannelsAndStatusAndBalances() { let channelTotal = 0; let totalLocalBalance = 0; @@ -721,6 +773,7 @@ export class ECLEffects implements OnDestroy { newRoute = '/ecl/home'; } this.router.navigate([newRoute]); + this.store.dispatch(fetchPageSettings()); this.store.dispatch(fetchInvoices()); this.store.dispatch(fetchChannels({ payload: { fetchPayments: true } })); this.store.dispatch(fetchFees()); diff --git a/src/app/eclair/store/ecl.reducers.ts b/src/app/eclair/store/ecl.reducers.ts index 24d91f83..73318c1c 100644 --- a/src/app/eclair/store/ecl.reducers.ts +++ b/src/app/eclair/store/ecl.reducers.ts @@ -1,8 +1,12 @@ import { createReducer, on } from '@ngrx/store'; import { initECLState } from './ecl.state'; -import { addInvoice, removeChannel, removePeer, resetECLStore, setActiveChannels, setChannelsStatus, setChildNodeSettingsECL, setFees, setInactiveChannels, setInfo, setInvoices, setLightningBalance, setOnchainBalance, setPayments, setPeers, setPendingChannels, setTransactions, updateECLAPICallStatus, updateChannelState, updateInvoice, updateRelayedPayment } from './ecl.actions'; +import { addInvoice, removeChannel, removePeer, resetECLStore, setActiveChannels, setChannelsStatus, setChildNodeSettingsECL, + setFees, setInactiveChannels, setInfo, setInvoices, setLightningBalance, setOnchainBalance, setPayments, setPeers, setPendingChannels, + setTransactions, updateECLAPICallStatus, updateChannelState, updateInvoice, updateRelayedPayment, setPageSettings } from './ecl.actions'; import { Channel, PaymentReceived, PaymentRelayed } from '../../shared/models/eclModels'; +import { PageSettings } from '../../shared/models/pageSettings'; +import { ECL_DEFAULT_PAGE_SETTINGS } from '../../shared/services/consts-enums-functions'; export const ECLReducer = createReducer(initECLState, on(updateECLAPICallStatus, (state, { payload }) => { @@ -171,7 +175,7 @@ export const ECLReducer = createReducer(initECLState, updatedPayload.amountIn = Math.round((payload.amountIn || 0) / 1000); updatedPayload.amountOut = Math.round((payload.amountOut || 0) / 1000); modifiedPayments.relayed?.unshift(updatedPayload); - const feeSats = (payload.amountIn ||0) - (payload.amountOut || 0); + const feeSats = (payload.amountIn || 0) - (payload.amountOut || 0); const modifiedLightningBalance = { localBalance: (state.lightningBalance.localBalance + feeSats), remoteBalance: (state.lightningBalance.remoteBalance - feeSats) }; const modifiedChannelStatus = state.channelsStatus; if (modifiedChannelStatus.active) { @@ -212,6 +216,31 @@ export const ECLReducer = createReducer(initECLState, fees: modifiedFees, activeChannels: modifiedActiveChannels }; + }), + on(setPageSettings, (state, { payload }) => { + const newPageSettings: PageSettings[] = []; + ECL_DEFAULT_PAGE_SETTINGS.forEach((defaultPage) => { + const pageSetting = payload && payload.length && payload.length > 0 ? payload.find((p) => p.pageId === defaultPage.pageId) : null; + if (pageSetting) { + const tablesSettings = JSON.parse(JSON.stringify(pageSetting.tables)); + pageSetting.tables = []; // To maintain settings order + defaultPage.tables.forEach((defaultTable) => { + const tableSetting = tablesSettings.find((t) => t.tableId === defaultTable.tableId) || null; + if (tableSetting) { + pageSetting.tables.push(tableSetting); + } else { + pageSetting.tables.push(JSON.parse(JSON.stringify(defaultTable))); + } + }); + newPageSettings.push(pageSetting); + } else { + newPageSettings.push(JSON.parse(JSON.stringify(defaultPage))); + } + }); + return { + ...state, + pageSettings: newPageSettings + }; }) ); diff --git a/src/app/eclair/store/ecl.selector.ts b/src/app/eclair/store/ecl.selector.ts index c503f7fd..6d52fad2 100644 --- a/src/app/eclair/store/ecl.selector.ts +++ b/src/app/eclair/store/ecl.selector.ts @@ -3,14 +3,16 @@ import { APICallStatusEnum } from '../../shared/services/consts-enums-functions' import { ECLState } from './ecl.state'; export const eclState = createFeatureSelector('ecl'); -export const eclnNodeSettings = createSelector(eclState, (state: ECLState) => state.nodeSettings); +export const eclNodeSettings = createSelector(eclState, (state: ECLState) => state.nodeSettings); +export const eclPageSettings = createSelector(eclState, (state: ECLState) => ({ pageSettings: state.pageSettings, apiCallStatus: state.apisCallStatus.FetchPageSettings })); export const eclNodeInformation = createSelector(eclState, (state: ECLState) => state.information); export const nodeInfoStatus = createSelector(eclState, (state: ECLState) => ({ information: state.information, apiCallStatus: state.apisCallStatus.FetchInfo })); export const apiCallStatusNodeInfo = createSelector(eclState, (state: ECLState) => state.apisCallStatus.FetchInfo); export const allAPIsCallStatus = createSelector(eclState, (state: ECLState) => state.apisCallStatus); export const payments = createSelector(eclState, (state: ECLState) => ({ payments: state.payments, apiCallStatus: state.apisCallStatus.FetchPayments })); export const fees = createSelector(eclState, (state: ECLState) => ({ fees: state.fees, apiCallStatus: state.apisCallStatus.FetchFees })); -export const allChannelsInfo = createSelector(eclState, (state: ECLState) => ({ activeChannels: state.activeChannels, pendingChannels: state.pendingChannels, inactiveChannels: state.inactiveChannels, lightningBalance: state.lightningBalance, channelsStatus: state.channelsStatus, apiCallStatus: state.apisCallStatus.FetchChannels })); +export const allChannelsInfo = createSelector(eclState, (state: ECLState) => ({ activeChannels: state.activeChannels, pendingChannels: state.pendingChannels, inactiveChannels: state.inactiveChannels, + lightningBalance: state.lightningBalance, channelsStatus: state.channelsStatus, apiCallStatus: state.apisCallStatus.FetchChannels })); export const transactions = createSelector(eclState, (state: ECLState) => ({ transactions: state.transactions, apiCallStatus: state.apisCallStatus.FetchTransactions })); export const invoices = createSelector(eclState, (state: ECLState) => ({ invoices: state.invoices, apiCallStatus: state.apisCallStatus.FetchInvoices })); export const peers = createSelector(eclState, (state: ECLState) => ({ peers: state.peers, apiCallStatus: state.apisCallStatus.FetchPeers })); diff --git a/src/app/eclair/store/ecl.state.ts b/src/app/eclair/store/ecl.state.ts index 0006991b..13406a3a 100644 --- a/src/app/eclair/store/ecl.state.ts +++ b/src/app/eclair/store/ecl.state.ts @@ -1,11 +1,13 @@ import { SelNodeChild } from '../../shared/models/RTLconfig'; import { GetInfo, Channel, Fees, OnChainBalance, LightningBalance, Peer, ChannelsStatus, Payments, Transaction, Invoice } from '../../shared/models/eclModels'; import { ApiCallsListECL } from '../../shared/models/apiCallsPayload'; -import { APICallStatusEnum, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, ECL_DEFAULT_PAGE_SETTINGS, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { PageSettings } from '../../shared/models/pageSettings'; export interface ECLState { apisCallStatus: ApiCallsListECL; nodeSettings: SelNodeChild | null; + pageSettings: PageSettings[]; information: GetInfo; fees: Fees; activeChannels: Channel[]; @@ -22,6 +24,7 @@ export interface ECLState { export const initECLState: ECLState = { apisCallStatus: { + FetchPageSettings: { status: APICallStatusEnum.UN_INITIATED }, FetchInfo: { status: APICallStatusEnum.UN_INITIATED }, FetchFees: { status: APICallStatusEnum.UN_INITIATED }, FetchChannels: { status: APICallStatusEnum.UN_INITIATED }, @@ -31,7 +34,8 @@ export const initECLState: ECLState = { FetchInvoices: { status: APICallStatusEnum.UN_INITIATED }, FetchTransactions: { status: APICallStatusEnum.UN_INITIATED } }, - nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, selCurrencyUnit: 'USD', fiatConversion: false, channelBackupPath: '', currencyUnits: [] }, + nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, unannouncedChannels: false, selCurrencyUnit: 'USD', fiatConversion: false, channelBackupPath: '', currencyUnits: [] }, + pageSettings: ECL_DEFAULT_PAGE_SETTINGS, information: {}, fees: {}, activeChannels: [], diff --git a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html index 95fe2252..28982a5c 100644 --- a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html +++ b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html @@ -20,7 +20,7 @@ - {{selTimeUnit | titlecase}} + {{selTimeUnit | titlecase}} diff --git a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.scss b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.scss +++ b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts index 41fefc22..86d2d6a7 100644 --- a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts +++ b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts @@ -15,7 +15,7 @@ import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { createInvoice } from '../../store/ecl.actions'; -import { eclNodeInformation, eclnNodeSettings } from '../../store/ecl.selector'; +import { eclNodeInformation, eclNodeSettings } from '../../store/ecl.selector'; @Component({ selector: 'rtl-ecl-create-invoices', @@ -31,7 +31,6 @@ export class ECLCreateInvoiceComponent implements OnInit, OnDestroy { public invoiceValue: number | null = null; public invoiceValueHint = ''; public invoicePaymentReq = ''; - public invoices: any; public information: GetInfo = {}; public private = false; public expiryStep = 100; @@ -46,7 +45,7 @@ export class ECLCreateInvoiceComponent implements OnInit, OnDestroy { ngOnInit() { this.pageSize = this.data.pageSize; - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); diff --git a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html index 48cf6131..c0660025 100644 --- a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html +++ b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html @@ -89,7 +89,7 @@
-

Node Id

+

Node ID

{{invoice?.nodeId}}
diff --git a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts index ab9f2ace..518e25a6 100644 --- a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts +++ b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts @@ -51,7 +51,8 @@ export class ECLInvoiceInformationComponent implements OnInit, OnDestroy { subscribe((invoicesSelector: { invoices: Invoice[], apiCallStatus: ApiCallStatusPayload }) => { const invoiceStatus = this.invoice.status; const invoices = (invoicesSelector.invoices && invoicesSelector.invoices.length > 0) ? invoicesSelector.invoices : []; - this.invoice = invoices?.find((invoice) => invoice.paymentHash === this.invoice.paymentHash) || {}; + const foundInvoice = invoices?.find((invoice) => invoice.paymentHash === this.invoice.paymentHash) || null; + if (foundInvoice) { this.invoice = foundInvoice; } if (invoiceStatus !== this.invoice.status && this.invoice.status === 'received') { this.flgInvoicePaid = true; setTimeout(() => { this.flgInvoicePaid = false; }, 4000); diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.html b/src/app/eclair/transactions/invoices/lightning-invoices.component.html index 27309da9..044f2ba1 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.html +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.html @@ -23,63 +23,93 @@ Invoices History
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- - - +
Date Created
+ + + + + + + + + + - - + + + + + + - + + + + + - - + - - + - - @@ -90,7 +120,7 @@ - +
- - - - {{(invoice.timestamp * 1000) | date:'dd/MMM/y HH:mm'}} + + + Date Created{{(invoice?.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}Date Expiry{{((invoice?.expiresAt * 1000) | date:'dd/MMM/y HH:mm') || '-'}} Date Settled {{((invoice.receivedAt * 1000) | date:'dd/MMM/y HH:mm') || '-'}}Date Settled{{((invoice?.receivedAt * 1000) | date:'dd/MMM/y HH:mm') || '-'}}Node ID +
+ {{invoice?.nodeId}} +
+
Description Description -
- {{invoice.description}} +
+ {{invoice?.description}} +
+
Payment Hash +
+ {{invoice?.paymentHash}}
Amount (Sats) - {{invoice.amount ? (invoice.amount | number:'1.0-0') : '-'}} + Amount (Sats) + {{invoice?.amount ? (invoice?.amount | number:'1.0-0') : '-'}} Amount Settled (Sats) - {{invoice.amountSettled ? (invoice.amountSettled | number:'1.0-0') : '-'}} + Amount Settled (Sats) + {{invoice?.amountSettled ? (invoice?.amountSettled | number:'1.0-0') : '-'}} -
+
+
Download CSV
-
+ +
View Info Refresh -
+
diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.scss b/src/app/eclair/transactions/invoices/lightning-invoices.component.scss index 2ce046dc..4ccf74d1 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.scss +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.scss @@ -1,11 +1,4 @@ -.mat-column-description { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-status { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.ts b/src/app/eclair/transactions/invoices/lightning-invoices.component.ts index 8ff2e9d9..b4adc966 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.ts +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.ts @@ -9,7 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, ECLActions } from '../../../shared/services/consts-enums-functions'; +import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, ECLActions, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { SelNodeChild } from '../../../shared/models/RTLconfig'; import { GetInfo, Invoice } from '../../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @@ -22,7 +22,9 @@ import { ECLInvoiceInformationComponent } from '../invoice-information-modal/inv import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { createInvoice, invoiceLookup } from '../../store/ecl.actions'; -import { eclNodeInformation, eclnNodeSettings, invoices } from '../../store/ecl.selector'; +import { eclNodeInformation, eclNodeSettings, eclPageSettings, invoices } from '../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-lightning-invoices', @@ -38,6 +40,11 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'expiresAt', sortOrder: SortOrderEnum.DESCENDING }; public selNode: SelNodeChild | null = {}; public newlyAddedInvoiceMemo: string | null = ''; public newlyAddedInvoiceValue: number | null = 0; @@ -47,10 +54,9 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD public invoiceValueHint = ''; public displayedColumns: any[] = []; public invoicePaymentReq = ''; - public invoices: any; + public invoices: any = new MatTableDataSource([]); public invoiceJSONArr: Invoice[] = []; public information: GetInfo = {}; - public flgSticky = false; public selFilter = ''; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; @@ -59,27 +65,14 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private datePipe: DatePipe, private actions: Actions) { + constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private datePipe: DatePipe, private actions: Actions, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amount', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amount', 'amountSettled', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amount', 'amountSettled', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['timestamp', 'receivedAt', 'description', 'amount', 'amountSettled', 'actions']; - } } ngOnInit() { - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); @@ -87,7 +80,26 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD subscribe((nodeInfo: any) => { this.information = nodeInfo; }); - this.store.select(invoices).pipe(takeUntil(this.unSubs[2])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('status'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(invoices).pipe(takeUntil(this.unSubs[3])). subscribe((invoicesSelector: { invoices: Invoice[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = invoicesSelector.apiCallStatus; @@ -95,12 +107,12 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.invoiceJSONArr = (invoicesSelector.invoices && invoicesSelector.invoices.length > 0) ? invoicesSelector.invoices : []; - if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator) { + if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } this.logger.info(invoicesSelector); }); - this.actions.pipe(takeUntil(this.unSubs[3]), filter((action) => (action.type === ECLActions.SET_LOOKUP_ECL || action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL))). + this.actions.pipe(takeUntil(this.unSubs[4]), filter((action) => (action.type === ECLActions.SET_LOOKUP_ECL || action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL))). subscribe((resLookup: any) => { if (resLookup.type === ECLActions.SET_LOOKUP_ECL) { if (this.invoiceJSONArr.length > 0 && this.sort && this.paginator && resLookup.payload) { @@ -112,7 +124,7 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD } ngAfterViewInit() { - if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator) { + if (this.invoiceJSONArr && this.invoiceJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } } @@ -165,15 +177,53 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD this.invoiceJSONArr = this.invoiceJSONArr?.map((invoice) => ((invoice.paymentHash === newInvoice.paymentHash) ? newInvoice : invoice)); } + applyFilter() { + this.invoices.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.invoices.filterPredicate = (rowData: Invoice, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'status': + rowToFilter = !rowData?.status || rowData?.status === 'expired' || rowData?.status === 'unknown' ? 'expired/unknown' : rowData.status?.toLowerCase(); + break; + + case 'timestamp': + case 'expiresAt': + case 'receivedAt': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'amount': + case 'amountSettled': + rowToFilter = rowData[this.selFilterBy]?.toString() || '-'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'status' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadInvoicesTable(invs: Invoice[]) { this.invoices = invs ? new MatTableDataSource([...invs]) : new MatTableDataSource([]); this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.invoices.sort = this.sort; - this.invoices.filterPredicate = (rowData: Invoice, fltr: string) => { - const newRowData = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.invoices.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.invoices.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } @@ -184,15 +234,11 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD this.invoiceValueHint = ''; } - applyFilter() { - this.invoices.filter = this.selFilter.trim().toLowerCase(); - } - onInvoiceValueChange() { if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { this.invoiceValueHint = ''; this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe({ next: (data) => { this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.html b/src/app/eclair/transactions/payments/lightning-payments.component.html index 064b2333..a22062fe 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.html +++ b/src/app/eclair/transactions/payments/lightning-payments.component.html @@ -1,6 +1,6 @@ -
+
- + {{paymentDecodedHint}} Payment request is required. @@ -19,14 +19,21 @@ Payments History
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
@@ -34,16 +41,48 @@ + + + + + + + + + + + + + + + + @@ -52,16 +91,16 @@ - - @@ -73,62 +112,118 @@ - + - + + + + - + - + - - + + + + + + + + + - - + +
Date/Time {{payment?.firstPartTimestamp | date:'dd/MMM/y HH:mm'}}ID -
- {{payment.id}} +
+ {{payment?.id}} +
+
Destination Node ID +
+ {{payment?.recipientNodeId}}
Destination -
- {{payment.recipientNodeAlias}} +
+ {{payment?.recipientNodeAlias}} +
+
Description +
+ {{payment?.description}} +
+
Payment Hash +
+ {{payment?.paymentHash}} +
+
Preimage +
+ {{payment?.paymentPreimage}}
{{(payment?.recipientAmount) | number}} -
+
+
Download CSV
-
- + + + - Total Attempts: {{payment?.parts?.length}} + Total Attempts: {{payment?.parts?.length || 0}} - - + + {{part.timestamp | date:'dd/MMM/y HH:mm'}} -
- {{payment.id}} +
+ {{payment?.id}}
- + - + {{part.id}} - + +
+
+ {{payment?.recipientNodeId}} +
+ + + + {{part.toChannelId}} + + +
-
+
{{payment?.recipientNodeAlias}}
- + - + {{part.toChannelAlias}}
{{payment?.recipientAmount | number:'1.0-0'}} - + {{part.amount | number:'1.0-0'}} + + +
+ {{payment?.description}} +
+ + + + Fee Paid: {{part.feesPaid | number:'1.0-0'}} (Sats) + + + +
+
+ {{payment?.paymentHash}} +
+ + + + Fee Paid: {{part.feesPaid | number:'1.0-0'}} (Sats) + + + +
+
+ {{payment?.paymentPreimage}} +
+ + + + Fee Paid: {{part.feesPaid | number:'1.0-0'}} (Sats) + + + +
- + -
+
@@ -138,8 +233,8 @@
diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.scss b/src/app/eclair/transactions/payments/lightning-payments.component.scss index b5548200..db7c786d 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.scss +++ b/src/app/eclair/transactions/payments/lightning-payments.component.scss @@ -1,36 +1,30 @@ -.mat-column-id, .mat-column-recipientNodeAlias, -.mat-column-groupId, .mat-column-groupChannelAlias { - padding: 0 1rem; - flex: 0 0 25%; - width: 25%; - & .ellipsis-parent { - display: flex; - } -} - -.mat-column-actions { - min-height: 4.8rem; -} - -.mat-column-groupAction { +.mat-column-group_actions { min-height: 4.8rem; & .btn-part-expand { - width: 9rem; + min-width: 10rem; + width: 10rem; } & .btn-part-info { - margin-top: 0.5rem; - width: 9rem; + margin-top: 0.5rem; + min-width: 9rem; + width: 9rem; + } +} + +.mat-column-group_firstPartTimestamp { + .part-row-span:not(:first-of-type) { + padding-left: 3rem; } } .part-row-span { min-height: 4.2rem; place-content: center flex-start; - align-items: center; + align-items: center; } -.mat-column-groupTotal { - min-width: 15rem; +.mat-column-group_firstPartTimestamp { + min-width: 17rem; } diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.ts b/src/app/eclair/transactions/payments/lightning-payments.component.ts index d216688a..67cf8601 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.ts +++ b/src/app/eclair/transactions/payments/lightning-payments.component.ts @@ -9,7 +9,7 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { GetInfo, PayRequest, PaymentSent, PaymentSentPart, Payments } from '../../../shared/models/eclModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; @@ -23,7 +23,9 @@ import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { sendPayment } from '../../store/ecl.actions'; -import { eclNodeInformation, eclnNodeSettings, payments } from '../../store/ecl.selector'; +import { eclNodeInformation, eclNodeSettings, eclPageSettings, payments } from '../../store/ecl.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-ecl-lightning-payments', @@ -39,18 +41,22 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD @ViewChild('sendPaymentForm', { static: false }) form; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = ECL_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'firstPartTimestamp', sortOrder: SortOrderEnum.DESCENDING }; public faHistory = faHistory; public newlyAddedPayment = ''; public selNode: SelNodeChild | null = {}; public information: GetInfo = {}; - public payments: any; + public payments: any = new MatTableDataSource([]); public paymentJSONArr: PaymentSent[] = []; public paymentDecoded: PayRequest = {}; public displayedColumns: any[] = []; public partColumns: string[] = []; public paymentRequest = ''; public paymentDecodedHint = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -59,31 +65,14 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe, private dataService: DataService, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe, private dataService: DataService, private datePipe: DatePipe, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['firstPartTimestamp', 'actions']; - this.partColumns = ['groupTotal', 'groupAction']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['firstPartTimestamp', 'recipientAmount', 'actions']; - this.partColumns = ['groupTotal', 'groupAmount', 'groupAction']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['firstPartTimestamp', 'id', 'recipientAmount', 'actions']; - this.partColumns = ['groupTotal', 'groupId', 'groupAmount', 'groupAction']; - } else { - this.flgSticky = true; - this.displayedColumns = ['firstPartTimestamp', 'id', 'recipientNodeAlias', 'recipientAmount', 'actions']; - this.partColumns = ['groupTotal', 'groupId', 'groupChannelAlias', 'groupAmount', 'groupAction']; - } } ngOnInit() { - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); @@ -91,7 +80,27 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(payments).pipe(takeUntil(this.unSubs[2])). + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.partColumns = []; + this.displayedColumns.map((col) => this.partColumns.push('group_' + col)); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[3])). subscribe((paymentsSeletor: { payments: Payments, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = paymentsSeletor.apiCallStatus; @@ -99,27 +108,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } this.paymentJSONArr = (paymentsSeletor.payments && paymentsSeletor.payments.sent && paymentsSeletor.payments.sent.length > 0) ? paymentsSeletor.payments.sent : []; - // FOR MPP TESTING START - // If (this.paymentJSONArr.length > 0) { - // This.paymentJSONArr[3].parts.push({ - // Id: '34b609a5-f0f1-474e-9e5d-d7783b48702d', amount: 26000, feesPaid: 22, toChannelId: '7e78fa4a27db55df2955fb2be54162d01168744ad45a6539172a6dd6e6139c87', toChannelAlias: 'ion.radar.tech1', timestamp: 1596389827075 - // }); - // This.paymentJSONArr[3].parts.push({ - // Id: '35b609a5-f0f1-474e-9e5d-d7783b48702e', amount: 27000, feesPaid: 20, toChannelId: '7e78fa4a27db55df2955fb2be54162d01168744ad45a6539172a6dd6e6139c86', toChannelAlias: 'ion.radar.tech2', timestamp: 1596389817075 - // }); - // This.paymentJSONArr[5].parts.push({ - // Id: '38b609a5-f0f1-474e-9e5d-d7783b48702h', amount: 31000, feesPaid: 18, toChannelId: '7e78fa4a27db55df2955fb2be54162d01168744ad45a6539172a6dd6e6139c85', toChannelAlias: 'ion.radar.tech3', timestamp: 1596389887075 - // }); - // This.paymentJSONArr[5].parts.push({ - // Id: '36b609a5-f0f1-474e-9e5d-d7783b48702f', amount: 28000, feesPaid: 13, toChannelId: '7e78fa4a27db55df2955fb2be54162d01168744ad45a6539172a6dd6e6139c84', toChannelAlias: 'ion.radar.tech4', timestamp: 1596389687075 - // }); - // This.paymentJSONArr[5].parts.push({ - // Id: '37b609a5-f0f1-474e-9e5d-d7783b48702g', amount: 25000, feesPaid: 19, toChannelId: '7e78fa4a27db55df2955fb2be54162d01168744ad45a6539172a6dd6e6139c83', toChannelAlias: 'ion.radar.tech5', timestamp: 1596389707075 - // }); - // } - // This.paymentJSONArr = this.paymentJSONArr.splice(2, 5); - // FOR MPP TESTING END - if(this.paymentJSONArr.length > 0 && this.sort && this.paginator) { + if (this.paymentJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadPaymentsTable(this.paymentJSONArr); } this.logger.info(paymentsSeletor); @@ -127,11 +116,40 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } ngAfterViewInit() { - if(this.paymentJSONArr.length > 0) { + if (this.paymentJSONArr.length > 0) { this.loadPaymentsTable(this.paymentJSONArr); } } + applyFilter() { + this.payments.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithSpaces.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.payments.filterPredicate = (rowData: PaymentSent, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.firstPartTimestamp) ? this.datePipe.transform(new Date(rowData.firstPartTimestamp), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'firstPartTimestamp': + rowToFilter = this.datePipe.transform(new Date(rowData.firstPartTimestamp || 0), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadPaymentsTable(payms: PaymentSent[]) { this.payments = payms ? new MatTableDataSource([...payms]) : new MatTableDataSource([]); this.payments.sort = this.sort; @@ -157,11 +175,9 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; - this.payments.filterPredicate = (rowData: PaymentSent, fltr: string) => { - const newRowData = ((rowData.firstPartTimestamp) ? this.datePipe.transform(new Date(rowData.firstPartTimestamp), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.payments.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.payments.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } @@ -266,7 +282,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD if (this.paymentDecoded.amount) { if (this.selNode && this.selNode.fiatConversion) { this.commonService.convertCurrency(+this.paymentDecoded.amount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[4])). subscribe({ next: (data) => { this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats (' + data.symbol + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; @@ -376,10 +392,6 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD })); } - applyFilter() { - this.payments.filter = this.selFilter.trim().toLowerCase(); - } - onDownloadCSV() { if (this.payments.data && this.payments.data.length > 0) { const paymentsDataCopy: PaymentSent[] = JSON.parse(JSON.stringify(this.payments.data)); @@ -390,7 +402,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD return paymentReqs; }, ''); this.dataService.decodePayments(paymentRequests). - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe((decodedPayments: any[][]) => { decodedPayments.forEach((decodedPayment, idx) => { if (decodedPayment.length > 0 && decodedPayment[0].paymentRequest && decodedPayment[0].paymentRequest.description && decodedPayment[0].paymentRequest.description !== '') { diff --git a/src/app/eclair/transactions/send-payment-modal/send-payment.component.scss b/src/app/eclair/transactions/send-payment-modal/send-payment.component.scss index f18d5d79..e69de29b 100644 --- a/src/app/eclair/transactions/send-payment-modal/send-payment.component.scss +++ b/src/app/eclair/transactions/send-payment-modal/send-payment.component.scss @@ -1,10 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} - -.mat-column-payment_hash { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} \ No newline at end of file diff --git a/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts b/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts index a93c3316..1cfd2b50 100644 --- a/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts @@ -18,7 +18,7 @@ import { DataService } from '../../../shared/services/data.service'; import { ECLEffects } from '../../store/ecl.effects'; import { RTLState } from '../../../store/rtl.state'; import { sendPayment } from '../../store/ecl.actions'; -import { allChannelsInfo, eclnNodeSettings } from '../../store/ecl.selector'; +import { allChannelsInfo, eclNodeSettings } from '../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ @@ -47,7 +47,7 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { constructor(public dialogRef: MatDialogRef, private store: Store, private eclEffects: ECLEffects, private logger: LoggerService, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions, private dataService: DataService) { } ngOnInit() { - this.store.select(eclnNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); diff --git a/src/app/eclair/transactions/transactions.component.ts b/src/app/eclair/transactions/transactions.component.ts index 11caae0c..cde890b7 100644 --- a/src/app/eclair/transactions/transactions.component.ts +++ b/src/app/eclair/transactions/transactions.component.ts @@ -8,7 +8,7 @@ import { faExchangeAlt, faChartPie } from '@fortawesome/free-solid-svg-icons'; import { UserPersonaEnum } from '../../shared/services/consts-enums-functions'; import { LoggerService } from '../../shared/services/logger.service'; import { RTLState } from '../../store/rtl.state'; -import { eclnNodeSettings, allChannelsInfo } from '../store/ecl.selector'; +import { eclNodeSettings, allChannelsInfo } from '../store/ecl.selector'; import { Channel, ChannelsStatus, LightningBalance } from '../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../shared/models/RTLconfig'; @@ -41,7 +41,7 @@ export class ECLTransactionsComponent implements OnInit, OnDestroy { } }); this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[1]), - withLatestFrom(this.store.select(eclnNodeSettings))). + withLatestFrom(this.store.select(eclNodeSettings))). subscribe(([allChannels, nodeSettings]: [{ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload }, (SelNodeChild | null)]) => { this.currencyUnits = nodeSettings?.currencyUnits || []; if (nodeSettings && nodeSettings.userPersona === UserPersonaEnum.OPERATOR) { diff --git a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html index cb7681f2..9018c440 100644 --- a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html +++ b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.html @@ -19,21 +19,30 @@ Backups
- - - +
+
+ + + +
-
+
- +
- - + + - + - +
Channel Point {{channel?.channel_point}}Channel Point +
+ {{channel?.channel_point}} +
+
Actions +
Actions
+
-
+
View Info @@ -52,7 +61,7 @@
diff --git a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.scss b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.scss index 65e1453f..e69de29b 100644 --- a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.scss +++ b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.scss @@ -1,6 +0,0 @@ -.mat-column-channel_point { - flex: 1 1 70%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts index 676fc98d..fc2691fa 100644 --- a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts +++ b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts @@ -42,8 +42,7 @@ export class ChannelBackupTableComponent implements OnInit, AfterViewInit, OnDes public displayedColumns = ['channel_point', 'actions']; public selectedChannel: Channel | null; public channelsData: Channel[] = []; - public channels: any; - public flgSticky = false; + public channels: any = new MatTableDataSource([]); public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; @@ -122,15 +121,7 @@ export class ChannelBackupTableComponent implements OnInit, AfterViewInit, OnDes this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.channels.paginator = this.paginator; - this.channels.filterPredicate = (channel: Channel, fltr: string) => { - const newChannel = ((channel.active) ? 'active' : 'inactive') + (channel.channel_point ? channel.channel_point.toLowerCase() : '') + (channel.chan_id ? channel.chan_id.toLowerCase() : '') + - (channel.remote_pubkey ? channel.remote_pubkey.toLowerCase() : '') + (channel.remote_alias ? channel.remote_alias.toLowerCase() : '') + - (channel.capacity ? channel.capacity : '') + (channel.local_balance ? channel.local_balance : '') + - (channel.remote_balance ? channel.remote_balance : '') + (channel.total_satoshis_sent ? channel.total_satoshis_sent : '') + - (channel.total_satoshis_received ? channel.total_satoshis_received : '') + (channel.commit_fee ? channel.commit_fee : '') + - (channel.private ? 'private' : 'public'); - return newChannel.includes(fltr); - }; + this.channels.filterPredicate = (rowData: Channel, fltr: string) => (rowData.channel_point ? rowData.channel_point.toLowerCase() : '').includes(fltr); this.applyFilter(); } diff --git a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html index 5f59ebed..d424b398 100644 --- a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html +++ b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.html @@ -14,19 +14,28 @@
- - - +
+
+ + + +
-
+
- - + + - + - +
Channel Point {{channel?.channel_point}}Channel Point +
+ {{channel?.channel_point}} +
+
Actions +
Actions
+
@@ -39,7 +48,7 @@
diff --git a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.scss b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.scss index d67b1ba8..e69de29b 100644 --- a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.scss +++ b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.scss @@ -1,6 +0,0 @@ -.mat-column-channel_point { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts index cffa5f2a..15e7ef3d 100644 --- a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts +++ b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts @@ -35,10 +35,9 @@ export class ChannelRestoreTableComponent implements OnInit, AfterViewInit, OnDe public displayedColumns = ['channel_point', 'actions']; public selChannel: Channel; public channelsData = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public allRestoreExists = false; public flgLoading: Array = [true]; // 0: channels - public flgSticky = false; public selFilter = ''; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; @@ -83,8 +82,8 @@ export class ChannelRestoreTableComponent implements OnInit, AfterViewInit, OnDe this.channels = new MatTableDataSource([...channels]); this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.channels.filterPredicate = (channel: Channel, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); this.channels.paginator = this.paginator; + this.channels.filterPredicate = (rowData: Channel, fltr: string) => (rowData.channel_point ? rowData.channel_point.toLowerCase() : '').includes(fltr); this.applyFilter(); } diff --git a/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.html b/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.html index 780f1936..d2857402 100644 --- a/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.html +++ b/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.html @@ -2,7 +2,7 @@
-

Channel Id

+

Channel ID

{{lookupResult.channel_id}}
diff --git a/src/app/lnd/graph/lookups/lookups.component.scss b/src/app/lnd/graph/lookups/lookups.component.scss index d45059cb..51956474 100644 --- a/src/app/lnd/graph/lookups/lookups.component.scss +++ b/src/app/lnd/graph/lookups/lookups.component.scss @@ -8,7 +8,3 @@ margin-bottom: 0; list-style-type: none; } - -.pl-3 { - padding-left: 3rem; -} \ No newline at end of file diff --git a/src/app/lnd/graph/lookups/lookups.component.ts b/src/app/lnd/graph/lookups/lookups.component.ts index 38fca255..dacae9db 100644 --- a/src/app/lnd/graph/lookups/lookups.component.ts +++ b/src/app/lnd/graph/lookups/lookups.component.ts @@ -22,7 +22,6 @@ export class LookupsComponent implements OnInit, OnDestroy { public lookupKey = ''; public lookupValue = {}; public flgSetLookupValue = false; - public temp: any; public messageObj = []; public selectedFieldId = 0; public lookupFields = [ diff --git a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html index 171a2cde..334cbdbd 100644 --- a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html +++ b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.html @@ -35,21 +35,23 @@

Addresses

-
+
- + - + - - + diff --git a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss index e69de29b..2b50b930 100644 --- a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss +++ b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.scss @@ -0,0 +1,10 @@ +div.bordered-box.table-actions-select.btn-action { + min-width: 13rem; + width: 13rem; + min-height: 3.6rem; +} + +button.mat-stroked-button.btn-action-copy { + min-width: 13rem; + width: 13rem; +} diff --git a/src/app/lnd/graph/query-routes/query-routes.component.html b/src/app/lnd/graph/query-routes/query-routes.component.html index 5b443478..488b0aab 100644 --- a/src/app/lnd/graph/query-routes/query-routes.component.html +++ b/src/app/lnd/graph/query-routes/query-routes.component.html @@ -27,38 +27,64 @@
Network {{address?.network}} {{address?.network}} Address {{address?.addr}} {{address?.addr}} Actions + +
Actions
+
- +
- - + + - - + + + + + + - - + + + + + + + + + + - - + + - - + - - + - - + - +
Hop {{hop?.hop_sequence}} Hop{{hop?.hop_sequence}} Peer {{hop?.pubkey_alias}} Peer +
+ {{hop?.pubkey_alias}} +
+
Peer Pubkey +
+ {{hop?.pub_key}} +
+
Channel {{hop?.chan_id}} Channel ID +
+ {{hop?.chan_id}} +
+
TLV Payload{{hop?.tlv_payload ? 'Yes' : 'No'}}Expiry{{hop?.expiry | number}} Capacity (Sats) {{hop?.chan_capacity | number}}Capacity (Sats){{hop?.chan_capacity | number}} Amount To Fwd (Sats) {{hop?.amt_to_forward | number}} + Amount To Fwd (Sats){{hop?.amt_to_forward | number}} Fee (mSats) {{hop?.fee_msat | number}} + Fee (mSats){{hop?.fee_msat | number}} Actions - + +
Actions
+
+
diff --git a/src/app/lnd/graph/query-routes/query-routes.component.scss b/src/app/lnd/graph/query-routes/query-routes.component.scss index f5961ac5..e69de29b 100644 --- a/src/app/lnd/graph/query-routes/query-routes.component.scss +++ b/src/app/lnd/graph/query-routes/query-routes.component.scss @@ -1,11 +0,0 @@ -.mat-column-actions { - flex: 0 0 5%; - width: 5%; -} - -.mat-column-pubkey_alias { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/graph/query-routes/query-routes.component.ts b/src/app/lnd/graph/query-routes/query-routes.component.ts index 1b543f06..a6fd152e 100644 --- a/src/app/lnd/graph/query-routes/query-routes.component.ts +++ b/src/app/lnd/graph/query-routes/query-routes.component.ts @@ -8,12 +8,16 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Hop } from '../../../shared/models/lndModels'; -import { AlertTypeEnum, DataTypeEnum, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; +import { AlertTypeEnum, DataTypeEnum, LND_DEFAULT_PAGE_SETTINGS, PAGE_SIZE, ScreenSizeEnum, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { LNDEffects } from '../../store/lnd.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getQueryRoutes } from '../../store/lnd.actions'; +import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { lndPageSettings } from '../../store/lnd.selector'; +import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; +import { LoggerService } from '../../../shared/services/logger.service'; @Component({ selector: 'rtl-query-routes', @@ -23,36 +27,37 @@ import { getQueryRoutes } from '../../store/lnd.actions'; export class QueryRoutesComponent implements OnInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; + public colWidth = '20rem'; + public PAGE_ID = 'graph_lookup'; + public tableSetting: TableSetting = { tableId: 'query_routes', recordsPerPage: PAGE_SIZE, sortBy: 'hop_sequence', sortOrder: SortOrderEnum.ASCENDING }; public destinationPubkey = ''; public amount = null; - public qrHops: any; - public flgSticky = false; + public qrHops: any = new MatTableDataSource([]); public displayedColumns: any[] = []; public flgLoading: Array = [false]; // 0: peers public faRoute = faRoute; public faExclamationTriangle = faExclamationTriangle; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private store: Store, private lndEffects: LNDEffects, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private lndEffects: LNDEffects, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['pubkey_alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['hop_sequence', 'pubkey_alias', 'fee_msat', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['hop_sequence', 'pubkey_alias', 'chan_capacity', 'amt_to_forward_msat', 'fee_msat', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['hop_sequence', 'pubkey_alias', 'chan_capacity', 'amt_to_forward_msat', 'fee_msat', 'actions']; - } } ngOnInit() { + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); this.lndEffects.setQueryRoutes.pipe(takeUntil(this.unSubs[1])).subscribe((queryRoute) => { this.qrHops = new MatTableDataSource([]); if (queryRoute.routes && queryRoute.routes.length && queryRoute.routes.length > 0 && queryRoute.routes[0].hops) { @@ -64,6 +69,7 @@ export class QueryRoutesComponent implements OnInit, OnDestroy { } this.qrHops.sort = this.sort; this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); + this.qrHops.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); }); } diff --git a/src/app/lnd/home/node-info/node-info.component.html b/src/app/lnd/home/node-info/node-info.component.html index 73453364..a84313fe 100644 --- a/src/app/lnd/home/node-info/node-info.component.html +++ b/src/app/lnd/home/node-info/node-info.component.html @@ -19,6 +19,8 @@

Chain

+ + {{chain}}
diff --git a/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.spec.ts b/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.spec.ts index 5c664eee..eb1f7a10 100644 --- a/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.spec.ts +++ b/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.spec.ts @@ -11,7 +11,7 @@ import { DataService } from '../../../shared/services/data.service'; import { OnChainLabelModalComponent } from './on-chain-label-modal.component'; import { SharedModule } from '../../../shared/shared.module'; -import { mockDataService, mockLoggerService, mockMatDialogRef } from '../../../shared/test-helpers/mock-services'; +import { mockDataService, mockMatDialogRef } from '../../../shared/test-helpers/mock-services'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; describe('OnChainLabelModalComponent', () => { diff --git a/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.spec.ts b/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.spec.ts index 56c3a9ce..10d622c2 100644 --- a/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.spec.ts +++ b/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.spec.ts @@ -1,9 +1,11 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { StoreModule } from '@ngrx/store'; -import { mockLNDEffects } from '../../../shared/test-helpers/mock-services'; +import { mockDataService, mockLNDEffects } from '../../../shared/test-helpers/mock-services'; import { SharedModule } from '../../../shared/shared.module'; +import { CommonService } from '../../../shared/services/common.service'; +import { DataService } from '../../../shared/services/data.service'; import { RootReducer } from '../../../store/rtl.reducers'; import { LNDReducer } from '../../../lnd/store/lnd.reducers'; import { CLNReducer } from '../../../cln/store/cln.reducers'; @@ -24,6 +26,8 @@ describe('OnChainReceiveComponent', () => { StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [ + CommonService, + { provide: DataService, useClass: mockDataService }, { provide: LNDEffects, useClass: mockLNDEffects } ] }). diff --git a/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.ts b/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.ts index 9b734d44..d3ae295e 100644 --- a/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.ts +++ b/src/app/lnd/on-chain/on-chain-receive/on-chain-receive.component.ts @@ -1,8 +1,9 @@ -import { Component } from '@angular/core'; -import { take } from 'rxjs/operators'; +import { Component, OnDestroy, OnInit } from '@angular/core'; +import { Subject } from 'rxjs'; +import { takeUntil, take } from 'rxjs/operators'; import { Store } from '@ngrx/store'; -import { AddressType } from '../../../shared/models/lndModels'; +import { AddressType, GetInfo } from '../../../shared/models/lndModels'; import { ADDRESS_TYPES } from '../../../shared/services/consts-enums-functions'; import { OnChainGeneratedAddressComponent } from '../../../shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component'; @@ -10,19 +11,31 @@ import { LNDEffects } from '../../store/lnd.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getNewAddress } from '../../store/lnd.actions'; +import { lndNodeInformation } from '../../store/lnd.selector'; +import { CommonService } from '../../../shared/services/common.service'; @Component({ selector: 'rtl-on-chain-receive', templateUrl: './on-chain-receive.component.html', styleUrls: ['./on-chain-receive.component.scss'] }) -export class OnChainReceiveComponent { +export class OnChainReceiveComponent implements OnInit, OnDestroy { - public addressTypes = ADDRESS_TYPES; + public addressTypes = []; public selectedAddressType: AddressType = ADDRESS_TYPES[0]; public newAddress = ''; + public flgVersionCompatible = true; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private store: Store, private lndEffects: LNDEffects) { } + constructor(private store: Store, private lndEffects: LNDEffects, private commonService: CommonService) { } + + ngOnInit() { + this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeInfo: GetInfo) => { + this.flgVersionCompatible = this.commonService.isVersionCompatible(nodeInfo.version, '0.15.0'); + this.addressTypes = (this.flgVersionCompatible) ? ADDRESS_TYPES : ADDRESS_TYPES.filter((at) => at.addressId !== '4'); + }); + } onGenerateAddress() { this.store.dispatch(getNewAddress({ payload: this.selectedAddressType })); @@ -42,4 +55,11 @@ export class OnChainReceiveComponent { }); } + ngOnDestroy() { + this.unSubs.forEach((completeSub) => { + completeSub.next(null); + completeSub.complete(); + }); + } + } diff --git a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index 4e4930a2..471c7371 100644 --- a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -14,7 +14,7 @@ - {{selAmountUnit}} + {{selAmountUnit}} {{amountError}} diff --git a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index dd5e1294..c791408c 100644 --- a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -67,7 +67,17 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { confirmFormGroup: FormGroup; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: OnChainSendFunds, private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private decimalPipe: DecimalPipe, private snackBar: MatSnackBar, private actions: Actions, private formBuilder: FormBuilder) { } + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: OnChainSendFunds, + private logger: LoggerService, + private store: Store, + private rtlEffects: RTLEffects, + private commonService: CommonService, + private decimalPipe: DecimalPipe, + private snackBar: MatSnackBar, + private actions: Actions, + private formBuilder: FormBuilder) { } ngOnInit() { this.sweepAll = this.data.sweepAll; @@ -183,7 +193,10 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { get invalidValues(): boolean { if (this.sweepAll) { return (!this.sendFundFormGroup.controls.transactionAddress.value || this.sendFundFormGroup.controls.transactionAddress.value === '') || - (this.sendFundFormGroup.controls.selTransType.value === '1' && (!this.sendFundFormGroup.controls.transactionBlocks.value || this.sendFundFormGroup.controls.transactionBlocks.value <= 0)) || (this.sendFundFormGroup.controls.selTransType.value === '2' && (!this.sendFundFormGroup.controls.transactionFees.value || this.sendFundFormGroup.controls.transactionFees.value <= 0)); + (this.sendFundFormGroup.controls.selTransType.value === '1' && + (!this.sendFundFormGroup.controls.transactionBlocks.value || this.sendFundFormGroup.controls.transactionBlocks.value <= 0)) || + (this.sendFundFormGroup.controls.selTransType.value === '2' && (!this.sendFundFormGroup.controls.transactionFees.value || + this.sendFundFormGroup.controls.transactionFees.value <= 0)); } else { return (!this.transactionAddress || this.transactionAddress === '') || (!this.transactionAmount || this.transactionAmount <= 0) || (this.selTransType === '1' && (!this.transactionBlocks || this.transactionBlocks <= 0)) || (this.selTransType === '2' && (!this.transactionFees || this.transactionFees <= 0)); diff --git a/src/app/lnd/on-chain/on-chain.component.ts b/src/app/lnd/on-chain/on-chain.component.ts index d6d88f41..ab591d38 100644 --- a/src/app/lnd/on-chain/on-chain.component.ts +++ b/src/app/lnd/on-chain/on-chain.component.ts @@ -48,7 +48,7 @@ export class OnChainComponent implements OnInit, OnDestroy { }); this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[2])). subscribe((bcBalanceSelector: { blockchainBalance: BlockchainBalance, apiCallStatus: ApiCallStatusPayload }) => { - this.balances = [{ title: 'Total Balance', dataValue: bcBalanceSelector.blockchainBalance.total_balance || 0 }, { title: 'Confirmed', dataValue: (bcBalanceSelector.blockchainBalance.confirmed_balance || 0) }, { title: 'Unconfirmed', dataValue: (bcBalanceSelector.blockchainBalance.unconfirmed_balance || 0)}]; + this.balances = [{ title: 'Total Balance', dataValue: bcBalanceSelector.blockchainBalance.total_balance || 0 }, { title: 'Confirmed', dataValue: (bcBalanceSelector.blockchainBalance.confirmed_balance || 0) }, { title: 'Unconfirmed', dataValue: (bcBalanceSelector.blockchainBalance.unconfirmed_balance || 0) }]; }); } diff --git a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html index c5cc1314..e537c92e 100644 --- a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html +++ b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.html @@ -1,52 +1,79 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
- +
- + - - + + + + + + + + + + - + - + - + - + - - @@ -57,7 +84,7 @@ - +
Date/Time Date/Time {{(transaction.time_stamp * 1000) | date:'dd/MMM/y HH:mm'}} Label {{transaction?.label}} Label +
+ {{transaction?.label}} +
+
Block Hash +
+ {{transaction?.block_hash}} +
+
Transaction Hash +
+ {{transaction?.tx_hash}} +
+
Amount (Sats) Amount (Sats) {{transaction.amount | number}} ({{transaction.amount * -1 | number}}) Fees (Sats) Fees (Sats) {{transaction.total_fees | number}} Block Height Block Height {{transaction.block_height | number}} Confirmations Confirmations {{transaction?.num_confirmations | number}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.scss b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.scss index 65feded6..e69de29b 100644 --- a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.scss +++ b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.scss @@ -1,10 +0,0 @@ -.mat-column-label { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts index 115124e4..65978254 100644 --- a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts +++ b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts @@ -9,14 +9,16 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Transaction } from '../../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert } from '../../../../store/rtl.actions'; -import { transactions } from '../../../store/lnd.selector'; +import { lndPageSettings, transactions } from '../../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-on-chain-transaction-history', @@ -30,11 +32,15 @@ export class OnChainTransactionHistoryComponent implements OnInit, OnChanges, On @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'on_chain'; + public tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'time_stamp', sortOrder: SortOrderEnum.DESCENDING }; public transactions: Transaction[]; - faHistory = faHistory; + public faHistory = faHistory; public displayedColumns: any[] = []; - public listTransactions: any; - public flgSticky = false; + public listTransactions: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -45,25 +51,30 @@ export class OnChainTransactionHistoryComponent implements OnInit, OnChanges, On public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['time_stamp', 'amount', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['time_stamp', 'amount', 'num_confirmations', 'total_fees', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['time_stamp', 'label', 'amount', 'total_fees', 'num_confirmations', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['time_stamp', 'label', 'amount', 'total_fees', 'block_height', 'num_confirmations', 'actions']; - } } ngOnInit() { - this.store.select(transactions).pipe(takeUntil(this.unSubs[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(transactions).pipe(takeUntil(this.unSubs[1])). subscribe((transactionsSelector: { transactions: Transaction[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = transactionsSelector.apiCallStatus; @@ -84,10 +95,6 @@ export class OnChainTransactionHistoryComponent implements OnInit, OnChanges, On } } - applyFilter() { - this.listTransactions.filter = this.selFilter.trim().toLowerCase(); - } - onTransactionClick(selTransaction: Transaction) { const reorderedTransactions = [ [{ key: 'block_hash', value: selTransaction.block_hash, title: 'Block Hash', width: 100 }], @@ -112,15 +119,42 @@ export class OnChainTransactionHistoryComponent implements OnInit, OnChanges, On })); } + applyFilter() { + this.listTransactions.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.listTransactions.filterPredicate = (rowData: Transaction, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.time_stamp) ? this.datePipe.transform(new Date(rowData.time_stamp * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'time_stamp': + rowToFilter = this.datePipe.transform(new Date((rowData?.time_stamp || 0) * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadTransactionsTable(transactions) { this.listTransactions = new MatTableDataSource([...transactions]); this.listTransactions.sort = this.sort; this.listTransactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.listTransactions.filterPredicate = (rowData: Transaction, fltr: string) => { - const newRowData = ((rowData.time_stamp) ? this.datePipe.transform(new Date(rowData.time_stamp * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.listTransactions.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.listTransactions.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listTransactions); } diff --git a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html index a48b27e8..c34cdae5 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html +++ b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html @@ -4,7 +4,7 @@ UTXOs - + @@ -16,7 +16,7 @@ Dust UTXOs - +
diff --git a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.spec.ts b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.spec.ts index 1429d114..3024d4ba 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.spec.ts +++ b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.spec.ts @@ -1,4 +1,5 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; +import { RouterTestingModule } from '@angular/router/testing'; import { StoreModule } from '@ngrx/store'; import { RootReducer } from '../../../store/rtl.reducers'; @@ -27,6 +28,7 @@ describe('UTXOTablesComponent', () => { imports: [ BrowserAnimationsModule, SharedModule, + RouterTestingModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [ diff --git a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts index ac3acf2c..574640fb 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts +++ b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts @@ -20,6 +20,7 @@ export class UTXOTablesComponent implements OnInit, OnDestroy { @Input() selectedTableIndex = 0; @Output() readonly selectedTableIndexChange = new EventEmitter(); + public DUST_AMOUNT = 1000; public numTransactions = 0; public numUtxos = 0; public numDustUtxos = 0; @@ -34,7 +35,7 @@ export class UTXOTablesComponent implements OnInit, OnDestroy { subscribe((utxosSelector: { utxos: UTXO[], apiCallStatus: ApiCallStatusPayload }) => { if (utxosSelector.utxos && utxosSelector.utxos.length > 0) { this.numUtxos = utxosSelector.utxos.length; - this.numDustUtxos = utxosSelector.utxos?.filter((utxo) => utxo.amount_sat && +utxo.amount_sat < 1000).length; + this.numDustUtxos = utxosSelector.utxos?.filter((utxo) => utxo.amount_sat && +utxo.amount_sat < this.DUST_AMOUNT).length; } this.logger.info(utxosSelector); }); diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html index 510990c4..a68d305b 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html @@ -1,57 +1,86 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
- +
+ + + + - - + - + - - + + + + + + + + + + - + - + - - - +
+ + warning + + Transaction ID - - - - warning - - + Transaction ID + {{utxo.outpoint.txid_str}} Output Output {{utxo.outpoint.output_index}} Label {{utxo?.label}} Label + + {{utxo.label}} + + Address Type +
+ {{addressType[utxo.address_type].name}} +
+
Address + + {{utxo?.address}} + + Amount (Sats) Amount (Sats) {{(utxo.amount_sat || 0) | number}} Confirmations Confirmations {{(utxo.confirmations || 0) | number}} -
+
+
Download CSV
-
+ +
@@ -70,7 +99,7 @@
@@ -79,4 +108,4 @@
- \ No newline at end of file + diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.scss b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.scss index c41e2e91..0999a85f 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.scss +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.scss @@ -1,20 +1,4 @@ -.mat-column-label { - padding-left: 1rem; - flex: 1 1 15%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-tx_id { - flex: 1 1 15%; - & .ellipsis-child { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - } -} - -.mat-column-actions { - min-height: 4.8rem; +.mat-column-is_dust { + max-width: 1.2rem; + width:1.2rem; } diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.spec.ts b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.spec.ts index f7f82df5..64ee2a27 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.spec.ts +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.spec.ts @@ -1,4 +1,5 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; +import { RouterTestingModule } from '@angular/router/testing'; import { StoreModule } from '@ngrx/store'; import { RootReducer } from '../../../../store/rtl.reducers'; @@ -25,6 +26,7 @@ describe('OnChainUTXOsComponent', () => { imports: [ BrowserAnimationsModule, SharedModule, + RouterTestingModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) ], providers: [ diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts index ede7eec4..b720b74a 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts @@ -1,4 +1,5 @@ import { Component, ViewChild, Input, OnChanges, OnDestroy, OnInit } from '@angular/core'; +import { Router } from '@angular/router'; import { DecimalPipe } from '@angular/common'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; @@ -9,7 +10,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { UTXO } from '../../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, WALLET_ADDRESS_TYPE, APICallStatusEnum } from '../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, WALLET_ADDRESS_TYPE, APICallStatusEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; @@ -19,7 +20,9 @@ import { OnChainLabelModalComponent } from '../../on-chain-label-modal/on-chain- import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; -import { utxos } from '../../../store/lnd.selector'; +import { lndPageSettings, utxos } from '../../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-on-chain-utxos', @@ -34,13 +37,18 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; @Input() isDustUTXO = false; + @Input() dustAmount = 1000; + public faMoneyBillWave = faMoneyBillWave; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'on_chain'; + public tableSetting: TableSetting = { tableId: 'utxos', recordsPerPage: PAGE_SIZE, sortBy: 'tx_id', sortOrder: SortOrderEnum.DESCENDING }; public utxos: UTXO[]; public dustUtxos: UTXO[]; public addressType = WALLET_ADDRESS_TYPE; - faMoneyBillWave = faMoneyBillWave; public displayedColumns: any[] = []; - public listUTXOs: any; - public flgSticky = false; + public listUTXOs: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -49,27 +57,33 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private dataService: DataService, private store: Store, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private dataService: DataService, private store: Store, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['amount_sat', 'confirmations', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['tx_id', 'output', 'amount_sat', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['tx_id', 'output', 'label', 'amount_sat', 'confirmations', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['tx_id', 'output', 'label', 'amount_sat', 'confirmations', 'actions']; - } } ngOnInit() { - this.store.select(utxos).pipe(takeUntil(this.unSubs[0])). + this.tableSetting.tableId = this.isDustUTXO ? 'dust_utxos' : 'utxos'; + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(utxos).pipe(takeUntil(this.unSubs[1])). subscribe((utxosSelector: { utxos: UTXO[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = utxosSelector.apiCallStatus; @@ -77,8 +91,11 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } if (utxosSelector.utxos && utxosSelector.utxos.length > 0) { - this.dustUtxos = utxosSelector.utxos?.filter((utxo) => +(utxo.amount_sat || 0) < 1000); + this.dustUtxos = utxosSelector.utxos?.filter((utxo) => +(utxo.amount_sat || 0) < this.dustAmount); this.utxos = utxosSelector.utxos; + if (this.utxos.length > 0 && this.dustUtxos.length > 0 && !this.isDustUTXO) { + this.displayedColumns.unshift('is_dust'); + } this.loadUTXOsTable((this.isDustUTXO) ? this.dustUtxos : this.utxos); } this.logger.info(utxosSelector); @@ -98,6 +115,45 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { this.listUTXOs.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : column === 'is_dust' ? 'Dust' : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.listUTXOs.filterPredicate = (rowData: UTXO, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.label ? rowData.label.toLowerCase() : '') + (rowData.outpoint?.txid_str ? rowData.outpoint.txid_str.toLowerCase() : '') + (rowData.outpoint?.output_index ? rowData.outpoint?.output_index : '') + + (rowData.outpoint?.txid_bytes ? rowData.outpoint?.txid_bytes.toLowerCase() : '') + (rowData.address ? rowData.address.toLowerCase() : '') + (rowData.address_type ? this.addressType[rowData.address_type].name.toLowerCase() : '') + + (rowData.amount_sat ? rowData.amount_sat : '') + (rowData.confirmations ? rowData.confirmations : '')); + break; + + case 'is_dust': + rowToFilter = (rowData?.amount_sat || 0) < this.dustAmount ? 'dust' : 'nondust'; + break; + + case 'tx_id': + rowToFilter = (rowData.outpoint && rowData.outpoint.txid_str ? rowData.outpoint.txid_str.toLowerCase() : ''); + break; + + case 'output': + rowToFilter = (rowData.outpoint && rowData.outpoint.output_index ? rowData.outpoint.output_index.toString() : '0'); + break; + + case 'address_type': + rowToFilter = (rowData.address_type && this.addressType[rowData.address_type] && this.addressType[rowData.address_type].name ? this.addressType[rowData.address_type].name.toLowerCase() : ''); + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'is_dust' || this.selFilterBy === 'address_type') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + onUTXOClick(selUTXO: UTXO) { const reorderedUTXOs = [ [{ key: 'txid', value: selUTXO.outpoint?.txid_str, title: 'Transaction ID', width: 100, type: DataTypeEnum.STRING }], @@ -122,22 +178,18 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { loadUTXOsTable(UTXOs: UTXO[]) { this.listUTXOs = new MatTableDataSource([...UTXOs]); - this.listUTXOs.filterPredicate = (utxo: UTXO, fltr: string) => { - const newUTXO = ((utxo.label ? utxo.label.toLowerCase() : '') + (utxo.outpoint?.txid_str ? utxo.outpoint.txid_str.toLowerCase() : '') + (utxo.outpoint?.output_index ? utxo.outpoint?.output_index : '') + - (utxo.outpoint?.txid_bytes ? utxo.outpoint?.txid_bytes.toLowerCase() : '') + (utxo.address ? utxo.address.toLowerCase() : '') + (utxo.address_type ? utxo.address_type.toLowerCase() : '') + - (utxo.amount_sat ? utxo.amount_sat : '') + (utxo.confirmations ? utxo.confirmations : '') + (utxo.pk_script ? utxo.pk_script.toLowerCase() : '')); - return newUTXO.includes(fltr); - }; this.listUTXOs.sortingDataAccessor = (data: any, sortHeaderId: string) => { switch (sortHeaderId) { + case 'is_dust': return +(data.amount_sat || 0) < this.dustAmount; case 'tx_id': return data.outpoint.txid_str.toLocaleLowerCase(); case 'output': return +data.outpoint.output_index; default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; this.listUTXOs.sort = this.sort; - this.listUTXOs.filterPredicate = (utxo: UTXO, fltr: string) => JSON.stringify(utxo).toLowerCase().includes(fltr); + this.listUTXOs.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.listUTXOs.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listUTXOs); } @@ -174,7 +226,7 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[0])). + pipe(takeUntil(this.unSubs[2])). subscribe((confirmRes) => { if (confirmRes) { this.dataService.leaseUTXO((utxo.outpoint?.txid_bytes || ''), (utxo.outpoint?.output_index || 0)); diff --git a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts index 5385e483..bfa1b690 100644 --- a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts +++ b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts @@ -45,7 +45,7 @@ export class BumpFeeComponent implements OnInit, OnDestroy { const channelPointArr = this.bumpFeeChannel.channel?.channel_point?.split(':') || []; if (this.bumpFeeChannel && this.bumpFeeChannel.channel) { this.bumpFeeChannel.channel.txid_str = channelPointArr[0] || (this.bumpFeeChannel.channel && this.bumpFeeChannel.channel.channel_point ? this.bumpFeeChannel.channel.channel_point : ''); - this.bumpFeeChannel.channel.output_index = +channelPointArr[1] || null; + this.bumpFeeChannel.channel.output_index = +channelPointArr[1] || null; } } diff --git a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html index 9530cf6c..ed95e53e 100644 --- a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html +++ b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html @@ -25,7 +25,7 @@ {{inputFormLabel}} -
+
(Local Bal: {{selChannel?.local_balance}}, Remaining: {{selChannel?.local_balance - ((inputFormGroup.controls.rebalanceAmount.value) ? inputFormGroup.controls.rebalanceAmount.value : 0)}}) @@ -65,7 +65,7 @@ {{feeFormGroup.controls.selFeeLimitType.value ? feeFormGroup.controls.selFeeLimitType.value.placeholder : feeLimitTypes[0].placeholder}} is required. {{feeFormGroup.controls.selFeeLimitType.value ? feeFormGroup.controls.selFeeLimitType.value.placeholder : feeLimitTypes[0].placeholder}} must be a positive number. -
+
diff --git a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts index fad031a7..7616862c 100644 --- a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts @@ -55,7 +55,15 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { statusFormGroup: FormGroup; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: ChannelRebalanceAlert, private logger: LoggerService, private store: Store, private actions: Actions, private formBuilder: FormBuilder, private decimalPipe: DecimalPipe, private commonService: CommonService) { } + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: ChannelRebalanceAlert, + private logger: LoggerService, + private store: Store, + private actions: Actions, + private formBuilder: FormBuilder, + private decimalPipe: DecimalPipe, + private commonService: CommonService) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); @@ -156,7 +164,9 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { case 1: if (this.inputFormGroup.controls.rebalanceAmount.value || this.inputFormGroup.controls.selRebalancePeer.value.remote_alias) { this.inputFormLabel = 'Rebalancing Amount: ' + - (this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value ? this.inputFormGroup.controls.rebalanceAmount.value : 0)) + ' Sats | Peer: ' + (this.inputFormGroup.controls.selRebalancePeer.value.remote_alias ? this.inputFormGroup.controls.selRebalancePeer.value.remote_alias : (this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0, 15) + '...')); + (this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value ? this.inputFormGroup.controls.rebalanceAmount.value : 0)) + + ' Sats | Peer: ' + (this.inputFormGroup.controls.selRebalancePeer.value.remote_alias ? this.inputFormGroup.controls.selRebalancePeer.value.remote_alias : + (this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0, 15) + '...')); } else { this.inputFormLabel = 'Amount to rebalance'; } @@ -166,7 +176,9 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { case 2: if (this.inputFormGroup.controls.rebalanceAmount.value || this.inputFormGroup.controls.selRebalancePeer.value.remote_alias) { this.inputFormLabel = 'Rebalancing Amount: ' + - (this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value ? this.inputFormGroup.controls.rebalanceAmount.value : 0)) + ' Sats | Peer: ' + (this.inputFormGroup.controls.selRebalancePeer.value.remote_alias ? this.inputFormGroup.controls.selRebalancePeer.value.remote_alias : (this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0, 15) + '...')); + (this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value ? this.inputFormGroup.controls.rebalanceAmount.value : 0)) + + ' Sats | Peer: ' + (this.inputFormGroup.controls.selRebalancePeer.value.remote_alias ? this.inputFormGroup.controls.selRebalancePeer.value.remote_alias : + (this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0, 15) + '...')); } else { this.inputFormLabel = 'Amount to rebalance'; } @@ -192,7 +204,10 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { } onRebalance(): boolean | void { - if (!this.inputFormGroup.controls.rebalanceAmount.value || this.inputFormGroup.controls.rebalanceAmount.value <= 0 || (this.selChannel.local_balance && this.inputFormGroup.controls.rebalanceAmount.value > +this.selChannel.local_balance) || !this.feeFormGroup.controls.feeLimit.value || this.feeFormGroup.controls.feeLimit.value < 0 || !this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey) { + if (!this.inputFormGroup.controls.rebalanceAmount.value || this.inputFormGroup.controls.rebalanceAmount.value <= 0 || + (this.selChannel.local_balance && this.inputFormGroup.controls.rebalanceAmount.value > +this.selChannel.local_balance) || + !this.feeFormGroup.controls.feeLimit.value || this.feeFormGroup.controls.feeLimit.value < 0 || + !this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey) { return true; } this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value); @@ -210,7 +225,7 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { } else { this.store.dispatch(saveNewInvoice({ payload: { - uiMessage: UI_MESSAGES.NO_SPINNER, memo: 'Local-Rebalance-' + this.inputFormGroup.controls.rebalanceAmount.value + '-Sats', invoiceValue: this.inputFormGroup.controls.rebalanceAmount.value, private: false, expiry: 3600, pageSize: PAGE_SIZE, openModal: false + uiMessage: UI_MESSAGES.NO_SPINNER, memo: 'Local-Rebalance-' + this.inputFormGroup.controls.rebalanceAmount.value + '-Sats', value: this.inputFormGroup.controls.rebalanceAmount.value, private: false, expiry: 3600, is_amp: false, pageSize: PAGE_SIZE, openModal: false } })); } @@ -224,20 +239,26 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { this.flgInvoiceGenerated = true; this.paymentRequest = payReq; if (this.feeFormGroup.controls.selFeeLimitType.value.id === 'percent' && !(+this.feeFormGroup.controls.feeLimit.value % 1 === 0)) { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, feeLimitType: 'fixed', feeLimit: Math.ceil((+this.feeFormGroup.controls.feeLimit.value * +this.inputFormGroup.controls.rebalanceAmount.value) / 100), allowSelfPayment: true, lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, + feeLimitType: 'fixed', feeLimit: Math.ceil((+this.feeFormGroup.controls.feeLimit.value * +this.inputFormGroup.controls.rebalanceAmount.value) / 100), + allowSelfPayment: true, lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); } else { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, feeLimitType: this.feeFormGroup.controls.selFeeLimitType.value.id, feeLimit: this.feeFormGroup.controls.feeLimit.value, allowSelfPayment: true, lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, + feeLimitType: this.feeFormGroup.controls.selFeeLimitType.value.id, feeLimit: this.feeFormGroup.controls.feeLimit.value, allowSelfPayment: true, + lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); } } filterActiveChannels() { return this.activeChannels?.filter((channel) => channel.remote_balance && channel.remote_balance >= this.inputFormGroup.controls.rebalanceAmount.value && - channel.chan_id !== this.selChannel.chan_id && ((channel.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value ? this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase() : '') === 0) || (channel.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value ? this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase() : '') === 0))); + channel.chan_id !== this.selChannel.chan_id && ((channel.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value ? this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase() : '') === 0) || + (channel.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value ? this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase() : '') === 0))); } onSelectedPeerChanged() { if (this.inputFormGroup.controls.selRebalancePeer.value && this.inputFormGroup.controls.selRebalancePeer.value.length > 0 && typeof this.inputFormGroup.controls.selRebalancePeer.value === 'string') { - const foundChannels = this.activeChannels?.filter((channel) => channel.remote_alias?.length === this.inputFormGroup.controls.selRebalancePeer.value.length && channel.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value ? this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase() : '') === 0); + const foundChannels = this.activeChannels?.filter((channel) => channel.remote_alias?.length === this.inputFormGroup.controls.selRebalancePeer.value.length && + channel.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value ? this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase() : '') === 0); if (foundChannels && foundChannels.length > 0) { this.inputFormGroup.controls.selRebalancePeer.setValue(foundChannels[0]); this.inputFormGroup.controls.selRebalancePeer.setErrors(null); diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html index 3b2da209..6ead37e9 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.html @@ -1,13 +1,20 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
@@ -15,11 +22,11 @@ Active HTLCs: {{channel?.pending_htlcs?.length}} - - + + {{htlc?.amount | number}} - + @@ -33,10 +40,47 @@ + + + + + + + + + + + + + + + - +
Amount (Sats)Forwarding Channel + {{' '}} + + + {{htlc?.forwarding_channel}} + + + + HTLC Index + + {{' '}} + + + {{htlc?.htlc_index | number}} + + + + Forwarding HTLC Index + + {{' '}} + + + {{htlc?.forwarding_htlc_index | number}} + + + Expiration Height - {{' '}} @@ -49,7 +93,7 @@ Hash Lock - {{' '}} @@ -61,13 +105,13 @@ -
+
Download CSV
-
@@ -88,7 +132,7 @@
diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss index 6510d9e9..1358bc55 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss @@ -1,14 +1,21 @@ -.mat-column-amount, .mat-column-expiration_height { - flex: 0 0 30%; - width: 30%; +.mat-column-amount, .mat-column-expiration_height, .mat-column-htlc_index, .mat-column-forwarding_htlc_index { + flex: 0 0 10%; + width: 10%; } -.mat-column-incoming, .mat-column-hash_lock { - flex: 0 0 25%; - width: 25%; +.mat-column-incoming, .mat-column-hash_lock, .mat-column-forwarding_channel { + flex: 0 0 15%; + width: 15%; text-overflow: ellipsis; } +.mat-column-amount { + .htlc-row-span:not(:first-of-type) { + padding-left: 3rem; + padding-right: 2rem; + } +} + .htlc-row-span { min-height: 4.2rem; place-content: center flex-start; @@ -16,14 +23,14 @@ } .mat-column-actions { - min-height: 4.8rem; - & .btn-htlc-expand { - width: 9rem; + min-width: 10rem; + width: 10rem; } & .btn-htlc-info { - margin-top: 0.5rem; + margin-top: 0.5rem; + min-width: 9rem; width: 9rem; } } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.spec.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.spec.ts index 6314bce8..20536a00 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.spec.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.spec.ts @@ -41,9 +41,9 @@ describe('ChannelActiveHTLCsTableComponent', () => { fixture.detectChanges(); }); - it('should create', () => { - expect(component).toBeTruthy(); - }); + // it('should create', () => { + // expect(component).toBeTruthy(); + // }); afterEach(() => { TestBed.resetTestingModule(); diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts index 62a7eef0..66afb185 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts @@ -8,14 +8,16 @@ import { MatTableDataSource } from '@angular/material/table'; import { ChannelInformationComponent } from '../../channel-information-modal/channel-information.component'; import { Channel, ChannelHTLC, ChannelsSummary, LightningBalance } from '../../../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; import { openAlert } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { channels } from '../../../../store/lnd.selector'; +import { channels, lndPageSettings } from '../../../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-channel-active-htlcs-table', @@ -29,11 +31,15 @@ export class ChannelActiveHTLCsTableComponent implements OnInit, AfterViewInit, @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; - public channels: any; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'active_HTLCs', recordsPerPage: PAGE_SIZE, sortBy: 'expiration_height', sortOrder: SortOrderEnum.DESCENDING }; + public channels: any = new MatTableDataSource([]); public channelsJSONArr: Channel[] = []; public displayedColumns: any[] = []; public htlcColumns = []; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -44,25 +50,30 @@ export class ChannelActiveHTLCsTableComponent implements OnInit, AfterViewInit, public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['amount', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['amount', 'incoming', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['amount', 'incoming', 'expiration_height', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['amount', 'incoming', 'expiration_height', 'hash_lock', 'actions']; - } } ngOnInit() { - this.store.select(channels).pipe(takeUntil(this.unSubs[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(channels).pipe(takeUntil(this.unSubs[1])). subscribe((channelsSelector: { channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = channelsSelector.apiCallStatus; @@ -114,6 +125,28 @@ export class ChannelActiveHTLCsTableComponent implements OnInit, AfterViewInit, this.channels.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = (rowData.remote_alias ? rowData.remote_alias.toLowerCase() : '') + + rowData.pending_htlcs?.map((htlc) => JSON.stringify(htlc) + (htlc.incoming ? 'yes' : 'no')); + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadHTLCsTable(channels: Channel[]) { this.channels = (channels) ? new MatTableDataSource([...channels]) : new MatTableDataSource([]); this.channels.sort = this.sort; @@ -139,12 +172,9 @@ export class ChannelActiveHTLCsTableComponent implements OnInit, AfterViewInit, return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; - this.channels.filterPredicate = (channel: Channel, fltr: string) => { - const newChannel = (channel.remote_alias ? channel.remote_alias.toLowerCase() : '') + - channel.pending_htlcs?.map((htlc) => JSON.stringify(htlc) + (htlc.incoming ? 'yes' : 'no')); - return newChannel.includes(fltr); - }; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html index 91a4b65f..c14f1352 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.html @@ -1,53 +1,117 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + - - + - - + - - @@ -59,7 +123,7 @@ - +
Close Type Close Type
info_outline - {{channelClosureType[channel.close_type].name}} + {{channelClosureType[channel.close_type].name}}
Peer {{channel.remote_alias}} Peer +
+ {{channel?.remote_alias}} +
+
Pubkey +
+ {{channel?.remote_pubkey}} +
+
Channel Point +
+ {{channel?.channel_point}} +
+
Channel ID +
+ {{channel?.chan_id}} +
+
Closing Tx Hash +
+ {{channel?.closing_tx_hash}} +
+
Chain Hash +
+ {{channel?.chain_hash}} +
+
Open Initiator{{channel.open_initiator | camelcaseWithReplace:'initiator_'}}Close Initiator{{channel.close_initiator | camelcaseWithReplace:'initiator_'}}Timelocked Balance (Sats){{channel.time_locked_balance | number}} + Capacity {{channel.capacity | number}} + Capacity (Sats){{channel.capacity | number}} Close Height {{channel.close_height | number}} + Close Height{{channel.close_height | number}} Settled Balance {{channel.settled_balance | number}} + Settled Balance (Sats){{channel.settled_balance | number}} -
+
+
Download CSV
-
+ + - +
diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.scss b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.scss index f680cc76..e69de29b 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.scss +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.scss @@ -1,11 +0,0 @@ -.mat-column-close_type { - flex: 0 0 16%; - min-width: 5rem; -} - -.mat-column-remote_alias { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts index 93f8717a..a773d80f 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts @@ -8,14 +8,16 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { ClosedChannel } from '../../../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CHANNEL_CLOSURE_TYPE, APICallStatusEnum } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CHANNEL_CLOSURE_TYPE, APICallStatusEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; import { openAlert } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { closedChannels } from '../../../../store/lnd.selector'; +import { closedChannels, lndPageSettings } from '../../../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-channel-closed-table', @@ -29,12 +31,16 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'closed', recordsPerPage: PAGE_SIZE, sortBy: 'close_type', sortOrder: SortOrderEnum.DESCENDING }; public channelClosureType = CHANNEL_CLOSURE_TYPE; public faHistory = faHistory; public displayedColumns: any[] = []; public closedChannelsData: ClosedChannel[] = []; - public closedChannels: any; - public flgSticky = false; + public closedChannels: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -43,24 +49,32 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unsub: Array> = [new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private commonService: CommonService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['remote_alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM || this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['close_type', 'remote_alias', 'settled_balance', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['close_type', 'remote_alias', 'capacity', 'close_height', 'settled_balance', 'actions']; - } } ngOnInit() { - this.store.select(closedChannels).pipe(takeUntil(this.unsub[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(closedChannels).pipe(takeUntil(this.unSubs[1])). subscribe((closedChannelsSelector: { closedChannels: ClosedChannel[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = closedChannelsSelector.apiCallStatus; @@ -85,6 +99,36 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes this.closedChannels.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.closedChannels.filterPredicate = (rowData: ClosedChannel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'close_type': + rowToFilter = (rowData.close_type && this.channelClosureType[rowData.close_type] && this.channelClosureType[rowData.close_type].name ? this.channelClosureType[rowData.close_type].name.toLowerCase() : ''); + break; + + case 'open_initiator': + case 'close_initiator': + rowToFilter = this.camelCaseWithReplace.transform((rowData[this.selFilterBy] || ''), 'initiator_').trim().toLowerCase(); + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'close_type' || this.selFilterBy === 'open_initiator' || this.selFilterBy === 'close_initiator') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + onClosedChannelClick(selChannel: ClosedChannel, event: any) { const reorderedChannel = [ [{ key: 'close_type', value: this.channelClosureType[selChannel.close_type].name, title: 'Close Type', width: 30, type: DataTypeEnum.STRING }, @@ -113,8 +157,9 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes this.closedChannels = new MatTableDataSource([...closedChannels]); this.closedChannels.sort = this.sort; this.closedChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.closedChannels.filterPredicate = (channel: ClosedChannel, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.closedChannels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.closedChannels.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.closedChannels); } @@ -126,7 +171,7 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes } ngOnDestroy() { - this.unsub.forEach((completeSub) => { + this.unSubs.forEach((completeSub) => { completeSub.next(null); completeSub.complete(); }); diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index ff7e5ad8..c0e03d22 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -1,48 +1,133 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
+ + + + + + + + - + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - - + - - - +
+ + + + + + Peer Peer +
+ {{channel.remote_alias}} +
+
Pubkey +
+ {{channel.remote_pubkey}} +
+
Channel Point +
+ {{channel.channel_point}} +
+
Channel ID -
- - - - - {{channel.remote_alias || channel.remote_pubkey}} +
+ {{channel.chan_id}}
Initiator{{channel.initiator ? 'Yes' : 'No'}}Static Remote Key{{channel.static_remote_key ? 'Yes' : 'No'}}Uptime ({{timeUnit}}) {{channel.uptime_str}} Lifetime ({{timeUnit}}){{channel.lifetime_str}} Commit Fee (Sats){{channel.commit_fee | number}} Commit Weight{{channel.commit_weight | number}} Fee/KW{{channel.fee_per_kw | number}} Updates{{channel.num_updates | number}} Unsettled Balance (Sats){{channel.unsettled_balance | number}} Capacity (Sats){{channel.capacity | number}} Local Reserve (Sats){{channel.local_chan_reserve_sat | number}} Remote Reserve (Sats){{channel.remote_chan_reserve_sat | number}} Sats Sent Sats Sent {{channel.total_satoshis_sent | number}} Sats Received Sats Received {{channel.total_satoshis_received | number}} Local Balance (Sats) Local Balance (Sats) {{channel.local_balance | number}} Remote Balance (Sats) Remote Balance (Sats) {{channel.remote_balance | number}} Balance Score + Balance Score
{{channel.balancedness || 0 | number}}
@@ -50,7 +135,7 @@
+
@@ -58,8 +143,8 @@ Download CSV
-
+ +
@@ -82,7 +167,7 @@
diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss index c9e87e45..99b7bfb8 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.scss @@ -1,55 +1,15 @@ -@import "../../../../../shared/theme/styles/mixins.scss"; - -.mat-column-remote_alias { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } +.mat-column-active { + max-width: 1.2rem; + width:1.2rem; } -.mat-column-balancedness { - flex: 0 0 20%; - width: 20%; - @include for_screensize(tab-land) { - flex: 0 0 35%; - width: 35%; - } - @include for_screensize(tab-port) { - flex: 0 0 25%; - width: 25%; - } +.mat-column-private { + max-width: 1.6rem; + width:1.6rem; } -.mat-column-uptime, .mat-column-local_balance, .mat-column-remote_balance, .mat-column-total_satoshis_sent, .mat-column-total_satoshis_received { - flex: 1 1 10%; - width: 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - @include for_screensize(tab-land) { - white-space: unset; - flex: 1 1 25%; - width: 25%; - } - @include for_screensize(tab-port) { - flex: 0 0 15%; - width: 15%; - } - @include for_screensize(phone) { - white-space: unset; - } -} - -.mat-column-actions { - min-height: 4.8rem; - & .bordered-box.table-actions-select { - flex: 0 0 100%; - @include for_screensize(tab-port) { - flex: 0 0 90%; - } - @include for_screensize(phone) { - flex: 0 0 80%; - } - } +.mat-column-balancedness { + padding-left: 2rem; + min-width: 15rem; + max-width: 30rem; } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts index 0e7a4104..e822e532 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts @@ -12,7 +12,7 @@ import { faEye, faEyeSlash } from '@fortawesome/free-solid-svg-icons'; import { ChannelInformationComponent } from '../../channel-information-modal/channel-information.component'; import { SelNodeChild } from '../../../../../shared/models/RTLconfig'; import { BlockchainBalance, Channel, ChannelsSummary, GetInfo, LightningBalance, Peer } from '../../../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, UserPersonaEnum, LoopTypeEnum, APICallStatusEnum, UI_MESSAGES } from '../../../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, UserPersonaEnum, LoopTypeEnum, APICallStatusEnum, UI_MESSAGES, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { LoopService } from '../../../../../shared/services/loop.service'; @@ -26,7 +26,9 @@ import { RTLEffects } from '../../../../../store/rtl.effects'; import { RTLState } from '../../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { channelLookup, fetchChannels, updateChannel } from '../../../../store/lnd.actions'; -import { blockchainBalance, channels, lndNodeInformation, lndNodeSettings, peers } from '../../../../store/lnd.selector'; +import { blockchainBalance, channels, lndNodeInformation, lndNodeSettings, lndPageSettings, peers } from '../../../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-channel-open-table', @@ -40,18 +42,22 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'open', recordsPerPage: PAGE_SIZE, sortBy: 'balancedness', sortOrder: SortOrderEnum.DESCENDING }; public timeUnit = 'mins:secs'; public userPersonaEnum = UserPersonaEnum; public selNode: SelNodeChild | null = {}; public totalBalance = 0; public displayedColumns: any[] = []; public channelsData: Channel[] = []; - public channels: any; + public channels: any = new MatTableDataSource([]); public myChanPolicy: any = {}; public information: GetInfo = {}; public numPeers = -1; public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -65,21 +71,17 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private lndEffects: LNDEffects, private commonService: CommonService, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe, private loopService: LoopService, private router: Router) { + constructor( + private logger: LoggerService, + private store: Store, + private lndEffects: LNDEffects, + private commonService: CommonService, + private rtlEffects: RTLEffects, + private decimalPipe: DecimalPipe, + private loopService: LoopService, + private router: Router, + private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['remote_alias', 'local_balance', 'remote_balance', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['remote_alias', 'local_balance', 'remote_balance', 'balancedness', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['remote_alias', 'local_balance', 'remote_balance', 'balancedness', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['remote_alias', 'uptime', 'total_satoshis_sent', 'total_satoshis_received', 'local_balance', 'remote_balance', 'balancedness', 'actions']; - } this.selFilter = this.router.getCurrentNavigation()?.extras?.state?.filter ? this.router.getCurrentNavigation()?.extras?.state?.filter : ''; } @@ -95,15 +97,35 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr this.versionsArr = this.information.version.split('.'); } }); - this.store.select(peers).pipe(takeUntil(this.unSubs[2])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('private'); + this.displayedColumns.unshift('active'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(peers).pipe(takeUntil(this.unSubs[3])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.numPeers = (peersSelector.peers && peersSelector.peers.length) ? peersSelector.peers.length : 0; }); - this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[3])). + this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[4])). subscribe((bcBalanceSelector: { blockchainBalance: BlockchainBalance, apiCallStatus: ApiCallStatusPayload }) => { this.totalBalance = bcBalanceSelector.blockchainBalance?.total_balance ? +bcBalanceSelector.blockchainBalance?.total_balance : 0; }); - this.store.select(channels).pipe(takeUntil(this.unSubs[4])). + this.store.select(channels).pipe(takeUntil(this.unSubs[5])). subscribe((channelsSelector: { channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = channelsSelector.apiCallStatus; @@ -189,7 +211,7 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[6])). subscribe((confirmRes) => { if (confirmRes) { const base_fee = confirmRes[0].inputValue; @@ -210,7 +232,9 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr this.myChanPolicy = { fee_base_msat: 0, fee_rate_milli_msat: 0, time_lock_delta: 0 }; } this.logger.info(this.myChanPolicy); - const titleMsg = 'Update fee policy for Channel: ' + ((!channelToUpdate.remote_alias && !channelToUpdate.chan_id) ? channelToUpdate.channel_point : (channelToUpdate.remote_alias && channelToUpdate.chan_id) ? channelToUpdate.remote_alias + ' (' + channelToUpdate.chan_id + ')' : channelToUpdate.remote_alias ? channelToUpdate.remote_alias : channelToUpdate.chan_id); + const titleMsg = 'Update fee policy for Channel: ' + ((!channelToUpdate.remote_alias && !channelToUpdate.chan_id) ? + channelToUpdate.channel_point : (channelToUpdate.remote_alias && channelToUpdate.chan_id) ? channelToUpdate.remote_alias + + ' (' + channelToUpdate.chan_id + ')' : channelToUpdate.remote_alias ? channelToUpdate.remote_alias : channelToUpdate.chan_id); const confirmationMsg = []; setTimeout(() => { this.store.dispatch(openConfirmation({ @@ -237,7 +261,7 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr }, 0); }); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[6])). + pipe(takeUntil(this.unSubs[7])). subscribe((confirmRes: boolean | any[]) => { if (confirmRes) { const updateChanPayload = { @@ -271,10 +295,6 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr })); } - applyFilter() { - this.channels.filter = this.selFilter.trim().toLowerCase(); - } - onChannelClick(selChannel: Channel, event: any) { this.store.dispatch(openAlert({ payload: { @@ -287,21 +307,51 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr })); } + applyFilter() { + this.channels.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.channels.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.active) ? 'active' : 'inactive') + (rowData.chan_id ? rowData.chan_id.toLowerCase() : '') + + (rowData.remote_pubkey ? rowData.remote_pubkey.toLowerCase() : '') + (rowData.remote_alias ? rowData.remote_alias.toLowerCase() : '') + + (rowData.capacity ? rowData.capacity : '') + (rowData.local_balance ? rowData.local_balance : '') + + (rowData.remote_balance ? rowData.remote_balance : '') + (rowData.total_satoshis_sent ? rowData.total_satoshis_sent : '') + + (rowData.total_satoshis_received ? rowData.total_satoshis_received : '') + (rowData.commit_fee ? rowData.commit_fee : '') + + (rowData.private ? 'private' : 'public'); + break; + + case 'active': + rowToFilter = rowData?.active ? 'active' : 'inactive'; + break; + + case 'private': + rowToFilter = rowData?.private ? 'private' : 'public'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'active' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadChannelsTable(mychannels: Channel[]) { - mychannels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? 1 : -1))); this.channels = new MatTableDataSource([...mychannels]); - this.channels.filterPredicate = (channel: Channel, fltr: string) => { - const newChannel = ((channel.active) ? 'active' : 'inactive') + (channel.chan_id ? channel.chan_id.toLowerCase() : '') + - (channel.remote_pubkey ? channel.remote_pubkey.toLowerCase() : '') + (channel.remote_alias ? channel.remote_alias.toLowerCase() : '') + - (channel.capacity ? channel.capacity : '') + (channel.local_balance ? channel.local_balance : '') + - (channel.remote_balance ? channel.remote_balance : '') + (channel.total_satoshis_sent ? channel.total_satoshis_sent : '') + - (channel.total_satoshis_received ? channel.total_satoshis_received : '') + (channel.commit_fee ? channel.commit_fee : '') + - (channel.private ? 'private' : 'public'); - return newChannel.includes(fltr); - }; this.channels.sort = this.sort; this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); + this.channels.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.channels.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.channels); } @@ -352,13 +402,14 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr } channels.forEach((channel) => { channel.uptime_str = channel.uptime ? (this.decimalPipe.transform(Math.floor(+channel.uptime / maxDivider), '2.0-0') + ':' + this.decimalPipe.transform(Math.round((+channel.uptime % maxDivider) / minDivider), '2.0-0')) : '---'; + channel.lifetime_str = channel.lifetime ? (this.decimalPipe.transform(Math.floor(+channel.lifetime / maxDivider), '2.0-0') + ':' + this.decimalPipe.transform(Math.round((+channel.lifetime % maxDivider) / minDivider), '2.0-0')) : '---'; }); return channels; } onLoopOut(selChannel: Channel) { this.loopService.getLoopOutTermsAndQuotes(this.targetConf). - pipe(takeUntil(this.unSubs[7])). + pipe(takeUntil(this.unSubs[8])). subscribe((response) => { this.store.dispatch(openAlert({ payload: { diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index cf5b4f83..6c6e2716 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -6,28 +6,74 @@ Pending Open ({{pendingOpenChannelsLength}}) -
+
- Peer - {{channel.channel.remote_alias}} + + + + + + + + + + + + + + + + + + + + + + - Commit Fee (Sats) - {{channel.commit_fee | number}} + + - Commit Weight - {{channel.commit_weight | number}} + + + + + + - Capacity (Sats) - {{channel.channel.capacity | number}} + + + + + + + + + + - Actions - + + - - + +
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel Point +
+ {{channel.channel.channel_point}} +
+
Initiator{{channel.channel.initiator | camelcaseWithReplace:'initiator_'}}Commitment Type{{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}}Confirmation Height{{channel.confirmation_height | number}} Commit Fee (Sats){{channel.commit_fee | number}} Commit Weight{{channel.commit_weight | number}}Fee/KW{{channel.fee_per_kw | number}} Capacity (Sats){{channel.channel.capacity | number}}Local Balance (Sats){{channel.channel.local_balance | number}}Remote Balance (Sats){{channel.channel.remote_balance | number}} +
Actions
+
@@ -35,7 +81,7 @@ Bump Fee
- +
@@ -45,39 +91,93 @@
-
+
Pending Force Closing ({{pendingForceClosingChannelsLength}}) -
+
+ + + + - Peer - {{channel.channel.remote_alias}} + + - - Recovered Balance (Sats) - {{channel.recovered_balance | number}} + + + + + + + + + + + + + + + - Limbo Balance (Sats) - {{channel.limbo_balance | number}} + + + + + + + + + + + + + + - Capacity (Sats) - {{channel.channel.capacity | number}} + + + + + + + + + + - Actions - - - + + - - + +
Closing Tx ID +
+ {{channel.closing_txid}} +
+
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel Point +
+ {{channel.channel.channel_point}} +
+
Initiator{{channel.channel.initiator | camelcaseWithReplace:'initiator_'}}Commitment Type{{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Limbo Balance (Sats){{channel.limbo_balance | number}}Maturity Height{{channel.maturity_height | number}}Blocks till Maturity{{channel.blocks_til_maturity | number}}Recovered Balance (Sats){{channel.recovered_balance | number}} Capacity (Sats){{channel.channel.capacity | number}}Local Balance (Sats){{channel.channel.local_balance | number}}Remote Balance (Sats){{channel.channel.remote_balance | number}} +
Actions
+
+ + @@ -87,8 +187,8 @@
@@ -97,36 +197,67 @@ Pending Closing ({{pendingClosingChannelsLength}}) -
- +
+
+ + + + - Peer - {{channel.channel.remote_alias}} + + - - - Local Balance (Sats) - {{channel.channel.local_balance | - number}} + + + - - - Remote Balance (Sats) - {{channel.channel.remote_balance | - number}} + + + + + + + + + + + - - Capacity (Sats) - {{channel.channel.capacity | - number}} + + + + + + + + + + - Actions - - - + + - - + +
Closing Tx ID +
+ {{channel.closing_txid}} +
+
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel Point +
+ {{channel.channel.channel_point}} +
+
Initiator{{channel.channel.initiator | camelcaseWithReplace:'initiator_'}}Commitment Type{{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Capacity (Sats){{channel.channel.capacity | number}}Local Balance (Sats){{channel.channel.local_balance | number}}Remote Balance (Sats){{channel.channel.remote_balance | number}} +
Actions
+
+ + @@ -136,8 +267,8 @@
@@ -146,42 +277,71 @@ Waiting Close ({{pendingWaitClosingChannelsLength}}) -
- +
+
+ + + + - Peer - {{channel.channel.remote_alias}} + + + + + + + + + + + + + + + + + + - - Limbo Balance (Sats) - {{channel.limbo_balance | number}} - + + + + + + - - Local Balance (Sats) - {{channel.channel.local_balance | - number}} + + - - Remote Balance (Sats) - {{channel.channel.remote_balance | - number}} - - - - Capacity (Sats) - {{channel.channel.capacity | - number}} + + - Actions - - - + + - - + +
Closing Tx ID +
+ {{channel.closing_txid}} +
+
Peer +
+ {{channel.channel.remote_alias}} +
+
Pubkey +
+ {{channel.channel.remote_node_pub}} +
+
Channel Point +
+ {{channel.channel.channel_point}} +
+
Initiator{{channel.channel.initiator | camelcaseWithReplace:'initiator_'}}Commitment Type{{channel.channel.commitment_type | camelcaseWithReplace:'commitment_type':'_'}} Limbo Balance (Sats){{channel.limbo_balance | number}}Capacity (Sats){{channel.channel.capacity | number}} Local Balance (Sats){{channel.channel.local_balance | number}} Remote Balance (Sats){{channel.channel.remote_balance | number}} +
Actions
+
+ + @@ -191,8 +351,8 @@
diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss index 18e37ff8..8d46ac13 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.scss @@ -1,10 +1,3 @@ -.mat-column-channel_point { - flex: 1 1 10%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - tr.mat-footer-row td.mat-footer-cell { border-bottom: none; } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index bac12b4e..fc524807 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -5,8 +5,8 @@ import { Store } from '@ngrx/store'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { Channel, GetInfo, PendingChannels, PendingOpenChannel } from '../../../../../shared/models/lndModels'; -import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, ScreenSizeEnum } from '../../../../../shared/services/consts-enums-functions'; +import { Channel, GetInfo, PendingChannels, PendingClosingChannel, PendingForceClosingChannel, PendingOpenChannel, WaitingCloseChannel } from '../../../../../shared/models/lndModels'; +import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, LND_DEFAULT_PAGE_SETTINGS, PAGE_SIZE, ScreenSizeEnum, SortOrderEnum } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../../../shared/models/RTLconfig'; import { LoggerService } from '../../../../../shared/services/logger.service'; @@ -15,7 +15,8 @@ import { BumpFeeComponent } from '../../bump-fee-modal/bump-fee.component'; import { openAlert } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { lndNodeInformation, lndNodeSettings, pendingChannels } from '../../../../store/lnd.selector'; +import { lndNodeInformation, lndNodeSettings, lndPageSettings, pendingChannels } from '../../../../store/lnd.selector'; +import { PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; @Component({ selector: 'rtl-channel-pending-table', @@ -25,53 +26,84 @@ import { lndNodeInformation, lndNodeSettings, pendingChannels } from '../../../. export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; + public PAGE_ID = 'peers_channels'; + public openTableSetting: TableSetting = { tableId: 'pending_open', recordsPerPage: PAGE_SIZE, sortBy: 'capacity', sortOrder: SortOrderEnum.DESCENDING }; + public forceClosingTableSetting: TableSetting = { tableId: 'pending_force_closing', recordsPerPage: PAGE_SIZE, sortBy: 'limbo_balance', sortOrder: SortOrderEnum.DESCENDING }; + public closingTableSetting: TableSetting = { tableId: 'pending_closing', recordsPerPage: PAGE_SIZE, sortBy: 'capacity', sortOrder: SortOrderEnum.DESCENDING }; + public waitingCloseTableSetting: TableSetting = { tableId: 'pending_waiting_close', recordsPerPage: PAGE_SIZE, sortBy: 'limbo_balance', sortOrder: SortOrderEnum.DESCENDING }; public selNode: SelNodeChild | null = {}; - public selectedFilter = ''; public information: GetInfo = {}; public pendingChannels: PendingChannels = {}; - public displayedOpenColumns = ['remote_alias', 'commit_fee', 'commit_weight', 'capacity', 'actions']; + public displayedOpenColumns: any[] = []; public pendingOpenChannelsLength = 0; - public pendingOpenChannels: any; - public displayedForceClosingColumns = ['remote_alias', 'recovered_balance', 'limbo_balance', 'capacity', 'actions']; + public pendingOpenChannels: any = new MatTableDataSource([]); + public displayedForceClosingColumns: any[] = []; public pendingForceClosingChannelsLength = 0; - public pendingForceClosingChannels: any; - public displayedClosingColumns = ['remote_alias', 'local_balance', 'remote_balance', 'capacity', 'actions']; + public pendingForceClosingChannels: any = new MatTableDataSource([]); + public displayedClosingColumns: any[] = []; public pendingClosingChannelsLength = 0; - public pendingClosingChannels: any; - public displayedWaitClosingColumns = ['remote_alias', 'limbo_balance', 'local_balance', 'remote_balance', 'actions']; + public pendingClosingChannels: any = new MatTableDataSource([]); + public displayedWaitClosingColumns: any[] = []; public pendingWaitClosingChannelsLength = 0; - public pendingWaitClosingChannels: any; + public pendingWaitClosingChannels: any = new MatTableDataSource([]); public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private commonService: CommonService) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.displayedOpenColumns = ['remote_alias', 'actions']; - this.displayedForceClosingColumns = ['remote_alias', 'actions']; - this.displayedClosingColumns = ['remote_alias', 'actions']; - this.displayedWaitClosingColumns = ['remote_alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM || this.screenSize === ScreenSizeEnum.MD) { - this.displayedOpenColumns = ['remote_alias', 'commit_fee', 'actions']; - this.displayedForceClosingColumns = ['remote_alias', 'limbo_balance', 'actions']; - this.displayedClosingColumns = ['remote_alias', 'remote_balance', 'actions']; - this.displayedWaitClosingColumns = ['remote_alias', 'limbo_balance', 'actions']; - } else { - this.displayedOpenColumns = ['remote_alias', 'commit_fee', 'commit_weight', 'capacity', 'actions']; - this.displayedForceClosingColumns = ['remote_alias', 'recovered_balance', 'limbo_balance', 'capacity', 'actions']; - this.displayedClosingColumns = ['remote_alias', 'local_balance', 'remote_balance', 'capacity', 'actions']; - this.displayedWaitClosingColumns = ['remote_alias', 'limbo_balance', 'local_balance', 'remote_balance', 'actions']; - } } ngOnInit() { this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(pendingChannels).pipe(takeUntil(this.unSubs[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.openTableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.openTableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.openTableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedOpenColumns = JSON.parse(JSON.stringify(this.openTableSetting.columnSelectionSM)); + } else { + this.displayedOpenColumns = JSON.parse(JSON.stringify(this.openTableSetting.columnSelection)); + } + this.displayedOpenColumns.push('actions'); + this.logger.info(this.displayedOpenColumns); + this.forceClosingTableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.forceClosingTableSetting.tableId) || + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.forceClosingTableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedForceClosingColumns = JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelectionSM)); + } else { + this.displayedForceClosingColumns = JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelection)); + } + this.displayedForceClosingColumns.push('actions'); + this.logger.info(this.displayedForceClosingColumns); + this.closingTableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.closingTableSetting.tableId) || + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.closingTableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedClosingColumns = JSON.parse(JSON.stringify(this.closingTableSetting.columnSelectionSM)); + } else { + this.displayedClosingColumns = JSON.parse(JSON.stringify(this.closingTableSetting.columnSelection)); + } + this.displayedClosingColumns.push('actions'); + this.logger.info(this.displayedClosingColumns); + this.waitingCloseTableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.waitingCloseTableSetting.tableId) || + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.waitingCloseTableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedWaitClosingColumns = JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelectionSM)); + } else { + this.displayedWaitClosingColumns = JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelection)); + } + this.displayedWaitClosingColumns.push('actions'); + this.logger.info(this.displayedWaitClosingColumns); + }); + this.store.select(pendingChannels).pipe(takeUntil(this.unSubs[3])). subscribe((pendingChannelsSelector: { pendingChannels: PendingChannels, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = pendingChannelsSelector.apiCallStatus; @@ -231,42 +263,38 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe } loadOpenChannelsTable(channels) { - channels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? -1 : 1))); this.pendingOpenChannelsLength = (channels.length) ? channels.length : 0; this.pendingOpenChannels = new MatTableDataSource([...channels]); this.pendingOpenChannels.sort = this.sort; this.pendingOpenChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.pendingOpenChannels.filterPredicate = (channel: any, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.pendingOpenChannels.sort?.sort({ id: this.openTableSetting.sortBy, start: this.openTableSetting.sortOrder, disableClear: true }); this.logger.info(this.pendingOpenChannels); } loadForceClosingChannelsTable(channels) { - channels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? -1 : 1))); this.pendingForceClosingChannelsLength = (channels.length) ? channels.length : 0; this.pendingForceClosingChannels = new MatTableDataSource([...channels]); this.pendingForceClosingChannels.sort = this.sort; this.pendingForceClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.pendingForceClosingChannels.filterPredicate = (channel: any, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.pendingForceClosingChannels.sort?.sort({ id: this.forceClosingTableSetting.sortBy, start: this.forceClosingTableSetting.sortOrder, disableClear: true }); this.logger.info(this.pendingForceClosingChannels); } loadClosingChannelsTable(channels) { - channels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? -1 : 1))); this.pendingClosingChannelsLength = (channels.length) ? channels.length : 0; this.pendingClosingChannels = new MatTableDataSource([...channels]); this.pendingClosingChannels.sort = this.sort; this.pendingClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.pendingClosingChannels.filterPredicate = (channel: any, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.pendingClosingChannels.sort?.sort({ id: this.closingTableSetting.sortBy, start: this.closingTableSetting.sortOrder, disableClear: true }); this.logger.info(this.pendingClosingChannels); } loadWaitClosingChannelsTable(channels) { - channels.sort((a, b) => ((a.active === b.active) ? 0 : ((b.active) ? -1 : 1))); this.pendingWaitClosingChannelsLength = (channels.length) ? channels.length : 0; this.pendingWaitClosingChannels = new MatTableDataSource([...channels]); this.pendingWaitClosingChannels.sort = this.sort; this.pendingWaitClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.pendingWaitClosingChannels.filterPredicate = (channel: any, fltr: string) => JSON.stringify(channel).toLowerCase().includes(fltr); + this.pendingWaitClosingChannels.sort?.sort({ id: this.waitingCloseTableSetting.sortBy, start: this.waitingCloseTableSetting.sortOrder, disableClear: true }); this.logger.info(this.pendingWaitClosingChannels); } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts index 6bafe5a4..b291cb99 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts @@ -65,7 +65,7 @@ export class ChannelsTablesComponent implements OnInit, OnDestroy { this.peers = peersSelector.peers; this.peers.forEach((peer) => { if (!peer.alias || peer.alias === '') { - peer.alias = peer.pub_key?.substring(0, 15) + '...'; + peer.alias = peer.pub_key?.substring(0, 20); } }); this.logger.info(peersSelector); diff --git a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts index 85a87609..ebefb190 100644 --- a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -13,6 +13,8 @@ import { APICallStatusEnum, LNDActions, TRANS_TYPES } from '../../../../shared/s import { RTLState } from '../../../../store/rtl.state'; import { saveNewChannel } from '../../../store/lnd.actions'; +import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { lndNodeSettings } from '../../../store/lnd.selector'; @Component({ selector: 'rtl-open-channel', @@ -23,6 +25,7 @@ export class OpenChannelComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public selectedPeer = new FormControl(); + public selNode: SelNodeChild | null = {}; public amount = new FormControl(); public faExclamationTriangle = faExclamationTriangle; public alertTitle: string; @@ -41,7 +44,7 @@ export class OpenChannelComponent implements OnInit, OnDestroy { public spendUnconfirmed = false; public transTypeValue = ''; public transTypes = TRANS_TYPES; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: OpenChannelAlert, private store: Store, private actions: Actions) { } @@ -50,16 +53,21 @@ export class OpenChannelComponent implements OnInit, OnDestroy { this.information = this.data.message.information; this.totalBalance = this.data.message.balance; this.peer = this.data.message.peer || null; - this.peers = this.data.message.peers || []; + this.peers = this.data.message.peers || []; } else { this.information = {}; this.totalBalance = 0; this.peer = null; - this.peers = []; + this.peers = []; } this.alertTitle = this.data.alertTitle || 'Alert'; + this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: SelNodeChild | null) => { + this.selNode = nodeSettings; + this.isPrivate = !!nodeSettings?.unannouncedChannels; + }); this.actions.pipe( - takeUntil(this.unSubs[0]), + takeUntil(this.unSubs[1]), filter((action) => action.type === LNDActions.UPDATE_API_CALL_STATUS_LND || action.type === LNDActions.FETCH_CHANNELS_LND)). subscribe((action: any) => { if (action.type === LNDActions.UPDATE_API_CALL_STATUS_LND && action.payload.status === APICallStatusEnum.ERROR && action.payload.action === 'SaveNewChannel') { @@ -77,7 +85,7 @@ export class OpenChannelComponent implements OnInit, OnDestroy { return ((x < y) ? -1 : ((x > y) ? 1 : 0)); }); this.filteredPeers = this.selectedPeer.valueChanges.pipe( - takeUntil(this.unSubs[1]), startWith(''), + takeUntil(this.unSubs[2]), startWith(''), map((peer) => (typeof peer === 'string' ? peer : peer.alias ? peer.alias : peer.pub_key)), map((alias) => (alias ? this.filterPeers(alias) : this.sortedPeers.slice())) ); @@ -114,7 +122,7 @@ export class OpenChannelComponent implements OnInit, OnDestroy { resetData() { this.selectedPeer.setValue(''); this.fundingAmount = null; - this.isPrivate = false; + this.isPrivate = !!this.selNode?.unannouncedChannels; this.spendUnconfirmed = false; this.selTransType = '0'; this.transTypeValue = ''; @@ -137,7 +145,9 @@ export class OpenChannelComponent implements OnInit, OnDestroy { onAdvancedPanelToggle(isClosed: boolean) { if (isClosed) { - this.advancedTitle = 'Advanced Options | ' + (this.selTransType === '1' ? 'Target Confirmation Blocks: ' : this.selTransType === '2' ? 'Fee (Sats/vByte): ' : 'Default') + ((this.selTransType === '1' || this.selTransType === '2') ? this.transTypeValue : '') + ' | Spend Unconfirmed Output: ' + (this.spendUnconfirmed ? 'Yes' : 'No'); + this.advancedTitle = 'Advanced Options | ' + (this.selTransType === '1' ? 'Target Confirmation Blocks: ' : this.selTransType === '2' ? + 'Fee (Sats/vByte): ' : 'Default') + ((this.selTransType === '1' || this.selTransType === '2') ? this.transTypeValue : '') + + ' | Spend Unconfirmed Output: ' + (this.spendUnconfirmed ? 'Yes' : 'No'); } else { this.advancedTitle = 'Advanced Options'; } diff --git a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html index 4bc8d611..054647a7 100644 --- a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.html @@ -11,7 +11,7 @@ - {{peerFormLabel}} + {{peerFormLabel}} Address is required. diff --git a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts index 052141d5..edf2dd67 100644 --- a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts +++ b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts @@ -16,6 +16,8 @@ import { APICallStatusEnum, LNDActions, TRANS_TYPES } from '../../../shared/serv import { LNDEffects } from '../../store/lnd.effects'; import { RTLState } from '../../../store/rtl.state'; import { fetchGraphNode, saveNewChannel, saveNewPeer } from '../../store/lnd.actions'; +import { lndNodeSettings } from '../../store/lnd.selector'; +import { SelNodeChild } from '../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-connect-peer', @@ -27,6 +29,7 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { @ViewChild('peersForm', { static: false }) form: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public selNode: SelNodeChild | null = {}; public peerAddress = ''; public totalBalance = 0; public transTypes = TRANS_TYPES; @@ -41,7 +44,7 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { peerFormGroup: FormGroup; channelFormGroup: FormGroup; statusFormGroup: FormGroup; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: OpenChannelAlert, private store: Store, private lndEffects: LNDEffects, private formBuilder: FormBuilder, private actions: Actions, private logger: LoggerService) { } @@ -53,14 +56,19 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { }); this.channelFormGroup = this.formBuilder.group({ fundingAmount: ['', [Validators.required, Validators.min(1), Validators.max(this.totalBalance)]], - isPrivate: [false], + isPrivate: [!!this.selNode?.unannouncedChannels], selTransType: [TRANS_TYPES[0].id], transTypeValue: [{ value: '', disabled: true }], spendUnconfirmed: [false], hiddenAmount: ['', [Validators.required]] }); this.statusFormGroup = this.formBuilder.group({}); - this.channelFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[0])).subscribe((transType) => { + this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: SelNodeChild | null) => { + this.selNode = nodeSettings; + this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.unannouncedChannels); + }); + this.channelFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((transType) => { if (transType === TRANS_TYPES[0].id) { this.channelFormGroup.controls.transTypeValue.setValue(''); this.channelFormGroup.controls.transTypeValue.disable(); @@ -73,7 +81,7 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { } }); this.actions.pipe( - takeUntil(this.unSubs[1]), + takeUntil(this.unSubs[2]), filter((action) => action.type === LNDActions.NEWLY_ADDED_PEER_LND || action.type === LNDActions.FETCH_PENDING_CHANNELS_LND || action.type === LNDActions.UPDATE_API_CALL_STATUS_LND)). subscribe((action: any) => { if (action.type === LNDActions.NEWLY_ADDED_PEER_LND) { @@ -124,7 +132,8 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { } onOpenChannel(): boolean | void { - if (!this.channelFormGroup.controls.fundingAmount.value || ((this.totalBalance - this.channelFormGroup.controls.fundingAmount.value) < 0) || (this.channelFormGroup.controls.selTransType.value === '1' && !this.channelFormGroup.controls.transTypeValue.value) || (this.channelFormGroup.controls.selTransType.value === '2' && !this.channelFormGroup.controls.transTypeValue.value)) { + if (!this.channelFormGroup.controls.fundingAmount.value || ((this.totalBalance - this.channelFormGroup.controls.fundingAmount.value) < 0) || + (this.channelFormGroup.controls.selTransType.value === '1' && !this.channelFormGroup.controls.transTypeValue.value) || (this.channelFormGroup.controls.selTransType.value === '2' && !this.channelFormGroup.controls.transTypeValue.value)) { return true; } this.channelConnectionError = ''; diff --git a/src/app/lnd/peers-channels/connections.component.ts b/src/app/lnd/peers-channels/connections.component.ts index 43a04482..db8b1bf1 100644 --- a/src/app/lnd/peers-channels/connections.component.ts +++ b/src/app/lnd/peers-channels/connections.component.ts @@ -22,7 +22,7 @@ export class ConnectionsComponent implements OnInit, OnDestroy { public selNode: SelNodeChild | null = {}; public activePeers = 0; - public activeChannels: number = 0; + public activeChannels = 0; public faUsers = faUsers; public faChartPie = faChartPie; public balances = [{ title: 'Total Balance', dataValue: 0 }, { title: 'Confirmed', dataValue: 0 }, { title: 'Unconfirmed', dataValue: 0 }]; @@ -53,7 +53,7 @@ export class ConnectionsComponent implements OnInit, OnDestroy { }); this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[4])). subscribe((bcBalanceSelector: { blockchainBalance: BlockchainBalance, apiCallStatus: ApiCallStatusPayload }) => { - this.balances = [{ title: 'Total Balance', dataValue: bcBalanceSelector.blockchainBalance.total_balance || 0 }, { title: 'Confirmed', dataValue: (bcBalanceSelector.blockchainBalance.confirmed_balance || 0)}, { title: 'Unconfirmed', dataValue: (bcBalanceSelector.blockchainBalance.unconfirmed_balance || 0)}]; + this.balances = [{ title: 'Total Balance', dataValue: bcBalanceSelector.blockchainBalance.total_balance || 0 }, { title: 'Confirmed', dataValue: (bcBalanceSelector.blockchainBalance.confirmed_balance || 0) }, { title: 'Unconfirmed', dataValue: (bcBalanceSelector.blockchainBalance.unconfirmed_balance || 0) }]; this.logger.info(bcBalanceSelector); }); } diff --git a/src/app/lnd/peers-channels/peers/peers.component.html b/src/app/lnd/peers-channels/peers/peers.component.html index 36ad5da0..74c0ba68 100644 --- a/src/app/lnd/peers-channels/peers/peers.component.html +++ b/src/app/lnd/peers-channels/peers/peers.component.html @@ -8,47 +8,84 @@ Connected Peers
- - - +
+ + + {{getLabel(column)}} + + + + + +
-
+
- +
- - + + - - + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + - - + - - - +
Alias {{peer?.alias}} Alias +
+ {{peer?.alias}} +
+
Public Key {{peer?.pub_key}} Public Key +
+ {{peer?.pub_key}} +
+
Address +
+ {{peer?.address}} +
+
Sync Type{{peer?.sync_type | camelcaseWithReplace:'sync':'_'}}Inbound{{peer?.inbound ? 'Yes' : 'No'}}Bytes Sent{{peer?.bytes_sent | number}} Bytes Received{{peer?.bytes_recv | number}} - Sats Sent {{peer?.sat_sent | number}} Sats Sent{{peer?.sat_sent | number}} - Sats Received {{peer?.sat_recv | number}} Sats Received{{peer?.sat_recv | number}} Ping {{peer?.ping_time | number}} + Ping Time (µs){{peer?.ping_time | number}} -
+
+
Download CSV
-
-
+ +
+
View Info @@ -66,7 +103,7 @@
diff --git a/src/app/lnd/peers-channels/peers/peers.component.scss b/src/app/lnd/peers-channels/peers/peers.component.scss index 1dd36251..e69de29b 100644 --- a/src/app/lnd/peers-channels/peers/peers.component.scss +++ b/src/app/lnd/peers-channels/peers/peers.component.scss @@ -1,24 +0,0 @@ -.mat-column-alias { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-pub_key { - flex: 1 1 35%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - padding-left: 2rem; -} - -.mat-column-actions { - min-height: 4.8rem; - flex: 1 1 10%; -} - -.mat-column-sat_sent, .mat-column-sat_recv, .mat-column-ping_time { - flex: 1 1 13%; - width: 13%; -} diff --git a/src/app/lnd/peers-channels/peers/peers.component.ts b/src/app/lnd/peers-channels/peers/peers.component.ts index 3779b2e1..a40463bf 100644 --- a/src/app/lnd/peers-channels/peers/peers.component.ts +++ b/src/app/lnd/peers-channels/peers/peers.component.ts @@ -8,7 +8,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Peer, GetInfo, BlockchainBalance } from '../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; @@ -19,7 +19,9 @@ import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { detachPeer } from '../../store/lnd.actions'; -import { blockchainBalance, lndNodeInformation, peers } from '../../store/lnd.selector'; +import { blockchainBalance, lndNodeInformation, lndPageSettings, peers } from '../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-peers', @@ -33,13 +35,17 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'peers_channels'; + public tableSetting: TableSetting = { tableId: 'peers', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING }; public availableBalance = 0; public faUsers = faUsers; public displayedColumns: any[] = []; public peersData: Peer[] = []; - public peers: any; + public peers: any = new MatTableDataSource([]); public information: GetInfo = {}; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -48,32 +54,37 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy { public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { + constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'sat_sent', 'sat_recv', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['alias', 'sat_sent', 'sat_recv', 'ping_time', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['alias', 'pub_key', 'sat_sent', 'sat_recv', 'ping_time', 'actions']; - } } ngOnInit() { this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[0])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[1])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[1])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[2])). subscribe((bcBalanceSelector: { blockchainBalance: BlockchainBalance, apiCallStatus: ApiCallStatusPayload }) => { this.availableBalance = bcBalanceSelector.blockchainBalance.total_balance || 0; }); - this.store.select(peers).pipe(takeUntil(this.unSubs[0])). + this.store.select(peers).pipe(takeUntil(this.unSubs[3])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = peersSelector.apiCallStatus; @@ -95,10 +106,11 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy { } onPeerClick(selPeer: Peer, event: any) { + // const encodedStr = encodeURIComponent('µ'); const reorderedPeer = [ [{ key: 'pub_key', value: selPeer.pub_key, title: 'Public Key', width: 100 }], [{ key: 'address', value: selPeer.address, title: 'Address', width: 100 }], - [{ key: 'alias', value: selPeer.alias, title: 'Alias', width: 40 }, { key: 'inbound', value: selPeer.inbound ? 'True' : 'False', title: 'Inbound', width: 30 }, { key: 'ping_time', value: selPeer.ping_time, title: 'Ping Time', width: 30, type: DataTypeEnum.NUMBER }], + [{ key: 'alias', value: selPeer.alias, title: 'Alias', width: 40 }, { key: 'inbound', value: selPeer.inbound ? 'True' : 'False', title: 'Inbound', width: 30 }, { key: 'ping_time', value: selPeer.ping_time, title: 'Ping Time (\u00B5s)', width: 30, type: DataTypeEnum.NUMBER }], [{ key: 'sat_sent', value: selPeer.sat_sent, title: 'Satoshis Sent', width: 50, type: DataTypeEnum.NUMBER }, { key: 'sat_recv', value: selPeer.sat_recv, title: 'Satoshis Received', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'bytes_sent', value: selPeer.bytes_sent, title: 'Bytes Sent', width: 50, type: DataTypeEnum.NUMBER }, { key: 'bytes_recv', value: selPeer.bytes_recv, title: 'Bytes Received', width: 50, type: DataTypeEnum.NUMBER }] ]; @@ -157,7 +169,7 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy { } })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[4])). subscribe((confirmRes) => { if (confirmRes) { this.store.dispatch(detachPeer({ payload: { pubkey: peerToDetach.pub_key! } })); @@ -169,12 +181,38 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy { this.peers.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.peers.filterPredicate = (rowData: Peer, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'sync_type': + rowToFilter = this.camelCaseWithReplace.transform((rowData.sync_type || ''), 'sync', '_').trim().toLowerCase(); + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'sync_type' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadPeersTable(peers: Peer[]) { this.peers = peers ? new MatTableDataSource([...peers]) : new MatTableDataSource([]); this.peers.sort = this.sort; this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.peers.filterPredicate = (peer: Peer, fltr: string) => JSON.stringify(peer).toLowerCase().includes(fltr); + this.peers.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.peers.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); } diff --git a/src/app/lnd/reports/routing/routing-report.component.html b/src/app/lnd/reports/routing/routing-report.component.html index 127f08a9..77eba0a9 100644 --- a/src/app/lnd/reports/routing/routing-report.component.html +++ b/src/app/lnd/reports/routing/routing-report.component.html @@ -41,7 +41,7 @@
- +
diff --git a/src/app/lnd/reports/transactions/transactions-report.component.html b/src/app/lnd/reports/transactions/transactions-report.component.html index c5ca512e..41dfd5b7 100644 --- a/src/app/lnd/reports/transactions/transactions-report.component.html +++ b/src/app/lnd/reports/transactions/transactions-report.component.html @@ -41,7 +41,7 @@
- +
diff --git a/src/app/lnd/reports/transactions/transactions-report.component.ts b/src/app/lnd/reports/transactions/transactions-report.component.ts index 6e75f963..6f61c21c 100644 --- a/src/app/lnd/reports/transactions/transactions-report.component.ts +++ b/src/app/lnd/reports/transactions/transactions-report.component.ts @@ -6,13 +6,15 @@ import { Store } from '@ngrx/store'; import { Payment, Invoice, ListInvoices, ListPayments } from '../../../shared/models/lndModels'; import { CommonService } from '../../../shared/services/common.service'; import { LoggerService } from '../../../shared/services/logger.service'; -import { APICallStatusEnum, MONTHS, ScreenSizeEnum, SCROLL_RANGES } from '../../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, LND_DEFAULT_PAGE_SETTINGS, MONTHS, PAGE_SIZE, ScreenSizeEnum, SCROLL_RANGES, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { fadeIn } from '../../../shared/animation/opacity-animation'; import { RTLState } from '../../../store/rtl.state'; import { allLightningTransactions } from '../../store/lnd.selector'; import { getAllLightningTransactions } from '../../store/lnd.actions'; +import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { clnPageSettings } from '../../../cln/store/cln.selector'; @Component({ selector: 'rtl-transactions-report', @@ -27,6 +29,10 @@ export class TransactionsReportComponent implements OnInit, OnDestroy { public secondsInADay = 24 * 60 * 60; public payments: Payment[] = []; public invoices: Invoice[] = []; + public colWidth = '20rem'; + public PAGE_ID = 'reports'; + public tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING }; + public displayedColumns: any[] = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; public transactionsReportSummary = { paymentsSelectedPeriod: 0, invoicesSelectedPeriod: 0, amountPaidSelectedPeriod: 0, amountReceivedSelectedPeriod: 0 }; public transactionFilterValue = ''; public today = new Date(Date.now()); @@ -45,14 +51,27 @@ export class TransactionsReportComponent implements OnInit, OnDestroy { public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); this.showYAxisLabel = !(this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM); - this.store.select(allLightningTransactions).pipe(takeUntil(this.unSubs[0])). + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + + this.store.select(allLightningTransactions).pipe(takeUntil(this.unSubs[1])). subscribe((allLTSelector: { allLightningTransactions: { listPaymentsAll: ListPayments, listInvoicesAll: ListInvoices }, apiCallStatus: ApiCallStatusPayload }) => { if (allLTSelector.apiCallStatus.status === APICallStatusEnum.UN_INITIATED) { this.store.dispatch(getAllLightningTransactions()); @@ -70,7 +89,7 @@ export class TransactionsReportComponent implements OnInit, OnDestroy { } this.logger.info(allLTSelector); }); - this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[1])).subscribe((CONTAINER_SIZE) => { + this.commonService.containerSizeUpdated.pipe(takeUntil(this.unSubs[2])).subscribe((CONTAINER_SIZE) => { switch (this.screenSize) { case ScreenSizeEnum.MD: this.screenPaddingX = CONTAINER_SIZE.width / 10; diff --git a/src/app/lnd/routing/forwarding-history/forwarding-history.component.html b/src/app/lnd/routing/forwarding-history/forwarding-history.component.html index 842a4292..0ed72fd6 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.html @@ -2,9 +2,16 @@
{{errorMessage}}
- - - +
+ + + {{getLabel(column)}} + + + + + +
@@ -14,12 +21,36 @@
{{(fhEvent.timestamp * 1000) | date:'dd/MMM/y HH:mm'}} Inbound Alias +
+ {{fhEvent?.alias_in}} +
+
Inbound Channel{{fhEvent.alias_in}} +
+ {{fhEvent?.chan_id_in}} +
+
Outbound Alias +
+ {{fhEvent?.alias_out}} +
+
Outbound Channel{{fhEvent.alias_out}} +
+ {{fhEvent?.chan_id_out}} +
+
Inbound Amount (Sats){{fhEvent.fee_msat | number}} -
+
+
Download CSV
-
- + + +
diff --git a/src/app/lnd/routing/forwarding-history/forwarding-history.component.scss b/src/app/lnd/routing/forwarding-history/forwarding-history.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.scss +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts b/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts index c378757f..35c07c3a 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts @@ -8,14 +8,16 @@ import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { ForwardingEvent, SwitchRes } from '../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum } from '../../../shared/services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, APICallStatusEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { openAlert } from '../../../store/rtl.actions'; import { RTLState } from '../../../store/rtl.state'; -import { forwardingHistory } from '../../store/lnd.selector'; +import { forwardingHistory, lndPageSettings } from '../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-forwarding-history', @@ -29,12 +31,17 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + @Input() pageId = 'routing'; + @Input() tableId = 'forwarding_history'; @Input() eventsData = []; - @Input() filterValue = ''; + @Input() selFilter = ''; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public tableSetting: TableSetting = { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING }; public forwardingHistoryData: ForwardingEvent[] = []; public displayedColumns: any[] = []; - public forwardingHistoryEvents: any; - public flgSticky = false; + public forwardingHistoryEvents: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -44,22 +51,31 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'fee_msat', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM || this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['timestamp', 'amt_in', 'amt_out', 'fee_msat', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['timestamp', 'alias_in', 'alias_out', 'amt_in', 'amt_out', 'fee_msat', 'actions']; - } } ngOnInit() { - this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting.tableId = this.tableId; + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.pageId)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((fhSelector: { forwardingHistory: SwitchRes, apiCallStatus: ApiCallStatusPayload }) => { if (this.eventsData.length <= 0) { this.errorMessage = ''; @@ -90,7 +106,8 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan this.loadForwardingEventsTable(this.forwardingHistoryData); } } - if (changes.filterValue && !changes.filterValue.firstChange) { + if (changes.selFilter && !changes.selFilter.firstChange) { + this.selFilterBy = 'all'; this.applyFilter(); } } @@ -117,15 +134,45 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan })); } + applyFilter() { + if (this.forwardingHistoryEvents) { + this.forwardingHistoryEvents.filter = this.selFilter.trim().toLowerCase(); + } + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.forwardingHistoryEvents.filterPredicate = (rowData: ForwardingEvent, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'timestamp': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadForwardingEventsTable(forwardingEvents: ForwardingEvent[]) { this.forwardingHistoryEvents = forwardingEvents ? new MatTableDataSource([...forwardingEvents]) : new MatTableDataSource([]); this.forwardingHistoryEvents.sort = this.sort; this.forwardingHistoryEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.forwardingHistoryEvents.filterPredicate = (rowData: ForwardingEvent, fltr: string) => { - const newRowData = ((rowData.timestamp) ? this.datePipe.transform(new Date(rowData.timestamp * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.forwardingHistoryEvents.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.forwardingHistoryEvents.paginator = this.paginator; + this.setFilterPredicate(); + this.applyFilter(); this.logger.info(this.forwardingHistoryEvents); } @@ -135,12 +182,6 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan } } - applyFilter() { - if (this.forwardingHistoryEvents) { - this.forwardingHistoryEvents.filter = this.filterValue.trim().toLowerCase(); - } - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html index 31839e49..f7944faf 100644 --- a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html +++ b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.html @@ -3,20 +3,91 @@
Non Routing Peers
- - - +
+ + + {{getLabel(column)}} + + + + + +
- +
- + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -37,20 +108,22 @@ - - + - - + +
Channel ID{{nonRPeer.chan_id}} +
+ {{nonRPeer?.chan_id}} +
+
Peer Alias{{nonRPeer.remote_alias}} +
+ {{nonRPeer?.remote_alias}} +
+
Peer Pubkey +
+ {{nonRPeer?.remote_pubkey}} +
+
Channel Point +
+ {{nonRPeer?.channel_point}} +
+
Uptime ({{timeUnit}}){{nonRPeer.uptime_str}} Lifetime ({{timeUnit}}){{nonRPeer.lifetime_str}} Commit Fee (Sats){{nonRPeer.commit_fee | number}} Commit Weight{{nonRPeer.commit_weight | number}} Fee/KW{{nonRPeer.fee_per_kw | number}} Updates{{nonRPeer.num_updates | number}} Unsettled Balance (Sats){{nonRPeer.unsettled_balance | number}} Capacity (Sats){{nonRPeer.capacity | number}} Local Reserve (Sats){{nonRPeer.local_chan_reserve_sat | number}} Remote Reserve (Sats){{nonRPeer.remote_chan_reserve_sat | number}} Sats Sent{{nonRPeer.remote_balance | number}} Actions + +
Actions
+
-

All peers are routing.

-

Getting non routing peers...

-

{{errorMessage}}

+

All peers are routing.

+

Getting non routing peers...

+

{{errorMessage}}

diff --git a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.scss b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.scss index 5db2c5aa..e69de29b 100644 --- a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.scss +++ b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.scss @@ -1,10 +0,0 @@ -.mat-column-chan_id, .mat-column-alias { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts index 7c1b4ca4..364543c8 100644 --- a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts +++ b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts @@ -1,4 +1,5 @@ import { Component, OnInit, ViewChild, OnDestroy, AfterViewInit } from '@angular/core'; +import { DecimalPipe } from '@angular/common'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; @@ -7,13 +8,15 @@ import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { ForwardingEvent, SwitchRes, Channel, ChannelsSummary, LightningBalance } from '../../../shared/models/lndModels'; -import { APICallStatusEnum, getPaginatorLabel, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, getPaginatorLabel, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; -import { channels, forwardingHistory } from '../../store/lnd.selector'; +import { channels, forwardingHistory, lndPageSettings } from '../../store/lnd.selector'; import { ActivatedRoute, Router } from '@angular/router'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-non-routing-peers', @@ -27,40 +30,50 @@ export class NonRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'routing'; + public tableSetting: TableSetting = { tableId: 'non_routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'remote_alias', sortOrder: SortOrderEnum.DESCENDING }; public routingPeersData: any[] = []; public displayedColumns: any[] = []; - public NonRoutingPeers: any = new MatTableDataSource([]); - public flgSticky = false; + public nonRoutingPeers: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; - public filter = ''; + public selFilter = ''; public activeChannels: Channel[] = []; + public timeUnit = 'mins:secs'; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private router: Router, private activatedRoute: ActivatedRoute) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private router: Router, private activatedRoute: ActivatedRoute, private decimalPipe: DecimalPipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['remote_alias', 'local_balance', 'remote_balance', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['remote_alias', 'local_balance', 'remote_balance', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['chan_id', 'remote_alias', 'local_balance', 'remote_balance', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['chan_id', 'remote_alias', 'total_satoshis_received', 'total_satoshis_sent', 'local_balance', 'remote_balance', 'actions']; - } } ngOnInit() { - this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((fhSelector: { forwardingHistory: SwitchRes, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = fhSelector.apiCallStatus; @@ -72,13 +85,13 @@ export class NonRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro } else { this.routingPeersData = []; } - if (this.routingPeersData.length > 0 && this.sort && this.paginator) { + if (this.routingPeersData.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadNonRoutingPeersTable(this.routingPeersData); } this.logger.info(fhSelector.apiCallStatus); this.logger.info(fhSelector.forwardingHistory); }); - this.store.select(channels).pipe(takeUntil(this.unSubs[1])). + this.store.select(channels).pipe(takeUntil(this.unSubs[2])). subscribe((channelsSelector: { channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = channelsSelector.apiCallStatus; @@ -96,6 +109,57 @@ export class NonRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro } } + calculateUptime(channels: Channel[]) { + const minutesDivider = 60; + const hoursDivider = minutesDivider * 60; + const daysDivider = hoursDivider * 24; + const yearsDivider = daysDivider * 365; + let maxDivider = minutesDivider; + let minDivider = 1; + let max_uptime = 0; + channels.forEach((channel) => { + if (channel.uptime && +channel.uptime > max_uptime) { + max_uptime = +channel.uptime; + } + }); + switch (true) { + case max_uptime < hoursDivider: + this.timeUnit = 'Mins:Secs'; + maxDivider = minutesDivider; + minDivider = 1; + break; + + case max_uptime >= hoursDivider && max_uptime < daysDivider: + this.timeUnit = 'Hrs:Mins'; + maxDivider = hoursDivider; + minDivider = minutesDivider; + break; + + case max_uptime >= daysDivider && max_uptime < yearsDivider: + this.timeUnit = 'Days:Hrs'; + maxDivider = daysDivider; + minDivider = hoursDivider; + break; + + case max_uptime > yearsDivider: + this.timeUnit = 'Yrs:Days'; + maxDivider = yearsDivider; + minDivider = daysDivider; + break; + + default: + this.timeUnit = 'Mins:Secs'; + maxDivider = minutesDivider; + minDivider = 1; + break; + } + channels.forEach((channel) => { + channel.uptime_str = channel.uptime ? (this.decimalPipe.transform(Math.floor(+channel.uptime / maxDivider), '2.0-0') + ':' + this.decimalPipe.transform(Math.round((+channel.uptime % maxDivider) / minDivider), '2.0-0')) : '---'; + channel.lifetime_str = channel.lifetime ? (this.decimalPipe.transform(Math.floor(+channel.lifetime / maxDivider), '2.0-0') + ':' + this.decimalPipe.transform(Math.round((+channel.lifetime % maxDivider) / minDivider), '2.0-0')) : '---'; + }); + return channels; + } + onManagePeer(selNonRoutingChannel: Channel) { this.router.navigate(['../../', 'connections', 'channels', 'open'], { relativeTo: this.activatedRoute, state: { filter: selNonRoutingChannel.chan_id } }); } @@ -125,25 +189,48 @@ export class NonRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro // return this.commonService.sortDescByKey(results, 'alias'); // } + applyFilter() { + this.nonRoutingPeers.filter = this.selFilter.toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.nonRoutingPeers.filterPredicate = (rowData: Channel, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadNonRoutingPeersTable(forwardingEvents: ForwardingEvent[]) { if (forwardingEvents.length > 0) { // const grpdRoutingPeers = this.groupRoutingPeers(forwardingEvents); - const filteredNonRoutingChannels = this.activeChannels?.filter((actvChnl) => forwardingEvents.findIndex((evnt) => (evnt.chan_id_in === actvChnl.chan_id || evnt.chan_id_out === actvChnl.chan_id)) < 0); - this.NonRoutingPeers = new MatTableDataSource(filteredNonRoutingChannels); - this.NonRoutingPeers.sort = this.sort; - this.NonRoutingPeers.filterPredicate = (nrchnl: Channel, fltr: string) => JSON.stringify(nrchnl).toLowerCase().includes(fltr); - this.NonRoutingPeers.paginator = this.paginator; - this.logger.info(this.NonRoutingPeers); + const filteredNonRoutingChannels = this.calculateUptime(this.activeChannels?.filter((actvChnl) => forwardingEvents.findIndex((evnt) => (evnt.chan_id_in === actvChnl.chan_id || evnt.chan_id_out === actvChnl.chan_id)) < 0)); + this.nonRoutingPeers = new MatTableDataSource(filteredNonRoutingChannels); + this.nonRoutingPeers.sort = this.sort; + this.nonRoutingPeers.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.nonRoutingPeers.paginator = this.paginator; + this.setFilterPredicate(); + this.applyFilter(); + this.logger.info(this.nonRoutingPeers); } else { - this.NonRoutingPeers = new MatTableDataSource([]); + this.nonRoutingPeers = new MatTableDataSource([]); } this.applyFilter(); } - applyFilter() { - this.NonRoutingPeers.filter = this.filter.toLowerCase(); - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/lnd/routing/routing-peers/routing-peers.component.html b/src/app/lnd/routing/routing-peers/routing-peers.component.html index c773445d..08c50da9 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.html +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.html @@ -1,23 +1,38 @@
{{errorMessage}}
-
+
Incoming
- - - +
+ +
- +
- + - + @@ -29,20 +44,22 @@ - - + - - + +
Channel ID{{rPeer.chan_id}} +
+ {{rPeer?.chan_id}} +
+
Peer Alias{{rPeer.alias}} +
+ {{rPeer?.alias}} +
+
Events{{rPeer.total_amount | number}} Actions - + +
Actions
+
+ -

No incoming routing peer available.

-

Getting incoming routing peers...

-

{{errorMessage}}

+

No incoming routing peer available.

+

Getting incoming routing peers...

+

{{errorMessage}}

@@ -51,20 +68,35 @@
Outgoing
- - - +
+ +
- +
- + - + @@ -75,21 +107,15 @@ - - - - - - + +
Channel ID{{rPeer.chan_id}} +
+ {{rPeer?.chan_id}} +
+
Peer Alias{{rPeer.alias}} +
+ {{rPeer?.alias}} +
+
EventsTotal Amount (Sats) {{rPeer.total_amount | number}} Actions - - -

No outgoing routing peer available.

-

Getting outgoing routing peers...

-

{{errorMessage}}

+

No outgoing routing peer available.

+

Getting outgoing routing peers...

+

{{errorMessage}}

diff --git a/src/app/lnd/routing/routing-peers/routing-peers.component.scss b/src/app/lnd/routing/routing-peers/routing-peers.component.scss index 891f65b2..e69de29b 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.scss +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.scss @@ -1,6 +0,0 @@ -.mat-column-chan_id, .mat-column-alias { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/routing/routing-peers/routing-peers.component.ts b/src/app/lnd/routing/routing-peers/routing-peers.component.ts index 6a9cc2e2..aff3648e 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.ts +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.ts @@ -7,13 +7,15 @@ import { MatTableDataSource } from '@angular/material/table'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { ForwardingEvent, RoutingPeers, SwitchRes } from '../../../shared/models/lndModels'; -import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, getPaginatorLabel, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; +import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, getPaginatorLabel, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS, PAGE_SIZE, PAGE_SIZE_OPTIONS, ScreenSizeEnum, SortOrderEnum } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { openAlert } from '../../../store/rtl.actions'; import { RTLState } from '../../../store/rtl.state'; -import { forwardingHistory } from '../../store/lnd.selector'; +import { forwardingHistory, lndPageSettings } from '../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-routing-peers', @@ -29,11 +31,16 @@ export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild('tableOut', { read: MatSort, static: false }) sortOut: MatSort; @ViewChild('paginatorIn', { static: false }) paginatorIn: MatPaginator | undefined; @ViewChild('paginatorOut', { static: false }) paginatorOut: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterByIn = 'all'; + public selFilterByOut = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'routing'; + public tableSetting: TableSetting = { tableId: 'routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'total_amount', sortOrder: SortOrderEnum.DESCENDING }; public routingPeersData: any[] = []; public displayedColumns: any[] = []; - public RoutingPeersIncoming = new MatTableDataSource([]); - public RoutingPeersOutgoing = new MatTableDataSource([]); - public flgSticky = false; + public routingPeersIncoming = new MatTableDataSource([]); + public routingPeersOutgoing = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -45,25 +52,29 @@ export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['chan_id', 'events', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['chan_id', 'alias', 'events', 'total_amount']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['chan_id', 'alias', 'events', 'total_amount']; - } else { - this.flgSticky = true; - this.displayedColumns = ['chan_id', 'alias', 'events', 'total_amount']; - } } ngOnInit() { - this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[0])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / (this.displayedColumns.length * 2)) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(forwardingHistory).pipe(takeUntil(this.unSubs[1])). subscribe((fhSelector: { forwardingHistory: SwitchRes, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = fhSelector.apiCallStatus; @@ -113,26 +124,75 @@ export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { })); } + applyFilterIncoming() { + this.routingPeersIncoming.filter = this.filterIn.trim().toLowerCase(); + } + + applyFilterOutgoing() { + this.routingPeersOutgoing.filter = this.filterOut.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.routingPeersIncoming.filterPredicate = (rowDataIn: RoutingPeers, fltr: string) => { + let rowToFilterIn = ''; + switch (this.selFilterByIn) { + case 'all': + rowToFilterIn = JSON.stringify(rowDataIn).toLowerCase(); + break; + + default: + rowToFilterIn = typeof rowDataIn[this.selFilterByIn] === 'string' ? rowDataIn[this.selFilterByIn].toLowerCase() : typeof rowDataIn[this.selFilterByIn] === 'boolean' ? (rowDataIn[this.selFilterByIn] ? 'yes' : 'no') : rowDataIn[this.selFilterByIn].toString(); + break; + } + return rowToFilterIn.includes(fltr); + }; + + this.routingPeersOutgoing.filterPredicate = (rowDataOut: RoutingPeers, fltr: string) => { + let rowToFilterOut = ''; + switch (this.selFilterByOut) { + case 'all': + rowToFilterOut = JSON.stringify(rowDataOut).toLowerCase(); + break; + + case 'total_amount': + case 'total_fee': + rowToFilterOut = ((+(rowDataOut[this.selFilterByOut] || 0)) / 1000)?.toString() || ''; + break; + + default: + rowToFilterOut = typeof rowDataOut[this.selFilterByOut] === 'string' ? rowDataOut[this.selFilterByOut].toLowerCase() : typeof rowDataOut[this.selFilterByOut] === 'boolean' ? (rowDataOut[this.selFilterByOut] ? 'yes' : 'no') : rowDataOut[this.selFilterByOut].toString(); + break; + } + return rowToFilterOut.includes(fltr); + }; + } + loadRoutingPeersTable(forwardingEvents: ForwardingEvent[]) { if (forwardingEvents.length > 0) { const results = this.groupRoutingPeers(forwardingEvents); - this.RoutingPeersIncoming = new MatTableDataSource(results[0]); - this.RoutingPeersIncoming.sort = this.sortIn; - this.RoutingPeersIncoming.filterPredicate = (rpIn: RoutingPeers, fltr: string) => JSON.stringify(rpIn).toLowerCase().includes(fltr); - this.RoutingPeersIncoming.paginator = this.paginatorIn!; - this.logger.info(this.RoutingPeersIncoming); - this.RoutingPeersOutgoing = new MatTableDataSource(results[1]); - this.RoutingPeersOutgoing.sort = this.sortOut; - this.RoutingPeersOutgoing.filterPredicate = (rpOut: RoutingPeers, fltr: string) => JSON.stringify(rpOut).toLowerCase().includes(fltr); - this.RoutingPeersOutgoing.paginator = this.paginatorOut!; - this.logger.info(this.RoutingPeersOutgoing); + this.routingPeersIncoming = new MatTableDataSource(results[0]); + this.routingPeersIncoming.sort = this.sortIn; + this.routingPeersIncoming.sort.sort({ id: this.tableSetting.sortBy || 'total_amount', start: this.tableSetting.sortOrder || SortOrderEnum.DESCENDING, disableClear: true }); + this.routingPeersIncoming.paginator = this.paginatorIn!; + this.logger.info(this.routingPeersIncoming); + this.routingPeersOutgoing = new MatTableDataSource(results[1]); + this.routingPeersOutgoing.sort = this.sortOut; + this.routingPeersOutgoing.sort.sort({ id: this.tableSetting.sortBy || 'total_amount', start: this.tableSetting.sortOrder || SortOrderEnum.DESCENDING, disableClear: true }); + this.routingPeersOutgoing.paginator = this.paginatorOut!; + this.logger.info(this.routingPeersOutgoing); } else { // To reset table after other Forwarding history calls - this.RoutingPeersIncoming = new MatTableDataSource([]); - this.RoutingPeersOutgoing = new MatTableDataSource([]); + this.routingPeersIncoming = new MatTableDataSource([]); + this.routingPeersOutgoing = new MatTableDataSource([]); } - this.applyIncomingFilter(); - this.applyOutgoingFilter(); + this.setFilterPredicate(); + this.applyFilterIncoming(); + this.applyFilterOutgoing(); } groupRoutingPeers(forwardingEvents: ForwardingEvent[]) { @@ -148,7 +208,7 @@ export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { incoming.total_amount = +incoming.total_amount + +(event.amt_in || 0); } if (!outgoing) { - outgoingResults.push({ chan_id: event.chan_id_out, alias: event.alias_out, events: 1, total_amount: +(event.amt_out || 0)}); + outgoingResults.push({ chan_id: event.chan_id_out, alias: event.alias_out, events: 1, total_amount: +(event.amt_out || 0) }); } else { outgoing.events++; outgoing.total_amount = +outgoing.total_amount + +(event.amt_out || 0); @@ -157,14 +217,6 @@ export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { return [this.commonService.sortDescByKey(incomingResults, 'total_amount'), this.commonService.sortDescByKey(outgoingResults, 'total_amount')]; } - applyIncomingFilter() { - this.RoutingPeersIncoming.filter = this.filterIn.toLowerCase(); - } - - applyOutgoingFilter() { - this.RoutingPeersOutgoing.filter = this.filterOut.toLowerCase(); - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/lnd/sign-verify-message/sign/sign.component.scss b/src/app/lnd/sign-verify-message/sign/sign.component.scss index d67b1ba8..e69de29b 100644 --- a/src/app/lnd/sign-verify-message/sign/sign.component.scss +++ b/src/app/lnd/sign-verify-message/sign/sign.component.scss @@ -1,6 +0,0 @@ -.mat-column-channel_point { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/sign-verify-message/verify/verify.component.scss b/src/app/lnd/sign-verify-message/verify/verify.component.scss index d67b1ba8..e69de29b 100644 --- a/src/app/lnd/sign-verify-message/verify/verify.component.scss +++ b/src/app/lnd/sign-verify-message/verify/verify.component.scss @@ -1,6 +0,0 @@ -.mat-column-channel_point { - flex: 1 1 25%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} diff --git a/src/app/lnd/store/lnd.actions.ts b/src/app/lnd/store/lnd.actions.ts index f2a9e7af..f6e3a4c7 100644 --- a/src/app/lnd/store/lnd.actions.ts +++ b/src/app/lnd/store/lnd.actions.ts @@ -5,8 +5,11 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../shared/models/RTLconfig'; import { GetInfo, Peer, NetworkInfo, Fees, Channel, Invoice, ListInvoices, ChannelsTransaction, ClosedChannel, Transaction, SwitchReq, - SwitchRes, QueryRoutes, LightningNode, UTXO, ListPayments, SavePeer, SaveInvoice, SaveChannel, CloseChannel, FetchInvoices, FetchPayments, SendPayment, GetNewAddress, GetQueryRoutes, InitWallet, ChannelLookup, SetRestoreChannelsList, NewlyAddedPeer, BlockchainBalance, SetPendingChannels, BackupChannels, SetAllLightningTransactions, Payment + SwitchRes, QueryRoutes, LightningNode, UTXO, ListPayments, SavePeer, SaveInvoice, SaveChannel, CloseChannel, FetchInvoices, + FetchPayments, SendPayment, GetNewAddress, GetQueryRoutes, InitWallet, ChannelLookup, SetRestoreChannelsList, NewlyAddedPeer, + BlockchainBalance, SetPendingChannels, BackupChannels, SetAllLightningTransactions, Payment } from '../../shared/models/lndModels'; +import { PageSettings } from '../../shared/models/pageSettings'; export const updateLNDAPICallStatus = createAction(LNDActions.UPDATE_API_CALL_STATUS_LND, props<{ payload: ApiCallStatusPayload }>()); @@ -14,6 +17,12 @@ export const resetLNDStore = createAction(LNDActions.RESET_LND_STORE, props<{ pa export const setChildNodeSettingsLND = createAction(LNDActions.SET_CHILD_NODE_SETTINGS_LND, props<{ payload: SelNodeChild }>()); +export const fetchPageSettings = createAction(LNDActions.FETCH_PAGE_SETTINGS_LND); + +export const setPageSettings = createAction(LNDActions.SET_PAGE_SETTINGS_LND, props<{ payload: PageSettings[] }>()); + +export const savePageSettings = createAction(LNDActions.SAVE_PAGE_SETTINGS_LND, props<{ payload: PageSettings[] }>()); + export const fetchInfoLND = createAction(LNDActions.FETCH_INFO_LND, props<{ payload: { loadPage: string } }>()); export const setInfo = createAction(LNDActions.SET_INFO_LND, props<{ payload: GetInfo }>()); diff --git a/src/app/lnd/store/lnd.effects.ts b/src/app/lnd/store/lnd.effects.ts index 793bbd91..d5e20b57 100644 --- a/src/app/lnd/store/lnd.effects.ts +++ b/src/app/lnd/store/lnd.effects.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-unsafe-optional-chaining */ import { Injectable, OnDestroy } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Router } from '@angular/router'; @@ -12,23 +13,31 @@ import { environment, API_URL } from '../../../environments/environment'; import { LoggerService } from '../../shared/services/logger.service'; import { CommonService } from '../../shared/services/common.service'; import { SessionService } from '../../shared/services/session.service'; -import { GetInfo, Fees, BlockchainBalance, NetworkInfo, GraphNode, Transaction, SwitchReq, ListInvoices, PendingChannelsSummary, UTXO, ListPayments, SavePeer, SaveInvoice, SaveChannel, CloseChannel, FetchInvoices, FetchPayments, SendPayment, LightningNode, GetNewAddress, ChannelsTransaction, GetQueryRoutes, QueryRoutes, InitWallet, ChannelLookup, SetRestoreChannelsList } from '../../shared/models/lndModels'; +import { GetInfo, Fees, BlockchainBalance, NetworkInfo, GraphNode, Transaction, SwitchReq, ListInvoices, + PendingChannelsSummary, UTXO, ListPayments, SavePeer, SaveInvoice, SaveChannel, CloseChannel, FetchInvoices, FetchPayments, + SendPayment, LightningNode, GetNewAddress, ChannelsTransaction, GetQueryRoutes, QueryRoutes, InitWallet, ChannelLookup, + SetRestoreChannelsList } from '../../shared/models/lndModels'; import { InvoiceInformationComponent } from '../transactions/invoice-information-modal/invoice-information.component'; import { ErrorMessageComponent } from '../../shared/components/data-modal/error-message/error-message.component'; -import { RTLActions, LNDActions, AlertTypeEnum, APICallStatusEnum, FEE_LIMIT_TYPES, PAGE_SIZE, UI_MESSAGES, LNDWSEventTypeEnum } from '../../shared/services/consts-enums-functions'; +import { RTLActions, LNDActions, AlertTypeEnum, APICallStatusEnum, FEE_LIMIT_TYPES, PAGE_SIZE, UI_MESSAGES, LNDWSEventTypeEnum, LND_DEFAULT_PAGE_SETTINGS } from '../../shared/services/consts-enums-functions'; import { closeAllDialogs, closeSpinner, logout, openAlert, openSnackBar, openSpinner, setApiUrl, setNodeData } from '../../store/rtl.actions'; import { RTLState } from '../../store/rtl.state'; -import { backupChannels, fetchBalanceBlockchain, fetchClosedChannels, fetchFees, fetchInfoLND, fetchInvoices, fetchNetwork, fetchPayments, fetchPeers, fetchPendingChannels, fetchTransactions, setForwardingHistory, setLookup, setPeers, setQueryRoutes, setRestoreChannelsList, updateLNDAPICallStatus, updateInvoice, fetchChannels, paymentLookup, updatePayment } from './lnd.actions'; -import { allAPIsCallStatus, lndNodeInformation } from './lnd.selector'; -import { ApiCallsListLND } from '../../shared/models/apiCallsPayload'; +import { backupChannels, fetchBalanceBlockchain, fetchClosedChannels, fetchFees, fetchInfoLND, fetchInvoices, fetchNetwork, fetchPayments, + fetchPeers, fetchPendingChannels, fetchTransactions, setForwardingHistory, setPeers, setQueryRoutes, setRestoreChannelsList, + updateLNDAPICallStatus, updateInvoice, fetchChannels, updatePayment, fetchPageSettings } from './lnd.actions'; +import { allAPIsCallStatus, lndNodeInformation, lndPageSettings } from './lnd.selector'; +import { ApiCallsListLND, ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { WebSocketClientService } from '../../shared/services/web-socket.service'; +import { PageSettings } from '../../shared/models/pageSettings'; @Injectable() export class LNDEffects implements OnDestroy { dialogRef: any; CHILD_API_URL = API_URL + '/lnd'; + private invoicesPageSize = PAGE_SIZE; + private paymentsPageSize = PAGE_SIZE; private flgInitialized = false; private unSubs: Array> = [new Subject(), new Subject()]; @@ -226,7 +235,7 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SaveNewInvoice', status: APICallStatusEnum.INITIATED } })); return this.httpClient.post(this.CHILD_API_URL + environment.INVOICES_API, { - memo: action.payload.memo, amount: action.payload.invoiceValue, private: action.payload.private, expiry: action.payload.expiry + memo: action.payload.memo, value: action.payload.value, private: action.payload.private, expiry: action.payload.expiry, is_amp: action.payload.is_amp }). pipe( map((postRes: any) => { @@ -235,10 +244,11 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: action.payload.pageSize, reversed: true } })); if (action.payload.openModal) { postRes.memo = action.payload.memo; - postRes.value = action.payload.invoiceValue; + postRes.value = action.payload.value; postRes.expiry = action.payload.expiry; - postRes.cltv_expiry = '144'; postRes.private = action.payload.private; + postRes.is_amp = action.payload.is_amp; + postRes.cltv_expiry = '144'; postRes.creation_date = Math.round(new Date().getTime() / 1000).toString(); setTimeout(() => { this.store.dispatch(openAlert({ @@ -250,7 +260,7 @@ export class LNDEffects implements OnDestroy { } } })); - }, 100); + }, 200); return { type: RTLActions.CLOSE_SPINNER, payload: action.payload.uiMessage @@ -706,7 +716,7 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); if (sendRes.payment_error) { if (action.payload.allowSelfPayment) { - this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: PAGE_SIZE, reversed: true } })); + this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSize, reversed: true } })); return { type: LNDActions.SEND_PAYMENT_STATUS_LND, payload: sendRes @@ -723,9 +733,9 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(closeSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); this.store.dispatch(fetchChannels()); - this.store.dispatch(fetchPayments({ payload: { max_payments: PAGE_SIZE, reversed: true } })); + this.store.dispatch(fetchPayments({ payload: { max_payments: this.paymentsPageSize, reversed: true } })); if (action.payload.allowSelfPayment) { - this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: PAGE_SIZE, reversed: true } })); + this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSize, reversed: true } })); } else { let msg = 'Payment Sent Successfully.'; if (sendRes.payment_route && sendRes.payment_route.total_fees_msat) { @@ -743,7 +753,7 @@ export class LNDEffects implements OnDestroy { this.logger.error('Error: ' + JSON.stringify(err)); if (action.payload.allowSelfPayment) { this.handleErrorWithoutAlert('SendPayment', action.payload.uiMessage, 'Send Payment Failed.', err); - this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: PAGE_SIZE, reversed: true } })); + this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSize, reversed: true } })); return of({ type: LNDActions.SEND_PAYMENT_STATUS_LND, payload: { error: this.commonService.extractErrorMessage(err) } @@ -1188,6 +1198,68 @@ export class LNDEffects implements OnDestroy { })) ); + pageSettingsFetch = createEffect(() => this.actions.pipe( + ofType(LNDActions.FETCH_PAGE_SETTINGS_LND), + mergeMap(() => { + this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.INITIATED } })); + return this.httpClient.get(environment.PAGE_SETTINGS_API).pipe( + map((settings: any) => { + this.logger.info(settings); + this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.COMPLETED } })); + this.invoicesPageSize = (settings && Object.keys(settings).length > 0 ? (settings.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices')) : + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices')).recordsPerPage; + this.paymentsPageSize = (settings && Object.keys(settings).length > 0 ? (settings.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments')) : + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments')).recordsPerPage; + this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSize, reversed: true } })); + // this.store.dispatch(fetchPayments({ payload: { max_payments: 100000, reversed: true } })); + return { + type: LNDActions.SET_PAGE_SETTINGS_LND, + payload: settings || [] + }; + }), + catchError((err: any) => { + this.handleErrorWithoutAlert('FetchPageSettings', UI_MESSAGES.NO_SPINNER, 'Fetching Page Settings Failed.', err); + return of({ type: RTLActions.VOID }); + }) + ); + }) + )); + + savePageSettings = createEffect(() => this.actions.pipe( + ofType(LNDActions.SAVE_PAGE_SETTINGS_LND), + mergeMap((action: { type: string, payload: any }) => { + this.store.dispatch(openSpinner({ payload: UI_MESSAGES.UPDATE_PAGE_SETTINGS })); + this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SavePageSettings', status: APICallStatusEnum.INITIATED } })); + return this.httpClient.post(environment.PAGE_SETTINGS_API, action.payload). + pipe( + map((postRes: any) => { + this.logger.info(postRes); + this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SavePageSettings', status: APICallStatusEnum.COMPLETED } })); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.UPDATE_PAGE_SETTINGS })); + this.store.dispatch(openSnackBar({ payload: 'Page Layout Updated Successfully!' })); + const invPgSz = (postRes.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices') || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices')).recordsPerPage; + const payPgSz = (postRes.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments') || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments')).recordsPerPage; + if (invPgSz !== this.invoicesPageSize) { + this.invoicesPageSize = invPgSz; + this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSize, reversed: true } })); + } + if (payPgSz !== this.paymentsPageSize) { + this.paymentsPageSize = payPgSz; + // this.store.dispatch(fetchPayments({ payload: { max_payments: 100000, reversed: true } })); + } + return { + type: LNDActions.SET_PAGE_SETTINGS_LND, + payload: postRes || [] + }; + }), + catchError((err: any) => { + this.handleErrorWithAlert('SavePageSettings', UI_MESSAGES.UPDATE_PAGE_SETTINGS, 'Page Settings Update Failed.', environment.PAGE_SETTINGS_API, err); + return of({ type: RTLActions.VOID }); + }) + ); + }) + )); + initializeRemainingData(info: any, landingPage: string) { this.sessionService.setItem('lndUnlocked', 'true'); const node_data = { @@ -1210,6 +1282,7 @@ export class LNDEffects implements OnDestroy { newRoute = '/lnd/home'; } this.router.navigate([newRoute]); + this.store.dispatch(fetchPageSettings()); this.store.dispatch(fetchBalanceBlockchain()); this.store.dispatch(fetchChannels()); this.store.dispatch(fetchPendingChannels()); @@ -1217,8 +1290,8 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(fetchPeers()); this.store.dispatch(fetchNetwork()); this.store.dispatch(fetchFees()); // Fetches monthly forwarding history as well, to count total number of events - this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: 10, reversed: true } })); this.store.dispatch(fetchPayments({ payload: { max_payments: 100000, reversed: true } })); + // Fetching Invoices in pagesettings to get page size // this.store.dispatch(fetchPayments({ payload: { max_payments: 10, reversed: true } })); // this.store.dispatch(getAllLightningTransactions()); } diff --git a/src/app/lnd/store/lnd.reducers.ts b/src/app/lnd/store/lnd.reducers.ts index 819b2445..4bf6a0db 100644 --- a/src/app/lnd/store/lnd.reducers.ts +++ b/src/app/lnd/store/lnd.reducers.ts @@ -1,8 +1,12 @@ import { createReducer, on } from '@ngrx/store'; import { initLNDState } from './lnd.state'; -import { addInvoice, removeChannel, removePeer, resetLNDStore, setChannels, setAllLightningTransactions, setBalanceBlockchain, setChildNodeSettingsLND, setClosedChannels, setFees, setForwardingHistory, setInfo, setInvoices, setNetwork, setPayments, setPeers, setPendingChannels, setTransactions, setUTXOs, updateLNDAPICallStatus, updateInvoice, updatePayment } from './lnd.actions'; +import { addInvoice, removeChannel, removePeer, resetLNDStore, setChannels, setAllLightningTransactions, setBalanceBlockchain, + setChildNodeSettingsLND, setClosedChannels, setFees, setForwardingHistory, setInfo, setInvoices, setNetwork, setPayments, setPeers, + setPendingChannels, setTransactions, setUTXOs, updateLNDAPICallStatus, updateInvoice, updatePayment, setPageSettings } from './lnd.actions'; import { Channel, ClosedChannel, SetAllLightningTransactions } from '../../shared/models/lndModels'; +import { PageSettings } from '../../shared/models/pageSettings'; +import { LND_DEFAULT_PAGE_SETTINGS } from '../../shared/services/consts-enums-functions'; let flgTransactionsSet = false; let flgUTXOsSet = false; @@ -220,6 +224,31 @@ export const LNDReducer = createReducer(initLNDState, ...state, forwardingHistory: updatedPayload }; + }), + on(setPageSettings, (state, { payload }) => { + const newPageSettings: PageSettings[] = []; + LND_DEFAULT_PAGE_SETTINGS.forEach((defaultPage) => { + const pageSetting = payload && payload.length && payload.length > 0 ? payload.find((p) => p.pageId === defaultPage.pageId) : null; + if (pageSetting) { + const tablesSettings = JSON.parse(JSON.stringify(pageSetting.tables)); + pageSetting.tables = []; // To maintain settings order + defaultPage.tables.forEach((defaultTable) => { + const tableSetting = tablesSettings.find((t) => t.tableId === defaultTable.tableId) || null; + if (tableSetting) { + pageSetting.tables.push(tableSetting); + } else { + pageSetting.tables.push(JSON.parse(JSON.stringify(defaultTable))); + } + }); + newPageSettings.push(pageSetting); + } else { + newPageSettings.push(JSON.parse(JSON.stringify(defaultPage))); + } + }); + return { + ...state, + pageSettings: newPageSettings + }; }) ); diff --git a/src/app/lnd/store/lnd.selector.ts b/src/app/lnd/store/lnd.selector.ts index f0dca16a..064036ff 100644 --- a/src/app/lnd/store/lnd.selector.ts +++ b/src/app/lnd/store/lnd.selector.ts @@ -3,6 +3,7 @@ import { LNDState } from './lnd.state'; export const lndState = createFeatureSelector('lnd'); export const lndNodeSettings = createSelector(lndState, (state: LNDState) => state.nodeSettings); +export const lndPageSettings = createSelector(lndState, (state: LNDState) => ({ pageSettings: state.pageSettings, apiCallStatus: state.apisCallStatus.FetchPageSettings })); export const lndNodeInformation = createSelector(lndState, (state: LNDState) => state.information); export const nodeInfoStatus = createSelector(lndState, (state: LNDState) => ({ information: state.information, apiCallStatus: state.apisCallStatus.FetchInfo })); export const allAPIsCallStatus = createSelector(lndState, (state: LNDState) => state.apisCallStatus); diff --git a/src/app/lnd/store/lnd.state.ts b/src/app/lnd/store/lnd.state.ts index ac261fc6..57d20b66 100644 --- a/src/app/lnd/store/lnd.state.ts +++ b/src/app/lnd/store/lnd.state.ts @@ -1,11 +1,13 @@ import { SelNodeChild } from '../../shared/models/RTLconfig'; import { ApiCallsListLND } from '../../shared/models/apiCallsPayload'; -import { APICallStatusEnum, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, LND_DEFAULT_PAGE_SETTINGS, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; import { GetInfo, Peer, Fees, NetworkInfo, BlockchainBalance, Channel, ListInvoices, PendingChannels, ClosedChannel, Transaction, SwitchRes, PendingChannelsSummary, UTXO, ListPayments, LightningBalance, ChannelsSummary } from '../../shared/models/lndModels'; +import { PageSettings } from '../../shared/models/pageSettings'; export interface LNDState { apisCallStatus: ApiCallsListLND; nodeSettings: SelNodeChild | null; + pageSettings: PageSettings[]; information: GetInfo; peers: Peer[]; fees: Fees; @@ -27,6 +29,7 @@ export interface LNDState { export const initLNDState: LNDState = { apisCallStatus: { + FetchPageSettings: { status: APICallStatusEnum.UN_INITIATED }, FetchInfo: { status: APICallStatusEnum.UN_INITIATED }, FetchFees: { status: APICallStatusEnum.UN_INITIATED }, FetchPeers: { status: APICallStatusEnum.UN_INITIATED }, @@ -42,7 +45,8 @@ export const initLNDState: LNDState = { FetchLightningTransactions: { status: APICallStatusEnum.UN_INITIATED }, FetchNetwork: { status: APICallStatusEnum.UN_INITIATED } }, - nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, fiatConversion: false, channelBackupPath: '', currencyUnits: [], selCurrencyUnit: '', lnImplementation: '', swapServerUrl: '' }, + nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, unannouncedChannels: false, fiatConversion: false, channelBackupPath: '', currencyUnits: [], selCurrencyUnit: '', lnImplementation: '', swapServerUrl: '' }, + pageSettings: LND_DEFAULT_PAGE_SETTINGS, information: {}, peers: [], fees: { diff --git a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html index 5d84cb99..4c4062fd 100644 --- a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html +++ b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html @@ -18,7 +18,7 @@ - {{selTimeUnit | titlecase}} + {{selTimeUnit | titlecase}} @@ -26,16 +26,22 @@
- Private Routing Hints - info_outline +
+ Private Routing Hints + info_outline +
+
+ AMP Invoice + info_outline +
{{invoiceError}}
- - + +
diff --git a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.scss b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.scss +++ b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts index 661eaaca..8144040b 100644 --- a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts +++ b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts @@ -28,10 +28,10 @@ export class CreateInvoiceComponent implements OnInit, OnDestroy { public selNode: SelNodeChild | null = {}; public memo = ''; public expiry: number | null; + public isAmp = false; public invoiceValue: number | null; public invoiceValueHint = ''; public invoicePaymentReq = ''; - public invoices: any; public information: GetInfo = {}; public private = false; public expiryStep = 100; @@ -77,7 +77,7 @@ export class CreateInvoiceComponent implements OnInit, OnDestroy { } this.store.dispatch(saveNewInvoice({ payload: { - uiMessage: UI_MESSAGES.ADD_INVOICE, memo: this.memo, invoiceValue: this.invoiceValue!, private: this.private, expiry: expiryInSecs, pageSize: this.pageSize, openModal: true + uiMessage: UI_MESSAGES.ADD_INVOICE, memo: this.memo, value: this.invoiceValue!, private: this.private, expiry: expiryInSecs, is_amp: this.isAmp, pageSize: this.pageSize, openModal: true } })); } @@ -86,6 +86,7 @@ export class CreateInvoiceComponent implements OnInit, OnDestroy { this.memo = ''; this.invoiceValue = null; this.private = false; + this.isAmp = false; this.expiry = null; this.invoiceValueHint = ''; this.selTimeUnit = TimeUnitEnum.SECS; diff --git a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html index 98cd659d..7a346e7e 100644 --- a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html +++ b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html @@ -18,7 +18,7 @@ QR Code Not Applicable
-
+

{{screenSize === screenSizeEnum.XS ? 'Amount' : 'Amount Requested'}}

@@ -76,58 +76,7 @@
- -
-
-

Preimage

- {{invoice?.r_preimage || '-'}} -
-
- -
-
-

State

- {{invoice?.state}} -
-
-

Expiry

- {{invoice?.expiry}} -
-
-

Private Routing Hints

- {{invoice?.private ? 'Yes' : 'No'}} -
-
- -
- - - -

HTLCs

-
-
-
-
- Channel ID - Amount (Sats) -
- -
-
- - - - - {{htlc.chan_id}} - - {{((+htlc.amt_msat/1000) || 0) | number:getDecimalFormat(htlc)}} -
- -
-
-
-
- +
@@ -147,3 +96,64 @@
+ + +
+
+

Preimage

+ {{invoice?.r_preimage || '-'}} +
+
+ +
+
+

State

+ {{invoice?.state}} +
+
+

Expiry

+ {{(+invoice?.creation_date + +invoice?.expiry) * 1000 | date:'dd/MMM/y HH:mm'}} +
+
+ +
+
+

Private Routing Hints

+ {{invoice?.private ? 'Yes' : 'No'}} +
+
+

AMP Invoice

+ {{invoice?.is_amp ? 'Yes' : 'No'}} +
+
+ +
+ + + +

HTLCs

+
+
+
+
+ Channel ID + Amount (Sats) +
+ +
+
+ + + + + {{htlc.chan_id}} + + {{((+htlc.amt_msat/1000) || 0) | number:getDecimalFormat(htlc)}} +
+ +
+
+
+
+ +
\ No newline at end of file diff --git a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts index b121efd0..e6537292 100644 --- a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts +++ b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts @@ -59,7 +59,7 @@ export class InvoiceInformationComponent implements OnInit, OnDestroy { const invoiceStatus = this.invoice?.state; const invoices = invoicesSelector.listInvoices.invoices || []; const foundInvoice = invoices.find((invoice) => invoice.r_hash === invoiceToCompare.r_hash) || null; - this.invoice = foundInvoice; + if (foundInvoice) { this.invoice = foundInvoice; } if (invoiceStatus !== this.invoice?.state && this.invoice?.state === 'SETTLED') { this.flgInvoicePaid = true; setTimeout(() => { this.flgInvoicePaid = false; }, 4000); diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.html b/src/app/lnd/transactions/invoices/lightning-invoices.component.html index 4a627b9d..1ea09a4f 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.html +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.html @@ -22,52 +22,140 @@ Invoices History
- - - +
+ + + {{getLabel(column)}} + + + + + +
- - - +
Date Created
+ + + + + + + + + + + + + + + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + - - - - +
- + + + + + + + + + + + + + Date Created {{(invoice?.creation_date * 1000) | date:'dd/MMM/y HH:mm'}} Date Settled {{(+invoice?.settle_date !== 0 ? ((+invoice?.settle_date * 1000) | date:'dd/MMM/y HH:mm') : '-')}}Date Settled{{(+invoice?.settle_date !== 0 ? ((+invoice?.settle_date * 1000) | date:'dd/MMM/y HH:mm') : '-')}} Memo Memo -
+
{{invoice?.memo}}
Preimage +
+ {{invoice?.r_preimage}} +
+
Preimage Hash +
+ {{invoice?.r_hash}} +
+
Payment Address +
+ {{invoice?.payment_addr}} +
+
Payment Request +
+ {{invoice?.payment_request}} +
+
Description Hash +
+ {{invoice?.description_hash}} +
+
Expiry{{invoice?.expiry | number}} CLTV Expiry{{invoice?.cltv_expiry | number}} Add Index{{invoice?.add_index | number}} Settle Index{{invoice?.settle_index | number}} Amount (Sats) {{invoice?.value | number}} Amount (Sats){{invoice?.value | number}} Amount Settled (Sats) {{invoice?.amt_paid_sat | number}} Amount Settled (Sats){{invoice?.amt_paid_sat | number}} -
+
+
Download CSV
-
+ +
@@ -78,14 +166,14 @@
+

No invoice available.

Getting invoices...

{{errorMessage}}

diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.scss b/src/app/lnd/transactions/invoices/lightning-invoices.component.scss index c56d4007..ab6bdb40 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.scss +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.scss @@ -1,11 +1,9 @@ -.mat-column-memo { - flex: 0 0 15%; - width: 15%; - & .ellipsis-parent { - display: flex; - } +.mat-column-state { + max-width: 1.2rem; + width:1.2rem; } -.mat-column-actions { - min-height: 4.8rem; +.mat-column-private, .mat-column-is_keysend, .mat-column-is_amp { + max-width: 1.6rem; + width:1.6rem; } diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.ts b/src/app/lnd/transactions/invoices/lightning-invoices.component.ts index 0c920fdf..ccd302bd 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.ts +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.ts @@ -4,12 +4,12 @@ import { Subject } from 'rxjs'; import { filter, takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; -import { faHistory } from '@fortawesome/free-solid-svg-icons'; +import { faHistory, faEye, faEyeSlash, faBurst, faMoneyBill1, faArrowsTurnToDots, faArrowsTurnRight } from '@fortawesome/free-solid-svg-icons'; import { MatPaginator, MatPaginatorIntl, PageEvent } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, LNDActions } from '../../../shared/services/consts-enums-functions'; +import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, LNDActions, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../shared/models/RTLconfig'; import { GetInfo, Invoice, ListInvoices } from '../../../shared/models/lndModels'; @@ -22,7 +22,9 @@ import { InvoiceInformationComponent } from '../invoice-information-modal/invoic import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { fetchInvoices, invoiceLookup, saveNewInvoice } from '../../store/lnd.actions'; -import { invoices, lndNodeInformation, lndNodeSettings } from '../../store/lnd.selector'; +import { invoices, lndNodeInformation, lndNodeSettings, lndPageSettings } from '../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-lightning-invoices', @@ -37,7 +39,18 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest @Input() calledFrom = 'transactions'; // Transactions/home @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; - faHistory = faHistory; + public faEye = faEye; + public faEyeSlash = faEyeSlash; + public faHistory = faHistory; + public faArrowsTurnToDots = faArrowsTurnToDots; + public faArrowsTurnRight = faArrowsTurnRight; + public faBurst = faBurst; + public faMoneyBill1 = faMoneyBill1; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'creation_date', sortOrder: SortOrderEnum.DESCENDING }; public selNode: SelNodeChild | null = {}; public newlyAddedInvoiceMemo: string | null = null; public newlyAddedInvoiceValue: number | null = null; @@ -48,9 +61,8 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest public displayedColumns: any[] = []; public invoicePaymentReq = ''; public invoicesData: Invoice[] = []; - public invoices: any; + public invoices: any = new MatTableDataSource([]); public information: GetInfo = {}; - public flgSticky = false; public selFilter = ''; public private = false; public expiryStep = 100; @@ -64,29 +76,35 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private datePipe: DatePipe, private actions: Actions) { + constructor(private logger: LoggerService, private store: Store, private decimalPipe: DecimalPipe, private commonService: CommonService, private datePipe: DatePipe, private actions: Actions, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['creation_date', 'value', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['creation_date', 'settle_date', 'value', 'amt_paid_sat', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['creation_date', 'settle_date', 'memo', 'value', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['creation_date', 'settle_date', 'memo', 'value', 'amt_paid_sat', 'actions']; - } } ngOnInit() { this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(invoices).pipe(takeUntil(this.unSubs[2])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[2])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('state'); + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(invoices).pipe(takeUntil(this.unSubs[3])). subscribe((invoicesSelector: { listInvoices: ListInvoices, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = invoicesSelector.apiCallStatus; @@ -97,12 +115,12 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest this.firstOffset = +(invoicesSelector.listInvoices.first_index_offset || -1); this.lastOffset = +(invoicesSelector.listInvoices.last_index_offset || -1); this.invoicesData = invoicesSelector.listInvoices.invoices || []; - if (this.invoicesData.length > 0 && this.sort && this.paginator) { + if (this.invoicesData.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoicesData); } this.logger.info(invoicesSelector); }); - this.actions.pipe(takeUntil(this.unSubs[3]), filter((action) => (action.type === LNDActions.SET_LOOKUP_LND || action.type === LNDActions.UPDATE_API_CALL_STATUS_LND))). + this.actions.pipe(takeUntil(this.unSubs[4]), filter((action) => (action.type === LNDActions.SET_LOOKUP_LND || action.type === LNDActions.UPDATE_API_CALL_STATUS_LND))). subscribe((resLookup: any) => { if (resLookup.type === LNDActions.SET_LOOKUP_LND) { if (this.invoicesData.length > 0 && this.sort && this.paginator && resLookup.payload) { @@ -126,7 +144,7 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest this.newlyAddedInvoiceValue = this.invoiceValue; this.store.dispatch(saveNewInvoice({ payload: { - uiMessage: UI_MESSAGES.ADD_INVOICE, memo: this.memo, invoiceValue: this.invoiceValue!, private: this.private, expiry: expiryInSecs, pageSize: this.pageSize, openModal: true + uiMessage: UI_MESSAGES.ADD_INVOICE, memo: this.memo, value: this.invoiceValue!, private: this.private, expiry: expiryInSecs, is_amp: false, pageSize: this.pageSize, openModal: true } })); this.resetData(); @@ -154,14 +172,56 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest this.invoicesData = this.invoicesData?.map((invoice) => ((invoice.r_hash === newInvoice.r_hash) ? newInvoice : invoice)); } + + applyFilter() { + this.invoices.filter = this.selFilter.trim().toLowerCase(); + } + + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.invoices.filterPredicate = (rowData: Invoice, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = (rowData.creation_date ? this.datePipe.transform(new Date(rowData.creation_date * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '')! + + (rowData.settle_date ? this.datePipe.transform(new Date(rowData.settle_date * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'creation_date': + case 'settle_date': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'private': + rowToFilter = rowData?.private ? 'private' : 'public'; + break; + + case 'is_keysend': + rowToFilter = rowData?.is_keysend ? 'keysend invoices' : 'non keysend invoices'; + break; + + case 'is_amp': + rowToFilter = rowData?.is_amp ? 'atomic multi path payment' : 'non atomic payment'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'is_keysend' || this.selFilterBy === 'is_amp') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadInvoicesTable(invoices) { this.invoices = invoices ? new MatTableDataSource([...invoices]) : new MatTableDataSource([]); this.invoices.sort = this.sort; this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.invoices.filterPredicate = (invoice: Invoice, fltr: string) => { - const newInvoice = (invoice.creation_date ? this.datePipe.transform(new Date(invoice.creation_date * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '')! + (invoice.settle_date ? this.datePipe.transform(new Date(invoice.settle_date * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(invoice).toLowerCase(); - return newInvoice.includes(fltr); - }; + this.invoices.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.invoices); } @@ -174,10 +234,6 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest this.invoiceValueHint = ''; } - applyFilter() { - this.invoices.filter = this.selFilter.trim().toLowerCase(); - } - onPageChange(event: PageEvent) { let reverse = true; let index_offset = this.lastOffset; @@ -202,7 +258,7 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { this.invoiceValueHint = ''; this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe({ next: (data) => { this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; diff --git a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.scss b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.scss index d45059cb..51956474 100644 --- a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.scss +++ b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.scss @@ -8,7 +8,3 @@ margin-bottom: 0; list-style-type: none; } - -.pl-3 { - padding-left: 3rem; -} \ No newline at end of file diff --git a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts index c1bf4c14..ae7dc163 100644 --- a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts +++ b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts @@ -22,7 +22,6 @@ export class LookupTransactionsComponent implements OnInit, OnDestroy { public lookupKey = ''; public lookupValue = {}; public flgSetLookupValue = false; - public temp: any; public messageObj = []; public selectedFieldId = 0; public lookupFields = [ diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.html b/src/app/lnd/transactions/payments/lightning-payments.component.html index 970266e1..f7d266f9 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.html +++ b/src/app/lnd/transactions/payments/lightning-payments.component.html @@ -19,30 +19,84 @@ Payments History
- - - +
+ + + {{getLabel(column)}} + + + + + +
- - - +
Creation Date
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -52,20 +106,20 @@ - + - - @@ -76,25 +130,35 @@ - + - + + + + - + + + + + + + + + + + + + + + + + + + - + - + - - - +
+ Creation Date {{(payment?.creation_date * 1000) | date:'dd/MMM/y HH:mm'}} Payment Hash - + {{payment?.payment_hash}} Payment Request + + {{payment?.payment_request}} + + Payment Preimage + + {{payment?.payment_preimage}} + + Description + + {{payment?.description}} + + Description Hash + + {{payment?.description_hash}} + + Failure Reason + {{payment?.failure_reason | camelcaseWithReplace:'failure_reason':'_'}} + Payment Index{{payment?.payment_index | number}} Fee (Sats) {{payment?.fee | number}}{{payment?.value | number}} #HopsHops {{payment?.htlcs[0]?.route?.hops?.length || 0}} -
+
+
Download CSV
-
- + + + - Total Attempts: {{payment?.htlcs?.length}} - + - {{(htlc.attempt_time * 1000) | date:'dd/MMM/y HH:mm'}} - + + Total Attempts: {{payment?.htlcs?.length}} + + + + {{(htlc.attempt_time_ns / 1000000) | date:'dd/MMM/y HH:mm'}} + + + + {{payment?.payment_hash}} @@ -104,7 +168,73 @@ + + {{payment?.payment_request}} + + + + + + + + {{payment?.payment_preimage}} + + + + {{htlc?.preimage}} + + + + + {{payment?.description}} + + + + + + + + {{payment?.description_hash}} + + + + + + + + {{payment?.failure_reason | camelcaseWithReplace:'failure_reason':'_'}} + + + + + + + {{payment?.payment_index | number}} + + + {{htlc.attempt_id | number}} + + + {{payment?.fee | number:'1.0-0'}} @@ -114,7 +244,7 @@ {{payment?.value | number:'1.0-0'}} @@ -124,7 +254,7 @@ - @@ -134,8 +264,8 @@ + + @@ -149,7 +279,7 @@
diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.scss b/src/app/lnd/transactions/payments/lightning-payments.component.scss index 1b22aada..d3566660 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.scss +++ b/src/app/lnd/transactions/payments/lightning-payments.component.scss @@ -1,25 +1,26 @@ -.mat-column-actions { - min-height: 4.8rem; -} - -.mat-column-payment_hash { - flex: 0 0 20%; - width: 20%; - & .ellipsis-parent { - display: flex; - } +.mat-column-status, .mat-column-group_status { + max-width: 1.2rem; + width: 1.2rem; } -.mat-column-groupAction { +.mat-column-group_actions { min-height: 4.8rem; & .btn-htlc-expand { - width: 9rem; + min-width: 10rem; + width: 10rem; } & .btn-htlc-info { - margin-top: 0.5rem; - width: 9rem; + margin-top: 0.5rem; + min-width: 9rem; + width: 9rem; + } +} + +.mat-column-group_status, .mat-column-group_creation_date { + .htlc-row-span:not(:first-of-type) { + padding-left: 3rem; } } @@ -27,8 +28,15 @@ min-height: 4.2rem; place-content: center flex-start; align-items: center; + &.ellipsis-parent { + display: flex; + } + & .dot { + margin-top: -0.4rem; + position: absolute; + } } -.mat-column-groupTotal { +.mat-column-group_creation_date { min-width: 17rem; } diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.ts b/src/app/lnd/transactions/payments/lightning-payments.component.ts index 309aba18..bcc5dbef 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.ts +++ b/src/app/lnd/transactions/payments/lightning-payments.component.ts @@ -8,8 +8,8 @@ import { faHistory } from '@fortawesome/free-solid-svg-icons'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { GetInfo, Payment, PayRequest, PaymentHTLC, Peer, Hop, ListPayments, ListInvoices } from '../../../shared/models/lndModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, UI_MESSAGES } from '../../../shared/services/consts-enums-functions'; +import { GetInfo, Payment, PayRequest, PaymentHTLC, Peer, Hop, ListPayments } from '../../../shared/models/lndModels'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, UI_MESSAGES, LND_DEFAULT_PAGE_SETTINGS, SortOrderEnum, LND_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { DataService } from '../../../shared/services/data.service'; @@ -18,12 +18,13 @@ import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { SelNodeChild } from '../../../shared/models/RTLconfig'; import { LightningSendPaymentsComponent } from '../send-payment-modal/send-payment.component'; -import { LNDEffects } from '../../store/lnd.effects'; import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; -import { fetchPayments, sendPayment } from '../../store/lnd.actions'; -import { lndNodeInformation, lndNodeSettings, payments, peers } from '../../store/lnd.selector'; +import { sendPayment } from '../../store/lnd.actions'; +import { lndNodeInformation, lndNodeSettings, lndPageSettings, payments, peers } from '../../store/lnd.selector'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; +import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ selector: 'rtl-lightning-payments', @@ -40,11 +41,16 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public faHistory = faHistory; - public newlyAddedPayment: string = ''; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'transactions'; + public tableSetting: TableSetting = { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'creation_date', sortOrder: SortOrderEnum.DESCENDING }; + public newlyAddedPayment = ''; public selNode: SelNodeChild | null = {}; public information: GetInfo = {}; public peers: Peer[] = []; - public payments: any; + public payments: any = new MatTableDataSource([]); public totalPayments = 100; public paymentJSONArr: Payment[] = []; public displayedColumns: any[] = []; @@ -52,7 +58,6 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest public paymentDecoded: PayRequest = {}; public paymentRequest = ''; public paymentDecodedHint = ''; - public flgSticky = false; private firstOffset = -1; private lastOffset = -1; public selFilter = ''; @@ -65,25 +70,8 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private dataService: DataService, private store: Store, private rtlEffects: RTLEffects, private lndEffects: LNDEffects, private decimalPipe: DecimalPipe, private datePipe: DatePipe) { + constructor(private logger: LoggerService, private commonService: CommonService, private dataService: DataService, private store: Store, private rtlEffects: RTLEffects, private decimalPipe: DecimalPipe, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['creation_date', 'fee', 'actions']; - this.htlcColumns = ['groupTotal', 'groupFee', 'groupAction']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['creation_date', 'fee', 'value', 'hops', 'actions']; - this.htlcColumns = ['groupTotal', 'groupFee', 'groupValue', 'groupHops', 'groupAction']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['creation_date', 'fee', 'value', 'hops', 'actions']; - this.htlcColumns = ['groupTotal', 'groupFee', 'groupValue', 'groupHops', 'groupAction']; - } else { - this.flgSticky = true; - this.displayedColumns = ['creation_date', 'payment_hash', 'fee', 'value', 'hops', 'actions']; - this.htlcColumns = ['groupTotal', 'groupHash', 'groupFee', 'groupValue', 'groupHops', 'groupAction']; - } } ngOnInit() { @@ -93,7 +81,28 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.peers = peersSelector.peers; }); - this.store.select(payments).pipe(takeUntil(this.unSubs[3])). + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[3])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.errorMessage = ''; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || ''; + } + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.unshift('status'); + this.displayedColumns.push('actions'); + this.htlcColumns = []; + this.displayedColumns.map((col) => this.htlcColumns.push('group_' + col)); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); + this.store.select(payments).pipe(takeUntil(this.unSubs[5])). subscribe((paymentsSelector: { listPayments: ListPayments, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; this.apiCallStatus = paymentsSelector.apiCallStatus; @@ -104,7 +113,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest this.totalPayments = this.paymentJSONArr.length; this.firstOffset = +(paymentsSelector.listPayments.first_index_offset || -1); this.lastOffset = +(paymentsSelector.listPayments.last_index_offset || -1); - if (this.paymentJSONArr && this.paymentJSONArr.length > 0 && this.sort && this.paginator) { + if (this.paymentJSONArr && this.paymentJSONArr.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { // this.loadPaymentsTable(this.paymentJSONArr); this.loadPaymentsTable(this.paymentJSONArr.slice(0, this.pageSize)); } @@ -238,10 +247,11 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest if (this.paymentDecoded.num_satoshis) { if (this.selNode && this.selNode.fiatConversion) { this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats (' + data.symbol + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats (' + data.symbol + + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; } @@ -288,21 +298,21 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest this.form.resetForm(); } - getHopDetails(hops: Hop[]) { + getHopDetails(currentHop: Hop) { const self = this; - return hops?.reduce((accumulator: any[], currentHop: Hop) => { + return new Promise((resolve, reject) => { const peerFound = self.peers.find((peer) => peer.pub_key === currentHop.pub_key); if (peerFound && peerFound.alias) { - accumulator.push('
Channel: ' + peerFound.alias.padEnd(20) + '			Amount (Sats): ' + self.decimalPipe.transform(currentHop.amt_to_forward) + '
'); + resolve('
Channel: ' + peerFound.alias.padEnd(20) + '			Amount (Sats): ' + self.decimalPipe.transform(currentHop.amt_to_forward) + '
'); } else { self.dataService.getAliasesFromPubkeys((currentHop.pub_key || ''), false). - pipe(takeUntil(self.unSubs[6])). - subscribe((res: any) => { - accumulator.push('
Channel: ' + (res.node && res.node.alias ? res.node.alias.padEnd(20) : (currentHop.pub_key?.substring(0, 17) + '...')) + '			Amount (Sats): ' + self.decimalPipe.transform(currentHop.amt_to_forward) + '
'); + pipe(takeUntil(self.unSubs[7])). + subscribe({ + next: (res: any) => resolve('
Channel: ' + (res.node && res.node.alias ? res.node.alias.padEnd(20) : (currentHop.pub_key?.substring(0, 17) + '...')) + '			Amount (Sats): ' + self.decimalPipe.transform(currentHop.amt_to_forward) + '
'), + error: (error) => resolve('
Channel: ' + (currentHop.pub_key ? (currentHop.pub_key?.substring(0, 17) + '...') : '') + '			Amount (Sats): ' + self.decimalPipe.transform(currentHop.amt_to_forward) + '
') }); } - return accumulator; - }, []); + }); } onHTLCClick(selHtlc: PaymentHTLC, selPayment: Payment) { @@ -323,7 +333,35 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest } showHTLCView(selHtlc: PaymentHTLC, selPayment: Payment, decodedPayment?: PayRequest) { - const reorderedHTLC = [ + if (selHtlc.route && selHtlc.route.hops && selHtlc.route.hops.length) { + Promise.all(selHtlc.route.hops.map((hop) => this.getHopDetails(hop))).then((detailsAll: any) => { + this.store.dispatch(openAlert({ + payload: { + data: { + type: AlertTypeEnum.INFORMATION, + alertTitle: 'HTLC Information', + message: this.prepareData(selHtlc, selPayment, decodedPayment, detailsAll), + scrollable: selHtlc.route && selHtlc.route.hops && selHtlc.route.hops.length > 1 + } + } + })); + }); + } else { + this.store.dispatch(openAlert({ + payload: { + data: { + type: AlertTypeEnum.INFORMATION, + alertTitle: 'HTLC Information', + message: this.prepareData(selHtlc, selPayment, decodedPayment, []), + scrollable: selHtlc.route && selHtlc.route.hops && selHtlc.route.hops.length > 1 + } + } + })); + } + } + + prepareData(selHtlc: PaymentHTLC, selPayment: Payment, decodedPayment?: PayRequest, hopsDetails?: any) { + const modifiedData = [ [{ key: 'payment_hash', value: selPayment.payment_hash, title: 'Payment Hash', width: 100, type: DataTypeEnum.STRING }], [{ key: 'preimage', value: selHtlc.preimage, title: 'Preimage', width: 100, type: DataTypeEnum.STRING }], [{ key: 'payment_request', value: selPayment.payment_request, title: 'Payment Request', width: 100, type: DataTypeEnum.STRING }], @@ -333,27 +371,18 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest [{ key: 'total_amt', value: selHtlc.route?.total_amt, title: 'Amount (Sats)', width: 33, type: DataTypeEnum.NUMBER }, { key: 'total_fees', value: selHtlc.route?.total_fees, title: 'Fee (Sats)', width: 33, type: DataTypeEnum.NUMBER }, { key: 'total_time_lock', value: selHtlc.route?.total_time_lock, title: 'Total Time Lock', width: 34, type: DataTypeEnum.NUMBER }], - [{ key: 'hops', value: this.getHopDetails(selHtlc.route?.hops || []), title: 'Hops', width: 100, type: DataTypeEnum.ARRAY }] + [{ key: 'hops', value: hopsDetails, title: 'Hops', width: 100, type: DataTypeEnum.ARRAY }] ]; if (decodedPayment && decodedPayment.description && decodedPayment.description !== '') { - reorderedHTLC.splice(3, 0, [{ key: 'description', value: decodedPayment.description, title: 'Description', width: 100, type: DataTypeEnum.STRING }]); + modifiedData.splice(3, 0, [{ key: 'description', value: decodedPayment.description, title: 'Description', width: 100, type: DataTypeEnum.STRING }]); } - this.store.dispatch(openAlert({ - payload: { - data: { - type: AlertTypeEnum.INFORMATION, - alertTitle: 'HTLC Information', - message: reorderedHTLC, - scrollable: selHtlc.route && selHtlc.route.hops && selHtlc.route.hops.length > 1 - } - } - })); + return modifiedData; } onPaymentClick(selPayment: Payment) { if (selPayment.htlcs && selPayment.htlcs[0] && selPayment.htlcs[0].route && selPayment.htlcs[0].route.hops && selPayment.htlcs[0].route.hops.length > 0) { const nodePubkeys = selPayment.htlcs[0].route.hops?.reduce((pubkeys, hop) => (hop.pub_key && pubkeys === '' ? hop.pub_key : pubkeys + ',' + hop.pub_key), ''); - this.dataService.getAliasesFromPubkeys(nodePubkeys, true).pipe(takeUntil(this.unSubs[7])). + this.dataService.getAliasesFromPubkeys(nodePubkeys, true).pipe(takeUntil(this.unSubs[8])). subscribe((nodes: any) => { this.showPaymentView(selPayment, nodes?.reduce((pathAliases, node) => (pathAliases === '' ? node : pathAliases + '\n' + node), '')); }); @@ -405,6 +434,45 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest this.payments.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.payments.filterPredicate = (rowData: Payment, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.creation_date) ? this.datePipe.transform(new Date(rowData.creation_date * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'status': + case 'group_status': + rowToFilter = rowData?.status === 'SUCCEEDED' ? 'succeeded' : 'failed'; + break; + + case 'creation_date': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) * 1000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + case 'failure_reason': + case 'group_failure_reason': + rowToFilter = this.camelCaseWithReplace.transform((rowData.failure_reason || ''), 'failure_reason', '_').trim().toLowerCase(); + break; + + case 'hops': + rowToFilter = rowData.htlcs && rowData.htlcs[0] && rowData.htlcs[0].route && rowData.htlcs[0].route.hops && rowData.htlcs[0].route.hops.length ? rowData.htlcs[0].route.hops.length.toString() : '0'; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return (this.selFilterBy === 'failure_reason' || this.selFilterBy === 'group_failure_reason') ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + loadPaymentsTable(payms) { this.payments = payms ? new MatTableDataSource([...payms]) : new MatTableDataSource([]); this.payments.sortingDataAccessor = (data: any, sortHeaderId: string) => { @@ -417,10 +485,8 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest } }; this.payments.sort = this.sort; - this.payments.filterPredicate = (payment: Payment, fltr: string) => { - const newPayment = ((payment.creation_date) ? this.datePipe.transform(new Date(payment.creation_date * 1000), 'dd/MMM/YYYY HH:mm')?.toLowerCase() : '') + JSON.stringify(payment).toLowerCase(); - return newPayment.includes(fltr); - }; + this.payments.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); + this.setFilterPredicate(); this.applyFilter(); } @@ -434,7 +500,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest return paymentReqs; }, ''); this.dataService.decodePayments(paymentRequests). - pipe(takeUntil(this.unSubs[8])). + pipe(takeUntil(this.unSubs[9])). subscribe((decodedPayments: PayRequest[]) => { let increament = 0; decodedPayments.forEach((decodedPayment, idx) => { diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.scss b/src/app/lnd/transactions/send-payment-modal/send-payment.component.scss index f18d5d79..e69de29b 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.scss +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.scss @@ -1,10 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} - -.mat-column-payment_hash { - flex: 1 1 20%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} \ No newline at end of file diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts b/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts index 4b1ae0b6..b08adf3f 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts @@ -67,25 +67,34 @@ describe('LightningSendPaymentsComponent', () => { it('should get lnd store value on ngOnInit', () => { const storeSpy = spyOn(store, 'select').and.returnValue(of(mockRTLStoreState.lnd.nodeSettings)); component.ngOnInit(); - expect(component.selNode.lnImplementation).toBe('LND'); - expect(storeSpy).toHaveBeenCalledTimes(2); + if (component.selNode) { + expect(component.selNode.lnImplementation).toBe('LND'); + expect(storeSpy).toHaveBeenCalledTimes(2); + } }); it('should send payment buttons work as expected', () => { const storeSpy = spyOn(store, 'dispatch').and.callThrough(); component.zeroAmtInvoice = true; component.paymentAmount = 600; - component.paymentRequest = 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'; + component.paymentRequest = 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxa' + + 'rnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqq' + + 'qqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'; component.paymentDecoded = { destination: '031844beb16bf8dd8c7bc30588b8c37b36e62b71c6e812e9b6d976c0a57e151be2', payment_hash: 'a53968453af7ab6fc58d229a91bdf23d7c121963067f06cf02e1a7b581852c07', timestamp: '1623624612', expiry: '3600', - description: 'Testing ngrx Effects 4', description_hash: '', fallback_addr: '', cltv_expiry: '10', route_hints: [{ hop_hints: [{ node_id: '028ec70462207b57e3d4d9332d9e0aee676c92d89b7c9fb0850fc2a24814d4d83c', chan_id: '2166413939696009216', fee_base_msat: 1000, fee_proportional_millionths: 1, cltv_expiry_delta: 40 }] }], + description: 'Testing ngrx Effects 4', description_hash: '', fallback_addr: '', cltv_expiry: '10', route_hints: + [{ hop_hints: [{ node_id: '028ec70462207b57e3d4d9332d9e0aee676c92d89b7c9fb0850fc2a24814d4d83c', chan_id: '2166413939696009216', + fee_base_msat: 1000, fee_proportional_millionths: 1, cltv_expiry_delta: 40 }] }], payment_addr: 'NIXNBEqCTmqw89joe0m71Z9MrkkBcF1t1ri+9BZehKw=', num_msat: '400000', features: { 9: { name: 'tlv-onion', is_required: false, is_known: true }, 15: { name: 'payment-addr', is_required: false, is_known: true }, 17: { name: 'multi-path-payments', is_required: false, is_known: true } } }; const sendButton = fixture.debugElement.nativeElement.querySelector('#sendBtn'); sendButton.click(); const expectedSendPaymentPayload: SendPayment = { uiMessage: UI_MESSAGES.SEND_PAYMENT, outgoingChannel: null, feeLimitType: 'none', feeLimit: null, fromDialog: true, - paymentReq: 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3' + paymentReq: 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq' + + '6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5c' + + 'qqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq' + + '38j0s3hrgpv4eel3' }; expect(storeSpy.calls.all()[0].args[0]).toEqual(sendPayment({ payload: expectedSendPaymentPayload })); expect(storeSpy).toHaveBeenCalledTimes(1); @@ -127,7 +136,9 @@ describe('LightningSendPaymentsComponent', () => { it('should decode payment when pay request is for the zero amount invoice', () => { component.zeroAmtInvoice = false; component.paymentDecoded = {}; - component.paymentRequest = 'lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxvmmjypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qgqdnftgk'; + component.paymentRequest = 'lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxvmm' + + 'jypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjxgpc' + + 'uqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qgqdnftgk'; component.onPaymentRequestEntry(component.paymentRequest); fixture.detectChanges(); expect(component.zeroAmtInvoice).toBe(true); @@ -137,7 +148,10 @@ describe('LightningSendPaymentsComponent', () => { it('should NOT send payment when pay request is for zero amount invoice AND amount is not specified', () => { spyOn(component, 'sendPayment').and.callThrough(); - component.onPaymentRequestEntry('lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxvmmjypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qgqdnftgk'); + component.onPaymentRequestEntry('lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76tr' + + 'v5sxvmmjypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeau' + + 'cwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yryc' + + 'wh2g05qgqdnftgk'); expect(component.zeroAmtInvoice).toBe(true); expect(component.paymentDecodedHint).toEqual('Memo: Testing Empty Invoice for LND 3'); expect(component.filteredMinAmtActvChannels).toEqual(component.activeChannels); @@ -154,12 +168,18 @@ describe('LightningSendPaymentsComponent', () => { updatedSelNode.fiatConversion = true; updatedSelNode.currencyUnits = ['BTC', 'SAT', 'USD']; Object.defineProperty(component, 'selNode', { value: updatedSelNode }); - component.onPaymentRequestEntry('lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'); + component.onPaymentRequestEntry('lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3' + + 'txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvr' + + 'c8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630a' + + 'q38j0s3hrgpv4eel3'); expect(component.paymentDecodedHint).toEqual('Sending: 400 Sats (USD 0.13) | Memo: Testing ngrx Effects 4'); }); it('should decode payment when pay request changed and fiat conversion is false', () => { - component.onPaymentRequestEntry('lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'); + component.onPaymentRequestEntry('lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3tx' + + 'vejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8s' + + 's5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j' + + '0s3hrgpv4eel3'); expect(component.paymentDecodedHint).toEqual('Sending: 400 Sats | Memo: Testing ngrx Effects 4'); }); @@ -178,10 +198,14 @@ describe('LightningSendPaymentsComponent', () => { spyOn(component, 'sendPayment').and.callThrough(); component.zeroAmtInvoice = true; component.paymentAmount = 600; - component.paymentRequest = 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'; + component.paymentRequest = 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcq' + + 'p2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqg' + + 'q9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'; component.paymentDecoded = { - destination: '031844beb16bf8dd8c7bc30588b8c37b36e62b71c6e812e9b6d976c0a57e151be2', payment_hash: 'a53968453af7ab6fc58d229a91bdf23d7c121963067f06cf02e1a7b581852c07', timestamp: '1623624612', expiry: '3600', - description: 'Testing ngrx Effects 4', description_hash: '', fallback_addr: '', cltv_expiry: '10', route_hints: [{ hop_hints: [{ node_id: '028ec70462207b57e3d4d9332d9e0aee676c92d89b7c9fb0850fc2a24814d4d83c', chan_id: '2166413939696009216', fee_base_msat: 1000, fee_proportional_millionths: 1, cltv_expiry_delta: 40 }] }], + destination: '031844beb16bf8dd8c7bc30588b8c37b36e62b71c6e812e9b6d976c0a57e151be2', payment_hash: 'a53968453af7ab6fc58d229a91bdf23d7c12' + + '1963067f06cf02e1a7b581852c07', timestamp: '1623624612', expiry: '3600', description: 'Testing ngrx Effects 4', description_hash: '', + fallback_addr: '', cltv_expiry: '10', route_hints: [{ hop_hints: + [{ node_id: '028ec70462207b57e3d4d9332d9e0aee676c92d89b7c9fb0850fc2a24814d4d83c', chan_id: '2166413939696009216', fee_base_msat: 1000, fee_proportional_millionths: 1, cltv_expiry_delta: 40 }] }], payment_addr: 'NIXNBEqCTmqw89joe0m71Z9MrkkBcF1t1ri+9BZehKw=', num_msat: '400000', features: { 9: { name: 'tlv-onion', is_required: false, is_known: true }, 15: { name: 'payment-addr', is_required: false, is_known: true }, 17: { name: 'multi-path-payments', is_required: false, is_known: true } } }; component.onSendPayment(); @@ -194,7 +218,9 @@ describe('LightningSendPaymentsComponent', () => { const onPaymentRequestEntrySpy = spyOn(component, 'onPaymentRequestEntry').and.callThrough(); component.zeroAmtInvoice = true; component.paymentAmount = 600; - component.paymentRequest = 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'; + component.paymentRequest = 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qc' + + 'qp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqq' + + 'qqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3'; component.paymentDecoded = {}; component.onSendPayment(); expect(component.paymentDecoded.num_satoshis).toEqual('400'); @@ -205,7 +231,10 @@ describe('LightningSendPaymentsComponent', () => { it('should decode the zero amount payment when send payment clicked but payment is not decoded yet', () => { const onPaymentRequestEntrySpy = spyOn(component, 'onPaymentRequestEntry').and.callThrough(); component.zeroAmtInvoice = false; - component.paymentRequest = 'lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxvmmjypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qgqdnftgk'; + component.paymentRequest = 'lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxv' + + 'mmjypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjx' + + 'gpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qg' + + 'qdnftgk'; component.paymentDecoded = {}; component.onSendPayment(); fixture.detectChanges(); diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts b/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts index 135a956c..506d6a79 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts @@ -175,12 +175,14 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { this.selectedChannelCtrl.disable(); } this.zeroAmtInvoice = false; - if (this.selNode.fiatConversion) { + if (this.selNode && this.selNode.fiatConversion) { this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : 'BTC'), this.selNode.fiatConversion). pipe(takeUntil(this.unSubs[4])). subscribe({ next: (data) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + ' Sats (' + data.symbol + ' ' + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None'); + this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + + ' Sats (' + data.symbol + ' ' + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None'); }, error: (error) => { this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + ' Sats | Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None') + '. Unable to convert currency.'; } diff --git a/src/app/shared/components/data-modal/alert-message/alert-message.component.html b/src/app/shared/components/data-modal/alert-message/alert-message.component.html index 22f97e60..9c2f6c73 100644 --- a/src/app/shared/components/data-modal/alert-message/alert-message.component.html +++ b/src/app/shared/components/data-modal/alert-message/alert-message.component.html @@ -68,7 +68,7 @@   -
+
diff --git a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html index db432acf..09c02904 100644 --- a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html +++ b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html @@ -37,7 +37,7 @@   -
+
@@ -45,7 +45,7 @@

{{data.titleMessage}}

- + {{getInput.placeholder}} is required. {{getInput.hintFunction ? getInput.hintFunction(getInput.inputValue) : getInput.hintText}} diff --git a/src/app/shared/components/data-modal/is-authorized/is-authorized.component.html b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.html new file mode 100644 index 00000000..bc4b4b82 --- /dev/null +++ b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.html @@ -0,0 +1,21 @@ +
+
+ +
+ Authenticate with your RTL Password +
+ +
+ +
+ + + Password is required. + +
+ +
+
+
+
+
diff --git a/src/app/shared/components/data-modal/is-authorized/is-authorized.component.scss b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/shared/components/data-modal/is-authorized/is-authorized.component.spec.ts b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.spec.ts new file mode 100644 index 00000000..4bd74ec8 --- /dev/null +++ b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.spec.ts @@ -0,0 +1,49 @@ +import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; +import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; +import { StoreModule } from '@ngrx/store'; + +import { RootReducer } from '../../../../store/rtl.reducers'; +import { LNDReducer } from '../../../../lnd/store/lnd.reducers'; +import { CLNReducer } from '../../../../cln/store/cln.reducers'; +import { ECLReducer } from '../../../../eclair/store/ecl.reducers'; +import { IsAuthorizedComponent } from './is-authorized.component'; +import { SharedModule } from '../../../shared.module'; +import { mockMatDialogRef, mockRTLEffects } from '../../../test-helpers/mock-services'; +import { RTLEffects } from '../../../../store/rtl.effects'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; + +describe('IsAuthorizedComponent', () => { + let component: IsAuthorizedComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [IsAuthorizedComponent], + imports: [ + BrowserAnimationsModule, + SharedModule, + StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) + ], + providers: [ + { provide: MatDialogRef, useClass: mockMatDialogRef }, + { provide: MAT_DIALOG_DATA, useValue: { appConfig: {} } }, + { provide: RTLEffects, useClass: mockRTLEffects } + ] + }). + compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(IsAuthorizedComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + afterEach(() => { + TestBed.resetTestingModule(); + }); +}); diff --git a/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts new file mode 100644 index 00000000..26146e48 --- /dev/null +++ b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts @@ -0,0 +1,54 @@ +import { Component, OnDestroy, OnInit } from '@angular/core'; +import { Subject } from 'rxjs'; +import { takeUntil, take } from 'rxjs/operators'; +import { Store } from '@ngrx/store'; +import { MatDialogRef } from '@angular/material/dialog'; +import * as sha256 from 'sha256'; + +import { RTLEffects } from '../../../../store/rtl.effects'; +import { RTLState } from '../../../../store/rtl.state'; +import { isAuthorized, closeAlert } from '../../../../store/rtl.actions'; + +@Component({ + selector: 'rtl-is-authorized', + templateUrl: './is-authorized.component.html', + styleUrls: ['./is-authorized.component.scss'] +}) +export class IsAuthorizedComponent implements OnInit, OnDestroy { + + public password = ''; + public isAuthenticated = false; + private unSubs: Array> = [new Subject(), new Subject()]; + + constructor(public dialogRef: MatDialogRef, private store: Store, private rtlEffects: RTLEffects) { } + + ngOnInit(): void { + this.rtlEffects.isAuthorizedRes. + pipe(take(1)). + subscribe((authRes) => { + if (authRes !== 'ERROR') { + this.isAuthenticated = true; + this.store.dispatch(closeAlert({ payload: this.isAuthenticated })); + } else { + this.isAuthenticated = false; + } + }); + } + + onAuthenticate(): boolean | void { + if (!this.password) { return true; } + this.store.dispatch(isAuthorized({ payload: sha256(this.password) })); + } + + onClose() { + this.store.dispatch(closeAlert({ payload: this.isAuthenticated })); + } + + ngOnDestroy(): void { + this.unSubs.forEach((completeSub) => { + completeSub.next(null); + completeSub.complete(); + }); + } + +} diff --git a/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts b/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts index c4ad44b6..dd1e9898 100644 --- a/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts +++ b/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts @@ -1,7 +1,6 @@ import { Component } from '@angular/core'; import { Store } from '@ngrx/store'; import { MatDialogRef } from '@angular/material/dialog'; -import { faUserClock } from '@fortawesome/free-solid-svg-icons'; import { RTLState } from '../../../../store/rtl.state'; import { closeAlert } from '../../../../store/rtl.actions'; @@ -13,7 +12,6 @@ import { closeAlert } from '../../../../store/rtl.actions'; }) export class LoginTokenComponent { - public faUserClock = faUserClock; public token = ''; constructor(public dialogRef: MatDialogRef, private store: Store) { } diff --git a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html index 3d367cb0..4a0644f5 100644 --- a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html +++ b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html @@ -31,7 +31,7 @@ You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator.
-
+
@@ -47,7 +47,7 @@
{{tokenFormLabel}}
-
+
Token is required. diff --git a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts index 227fa31e..d55bdae6 100644 --- a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts +++ b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts @@ -108,7 +108,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { this.tokenFormGroup.controls.token.setValue(''); } this.flgValidated = true; - if(this.appConfig) { + if (this.appConfig) { this.appConfig.enable2FA = !this.appConfig?.enable2FA; } } diff --git a/src/app/shared/components/help/help.component.html b/src/app/shared/components/help/help.component.html index 9c66817e..fe306fff 100644 --- a/src/app/shared/components/help/help.component.html +++ b/src/app/shared/components/help/help.component.html @@ -12,7 +12,7 @@ - {{!flgLoggedIn ? 'Login to go to the page' : helpTopic.help.linkCaption}} + {{!flgLoggedIn ? 'Login to go to the page' : helpTopic.help.linkCaption}}
diff --git a/src/app/shared/components/help/help.component.ts b/src/app/shared/components/help/help.component.ts index f3ea2c8d..8c3be6cf 100644 --- a/src/app/shared/components/help/help.component.ts +++ b/src/app/shared/components/help/help.component.ts @@ -24,7 +24,28 @@ export class HelpComponent implements OnInit, OnDestroy { public flgLoggedIn = false; private unSubs = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private store: Store, private sessionService: SessionService) { + constructor(private store: Store, private sessionService: SessionService) {} + + ngOnInit() { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { + this.selNode = selNode; + if (this.selNode.lnImplementation && this.selNode.lnImplementation.trim() !== '') { + this.LNPLink = '/' + this.selNode.lnImplementation.toLowerCase() + '/'; + this.addHelpTopics(); + } + }); + this.sessionService.watchSession(). + pipe(takeUntil(this.unSubs[1])). + subscribe((session) => { + this.flgLoggedIn = !!session.token; + }); + if (this.sessionService.getItem('token')) { + this.flgLoggedIn = true; + } + } + + addHelpTopics() { + this.helpTopics = []; this.helpTopics.push(new HelpTopic({ question: 'Getting started', answer: 'Funding your node is the first step to get started.\n' + @@ -33,8 +54,8 @@ export class HelpComponent implements OnInit, OnDestroy { '2. Send funds to the address.\n' + '3. Wait for the balance to be confirmed on-chain before proceeding further.\n' + '3. Connecting with network peers and opening channels is next.\n', - link: 'onchain', - linkCaption: 'On-Chain page', + link: this.LNPLink + 'onchain/receive/utxos', + linkCaption: 'On-Chain', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ @@ -48,24 +69,25 @@ export class HelpComponent implements OnInit, OnDestroy { ' a. View Info - View the peer details.\n' + ' b. Open Channel - Open channel with the peer.\n' + ' c. Disconnect - Disconnect from the peer.\n', - link: 'peerschannels', - linkCaption: 'Peers/Channels page', + link: this.LNPLink + 'connections/peers', + linkCaption: 'Peers', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ question: 'Opening Channels', - answer: 'Open channels with a connected network peer.\n' + + answer: 'Open channels with a connected peer.\n' + 'Go to "Peer/Channels" page under the "Lightning" menu:\n' + - '1. On the "Channels" section, select the alias of the connected peer from the drop-down\n' + + '1. On the "Channels" section, click on "Open Channel"\n' + + '2. On the "Open Channel" modal, select the alias of the connected peer from the drop-down\n' + '2. Specify the amount to commit to the channel and click on "Open Channel".\n' + '3. There are a variety of options available while opening a channel. \n' + ' a. Private Channel - When this option is selected, a private channel is opened with the peer. \n' + ' b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n' + ' c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n' + - '4. Track the pending open channels under the "Pending" tab . \n' + + '4. Track the pending open channels under the "Pending" tab. \n' + '5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n', - link: 'peerschannels', - linkCaption: 'Peers/Channels page', + link: this.LNPLink + 'connections/channels/open', + linkCaption: 'Channels', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ @@ -76,49 +98,70 @@ export class HelpComponent implements OnInit, OnDestroy { ' a. View Info - View the channel details.\n' + ' b. View Remote Fee - View the fee policy on the channel of the remote peer.\n' + ' c. Update Fee Policy - Modify the fee policy on the channel.\n' + - ' d. Close Channel - Close the channel.\n' + + ' d. Circular Rebalance - Off-chain rebalance channels by making a payment to yourself across a circular path of chained payment channels.\n' + + ' e. Close Channel - Close the channel.\n' + '2. Balance Score is a "balancedness" metric score for the channel. \n' + ' a. It helps measure how balanced the remote and local balances are, on a channel.\n' + ' b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n' + ' c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n', - link: 'peerschannels', - linkCaption: 'Peers/Channels page', + link: this.LNPLink + 'connections/channels/open', + linkCaption: 'Channels', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ - question: 'Lightning Transactions - Payments', + question: 'Buying Liquidity', + answer: 'Buying liquidity for your node.\n' + + 'Go to "Liquidity Ads" page under the "Lightning" menu:\n' + + ' 1. Filter ads by liquidity amount and channel opening fee rate.\n' + + ' 2. Research additionally on liquidity provider nodes before selecting.\n' + + ' 3. Select the best liquidity node peer for your need and click on "Open Channel" from "Actions" drop-down.\n' + + ' 4. Confirm amount, rates and total cost on the modal and click on "Execute" to buy liquidity.\n', + link: this.LNPLink + 'liquidityads', + linkCaption: 'Liquidity Ads', + lnImplementation: 'CLN' + })); + this.helpTopics.push(new HelpTopic({ + question: 'Payments', answer: 'Sending Payments from your node.\n' + 'Go to the "Transactions" page under the "Lightning" menu :\n' + 'Payments tab is for making payments via your node\n' + - ' 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment request" field and click on "Send Payment" to send.\n' + + ' 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment Request" field and click on "Send Payment" to send.\n' + ' 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n' + ' 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n', - link: 'transactions', - linkCaption: 'Transactions page', + link: this.LNPLink + 'transactions/payments', + linkCaption: 'Payments', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ - question: 'Lightning Transactions - Invoices', + question: 'Invoices', answer: 'Receiving Payments on your node.\n' + 'Go to the "Transactions" page under the "Lightning" menu :\n' + 'Invoices tab is for receiving payments on your node.\n' + ' 1. Memo - Description you want to provide on the invoice.\n' + ' 2. Expiry - The time period, after which the invoice will be invalid.\n' + ' 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n', - link: 'transactions', - linkCaption: 'Transactions page', + link: this.LNPLink + 'transactions/invoices', + linkCaption: 'Invoices', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ - question: 'Lightning Transactions - Query Route', - answer: 'Querying Payment Routes.\n' + + question: 'Offers', + answer: 'Send offer payments, create offer invoices and bookmark paid offers on your node.\n' + 'Go to the "Transactions" page under the "Lightning" menu :\n' + - 'Query Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n' + - ' 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n' + - ' 2. Amount - Amount in Sats, which you want to send to the node.\n', - link: 'transactions', - linkCaption: 'Transactions page', - lnImplementation: 'ALL' + 'Payment for bolt12 offer invoice can be done on "Payments" tab:\n' + + ' 1. Click on "Send Payment" button.\n' + + ' 2. Select "Offer" option on the modal.\n' + + ' 2. Offer Request - Input offer request (Bolt12 format) in the input box.\n' + + ' 3. Bookmark - Select the checkbox to bookmark this offer for future use.\n' + + 'Offers tab is for creating bolt12 offer invoice on your node:\n' + + ' 1. Click on "Create Offer" button.\n' + + ' 2. Description - Description you want to provide on the offer invoice.\n' + + ' 3. Amount - Amount for the offer invoice.\n' + + ' 4. Vendor - Vendor of the offer.\n' + + 'Paid offer bookmarks shows the list of paid offers saved for future payments.\n', + link: this.LNPLink + 'transactions/offers', + linkCaption: 'Offers', + lnImplementation: 'CLN' })); this.helpTopics.push(new HelpTopic({ question: 'Channel Backups', @@ -128,7 +171,7 @@ export class HelpComponent implements OnInit, OnDestroy { 'You can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\n' + 'You can also backup each channel individually and verify them.\n' + '** Keep taking backups of your channels regularly and store them in redundant locations **.\n', - link: 'backup', + link: this.LNPLink + 'channelbackup/bckup', linkCaption: 'Channel Backups', lnImplementation: 'LND' })); @@ -150,8 +193,8 @@ export class HelpComponent implements OnInit, OnDestroy { '8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n' + '9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n' + '10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n', - link: 'backup', - linkCaption: 'Channel Backups', + link: this.LNPLink + 'channelbackup/restore', + linkCaption: 'Channel Restore', lnImplementation: 'LND' })); this.helpTopics.push(new HelpTopic({ @@ -159,10 +202,19 @@ export class HelpComponent implements OnInit, OnDestroy { answer: 'Transactions routed by the node.\n' + 'Go to "Routing" page under the "Lightning" menu :\n' + 'Transactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n', - link: 'routing', + link: this.LNPLink + 'routing/forwardinghistory', linkCaption: 'Forwarding History', lnImplementation: 'ALL' })); + this.helpTopics.push(new HelpTopic({ + question: 'Lightning Reports', + answer: 'Routing and transactions data reports.\n' + + 'Go to "Reports" page under the "Lightning" menu :\n' + + 'Report can be generated on monthly/yearly basis by selecting the reporting period, month, and year.\n', + link: this.LNPLink + 'reports/routingreport', + linkCaption: 'Reports', + lnImplementation: 'ALL' + })); this.helpTopics.push(new HelpTopic({ question: 'Graph Lookup', answer: 'Querying your node graph for network node and channel information.\n' + @@ -171,48 +223,73 @@ export class HelpComponent implements OnInit, OnDestroy { 'You can lookup information on nodes and channels from your graph:\n' + ' 1. Node Lookup - Enter the pubkey to perform the lookup.\n' + ' 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n', - link: 'lookups', - linkCaption: 'Graph Lookup page', + link: this.LNPLink + 'graph/lookups', + linkCaption: 'Graph Lookup', lnImplementation: 'ALL' })); this.helpTopics.push(new HelpTopic({ - question: 'Settings', - answer: 'RTL Offers certain customizations on the UI to personalize your experience on the app\n' + - 'Go to "Settings" page to access the customization options.\n' + + question: 'Query Route', + answer: 'Querying Payment Routes.\n' + + 'Go to the "Graph Lookup" page under the "Lightning" menu :\n' + + 'Query Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n' + + ' 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n' + + ' 2. Amount - Amount in Sats, which you want to send to the node.\n', + link: this.LNPLink + 'graph/queryroutes', + linkCaption: 'Query Routes', + lnImplementation: 'ALL' + })); + this.helpTopics.push(new HelpTopic({ + question: 'Sign & Verify Messages', + answer: 'Messages signing and verification.\n' + + 'Go to the "Sign/Verify" page under the "Lightning" menu :\n' + + ' 1. Sign your message on "Sign" tab.\n' + + ' 2. Go to "Verify" tab to verify a message.\n', + link: this.LNPLink + 'messages/sign', + linkCaption: 'Messages', + lnImplementation: 'LND' + })); + this.helpTopics.push(new HelpTopic({ + question: 'Sign & Verify Messages', + answer: 'Messages signing and verification.\n' + + 'Go to the "Sign/Verify" page under the "Lightning" menu :\n' + + ' 1. Sign your message on "Sign" tab.\n' + + ' 2. Go to "Verify" tab to verify a message.\n', + link: this.LNPLink + 'messages/sign', + linkCaption: 'Messages', + lnImplementation: 'CLN' + })); + this.helpTopics.push(new HelpTopic({ + question: 'Node Settings', + answer: 'RTL offers certain customizations on the UI to personalize your experience on the app\n' + + 'Go to "Node Config" page to access the customization options.\n' + 'Node Layout Options\n' + ' 1. User Persona - Two options are available to change the dashboard based on the persona.\n' + ' 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n' + - ' 3. Default Node - If you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\n' + - 'Other Customizations include day and night mode and a choice of color themes to select from.\n', + ' 3. Other customizations include day and night mode and a choice of color themes to select from.\n' + + 'Services Options\n' + + ' Loop (LND only), Boltz (LND only) & Peerswap (CLN only) services can be configured.\n' + + 'Experimental Options (CLN only)\n' + + ' Offers and Liquidity Ads can be enabled/disabled.\n' + + 'Show LN Config (if configured)\n' + + ' Shows lightning config file.\n', + link: '../config/layout', + linkCaption: 'Node Settings', + lnImplementation: 'ALL' + })); + this.helpTopics.push(new HelpTopic({ + question: 'Application Settings', + answer: 'RTL also offers certain customizations on the application level\n' + + 'Go to top right menu "Settings" page to access these options.\n' + + 'Default Node Option\n' + + 'If you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\n' + + 'Authentication Option\n' + + 'Password and 2FA update options are available here.\n' + + 'Show Bitcoin Config (if configured)\n' + + ' Shows bitcoin config file.\n', + link: '../settings/app', + linkCaption: 'Application Settings', lnImplementation: 'ALL' })); - } - - ngOnInit() { - this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { - this.selNode = selNode; - switch (this.selNode.lnImplementation?.toUpperCase()) { - case 'CLN': - this.LNPLink = '/cln/'; - break; - - case 'ECL': - this.LNPLink = '/ecl/'; - break; - - default: - this.LNPLink = '/lnd/'; - break; - } - }); - this.sessionService.watchSession(). - pipe(takeUntil(this.unSubs[1])). - subscribe((session) => { - this.flgLoggedIn = !!session.token; - }); - if (this.sessionService.getItem('token')) { - this.flgLoggedIn = true; - } } ngOnDestroy() { diff --git a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html index 67c290d8..a32be10a 100755 --- a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html +++ b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html @@ -16,7 +16,7 @@
-
+
Range: {{serviceInfo?.limits?.minimal | number}}-{{serviceInfo?.limits?.maximal | number}} diff --git a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts index 626d7787..ad4e8d01 100755 --- a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts @@ -47,7 +47,7 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { statusFormGroup: FormGroup; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: SwapAlert, private store: Store, private boltzService: BoltzService, private formBuilder: FormBuilder, private decimalPipe: DecimalPipe, private logger: LoggerService, private router: Router, private commonService: CommonService) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: SwapAlert, private boltzService: BoltzService, private formBuilder: FormBuilder, private decimalPipe: DecimalPipe, private logger: LoggerService, private commonService: CommonService) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); diff --git a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html index c2732bd3..4937c066 100755 --- a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html +++ b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.html @@ -4,66 +4,127 @@ {{swapCaption}} History
- - - +
+ + + {{getLabel(column)}} + + + + + +
- - + + - - + + - - - - - + - - + + + + + + - + - - + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - @@ -72,7 +133,7 @@ - +
Status {{swapStateEnum[swap.status]}}Status{{swapStateEnum[swap?.status]}} Swap ID {{swap.id}}Swap ID{{swap?.id}} Claim Address {{swap.claimAddress}} Onchain Amount (Sats) Claim Address - {{swap.onchainAmount | number}} + + {{swap?.claimAddress}} + Lockup Address {{swap.lockupAddress}}Lockup Address + + {{swap?.lockupAddress}} + + Onchain Amount (Sats) + {{swap?.onchainAmount | number}} + Expected Amount (Sats) Expected Amount (Sats) - {{swap.expectedAmount | number}} + {{swap?.expectedAmount | number}} Timeout Block Height Error + + {{swap?.error}} + + Private Key - {{swap.timeoutBlockHeight | number}} + + {{swap?.privateKey}} + Amount (Sats) Preimage - {{swap.amt | number}} + + {{swap?.preimage}} + Redeem Script + + {{swap?.redeemScript}} + + Invoice + + {{swap?.invoice}} + + Timeout Block Height + {{swap?.timeoutBlockHeight | number}} + Lockup Tx ID{{swap?.lockupTransactionId}}Claim Tx ID{{swap?.claimTransactionId}}Refund Tx ID{{swap?.refundTransactionId}} -
+
+
Download CSV
-
+ + + (click)="onSwapClick(swap, $event)" class="table-actions-button">View Info
diff --git a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.scss b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.scss index 4ad066b1..e69de29b 100755 --- a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.scss +++ b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.scss @@ -1,4 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} - \ No newline at end of file diff --git a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts index f2303ba8..9e4d73fd 100755 --- a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts +++ b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts @@ -1,4 +1,4 @@ -import { Component, OnChanges, OnDestroy, ViewChild, Input, AfterViewInit, SimpleChanges } from '@angular/core'; +import { Component, OnChanges, OnDestroy, ViewChild, Input, AfterViewInit, SimpleChanges, OnInit } from '@angular/core'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; @@ -8,13 +8,17 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { Swap, ReverseSwap } from '../../../../models/boltzModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, SwapTypeEnum, SwapStateEnum } from '../../../../services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, SwapTypeEnum, SwapStateEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../services/consts-enums-functions'; import { LoggerService } from '../../../../services/logger.service'; import { CommonService } from '../../../../services/common.service'; import { BoltzService } from '../../../../services/boltz.service'; import { openAlert } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../models/pageSettings'; +import { lndPageSettings } from '../../../../../lnd/store/lnd.selector'; +import { ApiCallStatusPayload } from '../../../../models/apiCallsPayload'; +import { CamelCaseWithReplacePipe } from '../../../../pipes/app.pipe'; @Component({ selector: 'rtl-boltz-swaps', @@ -24,7 +28,7 @@ import { RTLState } from '../../../../../store/rtl.state'; { provide: MatPaginatorIntl, useValue: getPaginatorLabel('Swaps') } ] }) -export class BoltzSwapsComponent implements AfterViewInit, OnChanges, OnDestroy { +export class BoltzSwapsComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy { @Input() selectedSwapType: SwapTypeEnum = SwapTypeEnum.SWAP_OUT; @Input() swapsData: Swap[] | ReverseSwap[] = []; @@ -32,22 +36,42 @@ export class BoltzSwapsComponent implements AfterViewInit, OnChanges, OnDestroy @Input() emptyTableMessage = 'No swaps available.'; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'boltz'; + public tableSettingSwapOut: TableSetting = { tableId: 'swap_out', recordsPerPage: PAGE_SIZE, sortBy: 'status', sortOrder: SortOrderEnum.DESCENDING }; + public tableSettingSwapIn: TableSetting = { tableId: 'swap_in', recordsPerPage: PAGE_SIZE, sortBy: 'status', sortOrder: SortOrderEnum.DESCENDING }; public swapStateEnum = SwapStateEnum; public faHistory = faHistory; public swapCaption = 'Swap Out'; public displayedColumns: any[] = []; - public listSwaps: any; + public listSwaps: any = new MatTableDataSource([]); public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private boltzService: BoltzService) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private boltzService: BoltzService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - this.setTableColumns(); + } + + ngOnInit() { + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSettingSwapOut = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSettingSwapOut.tableId) || + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSettingSwapOut.tableId)!; + this.tableSettingSwapIn = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSettingSwapIn.tableId) || + LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSettingSwapIn.tableId)!; + this.setTableColumns(); + if (this.swapsData && this.swapsData.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { + this.loadSwapsTable(this.swapsData); + } + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); } ngAfterViewInit() { @@ -65,24 +89,22 @@ export class BoltzSwapsComponent implements AfterViewInit, OnChanges, OnDestroy } setTableColumns() { - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = (this.selectedSwapType === SwapTypeEnum.SWAP_IN) ? - ['status', 'id', 'expectedAmount', 'actions'] : ['status', 'id', 'onchainAmount', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = (this.selectedSwapType === SwapTypeEnum.SWAP_IN) ? - ['status', 'id', 'expectedAmount', 'actions'] : ['status', 'id', 'onchainAmount', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = (this.selectedSwapType === SwapTypeEnum.SWAP_IN) ? - ['status', 'id', 'expectedAmount', 'timeoutBlockHeight', 'actions'] : - ['status', 'id', 'onchainAmount', 'timeoutBlockHeight', 'actions']; + if (this.selectedSwapType === SwapTypeEnum.SWAP_IN) { + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSettingSwapIn.recordsPerPage ? +this.tableSettingSwapIn.recordsPerPage : PAGE_SIZE; } else { - this.flgSticky = true; - this.displayedColumns = (this.selectedSwapType === SwapTypeEnum.SWAP_IN) ? - ['status', 'id', 'lockupAddress', 'expectedAmount', 'timeoutBlockHeight', 'actions'] : - ['status', 'id', 'claimAddress', 'onchainAmount', 'timeoutBlockHeight', 'actions']; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSettingSwapOut.recordsPerPage ? +this.tableSettingSwapOut.recordsPerPage : PAGE_SIZE; } } @@ -92,22 +114,51 @@ export class BoltzSwapsComponent implements AfterViewInit, OnChanges, OnDestroy } } + getLabel(column: string) { + const tableId = (this.selectedSwapType === SwapTypeEnum.SWAP_IN) ? this.tableSettingSwapIn.tableId : this.tableSettingSwapOut.tableId; + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.listSwaps.filterPredicate = (rowData: Swap, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'status': + rowToFilter = rowData?.status ? this.swapStateEnum[rowData?.status] : ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'status' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + onSwapClick(selSwap: Swap | ReverseSwap, event: any) { this.boltzService.swapInfo(selSwap.id || '').pipe(takeUntil(this.unSubs[1])). subscribe((fetchedSwap: any) => { fetchedSwap = (this.selectedSwapType === SwapTypeEnum.SWAP_IN) ? fetchedSwap.swap : fetchedSwap.reverseSwap; const reorderedSwap = [ [{ key: 'status', value: SwapStateEnum[fetchedSwap.status], title: 'Status', width: 50, type: DataTypeEnum.STRING }, - { key: 'id', value: fetchedSwap.id, title: 'ID', width: 50, type: DataTypeEnum.STRING }], - [{ key: 'amount', value: fetchedSwap.onchainAmount ? fetchedSwap.onchainAmount : fetchedSwap.expectedAmount ? fetchedSwap.expectedAmount : 0, title: fetchedSwap.onchainAmount ? 'Onchain Amount (Sats)' : fetchedSwap.expectedAmount ? 'Expected Amount (Sats)' : 'Amount (Sats)', width: 50, type: DataTypeEnum.NUMBER }, - { key: 'timeoutBlockHeight', value: fetchedSwap.timeoutBlockHeight, title: 'Timeout Block Height', width: 50, type: DataTypeEnum.NUMBER }], + { key: 'id', value: fetchedSwap.id, title: 'ID', width: 50, type: DataTypeEnum.STRING }], + [{ key: 'amount', value: fetchedSwap.onchainAmount ? fetchedSwap.onchainAmount : fetchedSwap.expectedAmount ? fetchedSwap.expectedAmount : 0, + title: fetchedSwap.onchainAmount ? 'Onchain Amount (Sats)' : fetchedSwap.expectedAmount ? 'Expected Amount (Sats)' : 'Amount (Sats)', width: 50, type: DataTypeEnum.NUMBER }, + { key: 'timeoutBlockHeight', value: fetchedSwap.timeoutBlockHeight, title: 'Timeout Block Height', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'address', value: fetchedSwap.claimAddress ? fetchedSwap.claimAddress : fetchedSwap.lockupAddress ? fetchedSwap.lockupAddress : '', title: fetchedSwap.claimAddress ? 'Claim Address' : fetchedSwap.lockupAddress ? 'Lockup Address' : 'Address', width: 100, type: DataTypeEnum.STRING }], [{ key: 'invoice', value: fetchedSwap.invoice, title: 'Invoice', width: 100, type: DataTypeEnum.STRING }], [{ key: 'privateKey', value: fetchedSwap.privateKey, title: 'Private Key', width: 100, type: DataTypeEnum.STRING }], [{ key: 'preimage', value: fetchedSwap.preimage, title: 'Preimage', width: 100, type: DataTypeEnum.STRING }], [{ key: 'redeemScript', value: fetchedSwap.redeemScript, title: 'Redeem Script', width: 100, type: DataTypeEnum.STRING }], [{ key: 'lockupTransactionId', value: fetchedSwap.lockupTransactionId, title: 'Lockup Transaction ID', width: 50, type: DataTypeEnum.STRING }, - { key: 'transactionId', value: fetchedSwap.claimTransactionId ? fetchedSwap.claimTransactionId : fetchedSwap.refundTransactionId ? fetchedSwap.refundTransactionId : '', title: fetchedSwap.claimTransactionId ? 'Claim Transaction ID' : fetchedSwap.refundTransactionId ? 'Refund Transaction ID' : 'Transaction ID', width: 50, type: DataTypeEnum.STRING }] + { key: 'transactionId', value: fetchedSwap.claimTransactionId ? fetchedSwap.claimTransactionId : fetchedSwap.refundTransactionId ? + fetchedSwap.refundTransactionId : '', title: fetchedSwap.claimTransactionId ? 'Claim Transaction ID' : + fetchedSwap.refundTransactionId ? 'Refund Transaction ID' : 'Transaction ID', width: 50, type: DataTypeEnum.STRING }] ]; this.store.dispatch(openAlert({ payload: { @@ -126,11 +177,16 @@ export class BoltzSwapsComponent implements AfterViewInit, OnChanges, OnDestroy this.listSwaps = swaps ? new MatTableDataSource([...swaps]) : new MatTableDataSource([]); this.listSwaps.sort = this.sort; this.listSwaps.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.listSwaps.filterPredicate = (swap: Swap, fltr: string) => JSON.stringify(swap).toLowerCase().includes(fltr); + if (this.selectedSwapType === SwapTypeEnum.SWAP_IN) { + this.listSwaps.sort?.sort({ id: this.tableSettingSwapIn.sortBy, start: this.tableSettingSwapIn.sortOrder, disableClear: true }); + } else { + this.listSwaps.sort?.sort({ id: this.tableSettingSwapOut.sortBy, start: this.tableSettingSwapOut.sortOrder, disableClear: true }); + } if (this.paginator) { this.paginator.firstPage(); } this.listSwaps.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listSwaps); } diff --git a/src/app/shared/components/ln-services/ln-services.component.ts b/src/app/shared/components/ln-services/ln-services.component.ts index b55f6223..db364a26 100755 --- a/src/app/shared/components/ln-services/ln-services.component.ts +++ b/src/app/shared/components/ln-services/ln-services.component.ts @@ -1,16 +1,12 @@ -import { Component, OnInit, OnDestroy } from '@angular/core'; +import { Component } from '@angular/core'; @Component({ selector: 'rtl-ln-services', templateUrl: './ln-services.component.html', styleUrls: ['./ln-services.component.scss'] }) -export class LNServicesComponent implements OnInit, OnDestroy { +export class LNServicesComponent { constructor() {} - ngOnInit() {} - - ngOnDestroy() {} - } diff --git a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html index caab2d3d..da7110c6 100755 --- a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html +++ b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html @@ -22,7 +22,7 @@
-
+
Range: {{minQuote.amount | number}}-{{maxQuote.amount | number}} @@ -42,7 +42,7 @@ Percentage must be a positive number.
-
+
Fast info_outline
diff --git a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts index 2b4957f4..8d7483b7 100755 --- a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts +++ b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts @@ -57,7 +57,16 @@ export class LoopModalComponent implements OnInit, AfterViewInit, OnDestroy { statusFormGroup: FormGroup; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: LoopAlert, private store: Store, private loopService: LoopService, private formBuilder: FormBuilder, private decimalPipe: DecimalPipe, private logger: LoggerService, private router: Router, private commonService: CommonService) { } + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: LoopAlert, + private store: Store, + private loopService: LoopService, + private formBuilder: FormBuilder, + private decimalPipe: DecimalPipe, + private logger: LoggerService, + private router: Router, + private commonService: CommonService) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); @@ -152,7 +161,10 @@ export class LoopModalComponent implements OnInit, AfterViewInit, OnDestroy { const swapRoutingFee = Math.ceil(this.inputFormGroup.controls.amount.value * (this.inputFormGroup.controls.routingFeePercent.value / 100)); const destAddress = this.addressFormGroup.controls.addressType.value === 'external' ? this.addressFormGroup.controls.address.value : ''; const swapPublicationDeadline = this.inputFormGroup.controls.fast.value ? 0 : new Date().getTime() + (30 * 60000); - this.loopService.loopOut(this.inputFormGroup.controls.amount.value, (this.channel && this.channel.chan_id ? this.channel.chan_id : ''), this.inputFormGroup.controls.sweepConfTarget.value, swapRoutingFee, +(this.quote.htlc_sweep_fee_sat || 0), this.prepayRoutingFee, +(this.quote.prepay_amt_sat || 0), +(this.quote.swap_fee_sat || 0), swapPublicationDeadline, destAddress).pipe(takeUntil(this.unSubs[1])). + this.loopService.loopOut( + this.inputFormGroup.controls.amount.value, (this.channel && this.channel.chan_id ? this.channel.chan_id : ''), + this.inputFormGroup.controls.sweepConfTarget.value, swapRoutingFee, +(this.quote.htlc_sweep_fee_sat || 0), this.prepayRoutingFee, + +(this.quote.prepay_amt_sat || 0), +(this.quote.swap_fee_sat || 0), swapPublicationDeadline, destAddress).pipe(takeUntil(this.unSubs[1])). subscribe({ next: (loopStatus: any) => { this.loopStatus = loopStatus; @@ -168,7 +180,9 @@ export class LoopModalComponent implements OnInit, AfterViewInit, OnDestroy { } onEstimateQuote(): boolean | void { - if (!this.inputFormGroup.controls.amount.value || (this.minQuote.amount && this.inputFormGroup.controls.amount.value < this.minQuote.amount) || (this.maxQuote.amount && this.inputFormGroup.controls.amount.value > this.maxQuote.amount) || !this.inputFormGroup.controls.sweepConfTarget.value || this.inputFormGroup.controls.sweepConfTarget.value < 2) { + if (!this.inputFormGroup.controls.amount.value || (this.minQuote.amount && this.inputFormGroup.controls.amount.value < this.minQuote.amount) || + (this.maxQuote.amount && this.inputFormGroup.controls.amount.value > this.maxQuote.amount) || + !this.inputFormGroup.controls.sweepConfTarget.value || this.inputFormGroup.controls.sweepConfTarget.value < 2) { return true; } const swapPublicationDeadline = this.inputFormGroup.controls.fast.value ? 0 : new Date().getTime() + (30 * 60000); @@ -202,7 +216,9 @@ export class LoopModalComponent implements OnInit, AfterViewInit, OnDestroy { case 1: if (this.inputFormGroup.controls.amount.value || this.inputFormGroup.controls.sweepConfTarget.value) { if (this.direction === LoopTypeEnum.LOOP_IN) { - this.inputFormLabel = this.loopDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Target Confirmation: ' + (this.inputFormGroup.controls.sweepConfTarget.value ? this.inputFormGroup.controls.sweepConfTarget.value : 6); + this.inputFormLabel = this.loopDirectionCaption + ' Amount: ' + + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + + ' Sats | Target Confirmation: ' + (this.inputFormGroup.controls.sweepConfTarget.value ? this.inputFormGroup.controls.sweepConfTarget.value : 6); } else { this.inputFormLabel = this.loopDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Target Confirmation: ' + @@ -220,7 +236,10 @@ export class LoopModalComponent implements OnInit, AfterViewInit, OnDestroy { case 2: if (this.inputFormGroup.controls.amount.value || this.inputFormGroup.controls.sweepConfTarget.value) { if (this.direction === LoopTypeEnum.LOOP_IN) { - this.inputFormLabel = this.loopDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Target Confirmation: ' + (this.inputFormGroup.controls.sweepConfTarget.value ? this.inputFormGroup.controls.sweepConfTarget.value : 6); + this.inputFormLabel = this.loopDirectionCaption + ' Amount: ' + + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + + ' Sats | Target Confirmation: ' + (this.inputFormGroup.controls.sweepConfTarget.value ? + this.inputFormGroup.controls.sweepConfTarget.value : 6); } else { this.inputFormLabel = this.loopDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Target Confirmation: ' + diff --git a/src/app/shared/components/ln-services/loop/swaps/swaps.component.html b/src/app/shared/components/ln-services/loop/swaps/swaps.component.html index 282b7ae8..12fd6b4b 100755 --- a/src/app/shared/components/ln-services/loop/swaps/swaps.component.html +++ b/src/app/shared/components/ln-services/loop/swaps/swaps.component.html @@ -4,69 +4,88 @@ {{swapCaption}} History
- - - +
+ + + {{getLabel(column)}} + + + + + +
+ + + + - - + + - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + - + + + + + + + + + + + + + - - @@ -75,7 +94,7 @@ - +
State{{LoopStateEnum[swap?.state]}} Initiation Time {{(swap.initiation_time/1000000) | date:'dd/MMM/y HH:mm'}}Initiation Time{{(swap?.initiation_time/1000000) | date:'dd/MMM/y HH:mm'}} Last Update Time {{(swap.last_update_time/1000000) | date:'dd/MMM/y HH:mm'}} ID {{swap.id}} ID (Bytes) {{swap.id_bytes}} State {{LoopStateEnum[swap.state]}} HTLC Address {{swap.htlc_address}}Last Update Time{{(swap?.last_update_time/1000000) | date:'dd/MMM/y HH:mm'}} Amount (Sats) Amount (Sats) - {{swap.amt | number}} + {{swap?.amt | number}} Cost Server (Sats) {{swap.cost_server | number}}Cost Server (Sats){{swap?.cost_server | number}} Cost Offchain (Sats) {{swap.cost_offchain | number}}Cost Offchain (Sats){{swap?.cost_offchain | number}} Cost Onchain (Sats) Cost Onchain (Sats) {{swap?.cost_onchain | number}} HTLC Address + + {{swap?.htlc_address}} + + ID + + {{swap?.id}} + + ID (Bytes) + + {{swap?.id_bytes}} + + -
+
+
Download CSV
-
+ + + (click)="onSwapClick(swap, $event)" class="table-actions-button">View Info
diff --git a/src/app/shared/components/ln-services/loop/swaps/swaps.component.scss b/src/app/shared/components/ln-services/loop/swaps/swaps.component.scss index 4ad066b1..e69de29b 100755 --- a/src/app/shared/components/ln-services/loop/swaps/swaps.component.scss +++ b/src/app/shared/components/ln-services/loop/swaps/swaps.component.scss @@ -1,4 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} - \ No newline at end of file diff --git a/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts b/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts index 4c91f0bd..3e5682c1 100755 --- a/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts +++ b/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts @@ -1,21 +1,25 @@ -import { Component, OnChanges, OnDestroy, ViewChild, Input, AfterViewInit, SimpleChanges } from '@angular/core'; +import { Component, OnChanges, OnDestroy, ViewChild, Input, AfterViewInit, SimpleChanges, OnInit } from '@angular/core'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; -import { Actions } from '@ngrx/effects'; import { faHistory } from '@fortawesome/free-solid-svg-icons'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { LoopSwapStatus } from '../../../../models/loopModels'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, LoopTypeEnum, LoopStateEnum } from '../../../../services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, LoopTypeEnum, LoopStateEnum, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../services/consts-enums-functions'; import { LoggerService } from '../../../../services/logger.service'; import { CommonService } from '../../../../services/common.service'; import { LoopService } from '../../../../services/loop.service'; import { RTLState } from '../../../../../store/rtl.state'; import { openAlert } from '../../../../../store/rtl.actions'; +import { ColumnDefinition, PageSettings, TableSetting } from '../../../../models/pageSettings'; +import { lndPageSettings } from '../../../../../lnd/store/lnd.selector'; +import { ApiCallStatusPayload } from '../../../../models/apiCallsPayload'; +import { CamelCaseWithReplacePipe } from '../../../../pipes/app.pipe'; +import { DatePipe } from '@angular/common'; @Component({ selector: 'rtl-swaps', @@ -25,7 +29,7 @@ import { openAlert } from '../../../../../store/rtl.actions'; { provide: MatPaginatorIntl, useValue: getPaginatorLabel('Swaps') } ] }) -export class SwapsComponent implements AfterViewInit, OnChanges, OnDestroy { +export class SwapsComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy { @Input() selectedSwapType: LoopTypeEnum = LoopTypeEnum.LOOP_OUT; @Input() swapsData: LoopSwapStatus[] = []; @@ -33,34 +37,44 @@ export class SwapsComponent implements AfterViewInit, OnChanges, OnDestroy { @Input() emptyTableMessage = 'No swaps available.'; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs = LND_PAGE_DEFS; + public selFilterBy = 'all'; + public colWidth = '20rem'; + public PAGE_ID = 'loop'; + public tableSetting: TableSetting = { tableId: 'loop', recordsPerPage: PAGE_SIZE, sortBy: 'initiation_time', sortOrder: SortOrderEnum.DESCENDING }; public LoopStateEnum = LoopStateEnum; public faHistory = faHistory; public swapCaption = 'Loop Out'; public displayedColumns: any[] = []; - public listSwaps: any; + public listSwaps: any = new MatTableDataSource([]); public selFilter = ''; - public flgSticky = false; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private loopService: LoopService) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private loopService: LoopService, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS) { - this.flgSticky = false; - this.displayedColumns = ['state', 'amt', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['state', 'amt', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['state', 'initiation_time', 'amt', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['state', 'initiation_time', 'amt', 'cost_server', 'cost_offchain', 'cost_onchain', 'actions']; - } + } + + ngOnInit() { + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[0])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + this.tableSetting = settings.pageSettings.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId) || LND_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === this.PAGE_ID)?.tables.find((table) => table.tableId === this.tableSetting.tableId)!; + if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)); + } else { + this.displayedColumns = JSON.parse(JSON.stringify(this.tableSetting.columnSelection)); + } + this.displayedColumns.push('actions'); + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; + if (this.swapsData && this.swapsData.length > 0 && this.sort && this.paginator && this.displayedColumns.length > 0) { + this.loadSwapsTable(this.swapsData); + } + this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 10) + 'rem' : '20rem'; + this.logger.info(this.displayedColumns); + }); } ngAfterViewInit() { @@ -78,8 +92,38 @@ export class SwapsComponent implements AfterViewInit, OnChanges, OnDestroy { this.listSwaps.filter = this.selFilter.trim().toLowerCase(); } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.listSwaps.filterPredicate = (rowData: LoopSwapStatus, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = JSON.stringify(rowData).toLowerCase(); + break; + + case 'state': + rowToFilter = rowData?.state ? this.LoopStateEnum[rowData?.state] : ''; + break; + + case 'initiation_time': + case 'last_update_time': + rowToFilter = this.datePipe.transform(new Date((rowData[this.selFilterBy] || 0) / 1000000), 'dd/MMM/y HH:mm')?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return this.selFilterBy === 'state' ? rowToFilter.indexOf(fltr) === 0 : rowToFilter.includes(fltr); + }; + } + onSwapClick(selSwap: LoopSwapStatus, event: any) { - this.loopService.getSwap(selSwap.id_bytes?.replace(/\//g, '_')?.replace(/\+/g, '-') || '').pipe(takeUntil(this.unSubs[2])). + this.loopService.getSwap(selSwap.id_bytes?.replace(/\//g, '_')?.replace(/\+/g, '-') || '').pipe(takeUntil(this.unSubs[1])). subscribe((fetchedSwap: LoopSwapStatus) => { const reorderedSwap = [ [{ key: 'state', value: LoopStateEnum[fetchedSwap.state || ''], title: 'Status', width: 50, type: DataTypeEnum.STRING }, @@ -109,8 +153,9 @@ export class SwapsComponent implements AfterViewInit, OnChanges, OnDestroy { this.listSwaps = new MatTableDataSource([...swaps]); this.listSwaps.sort = this.sort; this.listSwaps.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); - this.listSwaps.filterPredicate = (swap: LoopSwapStatus, fltr: string) => JSON.stringify(swap).toLowerCase().includes(fltr); + this.listSwaps.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.listSwaps.paginator = this.paginator; + this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listSwaps); } diff --git a/src/app/shared/components/login/login.component.ts b/src/app/shared/components/login/login.component.ts index de9df095..d5359c05 100644 --- a/src/app/shared/components/login/login.component.ts +++ b/src/app/shared/components/login/login.component.ts @@ -66,7 +66,8 @@ export class LoginComponent implements OnInit, OnDestroy { if (this.appConfig.enable2FA) { this.store.dispatch(openAlert({ payload: { - maxWidth: '35rem', data: { + maxWidth: '35rem', + data: { component: LoginTokenComponent } } diff --git a/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts b/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts index 2b3149e2..735838dc 100644 --- a/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts +++ b/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts @@ -35,8 +35,8 @@ export class SideNavigationComponent implements OnInit, OnDestroy { faEye = faEye; public appConfig: RTLConfiguration; public selConfigNodeIndex: Number; - public selNode: ConfigSettingsNode; - public settings: Settings; + public selNode: ConfigSettingsNode | any; + public settings: Settings | null; public version = ''; public information: GetInfoRoot = {}; public informationChain: GetInfoChain = {}; @@ -74,7 +74,7 @@ export class SideNavigationComponent implements OnInit, OnDestroy { this.appConfig = appConfig; }); this.store.select(rootSelNodeAndNodeData).pipe(takeUntil(this.unSubs[1])). - subscribe((rootData: { nodeDate: GetInfoRoot, selNode: ConfigSettingsNode }) => { + subscribe((rootData: { nodeDate: GetInfoRoot, selNode: ConfigSettingsNode | null }) => { this.information = rootData.nodeDate; if (this.information.identity_pubkey) { if (this.information.chains && typeof this.information.chains[0] === 'string') { @@ -94,8 +94,8 @@ export class SideNavigationComponent implements OnInit, OnDestroy { this.smallScreen = true; } this.selNode = rootData.selNode; - this.settings = this.selNode.settings; - this.selConfigNodeIndex = +(rootData.selNode.index || 0); + this.settings = this.selNode?.settings || null; + this.selConfigNodeIndex = +(rootData.selNode?.index || 0); if (this.selNode && this.selNode.lnImplementation) { this.filterSideMenuNodes(); } @@ -143,7 +143,7 @@ export class SideNavigationComponent implements OnInit, OnDestroy { } filterSideMenuNodes() { - switch (this.selNode.lnImplementation?.toUpperCase()) { + switch (this.selNode?.lnImplementation?.toUpperCase()) { case 'CLN': this.loadCLNMenu(); break; @@ -163,12 +163,12 @@ export class SideNavigationComponent implements OnInit, OnDestroy { clonedMenu = JSON.parse(JSON.stringify(MENU_DATA.LNDChildren)); this.navMenus.data = clonedMenu?.filter((navMenuData: any) => { if (navMenuData.children && navMenuData.children.length) { - navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.settings.userPersona) && navMenuChild.link !== '/services/loop' && navMenuChild.link !== '/services/boltz') || - (navMenuChild.link === '/services/loop' && this.settings.swapServerUrl && this.settings.swapServerUrl.trim() !== '') || - (navMenuChild.link === '/services/boltz' && this.settings.boltzServerUrl && this.settings.boltzServerUrl.trim() !== '')); + navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.settings?.userPersona) && navMenuChild.link !== '/services/loop' && navMenuChild.link !== '/services/boltz') || + (navMenuChild.link === '/services/loop' && this.settings?.swapServerUrl && this.settings.swapServerUrl.trim() !== '') || + (navMenuChild.link === '/services/boltz' && this.settings?.boltzServerUrl && this.settings.boltzServerUrl.trim() !== '')); return navMenuData.children.length > 0; } - return navMenuData.userPersona === UserPersonaEnum.ALL || navMenuData.userPersona === this.settings.userPersona; + return navMenuData.userPersona === UserPersonaEnum.ALL || navMenuData.userPersona === this.settings?.userPersona; }); } @@ -177,10 +177,11 @@ export class SideNavigationComponent implements OnInit, OnDestroy { clonedMenu = JSON.parse(JSON.stringify(MENU_DATA.CLNChildren)); this.navMenus.data = clonedMenu?.filter((navMenuData: any) => { if (navMenuData.children && navMenuData.children.length) { - navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.settings.userPersona) && navMenuChild.link !== '/cln/messages') || - (navMenuChild.link === '/cln/messages' && this.information.api_version && this.commonService.isVersionCompatible(this.information.api_version, '0.2.2'))); + navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.settings?.userPersona) && navMenuChild.link !== '/services/peerswap') || + (navMenuChild.link === '/services/peerswap' && this.settings?.enablePeerswap)); + return navMenuData.children.length > 0; } - return navMenuData.userPersona === UserPersonaEnum.ALL || navMenuData.userPersona === this.settings.userPersona; + return navMenuData.userPersona === UserPersonaEnum.ALL || navMenuData.userPersona === this.settings?.userPersona; }); } diff --git a/src/app/shared/components/navigation/top-menu/top-menu.component.html b/src/app/shared/components/navigation/top-menu/top-menu.component.html index 417f2820..e1683512 100644 --- a/src/app/shared/components/navigation/top-menu/top-menu.component.html +++ b/src/app/shared/components/navigation/top-menu/top-menu.component.html @@ -12,7 +12,7 @@ Settings
- + Help diff --git a/src/app/shared/components/navigation/top-menu/top-menu.component.ts b/src/app/shared/components/navigation/top-menu/top-menu.component.ts index 022b9a99..9f0a0060 100644 --- a/src/app/shared/components/navigation/top-menu/top-menu.component.ts +++ b/src/app/shared/components/navigation/top-menu/top-menu.component.ts @@ -3,7 +3,7 @@ import { Subject } from 'rxjs'; import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; -import { faCodeBranch, faCode, faCog, faLifeRing, faEject, faUserCog } from '@fortawesome/free-solid-svg-icons'; +import { faCodeBranch, faCode, faCog, faQuestion, faEject, faUserCog } from '@fortawesome/free-solid-svg-icons'; import { GetInfoRoot } from '../../../models/RTLconfig'; import { LoggerService } from '../../../services/logger.service'; @@ -29,7 +29,7 @@ export class TopMenuComponent implements OnInit, OnDestroy { public faCodeBranch = faCodeBranch; public faCode = faCode; public faCog = faCog; - public faLifeRing = faLifeRing; + public faQuestion = faQuestion; public faEject = faEject; public version = ''; public information: GetInfoRoot = {}; diff --git a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html index 135031bb..0dedfa7d 100644 --- a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html +++ b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html @@ -67,12 +67,12 @@
- - Lease base fee is required. + + Lease base fee is required. - - Lease base basis is required. + + Lease base basis is required.
diff --git a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts index 0dc20a93..7ea6b0f0 100644 --- a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts +++ b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts @@ -36,8 +36,8 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { public policyTypes = LADS_POLICY; public selPolicyType = LADS_POLICY[0]; public policyMod: number | null; - public leaseFeeBaseSat: number | null; - public leaseFeeBasis: number | null; + public lease_fee_base_sat: number | null; + public lease_fee_basis: number | null; public channelFeeMaxBaseSat: number | null; public channelFeeMaxProportional: number | null; public flgUpdateCalled = false; @@ -79,8 +79,8 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { this.selPolicyType = LADS_POLICY.find((policy) => policy.id === this.fundingPolicy.policy) || this.policyTypes[0]; } this.policyMod = this.fundingPolicy.policy_mod || this.fundingPolicy.policy_mod === 0 ? this.fundingPolicy.policy_mod : null; - this.leaseFeeBaseSat = this.fundingPolicy.lease_fee_base_msat ? this.fundingPolicy.lease_fee_base_msat / 1000 : this.fundingPolicy.lease_fee_base_msat === 0 ? 0 : null; - this.leaseFeeBasis = this.fundingPolicy.lease_fee_basis || this.fundingPolicy.lease_fee_basis === 0 ? this.fundingPolicy.lease_fee_basis : null; + this.lease_fee_base_sat = this.fundingPolicy.lease_fee_base_msat ? this.fundingPolicy.lease_fee_base_msat / 1000 : this.fundingPolicy.lease_fee_base_msat === 0 ? 0 : null; + this.lease_fee_basis = this.fundingPolicy.lease_fee_basis || this.fundingPolicy.lease_fee_basis === 0 ? this.fundingPolicy.lease_fee_basis : null; this.channelFeeMaxBaseSat = this.fundingPolicy.channel_fee_max_base_msat ? this.fundingPolicy.channel_fee_max_base_msat / 1000 : this.fundingPolicy.channel_fee_max_base_msat === 0 ? 0 : null; this.channelFeeMaxProportional = this.fundingPolicy.channel_fee_max_proportional_thousandths || this.fundingPolicy.channel_fee_max_proportional_thousandths === 0 ? (this.fundingPolicy.channel_fee_max_proportional_thousandths * 1000) : null; }); @@ -95,19 +95,19 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { this.store.dispatch(setChildNodeSettingsLND({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers + unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers } })); this.store.dispatch(setChildNodeSettingsCL({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers + unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers } })); this.store.dispatch(setChildNodeSettingsECL({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers + unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers } })); } @@ -115,7 +115,7 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { onUpdateFundingPolicy() { this.flgUpdateCalled = true; this.updateMsg = {}; - this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id, this.policyMod, this.leaseFeeBaseSat, this.leaseFeeBasis, (this.channelFeeMaxBaseSat || 0) * 1000, this.channelFeeMaxProportional ? this.channelFeeMaxProportional / 1000 : 0). + this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id, this.policyMod, ((this.lease_fee_base_sat || 0) * 1000), this.lease_fee_basis, (this.channelFeeMaxBaseSat || 0) * 1000, this.channelFeeMaxProportional ? this.channelFeeMaxProportional / 1000 : 0). pipe(takeUntil(this.unSubs[4])). subscribe({ next: (updatePolicyRes: any) => { @@ -140,8 +140,8 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { this.selPolicyType = LADS_POLICY[0]; } this.policyMod = this.fundingPolicy.policy_mod || this.fundingPolicy.policy_mod === 0 ? this.fundingPolicy.policy_mod : null; - this.leaseFeeBaseSat = this.fundingPolicy.lease_fee_base_msat ? this.fundingPolicy.lease_fee_base_msat / 1000 : this.fundingPolicy.lease_fee_base_msat === 0 ? 0 : null; - this.leaseFeeBasis = this.fundingPolicy.lease_fee_basis || this.fundingPolicy.lease_fee_basis === 0 ? this.fundingPolicy.lease_fee_basis : null; + this.lease_fee_base_sat = this.fundingPolicy.lease_fee_base_msat ? this.fundingPolicy.lease_fee_base_msat / 1000 : this.fundingPolicy.lease_fee_base_msat === 0 ? 0 : null; + this.lease_fee_basis = this.fundingPolicy.lease_fee_basis || this.fundingPolicy.lease_fee_basis === 0 ? this.fundingPolicy.lease_fee_basis : null; this.channelFeeMaxBaseSat = this.fundingPolicy.channel_fee_max_base_msat ? this.fundingPolicy.channel_fee_max_base_msat / 1000 : this.fundingPolicy.channel_fee_max_base_msat === 0 ? 0 : null; this.channelFeeMaxProportional = this.fundingPolicy.channel_fee_max_proportional_thousandths || this.fundingPolicy.channel_fee_max_proportional_thousandths === 0 ? (this.fundingPolicy.channel_fee_max_proportional_thousandths * 1000) : null; } diff --git a/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts b/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts index b688703f..407b7cfb 100644 --- a/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts +++ b/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts @@ -16,7 +16,6 @@ import { fetchConfig } from '../../../../store/rtl.actions'; }) export class LNPConfigComponent implements OnInit, OnDestroy { - public selectedNodeType = ''; public configData = ''; public fileFormat = 'INI'; public faCog = faCog; @@ -25,14 +24,7 @@ export class LNPConfigComponent implements OnInit, OnDestroy { constructor(private store: Store, private rtlEffects: RTLEffects, private router: Router) { } ngOnInit() { - this.selectedNodeType = (this.router.url.includes('bconfig')) ? 'bitcoind' : 'ln'; - this.router.events.pipe(takeUntil(this.unSubs[0]), filter((e) => e instanceof ResolveEnd)). - subscribe({ - next: (value: ResolveEnd | Event) => { - this.selectedNodeType = ((value).urlAfterRedirects.includes('bconfig')) ? 'bitcoind' : 'ln'; - } - }); - this.store.dispatch(fetchConfig({ payload: this.selectedNodeType })); + this.store.dispatch(fetchConfig({ payload: 'ln' })); this.rtlEffects.showLnConfig. pipe(takeUntil(this.unSubs[1])). subscribe((config: any) => { diff --git a/src/app/shared/components/node-config/node-config.component.html b/src/app/shared/components/node-config/node-config.component.html index c83942d7..19f36d3a 100644 --- a/src/app/shared/components/node-config/node-config.component.html +++ b/src/app/shared/components/node-config/node-config.component.html @@ -7,9 +7,11 @@
diff --git a/src/app/shared/components/node-config/node-config.component.spec.ts b/src/app/shared/components/node-config/node-config.component.spec.ts index 2d42179e..ebb21840 100644 --- a/src/app/shared/components/node-config/node-config.component.spec.ts +++ b/src/app/shared/components/node-config/node-config.component.spec.ts @@ -2,6 +2,8 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { RouterTestingModule } from '@angular/router/testing'; import { StoreModule } from '@ngrx/store'; +import { RTLEffects } from '../../../store/rtl.effects'; +import { mockRTLEffects } from '../../../shared/test-helpers/mock-services'; import { RootReducer } from '../../../store/rtl.reducers'; import { LNDReducer } from '../../../lnd/store/lnd.reducers'; import { CLNReducer } from '../../../cln/store/cln.reducers'; @@ -20,6 +22,9 @@ describe('NodeConfigComponent', () => { SharedModule, RouterTestingModule, StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }) + ], + providers: [ + { provide: RTLEffects, useClass: mockRTLEffects } ] }). compileComponents(); diff --git a/src/app/shared/components/node-config/node-config.component.ts b/src/app/shared/components/node-config/node-config.component.ts index e0c25eb4..3e37628a 100644 --- a/src/app/shared/components/node-config/node-config.component.ts +++ b/src/app/shared/components/node-config/node-config.component.ts @@ -1,10 +1,13 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; -import { Router, ResolveEnd, Event } from '@angular/router'; +import { Router, ResolveEnd, Event, ActivatedRoute } from '@angular/router'; import { Subject } from 'rxjs'; import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faTools } from '@fortawesome/free-solid-svg-icons'; +import { openAlert } from '../../../store/rtl.actions'; +import { RTLEffects } from '../../../store/rtl.effects'; +import { IsAuthorizedComponent } from '../../components/data-modal/is-authorized/is-authorized.component'; import { ConfigSettingsNode } from '../../models/RTLconfig'; import { RTLState } from '../../../store/rtl.state'; import { rootSelectedNode } from '../../../store/rtl.selector'; @@ -18,13 +21,13 @@ export class NodeConfigComponent implements OnInit, OnDestroy { public faTools = faTools; public showLnConfig = false; - public selNode: ConfigSettingsNode; + public selNode: ConfigSettingsNode | any; public lnImplementationStr = ''; - public links = [{ link: 'layout', name: 'Layout' }, { link: 'services', name: 'Services' }, { link: 'experimental', name: 'Experimental' }, { link: 'lnconfig', name: this.lnImplementationStr }]; + public links = [{ link: 'nodesettings', name: 'Node Settings' }, { link: 'pglayout', name: 'Page Layout' }, { link: 'services', name: 'Services' }, { link: 'experimental', name: 'Experimental' }, { link: 'lnconfig', name: this.lnImplementationStr }]; public activeLink = ''; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private store: Store, private router: Router) { } + constructor(private store: Store, private router: Router, private rtlEffects: RTLEffects, private activatedRoute: ActivatedRoute) { } ngOnInit() { const linkFound = this.links.find((link) => this.router.url.includes(link.link)); @@ -53,12 +56,29 @@ export class NodeConfigComponent implements OnInit, OnDestroy { break; } if (this.selNode.authentication && this.selNode.authentication.configPath && this.selNode.authentication.configPath.trim() !== '') { - this.links[3].name = this.lnImplementationStr; + this.links[4].name = this.lnImplementationStr; this.showLnConfig = true; } }); } + showLnConfigClicked() { + this.store.dispatch(openAlert({ + payload: { + maxWidth: '50rem', + data: { + component: IsAuthorizedComponent + } + } + })); + this.rtlEffects.closeAlert.pipe(takeUntil(this.unSubs[1])).subscribe((alertRes) => { + if (alertRes) { + this.activeLink = this.links[4].link; + this.router.navigate(['./' + this.activeLink], { relativeTo: this.activatedRoute }); + } + }); + } + ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/shared/components/node-config/node-settings/node-settings.component.html b/src/app/shared/components/node-config/node-settings/node-settings.component.html index f26ebd96..4eacf27f 100644 --- a/src/app/shared/components/node-config/node-settings/node-settings.component.html +++ b/src/app/shared/components/node-config/node-settings/node-settings.component.html @@ -1,33 +1,56 @@
-
- - Balance Display -
-
-
- - Fiat conversion calls Blockchain.com API to get conversion rates. -
-
- Enable Fiat Conversion - - - - {{currencyUnit.id}} - - - Currency unit is required. - -
-
-
-
-
- - Customization + + + + + + Open Unannounced Channels + + +
+
+ + Use this control to toggle setting which defaults to opening unannounced channels only. +
+
+ Open Unannounced Channels +
+
+
+ + + + + Balance Display + + +
+
+ + Fiat conversion calls Blockchain.com API to get conversion rates. +
+
+ Enable Fiat Conversion + + + + {{currencyUnit.id}} + + + Currency unit is required. + +
-
+ + + + + + Customization + + +
@@ -65,8 +88,8 @@
-
-
+ +
diff --git a/src/app/shared/components/node-config/node-settings/node-settings.component.ts b/src/app/shared/components/node-config/node-settings/node-settings.component.ts index 840028ac..88588d24 100644 --- a/src/app/shared/components/node-config/node-settings/node-settings.component.ts +++ b/src/app/shared/components/node-config/node-settings/node-settings.component.ts @@ -2,7 +2,7 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; -import { faMoneyBillAlt, faPaintBrush, faInfoCircle, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faMoneyBillAlt, faPaintBrush, faInfoCircle, faExclamationTriangle, faEyeSlash } from '@fortawesome/free-solid-svg-icons'; import { CURRENCY_UNITS, UserPersonaEnum, ScreenSizeEnum, FIAT_CURRENCY_UNITS, NODE_SETTINGS, UI_MESSAGES } from '../../../services/consts-enums-functions'; import { ConfigSettingsNode, Settings } from '../../../models/RTLconfig'; @@ -26,6 +26,7 @@ export class NodeSettingsComponent implements OnInit, OnDestroy { public faMoneyBillAlt = faMoneyBillAlt; public faPaintBrush = faPaintBrush; public faInfoCircle = faInfoCircle; + public faEyeSlash = faEyeSlash; public selNode: ConfigSettingsNode | any; public userPersonas = [UserPersonaEnum.OPERATOR, UserPersonaEnum.MERCHANT]; public currencyUnits = FIAT_CURRENCY_UNITS; @@ -62,18 +63,23 @@ export class NodeSettingsComponent implements OnInit, OnDestroy { this.selNode.settings.currencyUnits = [...CURRENCY_UNITS, event.value]; this.store.dispatch(setChildNodeSettingsLND({ payload: { - userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: event.value, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: event.value, + currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl } })); this.store.dispatch(setChildNodeSettingsCL({ payload: { - userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: event.value, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: event.value, + currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, unannouncedChannels: this.selNode.settings.unannouncedChannels, + lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl } })); this.store.dispatch(setChildNodeSettingsECL({ payload: { - userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: event.value, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: event.value, + currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, unannouncedChannels: this.selNode.settings.unannouncedChannels, + lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl } })); } @@ -99,17 +105,26 @@ export class NodeSettingsComponent implements OnInit, OnDestroy { this.store.dispatch(saveSettings({ payload: { uiMessage: UI_MESSAGES.UPDATE_NODE_SETTINGS, settings: this.selNode.settings } })); this.store.dispatch(setChildNodeSettingsLND({ payload: { - userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, + selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, + fiatConversion: this.selNode.settings.fiatConversion, unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, + swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl } })); this.store.dispatch(setChildNodeSettingsCL({ payload: { - userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, + selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, + fiatConversion: this.selNode.settings.fiatConversion, unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, + swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl } })); this.store.dispatch(setChildNodeSettingsECL({ payload: { - userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, + selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, + fiatConversion: this.selNode.settings.fiatConversion, unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, + swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl } })); } diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.html b/src/app/shared/components/node-config/page-settings/page-settings.component.html new file mode 100644 index 00000000..68850ea0 --- /dev/null +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.html @@ -0,0 +1,78 @@ + + +
+ Page {{error.page | titlecase}} + + + close + {{error.message}} + + + close + Table {{table.table | titlecase}} {{table.message}} + + +
+
diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.scss b/src/app/shared/components/node-config/page-settings/page-settings.component.scss new file mode 100644 index 00000000..02b6037b --- /dev/null +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.scss @@ -0,0 +1,9 @@ +.table-setting-row { + &:last-child { + margin-bottom: 3rem; + } + &:not(:first-child) { + margin: 3rem 0; + } +} + diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.spec.ts b/src/app/shared/components/node-config/page-settings/page-settings.component.spec.ts new file mode 100644 index 00000000..ec5592f6 --- /dev/null +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.spec.ts @@ -0,0 +1,53 @@ +import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; +import { EffectsModule } from '@ngrx/effects'; +import { StoreModule } from '@ngrx/store'; + +import { RootReducer } from '../../../../store/rtl.reducers'; +import { LNDReducer } from '../../../../lnd/store/lnd.reducers'; +import { CLNReducer } from '../../../../cln/store/cln.reducers'; +import { ECLReducer } from '../../../../eclair/store/ecl.reducers'; +import { CommonService } from '../../../services/common.service'; +import { LoggerService } from '../../../services/logger.service'; +import { mockCLEffects, mockDataService, mockECLEffects, mockLNDEffects, mockLoggerService, mockRTLEffects } from '../../../../shared/test-helpers/mock-services'; + +import { PageSettingsComponent } from './page-settings.component'; +import { SharedModule } from '../../../shared.module'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { DataService } from '../../../services/data.service'; + +describe('PageSettingsComponent', () => { + let component: PageSettingsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [PageSettingsComponent], + imports: [ + BrowserAnimationsModule, + SharedModule, + StoreModule.forRoot({ root: RootReducer, lnd: LNDReducer, cln: CLNReducer, ecl: ECLReducer }), + EffectsModule.forRoot([mockRTLEffects, mockLNDEffects, mockCLEffects, mockECLEffects]) + ], + providers: [ + CommonService, + { provide: LoggerService, useClass: mockLoggerService }, + { provide: DataService, useClass: mockDataService } + ] + }). + compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(PageSettingsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + afterEach(() => { + TestBed.resetTestingModule(); + }); +}); diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.ts b/src/app/shared/components/node-config/page-settings/page-settings.component.ts new file mode 100644 index 00000000..fa15eb7d --- /dev/null +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.ts @@ -0,0 +1,215 @@ +import { Component, OnInit, OnDestroy } from '@angular/core'; +import { Subject } from 'rxjs'; +import { filter, takeUntil, withLatestFrom } from 'rxjs/operators'; +import { Store } from '@ngrx/store'; +import { Actions } from '@ngrx/effects'; +import { faPenRuler, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; + +import { APICallStatusEnum, CLNActions, CLN_DEFAULT_PAGE_SETTINGS, CLN_PAGE_DEFS, LNDActions, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS, ECLActions, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS, PAGE_SIZE_OPTIONS, ScreenSizeEnum, SORT_ORDERS } from '../../../services/consts-enums-functions'; +import { LoggerService } from '../../../services/logger.service'; +import { CommonService } from '../../../services/common.service'; +import { RTLState } from '../../../../store/rtl.state'; +import { ApiCallStatusPayload } from '../../../models/apiCallsPayload'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { SelNodeChild, ConfigSettingsNode } from '../../../models/RTLconfig'; +import { TableSetting, PageSettings } from '../../../models/pageSettings'; +import { clnNodeSettings, clnPageSettings } from '../../../../cln/store/cln.selector'; +import { lndNodeSettings, lndPageSettings } from '../../../../lnd/store/lnd.selector'; +import { savePageSettings as savePageSettingsCLN } from '../../../../cln/store/cln.actions'; +import { savePageSettings as savePageSettingsLND } from '../../../../lnd/store/lnd.actions'; +import { eclNodeSettings, eclPageSettings } from '../../../../eclair/store/ecl.selector'; +import { savePageSettings as savePageSettingsECL } from '../../../../eclair/store/ecl.actions'; + +@Component({ + selector: 'rtl-page-settings', + templateUrl: './page-settings.component.html', + styleUrls: ['./page-settings.component.scss'] +}) +export class PageSettingsComponent implements OnInit, OnDestroy { + + public faPenRuler = faPenRuler; + public faExclamationTriangle = faExclamationTriangle; + public selNode: ConfigSettingsNode; + public screenSize = ''; + public screenSizeEnum = ScreenSizeEnum; + public pageSizeOptions = PAGE_SIZE_OPTIONS; + public pageSettings: PageSettings[] = []; + public initialPageSettings: PageSettings[] = []; + public defaultSettings: PageSettings[] = []; + public nodePageDefs = {}; + public sortOrders = SORT_ORDERS; + public apiCallStatus: ApiCallStatusPayload | null = null; + public apiCallStatusEnum = APICallStatusEnum; + public errorMessage: any = null; + unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; + + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private actions: Actions) { + this.screenSize = this.commonService.getScreenSize(); + } + + ngOnInit() { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { + this.selNode = selNode; + this.logger.info(this.selNode); + switch (this.selNode.lnImplementation) { + case 'CLN': + this.initialPageSettings = Object.assign([], CLN_DEFAULT_PAGE_SETTINGS); + this.defaultSettings = Object.assign([], CLN_DEFAULT_PAGE_SETTINGS); + this.nodePageDefs = CLN_PAGE_DEFS; + this.store.select(clnPageSettings).pipe(takeUntil(this.unSubs[1]), + withLatestFrom(this.store.select(clnNodeSettings))). + subscribe(([settings, nodeSettings]: [{ pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }, (SelNodeChild | null)]) => { + const updatedPageSettings = JSON.parse(JSON.stringify(settings.pageSettings)); + this.errorMessage = null; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || null; + this.pageSettings = updatedPageSettings; + this.initialPageSettings = updatedPageSettings; + } else { + if (!nodeSettings?.enableOffers) { + const transactionsPage = updatedPageSettings.find((pg) => pg.pageId === 'transactions'); + const offerIdx = transactionsPage?.tables.findIndex((tb) => tb.tableId === 'offers'); + const offerBookmarkIdx = transactionsPage?.tables.findIndex((tb) => tb.tableId === 'offer_bookmarks'); + if (offerIdx > -1) { transactionsPage?.tables.splice(offerIdx, 1); } + if (offerBookmarkIdx > -1) { transactionsPage?.tables.splice(offerBookmarkIdx, 1); } + } + if (!nodeSettings?.enablePeerswap) { + const psIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'peerswap'); + if (psIdx > -1) { updatedPageSettings.splice(psIdx, 1); } + } + this.pageSettings = updatedPageSettings; + this.initialPageSettings = updatedPageSettings; + } + this.logger.info(updatedPageSettings); + }); + this.actions.pipe(takeUntil(this.unSubs[2]), filter((action) => action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN || action.type === CLNActions.SAVE_PAGE_SETTINGS_CLN)). + subscribe((action: any) => { + if (action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN && action.payload.status === APICallStatusEnum.ERROR && action.payload.action === 'SavePageSettings') { + this.errorMessage = JSON.parse(action.payload.message); + } + }); + break; + + case 'ECL': + this.initialPageSettings = Object.assign([], ECL_DEFAULT_PAGE_SETTINGS); + this.defaultSettings = Object.assign([], ECL_DEFAULT_PAGE_SETTINGS); + this.nodePageDefs = ECL_PAGE_DEFS; + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[1]), + withLatestFrom(this.store.select(eclNodeSettings))). + subscribe(([settings, nodeSettings]: [{ pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }, (SelNodeChild | null)]) => { + const updatedPageSettings = JSON.parse(JSON.stringify(settings.pageSettings)); + this.errorMessage = null; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || null; + this.pageSettings = updatedPageSettings; + this.initialPageSettings = updatedPageSettings; + } else { + this.pageSettings = updatedPageSettings; + this.initialPageSettings = updatedPageSettings; + } + this.logger.info(updatedPageSettings); + }); + this.actions.pipe(takeUntil(this.unSubs[2]), filter((action) => action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL || action.type === ECLActions.SAVE_PAGE_SETTINGS_ECL)). + subscribe((action: any) => { + if (action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL && action.payload.status === APICallStatusEnum.ERROR && action.payload.action === 'SavePageSettings') { + this.errorMessage = JSON.parse(action.payload.message); + } + }); + break; + + default: + this.initialPageSettings = Object.assign([], LND_DEFAULT_PAGE_SETTINGS); + this.defaultSettings = Object.assign([], LND_DEFAULT_PAGE_SETTINGS); + this.nodePageDefs = LND_PAGE_DEFS; + this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[1]), + withLatestFrom(this.store.select(lndNodeSettings))). + subscribe(([settings, nodeSettings]: [{ pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }, (SelNodeChild | null)]) => { + const updatedPageSettings: PageSettings[] = JSON.parse(JSON.stringify(settings.pageSettings)); + this.errorMessage = null; + this.apiCallStatus = settings.apiCallStatus; + if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { + this.errorMessage = this.apiCallStatus.message || null; + this.pageSettings = updatedPageSettings; + this.initialPageSettings = updatedPageSettings; + } else { + if (!nodeSettings?.swapServerUrl || nodeSettings.swapServerUrl.trim() === '') { + const loopIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'loop'); + if (loopIdx > -1) { updatedPageSettings.splice(loopIdx, 1); } + } + if (!nodeSettings?.boltzServerUrl || nodeSettings.boltzServerUrl.trim() === '') { + const boltzIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'boltz'); + if (boltzIdx > -1) { updatedPageSettings.splice(boltzIdx, 1); } + } + if (!nodeSettings?.enablePeerswap) { + const psIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'peerswap'); + if (psIdx > -1) { updatedPageSettings.splice(psIdx, 1); } + } + this.pageSettings = updatedPageSettings; + this.initialPageSettings = updatedPageSettings; + } + this.logger.info(updatedPageSettings); + }); + this.actions.pipe(takeUntil(this.unSubs[2]), filter((action) => action.type === LNDActions.UPDATE_API_CALL_STATUS_LND || action.type === LNDActions.SAVE_PAGE_SETTINGS_LND)). + subscribe((action: any) => { + if (action.type === LNDActions.UPDATE_API_CALL_STATUS_LND && action.payload.status === APICallStatusEnum.ERROR && action.payload.action === 'SavePageSettings') { + this.errorMessage = JSON.parse(action.payload.message); + } + }); + break; + } + }); + } + + oncolumnSelectionChange(table: TableSetting) { + if (table.columnSelection && (!table.sortBy || !table.columnSelection.includes(table.sortBy))) { + table.sortBy = table.columnSelection[0]; + } + } + + onUpdatePageSettings(): boolean | void { + if (this.pageSettings.reduce((pacc, page) => (pacc || (page.tables.reduce((acc, table) => !(table.recordsPerPage && table.sortBy && table.sortOrder && table.columnSelection && table.columnSelection.length >= 2), false))), false)) { + return true; + } + this.errorMessage = ''; + switch (this.selNode.lnImplementation) { + case 'CLN': + this.store.dispatch(savePageSettingsCLN({ payload: this.pageSettings })); + break; + + case 'ECL': + this.store.dispatch(savePageSettingsECL({ payload: this.pageSettings })); + break; + + default: + this.store.dispatch(savePageSettingsLND({ payload: this.pageSettings })); + break; + } + } + + onTableReset(currPageId: string, currTable: TableSetting) { + const pageIdx = this.pageSettings.findIndex((page) => page.pageId === currPageId); + const tableIdx = this.pageSettings[pageIdx].tables.findIndex((table) => table.tableId === currTable.tableId); + const tableToReplace = this.defaultSettings.find((page) => page.pageId === currPageId)?.tables.find((table) => table.tableId === currTable.tableId) || this.pageSettings.find((page) => page.pageId === currPageId)?.tables.find((table) => table.tableId === currTable.tableId); + this.pageSettings[pageIdx].tables.splice(tableIdx, 1, tableToReplace!); + } + + onResetPageSettings(prev: string) { + if (prev === 'current') { + this.errorMessage = null; + this.pageSettings = JSON.parse(JSON.stringify(this.initialPageSettings)); + } else { + this.errorMessage = null; + this.pageSettings = JSON.parse(JSON.stringify(this.defaultSettings)); + } + } + + ngOnDestroy() { + this.unSubs.forEach((unsub) => { + unsub.next(); + unsub.complete(); + }); + } + +} diff --git a/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts b/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts index d0ac998c..fedb6b4c 100644 --- a/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts @@ -73,19 +73,19 @@ export class BoltzServiceSettingsComponent implements OnInit, OnDestroy { this.store.dispatch(setChildNodeSettingsLND({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.serverUrl, enableOffers: this.selNode.settings.enableOffers + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.serverUrl, enableOffers: this.selNode.settings.enableOffers } })); this.store.dispatch(setChildNodeSettingsCL({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.serverUrl, enableOffers: this.selNode.settings.enableOffers + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.serverUrl, enableOffers: this.selNode.settings.enableOffers } })); this.store.dispatch(setChildNodeSettingsECL({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.serverUrl, enableOffers: this.selNode.settings.enableOffers + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.serverUrl, enableOffers: this.selNode.settings.enableOffers } })); } diff --git a/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts b/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts index 893c1853..1e96af4f 100644 --- a/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts @@ -61,19 +61,19 @@ export class LoopServiceSettingsComponent implements OnInit, OnDestroy { this.store.dispatch(setChildNodeSettingsLND({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers } })); this.store.dispatch(setChildNodeSettingsCL({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers } })); this.store.dispatch(setChildNodeSettingsECL({ payload: { userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers } })); } diff --git a/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.html b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.html new file mode 100644 index 00000000..9984b49c --- /dev/null +++ b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.html @@ -0,0 +1,15 @@ +
+
+ + Please ensure that peerswapd is running and accessible to RTL before enabling this service. Click here to learn more about Core Lightning peerswap. +
+
+
+ Enable Peerswap Service +
+
+
+ + +
+
diff --git a/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.scss b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.scss new file mode 100644 index 00000000..15d29fee --- /dev/null +++ b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.scss @@ -0,0 +1,3 @@ +h4 { + word-break: break-word; +} diff --git a/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts new file mode 100644 index 00000000..cb26c83e --- /dev/null +++ b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts @@ -0,0 +1,70 @@ +import { Component, ViewChild, OnInit, OnDestroy } from '@angular/core'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { Store } from '@ngrx/store'; + +import { ServicesEnum, UI_MESSAGES } from '../../../../services/consts-enums-functions'; +import { ConfigSettingsNode } from '../../../../models/RTLconfig'; +import { LoggerService } from '../../../../services/logger.service'; +import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; +import { updateServiceSettings } from '../../../../../store/rtl.actions'; +import { RTLState } from '../../../../../store/rtl.state'; +import { setChildNodeSettingsLND } from '../../../../../lnd/store/lnd.actions'; +import { setChildNodeSettingsCL } from '../../../../../cln/store/cln.actions'; +import { setChildNodeSettingsECL } from '../../../../../eclair/store/ecl.actions'; +import { rootSelectedNode } from '../../../../../store/rtl.selector'; + +@Component({ + selector: 'rtl-peerswap-service-settings', + templateUrl: './peerswap-service-settings.component.html', + styleUrls: ['./peerswap-service-settings.component.scss'] +}) +export class PeerswapServiceSettingsComponent implements OnInit, OnDestroy { + + public faInfoCircle = faInfoCircle; + public selNode: ConfigSettingsNode | any; + public enablePeerswap = false; + unSubs: Array> = [new Subject(), new Subject()]; + + constructor(private logger: LoggerService, private store: Store) { } + + ngOnInit() { + this.store.select(rootSelectedNode). + pipe(takeUntil(this.unSubs[0])). + subscribe((selNode) => { + this.selNode = selNode; + this.enablePeerswap = !!selNode?.settings.enablePeerswap; + this.logger.info(selNode); + }); + } + + onUpdateService(): boolean | void { + this.store.dispatch(updateServiceSettings({ payload: { uiMessage: UI_MESSAGES.UPDATE_PEERSWAP_SETTINGS, service: ServicesEnum.PEERSWAP, settings: { enablePeerswap: this.enablePeerswap } } })); + this.store.dispatch(setChildNodeSettingsLND({ + payload: { + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers, enablePeerswap: this.selNode.settings.enablePeerswap + } + })); + this.store.dispatch(setChildNodeSettingsCL({ + payload: { + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers, enablePeerswap: this.selNode.settings.enablePeerswap + } + })); + this.store.dispatch(setChildNodeSettingsECL({ + payload: { + userPersona: this.selNode.settings.userPersona, channelBackupPath: this.selNode.settings.channelBackupPath, selCurrencyUnit: this.selNode.settings.currencyUnit, currencyUnits: this.selNode.settings.currencyUnits, fiatConversion: this.selNode.settings.fiatConversion, + unannouncedChannels: this.selNode.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.selNode.settings.enableOffers, enablePeerswap: this.selNode.settings.enablePeerswap + } + })); + } + + ngOnDestroy() { + this.unSubs.forEach((unsub) => { + unsub.next(); + unsub.complete(); + }); + } + +} diff --git a/src/app/shared/components/node-config/services-settings/services-settings.component.html b/src/app/shared/components/node-config/services-settings/services-settings.component.html index 8a1f6b84..5e99b01d 100644 --- a/src/app/shared/components/node-config/services-settings/services-settings.component.html +++ b/src/app/shared/components/node-config/services-settings/services-settings.component.html @@ -6,8 +6,9 @@
diff --git a/src/app/shared/components/node-config/services-settings/services-settings.component.ts b/src/app/shared/components/node-config/services-settings/services-settings.component.ts index 1f4869d4..8c564115 100644 --- a/src/app/shared/components/node-config/services-settings/services-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/services-settings.component.ts @@ -1,8 +1,12 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; -import { Router, ResolveEnd, Event } from '@angular/router'; +import { Router, ResolveEnd, Event, ActivatedRoute } from '@angular/router'; import { Subject } from 'rxjs'; import { takeUntil, filter } from 'rxjs/operators'; import { faLayerGroup } from '@fortawesome/free-solid-svg-icons'; +import { ConfigSettingsNode } from '../../../models/RTLconfig'; +import { Store } from '@ngrx/store'; +import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; @Component({ selector: 'rtl-services-settings', @@ -12,11 +16,12 @@ import { faLayerGroup } from '@fortawesome/free-solid-svg-icons'; export class ServicesSettingsComponent implements OnInit, OnDestroy { public faLayerGroup = faLayerGroup; - public links = [{ link: 'loop', name: 'Loop' }, { link: 'boltz', name: 'Boltz' }]; + public links = [{ link: 'loop', name: 'Loop' }, { link: 'boltz', name: 'Boltz' }, { link: 'peerswap', name: 'Peerswap' }]; public activeLink = ''; + public selNode: ConfigSettingsNode | any; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private router: Router) { } + constructor(private store: Store, private router: Router, private activatedRoute: ActivatedRoute) { } ngOnInit() { const linkFound = this.links.find((link) => this.router.url.includes(link.link)); @@ -25,9 +30,20 @@ export class ServicesSettingsComponent implements OnInit, OnDestroy { subscribe({ next: (value: ResolveEnd | Event) => { const linkFound = this.links.find((link) => (value).urlAfterRedirects.includes(link.link)); - this.activeLink = linkFound ? linkFound.link : this.links[0].link; + if (this.selNode.lnImplementation.toUpperCase() === 'CLN') { + this.activeLink = this.links[2].link; + } else { + this.activeLink = linkFound ? linkFound.link : this.links[0].link; + } } }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])).subscribe((selNode) => { + this.selNode = selNode; + if (this.selNode.lnImplementation.toUpperCase() === 'CLN') { + this.activeLink = this.links[2].link; + this.router.navigate(['./' + this.activeLink], { relativeTo: this.activatedRoute }); + } + }); } ngOnDestroy() { diff --git a/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts b/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts index 90f0090b..56f8cbe3 100644 --- a/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts +++ b/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts @@ -16,7 +16,6 @@ import { fetchConfig } from '../../../../store/rtl.actions'; }) export class BitcoinConfigComponent implements OnInit, OnDestroy { - public selectedNodeType = ''; public configData = ''; public fileFormat = 'INI'; public faCog = faCog; @@ -25,14 +24,7 @@ export class BitcoinConfigComponent implements OnInit, OnDestroy { constructor(private store: Store, private rtlEffects: RTLEffects, private router: Router) { } ngOnInit() { - this.selectedNodeType = (this.router.url.includes('bconfig')) ? 'bitcoind' : 'ln'; - this.router.events.pipe(takeUntil(this.unSubs[0]), filter((e) => e instanceof ResolveEnd)). - subscribe({ - next: (value: ResolveEnd | Event) => { - this.selectedNodeType = ((value).urlAfterRedirects.includes('bconfig')) ? 'bitcoind' : 'ln'; - } - }); - this.store.dispatch(fetchConfig({ payload: this.selectedNodeType })); + this.store.dispatch(fetchConfig({ payload: 'bitcoind' })); this.rtlEffects.showLnConfig. pipe(takeUntil(this.unSubs[1])). subscribe((config: any) => { diff --git a/src/app/shared/components/transactions-report-table/transactions-report-table.component.html b/src/app/shared/components/transactions-report-table/transactions-report-table.component.html index 17fd2b5b..d6158c35 100644 --- a/src/app/shared/components/transactions-report-table/transactions-report-table.component.html +++ b/src/app/shared/components/transactions-report-table/transactions-report-table.component.html @@ -2,9 +2,16 @@
- - - +
+ + + {{getLabel(column)}} + + + + + +
@@ -30,16 +37,16 @@ {{transaction?.num_invoices | number}} - -
+ +
Download CSV
- - - + + + @@ -48,7 +55,7 @@ - + diff --git a/src/app/shared/components/transactions-report-table/transactions-report-table.component.scss b/src/app/shared/components/transactions-report-table/transactions-report-table.component.scss index 0ad983c7..e69de29b 100644 --- a/src/app/shared/components/transactions-report-table/transactions-report-table.component.scss +++ b/src/app/shared/components/transactions-report-table/transactions-report-table.component.scss @@ -1,3 +0,0 @@ -.mat-column-actions { - min-height: 4.8rem; -} diff --git a/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts b/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts index 5ba7b9ce..50ada1b1 100644 --- a/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts +++ b/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts @@ -1,15 +1,19 @@ -import { Component, ViewChild, Input, AfterViewInit, OnChanges, SimpleChanges, OnInit } from '@angular/core'; +import { Component, ViewChild, Input, AfterViewInit, OnChanges, SimpleChanges, OnInit, OnDestroy } from '@angular/core'; import { DatePipe } from '@angular/common'; import { Store } from '@ngrx/store'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, SCROLL_RANGES } from '../../services/consts-enums-functions'; +import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, SCROLL_RANGES, SortOrderEnum, LND_PAGE_DEFS, CLN_PAGE_DEFS, ECL_PAGE_DEFS } from '../../services/consts-enums-functions'; import { CommonService } from '../../services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; +import { ColumnDefinition, TableSetting } from '../../models/pageSettings'; +import { Subject, takeUntil } from 'rxjs'; +import { rootSelectedNode } from '../../../store/rtl.selector'; +import { CamelCaseWithReplacePipe } from '../../pipes/app.pipe'; @Component({ selector: 'rtl-transactions-report-table', @@ -19,38 +23,36 @@ import { openAlert } from '../../../store/rtl.actions'; { provide: MatPaginatorIntl, useValue: getPaginatorLabel('Transactions') } ] }) -export class TransactionsReportTableComponent implements OnInit, AfterViewInit, OnChanges { +export class TransactionsReportTableComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy { @Input() dataRange = SCROLL_RANGES[0]; @Input() dataList = []; - @Input() filterValue = ''; + @Input() selFilter = ''; + @Input() displayedColumns: any[] = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices']; + @Input() tableSetting: TableSetting = { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING }; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public nodePageDefs: any = LND_PAGE_DEFS; + public selFilterBy = 'all'; public timezoneOffset = new Date(Date.now()).getTimezoneOffset() * 60; public scrollRanges = SCROLL_RANGES; - public transactions: any; - public displayedColumns: any[] = []; - public flgSticky = false; + public transactions: any = new MatTableDataSource([]); public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; + unSubs: Array> = [new Subject(), new Subject()]; - constructor(private commonService: CommonService, private store: Store, private datePipe: DatePipe) { + constructor(private commonService: CommonService, private store: Store, private datePipe: DatePipe, private camelCaseWithReplace: CamelCaseWithReplacePipe) { this.screenSize = this.commonService.getScreenSize(); - if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { - this.flgSticky = false; - this.displayedColumns = ['date', 'amount_paid', 'amount_received', 'actions']; - } else if (this.screenSize === ScreenSizeEnum.MD) { - this.flgSticky = false; - this.displayedColumns = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices', 'actions']; - } else { - this.flgSticky = true; - this.displayedColumns = ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices', 'actions']; - } } ngOnInit() { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { + this.nodePageDefs = (selNode.lnImplementation === 'CLN') ? CLN_PAGE_DEFS : (selNode.lnImplementation === 'ECL') ? ECL_PAGE_DEFS : LND_PAGE_DEFS; + }); + + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; if (this.dataList && this.dataList.length > 0) { this.loadTransactionsTable(this.dataList); } @@ -62,9 +64,11 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, ngOnChanges(changes: SimpleChanges) { if (changes.dataList && !changes.dataList.firstChange) { + this.pageSize = this.tableSetting.recordsPerPage ? +this.tableSetting.recordsPerPage : PAGE_SIZE; this.loadTransactionsTable(this.dataList); } - if (changes.filterValue && !changes.filterValue.firstChange) { + if (changes.selFilter && !changes.selFilter.firstChange) { + this.selFilterBy = 'all'; this.applyFilter(); } } @@ -90,10 +94,35 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, applyFilter() { if (this.transactions) { - this.transactions.filter = this.filterValue.trim().toLowerCase(); + this.transactions.filter = this.selFilter.trim().toLowerCase(); } } + getLabel(column: string) { + const returnColumn: ColumnDefinition = this.nodePageDefs['reports'][this.tableSetting.tableId].allowedColumns.find((col) => col.column === column); + return returnColumn ? returnColumn.label ? returnColumn.label : this.camelCaseWithReplace.transform(returnColumn.column, '_') : this.commonService.titleCase(column); + } + + setFilterPredicate() { + this.transactions.filterPredicate = (rowData: any, fltr: string) => { + let rowToFilter = ''; + switch (this.selFilterBy) { + case 'all': + rowToFilter = ((rowData.date) ? (this.datePipe.transform(rowData.date, 'dd/MMM') + '/' + rowData.date.getFullYear()).toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); + break; + + case 'date': + rowToFilter = this.datePipe.transform(new Date(rowData[this.selFilterBy] || 0), this.dataRange === this.scrollRanges[1] ? 'MMM/yyyy' : 'dd/MMM/yyyy')?.toLowerCase() || ''; + break; + + default: + rowToFilter = typeof rowData[this.selFilterBy] === 'undefined' ? '' : typeof rowData[this.selFilterBy] === 'string' ? rowData[this.selFilterBy].toLowerCase() : typeof rowData[this.selFilterBy] === 'boolean' ? (rowData[this.selFilterBy] ? 'yes' : 'no') : rowData[this.selFilterBy].toString(); + break; + } + return rowToFilter.includes(fltr); + }; + } + loadTransactionsTable(trans: any[]) { this.transactions = trans ? new MatTableDataSource([...trans]) : new MatTableDataSource([]); this.setTableWidgets(); @@ -103,11 +132,10 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, if (this.transactions && this.transactions.data && this.transactions.data.length > 0) { this.transactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null); this.transactions.sort = this.sort; - this.transactions.filterPredicate = (rowData: any, fltr: string) => { - const newRowData = ((rowData.date) ? (this.datePipe.transform(rowData.date, 'dd/MMM') + '/' + rowData.date.getFullYear()).toLowerCase() : '') + JSON.stringify(rowData).toLowerCase(); - return newRowData.includes(fltr); - }; + this.transactions.sort?.sort({ id: this.tableSetting.sortBy, start: this.tableSetting.sortOrder, disableClear: true }); this.transactions.paginator = this.paginator; + this.setFilterPredicate(); + this.applyFilter(); } } @@ -117,4 +145,11 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, } } + ngOnDestroy(): void { + this.unSubs.forEach((unsub) => { + unsub.next(); + unsub.complete(); + }); + } + } diff --git a/src/app/shared/models/RTLconfig.ts b/src/app/shared/models/RTLconfig.ts index c9b0a5d1..5d818525 100644 --- a/src/app/shared/models/RTLconfig.ts +++ b/src/app/shared/models/RTLconfig.ts @@ -15,8 +15,9 @@ export class Settings { public userPersona: string, public themeMode: string, public themeColor: string, - public currencyUnits: Array, + public unannouncedChannels: boolean, public fiatConversion: boolean, + public currencyUnits: Array, public bitcoindConfigPath?: string, public logLevel?: string, public lnServerUrl?: string, @@ -24,7 +25,8 @@ export class Settings { public boltzServerUrl?: string, public channelBackupPath?: string, public currencyUnit?: string, - public enableOffers?: boolean + public enableOffers?: boolean, + public enablePeerswap?: boolean ) { } } @@ -80,10 +82,12 @@ export interface SelNodeChild { selCurrencyUnit?: string; currencyUnits?: string[]; fiatConversion?: boolean; + unannouncedChannels?: boolean; lnImplementation?: string; swapServerUrl?: string; boltzServerUrl?: string; enableOffers?: boolean; + enablePeerswap?: boolean; } export class HelpTopic { diff --git a/src/app/shared/models/apiCallsPayload.ts b/src/app/shared/models/apiCallsPayload.ts index 024ed6a7..5a429c58 100644 --- a/src/app/shared/models/apiCallsPayload.ts +++ b/src/app/shared/models/apiCallsPayload.ts @@ -30,6 +30,7 @@ export interface ApiCallsListLND { FetchAllChannels: ApiCallStatusPayload; FetchBalanceBlockchain: ApiCallStatusPayload; // Non-initial calls + FetchPageSettings: ApiCallStatusPayload; FetchPeers: ApiCallStatusPayload; FetchClosedChannels: ApiCallStatusPayload; FetchInvoices: ApiCallStatusPayload; @@ -48,6 +49,7 @@ export interface ApiCallsListCL { FetchBalance: ApiCallStatusPayload; FetchLocalRemoteBalance: ApiCallStatusPayload; // Non-initial calls + FetchPageSettings: ApiCallStatusPayload; FetchInvoices: ApiCallStatusPayload; FetchFeeRatesperkb: ApiCallStatusPayload; FetchFeeRatesperkw: ApiCallStatusPayload; @@ -66,6 +68,7 @@ export interface ApiCallsListECL { FetchFees: ApiCallStatusPayload; FetchChannels: ApiCallStatusPayload; // Non-initial calls + FetchPageSettings: ApiCallStatusPayload; FetchOnchainBalance: ApiCallStatusPayload; FetchPeers: ApiCallStatusPayload; FetchPayments: ApiCallStatusPayload; diff --git a/src/app/shared/models/boltzModels.ts b/src/app/shared/models/boltzModels.ts index 1c40d739..0246ebb9 100644 --- a/src/app/shared/models/boltzModels.ts +++ b/src/app/shared/models/boltzModels.ts @@ -20,6 +20,7 @@ export interface Swap { export interface ChannelCreationInfo { swapId?: string; status?: string; + error?: string; inboundLiquidity?: number; private?: boolean; fundingTransactionId?: string; @@ -34,6 +35,7 @@ export interface ChannelCreation { export interface ReverseSwap { id?: string; status?: string; + error?: string; privateKey?: string; preimage?: string; redeemScript?: string; diff --git a/src/app/shared/models/clnModels.ts b/src/app/shared/models/clnModels.ts index d166aae7..261cd1c4 100644 --- a/src/app/shared/models/clnModels.ts +++ b/src/app/shared/models/clnModels.ts @@ -103,7 +103,7 @@ export interface Offer { export interface OfferBookmark { lastUpdatedAt?: string; bolt12?: string; - amountmSat?: number; + amountMSat?: number; title?: string; vendor?: string; description?: string; @@ -277,8 +277,11 @@ export interface LocalFailedEvent { in_channel_alias?: string; in_msatoshi?: number; in_msat?: string; + out_channel?: string; + out_channel_alias?: string; status?: string; received_time?: number; + resolved_time?: number; failcode?: number; failreason?: string; } @@ -318,7 +321,8 @@ export interface Channel { their_channel_reserve_satoshis?: string; our_channel_reserve_satoshis?: string; spendable_msatoshi?: string; - balancedness?: number; // Between -1 to +1 + direction?: number; + balancedness?: number; // Between 0-1-0 } export interface ChannelEdge { @@ -346,9 +350,9 @@ export interface LookupNode { last_timestamp?: number; address_types?: string[]; features?: string; - channelCount?: number; - nodeCapacity?: number; - channelOpeningFee?: number; + channel_count?: number; + node_capacity?: number; + channel_opening_fee?: number; addresses?: Address[]; option_will_fund?: { lease_fee_base_msat?: number; @@ -391,8 +395,9 @@ export interface UTXO { value?: number; status?: string; blockheight?: string; + scriptpubkey?: string; address?: string; - amount_msat?: string; + reserved?: boolean; } export interface RoutingPeer { diff --git a/src/app/shared/models/eclModels.ts b/src/app/shared/models/eclModels.ts index f2c9f176..a5efc0e6 100644 --- a/src/app/shared/models/eclModels.ts +++ b/src/app/shared/models/eclModels.ts @@ -107,15 +107,14 @@ export interface Channel { nodeId?: string; channelId?: string; state?: string; - channelFlags?: number; toLocal?: number; toRemote?: number; shortChannelId?: string; + announceChannel?: boolean; isFunder?: boolean; buried?: boolean; feeBaseMsat?: number; - feeRatePerKwLocal?: number; - feeRatePerKwRemote?: number; + feeRatePerKw?: number; feeProportionalMillionths?: number; balancedness?: number; } diff --git a/src/app/shared/models/lndModels.ts b/src/app/shared/models/lndModels.ts index ec1172d8..6ed73ff0 100644 --- a/src/app/shared/models/lndModels.ts +++ b/src/app/shared/models/lndModels.ts @@ -40,6 +40,9 @@ export interface ChannelHTLC { amount?: string; hash_lock?: string; expiration_height?: number; + htlc_index?: number; + forwarding_channel?: string; + forwarding_htlc_index?: number; } export interface ChannelsSummary { @@ -80,8 +83,9 @@ export interface Channel { uptime?: string; uptime_str?: string; lifetime?: string; + lifetime_str?: string; static_remote_key?: boolean; - balancedness?: number; // Between -1 to +1 + balancedness?: number; // Between 0-1-0 } export interface PendingChannel { @@ -127,6 +131,7 @@ export interface WaitingCloseChannel { channel?: PendingChannel; limbo_balance?: string; commitments?: any; + closing_txid?: string; } export interface PendingChannels { @@ -149,6 +154,8 @@ export interface ClosedChannel { remote_pubkey?: string; capacity?: string; settled_balance?: string; + open_initiator?: string; + close_initiator?: string; } export interface NodeAddress { @@ -354,6 +361,9 @@ export interface Invoice { htlcs?: InvoiceHTLC[]; features?: any; is_keysend?: boolean; + payment_addr?: string; + is_amp?: boolean; + amp_invoice_state?: any; } export interface ListInvoices { @@ -502,11 +512,12 @@ export interface SavePeer { export interface SaveInvoice { uiMessage: string; memo: string; - invoiceValue: number; + value: number; private: boolean; expiry: number; pageSize: number; openModal: boolean; + is_amp: boolean; } export interface SaveChannel { diff --git a/src/app/shared/models/navMenu.ts b/src/app/shared/models/navMenu.ts index a9fa5e9c..e93c4b2a 100644 --- a/src/app/shared/models/navMenu.ts +++ b/src/app/shared/models/navMenu.ts @@ -1,4 +1,4 @@ -import { faTachometerAlt, faLink, faBolt, faExchangeAlt, faUsers, faMapSigns, faQuestion, faSearch, faChartBar, faTools, faProjectDiagram, faDownload, faServer, faPercentage, faInfinity, faUserCheck, faLayerGroup, faBullhorn } from '@fortawesome/free-solid-svg-icons'; +import { faTachometerAlt, faLink, faBolt, faExchangeAlt, faUsers, faMapSigns, faQuestion, faSearch, faChartBar, faTools, faProjectDiagram, faDownload, faServer, faPercentage, faInfinity, faUserCheck, faLayerGroup, faBullhorn, faHandshake } from '@fortawesome/free-solid-svg-icons'; import { UserPersonaEnum } from '../services/consts-enums-functions'; export class MenuChildNode { @@ -64,8 +64,13 @@ export const MENU_DATA: MenuRootNode = { { id: 39, parentId: 3, name: 'Node/Fee Rates', iconType: 'FA', icon: faServer, link: '/cln/rates', userPersona: UserPersonaEnum.MERCHANT } ] }, - { id: 4, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL }, - { id: 5, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL } + // { + // id: 4, parentId: 0, name: 'Services', iconType: 'FA', icon: faLayerGroup, link: '/services/peerswap', userPersona: UserPersonaEnum.ALL, children: [ + // { id: 41, parentId: 4, name: 'Peerswap', iconType: 'FA', icon: faHandshake, link: '/services/peerswap', userPersona: UserPersonaEnum.ALL }, + // ] + // }, + { id: 5, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL }, + { id: 6, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL } ], ECLChildren: [ { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/ecl/home', userPersona: UserPersonaEnum.ALL }, diff --git a/src/app/shared/models/pageSettings.ts b/src/app/shared/models/pageSettings.ts new file mode 100644 index 00000000..9535c691 --- /dev/null +++ b/src/app/shared/models/pageSettings.ts @@ -0,0 +1,143 @@ +import { SortOrderEnum } from '../services/consts-enums-functions'; + +export class TableSetting { + + tableId: string; + recordsPerPage?: number; + sortBy?: string; + sortOrder?: SortOrderEnum; + columnSelectionSM?: string[]; + columnSelection?: string[]; + +} + +export class PageSettings { + + pageId: string; + tables: TableSetting[]; + +} + +export class ColumnDefinition { + + column: string; + label?: string; + disabled?: boolean; + +} + +export class TableDefinition { + + maxColumns: number; + disablePageSize?: boolean; + allowedColumns: ColumnDefinition[]; + +} + +export class LNDPageDefinitions { + + on_chain: { + utxos: TableDefinition; + transactions: TableDefinition; + dust_utxos: TableDefinition; + }; + peers_channels: { + open: TableDefinition; + pending_open: TableDefinition; + pending_force_closing: TableDefinition; + pending_closing: TableDefinition; + pending_waiting_close: TableDefinition; + closed: TableDefinition; + active_HTLCs: TableDefinition; + peers: TableDefinition; + }; + transactions: { + payments: TableDefinition; + invoices: TableDefinition; + }; + routing: { + forwarding_history: TableDefinition; + routing_peers: TableDefinition; + non_routing_peers: TableDefinition; + }; + reports: { + routing: TableDefinition; + transactions: TableDefinition; + }; + graph_lookup: { + query_routes: TableDefinition; + }; + loop: { + loop: TableDefinition; + }; + boltz: { + swap_out: TableDefinition; + swap_in: TableDefinition; + }; + +}; + +export class ECLPageDefinitions { + + on_chain: { + transaction: TableDefinition; + }; + peers_channels: { + open_channels: TableDefinition; + pending_channels: TableDefinition; + inactive_channels: TableDefinition; + peers: TableDefinition; + }; + transactions: { + payments: TableDefinition; + invoices: TableDefinition; + }; + routing: { + forwarding_history: TableDefinition; + routing_peers: TableDefinition; + }; + reports: { + routing: TableDefinition; + transactions: TableDefinition; + }; + +}; + +export class CLNPageDefinitions { + + on_chain: { + utxos: TableDefinition; + dust_utxos: TableDefinition; + }; + peers_channels: { + open_channels: TableDefinition; + pending_inactive_channels: TableDefinition; + peers: TableDefinition; + }; + liquidity_ads: { + liquidity_ads: TableDefinition; + }; + transactions: { + payments: TableDefinition; + invoices: TableDefinition; + offers: TableDefinition; + offer_bookmarks: TableDefinition; + }; + routing: { + forwarding_history: TableDefinition; + routing_peers: TableDefinition; + failed: TableDefinition; + local_failed: TableDefinition; + }; + reports: { + routing: TableDefinition; + transactions: TableDefinition; + }; + graph_lookup: { + query_routes: TableDefinition; + }; + peerswap: { + swaps: TableDefinition; + }; + +}; diff --git a/src/app/shared/pipes/app.pipe.ts b/src/app/shared/pipes/app.pipe.ts index 01580a3c..4c0df47f 100644 --- a/src/app/shared/pipes/app.pipe.ts +++ b/src/app/shared/pipes/app.pipe.ts @@ -1,4 +1,4 @@ -import { Pipe, PipeTransform } from '@angular/core'; +import { NgModule, Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'removeleadingzeros' @@ -21,3 +21,32 @@ export class CamelCasePipe implements PipeTransform { } } + +@Pipe({ + name: 'camelCaseWithSpaces' +}) +export class CamelCaseWithSpacesPipe implements PipeTransform { + + transform(value: string, arg1?: string, arg2?: string): string { + return value.replace(/(?:^\w|[A-Z]|\b\w)/g, (word, index) => (' ' + word.toUpperCase())); + } + +} + +@Pipe({ + name: 'camelcaseWithReplace' +}) +export class CamelCaseWithReplacePipe implements PipeTransform { + + transform(value: string, arg1?: string, arg2?: string): string { + value = value?.toLowerCase().replace(/\s+/g, '')?.replace(/-/g, ' '); + if (arg1) { + value = value.replace(new RegExp(arg1, 'g'), ' '); + } + if (arg2) { + value = value.replace(new RegExp(arg2, 'g'), ' '); + } + return value.replace(/(?:^\w|[A-Z]|\b\w)/g, (word, index) => (word.toUpperCase())); + } + +} diff --git a/src/app/shared/services/consts-enums-functions.ts b/src/app/shared/services/consts-enums-functions.ts index 2248512d..691d74c4 100644 --- a/src/app/shared/services/consts-enums-functions.ts +++ b/src/app/shared/services/consts-enums-functions.ts @@ -1,4 +1,5 @@ import { MatPaginatorIntl } from '@angular/material/paginator'; +import { CLNPageDefinitions, ECLPageDefinitions, LNDPageDefinitions, PageSettings } from '../models/pageSettings'; export function getPaginatorLabel(field: string) { const appPaginator = new MatPaginatorIntl(); @@ -26,7 +27,8 @@ export const PAGE_SIZE_OPTIONS = [5, 10, 25, 100]; export const ADDRESS_TYPES = [ { addressId: '0', addressCode: 'bech32', addressTp: 'Bech32 (P2WKH)', addressDetails: 'Pay to witness key hash' }, - { addressId: '1', addressCode: 'p2sh-segwit', addressTp: 'P2SH (NP2WKH)', addressDetails: 'Pay to nested witness key hash (default)' } + { addressId: '1', addressCode: 'p2sh-segwit', addressTp: 'P2SH (NP2WKH)', addressDetails: 'Pay to nested witness key hash (default)' }, + { addressId: '4', addressCode: 'p2tr', addressTp: 'Taproot (P2TR)', addressDetails: 'Pay to taproot pubkey' } ]; export const TRANS_TYPES = [ @@ -143,7 +145,8 @@ export const WALLET_ADDRESS_TYPE = { WITNESS_PUBKEY_HASH: { name: 'Witness Pubkey Hash', tooltip: '' }, NESTED_PUBKEY_HASH: { name: 'Nested Pubkey Hash', tooltip: '' }, UNUSED_WITNESS_PUBKEY_HASH: { name: 'Unused Witness Pubkey Hash', tooltip: '' }, - UNUSED_NESTED_PUBKEY_HASH: { name: 'Unused Nested Pubkey Hash', tooltip: '' } + UNUSED_NESTED_PUBKEY_HASH: { name: 'Unused Nested Pubkey Hash', tooltip: '' }, + TAPROOT_PUBKEY: { name: 'Taproot Pubkey Hash', tooltip: '' } }; export enum CLNFailReason { @@ -243,7 +246,8 @@ export const SCROLL_RANGES = ['MONTHLY', 'YEARLY']; export enum ServicesEnum { LOOP = 'LOOP', BOLTZ = 'BOLTZ', - OFFERS = 'OFFERS' + OFFERS = 'OFFERS', + PEERSWAP = 'PEERSWAP' } export const PASSWORD_BLACKLIST = ['password', 'changeme', 'moneyprintergobrrr']; @@ -296,6 +300,7 @@ export const UI_MESSAGES = { WAIT_SYNC_NODE: 'Waiting for Node Sync...', UPDATE_BOLTZ_SETTINGS: 'Updating Boltz Service Settings...', UPDATE_LOOP_SETTINGS: 'Updating Loop Service Settings...', + UPDATE_PEERSWAP_SETTINGS: 'Updating Peerswap Service Settings...', UPDATE_SETTING: 'Updating Setting...', UPDATE_UI_SETTINGS: 'Updating Settings...', UPDATE_NODE_SETTINGS: 'Updating Node Settings...', @@ -320,6 +325,9 @@ export const UI_MESSAGES = { GET_FUNDER_POLICY: 'Getting Or Updating Funder Policy...', GET_LIST_CONFIGS: 'Getting Configurations List...', LIST_NETWORK_NODES: 'Getting Network Nodes List...', + GET_PAGE_SETTINGS: 'Getting Page Settings...', + SET_PAGE_SETTINGS: 'Setting Page Settings...', + UPDATE_PAGE_SETTINGS: 'Updating Page Layout...', LOG_OUT: 'Logging Out...' }; @@ -377,6 +385,9 @@ export enum LNDActions { RESET_LND_STORE = 'RESET_LND_STORE', UPDATE_API_CALL_STATUS_LND = 'UPDATE_API_CALL_STATUS_LND', SET_CHILD_NODE_SETTINGS_LND = 'SET_CHILD_NODE_SETTINGS_LND', + FETCH_PAGE_SETTINGS_LND = 'FETCH_PAGE_SETTINGS_LND', + SET_PAGE_SETTINGS_LND = 'SET_PAGE_SETTINGS_LND', + SAVE_PAGE_SETTINGS_LND = 'SAVE_PAGE_SETTINGS_LND', FETCH_INFO_LND = 'FETCH_INFO_LND', SET_INFO_LND = 'SET_INFO_LND', FETCH_PEERS_LND = 'FETCH_PEERS_LND', @@ -453,6 +464,9 @@ export enum CLNActions { RESET_CLN_STORE = 'RESET_CLN_STORE', UPDATE_API_CALL_STATUS_CLN = 'UPDATE_API_CALL_STATUS_CLN', SET_CHILD_NODE_SETTINGS_CLN = 'SET_CHILD_NODE_SETTINGS_CLN', + FETCH_PAGE_SETTINGS_CLN = 'FETCH_PAGE_SETTINGS_CLN', + SET_PAGE_SETTINGS_CLN = 'SET_PAGE_SETTINGS_CLN', + SAVE_PAGE_SETTINGS_CLN = 'SAVE_PAGE_SETTINGS_CLN', FETCH_INFO_CLN = 'FETCH_INFO_CL_CLN', SET_INFO_CLN = 'SET_INFO_CLN', FETCH_FEES_CLN = 'FETCH_FEES_CLN', @@ -523,6 +537,9 @@ export enum ECLActions { RESET_ECL_STORE = 'RESET_ECL_STORE', UPDATE_API_CALL_STATUS_ECL = 'UPDATE_API_CALL_STATUS_ECL', SET_CHILD_NODE_SETTINGS_ECL = 'SET_CHILD_NODE_SETTINGS_ECL', + FETCH_PAGE_SETTINGS_ECL = 'FETCH_PAGE_SETTINGS_ECL', + SET_PAGE_SETTINGS_ECL = 'SET_PAGE_SETTINGS_ECL', + SAVE_PAGE_SETTINGS_ECL = 'SAVE_PAGE_SETTINGS_ECL', FETCH_INFO_ECL = 'FETCH_INFO_ECL', SET_INFO_ECL = 'SET_INFO_ECL', FETCH_FEES_ECL = 'FETCH_FEES_ECL', @@ -631,3 +648,553 @@ export enum CLNForwardingEventsStatusEnum { FAILED = 'failed', LOCAL_FAILED = 'local_failed' } + +export enum PeerswapTypes { + SWAP_OUT = 'swap-out', + SWAP_IN = 'swap-in' +} + +export enum PeerswapRoles { + SENDER = 'sender', + RECEIVER = 'receiver' +} + +export enum PeerswapStates { + SWAP_CANCELED = 'State_SwapCanceled' +} + +export enum PeerswapPeersLists { + ALLOWED = 'allowed', + SUSPICIOUS = 'suspicious' +} + +export enum SortOrderEnum { + ASCENDING = 'asc', + DESCENDING = 'desc' +} + +export const SORT_ORDERS = ['asc', 'desc']; + +export const CLN_DEFAULT_PAGE_SETTINGS: PageSettings[] = [ + { pageId: 'on_chain', tables: [ + { tableId: 'utxos', recordsPerPage: PAGE_SIZE, sortBy: 'blockheight', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['txid', 'value'], + columnSelection: ['txid', 'output', 'value', 'blockheight'] }, + { tableId: 'dust_utxos', recordsPerPage: PAGE_SIZE, sortBy: 'blockheight', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['txid', 'value'], + columnSelection: ['txid', 'output', 'value', 'blockheight'] } + ] }, + { pageId: 'peers_channels', tables: [ + { tableId: 'open_channels', recordsPerPage: PAGE_SIZE, sortBy: 'msatoshi_to_us', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'msatoshi_to_us', 'msatoshi_to_them'], + columnSelection: ['short_channel_id', 'alias', 'msatoshi_to_us', 'msatoshi_to_them', 'balancedness'] }, + { tableId: 'pending_inactive_channels', recordsPerPage: PAGE_SIZE, sortBy: 'state', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'state'], + columnSelection: ['alias', 'connected', 'state', 'msatoshi_total'] }, + { tableId: 'peers', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.ASCENDING, + columnSelectionSM: ['alias', 'id'], + columnSelection: ['alias', 'id', 'netaddr'] } + ] }, + { pageId: 'liquidity_ads', tables: [ + { tableId: 'liquidity_ads', recordsPerPage: PAGE_SIZE, sortBy: 'channel_opening_fee', sortOrder: SortOrderEnum.ASCENDING, + columnSelectionSM: ['alias', 'channel_opening_fee'], + columnSelection: ['alias', 'last_timestamp', 'lease_fee', 'routing_fee', 'channel_opening_fee'] } + ] }, + { pageId: 'transactions', tables: [ + { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'created_at', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['created_at', 'msatoshi'], + columnSelection: ['created_at', 'type', 'payment_hash', 'msatoshi_sent', 'msatoshi'] }, + { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'expires_at', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['expires_at', 'msatoshi'], + columnSelection: ['expires_at', 'paid_at', 'type', 'description', 'msatoshi', 'msatoshi_received'] }, + { tableId: 'offers', recordsPerPage: PAGE_SIZE, sortBy: 'offer_id', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['offer_id', 'single_use'], + columnSelection: ['offer_id', 'single_use', 'used'] }, + { tableId: 'offer_bookmarks', recordsPerPage: PAGE_SIZE, sortBy: 'lastUpdatedAt', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['lastUpdatedAt', 'amountMSat'], + columnSelection: ['lastUpdatedAt', 'title', 'description', 'amountMSat'] } + ] }, + { pageId: 'routing', tables: [ + { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['received_time', 'in_msatoshi', 'out_msatoshi'], + columnSelection: ['received_time', 'resolved_time', 'in_channel_alias', 'out_channel_alias', 'in_msatoshi', 'out_msatoshi', 'fee'] }, + { tableId: 'routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'total_fee', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'events', 'total_fee'], + columnSelection: ['channel_id', 'alias', 'events', 'total_amount', 'total_fee'] }, + { tableId: 'failed', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['received_time', 'in_channel_alias', 'in_msatoshi'], + columnSelection: ['received_time', 'resolved_time', 'in_channel_alias', 'out_channel_alias', 'in_msatoshi', 'out_msatoshi', 'fee'] }, + { tableId: 'local_failed', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['received_time', 'in_channel_alias', 'in_msatoshi'], + columnSelection: ['received_time', 'in_channel_alias', 'in_msatoshi', 'style', 'failreason'] } + ] }, + { pageId: 'reports', tables: [ + { tableId: 'routing', recordsPerPage: PAGE_SIZE, sortBy: 'received_time', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['received_time', 'in_msatoshi', 'out_msatoshi'], + columnSelection: ['received_time', 'resolved_time', 'in_channel_alias', 'out_channel_alias', 'in_msatoshi', 'out_msatoshi', 'fee'] }, + { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['date', 'amount_paid', 'amount_received'], + columnSelection: ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices'] } + ] }, + { pageId: 'graph_lookup', tables: [ + { tableId: 'query_routes', recordsPerPage: PAGE_SIZE, sortBy: 'msatoshi', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'direction', 'msatoshi'], + columnSelection: ['alias', 'channel', 'direction', 'delay', 'msatoshi'] } + ] }, + { pageId: 'peerswap', tables: [ + { tableId: 'swaps', recordsPerPage: PAGE_SIZE, sortBy: 'created_at', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['id', 'state', 'amount'], + columnSelection: ['id', 'alias', 'short_channel_id', 'created_at', 'state', 'amount'] } + ] } +]; + +export const CLN_PAGE_DEFS: CLNPageDefinitions = { + on_chain: { + utxos: { + maxColumns: 7, + allowedColumns: [{ column:'txid', label: 'Transaction ID' }, { column:'address' }, { column:'scriptpubkey', label: 'Script Pubkey' }, { column:'output' }, { column:'value' }, { column:'blockheight' }, + { column:'reserved' }] + }, + dust_utxos: { + maxColumns: 7, + allowedColumns: [{ column:'txid', label: 'Transaction ID' }, { column:'address' }, { column:'scriptpubkey', label: 'Script Pubkey' }, { column:'output' }, { column:'value' }, { column:'blockheight' }, + { column:'reserved' }] + } + }, + peers_channels: { + open_channels: { + maxColumns: 8, + allowedColumns: [{ column:'short_channel_id' }, { column:'alias' }, { column:'id' }, { column:'channel_id' }, { column:'funding_txid', label: 'Funding Transaction ID' }, + { column:'connected' }, { column:'our_channel_reserve_satoshis', label: 'Local Reserve' }, { column:'their_channel_reserve_satoshis', label: 'Remote Reserve' }, { column:'msatoshi_total', label: 'Total' }, + { column:'spendable_msatoshi', label: 'Spendable' }, { column:'msatoshi_to_us', label: 'Local Balance' }, { column:'msatoshi_to_them', label: 'Remote Balance' }, { column:'balancedness', label: 'Balance Score' }] + }, + pending_inactive_channels: { + maxColumns: 8, + allowedColumns: [{ column:'alias' }, { column:'id' }, { column:'channel_id' }, { column:'funding_txid', label: 'Funding Transaction ID' }, { column:'connected' }, { column:'state' }, + { column:'our_channel_reserve_satoshis', label: 'Local Reserve' }, { column:'their_channel_reserve_satoshis', label: 'Remote Reserve' }, { column:'msatoshi_total', label: 'Total' }, { column:'spendable_msatoshi', label: 'Spendable' }, + { column:'msatoshi_to_us', label: 'Local Balance' }, { column:'msatoshi_to_them', label: 'Remote Balance' }] + }, + peers: { + maxColumns: 3, + allowedColumns: [{ column:'alias' }, { column:'id' }, { column:'netaddr', label: 'Network Address' }] + } + }, + liquidity_ads: { + liquidity_ads: { + maxColumns: 8, + allowedColumns: [{ column:'alias' }, { column:'nodeid', label: 'Node ID' }, { column:'last_timestamp', label: 'Last Announcement At' }, { column:'compact_lease' }, { column:'lease_fee' }, + { column:'routing_fee' }, { column:'channel_opening_fee' }, { column:'funding_weight' }] + } + }, + transactions: { + payments: { + maxColumns: 7, + allowedColumns: [{ column:'created_at', label: 'Created At' }, { column:'type' }, { column:'payment_hash' }, { column:'bolt11', label: 'Invoice' }, { column:'destination' }, { column:'memo' }, + { column:'label' }, { column:'msatoshi_sent', label: 'Sats Sent' }, { column:'msatoshi', label: 'Sats Received' }] + }, + invoices: { + maxColumns: 7, + allowedColumns: [{ column:'expires_at', label: 'Expiry Date' }, { column:'paid_at', label: 'Date Settled' }, { column:'type' }, { column:'description' }, { column:'label' }, + { column:'payment_hash' }, { column:'bolt11', label: 'Invoice' }, { column:'msatoshi', label: 'Amount' }, { column:'msatoshi_received', label: 'Amount Settled' }] + }, + offers: { + maxColumns: 4, + allowedColumns: [{ column:'offer_id', label: 'Offer ID' }, { column:'single_use' }, { column:'used' }, { column:'bolt12', label: 'Invoice' }] + }, + offer_bookmarks: { + maxColumns: 6, + allowedColumns: [{ column:'lastUpdatedAt', label: 'Updated At' }, { column:'title' }, { column:'description' }, { column:'vendor' }, { column:'bolt12', label: 'Invoice' }, + { column:'amountMSat', label: 'Amount' }] + } + }, + routing: { + forwarding_history: { + maxColumns: 8, + allowedColumns: [{ column:'received_time' }, { column:'resolved_time' }, { column:'in_channel', label: 'In Channel ID' }, { column:'in_channel_alias', label: 'In Channel' }, + { column:'out_channel', label: 'Out Channel ID' }, { column:'out_channel_alias', label: 'Out Channel' }, { column:'payment_hash' }, { column:'in_msatoshi', label: 'Amount In' }, { column:'out_msatoshi', label: 'Amount Out' }, + { column:'fee' }] + }, + routing_peers: { + maxColumns: 5, + allowedColumns: [{ column:'channel_id' }, { column:'alias', label: 'Peer Alias' }, { column:'events' }, { column:'total_amount', label: 'Amount' }, { column:'total_fee', label: 'Fee' }] + }, + failed: { + maxColumns: 7, + allowedColumns: [{ column:'received_time' }, { column:'resolved_time' }, { column:'in_channel', label: 'In Channel ID' }, { column:'in_channel_alias', label: 'In Channel' }, + { column:'out_channel', label: 'Out Channel ID' }, { column:'out_channel_alias', label: 'Out Channel' }, { column:'in_msatoshi', label: 'Amount In' }, { column:'out_msatoshi', label: 'Amount Out' }, { column:'fee' }] + }, + local_failed: { + maxColumns: 6, + allowedColumns: [{ column:'received_time' }, { column:'in_channel', label: 'In Channel ID' }, { column:'in_channel_alias', label: 'In Channel' }, { column:'out_channel', label: 'Out Channel ID' }, + { column:'out_channel_alias', label: 'Out Channel' }, { column:'in_msatoshi', label: 'Amount In' }, { column:'style' }, { column:'failreason', label: 'Fail Reason' }] + } + }, + reports: { + routing: { + maxColumns: 8, + allowedColumns: [{ column:'received_time' }, { column:'resolved_time' }, { column:'in_channel', label: 'In Channel ID' }, { column:'in_channel_alias', label: 'In Channel' }, + { column:'out_channel', label: 'Out Channel ID' }, { column:'out_channel_alias', label: 'Out Channel' }, { column:'payment_hash' }, { column:'in_msatoshi', label: 'Amount In' }, { column:'out_msatoshi', label: 'Amount Out' }, + { column:'fee' }] + }, + transactions: { + maxColumns: 5, + allowedColumns: [{ column:'date' }, { column:'amount_paid' }, { column:'num_payments', label: '# Payments' }, { column:'amount_received' }, { column:'num_invoices', label: '# Invoices' }] + } + }, + graph_lookup: { + query_routes: { + maxColumns: 6, + allowedColumns: [{ column:'id' }, { column:'alias' }, { column:'channel' }, { column:'direction' }, { column:'delay' }, { column:'msatoshi', label: 'Amount' }] + } + }, + peerswap: { + swaps: { + maxColumns: 6, + allowedColumns: [{ column:'id' }, { column:'alias' }, { column:'short_channel_id' }, { column:'created_at' }, { column:'state' }, { column:'amount' }] + } + } +}; + +export const LND_DEFAULT_PAGE_SETTINGS: PageSettings[] = [ + { pageId: 'on_chain', tables: [ + { tableId: 'utxos', recordsPerPage: PAGE_SIZE, sortBy: 'tx_id', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['output', 'amount_sat', 'confirmations'], + columnSelection: ['tx_id', 'output', 'label', 'amount_sat', 'confirmations'] }, + { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'time_stamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['time_stamp', 'amount', 'num_confirmations'], + columnSelection: ['time_stamp', 'label', 'amount', 'total_fees', 'block_height', 'num_confirmations'] }, + { tableId: 'dust_utxos', recordsPerPage: PAGE_SIZE, sortBy: 'tx_id', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['output', 'amount_sat', 'confirmations'], + columnSelection: ['tx_id', 'output', 'label', 'amount_sat', 'confirmations'] } + ] }, + { pageId: 'peers_channels', tables: [ + { tableId: 'open', recordsPerPage: PAGE_SIZE, sortBy: 'balancedness', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'local_balance'], + columnSelection: ['remote_alias', 'uptime_str', 'total_satoshis_sent', 'total_satoshis_received', 'local_balance', 'remote_balance', 'balancedness'] }, + { tableId: 'pending_open', sortBy: 'capacity', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'capacity'], + columnSelection: ['remote_alias', 'commit_fee', 'commit_weight', 'capacity'] }, + { tableId: 'pending_force_closing', sortBy: 'limbo_balance', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'limbo_balance'], + columnSelection: ['remote_alias', 'recovered_balance', 'limbo_balance', 'capacity'] }, + { tableId: 'pending_closing', sortBy: 'capacity', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'capacity'], + columnSelection: ['remote_alias', 'local_balance', 'remote_balance', 'capacity'] }, + { tableId: 'pending_waiting_close', sortBy: 'limbo_balance', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'limbo_balance'], + columnSelection: ['remote_alias', 'limbo_balance', 'local_balance', 'remote_balance'] }, + { tableId: 'closed', recordsPerPage: PAGE_SIZE, sortBy: 'close_type', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'settled_balance'], + columnSelection: ['close_type', 'remote_alias', 'capacity', 'close_height', 'settled_balance'] }, + { tableId: 'active_HTLCs', recordsPerPage: PAGE_SIZE, sortBy: 'expiration_height', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['amount', 'incoming', 'expiration_height'], + columnSelection: ['amount', 'incoming', 'expiration_height', 'hash_lock'] }, + { tableId: 'peers', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'sat_sent', 'sat_recv'], + columnSelection: ['alias', 'pub_key', 'sat_sent', 'sat_recv', 'ping_time'] } + ] }, + { pageId: 'transactions', tables: [ + { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'creation_date', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['creation_date', 'fee', 'value'], + columnSelection: ['creation_date', 'payment_hash', 'fee', 'value', 'hops'] }, + { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'creation_date', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['creation_date', 'settle_date', 'value'], + columnSelection: ['creation_date', 'settle_date', 'memo', 'value', 'amt_paid_sat'] } + ] }, + { pageId: 'routing', tables: [ + { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['timestamp', 'amt_in', 'amt_out'], + columnSelection: ['timestamp', 'alias_in', 'alias_out', 'amt_in', 'amt_out', 'fee_msat'] }, + { tableId: 'routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'total_amount', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'events', 'total_amount'], + columnSelection: ['chan_id', 'alias', 'events', 'total_amount'] }, + { tableId: 'non_routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'remote_alias', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['remote_alias', 'local_balance', 'remote_balance'], + columnSelection: ['chan_id', 'remote_alias', 'total_satoshis_received', 'total_satoshis_sent', 'local_balance', 'remote_balance'] } + ] }, + { pageId: 'reports', tables: [ + { tableId: 'routing', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['timestamp', 'amt_in', 'amt_out'], + columnSelection: ['timestamp', 'alias_in', 'alias_out', 'amt_in', 'amt_out', 'fee_msat'] }, + { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['date', 'amount_paid', 'amount_received'], + columnSelection: ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices'] } + ] }, + { pageId: 'graph_lookup', tables: [ + { tableId: 'query_routes', recordsPerPage: PAGE_SIZE, sortBy: 'hop_sequence', sortOrder: SortOrderEnum.ASCENDING, + columnSelectionSM: ['hop_sequence', 'pubkey_alias', 'fee_msat'], + columnSelection: ['hop_sequence', 'pubkey_alias', 'chan_capacity', 'amt_to_forward_msat', 'fee_msat'] } + ] }, + { pageId: 'loop', tables: [ + { tableId: 'loop', recordsPerPage: PAGE_SIZE, sortBy: 'initiation_time', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['state', 'amt'], + columnSelection: ['state', 'initiation_time', 'amt', 'cost_server', 'cost_offchain', 'cost_onchain'] } + ] }, + { pageId: 'boltz', tables: [ + { tableId: 'swap_out', recordsPerPage: PAGE_SIZE, sortBy: 'status', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['status', 'id', 'onchainAmount'], + columnSelection: ['status', 'id', 'claimAddress', 'onchainAmount', 'timeoutBlockHeight'] }, + { tableId: 'swap_in', recordsPerPage: PAGE_SIZE, sortBy: 'status', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['status', 'id', 'expectedAmount'], + columnSelection: ['status', 'id', 'lockupAddress', 'expectedAmount', 'timeoutBlockHeight'] } + ] } +]; + +export const LND_PAGE_DEFS: LNDPageDefinitions = { + on_chain: { + utxos: { + maxColumns: 7, + allowedColumns: [{ column:'tx_id', label: 'Transaction ID' }, { column:'output' }, { column:'label' }, { column:'address_type' }, { column:'address' }, { column:'amount_sat', label: 'Amount' }, + { column:'confirmations' }] + }, + transactions: { + maxColumns: 7, + allowedColumns: [{ column:'time_stamp', label: 'Date/Time' }, { column:'label' }, { column:'block_hash' }, { column:'tx_hash', label: 'Transaction Hash' }, { column:'amount' }, { column:'total_fees', label: 'Fees' }, + { column:'block_height' }, { column:'num_confirmations', label: 'Confirmations' }] + }, + dust_utxos: { + maxColumns: 7, + allowedColumns: [{ column:'tx_id', label: 'Transaction ID' }, { column:'output' }, { column:'label' }, { column:'address_type' }, { column:'address' }, { column:'amount_sat' }, + { column:'confirmations' }] + } + }, + peers_channels: { + open: { + maxColumns: 8, + allowedColumns: [{ column:'remote_alias', label: 'Peer' }, { column:'remote_pubkey', label: 'Pubkey' }, { column:'channel_point' }, { column:'chan_id', label: 'Channel ID' }, { column:'initiator' }, + { column:'static_remote_key' }, { column:'uptime_str', label: 'Uptime' }, { column:'lifetime_str', label: 'Lifetime' }, { column:'commit_fee' }, { column:'commit_weight' }, { column:'fee_per_kw', label: 'Fee/KW' }, + { column:'num_updates', label: 'Updates' }, { column:'unsettled_balance' }, { column:'capacity' }, { column:'local_chan_reserve_sat', label: 'Local Reserve' }, + { column:'remote_chan_reserve_sat', label: 'Remote Reserve' }, { column:'total_satoshis_sent', label: 'Sats Sent' }, { column:'total_satoshis_received', label: 'Sats Received' }, { column:'local_balance' }, + { column:'remote_balance' }, { column:'balancedness', label: 'Balance Score' }] + }, + pending_open: { + maxColumns: 7, + disablePageSize: true, + allowedColumns: [{ column:'remote_alias', label: 'Peer' }, { column:'remote_node_pub', label: 'Pubkey' }, { column:'channel_point' }, { column:'initiator' }, + { column:'commitment_type' }, { column:'confirmation_height' }, { column:'commit_fee' }, { column:'commit_weight' }, { column:'fee_per_kw', label: 'Fee/KW' }, + { column:'capacity' }, { column:'local_balance' }, { column:'remote_balance' }] + }, + pending_force_closing: { + maxColumns: 7, + disablePageSize: true, + allowedColumns: [{ column:'closing_txid', label: 'Closing Tx ID' }, { column:'remote_alias', label: 'Peer' }, { column:'remote_node_pub', label: 'Pubkey' }, { column:'channel_point' }, { column:'initiator' }, + { column:'commitment_type' }, { column:'limbo_balance' }, { column:'maturity_height' }, { column:'blocks_til_maturity', label: 'Blocks till Maturity' }, { column:'recovered_balance' }, + { column:'capacity' }, { column:'local_balance' }, { column:'remote_balance' }] + }, + pending_closing: { + maxColumns: 7, + disablePageSize: true, + allowedColumns: [{ column:'closing_txid', label: 'Closing Tx ID' }, { column:'remote_alias', label: 'Peer' }, { column:'remote_node_pub', label: 'Pubkey' }, { column:'channel_point' }, { column:'initiator' }, + { column:'commitment_type' }, { column:'capacity' }, { column:'local_balance' }, { column:'remote_balance' }] + }, + pending_waiting_close: { + maxColumns: 7, + disablePageSize: true, + allowedColumns: [{ column:'closing_txid', label: 'Closing Tx ID' }, { column:'remote_alias', label: 'Peer' }, { column:'remote_node_pub', label: 'Pubkey' }, { column:'channel_point' }, { column:'initiator' }, + { column:'commitment_type' }, { column:'limbo_balance' }, { column:'capacity' }, { column:'local_balance' }, { column:'remote_balance' }] + }, + closed: { + maxColumns: 7, + allowedColumns: [{ column:'close_type' }, { column:'remote_alias', label: 'Peer' }, { column:'remote_pubkey', label: 'Pubkey' }, { column:'channel_point' }, { column:'chan_id', label: 'Channel ID' }, + { column:'closing_tx_hash', label: 'Closing Tx Hash' }, { column:'chain_hash' }, { column:'open_initiator' }, { column:'close_initiator' }, { column:'time_locked_balance', label: 'Timelocked Balance' }, + { column:'capacity' }, { column:'close_height' }, { column:'settled_balance' }] + }, + active_HTLCs: { + maxColumns: 7, + allowedColumns: [{ column:'amount' }, { column:'incoming' }, { column:'forwarding_channel' }, { column:'htlc_index' }, { column:'forwarding_htlc_index' }, + { column:'expiration_height' }, { column:'hash_lock' }] + }, + peers: { + maxColumns: 8, + allowedColumns: [{ column:'alias' }, { column:'pub_key', label: 'Public Key' }, { column:'address' }, { column:'sync_type' }, { column:'inbound' }, { column:'bytes_sent' }, + { column:'bytes_recv', label: 'Bytes Received' }, { column:'sat_sent', label: 'Sats Sent' }, { column:'sat_recv', label: 'Sats Received' }, { column:'ping_time' }] + } + }, + transactions: { + payments: { + maxColumns: 8, + allowedColumns: [{ column:'creation_date' }, { column:'payment_hash' }, { column:'payment_request' }, { column:'payment_preimage' }, + { column:'description' }, { column:'description_hash' }, { column:'failure_reason' }, { column:'payment_index' }, { column:'fee' }, { column:'value' }, + { column:'hops' }] + }, + invoices: { + maxColumns: 9, + allowedColumns: [{ column:'private' }, { column:'is_keysend', label: 'Keysend' }, { column:'is_amp', label: 'AMP' }, { column:'creation_date', label: 'Date Created' }, { column:'settle_date', label: 'Date Settled' }, + { column:'memo' }, { column:'r_preimage', label: 'Preimage' }, { column:'r_hash', label: 'Preimage Hash' }, { column:'payment_addr', label: 'Payment Address' }, { column:'payment_request' }, { column:'description_hash' }, + { column:'expiry' }, { column:'cltv_expiry' }, { column:'add_index' }, { column:'settle_index' }, { column:'value', label: 'Amount' }, { column:'amt_paid_sat', label: 'Amount Settled' }] + } + }, + routing: { + forwarding_history: { + maxColumns: 6, + allowedColumns: [{ column:'timestamp' }, { column:'alias_in', label: 'Inbound Alias' }, { column:'chan_id_in', label: 'Inbound Channel' }, { column:'alias_out', label: 'Outbound Alias' }, { column:'chan_id_out', label: 'Outbound Channel' }, + { column:'amt_in', label: 'Inbound Amount' }, { column:'amt_out', label: 'Outbound Amount' }, { column:'fee_msat', label: 'Fee' }] + }, + routing_peers: { + maxColumns: 4, + allowedColumns: [{ column:'chan_id', label: 'Channel ID' }, { column:'alias', label: 'Peer Alias' }, { column:'events' }, { column:'total_amount' }] + }, + non_routing_peers: { + maxColumns: 8, + allowedColumns: [{ column:'chan_id', label: 'Channel ID' }, { column:'remote_alias', label: 'Peer Alias' }, { column:'remote_pubkey', label: 'Peer Pubkey' }, { column:'channel_point' }, { column:'uptime_str', label: 'Uptime' }, + { column:'lifetime_str', label: 'Lifetime' }, { column:'commit_fee' }, { column:'commit_weight' }, { column:'fee_per_kw', label: 'Fee/KW' }, { column:'num_updates', label: 'Updates' }, + { column:'unsettled_balance' }, { column:'capacity' }, { column:'local_chan_reserve_sat', label: 'Local Reserve' }, { column:'remote_chan_reserve_sat', label: 'Remote Reserve' }, + { column:'total_satoshis_sent', label: 'Sats Sent' }, { column:'total_satoshis_received', label: 'Sats Received' }, { column:'local_balance' }, { column:'remote_balance' }] + } + }, + reports: { + routing: { + maxColumns: 6, + allowedColumns: [{ column:'timestamp' }, { column:'alias_in', label: 'Inbound Alias' }, { column:'chan_id_in', label: 'Inbound Channel' }, { column:'alias_out', label: 'Outbound Alias' }, { column:'chan_id_out', label: 'Outbound Channel' }, + { column:'amt_in', label: 'Inbound Amount' }, { column:'amt_out', label: 'Outbound Amount' }, { column:'fee_msat', label: 'Fee' }] + }, + transactions: { + maxColumns: 5, + allowedColumns: [{ column:'date' }, { column:'amount_paid' }, { column:'num_payments', label: '# Payments' }, { column:'amount_received' }, { column:'num_invoices', label: '# Invoices' }] + } + }, + graph_lookup: { + query_routes: { + maxColumns: 8, + disablePageSize: true, + allowedColumns: [{ column:'hop_sequence', label: 'Hop' }, { column:'pubkey_alias', label: 'Peer' }, { column:'pub_key', label: 'Peer Pubkey' }, { column:'chan_id', label: 'Channel ID' }, { column:'tlv_payload' }, + { column:'expiry' }, { column:'chan_capacity', label: 'Capacity' }, { column:'amt_to_forward_msat', label: 'Amount To Fwd' }, { column:'fee_msat', label: 'Fee' }] + } + }, + loop: { + loop: { + maxColumns: 8, + allowedColumns: [{ column:'state' }, { column:'initiation_time' }, { column:'last_update_time' }, { column:'amt', label: 'Amount' }, { column:'cost_server' }, + { column:'cost_offchain' }, { column:'cost_onchain' }, { column:'htlc_address' }, { column:'id' }, { column:'id_bytes', label: 'ID (Bytes)' }] + } + }, + boltz: { + swap_out: { + maxColumns: 7, + allowedColumns: [{ column:'status' }, { column:'id', label: 'Swap ID' }, { column:'claimAddress', label: 'Claim Address' }, + { column:'onchainAmount', label: 'Onchain Amount' }, { column:'error' }, { column:'privateKey', label: 'Private Key' }, { column:'preimage' }, { column:'redeemScript', label: 'Redeem Script' }, { column:'invoice' }, + { column:'timeoutBlockHeight', label: 'Timeout Block Height' }, { column:'lockupTransactionId', label: 'Lockup Tx ID' }, { column:'claimTransactionId', label: 'Claim Tx ID' }] + }, + swap_in: { + maxColumns: 7, + allowedColumns: [{ column:'status' }, { column:'id', label: 'Swap ID' }, { column:'lockupAddress', label: 'Lockup Address' }, { column:'expectedAmount', label: 'Expected Amount' }, { column:'error' }, + { column:'privateKey', label: 'Private Key' }, { column:'preimage' }, { column:'redeemScript', label: 'Redeem Script' }, { column:'invoice' }, { column:'timeoutBlockHeight', label: 'Timeout Block Height' }, + { column:'lockupTransactionId', label: 'Lockup Tx ID' }, { column:'refundTransactionId', label: 'Refund Tx ID' }] + } + } +}; + +export const ECL_DEFAULT_PAGE_SETTINGS: PageSettings[] = [ + { pageId: 'on_chain', tables: [ + { tableId: 'transaction', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['timestamp', 'amount'], + columnSelection: ['timestamp', 'address', 'amount', 'fees', 'confirmations'] } + ] }, + { pageId: 'peers_channels', tables: [ + { tableId: 'open_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'toLocal', 'toRemote'], + columnSelection: ['shortChannelId', 'alias', 'feeBaseMsat', 'feeProportionalMillionths', 'toLocal', 'toRemote', 'balancedness'] }, + { tableId: 'pending_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['state', 'alias', 'toLocal'], + columnSelection: ['state', 'alias', 'toLocal', 'toRemote'] }, + { tableId: 'inactive_channels', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['state', 'alias', 'toLocal'], + columnSelection: ['state', 'shortChannelId', 'alias', 'toLocal', 'toRemote', 'balancedness'] }, + { tableId: 'peers', recordsPerPage: PAGE_SIZE, sortBy: 'alias', sortOrder: SortOrderEnum.ASCENDING, + columnSelectionSM: ['alias', 'nodeId'], + columnSelection: ['alias', 'nodeId', 'address', 'channels'] } + ] }, + { pageId: 'transactions', tables: [ + { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'firstPartTimestamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['firstPartTimestamp', 'recipientAmount'], + columnSelection: ['firstPartTimestamp', 'id', 'recipientNodeAlias', 'recipientAmount'] }, + { tableId: 'invoices', recordsPerPage: PAGE_SIZE, sortBy: 'receivedAt', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['timestamp', 'amount', 'amountSettled'], + columnSelection: ['timestamp', 'receivedAt', 'description', 'amount', 'amountSettled'] } + ] }, + { pageId: 'routing', tables: [ + { tableId: 'forwarding_history', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['timestamp', 'amountIn', 'fee'], + columnSelection: ['timestamp', 'fromChannelAlias', 'toChannelAlias', 'amountIn', 'amountOut', 'fee'] }, + { tableId: 'routing_peers', recordsPerPage: PAGE_SIZE, sortBy: 'totalFee', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['alias', 'events', 'totalFee'], + columnSelection: ['channelId', 'alias', 'events', 'totalAmount', 'totalFee'] } + ] }, + { pageId: 'reports', tables: [ + { tableId: 'routing', recordsPerPage: PAGE_SIZE, sortBy: 'timestamp', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['timestamp', 'amountIn', 'fee'], + columnSelection: ['timestamp', 'fromChannelAlias', 'toChannelAlias', 'amountIn', 'amountOut', 'fee'] }, + { tableId: 'transactions', recordsPerPage: PAGE_SIZE, sortBy: 'date', sortOrder: SortOrderEnum.DESCENDING, + columnSelectionSM: ['date', 'amount_paid', 'amount_received'], + columnSelection: ['date', 'amount_paid', 'num_payments', 'amount_received', 'num_invoices'] } + ] } +]; + +export const ECL_PAGE_DEFS: ECLPageDefinitions = { + on_chain: { + transaction: { + maxColumns: 6, + allowedColumns: [{ column:'timestamp', label: 'Date/Time' }, { column:'address' }, { column:'blockHash' }, { column:'txid', label: 'Transaction ID' }, { column:'amount' }, + { column:'fees' }, { column:'confirmations' }] + } + }, + peers_channels: { + open_channels: { + maxColumns: 8, + allowedColumns: [{ column:'shortChannelId' }, { column:'channelId' }, { column:'alias' }, { column:'nodeId' }, { column:'isFunder', label: 'Funder' }, + { column:'buried' }, { column:'feeBaseMsat', label: 'Base Fee' }, { column:'feeProportionalMillionths', label: 'Fee Rate' }, { column:'toLocal', label: 'Local Balance' }, { column:'toRemote', label: 'Remote Balance' }, + { column:'feeRatePerKw', label: 'Fee/KW' }, { column:'balancedness', label: 'Balance Score' }] + }, + pending_channels: { + maxColumns: 7, + allowedColumns: [{ column:'state' }, { column:'channelId' }, { column:'alias' }, { column:'nodeId' }, { column:'isFunder', label: 'Funder' }, + { column:'buried' }, { column:'toLocal', label: 'Local Balance' }, { column:'toRemote', label: 'Remote Balance' }, { column:'feeRatePerKw', label: 'Fee/KW' }] + }, + inactive_channels: { + maxColumns: 8, + allowedColumns: [{ column:'state' }, { column:'shortChannelId' }, { column:'channelId' }, { column:'alias' }, { column:'nodeId' }, + { column:'isFunder', label: 'Funder' }, { column:'buried' }, { column:'toLocal', label: 'Local Balance' }, + { column:'toRemote', label: 'Remote Balance' }, { column:'feeRatePerKw', label: 'Fee/KW' }, { column:'balancedness', label: 'Balance Score' }] + }, + peers: { + maxColumns: 4, + allowedColumns: [{ column:'alias' }, { column:'nodeId' }, { column:'address', label: 'Netwrok Address' }, { column:'channels' }] + } + }, + transactions: { + payments: { + maxColumns: 7, + allowedColumns: [{ column:'firstPartTimestamp', label: 'Date/Time' }, { column:'id' }, { column:'recipientNodeId', label: 'Destination Node ID' }, { column:'recipientNodeAlias', label: 'Destination' }, + { column:'description' }, { column:'paymentHash' }, { column:'paymentPreimage', label: 'Preimage' }, { column:'recipientAmount', label: 'Amount' }] + }, + invoices: { + maxColumns: 7, + allowedColumns: [{ column:'timestamp', label: 'Date Created' }, { column:'expiresAt', label: 'Date Expiry' }, { column:'receivedAt', label: 'Date Settled' }, { column:'nodeId', label: 'Node ID' }, { column:'description' }, + { column:'paymentHash' }, { column:'amount' }, { column:'amountSettled', label: 'Amount Settled' }] + } + }, + routing: { + forwarding_history: { + maxColumns: 7, + allowedColumns: [{ column:'timestamp', label: 'Date/Time' }, { column:'fromChannelId', label: 'In Channel ID' }, { column:'fromShortChannelId', label: 'In Channel Short ID' }, { column:'fromChannelAlias', label: 'In Channel' }, + { column:'toChannelId', label: 'Out Channel ID' }, { column:'toShortChannelId', label: 'Out Channel Short ID' }, { column:'toChannelAlias', label: 'Out Channel' }, { column:'paymentHash' }, { column:'amountIn' }, + { column:'amountOut' }, { column:'fee', label: 'Fee Earned' }] + }, + routing_peers: { + maxColumns: 5, + allowedColumns: [{ column:'channelId' }, { column:'alias', label: 'Peer Alias' }, { column:'events' }, { column:'totalAmount', label: 'Amount' }, { column:'totalFee', label: 'Fee' }] + } + }, + reports: { + routing: { + maxColumns: 7, + allowedColumns: [{ column:'timestamp', label: 'Date/Time' }, { column:'fromChannelId', label: 'In Channel ID' }, { column:'fromShortChannelId', label: 'In Channel Short ID' }, { column:'fromChannelAlias', label: 'In Channel' }, + { column:'toChannelId', label: 'Out Channel ID' }, { column:'toShortChannelId', label: 'Out Channel Short ID' }, { column:'toChannelAlias', label: 'Out Channel' }, { column:'paymentHash' }, { column:'amountIn' }, + { column:'amountOut' }, { column:'fee', label: 'Fee Earned' }] + }, + transactions: { + maxColumns: 5, + allowedColumns: [{ column:'date' }, { column:'amount_paid' }, { column:'num_payments', label: '# Payments' }, { column:'amount_received' }, { column:'num_invoices', label: '# Invoices' }] + } + } +}; diff --git a/src/app/shared/services/data.service.ts b/src/app/shared/services/data.service.ts index 4c1fcb85..06a6d357 100644 --- a/src/app/shared/services/data.service.ts +++ b/src/app/shared/services/data.service.ts @@ -313,9 +313,9 @@ export class DataService implements OnDestroy { })); } - getOrUpdateFunderPolicy(policy?: any, policyMod?: any, leaseFeeBaseMsat?: any, leaseFeeBasis?: any, channelFeeMaxBaseMsat?: any, channelFeeMaxProportional?: any) { + getOrUpdateFunderPolicy(policy?: any, policyMod?: any, lease_feeBaseMsat?: any, lease_fee_basis?: any, channelFeeMaxBaseMsat?: any, channelFeeMaxProportional?: any) { return this.lnImplementationUpdated.pipe(first((val) => val !== null), mergeMap((updatedLnImplementation) => { - const postParams = policy ? { policy: policy, policy_mod: policyMod, lease_fee_base_msat: leaseFeeBaseMsat, lease_fee_basis: leaseFeeBasis, channel_fee_max_base_msat: channelFeeMaxBaseMsat, channel_fee_max_proportional_thousandths: channelFeeMaxProportional } : null; + const postParams = policy ? { policy: policy, policy_mod: policyMod, lease_fee_base_msat: lease_feeBaseMsat, lease_fee_basis: lease_fee_basis, channel_fee_max_base_msat: channelFeeMaxBaseMsat, channel_fee_max_proportional_thousandths: channelFeeMaxProportional } : null; this.store.dispatch(openSpinner({ payload: UI_MESSAGES.GET_FUNDER_POLICY })); return this.httpClient.post(this.APIUrl + '/' + updatedLnImplementation + environment.CHANNELS_API + '/funderUpdate', postParams).pipe( takeUntil(this.unSubs[11]), diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts index 83de6d40..a9f8eb20 100644 --- a/src/app/shared/shared.module.ts +++ b/src/app/shared/shared.module.ts @@ -62,9 +62,11 @@ import { AppSettingsComponent } from './components/settings/app-settings/app-set import { NodeConfigComponent } from './components/node-config/node-config.component'; import { LNPConfigComponent } from './components/node-config/lnp-config/lnp-config.component'; import { NodeSettingsComponent } from './components/node-config/node-settings/node-settings.component'; +import { PageSettingsComponent } from './components/node-config/page-settings/page-settings.component'; import { ServicesSettingsComponent } from './components/node-config/services-settings/services-settings.component'; import { LoopServiceSettingsComponent } from './components/node-config/services-settings/loop-service-settings/loop-service-settings.component'; import { BoltzServiceSettingsComponent } from './components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component'; +import { PeerswapServiceSettingsComponent } from './components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component'; import { ExperimentalSettingsComponent } from './components/node-config/experimental-settings/experimental-settings.component'; import { ErrorComponent } from './components/error/error.component'; import { CurrencyUnitConverterComponent } from './components/currency-unit-converter/currency-unit-converter.component'; @@ -76,6 +78,7 @@ import { SpinnerDialogComponent } from './components/data-modal/spinner-dialog/s import { AlertMessageComponent } from './components/data-modal/alert-message/alert-message.component'; import { ConfirmationMessageComponent } from './components/data-modal/confirmation-message/confirmation-message.component'; import { ErrorMessageComponent } from './components/data-modal/error-message/error-message.component'; +import { IsAuthorizedComponent } from './components/data-modal/is-authorized/is-authorized.component'; import { TwoFactorAuthComponent } from './components/data-modal/two-factor-auth/two-factor-auth.component'; import { LoginTokenComponent } from './components/data-modal/login-2fa-token/login-2fa-token.component'; @@ -100,7 +103,7 @@ import { AutoFocusDirective } from './directive/auto-focus.directive'; import { MonthlyDateDirective, YearlyDateDirective } from './directive/date-formats.directive'; import { MaxValidator } from './directive/max-amount.directive'; import { MinValidator } from './directive/min-amount.directive'; -import { RemoveLeadingZerosPipe, CamelCasePipe } from './pipes/app.pipe'; +import { RemoveLeadingZerosPipe, CamelCasePipe, CamelCaseWithReplacePipe, CamelCaseWithSpacesPipe } from './pipes/app.pipe'; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: false, @@ -225,6 +228,8 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { YearlyDateDirective, RemoveLeadingZerosPipe, CamelCasePipe, + CamelCaseWithReplacePipe, + CamelCaseWithSpacesPipe, MaxValidator, MinValidator, AppSettingsComponent, @@ -241,9 +246,11 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { NodeConfigComponent, LNPConfigComponent, NodeSettingsComponent, + PageSettingsComponent, ServicesSettingsComponent, LoopServiceSettingsComponent, BoltzServiceSettingsComponent, + PeerswapServiceSettingsComponent, ExperimentalSettingsComponent, CurrencyUnitConverterComponent, HorizontalScrollerComponent, @@ -279,9 +286,11 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { NodeConfigComponent, LNPConfigComponent, NodeSettingsComponent, + PageSettingsComponent, ServicesSettingsComponent, LoopServiceSettingsComponent, BoltzServiceSettingsComponent, + PeerswapServiceSettingsComponent, ExperimentalSettingsComponent, CurrencyUnitConverterComponent, HorizontalScrollerComponent, @@ -294,6 +303,8 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { MinValidator, RemoveLeadingZerosPipe, CamelCasePipe, + CamelCaseWithReplacePipe, + CamelCaseWithSpacesPipe, AuthSettingsComponent, TransactionsReportTableComponent, OnChainGeneratedAddressComponent, @@ -302,6 +313,7 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { AlertMessageComponent, ConfirmationMessageComponent, ErrorMessageComponent, + IsAuthorizedComponent, TwoFactorAuthComponent, LoginTokenComponent, TransactionsReportTableComponent, @@ -329,7 +341,7 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { { provide: DateAdapter, useClass: DefaultDateAdapter }, { provide: MAT_DATE_FORMATS, useValue: DEFAULT_DATE_FORMAT }, { provide: OverlayContainer, useClass: ThemeOverlay }, - DecimalPipe, TitleCasePipe, DatePipe + DecimalPipe, TitleCasePipe, DatePipe, RemoveLeadingZerosPipe, CamelCasePipe, CamelCaseWithReplacePipe, CamelCaseWithSpacesPipe ] }) export class SharedModule { } diff --git a/src/app/shared/test-helpers/mock-services.ts b/src/app/shared/test-helpers/mock-services.ts index 5bd4e952..f1a1a6d6 100644 --- a/src/app/shared/test-helpers/mock-services.ts +++ b/src/app/shared/test-helpers/mock-services.ts @@ -59,11 +59,14 @@ export class mockDataService { decodePayment(payment: string, fromDialog: boolean) { if (payment === - 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3' + 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr' + + '58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j0s3hrgpv4eel3' ) { return of(mockResponseData.decodePayment); } else if (payment === - 'lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxvmmjypxyu3pqxvxqyd9uqcqp2sp5feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qgqdnftgk' + 'lntb1ps8neg8pp5u897fhxxzg068jzt59tgqe458jt7srjtd6k93x4t9ts3hqdkd2nsdpj23jhxarfdenjq3tdwp68jgzfdemx76trv5sxvmmjypxyu3pqxvxqyd9uqcqp2sp5' + + 'feg8wftf3fasmp2fe86kehyqfat2xcrjvunare7rrn28yjdrw8yqrzjq2m42d94jc8fxjzq675cmhr7fpjg0vr6238xutxp9p78yeaucwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9' + + 'q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yrycwh2g05qgqdnftgk' ) { mockResponseData.decodeEmptyPayment.num_satoshis = '0'; return of(mockResponseData.decodeEmptyPayment); @@ -117,7 +120,8 @@ export class mockDataService { export class mockSessionService { private sessionObj = { - token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoiTk9ERV9VU0VSIiwiY29uZmlnUGF0aCI6IkM6L1VzZXJzL3NoYWhhL0FwcERhdGEvTG9jYWwvTG5kL2xuZC5jb25mIiwibWFjYXJvb25QYXRoIjoiQzovVXNlcnMvc2hhaGEvQXBwRGF0YS9Mb2NhbC9MbmQvZGF0YS9jaGFpbi9iaXRjb2luL3Rlc3RuZXQiLCJpYXQiOjE2MjU4NzcwMzZ9.ybM926PINgy3RINjG1CPqQOOFOcofgKbBLLeyfgW4zg', + token: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoiTk9ERV9VU0VSIiwiY29uZmlnUGF0aCI6IkM6L1VzZXJzL3NoYWhhL0FwcERhdGEvTG9jYWwvTG5kL2xuZC5j' + + 'b25mIiwibWFjYXJvb25QYXRoIjoiQzovVXNlcnMvc2hhaGEvQXBwRGF0YS9Mb2NhbC9MbmQvZGF0YS9jaGFpbi9iaXRjb2luL3Rlc3RuZXQiLCJpYXQiOjE2MjU4NzcwMzZ9.ybM926PINgy3RINjG1CPqQOOFOcofgKbBLLeyfgW4zg', defaultPassword: false, lndUnlocked: true }; diff --git a/src/app/shared/test-helpers/test-data.ts b/src/app/shared/test-helpers/test-data.ts index fc2b8ae1..5c5c82d7 100644 --- a/src/app/shared/test-helpers/test-data.ts +++ b/src/app/shared/test-helpers/test-data.ts @@ -697,7 +697,7 @@ export const mockResponseData = { channel_fee_max_proportional_thousandths: 1, compact_lease: '029a0032000100004e20' }, - channelOpeningFee: 22165 + channel_opening_fee: 22165 }, { nodeid: '023b485342839753dea66ff280df74e73570abc8160ad9a3456267dc5249e7a749', @@ -720,7 +720,7 @@ export const mockResponseData = { channel_fee_max_proportional_thousandths: 1, compact_lease: '029a003200010000271003e8' }, - channelOpeningFee: 12165 + channel_opening_fee: 12165 } ], setSelectedNodeSuccess: { @@ -746,12 +746,13 @@ export const mockActionsData = { userPersona: 'MERCHANT', themeMode: 'NIGHT', themeColor: 'TEAL', + unannouncedChannels: false, + fiatConversion: true, currencyUnits: [ 'BTC', 'SATS', 'USD' ], - fiatConversion: true, bitcoindConfigPath: '', enableLogging: true, lnServerUrl: '', @@ -759,7 +760,8 @@ export const mockActionsData = { boltzServerUrl: '', channelBackupPath: '', currencyUnit: '', - enableOffers: false + enableOffers: false, + enablePeerswap: false }, authentication: { swapMacaroonPath: '', @@ -773,28 +775,31 @@ export const mockActionsData = { resetChildrenStores: { userPersona: 'MERCHANT', channelBackupPath: '', + unannouncedChannels: false, + fiatConversion: true, selCurrencyUnit: '', currencyUnits: [ 'Sats', 'BTC' ], - fiatConversion: true, lnImplementation: 'LND', swapServerUrl: '', boltzServerUrl: '', - enableOffers: false + enableOffers: false, + enablePeerswap: false }, setSelectedNode: { settings: { userPersona: 'MERCHANT', themeMode: 'NIGHT', themeColor: 'TEAL', + unannouncedChannels: false, + fiatConversion: true, currencyUnits: [ 'BTC', 'SATS', 'USD' ], - fiatConversion: true, bitcoindConfigPath: '', enableLogging: true, lnServerUrl: '', @@ -802,7 +807,8 @@ export const mockActionsData = { boltzServerUrl: '', channelBackupPath: '', currencyUnit: '', - enableOffers: false + enableOffers: false, + enablePeerswap: false }, authentication: { swapMacaroonPath: '', @@ -860,6 +866,7 @@ export const mockRTLStoreState = { userPersona: 'OPERATOR', themeMode: 'DAY', themeColor: 'TEAL', + unannouncedChannels: false, fiatConversion: true, bitcoindConfigPath: '../bitcoin.conf', enableLogging: true, @@ -898,6 +905,7 @@ export const mockRTLStoreState = { themeMode: 'DAY', themeColor: 'TEAL', fiatConversion: true, + unannouncedChannels: false, bitcoindConfigPath: '../bitcoin.conf', enableLogging: true, lnServerUrl: 'https://localhost:8080', @@ -925,6 +933,7 @@ export const mockRTLStoreState = { userPersona: 'MERCHANT', themeMode: 'DAY', themeColor: 'INDIGO', + unannouncedChannels: false, fiatConversion: true, bitcoindConfigPath: '', enableLogging: true, @@ -953,6 +962,7 @@ export const mockRTLStoreState = { userPersona: 'OPERATOR', themeMode: 'NIGHT', themeColor: 'PURPLE', + unannouncedChannels: false, fiatConversion: true, bitcoindConfigPath: '', enableLogging: false, @@ -995,13 +1005,14 @@ export const mockRTLStoreState = { nodeSettings: { userPersona: 'OPERATOR', channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', + unannouncedChannels: false, + fiatConversion: true, selCurrencyUnit: 'USD', currencyUnits: [ 'Sats', 'BTC', 'USD' ], - fiatConversion: true, lnImplementation: 'LND', swapServerUrl: 'https://localhost:8081', boltzServerUrl: 'https://localhost:9003' @@ -48632,13 +48643,14 @@ export const mockRTLStoreState = { nodeSettings: { userPersona: 'OPERATOR', channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', + unannouncedChannels: false, + fiatConversion: true, selCurrencyUnit: 'USD', currencyUnits: [ 'Sats', 'BTC', 'USD' ], - fiatConversion: true, lnImplementation: 'LND', swapServerUrl: 'https://localhost:8081', boltzServerUrl: 'https://localhost:9003' @@ -48665,13 +48677,14 @@ export const mockRTLStoreState = { nodeSettings: { userPersona: 'OPERATOR', channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', + unannouncedChannels: false, + fiatConversion: true, selCurrencyUnit: 'USD', currencyUnits: [ 'Sats', 'BTC', 'USD' ], - fiatConversion: true, lnImplementation: 'LND', swapServerUrl: 'https://localhost:8081', boltzServerUrl: 'https://localhost:9003' diff --git a/src/app/shared/theme/styles/constants.scss b/src/app/shared/theme/styles/constants.scss index 83ea94ed..28bd890f 100644 --- a/src/app/shared/theme/styles/constants.scss +++ b/src/app/shared/theme/styles/constants.scss @@ -29,7 +29,7 @@ $red-color: #c62828; $red-background-color: #f8d7da; $blue-color: #004085; $blue-background-color: #cce5ff; -$grey-color: #AAAAAA; +$grey-color: #CCCCCC; $tiny-dot-size: 0.8rem; $dot-size: 1.2rem; $badge-size: 0.8rem; diff --git a/src/app/shared/theme/styles/mixins.scss b/src/app/shared/theme/styles/mixins.scss index 0880e38d..136cfba6 100644 --- a/src/app/shared/theme/styles/mixins.scss +++ b/src/app/shared/theme/styles/mixins.scss @@ -28,7 +28,7 @@ ORDER: Base + typography > general layout + grid > page layout > components @media only screen and (max-width: 75em) { @content }; //1200px } @if $breakpoint == big-desktop { - @media only screen and (min-width: 112.5em) { @content }; //1800 + @media only screen and (min-width: 112.5em) { @content }; //1800px } } diff --git a/src/app/shared/theme/styles/root.scss b/src/app/shared/theme/styles/root.scss index 5c919105..aec989e3 100644 --- a/src/app/shared/theme/styles/root.scss +++ b/src/app/shared/theme/styles/root.scss @@ -147,7 +147,7 @@ body { .padding-gap-large { padding: $gap * 2 !important; @include for_screensize(tab-land) { - padding: $gap !important; + padding: $gap * 4 !important; } @include for_screensize(tab-port) { padding: math.div($gap, 2) !important; @@ -258,19 +258,19 @@ mat-cell:last-of-type, mat-header-cell:last-of-type, mat-footer-cell:last-of-typ } .green { - color: #388e3c !important; + color: $green-color !important; } .yellow { - color: #ffd740 !important; + color: $yellow-color !important; } .red { - color: #c62828 !important; + color: $red-color !important; } .grey { - color: #CCCCCC !important; + color: $grey-color !important; } .mt-1px { @@ -652,6 +652,16 @@ mat-cell:last-of-type, mat-header-cell:last-of-type, mat-footer-cell:last-of-typ } } +.pl-5px { + padding-left: 0.5rem !important; + @include for_screensize(tab-port) { + padding-left: 0.4rem !important; + } + @include for_screensize(phone) { + padding-left: 0.3rem !important; + } +} + .pl-1 { padding-left: 1rem !important; @include for_screensize(tab-port) { @@ -710,6 +720,10 @@ mat-cell:last-of-type, mat-header-cell:last-of-type, mat-footer-cell:last-of-typ padding-right: 0.4rem !important; } +.pr-6px { + padding-right: 0.6rem !important; +} + .p-0 { padding: 0 !important; } @@ -1343,7 +1357,7 @@ th.mat-header-cell:last-of-type, td.mat-cell:last-of-type, td.mat-footer-cell:la width: $dot-size; height: $dot-size; border-radius: $dot-size; - margin: 0.4rem 1rem 0 0; + margin: 0.4rem 0 0 0; &.tiny-dot { width: $tiny-dot-size; height: $tiny-dot-size; @@ -1538,13 +1552,21 @@ th.mat-header-cell:last-of-type, td.mat-cell:last-of-type, td.mat-footer-cell:la text-align: left; } +.ellipsis-parent { + display: flex; +} + +.mat-column-actions { + min-height: 4.8rem; +} + .mat-expansion-panel.flat-expansion-panel { box-shadow: none; padding: 0; border-radius: 2px; background: none; & .mat-expansion-panel-header { - padding: 0 $gap*3 0 $gap*3; + padding: 0 $gap*2 0 $gap*2; @include for_screensize(tab-port) { padding: 0 $gap 0 $gap; } diff --git a/src/app/shared/theme/styles/theme-color.scss b/src/app/shared/theme/styles/theme-color.scss index edd59c7d..bc278ffb 100644 --- a/src/app/shared/theme/styles/theme-color.scss +++ b/src/app/shared/theme/styles/theme-color.scss @@ -190,6 +190,20 @@ thead tr th { color: $foreground-base; } + thead tr th:not(:first-of-type), tbody tr td:not(:first-of-type) { + padding-left: 1rem; + } + tbody tr td.mat-cell { + @include for_screensize(tab-land) { + white-space: unset; + } + @include for_screensize(tab-port) { + white-space: unset; + } + @include for_screensize(phone) { + white-space: unset; + } + } &.error-border { border: 1px solid red; box-shadow: 0 3px 1px -2px rgba(255,0,0,.2), 0 2px 2px 0 rgba(255,0,0,.14), 0 1px 5px 0 rgba(255,0,0,.12) !important; @@ -207,6 +221,9 @@ .mat-expansion-panel { border: 1px solid $foreground-divider; + &.error-border { + border: 1px solid red; + } } .more-button { @@ -274,15 +291,21 @@ .table-actions-select { padding: 0.5rem 1rem; - margin: 0.7rem 0; - min-width: 10rem; - width: 10rem; + margin: 0.9rem 0; + min-height: 3.6rem; + min-width: 9rem; + width: 9rem; float: right; & .mat-select-placeholder { color: $foreground-text; } } + .table-actions-button { + min-width: 9rem; + width: 9rem; + } + .mat-select-panel .mat-option.mat-active { background: none; } diff --git a/src/app/store/rtl.effects.ts b/src/app/store/rtl.effects.ts index 80c06b9e..7d454e23 100644 --- a/src/app/store/rtl.effects.ts +++ b/src/app/store/rtl.effects.ts @@ -142,6 +142,7 @@ export class RTLEffects implements OnDestroy { if (this.dialogRef) { this.dialogRef.close(); } + this.logger.info(action.payload); return action.payload; })), { dispatch: false } @@ -447,21 +448,22 @@ export class RTLEffects implements OnDestroy { logOut = createEffect( () => this.actions.pipe( ofType(RTLActions.LOGOUT), - withLatestFrom(this.store.select(rootAppConfig)), - mergeMap(([action, appConfig]) => { + mergeMap((appConfig: RTLConfiguration) => { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.LOG_OUT })); + if (appConfig.sso && +appConfig.sso.rtlSSO) { + window.location.href = appConfig.sso.logoutRedirectLink; + } else { + this.router.navigate(['./login']); + } + this.sessionService.clearAll(); + this.store.dispatch(setNodeData({ payload: {} })); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); + this.logger.info('Logged out from browser'); return this.httpClient.get(environment.AUTHENTICATE_API + '/logout'). pipe(map((postRes: any) => { this.logger.info(postRes); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); - if (+appConfig.sso.rtlSSO) { - window.location.href = appConfig.sso.logoutRedirectLink; - } else { - this.router.navigate(['./login']); - } - this.sessionService.clearAll(); - this.store.dispatch(setNodeData({ payload: {} })); - this.logger.warn('LOGGED OUT'); + this.logger.info('Logged out from server'); })); })), { dispatch: false } @@ -499,12 +501,12 @@ export class RTLEffects implements OnDestroy { mergeMap((action: { type: string, payload: SetSelectedNode }) => { this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateSelNode', status: APICallStatusEnum.INITIATED } })); - return this.httpClient.get(environment.CONF_API + '/updateSelNode/' + action.payload.currentLnNode.index + '/' + action.payload.prevLnNodeIndex).pipe( + return this.httpClient.get(environment.CONF_API + '/updateSelNode/' + action.payload.currentLnNode?.index + '/' + action.payload.prevLnNodeIndex).pipe( map((postRes: any) => { this.logger.info(postRes); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateSelNode', status: APICallStatusEnum.COMPLETED } })); this.store.dispatch(closeSpinner({ payload: action.payload.uiMessage })); - this.initializeNode(action.payload.currentLnNode, action.payload.isInitialSetup); + this.initializeNode(action.payload.currentLnNode!, action.payload.isInitialSetup); return { type: RTLActions.VOID }; }), catchError((err: any) => { @@ -549,11 +551,11 @@ export class RTLEffects implements OnDestroy { initializeNode(node: ConfigSettingsNode, isInitialSetup: boolean) { this.logger.info('Initializing node from RTL Effects.'); const landingPage = isInitialSetup ? '' : 'HOME'; - let selNode = {}; + const selNode = { userPersona: node.settings.userPersona, channelBackupPath: node.settings.channelBackupPath, unannouncedChannels: !!node.settings.unannouncedChannels, + selCurrencyUnit: node.settings.currencyUnit, currencyUnits: CURRENCY_UNITS, fiatConversion: node.settings.fiatConversion, lnImplementation: node.lnImplementation, + swapServerUrl: node.settings.swapServerUrl, boltzServerUrl: node.settings.boltzServerUrl, enableOffers: node.settings.enableOffers, enablePeerswap: node.settings.enablePeerswap }; if (node.settings.fiatConversion && node.settings.currencyUnit) { - selNode = { userPersona: node.settings.userPersona, channelBackupPath: node.settings.channelBackupPath, selCurrencyUnit: node.settings.currencyUnit, currencyUnits: [...CURRENCY_UNITS, node.settings.currencyUnit], fiatConversion: node.settings.fiatConversion, lnImplementation: node.lnImplementation, swapServerUrl: node.settings.swapServerUrl, boltzServerUrl: node.settings.boltzServerUrl, enableOffers: node.settings.enableOffers }; - } else { - selNode = { userPersona: node.settings.userPersona, channelBackupPath: node.settings.channelBackupPath, selCurrencyUnit: node.settings.currencyUnit, currencyUnits: CURRENCY_UNITS, fiatConversion: node.settings.fiatConversion, lnImplementation: node.lnImplementation, swapServerUrl: node.settings.swapServerUrl, boltzServerUrl: node.settings.boltzServerUrl, enableOffers: node.settings.enableOffers }; + selNode['currencyUnits'] = [...CURRENCY_UNITS, node.settings.currencyUnit]; } this.sessionService.removeItem('lndUnlocked'); this.sessionService.removeItem('clUnlocked'); diff --git a/src/app/store/rtl.reducers.ts b/src/app/store/rtl.reducers.ts index 3a58c927..20d94fc5 100644 --- a/src/app/store/rtl.reducers.ts +++ b/src/app/store/rtl.reducers.ts @@ -44,6 +44,9 @@ export const RootReducer = createReducer(initRootState, case ServicesEnum.OFFERS: updatedSelNode.settings.enableOffers = payload.settings.enableOffers; break; + case ServicesEnum.PEERSWAP: + updatedSelNode.settings.enablePeerswap = payload.settings.enablePeerswap; + break; default: break; diff --git a/src/app/store/rtl.state.ts b/src/app/store/rtl.state.ts index 7260e88d..1dd9c393 100644 --- a/src/app/store/rtl.state.ts +++ b/src/app/store/rtl.state.ts @@ -9,12 +9,12 @@ import { ECLState } from '../eclair/store/ecl.state'; export interface RootState { apiURL: string; apisCallStatus: ApiCallsListRoot; - selNode: ConfigSettingsNode | null; + selNode: ConfigSettingsNode | any; appConfig: RTLConfiguration; nodeData: GetInfoRoot; } -const initNodeSettings = { userPersona: 'OPERATOR', themeMode: 'DAY', themeColor: 'PURPLE', channelBackupPath: '', selCurrencyUnit: 'USD', fiatConversion: false, currencyUnits: ['Sats', 'BTC', 'USD'], bitcoindConfigPath: '', enableOffers: false }; +const initNodeSettings = { userPersona: 'OPERATOR', themeMode: 'DAY', themeColor: 'PURPLE', channelBackupPath: '', selCurrencyUnit: 'USD', unannouncedChannels: false, fiatConversion: false, currencyUnits: ['Sats', 'BTC', 'USD'], bitcoindConfigPath: '', enableOffers: false, enablePeerswap: false }; const initNodeAuthentication = { configPath: '', swapMacaroonPath: '', boltzMacaroonPath: '' }; export const initRootState: RootState = { diff --git a/src/assets/images/favicon-dark/site.webmanifest b/src/assets/images/favicon-dark/site.webmanifest index b20abb7c..ff2b9d17 100644 --- a/src/assets/images/favicon-dark/site.webmanifest +++ b/src/assets/images/favicon-dark/site.webmanifest @@ -3,12 +3,12 @@ "short_name": "", "icons": [ { - "src": "/android-chrome-192x192.png", + "src": "/rtl/assets/images/favicon-dark/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-512x512.png", + "src": "/rtl/assets/images/favicon-dark/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } diff --git a/src/assets/images/favicon-light/site.webmanifest b/src/assets/images/favicon-light/site.webmanifest index b20abb7c..5ca3c0ce 100644 --- a/src/assets/images/favicon-light/site.webmanifest +++ b/src/assets/images/favicon-light/site.webmanifest @@ -3,12 +3,12 @@ "short_name": "", "icons": [ { - "src": "/android-chrome-192x192.png", + "src": "/rtl/assets/images/favicon-light/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-512x512.png", + "src": "/rtl/assets/images/favicon-light/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index d7accf62..20a75f73 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -5,6 +5,7 @@ export const environment = { isDebugMode: false, AUTHENTICATE_API: API_URL + '/authenticate', CONF_API: API_URL + '/conf', + PAGE_SETTINGS_API: API_URL + '/pagesettings', BALANCE_API: '/balance', FEES_API: '/fees', PEERS_API: '/peers', @@ -27,4 +28,4 @@ export const environment = { Web_SOCKET_API: '/ws' }; -export const VERSION = '0.13.1-beta'; +export const VERSION = '0.13.2-beta'; diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 099e4108..32469639 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -5,6 +5,7 @@ export const environment = { isDebugMode: true, AUTHENTICATE_API: API_URL + '/authenticate', CONF_API: API_URL + '/conf', + PAGE_SETTINGS_API: API_URL + '/pagesettings', BALANCE_API: '/balance', FEES_API: '/fees', PEERS_API: '/peers', @@ -27,4 +28,4 @@ export const environment = { Web_SOCKET_API: '/ws' }; -export const VERSION = '0.13.1-beta'; +export const VERSION = '0.13.2-beta';